
    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_c00000 {
    display:none;
  }
  .loading-indicator_c00000.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00000 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_c00000 { 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_c00000" -> "#page-container .classname_c00000")
 */
.pf_c00000 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00000 { /* 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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00000 { /* 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_c00000 { /* 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_c00000 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00000 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00000 {overflow:visible;}
  }
}
.c_c00000 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00000 { /* 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_c00000:after { /* webkit #35443 */
  content: '';
}
.t_c00000:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00000 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 */
}
.__c00000 { /* 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_c00000 { /* info for Javascript */
  display:none;
}
.l_c00000 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00000 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00000 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00000: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_c00000 {
    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_c00000.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00000.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_c00000 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00000{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00000;src:url('chunks/assets/font_9691fc1bdbc69af01f5bbe9e.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.000000;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_c00000{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_c00000{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0_c00000{vertical-align:0.000000px;}
.ls1_c00000{letter-spacing:0.000000px;}
.ls0_c00000{letter-spacing:2.549225px;}
.sc__c00000{text-shadow:none;}
.sc0_c00000{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__c00000{-webkit-text-stroke:0px transparent;}
.sc0_c00000{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00000{word-spacing:-28.423862px;}
.ws1_c00000{word-spacing:0.000000px;}
._2_c00000{margin-left:-4.461144px;}
._0_c00000{margin-left:-2.676687px;}
._1_c00000{margin-left:-1.656996px;}
._3_c00000{width:2.931609px;}
.fc0_c00000{color:rgb(35,31,32);}
.fs0_c00000{font-size:127.461264px;}
.y0_c00000{bottom:0.000000px;}
.y4_c00000{bottom:119.634525px;}
.y3_c00000{bottom:329.538417px;}
.y2_c00000{bottom:368.222911px;}
.y1_c00000{bottom:406.907404px;}
.h2_c00000{height:101.969011px;}
.h1_c00000{height:1167.000000px;}
.h0_c00000{height:1167.119934px;}
.w0_c00000{width:913.320007px;}
.w1_c00000{width:913.500000px;}
.x0_c00000{left:0.000000px;}
.x1_c00000{left:75.054713px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls1_c00000{letter-spacing:0.000000pt;}
.ls0_c00000{letter-spacing:2.265978pt;}
.ws0_c00000{word-spacing:-25.265655pt;}
.ws1_c00000{word-spacing:0.000000pt;}
._2_c00000{margin-left:-3.965462pt;}
._0_c00000{margin-left:-2.379277pt;}
._1_c00000{margin-left:-1.472886pt;}
._3_c00000{width:2.605875pt;}
.fs0_c00000{font-size:113.298901pt;}
.y0_c00000{bottom:0.000000pt;}
.y4_c00000{bottom:106.341800pt;}
.y3_c00000{bottom:292.923038pt;}
.y2_c00000{bottom:327.309254pt;}
.y1_c00000{bottom:361.695471pt;}
.h2_c00000{height:90.639121pt;}
.h1_c00000{height:1037.333333pt;}
.h0_c00000{height:1037.439941pt;}
.w0_c00000{width:811.840007pt;}
.w1_c00000{width:812.000000pt;}
.x0_c00000{left:0.000000pt;}
.x1_c00000{left:66.715300pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.000000;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;}
.md_c00001{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.441750,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.527250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527250,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.636000,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.786000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.786000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.786000,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.984000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.984000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.984000,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.056000,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(1.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.128000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:transparent;}
.fs3_c00001{font-size:60.000000px;}
.fs0_c00001{font-size:66.000000px;}
.fs2_c00001{font-size:114.000000px;}
.fs1_c00001{font-size:228.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:507.600000px;}
.y2_c00001{bottom:641.550000px;}
.y3_c00001{bottom:747.750000px;}
.y4_c00001{bottom:810.000000px;}
.y5_c00001{bottom:810.750000px;}
.y6_c00001{bottom:856.800000px;}
.y7_c00001{bottom:1077.150000px;}
.y8_c00001{bottom:1108.050000px;}
.y9_c00001{bottom:1117.050000px;}
.ya_c00001{bottom:1157.700000px;}
.h5_c00001{height:60.000000px;}
.h2_c00001{height:66.000000px;}
.h4_c00001{height:114.000000px;}
.h3_c00001{height:228.000000px;}
.h1_c00001{height:1167.000000px;}
.h0_c00001{height:1167.119934px;}
.w0_c00001{width:913.320007px;}
.w1_c00001{width:913.500000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:39.600000px;}
.xa_c00001{left:43.950000px;}
.x2_c00001{left:90.000000px;}
.x8_c00001{left:96.150000px;}
.xe_c00001{left:99.300000px;}
.x6_c00001{left:103.650000px;}
.x4_c00001{left:118.050000px;}
.xc_c00001{left:119.400000px;}
.xd_c00001{left:142.200000px;}
.x3_c00001{left:143.700000px;}
.x7_c00001{left:149.400000px;}
.x5_c00001{left:158.400000px;}
.x9_c00001{left:159.450000px;}
.xb_c00001{left:169.500000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs3_c00001{font-size:53.333333pt;}
.fs0_c00001{font-size:58.666667pt;}
.fs2_c00001{font-size:101.333333pt;}
.fs1_c00001{font-size:202.666667pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:451.200000pt;}
.y2_c00001{bottom:570.266667pt;}
.y3_c00001{bottom:664.666667pt;}
.y4_c00001{bottom:720.000000pt;}
.y5_c00001{bottom:720.666667pt;}
.y6_c00001{bottom:761.600000pt;}
.y7_c00001{bottom:957.466667pt;}
.y8_c00001{bottom:984.933333pt;}
.y9_c00001{bottom:992.933333pt;}
.ya_c00001{bottom:1029.066667pt;}
.h5_c00001{height:53.333333pt;}
.h2_c00001{height:58.666667pt;}
.h4_c00001{height:101.333333pt;}
.h3_c00001{height:202.666667pt;}
.h1_c00001{height:1037.333333pt;}
.h0_c00001{height:1037.439941pt;}
.w0_c00001{width:811.840007pt;}
.w1_c00001{width:812.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:35.200000pt;}
.xa_c00001{left:39.066667pt;}
.x2_c00001{left:80.000000pt;}
.x8_c00001{left:85.466667pt;}
.xe_c00001{left:88.266667pt;}
.x6_c00001{left:92.133333pt;}
.x4_c00001{left:104.933333pt;}
.xc_c00001{left:106.133333pt;}
.xd_c00001{left:126.400000pt;}
.x3_c00001{left:127.733333pt;}
.x7_c00001{left:132.800000pt;}
.x5_c00001{left:140.800000pt;}
.x9_c00001{left:141.733333pt;}
.xb_c00001{left:150.666667pt;}
}





/* 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_c00002 {
    display:none;
  }
  .loading-indicator_c00002.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00002 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_c00002 { 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_c00002" -> "#page-container .classname_c00002")
 */
.pf_c00002 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00002 { /* 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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00002 { /* 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_c00002 { /* 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_c00002 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00002 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00002 {overflow:visible;}
  }
}
.c_c00002 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00002 { /* 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_c00002:after { /* webkit #35443 */
  content: '';
}
.t_c00002:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00002 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 */
}
.__c00002 { /* 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_c00002 { /* info for Javascript */
  display:none;
}
.l_c00002 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00002 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00002 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00002: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_c00002 {
    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_c00002.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00002.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_c00002 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00002{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_cea1d36c66ba9a1bfdfcbc70.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.000000;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_c00002{transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044250,0.000000,0.000000,0.250000,0,0);}
.m2_c00002{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00002{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5_c00002{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m6_c00002{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m3_c00002{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{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__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:transparent;}
.fs1_c00002{font-size:60.000000px;}
.fs0_c00002{font-size:114.000000px;}
.fs3_c00002{font-size:156.000000px;}
.fs2_c00002{font-size:174.000000px;}
.y0_c00002{bottom:0.000000px;}
.y4_c00002{bottom:33.150000px;}
.y1_c00002{bottom:1065.300000px;}
.y3_c00002{bottom:1089.300000px;}
.y2_c00002{bottom:1100.100000px;}
.h3_c00002{height:60.000000px;}
.h2_c00002{height:114.000000px;}
.h5_c00002{height:156.000000px;}
.h4_c00002{height:174.000000px;}
.h1_c00002{height:1167.000000px;}
.h0_c00002{height:1167.119934px;}
.w0_c00002{width:913.320007px;}
.w1_c00002{width:913.500000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:68.700000px;}
.x2_c00002{left:74.100000px;}
.x3_c00002{left:160.950000px;}
.x4_c00002{left:179.250000px;}
.x5_c00002{left:266.400000px;}
.x6_c00002{left:762.900000px;}
.x7_c00002{left:792.750000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs1_c00002{font-size:53.333333pt;}
.fs0_c00002{font-size:101.333333pt;}
.fs3_c00002{font-size:138.666667pt;}
.fs2_c00002{font-size:154.666667pt;}
.y0_c00002{bottom:0.000000pt;}
.y4_c00002{bottom:29.466667pt;}
.y1_c00002{bottom:946.933333pt;}
.y3_c00002{bottom:968.266667pt;}
.y2_c00002{bottom:977.866667pt;}
.h3_c00002{height:53.333333pt;}
.h2_c00002{height:101.333333pt;}
.h5_c00002{height:138.666667pt;}
.h4_c00002{height:154.666667pt;}
.h1_c00002{height:1037.333333pt;}
.h0_c00002{height:1037.439941pt;}
.w0_c00002{width:811.840007pt;}
.w1_c00002{width:812.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:61.066667pt;}
.x2_c00002{left:65.866667pt;}
.x3_c00002{left:143.066667pt;}
.x4_c00002{left:159.333333pt;}
.x5_c00002{left:236.800000pt;}
.x6_c00002{left:678.133333pt;}
.x7_c00002{left:704.666667pt;}
}





/* 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_c00003 {
    display:none;
  }
  .loading-indicator_c00003.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00003 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_c00003 { 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_c00003" -> "#page-container .classname_c00003")
 */
.pf_c00003 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00003 { /* 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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00003 { /* 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_c00003 { /* 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_c00003 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00003 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00003 {overflow:visible;}
  }
}
.c_c00003 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00003 { /* 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_c00003:after { /* webkit #35443 */
  content: '';
}
.t_c00003:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00003 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 */
}
.__c00003 { /* 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_c00003 { /* info for Javascript */
  display:none;
}
.l_c00003 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00003 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00003 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00003: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_c00003 {
    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_c00003.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00003.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_c00003 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00003{font-family:sans-serif;visibility:hidden;}
.sc__c00003{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
}
.y0_c00003{bottom:0.000000px;}
.h1_c00003{height:1167.000000px;}
.h0_c00003{height:1167.119934px;}
.w0_c00003{width:913.320007px;}
.w1_c00003{width:913.500000px;}
.x0_c00003{left:0.000000px;}
@media print{
.y0_c00003{bottom:0.000000pt;}
.h1_c00003{height:1037.333333pt;}
.h0_c00003{height:1037.439941pt;}
.w0_c00003{width:811.840007pt;}
.w1_c00003{width:812.000000pt;}
.x0_c00003{left:0.000000pt;}
}





/* 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_c00004 {
    display:none;
  }
  .loading-indicator_c00004.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00004 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_c00004 { 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_c00004" -> "#page-container .classname_c00004")
 */
.pf_c00004 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00004 { /* 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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00004 { /* 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_c00004 { /* 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_c00004 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00004 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00004 {overflow:visible;}
  }
}
.c_c00004 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00004 { /* 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_c00004:after { /* webkit #35443 */
  content: '';
}
.t_c00004:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00004 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 */
}
.__c00004 { /* 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_c00004 { /* info for Javascript */
  display:none;
}
.l_c00004 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00004 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00004 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00004: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_c00004 {
    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_c00004.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00004.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_c00004 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00004{font-family:sans-serif;visibility:hidden;}
.sc__c00004{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
}
.y0_c00004{bottom:0.000000px;}
.h1_c00004{height:1167.000000px;}
.h0_c00004{height:1167.119934px;}
.w0_c00004{width:913.320007px;}
.w1_c00004{width:913.500000px;}
.x0_c00004{left:0.000000px;}
@media print{
.y0_c00004{bottom:0.000000pt;}
.h1_c00004{height:1037.333333pt;}
.h0_c00004{height:1037.439941pt;}
.w0_c00004{width:811.840007pt;}
.w1_c00004{width:812.000000pt;}
.x0_c00004{left:0.000000pt;}
}





/* 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_c00005 {
    display:none;
  }
  .loading-indicator_c00005.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00005 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_c00005 { 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_c00005" -> "#page-container .classname_c00005")
 */
.pf_c00005 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00005 { /* 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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00005 { /* 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_c00005 { /* 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_c00005 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00005 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00005 {overflow:visible;}
  }
}
.c_c00005 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00005 { /* 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_c00005:after { /* webkit #35443 */
  content: '';
}
.t_c00005:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00005 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 */
}
.__c00005 { /* 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_c00005 { /* info for Javascript */
  display:none;
}
.l_c00005 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00005 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00005 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00005: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_c00005 {
    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_c00005.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00005.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_c00005 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00005{font-family:sans-serif;visibility:hidden;}
.sc__c00005{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00005{-webkit-text-stroke:0px transparent;}
}
.y0_c00005{bottom:0.000000px;}
.h1_c00005{height:1167.000000px;}
.h0_c00005{height:1167.119934px;}
.w0_c00005{width:913.320007px;}
.w1_c00005{width:913.500000px;}
.x0_c00005{left:0.000000px;}
@media print{
.y0_c00005{bottom:0.000000pt;}
.h1_c00005{height:1037.333333pt;}
.h0_c00005{height:1037.439941pt;}
.w0_c00005{width:811.840007pt;}
.w1_c00005{width:812.000000pt;}
.x0_c00005{left:0.000000pt;}
}





/* 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_c00006 {
    display:none;
  }
  .loading-indicator_c00006.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00006 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_c00006 { 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_c00006" -> "#page-container .classname_c00006")
 */
.pf_c00006 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00006 { /* 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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00006 { /* 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_c00006 { /* 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_c00006 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00006 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00006 {overflow:visible;}
  }
}
.c_c00006 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00006 { /* 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_c00006:after { /* webkit #35443 */
  content: '';
}
.t_c00006:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00006 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 */
}
.__c00006 { /* 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_c00006 { /* info for Javascript */
  display:none;
}
.l_c00006 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00006 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00006 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00006: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_c00006 {
    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_c00006.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00006.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_c00006 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00006{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00006;src:url('chunks/assets/font_61a2dbaccd85e5c230bed072.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.000000;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;}
.m1_c00006{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.md_c00006{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma_c00006{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_c00006{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m8_c00006{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mb_c00006{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{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__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
.fc0_c00006{color:transparent;}
.fs1_c00006{font-size:36.000000px;}
.fs0_c00006{font-size:54.000000px;}
.fs2_c00006{font-size:66.000000px;}
.y0_c00006{bottom:0.000000px;}
.y4_c00006{bottom:40.350000px;}
.y3_c00006{bottom:74.850000px;}
.y1_c00006{bottom:1124.700000px;}
.y2_c00006{bottom:1125.750000px;}
.h3_c00006{height:36.000000px;}
.h2_c00006{height:54.000000px;}
.h4_c00006{height:66.000000px;}
.h1_c00006{height:1167.000000px;}
.h0_c00006{height:1167.119934px;}
.w0_c00006{width:913.320007px;}
.w1_c00006{width:913.500000px;}
.x0_c00006{left:0.000000px;}
.x8_c00006{left:150.450000px;}
.x9_c00006{left:175.350000px;}
.x1_c00006{left:247.650000px;}
.x2_c00006{left:283.350000px;}
.xa_c00006{left:289.500000px;}
.xb_c00006{left:382.350000px;}
.xc_c00006{left:504.750000px;}
.xd_c00006{left:528.900000px;}
.xe_c00006{left:631.500000px;}
.x3_c00006{left:713.850000px;}
.x4_c00006{left:728.550000px;}
.x5_c00006{left:736.500000px;}
.x6_c00006{left:752.700000px;}
.x7_c00006{left:787.200000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs1_c00006{font-size:32.000000pt;}
.fs0_c00006{font-size:48.000000pt;}
.fs2_c00006{font-size:58.666667pt;}
.y0_c00006{bottom:0.000000pt;}
.y4_c00006{bottom:35.866667pt;}
.y3_c00006{bottom:66.533333pt;}
.y1_c00006{bottom:999.733333pt;}
.y2_c00006{bottom:1000.666667pt;}
.h3_c00006{height:32.000000pt;}
.h2_c00006{height:48.000000pt;}
.h4_c00006{height:58.666667pt;}
.h1_c00006{height:1037.333333pt;}
.h0_c00006{height:1037.439941pt;}
.w0_c00006{width:811.840007pt;}
.w1_c00006{width:812.000000pt;}
.x0_c00006{left:0.000000pt;}
.x8_c00006{left:133.733333pt;}
.x9_c00006{left:155.866667pt;}
.x1_c00006{left:220.133333pt;}
.x2_c00006{left:251.866667pt;}
.xa_c00006{left:257.333333pt;}
.xb_c00006{left:339.866667pt;}
.xc_c00006{left:448.666667pt;}
.xd_c00006{left:470.133333pt;}
.xe_c00006{left:561.333333pt;}
.x3_c00006{left:634.533333pt;}
.x4_c00006{left:647.600000pt;}
.x5_c00006{left:654.666667pt;}
.x6_c00006{left:669.066667pt;}
.x7_c00006{left:699.733333pt;}
}





/* 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_c00007 {
    display:none;
  }
  .loading-indicator_c00007.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00007 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_c00007 { 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_c00007" -> "#page-container .classname_c00007")
 */
.pf_c00007 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00007 { /* 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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00007 { /* 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_c00007 { /* 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_c00007 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00007 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00007 {overflow:visible;}
  }
}
.c_c00007 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00007 { /* 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_c00007:after { /* webkit #35443 */
  content: '';
}
.t_c00007:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00007 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 */
}
.__c00007 { /* 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_c00007 { /* info for Javascript */
  display:none;
}
.l_c00007 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00007 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00007 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00007: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_c00007 {
    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_c00007.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00007.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_c00007 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00007{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.000000;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;}
.m14_c00007{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043750,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046250,0.000000,0.000000,0.250000,0,0);}
.m18_c00007{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m12_c00007{transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054500,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mc_c00007{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m11_c00007{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m9_c00007{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m6_c00007{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8_c00007{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00007{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319500,0.000000,0.000000,0.250000,0,0);}
.m4_c00007{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{transform:matrix(0.378250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378250,0.000000,0.000000,0.250000,0,0);}
.m5_c00007{transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378500,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.708500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.708500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.708500,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls0_c00007{letter-spacing:0.000000px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{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__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00007{word-spacing:-10.444444px;}
.ws3_c00007{word-spacing:0.000000px;}
.ws2_c00007{word-spacing:118.403670px;}
.ws0_c00007{word-spacing:343.459459px;}
.fc0_c00007{color:transparent;}
.fs3_c00007{font-size:42.000000px;}
.fs0_c00007{font-size:66.000000px;}
.fs2_c00007{font-size:96.000000px;}
.fs1_c00007{font-size:156.000000px;}
.y0_c00007{bottom:0.000000px;}
.y8_c00007{bottom:181.500000px;}
.y7_c00007{bottom:211.650000px;}
.y6_c00007{bottom:545.850000px;}
.y4_c00007{bottom:548.700000px;}
.y5_c00007{bottom:553.350000px;}
.y3_c00007{bottom:753.900000px;}
.y2_c00007{bottom:929.550000px;}
.y1_c00007{bottom:1008.750000px;}
.h5_c00007{height:42.000000px;}
.h2_c00007{height:66.000000px;}
.h4_c00007{height:96.000000px;}
.h3_c00007{height:156.000000px;}
.h1_c00007{height:1167.000000px;}
.h0_c00007{height:1167.119934px;}
.w0_c00007{width:913.320007px;}
.w1_c00007{width:913.500000px;}
.x0_c00007{left:0.000000px;}
.x2_c00007{left:131.100000px;}
.x9_c00007{left:301.650000px;}
.xf_c00007{left:325.800000px;}
.x5_c00007{left:347.100000px;}
.xa_c00007{left:373.650000px;}
.x10_c00007{left:378.000000px;}
.x6_c00007{left:411.900000px;}
.x11_c00007{left:430.500000px;}
.x1_c00007{left:449.250000px;}
.xe_c00007{left:479.100000px;}
.xb_c00007{left:481.350000px;}
.x7_c00007{left:484.650000px;}
.xc_c00007{left:494.250000px;}
.x3_c00007{left:499.050000px;}
.x8_c00007{left:516.300000px;}
.xd_c00007{left:521.250000px;}
.x12_c00007{left:541.200000px;}
.x13_c00007{left:545.550000px;}
.x14_c00007{left:553.050000px;}
.x4_c00007{left:574.650000px;}
.x15_c00007{left:585.000000px;}
.x16_c00007{left:593.700000px;}
.x17_c00007{left:604.800000px;}
.x18_c00007{left:619.200000px;}
.x19_c00007{left:624.600000px;}
.x1a_c00007{left:635.700000px;}
.x1b_c00007{left:651.150000px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls0_c00007{letter-spacing:0.000000pt;}
.ws1_c00007{word-spacing:-9.283951pt;}
.ws3_c00007{word-spacing:0.000000pt;}
.ws2_c00007{word-spacing:105.247706pt;}
.ws0_c00007{word-spacing:305.297297pt;}
.fs3_c00007{font-size:37.333333pt;}
.fs0_c00007{font-size:58.666667pt;}
.fs2_c00007{font-size:85.333333pt;}
.fs1_c00007{font-size:138.666667pt;}
.y0_c00007{bottom:0.000000pt;}
.y8_c00007{bottom:161.333333pt;}
.y7_c00007{bottom:188.133333pt;}
.y6_c00007{bottom:485.200000pt;}
.y4_c00007{bottom:487.733333pt;}
.y5_c00007{bottom:491.866667pt;}
.y3_c00007{bottom:670.133333pt;}
.y2_c00007{bottom:826.266667pt;}
.y1_c00007{bottom:896.666667pt;}
.h5_c00007{height:37.333333pt;}
.h2_c00007{height:58.666667pt;}
.h4_c00007{height:85.333333pt;}
.h3_c00007{height:138.666667pt;}
.h1_c00007{height:1037.333333pt;}
.h0_c00007{height:1037.439941pt;}
.w0_c00007{width:811.840007pt;}
.w1_c00007{width:812.000000pt;}
.x0_c00007{left:0.000000pt;}
.x2_c00007{left:116.533333pt;}
.x9_c00007{left:268.133333pt;}
.xf_c00007{left:289.600000pt;}
.x5_c00007{left:308.533333pt;}
.xa_c00007{left:332.133333pt;}
.x10_c00007{left:336.000000pt;}
.x6_c00007{left:366.133333pt;}
.x11_c00007{left:382.666667pt;}
.x1_c00007{left:399.333333pt;}
.xe_c00007{left:425.866667pt;}
.xb_c00007{left:427.866667pt;}
.x7_c00007{left:430.800000pt;}
.xc_c00007{left:439.333333pt;}
.x3_c00007{left:443.600000pt;}
.x8_c00007{left:458.933333pt;}
.xd_c00007{left:463.333333pt;}
.x12_c00007{left:481.066667pt;}
.x13_c00007{left:484.933333pt;}
.x14_c00007{left:491.600000pt;}
.x4_c00007{left:510.800000pt;}
.x15_c00007{left:520.000000pt;}
.x16_c00007{left:527.733333pt;}
.x17_c00007{left:537.600000pt;}
.x18_c00007{left:550.400000pt;}
.x19_c00007{left:555.200000pt;}
.x1a_c00007{left:565.066667pt;}
.x1b_c00007{left:578.800000pt;}
}





/* 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_c00008 {
    display:none;
  }
  .loading-indicator_c00008.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00008 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_c00008 { 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_c00008" -> "#page-container .classname_c00008")
 */
.pf_c00008 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00008 { /* 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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00008 { /* 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_c00008 { /* 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_c00008 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00008 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00008 {overflow:visible;}
  }
}
.c_c00008 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00008 { /* 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_c00008:after { /* webkit #35443 */
  content: '';
}
.t_c00008:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00008 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 */
}
.__c00008 { /* 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_c00008 { /* info for Javascript */
  display:none;
}
.l_c00008 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00008 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00008 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00008: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_c00008 {
    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_c00008.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00008.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_c00008 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00008{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00008;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.000000;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;}
.m8_c00008{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00008{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422250,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{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__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:transparent;}
.fs0_c00008{font-size:30.000000px;}
.fs6_c00008{font-size:48.000000px;}
.fs2_c00008{font-size:54.000000px;}
.fs1_c00008{font-size:60.000000px;}
.fs7_c00008{font-size:78.000000px;}
.fs3_c00008{font-size:90.000000px;}
.fs4_c00008{font-size:174.000000px;}
.fs5_c00008{font-size:186.000000px;}
.y0_c00008{bottom:0.000000px;}
.ya_c00008{bottom:171.300000px;}
.y9_c00008{bottom:189.000000px;}
.y8_c00008{bottom:281.100000px;}
.y7_c00008{bottom:307.500000px;}
.y6_c00008{bottom:438.450000px;}
.y5_c00008{bottom:488.850000px;}
.y4_c00008{bottom:490.350000px;}
.y3_c00008{bottom:772.950000px;}
.y2_c00008{bottom:909.750000px;}
.y1_c00008{bottom:1124.250000px;}
.h2_c00008{height:30.000000px;}
.h8_c00008{height:48.000000px;}
.h4_c00008{height:54.000000px;}
.h3_c00008{height:60.000000px;}
.h9_c00008{height:78.000000px;}
.h5_c00008{height:90.000000px;}
.h6_c00008{height:174.000000px;}
.h7_c00008{height:186.000000px;}
.h1_c00008{height:1167.000000px;}
.h0_c00008{height:1167.119934px;}
.w0_c00008{width:913.320007px;}
.w1_c00008{width:913.500000px;}
.x0_c00008{left:0.000000px;}
.x8_c00008{left:63.300000px;}
.x4_c00008{left:65.850000px;}
.xa_c00008{left:82.050000px;}
.xb_c00008{left:98.250000px;}
.x3_c00008{left:233.700000px;}
.x9_c00008{left:277.200000px;}
.x5_c00008{left:399.900000px;}
.x1_c00008{left:766.050000px;}
.x2_c00008{left:788.700000px;}
.x6_c00008{left:813.600000px;}
.x7_c00008{left:859.650000px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs0_c00008{font-size:26.666667pt;}
.fs6_c00008{font-size:42.666667pt;}
.fs2_c00008{font-size:48.000000pt;}
.fs1_c00008{font-size:53.333333pt;}
.fs7_c00008{font-size:69.333333pt;}
.fs3_c00008{font-size:80.000000pt;}
.fs4_c00008{font-size:154.666667pt;}
.fs5_c00008{font-size:165.333333pt;}
.y0_c00008{bottom:0.000000pt;}
.ya_c00008{bottom:152.266667pt;}
.y9_c00008{bottom:168.000000pt;}
.y8_c00008{bottom:249.866667pt;}
.y7_c00008{bottom:273.333333pt;}
.y6_c00008{bottom:389.733333pt;}
.y5_c00008{bottom:434.533333pt;}
.y4_c00008{bottom:435.866667pt;}
.y3_c00008{bottom:687.066667pt;}
.y2_c00008{bottom:808.666667pt;}
.y1_c00008{bottom:999.333333pt;}
.h2_c00008{height:26.666667pt;}
.h8_c00008{height:42.666667pt;}
.h4_c00008{height:48.000000pt;}
.h3_c00008{height:53.333333pt;}
.h9_c00008{height:69.333333pt;}
.h5_c00008{height:80.000000pt;}
.h6_c00008{height:154.666667pt;}
.h7_c00008{height:165.333333pt;}
.h1_c00008{height:1037.333333pt;}
.h0_c00008{height:1037.439941pt;}
.w0_c00008{width:811.840007pt;}
.w1_c00008{width:812.000000pt;}
.x0_c00008{left:0.000000pt;}
.x8_c00008{left:56.266667pt;}
.x4_c00008{left:58.533333pt;}
.xa_c00008{left:72.933333pt;}
.xb_c00008{left:87.333333pt;}
.x3_c00008{left:207.733333pt;}
.x9_c00008{left:246.400000pt;}
.x5_c00008{left:355.466667pt;}
.x1_c00008{left:680.933333pt;}
.x2_c00008{left:701.066667pt;}
.x6_c00008{left:723.200000pt;}
.x7_c00008{left:764.133333pt;}
}





/* 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_c00009 {
    display:none;
  }
  .loading-indicator_c00009.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00009 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_c00009 { 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_c00009" -> "#page-container .classname_c00009")
 */
.pf_c00009 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00009 { /* 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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00009 { /* 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_c00009 { /* 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_c00009 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00009 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00009 {overflow:visible;}
  }
}
.c_c00009 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00009 { /* 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_c00009:after { /* webkit #35443 */
  content: '';
}
.t_c00009:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00009 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 */
}
.__c00009 { /* 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_c00009 { /* info for Javascript */
  display:none;
}
.l_c00009 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00009 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00009 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00009: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_c00009 {
    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_c00009.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00009.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_c00009 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00009{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00009;src:url('chunks/assets/font_14c8bc81534dbf9e46152a73.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.000000;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;}
.m14_c00009{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00009{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.me_c00009{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.mc_c00009{transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319000,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m7_c00009{transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371000,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.434500,0.000000,0.000000,0.250000,0,0);}
.v0_c00009{vertical-align:0.000000px;}
.ls0_c00009{letter-spacing:0.000000px;}
.sc__c00009{text-shadow:none;}
.sc0_c00009{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__c00009{-webkit-text-stroke:0px transparent;}
.sc0_c00009{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00009{word-spacing:0.000000px;}
.fc0_c00009{color:transparent;}
.fs2_c00009{font-size:42.000000px;}
.fs0_c00009{font-size:54.000000px;}
.fs4_c00009{font-size:78.000000px;}
.fs3_c00009{font-size:108.000000px;}
.fs1_c00009{font-size:168.000000px;}
.y0_c00009{bottom:0.000000px;}
.y9_c00009{bottom:145.500000px;}
.y8_c00009{bottom:174.300000px;}
.y7_c00009{bottom:198.750000px;}
.y6_c00009{bottom:227.850000px;}
.y5_c00009{bottom:537.900000px;}
.y4_c00009{bottom:598.350000px;}
.y3_c00009{bottom:743.100000px;}
.y2_c00009{bottom:905.700000px;}
.y1_c00009{bottom:999.750000px;}
.h4_c00009{height:42.000000px;}
.h2_c00009{height:54.000000px;}
.h6_c00009{height:78.000000px;}
.h5_c00009{height:108.000000px;}
.h3_c00009{height:168.000000px;}
.h1_c00009{height:1167.000000px;}
.h0_c00009{height:1167.119934px;}
.w0_c00009{width:913.320007px;}
.w1_c00009{width:913.500000px;}
.x0_c00009{left:0.000000px;}
.x2_c00009{left:69.150000px;}
.xd_c00009{left:149.100000px;}
.x6_c00009{left:246.600000px;}
.xe_c00009{left:268.650000px;}
.x9_c00009{left:280.050000px;}
.x4_c00009{left:283.650000px;}
.xf_c00009{left:304.650000px;}
.xa_c00009{left:330.750000px;}
.x8_c00009{left:354.900000px;}
.x1_c00009{left:381.900000px;}
.xb_c00009{left:385.050000px;}
.x5_c00009{left:392.400000px;}
.x10_c00009{left:396.750000px;}
.x7_c00009{left:412.500000px;}
.x3_c00009{left:432.000000px;}
.xc_c00009{left:438.750000px;}
.x11_c00009{left:439.950000px;}
.x12_c00009{left:499.650000px;}
.x13_c00009{left:573.750000px;}
.x14_c00009{left:605.400000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs2_c00009{font-size:37.333333pt;}
.fs0_c00009{font-size:48.000000pt;}
.fs4_c00009{font-size:69.333333pt;}
.fs3_c00009{font-size:96.000000pt;}
.fs1_c00009{font-size:149.333333pt;}
.y0_c00009{bottom:0.000000pt;}
.y9_c00009{bottom:129.333333pt;}
.y8_c00009{bottom:154.933333pt;}
.y7_c00009{bottom:176.666667pt;}
.y6_c00009{bottom:202.533333pt;}
.y5_c00009{bottom:478.133333pt;}
.y4_c00009{bottom:531.866667pt;}
.y3_c00009{bottom:660.533333pt;}
.y2_c00009{bottom:805.066667pt;}
.y1_c00009{bottom:888.666667pt;}
.h4_c00009{height:37.333333pt;}
.h2_c00009{height:48.000000pt;}
.h6_c00009{height:69.333333pt;}
.h5_c00009{height:96.000000pt;}
.h3_c00009{height:149.333333pt;}
.h1_c00009{height:1037.333333pt;}
.h0_c00009{height:1037.439941pt;}
.w0_c00009{width:811.840007pt;}
.w1_c00009{width:812.000000pt;}
.x0_c00009{left:0.000000pt;}
.x2_c00009{left:61.466667pt;}
.xd_c00009{left:132.533333pt;}
.x6_c00009{left:219.200000pt;}
.xe_c00009{left:238.800000pt;}
.x9_c00009{left:248.933333pt;}
.x4_c00009{left:252.133333pt;}
.xf_c00009{left:270.800000pt;}
.xa_c00009{left:294.000000pt;}
.x8_c00009{left:315.466667pt;}
.x1_c00009{left:339.466667pt;}
.xb_c00009{left:342.266667pt;}
.x5_c00009{left:348.800000pt;}
.x10_c00009{left:352.666667pt;}
.x7_c00009{left:366.666667pt;}
.x3_c00009{left:384.000000pt;}
.xc_c00009{left:390.000000pt;}
.x11_c00009{left:391.066667pt;}
.x12_c00009{left:444.133333pt;}
.x13_c00009{left:510.000000pt;}
.x14_c00009{left:538.133333pt;}
}





/* 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_c00010 {
    display:none;
  }
  .loading-indicator_c00010.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00010 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_c00010 { 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_c00010" -> "#page-container .classname_c00010")
 */
.pf_c00010 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00010 { /* 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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00010 { /* 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_c00010 { /* 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_c00010 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00010 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00010 {overflow:visible;}
  }
}
.c_c00010 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00010 { /* 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_c00010:after { /* webkit #35443 */
  content: '';
}
.t_c00010:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00010 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 */
}
.__c00010 { /* 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_c00010 { /* info for Javascript */
  display:none;
}
.l_c00010 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00010 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00010 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00010: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_c00010 {
    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_c00010.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00010.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_c00010 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00010{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00010;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.000000;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;}
.m3_c00010{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1_c00010{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb_c00010{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8_c00010{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7_c00010{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.v0_c00010{vertical-align:0.000000px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{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__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:0.000000px;}
.fc0_c00010{color:transparent;}
.fs2_c00010{font-size:42.000000px;}
.fs1_c00010{font-size:60.000000px;}
.fs0_c00010{font-size:114.000000px;}
.y0_c00010{bottom:0.000000px;}
.y7_c00010{bottom:182.550000px;}
.y6_c00010{bottom:196.200000px;}
.y5_c00010{bottom:209.550000px;}
.y4_c00010{bottom:780.150000px;}
.y3_c00010{bottom:806.700000px;}
.y2_c00010{bottom:809.250000px;}
.y1_c00010{bottom:816.450000px;}
.h4_c00010{height:42.000000px;}
.h3_c00010{height:60.000000px;}
.h2_c00010{height:114.000000px;}
.h1_c00010{height:1167.000000px;}
.h0_c00010{height:1167.119934px;}
.w0_c00010{width:913.320007px;}
.w1_c00010{width:913.500000px;}
.x0_c00010{left:0.000000px;}
.x7_c00010{left:374.400000px;}
.x4_c00010{left:428.700000px;}
.x1_c00010{left:430.950000px;}
.x6_c00010{left:439.950000px;}
.x5_c00010{left:461.100000px;}
.xb_c00010{left:470.400000px;}
.x8_c00010{left:504.300000px;}
.x3_c00010{left:507.900000px;}
.x9_c00010{left:515.850000px;}
.x2_c00010{left:542.100000px;}
.xa_c00010{left:544.950000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs2_c00010{font-size:37.333333pt;}
.fs1_c00010{font-size:53.333333pt;}
.fs0_c00010{font-size:101.333333pt;}
.y0_c00010{bottom:0.000000pt;}
.y7_c00010{bottom:162.266667pt;}
.y6_c00010{bottom:174.400000pt;}
.y5_c00010{bottom:186.266667pt;}
.y4_c00010{bottom:693.466667pt;}
.y3_c00010{bottom:717.066667pt;}
.y2_c00010{bottom:719.333333pt;}
.y1_c00010{bottom:725.733333pt;}
.h4_c00010{height:37.333333pt;}
.h3_c00010{height:53.333333pt;}
.h2_c00010{height:101.333333pt;}
.h1_c00010{height:1037.333333pt;}
.h0_c00010{height:1037.439941pt;}
.w0_c00010{width:811.840007pt;}
.w1_c00010{width:812.000000pt;}
.x0_c00010{left:0.000000pt;}
.x7_c00010{left:332.800000pt;}
.x4_c00010{left:381.066667pt;}
.x1_c00010{left:383.066667pt;}
.x6_c00010{left:391.066667pt;}
.x5_c00010{left:409.866667pt;}
.xb_c00010{left:418.133333pt;}
.x8_c00010{left:448.266667pt;}
.x3_c00010{left:451.466667pt;}
.x9_c00010{left:458.533333pt;}
.x2_c00010{left:481.866667pt;}
.xa_c00010{left:484.400000pt;}
}





/* 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_c00011 {
    display:none;
  }
  .loading-indicator_c00011.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00011 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_c00011 { 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_c00011" -> "#page-container .classname_c00011")
 */
.pf_c00011 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00011 { /* 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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00011 { /* 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_c00011 { /* 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_c00011 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00011 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00011 {overflow:visible;}
  }
}
.c_c00011 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00011 { /* 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_c00011:after { /* webkit #35443 */
  content: '';
}
.t_c00011:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00011 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 */
}
.__c00011 { /* 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_c00011 { /* info for Javascript */
  display:none;
}
.l_c00011 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00011 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00011 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00011: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_c00011 {
    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_c00011.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00011.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_c00011 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00011{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00011;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.000000;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;}
.m44_c00011{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m12_c00011{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00011{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m46_c00011{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m40_c00011{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00011{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m43_c00011{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m69_c00011{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m67_c00011{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m61_c00011{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00011{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00011{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00011{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m47_c00011{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00011{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m58_c00011{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00011{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m62_c00011{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00011{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m31_c00011{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m65_c00011{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00011{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00011{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6_c00011{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00011{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00011{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m60_c00011{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00011{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00011{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m45_c00011{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m64_c00011{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00011{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m33_c00011{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m32_c00011{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00011{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m30_c00011{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m37_c00011{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00011{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m10_c00011{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00011{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m49_c00011{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00011{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00011{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c00011{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m1_c00011{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m66_c00011{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m22_c00011{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00011{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m63_c00011{transform:matrix(0.894000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.894000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.894000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.900000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00011{transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00011{transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);}
.m50_c00011{transform:matrix(1.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.048000,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{transform:matrix(1.059500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.059500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.059500,0.000000,0.000000,0.250000,0,0);}
.m68_c00011{transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{transform:matrix(1.071250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.071250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.071250,0.000000,0.000000,0.250000,0,0);}
.m34_c00011{transform:matrix(1.081000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.081000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.081000,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:459.583333px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{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__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00011{word-spacing:-489.583333px;}
.ws3_c00011{word-spacing:0.000000px;}
.ws0_c00011{word-spacing:425.416667px;}
.ws1_c00011{word-spacing:527.500000px;}
._1_c00011{margin-left:-459.583333px;}
._0_c00011{width:1727.500000px;}
.fc0_c00011{color:transparent;}
.fs1_c00011{font-size:30.000000px;}
.fs2_c00011{font-size:60.000000px;}
.fs0_c00011{font-size:102.000000px;}
.y0_c00011{bottom:0.000000px;}
.y1b_c00011{bottom:149.100000px;}
.y1a_c00011{bottom:174.300000px;}
.y19_c00011{bottom:198.750000px;}
.y18_c00011{bottom:222.900000px;}
.y17_c00011{bottom:247.350000px;}
.y16_c00011{bottom:271.500000px;}
.y15_c00011{bottom:295.500000px;}
.y14_c00011{bottom:319.650000px;}
.y13_c00011{bottom:344.550000px;}
.y12_c00011{bottom:369.000000px;}
.y11_c00011{bottom:393.450000px;}
.y10_c00011{bottom:416.850000px;}
.yf_c00011{bottom:438.150000px;}
.ye_c00011{bottom:461.850000px;}
.yd_c00011{bottom:486.750000px;}
.yc_c00011{bottom:510.900000px;}
.yb_c00011{bottom:535.350000px;}
.ya_c00011{bottom:559.050000px;}
.y9_c00011{bottom:578.850000px;}
.y8_c00011{bottom:599.400000px;}
.y7_c00011{bottom:623.850000px;}
.y6_c00011{bottom:648.300000px;}
.y2_c00011{bottom:662.400000px;}
.y5_c00011{bottom:672.900000px;}
.y4_c00011{bottom:696.600000px;}
.y3_c00011{bottom:716.700000px;}
.y1_c00011{bottom:819.750000px;}
.h3_c00011{height:30.000000px;}
.h4_c00011{height:60.000000px;}
.h2_c00011{height:102.000000px;}
.h1_c00011{height:1167.000000px;}
.h0_c00011{height:1167.119934px;}
.w0_c00011{width:913.320007px;}
.w1_c00011{width:913.500000px;}
.x0_c00011{left:0.000000px;}
.x92_c00011{left:139.650000px;}
.x2_c00011{left:140.700000px;}
.x83_c00011{left:142.950000px;}
.x5f_c00011{left:144.750000px;}
.x7d_c00011{left:146.850000px;}
.x8d_c00011{left:148.350000px;}
.x59_c00011{left:150.150000px;}
.x2f_c00011{left:153.300000px;}
.x6c_c00011{left:154.500000px;}
.x48_c00011{left:155.550000px;}
.x24_c00011{left:159.900000px;}
.x52_c00011{left:161.250000px;}
.x18_c00011{left:167.700000px;}
.x7e_c00011{left:185.400000px;}
.x84_c00011{left:186.450000px;}
.x30_c00011{left:187.800000px;}
.x25_c00011{left:189.450000px;}
.x19_c00011{left:192.600000px;}
.x3_c00011{left:195.450000px;}
.x49_c00011{left:222.150000px;}
.x3c_c00011{left:224.700000px;}
.x10_c00011{left:230.400000px;}
.x53_c00011{left:240.000000px;}
.x6d_c00011{left:246.750000px;}
.x73_c00011{left:252.300000px;}
.x3d_c00011{left:253.500000px;}
.x70_c00011{left:254.550000px;}
.x93_c00011{left:258.450000px;}
.x31_c00011{left:264.450000px;}
.x6a_c00011{left:266.400000px;}
.x74_c00011{left:269.550000px;}
.x54_c00011{left:271.200000px;}
.x26_c00011{left:273.000000px;}
.x1a_c00011{left:276.150000px;}
.x60_c00011{left:277.650000px;}
.x32_c00011{left:281.400000px;}
.x4_c00011{left:286.200000px;}
.x5a_c00011{left:288.600000px;}
.x16_c00011{left:295.500000px;}
.x11_c00011{left:297.300000px;}
.x7b_c00011{left:300.000000px;}
.x99_c00011{left:303.750000px;}
.x33_c00011{left:310.500000px;}
.x85_c00011{left:312.750000px;}
.x12_c00011{left:315.300000px;}
.x71_c00011{left:317.850000px;}
.x5b_c00011{left:318.900000px;}
.x3e_c00011{left:320.100000px;}
.x46_c00011{left:329.100000px;}
.x86_c00011{left:330.450000px;}
.x9a_c00011{left:332.250000px;}
.x61_c00011{left:334.200000px;}
.x1b_c00011{left:336.600000px;}
.x3f_c00011{left:338.100000px;}
.x4a_c00011{left:340.800000px;}
.x5_c00011{left:343.500000px;}
.x6e_c00011{left:346.800000px;}
.x1c_c00011{left:353.850000px;}
.x34_c00011{left:357.600000px;}
.x55_c00011{left:360.150000px;}
.x6_c00011{left:364.050000px;}
.x87_c00011{left:368.250000px;}
.x1_c00011{left:369.750000px;}
.x94_c00011{left:371.400000px;}
.x7c_c00011{left:376.950000px;}
.x5c_c00011{left:378.600000px;}
.x4b_c00011{left:383.250000px;}
.x13_c00011{left:387.600000px;}
.x56_c00011{left:388.950000px;}
.x95_c00011{left:390.450000px;}
.x62_c00011{left:392.100000px;}
.x7_c00011{left:393.150000px;}
.x27_c00011{left:394.650000px;}
.x88_c00011{left:396.750000px;}
.x35_c00011{left:398.250000px;}
.x6b_c00011{left:399.300000px;}
.x1d_c00011{left:401.400000px;}
.x40_c00011{left:403.650000px;}
.x5d_c00011{left:406.650000px;}
.x63_c00011{left:409.800000px;}
.x28_c00011{left:412.350000px;}
.x1e_c00011{left:418.650000px;}
.x36_c00011{left:427.800000px;}
.x8e_c00011{left:430.950000px;}
.x6f_c00011{left:433.950000px;}
.x14_c00011{left:436.200000px;}
.x4c_c00011{left:441.600000px;}
.x64_c00011{left:445.050000px;}
.x8_c00011{left:448.200000px;}
.x5e_c00011{left:453.750000px;}
.x8a_c00011{left:455.250000px;}
.x29_c00011{left:458.850000px;}
.x75_c00011{left:465.450000px;}
.x1f_c00011{left:466.500000px;}
.x8b_c00011{left:472.950000px;}
.x2a_c00011{left:476.100000px;}
.x9_c00011{left:480.300000px;}
.x20_c00011{left:483.750000px;}
.x41_c00011{left:488.250000px;}
.x65_c00011{left:494.700000px;}
.x7f_c00011{left:501.900000px;}
.x37_c00011{left:503.100000px;}
.x42_c00011{left:505.500000px;}
.x76_c00011{left:513.000000px;}
.x66_c00011{left:514.800000px;}
.x4d_c00011{left:517.650000px;}
.x96_c00011{left:521.550000px;}
.xa_c00011{left:524.250000px;}
.x77_c00011{left:531.000000px;}
.x21_c00011{left:537.750000px;}
.x57_c00011{left:539.550000px;}
.xb_c00011{left:541.500000px;}
.x80_c00011{left:543.000000px;}
.x38_c00011{left:544.800000px;}
.x67_c00011{left:551.550000px;}
.x2b_c00011{left:557.850000px;}
.x39_c00011{left:562.500000px;}
.x68_c00011{left:569.250000px;}
.x4e_c00011{left:570.900000px;}
.x58_c00011{left:575.250000px;}
.x43_c00011{left:580.800000px;}
.x78_c00011{left:586.500000px;}
.x4f_c00011{left:588.600000px;}
.x44_c00011{left:595.950000px;}
.x8c_c00011{left:607.650000px;}
.x22_c00011{left:611.550000px;}
.x69_c00011{left:613.950000px;}
.x79_c00011{left:621.450000px;}
.xc_c00011{left:626.100000px;}
.x97_c00011{left:637.800000px;}
.x50_c00011{left:639.000000px;}
.x3a_c00011{left:640.950000px;}
.x8f_c00011{left:642.300000px;}
.x81_c00011{left:644.850000px;}
.xd_c00011{left:645.900000px;}
.x2c_c00011{left:647.100000px;}
.x98_c00011{left:657.300000px;}
.x45_c00011{left:658.500000px;}
.x3b_c00011{left:662.250000px;}
.x90_c00011{left:677.550000px;}
.x7a_c00011{left:701.700000px;}
.xe_c00011{left:707.400000px;}
.x82_c00011{left:713.250000px;}
.x51_c00011{left:715.350000px;}
.x2d_c00011{left:717.000000px;}
.x91_c00011{left:739.650000px;}
.x89_c00011{left:740.850000px;}
.xf_c00011{left:746.250000px;}
.x72_c00011{left:749.100000px;}
.x47_c00011{left:750.600000px;}
.x2e_c00011{left:752.700000px;}
.x23_c00011{left:759.900000px;}
.x17_c00011{left:760.950000px;}
.x15_c00011{left:763.050000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:408.518519pt;}
.ws2_c00011{word-spacing:-435.185185pt;}
.ws3_c00011{word-spacing:0.000000pt;}
.ws0_c00011{word-spacing:378.148148pt;}
.ws1_c00011{word-spacing:468.888889pt;}
._1_c00011{margin-left:-408.518519pt;}
._0_c00011{width:1535.555556pt;}
.fs1_c00011{font-size:26.666667pt;}
.fs2_c00011{font-size:53.333333pt;}
.fs0_c00011{font-size:90.666667pt;}
.y0_c00011{bottom:0.000000pt;}
.y1b_c00011{bottom:132.533333pt;}
.y1a_c00011{bottom:154.933333pt;}
.y19_c00011{bottom:176.666667pt;}
.y18_c00011{bottom:198.133333pt;}
.y17_c00011{bottom:219.866667pt;}
.y16_c00011{bottom:241.333333pt;}
.y15_c00011{bottom:262.666667pt;}
.y14_c00011{bottom:284.133333pt;}
.y13_c00011{bottom:306.266667pt;}
.y12_c00011{bottom:328.000000pt;}
.y11_c00011{bottom:349.733333pt;}
.y10_c00011{bottom:370.533333pt;}
.yf_c00011{bottom:389.466667pt;}
.ye_c00011{bottom:410.533333pt;}
.yd_c00011{bottom:432.666667pt;}
.yc_c00011{bottom:454.133333pt;}
.yb_c00011{bottom:475.866667pt;}
.ya_c00011{bottom:496.933333pt;}
.y9_c00011{bottom:514.533333pt;}
.y8_c00011{bottom:532.800000pt;}
.y7_c00011{bottom:554.533333pt;}
.y6_c00011{bottom:576.266667pt;}
.y2_c00011{bottom:588.800000pt;}
.y5_c00011{bottom:598.133333pt;}
.y4_c00011{bottom:619.200000pt;}
.y3_c00011{bottom:637.066667pt;}
.y1_c00011{bottom:728.666667pt;}
.h3_c00011{height:26.666667pt;}
.h4_c00011{height:53.333333pt;}
.h2_c00011{height:90.666667pt;}
.h1_c00011{height:1037.333333pt;}
.h0_c00011{height:1037.439941pt;}
.w0_c00011{width:811.840007pt;}
.w1_c00011{width:812.000000pt;}
.x0_c00011{left:0.000000pt;}
.x92_c00011{left:124.133333pt;}
.x2_c00011{left:125.066667pt;}
.x83_c00011{left:127.066667pt;}
.x5f_c00011{left:128.666667pt;}
.x7d_c00011{left:130.533333pt;}
.x8d_c00011{left:131.866667pt;}
.x59_c00011{left:133.466667pt;}
.x2f_c00011{left:136.266667pt;}
.x6c_c00011{left:137.333333pt;}
.x48_c00011{left:138.266667pt;}
.x24_c00011{left:142.133333pt;}
.x52_c00011{left:143.333333pt;}
.x18_c00011{left:149.066667pt;}
.x7e_c00011{left:164.800000pt;}
.x84_c00011{left:165.733333pt;}
.x30_c00011{left:166.933333pt;}
.x25_c00011{left:168.400000pt;}
.x19_c00011{left:171.200000pt;}
.x3_c00011{left:173.733333pt;}
.x49_c00011{left:197.466667pt;}
.x3c_c00011{left:199.733333pt;}
.x10_c00011{left:204.800000pt;}
.x53_c00011{left:213.333333pt;}
.x6d_c00011{left:219.333333pt;}
.x73_c00011{left:224.266667pt;}
.x3d_c00011{left:225.333333pt;}
.x70_c00011{left:226.266667pt;}
.x93_c00011{left:229.733333pt;}
.x31_c00011{left:235.066667pt;}
.x6a_c00011{left:236.800000pt;}
.x74_c00011{left:239.600000pt;}
.x54_c00011{left:241.066667pt;}
.x26_c00011{left:242.666667pt;}
.x1a_c00011{left:245.466667pt;}
.x60_c00011{left:246.800000pt;}
.x32_c00011{left:250.133333pt;}
.x4_c00011{left:254.400000pt;}
.x5a_c00011{left:256.533333pt;}
.x16_c00011{left:262.666667pt;}
.x11_c00011{left:264.266667pt;}
.x7b_c00011{left:266.666667pt;}
.x99_c00011{left:270.000000pt;}
.x33_c00011{left:276.000000pt;}
.x85_c00011{left:278.000000pt;}
.x12_c00011{left:280.266667pt;}
.x71_c00011{left:282.533333pt;}
.x5b_c00011{left:283.466667pt;}
.x3e_c00011{left:284.533333pt;}
.x46_c00011{left:292.533333pt;}
.x86_c00011{left:293.733333pt;}
.x9a_c00011{left:295.333333pt;}
.x61_c00011{left:297.066667pt;}
.x1b_c00011{left:299.200000pt;}
.x3f_c00011{left:300.533333pt;}
.x4a_c00011{left:302.933333pt;}
.x5_c00011{left:305.333333pt;}
.x6e_c00011{left:308.266667pt;}
.x1c_c00011{left:314.533333pt;}
.x34_c00011{left:317.866667pt;}
.x55_c00011{left:320.133333pt;}
.x6_c00011{left:323.600000pt;}
.x87_c00011{left:327.333333pt;}
.x1_c00011{left:328.666667pt;}
.x94_c00011{left:330.133333pt;}
.x7c_c00011{left:335.066667pt;}
.x5c_c00011{left:336.533333pt;}
.x4b_c00011{left:340.666667pt;}
.x13_c00011{left:344.533333pt;}
.x56_c00011{left:345.733333pt;}
.x95_c00011{left:347.066667pt;}
.x62_c00011{left:348.533333pt;}
.x7_c00011{left:349.466667pt;}
.x27_c00011{left:350.800000pt;}
.x88_c00011{left:352.666667pt;}
.x35_c00011{left:354.000000pt;}
.x6b_c00011{left:354.933333pt;}
.x1d_c00011{left:356.800000pt;}
.x40_c00011{left:358.800000pt;}
.x5d_c00011{left:361.466667pt;}
.x63_c00011{left:364.266667pt;}
.x28_c00011{left:366.533333pt;}
.x1e_c00011{left:372.133333pt;}
.x36_c00011{left:380.266667pt;}
.x8e_c00011{left:383.066667pt;}
.x6f_c00011{left:385.733333pt;}
.x14_c00011{left:387.733333pt;}
.x4c_c00011{left:392.533333pt;}
.x64_c00011{left:395.600000pt;}
.x8_c00011{left:398.400000pt;}
.x5e_c00011{left:403.333333pt;}
.x8a_c00011{left:404.666667pt;}
.x29_c00011{left:407.866667pt;}
.x75_c00011{left:413.733333pt;}
.x1f_c00011{left:414.666667pt;}
.x8b_c00011{left:420.400000pt;}
.x2a_c00011{left:423.200000pt;}
.x9_c00011{left:426.933333pt;}
.x20_c00011{left:430.000000pt;}
.x41_c00011{left:434.000000pt;}
.x65_c00011{left:439.733333pt;}
.x7f_c00011{left:446.133333pt;}
.x37_c00011{left:447.200000pt;}
.x42_c00011{left:449.333333pt;}
.x76_c00011{left:456.000000pt;}
.x66_c00011{left:457.600000pt;}
.x4d_c00011{left:460.133333pt;}
.x96_c00011{left:463.600000pt;}
.xa_c00011{left:466.000000pt;}
.x77_c00011{left:472.000000pt;}
.x21_c00011{left:478.000000pt;}
.x57_c00011{left:479.600000pt;}
.xb_c00011{left:481.333333pt;}
.x80_c00011{left:482.666667pt;}
.x38_c00011{left:484.266667pt;}
.x67_c00011{left:490.266667pt;}
.x2b_c00011{left:495.866667pt;}
.x39_c00011{left:500.000000pt;}
.x68_c00011{left:506.000000pt;}
.x4e_c00011{left:507.466667pt;}
.x58_c00011{left:511.333333pt;}
.x43_c00011{left:516.266667pt;}
.x78_c00011{left:521.333333pt;}
.x4f_c00011{left:523.200000pt;}
.x44_c00011{left:529.733333pt;}
.x8c_c00011{left:540.133333pt;}
.x22_c00011{left:543.600000pt;}
.x69_c00011{left:545.733333pt;}
.x79_c00011{left:552.400000pt;}
.xc_c00011{left:556.533333pt;}
.x97_c00011{left:566.933333pt;}
.x50_c00011{left:568.000000pt;}
.x3a_c00011{left:569.733333pt;}
.x8f_c00011{left:570.933333pt;}
.x81_c00011{left:573.200000pt;}
.xd_c00011{left:574.133333pt;}
.x2c_c00011{left:575.200000pt;}
.x98_c00011{left:584.266667pt;}
.x45_c00011{left:585.333333pt;}
.x3b_c00011{left:588.666667pt;}
.x90_c00011{left:602.266667pt;}
.x7a_c00011{left:623.733333pt;}
.xe_c00011{left:628.800000pt;}
.x82_c00011{left:634.000000pt;}
.x51_c00011{left:635.866667pt;}
.x2d_c00011{left:637.333333pt;}
.x91_c00011{left:657.466667pt;}
.x89_c00011{left:658.533333pt;}
.xf_c00011{left:663.333333pt;}
.x72_c00011{left:665.866667pt;}
.x47_c00011{left:667.200000pt;}
.x2e_c00011{left:669.066667pt;}
.x23_c00011{left:675.466667pt;}
.x17_c00011{left:676.400000pt;}
.x15_c00011{left:678.266667pt;}
}





/* 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_c00012 {
    display:none;
  }
  .loading-indicator_c00012.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00012 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_c00012 { 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_c00012" -> "#page-container .classname_c00012")
 */
.pf_c00012 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00012 { /* 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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00012 { /* 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_c00012 { /* 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_c00012 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00012 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00012 {overflow:visible;}
  }
}
.c_c00012 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00012 { /* 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_c00012:after { /* webkit #35443 */
  content: '';
}
.t_c00012:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00012 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 */
}
.__c00012 { /* 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_c00012 { /* info for Javascript */
  display:none;
}
.l_c00012 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00012 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00012 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00012: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_c00012 {
    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_c00012.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00012.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_c00012 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00012{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00012;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.000000;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;}
.m20_c00012{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m54_c00012{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m87_c00012{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00012{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00012{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m85_c00012{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m84_c00012{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00012{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00012{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m55_c00012{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m88_c00012{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma_c00012{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m41_c00012{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m90_c00012{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m37_c00012{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12_c00012{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00012{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00012{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00012{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m75_c00012{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m76_c00012{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m44_c00012{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m53_c00012{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m46_c00012{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00012{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00012{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00012{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00012{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m63_c00012{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00012{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m48_c00012{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m73_c00012{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m58_c00012{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m64_c00012{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m65_c00012{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m38_c00012{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m50_c00012{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00012{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6_c00012{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m67_c00012{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m43_c00012{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00012{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00012{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00012{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m79_c00012{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m45_c00012{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m81_c00012{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00012{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m26_c00012{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m60_c00012{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00012{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00012{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00012{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m78_c00012{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00012{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m83_c00012{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00012{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m59_c00012{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00012{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m68_c00012{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m39_c00012{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m89_c00012{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00012{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00012{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m42_c00012{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00012{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00012{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00012{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m22_c00012{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00012{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m82_c00012{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m14_c00012{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00012{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m69_c00012{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00012{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m52_c00012{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5_c00012{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00012{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m51_c00012{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m57_c00012{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m70_c00012{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m86_c00012{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m62_c00012{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00012{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00012{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00012{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m40_c00012{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m3_c00012{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00012{transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.423000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00012{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m49_c00012{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m13_c00012{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m7_c00012{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.md_c00012{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m61_c00012{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m71_c00012{transform:matrix(0.808000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.808000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.808000,0.000000,0.000000,0.250000,0,0);}
.m91_c00012{transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);}
.m17_c00012{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.m77_c00012{transform:matrix(0.986000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.986000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.986000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00012{transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);}
.m72_c00012{transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00012{transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);}
.m47_c00012{transform:matrix(1.018250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.018250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.018250,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m74_c00012{transform:matrix(1.046750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.046750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.046750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00012{transform:matrix(1.050750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050750,0.000000,0.000000,0.250000,0,0);}
.m80_c00012{transform:matrix(1.058750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.058750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.058750,0.000000,0.000000,0.250000,0,0);}
.m66_c00012{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.v0_c00012{vertical-align:0.000000px;}
.ls0_c00012{letter-spacing:0.000000px;}
.sc__c00012{text-shadow:none;}
.sc0_c00012{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__c00012{-webkit-text-stroke:0px transparent;}
.sc0_c00012{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00012{word-spacing:-4.861111px;}
.ws5_c00012{word-spacing:-4.213075px;}
.ws6_c00012{word-spacing:0.000000px;}
.ws2_c00012{word-spacing:311.875000px;}
.ws0_c00012{word-spacing:359.642857px;}
.ws3_c00012{word-spacing:425.416667px;}
.ws1_c00012{word-spacing:429.583333px;}
._0_c00012{width:386.071429px;}
.fc0_c00012{color:transparent;}
.fs1_c00012{font-size:30.000000px;}
.fs0_c00012{font-size:54.000000px;}
.fs2_c00012{font-size:60.000000px;}
.y0_c00012{bottom:0.000000px;}
.y26_c00012{bottom:143.700000px;}
.y25_c00012{bottom:168.150000px;}
.y24_c00012{bottom:192.300000px;}
.y23_c00012{bottom:212.100000px;}
.y22_c00012{bottom:256.350000px;}
.y21_c00012{bottom:280.500000px;}
.y20_c00012{bottom:304.500000px;}
.y1f_c00012{bottom:328.650000px;}
.y1e_c00012{bottom:348.900000px;}
.y1d_c00012{bottom:373.350000px;}
.y1c_c00012{bottom:398.100000px;}
.y1b_c00012{bottom:423.000000px;}
.y1a_c00012{bottom:447.150000px;}
.y19_c00012{bottom:470.850000px;}
.y18_c00012{bottom:491.400000px;}
.y17_c00012{bottom:515.550000px;}
.y16_c00012{bottom:539.700000px;}
.y15_c00012{bottom:559.800000px;}
.y14_c00012{bottom:584.250000px;}
.y13_c00012{bottom:608.400000px;}
.y12_c00012{bottom:628.500000px;}
.y11_c00012{bottom:652.650000px;}
.y10_c00012{bottom:677.100000px;}
.yf_c00012{bottom:700.950000px;}
.ye_c00012{bottom:721.050000px;}
.yd_c00012{bottom:745.500000px;}
.yc_c00012{bottom:769.650000px;}
.yb_c00012{bottom:794.100000px;}
.ya_c00012{bottom:818.700000px;}
.y9_c00012{bottom:843.450000px;}
.y8_c00012{bottom:867.300000px;}
.y7_c00012{bottom:887.700000px;}
.y6_c00012{bottom:911.850000px;}
.y5_c00012{bottom:936.300000px;}
.y4_c00012{bottom:960.150000px;}
.y3_c00012{bottom:984.900000px;}
.y2_c00012{bottom:1000.800000px;}
.y1_c00012{bottom:1026.000000px;}
.h3_c00012{height:30.000000px;}
.h2_c00012{height:54.000000px;}
.h4_c00012{height:60.000000px;}
.h1_c00012{height:1167.000000px;}
.h0_c00012{height:1167.119934px;}
.w0_c00012{width:913.320007px;}
.w1_c00012{width:913.500000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:144.000000px;}
.xc1_c00012{left:151.500000px;}
.x5d_c00012{left:166.650000px;}
.x3_c00012{left:170.700000px;}
.x54_c00012{left:173.100000px;}
.x34_c00012{left:174.600000px;}
.x5_c00012{left:176.100000px;}
.x3f_c00012{left:177.450000px;}
.x24_c00012{left:178.500000px;}
.x4d_c00012{left:180.000000px;}
.x46_c00012{left:184.350000px;}
.x19_c00012{left:186.450000px;}
.xb_c00012{left:187.500000px;}
.x10_c00012{left:190.800000px;}
.xb8_c00012{left:192.600000px;}
.xb0_c00012{left:200.100000px;}
.xc8_c00012{left:201.600000px;}
.xc5_c00012{left:204.900000px;}
.xc2_c00012{left:209.100000px;}
.x25_c00012{left:225.000000px;}
.x35_c00012{left:226.500000px;}
.x6_c00012{left:227.550000px;}
.xc_c00012{left:228.600000px;}
.x4e_c00012{left:229.650000px;}
.x6e_c00012{left:231.450000px;}
.x98_c00012{left:232.650000px;}
.xa3_c00012{left:234.300000px;}
.xa5_c00012{left:236.550000px;}
.xb9_c00012{left:238.350000px;}
.x31_c00012{left:270.300000px;}
.x65_c00012{left:271.800000px;}
.x93_c00012{left:272.850000px;}
.x9e_c00012{left:273.900000px;}
.xb4_c00012{left:275.100000px;}
.xbe_c00012{left:279.000000px;}
.x6f_c00012{left:281.550000px;}
.x97_c00012{left:285.150000px;}
.x76_c00012{left:289.800000px;}
.x9f_c00012{left:291.150000px;}
.xaa_c00012{left:292.350000px;}
.x99_c00012{left:293.850000px;}
.xc6_c00012{left:297.000000px;}
.x70_c00012{left:299.250000px;}
.x36_c00012{left:302.400000px;}
.x1a_c00012{left:303.450000px;}
.x26_c00012{left:304.950000px;}
.x47_c00012{left:306.300000px;}
.x77_c00012{left:307.800000px;}
.x55_c00012{left:309.600000px;}
.x4f_c00012{left:310.650000px;}
.x5e_c00012{left:312.450000px;}
.xb5_c00012{left:314.400000px;}
.xba_c00012{left:318.300000px;}
.x85_c00012{left:320.700000px;}
.x48_c00012{left:323.550000px;}
.x40_c00012{left:325.800000px;}
.x94_c00012{left:327.600000px;}
.xb6_c00012{left:332.100000px;}
.x32_c00012{left:334.050000px;}
.xbb_c00012{left:336.000000px;}
.x11_c00012{left:344.400000px;}
.x7_c00012{left:346.350000px;}
.xa4_c00012{left:350.250000px;}
.xa6_c00012{left:352.500000px;}
.x95_c00012{left:353.850000px;}
.x37_c00012{left:360.300000px;}
.x1b_c00012{left:361.350000px;}
.xa0_c00012{left:363.150000px;}
.x27_c00012{left:364.650000px;}
.x50_c00012{left:368.250000px;}
.x5f_c00012{left:370.350000px;}
.x9a_c00012{left:373.050000px;}
.x38_c00012{left:378.000000px;}
.x1c_c00012{left:379.050000px;}
.xa1_c00012{left:380.400000px;}
.x8d_c00012{left:381.600000px;}
.x28_c00012{left:383.700000px;}
.x56_c00012{left:384.750000px;}
.x51_c00012{left:385.950000px;}
.x60_c00012{left:388.050000px;}
.x78_c00012{left:392.100000px;}
.x7e_c00012{left:393.600000px;}
.xb7_c00012{left:395.400000px;}
.x71_c00012{left:398.700000px;}
.xbc_c00012{left:400.500000px;}
.x12_c00012{left:402.750000px;}
.xd_c00012{left:404.250000px;}
.x86_c00012{left:406.350000px;}
.x79_c00012{left:409.050000px;}
.x33_c00012{left:410.400000px;}
.x49_c00012{left:413.250000px;}
.xb1_c00012{left:414.600000px;}
.x8_c00012{left:417.300000px;}
.xc3_c00012{left:418.350000px;}
.x13_c00012{left:420.000000px;}
.xe_c00012{left:421.950000px;}
.xa7_c00012{left:424.950000px;}
.x8e_c00012{left:429.450000px;}
.x41_c00012{left:430.500000px;}
.x9_c00012{left:433.200000px;}
.xc7_c00012{left:434.400000px;}
.x29_c00012{left:436.950000px;}
.x57_c00012{left:439.050000px;}
.xab_c00012{left:440.700000px;}
.x2_c00012{left:446.100000px;}
.x39_c00012{left:447.450000px;}
.x7f_c00012{left:449.400000px;}
.x1d_c00012{left:450.750000px;}
.x72_c00012{left:453.000000px;}
.x66_c00012{left:458.700000px;}
.x87_c00012{left:461.100000px;}
.x3a_c00012{left:465.150000px;}
.x80_c00012{left:466.650000px;}
.x7a_c00012{left:471.000000px;}
.xae_c00012{left:475.350000px;}
.x67_c00012{left:476.700000px;}
.x88_c00012{left:478.050000px;}
.x52_c00012{left:481.350000px;}
.xa8_c00012{left:484.650000px;}
.x42_c00012{left:486.000000px;}
.x1e_c00012{left:489.300000px;}
.x14_c00012{left:492.300000px;}
.xc9_c00012{left:495.150000px;}
.x2a_c00012{left:498.450000px;}
.xac_c00012{left:500.400000px;}
.x43_c00012{left:503.250000px;}
.x1f_c00012{left:505.800000px;}
.x15_c00012{left:510.000000px;}
.xf_c00012{left:514.500000px;}
.x2b_c00012{left:517.500000px;}
.xbf_c00012{left:520.200000px;}
.x58_c00012{left:521.850000px;}
.xaf_c00012{left:523.500000px;}
.x89_c00012{left:526.350000px;}
.x81_c00012{left:527.850000px;}
.x4a_c00012{left:532.050000px;}
.x69_c00012{left:533.850000px;}
.x7b_c00012{left:535.350000px;}
.x73_c00012{left:541.500000px;}
.x3b_c00012{left:542.850000px;}
.x8f_c00012{left:544.950000px;}
.x68_c00012{left:551.250000px;}
.xa2_c00012{left:553.650000px;}
.x9b_c00012{left:555.000000px;}
.x44_c00012{left:556.500000px;}
.x16_c00012{left:557.850000px;}
.x3c_c00012{left:560.100000px;}
.x90_c00012{left:562.650000px;}
.x20_c00012{left:571.650000px;}
.x45_c00012{left:573.750000px;}
.x17_c00012{left:575.100000px;}
.x2c_c00012{left:576.150000px;}
.x59_c00012{left:585.600000px;}
.x82_c00012{left:588.000000px;}
.x21_c00012{left:589.350000px;}
.xad_c00012{left:590.700000px;}
.x8a_c00012{left:594.000000px;}
.x61_c00012{left:595.050000px;}
.x9c_c00012{left:599.700000px;}
.x5a_c00012{left:603.300000px;}
.x6a_c00012{left:607.350000px;}
.x2d_c00012{left:610.650000px;}
.x8b_c00012{left:611.700000px;}
.x62_c00012{left:615.900000px;}
.x18_c00012{left:619.350000px;}
.x4b_c00012{left:623.550000px;}
.x6b_c00012{left:625.050000px;}
.x74_c00012{left:626.100000px;}
.xc4_c00012{left:630.750000px;}
.x63_c00012{left:637.500000px;}
.xb2_c00012{left:639.300000px;}
.x4c_c00012{left:640.500000px;}
.x75_c00012{left:642.000000px;}
.x2e_c00012{left:651.300000px;}
.x91_c00012{left:657.000000px;}
.x7c_c00012{left:661.050000px;}
.xca_c00012{left:662.100000px;}
.x6c_c00012{left:679.350000px;}
.x7d_c00012{left:686.250000px;}
.x22_c00012{left:690.150000px;}
.x3d_c00012{left:691.200000px;}
.x8c_c00012{left:693.000000px;}
.x92_c00012{left:695.100000px;}
.x6d_c00012{left:696.600000px;}
.x2f_c00012{left:703.500000px;}
.xb3_c00012{left:708.000000px;}
.x9d_c00012{left:710.550000px;}
.x30_c00012{left:725.100000px;}
.x3e_c00012{left:726.450000px;}
.x5b_c00012{left:727.500000px;}
.x83_c00012{left:728.700000px;}
.x64_c00012{left:744.450000px;}
.x23_c00012{left:761.100000px;}
.x5c_c00012{left:762.450000px;}
.x84_c00012{left:763.650000px;}
.xbd_c00012{left:765.900000px;}
.xa_c00012{left:787.800000px;}
.x4_c00012{left:789.150000px;}
.x53_c00012{left:790.200000px;}
.x96_c00012{left:791.250000px;}
.xa9_c00012{left:792.450000px;}
.xc0_c00012{left:793.500000px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls0_c00012{letter-spacing:0.000000pt;}
.ws4_c00012{word-spacing:-4.320988pt;}
.ws5_c00012{word-spacing:-3.744956pt;}
.ws6_c00012{word-spacing:0.000000pt;}
.ws2_c00012{word-spacing:277.222222pt;}
.ws0_c00012{word-spacing:319.682540pt;}
.ws3_c00012{word-spacing:378.148148pt;}
.ws1_c00012{word-spacing:381.851852pt;}
._0_c00012{width:343.174603pt;}
.fs1_c00012{font-size:26.666667pt;}
.fs0_c00012{font-size:48.000000pt;}
.fs2_c00012{font-size:53.333333pt;}
.y0_c00012{bottom:0.000000pt;}
.y26_c00012{bottom:127.733333pt;}
.y25_c00012{bottom:149.466667pt;}
.y24_c00012{bottom:170.933333pt;}
.y23_c00012{bottom:188.533333pt;}
.y22_c00012{bottom:227.866667pt;}
.y21_c00012{bottom:249.333333pt;}
.y20_c00012{bottom:270.666667pt;}
.y1f_c00012{bottom:292.133333pt;}
.y1e_c00012{bottom:310.133333pt;}
.y1d_c00012{bottom:331.866667pt;}
.y1c_c00012{bottom:353.866667pt;}
.y1b_c00012{bottom:376.000000pt;}
.y1a_c00012{bottom:397.466667pt;}
.y19_c00012{bottom:418.533333pt;}
.y18_c00012{bottom:436.800000pt;}
.y17_c00012{bottom:458.266667pt;}
.y16_c00012{bottom:479.733333pt;}
.y15_c00012{bottom:497.600000pt;}
.y14_c00012{bottom:519.333333pt;}
.y13_c00012{bottom:540.800000pt;}
.y12_c00012{bottom:558.666667pt;}
.y11_c00012{bottom:580.133333pt;}
.y10_c00012{bottom:601.866667pt;}
.yf_c00012{bottom:623.066667pt;}
.ye_c00012{bottom:640.933333pt;}
.yd_c00012{bottom:662.666667pt;}
.yc_c00012{bottom:684.133333pt;}
.yb_c00012{bottom:705.866667pt;}
.ya_c00012{bottom:727.733333pt;}
.y9_c00012{bottom:749.733333pt;}
.y8_c00012{bottom:770.933333pt;}
.y7_c00012{bottom:789.066667pt;}
.y6_c00012{bottom:810.533333pt;}
.y5_c00012{bottom:832.266667pt;}
.y4_c00012{bottom:853.466667pt;}
.y3_c00012{bottom:875.466667pt;}
.y2_c00012{bottom:889.600000pt;}
.y1_c00012{bottom:912.000000pt;}
.h3_c00012{height:26.666667pt;}
.h2_c00012{height:48.000000pt;}
.h4_c00012{height:53.333333pt;}
.h1_c00012{height:1037.333333pt;}
.h0_c00012{height:1037.439941pt;}
.w0_c00012{width:811.840007pt;}
.w1_c00012{width:812.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:128.000000pt;}
.xc1_c00012{left:134.666667pt;}
.x5d_c00012{left:148.133333pt;}
.x3_c00012{left:151.733333pt;}
.x54_c00012{left:153.866667pt;}
.x34_c00012{left:155.200000pt;}
.x5_c00012{left:156.533333pt;}
.x3f_c00012{left:157.733333pt;}
.x24_c00012{left:158.666667pt;}
.x4d_c00012{left:160.000000pt;}
.x46_c00012{left:163.866667pt;}
.x19_c00012{left:165.733333pt;}
.xb_c00012{left:166.666667pt;}
.x10_c00012{left:169.600000pt;}
.xb8_c00012{left:171.200000pt;}
.xb0_c00012{left:177.866667pt;}
.xc8_c00012{left:179.200000pt;}
.xc5_c00012{left:182.133333pt;}
.xc2_c00012{left:185.866667pt;}
.x25_c00012{left:200.000000pt;}
.x35_c00012{left:201.333333pt;}
.x6_c00012{left:202.266667pt;}
.xc_c00012{left:203.200000pt;}
.x4e_c00012{left:204.133333pt;}
.x6e_c00012{left:205.733333pt;}
.x98_c00012{left:206.800000pt;}
.xa3_c00012{left:208.266667pt;}
.xa5_c00012{left:210.266667pt;}
.xb9_c00012{left:211.866667pt;}
.x31_c00012{left:240.266667pt;}
.x65_c00012{left:241.600000pt;}
.x93_c00012{left:242.533333pt;}
.x9e_c00012{left:243.466667pt;}
.xb4_c00012{left:244.533333pt;}
.xbe_c00012{left:248.000000pt;}
.x6f_c00012{left:250.266667pt;}
.x97_c00012{left:253.466667pt;}
.x76_c00012{left:257.600000pt;}
.x9f_c00012{left:258.800000pt;}
.xaa_c00012{left:259.866667pt;}
.x99_c00012{left:261.200000pt;}
.xc6_c00012{left:264.000000pt;}
.x70_c00012{left:266.000000pt;}
.x36_c00012{left:268.800000pt;}
.x1a_c00012{left:269.733333pt;}
.x26_c00012{left:271.066667pt;}
.x47_c00012{left:272.266667pt;}
.x77_c00012{left:273.600000pt;}
.x55_c00012{left:275.200000pt;}
.x4f_c00012{left:276.133333pt;}
.x5e_c00012{left:277.733333pt;}
.xb5_c00012{left:279.466667pt;}
.xba_c00012{left:282.933333pt;}
.x85_c00012{left:285.066667pt;}
.x48_c00012{left:287.600000pt;}
.x40_c00012{left:289.600000pt;}
.x94_c00012{left:291.200000pt;}
.xb6_c00012{left:295.200000pt;}
.x32_c00012{left:296.933333pt;}
.xbb_c00012{left:298.666667pt;}
.x11_c00012{left:306.133333pt;}
.x7_c00012{left:307.866667pt;}
.xa4_c00012{left:311.333333pt;}
.xa6_c00012{left:313.333333pt;}
.x95_c00012{left:314.533333pt;}
.x37_c00012{left:320.266667pt;}
.x1b_c00012{left:321.200000pt;}
.xa0_c00012{left:322.800000pt;}
.x27_c00012{left:324.133333pt;}
.x50_c00012{left:327.333333pt;}
.x5f_c00012{left:329.200000pt;}
.x9a_c00012{left:331.600000pt;}
.x38_c00012{left:336.000000pt;}
.x1c_c00012{left:336.933333pt;}
.xa1_c00012{left:338.133333pt;}
.x8d_c00012{left:339.200000pt;}
.x28_c00012{left:341.066667pt;}
.x56_c00012{left:342.000000pt;}
.x51_c00012{left:343.066667pt;}
.x60_c00012{left:344.933333pt;}
.x78_c00012{left:348.533333pt;}
.x7e_c00012{left:349.866667pt;}
.xb7_c00012{left:351.466667pt;}
.x71_c00012{left:354.400000pt;}
.xbc_c00012{left:356.000000pt;}
.x12_c00012{left:358.000000pt;}
.xd_c00012{left:359.333333pt;}
.x86_c00012{left:361.200000pt;}
.x79_c00012{left:363.600000pt;}
.x33_c00012{left:364.800000pt;}
.x49_c00012{left:367.333333pt;}
.xb1_c00012{left:368.533333pt;}
.x8_c00012{left:370.933333pt;}
.xc3_c00012{left:371.866667pt;}
.x13_c00012{left:373.333333pt;}
.xe_c00012{left:375.066667pt;}
.xa7_c00012{left:377.733333pt;}
.x8e_c00012{left:381.733333pt;}
.x41_c00012{left:382.666667pt;}
.x9_c00012{left:385.066667pt;}
.xc7_c00012{left:386.133333pt;}
.x29_c00012{left:388.400000pt;}
.x57_c00012{left:390.266667pt;}
.xab_c00012{left:391.733333pt;}
.x2_c00012{left:396.533333pt;}
.x39_c00012{left:397.733333pt;}
.x7f_c00012{left:399.466667pt;}
.x1d_c00012{left:400.666667pt;}
.x72_c00012{left:402.666667pt;}
.x66_c00012{left:407.733333pt;}
.x87_c00012{left:409.866667pt;}
.x3a_c00012{left:413.466667pt;}
.x80_c00012{left:414.800000pt;}
.x7a_c00012{left:418.666667pt;}
.xae_c00012{left:422.533333pt;}
.x67_c00012{left:423.733333pt;}
.x88_c00012{left:424.933333pt;}
.x52_c00012{left:427.866667pt;}
.xa8_c00012{left:430.800000pt;}
.x42_c00012{left:432.000000pt;}
.x1e_c00012{left:434.933333pt;}
.x14_c00012{left:437.600000pt;}
.xc9_c00012{left:440.133333pt;}
.x2a_c00012{left:443.066667pt;}
.xac_c00012{left:444.800000pt;}
.x43_c00012{left:447.333333pt;}
.x1f_c00012{left:449.600000pt;}
.x15_c00012{left:453.333333pt;}
.xf_c00012{left:457.333333pt;}
.x2b_c00012{left:460.000000pt;}
.xbf_c00012{left:462.400000pt;}
.x58_c00012{left:463.866667pt;}
.xaf_c00012{left:465.333333pt;}
.x89_c00012{left:467.866667pt;}
.x81_c00012{left:469.200000pt;}
.x4a_c00012{left:472.933333pt;}
.x69_c00012{left:474.533333pt;}
.x7b_c00012{left:475.866667pt;}
.x73_c00012{left:481.333333pt;}
.x3b_c00012{left:482.533333pt;}
.x8f_c00012{left:484.400000pt;}
.x68_c00012{left:490.000000pt;}
.xa2_c00012{left:492.133333pt;}
.x9b_c00012{left:493.333333pt;}
.x44_c00012{left:494.666667pt;}
.x16_c00012{left:495.866667pt;}
.x3c_c00012{left:497.866667pt;}
.x90_c00012{left:500.133333pt;}
.x20_c00012{left:508.133333pt;}
.x45_c00012{left:510.000000pt;}
.x17_c00012{left:511.200000pt;}
.x2c_c00012{left:512.133333pt;}
.x59_c00012{left:520.533333pt;}
.x82_c00012{left:522.666667pt;}
.x21_c00012{left:523.866667pt;}
.xad_c00012{left:525.066667pt;}
.x8a_c00012{left:528.000000pt;}
.x61_c00012{left:528.933333pt;}
.x9c_c00012{left:533.066667pt;}
.x5a_c00012{left:536.266667pt;}
.x6a_c00012{left:539.866667pt;}
.x2d_c00012{left:542.800000pt;}
.x8b_c00012{left:543.733333pt;}
.x62_c00012{left:547.466667pt;}
.x18_c00012{left:550.533333pt;}
.x4b_c00012{left:554.266667pt;}
.x6b_c00012{left:555.600000pt;}
.x74_c00012{left:556.533333pt;}
.xc4_c00012{left:560.666667pt;}
.x63_c00012{left:566.666667pt;}
.xb2_c00012{left:568.266667pt;}
.x4c_c00012{left:569.333333pt;}
.x75_c00012{left:570.666667pt;}
.x2e_c00012{left:578.933333pt;}
.x91_c00012{left:584.000000pt;}
.x7c_c00012{left:587.600000pt;}
.xca_c00012{left:588.533333pt;}
.x6c_c00012{left:603.866667pt;}
.x7d_c00012{left:610.000000pt;}
.x22_c00012{left:613.466667pt;}
.x3d_c00012{left:614.400000pt;}
.x8c_c00012{left:616.000000pt;}
.x92_c00012{left:617.866667pt;}
.x6d_c00012{left:619.200000pt;}
.x2f_c00012{left:625.333333pt;}
.xb3_c00012{left:629.333333pt;}
.x9d_c00012{left:631.600000pt;}
.x30_c00012{left:644.533333pt;}
.x3e_c00012{left:645.733333pt;}
.x5b_c00012{left:646.666667pt;}
.x83_c00012{left:647.733333pt;}
.x64_c00012{left:661.733333pt;}
.x23_c00012{left:676.533333pt;}
.x5c_c00012{left:677.733333pt;}
.x84_c00012{left:678.800000pt;}
.xbd_c00012{left:680.800000pt;}
.xa_c00012{left:700.266667pt;}
.x4_c00012{left:701.466667pt;}
.x53_c00012{left:702.400000pt;}
.x96_c00012{left:703.333333pt;}
.xa9_c00012{left:704.400000pt;}
.xc0_c00012{left:705.333333pt;}
}





/* 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_c00013 {
    display:none;
  }
  .loading-indicator_c00013.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00013 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_c00013 { 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_c00013" -> "#page-container .classname_c00013")
 */
.pf_c00013 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00013 { /* 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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00013 { /* 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_c00013 { /* 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_c00013 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00013 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00013 {overflow:visible;}
  }
}
.c_c00013 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00013 { /* 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_c00013:after { /* webkit #35443 */
  content: '';
}
.t_c00013:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00013 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 */
}
.__c00013 { /* 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_c00013 { /* info for Javascript */
  display:none;
}
.l_c00013 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00013 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00013 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00013: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_c00013 {
    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_c00013.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00013.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_c00013 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00013{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00013;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.000000;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;}
.m44_c00013{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m43_c00013{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00013{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00013{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00013{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00013{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m10_c00013{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m42_c00013{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00013{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m39_c00013{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6_c00013{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00013{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m24_c00013{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00013{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m53_c00013{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m41_c00013{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m17_c00013{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb_c00013{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m27_c00013{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00013{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m22_c00013{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00013{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.md_c00013{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m25_c00013{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00013{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m35_c00013{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00013{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9_c00013{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00013{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00013{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m14_c00013{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00013{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m34_c00013{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00013{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m52_c00013{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00013{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m31_c00013{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m50_c00013{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00013{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7_c00013{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m40_c00013{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00013{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00013{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m56_c00013{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m32_c00013{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m21_c00013{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00013{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m46_c00013{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00013{transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);}
.m45_c00013{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00013{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.952750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00013{transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);}
.m54_c00013{transform:matrix(1.063250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.063250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.063250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00013{transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.064500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(1.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.084000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls1_c00013{letter-spacing:0.000000px;}
.ls0_c00013{letter-spacing:459.583333px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{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__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00013{word-spacing:-489.583333px;}
.ws0_c00013{word-spacing:-6.052632px;}
.ws4_c00013{word-spacing:0.000000px;}
.ws3_c00013{word-spacing:8.529412px;}
.ws2_c00013{word-spacing:429.583333px;}
._0_c00013{margin-left:-459.583333px;}
.fc0_c00013{color:transparent;}
.fs1_c00013{font-size:30.000000px;}
.fs0_c00013{font-size:54.000000px;}
.fs2_c00013{font-size:60.000000px;}
.y0_c00013{bottom:0.000000px;}
.y18_c00013{bottom:522.300000px;}
.y17_c00013{bottom:567.750000px;}
.y16_c00013{bottom:587.850000px;}
.y15_c00013{bottom:616.650000px;}
.y14_c00013{bottom:636.900000px;}
.y13_c00013{bottom:656.700000px;}
.y12_c00013{bottom:676.800000px;}
.y11_c00013{bottom:696.600000px;}
.y10_c00013{bottom:716.700000px;}
.yf_c00013{bottom:736.500000px;}
.ye_c00013{bottom:756.750000px;}
.yd_c00013{bottom:776.550000px;}
.yc_c00013{bottom:796.650000px;}
.yb_c00013{bottom:816.900000px;}
.ya_c00013{bottom:836.700000px;}
.y9_c00013{bottom:856.500000px;}
.y8_c00013{bottom:876.600000px;}
.y7_c00013{bottom:896.700000px;}
.y6_c00013{bottom:925.500000px;}
.y5_c00013{bottom:945.750000px;}
.y4_c00013{bottom:970.500000px;}
.y3_c00013{bottom:995.400000px;}
.y2_c00013{bottom:1010.850000px;}
.y1_c00013{bottom:1045.500000px;}
.h3_c00013{height:30.000000px;}
.h2_c00013{height:54.000000px;}
.h4_c00013{height:60.000000px;}
.h1_c00013{height:1167.000000px;}
.h0_c00013{height:1167.119934px;}
.w0_c00013{width:913.320007px;}
.w1_c00013{width:913.500000px;}
.x0_c00013{left:0.000000px;}
.x92_c00013{left:148.350000px;}
.x88_c00013{left:153.000000px;}
.x3_c00013{left:167.400000px;}
.x11_c00013{left:169.500000px;}
.x9_c00013{left:172.500000px;}
.x89_c00013{left:182.850000px;}
.x4_c00013{left:200.100000px;}
.x12_c00013{left:202.650000px;}
.x1f_c00013{left:222.150000px;}
.x8a_c00013{left:232.950000px;}
.x52_c00013{left:240.450000px;}
.xa_c00013{left:241.650000px;}
.xb_c00013{left:258.600000px;}
.x5_c00013{left:266.700000px;}
.x29_c00013{left:269.400000px;}
.x64_c00013{left:270.750000px;}
.x8b_c00013{left:273.600000px;}
.x79_c00013{left:274.800000px;}
.x48_c00013{left:280.950000px;}
.x6_c00013{left:283.650000px;}
.x3c_c00013{left:284.850000px;}
.x20_c00013{left:286.650000px;}
.x13_c00013{left:289.350000px;}
.x1a_c00013{left:291.600000px;}
.x2a_c00013{left:295.350000px;}
.x49_c00013{left:298.200000px;}
.x65_c00013{left:300.150000px;}
.x73_c00013{left:304.650000px;}
.x32_c00013{left:307.200000px;}
.x21_c00013{left:309.000000px;}
.x3d_c00013{left:310.350000px;}
.x53_c00013{left:317.850000px;}
.x80_c00013{left:328.350000px;}
.x7_c00013{left:334.350000px;}
.x2b_c00013{left:343.650000px;}
.x7a_c00013{left:346.050000px;}
.xc_c00013{left:349.650000px;}
.x6d_c00013{left:354.000000px;}
.x1b_c00013{left:356.400000px;}
.x3e_c00013{left:358.950000px;}
.x8c_c00013{left:372.600000px;}
.x1c_c00013{left:380.100000px;}
.x1d_c00013{left:384.000000px;}
.x14_c00013{left:386.550000px;}
.x81_c00013{left:387.750000px;}
.x4a_c00013{left:390.300000px;}
.x2c_c00013{left:394.350000px;}
.x74_c00013{left:399.000000px;}
.x7d_c00013{left:400.800000px;}
.x33_c00013{left:401.850000px;}
.x22_c00013{left:404.100000px;}
.x5c_c00013{left:406.200000px;}
.x1_c00013{left:411.150000px;}
.x8d_c00013{left:414.300000px;}
.x1e_c00013{left:415.650000px;}
.x2d_c00013{left:422.850000px;}
.x82_c00013{left:426.750000px;}
.x54_c00013{left:428.400000px;}
.xd_c00013{left:434.250000px;}
.x4b_c00013{left:435.300000px;}
.x15_c00013{left:437.250000px;}
.x66_c00013{left:440.100000px;}
.x3f_c00013{left:443.250000px;}
.x83_c00013{left:445.050000px;}
.x34_c00013{left:449.700000px;}
.xe_c00013{left:451.200000px;}
.x6e_c00013{left:454.500000px;}
.x5d_c00013{left:456.300000px;}
.x16_c00013{left:457.800000px;}
.x40_c00013{left:461.250000px;}
.x2e_c00013{left:464.250000px;}
.xf_c00013{left:476.700000px;}
.x67_c00013{left:481.200000px;}
.x6f_c00013{left:483.000000px;}
.x7b_c00013{left:484.950000px;}
.x4c_c00013{left:486.000000px;}
.x41_c00013{left:487.500000px;}
.x84_c00013{left:489.000000px;}
.x68_c00013{left:499.500000px;}
.x35_c00013{left:501.900000px;}
.x23_c00013{left:504.900000px;}
.x17_c00013{left:506.700000px;}
.x75_c00013{left:509.100000px;}
.x55_c00013{left:514.800000px;}
.x36_c00013{left:520.200000px;}
.x5e_c00013{left:522.900000px;}
.x2f_c00013{left:523.950000px;}
.x8e_c00013{left:527.700000px;}
.x76_c00013{left:529.650000px;}
.x56_c00013{left:531.750000px;}
.x7e_c00013{left:534.300000px;}
.x42_c00013{left:535.800000px;}
.x24_c00013{left:538.800000px;}
.x70_c00013{left:542.400000px;}
.x85_c00013{left:549.150000px;}
.x4d_c00013{left:551.850000px;}
.x30_c00013{left:555.600000px;}
.x25_c00013{left:556.800000px;}
.x57_c00013{left:559.500000px;}
.x37_c00013{left:569.100000px;}
.x86_c00013{left:577.200000px;}
.x8f_c00013{left:578.400000px;}
.x7f_c00013{left:579.600000px;}
.x43_c00013{left:582.300000px;}
.x69_c00013{left:588.750000px;}
.x10_c00013{left:591.150000px;}
.x77_c00013{left:592.950000px;}
.x4e_c00013{left:601.950000px;}
.x26_c00013{left:603.300000px;}
.x44_c00013{left:610.800000px;}
.x38_c00013{left:612.000000px;}
.x5f_c00013{left:613.950000px;}
.x58_c00013{left:615.000000px;}
.x6a_c00013{left:619.350000px;}
.x87_c00013{left:621.450000px;}
.x7c_c00013{left:625.650000px;}
.x39_c00013{left:633.600000px;}
.x6b_c00013{left:636.300000px;}
.x45_c00013{left:639.600000px;}
.x4f_c00013{left:641.250000px;}
.x27_c00013{left:642.900000px;}
.x59_c00013{left:645.600000px;}
.x60_c00013{left:647.850000px;}
.x50_c00013{left:657.150000px;}
.x3a_c00013{left:659.100000px;}
.x46_c00013{left:660.900000px;}
.x18_c00013{left:662.550000px;}
.x5a_c00013{left:666.450000px;}
.x61_c00013{left:670.500000px;}
.x90_c00013{left:672.000000px;}
.x78_c00013{left:679.350000px;}
.x6c_c00013{left:680.550000px;}
.x51_c00013{left:681.600000px;}
.x47_c00013{left:686.400000px;}
.x28_c00013{left:688.500000px;}
.x5b_c00013{left:692.700000px;}
.x71_c00013{left:696.000000px;}
.x62_c00013{left:703.950000px;}
.x3b_c00013{left:712.050000px;}
.x91_c00013{left:720.600000px;}
.x63_c00013{left:722.250000px;}
.x19_c00013{left:723.450000px;}
.x72_c00013{left:731.250000px;}
.x31_c00013{left:758.250000px;}
.x8_c00013{left:759.450000px;}
.x2_c00013{left:761.400000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls1_c00013{letter-spacing:0.000000pt;}
.ls0_c00013{letter-spacing:408.518519pt;}
.ws1_c00013{word-spacing:-435.185185pt;}
.ws0_c00013{word-spacing:-5.380117pt;}
.ws4_c00013{word-spacing:0.000000pt;}
.ws3_c00013{word-spacing:7.581699pt;}
.ws2_c00013{word-spacing:381.851852pt;}
._0_c00013{margin-left:-408.518519pt;}
.fs1_c00013{font-size:26.666667pt;}
.fs0_c00013{font-size:48.000000pt;}
.fs2_c00013{font-size:53.333333pt;}
.y0_c00013{bottom:0.000000pt;}
.y18_c00013{bottom:464.266667pt;}
.y17_c00013{bottom:504.666667pt;}
.y16_c00013{bottom:522.533333pt;}
.y15_c00013{bottom:548.133333pt;}
.y14_c00013{bottom:566.133333pt;}
.y13_c00013{bottom:583.733333pt;}
.y12_c00013{bottom:601.600000pt;}
.y11_c00013{bottom:619.200000pt;}
.y10_c00013{bottom:637.066667pt;}
.yf_c00013{bottom:654.666667pt;}
.ye_c00013{bottom:672.666667pt;}
.yd_c00013{bottom:690.266667pt;}
.yc_c00013{bottom:708.133333pt;}
.yb_c00013{bottom:726.133333pt;}
.ya_c00013{bottom:743.733333pt;}
.y9_c00013{bottom:761.333333pt;}
.y8_c00013{bottom:779.200000pt;}
.y7_c00013{bottom:797.066667pt;}
.y6_c00013{bottom:822.666667pt;}
.y5_c00013{bottom:840.666667pt;}
.y4_c00013{bottom:862.666667pt;}
.y3_c00013{bottom:884.800000pt;}
.y2_c00013{bottom:898.533333pt;}
.y1_c00013{bottom:929.333333pt;}
.h3_c00013{height:26.666667pt;}
.h2_c00013{height:48.000000pt;}
.h4_c00013{height:53.333333pt;}
.h1_c00013{height:1037.333333pt;}
.h0_c00013{height:1037.439941pt;}
.w0_c00013{width:811.840007pt;}
.w1_c00013{width:812.000000pt;}
.x0_c00013{left:0.000000pt;}
.x92_c00013{left:131.866667pt;}
.x88_c00013{left:136.000000pt;}
.x3_c00013{left:148.800000pt;}
.x11_c00013{left:150.666667pt;}
.x9_c00013{left:153.333333pt;}
.x89_c00013{left:162.533333pt;}
.x4_c00013{left:177.866667pt;}
.x12_c00013{left:180.133333pt;}
.x1f_c00013{left:197.466667pt;}
.x8a_c00013{left:207.066667pt;}
.x52_c00013{left:213.733333pt;}
.xa_c00013{left:214.800000pt;}
.xb_c00013{left:229.866667pt;}
.x5_c00013{left:237.066667pt;}
.x29_c00013{left:239.466667pt;}
.x64_c00013{left:240.666667pt;}
.x8b_c00013{left:243.200000pt;}
.x79_c00013{left:244.266667pt;}
.x48_c00013{left:249.733333pt;}
.x6_c00013{left:252.133333pt;}
.x3c_c00013{left:253.200000pt;}
.x20_c00013{left:254.800000pt;}
.x13_c00013{left:257.200000pt;}
.x1a_c00013{left:259.200000pt;}
.x2a_c00013{left:262.533333pt;}
.x49_c00013{left:265.066667pt;}
.x65_c00013{left:266.800000pt;}
.x73_c00013{left:270.800000pt;}
.x32_c00013{left:273.066667pt;}
.x21_c00013{left:274.666667pt;}
.x3d_c00013{left:275.866667pt;}
.x53_c00013{left:282.533333pt;}
.x80_c00013{left:291.866667pt;}
.x7_c00013{left:297.200000pt;}
.x2b_c00013{left:305.466667pt;}
.x7a_c00013{left:307.600000pt;}
.xc_c00013{left:310.800000pt;}
.x6d_c00013{left:314.666667pt;}
.x1b_c00013{left:316.800000pt;}
.x3e_c00013{left:319.066667pt;}
.x8c_c00013{left:331.200000pt;}
.x1c_c00013{left:337.866667pt;}
.x1d_c00013{left:341.333333pt;}
.x14_c00013{left:343.600000pt;}
.x81_c00013{left:344.666667pt;}
.x4a_c00013{left:346.933333pt;}
.x2c_c00013{left:350.533333pt;}
.x74_c00013{left:354.666667pt;}
.x7d_c00013{left:356.266667pt;}
.x33_c00013{left:357.200000pt;}
.x22_c00013{left:359.200000pt;}
.x5c_c00013{left:361.066667pt;}
.x1_c00013{left:365.466667pt;}
.x8d_c00013{left:368.266667pt;}
.x1e_c00013{left:369.466667pt;}
.x2d_c00013{left:375.866667pt;}
.x82_c00013{left:379.333333pt;}
.x54_c00013{left:380.800000pt;}
.xd_c00013{left:386.000000pt;}
.x4b_c00013{left:386.933333pt;}
.x15_c00013{left:388.666667pt;}
.x66_c00013{left:391.200000pt;}
.x3f_c00013{left:394.000000pt;}
.x83_c00013{left:395.600000pt;}
.x34_c00013{left:399.733333pt;}
.xe_c00013{left:401.066667pt;}
.x6e_c00013{left:404.000000pt;}
.x5d_c00013{left:405.600000pt;}
.x16_c00013{left:406.933333pt;}
.x40_c00013{left:410.000000pt;}
.x2e_c00013{left:412.666667pt;}
.xf_c00013{left:423.733333pt;}
.x67_c00013{left:427.733333pt;}
.x6f_c00013{left:429.333333pt;}
.x7b_c00013{left:431.066667pt;}
.x4c_c00013{left:432.000000pt;}
.x41_c00013{left:433.333333pt;}
.x84_c00013{left:434.666667pt;}
.x68_c00013{left:444.000000pt;}
.x35_c00013{left:446.133333pt;}
.x23_c00013{left:448.800000pt;}
.x17_c00013{left:450.400000pt;}
.x75_c00013{left:452.533333pt;}
.x55_c00013{left:457.600000pt;}
.x36_c00013{left:462.400000pt;}
.x5e_c00013{left:464.800000pt;}
.x2f_c00013{left:465.733333pt;}
.x8e_c00013{left:469.066667pt;}
.x76_c00013{left:470.800000pt;}
.x56_c00013{left:472.666667pt;}
.x7e_c00013{left:474.933333pt;}
.x42_c00013{left:476.266667pt;}
.x24_c00013{left:478.933333pt;}
.x70_c00013{left:482.133333pt;}
.x85_c00013{left:488.133333pt;}
.x4d_c00013{left:490.533333pt;}
.x30_c00013{left:493.866667pt;}
.x25_c00013{left:494.933333pt;}
.x57_c00013{left:497.333333pt;}
.x37_c00013{left:505.866667pt;}
.x86_c00013{left:513.066667pt;}
.x8f_c00013{left:514.133333pt;}
.x7f_c00013{left:515.200000pt;}
.x43_c00013{left:517.600000pt;}
.x69_c00013{left:523.333333pt;}
.x10_c00013{left:525.466667pt;}
.x77_c00013{left:527.066667pt;}
.x4e_c00013{left:535.066667pt;}
.x26_c00013{left:536.266667pt;}
.x44_c00013{left:542.933333pt;}
.x38_c00013{left:544.000000pt;}
.x5f_c00013{left:545.733333pt;}
.x58_c00013{left:546.666667pt;}
.x6a_c00013{left:550.533333pt;}
.x87_c00013{left:552.400000pt;}
.x7c_c00013{left:556.133333pt;}
.x39_c00013{left:563.200000pt;}
.x6b_c00013{left:565.600000pt;}
.x45_c00013{left:568.533333pt;}
.x4f_c00013{left:570.000000pt;}
.x27_c00013{left:571.466667pt;}
.x59_c00013{left:573.866667pt;}
.x60_c00013{left:575.866667pt;}
.x50_c00013{left:584.133333pt;}
.x3a_c00013{left:585.866667pt;}
.x46_c00013{left:587.466667pt;}
.x18_c00013{left:588.933333pt;}
.x5a_c00013{left:592.400000pt;}
.x61_c00013{left:596.000000pt;}
.x90_c00013{left:597.333333pt;}
.x78_c00013{left:603.866667pt;}
.x6c_c00013{left:604.933333pt;}
.x51_c00013{left:605.866667pt;}
.x47_c00013{left:610.133333pt;}
.x28_c00013{left:612.000000pt;}
.x5b_c00013{left:615.733333pt;}
.x71_c00013{left:618.666667pt;}
.x62_c00013{left:625.733333pt;}
.x3b_c00013{left:632.933333pt;}
.x91_c00013{left:640.533333pt;}
.x63_c00013{left:642.000000pt;}
.x19_c00013{left:643.066667pt;}
.x72_c00013{left:650.000000pt;}
.x31_c00013{left:674.000000pt;}
.x8_c00013{left:675.066667pt;}
.x2_c00013{left:676.800000pt;}
}





/* 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_c00014 {
    display:none;
  }
  .loading-indicator_c00014.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00014 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_c00014 { 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_c00014" -> "#page-container .classname_c00014")
 */
.pf_c00014 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00014 { /* 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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00014 { /* 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_c00014 { /* 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_c00014 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00014 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00014 {overflow:visible;}
  }
}
.c_c00014 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00014 { /* 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_c00014:after { /* webkit #35443 */
  content: '';
}
.t_c00014:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00014 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 */
}
.__c00014 { /* 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_c00014 { /* info for Javascript */
  display:none;
}
.l_c00014 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00014 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00014 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00014: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_c00014 {
    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_c00014.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00014.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_c00014 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00014{font-family:sans-serif;visibility:hidden;}
.sc__c00014{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00014{-webkit-text-stroke:0px transparent;}
}
.y0_c00014{bottom:0.000000px;}
.h1_c00014{height:1167.000000px;}
.h0_c00014{height:1167.119934px;}
.w0_c00014{width:913.320007px;}
.w1_c00014{width:913.500000px;}
.x0_c00014{left:0.000000px;}
@media print{
.y0_c00014{bottom:0.000000pt;}
.h1_c00014{height:1037.333333pt;}
.h0_c00014{height:1037.439941pt;}
.w0_c00014{width:811.840007pt;}
.w1_c00014{width:812.000000pt;}
.x0_c00014{left:0.000000pt;}
}





/* 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_c00015 {
    display:none;
  }
  .loading-indicator_c00015.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00015 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_c00015 { 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_c00015" -> "#page-container .classname_c00015")
 */
.pf_c00015 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00015 { /* 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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00015 { /* 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_c00015 { /* 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_c00015 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00015 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00015 {overflow:visible;}
  }
}
.c_c00015 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00015 { /* 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_c00015:after { /* webkit #35443 */
  content: '';
}
.t_c00015:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00015 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 */
}
.__c00015 { /* 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_c00015 { /* info for Javascript */
  display:none;
}
.l_c00015 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00015 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00015 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00015: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_c00015 {
    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_c00015.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00015.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_c00015 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00015{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00015;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.000000;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;}
.m52_c00015{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m53_c00015{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m55_c00015{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m50_c00015{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m68_c00015{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m67_c00015{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m20_c00015{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m62_c00015{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00015{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m69_c00015{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00015{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00015{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m33_c00015{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m54_c00015{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00015{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m29_c00015{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00015{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m37_c00015{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m36_c00015{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m32_c00015{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m45_c00015{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00015{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m60_c00015{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m48_c00015{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00015{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00015{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00015{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma_c00015{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m35_c00015{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m65_c00015{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00015{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m31_c00015{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m57_c00015{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00015{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m14_c00015{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24_c00015{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00015{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m59_c00015{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00015{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00015{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00015{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.me_c00015{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00015{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m11_c00015{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00015{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00015{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m28_c00015{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00015{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m9_c00015{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m56_c00015{transform:matrix(0.789000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.789000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.789000,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m26_c00015{transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{transform:matrix(0.812000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00015{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(1.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.013250,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(1.084500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.084500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.084500,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(1.086500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.086500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.086500,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{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__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00015{word-spacing:-5.277778px;}
.ws0_c00015{word-spacing:-0.609756px;}
.ws3_c00015{word-spacing:0.000000px;}
.ws2_c00015{word-spacing:4.473684px;}
.fc0_c00015{color:transparent;}
.fs2_c00015{font-size:30.000000px;}
.fs1_c00015{font-size:42.000000px;}
.fs3_c00015{font-size:60.000000px;}
.fs0_c00015{font-size:102.000000px;}
.fs4_c00015{font-size:192.000000px;}
.y0_c00015{bottom:0.000000px;}
.y20_c00015{bottom:162.300000px;}
.y1f_c00015{bottom:172.800000px;}
.y1e_c00015{bottom:186.450000px;}
.y1b_c00015{bottom:210.600000px;}
.y1d_c00015{bottom:211.650000px;}
.y1a_c00015{bottom:235.800000px;}
.y19_c00015{bottom:259.500000px;}
.y1c_c00015{bottom:270.750000px;}
.y18_c00015{bottom:284.100000px;}
.y17_c00015{bottom:309.300000px;}
.y16_c00015{bottom:333.750000px;}
.y15_c00015{bottom:357.900000px;}
.y14_c00015{bottom:369.750000px;}
.y13_c00015{bottom:382.350000px;}
.y12_c00015{bottom:406.500000px;}
.y11_c00015{bottom:431.700000px;}
.y10_c00015{bottom:455.400000px;}
.yf_c00015{bottom:479.550000px;}
.ye_c00015{bottom:503.700000px;}
.yd_c00015{bottom:528.150000px;}
.yc_c00015{bottom:552.900000px;}
.yb_c00015{bottom:572.700000px;}
.ya_c00015{bottom:597.300000px;}
.y9_c00015{bottom:617.400000px;}
.y8_c00015{bottom:637.500000px;}
.y7_c00015{bottom:661.650000px;}
.y6_c00015{bottom:686.100000px;}
.y2_c00015{bottom:702.750000px;}
.y5_c00015{bottom:713.550000px;}
.y4_c00015{bottom:738.000000px;}
.y3_c00015{bottom:753.900000px;}
.y1_c00015{bottom:874.500000px;}
.h4_c00015{height:30.000000px;}
.h3_c00015{height:42.000000px;}
.h5_c00015{height:60.000000px;}
.h2_c00015{height:102.000000px;}
.h6_c00015{height:192.000000px;}
.h1_c00015{height:1167.000000px;}
.h0_c00015{height:1167.119934px;}
.w0_c00015{width:913.320007px;}
.w1_c00015{width:913.500000px;}
.x0_c00015{left:0.000000px;}
.x65_c00015{left:121.650000px;}
.x4_c00015{left:122.700000px;}
.x73_c00015{left:123.900000px;}
.x19_c00015{left:126.300000px;}
.x5b_c00015{left:127.650000px;}
.x9_c00015{left:150.900000px;}
.x1a_c00015{left:153.000000px;}
.x24_c00015{left:154.350000px;}
.x60_c00015{left:155.400000px;}
.x6f_c00015{left:156.600000px;}
.x37_c00015{left:173.100000px;}
.x12_c00015{left:177.900000px;}
.x4f_c00015{left:181.500000px;}
.x70_c00015{left:195.450000px;}
.x74_c00015{left:199.800000px;}
.x66_c00015{left:201.150000px;}
.x38_c00015{left:205.800000px;}
.x1b_c00015{left:213.900000px;}
.x25_c00015{left:215.250000px;}
.x2e_c00015{left:217.050000px;}
.x76_c00015{left:218.550000px;}
.x71_c00015{left:220.200000px;}
.x6e_c00015{left:221.700000px;}
.x40_c00015{left:224.400000px;}
.xa_c00015{left:227.250000px;}
.x61_c00015{left:234.600000px;}
.x5d_c00015{left:238.650000px;}
.x26_c00015{left:240.750000px;}
.x46_c00015{left:243.300000px;}
.xb_c00015{left:244.500000px;}
.x1_c00015{left:246.600000px;}
.x13_c00015{left:247.800000px;}
.x50_c00015{left:250.200000px;}
.x5e_c00015{left:255.600000px;}
.x62_c00015{left:270.300000px;}
.x63_c00015{left:271.350000px;}
.x39_c00015{left:274.200000px;}
.x41_c00015{left:276.600000px;}
.x5c_c00015{left:290.100000px;}
.x5f_c00015{left:291.300000px;}
.x72_c00015{left:297.300000px;}
.xc_c00015{left:300.000000px;}
.x3a_c00015{left:302.250000px;}
.x42_c00015{left:305.700000px;}
.x14_c00015{left:309.300000px;}
.x1c_c00015{left:311.850000px;}
.xd_c00015{left:316.950000px;}
.x15_c00015{left:326.550000px;}
.x2_c00015{left:334.800000px;}
.x1d_c00015{left:338.100000px;}
.x47_c00015{left:343.350000px;}
.x3b_c00015{left:348.000000px;}
.x2f_c00015{left:355.950000px;}
.x51_c00015{left:360.000000px;}
.x27_c00015{left:364.650000px;}
.x30_c00015{left:373.950000px;}
.x54_c00015{left:380.700000px;}
.x28_c00015{left:381.900000px;}
.x1e_c00015{left:384.600000px;}
.x48_c00015{left:386.250000px;}
.x67_c00015{left:387.300000px;}
.x29_c00015{left:393.750000px;}
.xe_c00015{left:395.850000px;}
.x16_c00015{left:399.600000px;}
.x55_c00015{left:409.200000px;}
.x3_c00015{left:410.700000px;}
.x3c_c00015{left:417.150000px;}
.x52_c00015{left:420.450000px;}
.x1f_c00015{left:422.100000px;}
.x31_c00015{left:425.100000px;}
.x49_c00015{left:429.750000px;}
.x53_c00015{left:440.550000px;}
.x32_c00015{left:447.000000px;}
.x20_c00015{left:451.650000px;}
.x56_c00015{left:457.050000px;}
.x43_c00015{left:460.500000px;}
.x68_c00015{left:463.950000px;}
.x21_c00015{left:468.600000px;}
.x33_c00015{left:472.500000px;}
.x4a_c00015{left:474.000000px;}
.xf_c00015{left:485.850000px;}
.x4b_c00015{left:491.700000px;}
.x57_c00015{left:495.600000px;}
.x17_c00015{left:499.650000px;}
.x44_c00015{left:508.350000px;}
.x2a_c00015{left:511.500000px;}
.x58_c00015{left:512.850000px;}
.x10_c00015{left:514.350000px;}
.x69_c00015{left:524.850000px;}
.x34_c00015{left:530.850000px;}
.x3d_c00015{left:536.700000px;}
.x59_c00015{left:538.350000px;}
.x4c_c00015{left:542.100000px;}
.x6a_c00015{left:543.150000px;}
.x11_c00015{left:546.000000px;}
.x2b_c00015{left:555.000000px;}
.x35_c00015{left:559.950000px;}
.x22_c00015{left:570.150000px;}
.x2c_c00015{left:583.050000px;}
.x4d_c00015{left:586.050000px;}
.x45_c00015{left:591.150000px;}
.x3e_c00015{left:614.550000px;}
.x6b_c00015{left:615.900000px;}
.x2d_c00015{left:640.350000px;}
.x5a_c00015{left:641.400000px;}
.x36_c00015{left:642.450000px;}
.x6c_c00015{left:652.650000px;}
.x4e_c00015{left:657.750000px;}
.x6d_c00015{left:670.650000px;}
.x3f_c00015{left:676.500000px;}
.x5_c00015{left:703.050000px;}
.x6_c00015{left:717.450000px;}
.x7_c00015{left:740.550000px;}
.x75_c00015{left:741.900000px;}
.x8_c00015{left:745.950000px;}
.x64_c00015{left:747.000000px;}
.x18_c00015{left:753.150000px;}
.x23_c00015{left:754.500000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws1_c00015{word-spacing:-4.691358pt;}
.ws0_c00015{word-spacing:-0.542005pt;}
.ws3_c00015{word-spacing:0.000000pt;}
.ws2_c00015{word-spacing:3.976608pt;}
.fs2_c00015{font-size:26.666667pt;}
.fs1_c00015{font-size:37.333333pt;}
.fs3_c00015{font-size:53.333333pt;}
.fs0_c00015{font-size:90.666667pt;}
.fs4_c00015{font-size:170.666667pt;}
.y0_c00015{bottom:0.000000pt;}
.y20_c00015{bottom:144.266667pt;}
.y1f_c00015{bottom:153.600000pt;}
.y1e_c00015{bottom:165.733333pt;}
.y1b_c00015{bottom:187.200000pt;}
.y1d_c00015{bottom:188.133333pt;}
.y1a_c00015{bottom:209.600000pt;}
.y19_c00015{bottom:230.666667pt;}
.y1c_c00015{bottom:240.666667pt;}
.y18_c00015{bottom:252.533333pt;}
.y17_c00015{bottom:274.933333pt;}
.y16_c00015{bottom:296.666667pt;}
.y15_c00015{bottom:318.133333pt;}
.y14_c00015{bottom:328.666667pt;}
.y13_c00015{bottom:339.866667pt;}
.y12_c00015{bottom:361.333333pt;}
.y11_c00015{bottom:383.733333pt;}
.y10_c00015{bottom:404.800000pt;}
.yf_c00015{bottom:426.266667pt;}
.ye_c00015{bottom:447.733333pt;}
.yd_c00015{bottom:469.466667pt;}
.yc_c00015{bottom:491.466667pt;}
.yb_c00015{bottom:509.066667pt;}
.ya_c00015{bottom:530.933333pt;}
.y9_c00015{bottom:548.800000pt;}
.y8_c00015{bottom:566.666667pt;}
.y7_c00015{bottom:588.133333pt;}
.y6_c00015{bottom:609.866667pt;}
.y2_c00015{bottom:624.666667pt;}
.y5_c00015{bottom:634.266667pt;}
.y4_c00015{bottom:656.000000pt;}
.y3_c00015{bottom:670.133333pt;}
.y1_c00015{bottom:777.333333pt;}
.h4_c00015{height:26.666667pt;}
.h3_c00015{height:37.333333pt;}
.h5_c00015{height:53.333333pt;}
.h2_c00015{height:90.666667pt;}
.h6_c00015{height:170.666667pt;}
.h1_c00015{height:1037.333333pt;}
.h0_c00015{height:1037.439941pt;}
.w0_c00015{width:811.840007pt;}
.w1_c00015{width:812.000000pt;}
.x0_c00015{left:0.000000pt;}
.x65_c00015{left:108.133333pt;}
.x4_c00015{left:109.066667pt;}
.x73_c00015{left:110.133333pt;}
.x19_c00015{left:112.266667pt;}
.x5b_c00015{left:113.466667pt;}
.x9_c00015{left:134.133333pt;}
.x1a_c00015{left:136.000000pt;}
.x24_c00015{left:137.200000pt;}
.x60_c00015{left:138.133333pt;}
.x6f_c00015{left:139.200000pt;}
.x37_c00015{left:153.866667pt;}
.x12_c00015{left:158.133333pt;}
.x4f_c00015{left:161.333333pt;}
.x70_c00015{left:173.733333pt;}
.x74_c00015{left:177.600000pt;}
.x66_c00015{left:178.800000pt;}
.x38_c00015{left:182.933333pt;}
.x1b_c00015{left:190.133333pt;}
.x25_c00015{left:191.333333pt;}
.x2e_c00015{left:192.933333pt;}
.x76_c00015{left:194.266667pt;}
.x71_c00015{left:195.733333pt;}
.x6e_c00015{left:197.066667pt;}
.x40_c00015{left:199.466667pt;}
.xa_c00015{left:202.000000pt;}
.x61_c00015{left:208.533333pt;}
.x5d_c00015{left:212.133333pt;}
.x26_c00015{left:214.000000pt;}
.x46_c00015{left:216.266667pt;}
.xb_c00015{left:217.333333pt;}
.x1_c00015{left:219.200000pt;}
.x13_c00015{left:220.266667pt;}
.x50_c00015{left:222.400000pt;}
.x5e_c00015{left:227.200000pt;}
.x62_c00015{left:240.266667pt;}
.x63_c00015{left:241.200000pt;}
.x39_c00015{left:243.733333pt;}
.x41_c00015{left:245.866667pt;}
.x5c_c00015{left:257.866667pt;}
.x5f_c00015{left:258.933333pt;}
.x72_c00015{left:264.266667pt;}
.xc_c00015{left:266.666667pt;}
.x3a_c00015{left:268.666667pt;}
.x42_c00015{left:271.733333pt;}
.x14_c00015{left:274.933333pt;}
.x1c_c00015{left:277.200000pt;}
.xd_c00015{left:281.733333pt;}
.x15_c00015{left:290.266667pt;}
.x2_c00015{left:297.600000pt;}
.x1d_c00015{left:300.533333pt;}
.x47_c00015{left:305.200000pt;}
.x3b_c00015{left:309.333333pt;}
.x2f_c00015{left:316.400000pt;}
.x51_c00015{left:320.000000pt;}
.x27_c00015{left:324.133333pt;}
.x30_c00015{left:332.400000pt;}
.x54_c00015{left:338.400000pt;}
.x28_c00015{left:339.466667pt;}
.x1e_c00015{left:341.866667pt;}
.x48_c00015{left:343.333333pt;}
.x67_c00015{left:344.266667pt;}
.x29_c00015{left:350.000000pt;}
.xe_c00015{left:351.866667pt;}
.x16_c00015{left:355.200000pt;}
.x55_c00015{left:363.733333pt;}
.x3_c00015{left:365.066667pt;}
.x3c_c00015{left:370.800000pt;}
.x52_c00015{left:373.733333pt;}
.x1f_c00015{left:375.200000pt;}
.x31_c00015{left:377.866667pt;}
.x49_c00015{left:382.000000pt;}
.x53_c00015{left:391.600000pt;}
.x32_c00015{left:397.333333pt;}
.x20_c00015{left:401.466667pt;}
.x56_c00015{left:406.266667pt;}
.x43_c00015{left:409.333333pt;}
.x68_c00015{left:412.400000pt;}
.x21_c00015{left:416.533333pt;}
.x33_c00015{left:420.000000pt;}
.x4a_c00015{left:421.333333pt;}
.xf_c00015{left:431.866667pt;}
.x4b_c00015{left:437.066667pt;}
.x57_c00015{left:440.533333pt;}
.x17_c00015{left:444.133333pt;}
.x44_c00015{left:451.866667pt;}
.x2a_c00015{left:454.666667pt;}
.x58_c00015{left:455.866667pt;}
.x10_c00015{left:457.200000pt;}
.x69_c00015{left:466.533333pt;}
.x34_c00015{left:471.866667pt;}
.x3d_c00015{left:477.066667pt;}
.x59_c00015{left:478.533333pt;}
.x4c_c00015{left:481.866667pt;}
.x6a_c00015{left:482.800000pt;}
.x11_c00015{left:485.333333pt;}
.x2b_c00015{left:493.333333pt;}
.x35_c00015{left:497.733333pt;}
.x22_c00015{left:506.800000pt;}
.x2c_c00015{left:518.266667pt;}
.x4d_c00015{left:520.933333pt;}
.x45_c00015{left:525.466667pt;}
.x3e_c00015{left:546.266667pt;}
.x6b_c00015{left:547.466667pt;}
.x2d_c00015{left:569.200000pt;}
.x5a_c00015{left:570.133333pt;}
.x36_c00015{left:571.066667pt;}
.x6c_c00015{left:580.133333pt;}
.x4e_c00015{left:584.666667pt;}
.x6d_c00015{left:596.133333pt;}
.x3f_c00015{left:601.333333pt;}
.x5_c00015{left:624.933333pt;}
.x6_c00015{left:637.733333pt;}
.x7_c00015{left:658.266667pt;}
.x75_c00015{left:659.466667pt;}
.x8_c00015{left:663.066667pt;}
.x64_c00015{left:664.000000pt;}
.x18_c00015{left:669.466667pt;}
.x23_c00015{left:670.666667pt;}
}





/* 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_c00016 {
    display:none;
  }
  .loading-indicator_c00016.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00016 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_c00016 { 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_c00016" -> "#page-container .classname_c00016")
 */
.pf_c00016 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00016 { /* 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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00016 { /* 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_c00016 { /* 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_c00016 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00016 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00016 {overflow:visible;}
  }
}
.c_c00016 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00016 { /* 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_c00016:after { /* webkit #35443 */
  content: '';
}
.t_c00016:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00016 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 */
}
.__c00016 { /* 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_c00016 { /* info for Javascript */
  display:none;
}
.l_c00016 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00016 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00016 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00016: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_c00016 {
    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_c00016.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00016.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_c00016 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00016{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.000000;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;}
.m11_c00016{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m32_c00016{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m38_c00016{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m34_c00016{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00016{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6_c00016{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m18_c00016{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m36_c00016{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m50_c00016{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m37_c00016{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00016{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00016{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00016{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00016{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mb_c00016{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m29_c00016{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m41_c00016{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m43_c00016{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m26_c00016{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m35_c00016{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m52_c00016{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00016{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00016{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m33_c00016{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00016{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00016{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00016{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m53_c00016{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m17_c00016{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3_c00016{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m16_c00016{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00016{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m30_c00016{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m49_c00016{transform:matrix(0.756000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.756000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.756000,0.000000,0.000000,0.250000,0,0);}
.m51_c00016{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m48_c00016{transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00016{transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897000,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(1.032000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{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__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00016{word-spacing:0.000000px;}
.ws0_c00016{word-spacing:343.571429px;}
.ws1_c00016{word-spacing:429.583333px;}
.ws2_c00016{word-spacing:527.500000px;}
.fc0_c00016{color:transparent;}
.fs1_c00016{font-size:36.000000px;}
.fs0_c00016{font-size:54.000000px;}
.fs2_c00016{font-size:60.000000px;}
.y0_c00016{bottom:0.000000px;}
.y2a_c00016{bottom:183.900000px;}
.y29_c00016{bottom:204.450000px;}
.y28_c00016{bottom:229.650000px;}
.y27_c00016{bottom:255.900000px;}
.y26_c00016{bottom:280.050000px;}
.y25_c00016{bottom:304.950000px;}
.y24_c00016{bottom:328.650000px;}
.y23_c00016{bottom:350.250000px;}
.y22_c00016{bottom:377.250000px;}
.y21_c00016{bottom:400.350000px;}
.y20_c00016{bottom:425.550000px;}
.y2b_c00016{bottom:439.950000px;}
.y1f_c00016{bottom:449.250000px;}
.y1e_c00016{bottom:473.100000px;}
.y1d_c00016{bottom:497.850000px;}
.y1c_c00016{bottom:522.000000px;}
.y16_c00016{bottom:536.700000px;}
.y1b_c00016{bottom:546.150000px;}
.y1a_c00016{bottom:571.350000px;}
.y19_c00016{bottom:594.300000px;}
.y18_c00016{bottom:618.450000px;}
.y17_c00016{bottom:642.900000px;}
.y15_c00016{bottom:643.650000px;}
.y14_c00016{bottom:667.800000px;}
.y13_c00016{bottom:691.950000px;}
.yf_c00016{bottom:721.050000px;}
.ye_c00016{bottom:740.850000px;}
.yd_c00016{bottom:765.000000px;}
.yc_c00016{bottom:789.450000px;}
.yb_c00016{bottom:815.400000px;}
.ya_c00016{bottom:839.100000px;}
.y9_c00016{bottom:864.000000px;}
.y12_c00016{bottom:879.150000px;}
.y8_c00016{bottom:887.700000px;}
.y7_c00016{bottom:911.850000px;}
.y11_c00016{bottom:928.800000px;}
.y6_c00016{bottom:937.500000px;}
.y5_c00016{bottom:960.900000px;}
.y10_c00016{bottom:965.550000px;}
.y4_c00016{bottom:984.900000px;}
.y3_c00016{bottom:1011.300000px;}
.y2_c00016{bottom:1032.450000px;}
.y1_c00016{bottom:1059.150000px;}
.h3_c00016{height:36.000000px;}
.h2_c00016{height:54.000000px;}
.h4_c00016{height:60.000000px;}
.h1_c00016{height:1167.000000px;}
.h0_c00016{height:1167.119934px;}
.w0_c00016{width:913.320007px;}
.w1_c00016{width:913.500000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:143.700000px;}
.x5_c00016{left:165.300000px;}
.x7_c00016{left:167.100000px;}
.x24_c00016{left:168.450000px;}
.x34_c00016{left:169.500000px;}
.x42_c00016{left:170.700000px;}
.x4e_c00016{left:171.750000px;}
.x51_c00016{left:172.800000px;}
.x61_c00016{left:173.850000px;}
.x8_c00016{left:201.600000px;}
.x13_c00016{left:202.800000px;}
.x2b_c00016{left:203.850000px;}
.x40_c00016{left:205.200000px;}
.x43_c00016{left:206.400000px;}
.x48_c00016{left:207.600000px;}
.x62_c00016{left:209.100000px;}
.x3c_c00016{left:235.050000px;}
.x4a_c00016{left:237.600000px;}
.x14_c00016{left:242.400000px;}
.x44_c00016{left:247.500000px;}
.x52_c00016{left:248.700000px;}
.x1c_c00016{left:249.750000px;}
.x3d_c00016{left:250.950000px;}
.x66_c00016{left:252.750000px;}
.x25_c00016{left:256.650000px;}
.x12_c00016{left:263.400000px;}
.x17_c00016{left:266.100000px;}
.x9_c00016{left:267.450000px;}
.x18_c00016{left:268.950000px;}
.x21_c00016{left:270.750000px;}
.x26_c00016{left:272.850000px;}
.x63_c00016{left:273.900000px;}
.x37_c00016{left:275.400000px;}
.x53_c00016{left:277.200000px;}
.x54_c00016{left:280.050000px;}
.x67_c00016{left:281.250000px;}
.xa_c00016{left:282.600000px;}
.x19_c00016{left:284.850000px;}
.x2c_c00016{left:285.900000px;}
.x64_c00016{left:289.800000px;}
.x47_c00016{left:291.150000px;}
.x49_c00016{left:292.200000px;}
.x15_c00016{left:296.400000px;}
.x2d_c00016{left:297.450000px;}
.x4b_c00016{left:299.100000px;}
.x38_c00016{left:302.400000px;}
.x58_c00016{left:309.000000px;}
.x2e_c00016{left:312.600000px;}
.xb_c00016{left:322.200000px;}
.x16_c00016{left:327.750000px;}
.x45_c00016{left:331.800000px;}
.x1d_c00016{left:337.650000px;}
.x35_c00016{left:338.700000px;}
.x55_c00016{left:345.150000px;}
.x1a_c00016{left:346.800000px;}
.x4c_c00016{left:348.750000px;}
.x2f_c00016{left:355.800000px;}
.xc_c00016{left:359.250000px;}
.x27_c00016{left:360.300000px;}
.x39_c00016{left:368.250000px;}
.x4f_c00016{left:370.500000px;}
.x56_c00016{left:373.650000px;}
.x28_c00016{left:376.200000px;}
.x59_c00016{left:377.400000px;}
.x65_c00016{left:379.050000px;}
.x2_c00016{left:382.800000px;}
.x30_c00016{left:383.850000px;}
.x5d_c00016{left:391.350000px;}
.x1e_c00016{left:393.150000px;}
.x5a_c00016{left:395.700000px;}
.x41_c00016{left:400.650000px;}
.x46_c00016{left:401.700000px;}
.x36_c00016{left:402.750000px;}
.x1f_c00016{left:421.650000px;}
.x3_c00016{left:424.200000px;}
.x57_c00016{left:426.600000px;}
.x4d_c00016{left:429.750000px;}
.x31_c00016{left:431.400000px;}
.x5e_c00016{left:437.850000px;}
.x1b_c00016{left:441.450000px;}
.x29_c00016{left:442.500000px;}
.xd_c00016{left:446.700000px;}
.x60_c00016{left:450.750000px;}
.x4_c00016{left:458.700000px;}
.x2a_c00016{left:471.300000px;}
.x20_c00016{left:475.350000px;}
.x5f_c00016{left:495.750000px;}
.x5b_c00016{left:499.650000px;}
.xe_c00016{left:526.950000px;}
.x22_c00016{left:541.500000px;}
.x5c_c00016{left:543.600000px;}
.x6_c00016{left:748.200000px;}
.xf_c00016{left:785.850000px;}
.x23_c00016{left:788.100000px;}
.x3a_c00016{left:789.450000px;}
.x3f_c00016{left:790.950000px;}
.x50_c00016{left:792.000000px;}
.x68_c00016{left:793.500000px;}
.x10_c00016{left:794.550000px;}
.x32_c00016{left:796.350000px;}
.x3b_c00016{left:798.150000px;}
.x3e_c00016{left:800.550000px;}
.x11_c00016{left:804.300000px;}
.x33_c00016{left:806.850000px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws3_c00016{word-spacing:0.000000pt;}
.ws0_c00016{word-spacing:305.396825pt;}
.ws1_c00016{word-spacing:381.851852pt;}
.ws2_c00016{word-spacing:468.888889pt;}
.fs1_c00016{font-size:32.000000pt;}
.fs0_c00016{font-size:48.000000pt;}
.fs2_c00016{font-size:53.333333pt;}
.y0_c00016{bottom:0.000000pt;}
.y2a_c00016{bottom:163.466667pt;}
.y29_c00016{bottom:181.733333pt;}
.y28_c00016{bottom:204.133333pt;}
.y27_c00016{bottom:227.466667pt;}
.y26_c00016{bottom:248.933333pt;}
.y25_c00016{bottom:271.066667pt;}
.y24_c00016{bottom:292.133333pt;}
.y23_c00016{bottom:311.333333pt;}
.y22_c00016{bottom:335.333333pt;}
.y21_c00016{bottom:355.866667pt;}
.y20_c00016{bottom:378.266667pt;}
.y2b_c00016{bottom:391.066667pt;}
.y1f_c00016{bottom:399.333333pt;}
.y1e_c00016{bottom:420.533333pt;}
.y1d_c00016{bottom:442.533333pt;}
.y1c_c00016{bottom:464.000000pt;}
.y16_c00016{bottom:477.066667pt;}
.y1b_c00016{bottom:485.466667pt;}
.y1a_c00016{bottom:507.866667pt;}
.y19_c00016{bottom:528.266667pt;}
.y18_c00016{bottom:549.733333pt;}
.y17_c00016{bottom:571.466667pt;}
.y15_c00016{bottom:572.133333pt;}
.y14_c00016{bottom:593.600000pt;}
.y13_c00016{bottom:615.066667pt;}
.yf_c00016{bottom:640.933333pt;}
.ye_c00016{bottom:658.533333pt;}
.yd_c00016{bottom:680.000000pt;}
.yc_c00016{bottom:701.733333pt;}
.yb_c00016{bottom:724.800000pt;}
.ya_c00016{bottom:745.866667pt;}
.y9_c00016{bottom:768.000000pt;}
.y12_c00016{bottom:781.466667pt;}
.y8_c00016{bottom:789.066667pt;}
.y7_c00016{bottom:810.533333pt;}
.y11_c00016{bottom:825.600000pt;}
.y6_c00016{bottom:833.333333pt;}
.y5_c00016{bottom:854.133333pt;}
.y10_c00016{bottom:858.266667pt;}
.y4_c00016{bottom:875.466667pt;}
.y3_c00016{bottom:898.933333pt;}
.y2_c00016{bottom:917.733333pt;}
.y1_c00016{bottom:941.466667pt;}
.h3_c00016{height:32.000000pt;}
.h2_c00016{height:48.000000pt;}
.h4_c00016{height:53.333333pt;}
.h1_c00016{height:1037.333333pt;}
.h0_c00016{height:1037.439941pt;}
.w0_c00016{width:811.840007pt;}
.w1_c00016{width:812.000000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:127.733333pt;}
.x5_c00016{left:146.933333pt;}
.x7_c00016{left:148.533333pt;}
.x24_c00016{left:149.733333pt;}
.x34_c00016{left:150.666667pt;}
.x42_c00016{left:151.733333pt;}
.x4e_c00016{left:152.666667pt;}
.x51_c00016{left:153.600000pt;}
.x61_c00016{left:154.533333pt;}
.x8_c00016{left:179.200000pt;}
.x13_c00016{left:180.266667pt;}
.x2b_c00016{left:181.200000pt;}
.x40_c00016{left:182.400000pt;}
.x43_c00016{left:183.466667pt;}
.x48_c00016{left:184.533333pt;}
.x62_c00016{left:185.866667pt;}
.x3c_c00016{left:208.933333pt;}
.x4a_c00016{left:211.200000pt;}
.x14_c00016{left:215.466667pt;}
.x44_c00016{left:220.000000pt;}
.x52_c00016{left:221.066667pt;}
.x1c_c00016{left:222.000000pt;}
.x3d_c00016{left:223.066667pt;}
.x66_c00016{left:224.666667pt;}
.x25_c00016{left:228.133333pt;}
.x12_c00016{left:234.133333pt;}
.x17_c00016{left:236.533333pt;}
.x9_c00016{left:237.733333pt;}
.x18_c00016{left:239.066667pt;}
.x21_c00016{left:240.666667pt;}
.x26_c00016{left:242.533333pt;}
.x63_c00016{left:243.466667pt;}
.x37_c00016{left:244.800000pt;}
.x53_c00016{left:246.400000pt;}
.x54_c00016{left:248.933333pt;}
.x67_c00016{left:250.000000pt;}
.xa_c00016{left:251.200000pt;}
.x19_c00016{left:253.200000pt;}
.x2c_c00016{left:254.133333pt;}
.x64_c00016{left:257.600000pt;}
.x47_c00016{left:258.800000pt;}
.x49_c00016{left:259.733333pt;}
.x15_c00016{left:263.466667pt;}
.x2d_c00016{left:264.400000pt;}
.x4b_c00016{left:265.866667pt;}
.x38_c00016{left:268.800000pt;}
.x58_c00016{left:274.666667pt;}
.x2e_c00016{left:277.866667pt;}
.xb_c00016{left:286.400000pt;}
.x16_c00016{left:291.333333pt;}
.x45_c00016{left:294.933333pt;}
.x1d_c00016{left:300.133333pt;}
.x35_c00016{left:301.066667pt;}
.x55_c00016{left:306.800000pt;}
.x1a_c00016{left:308.266667pt;}
.x4c_c00016{left:310.000000pt;}
.x2f_c00016{left:316.266667pt;}
.xc_c00016{left:319.333333pt;}
.x27_c00016{left:320.266667pt;}
.x39_c00016{left:327.333333pt;}
.x4f_c00016{left:329.333333pt;}
.x56_c00016{left:332.133333pt;}
.x28_c00016{left:334.400000pt;}
.x59_c00016{left:335.466667pt;}
.x65_c00016{left:336.933333pt;}
.x2_c00016{left:340.266667pt;}
.x30_c00016{left:341.200000pt;}
.x5d_c00016{left:347.866667pt;}
.x1e_c00016{left:349.466667pt;}
.x5a_c00016{left:351.733333pt;}
.x41_c00016{left:356.133333pt;}
.x46_c00016{left:357.066667pt;}
.x36_c00016{left:358.000000pt;}
.x1f_c00016{left:374.800000pt;}
.x3_c00016{left:377.066667pt;}
.x57_c00016{left:379.200000pt;}
.x4d_c00016{left:382.000000pt;}
.x31_c00016{left:383.466667pt;}
.x5e_c00016{left:389.200000pt;}
.x1b_c00016{left:392.400000pt;}
.x29_c00016{left:393.333333pt;}
.xd_c00016{left:397.066667pt;}
.x60_c00016{left:400.666667pt;}
.x4_c00016{left:407.733333pt;}
.x2a_c00016{left:418.933333pt;}
.x20_c00016{left:422.533333pt;}
.x5f_c00016{left:440.666667pt;}
.x5b_c00016{left:444.133333pt;}
.xe_c00016{left:468.400000pt;}
.x22_c00016{left:481.333333pt;}
.x5c_c00016{left:483.200000pt;}
.x6_c00016{left:665.066667pt;}
.xf_c00016{left:698.533333pt;}
.x23_c00016{left:700.533333pt;}
.x3a_c00016{left:701.733333pt;}
.x3f_c00016{left:703.066667pt;}
.x50_c00016{left:704.000000pt;}
.x68_c00016{left:705.333333pt;}
.x10_c00016{left:706.266667pt;}
.x32_c00016{left:707.866667pt;}
.x3b_c00016{left:709.466667pt;}
.x3e_c00016{left:711.600000pt;}
.x11_c00016{left:714.933333pt;}
.x33_c00016{left:717.200000pt;}
}





/* 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_c00017 {
    display:none;
  }
  .loading-indicator_c00017.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00017 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_c00017 { 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_c00017" -> "#page-container .classname_c00017")
 */
.pf_c00017 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00017 { /* 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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00017 { /* 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_c00017 { /* 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_c00017 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00017 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00017 {overflow:visible;}
  }
}
.c_c00017 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00017 { /* 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_c00017:after { /* webkit #35443 */
  content: '';
}
.t_c00017:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00017 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 */
}
.__c00017 { /* 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_c00017 { /* info for Javascript */
  display:none;
}
.l_c00017 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00017 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00017 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00017: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_c00017 {
    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_c00017.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00017.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_c00017 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00017{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00017;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.000000;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;}
.m46_c00017{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m47_c00017{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00017{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065500,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m45_c00017{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00017{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00017{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00017{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m12_c00017{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m50_c00017{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00017{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m34_c00017{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00017{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m14_c00017{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00017{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m27_c00017{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m25_c00017{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00017{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00017{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15_c00017{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00017{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.md_c00017{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00017{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf_c00017{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00017{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00017{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6_c00017{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb_c00017{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00017{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.me_c00017{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m20_c00017{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m4_c00017{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00017{transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.804000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.014750,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(1.688500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.688500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.688500,0.000000,0.000000,0.250000,0,0);}
.v0_c00017{vertical-align:0.000000px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{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__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00017{word-spacing:0.000000px;}
.ws0_c00017{word-spacing:47.142857px;}
.ws1_c00017{word-spacing:347.500000px;}
.fc0_c00017{color:transparent;}
.fs4_c00017{font-size:36.000000px;}
.fs2_c00017{font-size:42.000000px;}
.fs0_c00017{font-size:48.000000px;}
.fs1_c00017{font-size:60.000000px;}
.fs3_c00017{font-size:66.000000px;}
.y0_c00017{bottom:0.000000px;}
.y33_c00017{bottom:146.850000px;}
.y32_c00017{bottom:162.750000px;}
.y31_c00017{bottom:186.900000px;}
.y30_c00017{bottom:211.650000px;}
.y2f_c00017{bottom:235.500000px;}
.y2e_c00017{bottom:259.950000px;}
.y2d_c00017{bottom:284.400000px;}
.y2c_c00017{bottom:308.850000px;}
.y2b_c00017{bottom:333.300000px;}
.y28_c00017{bottom:356.400000px;}
.y2a_c00017{bottom:357.900000px;}
.y27_c00017{bottom:371.100000px;}
.y29_c00017{bottom:381.900000px;}
.y26_c00017{bottom:406.050000px;}
.y25_c00017{bottom:421.200000px;}
.y24_c00017{bottom:430.950000px;}
.y23_c00017{bottom:455.400000px;}
.y22_c00017{bottom:468.000000px;}
.y21_c00017{bottom:479.850000px;}
.y20_c00017{bottom:504.000000px;}
.y1f_c00017{bottom:514.800000px;}
.y1e_c00017{bottom:528.150000px;}
.y1d_c00017{bottom:552.600000px;}
.y1c_c00017{bottom:565.950000px;}
.y1b_c00017{bottom:577.050000px;}
.y1a_c00017{bottom:602.250000px;}
.y19_c00017{bottom:622.050000px;}
.y18_c00017{bottom:626.400000px;}
.y17_c00017{bottom:650.550000px;}
.y16_c00017{bottom:663.450000px;}
.y15_c00017{bottom:674.700000px;}
.y14_c00017{bottom:699.450000px;}
.y13_c00017{bottom:712.500000px;}
.y12_c00017{bottom:723.900000px;}
.y11_c00017{bottom:748.050000px;}
.y10_c00017{bottom:762.150000px;}
.y2_c00017{bottom:762.900000px;}
.yf_c00017{bottom:772.950000px;}
.ye_c00017{bottom:799.200000px;}
.yd_c00017{bottom:822.300000px;}
.yc_c00017{bottom:846.300000px;}
.y9_c00017{bottom:848.550000px;}
.yb_c00017{bottom:871.200000px;}
.ya_c00017{bottom:895.650000px;}
.y8_c00017{bottom:896.400000px;}
.y7_c00017{bottom:919.500000px;}
.y6_c00017{bottom:944.250000px;}
.y5_c00017{bottom:968.400000px;}
.y4_c00017{bottom:993.300000px;}
.y3_c00017{bottom:1010.850000px;}
.y1_c00017{bottom:1045.500000px;}
.h6_c00017{height:36.000000px;}
.h4_c00017{height:42.000000px;}
.h2_c00017{height:48.000000px;}
.h3_c00017{height:60.000000px;}
.h5_c00017{height:66.000000px;}
.h1_c00017{height:1167.000000px;}
.h0_c00017{height:1167.119934px;}
.w0_c00017{width:913.320007px;}
.w1_c00017{width:913.500000px;}
.x0_c00017{left:0.000000px;}
.x5_c00017{left:101.100000px;}
.x54_c00017{left:129.600000px;}
.x44_c00017{left:130.650000px;}
.x3d_c00017{left:131.700000px;}
.x1c_c00017{left:132.900000px;}
.xa_c00017{left:133.950000px;}
.x6_c00017{left:135.750000px;}
.x55_c00017{left:163.800000px;}
.x45_c00017{left:165.150000px;}
.x3e_c00017{left:166.200000px;}
.x26_c00017{left:167.400000px;}
.xb_c00017{left:168.450000px;}
.x40_c00017{left:172.050000px;}
.x41_c00017{left:182.550000px;}
.x1d_c00017{left:183.600000px;}
.x3f_c00017{left:191.550000px;}
.x42_c00017{left:192.600000px;}
.x3a_c00017{left:196.500000px;}
.x3c_c00017{left:197.700000px;}
.x4a_c00017{left:199.500000px;}
.x46_c00017{left:203.100000px;}
.x11_c00017{left:211.650000px;}
.xd_c00017{left:213.000000px;}
.x34_c00017{left:215.550000px;}
.x56_c00017{left:221.400000px;}
.x1b_c00017{left:226.500000px;}
.x4f_c00017{left:227.700000px;}
.xe_c00017{left:228.900000px;}
.x1f_c00017{left:230.400000px;}
.x35_c00017{left:231.450000px;}
.x28_c00017{left:232.800000px;}
.x37_c00017{left:234.000000px;}
.x14_c00017{left:235.800000px;}
.x58_c00017{left:237.600000px;}
.x2c_c00017{left:239.400000px;}
.x19_c00017{left:242.550000px;}
.x1e_c00017{left:244.800000px;}
.x20_c00017{left:246.600000px;}
.x27_c00017{left:247.800000px;}
.x38_c00017{left:249.150000px;}
.xc_c00017{left:252.750000px;}
.x2d_c00017{left:254.850000px;}
.x1a_c00017{left:258.750000px;}
.x2a_c00017{left:261.000000px;}
.x3b_c00017{left:263.850000px;}
.x12_c00017{left:269.250000px;}
.x4b_c00017{left:275.550000px;}
.x2b_c00017{left:289.500000px;}
.x15_c00017{left:300.600000px;}
.xf_c00017{left:302.700000px;}
.x17_c00017{left:314.250000px;}
.x36_c00017{left:316.050000px;}
.x2e_c00017{left:321.750000px;}
.x21_c00017{left:325.050000px;}
.x16_c00017{left:326.550000px;}
.x13_c00017{left:336.150000px;}
.x50_c00017{left:338.550000px;}
.x22_c00017{left:340.950000px;}
.x4c_c00017{left:343.950000px;}
.x29_c00017{left:348.000000px;}
.x1_c00017{left:350.700000px;}
.x4d_c00017{left:360.900000px;}
.x39_c00017{left:363.150000px;}
.x51_c00017{left:367.050000px;}
.x23_c00017{left:380.250000px;}
.x2f_c00017{left:381.900000px;}
.x2_c00017{left:391.800000px;}
.x24_c00017{left:396.150000px;}
.x30_c00017{left:397.800000px;}
.x10_c00017{left:408.900000px;}
.x3_c00017{left:427.050000px;}
.x52_c00017{left:435.750000px;}
.x31_c00017{left:455.100000px;}
.x25_c00017{left:471.750000px;}
.x32_c00017{left:479.100000px;}
.x4e_c00017{left:483.000000px;}
.x49_c00017{left:526.350000px;}
.x47_c00017{left:532.050000px;}
.x5a_c00017{left:701.250000px;}
.x7_c00017{left:715.050000px;}
.x8_c00017{left:729.450000px;}
.x59_c00017{left:747.000000px;}
.x57_c00017{left:748.050000px;}
.x48_c00017{left:749.100000px;}
.x43_c00017{left:750.150000px;}
.x33_c00017{left:751.200000px;}
.x18_c00017{left:752.400000px;}
.x9_c00017{left:753.900000px;}
.x4_c00017{left:763.350000px;}
.x53_c00017{left:764.400000px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws2_c00017{word-spacing:0.000000pt;}
.ws0_c00017{word-spacing:41.904762pt;}
.ws1_c00017{word-spacing:308.888889pt;}
.fs4_c00017{font-size:32.000000pt;}
.fs2_c00017{font-size:37.333333pt;}
.fs0_c00017{font-size:42.666667pt;}
.fs1_c00017{font-size:53.333333pt;}
.fs3_c00017{font-size:58.666667pt;}
.y0_c00017{bottom:0.000000pt;}
.y33_c00017{bottom:130.533333pt;}
.y32_c00017{bottom:144.666667pt;}
.y31_c00017{bottom:166.133333pt;}
.y30_c00017{bottom:188.133333pt;}
.y2f_c00017{bottom:209.333333pt;}
.y2e_c00017{bottom:231.066667pt;}
.y2d_c00017{bottom:252.800000pt;}
.y2c_c00017{bottom:274.533333pt;}
.y2b_c00017{bottom:296.266667pt;}
.y28_c00017{bottom:316.800000pt;}
.y2a_c00017{bottom:318.133333pt;}
.y27_c00017{bottom:329.866667pt;}
.y29_c00017{bottom:339.466667pt;}
.y26_c00017{bottom:360.933333pt;}
.y25_c00017{bottom:374.400000pt;}
.y24_c00017{bottom:383.066667pt;}
.y23_c00017{bottom:404.800000pt;}
.y22_c00017{bottom:416.000000pt;}
.y21_c00017{bottom:426.533333pt;}
.y20_c00017{bottom:448.000000pt;}
.y1f_c00017{bottom:457.600000pt;}
.y1e_c00017{bottom:469.466667pt;}
.y1d_c00017{bottom:491.200000pt;}
.y1c_c00017{bottom:503.066667pt;}
.y1b_c00017{bottom:512.933333pt;}
.y1a_c00017{bottom:535.333333pt;}
.y19_c00017{bottom:552.933333pt;}
.y18_c00017{bottom:556.800000pt;}
.y17_c00017{bottom:578.266667pt;}
.y16_c00017{bottom:589.733333pt;}
.y15_c00017{bottom:599.733333pt;}
.y14_c00017{bottom:621.733333pt;}
.y13_c00017{bottom:633.333333pt;}
.y12_c00017{bottom:643.466667pt;}
.y11_c00017{bottom:664.933333pt;}
.y10_c00017{bottom:677.466667pt;}
.y2_c00017{bottom:678.133333pt;}
.yf_c00017{bottom:687.066667pt;}
.ye_c00017{bottom:710.400000pt;}
.yd_c00017{bottom:730.933333pt;}
.yc_c00017{bottom:752.266667pt;}
.y9_c00017{bottom:754.266667pt;}
.yb_c00017{bottom:774.400000pt;}
.ya_c00017{bottom:796.133333pt;}
.y8_c00017{bottom:796.800000pt;}
.y7_c00017{bottom:817.333333pt;}
.y6_c00017{bottom:839.333333pt;}
.y5_c00017{bottom:860.800000pt;}
.y4_c00017{bottom:882.933333pt;}
.y3_c00017{bottom:898.533333pt;}
.y1_c00017{bottom:929.333333pt;}
.h6_c00017{height:32.000000pt;}
.h4_c00017{height:37.333333pt;}
.h2_c00017{height:42.666667pt;}
.h3_c00017{height:53.333333pt;}
.h5_c00017{height:58.666667pt;}
.h1_c00017{height:1037.333333pt;}
.h0_c00017{height:1037.439941pt;}
.w0_c00017{width:811.840007pt;}
.w1_c00017{width:812.000000pt;}
.x0_c00017{left:0.000000pt;}
.x5_c00017{left:89.866667pt;}
.x54_c00017{left:115.200000pt;}
.x44_c00017{left:116.133333pt;}
.x3d_c00017{left:117.066667pt;}
.x1c_c00017{left:118.133333pt;}
.xa_c00017{left:119.066667pt;}
.x6_c00017{left:120.666667pt;}
.x55_c00017{left:145.600000pt;}
.x45_c00017{left:146.800000pt;}
.x3e_c00017{left:147.733333pt;}
.x26_c00017{left:148.800000pt;}
.xb_c00017{left:149.733333pt;}
.x40_c00017{left:152.933333pt;}
.x41_c00017{left:162.266667pt;}
.x1d_c00017{left:163.200000pt;}
.x3f_c00017{left:170.266667pt;}
.x42_c00017{left:171.200000pt;}
.x3a_c00017{left:174.666667pt;}
.x3c_c00017{left:175.733333pt;}
.x4a_c00017{left:177.333333pt;}
.x46_c00017{left:180.533333pt;}
.x11_c00017{left:188.133333pt;}
.xd_c00017{left:189.333333pt;}
.x34_c00017{left:191.600000pt;}
.x56_c00017{left:196.800000pt;}
.x1b_c00017{left:201.333333pt;}
.x4f_c00017{left:202.400000pt;}
.xe_c00017{left:203.466667pt;}
.x1f_c00017{left:204.800000pt;}
.x35_c00017{left:205.733333pt;}
.x28_c00017{left:206.933333pt;}
.x37_c00017{left:208.000000pt;}
.x14_c00017{left:209.600000pt;}
.x58_c00017{left:211.200000pt;}
.x2c_c00017{left:212.800000pt;}
.x19_c00017{left:215.600000pt;}
.x1e_c00017{left:217.600000pt;}
.x20_c00017{left:219.200000pt;}
.x27_c00017{left:220.266667pt;}
.x38_c00017{left:221.466667pt;}
.xc_c00017{left:224.666667pt;}
.x2d_c00017{left:226.533333pt;}
.x1a_c00017{left:230.000000pt;}
.x2a_c00017{left:232.000000pt;}
.x3b_c00017{left:234.533333pt;}
.x12_c00017{left:239.333333pt;}
.x4b_c00017{left:244.933333pt;}
.x2b_c00017{left:257.333333pt;}
.x15_c00017{left:267.200000pt;}
.xf_c00017{left:269.066667pt;}
.x17_c00017{left:279.333333pt;}
.x36_c00017{left:280.933333pt;}
.x2e_c00017{left:286.000000pt;}
.x21_c00017{left:288.933333pt;}
.x16_c00017{left:290.266667pt;}
.x13_c00017{left:298.800000pt;}
.x50_c00017{left:300.933333pt;}
.x22_c00017{left:303.066667pt;}
.x4c_c00017{left:305.733333pt;}
.x29_c00017{left:309.333333pt;}
.x1_c00017{left:311.733333pt;}
.x4d_c00017{left:320.800000pt;}
.x39_c00017{left:322.800000pt;}
.x51_c00017{left:326.266667pt;}
.x23_c00017{left:338.000000pt;}
.x2f_c00017{left:339.466667pt;}
.x2_c00017{left:348.266667pt;}
.x24_c00017{left:352.133333pt;}
.x30_c00017{left:353.600000pt;}
.x10_c00017{left:363.466667pt;}
.x3_c00017{left:379.600000pt;}
.x52_c00017{left:387.333333pt;}
.x31_c00017{left:404.533333pt;}
.x25_c00017{left:419.333333pt;}
.x32_c00017{left:425.866667pt;}
.x4e_c00017{left:429.333333pt;}
.x49_c00017{left:467.866667pt;}
.x47_c00017{left:472.933333pt;}
.x5a_c00017{left:623.333333pt;}
.x7_c00017{left:635.600000pt;}
.x8_c00017{left:648.400000pt;}
.x59_c00017{left:664.000000pt;}
.x57_c00017{left:664.933333pt;}
.x48_c00017{left:665.866667pt;}
.x43_c00017{left:666.800000pt;}
.x33_c00017{left:667.733333pt;}
.x18_c00017{left:668.800000pt;}
.x9_c00017{left:670.133333pt;}
.x4_c00017{left:678.533333pt;}
.x53_c00017{left:679.466667pt;}
}





/* 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_c00018 {
    display:none;
  }
  .loading-indicator_c00018.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00018 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_c00018 { 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_c00018" -> "#page-container .classname_c00018")
 */
.pf_c00018 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00018 { /* 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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00018 { /* 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_c00018 { /* 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_c00018 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00018 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00018 {overflow:visible;}
  }
}
.c_c00018 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00018 { /* 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_c00018:after { /* webkit #35443 */
  content: '';
}
.t_c00018:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00018 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 */
}
.__c00018 { /* 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_c00018 { /* info for Javascript */
  display:none;
}
.l_c00018 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00018 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00018 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00018: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_c00018 {
    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_c00018.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00018.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_c00018 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00018{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00018;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.000000;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;}
.me_c00018{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m15_c00018{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m28_c00018{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m18_c00018{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m13_c00018{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5_c00018{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m29_c00018{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m24_c00018{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00018{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c00018{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m32_c00018{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00018{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m25_c00018{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m12_c00018{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m22_c00018{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00018{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00018{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00018{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.md_c00018{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2_c00018{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00018{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m33_c00018{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m35_c00018{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m10_c00018{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.988000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00018{transform:matrix(0.992000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992000,0.000000,0.000000,0.250000,0,0);}
.m27_c00018{transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.016500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.049250,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls1_c00018{letter-spacing:0.000000px;}
.ls0_c00018{letter-spacing:386.071429px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{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__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00018{word-spacing:-416.071429px;}
.ws2_c00018{word-spacing:0.000000px;}
.ws0_c00018{word-spacing:194.166667px;}
._2_c00018{margin-left:-386.071429px;}
._1_c00018{width:455.416667px;}
._0_c00018{width:459.583333px;}
.fc0_c00018{color:transparent;}
.fs3_c00018{font-size:30.000000px;}
.fs1_c00018{font-size:36.000000px;}
.fs0_c00018{font-size:54.000000px;}
.fs2_c00018{font-size:60.000000px;}
.y0_c00018{bottom:0.000000px;}
.y19_c00018{bottom:688.950000px;}
.y10_c00018{bottom:690.900000px;}
.y18_c00018{bottom:713.100000px;}
.yf_c00018{bottom:714.900000px;}
.ye_c00018{bottom:739.500000px;}
.y17_c00018{bottom:751.350000px;}
.yd_c00018{bottom:763.950000px;}
.yc_c00018{bottom:788.400000px;}
.y16_c00018{bottom:799.500000px;}
.yb_c00018{bottom:812.100000px;}
.ya_c00018{bottom:836.700000px;}
.y15_c00018{bottom:860.700000px;}
.y9_c00018{bottom:861.150000px;}
.y8_c00018{bottom:884.850000px;}
.y14_c00018{bottom:897.900000px;}
.y7_c00018{bottom:909.750000px;}
.y6_c00018{bottom:933.900000px;}
.y13_c00018{bottom:948.000000px;}
.y5_c00018{bottom:958.350000px;}
.y4_c00018{bottom:982.800000px;}
.y12_c00018{bottom:995.100000px;}
.y3_c00018{bottom:1007.250000px;}
.y2_c00018{bottom:1024.950000px;}
.y11_c00018{bottom:1025.700000px;}
.y1_c00018{bottom:1055.100000px;}
.h5_c00018{height:30.000000px;}
.h3_c00018{height:36.000000px;}
.h2_c00018{height:54.000000px;}
.h4_c00018{height:60.000000px;}
.h1_c00018{height:1167.000000px;}
.h0_c00018{height:1167.119934px;}
.w0_c00018{width:913.320007px;}
.w1_c00018{width:913.500000px;}
.x0_c00018{left:0.000000px;}
.x26_c00018{left:163.050000px;}
.x5_c00018{left:168.150000px;}
.x18_c00018{left:169.200000px;}
.xd_c00018{left:170.250000px;}
.x4_c00018{left:172.050000px;}
.x6_c00018{left:204.450000px;}
.xe_c00018{left:205.500000px;}
.x14_c00018{left:242.700000px;}
.x27_c00018{left:246.450000px;}
.x10_c00018{left:250.200000px;}
.x1a_c00018{left:254.100000px;}
.x15_c00018{left:257.850000px;}
.x11_c00018{left:265.650000px;}
.x19_c00018{left:270.300000px;}
.x1e_c00018{left:273.000000px;}
.x21_c00018{left:274.650000px;}
.xf_c00018{left:288.300000px;}
.x7_c00018{left:292.350000px;}
.xa_c00018{left:296.700000px;}
.x1f_c00018{left:301.500000px;}
.x1d_c00018{left:304.500000px;}
.x8_c00018{left:308.250000px;}
.x16_c00018{left:309.300000px;}
.x12_c00018{left:317.850000px;}
.x22_c00018{left:325.050000px;}
.x28_c00018{left:328.200000px;}
.x2a_c00018{left:334.950000px;}
.xb_c00018{left:344.250000px;}
.x1b_c00018{left:345.450000px;}
.x2b_c00018{left:352.650000px;}
.x9_c00018{left:362.550000px;}
.x17_c00018{left:370.200000px;}
.xc_c00018{left:373.050000px;}
.x13_c00018{left:376.950000px;}
.x20_c00018{left:378.900000px;}
.x1_c00018{left:390.300000px;}
.x23_c00018{left:394.200000px;}
.x1c_c00018{left:409.200000px;}
.x29_c00018{left:410.250000px;}
.x2_c00018{left:431.700000px;}
.x3_c00018{left:466.200000px;}
.x2c_c00018{left:475.350000px;}
.x24_c00018{left:511.200000px;}
.x25_c00018{left:540.000000px;}
.x2d_c00018{left:750.900000px;}
.x2e_c00018{left:765.300000px;}
.x2f_c00018{left:788.700000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls1_c00018{letter-spacing:0.000000pt;}
.ls0_c00018{letter-spacing:343.174603pt;}
.ws1_c00018{word-spacing:-369.841270pt;}
.ws2_c00018{word-spacing:0.000000pt;}
.ws0_c00018{word-spacing:172.592593pt;}
._2_c00018{margin-left:-343.174603pt;}
._1_c00018{width:404.814815pt;}
._0_c00018{width:408.518519pt;}
.fs3_c00018{font-size:26.666667pt;}
.fs1_c00018{font-size:32.000000pt;}
.fs0_c00018{font-size:48.000000pt;}
.fs2_c00018{font-size:53.333333pt;}
.y0_c00018{bottom:0.000000pt;}
.y19_c00018{bottom:612.400000pt;}
.y10_c00018{bottom:614.133333pt;}
.y18_c00018{bottom:633.866667pt;}
.yf_c00018{bottom:635.466667pt;}
.ye_c00018{bottom:657.333333pt;}
.y17_c00018{bottom:667.866667pt;}
.yd_c00018{bottom:679.066667pt;}
.yc_c00018{bottom:700.800000pt;}
.y16_c00018{bottom:710.666667pt;}
.yb_c00018{bottom:721.866667pt;}
.ya_c00018{bottom:743.733333pt;}
.y15_c00018{bottom:765.066667pt;}
.y9_c00018{bottom:765.466667pt;}
.y8_c00018{bottom:786.533333pt;}
.y14_c00018{bottom:798.133333pt;}
.y7_c00018{bottom:808.666667pt;}
.y6_c00018{bottom:830.133333pt;}
.y13_c00018{bottom:842.666667pt;}
.y5_c00018{bottom:851.866667pt;}
.y4_c00018{bottom:873.600000pt;}
.y12_c00018{bottom:884.533333pt;}
.y3_c00018{bottom:895.333333pt;}
.y2_c00018{bottom:911.066667pt;}
.y11_c00018{bottom:911.733333pt;}
.y1_c00018{bottom:937.866667pt;}
.h5_c00018{height:26.666667pt;}
.h3_c00018{height:32.000000pt;}
.h2_c00018{height:48.000000pt;}
.h4_c00018{height:53.333333pt;}
.h1_c00018{height:1037.333333pt;}
.h0_c00018{height:1037.439941pt;}
.w0_c00018{width:811.840007pt;}
.w1_c00018{width:812.000000pt;}
.x0_c00018{left:0.000000pt;}
.x26_c00018{left:144.933333pt;}
.x5_c00018{left:149.466667pt;}
.x18_c00018{left:150.400000pt;}
.xd_c00018{left:151.333333pt;}
.x4_c00018{left:152.933333pt;}
.x6_c00018{left:181.733333pt;}
.xe_c00018{left:182.666667pt;}
.x14_c00018{left:215.733333pt;}
.x27_c00018{left:219.066667pt;}
.x10_c00018{left:222.400000pt;}
.x1a_c00018{left:225.866667pt;}
.x15_c00018{left:229.200000pt;}
.x11_c00018{left:236.133333pt;}
.x19_c00018{left:240.266667pt;}
.x1e_c00018{left:242.666667pt;}
.x21_c00018{left:244.133333pt;}
.xf_c00018{left:256.266667pt;}
.x7_c00018{left:259.866667pt;}
.xa_c00018{left:263.733333pt;}
.x1f_c00018{left:268.000000pt;}
.x1d_c00018{left:270.666667pt;}
.x8_c00018{left:274.000000pt;}
.x16_c00018{left:274.933333pt;}
.x12_c00018{left:282.533333pt;}
.x22_c00018{left:288.933333pt;}
.x28_c00018{left:291.733333pt;}
.x2a_c00018{left:297.733333pt;}
.xb_c00018{left:306.000000pt;}
.x1b_c00018{left:307.066667pt;}
.x2b_c00018{left:313.466667pt;}
.x9_c00018{left:322.266667pt;}
.x17_c00018{left:329.066667pt;}
.xc_c00018{left:331.600000pt;}
.x13_c00018{left:335.066667pt;}
.x20_c00018{left:336.800000pt;}
.x1_c00018{left:346.933333pt;}
.x23_c00018{left:350.400000pt;}
.x1c_c00018{left:363.733333pt;}
.x29_c00018{left:364.666667pt;}
.x2_c00018{left:383.733333pt;}
.x3_c00018{left:414.400000pt;}
.x2c_c00018{left:422.533333pt;}
.x24_c00018{left:454.400000pt;}
.x25_c00018{left:480.000000pt;}
.x2d_c00018{left:667.466667pt;}
.x2e_c00018{left:680.266667pt;}
.x2f_c00018{left:701.066667pt;}
}





/* 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_c00019 {
    display:none;
  }
  .loading-indicator_c00019.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00019 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_c00019 { 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_c00019" -> "#page-container .classname_c00019")
 */
.pf_c00019 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00019 { /* 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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00019 { /* 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_c00019 { /* 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_c00019 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00019 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00019 {overflow:visible;}
  }
}
.c_c00019 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00019 { /* 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_c00019:after { /* webkit #35443 */
  content: '';
}
.t_c00019:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00019 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 */
}
.__c00019 { /* 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_c00019 { /* info for Javascript */
  display:none;
}
.l_c00019 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00019 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00019 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00019: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_c00019 {
    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_c00019.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00019.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_c00019 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00019{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00019;src:url('chunks/assets/font_a0bc566675823a753b43c99a.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.000000;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;}
.m6e_c00019{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.md5_c00019{transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00019{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m6_c00019{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m85_c00019{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me9_c00019{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m61_c00019{transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055500,0.000000,0.000000,0.250000,0,0);}
.m99_c00019{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m56_c00019{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.md3_c00019{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m55_c00019{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00019{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00019{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.md6_c00019{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m93_c00019{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m95_c00019{transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);}
.m58_c00019{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mac_c00019{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m92_c00019{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00019{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.me0_c00019{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m84_c00019{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md2_c00019{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00019{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00019{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m43_c00019{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00019{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00019{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m39_c00019{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.me1_c00019{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00019{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me8_c00019{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.md0_c00019{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m78_c00019{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00019{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00019{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00019{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00019{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m49_c00019{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00019{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m48_c00019{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m30_c00019{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00019{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00019{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00019{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.med_c00019{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m51_c00019{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m40_c00019{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mec_c00019{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00019{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00019{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00019{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m50_c00019{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00019{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.maa_c00019{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.md1_c00019{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m46_c00019{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m90_c00019{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00019{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00019{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00019{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m89_c00019{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m33_c00019{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00019{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00019{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00019{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.me2_c00019{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m88_c00019{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mab_c00019{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m96_c00019{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m47_c00019{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me7_c00019{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00019{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00019{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00019{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m34_c00019{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00019{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00019{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m52_c00019{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m44_c00019{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m97_c00019{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00019{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m86_c00019{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mce_c00019{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m37_c00019{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m94_c00019{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mda_c00019{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m31_c00019{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00019{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00019{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00019{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mae_c00019{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mde_c00019{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00019{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00019{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m57_c00019{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00019{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00019{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maf_c00019{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00019{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00019{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m35_c00019{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00019{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.me5_c00019{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00019{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.meb_c00019{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00019{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m42_c00019{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00019{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00019{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00019{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00019{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m59_c00019{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00019{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00019{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00019{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00019{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00019{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m32_c00019{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00019{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m98_c00019{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m38_c00019{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00019{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00019{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md4_c00019{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00019{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00019{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mca_c00019{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m60_c00019{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m45_c00019{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);}
.me6_c00019{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00019{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m68_c00019{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00019{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00019{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m54_c00019{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00019{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m41_c00019{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00019{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m70_c00019{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00019{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00019{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00019{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mdd_c00019{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00019{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m82_c00019{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md8_c00019{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00019{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00019{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.md9_c00019{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m87_c00019{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.md7_c00019{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00019{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m76_c00019{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00019{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00019{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00019{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.mad_c00019{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m80_c00019{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c00019{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00019{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00019{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00019{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00019{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m77_c00019{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.me3_c00019{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m69_c00019{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00019{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m63_c00019{transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.me4_c00019{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mf_c00019{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m26_c00019{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00019{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00019{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00019{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m23_c00019{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00019{transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00019{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00019{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00019{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m22_c00019{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m27_c00019{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00019{transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.376750,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m21_c00019{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388000,0.000000,0.000000,0.250000,0,0);}
.m67_c00019{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m72_c00019{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m29_c00019{transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.406000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00019{transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00019{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m62_c00019{transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.424500,0.000000,0.000000,0.250000,0,0);}
.m25_c00019{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m24_c00019{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00019{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2_c00019{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m66_c00019{transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452000,0.000000,0.000000,0.250000,0,0);}
.m75_c00019{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m91_c00019{transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456500,0.000000,0.000000,0.250000,0,0);}
.m79_c00019{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00019{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m74_c00019{transform:matrix(0.476000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476000,0.000000,0.000000,0.250000,0,0);}
.m17_c00019{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m81_c00019{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00019{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m73_c00019{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mba_c00019{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m71_c00019{transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.564000,0.000000,0.000000,0.250000,0,0);}
.mea_c00019{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m65_c00019{transform:matrix(0.627750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.627750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.627750,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m64_c00019{transform:matrix(0.729250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.729250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.729250,0.000000,0.000000,0.250000,0,0);}
.m83_c00019{transform:matrix(0.912000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912000,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{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__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00019{word-spacing:-7.550562px;}
.ws3_c00019{word-spacing:-1.000000px;}
.ws1_c00019{word-spacing:-0.428571px;}
.ws6_c00019{word-spacing:0.000000px;}
.ws2_c00019{word-spacing:11.125000px;}
.ws4_c00019{word-spacing:154.545455px;}
.ws0_c00019{word-spacing:448.666667px;}
.fc0_c00019{color:transparent;}
.fs5_c00019{font-size:24.000000px;}
.fs0_c00019{font-size:30.000000px;}
.fs3_c00019{font-size:36.000000px;}
.fs8_c00019{font-size:42.000000px;}
.fs1_c00019{font-size:48.000000px;}
.fs7_c00019{font-size:54.000000px;}
.fs4_c00019{font-size:60.000000px;}
.fs6_c00019{font-size:66.000000px;}
.fs2_c00019{font-size:78.000000px;}
.fsa_c00019{font-size:84.000000px;}
.fs9_c00019{font-size:162.000000px;}
.y0_c00019{bottom:0.000000px;}
.yc9_c00019{bottom:23.400000px;}
.yc8_c00019{bottom:49.350000px;}
.y81_c00019{bottom:49.500000px;}
.y4f_c00019{bottom:56.100000px;}
.yc7_c00019{bottom:63.300000px;}
.y80_c00019{bottom:64.200000px;}
.yc6_c00019{bottom:78.150000px;}
.y7f_c00019{bottom:78.900000px;}
.yc4_c00019{bottom:92.100000px;}
.y7e_c00019{bottom:93.000000px;}
.yc5_c00019{bottom:94.350000px;}
.y4e_c00019{bottom:96.900000px;}
.yc2_c00019{bottom:106.500000px;}
.y7d_c00019{bottom:107.100000px;}
.yc3_c00019{bottom:113.100000px;}
.y7c_c00019{bottom:121.800000px;}
.y4c_c00019{bottom:127.050000px;}
.yc0_c00019{bottom:128.850000px;}
.y85_c00019{bottom:130.050000px;}
.y4b_c00019{bottom:133.200000px;}
.y4d_c00019{bottom:134.250000px;}
.yc1_c00019{bottom:135.300000px;}
.y7b_c00019{bottom:135.450000px;}
.y84_c00019{bottom:141.150000px;}
.ybe_c00019{bottom:149.700000px;}
.y7a_c00019{bottom:150.150000px;}
.ybf_c00019{bottom:152.700000px;}
.y79_c00019{bottom:164.850000px;}
.y83_c00019{bottom:172.050000px;}
.ybd_c00019{bottom:174.900000px;}
.y78_c00019{bottom:179.250000px;}
.y82_c00019{bottom:183.600000px;}
.y4a_c00019{bottom:187.500000px;}
.y77_c00019{bottom:193.650000px;}
.ybc_c00019{bottom:196.500000px;}
.y76_c00019{bottom:207.750000px;}
.yba_c00019{bottom:208.500000px;}
.ybb_c00019{bottom:216.300000px;}
.yb9_c00019{bottom:222.150000px;}
.yb7_c00019{bottom:236.550000px;}
.y75_c00019{bottom:236.850000px;}
.yb8_c00019{bottom:238.650000px;}
.yb5_c00019{bottom:250.200000px;}
.y74_c00019{bottom:250.950000px;}
.yb6_c00019{bottom:254.550000px;}
.yb4_c00019{bottom:264.300000px;}
.y73_c00019{bottom:267.450000px;}
.yb3_c00019{bottom:278.250000px;}
.y72_c00019{bottom:279.450000px;}
.y71_c00019{bottom:294.150000px;}
.yb2_c00019{bottom:294.900000px;}
.y70_c00019{bottom:308.850000px;}
.y6f_c00019{bottom:324.000000px;}
.yb1_c00019{bottom:324.300000px;}
.yb0_c00019{bottom:338.100000px;}
.y6e_c00019{bottom:338.400000px;}
.y6d_c00019{bottom:351.750000px;}
.yaf_c00019{bottom:352.500000px;}
.yae_c00019{bottom:367.200000px;}
.y6c_c00019{bottom:367.650000px;}
.y6b_c00019{bottom:381.300000px;}
.y6a_c00019{bottom:395.700000px;}
.y69_c00019{bottom:409.800000px;}
.y68_c00019{bottom:424.500000px;}
.y49_c00019{bottom:426.150000px;}
.y48_c00019{bottom:438.750000px;}
.yac_c00019{bottom:442.050000px;}
.y67_c00019{bottom:443.100000px;}
.y47_c00019{bottom:451.050000px;}
.y66_c00019{bottom:453.150000px;}
.yad_c00019{bottom:458.700000px;}
.y65_c00019{bottom:468.300000px;}
.y43_c00019{bottom:477.300000px;}
.yab_c00019{bottom:479.850000px;}
.y64_c00019{bottom:481.950000px;}
.y40_c00019{bottom:489.300000px;}
.y42_c00019{bottom:489.600000px;}
.ya8_c00019{bottom:493.650000px;}
.y34_c00019{bottom:494.700000px;}
.y63_c00019{bottom:496.050000px;}
.yaa_c00019{bottom:498.900000px;}
.y41_c00019{bottom:502.950000px;}
.y3f_c00019{bottom:504.300000px;}
.y46_c00019{bottom:504.600000px;}
.ya7_c00019{bottom:505.500000px;}
.y62_c00019{bottom:510.900000px;}
.y45_c00019{bottom:516.150000px;}
.ya9_c00019{bottom:516.900000px;}
.y3e_c00019{bottom:525.300000px;}
.y61_c00019{bottom:525.900000px;}
.y44_c00019{bottom:526.650000px;}
.ya5_c00019{bottom:529.950000px;}
.y33_c00019{bottom:535.650000px;}
.ya6_c00019{bottom:538.200000px;}
.y60_c00019{bottom:539.700000px;}
.y39_c00019{bottom:549.000000px;}
.y3b_c00019{bottom:550.200000px;}
.y5f_c00019{bottom:554.400000px;}
.ya4_c00019{bottom:557.700000px;}
.ya3_c00019{bottom:564.900000px;}
.y3a_c00019{bottom:566.700000px;}
.y38_c00019{bottom:567.000000px;}
.y5e_c00019{bottom:568.500000px;}
.y5d_c00019{bottom:576.000000px;}
.y32_c00019{bottom:576.300000px;}
.ya2_c00019{bottom:577.050000px;}
.ya1_c00019{bottom:581.700000px;}
.y37_c00019{bottom:582.150000px;}
.y5c_c00019{bottom:586.050000px;}
.y5b_c00019{bottom:596.550000px;}
.y31_c00019{bottom:598.350000px;}
.y36_c00019{bottom:599.100000px;}
.y35_c00019{bottom:608.400000px;}
.y9f_c00019{bottom:610.950000px;}
.ya0_c00019{bottom:615.600000px;}
.y5a_c00019{bottom:616.350000px;}
.y30_c00019{bottom:619.950000px;}
.y3d_c00019{bottom:623.100000px;}
.y9e_c00019{bottom:625.650000px;}
.y59_c00019{bottom:626.400000px;}
.y2f_c00019{bottom:634.350000px;}
.y3c_c00019{bottom:636.450000px;}
.y9d_c00019{bottom:639.300000px;}
.y58_c00019{bottom:640.500000px;}
.y9c_c00019{bottom:654.450000px;}
.y57_c00019{bottom:655.200000px;}
.y9b_c00019{bottom:668.550000px;}
.y56_c00019{bottom:669.600000px;}
.y2e_c00019{bottom:672.150000px;}
.y9a_c00019{bottom:682.950000px;}
.y55_c00019{bottom:683.700000px;}
.y99_c00019{bottom:697.350000px;}
.y54_c00019{bottom:704.850000px;}
.y98_c00019{bottom:711.750000px;}
.y53_c00019{bottom:712.800000px;}
.y97_c00019{bottom:726.450000px;}
.y52_c00019{bottom:727.500000px;}
.y96_c00019{bottom:740.850000px;}
.y51_c00019{bottom:741.900000px;}
.y95_c00019{bottom:755.700000px;}
.y50_c00019{bottom:756.300000px;}
.y94_c00019{bottom:769.650000px;}
.y93_c00019{bottom:784.500000px;}
.y2c_c00019{bottom:799.500000px;}
.y2b_c00019{bottom:807.150000px;}
.y2d_c00019{bottom:813.900000px;}
.y91_c00019{bottom:814.200000px;}
.y2a_c00019{bottom:817.500000px;}
.y92_c00019{bottom:824.400000px;}
.y90_c00019{bottom:828.300000px;}
.y29_c00019{bottom:828.750000px;}
.y28_c00019{bottom:842.400000px;}
.y19_c00019{bottom:842.700000px;}
.y8f_c00019{bottom:844.950000px;}
.y1a_c00019{bottom:847.050000px;}
.y27_c00019{bottom:857.550000px;}
.y8c_c00019{bottom:857.850000px;}
.y8e_c00019{bottom:864.300000px;}
.y26_c00019{bottom:872.250000px;}
.y18_c00019{bottom:873.750000px;}
.y8d_c00019{bottom:882.000000px;}
.y17_c00019{bottom:885.900000px;}
.y25_c00019{bottom:886.650000px;}
.y8a_c00019{bottom:893.850000px;}
.y24_c00019{bottom:901.500000px;}
.y16_c00019{bottom:914.100000px;}
.y8b_c00019{bottom:915.150000px;}
.y23_c00019{bottom:915.750000px;}
.y15_c00019{bottom:927.750000px;}
.y22_c00019{bottom:929.850000px;}
.y89_c00019{bottom:932.100000px;}
.y88_c00019{bottom:932.400000px;}
.y21_c00019{bottom:936.300000px;}
.y20_c00019{bottom:945.000000px;}
.y87_c00019{bottom:946.050000px;}
.y14_c00019{bottom:953.400000px;}
.y1f_c00019{bottom:959.700000px;}
.y13_c00019{bottom:964.500000px;}
.y1e_c00019{bottom:974.100000px;}
.y1d_c00019{bottom:988.200000px;}
.yc_c00019{bottom:991.500000px;}
.yb_c00019{bottom:1001.850000px;}
.y1c_c00019{bottom:1002.600000px;}
.y12_c00019{bottom:1008.300000px;}
.ye_c00019{bottom:1009.800000px;}
.ya_c00019{bottom:1011.300000px;}
.y1b_c00019{bottom:1017.300000px;}
.y9_c00019{bottom:1026.750000px;}
.y86_c00019{bottom:1027.050000px;}
.yd_c00019{bottom:1029.900000px;}
.y11_c00019{bottom:1037.850000px;}
.y8_c00019{bottom:1038.900000px;}
.yf_c00019{bottom:1039.350000px;}
.y10_c00019{bottom:1047.600000px;}
.y7_c00019{bottom:1048.650000px;}
.y6_c00019{bottom:1066.350000px;}
.y3_c00019{bottom:1071.300000px;}
.y2_c00019{bottom:1081.800000px;}
.y5_c00019{bottom:1083.900000px;}
.y1_c00019{bottom:1093.350000px;}
.y4_c00019{bottom:1096.950000px;}
.h7_c00019{height:24.000000px;}
.h2_c00019{height:30.000000px;}
.h5_c00019{height:36.000000px;}
.ha_c00019{height:42.000000px;}
.h3_c00019{height:48.000000px;}
.h9_c00019{height:54.000000px;}
.h6_c00019{height:60.000000px;}
.h8_c00019{height:66.000000px;}
.h4_c00019{height:78.000000px;}
.hc_c00019{height:84.000000px;}
.hb_c00019{height:162.000000px;}
.h1_c00019{height:1167.000000px;}
.h0_c00019{height:1167.119934px;}
.w0_c00019{width:913.320007px;}
.w1_c00019{width:913.500000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:119.550000px;}
.x13_c00019{left:128.100000px;}
.x53_c00019{left:133.200000px;}
.x14_c00019{left:142.500000px;}
.x2_c00019{left:157.350000px;}
.x7_c00019{left:158.400000px;}
.x8_c00019{left:174.300000px;}
.x27_c00019{left:178.500000px;}
.x15_c00019{left:182.550000px;}
.xb_c00019{left:185.850000px;}
.x1e_c00019{left:189.750000px;}
.x5c_c00019{left:193.650000px;}
.x17_c00019{left:197.700000px;}
.x9_c00019{left:199.500000px;}
.x3_c00019{left:202.650000px;}
.x18_c00019{left:210.600000px;}
.x20_c00019{left:216.450000px;}
.x4d_c00019{left:217.800000px;}
.x22_c00019{left:225.300000px;}
.x25_c00019{left:227.100000px;}
.x54_c00019{left:232.950000px;}
.x4_c00019{left:234.750000px;}
.x5d_c00019{left:236.100000px;}
.xa_c00019{left:239.100000px;}
.x16_c00019{left:241.650000px;}
.x1f_c00019{left:243.450000px;}
.x21_c00019{left:247.650000px;}
.x5_c00019{left:250.200000px;}
.x58_c00019{left:251.400000px;}
.x19_c00019{left:253.500000px;}
.x55_c00019{left:258.900000px;}
.x24_c00019{left:260.700000px;}
.x23_c00019{left:265.650000px;}
.x56_c00019{left:268.650000px;}
.x6f_c00019{left:270.750000px;}
.x26_c00019{left:273.150000px;}
.x5b_c00019{left:276.150000px;}
.x64_c00019{left:277.500000px;}
.x52_c00019{left:281.850000px;}
.x5e_c00019{left:282.900000px;}
.x57_c00019{left:290.550000px;}
.x6_c00019{left:296.700000px;}
.x4e_c00019{left:297.750000px;}
.x70_c00019{left:302.100000px;}
.x65_c00019{left:307.500000px;}
.x71_c00019{left:313.650000px;}
.x28_c00019{left:316.350000px;}
.x4f_c00019{left:320.850000px;}
.x59_c00019{left:322.350000px;}
.xc_c00019{left:323.400000px;}
.x61_c00019{left:330.150000px;}
.x50_c00019{left:333.450000px;}
.x73_c00019{left:334.500000px;}
.x5a_c00019{left:336.300000px;}
.x72_c00019{left:339.450000px;}
.x29_c00019{left:355.200000px;}
.x66_c00019{left:357.900000px;}
.xd_c00019{left:360.000000px;}
.x51_c00019{left:361.950000px;}
.x62_c00019{left:373.050000px;}
.x11_c00019{left:379.800000px;}
.x2a_c00019{left:390.300000px;}
.x63_c00019{left:408.300000px;}
.x74_c00019{left:415.800000px;}
.xb3_c00019{left:443.100000px;}
.x67_c00019{left:456.450000px;}
.x69_c00019{left:460.350000px;}
.x4c_c00019{left:482.100000px;}
.xb4_c00019{left:484.200000px;}
.x6e_c00019{left:486.300000px;}
.x10_c00019{left:488.550000px;}
.x12_c00019{left:499.650000px;}
.x68_c00019{left:501.750000px;}
.xe_c00019{left:511.200000px;}
.x6a_c00019{left:527.400000px;}
.x46_c00019{left:531.000000px;}
.x49_c00019{left:532.050000px;}
.x60_c00019{left:535.650000px;}
.x5f_c00019{left:536.700000px;}
.x6c_c00019{left:538.200000px;}
.xf_c00019{left:540.750000px;}
.x6d_c00019{left:562.200000px;}
.x6b_c00019{left:565.500000px;}
.x4a_c00019{left:577.350000px;}
.x47_c00019{left:579.300000px;}
.x41_c00019{left:580.650000px;}
.x7b_c00019{left:581.700000px;}
.x84_c00019{left:582.900000px;}
.x32_c00019{left:584.700000px;}
.x78_c00019{left:586.500000px;}
.x88_c00019{left:587.700000px;}
.x90_c00019{left:590.400000px;}
.x86_c00019{left:592.200000px;}
.x96_c00019{left:594.000000px;}
.x37_c00019{left:595.500000px;}
.x9f_c00019{left:597.600000px;}
.x1d_c00019{left:599.400000px;}
.x9d_c00019{left:601.950000px;}
.x9b_c00019{left:603.000000px;}
.x9c_c00019{left:606.600000px;}
.x9e_c00019{left:608.400000px;}
.x48_c00019{left:615.000000px;}
.x42_c00019{left:618.750000px;}
.x8d_c00019{left:623.550000px;}
.x92_c00019{left:632.250000px;}
.x79_c00019{left:635.400000px;}
.x45_c00019{left:637.200000px;}
.x87_c00019{left:639.300000px;}
.x97_c00019{left:646.500000px;}
.x98_c00019{left:651.750000px;}
.x33_c00019{left:652.800000px;}
.x2b_c00019{left:654.150000px;}
.x94_c00019{left:655.800000px;}
.x80_c00019{left:657.150000px;}
.x44_c00019{left:658.350000px;}
.x8a_c00019{left:667.500000px;}
.x7e_c00019{left:669.900000px;}
.x81_c00019{left:678.900000px;}
.x39_c00019{left:680.100000px;}
.x8b_c00019{left:683.700000px;}
.x38_c00019{left:685.050000px;}
.x34_c00019{left:687.000000px;}
.x99_c00019{left:688.050000px;}
.x2e_c00019{left:689.400000px;}
.x8e_c00019{left:690.600000px;}
.x3b_c00019{left:693.000000px;}
.x75_c00019{left:696.150000px;}
.x82_c00019{left:698.400000px;}
.x1a_c00019{left:700.200000px;}
.x2f_c00019{left:701.250000px;}
.x93_c00019{left:702.300000px;}
.x36_c00019{left:703.500000px;}
.x3c_c00019{left:704.550000px;}
.x4b_c00019{left:705.900000px;}
.x9a_c00019{left:707.100000px;}
.x2c_c00019{left:708.450000px;}
.x91_c00019{left:710.400000px;}
.x95_c00019{left:711.750000px;}
.x3a_c00019{left:714.000000px;}
.x76_c00019{left:715.350000px;}
.x43_c00019{left:716.700000px;}
.x35_c00019{left:718.350000px;}
.x3f_c00019{left:719.550000px;}
.x31_c00019{left:720.750000px;}
.x77_c00019{left:721.800000px;}
.x7f_c00019{left:723.000000px;}
.x89_c00019{left:724.500000px;}
.x83_c00019{left:730.800000px;}
.x85_c00019{left:736.200000px;}
.x2d_c00019{left:742.350000px;}
.x8c_c00019{left:744.150000px;}
.x30_c00019{left:746.250000px;}
.x8f_c00019{left:748.200000px;}
.x40_c00019{left:752.250000px;}
.x7c_c00019{left:756.450000px;}
.x3d_c00019{left:757.800000px;}
.x7a_c00019{left:759.150000px;}
.x7d_c00019{left:767.250000px;}
.x3e_c00019{left:792.000000px;}
.x1b_c00019{left:795.600000px;}
.xad_c00019{left:796.650000px;}
.xa5_c00019{left:797.700000px;}
.xae_c00019{left:799.950000px;}
.xb2_c00019{left:801.000000px;}
.xb1_c00019{left:802.500000px;}
.xa6_c00019{left:804.300000px;}
.xaf_c00019{left:805.350000px;}
.xa9_c00019{left:806.700000px;}
.xac_c00019{left:807.900000px;}
.xb0_c00019{left:809.250000px;}
.x1c_c00019{left:810.450000px;}
.xaa_c00019{left:812.100000px;}
.xa7_c00019{left:813.600000px;}
.xab_c00019{left:814.650000px;}
.xa2_c00019{left:816.150000px;}
.xa3_c00019{left:817.950000px;}
.xa8_c00019{left:819.300000px;}
.xa0_c00019{left:821.850000px;}
.xa1_c00019{left:844.500000px;}
.xa4_c00019{left:845.700000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws5_c00019{word-spacing:-6.711610pt;}
.ws3_c00019{word-spacing:-0.888889pt;}
.ws1_c00019{word-spacing:-0.380952pt;}
.ws6_c00019{word-spacing:0.000000pt;}
.ws2_c00019{word-spacing:9.888889pt;}
.ws4_c00019{word-spacing:137.373737pt;}
.ws0_c00019{word-spacing:398.814815pt;}
.fs5_c00019{font-size:21.333333pt;}
.fs0_c00019{font-size:26.666667pt;}
.fs3_c00019{font-size:32.000000pt;}
.fs8_c00019{font-size:37.333333pt;}
.fs1_c00019{font-size:42.666667pt;}
.fs7_c00019{font-size:48.000000pt;}
.fs4_c00019{font-size:53.333333pt;}
.fs6_c00019{font-size:58.666667pt;}
.fs2_c00019{font-size:69.333333pt;}
.fsa_c00019{font-size:74.666667pt;}
.fs9_c00019{font-size:144.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.yc9_c00019{bottom:20.800000pt;}
.yc8_c00019{bottom:43.866667pt;}
.y81_c00019{bottom:44.000000pt;}
.y4f_c00019{bottom:49.866667pt;}
.yc7_c00019{bottom:56.266667pt;}
.y80_c00019{bottom:57.066667pt;}
.yc6_c00019{bottom:69.466667pt;}
.y7f_c00019{bottom:70.133333pt;}
.yc4_c00019{bottom:81.866667pt;}
.y7e_c00019{bottom:82.666667pt;}
.yc5_c00019{bottom:83.866667pt;}
.y4e_c00019{bottom:86.133333pt;}
.yc2_c00019{bottom:94.666667pt;}
.y7d_c00019{bottom:95.200000pt;}
.yc3_c00019{bottom:100.533333pt;}
.y7c_c00019{bottom:108.266667pt;}
.y4c_c00019{bottom:112.933333pt;}
.yc0_c00019{bottom:114.533333pt;}
.y85_c00019{bottom:115.600000pt;}
.y4b_c00019{bottom:118.400000pt;}
.y4d_c00019{bottom:119.333333pt;}
.yc1_c00019{bottom:120.266667pt;}
.y7b_c00019{bottom:120.400000pt;}
.y84_c00019{bottom:125.466667pt;}
.ybe_c00019{bottom:133.066667pt;}
.y7a_c00019{bottom:133.466667pt;}
.ybf_c00019{bottom:135.733333pt;}
.y79_c00019{bottom:146.533333pt;}
.y83_c00019{bottom:152.933333pt;}
.ybd_c00019{bottom:155.466667pt;}
.y78_c00019{bottom:159.333333pt;}
.y82_c00019{bottom:163.200000pt;}
.y4a_c00019{bottom:166.666667pt;}
.y77_c00019{bottom:172.133333pt;}
.ybc_c00019{bottom:174.666667pt;}
.y76_c00019{bottom:184.666667pt;}
.yba_c00019{bottom:185.333333pt;}
.ybb_c00019{bottom:192.266667pt;}
.yb9_c00019{bottom:197.466667pt;}
.yb7_c00019{bottom:210.266667pt;}
.y75_c00019{bottom:210.533333pt;}
.yb8_c00019{bottom:212.133333pt;}
.yb5_c00019{bottom:222.400000pt;}
.y74_c00019{bottom:223.066667pt;}
.yb6_c00019{bottom:226.266667pt;}
.yb4_c00019{bottom:234.933333pt;}
.y73_c00019{bottom:237.733333pt;}
.yb3_c00019{bottom:247.333333pt;}
.y72_c00019{bottom:248.400000pt;}
.y71_c00019{bottom:261.466667pt;}
.yb2_c00019{bottom:262.133333pt;}
.y70_c00019{bottom:274.533333pt;}
.y6f_c00019{bottom:288.000000pt;}
.yb1_c00019{bottom:288.266667pt;}
.yb0_c00019{bottom:300.533333pt;}
.y6e_c00019{bottom:300.800000pt;}
.y6d_c00019{bottom:312.666667pt;}
.yaf_c00019{bottom:313.333333pt;}
.yae_c00019{bottom:326.400000pt;}
.y6c_c00019{bottom:326.800000pt;}
.y6b_c00019{bottom:338.933333pt;}
.y6a_c00019{bottom:351.733333pt;}
.y69_c00019{bottom:364.266667pt;}
.y68_c00019{bottom:377.333333pt;}
.y49_c00019{bottom:378.800000pt;}
.y48_c00019{bottom:390.000000pt;}
.yac_c00019{bottom:392.933333pt;}
.y67_c00019{bottom:393.866667pt;}
.y47_c00019{bottom:400.933333pt;}
.y66_c00019{bottom:402.800000pt;}
.yad_c00019{bottom:407.733333pt;}
.y65_c00019{bottom:416.266667pt;}
.y43_c00019{bottom:424.266667pt;}
.yab_c00019{bottom:426.533333pt;}
.y64_c00019{bottom:428.400000pt;}
.y40_c00019{bottom:434.933333pt;}
.y42_c00019{bottom:435.200000pt;}
.ya8_c00019{bottom:438.800000pt;}
.y34_c00019{bottom:439.733333pt;}
.y63_c00019{bottom:440.933333pt;}
.yaa_c00019{bottom:443.466667pt;}
.y41_c00019{bottom:447.066667pt;}
.y3f_c00019{bottom:448.266667pt;}
.y46_c00019{bottom:448.533333pt;}
.ya7_c00019{bottom:449.333333pt;}
.y62_c00019{bottom:454.133333pt;}
.y45_c00019{bottom:458.800000pt;}
.ya9_c00019{bottom:459.466667pt;}
.y3e_c00019{bottom:466.933333pt;}
.y61_c00019{bottom:467.466667pt;}
.y44_c00019{bottom:468.133333pt;}
.ya5_c00019{bottom:471.066667pt;}
.y33_c00019{bottom:476.133333pt;}
.ya6_c00019{bottom:478.400000pt;}
.y60_c00019{bottom:479.733333pt;}
.y39_c00019{bottom:488.000000pt;}
.y3b_c00019{bottom:489.066667pt;}
.y5f_c00019{bottom:492.800000pt;}
.ya4_c00019{bottom:495.733333pt;}
.ya3_c00019{bottom:502.133333pt;}
.y3a_c00019{bottom:503.733333pt;}
.y38_c00019{bottom:504.000000pt;}
.y5e_c00019{bottom:505.333333pt;}
.y5d_c00019{bottom:512.000000pt;}
.y32_c00019{bottom:512.266667pt;}
.ya2_c00019{bottom:512.933333pt;}
.ya1_c00019{bottom:517.066667pt;}
.y37_c00019{bottom:517.466667pt;}
.y5c_c00019{bottom:520.933333pt;}
.y5b_c00019{bottom:530.266667pt;}
.y31_c00019{bottom:531.866667pt;}
.y36_c00019{bottom:532.533333pt;}
.y35_c00019{bottom:540.800000pt;}
.y9f_c00019{bottom:543.066667pt;}
.ya0_c00019{bottom:547.200000pt;}
.y5a_c00019{bottom:547.866667pt;}
.y30_c00019{bottom:551.066667pt;}
.y3d_c00019{bottom:553.866667pt;}
.y9e_c00019{bottom:556.133333pt;}
.y59_c00019{bottom:556.800000pt;}
.y2f_c00019{bottom:563.866667pt;}
.y3c_c00019{bottom:565.733333pt;}
.y9d_c00019{bottom:568.266667pt;}
.y58_c00019{bottom:569.333333pt;}
.y9c_c00019{bottom:581.733333pt;}
.y57_c00019{bottom:582.400000pt;}
.y9b_c00019{bottom:594.266667pt;}
.y56_c00019{bottom:595.200000pt;}
.y2e_c00019{bottom:597.466667pt;}
.y9a_c00019{bottom:607.066667pt;}
.y55_c00019{bottom:607.733333pt;}
.y99_c00019{bottom:619.866667pt;}
.y54_c00019{bottom:626.533333pt;}
.y98_c00019{bottom:632.666667pt;}
.y53_c00019{bottom:633.600000pt;}
.y97_c00019{bottom:645.733333pt;}
.y52_c00019{bottom:646.666667pt;}
.y96_c00019{bottom:658.533333pt;}
.y51_c00019{bottom:659.466667pt;}
.y95_c00019{bottom:671.733333pt;}
.y50_c00019{bottom:672.266667pt;}
.y94_c00019{bottom:684.133333pt;}
.y93_c00019{bottom:697.333333pt;}
.y2c_c00019{bottom:710.666667pt;}
.y2b_c00019{bottom:717.466667pt;}
.y2d_c00019{bottom:723.466667pt;}
.y91_c00019{bottom:723.733333pt;}
.y2a_c00019{bottom:726.666667pt;}
.y92_c00019{bottom:732.800000pt;}
.y90_c00019{bottom:736.266667pt;}
.y29_c00019{bottom:736.666667pt;}
.y28_c00019{bottom:748.800000pt;}
.y19_c00019{bottom:749.066667pt;}
.y8f_c00019{bottom:751.066667pt;}
.y1a_c00019{bottom:752.933333pt;}
.y27_c00019{bottom:762.266667pt;}
.y8c_c00019{bottom:762.533333pt;}
.y8e_c00019{bottom:768.266667pt;}
.y26_c00019{bottom:775.333333pt;}
.y18_c00019{bottom:776.666667pt;}
.y8d_c00019{bottom:784.000000pt;}
.y17_c00019{bottom:787.466667pt;}
.y25_c00019{bottom:788.133333pt;}
.y8a_c00019{bottom:794.533333pt;}
.y24_c00019{bottom:801.333333pt;}
.y16_c00019{bottom:812.533333pt;}
.y8b_c00019{bottom:813.466667pt;}
.y23_c00019{bottom:814.000000pt;}
.y15_c00019{bottom:824.666667pt;}
.y22_c00019{bottom:826.533333pt;}
.y89_c00019{bottom:828.533333pt;}
.y88_c00019{bottom:828.800000pt;}
.y21_c00019{bottom:832.266667pt;}
.y20_c00019{bottom:840.000000pt;}
.y87_c00019{bottom:840.933333pt;}
.y14_c00019{bottom:847.466667pt;}
.y1f_c00019{bottom:853.066667pt;}
.y13_c00019{bottom:857.333333pt;}
.y1e_c00019{bottom:865.866667pt;}
.y1d_c00019{bottom:878.400000pt;}
.yc_c00019{bottom:881.333333pt;}
.yb_c00019{bottom:890.533333pt;}
.y1c_c00019{bottom:891.200000pt;}
.y12_c00019{bottom:896.266667pt;}
.ye_c00019{bottom:897.600000pt;}
.ya_c00019{bottom:898.933333pt;}
.y1b_c00019{bottom:904.266667pt;}
.y9_c00019{bottom:912.666667pt;}
.y86_c00019{bottom:912.933333pt;}
.yd_c00019{bottom:915.466667pt;}
.y11_c00019{bottom:922.533333pt;}
.y8_c00019{bottom:923.466667pt;}
.yf_c00019{bottom:923.866667pt;}
.y10_c00019{bottom:931.200000pt;}
.y7_c00019{bottom:932.133333pt;}
.y6_c00019{bottom:947.866667pt;}
.y3_c00019{bottom:952.266667pt;}
.y2_c00019{bottom:961.600000pt;}
.y5_c00019{bottom:963.466667pt;}
.y1_c00019{bottom:971.866667pt;}
.y4_c00019{bottom:975.066667pt;}
.h7_c00019{height:21.333333pt;}
.h2_c00019{height:26.666667pt;}
.h5_c00019{height:32.000000pt;}
.ha_c00019{height:37.333333pt;}
.h3_c00019{height:42.666667pt;}
.h9_c00019{height:48.000000pt;}
.h6_c00019{height:53.333333pt;}
.h8_c00019{height:58.666667pt;}
.h4_c00019{height:69.333333pt;}
.hc_c00019{height:74.666667pt;}
.hb_c00019{height:144.000000pt;}
.h1_c00019{height:1037.333333pt;}
.h0_c00019{height:1037.439941pt;}
.w0_c00019{width:811.840007pt;}
.w1_c00019{width:812.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:106.266667pt;}
.x13_c00019{left:113.866667pt;}
.x53_c00019{left:118.400000pt;}
.x14_c00019{left:126.666667pt;}
.x2_c00019{left:139.866667pt;}
.x7_c00019{left:140.800000pt;}
.x8_c00019{left:154.933333pt;}
.x27_c00019{left:158.666667pt;}
.x15_c00019{left:162.266667pt;}
.xb_c00019{left:165.200000pt;}
.x1e_c00019{left:168.666667pt;}
.x5c_c00019{left:172.133333pt;}
.x17_c00019{left:175.733333pt;}
.x9_c00019{left:177.333333pt;}
.x3_c00019{left:180.133333pt;}
.x18_c00019{left:187.200000pt;}
.x20_c00019{left:192.400000pt;}
.x4d_c00019{left:193.600000pt;}
.x22_c00019{left:200.266667pt;}
.x25_c00019{left:201.866667pt;}
.x54_c00019{left:207.066667pt;}
.x4_c00019{left:208.666667pt;}
.x5d_c00019{left:209.866667pt;}
.xa_c00019{left:212.533333pt;}
.x16_c00019{left:214.800000pt;}
.x1f_c00019{left:216.400000pt;}
.x21_c00019{left:220.133333pt;}
.x5_c00019{left:222.400000pt;}
.x58_c00019{left:223.466667pt;}
.x19_c00019{left:225.333333pt;}
.x55_c00019{left:230.133333pt;}
.x24_c00019{left:231.733333pt;}
.x23_c00019{left:236.133333pt;}
.x56_c00019{left:238.800000pt;}
.x6f_c00019{left:240.666667pt;}
.x26_c00019{left:242.800000pt;}
.x5b_c00019{left:245.466667pt;}
.x64_c00019{left:246.666667pt;}
.x52_c00019{left:250.533333pt;}
.x5e_c00019{left:251.466667pt;}
.x57_c00019{left:258.266667pt;}
.x6_c00019{left:263.733333pt;}
.x4e_c00019{left:264.666667pt;}
.x70_c00019{left:268.533333pt;}
.x65_c00019{left:273.333333pt;}
.x71_c00019{left:278.800000pt;}
.x28_c00019{left:281.200000pt;}
.x4f_c00019{left:285.200000pt;}
.x59_c00019{left:286.533333pt;}
.xc_c00019{left:287.466667pt;}
.x61_c00019{left:293.466667pt;}
.x50_c00019{left:296.400000pt;}
.x73_c00019{left:297.333333pt;}
.x5a_c00019{left:298.933333pt;}
.x72_c00019{left:301.733333pt;}
.x29_c00019{left:315.733333pt;}
.x66_c00019{left:318.133333pt;}
.xd_c00019{left:320.000000pt;}
.x51_c00019{left:321.733333pt;}
.x62_c00019{left:331.600000pt;}
.x11_c00019{left:337.600000pt;}
.x2a_c00019{left:346.933333pt;}
.x63_c00019{left:362.933333pt;}
.x74_c00019{left:369.600000pt;}
.xb3_c00019{left:393.866667pt;}
.x67_c00019{left:405.733333pt;}
.x69_c00019{left:409.200000pt;}
.x4c_c00019{left:428.533333pt;}
.xb4_c00019{left:430.400000pt;}
.x6e_c00019{left:432.266667pt;}
.x10_c00019{left:434.266667pt;}
.x12_c00019{left:444.133333pt;}
.x68_c00019{left:446.000000pt;}
.xe_c00019{left:454.400000pt;}
.x6a_c00019{left:468.800000pt;}
.x46_c00019{left:472.000000pt;}
.x49_c00019{left:472.933333pt;}
.x60_c00019{left:476.133333pt;}
.x5f_c00019{left:477.066667pt;}
.x6c_c00019{left:478.400000pt;}
.xf_c00019{left:480.666667pt;}
.x6d_c00019{left:499.733333pt;}
.x6b_c00019{left:502.666667pt;}
.x4a_c00019{left:513.200000pt;}
.x47_c00019{left:514.933333pt;}
.x41_c00019{left:516.133333pt;}
.x7b_c00019{left:517.066667pt;}
.x84_c00019{left:518.133333pt;}
.x32_c00019{left:519.733333pt;}
.x78_c00019{left:521.333333pt;}
.x88_c00019{left:522.400000pt;}
.x90_c00019{left:524.800000pt;}
.x86_c00019{left:526.400000pt;}
.x96_c00019{left:528.000000pt;}
.x37_c00019{left:529.333333pt;}
.x9f_c00019{left:531.200000pt;}
.x1d_c00019{left:532.800000pt;}
.x9d_c00019{left:535.066667pt;}
.x9b_c00019{left:536.000000pt;}
.x9c_c00019{left:539.200000pt;}
.x9e_c00019{left:540.800000pt;}
.x48_c00019{left:546.666667pt;}
.x42_c00019{left:550.000000pt;}
.x8d_c00019{left:554.266667pt;}
.x92_c00019{left:562.000000pt;}
.x79_c00019{left:564.800000pt;}
.x45_c00019{left:566.400000pt;}
.x87_c00019{left:568.266667pt;}
.x97_c00019{left:574.666667pt;}
.x98_c00019{left:579.333333pt;}
.x33_c00019{left:580.266667pt;}
.x2b_c00019{left:581.466667pt;}
.x94_c00019{left:582.933333pt;}
.x80_c00019{left:584.133333pt;}
.x44_c00019{left:585.200000pt;}
.x8a_c00019{left:593.333333pt;}
.x7e_c00019{left:595.466667pt;}
.x81_c00019{left:603.466667pt;}
.x39_c00019{left:604.533333pt;}
.x8b_c00019{left:607.733333pt;}
.x38_c00019{left:608.933333pt;}
.x34_c00019{left:610.666667pt;}
.x99_c00019{left:611.600000pt;}
.x2e_c00019{left:612.800000pt;}
.x8e_c00019{left:613.866667pt;}
.x3b_c00019{left:616.000000pt;}
.x75_c00019{left:618.800000pt;}
.x82_c00019{left:620.800000pt;}
.x1a_c00019{left:622.400000pt;}
.x2f_c00019{left:623.333333pt;}
.x93_c00019{left:624.266667pt;}
.x36_c00019{left:625.333333pt;}
.x3c_c00019{left:626.266667pt;}
.x4b_c00019{left:627.466667pt;}
.x9a_c00019{left:628.533333pt;}
.x2c_c00019{left:629.733333pt;}
.x91_c00019{left:631.466667pt;}
.x95_c00019{left:632.666667pt;}
.x3a_c00019{left:634.666667pt;}
.x76_c00019{left:635.866667pt;}
.x43_c00019{left:637.066667pt;}
.x35_c00019{left:638.533333pt;}
.x3f_c00019{left:639.600000pt;}
.x31_c00019{left:640.666667pt;}
.x77_c00019{left:641.600000pt;}
.x7f_c00019{left:642.666667pt;}
.x89_c00019{left:644.000000pt;}
.x83_c00019{left:649.600000pt;}
.x85_c00019{left:654.400000pt;}
.x2d_c00019{left:659.866667pt;}
.x8c_c00019{left:661.466667pt;}
.x30_c00019{left:663.333333pt;}
.x8f_c00019{left:665.066667pt;}
.x40_c00019{left:668.666667pt;}
.x7c_c00019{left:672.400000pt;}
.x3d_c00019{left:673.600000pt;}
.x7a_c00019{left:674.800000pt;}
.x7d_c00019{left:682.000000pt;}
.x3e_c00019{left:704.000000pt;}
.x1b_c00019{left:707.200000pt;}
.xad_c00019{left:708.133333pt;}
.xa5_c00019{left:709.066667pt;}
.xae_c00019{left:711.066667pt;}
.xb2_c00019{left:712.000000pt;}
.xb1_c00019{left:713.333333pt;}
.xa6_c00019{left:714.933333pt;}
.xaf_c00019{left:715.866667pt;}
.xa9_c00019{left:717.066667pt;}
.xac_c00019{left:718.133333pt;}
.xb0_c00019{left:719.333333pt;}
.x1c_c00019{left:720.400000pt;}
.xaa_c00019{left:721.866667pt;}
.xa7_c00019{left:723.200000pt;}
.xab_c00019{left:724.133333pt;}
.xa2_c00019{left:725.466667pt;}
.xa3_c00019{left:727.066667pt;}
.xa8_c00019{left:728.266667pt;}
.xa0_c00019{left:730.533333pt;}
.xa1_c00019{left:750.666667pt;}
.xa4_c00019{left:751.733333pt;}
}





/* 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_c00020 {
    display:none;
  }
  .loading-indicator_c00020.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00020 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_c00020 { 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_c00020" -> "#page-container .classname_c00020")
 */
.pf_c00020 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00020 { /* 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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00020 { /* 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_c00020 { /* 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_c00020 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00020 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00020 {overflow:visible;}
  }
}
.c_c00020 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00020 { /* 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_c00020:after { /* webkit #35443 */
  content: '';
}
.t_c00020:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00020 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 */
}
.__c00020 { /* 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_c00020 { /* info for Javascript */
  display:none;
}
.l_c00020 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00020 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00020 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00020: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_c00020 {
    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_c00020.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00020.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_c00020 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00020{font-family:sans-serif;visibility:hidden;}
.sc__c00020{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00020{-webkit-text-stroke:0px transparent;}
}
.y0_c00020{bottom:0.000000px;}
.h1_c00020{height:1167.000000px;}
.h0_c00020{height:1167.119934px;}
.w0_c00020{width:913.320007px;}
.w1_c00020{width:913.500000px;}
.x0_c00020{left:0.000000px;}
@media print{
.y0_c00020{bottom:0.000000pt;}
.h1_c00020{height:1037.333333pt;}
.h0_c00020{height:1037.439941pt;}
.w0_c00020{width:811.840007pt;}
.w1_c00020{width:812.000000pt;}
.x0_c00020{left:0.000000pt;}
}





/* 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_c00021 {
    display:none;
  }
  .loading-indicator_c00021.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00021 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_c00021 { 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_c00021" -> "#page-container .classname_c00021")
 */
.pf_c00021 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00021 { /* 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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00021 { /* 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_c00021 { /* 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_c00021 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00021 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00021 {overflow:visible;}
  }
}
.c_c00021 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00021 { /* 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_c00021:after { /* webkit #35443 */
  content: '';
}
.t_c00021:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00021 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 */
}
.__c00021 { /* 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_c00021 { /* info for Javascript */
  display:none;
}
.l_c00021 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00021 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00021 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00021: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_c00021 {
    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_c00021.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00021.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_c00021 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00021{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00021;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.000000;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;}
.m34_c00021{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m24_c00021{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m32_c00021{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m18_c00021{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc_c00021{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m20_c00021{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.me_c00021{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00021{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{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);}
.m12_c00021{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md_c00021{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m30_c00021{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m37_c00021{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m29_c00021{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m39_c00021{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00021{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00021{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00021{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00021{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m3_c00021{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m33_c00021{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00021{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00021{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00021{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00021{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.402250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402250,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v2_c00021{vertical-align:-1.800000px;}
.v0_c00021{vertical-align:0.000000px;}
.v1_c00021{vertical-align:1.800000px;}
.ls4_c00021{letter-spacing:0.000000px;}
.ls3_c00021{letter-spacing:134.803592px;}
.ls0_c00021{letter-spacing:147.427605px;}
.ls1_c00021{letter-spacing:148.735812px;}
.ls2_c00021{letter-spacing:149.171881px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{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__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:-10.878721px;}
.ws3_c00021{word-spacing:0.000000px;}
.ws1_c00021{word-spacing:19.994638px;}
.ws2_c00021{word-spacing:385.435185px;}
._0_c00021{width:1649.898418px;}
.fc0_c00021{color:transparent;}
.fs2_c00021{font-size:48.000000px;}
.fs1_c00021{font-size:54.000000px;}
.fs3_c00021{font-size:66.000000px;}
.fs0_c00021{font-size:90.000000px;}
.y0_c00021{bottom:0.000000px;}
.y3f_c00021{bottom:168.900000px;}
.y40_c00021{bottom:170.700000px;}
.y3c_c00021{bottom:190.050000px;}
.y3b_c00021{bottom:190.500000px;}
.y3d_c00021{bottom:190.800000px;}
.y3e_c00021{bottom:191.100000px;}
.y3a_c00021{bottom:212.100000px;}
.y38_c00021{bottom:240.450000px;}
.y36_c00021{bottom:240.900000px;}
.y37_c00021{bottom:241.200000px;}
.y39_c00021{bottom:243.000000px;}
.y33_c00021{bottom:269.250000px;}
.y32_c00021{bottom:269.700000px;}
.y34_c00021{bottom:270.000000px;}
.y35_c00021{bottom:270.750000px;}
.y2f_c00021{bottom:298.050000px;}
.y2e_c00021{bottom:298.500000px;}
.y30_c00021{bottom:298.800000px;}
.y31_c00021{bottom:300.300000px;}
.y2c_c00021{bottom:326.850000px;}
.y2b_c00021{bottom:327.300000px;}
.y2d_c00021{bottom:329.700000px;}
.y29_c00021{bottom:356.100000px;}
.y2a_c00021{bottom:358.950000px;}
.y28_c00021{bottom:384.900000px;}
.y25_c00021{bottom:413.700000px;}
.y24_c00021{bottom:414.750000px;}
.y26_c00021{bottom:415.050000px;}
.y27_c00021{bottom:416.100000px;}
.y22_c00021{bottom:436.350000px;}
.y23_c00021{bottom:437.700000px;}
.y20_c00021{bottom:458.250000px;}
.y21_c00021{bottom:459.750000px;}
.y1f_c00021{bottom:479.550000px;}
.y1c_c00021{bottom:506.850000px;}
.y1b_c00021{bottom:508.650000px;}
.y1e_c00021{bottom:510.150000px;}
.y1d_c00021{bottom:511.950000px;}
.y19_c00021{bottom:528.450000px;}
.y1a_c00021{bottom:528.900000px;}
.y18_c00021{bottom:530.250000px;}
.y15_c00021{bottom:550.500000px;}
.y16_c00021{bottom:550.800000px;}
.y14_c00021{bottom:551.850000px;}
.y17_c00021{bottom:552.900000px;}
.y13_c00021{bottom:573.450000px;}
.y10_c00021{bottom:600.450000px;}
.yf_c00021{bottom:602.250000px;}
.y11_c00021{bottom:602.700000px;}
.y12_c00021{bottom:604.050000px;}
.ye_c00021{bottom:631.050000px;}
.y7_c00021{bottom:647.250000px;}
.ya_c00021{bottom:648.000000px;}
.yb_c00021{bottom:662.100000px;}
.yc_c00021{bottom:662.400000px;}
.yd_c00021{bottom:662.700000px;}
.y6_c00021{bottom:663.150000px;}
.y9_c00021{bottom:664.500000px;}
.y5_c00021{bottom:679.350000px;}
.y8_c00021{bottom:680.400000px;}
.y4_c00021{bottom:734.400000px;}
.y3_c00021{bottom:757.050000px;}
.y2_c00021{bottom:830.100000px;}
.y1_c00021{bottom:862.200000px;}
.h4_c00021{height:48.000000px;}
.h3_c00021{height:54.000000px;}
.h7_c00021{height:55.200000px;}
.h6_c00021{height:55.800000px;}
.h8_c00021{height:56.400000px;}
.h5_c00021{height:66.000000px;}
.h2_c00021{height:90.000000px;}
.h1_c00021{height:1167.000000px;}
.h0_c00021{height:1167.119934px;}
.w0_c00021{width:913.320007px;}
.w1_c00021{width:913.500000px;}
.x0_c00021{left:0.000000px;}
.x24_c00021{left:82.050000px;}
.x3c_c00021{left:84.900000px;}
.x8_c00021{left:121.350000px;}
.x2b_c00021{left:126.750000px;}
.x25_c00021{left:127.800000px;}
.x3d_c00021{left:130.350000px;}
.x26_c00021{left:145.050000px;}
.x35_c00021{left:146.550000px;}
.x3e_c00021{left:148.050000px;}
.x42_c00021{left:149.100000px;}
.x9_c00021{left:158.850000px;}
.x2c_c00021{left:171.300000px;}
.x36_c00021{left:172.800000px;}
.xa_c00021{left:174.000000px;}
.x45_c00021{left:176.100000px;}
.x37_c00021{left:180.000000px;}
.x2d_c00021{left:189.000000px;}
.x38_c00021{left:190.800000px;}
.x46_c00021{left:193.050000px;}
.xb_c00021{left:203.550000px;}
.x1_c00021{left:239.400000px;}
.xc_c00021{left:271.200000px;}
.x4_c00021{left:315.000000px;}
.x17_c00021{left:334.800000px;}
.xd_c00021{left:337.800000px;}
.xe_c00021{left:354.750000px;}
.x5_c00021{left:384.900000px;}
.x18_c00021{left:394.200000px;}
.xf_c00021{left:395.850000px;}
.x6_c00021{left:406.800000px;}
.x19_c00021{left:414.300000px;}
.x2_c00021{left:429.150000px;}
.x1a_c00021{left:438.000000px;}
.x7_c00021{left:444.600000px;}
.x10_c00021{left:446.550000px;}
.x1b_c00021{left:452.850000px;}
.x1d_c00021{left:459.300000px;}
.x3_c00021{left:469.800000px;}
.x27_c00021{left:471.900000px;}
.x32_c00021{left:473.100000px;}
.x3f_c00021{left:474.450000px;}
.x44_c00021{left:475.500000px;}
.x11_c00021{left:486.150000px;}
.x1c_c00021{left:490.650000px;}
.x1e_c00021{left:513.750000px;}
.x20_c00021{left:520.200000px;}
.x2e_c00021{left:532.800000px;}
.x3a_c00021{left:533.850000px;}
.x40_c00021{left:534.900000px;}
.x28_c00021{left:536.400000px;}
.x12_c00021{left:540.450000px;}
.x1f_c00021{left:550.800000px;}
.x21_c00021{left:574.950000px;}
.x13_c00021{left:590.850000px;}
.x29_c00021{left:592.500000px;}
.x2f_c00021{left:593.700000px;}
.x41_c00021{left:595.800000px;}
.x31_c00021{left:597.600000px;}
.x33_c00021{left:598.650000px;}
.x47_c00021{left:600.900000px;}
.x14_c00021{left:622.200000px;}
.x22_c00021{left:638.700000px;}
.x15_c00021{left:653.850000px;}
.x39_c00021{left:655.200000px;}
.x43_c00021{left:657.000000px;}
.x30_c00021{left:661.050000px;}
.x16_c00021{left:690.900000px;}
.x23_c00021{left:692.250000px;}
.x2a_c00021{left:714.300000px;}
.x34_c00021{left:715.650000px;}
.x3b_c00021{left:716.700000px;}
@media print{
.v2_c00021{vertical-align:-1.600000pt;}
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:1.600000pt;}
.ls4_c00021{letter-spacing:0.000000pt;}
.ls3_c00021{letter-spacing:119.825415pt;}
.ls0_c00021{letter-spacing:131.046760pt;}
.ls1_c00021{letter-spacing:132.209611pt;}
.ls2_c00021{letter-spacing:132.597228pt;}
.ws0_c00021{word-spacing:-9.669974pt;}
.ws3_c00021{word-spacing:0.000000pt;}
.ws1_c00021{word-spacing:17.773012pt;}
.ws2_c00021{word-spacing:342.609053pt;}
._0_c00021{width:1466.576372pt;}
.fs2_c00021{font-size:42.666667pt;}
.fs1_c00021{font-size:48.000000pt;}
.fs3_c00021{font-size:58.666667pt;}
.fs0_c00021{font-size:80.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y3f_c00021{bottom:150.133333pt;}
.y40_c00021{bottom:151.733333pt;}
.y3c_c00021{bottom:168.933333pt;}
.y3b_c00021{bottom:169.333333pt;}
.y3d_c00021{bottom:169.600000pt;}
.y3e_c00021{bottom:169.866667pt;}
.y3a_c00021{bottom:188.533333pt;}
.y38_c00021{bottom:213.733333pt;}
.y36_c00021{bottom:214.133333pt;}
.y37_c00021{bottom:214.400000pt;}
.y39_c00021{bottom:216.000000pt;}
.y33_c00021{bottom:239.333333pt;}
.y32_c00021{bottom:239.733333pt;}
.y34_c00021{bottom:240.000000pt;}
.y35_c00021{bottom:240.666667pt;}
.y2f_c00021{bottom:264.933333pt;}
.y2e_c00021{bottom:265.333333pt;}
.y30_c00021{bottom:265.600000pt;}
.y31_c00021{bottom:266.933333pt;}
.y2c_c00021{bottom:290.533333pt;}
.y2b_c00021{bottom:290.933333pt;}
.y2d_c00021{bottom:293.066667pt;}
.y29_c00021{bottom:316.533333pt;}
.y2a_c00021{bottom:319.066667pt;}
.y28_c00021{bottom:342.133333pt;}
.y25_c00021{bottom:367.733333pt;}
.y24_c00021{bottom:368.666667pt;}
.y26_c00021{bottom:368.933333pt;}
.y27_c00021{bottom:369.866667pt;}
.y22_c00021{bottom:387.866667pt;}
.y23_c00021{bottom:389.066667pt;}
.y20_c00021{bottom:407.333333pt;}
.y21_c00021{bottom:408.666667pt;}
.y1f_c00021{bottom:426.266667pt;}
.y1c_c00021{bottom:450.533333pt;}
.y1b_c00021{bottom:452.133333pt;}
.y1e_c00021{bottom:453.466667pt;}
.y1d_c00021{bottom:455.066667pt;}
.y19_c00021{bottom:469.733333pt;}
.y1a_c00021{bottom:470.133333pt;}
.y18_c00021{bottom:471.333333pt;}
.y15_c00021{bottom:489.333333pt;}
.y16_c00021{bottom:489.600000pt;}
.y14_c00021{bottom:490.533333pt;}
.y17_c00021{bottom:491.466667pt;}
.y13_c00021{bottom:509.733333pt;}
.y10_c00021{bottom:533.733333pt;}
.yf_c00021{bottom:535.333333pt;}
.y11_c00021{bottom:535.733333pt;}
.y12_c00021{bottom:536.933333pt;}
.ye_c00021{bottom:560.933333pt;}
.y7_c00021{bottom:575.333333pt;}
.ya_c00021{bottom:576.000000pt;}
.yb_c00021{bottom:588.533333pt;}
.yc_c00021{bottom:588.800000pt;}
.yd_c00021{bottom:589.066667pt;}
.y6_c00021{bottom:589.466667pt;}
.y9_c00021{bottom:590.666667pt;}
.y5_c00021{bottom:603.866667pt;}
.y8_c00021{bottom:604.800000pt;}
.y4_c00021{bottom:652.800000pt;}
.y3_c00021{bottom:672.933333pt;}
.y2_c00021{bottom:737.866667pt;}
.y1_c00021{bottom:766.400000pt;}
.h4_c00021{height:42.666667pt;}
.h3_c00021{height:48.000000pt;}
.h7_c00021{height:49.066667pt;}
.h6_c00021{height:49.600000pt;}
.h8_c00021{height:50.133333pt;}
.h5_c00021{height:58.666667pt;}
.h2_c00021{height:80.000000pt;}
.h1_c00021{height:1037.333333pt;}
.h0_c00021{height:1037.439941pt;}
.w0_c00021{width:811.840007pt;}
.w1_c00021{width:812.000000pt;}
.x0_c00021{left:0.000000pt;}
.x24_c00021{left:72.933333pt;}
.x3c_c00021{left:75.466667pt;}
.x8_c00021{left:107.866667pt;}
.x2b_c00021{left:112.666667pt;}
.x25_c00021{left:113.600000pt;}
.x3d_c00021{left:115.866667pt;}
.x26_c00021{left:128.933333pt;}
.x35_c00021{left:130.266667pt;}
.x3e_c00021{left:131.600000pt;}
.x42_c00021{left:132.533333pt;}
.x9_c00021{left:141.200000pt;}
.x2c_c00021{left:152.266667pt;}
.x36_c00021{left:153.600000pt;}
.xa_c00021{left:154.666667pt;}
.x45_c00021{left:156.533333pt;}
.x37_c00021{left:160.000000pt;}
.x2d_c00021{left:168.000000pt;}
.x38_c00021{left:169.600000pt;}
.x46_c00021{left:171.600000pt;}
.xb_c00021{left:180.933333pt;}
.x1_c00021{left:212.800000pt;}
.xc_c00021{left:241.066667pt;}
.x4_c00021{left:280.000000pt;}
.x17_c00021{left:297.600000pt;}
.xd_c00021{left:300.266667pt;}
.xe_c00021{left:315.333333pt;}
.x5_c00021{left:342.133333pt;}
.x18_c00021{left:350.400000pt;}
.xf_c00021{left:351.866667pt;}
.x6_c00021{left:361.600000pt;}
.x19_c00021{left:368.266667pt;}
.x2_c00021{left:381.466667pt;}
.x1a_c00021{left:389.333333pt;}
.x7_c00021{left:395.200000pt;}
.x10_c00021{left:396.933333pt;}
.x1b_c00021{left:402.533333pt;}
.x1d_c00021{left:408.266667pt;}
.x3_c00021{left:417.600000pt;}
.x27_c00021{left:419.466667pt;}
.x32_c00021{left:420.533333pt;}
.x3f_c00021{left:421.733333pt;}
.x44_c00021{left:422.666667pt;}
.x11_c00021{left:432.133333pt;}
.x1c_c00021{left:436.133333pt;}
.x1e_c00021{left:456.666667pt;}
.x20_c00021{left:462.400000pt;}
.x2e_c00021{left:473.600000pt;}
.x3a_c00021{left:474.533333pt;}
.x40_c00021{left:475.466667pt;}
.x28_c00021{left:476.800000pt;}
.x12_c00021{left:480.400000pt;}
.x1f_c00021{left:489.600000pt;}
.x21_c00021{left:511.066667pt;}
.x13_c00021{left:525.200000pt;}
.x29_c00021{left:526.666667pt;}
.x2f_c00021{left:527.733333pt;}
.x41_c00021{left:529.600000pt;}
.x31_c00021{left:531.200000pt;}
.x33_c00021{left:532.133333pt;}
.x47_c00021{left:534.133333pt;}
.x14_c00021{left:553.066667pt;}
.x22_c00021{left:567.733333pt;}
.x15_c00021{left:581.200000pt;}
.x39_c00021{left:582.400000pt;}
.x43_c00021{left:584.000000pt;}
.x30_c00021{left:587.600000pt;}
.x16_c00021{left:614.133333pt;}
.x23_c00021{left:615.333333pt;}
.x2a_c00021{left:634.933333pt;}
.x34_c00021{left:636.133333pt;}
.x3b_c00021{left:637.066667pt;}
}





/* 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_c00022 {
    display:none;
  }
  .loading-indicator_c00022.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00022 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_c00022 { 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_c00022" -> "#page-container .classname_c00022")
 */
.pf_c00022 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00022 { /* 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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00022 { /* 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_c00022 { /* 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_c00022 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00022 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00022 {overflow:visible;}
  }
}
.c_c00022 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00022 { /* 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_c00022:after { /* webkit #35443 */
  content: '';
}
.t_c00022:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00022 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 */
}
.__c00022 { /* 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_c00022 { /* info for Javascript */
  display:none;
}
.l_c00022 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00022 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00022 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00022: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_c00022 {
    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_c00022.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00022.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_c00022 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00022{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00022;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.000000;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;}
.m2f_c00022{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8_c00022{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4_c00022{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00022{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00022{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m34_c00022{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00022{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00022{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc_c00022{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m23_c00022{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m30_c00022{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m28_c00022{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m37_c00022{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00022{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m27_c00022{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00022{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1_c00022{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m16_c00022{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00022{transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324750,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m14_c00022{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384500,0.000000,0.000000,0.250000,0,0);}
.v0_c00022{vertical-align:0.000000px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{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__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00022{word-spacing:0.000000px;}
.ws0_c00022{word-spacing:13.447307px;}
.ws2_c00022{word-spacing:23.211796px;}
.ws1_c00022{word-spacing:36.000000px;}
.fc0_c00022{color:transparent;}
.fs0_c00022{font-size:48.000000px;}
.fs1_c00022{font-size:54.000000px;}
.fs3_c00022{font-size:60.000000px;}
.fs2_c00022{font-size:66.000000px;}
.y0_c00022{bottom:0.000000px;}
.y40_c00022{bottom:195.900000px;}
.y32_c00022{bottom:196.200000px;}
.y24_c00022{bottom:199.800000px;}
.y31_c00022{bottom:217.500000px;}
.y3f_c00022{bottom:217.800000px;}
.y23_c00022{bottom:221.400000px;}
.y30_c00022{bottom:239.400000px;}
.y3e_c00022{bottom:239.700000px;}
.y22_c00022{bottom:243.000000px;}
.y21_c00022{bottom:264.600000px;}
.y20_c00022{bottom:286.200000px;}
.y1f_c00022{bottom:307.800000px;}
.y1e_c00022{bottom:329.400000px;}
.y1d_c00022{bottom:351.300000px;}
.y1c_c00022{bottom:372.600000px;}
.y1b_c00022{bottom:394.500000px;}
.y1a_c00022{bottom:416.100000px;}
.y19_c00022{bottom:437.700000px;}
.y18_c00022{bottom:459.750000px;}
.y17_c00022{bottom:480.900000px;}
.y16_c00022{bottom:502.950000px;}
.y3a_c00022{bottom:520.200000px;}
.y2f_c00022{bottom:520.500000px;}
.y15_c00022{bottom:524.550000px;}
.y2e_c00022{bottom:541.800000px;}
.y14_c00022{bottom:546.150000px;}
.y13_c00022{bottom:567.750000px;}
.y39_c00022{bottom:585.300000px;}
.y2d_c00022{bottom:585.450000px;}
.y12_c00022{bottom:589.650000px;}
.y38_c00022{bottom:606.900000px;}
.y2c_c00022{bottom:607.050000px;}
.y11_c00022{bottom:610.950000px;}
.y2b_c00022{bottom:628.650000px;}
.y37_c00022{bottom:628.800000px;}
.y10_c00022{bottom:632.550000px;}
.y36_c00022{bottom:650.100000px;}
.y2a_c00022{bottom:650.550000px;}
.yf_c00022{bottom:654.450000px;}
.y29_c00022{bottom:671.850000px;}
.y35_c00022{bottom:672.450000px;}
.ye_c00022{bottom:676.050000px;}
.y28_c00022{bottom:693.750000px;}
.yd_c00022{bottom:697.650000px;}
.yc_c00022{bottom:719.250000px;}
.yb_c00022{bottom:741.300000px;}
.ya_c00022{bottom:770.100000px;}
.y9_c00022{bottom:791.700000px;}
.y8_c00022{bottom:820.500000px;}
.y7_c00022{bottom:855.750000px;}
.y6_c00022{bottom:884.550000px;}
.y5_c00022{bottom:906.150000px;}
.y4_c00022{bottom:927.300000px;}
.y3_c00022{bottom:956.100000px;}
.y34_c00022{bottom:972.000000px;}
.y27_c00022{bottom:972.450000px;}
.y3b_c00022{bottom:985.350000px;}
.y3c_c00022{bottom:986.100000px;}
.y3d_c00022{bottom:986.400000px;}
.y26_c00022{bottom:987.900000px;}
.y33_c00022{bottom:988.200000px;}
.y25_c00022{bottom:1004.100000px;}
.y1_c00022{bottom:1049.700000px;}
.y2_c00022{bottom:1052.250000px;}
.h2_c00022{height:48.000000px;}
.h3_c00022{height:54.000000px;}
.h5_c00022{height:60.000000px;}
.h4_c00022{height:66.000000px;}
.h1_c00022{height:1167.000000px;}
.h0_c00022{height:1167.119934px;}
.w0_c00022{width:913.320007px;}
.w1_c00022{width:913.500000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:132.450000px;}
.x5_c00022{left:176.100000px;}
.x6_c00022{left:194.100000px;}
.xe_c00022{left:204.450000px;}
.x7_c00022{left:205.950000px;}
.xf_c00022{left:219.600000px;}
.x8_c00022{left:222.900000px;}
.x10_c00022{left:237.300000px;}
.xc_c00022{left:247.650000px;}
.xa_c00022{left:249.150000px;}
.x1d_c00022{left:261.000000px;}
.x11_c00022{left:262.500000px;}
.xb_c00022{left:266.100000px;}
.xd_c00022{left:267.150000px;}
.x12_c00022{left:277.650000px;}
.x13_c00022{left:280.050000px;}
.x9_c00022{left:285.150000px;}
.x1b_c00022{left:298.500000px;}
.x17_c00022{left:305.250000px;}
.x14_c00022{left:306.300000px;}
.x1c_c00022{left:313.200000px;}
.x1a_c00022{left:321.750000px;}
.x18_c00022{left:323.550000px;}
.x15_c00022{left:325.800000px;}
.x2_c00022{left:357.750000px;}
.x16_c00022{left:372.300000px;}
.x19_c00022{left:380.100000px;}
.x3_c00022{left:474.750000px;}
.x4_c00022{left:497.400000px;}
.x1e_c00022{left:499.350000px;}
.x20_c00022{left:507.150000px;}
.x22_c00022{left:519.150000px;}
.x21_c00022{left:520.200000px;}
.x1f_c00022{left:537.450000px;}
.x23_c00022{left:560.850000px;}
.x25_c00022{left:567.300000px;}
.x26_c00022{left:580.650000px;}
.x24_c00022{left:598.650000px;}
.x27_c00022{left:622.500000px;}
.x2a_c00022{left:640.800000px;}
.x28_c00022{left:686.550000px;}
.x29_c00022{left:740.850000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws3_c00022{word-spacing:0.000000pt;}
.ws0_c00022{word-spacing:11.953162pt;}
.ws2_c00022{word-spacing:20.632708pt;}
.ws1_c00022{word-spacing:32.000000pt;}
.fs0_c00022{font-size:42.666667pt;}
.fs1_c00022{font-size:48.000000pt;}
.fs3_c00022{font-size:53.333333pt;}
.fs2_c00022{font-size:58.666667pt;}
.y0_c00022{bottom:0.000000pt;}
.y40_c00022{bottom:174.133333pt;}
.y32_c00022{bottom:174.400000pt;}
.y24_c00022{bottom:177.600000pt;}
.y31_c00022{bottom:193.333333pt;}
.y3f_c00022{bottom:193.600000pt;}
.y23_c00022{bottom:196.800000pt;}
.y30_c00022{bottom:212.800000pt;}
.y3e_c00022{bottom:213.066667pt;}
.y22_c00022{bottom:216.000000pt;}
.y21_c00022{bottom:235.200000pt;}
.y20_c00022{bottom:254.400000pt;}
.y1f_c00022{bottom:273.600000pt;}
.y1e_c00022{bottom:292.800000pt;}
.y1d_c00022{bottom:312.266667pt;}
.y1c_c00022{bottom:331.200000pt;}
.y1b_c00022{bottom:350.666667pt;}
.y1a_c00022{bottom:369.866667pt;}
.y19_c00022{bottom:389.066667pt;}
.y18_c00022{bottom:408.666667pt;}
.y17_c00022{bottom:427.466667pt;}
.y16_c00022{bottom:447.066667pt;}
.y3a_c00022{bottom:462.400000pt;}
.y2f_c00022{bottom:462.666667pt;}
.y15_c00022{bottom:466.266667pt;}
.y2e_c00022{bottom:481.600000pt;}
.y14_c00022{bottom:485.466667pt;}
.y13_c00022{bottom:504.666667pt;}
.y39_c00022{bottom:520.266667pt;}
.y2d_c00022{bottom:520.400000pt;}
.y12_c00022{bottom:524.133333pt;}
.y38_c00022{bottom:539.466667pt;}
.y2c_c00022{bottom:539.600000pt;}
.y11_c00022{bottom:543.066667pt;}
.y2b_c00022{bottom:558.800000pt;}
.y37_c00022{bottom:558.933333pt;}
.y10_c00022{bottom:562.266667pt;}
.y36_c00022{bottom:577.866667pt;}
.y2a_c00022{bottom:578.266667pt;}
.yf_c00022{bottom:581.733333pt;}
.y29_c00022{bottom:597.200000pt;}
.y35_c00022{bottom:597.733333pt;}
.ye_c00022{bottom:600.933333pt;}
.y28_c00022{bottom:616.666667pt;}
.yd_c00022{bottom:620.133333pt;}
.yc_c00022{bottom:639.333333pt;}
.yb_c00022{bottom:658.933333pt;}
.ya_c00022{bottom:684.533333pt;}
.y9_c00022{bottom:703.733333pt;}
.y8_c00022{bottom:729.333333pt;}
.y7_c00022{bottom:760.666667pt;}
.y6_c00022{bottom:786.266667pt;}
.y5_c00022{bottom:805.466667pt;}
.y4_c00022{bottom:824.266667pt;}
.y3_c00022{bottom:849.866667pt;}
.y34_c00022{bottom:864.000000pt;}
.y27_c00022{bottom:864.400000pt;}
.y3b_c00022{bottom:875.866667pt;}
.y3c_c00022{bottom:876.533333pt;}
.y3d_c00022{bottom:876.800000pt;}
.y26_c00022{bottom:878.133333pt;}
.y33_c00022{bottom:878.400000pt;}
.y25_c00022{bottom:892.533333pt;}
.y1_c00022{bottom:933.066667pt;}
.y2_c00022{bottom:935.333333pt;}
.h2_c00022{height:42.666667pt;}
.h3_c00022{height:48.000000pt;}
.h5_c00022{height:53.333333pt;}
.h4_c00022{height:58.666667pt;}
.h1_c00022{height:1037.333333pt;}
.h0_c00022{height:1037.439941pt;}
.w0_c00022{width:811.840007pt;}
.w1_c00022{width:812.000000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:117.733333pt;}
.x5_c00022{left:156.533333pt;}
.x6_c00022{left:172.533333pt;}
.xe_c00022{left:181.733333pt;}
.x7_c00022{left:183.066667pt;}
.xf_c00022{left:195.200000pt;}
.x8_c00022{left:198.133333pt;}
.x10_c00022{left:210.933333pt;}
.xc_c00022{left:220.133333pt;}
.xa_c00022{left:221.466667pt;}
.x1d_c00022{left:232.000000pt;}
.x11_c00022{left:233.333333pt;}
.xb_c00022{left:236.533333pt;}
.xd_c00022{left:237.466667pt;}
.x12_c00022{left:246.800000pt;}
.x13_c00022{left:248.933333pt;}
.x9_c00022{left:253.466667pt;}
.x1b_c00022{left:265.333333pt;}
.x17_c00022{left:271.333333pt;}
.x14_c00022{left:272.266667pt;}
.x1c_c00022{left:278.400000pt;}
.x1a_c00022{left:286.000000pt;}
.x18_c00022{left:287.600000pt;}
.x15_c00022{left:289.600000pt;}
.x2_c00022{left:318.000000pt;}
.x16_c00022{left:330.933333pt;}
.x19_c00022{left:337.866667pt;}
.x3_c00022{left:422.000000pt;}
.x4_c00022{left:442.133333pt;}
.x1e_c00022{left:443.866667pt;}
.x20_c00022{left:450.800000pt;}
.x22_c00022{left:461.466667pt;}
.x21_c00022{left:462.400000pt;}
.x1f_c00022{left:477.733333pt;}
.x23_c00022{left:498.533333pt;}
.x25_c00022{left:504.266667pt;}
.x26_c00022{left:516.133333pt;}
.x24_c00022{left:532.133333pt;}
.x27_c00022{left:553.333333pt;}
.x2a_c00022{left:569.600000pt;}
.x28_c00022{left:610.266667pt;}
.x29_c00022{left:658.533333pt;}
}





/* 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_c00023 {
    display:none;
  }
  .loading-indicator_c00023.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00023 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_c00023 { 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_c00023" -> "#page-container .classname_c00023")
 */
.pf_c00023 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00023 { /* 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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00023 { /* 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_c00023 { /* 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_c00023 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00023 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00023 {overflow:visible;}
  }
}
.c_c00023 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00023 { /* 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_c00023:after { /* webkit #35443 */
  content: '';
}
.t_c00023:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00023 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 */
}
.__c00023 { /* 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_c00023 { /* info for Javascript */
  display:none;
}
.l_c00023 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00023 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00023 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00023: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_c00023 {
    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_c00023.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00023.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_c00023 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00023{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00023;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.000000;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;}
.m16_c00023{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m52_c00023{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m39_c00023{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc_c00023{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00023{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m29_c00023{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00023{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m30_c00023{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m50_c00023{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00023{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.md_c00023{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00023{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m46_c00023{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00023{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00023{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m34_c00023{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00023{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m32_c00023{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00023{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m45_c00023{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m20_c00023{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m36_c00023{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{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);}
.m37_c00023{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m48_c00023{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m17_c00023{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m47_c00023{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00023{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9_c00023{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00023{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m43_c00023{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.me_c00023{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00023{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m25_c00023{transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.390500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390500,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.m12_c00023{transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393750,0.000000,0.000000,0.250000,0,0);}
.m28_c00023{transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401250,0.000000,0.000000,0.250000,0,0);}
.v3_c00023{vertical-align:-1.200000px;}
.v0_c00023{vertical-align:0.000000px;}
.v1_c00023{vertical-align:1.200000px;}
.v2_c00023{vertical-align:3.000000px;}
.ls8_c00023{letter-spacing:0.000000px;}
.ls0_c00023{letter-spacing:50.211796px;}
.ls6_c00023{letter-spacing:59.285714px;}
.ls2_c00023{letter-spacing:63.000000px;}
.ls5_c00023{letter-spacing:167.404694px;}
.ls1_c00023{letter-spacing:184.144284px;}
.ls4_c00023{letter-spacing:185.758437px;}
.ls7_c00023{letter-spacing:192.215048px;}
.ls3_c00023{letter-spacing:208.567649px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{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__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00023{word-spacing:-215.758437px;}
.ws7_c00023{word-spacing:0.000000px;}
.ws6_c00023{word-spacing:10.637002px;}
.ws2_c00023{word-spacing:16.257611px;}
.ws0_c00023{word-spacing:23.211796px;}
.ws1_c00023{word-spacing:36.000000px;}
.ws5_c00023{word-spacing:137.404694px;}
.ws4_c00023{word-spacing:155.758437px;}
._0_c00023{margin-left:-185.758437px;}
.fc0_c00023{color:transparent;}
.fs0_c00023{font-size:48.000000px;}
.fs1_c00023{font-size:54.000000px;}
.fs3_c00023{font-size:60.000000px;}
.fs2_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y6e_c00023{bottom:162.750000px;}
.y6d_c00023{bottom:178.950000px;}
.y6c_c00023{bottom:255.900000px;}
.y6a_c00023{bottom:256.350000px;}
.y20_c00023{bottom:257.100000px;}
.y6b_c00023{bottom:259.200000px;}
.y69_c00023{bottom:283.350000px;}
.y68_c00023{bottom:283.650000px;}
.y67_c00023{bottom:285.450000px;}
.y1f_c00023{bottom:286.200000px;}
.y66_c00023{bottom:312.450000px;}
.y64_c00023{bottom:312.900000px;}
.y65_c00023{bottom:314.250000px;}
.y1e_c00023{bottom:315.000000px;}
.y62_c00023{bottom:334.500000px;}
.y61_c00023{bottom:335.850000px;}
.y1d_c00023{bottom:336.600000px;}
.y63_c00023{bottom:357.450000px;}
.y1c_c00023{bottom:358.200000px;}
.y1b_c00023{bottom:380.100000px;}
.y5f_c00023{bottom:413.700000px;}
.y60_c00023{bottom:414.750000px;}
.y1a_c00023{bottom:415.500000px;}
.y5c_c00023{bottom:435.300000px;}
.y5b_c00023{bottom:435.600000px;}
.y5e_c00023{bottom:436.350000px;}
.y5d_c00023{bottom:437.100000px;}
.y19_c00023{bottom:437.400000px;}
.y57_c00023{bottom:456.900000px;}
.y56_c00023{bottom:457.200000px;}
.y58_c00023{bottom:457.950000px;}
.y59_c00023{bottom:458.250000px;}
.y5a_c00023{bottom:458.700000px;}
.y18_c00023{bottom:459.000000px;}
.y17_c00023{bottom:480.900000px;}
.y55_c00023{bottom:510.900000px;}
.y16_c00023{bottom:511.500000px;}
.y53_c00023{bottom:532.050000px;}
.y54_c00023{bottom:532.800000px;}
.y15_c00023{bottom:533.100000px;}
.y14_c00023{bottom:554.700000px;}
.y50_c00023{bottom:575.700000px;}
.y4f_c00023{bottom:576.000000px;}
.y13_c00023{bottom:576.300000px;}
.y52_c00023{bottom:577.050000px;}
.y51_c00023{bottom:577.500000px;}
.y4c_c00023{bottom:597.300000px;}
.y4d_c00023{bottom:597.600000px;}
.y12_c00023{bottom:597.900000px;}
.y4e_c00023{bottom:598.650000px;}
.y11_c00023{bottom:619.950000px;}
.y49_c00023{bottom:640.800000px;}
.y10_c00023{bottom:641.100000px;}
.y4b_c00023{bottom:642.300000px;}
.y4a_c00023{bottom:642.600000px;}
.y46_c00023{bottom:662.400000px;}
.yf_c00023{bottom:663.150000px;}
.y48_c00023{bottom:663.900000px;}
.y47_c00023{bottom:664.200000px;}
.y43_c00023{bottom:684.000000px;}
.ye_c00023{bottom:684.750000px;}
.y44_c00023{bottom:705.300000px;}
.yd_c00023{bottom:706.350000px;}
.y45_c00023{bottom:707.100000px;}
.y42_c00023{bottom:707.400000px;}
.yc_c00023{bottom:727.950000px;}
.yb_c00023{bottom:756.750000px;}
.y40_c00023{bottom:759.600000px;}
.y41_c00023{bottom:761.100000px;}
.ya_c00023{bottom:778.350000px;}
.y3c_c00023{bottom:780.150000px;}
.y3e_c00023{bottom:780.900000px;}
.y3d_c00023{bottom:781.200000px;}
.y3f_c00023{bottom:783.000000px;}
.y9_c00023{bottom:799.950000px;}
.y3a_c00023{bottom:802.050000px;}
.y3b_c00023{bottom:803.850000px;}
.y8_c00023{bottom:821.850000px;}
.y7_c00023{bottom:843.450000px;}
.y38_c00023{bottom:845.700000px;}
.y36_c00023{bottom:847.050000px;}
.y37_c00023{bottom:847.800000px;}
.y39_c00023{bottom:848.550000px;}
.y6_c00023{bottom:865.050000px;}
.y33_c00023{bottom:867.300000px;}
.y34_c00023{bottom:867.900000px;}
.y35_c00023{bottom:870.150000px;}
.y5_c00023{bottom:886.650000px;}
.y2f_c00023{bottom:889.200000px;}
.y30_c00023{bottom:889.500000px;}
.y31_c00023{bottom:891.000000px;}
.y32_c00023{bottom:891.750000px;}
.y4_c00023{bottom:908.700000px;}
.y2b_c00023{bottom:910.500000px;}
.y29_c00023{bottom:910.800000px;}
.y2a_c00023{bottom:911.550000px;}
.y2c_c00023{bottom:912.900000px;}
.y2d_c00023{bottom:913.200000px;}
.y2e_c00023{bottom:913.350000px;}
.y3_c00023{bottom:930.300000px;}
.y27_c00023{bottom:957.900000px;}
.y28_c00023{bottom:959.100000px;}
.y25_c00023{bottom:972.300000px;}
.y26_c00023{bottom:973.050000px;}
.y23_c00023{bottom:974.100000px;}
.y24_c00023{bottom:974.850000px;}
.y21_c00023{bottom:990.000000px;}
.y22_c00023{bottom:991.050000px;}
.y1_c00023{bottom:1038.600000px;}
.y2_c00023{bottom:1041.150000px;}
.h2_c00023{height:48.000000px;}
.h3_c00023{height:54.000000px;}
.h6_c00023{height:55.200000px;}
.h5_c00023{height:60.000000px;}
.h9_c00023{height:61.200000px;}
.h8_c00023{height:61.800000px;}
.h7_c00023{height:63.000000px;}
.h4_c00023{height:72.000000px;}
.h1_c00023{height:1167.000000px;}
.h0_c00023{height:1167.119934px;}
.w0_c00023{width:913.320007px;}
.w1_c00023{width:913.500000px;}
.x0_c00023{left:0.000000px;}
.x1e_c00023{left:102.900000px;}
.x19_c00023{left:105.150000px;}
.x3c_c00023{left:131.100000px;}
.x3d_c00023{left:138.600000px;}
.x50_c00023{left:139.650000px;}
.x1b_c00023{left:149.700000px;}
.x10_c00023{left:151.200000px;}
.x51_c00023{left:153.300000px;}
.x1a_c00023{left:167.850000px;}
.x11_c00023{left:169.200000px;}
.x3e_c00023{left:175.650000px;}
.x14_c00023{left:194.400000px;}
.x12_c00023{left:195.450000px;}
.xd_c00023{left:196.500000px;}
.x3f_c00023{left:198.000000px;}
.x52_c00023{left:206.700000px;}
.x13_c00023{left:212.400000px;}
.xe_c00023{left:213.450000px;}
.x40_c00023{left:230.400000px;}
.x18_c00023{left:237.300000px;}
.x5_c00023{left:238.350000px;}
.xf_c00023{left:239.400000px;}
.x17_c00023{left:244.800000px;}
.x53_c00023{left:252.000000px;}
.x16_c00023{left:255.600000px;}
.xb_c00023{left:256.650000px;}
.x6_c00023{left:257.850000px;}
.x21_c00023{left:259.800000px;}
.x41_c00023{left:269.250000px;}
.x54_c00023{left:271.800000px;}
.x15_c00023{left:277.800000px;}
.x9_c00023{left:282.300000px;}
.x7_c00023{left:283.350000px;}
.x42_c00023{left:289.050000px;}
.x1d_c00023{left:290.850000px;}
.xa_c00023{left:300.600000px;}
.x8_c00023{left:302.400000px;}
.x1f_c00023{left:304.200000px;}
.x20_c00023{left:305.250000px;}
.x1c_c00023{left:312.000000px;}
.x55_c00023{left:315.000000px;}
.x43_c00023{left:333.000000px;}
.x1_c00023{left:334.050000px;}
.x44_c00023{left:345.900000px;}
.xc_c00023{left:349.500000px;}
.x56_c00023{left:357.900000px;}
.x45_c00023{left:366.450000px;}
.x57_c00023{left:371.250000px;}
.x58_c00023{left:387.750000px;}
.x46_c00023{left:447.450000px;}
.x2_c00023{left:451.350000px;}
.x59_c00023{left:458.250000px;}
.x5a_c00023{left:466.950000px;}
.x3_c00023{left:474.450000px;}
.x22_c00023{left:476.700000px;}
.x26_c00023{left:482.700000px;}
.x33_c00023{left:493.950000px;}
.x2b_c00023{left:495.300000px;}
.x39_c00023{left:496.500000px;}
.x38_c00023{left:500.700000px;}
.x5b_c00023{left:503.250000px;}
.x47_c00023{left:506.550000px;}
.x23_c00023{left:515.250000px;}
.x5c_c00023{left:517.350000px;}
.x48_c00023{left:527.400000px;}
.x24_c00023{left:536.400000px;}
.x5d_c00023{left:539.250000px;}
.x27_c00023{left:542.100000px;}
.x5e_c00023{left:552.150000px;}
.x31_c00023{left:554.400000px;}
.x2c_c00023{left:555.450000px;}
.x49_c00023{left:560.550000px;}
.x5f_c00023{left:572.250000px;}
.x25_c00023{left:574.200000px;}
.x4a_c00023{left:582.450000px;}
.x28_c00023{left:597.900000px;}
.x3a_c00023{left:613.800000px;}
.x32_c00023{left:614.850000px;}
.x2d_c00023{left:615.900000px;}
.x3b_c00023{left:623.100000px;}
.x4b_c00023{left:633.600000px;}
.x4c_c00023{left:646.950000px;}
.x29_c00023{left:661.350000px;}
.x34_c00023{left:675.750000px;}
.x2e_c00023{left:677.100000px;}
.x2f_c00023{left:684.000000px;}
.x4d_c00023{left:694.500000px;}
.x4e_c00023{left:709.200000px;}
.x2a_c00023{left:717.150000px;}
.x4f_c00023{left:729.750000px;}
.x30_c00023{left:737.250000px;}
.x36_c00023{left:741.150000px;}
.x35_c00023{left:743.850000px;}
.x37_c00023{left:745.500000px;}
.x4_c00023{left:750.900000px;}
@media print{
.v3_c00023{vertical-align:-1.066667pt;}
.v0_c00023{vertical-align:0.000000pt;}
.v1_c00023{vertical-align:1.066667pt;}
.v2_c00023{vertical-align:2.666667pt;}
.ls8_c00023{letter-spacing:0.000000pt;}
.ls0_c00023{letter-spacing:44.632708pt;}
.ls6_c00023{letter-spacing:52.698413pt;}
.ls2_c00023{letter-spacing:56.000000pt;}
.ls5_c00023{letter-spacing:148.804173pt;}
.ls1_c00023{letter-spacing:163.683808pt;}
.ls4_c00023{letter-spacing:165.118610pt;}
.ls7_c00023{letter-spacing:170.857821pt;}
.ls3_c00023{letter-spacing:185.393466pt;}
.ws3_c00023{word-spacing:-191.785277pt;}
.ws7_c00023{word-spacing:0.000000pt;}
.ws6_c00023{word-spacing:9.455113pt;}
.ws2_c00023{word-spacing:14.451210pt;}
.ws0_c00023{word-spacing:20.632708pt;}
.ws1_c00023{word-spacing:32.000000pt;}
.ws5_c00023{word-spacing:122.137506pt;}
.ws4_c00023{word-spacing:138.451944pt;}
._0_c00023{margin-left:-165.118610pt;}
.fs0_c00023{font-size:42.666667pt;}
.fs1_c00023{font-size:48.000000pt;}
.fs3_c00023{font-size:53.333333pt;}
.fs2_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y6e_c00023{bottom:144.666667pt;}
.y6d_c00023{bottom:159.066667pt;}
.y6c_c00023{bottom:227.466667pt;}
.y6a_c00023{bottom:227.866667pt;}
.y20_c00023{bottom:228.533333pt;}
.y6b_c00023{bottom:230.400000pt;}
.y69_c00023{bottom:251.866667pt;}
.y68_c00023{bottom:252.133333pt;}
.y67_c00023{bottom:253.733333pt;}
.y1f_c00023{bottom:254.400000pt;}
.y66_c00023{bottom:277.733333pt;}
.y64_c00023{bottom:278.133333pt;}
.y65_c00023{bottom:279.333333pt;}
.y1e_c00023{bottom:280.000000pt;}
.y62_c00023{bottom:297.333333pt;}
.y61_c00023{bottom:298.533333pt;}
.y1d_c00023{bottom:299.200000pt;}
.y63_c00023{bottom:317.733333pt;}
.y1c_c00023{bottom:318.400000pt;}
.y1b_c00023{bottom:337.866667pt;}
.y5f_c00023{bottom:367.733333pt;}
.y60_c00023{bottom:368.666667pt;}
.y1a_c00023{bottom:369.333333pt;}
.y5c_c00023{bottom:386.933333pt;}
.y5b_c00023{bottom:387.200000pt;}
.y5e_c00023{bottom:387.866667pt;}
.y5d_c00023{bottom:388.533333pt;}
.y19_c00023{bottom:388.800000pt;}
.y57_c00023{bottom:406.133333pt;}
.y56_c00023{bottom:406.400000pt;}
.y58_c00023{bottom:407.066667pt;}
.y59_c00023{bottom:407.333333pt;}
.y5a_c00023{bottom:407.733333pt;}
.y18_c00023{bottom:408.000000pt;}
.y17_c00023{bottom:427.466667pt;}
.y55_c00023{bottom:454.133333pt;}
.y16_c00023{bottom:454.666667pt;}
.y53_c00023{bottom:472.933333pt;}
.y54_c00023{bottom:473.600000pt;}
.y15_c00023{bottom:473.866667pt;}
.y14_c00023{bottom:493.066667pt;}
.y50_c00023{bottom:511.733333pt;}
.y4f_c00023{bottom:512.000000pt;}
.y13_c00023{bottom:512.266667pt;}
.y52_c00023{bottom:512.933333pt;}
.y51_c00023{bottom:513.333333pt;}
.y4c_c00023{bottom:530.933333pt;}
.y4d_c00023{bottom:531.200000pt;}
.y12_c00023{bottom:531.466667pt;}
.y4e_c00023{bottom:532.133333pt;}
.y11_c00023{bottom:551.066667pt;}
.y49_c00023{bottom:569.600000pt;}
.y10_c00023{bottom:569.866667pt;}
.y4b_c00023{bottom:570.933333pt;}
.y4a_c00023{bottom:571.200000pt;}
.y46_c00023{bottom:588.800000pt;}
.yf_c00023{bottom:589.466667pt;}
.y48_c00023{bottom:590.133333pt;}
.y47_c00023{bottom:590.400000pt;}
.y43_c00023{bottom:608.000000pt;}
.ye_c00023{bottom:608.666667pt;}
.y44_c00023{bottom:626.933333pt;}
.yd_c00023{bottom:627.866667pt;}
.y45_c00023{bottom:628.533333pt;}
.y42_c00023{bottom:628.800000pt;}
.yc_c00023{bottom:647.066667pt;}
.yb_c00023{bottom:672.666667pt;}
.y40_c00023{bottom:675.200000pt;}
.y41_c00023{bottom:676.533333pt;}
.ya_c00023{bottom:691.866667pt;}
.y3c_c00023{bottom:693.466667pt;}
.y3e_c00023{bottom:694.133333pt;}
.y3d_c00023{bottom:694.400000pt;}
.y3f_c00023{bottom:696.000000pt;}
.y9_c00023{bottom:711.066667pt;}
.y3a_c00023{bottom:712.933333pt;}
.y3b_c00023{bottom:714.533333pt;}
.y8_c00023{bottom:730.533333pt;}
.y7_c00023{bottom:749.733333pt;}
.y38_c00023{bottom:751.733333pt;}
.y36_c00023{bottom:752.933333pt;}
.y37_c00023{bottom:753.600000pt;}
.y39_c00023{bottom:754.266667pt;}
.y6_c00023{bottom:768.933333pt;}
.y33_c00023{bottom:770.933333pt;}
.y34_c00023{bottom:771.466667pt;}
.y35_c00023{bottom:773.466667pt;}
.y5_c00023{bottom:788.133333pt;}
.y2f_c00023{bottom:790.400000pt;}
.y30_c00023{bottom:790.666667pt;}
.y31_c00023{bottom:792.000000pt;}
.y32_c00023{bottom:792.666667pt;}
.y4_c00023{bottom:807.733333pt;}
.y2b_c00023{bottom:809.333333pt;}
.y29_c00023{bottom:809.600000pt;}
.y2a_c00023{bottom:810.266667pt;}
.y2c_c00023{bottom:811.466667pt;}
.y2d_c00023{bottom:811.733333pt;}
.y2e_c00023{bottom:811.866667pt;}
.y3_c00023{bottom:826.933333pt;}
.y27_c00023{bottom:851.466667pt;}
.y28_c00023{bottom:852.533333pt;}
.y25_c00023{bottom:864.266667pt;}
.y26_c00023{bottom:864.933333pt;}
.y23_c00023{bottom:865.866667pt;}
.y24_c00023{bottom:866.533333pt;}
.y21_c00023{bottom:880.000000pt;}
.y22_c00023{bottom:880.933333pt;}
.y1_c00023{bottom:923.200000pt;}
.y2_c00023{bottom:925.466667pt;}
.h2_c00023{height:42.666667pt;}
.h3_c00023{height:48.000000pt;}
.h6_c00023{height:49.066667pt;}
.h5_c00023{height:53.333333pt;}
.h9_c00023{height:54.400000pt;}
.h8_c00023{height:54.933333pt;}
.h7_c00023{height:56.000000pt;}
.h4_c00023{height:64.000000pt;}
.h1_c00023{height:1037.333333pt;}
.h0_c00023{height:1037.439941pt;}
.w0_c00023{width:811.840007pt;}
.w1_c00023{width:812.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1e_c00023{left:91.466667pt;}
.x19_c00023{left:93.466667pt;}
.x3c_c00023{left:116.533333pt;}
.x3d_c00023{left:123.200000pt;}
.x50_c00023{left:124.133333pt;}
.x1b_c00023{left:133.066667pt;}
.x10_c00023{left:134.400000pt;}
.x51_c00023{left:136.266667pt;}
.x1a_c00023{left:149.200000pt;}
.x11_c00023{left:150.400000pt;}
.x3e_c00023{left:156.133333pt;}
.x14_c00023{left:172.800000pt;}
.x12_c00023{left:173.733333pt;}
.xd_c00023{left:174.666667pt;}
.x3f_c00023{left:176.000000pt;}
.x52_c00023{left:183.733333pt;}
.x13_c00023{left:188.800000pt;}
.xe_c00023{left:189.733333pt;}
.x40_c00023{left:204.800000pt;}
.x18_c00023{left:210.933333pt;}
.x5_c00023{left:211.866667pt;}
.xf_c00023{left:212.800000pt;}
.x17_c00023{left:217.600000pt;}
.x53_c00023{left:224.000000pt;}
.x16_c00023{left:227.200000pt;}
.xb_c00023{left:228.133333pt;}
.x6_c00023{left:229.200000pt;}
.x21_c00023{left:230.933333pt;}
.x41_c00023{left:239.333333pt;}
.x54_c00023{left:241.600000pt;}
.x15_c00023{left:246.933333pt;}
.x9_c00023{left:250.933333pt;}
.x7_c00023{left:251.866667pt;}
.x42_c00023{left:256.933333pt;}
.x1d_c00023{left:258.533333pt;}
.xa_c00023{left:267.200000pt;}
.x8_c00023{left:268.800000pt;}
.x1f_c00023{left:270.400000pt;}
.x20_c00023{left:271.333333pt;}
.x1c_c00023{left:277.333333pt;}
.x55_c00023{left:280.000000pt;}
.x43_c00023{left:296.000000pt;}
.x1_c00023{left:296.933333pt;}
.x44_c00023{left:307.466667pt;}
.xc_c00023{left:310.666667pt;}
.x56_c00023{left:318.133333pt;}
.x45_c00023{left:325.733333pt;}
.x57_c00023{left:330.000000pt;}
.x58_c00023{left:344.666667pt;}
.x46_c00023{left:397.733333pt;}
.x2_c00023{left:401.200000pt;}
.x59_c00023{left:407.333333pt;}
.x5a_c00023{left:415.066667pt;}
.x3_c00023{left:421.733333pt;}
.x22_c00023{left:423.733333pt;}
.x26_c00023{left:429.066667pt;}
.x33_c00023{left:439.066667pt;}
.x2b_c00023{left:440.266667pt;}
.x39_c00023{left:441.333333pt;}
.x38_c00023{left:445.066667pt;}
.x5b_c00023{left:447.333333pt;}
.x47_c00023{left:450.266667pt;}
.x23_c00023{left:458.000000pt;}
.x5c_c00023{left:459.866667pt;}
.x48_c00023{left:468.800000pt;}
.x24_c00023{left:476.800000pt;}
.x5d_c00023{left:479.333333pt;}
.x27_c00023{left:481.866667pt;}
.x5e_c00023{left:490.800000pt;}
.x31_c00023{left:492.800000pt;}
.x2c_c00023{left:493.733333pt;}
.x49_c00023{left:498.266667pt;}
.x5f_c00023{left:508.666667pt;}
.x25_c00023{left:510.400000pt;}
.x4a_c00023{left:517.733333pt;}
.x28_c00023{left:531.466667pt;}
.x3a_c00023{left:545.600000pt;}
.x32_c00023{left:546.533333pt;}
.x2d_c00023{left:547.466667pt;}
.x3b_c00023{left:553.866667pt;}
.x4b_c00023{left:563.200000pt;}
.x4c_c00023{left:575.066667pt;}
.x29_c00023{left:587.866667pt;}
.x34_c00023{left:600.666667pt;}
.x2e_c00023{left:601.866667pt;}
.x2f_c00023{left:608.000000pt;}
.x4d_c00023{left:617.333333pt;}
.x4e_c00023{left:630.400000pt;}
.x2a_c00023{left:637.466667pt;}
.x4f_c00023{left:648.666667pt;}
.x30_c00023{left:655.333333pt;}
.x36_c00023{left:658.800000pt;}
.x35_c00023{left:661.200000pt;}
.x37_c00023{left:662.666667pt;}
.x4_c00023{left:667.466667pt;}
}





/* 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_c00024 {
    display:none;
  }
  .loading-indicator_c00024.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00024 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_c00024 { 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_c00024" -> "#page-container .classname_c00024")
 */
.pf_c00024 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00024 { /* 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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00024 { /* 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_c00024 { /* 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_c00024 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00024 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00024 {overflow:visible;}
  }
}
.c_c00024 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00024 { /* 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_c00024:after { /* webkit #35443 */
  content: '';
}
.t_c00024:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00024 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 */
}
.__c00024 { /* 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_c00024 { /* info for Javascript */
  display:none;
}
.l_c00024 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00024 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00024 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00024: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_c00024 {
    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_c00024.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00024.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_c00024 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00024{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00024;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.000000;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;}
.m2a_c00024{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m18_c00024{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m22_c00024{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00024{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m29_c00024{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m25_c00024{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6_c00024{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10_c00024{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00024{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m34_c00024{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m30_c00024{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m20_c00024{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m35_c00024{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00024{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00024{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m38_c00024{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00024{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m33_c00024{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00024{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00024{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m36_c00024{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m16_c00024{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m37_c00024{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m32_c00024{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m31_c00024{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m17_c00024{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00024{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m19_c00024{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00024{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m23_c00024{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00024{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m1_c00024{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00024{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m21_c00024{transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341500,0.000000,0.000000,0.250000,0,0);}
.m27_c00024{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m28_c00024{transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00024{transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345500,0.000000,0.000000,0.250000,0,0);}
.mf_c00024{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m11_c00024{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m8_c00024{transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352250,0.000000,0.000000,0.250000,0,0);}
.m12_c00024{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m13_c00024{transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.359000,0.000000,0.000000,0.250000,0,0);}
.m3_c00024{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00024{transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00024{transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);}
.me_c00024{transform:matrix(0.370250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370250,0.000000,0.000000,0.250000,0,0);}
.m14_c00024{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m15_c00024{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.v0_c00024{vertical-align:0.000000px;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{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__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00024{word-spacing:0.000000px;}
.ws1_c00024{word-spacing:18.000000px;}
.ws0_c00024{word-spacing:23.211796px;}
.ws2_c00024{word-spacing:28.072993px;}
.fc0_c00024{color:transparent;}
.fs3_c00024{font-size:42.000000px;}
.fs0_c00024{font-size:48.000000px;}
.fs1_c00024{font-size:54.000000px;}
.fs4_c00024{font-size:60.000000px;}
.fs2_c00024{font-size:66.000000px;}
.y0_c00024{bottom:0.000000px;}
.y1f_c00024{bottom:173.550000px;}
.y1e_c00024{bottom:203.100000px;}
.y26_c00024{bottom:226.050000px;}
.y1d_c00024{bottom:231.450000px;}
.y30_c00024{bottom:246.900000px;}
.y1c_c00024{bottom:253.050000px;}
.y1b_c00024{bottom:275.100000px;}
.y1a_c00024{bottom:303.900000px;}
.y19_c00024{bottom:332.250000px;}
.y2f_c00024{bottom:348.450000px;}
.y25_c00024{bottom:349.200000px;}
.y18_c00024{bottom:354.300000px;}
.y17_c00024{bottom:375.900000px;}
.y16_c00024{bottom:397.050000px;}
.y2e_c00024{bottom:413.250000px;}
.y24_c00024{bottom:413.700000px;}
.y15_c00024{bottom:418.650000px;}
.y2d_c00024{bottom:434.850000px;}
.y23_c00024{bottom:437.400000px;}
.y14_c00024{bottom:440.700000px;}
.y13_c00024{bottom:462.300000px;}
.y12_c00024{bottom:491.100000px;}
.y11_c00024{bottom:520.500000px;}
.y10_c00024{bottom:579.600000px;}
.yf_c00024{bottom:601.500000px;}
.ye_c00024{bottom:623.100000px;}
.yd_c00024{bottom:651.900000px;}
.yc_c00024{bottom:681.150000px;}
.yb_c00024{bottom:716.700000px;}
.ya_c00024{bottom:745.500000px;}
.y9_c00024{bottom:774.300000px;}
.y8_c00024{bottom:802.800000px;}
.y31_c00024{bottom:830.550000px;}
.y7_c00024{bottom:831.900000px;}
.y6_c00024{bottom:860.700000px;}
.y5_c00024{bottom:890.250000px;}
.y4_c00024{bottom:926.700000px;}
.y3_c00024{bottom:948.600000px;}
.y29_c00024{bottom:964.800000px;}
.y22_c00024{bottom:965.100000px;}
.y2c_c00024{bottom:976.650000px;}
.y2b_c00024{bottom:977.100000px;}
.y2a_c00024{bottom:977.400000px;}
.y28_c00024{bottom:981.000000px;}
.y21_c00024{bottom:981.300000px;}
.y27_c00024{bottom:996.900000px;}
.y20_c00024{bottom:997.200000px;}
.y2_c00024{bottom:1045.050000px;}
.y1_c00024{bottom:1046.550000px;}
.h5_c00024{height:42.000000px;}
.h2_c00024{height:48.000000px;}
.h3_c00024{height:54.000000px;}
.h6_c00024{height:60.000000px;}
.h4_c00024{height:66.000000px;}
.h1_c00024{height:1167.000000px;}
.h0_c00024{height:1167.119934px;}
.w0_c00024{width:913.320007px;}
.w1_c00024{width:913.500000px;}
.x0_c00024{left:0.000000px;}
.x14_c00024{left:139.350000px;}
.x1_c00024{left:142.200000px;}
.xc_c00024{left:170.250000px;}
.x17_c00024{left:182.550000px;}
.xd_c00024{left:183.600000px;}
.xb_c00024{left:184.650000px;}
.x5_c00024{left:185.700000px;}
.x1a_c00024{left:199.800000px;}
.x15_c00024{left:201.300000px;}
.xe_c00024{left:202.350000px;}
.x9_c00024{left:203.850000px;}
.x18_c00024{left:225.750000px;}
.x11_c00024{left:226.800000px;}
.xf_c00024{left:227.850000px;}
.x7_c00024{left:228.900000px;}
.x1b_c00024{left:234.450000px;}
.x19_c00024{left:242.550000px;}
.x1c_c00024{left:243.750000px;}
.x10_c00024{left:244.800000px;}
.x12_c00024{left:245.850000px;}
.x8_c00024{left:247.200000px;}
.x6_c00024{left:277.500000px;}
.x1d_c00024{left:292.350000px;}
.xa_c00024{left:296.700000px;}
.x16_c00024{left:337.350000px;}
.x13_c00024{left:338.700000px;}
.x2_c00024{left:369.300000px;}
.x3_c00024{left:485.550000px;}
.x4_c00024{left:508.200000px;}
.x1e_c00024{left:510.450000px;}
.x20_c00024{left:515.850000px;}
.x22_c00024{left:523.500000px;}
.x21_c00024{left:527.100000px;}
.x1f_c00024{left:547.950000px;}
.x23_c00024{left:570.300000px;}
.x25_c00024{left:576.900000px;}
.x2a_c00024{left:584.250000px;}
.x29_c00024{left:588.300000px;}
.x24_c00024{left:607.800000px;}
.x26_c00024{left:631.050000px;}
.x2b_c00024{left:648.750000px;}
.x27_c00024{left:695.850000px;}
.x28_c00024{left:750.900000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws3_c00024{word-spacing:0.000000pt;}
.ws1_c00024{word-spacing:16.000000pt;}
.ws0_c00024{word-spacing:20.632708pt;}
.ws2_c00024{word-spacing:24.953771pt;}
.fs3_c00024{font-size:37.333333pt;}
.fs0_c00024{font-size:42.666667pt;}
.fs1_c00024{font-size:48.000000pt;}
.fs4_c00024{font-size:53.333333pt;}
.fs2_c00024{font-size:58.666667pt;}
.y0_c00024{bottom:0.000000pt;}
.y1f_c00024{bottom:154.266667pt;}
.y1e_c00024{bottom:180.533333pt;}
.y26_c00024{bottom:200.933333pt;}
.y1d_c00024{bottom:205.733333pt;}
.y30_c00024{bottom:219.466667pt;}
.y1c_c00024{bottom:224.933333pt;}
.y1b_c00024{bottom:244.533333pt;}
.y1a_c00024{bottom:270.133333pt;}
.y19_c00024{bottom:295.333333pt;}
.y2f_c00024{bottom:309.733333pt;}
.y25_c00024{bottom:310.400000pt;}
.y18_c00024{bottom:314.933333pt;}
.y17_c00024{bottom:334.133333pt;}
.y16_c00024{bottom:352.933333pt;}
.y2e_c00024{bottom:367.333333pt;}
.y24_c00024{bottom:367.733333pt;}
.y15_c00024{bottom:372.133333pt;}
.y2d_c00024{bottom:386.533333pt;}
.y23_c00024{bottom:388.800000pt;}
.y14_c00024{bottom:391.733333pt;}
.y13_c00024{bottom:410.933333pt;}
.y12_c00024{bottom:436.533333pt;}
.y11_c00024{bottom:462.666667pt;}
.y10_c00024{bottom:515.200000pt;}
.yf_c00024{bottom:534.666667pt;}
.ye_c00024{bottom:553.866667pt;}
.yd_c00024{bottom:579.466667pt;}
.yc_c00024{bottom:605.466667pt;}
.yb_c00024{bottom:637.066667pt;}
.ya_c00024{bottom:662.666667pt;}
.y9_c00024{bottom:688.266667pt;}
.y8_c00024{bottom:713.600000pt;}
.y31_c00024{bottom:738.266667pt;}
.y7_c00024{bottom:739.466667pt;}
.y6_c00024{bottom:765.066667pt;}
.y5_c00024{bottom:791.333333pt;}
.y4_c00024{bottom:823.733333pt;}
.y3_c00024{bottom:843.200000pt;}
.y29_c00024{bottom:857.600000pt;}
.y22_c00024{bottom:857.866667pt;}
.y2c_c00024{bottom:868.133333pt;}
.y2b_c00024{bottom:868.533333pt;}
.y2a_c00024{bottom:868.800000pt;}
.y28_c00024{bottom:872.000000pt;}
.y21_c00024{bottom:872.266667pt;}
.y27_c00024{bottom:886.133333pt;}
.y20_c00024{bottom:886.400000pt;}
.y2_c00024{bottom:928.933333pt;}
.y1_c00024{bottom:930.266667pt;}
.h5_c00024{height:37.333333pt;}
.h2_c00024{height:42.666667pt;}
.h3_c00024{height:48.000000pt;}
.h6_c00024{height:53.333333pt;}
.h4_c00024{height:58.666667pt;}
.h1_c00024{height:1037.333333pt;}
.h0_c00024{height:1037.439941pt;}
.w0_c00024{width:811.840007pt;}
.w1_c00024{width:812.000000pt;}
.x0_c00024{left:0.000000pt;}
.x14_c00024{left:123.866667pt;}
.x1_c00024{left:126.400000pt;}
.xc_c00024{left:151.333333pt;}
.x17_c00024{left:162.266667pt;}
.xd_c00024{left:163.200000pt;}
.xb_c00024{left:164.133333pt;}
.x5_c00024{left:165.066667pt;}
.x1a_c00024{left:177.600000pt;}
.x15_c00024{left:178.933333pt;}
.xe_c00024{left:179.866667pt;}
.x9_c00024{left:181.200000pt;}
.x18_c00024{left:200.666667pt;}
.x11_c00024{left:201.600000pt;}
.xf_c00024{left:202.533333pt;}
.x7_c00024{left:203.466667pt;}
.x1b_c00024{left:208.400000pt;}
.x19_c00024{left:215.600000pt;}
.x1c_c00024{left:216.666667pt;}
.x10_c00024{left:217.600000pt;}
.x12_c00024{left:218.533333pt;}
.x8_c00024{left:219.733333pt;}
.x6_c00024{left:246.666667pt;}
.x1d_c00024{left:259.866667pt;}
.xa_c00024{left:263.733333pt;}
.x16_c00024{left:299.866667pt;}
.x13_c00024{left:301.066667pt;}
.x2_c00024{left:328.266667pt;}
.x3_c00024{left:431.600000pt;}
.x4_c00024{left:451.733333pt;}
.x1e_c00024{left:453.733333pt;}
.x20_c00024{left:458.533333pt;}
.x22_c00024{left:465.333333pt;}
.x21_c00024{left:468.533333pt;}
.x1f_c00024{left:487.066667pt;}
.x23_c00024{left:506.933333pt;}
.x25_c00024{left:512.800000pt;}
.x2a_c00024{left:519.333333pt;}
.x29_c00024{left:522.933333pt;}
.x24_c00024{left:540.266667pt;}
.x26_c00024{left:560.933333pt;}
.x2b_c00024{left:576.666667pt;}
.x27_c00024{left:618.533333pt;}
.x28_c00024{left:667.466667pt;}
}





/* 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_c00025 {
    display:none;
  }
  .loading-indicator_c00025.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00025 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_c00025 { 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_c00025" -> "#page-container .classname_c00025")
 */
.pf_c00025 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00025 { /* 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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00025 { /* 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_c00025 { /* 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_c00025 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00025 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00025 {overflow:visible;}
  }
}
.c_c00025 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00025 { /* 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_c00025:after { /* webkit #35443 */
  content: '';
}
.t_c00025:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00025 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 */
}
.__c00025 { /* 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_c00025 { /* info for Javascript */
  display:none;
}
.l_c00025 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00025 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00025 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00025: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_c00025 {
    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_c00025.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00025.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_c00025 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00025{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00025;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.000000;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;}
.m16_c00025{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m7_c00025{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m49_c00025{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00025{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.mb_c00025{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00025{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m14_c00025{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m47_c00025{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00025{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00025{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m6_c00025{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00025{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m32_c00025{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mf_c00025{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00025{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00025{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00025{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m17_c00025{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9_c00025{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m24_c00025{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11_c00025{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc_c00025{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00025{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m29_c00025{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00025{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m39_c00025{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00025{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00025{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m34_c00025{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5_c00025{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00025{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m40_c00025{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m10_c00025{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m28_c00025{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m41_c00025{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m21_c00025{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m25_c00025{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00025{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00025{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00025{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m45_c00025{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00025{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12_c00025{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m31_c00025{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m33_c00025{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.md_c00025{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m44_c00025{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma_c00025{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m22_c00025{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m15_c00025{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m27_c00025{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m26_c00025{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m37_c00025{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00025{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m46_c00025{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m38_c00025{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00025{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m23_c00025{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m13_c00025{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me_c00025{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m30_c00025{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m36_c00025{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m18_c00025{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m0_c00025{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m19_c00025{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1_c00025{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00025{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m8_c00025{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00025{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00025{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00025{transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);}
.m2_c00025{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m4_c00025{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00025{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m35_c00025{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00025{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00025{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m3_c00025{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.v2_c00025{vertical-align:-4.200000px;}
.v3_c00025{vertical-align:-3.000000px;}
.v1_c00025{vertical-align:-1.200000px;}
.v0_c00025{vertical-align:0.000000px;}
.ls6_c00025{letter-spacing:0.000000px;}
.ls2_c00025{letter-spacing:164.943289px;}
.ls0_c00025{letter-spacing:186.834539px;}
.ls5_c00025{letter-spacing:188.448691px;}
.ls4_c00025{letter-spacing:206.205593px;}
.ls3_c00025{letter-spacing:207.977135px;}
.ls1_c00025{letter-spacing:2043.724490px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{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__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00025{word-spacing:0.000000px;}
.ws0_c00025{word-spacing:36.000000px;}
.ws1_c00025{word-spacing:53.865169px;}
.ws2_c00025{word-spacing:485.845908px;}
.fc0_c00025{color:transparent;}
.fs1_c00025{font-size:42.000000px;}
.fs3_c00025{font-size:48.000000px;}
.fs0_c00025{font-size:54.000000px;}
.fs4_c00025{font-size:60.000000px;}
.fs2_c00025{font-size:66.000000px;}
.y0_c00025{bottom:0.000000px;}
.y4c_c00025{bottom:160.500000px;}
.y25_c00025{bottom:165.300000px;}
.y24_c00025{bottom:187.200000px;}
.y23_c00025{bottom:208.800000px;}
.y22_c00025{bottom:230.700000px;}
.y21_c00025{bottom:252.000000px;}
.y4b_c00025{bottom:268.200000px;}
.y4a_c00025{bottom:268.500000px;}
.y48_c00025{bottom:269.250000px;}
.y20_c00025{bottom:273.900000px;}
.y49_c00025{bottom:291.900000px;}
.y1f_c00025{bottom:295.500000px;}
.y1e_c00025{bottom:317.100000px;}
.y1d_c00025{bottom:338.700000px;}
.y1c_c00025{bottom:360.750000px;}
.y47_c00025{bottom:375.450000px;}
.y46_c00025{bottom:375.900000px;}
.y45_c00025{bottom:378.000000px;}
.y44_c00025{bottom:378.750000px;}
.y1b_c00025{bottom:382.650000px;}
.y1a_c00025{bottom:411.450000px;}
.y19_c00025{bottom:441.000000px;}
.y43_c00025{bottom:458.700000px;}
.y42_c00025{bottom:459.300000px;}
.y18_c00025{bottom:462.600000px;}
.y17_c00025{bottom:484.500000px;}
.y41_c00025{bottom:500.400000px;}
.y40_c00025{bottom:501.450000px;}
.y16_c00025{bottom:505.800000px;}
.y15_c00025{bottom:527.700000px;}
.y3f_c00025{bottom:544.350000px;}
.y3e_c00025{bottom:545.100000px;}
.y14_c00025{bottom:549.300000px;}
.y3d_c00025{bottom:565.500000px;}
.y3c_c00025{bottom:567.000000px;}
.y13_c00025{bottom:570.900000px;}
.y3a_c00025{bottom:588.900000px;}
.y3b_c00025{bottom:589.200000px;}
.y12_c00025{bottom:592.950000px;}
.y11_c00025{bottom:614.550000px;}
.y39_c00025{bottom:631.500000px;}
.y37_c00025{bottom:631.800000px;}
.y38_c00025{bottom:632.550000px;}
.y10_c00025{bottom:636.150000px;}
.y36_c00025{bottom:652.350000px;}
.y35_c00025{bottom:653.100000px;}
.y34_c00025{bottom:653.400000px;}
.yf_c00025{bottom:658.050000px;}
.ye_c00025{bottom:679.650000px;}
.yd_c00025{bottom:708.450000px;}
.y33_c00025{bottom:732.600000px;}
.y32_c00025{bottom:733.350000px;}
.yc_c00025{bottom:737.250000px;}
.yb_c00025{bottom:758.850000px;}
.y31_c00025{bottom:775.800000px;}
.ya_c00025{bottom:780.450000px;}
.y9_c00025{bottom:802.500000px;}
.y8_c00025{bottom:823.650000px;}
.y7_c00025{bottom:845.250000px;}
.y6_c00025{bottom:867.300000px;}
.y30_c00025{bottom:883.500000px;}
.y2e_c00025{bottom:884.100000px;}
.y2f_c00025{bottom:884.550000px;}
.y5_c00025{bottom:888.900000px;}
.y4_c00025{bottom:910.500000px;}
.y2d_c00025{bottom:929.550000px;}
.y3_c00025{bottom:932.100000px;}
.y2_c00025{bottom:953.700000px;}
.y2a_c00025{bottom:967.350000px;}
.y28_c00025{bottom:967.650000px;}
.y2c_c00025{bottom:980.250000px;}
.y2b_c00025{bottom:980.700000px;}
.y29_c00025{bottom:983.550000px;}
.y27_c00025{bottom:983.850000px;}
.y26_c00025{bottom:999.750000px;}
.y1_c00025{bottom:1047.900000px;}
.h3_c00025{height:42.000000px;}
.h5_c00025{height:48.000000px;}
.h2_c00025{height:54.000000px;}
.h6_c00025{height:60.000000px;}
.h4_c00025{height:66.000000px;}
.h1_c00025{height:1167.000000px;}
.h0_c00025{height:1167.119934px;}
.w0_c00025{width:913.320007px;}
.w1_c00025{width:913.500000px;}
.x0_c00025{left:0.000000px;}
.x19_c00025{left:118.800000px;}
.x5_c00025{left:149.700000px;}
.x1a_c00025{left:157.350000px;}
.x13_c00025{left:163.500000px;}
.x1b_c00025{left:167.850000px;}
.x1c_c00025{left:178.200000px;}
.x1e_c00025{left:179.250000px;}
.x14_c00025{left:181.200000px;}
.x16_c00025{left:182.850000px;}
.x1f_c00025{left:185.700000px;}
.x1d_c00025{left:195.150000px;}
.x20_c00025{left:196.200000px;}
.x12_c00025{left:200.700000px;}
.xa_c00025{left:206.700000px;}
.x7_c00025{left:207.750000px;}
.x8_c00025{left:214.650000px;}
.x9_c00025{left:224.400000px;}
.xc_c00025{left:226.500000px;}
.x17_c00025{left:233.700000px;}
.x6_c00025{left:235.050000px;}
.x15_c00025{left:240.600000px;}
.xd_c00025{left:250.950000px;}
.xe_c00025{left:268.650000px;}
.x18_c00025{left:272.550000px;}
.xf_c00025{left:274.050000px;}
.x10_c00025{left:281.550000px;}
.xb_c00025{left:318.300000px;}
.x11_c00025{left:325.200000px;}
.x1_c00025{left:344.850000px;}
.x2_c00025{left:461.550000px;}
.x3_c00025{left:483.450000px;}
.x21_c00025{left:489.600000px;}
.x25_c00025{left:495.750000px;}
.x2b_c00025{left:507.600000px;}
.x32_c00025{left:509.400000px;}
.x22_c00025{left:527.400000px;}
.x23_c00025{left:549.300000px;}
.x26_c00025{left:555.900000px;}
.x2f_c00025{left:568.050000px;}
.x2c_c00025{left:569.100000px;}
.x30_c00025{left:576.000000px;}
.x24_c00025{left:587.100000px;}
.x27_c00025{left:595.500000px;}
.x28_c00025{left:610.200000px;}
.x2d_c00025{left:630.000000px;}
.x31_c00025{left:636.750000px;}
.x29_c00025{left:673.200000px;}
.x34_c00025{left:689.700000px;}
.x2a_c00025{left:729.750000px;}
.x2e_c00025{left:749.850000px;}
.x35_c00025{left:754.200000px;}
.x33_c00025{left:757.500000px;}
.x4_c00025{left:768.900000px;}
@media print{
.v2_c00025{vertical-align:-3.733333pt;}
.v3_c00025{vertical-align:-2.666667pt;}
.v1_c00025{vertical-align:-1.066667pt;}
.v0_c00025{vertical-align:0.000000pt;}
.ls6_c00025{letter-spacing:0.000000pt;}
.ls2_c00025{letter-spacing:146.616257pt;}
.ls0_c00025{letter-spacing:166.075145pt;}
.ls5_c00025{letter-spacing:167.509948pt;}
.ls4_c00025{letter-spacing:183.293861pt;}
.ls3_c00025{letter-spacing:184.868565pt;}
.ls1_c00025{letter-spacing:1816.643991pt;}
.ws3_c00025{word-spacing:0.000000pt;}
.ws0_c00025{word-spacing:32.000000pt;}
.ws1_c00025{word-spacing:47.880150pt;}
.ws2_c00025{word-spacing:431.863029pt;}
.fs1_c00025{font-size:37.333333pt;}
.fs3_c00025{font-size:42.666667pt;}
.fs0_c00025{font-size:48.000000pt;}
.fs4_c00025{font-size:53.333333pt;}
.fs2_c00025{font-size:58.666667pt;}
.y0_c00025{bottom:0.000000pt;}
.y4c_c00025{bottom:142.666667pt;}
.y25_c00025{bottom:146.933333pt;}
.y24_c00025{bottom:166.400000pt;}
.y23_c00025{bottom:185.600000pt;}
.y22_c00025{bottom:205.066667pt;}
.y21_c00025{bottom:224.000000pt;}
.y4b_c00025{bottom:238.400000pt;}
.y4a_c00025{bottom:238.666667pt;}
.y48_c00025{bottom:239.333333pt;}
.y20_c00025{bottom:243.466667pt;}
.y49_c00025{bottom:259.466667pt;}
.y1f_c00025{bottom:262.666667pt;}
.y1e_c00025{bottom:281.866667pt;}
.y1d_c00025{bottom:301.066667pt;}
.y1c_c00025{bottom:320.666667pt;}
.y47_c00025{bottom:333.733333pt;}
.y46_c00025{bottom:334.133333pt;}
.y45_c00025{bottom:336.000000pt;}
.y44_c00025{bottom:336.666667pt;}
.y1b_c00025{bottom:340.133333pt;}
.y1a_c00025{bottom:365.733333pt;}
.y19_c00025{bottom:392.000000pt;}
.y43_c00025{bottom:407.733333pt;}
.y42_c00025{bottom:408.266667pt;}
.y18_c00025{bottom:411.200000pt;}
.y17_c00025{bottom:430.666667pt;}
.y41_c00025{bottom:444.800000pt;}
.y40_c00025{bottom:445.733333pt;}
.y16_c00025{bottom:449.600000pt;}
.y15_c00025{bottom:469.066667pt;}
.y3f_c00025{bottom:483.866667pt;}
.y3e_c00025{bottom:484.533333pt;}
.y14_c00025{bottom:488.266667pt;}
.y3d_c00025{bottom:502.666667pt;}
.y3c_c00025{bottom:504.000000pt;}
.y13_c00025{bottom:507.466667pt;}
.y3a_c00025{bottom:523.466667pt;}
.y3b_c00025{bottom:523.733333pt;}
.y12_c00025{bottom:527.066667pt;}
.y11_c00025{bottom:546.266667pt;}
.y39_c00025{bottom:561.333333pt;}
.y37_c00025{bottom:561.600000pt;}
.y38_c00025{bottom:562.266667pt;}
.y10_c00025{bottom:565.466667pt;}
.y36_c00025{bottom:579.866667pt;}
.y35_c00025{bottom:580.533333pt;}
.y34_c00025{bottom:580.800000pt;}
.yf_c00025{bottom:584.933333pt;}
.ye_c00025{bottom:604.133333pt;}
.yd_c00025{bottom:629.733333pt;}
.y33_c00025{bottom:651.200000pt;}
.y32_c00025{bottom:651.866667pt;}
.yc_c00025{bottom:655.333333pt;}
.yb_c00025{bottom:674.533333pt;}
.y31_c00025{bottom:689.600000pt;}
.ya_c00025{bottom:693.733333pt;}
.y9_c00025{bottom:713.333333pt;}
.y8_c00025{bottom:732.133333pt;}
.y7_c00025{bottom:751.333333pt;}
.y6_c00025{bottom:770.933333pt;}
.y30_c00025{bottom:785.333333pt;}
.y2e_c00025{bottom:785.866667pt;}
.y2f_c00025{bottom:786.266667pt;}
.y5_c00025{bottom:790.133333pt;}
.y4_c00025{bottom:809.333333pt;}
.y2d_c00025{bottom:826.266667pt;}
.y3_c00025{bottom:828.533333pt;}
.y2_c00025{bottom:847.733333pt;}
.y2a_c00025{bottom:859.866667pt;}
.y28_c00025{bottom:860.133333pt;}
.y2c_c00025{bottom:871.333333pt;}
.y2b_c00025{bottom:871.733333pt;}
.y29_c00025{bottom:874.266667pt;}
.y27_c00025{bottom:874.533333pt;}
.y26_c00025{bottom:888.666667pt;}
.y1_c00025{bottom:931.466667pt;}
.h3_c00025{height:37.333333pt;}
.h5_c00025{height:42.666667pt;}
.h2_c00025{height:48.000000pt;}
.h6_c00025{height:53.333333pt;}
.h4_c00025{height:58.666667pt;}
.h1_c00025{height:1037.333333pt;}
.h0_c00025{height:1037.439941pt;}
.w0_c00025{width:811.840007pt;}
.w1_c00025{width:812.000000pt;}
.x0_c00025{left:0.000000pt;}
.x19_c00025{left:105.600000pt;}
.x5_c00025{left:133.066667pt;}
.x1a_c00025{left:139.866667pt;}
.x13_c00025{left:145.333333pt;}
.x1b_c00025{left:149.200000pt;}
.x1c_c00025{left:158.400000pt;}
.x1e_c00025{left:159.333333pt;}
.x14_c00025{left:161.066667pt;}
.x16_c00025{left:162.533333pt;}
.x1f_c00025{left:165.066667pt;}
.x1d_c00025{left:173.466667pt;}
.x20_c00025{left:174.400000pt;}
.x12_c00025{left:178.400000pt;}
.xa_c00025{left:183.733333pt;}
.x7_c00025{left:184.666667pt;}
.x8_c00025{left:190.800000pt;}
.x9_c00025{left:199.466667pt;}
.xc_c00025{left:201.333333pt;}
.x17_c00025{left:207.733333pt;}
.x6_c00025{left:208.933333pt;}
.x15_c00025{left:213.866667pt;}
.xd_c00025{left:223.066667pt;}
.xe_c00025{left:238.800000pt;}
.x18_c00025{left:242.266667pt;}
.xf_c00025{left:243.600000pt;}
.x10_c00025{left:250.266667pt;}
.xb_c00025{left:282.933333pt;}
.x11_c00025{left:289.066667pt;}
.x1_c00025{left:306.533333pt;}
.x2_c00025{left:410.266667pt;}
.x3_c00025{left:429.733333pt;}
.x21_c00025{left:435.200000pt;}
.x25_c00025{left:440.666667pt;}
.x2b_c00025{left:451.200000pt;}
.x32_c00025{left:452.800000pt;}
.x22_c00025{left:468.800000pt;}
.x23_c00025{left:488.266667pt;}
.x26_c00025{left:494.133333pt;}
.x2f_c00025{left:504.933333pt;}
.x2c_c00025{left:505.866667pt;}
.x30_c00025{left:512.000000pt;}
.x24_c00025{left:521.866667pt;}
.x27_c00025{left:529.333333pt;}
.x28_c00025{left:542.400000pt;}
.x2d_c00025{left:560.000000pt;}
.x31_c00025{left:566.000000pt;}
.x29_c00025{left:598.400000pt;}
.x34_c00025{left:613.066667pt;}
.x2a_c00025{left:648.666667pt;}
.x2e_c00025{left:666.533333pt;}
.x35_c00025{left:670.400000pt;}
.x33_c00025{left:673.333333pt;}
.x4_c00025{left:683.466667pt;}
}





/* 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_c00026 {
    display:none;
  }
  .loading-indicator_c00026.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00026 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_c00026 { 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_c00026" -> "#page-container .classname_c00026")
 */
.pf_c00026 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00026 { /* 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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00026 { /* 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_c00026 { /* 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_c00026 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00026 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00026 {overflow:visible;}
  }
}
.c_c00026 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00026 { /* 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_c00026:after { /* webkit #35443 */
  content: '';
}
.t_c00026:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00026 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 */
}
.__c00026 { /* 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_c00026 { /* info for Javascript */
  display:none;
}
.l_c00026 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00026 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00026 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00026: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_c00026 {
    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_c00026.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00026.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_c00026 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00026{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00026;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.000000;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;}
.m25_c00026{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb_c00026{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m26_c00026{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma_c00026{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m15_c00026{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m18_c00026{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m10_c00026{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m17_c00026{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m24_c00026{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc_c00026{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5_c00026{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00026{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00026{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00026{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m22_c00026{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m20_c00026{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00026{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m21_c00026{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00026{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00026{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_c00026{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m16_c00026{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00026{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00026{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m23_c00026{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md_c00026{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.me_c00026{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m27_c00026{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00026{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00026{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m2_c00026{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf_c00026{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m28_c00026{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m7_c00026{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m14_c00026{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v1_c00026{vertical-align:-5.400000px;}
.v2_c00026{vertical-align:-1.800000px;}
.v0_c00026{vertical-align:0.000000px;}
.v3_c00026{vertical-align:1.200000px;}
.v4_c00026{vertical-align:3.000000px;}
.ls4_c00026{letter-spacing:0.000000px;}
.ls0_c00026{letter-spacing:55.714286px;}
.ls2_c00026{letter-spacing:59.285714px;}
.ls3_c00026{letter-spacing:103.862139px;}
.ls1_c00026{letter-spacing:2026.079932px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{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__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00026{word-spacing:0.000000px;}
.ws2_c00026{word-spacing:445.448554px;}
.ws3_c00026{word-spacing:448.105867px;}
.ws1_c00026{word-spacing:485.845908px;}
.ws0_c00026{word-spacing:490.132602px;}
._0_c00026{width:479.434524px;}
.fc0_c00026{color:transparent;}
.fs2_c00026{font-size:48.000000px;}
.fs0_c00026{font-size:54.000000px;}
.fs1_c00026{font-size:60.000000px;}
.y0_c00026{bottom:0.000000px;}
.ye_c00026{bottom:684.300000px;}
.y21_c00026{bottom:686.100000px;}
.yd_c00026{bottom:706.350000px;}
.yc_c00026{bottom:735.150000px;}
.y20_c00026{bottom:763.950000px;}
.yb_c00026{bottom:765.000000px;}
.y1d_c00026{bottom:785.850000px;}
.ya_c00026{bottom:786.600000px;}
.y1e_c00026{bottom:786.900000px;}
.y1f_c00026{bottom:807.450000px;}
.y9_c00026{bottom:808.200000px;}
.y8_c00026{bottom:829.800000px;}
.y1c_c00026{bottom:857.850000px;}
.y1b_c00026{bottom:858.300000px;}
.y7_c00026{bottom:858.900000px;}
.y1a_c00026{bottom:879.150000px;}
.y19_c00026{bottom:879.900000px;}
.y6_c00026{bottom:880.500000px;}
.y18_c00026{bottom:881.250000px;}
.y15_c00026{bottom:901.050000px;}
.y5_c00026{bottom:902.100000px;}
.y17_c00026{bottom:922.650000px;}
.y4_c00026{bottom:923.700000px;}
.y16_c00026{bottom:924.450000px;}
.y3_c00026{bottom:952.950000px;}
.y13_c00026{bottom:969.150000px;}
.y11_c00026{bottom:969.450000px;}
.y14_c00026{bottom:982.050000px;}
.y12_c00026{bottom:985.350000px;}
.y10_c00026{bottom:985.650000px;}
.yf_c00026{bottom:1001.550000px;}
.y1_c00026{bottom:1049.100000px;}
.y2_c00026{bottom:1049.400000px;}
.h4_c00026{height:48.000000px;}
.h2_c00026{height:54.000000px;}
.h3_c00026{height:60.000000px;}
.h5_c00026{height:61.200000px;}
.h6_c00026{height:63.000000px;}
.h1_c00026{height:1167.000000px;}
.h0_c00026{height:1167.119934px;}
.w0_c00026{width:913.320007px;}
.w1_c00026{width:913.500000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:152.700000px;}
.x5_c00026{left:154.500000px;}
.x7_c00026{left:183.600000px;}
.x8_c00026{left:201.600000px;}
.xd_c00026{left:212.100000px;}
.x9_c00026{left:213.150000px;}
.xa_c00026{left:230.400000px;}
.xe_c00026{left:231.450000px;}
.x6_c00026{left:279.000000px;}
.xb_c00026{left:308.850000px;}
.xc_c00026{left:316.350000px;}
.x2_c00026{left:384.150000px;}
.x3_c00026{left:500.400000px;}
.x4_c00026{left:523.500000px;}
.xf_c00026{left:524.850000px;}
.x13_c00026{left:529.500000px;}
.x14_c00026{left:531.000000px;}
.x1e_c00026{left:542.550000px;}
.x19_c00026{left:543.600000px;}
.x10_c00026{left:563.700000px;}
.x11_c00026{left:587.550000px;}
.x15_c00026{left:590.700000px;}
.x1a_c00026{left:603.300000px;}
.x12_c00026{left:627.900000px;}
.x16_c00026{left:646.950000px;}
.x1c_c00026{left:663.900000px;}
.x17_c00026{left:709.200000px;}
.x1d_c00026{left:731.550000px;}
.x18_c00026{left:764.700000px;}
.x1f_c00026{left:784.050000px;}
.x1b_c00026{left:785.100000px;}
@media print{
.v1_c00026{vertical-align:-4.800000pt;}
.v2_c00026{vertical-align:-1.600000pt;}
.v0_c00026{vertical-align:0.000000pt;}
.v3_c00026{vertical-align:1.066667pt;}
.v4_c00026{vertical-align:2.666667pt;}
.ls4_c00026{letter-spacing:0.000000pt;}
.ls0_c00026{letter-spacing:49.523810pt;}
.ls2_c00026{letter-spacing:52.698413pt;}
.ls3_c00026{letter-spacing:92.321901pt;}
.ls1_c00026{letter-spacing:1800.959940pt;}
.ws4_c00026{word-spacing:0.000000pt;}
.ws2_c00026{word-spacing:395.954271pt;}
.ws3_c00026{word-spacing:398.316327pt;}
.ws1_c00026{word-spacing:431.863029pt;}
.ws0_c00026{word-spacing:435.673424pt;}
._0_c00026{width:426.164021pt;}
.fs2_c00026{font-size:42.666667pt;}
.fs0_c00026{font-size:48.000000pt;}
.fs1_c00026{font-size:53.333333pt;}
.y0_c00026{bottom:0.000000pt;}
.ye_c00026{bottom:608.266667pt;}
.y21_c00026{bottom:609.866667pt;}
.yd_c00026{bottom:627.866667pt;}
.yc_c00026{bottom:653.466667pt;}
.y20_c00026{bottom:679.066667pt;}
.yb_c00026{bottom:680.000000pt;}
.y1d_c00026{bottom:698.533333pt;}
.ya_c00026{bottom:699.200000pt;}
.y1e_c00026{bottom:699.466667pt;}
.y1f_c00026{bottom:717.733333pt;}
.y9_c00026{bottom:718.400000pt;}
.y8_c00026{bottom:737.600000pt;}
.y1c_c00026{bottom:762.533333pt;}
.y1b_c00026{bottom:762.933333pt;}
.y7_c00026{bottom:763.466667pt;}
.y1a_c00026{bottom:781.466667pt;}
.y19_c00026{bottom:782.133333pt;}
.y6_c00026{bottom:782.666667pt;}
.y18_c00026{bottom:783.333333pt;}
.y15_c00026{bottom:800.933333pt;}
.y5_c00026{bottom:801.866667pt;}
.y17_c00026{bottom:820.133333pt;}
.y4_c00026{bottom:821.066667pt;}
.y16_c00026{bottom:821.733333pt;}
.y3_c00026{bottom:847.066667pt;}
.y13_c00026{bottom:861.466667pt;}
.y11_c00026{bottom:861.733333pt;}
.y14_c00026{bottom:872.933333pt;}
.y12_c00026{bottom:875.866667pt;}
.y10_c00026{bottom:876.133333pt;}
.yf_c00026{bottom:890.266667pt;}
.y1_c00026{bottom:932.533333pt;}
.y2_c00026{bottom:932.800000pt;}
.h4_c00026{height:42.666667pt;}
.h2_c00026{height:48.000000pt;}
.h3_c00026{height:53.333333pt;}
.h5_c00026{height:54.400000pt;}
.h6_c00026{height:56.000000pt;}
.h1_c00026{height:1037.333333pt;}
.h0_c00026{height:1037.439941pt;}
.w0_c00026{width:811.840007pt;}
.w1_c00026{width:812.000000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:135.733333pt;}
.x5_c00026{left:137.333333pt;}
.x7_c00026{left:163.200000pt;}
.x8_c00026{left:179.200000pt;}
.xd_c00026{left:188.533333pt;}
.x9_c00026{left:189.466667pt;}
.xa_c00026{left:204.800000pt;}
.xe_c00026{left:205.733333pt;}
.x6_c00026{left:248.000000pt;}
.xb_c00026{left:274.533333pt;}
.xc_c00026{left:281.200000pt;}
.x2_c00026{left:341.466667pt;}
.x3_c00026{left:444.800000pt;}
.x4_c00026{left:465.333333pt;}
.xf_c00026{left:466.533333pt;}
.x13_c00026{left:470.666667pt;}
.x14_c00026{left:472.000000pt;}
.x1e_c00026{left:482.266667pt;}
.x19_c00026{left:483.200000pt;}
.x10_c00026{left:501.066667pt;}
.x11_c00026{left:522.266667pt;}
.x15_c00026{left:525.066667pt;}
.x1a_c00026{left:536.266667pt;}
.x12_c00026{left:558.133333pt;}
.x16_c00026{left:575.066667pt;}
.x1c_c00026{left:590.133333pt;}
.x17_c00026{left:630.400000pt;}
.x1d_c00026{left:650.266667pt;}
.x18_c00026{left:679.733333pt;}
.x1f_c00026{left:696.933333pt;}
.x1b_c00026{left:697.866667pt;}
}





/* 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_c00027 {
    display:none;
  }
  .loading-indicator_c00027.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00027 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_c00027 { 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_c00027" -> "#page-container .classname_c00027")
 */
.pf_c00027 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00027 { /* 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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00027 { /* 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_c00027 { /* 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_c00027 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00027 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00027 {overflow:visible;}
  }
}
.c_c00027 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00027 { /* 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_c00027:after { /* webkit #35443 */
  content: '';
}
.t_c00027:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00027 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 */
}
.__c00027 { /* 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_c00027 { /* info for Javascript */
  display:none;
}
.l_c00027 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00027 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00027 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00027: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_c00027 {
    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_c00027.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00027.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_c00027 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00027{font-family:sans-serif;visibility:hidden;}
.sc__c00027{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00027{-webkit-text-stroke:0px transparent;}
}
.y0_c00027{bottom:0.000000px;}
.h1_c00027{height:1167.000000px;}
.h0_c00027{height:1167.119934px;}
.w0_c00027{width:913.320007px;}
.w1_c00027{width:913.500000px;}
.x0_c00027{left:0.000000px;}
@media print{
.y0_c00027{bottom:0.000000pt;}
.h1_c00027{height:1037.333333pt;}
.h0_c00027{height:1037.439941pt;}
.w0_c00027{width:811.840007pt;}
.w1_c00027{width:812.000000pt;}
.x0_c00027{left:0.000000pt;}
}





/* 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_c00028 {
    display:none;
  }
  .loading-indicator_c00028.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00028 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_c00028 { 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_c00028" -> "#page-container .classname_c00028")
 */
.pf_c00028 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00028 { /* 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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00028 { /* 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_c00028 { /* 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_c00028 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00028 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00028 {overflow:visible;}
  }
}
.c_c00028 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00028 { /* 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_c00028:after { /* webkit #35443 */
  content: '';
}
.t_c00028:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00028 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 */
}
.__c00028 { /* 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_c00028 { /* info for Javascript */
  display:none;
}
.l_c00028 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00028 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00028 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00028: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_c00028 {
    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_c00028.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00028.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_c00028 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00028{font-family:sans-serif;visibility:hidden;}
.sc__c00028{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
}
.y0_c00028{bottom:0.000000px;}
.h1_c00028{height:1167.000000px;}
.h0_c00028{height:1167.119934px;}
.w0_c00028{width:913.320007px;}
.w1_c00028{width:913.500000px;}
.x0_c00028{left:0.000000px;}
@media print{
.y0_c00028{bottom:0.000000pt;}
.h1_c00028{height:1037.333333pt;}
.h0_c00028{height:1037.439941pt;}
.w0_c00028{width:811.840007pt;}
.w1_c00028{width:812.000000pt;}
.x0_c00028{left:0.000000pt;}
}





/* 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_c00029 {
    display:none;
  }
  .loading-indicator_c00029.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00029 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_c00029 { 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_c00029" -> "#page-container .classname_c00029")
 */
.pf_c00029 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00029 { /* 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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00029 { /* 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_c00029 { /* 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_c00029 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00029 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00029 {overflow:visible;}
  }
}
.c_c00029 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00029 { /* 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_c00029:after { /* webkit #35443 */
  content: '';
}
.t_c00029:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00029 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 */
}
.__c00029 { /* 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_c00029 { /* info for Javascript */
  display:none;
}
.l_c00029 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00029 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00029 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00029: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_c00029 {
    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_c00029.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00029.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_c00029 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00029{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00029;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.000000;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;}
.m2_c00029{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m0_c00029{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls0_c00029{letter-spacing:0.000000px;}
.sc__c00029{text-shadow:none;}
.sc0_c00029{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__c00029{-webkit-text-stroke:0px transparent;}
.sc0_c00029{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00029{word-spacing:0.000000px;}
.fc0_c00029{color:transparent;}
.fs0_c00029{font-size:60.000000px;}
.y0_c00029{bottom:0.000000px;}
.y1_c00029{bottom:20.100000px;}
.h2_c00029{height:60.000000px;}
.h1_c00029{height:1167.000000px;}
.h0_c00029{height:1167.119934px;}
.w0_c00029{width:913.320007px;}
.w1_c00029{width:913.500000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:774.000000px;}
.x2_c00029{left:821.850000px;}
.x3_c00029{left:855.300000px;}
.x4_c00029{left:858.900000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs0_c00029{font-size:53.333333pt;}
.y0_c00029{bottom:0.000000pt;}
.y1_c00029{bottom:17.866667pt;}
.h2_c00029{height:53.333333pt;}
.h1_c00029{height:1037.333333pt;}
.h0_c00029{height:1037.439941pt;}
.w0_c00029{width:811.840007pt;}
.w1_c00029{width:812.000000pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:688.000000pt;}
.x2_c00029{left:730.533333pt;}
.x3_c00029{left:760.266667pt;}
.x4_c00029{left:763.466667pt;}
}





/* 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_c00030 {
    display:none;
  }
  .loading-indicator_c00030.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00030 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_c00030 { 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_c00030" -> "#page-container .classname_c00030")
 */
.pf_c00030 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00030 { /* 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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00030 { /* 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_c00030 { /* 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_c00030 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00030 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00030 {overflow:visible;}
  }
}
.c_c00030 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00030 { /* 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_c00030:after { /* webkit #35443 */
  content: '';
}
.t_c00030:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00030 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 */
}
.__c00030 { /* 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_c00030 { /* info for Javascript */
  display:none;
}
.l_c00030 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00030 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00030 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00030: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_c00030 {
    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_c00030.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00030.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_c00030 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00030{font-family:sans-serif;visibility:hidden;}
.sc__c00030{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
}
.y0_c00030{bottom:0.000000px;}
.h1_c00030{height:1167.000000px;}
.h0_c00030{height:1167.119934px;}
.w0_c00030{width:913.320007px;}
.w1_c00030{width:913.500000px;}
.x0_c00030{left:0.000000px;}
@media print{
.y0_c00030{bottom:0.000000pt;}
.h1_c00030{height:1037.333333pt;}
.h0_c00030{height:1037.439941pt;}
.w0_c00030{width:811.840007pt;}
.w1_c00030{width:812.000000pt;}
.x0_c00030{left:0.000000pt;}
}





/* 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_c00031 {
    display:none;
  }
  .loading-indicator_c00031.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00031 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_c00031 { 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_c00031" -> "#page-container .classname_c00031")
 */
.pf_c00031 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00031 { /* 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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00031 { /* 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_c00031 { /* 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_c00031 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00031 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00031 {overflow:visible;}
  }
}
.c_c00031 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00031 { /* 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_c00031:after { /* webkit #35443 */
  content: '';
}
.t_c00031:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00031 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 */
}
.__c00031 { /* 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_c00031 { /* info for Javascript */
  display:none;
}
.l_c00031 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00031 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00031 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00031: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_c00031 {
    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_c00031.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00031.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_c00031 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00031{font-family:sans-serif;visibility:hidden;}
.sc__c00031{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
}
.y0_c00031{bottom:0.000000px;}
.h1_c00031{height:1167.000000px;}
.h0_c00031{height:1167.119934px;}
.w0_c00031{width:913.320007px;}
.w1_c00031{width:913.500000px;}
.x0_c00031{left:0.000000px;}
@media print{
.y0_c00031{bottom:0.000000pt;}
.h1_c00031{height:1037.333333pt;}
.h0_c00031{height:1037.439941pt;}
.w0_c00031{width:811.840007pt;}
.w1_c00031{width:812.000000pt;}
.x0_c00031{left:0.000000pt;}
}





/* 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_c00032 {
    display:none;
  }
  .loading-indicator_c00032.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00032 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_c00032 { 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_c00032" -> "#page-container .classname_c00032")
 */
.pf_c00032 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00032 { /* 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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00032 { /* 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_c00032 { /* 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_c00032 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00032 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00032 {overflow:visible;}
  }
}
.c_c00032 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00032 { /* 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_c00032:after { /* webkit #35443 */
  content: '';
}
.t_c00032:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00032 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 */
}
.__c00032 { /* 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_c00032 { /* info for Javascript */
  display:none;
}
.l_c00032 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00032 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00032 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00032: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_c00032 {
    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_c00032.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00032.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_c00032 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00032{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00032;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.000000;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;}
.m2_c00032{transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088750,0.000000,0.000000,0.250000,0,0);}
.m14_c00032{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m11_c00032{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m12_c00032{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m19_c00032{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m18_c00032{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m16_c00032{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m17_c00032{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00032{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00032{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m0_c00032{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00032{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00032{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m10_c00032{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00032{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00032{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00032{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00032{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00032{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9_c00032{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c00032{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368250,0.000000,0.000000,0.250000,0,0);}
.me_c00032{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5_c00032{transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00032{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);}
.v0_c00032{vertical-align:0.000000px;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{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__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00032{word-spacing:0.000000px;}
.ws0_c00032{word-spacing:104.793103px;}
._1_c00032{width:126.413793px;}
._0_c00032{width:131.586207px;}
.fc0_c00032{color:transparent;}
.fs5_c00032{font-size:36.000000px;}
.fs4_c00032{font-size:42.000000px;}
.fs2_c00032{font-size:48.000000px;}
.fs0_c00032{font-size:60.000000px;}
.fs6_c00032{font-size:66.000000px;}
.fs1_c00032{font-size:102.000000px;}
.fs3_c00032{font-size:108.000000px;}
.y0_c00032{bottom:0.000000px;}
.yb_c00032{bottom:6.900000px;}
.ya_c00032{bottom:37.800000px;}
.y9_c00032{bottom:39.900000px;}
.y7_c00032{bottom:45.750000px;}
.y5_c00032{bottom:48.900000px;}
.y6_c00032{bottom:55.500000px;}
.y8_c00032{bottom:101.550000px;}
.y4_c00032{bottom:141.900000px;}
.y3_c00032{bottom:168.900000px;}
.y2_c00032{bottom:197.700000px;}
.y1_c00032{bottom:1131.150000px;}
.h7_c00032{height:36.000000px;}
.h6_c00032{height:42.000000px;}
.h4_c00032{height:48.000000px;}
.h2_c00032{height:60.000000px;}
.h8_c00032{height:66.000000px;}
.h3_c00032{height:102.000000px;}
.h5_c00032{height:108.000000px;}
.h1_c00032{height:1167.000000px;}
.h0_c00032{height:1167.119934px;}
.w0_c00032{width:913.320007px;}
.w1_c00032{width:913.500000px;}
.x0_c00032{left:0.000000px;}
.x11_c00032{left:71.250000px;}
.x1_c00032{left:91.050000px;}
.x6_c00032{left:102.600000px;}
.xb_c00032{left:120.600000px;}
.x12_c00032{left:121.950000px;}
.x2_c00032{left:140.700000px;}
.x13_c00032{left:166.950000px;}
.x7_c00032{left:174.300000px;}
.x3_c00032{left:186.450000px;}
.x4_c00032{left:189.300000px;}
.x8_c00032{left:207.000000px;}
.x14_c00032{left:210.300000px;}
.xc_c00032{left:211.650000px;}
.xd_c00032{left:234.000000px;}
.x16_c00032{left:263.850000px;}
.x15_c00032{left:270.000000px;}
.xe_c00032{left:271.050000px;}
.x5_c00032{left:284.700000px;}
.x17_c00032{left:313.200000px;}
.x9_c00032{left:317.550000px;}
.xf_c00032{left:318.600000px;}
.x10_c00032{left:356.700000px;}
.x18_c00032{left:359.700000px;}
.xa_c00032{left:375.450000px;}
.x19_c00032{left:408.000000px;}
.x1a_c00032{left:454.800000px;}
.x1c_c00032{left:594.750000px;}
.x1b_c00032{left:652.650000px;}
.x1d_c00032{left:782.700000px;}
.x1e_c00032{left:888.150000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws1_c00032{word-spacing:0.000000pt;}
.ws0_c00032{word-spacing:93.149425pt;}
._1_c00032{width:112.367816pt;}
._0_c00032{width:116.965517pt;}
.fs5_c00032{font-size:32.000000pt;}
.fs4_c00032{font-size:37.333333pt;}
.fs2_c00032{font-size:42.666667pt;}
.fs0_c00032{font-size:53.333333pt;}
.fs6_c00032{font-size:58.666667pt;}
.fs1_c00032{font-size:90.666667pt;}
.fs3_c00032{font-size:96.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.yb_c00032{bottom:6.133333pt;}
.ya_c00032{bottom:33.600000pt;}
.y9_c00032{bottom:35.466667pt;}
.y7_c00032{bottom:40.666667pt;}
.y5_c00032{bottom:43.466667pt;}
.y6_c00032{bottom:49.333333pt;}
.y8_c00032{bottom:90.266667pt;}
.y4_c00032{bottom:126.133333pt;}
.y3_c00032{bottom:150.133333pt;}
.y2_c00032{bottom:175.733333pt;}
.y1_c00032{bottom:1005.466667pt;}
.h7_c00032{height:32.000000pt;}
.h6_c00032{height:37.333333pt;}
.h4_c00032{height:42.666667pt;}
.h2_c00032{height:53.333333pt;}
.h8_c00032{height:58.666667pt;}
.h3_c00032{height:90.666667pt;}
.h5_c00032{height:96.000000pt;}
.h1_c00032{height:1037.333333pt;}
.h0_c00032{height:1037.439941pt;}
.w0_c00032{width:811.840007pt;}
.w1_c00032{width:812.000000pt;}
.x0_c00032{left:0.000000pt;}
.x11_c00032{left:63.333333pt;}
.x1_c00032{left:80.933333pt;}
.x6_c00032{left:91.200000pt;}
.xb_c00032{left:107.200000pt;}
.x12_c00032{left:108.400000pt;}
.x2_c00032{left:125.066667pt;}
.x13_c00032{left:148.400000pt;}
.x7_c00032{left:154.933333pt;}
.x3_c00032{left:165.733333pt;}
.x4_c00032{left:168.266667pt;}
.x8_c00032{left:184.000000pt;}
.x14_c00032{left:186.933333pt;}
.xc_c00032{left:188.133333pt;}
.xd_c00032{left:208.000000pt;}
.x16_c00032{left:234.533333pt;}
.x15_c00032{left:240.000000pt;}
.xe_c00032{left:240.933333pt;}
.x5_c00032{left:253.066667pt;}
.x17_c00032{left:278.400000pt;}
.x9_c00032{left:282.266667pt;}
.xf_c00032{left:283.200000pt;}
.x10_c00032{left:317.066667pt;}
.x18_c00032{left:319.733333pt;}
.xa_c00032{left:333.733333pt;}
.x19_c00032{left:362.666667pt;}
.x1a_c00032{left:404.266667pt;}
.x1c_c00032{left:528.666667pt;}
.x1b_c00032{left:580.133333pt;}
.x1d_c00032{left:695.733333pt;}
.x1e_c00032{left:789.466667pt;}
}





/* 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_c00033 {
    display:none;
  }
  .loading-indicator_c00033.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00033 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_c00033 { 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_c00033" -> "#page-container .classname_c00033")
 */
.pf_c00033 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00033 { /* 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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00033 { /* 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_c00033 { /* 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_c00033 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00033 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00033 {overflow:visible;}
  }
}
.c_c00033 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00033 { /* 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_c00033:after { /* webkit #35443 */
  content: '';
}
.t_c00033:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00033 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 */
}
.__c00033 { /* 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_c00033 { /* info for Javascript */
  display:none;
}
.l_c00033 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00033 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00033 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00033: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_c00033 {
    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_c00033.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00033.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_c00033 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00033{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00033;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.000000;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;}
.md_c00033{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7_c00033{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{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);}
.ma_c00033{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2_c00033{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00033{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m0_c00033{transform:matrix(2.016000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.016000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.016000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls0_c00033{letter-spacing:0.000000px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{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__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:0.000000px;}
.fc0_c00033{color:transparent;}
.fs1_c00033{font-size:36.000000px;}
.fs0_c00033{font-size:60.000000px;}
.y0_c00033{bottom:0.000000px;}
.y4_c00033{bottom:9.750000px;}
.y2_c00033{bottom:1104.450000px;}
.y3_c00033{bottom:1105.500000px;}
.y1_c00033{bottom:1161.300000px;}
.h3_c00033{height:36.000000px;}
.h2_c00033{height:60.000000px;}
.h1_c00033{height:1167.000000px;}
.h0_c00033{height:1167.119934px;}
.w0_c00033{width:913.320007px;}
.w1_c00033{width:913.500000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:17.250000px;}
.x2_c00033{left:54.750000px;}
.x3_c00033{left:100.500000px;}
.x4_c00033{left:145.800000px;}
.x5_c00033{left:193.650000px;}
.x6_c00033{left:241.950000px;}
.x7_c00033{left:289.050000px;}
.x8_c00033{left:336.600000px;}
.x9_c00033{left:430.200000px;}
.xa_c00033{left:478.500000px;}
.xb_c00033{left:527.400000px;}
.xc_c00033{left:574.200000px;}
.xd_c00033{left:622.050000px;}
.xe_c00033{left:669.900000px;}
.xf_c00033{left:715.650000px;}
.x10_c00033{left:763.500000px;}
.x11_c00033{left:810.300000px;}
.x12_c00033{left:847.500000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs1_c00033{font-size:32.000000pt;}
.fs0_c00033{font-size:53.333333pt;}
.y0_c00033{bottom:0.000000pt;}
.y4_c00033{bottom:8.666667pt;}
.y2_c00033{bottom:981.733333pt;}
.y3_c00033{bottom:982.666667pt;}
.y1_c00033{bottom:1032.266667pt;}
.h3_c00033{height:32.000000pt;}
.h2_c00033{height:53.333333pt;}
.h1_c00033{height:1037.333333pt;}
.h0_c00033{height:1037.439941pt;}
.w0_c00033{width:811.840007pt;}
.w1_c00033{width:812.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:15.333333pt;}
.x2_c00033{left:48.666667pt;}
.x3_c00033{left:89.333333pt;}
.x4_c00033{left:129.600000pt;}
.x5_c00033{left:172.133333pt;}
.x6_c00033{left:215.066667pt;}
.x7_c00033{left:256.933333pt;}
.x8_c00033{left:299.200000pt;}
.x9_c00033{left:382.400000pt;}
.xa_c00033{left:425.333333pt;}
.xb_c00033{left:468.800000pt;}
.xc_c00033{left:510.400000pt;}
.xd_c00033{left:552.933333pt;}
.xe_c00033{left:595.466667pt;}
.xf_c00033{left:636.133333pt;}
.x10_c00033{left:678.666667pt;}
.x11_c00033{left:720.266667pt;}
.x12_c00033{left:753.333333pt;}
}





/* 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_c00034 {
    display:none;
  }
  .loading-indicator_c00034.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00034 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_c00034 { 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_c00034" -> "#page-container .classname_c00034")
 */
.pf_c00034 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00034 { /* 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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00034 { /* 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_c00034 { /* 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_c00034 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00034 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00034 {overflow:visible;}
  }
}
.c_c00034 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00034 { /* 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_c00034:after { /* webkit #35443 */
  content: '';
}
.t_c00034:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00034 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 */
}
.__c00034 { /* 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_c00034 { /* info for Javascript */
  display:none;
}
.l_c00034 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00034 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00034 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00034: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_c00034 {
    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_c00034.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00034.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_c00034 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00034{font-family:sans-serif;visibility:hidden;}
.sc__c00034{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00034{-webkit-text-stroke:0px transparent;}
}
.y0_c00034{bottom:0.000000px;}
.h1_c00034{height:1167.000000px;}
.h0_c00034{height:1167.119934px;}
.w0_c00034{width:913.320007px;}
.w1_c00034{width:913.500000px;}
.x0_c00034{left:0.000000px;}
@media print{
.y0_c00034{bottom:0.000000pt;}
.h1_c00034{height:1037.333333pt;}
.h0_c00034{height:1037.439941pt;}
.w0_c00034{width:811.840007pt;}
.w1_c00034{width:812.000000pt;}
.x0_c00034{left:0.000000pt;}
}





/* 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_c00035 {
    display:none;
  }
  .loading-indicator_c00035.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00035 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_c00035 { 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_c00035" -> "#page-container .classname_c00035")
 */
.pf_c00035 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00035 { /* 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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00035 { /* 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_c00035 { /* 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_c00035 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00035 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00035 {overflow:visible;}
  }
}
.c_c00035 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00035 { /* 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_c00035:after { /* webkit #35443 */
  content: '';
}
.t_c00035:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00035 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 */
}
.__c00035 { /* 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_c00035 { /* info for Javascript */
  display:none;
}
.l_c00035 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00035 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00035 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00035: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_c00035 {
    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_c00035.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00035.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_c00035 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00035{font-family:sans-serif;visibility:hidden;}
.sc__c00035{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00035{-webkit-text-stroke:0px transparent;}
}
.y0_c00035{bottom:0.000000px;}
.h1_c00035{height:1167.000000px;}
.h0_c00035{height:1167.119934px;}
.w0_c00035{width:913.320007px;}
.w1_c00035{width:913.500000px;}
.x0_c00035{left:0.000000px;}
@media print{
.y0_c00035{bottom:0.000000pt;}
.h1_c00035{height:1037.333333pt;}
.h0_c00035{height:1037.439941pt;}
.w0_c00035{width:811.840007pt;}
.w1_c00035{width:812.000000pt;}
.x0_c00035{left:0.000000pt;}
}





/* 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_c00036 {
    display:none;
  }
  .loading-indicator_c00036.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00036 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_c00036 { 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_c00036" -> "#page-container .classname_c00036")
 */
.pf_c00036 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00036 { /* 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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00036 { /* 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_c00036 { /* 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_c00036 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00036 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00036 {overflow:visible;}
  }
}
.c_c00036 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00036 { /* 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_c00036:after { /* webkit #35443 */
  content: '';
}
.t_c00036:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00036 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 */
}
.__c00036 { /* 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_c00036 { /* info for Javascript */
  display:none;
}
.l_c00036 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00036 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00036 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00036: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_c00036 {
    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_c00036.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00036.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_c00036 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00036{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_93085d03a3a393c79b680376.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.000000;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;}
.m8_c00036{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m6_c00036{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1_c00036{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5_c00036{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7_c00036{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4_c00036{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3_c00036{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m0_c00036{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2_c00036{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{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__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00036{word-spacing:0.000000px;}
.ws0_c00036{word-spacing:107.023810px;}
.ws1_c00036{word-spacing:191.538462px;}
._0_c00036{width:223.461538px;}
.fc0_c00036{color:transparent;}
.fs0_c00036{font-size:60.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1_c00036{bottom:1122.150000px;}
.h2_c00036{height:60.000000px;}
.h1_c00036{height:1167.000000px;}
.h0_c00036{height:1167.119934px;}
.w0_c00036{width:913.320007px;}
.w1_c00036{width:913.500000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:60.450000px;}
.x2_c00036{left:156.150000px;}
.x3_c00036{left:301.500000px;}
.x4_c00036{left:349.800000px;}
.x5_c00036{left:396.300000px;}
.x6_c00036{left:444.900000px;}
.x7_c00036{left:491.400000px;}
.x8_c00036{left:539.700000px;}
.x9_c00036{left:586.500000px;}
.xa_c00036{left:634.050000px;}
.xb_c00036{left:680.850000px;}
.xc_c00036{left:729.150000px;}
.xd_c00036{left:777.450000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws2_c00036{word-spacing:0.000000pt;}
.ws0_c00036{word-spacing:95.132275pt;}
.ws1_c00036{word-spacing:170.256410pt;}
._0_c00036{width:198.632479pt;}
.fs0_c00036{font-size:53.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y1_c00036{bottom:997.466667pt;}
.h2_c00036{height:53.333333pt;}
.h1_c00036{height:1037.333333pt;}
.h0_c00036{height:1037.439941pt;}
.w0_c00036{width:811.840007pt;}
.w1_c00036{width:812.000000pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:53.733333pt;}
.x2_c00036{left:138.800000pt;}
.x3_c00036{left:268.000000pt;}
.x4_c00036{left:310.933333pt;}
.x5_c00036{left:352.266667pt;}
.x6_c00036{left:395.466667pt;}
.x7_c00036{left:436.800000pt;}
.x8_c00036{left:479.733333pt;}
.x9_c00036{left:521.333333pt;}
.xa_c00036{left:563.600000pt;}
.xb_c00036{left:605.200000pt;}
.xc_c00036{left:648.133333pt;}
.xd_c00036{left:691.066667pt;}
}





/* 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_c00037 {
    display:none;
  }
  .loading-indicator_c00037.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00037 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_c00037 { 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_c00037" -> "#page-container .classname_c00037")
 */
.pf_c00037 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00037 { /* 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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00037 { /* 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_c00037 { /* 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_c00037 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00037 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00037 {overflow:visible;}
  }
}
.c_c00037 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00037 { /* 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_c00037:after { /* webkit #35443 */
  content: '';
}
.t_c00037:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00037 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 */
}
.__c00037 { /* 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_c00037 { /* info for Javascript */
  display:none;
}
.l_c00037 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00037 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00037 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00037: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_c00037 {
    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_c00037.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00037.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_c00037 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00037{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00037;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.000000;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;}
.m10_c00037{transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064750,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.me_c00037{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m15_c00037{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m13_c00037{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.md_c00037{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma_c00037{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf_c00037{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9_c00037{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{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);}
.mc_c00037{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7_c00037{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00037{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m14_c00037{transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557250,0.000000,0.000000,0.250000,0,0);}
.m11_c00037{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls0_c00037{letter-spacing:0.000000px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{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__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00037{word-spacing:0.000000px;}
.ws0_c00037{word-spacing:80.166667px;}
.ws1_c00037{word-spacing:116.943731px;}
.fc0_c00037{color:transparent;}
.fs0_c00037{font-size:36.000000px;}
.fs2_c00037{font-size:42.000000px;}
.fs1_c00037{font-size:60.000000px;}
.fs3_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.ya_c00037{bottom:21.600000px;}
.y8_c00037{bottom:37.050000px;}
.y9_c00037{bottom:38.100000px;}
.y7_c00037{bottom:103.650000px;}
.y3_c00037{bottom:143.250000px;}
.y4_c00037{bottom:144.000000px;}
.y5_c00037{bottom:144.300000px;}
.y6_c00037{bottom:144.750000px;}
.y2_c00037{bottom:1113.450000px;}
.y1_c00037{bottom:1117.050000px;}
.h2_c00037{height:36.000000px;}
.h4_c00037{height:42.000000px;}
.h3_c00037{height:60.000000px;}
.h5_c00037{height:72.000000px;}
.h1_c00037{height:1167.000000px;}
.h0_c00037{height:1167.119934px;}
.w0_c00037{width:913.320007px;}
.w1_c00037{width:913.500000px;}
.x0_c00037{left:0.000000px;}
.x24_c00037{left:18.000000px;}
.x25_c00037{left:46.800000px;}
.x10_c00037{left:75.600000px;}
.x1_c00037{left:100.800000px;}
.x11_c00037{left:126.750000px;}
.x2_c00037{left:145.800000px;}
.x18_c00037{left:148.650000px;}
.x12_c00037{left:168.900000px;}
.x19_c00037{left:195.150000px;}
.x3_c00037{left:241.500000px;}
.x1a_c00037{left:243.750000px;}
.x13_c00037{left:271.800000px;}
.x4_c00037{left:289.350000px;}
.x1b_c00037{left:292.050000px;}
.x5_c00037{left:336.900000px;}
.x1c_c00037{left:338.550000px;}
.x14_c00037{left:358.500000px;}
.x6_c00037{left:382.200000px;}
.x1d_c00037{left:385.650000px;}
.x15_c00037{left:405.000000px;}
.x7_c00037{left:430.800000px;}
.x8_c00037{left:479.100000px;}
.x1e_c00037{left:480.900000px;}
.x9_c00037{left:528.450000px;}
.x1f_c00037{left:531.000000px;}
.xa_c00037{left:575.550000px;}
.xb_c00037{left:623.850000px;}
.x20_c00037{left:626.100000px;}
.xc_c00037{left:672.150000px;}
.x21_c00037{left:674.400000px;}
.xd_c00037{left:717.900000px;}
.x22_c00037{left:720.150000px;}
.xe_c00037{left:766.500000px;}
.x23_c00037{left:768.450000px;}
.xf_c00037{left:813.300000px;}
.x16_c00037{left:864.000000px;}
.x17_c00037{left:870.150000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws2_c00037{word-spacing:0.000000pt;}
.ws0_c00037{word-spacing:71.259259pt;}
.ws1_c00037{word-spacing:103.949984pt;}
.fs0_c00037{font-size:32.000000pt;}
.fs2_c00037{font-size:37.333333pt;}
.fs1_c00037{font-size:53.333333pt;}
.fs3_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.ya_c00037{bottom:19.200000pt;}
.y8_c00037{bottom:32.933333pt;}
.y9_c00037{bottom:33.866667pt;}
.y7_c00037{bottom:92.133333pt;}
.y3_c00037{bottom:127.333333pt;}
.y4_c00037{bottom:128.000000pt;}
.y5_c00037{bottom:128.266667pt;}
.y6_c00037{bottom:128.666667pt;}
.y2_c00037{bottom:989.733333pt;}
.y1_c00037{bottom:992.933333pt;}
.h2_c00037{height:32.000000pt;}
.h4_c00037{height:37.333333pt;}
.h3_c00037{height:53.333333pt;}
.h5_c00037{height:64.000000pt;}
.h1_c00037{height:1037.333333pt;}
.h0_c00037{height:1037.439941pt;}
.w0_c00037{width:811.840007pt;}
.w1_c00037{width:812.000000pt;}
.x0_c00037{left:0.000000pt;}
.x24_c00037{left:16.000000pt;}
.x25_c00037{left:41.600000pt;}
.x10_c00037{left:67.200000pt;}
.x1_c00037{left:89.600000pt;}
.x11_c00037{left:112.666667pt;}
.x2_c00037{left:129.600000pt;}
.x18_c00037{left:132.133333pt;}
.x12_c00037{left:150.133333pt;}
.x19_c00037{left:173.466667pt;}
.x3_c00037{left:214.666667pt;}
.x1a_c00037{left:216.666667pt;}
.x13_c00037{left:241.600000pt;}
.x4_c00037{left:257.200000pt;}
.x1b_c00037{left:259.600000pt;}
.x5_c00037{left:299.466667pt;}
.x1c_c00037{left:300.933333pt;}
.x14_c00037{left:318.666667pt;}
.x6_c00037{left:339.733333pt;}
.x1d_c00037{left:342.800000pt;}
.x15_c00037{left:360.000000pt;}
.x7_c00037{left:382.933333pt;}
.x8_c00037{left:425.866667pt;}
.x1e_c00037{left:427.466667pt;}
.x9_c00037{left:469.733333pt;}
.x1f_c00037{left:472.000000pt;}
.xa_c00037{left:511.600000pt;}
.xb_c00037{left:554.533333pt;}
.x20_c00037{left:556.533333pt;}
.xc_c00037{left:597.466667pt;}
.x21_c00037{left:599.466667pt;}
.xd_c00037{left:638.133333pt;}
.x22_c00037{left:640.133333pt;}
.xe_c00037{left:681.333333pt;}
.x23_c00037{left:683.066667pt;}
.xf_c00037{left:722.933333pt;}
.x16_c00037{left:768.000000pt;}
.x17_c00037{left:773.466667pt;}
}





/* 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_c00038 {
    display:none;
  }
  .loading-indicator_c00038.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00038 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_c00038 { 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_c00038" -> "#page-container .classname_c00038")
 */
.pf_c00038 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00038 { /* 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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00038 { /* 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_c00038 { /* 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_c00038 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00038 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00038 {overflow:visible;}
  }
}
.c_c00038 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00038 { /* 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_c00038:after { /* webkit #35443 */
  content: '';
}
.t_c00038:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00038 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 */
}
.__c00038 { /* 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_c00038 { /* info for Javascript */
  display:none;
}
.l_c00038 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00038 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00038 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00038: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_c00038 {
    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_c00038.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00038.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_c00038 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00038{font-family:sans-serif;visibility:hidden;}
.sc__c00038{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
}
.y0_c00038{bottom:0.000000px;}
.h1_c00038{height:1167.000000px;}
.h0_c00038{height:1167.119934px;}
.w0_c00038{width:913.320007px;}
.w1_c00038{width:913.500000px;}
.x0_c00038{left:0.000000px;}
@media print{
.y0_c00038{bottom:0.000000pt;}
.h1_c00038{height:1037.333333pt;}
.h0_c00038{height:1037.439941pt;}
.w0_c00038{width:811.840007pt;}
.w1_c00038{width:812.000000pt;}
.x0_c00038{left:0.000000pt;}
}





/* 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_c00039 {
    display:none;
  }
  .loading-indicator_c00039.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00039 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_c00039 { 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_c00039" -> "#page-container .classname_c00039")
 */
.pf_c00039 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00039 { /* 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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00039 { /* 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_c00039 { /* 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_c00039 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00039 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00039 {overflow:visible;}
  }
}
.c_c00039 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00039 { /* 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_c00039:after { /* webkit #35443 */
  content: '';
}
.t_c00039:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00039 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 */
}
.__c00039 { /* 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_c00039 { /* info for Javascript */
  display:none;
}
.l_c00039 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00039 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00039 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00039: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_c00039 {
    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_c00039.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00039.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_c00039 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00039{font-family:sans-serif;visibility:hidden;}
.sc__c00039{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
}
.y0_c00039{bottom:0.000000px;}
.h1_c00039{height:1167.000000px;}
.h0_c00039{height:1167.119934px;}
.w0_c00039{width:913.320007px;}
.w1_c00039{width:913.500000px;}
.x0_c00039{left:0.000000px;}
@media print{
.y0_c00039{bottom:0.000000pt;}
.h1_c00039{height:1037.333333pt;}
.h0_c00039{height:1037.439941pt;}
.w0_c00039{width:811.840007pt;}
.w1_c00039{width:812.000000pt;}
.x0_c00039{left:0.000000pt;}
}





/* 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_c00040 {
    display:none;
  }
  .loading-indicator_c00040.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00040 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_c00040 { 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_c00040" -> "#page-container .classname_c00040")
 */
.pf_c00040 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00040 { /* 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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00040 { /* 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_c00040 { /* 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_c00040 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00040 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00040 {overflow:visible;}
  }
}
.c_c00040 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00040 { /* 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_c00040:after { /* webkit #35443 */
  content: '';
}
.t_c00040:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00040 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 */
}
.__c00040 { /* 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_c00040 { /* info for Javascript */
  display:none;
}
.l_c00040 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00040 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00040 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00040: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_c00040 {
    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_c00040.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00040.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_c00040 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00040{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00040;src:url('chunks/assets/font_61a2dbaccd85e5c230bed072.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.000000;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;}
.m1f_c00040{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00040{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m19_c00040{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00040{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m20_c00040{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m16_c00040{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m21_c00040{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6_c00040{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00040{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00040{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00040{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00040{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00040{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m18_c00040{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mf_c00040{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.md_c00040{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00040{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.me_c00040{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00040{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00040{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m12_c00040{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m10_c00040{transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371250,0.000000,0.000000,0.250000,0,0);}
.mc_c00040{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m22_c00040{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mb_c00040{transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411000,0.000000,0.000000,0.250000,0,0);}
.v0_c00040{vertical-align:0.000000px;}
.v1_c00040{vertical-align:1.800000px;}
.ls0_c00040{letter-spacing:0.000000px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{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__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00040{word-spacing:0.000000px;}
.ws1_c00040{word-spacing:141.793103px;}
.ws0_c00040{word-spacing:151.692308px;}
._0_c00040{width:298.191042px;}
.fc0_c00040{color:transparent;}
.fs1_c00040{font-size:42.000000px;}
.fs0_c00040{font-size:48.000000px;}
.fs2_c00040{font-size:72.000000px;}
.fs3_c00040{font-size:90.000000px;}
.y0_c00040{bottom:0.000000px;}
.y8_c00040{bottom:33.900000px;}
.y9_c00040{bottom:34.500000px;}
.ya_c00040{bottom:34.950000px;}
.y7_c00040{bottom:62.700000px;}
.y5_c00040{bottom:101.850000px;}
.y4_c00040{bottom:114.750000px;}
.y6_c00040{bottom:131.400000px;}
.y3_c00040{bottom:141.750000px;}
.y2_c00040{bottom:168.450000px;}
.y1_c00040{bottom:1115.250000px;}
.h3_c00040{height:42.000000px;}
.h2_c00040{height:48.000000px;}
.h6_c00040{height:49.800000px;}
.h4_c00040{height:72.000000px;}
.h5_c00040{height:90.000000px;}
.h1_c00040{height:1167.000000px;}
.h0_c00040{height:1167.119934px;}
.w0_c00040{width:913.320007px;}
.w1_c00040{width:913.500000px;}
.x0_c00040{left:0.000000px;}
.x1d_c00040{left:30.600000px;}
.x20_c00040{left:83.100000px;}
.x1_c00040{left:85.650000px;}
.x11_c00040{left:97.050000px;}
.xa_c00040{left:102.900000px;}
.x18_c00040{left:118.200000px;}
.x2_c00040{left:135.300000px;}
.x12_c00040{left:148.950000px;}
.x19_c00040{left:150.300000px;}
.x13_c00040{left:172.050000px;}
.xb_c00040{left:173.850000px;}
.x3_c00040{left:180.600000px;}
.xc_c00040{left:206.550000px;}
.x1a_c00040{left:229.050000px;}
.x14_c00040{left:235.800000px;}
.x4_c00040{left:277.200000px;}
.xd_c00040{left:283.200000px;}
.x15_c00040{left:287.250000px;}
.x1b_c00040{left:299.250000px;}
.xe_c00040{left:305.850000px;}
.x5_c00040{left:325.050000px;}
.x21_c00040{left:326.250000px;}
.x16_c00040{left:327.900000px;}
.xf_c00040{left:340.800000px;}
.x17_c00040{left:369.600000px;}
.x6_c00040{left:372.900000px;}
.x10_c00040{left:390.450000px;}
.x1c_c00040{left:396.150000px;}
.x7_c00040{left:418.950000px;}
.x22_c00040{left:421.050000px;}
.x8_c00040{left:467.250000px;}
.x9_c00040{left:513.300000px;}
.x1e_c00040{left:547.950000px;}
.x23_c00040{left:561.600000px;}
.x1f_c00040{left:592.200000px;}
.x24_c00040{left:608.400000px;}
.x25_c00040{left:656.700000px;}
.x26_c00040{left:796.350000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.v1_c00040{vertical-align:1.600000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws2_c00040{word-spacing:0.000000pt;}
.ws1_c00040{word-spacing:126.038314pt;}
.ws0_c00040{word-spacing:134.837607pt;}
._0_c00040{width:265.058704pt;}
.fs1_c00040{font-size:37.333333pt;}
.fs0_c00040{font-size:42.666667pt;}
.fs2_c00040{font-size:64.000000pt;}
.fs3_c00040{font-size:80.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y8_c00040{bottom:30.133333pt;}
.y9_c00040{bottom:30.666667pt;}
.ya_c00040{bottom:31.066667pt;}
.y7_c00040{bottom:55.733333pt;}
.y5_c00040{bottom:90.533333pt;}
.y4_c00040{bottom:102.000000pt;}
.y6_c00040{bottom:116.800000pt;}
.y3_c00040{bottom:126.000000pt;}
.y2_c00040{bottom:149.733333pt;}
.y1_c00040{bottom:991.333333pt;}
.h3_c00040{height:37.333333pt;}
.h2_c00040{height:42.666667pt;}
.h6_c00040{height:44.266667pt;}
.h4_c00040{height:64.000000pt;}
.h5_c00040{height:80.000000pt;}
.h1_c00040{height:1037.333333pt;}
.h0_c00040{height:1037.439941pt;}
.w0_c00040{width:811.840007pt;}
.w1_c00040{width:812.000000pt;}
.x0_c00040{left:0.000000pt;}
.x1d_c00040{left:27.200000pt;}
.x20_c00040{left:73.866667pt;}
.x1_c00040{left:76.133333pt;}
.x11_c00040{left:86.266667pt;}
.xa_c00040{left:91.466667pt;}
.x18_c00040{left:105.066667pt;}
.x2_c00040{left:120.266667pt;}
.x12_c00040{left:132.400000pt;}
.x19_c00040{left:133.600000pt;}
.x13_c00040{left:152.933333pt;}
.xb_c00040{left:154.533333pt;}
.x3_c00040{left:160.533333pt;}
.xc_c00040{left:183.600000pt;}
.x1a_c00040{left:203.600000pt;}
.x14_c00040{left:209.600000pt;}
.x4_c00040{left:246.400000pt;}
.xd_c00040{left:251.733333pt;}
.x15_c00040{left:255.333333pt;}
.x1b_c00040{left:266.000000pt;}
.xe_c00040{left:271.866667pt;}
.x5_c00040{left:288.933333pt;}
.x21_c00040{left:290.000000pt;}
.x16_c00040{left:291.466667pt;}
.xf_c00040{left:302.933333pt;}
.x17_c00040{left:328.533333pt;}
.x6_c00040{left:331.466667pt;}
.x10_c00040{left:347.066667pt;}
.x1c_c00040{left:352.133333pt;}
.x7_c00040{left:372.400000pt;}
.x22_c00040{left:374.266667pt;}
.x8_c00040{left:415.333333pt;}
.x9_c00040{left:456.266667pt;}
.x1e_c00040{left:487.066667pt;}
.x23_c00040{left:499.200000pt;}
.x1f_c00040{left:526.400000pt;}
.x24_c00040{left:540.800000pt;}
.x25_c00040{left:583.733333pt;}
.x26_c00040{left:707.866667pt;}
}





/* 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_c00041 {
    display:none;
  }
  .loading-indicator_c00041.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00041 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_c00041 { 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_c00041" -> "#page-container .classname_c00041")
 */
.pf_c00041 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00041 { /* 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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00041 { /* 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_c00041 { /* 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_c00041 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00041 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00041 {overflow:visible;}
  }
}
.c_c00041 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00041 { /* 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_c00041:after { /* webkit #35443 */
  content: '';
}
.t_c00041:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00041 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 */
}
.__c00041 { /* 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_c00041 { /* info for Javascript */
  display:none;
}
.l_c00041 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00041 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00041 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00041: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_c00041 {
    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_c00041.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00041.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_c00041 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00041{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.000000;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_c00041{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m1_c00041{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m2_c00041{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{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__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fs0_c00041{font-size:48.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1_c00041{bottom:16.200000px;}
.h2_c00041{height:48.000000px;}
.h1_c00041{height:1167.000000px;}
.h0_c00041{height:1167.119934px;}
.w0_c00041{width:913.320007px;}
.w1_c00041{width:913.500000px;}
.x0_c00041{left:0.000000px;}
.x3_c00041{left:769.950000px;}
.x2_c00041{left:810.300000px;}
.x1_c00041{left:849.600000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.fs0_c00041{font-size:42.666667pt;}
.y0_c00041{bottom:0.000000pt;}
.y1_c00041{bottom:14.400000pt;}
.h2_c00041{height:42.666667pt;}
.h1_c00041{height:1037.333333pt;}
.h0_c00041{height:1037.439941pt;}
.w0_c00041{width:811.840007pt;}
.w1_c00041{width:812.000000pt;}
.x0_c00041{left:0.000000pt;}
.x3_c00041{left:684.400000pt;}
.x2_c00041{left:720.266667pt;}
.x1_c00041{left:755.200000pt;}
}





/* 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_c00042 {
    display:none;
  }
  .loading-indicator_c00042.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00042 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_c00042 { 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_c00042" -> "#page-container .classname_c00042")
 */
.pf_c00042 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00042 { /* 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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00042 { /* 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_c00042 { /* 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_c00042 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00042 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00042 {overflow:visible;}
  }
}
.c_c00042 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00042 { /* 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_c00042:after { /* webkit #35443 */
  content: '';
}
.t_c00042:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00042 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 */
}
.__c00042 { /* 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_c00042 { /* info for Javascript */
  display:none;
}
.l_c00042 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00042 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00042 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00042: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_c00042 {
    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_c00042.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00042.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_c00042 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00042{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00042;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.000000;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;}
.m6_c00042{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m0_c00042{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3_c00042{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m4_c00042{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1_c00042{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2_c00042{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m8_c00042{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9_c00042{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c00042{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m5_c00042{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00042{vertical-align:0.000000px;}
.ls0_c00042{letter-spacing:0.000000px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{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__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:0.000000px;}
.fc0_c00042{color:transparent;}
.fs1_c00042{font-size:36.000000px;}
.fs2_c00042{font-size:48.000000px;}
.fs0_c00042{font-size:54.000000px;}
.fs3_c00042{font-size:60.000000px;}
.fs4_c00042{font-size:78.000000px;}
.y0_c00042{bottom:0.000000px;}
.yc_c00042{bottom:187.500000px;}
.yb_c00042{bottom:249.150000px;}
.ya_c00042{bottom:333.300000px;}
.y9_c00042{bottom:373.650000px;}
.y8_c00042{bottom:433.800000px;}
.y7_c00042{bottom:455.100000px;}
.y6_c00042{bottom:495.000000px;}
.y5_c00042{bottom:536.100000px;}
.y4_c00042{bottom:557.400000px;}
.y3_c00042{bottom:577.500000px;}
.y2_c00042{bottom:597.900000px;}
.y1_c00042{bottom:617.700000px;}
.h3_c00042{height:36.000000px;}
.h4_c00042{height:48.000000px;}
.h2_c00042{height:54.000000px;}
.h5_c00042{height:60.000000px;}
.h6_c00042{height:78.000000px;}
.h1_c00042{height:1167.000000px;}
.h0_c00042{height:1167.119934px;}
.w0_c00042{width:913.320007px;}
.w1_c00042{width:913.500000px;}
.x0_c00042{left:0.000000px;}
.x3_c00042{left:901.500000px;}
.x2_c00042{left:902.550000px;}
.x1_c00042{left:903.600000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs1_c00042{font-size:32.000000pt;}
.fs2_c00042{font-size:42.666667pt;}
.fs0_c00042{font-size:48.000000pt;}
.fs3_c00042{font-size:53.333333pt;}
.fs4_c00042{font-size:69.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.yc_c00042{bottom:166.666667pt;}
.yb_c00042{bottom:221.466667pt;}
.ya_c00042{bottom:296.266667pt;}
.y9_c00042{bottom:332.133333pt;}
.y8_c00042{bottom:385.600000pt;}
.y7_c00042{bottom:404.533333pt;}
.y6_c00042{bottom:440.000000pt;}
.y5_c00042{bottom:476.533333pt;}
.y4_c00042{bottom:495.466667pt;}
.y3_c00042{bottom:513.333333pt;}
.y2_c00042{bottom:531.466667pt;}
.y1_c00042{bottom:549.066667pt;}
.h3_c00042{height:32.000000pt;}
.h4_c00042{height:42.666667pt;}
.h2_c00042{height:48.000000pt;}
.h5_c00042{height:53.333333pt;}
.h6_c00042{height:69.333333pt;}
.h1_c00042{height:1037.333333pt;}
.h0_c00042{height:1037.439941pt;}
.w0_c00042{width:811.840007pt;}
.w1_c00042{width:812.000000pt;}
.x0_c00042{left:0.000000pt;}
.x3_c00042{left:801.333333pt;}
.x2_c00042{left:802.266667pt;}
.x1_c00042{left:803.200000pt;}
}





/* 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_c00043 {
    display:none;
  }
  .loading-indicator_c00043.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00043 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_c00043 { 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_c00043" -> "#page-container .classname_c00043")
 */
.pf_c00043 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00043 { /* 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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00043 { /* 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_c00043 { /* 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_c00043 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00043 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00043 {overflow:visible;}
  }
}
.c_c00043 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00043 { /* 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_c00043:after { /* webkit #35443 */
  content: '';
}
.t_c00043:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00043 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 */
}
.__c00043 { /* 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_c00043 { /* info for Javascript */
  display:none;
}
.l_c00043 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00043 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00043 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00043: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_c00043 {
    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_c00043.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00043.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_c00043 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00043{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.000000;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;}
.m6e_c00043{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m98_c00043{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m26_c00043{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00043{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m93_c00043{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00043{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m63_c00043{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00043{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m68_c00043{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00043{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m35_c00043{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00043{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00043{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00043{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m88_c00043{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m96_c00043{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00043{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00043{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00043{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m79_c00043{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m66_c00043{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00043{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m81_c00043{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m19_c00043{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m59_c00043{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m92_c00043{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m97_c00043{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m41_c00043{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m64_c00043{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m40_c00043{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m69_c00043{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00043{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00043{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m60_c00043{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m49_c00043{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00043{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00043{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00043{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m65_c00043{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m71_c00043{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00043{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00043{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00043{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m42_c00043{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00043{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m28_c00043{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00043{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m54_c00043{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00043{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00043{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00043{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m43_c00043{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m70_c00043{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m57_c00043{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m53_c00043{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00043{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m55_c00043{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m62_c00043{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m85_c00043{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00043{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m20_c00043{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00043{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00043{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m13_c00043{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m21_c00043{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00043{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00043{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m82_c00043{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00043{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m34_c00043{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00043{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m83_c00043{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m74_c00043{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m73_c00043{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m22_c00043{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m25_c00043{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m95_c00043{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00043{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00043{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00043{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00043{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m67_c00043{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m37_c00043{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m39_c00043{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00043{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00043{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00043{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m52_c00043{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00043{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m46_c00043{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m72_c00043{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m27_c00043{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00043{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m47_c00043{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m48_c00043{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m91_c00043{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00043{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00043{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00043{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00043{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m77_c00043{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00043{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00043{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00043{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m58_c00043{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00043{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m44_c00043{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00043{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00043{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m56_c00043{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00043{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m94_c00043{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);}
.ma8_c00043{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m38_c00043{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17_c00043{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00043{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m24_c00043{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m32_c00043{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00043{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m30_c00043{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m23_c00043{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00043{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m99_c00043{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00043{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00043{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m45_c00043{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m14_c00043{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m87_c00043{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m78_c00043{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00043{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00043{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00043{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m50_c00043{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m76_c00043{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00043{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00043{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m80_c00043{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00043{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00043{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00043{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00043{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m89_c00043{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00043{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00043{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m75_c00043{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00043{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m1_c00043{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.me_c00043{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00043{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.ma_c00043{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.mb_c00043{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.mc_c00043{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m0_c00043{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.m5_c00043{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.md_c00043{transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.651500,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{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__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:-8.750000px;}
.ws2_c00043{word-spacing:-4.861111px;}
.ws3_c00043{word-spacing:0.000000px;}
.ws4_c00043{word-spacing:0.800000px;}
.ws1_c00043{word-spacing:8.970588px;}
.fc0_c00043{color:transparent;}
.fs1_c00043{font-size:42.000000px;}
.fs3_c00043{font-size:48.000000px;}
.fs2_c00043{font-size:60.000000px;}
.fs0_c00043{font-size:90.000000px;}
.y0_c00043{bottom:0.000000px;}
.y21_c00043{bottom:144.000000px;}
.y20_c00043{bottom:160.200000px;}
.y1f_c00043{bottom:176.100000px;}
.y1e_c00043{bottom:206.400000px;}
.y1d_c00043{bottom:226.500000px;}
.y1c_c00043{bottom:245.550000px;}
.y1b_c00043{bottom:266.100000px;}
.y1a_c00043{bottom:285.900000px;}
.y19_c00043{bottom:305.400000px;}
.y18_c00043{bottom:326.250000px;}
.y17_c00043{bottom:346.050000px;}
.y16_c00043{bottom:365.850000px;}
.y15_c00043{bottom:385.650000px;}
.y14_c00043{bottom:405.750000px;}
.y13_c00043{bottom:425.550000px;}
.y12_c00043{bottom:445.350000px;}
.y11_c00043{bottom:465.450000px;}
.y10_c00043{bottom:485.250000px;}
.yf_c00043{bottom:504.750000px;}
.ye_c00043{bottom:525.600000px;}
.yd_c00043{bottom:544.350000px;}
.yc_c00043{bottom:565.200000px;}
.yb_c00043{bottom:585.300000px;}
.ya_c00043{bottom:605.400000px;}
.y9_c00043{bottom:625.200000px;}
.y8_c00043{bottom:644.700000px;}
.y7_c00043{bottom:663.900000px;}
.y6_c00043{bottom:684.750000px;}
.y5_c00043{bottom:704.550000px;}
.y4_c00043{bottom:724.650000px;}
.y3_c00043{bottom:757.500000px;}
.y2_c00043{bottom:777.900000px;}
.y1_c00043{bottom:857.100000px;}
.h3_c00043{height:42.000000px;}
.h5_c00043{height:48.000000px;}
.h4_c00043{height:60.000000px;}
.h2_c00043{height:90.000000px;}
.h1_c00043{height:1167.000000px;}
.h0_c00043{height:1167.119934px;}
.w0_c00043{width:913.320007px;}
.w1_c00043{width:913.500000px;}
.x0_c00043{left:0.000000px;}
.x15_c00043{left:87.450000px;}
.x85_c00043{left:88.950000px;}
.x63_c00043{left:105.150000px;}
.xce_c00043{left:108.450000px;}
.x3f_c00043{left:110.400000px;}
.xaf_c00043{left:112.800000px;}
.x6e_c00043{left:115.650000px;}
.x4d_c00043{left:118.800000px;}
.xdf_c00043{left:120.600000px;}
.x9d_c00043{left:121.800000px;}
.x16_c00043{left:123.750000px;}
.xee_c00043{left:125.850000px;}
.xe6_c00043{left:127.950000px;}
.x2_c00043{left:129.900000px;}
.x88_c00043{left:131.100000px;}
.x79_c00043{left:132.900000px;}
.x4e_c00043{left:134.250000px;}
.xa4_c00043{left:135.600000px;}
.x90_c00043{left:139.050000px;}
.x64_c00043{left:143.250000px;}
.x40_c00043{left:146.700000px;}
.x2f_c00043{left:148.650000px;}
.xb0_c00043{left:150.600000px;}
.x7a_c00043{left:153.000000px;}
.x23_c00043{left:160.050000px;}
.x95_c00043{left:162.000000px;}
.x6f_c00043{left:163.200000px;}
.x17_c00043{left:165.150000px;}
.x89_c00043{left:166.800000px;}
.xcf_c00043{left:169.950000px;}
.xef_c00043{left:171.300000px;}
.x4f_c00043{left:172.800000px;}
.x3_c00043{left:176.400000px;}
.x30_c00043{left:177.450000px;}
.x9e_c00043{left:178.650000px;}
.xf9_c00043{left:180.000000px;}
.xd5_c00043{left:182.700000px;}
.x70_c00043{left:184.800000px;}
.x86_c00043{left:188.250000px;}
.x65_c00043{left:190.350000px;}
.x41_c00043{left:192.000000px;}
.x50_c00043{left:193.350000px;}
.x71_c00043{left:195.600000px;}
.xd0_c00043{left:198.000000px;}
.xc6_c00043{left:200.700000px;}
.x5a_c00043{left:204.750000px;}
.x4_c00043{left:207.000000px;}
.x51_c00043{left:208.500000px;}
.xdb_c00043{left:210.000000px;}
.x66_c00043{left:211.650000px;}
.x91_c00043{left:212.850000px;}
.xf_c00043{left:216.300000px;}
.xa5_c00043{left:220.950000px;}
.x18_c00043{left:223.500000px;}
.xbf_c00043{left:224.700000px;}
.x42_c00043{left:226.950000px;}
.xb8_c00043{left:231.000000px;}
.x9f_c00043{left:232.950000px;}
.x7b_c00043{left:237.900000px;}
.xa6_c00043{left:241.050000px;}
.x5_c00043{left:244.050000px;}
.xfa_c00043{left:245.550000px;}
.x31_c00043{left:247.350000px;}
.x43_c00043{left:249.300000px;}
.xdc_c00043{left:251.400000px;}
.x24_c00043{left:252.600000px;}
.xd1_c00043{left:255.300000px;}
.xe7_c00043{left:256.800000px;}
.x52_c00043{left:261.000000px;}
.xe0_c00043{left:262.800000px;}
.x6_c00043{left:263.850000px;}
.x32_c00043{left:265.050000px;}
.xb9_c00043{left:266.700000px;}
.x67_c00043{left:268.200000px;}
.xfe_c00043{left:269.550000px;}
.xdd_c00043{left:271.950000px;}
.x5b_c00043{left:273.900000px;}
.x25_c00043{left:276.300000px;}
.xb1_c00043{left:277.650000px;}
.x7c_c00043{left:282.600000px;}
.xc0_c00043{left:284.100000px;}
.xa0_c00043{left:285.150000px;}
.x72_c00043{left:288.150000px;}
.x92_c00043{left:289.200000px;}
.xd6_c00043{left:290.700000px;}
.x96_c00043{left:292.350000px;}
.x7_c00043{left:293.700000px;}
.x33_c00043{left:296.400000px;}
.x68_c00043{left:302.700000px;}
.x87_c00043{left:304.500000px;}
.xf0_c00043{left:308.100000px;}
.x10_c00043{left:310.350000px;}
.x1_c00043{left:313.200000px;}
.xde_c00043{left:315.450000px;}
.x101_c00043{left:316.500000px;}
.xa7_c00043{left:319.050000px;}
.xba_c00043{left:321.000000px;}
.xe1_c00043{left:322.200000px;}
.x44_c00043{left:323.850000px;}
.x102_c00043{left:325.800000px;}
.x19_c00043{left:327.600000px;}
.x97_c00043{left:330.900000px;}
.x34_c00043{left:332.700000px;}
.xa1_c00043{left:333.750000px;}
.x69_c00043{left:335.850000px;}
.x5c_c00043{left:344.100000px;}
.xc7_c00043{left:345.150000px;}
.x45_c00043{left:348.000000px;}
.x8_c00043{left:349.200000px;}
.x8a_c00043{left:354.750000px;}
.x53_c00043{left:358.500000px;}
.x73_c00043{left:360.600000px;}
.x26_c00043{left:363.000000px;}
.x11_c00043{left:366.150000px;}
.xf6_c00043{left:368.700000px;}
.x46_c00043{left:371.100000px;}
.x1a_c00043{left:373.650000px;}
.xf1_c00043{left:379.800000px;}
.x98_c00043{left:382.050000px;}
.x8b_c00043{left:383.250000px;}
.x9_c00043{left:385.500000px;}
.x7d_c00043{left:387.300000px;}
.x35_c00043{left:388.800000px;}
.xc1_c00043{left:390.000000px;}
.xa8_c00043{left:391.350000px;}
.x74_c00043{left:392.700000px;}
.xc8_c00043{left:394.800000px;}
.x5d_c00043{left:396.000000px;}
.xb2_c00043{left:397.200000px;}
.x6a_c00043{left:398.850000px;}
.xf2_c00043{left:401.400000px;}
.x1b_c00043{left:403.200000px;}
.xd7_c00043{left:406.350000px;}
.x7e_c00043{left:408.150000px;}
.xc2_c00043{left:410.100000px;}
.x93_c00043{left:413.400000px;}
.xb3_c00043{left:415.500000px;}
.x36_c00043{left:416.850000px;}
.xff_c00043{left:418.500000px;}
.x47_c00043{left:420.750000px;}
.x1c_c00043{left:422.250000px;}
.xe8_c00043{left:425.700000px;}
.x12_c00043{left:427.650000px;}
.x6b_c00043{left:428.700000px;}
.x27_c00043{left:431.100000px;}
.xf3_c00043{left:432.750000px;}
.xa2_c00043{left:436.350000px;}
.xf7_c00043{left:437.400000px;}
.xa9_c00043{left:439.950000px;}
.x94_c00043{left:443.700000px;}
.x99_c00043{left:445.050000px;}
.x48_c00043{left:448.800000px;}
.x100_c00043{left:450.150000px;}
.xc3_c00043{left:451.200000px;}
.x1d_c00043{left:453.900000px;}
.xa_c00043{left:456.450000px;}
.xe9_c00043{left:459.900000px;}
.xd2_c00043{left:462.450000px;}
.xb4_c00043{left:465.900000px;}
.xaa_c00043{left:469.800000px;}
.x7f_c00043{left:470.850000px;}
.xe2_c00043{left:472.350000px;}
.xb_c00043{left:473.400000px;}
.x75_c00043{left:476.250000px;}
.xbb_c00043{left:477.900000px;}
.x54_c00043{left:481.650000px;}
.x37_c00043{left:485.550000px;}
.x5e_c00043{left:487.800000px;}
.x13_c00043{left:489.150000px;}
.x28_c00043{left:490.200000px;}
.xb5_c00043{left:492.900000px;}
.x49_c00043{left:494.850000px;}
.x1e_c00043{left:496.050000px;}
.xf4_c00043{left:499.350000px;}
.x80_c00043{left:502.500000px;}
.x29_c00043{left:511.500000px;}
.x4a_c00043{left:514.650000px;}
.x8c_c00043{left:516.750000px;}
.xd8_c00043{left:520.650000px;}
.x38_c00043{left:521.850000px;}
.xe3_c00043{left:527.100000px;}
.x9a_c00043{left:528.600000px;}
.x1f_c00043{left:532.350000px;}
.x14_c00043{left:535.650000px;}
.xb6_c00043{left:537.150000px;}
.x39_c00043{left:541.650000px;}
.x4b_c00043{left:543.150000px;}
.xc4_c00043{left:547.650000px;}
.xc9_c00043{left:548.850000px;}
.xea_c00043{left:550.200000px;}
.xfb_c00043{left:552.300000px;}
.x55_c00043{left:553.350000px;}
.x2a_c00043{left:554.700000px;}
.x103_c00043{left:556.650000px;}
.xc_c00043{left:563.400000px;}
.xd9_c00043{left:564.900000px;}
.xe4_c00043{left:565.950000px;}
.x5f_c00043{left:567.000000px;}
.x3a_c00043{left:569.700000px;}
.x6c_c00043{left:573.150000px;}
.x56_c00043{left:577.050000px;}
.x81_c00043{left:579.600000px;}
.xab_c00043{left:582.150000px;}
.xb7_c00043{left:585.750000px;}
.xbc_c00043{left:588.000000px;}
.xca_c00043{left:590.550000px;}
.xf5_c00043{left:592.650000px;}
.xfc_c00043{left:594.000000px;}
.x76_c00043{left:595.500000px;}
.x4c_c00043{left:597.900000px;}
.x9b_c00043{left:599.550000px;}
.xd3_c00043{left:603.600000px;}
.xcb_c00043{left:604.650000px;}
.xbd_c00043{left:607.500000px;}
.x60_c00043{left:609.150000px;}
.x3b_c00043{left:611.100000px;}
.xac_c00043{left:616.350000px;}
.x20_c00043{left:618.450000px;}
.x82_c00043{left:621.000000px;}
.x2b_c00043{left:623.100000px;}
.xfd_c00043{left:625.650000px;}
.xc5_c00043{left:627.150000px;}
.x8d_c00043{left:630.900000px;}
.xd_c00043{left:632.100000px;}
.xeb_c00043{left:634.800000px;}
.x61_c00043{left:637.650000px;}
.xcc_c00043{left:641.400000px;}
.x3c_c00043{left:643.800000px;}
.x57_c00043{left:645.450000px;}
.xe_c00043{left:649.050000px;}
.x6d_c00043{left:652.050000px;}
.xbe_c00043{left:654.600000px;}
.xec_c00043{left:656.400000px;}
.x83_c00043{left:658.500000px;}
.x2c_c00043{left:662.400000px;}
.x3d_c00043{left:664.650000px;}
.xad_c00043{left:669.750000px;}
.x9c_c00043{left:673.350000px;}
.x58_c00043{left:676.800000px;}
.xda_c00043{left:678.000000px;}
.x8e_c00043{left:682.350000px;}
.x2d_c00043{left:684.000000px;}
.xa3_c00043{left:685.650000px;}
.x62_c00043{left:687.000000px;}
.xf8_c00043{left:690.300000px;}
.x21_c00043{left:691.950000px;}
.xed_c00043{left:693.150000px;}
.xcd_c00043{left:696.450000px;}
.x3e_c00043{left:703.950000px;}
.xe5_c00043{left:709.650000px;}
.x77_c00043{left:714.000000px;}
.xd4_c00043{left:715.500000px;}
.x8f_c00043{left:716.850000px;}
.x22_c00043{left:722.850000px;}
.x84_c00043{left:731.250000px;}
.x78_c00043{left:734.100000px;}
.xae_c00043{left:736.050000px;}
.x59_c00043{left:737.250000px;}
.x2e_c00043{left:738.750000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:-7.777778pt;}
.ws2_c00043{word-spacing:-4.320988pt;}
.ws3_c00043{word-spacing:0.000000pt;}
.ws4_c00043{word-spacing:0.711111pt;}
.ws1_c00043{word-spacing:7.973856pt;}
.fs1_c00043{font-size:37.333333pt;}
.fs3_c00043{font-size:42.666667pt;}
.fs2_c00043{font-size:53.333333pt;}
.fs0_c00043{font-size:80.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y21_c00043{bottom:128.000000pt;}
.y20_c00043{bottom:142.400000pt;}
.y1f_c00043{bottom:156.533333pt;}
.y1e_c00043{bottom:183.466667pt;}
.y1d_c00043{bottom:201.333333pt;}
.y1c_c00043{bottom:218.266667pt;}
.y1b_c00043{bottom:236.533333pt;}
.y1a_c00043{bottom:254.133333pt;}
.y19_c00043{bottom:271.466667pt;}
.y18_c00043{bottom:290.000000pt;}
.y17_c00043{bottom:307.600000pt;}
.y16_c00043{bottom:325.200000pt;}
.y15_c00043{bottom:342.800000pt;}
.y14_c00043{bottom:360.666667pt;}
.y13_c00043{bottom:378.266667pt;}
.y12_c00043{bottom:395.866667pt;}
.y11_c00043{bottom:413.733333pt;}
.y10_c00043{bottom:431.333333pt;}
.yf_c00043{bottom:448.666667pt;}
.ye_c00043{bottom:467.200000pt;}
.yd_c00043{bottom:483.866667pt;}
.yc_c00043{bottom:502.400000pt;}
.yb_c00043{bottom:520.266667pt;}
.ya_c00043{bottom:538.133333pt;}
.y9_c00043{bottom:555.733333pt;}
.y8_c00043{bottom:573.066667pt;}
.y7_c00043{bottom:590.133333pt;}
.y6_c00043{bottom:608.666667pt;}
.y5_c00043{bottom:626.266667pt;}
.y4_c00043{bottom:644.133333pt;}
.y3_c00043{bottom:673.333333pt;}
.y2_c00043{bottom:691.466667pt;}
.y1_c00043{bottom:761.866667pt;}
.h3_c00043{height:37.333333pt;}
.h5_c00043{height:42.666667pt;}
.h4_c00043{height:53.333333pt;}
.h2_c00043{height:80.000000pt;}
.h1_c00043{height:1037.333333pt;}
.h0_c00043{height:1037.439941pt;}
.w0_c00043{width:811.840007pt;}
.w1_c00043{width:812.000000pt;}
.x0_c00043{left:0.000000pt;}
.x15_c00043{left:77.733333pt;}
.x85_c00043{left:79.066667pt;}
.x63_c00043{left:93.466667pt;}
.xce_c00043{left:96.400000pt;}
.x3f_c00043{left:98.133333pt;}
.xaf_c00043{left:100.266667pt;}
.x6e_c00043{left:102.800000pt;}
.x4d_c00043{left:105.600000pt;}
.xdf_c00043{left:107.200000pt;}
.x9d_c00043{left:108.266667pt;}
.x16_c00043{left:110.000000pt;}
.xee_c00043{left:111.866667pt;}
.xe6_c00043{left:113.733333pt;}
.x2_c00043{left:115.466667pt;}
.x88_c00043{left:116.533333pt;}
.x79_c00043{left:118.133333pt;}
.x4e_c00043{left:119.333333pt;}
.xa4_c00043{left:120.533333pt;}
.x90_c00043{left:123.600000pt;}
.x64_c00043{left:127.333333pt;}
.x40_c00043{left:130.400000pt;}
.x2f_c00043{left:132.133333pt;}
.xb0_c00043{left:133.866667pt;}
.x7a_c00043{left:136.000000pt;}
.x23_c00043{left:142.266667pt;}
.x95_c00043{left:144.000000pt;}
.x6f_c00043{left:145.066667pt;}
.x17_c00043{left:146.800000pt;}
.x89_c00043{left:148.266667pt;}
.xcf_c00043{left:151.066667pt;}
.xef_c00043{left:152.266667pt;}
.x4f_c00043{left:153.600000pt;}
.x3_c00043{left:156.800000pt;}
.x30_c00043{left:157.733333pt;}
.x9e_c00043{left:158.800000pt;}
.xf9_c00043{left:160.000000pt;}
.xd5_c00043{left:162.400000pt;}
.x70_c00043{left:164.266667pt;}
.x86_c00043{left:167.333333pt;}
.x65_c00043{left:169.200000pt;}
.x41_c00043{left:170.666667pt;}
.x50_c00043{left:171.866667pt;}
.x71_c00043{left:173.866667pt;}
.xd0_c00043{left:176.000000pt;}
.xc6_c00043{left:178.400000pt;}
.x5a_c00043{left:182.000000pt;}
.x4_c00043{left:184.000000pt;}
.x51_c00043{left:185.333333pt;}
.xdb_c00043{left:186.666667pt;}
.x66_c00043{left:188.133333pt;}
.x91_c00043{left:189.200000pt;}
.xf_c00043{left:192.266667pt;}
.xa5_c00043{left:196.400000pt;}
.x18_c00043{left:198.666667pt;}
.xbf_c00043{left:199.733333pt;}
.x42_c00043{left:201.733333pt;}
.xb8_c00043{left:205.333333pt;}
.x9f_c00043{left:207.066667pt;}
.x7b_c00043{left:211.466667pt;}
.xa6_c00043{left:214.266667pt;}
.x5_c00043{left:216.933333pt;}
.xfa_c00043{left:218.266667pt;}
.x31_c00043{left:219.866667pt;}
.x43_c00043{left:221.600000pt;}
.xdc_c00043{left:223.466667pt;}
.x24_c00043{left:224.533333pt;}
.xd1_c00043{left:226.933333pt;}
.xe7_c00043{left:228.266667pt;}
.x52_c00043{left:232.000000pt;}
.xe0_c00043{left:233.600000pt;}
.x6_c00043{left:234.533333pt;}
.x32_c00043{left:235.600000pt;}
.xb9_c00043{left:237.066667pt;}
.x67_c00043{left:238.400000pt;}
.xfe_c00043{left:239.600000pt;}
.xdd_c00043{left:241.733333pt;}
.x5b_c00043{left:243.466667pt;}
.x25_c00043{left:245.600000pt;}
.xb1_c00043{left:246.800000pt;}
.x7c_c00043{left:251.200000pt;}
.xc0_c00043{left:252.533333pt;}
.xa0_c00043{left:253.466667pt;}
.x72_c00043{left:256.133333pt;}
.x92_c00043{left:257.066667pt;}
.xd6_c00043{left:258.400000pt;}
.x96_c00043{left:259.866667pt;}
.x7_c00043{left:261.066667pt;}
.x33_c00043{left:263.466667pt;}
.x68_c00043{left:269.066667pt;}
.x87_c00043{left:270.666667pt;}
.xf0_c00043{left:273.866667pt;}
.x10_c00043{left:275.866667pt;}
.x1_c00043{left:278.400000pt;}
.xde_c00043{left:280.400000pt;}
.x101_c00043{left:281.333333pt;}
.xa7_c00043{left:283.600000pt;}
.xba_c00043{left:285.333333pt;}
.xe1_c00043{left:286.400000pt;}
.x44_c00043{left:287.866667pt;}
.x102_c00043{left:289.600000pt;}
.x19_c00043{left:291.200000pt;}
.x97_c00043{left:294.133333pt;}
.x34_c00043{left:295.733333pt;}
.xa1_c00043{left:296.666667pt;}
.x69_c00043{left:298.533333pt;}
.x5c_c00043{left:305.866667pt;}
.xc7_c00043{left:306.800000pt;}
.x45_c00043{left:309.333333pt;}
.x8_c00043{left:310.400000pt;}
.x8a_c00043{left:315.333333pt;}
.x53_c00043{left:318.666667pt;}
.x73_c00043{left:320.533333pt;}
.x26_c00043{left:322.666667pt;}
.x11_c00043{left:325.466667pt;}
.xf6_c00043{left:327.733333pt;}
.x46_c00043{left:329.866667pt;}
.x1a_c00043{left:332.133333pt;}
.xf1_c00043{left:337.600000pt;}
.x98_c00043{left:339.600000pt;}
.x8b_c00043{left:340.666667pt;}
.x9_c00043{left:342.666667pt;}
.x7d_c00043{left:344.266667pt;}
.x35_c00043{left:345.600000pt;}
.xc1_c00043{left:346.666667pt;}
.xa8_c00043{left:347.866667pt;}
.x74_c00043{left:349.066667pt;}
.xc8_c00043{left:350.933333pt;}
.x5d_c00043{left:352.000000pt;}
.xb2_c00043{left:353.066667pt;}
.x6a_c00043{left:354.533333pt;}
.xf2_c00043{left:356.800000pt;}
.x1b_c00043{left:358.400000pt;}
.xd7_c00043{left:361.200000pt;}
.x7e_c00043{left:362.800000pt;}
.xc2_c00043{left:364.533333pt;}
.x93_c00043{left:367.466667pt;}
.xb3_c00043{left:369.333333pt;}
.x36_c00043{left:370.533333pt;}
.xff_c00043{left:372.000000pt;}
.x47_c00043{left:374.000000pt;}
.x1c_c00043{left:375.333333pt;}
.xe8_c00043{left:378.400000pt;}
.x12_c00043{left:380.133333pt;}
.x6b_c00043{left:381.066667pt;}
.x27_c00043{left:383.200000pt;}
.xf3_c00043{left:384.666667pt;}
.xa2_c00043{left:387.866667pt;}
.xf7_c00043{left:388.800000pt;}
.xa9_c00043{left:391.066667pt;}
.x94_c00043{left:394.400000pt;}
.x99_c00043{left:395.600000pt;}
.x48_c00043{left:398.933333pt;}
.x100_c00043{left:400.133333pt;}
.xc3_c00043{left:401.066667pt;}
.x1d_c00043{left:403.466667pt;}
.xa_c00043{left:405.733333pt;}
.xe9_c00043{left:408.800000pt;}
.xd2_c00043{left:411.066667pt;}
.xb4_c00043{left:414.133333pt;}
.xaa_c00043{left:417.600000pt;}
.x7f_c00043{left:418.533333pt;}
.xe2_c00043{left:419.866667pt;}
.xb_c00043{left:420.800000pt;}
.x75_c00043{left:423.333333pt;}
.xbb_c00043{left:424.800000pt;}
.x54_c00043{left:428.133333pt;}
.x37_c00043{left:431.600000pt;}
.x5e_c00043{left:433.600000pt;}
.x13_c00043{left:434.800000pt;}
.x28_c00043{left:435.733333pt;}
.xb5_c00043{left:438.133333pt;}
.x49_c00043{left:439.866667pt;}
.x1e_c00043{left:440.933333pt;}
.xf4_c00043{left:443.866667pt;}
.x80_c00043{left:446.666667pt;}
.x29_c00043{left:454.666667pt;}
.x4a_c00043{left:457.466667pt;}
.x8c_c00043{left:459.333333pt;}
.xd8_c00043{left:462.800000pt;}
.x38_c00043{left:463.866667pt;}
.xe3_c00043{left:468.533333pt;}
.x9a_c00043{left:469.866667pt;}
.x1f_c00043{left:473.200000pt;}
.x14_c00043{left:476.133333pt;}
.xb6_c00043{left:477.466667pt;}
.x39_c00043{left:481.466667pt;}
.x4b_c00043{left:482.800000pt;}
.xc4_c00043{left:486.800000pt;}
.xc9_c00043{left:487.866667pt;}
.xea_c00043{left:489.066667pt;}
.xfb_c00043{left:490.933333pt;}
.x55_c00043{left:491.866667pt;}
.x2a_c00043{left:493.066667pt;}
.x103_c00043{left:494.800000pt;}
.xc_c00043{left:500.800000pt;}
.xd9_c00043{left:502.133333pt;}
.xe4_c00043{left:503.066667pt;}
.x5f_c00043{left:504.000000pt;}
.x3a_c00043{left:506.400000pt;}
.x6c_c00043{left:509.466667pt;}
.x56_c00043{left:512.933333pt;}
.x81_c00043{left:515.200000pt;}
.xab_c00043{left:517.466667pt;}
.xb7_c00043{left:520.666667pt;}
.xbc_c00043{left:522.666667pt;}
.xca_c00043{left:524.933333pt;}
.xf5_c00043{left:526.800000pt;}
.xfc_c00043{left:528.000000pt;}
.x76_c00043{left:529.333333pt;}
.x4c_c00043{left:531.466667pt;}
.x9b_c00043{left:532.933333pt;}
.xd3_c00043{left:536.533333pt;}
.xcb_c00043{left:537.466667pt;}
.xbd_c00043{left:540.000000pt;}
.x60_c00043{left:541.466667pt;}
.x3b_c00043{left:543.200000pt;}
.xac_c00043{left:547.866667pt;}
.x20_c00043{left:549.733333pt;}
.x82_c00043{left:552.000000pt;}
.x2b_c00043{left:553.866667pt;}
.xfd_c00043{left:556.133333pt;}
.xc5_c00043{left:557.466667pt;}
.x8d_c00043{left:560.800000pt;}
.xd_c00043{left:561.866667pt;}
.xeb_c00043{left:564.266667pt;}
.x61_c00043{left:566.800000pt;}
.xcc_c00043{left:570.133333pt;}
.x3c_c00043{left:572.266667pt;}
.x57_c00043{left:573.733333pt;}
.xe_c00043{left:576.933333pt;}
.x6d_c00043{left:579.600000pt;}
.xbe_c00043{left:581.866667pt;}
.xec_c00043{left:583.466667pt;}
.x83_c00043{left:585.333333pt;}
.x2c_c00043{left:588.800000pt;}
.x3d_c00043{left:590.800000pt;}
.xad_c00043{left:595.333333pt;}
.x9c_c00043{left:598.533333pt;}
.x58_c00043{left:601.600000pt;}
.xda_c00043{left:602.666667pt;}
.x8e_c00043{left:606.533333pt;}
.x2d_c00043{left:608.000000pt;}
.xa3_c00043{left:609.466667pt;}
.x62_c00043{left:610.666667pt;}
.xf8_c00043{left:613.600000pt;}
.x21_c00043{left:615.066667pt;}
.xed_c00043{left:616.133333pt;}
.xcd_c00043{left:619.066667pt;}
.x3e_c00043{left:625.733333pt;}
.xe5_c00043{left:630.800000pt;}
.x77_c00043{left:634.666667pt;}
.xd4_c00043{left:636.000000pt;}
.x8f_c00043{left:637.200000pt;}
.x22_c00043{left:642.533333pt;}
.x84_c00043{left:650.000000pt;}
.x78_c00043{left:652.533333pt;}
.xae_c00043{left:654.266667pt;}
.x59_c00043{left:655.333333pt;}
.x2e_c00043{left:656.666667pt;}
}





/* 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_c00044 {
    display:none;
  }
  .loading-indicator_c00044.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00044 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_c00044 { 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_c00044" -> "#page-container .classname_c00044")
 */
.pf_c00044 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00044 { /* 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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00044 { /* 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_c00044 { /* 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_c00044 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00044 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00044 {overflow:visible;}
  }
}
.c_c00044 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00044 { /* 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_c00044:after { /* webkit #35443 */
  content: '';
}
.t_c00044:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00044 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 */
}
.__c00044 { /* 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_c00044 { /* info for Javascript */
  display:none;
}
.l_c00044 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00044 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00044 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00044: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_c00044 {
    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_c00044.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00044.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_c00044 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00044{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00044;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.000000;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;}
.m4a_c00044{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00044{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00044{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m73_c00044{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00044{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00044{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00044{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m43_c00044{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m72_c00044{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m85_c00044{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m77_c00044{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m37_c00044{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m74_c00044{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m78_c00044{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00044{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00044{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00044{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00044{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m88_c00044{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m65_c00044{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m21_c00044{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m47_c00044{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m55_c00044{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m17_c00044{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00044{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00044{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00044{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00044{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00044{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00044{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00044{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m97_c00044{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m30_c00044{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00044{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m34_c00044{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00044{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00044{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me_c00044{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m80_c00044{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m49_c00044{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m94_c00044{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00044{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00044{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10_c00044{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m36_c00044{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00044{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m12_c00044{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00044{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00044{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00044{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mc_c00044{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00044{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m44_c00044{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m26_c00044{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m99_c00044{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00044{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m54_c00044{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m40_c00044{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m42_c00044{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m38_c00044{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m91_c00044{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00044{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m69_c00044{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m67_c00044{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13_c00044{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md_c00044{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00044{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00044{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m76_c00044{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m81_c00044{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m59_c00044{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m11_c00044{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m82_c00044{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m27_c00044{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m23_c00044{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00044{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00044{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00044{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m95_c00044{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m24_c00044{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m62_c00044{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m70_c00044{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m46_c00044{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m84_c00044{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m51_c00044{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00044{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00044{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00044{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m53_c00044{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00044{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00044{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m29_c00044{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m52_c00044{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00044{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m15_c00044{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m22_c00044{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m86_c00044{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m25_c00044{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00044{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m96_c00044{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00044{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00044{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m41_c00044{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00044{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00044{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m45_c00044{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00044{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19_c00044{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00044{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00044{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m64_c00044{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m98_c00044{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m89_c00044{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m92_c00044{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00044{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00044{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m50_c00044{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00044{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00044{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m83_c00044{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00044{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m57_c00044{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00044{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00044{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m75_c00044{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m58_c00044{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00044{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00044{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00044{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00044{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m33_c00044{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00044{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m68_c00044{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m32_c00044{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m35_c00044{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00044{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00044{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00044{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m71_c00044{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00044{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m66_c00044{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m39_c00044{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00044{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m48_c00044{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00044{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00044{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m87_c00044{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m60_c00044{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1_c00044{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00044{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m18_c00044{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00044{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00044{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m63_c00044{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m56_c00044{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00044{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00044{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m93_c00044{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.v0_c00044{vertical-align:0.000000px;}
.ls0_c00044{letter-spacing:0.000000px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{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__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00044{word-spacing:-5.441176px;}
.ws0_c00044{word-spacing:-3.194444px;}
.ws3_c00044{word-spacing:-2.878788px;}
.ws9_c00044{word-spacing:0.000000px;}
.ws6_c00044{word-spacing:1.666667px;}
.ws2_c00044{word-spacing:2.058824px;}
.ws4_c00044{word-spacing:6.250000px;}
.ws7_c00044{word-spacing:10.277778px;}
.ws1_c00044{word-spacing:14.264706px;}
.ws8_c00044{word-spacing:28.382353px;}
.fc0_c00044{color:transparent;}
.fs0_c00044{font-size:54.000000px;}
.fs1_c00044{font-size:60.000000px;}
.y0_c00044{bottom:0.000000px;}
.y28_c00044{bottom:146.700000px;}
.y27_c00044{bottom:166.800000px;}
.y26_c00044{bottom:186.900000px;}
.y25_c00044{bottom:206.700000px;}
.y24_c00044{bottom:226.800000px;}
.y23_c00044{bottom:246.600000px;}
.y22_c00044{bottom:286.200000px;}
.y21_c00044{bottom:306.750000px;}
.y20_c00044{bottom:326.550000px;}
.y1f_c00044{bottom:366.600000px;}
.y1e_c00044{bottom:386.700000px;}
.y1d_c00044{bottom:406.500000px;}
.y1c_c00044{bottom:426.600000px;}
.y1b_c00044{bottom:446.400000px;}
.y1a_c00044{bottom:486.450000px;}
.y19_c00044{bottom:506.250000px;}
.y18_c00044{bottom:526.350000px;}
.y17_c00044{bottom:546.150000px;}
.y16_c00044{bottom:566.700000px;}
.y15_c00044{bottom:586.500000px;}
.y14_c00044{bottom:606.300000px;}
.y13_c00044{bottom:646.200000px;}
.y12_c00044{bottom:666.000000px;}
.y11_c00044{bottom:685.800000px;}
.y10_c00044{bottom:725.700000px;}
.yf_c00044{bottom:745.500000px;}
.ye_c00044{bottom:765.300000px;}
.yd_c00044{bottom:785.850000px;}
.yc_c00044{bottom:805.650000px;}
.yb_c00044{bottom:825.750000px;}
.ya_c00044{bottom:845.550000px;}
.y9_c00044{bottom:865.650000px;}
.y8_c00044{bottom:885.750000px;}
.y7_c00044{bottom:905.550000px;}
.y6_c00044{bottom:925.350000px;}
.y5_c00044{bottom:945.450000px;}
.y4_c00044{bottom:965.250000px;}
.y3_c00044{bottom:985.350000px;}
.y2_c00044{bottom:1005.150000px;}
.y1_c00044{bottom:1042.950000px;}
.h2_c00044{height:54.000000px;}
.h3_c00044{height:60.000000px;}
.h1_c00044{height:1167.000000px;}
.h0_c00044{height:1167.119934px;}
.w0_c00044{width:913.320007px;}
.w1_c00044{width:913.500000px;}
.x0_c00044{left:0.000000px;}
.x61_c00044{left:142.500000px;}
.x3_c00044{left:143.700000px;}
.x1_c00044{left:145.500000px;}
.x3d_c00044{left:160.650000px;}
.xc8_c00044{left:163.200000px;}
.xfa_c00044{left:165.300000px;}
.x119_c00044{left:168.300000px;}
.x6d_c00044{left:170.100000px;}
.xb0_c00044{left:171.150000px;}
.x49_c00044{left:173.700000px;}
.x21_c00044{left:174.900000px;}
.x56_c00044{left:177.000000px;}
.xdc_c00044{left:178.800000px;}
.x2f_c00044{left:181.200000px;}
.x102_c00044{left:182.550000px;}
.x13_c00044{left:184.650000px;}
.x9d_c00044{left:186.600000px;}
.xa4_c00044{left:188.100000px;}
.x90_c00044{left:192.300000px;}
.xb8_c00044{left:194.100000px;}
.xfd_c00044{left:195.900000px;}
.xd1_c00044{left:198.600000px;}
.x4_c00044{left:199.800000px;}
.x10f_c00044{left:201.900000px;}
.x85_c00044{left:203.100000px;}
.x6e_c00044{left:205.800000px;}
.x91_c00044{left:207.450000px;}
.x14_c00044{left:209.850000px;}
.x57_c00044{left:214.050000px;}
.x76_c00044{left:217.200000px;}
.xf4_c00044{left:218.850000px;}
.x9e_c00044{left:221.100000px;}
.x103_c00044{left:222.450000px;}
.x6f_c00044{left:225.900000px;}
.x30_c00044{left:226.950000px;}
.xf1_c00044{left:229.200000px;}
.x5_c00044{left:231.900000px;}
.x114_c00044{left:232.950000px;}
.x22_c00044{left:235.050000px;}
.xb9_c00044{left:236.550000px;}
.x9f_c00044{left:239.100000px;}
.x10b_c00044{left:240.750000px;}
.x58_c00044{left:242.100000px;}
.xe5_c00044{left:244.050000px;}
.x92_c00044{left:246.000000px;}
.x31_c00044{left:247.050000px;}
.xf5_c00044{left:249.450000px;}
.x6_c00044{left:252.000000px;}
.xc9_c00044{left:253.200000px;}
.xa5_c00044{left:256.050000px;}
.xc1_c00044{left:258.300000px;}
.x7d_c00044{left:259.650000px;}
.xb1_c00044{left:261.600000px;}
.x70_c00044{left:264.750000px;}
.x108_c00044{left:265.800000px;}
.x3e_c00044{left:267.300000px;}
.x93_c00044{left:268.650000px;}
.xa9_c00044{left:271.200000px;}
.x23_c00044{left:272.250000px;}
.x62_c00044{left:273.900000px;}
.xfe_c00044{left:276.900000px;}
.xc2_c00044{left:278.100000px;}
.xd2_c00044{left:280.650000px;}
.xdd_c00044{left:281.700000px;}
.x112_c00044{left:284.400000px;}
.x4a_c00044{left:286.800000px;}
.xca_c00044{left:288.900000px;}
.x3f_c00044{left:290.400000px;}
.x15_c00044{left:291.900000px;}
.xa0_c00044{left:293.700000px;}
.xa6_c00044{left:297.900000px;}
.xeb_c00044{left:299.550000px;}
.x32_c00044{left:301.350000px;}
.x7_c00044{left:303.450000px;}
.x115_c00044{left:306.450000px;}
.x24_c00044{left:307.500000px;}
.x59_c00044{left:309.000000px;}
.x7e_c00044{left:312.150000px;}
.xc3_c00044{left:313.350000px;}
.x109_c00044{left:314.850000px;}
.x116_c00044{left:319.200000px;}
.xa1_c00044{left:321.750000px;}
.xba_c00044{left:323.400000px;}
.xc4_c00044{left:324.450000px;}
.xd3_c00044{left:326.700000px;}
.xe6_c00044{left:327.900000px;}
.x8_c00044{left:330.450000px;}
.x7f_c00044{left:331.650000px;}
.x40_c00044{left:332.850000px;}
.x94_c00044{left:337.350000px;}
.x33_c00044{left:338.700000px;}
.x71_c00044{left:345.450000px;}
.xf6_c00044{left:347.250000px;}
.xa7_c00044{left:349.050000px;}
.x10a_c00044{left:350.850000px;}
.x25_c00044{left:352.200000px;}
.xff_c00044{left:354.000000px;}
.x4b_c00044{left:356.250000px;}
.xd4_c00044{left:357.600000px;}
.x16_c00044{left:358.950000px;}
.x86_c00044{left:361.800000px;}
.xfb_c00044{left:362.850000px;}
.x110_c00044{left:366.750000px;}
.x11a_c00044{left:368.100000px;}
.x63_c00044{left:369.300000px;}
.x26_c00044{left:370.950000px;}
.xaa_c00044{left:373.050000px;}
.xbb_c00044{left:375.300000px;}
.x5a_c00044{left:379.500000px;}
.x87_c00044{left:381.900000px;}
.x34_c00044{left:385.200000px;}
.x64_c00044{left:388.050000px;}
.x17_c00044{left:389.850000px;}
.x27_c00044{left:395.400000px;}
.x10c_c00044{left:396.600000px;}
.xd7_c00044{left:398.550000px;}
.xcb_c00044{left:400.200000px;}
.x41_c00044{left:403.800000px;}
.x9_c00044{left:405.750000px;}
.xde_c00044{left:408.450000px;}
.x35_c00044{left:413.250000px;}
.xa2_c00044{left:414.300000px;}
.xbc_c00044{left:415.950000px;}
.xed_c00044{left:418.350000px;}
.xab_c00044{left:421.650000px;}
.x72_c00044{left:423.600000px;}
.x2_c00044{left:426.600000px;}
.x95_c00044{left:427.800000px;}
.xd8_c00044{left:430.200000px;}
.x77_c00044{left:432.750000px;}
.xa_c00044{left:434.250000px;}
.x5b_c00044{left:435.300000px;}
.x42_c00044{left:436.950000px;}
.xee_c00044{left:439.650000px;}
.x28_c00044{left:442.500000px;}
.x18_c00044{left:444.150000px;}
.x80_c00044{left:446.100000px;}
.xbd_c00044{left:450.450000px;}
.x88_c00044{left:452.100000px;}
.x65_c00044{left:454.200000px;}
.xa8_c00044{left:458.550000px;}
.x29_c00044{left:460.800000px;}
.xb_c00044{left:462.750000px;}
.x4c_c00044{left:466.800000px;}
.x96_c00044{left:468.450000px;}
.x104_c00044{left:470.250000px;}
.x78_c00044{left:473.400000px;}
.x36_c00044{left:475.500000px;}
.x43_c00044{left:476.850000px;}
.x10d_c00044{left:479.400000px;}
.x81_c00044{left:481.050000px;}
.xdf_c00044{left:482.250000px;}
.x89_c00044{left:483.450000px;}
.xcc_c00044{left:484.800000px;}
.xc5_c00044{left:487.050000px;}
.x117_c00044{left:488.400000px;}
.x4d_c00044{left:490.950000px;}
.xb2_c00044{left:492.300000px;}
.x100_c00044{left:493.350000px;}
.x8a_c00044{left:497.550000px;}
.x5c_c00044{left:500.100000px;}
.xc_c00044{left:502.050000px;}
.x97_c00044{left:503.400000px;}
.xbe_c00044{left:505.500000px;}
.xd9_c00044{left:507.300000px;}
.xe0_c00044{left:508.950000px;}
.xe7_c00044{left:510.000000px;}
.x2a_c00044{left:512.250000px;}
.xf7_c00044{left:513.450000px;}
.xac_c00044{left:514.500000px;}
.x73_c00044{left:515.850000px;}
.x105_c00044{left:517.050000px;}
.x5d_c00044{left:519.150000px;}
.x19_c00044{left:520.500000px;}
.xb3_c00044{left:522.900000px;}
.xe8_c00044{left:525.450000px;}
.xf2_c00044{left:528.300000px;}
.xfc_c00044{left:531.750000px;}
.xcd_c00044{left:533.700000px;}
.xd5_c00044{left:534.750000px;}
.xda_c00044{left:536.400000px;}
.x44_c00044{left:539.100000px;}
.x37_c00044{left:540.300000px;}
.x79_c00044{left:545.100000px;}
.x1a_c00044{left:546.450000px;}
.x11b_c00044{left:549.900000px;}
.xd_c00044{left:551.700000px;}
.xe1_c00044{left:553.950000px;}
.x5e_c00044{left:559.800000px;}
.x45_c00044{left:563.250000px;}
.x98_c00044{left:565.350000px;}
.x2b_c00044{left:567.300000px;}
.x74_c00044{left:568.800000px;}
.x11c_c00044{left:570.450000px;}
.xe_c00044{left:572.550000px;}
.x4e_c00044{left:573.750000px;}
.x38_c00044{left:575.550000px;}
.xe9_c00044{left:580.200000px;}
.x99_c00044{left:582.600000px;}
.x8b_c00044{left:586.950000px;}
.xce_c00044{left:588.450000px;}
.x66_c00044{left:589.800000px;}
.x7a_c00044{left:591.900000px;}
.xf8_c00044{left:594.750000px;}
.x4f_c00044{left:596.850000px;}
.xef_c00044{left:600.300000px;}
.xea_c00044{left:601.500000px;}
.xe2_c00044{left:602.850000px;}
.xbf_c00044{left:605.100000px;}
.x1b_c00044{left:611.700000px;}
.x82_c00044{left:616.800000px;}
.x39_c00044{left:618.000000px;}
.xb4_c00044{left:619.050000px;}
.x46_c00044{left:620.550000px;}
.xf3_c00044{left:623.400000px;}
.x50_c00044{left:628.500000px;}
.xf_c00044{left:631.200000px;}
.xad_c00044{left:633.000000px;}
.x67_c00044{left:634.800000px;}
.xf0_c00044{left:636.300000px;}
.x3a_c00044{left:637.500000px;}
.x8c_c00044{left:642.000000px;}
.x1c_c00044{left:643.050000px;}
.x2c_c00044{left:648.000000px;}
.x10_c00044{left:651.750000px;}
.x68_c00044{left:653.550000px;}
.xae_c00044{left:656.400000px;}
.x101_c00044{left:659.250000px;}
.x8d_c00044{left:661.500000px;}
.x9a_c00044{left:663.900000px;}
.x3b_c00044{left:665.250000px;}
.x1d_c00044{left:668.550000px;}
.x5f_c00044{left:669.600000px;}
.xc6_c00044{left:673.950000px;}
.xe3_c00044{left:675.600000px;}
.x51_c00044{left:677.400000px;}
.x69_c00044{left:680.550000px;}
.xcf_c00044{left:682.050000px;}
.x8e_c00044{left:683.850000px;}
.x75_c00044{left:685.500000px;}
.x113_c00044{left:687.300000px;}
.x52_c00044{left:688.950000px;}
.xb5_c00044{left:693.600000px;}
.xec_c00044{left:697.350000px;}
.x9b_c00044{left:701.400000px;}
.x1e_c00044{left:702.750000px;}
.x8f_c00044{left:703.950000px;}
.xaf_c00044{left:706.050000px;}
.x106_c00044{left:707.400000px;}
.x111_c00044{left:708.450000px;}
.x10e_c00044{left:710.850000px;}
.x6a_c00044{left:714.450000px;}
.x2d_c00044{left:716.700000px;}
.x118_c00044{left:717.750000px;}
.x53_c00044{left:719.550000px;}
.xa3_c00044{left:722.100000px;}
.x11_c00044{left:724.050000px;}
.x60_c00044{left:727.200000px;}
.x83_c00044{left:729.450000px;}
.xd0_c00044{left:732.450000px;}
.x1f_c00044{left:735.150000px;}
.x54_c00044{left:737.550000px;}
.x47_c00044{left:739.650000px;}
.x3c_c00044{left:740.850000px;}
.x12_c00044{left:742.350000px;}
.xb6_c00044{left:744.300000px;}
.x9c_c00044{left:752.100000px;}
.x20_c00044{left:755.250000px;}
.x84_c00044{left:757.950000px;}
.x7b_c00044{left:759.900000px;}
.x55_c00044{left:762.750000px;}
.xd6_c00044{left:764.400000px;}
.xf9_c00044{left:767.850000px;}
.xdb_c00044{left:769.650000px;}
.xc7_c00044{left:771.900000px;}
.x6b_c00044{left:774.900000px;}
.xb7_c00044{left:778.200000px;}
.x48_c00044{left:780.000000px;}
.x7c_c00044{left:781.800000px;}
.x6c_c00044{left:786.000000px;}
.xc0_c00044{left:787.950000px;}
.xe4_c00044{left:795.600000px;}
.x107_c00044{left:796.650000px;}
.x2e_c00044{left:798.300000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws5_c00044{word-spacing:-4.836601pt;}
.ws0_c00044{word-spacing:-2.839506pt;}
.ws3_c00044{word-spacing:-2.558923pt;}
.ws9_c00044{word-spacing:0.000000pt;}
.ws6_c00044{word-spacing:1.481481pt;}
.ws2_c00044{word-spacing:1.830065pt;}
.ws4_c00044{word-spacing:5.555556pt;}
.ws7_c00044{word-spacing:9.135802pt;}
.ws1_c00044{word-spacing:12.679739pt;}
.ws8_c00044{word-spacing:25.228758pt;}
.fs0_c00044{font-size:48.000000pt;}
.fs1_c00044{font-size:53.333333pt;}
.y0_c00044{bottom:0.000000pt;}
.y28_c00044{bottom:130.400000pt;}
.y27_c00044{bottom:148.266667pt;}
.y26_c00044{bottom:166.133333pt;}
.y25_c00044{bottom:183.733333pt;}
.y24_c00044{bottom:201.600000pt;}
.y23_c00044{bottom:219.200000pt;}
.y22_c00044{bottom:254.400000pt;}
.y21_c00044{bottom:272.666667pt;}
.y20_c00044{bottom:290.266667pt;}
.y1f_c00044{bottom:325.866667pt;}
.y1e_c00044{bottom:343.733333pt;}
.y1d_c00044{bottom:361.333333pt;}
.y1c_c00044{bottom:379.200000pt;}
.y1b_c00044{bottom:396.800000pt;}
.y1a_c00044{bottom:432.400000pt;}
.y19_c00044{bottom:450.000000pt;}
.y18_c00044{bottom:467.866667pt;}
.y17_c00044{bottom:485.466667pt;}
.y16_c00044{bottom:503.733333pt;}
.y15_c00044{bottom:521.333333pt;}
.y14_c00044{bottom:538.933333pt;}
.y13_c00044{bottom:574.400000pt;}
.y12_c00044{bottom:592.000000pt;}
.y11_c00044{bottom:609.600000pt;}
.y10_c00044{bottom:645.066667pt;}
.yf_c00044{bottom:662.666667pt;}
.ye_c00044{bottom:680.266667pt;}
.yd_c00044{bottom:698.533333pt;}
.yc_c00044{bottom:716.133333pt;}
.yb_c00044{bottom:734.000000pt;}
.ya_c00044{bottom:751.600000pt;}
.y9_c00044{bottom:769.466667pt;}
.y8_c00044{bottom:787.333333pt;}
.y7_c00044{bottom:804.933333pt;}
.y6_c00044{bottom:822.533333pt;}
.y5_c00044{bottom:840.400000pt;}
.y4_c00044{bottom:858.000000pt;}
.y3_c00044{bottom:875.866667pt;}
.y2_c00044{bottom:893.466667pt;}
.y1_c00044{bottom:927.066667pt;}
.h2_c00044{height:48.000000pt;}
.h3_c00044{height:53.333333pt;}
.h1_c00044{height:1037.333333pt;}
.h0_c00044{height:1037.439941pt;}
.w0_c00044{width:811.840007pt;}
.w1_c00044{width:812.000000pt;}
.x0_c00044{left:0.000000pt;}
.x61_c00044{left:126.666667pt;}
.x3_c00044{left:127.733333pt;}
.x1_c00044{left:129.333333pt;}
.x3d_c00044{left:142.800000pt;}
.xc8_c00044{left:145.066667pt;}
.xfa_c00044{left:146.933333pt;}
.x119_c00044{left:149.600000pt;}
.x6d_c00044{left:151.200000pt;}
.xb0_c00044{left:152.133333pt;}
.x49_c00044{left:154.400000pt;}
.x21_c00044{left:155.466667pt;}
.x56_c00044{left:157.333333pt;}
.xdc_c00044{left:158.933333pt;}
.x2f_c00044{left:161.066667pt;}
.x102_c00044{left:162.266667pt;}
.x13_c00044{left:164.133333pt;}
.x9d_c00044{left:165.866667pt;}
.xa4_c00044{left:167.200000pt;}
.x90_c00044{left:170.933333pt;}
.xb8_c00044{left:172.533333pt;}
.xfd_c00044{left:174.133333pt;}
.xd1_c00044{left:176.533333pt;}
.x4_c00044{left:177.600000pt;}
.x10f_c00044{left:179.466667pt;}
.x85_c00044{left:180.533333pt;}
.x6e_c00044{left:182.933333pt;}
.x91_c00044{left:184.400000pt;}
.x14_c00044{left:186.533333pt;}
.x57_c00044{left:190.266667pt;}
.x76_c00044{left:193.066667pt;}
.xf4_c00044{left:194.533333pt;}
.x9e_c00044{left:196.533333pt;}
.x103_c00044{left:197.733333pt;}
.x6f_c00044{left:200.800000pt;}
.x30_c00044{left:201.733333pt;}
.xf1_c00044{left:203.733333pt;}
.x5_c00044{left:206.133333pt;}
.x114_c00044{left:207.066667pt;}
.x22_c00044{left:208.933333pt;}
.xb9_c00044{left:210.266667pt;}
.x9f_c00044{left:212.533333pt;}
.x10b_c00044{left:214.000000pt;}
.x58_c00044{left:215.200000pt;}
.xe5_c00044{left:216.933333pt;}
.x92_c00044{left:218.666667pt;}
.x31_c00044{left:219.600000pt;}
.xf5_c00044{left:221.733333pt;}
.x6_c00044{left:224.000000pt;}
.xc9_c00044{left:225.066667pt;}
.xa5_c00044{left:227.600000pt;}
.xc1_c00044{left:229.600000pt;}
.x7d_c00044{left:230.800000pt;}
.xb1_c00044{left:232.533333pt;}
.x70_c00044{left:235.333333pt;}
.x108_c00044{left:236.266667pt;}
.x3e_c00044{left:237.600000pt;}
.x93_c00044{left:238.800000pt;}
.xa9_c00044{left:241.066667pt;}
.x23_c00044{left:242.000000pt;}
.x62_c00044{left:243.466667pt;}
.xfe_c00044{left:246.133333pt;}
.xc2_c00044{left:247.200000pt;}
.xd2_c00044{left:249.466667pt;}
.xdd_c00044{left:250.400000pt;}
.x112_c00044{left:252.800000pt;}
.x4a_c00044{left:254.933333pt;}
.xca_c00044{left:256.800000pt;}
.x3f_c00044{left:258.133333pt;}
.x15_c00044{left:259.466667pt;}
.xa0_c00044{left:261.066667pt;}
.xa6_c00044{left:264.800000pt;}
.xeb_c00044{left:266.266667pt;}
.x32_c00044{left:267.866667pt;}
.x7_c00044{left:269.733333pt;}
.x115_c00044{left:272.400000pt;}
.x24_c00044{left:273.333333pt;}
.x59_c00044{left:274.666667pt;}
.x7e_c00044{left:277.466667pt;}
.xc3_c00044{left:278.533333pt;}
.x109_c00044{left:279.866667pt;}
.x116_c00044{left:283.733333pt;}
.xa1_c00044{left:286.000000pt;}
.xba_c00044{left:287.466667pt;}
.xc4_c00044{left:288.400000pt;}
.xd3_c00044{left:290.400000pt;}
.xe6_c00044{left:291.466667pt;}
.x8_c00044{left:293.733333pt;}
.x7f_c00044{left:294.800000pt;}
.x40_c00044{left:295.866667pt;}
.x94_c00044{left:299.866667pt;}
.x33_c00044{left:301.066667pt;}
.x71_c00044{left:307.066667pt;}
.xf6_c00044{left:308.666667pt;}
.xa7_c00044{left:310.266667pt;}
.x10a_c00044{left:311.866667pt;}
.x25_c00044{left:313.066667pt;}
.xff_c00044{left:314.666667pt;}
.x4b_c00044{left:316.666667pt;}
.xd4_c00044{left:317.866667pt;}
.x16_c00044{left:319.066667pt;}
.x86_c00044{left:321.600000pt;}
.xfb_c00044{left:322.533333pt;}
.x110_c00044{left:326.000000pt;}
.x11a_c00044{left:327.200000pt;}
.x63_c00044{left:328.266667pt;}
.x26_c00044{left:329.733333pt;}
.xaa_c00044{left:331.600000pt;}
.xbb_c00044{left:333.600000pt;}
.x5a_c00044{left:337.333333pt;}
.x87_c00044{left:339.466667pt;}
.x34_c00044{left:342.400000pt;}
.x64_c00044{left:344.933333pt;}
.x17_c00044{left:346.533333pt;}
.x27_c00044{left:351.466667pt;}
.x10c_c00044{left:352.533333pt;}
.xd7_c00044{left:354.266667pt;}
.xcb_c00044{left:355.733333pt;}
.x41_c00044{left:358.933333pt;}
.x9_c00044{left:360.666667pt;}
.xde_c00044{left:363.066667pt;}
.x35_c00044{left:367.333333pt;}
.xa2_c00044{left:368.266667pt;}
.xbc_c00044{left:369.733333pt;}
.xed_c00044{left:371.866667pt;}
.xab_c00044{left:374.800000pt;}
.x72_c00044{left:376.533333pt;}
.x2_c00044{left:379.200000pt;}
.x95_c00044{left:380.266667pt;}
.xd8_c00044{left:382.400000pt;}
.x77_c00044{left:384.666667pt;}
.xa_c00044{left:386.000000pt;}
.x5b_c00044{left:386.933333pt;}
.x42_c00044{left:388.400000pt;}
.xee_c00044{left:390.800000pt;}
.x28_c00044{left:393.333333pt;}
.x18_c00044{left:394.800000pt;}
.x80_c00044{left:396.533333pt;}
.xbd_c00044{left:400.400000pt;}
.x88_c00044{left:401.866667pt;}
.x65_c00044{left:403.733333pt;}
.xa8_c00044{left:407.600000pt;}
.x29_c00044{left:409.600000pt;}
.xb_c00044{left:411.333333pt;}
.x4c_c00044{left:414.933333pt;}
.x96_c00044{left:416.400000pt;}
.x104_c00044{left:418.000000pt;}
.x78_c00044{left:420.800000pt;}
.x36_c00044{left:422.666667pt;}
.x43_c00044{left:423.866667pt;}
.x10d_c00044{left:426.133333pt;}
.x81_c00044{left:427.600000pt;}
.xdf_c00044{left:428.666667pt;}
.x89_c00044{left:429.733333pt;}
.xcc_c00044{left:430.933333pt;}
.xc5_c00044{left:432.933333pt;}
.x117_c00044{left:434.133333pt;}
.x4d_c00044{left:436.400000pt;}
.xb2_c00044{left:437.600000pt;}
.x100_c00044{left:438.533333pt;}
.x8a_c00044{left:442.266667pt;}
.x5c_c00044{left:444.533333pt;}
.xc_c00044{left:446.266667pt;}
.x97_c00044{left:447.466667pt;}
.xbe_c00044{left:449.333333pt;}
.xd9_c00044{left:450.933333pt;}
.xe0_c00044{left:452.400000pt;}
.xe7_c00044{left:453.333333pt;}
.x2a_c00044{left:455.333333pt;}
.xf7_c00044{left:456.400000pt;}
.xac_c00044{left:457.333333pt;}
.x73_c00044{left:458.533333pt;}
.x105_c00044{left:459.600000pt;}
.x5d_c00044{left:461.466667pt;}
.x19_c00044{left:462.666667pt;}
.xb3_c00044{left:464.800000pt;}
.xe8_c00044{left:467.066667pt;}
.xf2_c00044{left:469.600000pt;}
.xfc_c00044{left:472.666667pt;}
.xcd_c00044{left:474.400000pt;}
.xd5_c00044{left:475.333333pt;}
.xda_c00044{left:476.800000pt;}
.x44_c00044{left:479.200000pt;}
.x37_c00044{left:480.266667pt;}
.x79_c00044{left:484.533333pt;}
.x1a_c00044{left:485.733333pt;}
.x11b_c00044{left:488.800000pt;}
.xd_c00044{left:490.400000pt;}
.xe1_c00044{left:492.400000pt;}
.x5e_c00044{left:497.600000pt;}
.x45_c00044{left:500.666667pt;}
.x98_c00044{left:502.533333pt;}
.x2b_c00044{left:504.266667pt;}
.x74_c00044{left:505.600000pt;}
.x11c_c00044{left:507.066667pt;}
.xe_c00044{left:508.933333pt;}
.x4e_c00044{left:510.000000pt;}
.x38_c00044{left:511.600000pt;}
.xe9_c00044{left:515.733333pt;}
.x99_c00044{left:517.866667pt;}
.x8b_c00044{left:521.733333pt;}
.xce_c00044{left:523.066667pt;}
.x66_c00044{left:524.266667pt;}
.x7a_c00044{left:526.133333pt;}
.xf8_c00044{left:528.666667pt;}
.x4f_c00044{left:530.533333pt;}
.xef_c00044{left:533.600000pt;}
.xea_c00044{left:534.666667pt;}
.xe2_c00044{left:535.866667pt;}
.xbf_c00044{left:537.866667pt;}
.x1b_c00044{left:543.733333pt;}
.x82_c00044{left:548.266667pt;}
.x39_c00044{left:549.333333pt;}
.xb4_c00044{left:550.266667pt;}
.x46_c00044{left:551.600000pt;}
.xf3_c00044{left:554.133333pt;}
.x50_c00044{left:558.666667pt;}
.xf_c00044{left:561.066667pt;}
.xad_c00044{left:562.666667pt;}
.x67_c00044{left:564.266667pt;}
.xf0_c00044{left:565.600000pt;}
.x3a_c00044{left:566.666667pt;}
.x8c_c00044{left:570.666667pt;}
.x1c_c00044{left:571.600000pt;}
.x2c_c00044{left:576.000000pt;}
.x10_c00044{left:579.333333pt;}
.x68_c00044{left:580.933333pt;}
.xae_c00044{left:583.466667pt;}
.x101_c00044{left:586.000000pt;}
.x8d_c00044{left:588.000000pt;}
.x9a_c00044{left:590.133333pt;}
.x3b_c00044{left:591.333333pt;}
.x1d_c00044{left:594.266667pt;}
.x5f_c00044{left:595.200000pt;}
.xc6_c00044{left:599.066667pt;}
.xe3_c00044{left:600.533333pt;}
.x51_c00044{left:602.133333pt;}
.x69_c00044{left:604.933333pt;}
.xcf_c00044{left:606.266667pt;}
.x8e_c00044{left:607.866667pt;}
.x75_c00044{left:609.333333pt;}
.x113_c00044{left:610.933333pt;}
.x52_c00044{left:612.400000pt;}
.xb5_c00044{left:616.533333pt;}
.xec_c00044{left:619.866667pt;}
.x9b_c00044{left:623.466667pt;}
.x1e_c00044{left:624.666667pt;}
.x8f_c00044{left:625.733333pt;}
.xaf_c00044{left:627.600000pt;}
.x106_c00044{left:628.800000pt;}
.x111_c00044{left:629.733333pt;}
.x10e_c00044{left:631.866667pt;}
.x6a_c00044{left:635.066667pt;}
.x2d_c00044{left:637.066667pt;}
.x118_c00044{left:638.000000pt;}
.x53_c00044{left:639.600000pt;}
.xa3_c00044{left:641.866667pt;}
.x11_c00044{left:643.600000pt;}
.x60_c00044{left:646.400000pt;}
.x83_c00044{left:648.400000pt;}
.xd0_c00044{left:651.066667pt;}
.x1f_c00044{left:653.466667pt;}
.x54_c00044{left:655.600000pt;}
.x47_c00044{left:657.466667pt;}
.x3c_c00044{left:658.533333pt;}
.x12_c00044{left:659.866667pt;}
.xb6_c00044{left:661.600000pt;}
.x9c_c00044{left:668.533333pt;}
.x20_c00044{left:671.333333pt;}
.x84_c00044{left:673.733333pt;}
.x7b_c00044{left:675.466667pt;}
.x55_c00044{left:678.000000pt;}
.xd6_c00044{left:679.466667pt;}
.xf9_c00044{left:682.533333pt;}
.xdb_c00044{left:684.133333pt;}
.xc7_c00044{left:686.133333pt;}
.x6b_c00044{left:688.800000pt;}
.xb7_c00044{left:691.733333pt;}
.x48_c00044{left:693.333333pt;}
.x7c_c00044{left:694.933333pt;}
.x6c_c00044{left:698.666667pt;}
.xc0_c00044{left:700.400000pt;}
.xe4_c00044{left:707.200000pt;}
.x107_c00044{left:708.133333pt;}
.x2e_c00044{left:709.600000pt;}
}





/* 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_c00045 {
    display:none;
  }
  .loading-indicator_c00045.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00045 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_c00045 { 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_c00045" -> "#page-container .classname_c00045")
 */
.pf_c00045 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00045 { /* 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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00045 { /* 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_c00045 { /* 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_c00045 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00045 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00045 {overflow:visible;}
  }
}
.c_c00045 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00045 { /* 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_c00045:after { /* webkit #35443 */
  content: '';
}
.t_c00045:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00045 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 */
}
.__c00045 { /* 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_c00045 { /* info for Javascript */
  display:none;
}
.l_c00045 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00045 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00045 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00045: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_c00045 {
    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_c00045.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00045.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_c00045 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00045{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.000000;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;}
.m29_c00045{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m47_c00045{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m21_c00045{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00045{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m45_c00045{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00045{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00045{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m77_c00045{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00045{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00045{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m46_c00045{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m69_c00045{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00045{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00045{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m52_c00045{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00045{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m72_c00045{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00045{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md_c00045{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m60_c00045{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m70_c00045{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m64_c00045{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00045{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m57_c00045{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m76_c00045{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00045{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00045{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00045{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00045{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00045{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m67_c00045{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00045{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m62_c00045{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00045{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00045{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m63_c00045{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00045{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00045{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m75_c00045{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00045{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00045{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m65_c00045{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m15_c00045{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00045{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m55_c00045{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m28_c00045{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00045{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00045{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m54_c00045{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00045{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m39_c00045{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00045{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m59_c00045{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00045{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m79_c00045{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00045{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00045{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m80_c00045{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m61_c00045{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m71_c00045{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m25_c00045{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m49_c00045{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m30_c00045{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00045{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m37_c00045{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00045{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m56_c00045{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m53_c00045{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m48_c00045{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00045{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00045{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11_c00045{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00045{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00045{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00045{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00045{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m73_c00045{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m74_c00045{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00045{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00045{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m32_c00045{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.mf_c00045{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m68_c00045{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00045{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00045{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{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__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00045{word-spacing:-7.500000px;}
.ws4_c00045{word-spacing:-6.794872px;}
.ws5_c00045{word-spacing:0.000000px;}
.ws2_c00045{word-spacing:7.500000px;}
.ws1_c00045{word-spacing:8.333333px;}
.ws0_c00045{word-spacing:8.529412px;}
.fc0_c00045{color:transparent;}
.fs0_c00045{font-size:54.000000px;}
.fs1_c00045{font-size:60.000000px;}
.y0_c00045{bottom:0.000000px;}
.y1e_c00045{bottom:388.650000px;}
.y1d_c00045{bottom:408.750000px;}
.y1c_c00045{bottom:428.850000px;}
.y1b_c00045{bottom:448.950000px;}
.y1a_c00045{bottom:468.750000px;}
.y19_c00045{bottom:488.850000px;}
.y18_c00045{bottom:508.350000px;}
.y17_c00045{bottom:547.950000px;}
.y16_c00045{bottom:567.450000px;}
.y15_c00045{bottom:587.250000px;}
.y14_c00045{bottom:607.050000px;}
.y13_c00045{bottom:627.150000px;}
.y12_c00045{bottom:646.950000px;}
.y11_c00045{bottom:666.750000px;}
.y10_c00045{bottom:686.550000px;}
.yf_c00045{bottom:706.350000px;}
.ye_c00045{bottom:746.400000px;}
.yd_c00045{bottom:766.200000px;}
.yc_c00045{bottom:786.300000px;}
.yb_c00045{bottom:806.100000px;}
.ya_c00045{bottom:825.900000px;}
.y9_c00045{bottom:845.700000px;}
.y8_c00045{bottom:885.750000px;}
.y7_c00045{bottom:905.850000px;}
.y6_c00045{bottom:925.950000px;}
.y5_c00045{bottom:946.050000px;}
.y4_c00045{bottom:965.550000px;}
.y3_c00045{bottom:986.100000px;}
.y2_c00045{bottom:1005.900000px;}
.y1_c00045{bottom:1043.700000px;}
.h2_c00045{height:54.000000px;}
.h3_c00045{height:60.000000px;}
.h1_c00045{height:1167.000000px;}
.h0_c00045{height:1167.119934px;}
.w0_c00045{width:913.320007px;}
.w1_c00045{width:913.500000px;}
.x0_c00045{left:0.000000px;}
.xd4_c00045{left:96.750000px;}
.x30_c00045{left:97.800000px;}
.x15_c00045{left:99.300000px;}
.x9c_c00045{left:120.750000px;}
.x77_c00045{left:126.000000px;}
.xc9_c00045{left:128.100000px;}
.x4b_c00045{left:129.300000px;}
.x3_c00045{left:130.650000px;}
.xc6_c00045{left:132.900000px;}
.xa5_c00045{left:133.950000px;}
.x9d_c00045{left:135.150000px;}
.x3d_c00045{left:136.650000px;}
.x31_c00045{left:137.700000px;}
.x95_c00045{left:140.850000px;}
.x86_c00045{left:144.750000px;}
.xbc_c00045{left:147.600000px;}
.x4_c00045{left:150.450000px;}
.x6c_c00045{left:151.650000px;}
.x57_c00045{left:154.200000px;}
.x8d_c00045{left:155.550000px;}
.x22_c00045{left:156.750000px;}
.xca_c00045{left:157.950000px;}
.xee_c00045{left:161.100000px;}
.x32_c00045{left:162.900000px;}
.x16_c00045{left:165.150000px;}
.x4c_c00045{left:167.100000px;}
.x80_c00045{left:168.900000px;}
.x96_c00045{left:172.500000px;}
.x78_c00045{left:173.850000px;}
.xd5_c00045{left:174.900000px;}
.x87_c00045{left:177.450000px;}
.x58_c00045{left:179.700000px;}
.x6d_c00045{left:181.500000px;}
.xc7_c00045{left:182.850000px;}
.x5_c00045{left:183.900000px;}
.xa6_c00045{left:191.550000px;}
.xef_c00045{left:196.350000px;}
.x33_c00045{left:197.400000px;}
.x3e_c00045{left:201.450000px;}
.x9e_c00045{left:203.850000px;}
.x59_c00045{left:211.050000px;}
.xcb_c00045{left:214.800000px;}
.x23_c00045{left:216.150000px;}
.xd6_c00045{left:217.350000px;}
.x6_c00045{left:219.150000px;}
.xa7_c00045{left:223.950000px;}
.x4d_c00045{left:225.750000px;}
.x8e_c00045{left:228.600000px;}
.xb3_c00045{left:230.100000px;}
.x34_c00045{left:233.400000px;}
.x3f_c00045{left:234.600000px;}
.x7_c00045{left:237.150000px;}
.x17_c00045{left:239.550000px;}
.x24_c00045{left:244.950000px;}
.xdf_c00045{left:246.750000px;}
.xd7_c00045{left:248.700000px;}
.xf0_c00045{left:252.900000px;}
.x5a_c00045{left:256.800000px;}
.x8f_c00045{left:259.200000px;}
.xe3_c00045{left:260.550000px;}
.xe9_c00045{left:262.050000px;}
.x6e_c00045{left:266.700000px;}
.x65_c00045{left:268.650000px;}
.xcc_c00045{left:271.050000px;}
.x18_c00045{left:274.050000px;}
.x97_c00045{left:278.400000px;}
.x40_c00045{left:279.600000px;}
.x8_c00045{left:281.850000px;}
.x88_c00045{left:283.350000px;}
.x6f_c00045{left:287.550000px;}
.x25_c00045{left:291.000000px;}
.x5b_c00045{left:292.800000px;}
.x35_c00045{left:295.350000px;}
.x79_c00045{left:297.000000px;}
.xf1_c00045{left:299.700000px;}
.x4e_c00045{left:302.100000px;}
.x41_c00045{left:304.800000px;}
.xcd_c00045{left:308.850000px;}
.x9f_c00045{left:310.350000px;}
.x26_c00045{left:311.850000px;}
.xe0_c00045{left:316.200000px;}
.x19_c00045{left:318.300000px;}
.xb4_c00045{left:319.350000px;}
.x90_c00045{left:320.700000px;}
.xa8_c00045{left:321.900000px;}
.x5c_c00045{left:324.150000px;}
.x89_c00045{left:327.300000px;}
.xbd_c00045{left:329.100000px;}
.x27_c00045{left:330.150000px;}
.x66_c00045{left:331.650000px;}
.x42_c00045{left:337.500000px;}
.x81_c00045{left:340.500000px;}
.x9_c00045{left:342.300000px;}
.x70_c00045{left:343.350000px;}
.xa9_c00045{left:346.800000px;}
.xb5_c00045{left:348.450000px;}
.x28_c00045{left:349.650000px;}
.x1a_c00045{left:353.550000px;}
.x82_c00045{left:354.900000px;}
.xe1_c00045{left:356.100000px;}
.x36_c00045{left:359.850000px;}
.x5d_c00045{left:361.200000px;}
.xbe_c00045{left:362.550000px;}
.xf2_c00045{left:364.950000px;}
.x4f_c00045{left:366.900000px;}
.xa_c00045{left:370.050000px;}
.xd8_c00045{left:372.300000px;}
.x67_c00045{left:375.600000px;}
.x1_c00045{left:379.500000px;}
.xaa_c00045{left:381.750000px;}
.x37_c00045{left:385.800000px;}
.x83_c00045{left:389.850000px;}
.x43_c00045{left:394.350000px;}
.xae_c00045{left:398.550000px;}
.x71_c00045{left:400.650000px;}
.xea_c00045{left:402.150000px;}
.x91_c00045{left:403.500000px;}
.x1b_c00045{left:404.700000px;}
.xb6_c00045{left:407.550000px;}
.xd9_c00045{left:409.350000px;}
.xb_c00045{left:411.150000px;}
.x44_c00045{left:415.950000px;}
.x7a_c00045{left:417.600000px;}
.xf3_c00045{left:419.400000px;}
.xe7_c00045{left:421.200000px;}
.x38_c00045{left:422.850000px;}
.xce_c00045{left:427.200000px;}
.x29_c00045{left:428.850000px;}
.x68_c00045{left:432.600000px;}
.xab_c00045{left:434.250000px;}
.x5e_c00045{left:440.100000px;}
.x45_c00045{left:444.450000px;}
.xa0_c00045{left:446.850000px;}
.xc8_c00045{left:450.000000px;}
.x50_c00045{left:451.200000px;}
.xc_c00045{left:456.900000px;}
.x2a_c00045{left:459.750000px;}
.xaf_c00045{left:460.800000px;}
.xbf_c00045{left:466.200000px;}
.xeb_c00045{left:468.000000px;}
.xa1_c00045{left:470.250000px;}
.x5f_c00045{left:471.450000px;}
.x7b_c00045{left:473.100000px;}
.x1c_c00045{left:479.550000px;}
.xcf_c00045{left:481.500000px;}
.xd_c00045{left:482.850000px;}
.x84_c00045{left:485.250000px;}
.x51_c00045{left:490.800000px;}
.xac_c00045{left:491.850000px;}
.x39_c00045{left:494.850000px;}
.x8a_c00045{left:497.250000px;}
.xf4_c00045{left:499.650000px;}
.xe8_c00045{left:500.850000px;}
.xe4_c00045{left:502.050000px;}
.xc0_c00045{left:504.000000px;}
.x1d_c00045{left:509.100000px;}
.x52_c00045{left:511.650000px;}
.xb0_c00045{left:524.250000px;}
.xda_c00045{left:527.400000px;}
.x69_c00045{left:529.200000px;}
.xb7_c00045{left:534.000000px;}
.x2b_c00045{left:536.400000px;}
.x53_c00045{left:539.400000px;}
.xc1_c00045{left:542.850000px;}
.x98_c00045{left:544.500000px;}
.xe_c00045{left:547.650000px;}
.x92_c00045{left:548.700000px;}
.x6a_c00045{left:550.050000px;}
.x46_c00045{left:552.150000px;}
.xd0_c00045{left:554.850000px;}
.x60_c00045{left:556.350000px;}
.x72_c00045{left:560.100000px;}
.xa2_c00045{left:562.800000px;}
.xb1_c00045{left:565.350000px;}
.xf_c00045{left:567.150000px;}
.x7c_c00045{left:572.400000px;}
.x47_c00045{left:573.750000px;}
.x2c_c00045{left:576.300000px;}
.x6b_c00045{left:578.100000px;}
.x1e_c00045{left:580.350000px;}
.x3a_c00045{left:582.300000px;}
.x61_c00045{left:584.100000px;}
.xa3_c00045{left:585.150000px;}
.x10_c00045{left:588.750000px;}
.x73_c00045{left:591.450000px;}
.x7d_c00045{left:595.050000px;}
.x8b_c00045{left:597.000000px;}
.x48_c00045{left:603.600000px;}
.xb8_c00045{left:606.000000px;}
.xdb_c00045{left:610.200000px;}
.xe5_c00045{left:613.350000px;}
.x74_c00045{left:614.550000px;}
.xa4_c00045{left:617.550000px;}
.x2d_c00045{left:619.800000px;}
.xad_c00045{left:621.450000px;}
.x11_c00045{left:622.950000px;}
.xd1_c00045{left:624.300000px;}
.x7e_c00045{left:625.650000px;}
.x8c_c00045{left:627.600000px;}
.x93_c00045{left:628.950000px;}
.xb9_c00045{left:631.950000px;}
.xd2_c00045{left:639.750000px;}
.x99_c00045{left:643.200000px;}
.xb2_c00045{left:644.250000px;}
.x62_c00045{left:645.300000px;}
.xe6_c00045{left:652.200000px;}
.xc2_c00045{left:656.400000px;}
.x49_c00045{left:657.900000px;}
.x3b_c00045{left:659.400000px;}
.xba_c00045{left:660.450000px;}
.xdc_c00045{left:664.200000px;}
.x1f_c00045{left:665.700000px;}
.x12_c00045{left:667.650000px;}
.x9a_c00045{left:671.250000px;}
.x54_c00045{left:673.650000px;}
.xec_c00045{left:675.300000px;}
.xe2_c00045{left:678.150000px;}
.x75_c00045{left:679.650000px;}
.x4a_c00045{left:682.350000px;}
.x20_c00045{left:683.400000px;}
.x85_c00045{left:686.400000px;}
.x2e_c00045{left:688.650000px;}
.xc3_c00045{left:693.150000px;}
.xbb_c00045{left:697.200000px;}
.x13_c00045{left:699.000000px;}
.xed_c00045{left:700.800000px;}
.xdd_c00045{left:702.000000px;}
.x55_c00045{left:707.550000px;}
.x63_c00045{left:710.100000px;}
.x3c_c00045{left:712.650000px;}
.xc4_c00045{left:715.800000px;}
.x9b_c00045{left:717.300000px;}
.x2f_c00045{left:718.500000px;}
.x76_c00045{left:721.350000px;}
.x56_c00045{left:725.550000px;}
.xde_c00045{left:727.200000px;}
.x21_c00045{left:734.550000px;}
.x7f_c00045{left:736.200000px;}
.x14_c00045{left:739.350000px;}
.xd3_c00045{left:741.150000px;}
.x94_c00045{left:742.350000px;}
.x64_c00045{left:744.300000px;}
.xc5_c00045{left:750.750000px;}
.x2_c00045{left:757.200000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws3_c00045{word-spacing:-6.666667pt;}
.ws4_c00045{word-spacing:-6.039886pt;}
.ws5_c00045{word-spacing:0.000000pt;}
.ws2_c00045{word-spacing:6.666667pt;}
.ws1_c00045{word-spacing:7.407407pt;}
.ws0_c00045{word-spacing:7.581699pt;}
.fs0_c00045{font-size:48.000000pt;}
.fs1_c00045{font-size:53.333333pt;}
.y0_c00045{bottom:0.000000pt;}
.y1e_c00045{bottom:345.466667pt;}
.y1d_c00045{bottom:363.333333pt;}
.y1c_c00045{bottom:381.200000pt;}
.y1b_c00045{bottom:399.066667pt;}
.y1a_c00045{bottom:416.666667pt;}
.y19_c00045{bottom:434.533333pt;}
.y18_c00045{bottom:451.866667pt;}
.y17_c00045{bottom:487.066667pt;}
.y16_c00045{bottom:504.400000pt;}
.y15_c00045{bottom:522.000000pt;}
.y14_c00045{bottom:539.600000pt;}
.y13_c00045{bottom:557.466667pt;}
.y12_c00045{bottom:575.066667pt;}
.y11_c00045{bottom:592.666667pt;}
.y10_c00045{bottom:610.266667pt;}
.yf_c00045{bottom:627.866667pt;}
.ye_c00045{bottom:663.466667pt;}
.yd_c00045{bottom:681.066667pt;}
.yc_c00045{bottom:698.933333pt;}
.yb_c00045{bottom:716.533333pt;}
.ya_c00045{bottom:734.133333pt;}
.y9_c00045{bottom:751.733333pt;}
.y8_c00045{bottom:787.333333pt;}
.y7_c00045{bottom:805.200000pt;}
.y6_c00045{bottom:823.066667pt;}
.y5_c00045{bottom:840.933333pt;}
.y4_c00045{bottom:858.266667pt;}
.y3_c00045{bottom:876.533333pt;}
.y2_c00045{bottom:894.133333pt;}
.y1_c00045{bottom:927.733333pt;}
.h2_c00045{height:48.000000pt;}
.h3_c00045{height:53.333333pt;}
.h1_c00045{height:1037.333333pt;}
.h0_c00045{height:1037.439941pt;}
.w0_c00045{width:811.840007pt;}
.w1_c00045{width:812.000000pt;}
.x0_c00045{left:0.000000pt;}
.xd4_c00045{left:86.000000pt;}
.x30_c00045{left:86.933333pt;}
.x15_c00045{left:88.266667pt;}
.x9c_c00045{left:107.333333pt;}
.x77_c00045{left:112.000000pt;}
.xc9_c00045{left:113.866667pt;}
.x4b_c00045{left:114.933333pt;}
.x3_c00045{left:116.133333pt;}
.xc6_c00045{left:118.133333pt;}
.xa5_c00045{left:119.066667pt;}
.x9d_c00045{left:120.133333pt;}
.x3d_c00045{left:121.466667pt;}
.x31_c00045{left:122.400000pt;}
.x95_c00045{left:125.200000pt;}
.x86_c00045{left:128.666667pt;}
.xbc_c00045{left:131.200000pt;}
.x4_c00045{left:133.733333pt;}
.x6c_c00045{left:134.800000pt;}
.x57_c00045{left:137.066667pt;}
.x8d_c00045{left:138.266667pt;}
.x22_c00045{left:139.333333pt;}
.xca_c00045{left:140.400000pt;}
.xee_c00045{left:143.200000pt;}
.x32_c00045{left:144.800000pt;}
.x16_c00045{left:146.800000pt;}
.x4c_c00045{left:148.533333pt;}
.x80_c00045{left:150.133333pt;}
.x96_c00045{left:153.333333pt;}
.x78_c00045{left:154.533333pt;}
.xd5_c00045{left:155.466667pt;}
.x87_c00045{left:157.733333pt;}
.x58_c00045{left:159.733333pt;}
.x6d_c00045{left:161.333333pt;}
.xc7_c00045{left:162.533333pt;}
.x5_c00045{left:163.466667pt;}
.xa6_c00045{left:170.266667pt;}
.xef_c00045{left:174.533333pt;}
.x33_c00045{left:175.466667pt;}
.x3e_c00045{left:179.066667pt;}
.x9e_c00045{left:181.200000pt;}
.x59_c00045{left:187.600000pt;}
.xcb_c00045{left:190.933333pt;}
.x23_c00045{left:192.133333pt;}
.xd6_c00045{left:193.200000pt;}
.x6_c00045{left:194.800000pt;}
.xa7_c00045{left:199.066667pt;}
.x4d_c00045{left:200.666667pt;}
.x8e_c00045{left:203.200000pt;}
.xb3_c00045{left:204.533333pt;}
.x34_c00045{left:207.466667pt;}
.x3f_c00045{left:208.533333pt;}
.x7_c00045{left:210.800000pt;}
.x17_c00045{left:212.933333pt;}
.x24_c00045{left:217.733333pt;}
.xdf_c00045{left:219.333333pt;}
.xd7_c00045{left:221.066667pt;}
.xf0_c00045{left:224.800000pt;}
.x5a_c00045{left:228.266667pt;}
.x8f_c00045{left:230.400000pt;}
.xe3_c00045{left:231.600000pt;}
.xe9_c00045{left:232.933333pt;}
.x6e_c00045{left:237.066667pt;}
.x65_c00045{left:238.800000pt;}
.xcc_c00045{left:240.933333pt;}
.x18_c00045{left:243.600000pt;}
.x97_c00045{left:247.466667pt;}
.x40_c00045{left:248.533333pt;}
.x8_c00045{left:250.533333pt;}
.x88_c00045{left:251.866667pt;}
.x6f_c00045{left:255.600000pt;}
.x25_c00045{left:258.666667pt;}
.x5b_c00045{left:260.266667pt;}
.x35_c00045{left:262.533333pt;}
.x79_c00045{left:264.000000pt;}
.xf1_c00045{left:266.400000pt;}
.x4e_c00045{left:268.533333pt;}
.x41_c00045{left:270.933333pt;}
.xcd_c00045{left:274.533333pt;}
.x9f_c00045{left:275.866667pt;}
.x26_c00045{left:277.200000pt;}
.xe0_c00045{left:281.066667pt;}
.x19_c00045{left:282.933333pt;}
.xb4_c00045{left:283.866667pt;}
.x90_c00045{left:285.066667pt;}
.xa8_c00045{left:286.133333pt;}
.x5c_c00045{left:288.133333pt;}
.x89_c00045{left:290.933333pt;}
.xbd_c00045{left:292.533333pt;}
.x27_c00045{left:293.466667pt;}
.x66_c00045{left:294.800000pt;}
.x42_c00045{left:300.000000pt;}
.x81_c00045{left:302.666667pt;}
.x9_c00045{left:304.266667pt;}
.x70_c00045{left:305.200000pt;}
.xa9_c00045{left:308.266667pt;}
.xb5_c00045{left:309.733333pt;}
.x28_c00045{left:310.800000pt;}
.x1a_c00045{left:314.266667pt;}
.x82_c00045{left:315.466667pt;}
.xe1_c00045{left:316.533333pt;}
.x36_c00045{left:319.866667pt;}
.x5d_c00045{left:321.066667pt;}
.xbe_c00045{left:322.266667pt;}
.xf2_c00045{left:324.400000pt;}
.x4f_c00045{left:326.133333pt;}
.xa_c00045{left:328.933333pt;}
.xd8_c00045{left:330.933333pt;}
.x67_c00045{left:333.866667pt;}
.x1_c00045{left:337.333333pt;}
.xaa_c00045{left:339.333333pt;}
.x37_c00045{left:342.933333pt;}
.x83_c00045{left:346.533333pt;}
.x43_c00045{left:350.533333pt;}
.xae_c00045{left:354.266667pt;}
.x71_c00045{left:356.133333pt;}
.xea_c00045{left:357.466667pt;}
.x91_c00045{left:358.666667pt;}
.x1b_c00045{left:359.733333pt;}
.xb6_c00045{left:362.266667pt;}
.xd9_c00045{left:363.866667pt;}
.xb_c00045{left:365.466667pt;}
.x44_c00045{left:369.733333pt;}
.x7a_c00045{left:371.200000pt;}
.xf3_c00045{left:372.800000pt;}
.xe7_c00045{left:374.400000pt;}
.x38_c00045{left:375.866667pt;}
.xce_c00045{left:379.733333pt;}
.x29_c00045{left:381.200000pt;}
.x68_c00045{left:384.533333pt;}
.xab_c00045{left:386.000000pt;}
.x5e_c00045{left:391.200000pt;}
.x45_c00045{left:395.066667pt;}
.xa0_c00045{left:397.200000pt;}
.xc8_c00045{left:400.000000pt;}
.x50_c00045{left:401.066667pt;}
.xc_c00045{left:406.133333pt;}
.x2a_c00045{left:408.666667pt;}
.xaf_c00045{left:409.600000pt;}
.xbf_c00045{left:414.400000pt;}
.xeb_c00045{left:416.000000pt;}
.xa1_c00045{left:418.000000pt;}
.x5f_c00045{left:419.066667pt;}
.x7b_c00045{left:420.533333pt;}
.x1c_c00045{left:426.266667pt;}
.xcf_c00045{left:428.000000pt;}
.xd_c00045{left:429.200000pt;}
.x84_c00045{left:431.333333pt;}
.x51_c00045{left:436.266667pt;}
.xac_c00045{left:437.200000pt;}
.x39_c00045{left:439.866667pt;}
.x8a_c00045{left:442.000000pt;}
.xf4_c00045{left:444.133333pt;}
.xe8_c00045{left:445.200000pt;}
.xe4_c00045{left:446.266667pt;}
.xc0_c00045{left:448.000000pt;}
.x1d_c00045{left:452.533333pt;}
.x52_c00045{left:454.800000pt;}
.xb0_c00045{left:466.000000pt;}
.xda_c00045{left:468.800000pt;}
.x69_c00045{left:470.400000pt;}
.xb7_c00045{left:474.666667pt;}
.x2b_c00045{left:476.800000pt;}
.x53_c00045{left:479.466667pt;}
.xc1_c00045{left:482.533333pt;}
.x98_c00045{left:484.000000pt;}
.xe_c00045{left:486.800000pt;}
.x92_c00045{left:487.733333pt;}
.x6a_c00045{left:488.933333pt;}
.x46_c00045{left:490.800000pt;}
.xd0_c00045{left:493.200000pt;}
.x60_c00045{left:494.533333pt;}
.x72_c00045{left:497.866667pt;}
.xa2_c00045{left:500.266667pt;}
.xb1_c00045{left:502.533333pt;}
.xf_c00045{left:504.133333pt;}
.x7c_c00045{left:508.800000pt;}
.x47_c00045{left:510.000000pt;}
.x2c_c00045{left:512.266667pt;}
.x6b_c00045{left:513.866667pt;}
.x1e_c00045{left:515.866667pt;}
.x3a_c00045{left:517.600000pt;}
.x61_c00045{left:519.200000pt;}
.xa3_c00045{left:520.133333pt;}
.x10_c00045{left:523.333333pt;}
.x73_c00045{left:525.733333pt;}
.x7d_c00045{left:528.933333pt;}
.x8b_c00045{left:530.666667pt;}
.x48_c00045{left:536.533333pt;}
.xb8_c00045{left:538.666667pt;}
.xdb_c00045{left:542.400000pt;}
.xe5_c00045{left:545.200000pt;}
.x74_c00045{left:546.266667pt;}
.xa4_c00045{left:548.933333pt;}
.x2d_c00045{left:550.933333pt;}
.xad_c00045{left:552.400000pt;}
.x11_c00045{left:553.733333pt;}
.xd1_c00045{left:554.933333pt;}
.x7e_c00045{left:556.133333pt;}
.x8c_c00045{left:557.866667pt;}
.x93_c00045{left:559.066667pt;}
.xb9_c00045{left:561.733333pt;}
.xd2_c00045{left:568.666667pt;}
.x99_c00045{left:571.733333pt;}
.xb2_c00045{left:572.666667pt;}
.x62_c00045{left:573.600000pt;}
.xe6_c00045{left:579.733333pt;}
.xc2_c00045{left:583.466667pt;}
.x49_c00045{left:584.800000pt;}
.x3b_c00045{left:586.133333pt;}
.xba_c00045{left:587.066667pt;}
.xdc_c00045{left:590.400000pt;}
.x1f_c00045{left:591.733333pt;}
.x12_c00045{left:593.466667pt;}
.x9a_c00045{left:596.666667pt;}
.x54_c00045{left:598.800000pt;}
.xec_c00045{left:600.266667pt;}
.xe2_c00045{left:602.800000pt;}
.x75_c00045{left:604.133333pt;}
.x4a_c00045{left:606.533333pt;}
.x20_c00045{left:607.466667pt;}
.x85_c00045{left:610.133333pt;}
.x2e_c00045{left:612.133333pt;}
.xc3_c00045{left:616.133333pt;}
.xbb_c00045{left:619.733333pt;}
.x13_c00045{left:621.333333pt;}
.xed_c00045{left:622.933333pt;}
.xdd_c00045{left:624.000000pt;}
.x55_c00045{left:628.933333pt;}
.x63_c00045{left:631.200000pt;}
.x3c_c00045{left:633.466667pt;}
.xc4_c00045{left:636.266667pt;}
.x9b_c00045{left:637.600000pt;}
.x2f_c00045{left:638.666667pt;}
.x76_c00045{left:641.200000pt;}
.x56_c00045{left:644.933333pt;}
.xde_c00045{left:646.400000pt;}
.x21_c00045{left:652.933333pt;}
.x7f_c00045{left:654.400000pt;}
.x14_c00045{left:657.200000pt;}
.xd3_c00045{left:658.800000pt;}
.x94_c00045{left:659.866667pt;}
.x64_c00045{left:661.600000pt;}
.xc5_c00045{left:667.333333pt;}
.x2_c00045{left:673.066667pt;}
}





/* 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_c00046 {
    display:none;
  }
  .loading-indicator_c00046.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00046 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_c00046 { 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_c00046" -> "#page-container .classname_c00046")
 */
.pf_c00046 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00046 { /* 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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00046 { /* 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_c00046 { /* 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_c00046 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00046 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00046 {overflow:visible;}
  }
}
.c_c00046 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00046 { /* 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_c00046:after { /* webkit #35443 */
  content: '';
}
.t_c00046:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00046 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 */
}
.__c00046 { /* 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_c00046 { /* info for Javascript */
  display:none;
}
.l_c00046 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00046 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00046 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00046: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_c00046 {
    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_c00046.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00046.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_c00046 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00046{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00046;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.000000;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;}
.m5f_c00046{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00046{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00046{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m56_c00046{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m66_c00046{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m1_c00046{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m53_c00046{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00046{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00046{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00046{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m64_c00046{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m81_c00046{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00046{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00046{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m75_c00046{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00046{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00046{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00046{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m67_c00046{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m71_c00046{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00046{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00046{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m88_c00046{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m25_c00046{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m69_c00046{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m68_c00046{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m11_c00046{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00046{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00046{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00046{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m18_c00046{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00046{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m65_c00046{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00046{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m77_c00046{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00046{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m73_c00046{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m93_c00046{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m32_c00046{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m85_c00046{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m96_c00046{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00046{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00046{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m78_c00046{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00046{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00046{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00046{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00046{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m46_c00046{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m98_c00046{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00046{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00046{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00046{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00046{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00046{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00046{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m84_c00046{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00046{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m24_c00046{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m10_c00046{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m44_c00046{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m45_c00046{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m74_c00046{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00046{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m13_c00046{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m92_c00046{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m49_c00046{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m57_c00046{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m50_c00046{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00046{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51_c00046{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00046{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m52_c00046{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m54_c00046{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m39_c00046{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb_c00046{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.md_c00046{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m28_c00046{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m97_c00046{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m55_c00046{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00046{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00046{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m59_c00046{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00046{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00046{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m22_c00046{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m41_c00046{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m16_c00046{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00046{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00046{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00046{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m83_c00046{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00046{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00046{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m43_c00046{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00046{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00046{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m12_c00046{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00046{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m14_c00046{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00046{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m17_c00046{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m31_c00046{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00046{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m34_c00046{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m94_c00046{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m89_c00046{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m87_c00046{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m62_c00046{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00046{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00046{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m21_c00046{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00046{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m61_c00046{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m40_c00046{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m86_c00046{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00046{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m82_c00046{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m29_c00046{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m33_c00046{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27_c00046{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m79_c00046{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20_c00046{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m99_c00046{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m37_c00046{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m80_c00046{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m60_c00046{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc_c00046{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00046{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00046{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00046{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m47_c00046{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00046{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m58_c00046{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00046{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00046{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00046{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m76_c00046{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00046{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00046{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00046{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma_c00046{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m72_c00046{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m19_c00046{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m70_c00046{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00046{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00046{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m36_c00046{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00046{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00046{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m95_c00046{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00046{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m7_c00046{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m3_c00046{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m9_c00046{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00046{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m5_c00046{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00046{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m6_c00046{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m2_c00046{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m0_c00046{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m26_c00046{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00046{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m4_c00046{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.v0_c00046{vertical-align:0.000000px;}
.ls0_c00046{letter-spacing:0.000000px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{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__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:-7.261905px;}
.wsa_c00046{word-spacing:0.000000px;}
.ws5_c00046{word-spacing:1.666667px;}
.ws8_c00046{word-spacing:4.615385px;}
.ws1_c00046{word-spacing:5.223214px;}
.ws6_c00046{word-spacing:7.232143px;}
.ws2_c00046{word-spacing:8.055556px;}
.ws7_c00046{word-spacing:13.636364px;}
.ws4_c00046{word-spacing:19.861111px;}
.ws9_c00046{word-spacing:20.454545px;}
.ws3_c00046{word-spacing:27.592593px;}
.fc0_c00046{color:transparent;}
.fs1_c00046{font-size:42.000000px;}
.fs0_c00046{font-size:60.000000px;}
.y0_c00046{bottom:0.000000px;}
.y23_c00046{bottom:153.000000px;}
.y22_c00046{bottom:169.200000px;}
.y21_c00046{bottom:209.550000px;}
.y20_c00046{bottom:229.050000px;}
.y1f_c00046{bottom:249.150000px;}
.y1e_c00046{bottom:268.950000px;}
.y1d_c00046{bottom:288.750000px;}
.y1c_c00046{bottom:308.250000px;}
.y1b_c00046{bottom:328.350000px;}
.y1a_c00046{bottom:348.150000px;}
.y19_c00046{bottom:367.950000px;}
.y18_c00046{bottom:387.750000px;}
.y17_c00046{bottom:407.550000px;}
.y16_c00046{bottom:427.350000px;}
.y15_c00046{bottom:447.150000px;}
.y14_c00046{bottom:466.650000px;}
.y13_c00046{bottom:486.450000px;}
.y12_c00046{bottom:506.550000px;}
.y11_c00046{bottom:526.500000px;}
.y10_c00046{bottom:546.600000px;}
.yf_c00046{bottom:566.400000px;}
.ye_c00046{bottom:585.900000px;}
.yd_c00046{bottom:606.000000px;}
.yc_c00046{bottom:626.100000px;}
.yb_c00046{bottom:645.900000px;}
.ya_c00046{bottom:666.000000px;}
.y9_c00046{bottom:685.500000px;}
.y8_c00046{bottom:705.300000px;}
.y7_c00046{bottom:725.100000px;}
.y6_c00046{bottom:745.200000px;}
.y5_c00046{bottom:765.000000px;}
.y4_c00046{bottom:784.800000px;}
.y3_c00046{bottom:804.600000px;}
.y2_c00046{bottom:838.050000px;}
.y1_c00046{bottom:871.200000px;}
.h3_c00046{height:42.000000px;}
.h2_c00046{height:60.000000px;}
.h1_c00046{height:1167.000000px;}
.h0_c00046{height:1167.119934px;}
.w0_c00046{width:913.320007px;}
.w1_c00046{width:913.500000px;}
.x0_c00046{left:0.000000px;}
.x118_c00046{left:140.700000px;}
.xe3_c00046{left:142.500000px;}
.x98_c00046{left:143.700000px;}
.xb_c00046{left:144.750000px;}
.x81_c00046{left:161.550000px;}
.x99_c00046{left:166.800000px;}
.xb6_c00046{left:171.900000px;}
.x10d_c00046{left:173.850000px;}
.xd5_c00046{left:174.900000px;}
.x5c_c00046{left:176.100000px;}
.x8e_c00046{left:179.250000px;}
.x6b_c00046{left:180.900000px;}
.x1c_c00046{left:181.950000px;}
.xcc_c00046{left:183.450000px;}
.x46_c00046{left:186.600000px;}
.x5d_c00046{left:188.400000px;}
.x39_c00046{left:190.050000px;}
.x102_c00046{left:191.850000px;}
.xdd_c00046{left:193.350000px;}
.xb7_c00046{left:195.450000px;}
.x10e_c00046{left:197.550000px;}
.x52_c00046{left:199.350000px;}
.xc_c00046{left:201.300000px;}
.x1d_c00046{left:202.500000px;}
.x2e_c00046{left:207.750000px;}
.xd2_c00046{left:211.800000px;}
.xb8_c00046{left:213.150000px;}
.x5e_c00046{left:215.700000px;}
.x6c_c00046{left:219.750000px;}
.xf3_c00046{left:221.100000px;}
.xa9_c00046{left:222.150000px;}
.x2f_c00046{left:224.250000px;}
.x82_c00046{left:226.050000px;}
.xcd_c00046{left:229.200000px;}
.x3a_c00046{left:231.150000px;}
.x8f_c00046{left:233.250000px;}
.x79_c00046{left:237.150000px;}
.xde_c00046{left:240.750000px;}
.xb0_c00046{left:242.100000px;}
.x53_c00046{left:244.050000px;}
.x1e_c00046{left:245.700000px;}
.x9a_c00046{left:247.500000px;}
.x10f_c00046{left:250.200000px;}
.xed_c00046{left:252.000000px;}
.x47_c00046{left:253.200000px;}
.x5f_c00046{left:255.300000px;}
.x90_c00046{left:257.100000px;}
.x54_c00046{left:258.450000px;}
.xdf_c00046{left:260.850000px;}
.xc2_c00046{left:262.050000px;}
.xf4_c00046{left:263.250000px;}
.xd_c00046{left:264.300000px;}
.xe7_c00046{left:265.650000px;}
.x30_c00046{left:267.150000px;}
.x3_c00046{left:269.250000px;}
.x114_c00046{left:272.400000px;}
.x9b_c00046{left:276.300000px;}
.xd6_c00046{left:277.800000px;}
.x103_c00046{left:279.450000px;}
.xb1_c00046{left:281.700000px;}
.xc3_c00046{left:282.900000px;}
.x1f_c00046{left:285.600000px;}
.xe_c00046{left:289.200000px;}
.xaa_c00046{left:290.550000px;}
.x109_c00046{left:291.600000px;}
.x48_c00046{left:293.100000px;}
.x60_c00046{left:300.600000px;}
.x3b_c00046{left:303.450000px;}
.x7a_c00046{left:305.250000px;}
.x104_c00046{left:306.750000px;}
.x115_c00046{left:308.100000px;}
.xb9_c00046{left:309.300000px;}
.x6d_c00046{left:312.300000px;}
.xd3_c00046{left:314.550000px;}
.xf_c00046{left:317.250000px;}
.x61_c00046{left:320.700000px;}
.x31_c00046{left:322.200000px;}
.x49_c00046{left:323.700000px;}
.xe8_c00046{left:327.600000px;}
.x91_c00046{left:331.950000px;}
.xba_c00046{left:333.450000px;}
.xf5_c00046{left:334.500000px;}
.xd7_c00046{left:336.450000px;}
.x9c_c00046{left:337.500000px;}
.x110_c00046{left:339.450000px;}
.x83_c00046{left:341.400000px;}
.x32_c00046{left:345.300000px;}
.xee_c00046{left:346.350000px;}
.x6e_c00046{left:347.550000px;}
.x3c_c00046{left:352.050000px;}
.xe9_c00046{left:354.900000px;}
.x20_c00046{left:356.550000px;}
.x4_c00046{left:358.200000px;}
.xc4_c00046{left:362.100000px;}
.x111_c00046{left:363.150000px;}
.xb2_c00046{left:364.500000px;}
.xbb_c00046{left:366.900000px;}
.x10_c00046{left:368.700000px;}
.xe4_c00046{left:369.750000px;}
.x6f_c00046{left:373.050000px;}
.x33_c00046{left:374.850000px;}
.x4a_c00046{left:376.200000px;}
.x21_c00046{left:377.400000px;}
.x92_c00046{left:378.450000px;}
.x3d_c00046{left:380.550000px;}
.x9d_c00046{left:381.750000px;}
.xc5_c00046{left:384.000000px;}
.xab_c00046{left:386.250000px;}
.xce_c00046{left:389.550000px;}
.xd8_c00046{left:392.250000px;}
.x9e_c00046{left:393.600000px;}
.x3e_c00046{left:395.700000px;}
.x105_c00046{left:397.800000px;}
.xef_c00046{left:398.850000px;}
.xc6_c00046{left:399.900000px;}
.x62_c00046{left:401.700000px;}
.x70_c00046{left:404.400000px;}
.x55_c00046{left:406.050000px;}
.xfb_c00046{left:407.100000px;}
.x100_c00046{left:410.100000px;}
.x10a_c00046{left:411.900000px;}
.x7b_c00046{left:415.350000px;}
.xd9_c00046{left:418.500000px;}
.x84_c00046{left:419.550000px;}
.x5_c00046{left:421.500000px;}
.xfc_c00046{left:422.550000px;}
.x9f_c00046{left:424.500000px;}
.xac_c00046{left:425.550000px;}
.x22_c00046{left:427.050000px;}
.xcf_c00046{left:428.400000px;}
.x1_c00046{left:430.200000px;}
.xfd_c00046{left:433.650000px;}
.x4b_c00046{left:436.650000px;}
.x6_c00046{left:438.450000px;}
.xe0_c00046{left:440.550000px;}
.x11_c00046{left:442.200000px;}
.x63_c00046{left:444.600000px;}
.xc7_c00046{left:449.550000px;}
.x85_c00046{left:451.200000px;}
.x3f_c00046{left:453.300000px;}
.x93_c00046{left:454.350000px;}
.xa0_c00046{left:456.150000px;}
.x23_c00046{left:457.350000px;}
.x10b_c00046{left:458.400000px;}
.xbc_c00046{left:459.750000px;}
.x86_c00046{left:463.050000px;}
.x40_c00046{left:465.150000px;}
.x34_c00046{left:466.650000px;}
.xa1_c00046{left:468.000000px;}
.x12_c00046{left:471.000000px;}
.x56_c00046{left:475.500000px;}
.xbd_c00046{left:480.300000px;}
.x71_c00046{left:482.550000px;}
.x119_c00046{left:483.750000px;}
.x7_c00046{left:486.300000px;}
.x64_c00046{left:488.550000px;}
.x94_c00046{left:490.350000px;}
.x87_c00046{left:491.850000px;}
.x24_c00046{left:493.350000px;}
.x72_c00046{left:499.500000px;}
.x4c_c00046{left:501.150000px;}
.x57_c00046{left:503.550000px;}
.x8_c00046{left:506.400000px;}
.xbe_c00046{left:508.050000px;}
.x7c_c00046{left:509.250000px;}
.x25_c00046{left:510.600000px;}
.x13_c00046{left:512.700000px;}
.x2_c00046{left:514.800000px;}
.x116_c00046{left:515.850000px;}
.xea_c00046{left:517.200000px;}
.xf6_c00046{left:518.850000px;}
.xd0_c00046{left:519.900000px;}
.x7d_c00046{left:521.100000px;}
.xf0_c00046{left:522.150000px;}
.xe5_c00046{left:523.500000px;}
.xc8_c00046{left:524.850000px;}
.x73_c00046{left:528.300000px;}
.x65_c00046{left:532.200000px;}
.x41_c00046{left:533.250000px;}
.xda_c00046{left:534.450000px;}
.xd4_c00046{left:540.150000px;}
.xbf_c00046{left:543.750000px;}
.x35_c00046{left:545.100000px;}
.xeb_c00046{left:546.750000px;}
.x26_c00046{left:548.100000px;}
.xc9_c00046{left:549.750000px;}
.x14_c00046{left:550.800000px;}
.x88_c00046{left:552.300000px;}
.xdb_c00046{left:554.550000px;}
.x11a_c00046{left:555.750000px;}
.xc0_c00046{left:559.200000px;}
.x27_c00046{left:564.000000px;}
.xfe_c00046{left:565.800000px;}
.x66_c00046{left:567.900000px;}
.x42_c00046{left:569.250000px;}
.x9_c00046{left:571.500000px;}
.x15_c00046{left:576.750000px;}
.xe1_c00046{left:580.200000px;}
.xa2_c00046{left:581.400000px;}
.xdc_c00046{left:583.050000px;}
.xad_c00046{left:584.550000px;}
.xff_c00046{left:585.600000px;}
.x95_c00046{left:591.150000px;}
.x28_c00046{left:592.500000px;}
.xf1_c00046{left:594.150000px;}
.xc1_c00046{left:596.250000px;}
.x16_c00046{left:603.750000px;}
.xca_c00046{left:608.100000px;}
.x89_c00046{left:610.650000px;}
.xec_c00046{left:613.350000px;}
.xe6_c00046{left:614.550000px;}
.x4d_c00046{left:615.600000px;}
.x7e_c00046{left:616.800000px;}
.xa3_c00046{left:619.200000px;}
.x17_c00046{left:621.750000px;}
.xa_c00046{left:628.050000px;}
.x43_c00046{left:630.150000px;}
.xf7_c00046{left:632.550000px;}
.x10c_c00046{left:635.850000px;}
.x67_c00046{left:637.050000px;}
.x74_c00046{left:639.150000px;}
.xb3_c00046{left:640.500000px;}
.x112_c00046{left:642.150000px;}
.x58_c00046{left:643.200000px;}
.xa4_c00046{left:647.700000px;}
.x18_c00046{left:649.800000px;}
.x75_c00046{left:651.450000px;}
.x29_c00046{left:655.800000px;}
.x59_c00046{left:663.000000px;}
.x68_c00046{left:665.100000px;}
.x8a_c00046{left:666.450000px;}
.x4e_c00046{left:668.550000px;}
.x36_c00046{left:672.900000px;}
.x113_c00046{left:678.150000px;}
.x96_c00046{left:679.350000px;}
.xa5_c00046{left:680.400000px;}
.x76_c00046{left:684.150000px;}
.x5a_c00046{left:689.250000px;}
.x19_c00046{left:691.950000px;}
.xb4_c00046{left:693.450000px;}
.x106_c00046{left:695.400000px;}
.x7f_c00046{left:700.350000px;}
.xa6_c00046{left:702.750000px;}
.xf8_c00046{left:704.100000px;}
.x2a_c00046{left:705.900000px;}
.x4f_c00046{left:708.150000px;}
.x8b_c00046{left:709.950000px;}
.x101_c00046{left:713.100000px;}
.x107_c00046{left:718.500000px;}
.x97_c00046{left:720.000000px;}
.xf2_c00046{left:721.200000px;}
.x5b_c00046{left:723.450000px;}
.x2b_c00046{left:724.650000px;}
.x37_c00046{left:726.600000px;}
.x8c_c00046{left:729.750000px;}
.x69_c00046{left:731.700000px;}
.x80_c00046{left:737.100000px;}
.x50_c00046{left:739.050000px;}
.x44_c00046{left:741.300000px;}
.xa7_c00046{left:742.350000px;}
.x117_c00046{left:743.850000px;}
.xf9_c00046{left:747.000000px;}
.x77_c00046{left:750.450000px;}
.x2c_c00046{left:753.150000px;}
.xae_c00046{left:754.350000px;}
.x1a_c00046{left:756.750000px;}
.xcb_c00046{left:766.650000px;}
.x1b_c00046{left:769.050000px;}
.xaf_c00046{left:774.450000px;}
.xfa_c00046{left:776.550000px;}
.xd1_c00046{left:779.100000px;}
.x45_c00046{left:781.650000px;}
.x6a_c00046{left:784.650000px;}
.x108_c00046{left:785.850000px;}
.x78_c00046{left:787.200000px;}
.x51_c00046{left:789.450000px;}
.x8d_c00046{left:792.000000px;}
.xe2_c00046{left:793.350000px;}
.x38_c00046{left:796.200000px;}
.xb5_c00046{left:797.550000px;}
.x2d_c00046{left:799.200000px;}
.xa8_c00046{left:802.500000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:-6.455026pt;}
.wsa_c00046{word-spacing:0.000000pt;}
.ws5_c00046{word-spacing:1.481481pt;}
.ws8_c00046{word-spacing:4.102564pt;}
.ws1_c00046{word-spacing:4.642857pt;}
.ws6_c00046{word-spacing:6.428571pt;}
.ws2_c00046{word-spacing:7.160494pt;}
.ws7_c00046{word-spacing:12.121212pt;}
.ws4_c00046{word-spacing:17.654321pt;}
.ws9_c00046{word-spacing:18.181818pt;}
.ws3_c00046{word-spacing:24.526749pt;}
.fs1_c00046{font-size:37.333333pt;}
.fs0_c00046{font-size:53.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y23_c00046{bottom:136.000000pt;}
.y22_c00046{bottom:150.400000pt;}
.y21_c00046{bottom:186.266667pt;}
.y20_c00046{bottom:203.600000pt;}
.y1f_c00046{bottom:221.466667pt;}
.y1e_c00046{bottom:239.066667pt;}
.y1d_c00046{bottom:256.666667pt;}
.y1c_c00046{bottom:274.000000pt;}
.y1b_c00046{bottom:291.866667pt;}
.y1a_c00046{bottom:309.466667pt;}
.y19_c00046{bottom:327.066667pt;}
.y18_c00046{bottom:344.666667pt;}
.y17_c00046{bottom:362.266667pt;}
.y16_c00046{bottom:379.866667pt;}
.y15_c00046{bottom:397.466667pt;}
.y14_c00046{bottom:414.800000pt;}
.y13_c00046{bottom:432.400000pt;}
.y12_c00046{bottom:450.266667pt;}
.y11_c00046{bottom:468.000000pt;}
.y10_c00046{bottom:485.866667pt;}
.yf_c00046{bottom:503.466667pt;}
.ye_c00046{bottom:520.800000pt;}
.yd_c00046{bottom:538.666667pt;}
.yc_c00046{bottom:556.533333pt;}
.yb_c00046{bottom:574.133333pt;}
.ya_c00046{bottom:592.000000pt;}
.y9_c00046{bottom:609.333333pt;}
.y8_c00046{bottom:626.933333pt;}
.y7_c00046{bottom:644.533333pt;}
.y6_c00046{bottom:662.400000pt;}
.y5_c00046{bottom:680.000000pt;}
.y4_c00046{bottom:697.600000pt;}
.y3_c00046{bottom:715.200000pt;}
.y2_c00046{bottom:744.933333pt;}
.y1_c00046{bottom:774.400000pt;}
.h3_c00046{height:37.333333pt;}
.h2_c00046{height:53.333333pt;}
.h1_c00046{height:1037.333333pt;}
.h0_c00046{height:1037.439941pt;}
.w0_c00046{width:811.840007pt;}
.w1_c00046{width:812.000000pt;}
.x0_c00046{left:0.000000pt;}
.x118_c00046{left:125.066667pt;}
.xe3_c00046{left:126.666667pt;}
.x98_c00046{left:127.733333pt;}
.xb_c00046{left:128.666667pt;}
.x81_c00046{left:143.600000pt;}
.x99_c00046{left:148.266667pt;}
.xb6_c00046{left:152.800000pt;}
.x10d_c00046{left:154.533333pt;}
.xd5_c00046{left:155.466667pt;}
.x5c_c00046{left:156.533333pt;}
.x8e_c00046{left:159.333333pt;}
.x6b_c00046{left:160.800000pt;}
.x1c_c00046{left:161.733333pt;}
.xcc_c00046{left:163.066667pt;}
.x46_c00046{left:165.866667pt;}
.x5d_c00046{left:167.466667pt;}
.x39_c00046{left:168.933333pt;}
.x102_c00046{left:170.533333pt;}
.xdd_c00046{left:171.866667pt;}
.xb7_c00046{left:173.733333pt;}
.x10e_c00046{left:175.600000pt;}
.x52_c00046{left:177.200000pt;}
.xc_c00046{left:178.933333pt;}
.x1d_c00046{left:180.000000pt;}
.x2e_c00046{left:184.666667pt;}
.xd2_c00046{left:188.266667pt;}
.xb8_c00046{left:189.466667pt;}
.x5e_c00046{left:191.733333pt;}
.x6c_c00046{left:195.333333pt;}
.xf3_c00046{left:196.533333pt;}
.xa9_c00046{left:197.466667pt;}
.x2f_c00046{left:199.333333pt;}
.x82_c00046{left:200.933333pt;}
.xcd_c00046{left:203.733333pt;}
.x3a_c00046{left:205.466667pt;}
.x8f_c00046{left:207.333333pt;}
.x79_c00046{left:210.800000pt;}
.xde_c00046{left:214.000000pt;}
.xb0_c00046{left:215.200000pt;}
.x53_c00046{left:216.933333pt;}
.x1e_c00046{left:218.400000pt;}
.x9a_c00046{left:220.000000pt;}
.x10f_c00046{left:222.400000pt;}
.xed_c00046{left:224.000000pt;}
.x47_c00046{left:225.066667pt;}
.x5f_c00046{left:226.933333pt;}
.x90_c00046{left:228.533333pt;}
.x54_c00046{left:229.733333pt;}
.xdf_c00046{left:231.866667pt;}
.xc2_c00046{left:232.933333pt;}
.xf4_c00046{left:234.000000pt;}
.xd_c00046{left:234.933333pt;}
.xe7_c00046{left:236.133333pt;}
.x30_c00046{left:237.466667pt;}
.x3_c00046{left:239.333333pt;}
.x114_c00046{left:242.133333pt;}
.x9b_c00046{left:245.600000pt;}
.xd6_c00046{left:246.933333pt;}
.x103_c00046{left:248.400000pt;}
.xb1_c00046{left:250.400000pt;}
.xc3_c00046{left:251.466667pt;}
.x1f_c00046{left:253.866667pt;}
.xe_c00046{left:257.066667pt;}
.xaa_c00046{left:258.266667pt;}
.x109_c00046{left:259.200000pt;}
.x48_c00046{left:260.533333pt;}
.x60_c00046{left:267.200000pt;}
.x3b_c00046{left:269.733333pt;}
.x7a_c00046{left:271.333333pt;}
.x104_c00046{left:272.666667pt;}
.x115_c00046{left:273.866667pt;}
.xb9_c00046{left:274.933333pt;}
.x6d_c00046{left:277.600000pt;}
.xd3_c00046{left:279.600000pt;}
.xf_c00046{left:282.000000pt;}
.x61_c00046{left:285.066667pt;}
.x31_c00046{left:286.400000pt;}
.x49_c00046{left:287.733333pt;}
.xe8_c00046{left:291.200000pt;}
.x91_c00046{left:295.066667pt;}
.xba_c00046{left:296.400000pt;}
.xf5_c00046{left:297.333333pt;}
.xd7_c00046{left:299.066667pt;}
.x9c_c00046{left:300.000000pt;}
.x110_c00046{left:301.733333pt;}
.x83_c00046{left:303.466667pt;}
.x32_c00046{left:306.933333pt;}
.xee_c00046{left:307.866667pt;}
.x6e_c00046{left:308.933333pt;}
.x3c_c00046{left:312.933333pt;}
.xe9_c00046{left:315.466667pt;}
.x20_c00046{left:316.933333pt;}
.x4_c00046{left:318.400000pt;}
.xc4_c00046{left:321.866667pt;}
.x111_c00046{left:322.800000pt;}
.xb2_c00046{left:324.000000pt;}
.xbb_c00046{left:326.133333pt;}
.x10_c00046{left:327.733333pt;}
.xe4_c00046{left:328.666667pt;}
.x6f_c00046{left:331.600000pt;}
.x33_c00046{left:333.200000pt;}
.x4a_c00046{left:334.400000pt;}
.x21_c00046{left:335.466667pt;}
.x92_c00046{left:336.400000pt;}
.x3d_c00046{left:338.266667pt;}
.x9d_c00046{left:339.333333pt;}
.xc5_c00046{left:341.333333pt;}
.xab_c00046{left:343.333333pt;}
.xce_c00046{left:346.266667pt;}
.xd8_c00046{left:348.666667pt;}
.x9e_c00046{left:349.866667pt;}
.x3e_c00046{left:351.733333pt;}
.x105_c00046{left:353.600000pt;}
.xef_c00046{left:354.533333pt;}
.xc6_c00046{left:355.466667pt;}
.x62_c00046{left:357.066667pt;}
.x70_c00046{left:359.466667pt;}
.x55_c00046{left:360.933333pt;}
.xfb_c00046{left:361.866667pt;}
.x100_c00046{left:364.533333pt;}
.x10a_c00046{left:366.133333pt;}
.x7b_c00046{left:369.200000pt;}
.xd9_c00046{left:372.000000pt;}
.x84_c00046{left:372.933333pt;}
.x5_c00046{left:374.666667pt;}
.xfc_c00046{left:375.600000pt;}
.x9f_c00046{left:377.333333pt;}
.xac_c00046{left:378.266667pt;}
.x22_c00046{left:379.600000pt;}
.xcf_c00046{left:380.800000pt;}
.x1_c00046{left:382.400000pt;}
.xfd_c00046{left:385.466667pt;}
.x4b_c00046{left:388.133333pt;}
.x6_c00046{left:389.733333pt;}
.xe0_c00046{left:391.600000pt;}
.x11_c00046{left:393.066667pt;}
.x63_c00046{left:395.200000pt;}
.xc7_c00046{left:399.600000pt;}
.x85_c00046{left:401.066667pt;}
.x3f_c00046{left:402.933333pt;}
.x93_c00046{left:403.866667pt;}
.xa0_c00046{left:405.466667pt;}
.x23_c00046{left:406.533333pt;}
.x10b_c00046{left:407.466667pt;}
.xbc_c00046{left:408.666667pt;}
.x86_c00046{left:411.600000pt;}
.x40_c00046{left:413.466667pt;}
.x34_c00046{left:414.800000pt;}
.xa1_c00046{left:416.000000pt;}
.x12_c00046{left:418.666667pt;}
.x56_c00046{left:422.666667pt;}
.xbd_c00046{left:426.933333pt;}
.x71_c00046{left:428.933333pt;}
.x119_c00046{left:430.000000pt;}
.x7_c00046{left:432.266667pt;}
.x64_c00046{left:434.266667pt;}
.x94_c00046{left:435.866667pt;}
.x87_c00046{left:437.200000pt;}
.x24_c00046{left:438.533333pt;}
.x72_c00046{left:444.000000pt;}
.x4c_c00046{left:445.466667pt;}
.x57_c00046{left:447.600000pt;}
.x8_c00046{left:450.133333pt;}
.xbe_c00046{left:451.600000pt;}
.x7c_c00046{left:452.666667pt;}
.x25_c00046{left:453.866667pt;}
.x13_c00046{left:455.733333pt;}
.x2_c00046{left:457.600000pt;}
.x116_c00046{left:458.533333pt;}
.xea_c00046{left:459.733333pt;}
.xf6_c00046{left:461.200000pt;}
.xd0_c00046{left:462.133333pt;}
.x7d_c00046{left:463.200000pt;}
.xf0_c00046{left:464.133333pt;}
.xe5_c00046{left:465.333333pt;}
.xc8_c00046{left:466.533333pt;}
.x73_c00046{left:469.600000pt;}
.x65_c00046{left:473.066667pt;}
.x41_c00046{left:474.000000pt;}
.xda_c00046{left:475.066667pt;}
.xd4_c00046{left:480.133333pt;}
.xbf_c00046{left:483.333333pt;}
.x35_c00046{left:484.533333pt;}
.xeb_c00046{left:486.000000pt;}
.x26_c00046{left:487.200000pt;}
.xc9_c00046{left:488.666667pt;}
.x14_c00046{left:489.600000pt;}
.x88_c00046{left:490.933333pt;}
.xdb_c00046{left:492.933333pt;}
.x11a_c00046{left:494.000000pt;}
.xc0_c00046{left:497.066667pt;}
.x27_c00046{left:501.333333pt;}
.xfe_c00046{left:502.933333pt;}
.x66_c00046{left:504.800000pt;}
.x42_c00046{left:506.000000pt;}
.x9_c00046{left:508.000000pt;}
.x15_c00046{left:512.666667pt;}
.xe1_c00046{left:515.733333pt;}
.xa2_c00046{left:516.800000pt;}
.xdc_c00046{left:518.266667pt;}
.xad_c00046{left:519.600000pt;}
.xff_c00046{left:520.533333pt;}
.x95_c00046{left:525.466667pt;}
.x28_c00046{left:526.666667pt;}
.xf1_c00046{left:528.133333pt;}
.xc1_c00046{left:530.000000pt;}
.x16_c00046{left:536.666667pt;}
.xca_c00046{left:540.533333pt;}
.x89_c00046{left:542.800000pt;}
.xec_c00046{left:545.200000pt;}
.xe6_c00046{left:546.266667pt;}
.x4d_c00046{left:547.200000pt;}
.x7e_c00046{left:548.266667pt;}
.xa3_c00046{left:550.400000pt;}
.x17_c00046{left:552.666667pt;}
.xa_c00046{left:558.266667pt;}
.x43_c00046{left:560.133333pt;}
.xf7_c00046{left:562.266667pt;}
.x10c_c00046{left:565.200000pt;}
.x67_c00046{left:566.266667pt;}
.x74_c00046{left:568.133333pt;}
.xb3_c00046{left:569.333333pt;}
.x112_c00046{left:570.800000pt;}
.x58_c00046{left:571.733333pt;}
.xa4_c00046{left:575.733333pt;}
.x18_c00046{left:577.600000pt;}
.x75_c00046{left:579.066667pt;}
.x29_c00046{left:582.933333pt;}
.x59_c00046{left:589.333333pt;}
.x68_c00046{left:591.200000pt;}
.x8a_c00046{left:592.400000pt;}
.x4e_c00046{left:594.266667pt;}
.x36_c00046{left:598.133333pt;}
.x113_c00046{left:602.800000pt;}
.x96_c00046{left:603.866667pt;}
.xa5_c00046{left:604.800000pt;}
.x76_c00046{left:608.133333pt;}
.x5a_c00046{left:612.666667pt;}
.x19_c00046{left:615.066667pt;}
.xb4_c00046{left:616.400000pt;}
.x106_c00046{left:618.133333pt;}
.x7f_c00046{left:622.533333pt;}
.xa6_c00046{left:624.666667pt;}
.xf8_c00046{left:625.866667pt;}
.x2a_c00046{left:627.466667pt;}
.x4f_c00046{left:629.466667pt;}
.x8b_c00046{left:631.066667pt;}
.x101_c00046{left:633.866667pt;}
.x107_c00046{left:638.666667pt;}
.x97_c00046{left:640.000000pt;}
.xf2_c00046{left:641.066667pt;}
.x5b_c00046{left:643.066667pt;}
.x2b_c00046{left:644.133333pt;}
.x37_c00046{left:645.866667pt;}
.x8c_c00046{left:648.666667pt;}
.x69_c00046{left:650.400000pt;}
.x80_c00046{left:655.200000pt;}
.x50_c00046{left:656.933333pt;}
.x44_c00046{left:658.933333pt;}
.xa7_c00046{left:659.866667pt;}
.x117_c00046{left:661.200000pt;}
.xf9_c00046{left:664.000000pt;}
.x77_c00046{left:667.066667pt;}
.x2c_c00046{left:669.466667pt;}
.xae_c00046{left:670.533333pt;}
.x1a_c00046{left:672.666667pt;}
.xcb_c00046{left:681.466667pt;}
.x1b_c00046{left:683.600000pt;}
.xaf_c00046{left:688.400000pt;}
.xfa_c00046{left:690.266667pt;}
.xd1_c00046{left:692.533333pt;}
.x45_c00046{left:694.800000pt;}
.x6a_c00046{left:697.466667pt;}
.x108_c00046{left:698.533333pt;}
.x78_c00046{left:699.733333pt;}
.x51_c00046{left:701.733333pt;}
.x8d_c00046{left:704.000000pt;}
.xe2_c00046{left:705.200000pt;}
.x38_c00046{left:707.733333pt;}
.xb5_c00046{left:708.933333pt;}
.x2d_c00046{left:710.400000pt;}
.xa8_c00046{left:713.333333pt;}
}





/* 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_c00047 {
    display:none;
  }
  .loading-indicator_c00047.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00047 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_c00047 { 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_c00047" -> "#page-container .classname_c00047")
 */
.pf_c00047 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00047 { /* 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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00047 { /* 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_c00047 { /* 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_c00047 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00047 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00047 {overflow:visible;}
  }
}
.c_c00047 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00047 { /* 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_c00047:after { /* webkit #35443 */
  content: '';
}
.t_c00047:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00047 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 */
}
.__c00047 { /* 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_c00047 { /* info for Javascript */
  display:none;
}
.l_c00047 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00047 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00047 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00047: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_c00047 {
    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_c00047.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00047.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_c00047 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00047{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00047;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.000000;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;}
.m8f_c00047{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00047{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m33_c00047{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00047{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m96_c00047{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00047{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00047{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00047{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m76_c00047{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m46_c00047{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00047{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m57_c00047{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m73_c00047{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00047{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m79_c00047{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m52_c00047{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00047{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m50_c00047{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m49_c00047{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m82_c00047{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00047{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00047{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m94_c00047{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb_c00047{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m89_c00047{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m91_c00047{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.me_c00047{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m97_c00047{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00047{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m22_c00047{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m27_c00047{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00047{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00047{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m68_c00047{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00047{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00047{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m16_c00047{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m54_c00047{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00047{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m74_c00047{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m92_c00047{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00047{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m28_c00047{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00047{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m75_c00047{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mab_c00047{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00047{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00047{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m86_c00047{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00047{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00047{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m43_c00047{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m55_c00047{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10_c00047{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00047{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00047{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00047{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m59_c00047{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m25_c00047{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m48_c00047{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00047{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m88_c00047{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m60_c00047{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m32_c00047{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00047{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m87_c00047{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00047{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m12_c00047{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00047{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00047{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00047{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00047{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00047{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf_c00047{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00047{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m58_c00047{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00047{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md_c00047{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00047{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.maa_c00047{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m29_c00047{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00047{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00047{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m77_c00047{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c00047{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00047{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m45_c00047{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m40_c00047{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m69_c00047{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00047{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00047{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m30_c00047{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00047{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00047{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m90_c00047{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00047{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m72_c00047{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00047{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mae_c00047{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m65_c00047{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00047{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m61_c00047{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m15_c00047{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00047{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00047{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00047{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00047{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00047{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00047{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00047{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m66_c00047{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00047{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m36_c00047{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42_c00047{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m21_c00047{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00047{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mac_c00047{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m20_c00047{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00047{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m18_c00047{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m39_c00047{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00047{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00047{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m70_c00047{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m34_c00047{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m47_c00047{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m83_c00047{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mad_c00047{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14_c00047{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m37_c00047{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00047{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00047{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00047{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00047{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00047{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8_c00047{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00047{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00047{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00047{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00047{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00047{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00047{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m24_c00047{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00047{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m80_c00047{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m95_c00047{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m31_c00047{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00047{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7_c00047{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00047{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m63_c00047{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m93_c00047{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m26_c00047{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m78_c00047{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m0_c00047{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m51_c00047{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m56_c00047{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00047{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00047{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00047{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m38_c00047{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m67_c00047{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m99_c00047{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00047{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m98_c00047{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00047{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00047{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00047{vertical-align:0.000000px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{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__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00047{word-spacing:-4.361702px;}
.ws1_c00047{word-spacing:-4.285714px;}
.ws4_c00047{word-spacing:-1.250000px;}
.ws8_c00047{word-spacing:0.000000px;}
.ws0_c00047{word-spacing:4.137931px;}
.ws5_c00047{word-spacing:4.375000px;}
.ws2_c00047{word-spacing:5.000000px;}
.ws3_c00047{word-spacing:6.315789px;}
.ws6_c00047{word-spacing:7.894737px;}
.fc0_c00047{color:transparent;}
.fs0_c00047{font-size:54.000000px;}
.fs1_c00047{font-size:60.000000px;}
.y0_c00047{bottom:0.000000px;}
.y2d_c00047{bottom:143.850000px;}
.y2c_c00047{bottom:163.650000px;}
.y2b_c00047{bottom:183.750000px;}
.y2a_c00047{bottom:203.850000px;}
.y29_c00047{bottom:223.650000px;}
.y28_c00047{bottom:243.450000px;}
.y27_c00047{bottom:263.250000px;}
.y26_c00047{bottom:283.350000px;}
.y25_c00047{bottom:303.150000px;}
.y24_c00047{bottom:322.950000px;}
.y23_c00047{bottom:343.050000px;}
.y22_c00047{bottom:362.850000px;}
.y21_c00047{bottom:382.950000px;}
.y20_c00047{bottom:402.750000px;}
.y1f_c00047{bottom:422.550000px;}
.y1e_c00047{bottom:442.350000px;}
.y1d_c00047{bottom:462.150000px;}
.y1c_c00047{bottom:482.250000px;}
.y1b_c00047{bottom:502.350000px;}
.y1a_c00047{bottom:522.150000px;}
.y19_c00047{bottom:541.950000px;}
.y18_c00047{bottom:561.750000px;}
.y17_c00047{bottom:581.850000px;}
.y16_c00047{bottom:601.650000px;}
.y15_c00047{bottom:621.750000px;}
.y14_c00047{bottom:641.850000px;}
.y13_c00047{bottom:661.650000px;}
.y12_c00047{bottom:681.600000px;}
.y11_c00047{bottom:701.700000px;}
.y10_c00047{bottom:721.500000px;}
.yf_c00047{bottom:741.600000px;}
.ye_c00047{bottom:761.700000px;}
.yd_c00047{bottom:781.500000px;}
.yc_c00047{bottom:802.050000px;}
.yb_c00047{bottom:822.150000px;}
.ya_c00047{bottom:841.950000px;}
.y9_c00047{bottom:862.050000px;}
.y8_c00047{bottom:882.150000px;}
.y7_c00047{bottom:901.950000px;}
.y6_c00047{bottom:922.050000px;}
.y5_c00047{bottom:941.850000px;}
.y4_c00047{bottom:961.950000px;}
.y3_c00047{bottom:981.750000px;}
.y2_c00047{bottom:1001.850000px;}
.y1_c00047{bottom:1040.400000px;}
.h2_c00047{height:54.000000px;}
.h3_c00047{height:60.000000px;}
.h1_c00047{height:1167.000000px;}
.h0_c00047{height:1167.119934px;}
.w0_c00047{width:913.320007px;}
.w1_c00047{width:913.500000px;}
.x0_c00047{left:0.000000px;}
.x123_c00047{left:100.050000px;}
.xfd_c00047{left:101.100000px;}
.x5_c00047{left:102.300000px;}
.x143_c00047{left:115.050000px;}
.x12f_c00047{left:116.550000px;}
.x29_c00047{left:121.050000px;}
.x95_c00047{left:123.300000px;}
.x50_c00047{left:125.700000px;}
.xde_c00047{left:127.500000px;}
.xa7_c00047{left:132.000000px;}
.x89_c00047{left:133.500000px;}
.xf8_c00047{left:135.600000px;}
.x51_c00047{left:136.800000px;}
.x10f_c00047{left:138.150000px;}
.x72_c00047{left:139.950000px;}
.x66_c00047{left:141.600000px;}
.x8a_c00047{left:146.100000px;}
.x107_c00047{left:147.450000px;}
.x2a_c00047{left:150.150000px;}
.xdb_c00047{left:153.150000px;}
.x9d_c00047{left:155.550000px;}
.x18_c00047{left:156.900000px;}
.xa8_c00047{left:158.700000px;}
.x73_c00047{left:160.800000px;}
.x128_c00047{left:162.450000px;}
.x147_c00047{left:163.950000px;}
.xb3_c00047{left:165.600000px;}
.xe3_c00047{left:166.950000px;}
.x6_c00047{left:169.200000px;}
.x133_c00047{left:170.400000px;}
.x37_c00047{left:171.600000px;}
.x7d_c00047{left:174.450000px;}
.xc6_c00047{left:179.550000px;}
.x52_c00047{left:181.500000px;}
.x102_c00047{left:189.600000px;}
.xb4_c00047{left:191.100000px;}
.x7_c00047{left:192.300000px;}
.xfe_c00047{left:193.650000px;}
.x7e_c00047{left:196.050000px;}
.x8b_c00047{left:198.600000px;}
.x67_c00047{left:200.250000px;}
.x42_c00047{left:203.850000px;}
.x2b_c00047{left:207.450000px;}
.x53_c00047{left:208.800000px;}
.x19_c00047{left:210.600000px;}
.x11e_c00047{left:211.650000px;}
.x110_c00047{left:216.000000px;}
.x8_c00047{left:217.800000px;}
.x5d_c00047{left:219.450000px;}
.xa9_c00047{left:222.000000px;}
.xc0_c00047{left:223.500000px;}
.x108_c00047{left:225.600000px;}
.x74_c00047{left:229.500000px;}
.x43_c00047{left:231.900000px;}
.x38_c00047{left:234.600000px;}
.x1a_c00047{left:236.100000px;}
.x124_c00047{left:238.950000px;}
.x148_c00047{left:241.050000px;}
.x130_c00047{left:242.700000px;}
.x111_c00047{left:244.050000px;}
.x109_c00047{left:245.100000px;}
.xe8_c00047{left:246.150000px;}
.x9e_c00047{left:248.100000px;}
.xd2_c00047{left:249.450000px;}
.xb5_c00047{left:252.000000px;}
.x87_c00047{left:255.150000px;}
.x9_c00047{left:256.350000px;}
.x75_c00047{left:258.000000px;}
.x8c_c00047{left:262.650000px;}
.x44_c00047{left:264.000000px;}
.x9f_c00047{left:266.400000px;}
.xd3_c00047{left:267.750000px;}
.x125_c00047{left:269.550000px;}
.x10a_c00047{left:272.400000px;}
.xff_c00047{left:273.600000px;}
.x54_c00047{left:274.650000px;}
.x119_c00047{left:276.750000px;}
.x1b_c00047{left:278.550000px;}
.x5e_c00047{left:280.350000px;}
.x2c_c00047{left:282.300000px;}
.xd4_c00047{left:285.450000px;}
.x88_c00047{left:289.350000px;}
.x103_c00047{left:291.450000px;}
.x39_c00047{left:292.500000px;}
.x1c_c00047{left:293.700000px;}
.x112_c00047{left:295.200000px;}
.xaa_c00047{left:296.850000px;}
.xa_c00047{left:299.850000px;}
.x68_c00047{left:302.550000px;}
.xcb_c00047{left:306.000000px;}
.x76_c00047{left:308.400000px;}
.x7f_c00047{left:309.450000px;}
.x100_c00047{left:312.150000px;}
.xf2_c00047{left:313.500000px;}
.x11a_c00047{left:315.300000px;}
.xb_c00047{left:317.850000px;}
.xc7_c00047{left:318.900000px;}
.xc1_c00047{left:319.950000px;}
.xe4_c00047{left:322.050000px;}
.x69_c00047{left:324.150000px;}
.xdc_c00047{left:325.800000px;}
.xb6_c00047{left:327.600000px;}
.x45_c00047{left:328.800000px;}
.xab_c00047{left:330.000000px;}
.xe9_c00047{left:331.500000px;}
.x129_c00047{left:335.700000px;}
.xc2_c00047{left:338.250000px;}
.x2d_c00047{left:340.200000px;}
.xdf_c00047{left:341.700000px;}
.x1d_c00047{left:343.050000px;}
.x80_c00047{left:345.150000px;}
.x8d_c00047{left:346.500000px;}
.xcc_c00047{left:348.450000px;}
.x46_c00047{left:353.250000px;}
.x5f_c00047{left:357.000000px;}
.xe0_c00047{left:358.950000px;}
.x10b_c00047{left:360.000000px;}
.xc_c00047{left:361.050000px;}
.xe5_c00047{left:363.450000px;}
.x104_c00047{left:366.300000px;}
.x3a_c00047{left:367.350000px;}
.x77_c00047{left:368.550000px;}
.x96_c00047{left:372.000000px;}
.x1_c00047{left:373.650000px;}
.x55_c00047{left:374.700000px;}
.x12a_c00047{left:377.100000px;}
.xd_c00047{left:378.300000px;}
.x60_c00047{left:379.650000px;}
.x11b_c00047{left:381.150000px;}
.xf3_c00047{left:382.200000px;}
.x140_c00047{left:386.100000px;}
.x8e_c00047{left:387.150000px;}
.x3b_c00047{left:388.650000px;}
.x61_c00047{left:390.750000px;}
.x78_c00047{left:392.700000px;}
.xf9_c00047{left:393.900000px;}
.x136_c00047{left:395.850000px;}
.xe_c00047{left:397.800000px;}
.xb7_c00047{left:398.850000px;}
.xf4_c00047{left:399.900000px;}
.xcd_c00047{left:402.150000px;}
.x141_c00047{left:404.100000px;}
.x1e_c00047{left:406.350000px;}
.xd5_c00047{left:408.900000px;}
.x47_c00047{left:410.100000px;}
.x137_c00047{left:411.750000px;}
.x113_c00047{left:414.750000px;}
.xfa_c00047{left:417.600000px;}
.x3c_c00047{left:419.550000px;}
.xac_c00047{left:420.600000px;}
.x6a_c00047{left:423.900000px;}
.x81_c00047{left:425.400000px;}
.x2_c00047{left:426.600000px;}
.x11f_c00047{left:429.000000px;}
.x2e_c00047{left:430.200000px;}
.xb8_c00047{left:433.050000px;}
.x56_c00047{left:435.150000px;}
.x11c_c00047{left:437.250000px;}
.xa0_c00047{left:439.650000px;}
.x12b_c00047{left:441.150000px;}
.x1f_c00047{left:442.650000px;}
.xec_c00047{left:446.550000px;}
.x13c_c00047{left:447.750000px;}
.x3_c00047{left:450.000000px;}
.xce_c00047{left:452.250000px;}
.x8f_c00047{left:454.800000px;}
.xc8_c00047{left:456.000000px;}
.x134_c00047{left:459.150000px;}
.x48_c00047{left:461.250000px;}
.xf5_c00047{left:462.600000px;}
.x6b_c00047{left:464.250000px;}
.xb9_c00047{left:466.200000px;}
.xf_c00047{left:470.100000px;}
.x114_c00047{left:472.050000px;}
.xa1_c00047{left:473.100000px;}
.x120_c00047{left:474.300000px;}
.xed_c00047{left:475.650000px;}
.xd6_c00047{left:479.100000px;}
.x10c_c00047{left:480.150000px;}
.x20_c00047{left:481.500000px;}
.x79_c00047{left:483.450000px;}
.x10_c00047{left:486.000000px;}
.xc9_c00047{left:488.400000px;}
.x6c_c00047{left:490.950000px;}
.x49_c00047{left:493.650000px;}
.xad_c00047{left:495.450000px;}
.x138_c00047{left:497.550000px;}
.xcf_c00047{left:498.600000px;}
.x11d_c00047{left:500.550000px;}
.x90_c00047{left:502.350000px;}
.x97_c00047{left:503.700000px;}
.x3d_c00047{left:504.900000px;}
.x62_c00047{left:506.400000px;}
.x2f_c00047{left:507.600000px;}
.x115_c00047{left:509.850000px;}
.x7a_c00047{left:512.250000px;}
.xea_c00047{left:513.300000px;}
.xe6_c00047{left:515.100000px;}
.xba_c00047{left:516.300000px;}
.x21_c00047{left:517.500000px;}
.x57_c00047{left:519.450000px;}
.x4a_c00047{left:520.950000px;}
.x126_c00047{left:522.600000px;}
.xd7_c00047{left:523.650000px;}
.x91_c00047{left:525.450000px;}
.x105_c00047{left:527.550000px;}
.xd0_c00047{left:532.500000px;}
.x63_c00047{left:533.700000px;}
.xe1_c00047{left:534.750000px;}
.x30_c00047{left:536.700000px;}
.x11_c00047{left:539.250000px;}
.x6d_c00047{left:541.650000px;}
.x22_c00047{left:543.000000px;}
.x12c_c00047{left:544.050000px;}
.xdd_c00047{left:546.750000px;}
.x139_c00047{left:549.000000px;}
.x145_c00047{left:550.500000px;}
.x3e_c00047{left:551.700000px;}
.x4b_c00047{left:553.350000px;}
.x142_c00047{left:555.000000px;}
.xee_c00047{left:557.400000px;}
.xae_c00047{left:560.250000px;}
.x106_c00047{left:561.450000px;}
.x58_c00047{left:563.400000px;}
.x31_c00047{left:564.750000px;}
.x121_c00047{left:566.400000px;}
.x92_c00047{left:569.700000px;}
.xa2_c00047{left:571.500000px;}
.x12_c00047{left:573.150000px;}
.x7b_c00047{left:574.500000px;}
.xf6_c00047{left:575.550000px;}
.xc3_c00047{left:579.150000px;}
.x13a_c00047{left:580.950000px;}
.x13d_c00047{left:582.000000px;}
.x3f_c00047{left:585.150000px;}
.x82_c00047{left:586.650000px;}
.x23_c00047{left:588.750000px;}
.x135_c00047{left:590.250000px;}
.x13_c00047{left:591.450000px;}
.x59_c00047{left:594.300000px;}
.x98_c00047{left:595.800000px;}
.xc4_c00047{left:597.450000px;}
.x24_c00047{left:599.850000px;}
.x10d_c00047{left:604.350000px;}
.xd8_c00047{left:608.550000px;}
.xaf_c00047{left:610.650000px;}
.x83_c00047{left:611.850000px;}
.xef_c00047{left:615.000000px;}
.x6e_c00047{left:616.200000px;}
.xc5_c00047{left:617.550000px;}
.xe7_c00047{left:620.100000px;}
.x12d_c00047{left:621.450000px;}
.x149_c00047{left:622.500000px;}
.xa3_c00047{left:624.000000px;}
.x32_c00047{left:625.650000px;}
.x4c_c00047{left:627.150000px;}
.x25_c00047{left:628.650000px;}
.x13b_c00047{left:629.850000px;}
.x14_c00047{left:632.100000px;}
.xbb_c00047{left:633.300000px;}
.xe2_c00047{left:634.500000px;}
.x144_c00047{left:635.850000px;}
.xd9_c00047{left:637.650000px;}
.x6f_c00047{left:639.900000px;}
.x84_c00047{left:642.150000px;}
.x10e_c00047{left:644.700000px;}
.x33_c00047{left:645.750000px;}
.x26_c00047{left:648.750000px;}
.x4d_c00047{left:650.250000px;}
.x122_c00047{left:653.850000px;}
.xb0_c00047{left:655.950000px;}
.xf7_c00047{left:657.300000px;}
.xbc_c00047{left:658.800000px;}
.x5a_c00047{left:660.600000px;}
.x93_c00047{left:661.800000px;}
.xa4_c00047{left:663.600000px;}
.xda_c00047{left:665.400000px;}
.x116_c00047{left:666.750000px;}
.x70_c00047{left:668.700000px;}
.x85_c00047{left:670.200000px;}
.x13e_c00047{left:672.300000px;}
.x94_c00047{left:673.650000px;}
.xf0_c00047{left:674.700000px;}
.xbd_c00047{left:676.050000px;}
.x15_c00047{left:678.900000px;}
.x34_c00047{left:680.250000px;}
.x4e_c00047{left:681.600000px;}
.xb1_c00047{left:685.800000px;}
.x27_c00047{left:687.300000px;}
.x64_c00047{left:688.800000px;}
.xa5_c00047{left:692.100000px;}
.x131_c00047{left:693.450000px;}
.x5b_c00047{left:695.550000px;}
.x86_c00047{left:698.250000px;}
.x99_c00047{left:699.450000px;}
.xfb_c00047{left:702.300000px;}
.x7c_c00047{left:703.650000px;}
.xbe_c00047{left:704.850000px;}
.x146_c00047{left:706.200000px;}
.x117_c00047{left:707.400000px;}
.x12e_c00047{left:708.750000px;}
.x9a_c00047{left:710.550000px;}
.xca_c00047{left:712.200000px;}
.x132_c00047{left:713.250000px;}
.xd1_c00047{left:714.450000px;}
.x40_c00047{left:716.400000px;}
.x101_c00047{left:719.100000px;}
.x65_c00047{left:721.500000px;}
.x16_c00047{left:722.850000px;}
.x35_c00047{left:724.950000px;}
.x5c_c00047{left:726.900000px;}
.x13f_c00047{left:729.150000px;}
.xf1_c00047{left:730.800000px;}
.x28_c00047{left:732.000000px;}
.x71_c00047{left:734.250000px;}
.x118_c00047{left:736.200000px;}
.x9b_c00047{left:737.250000px;}
.xfc_c00047{left:740.400000px;}
.xeb_c00047{left:743.250000px;}
.x127_c00047{left:745.650000px;}
.xa6_c00047{left:746.850000px;}
.x17_c00047{left:748.350000px;}
.x4f_c00047{left:749.550000px;}
.x36_c00047{left:754.500000px;}
.x41_c00047{left:755.700000px;}
.xb2_c00047{left:757.050000px;}
.xbf_c00047{left:758.100000px;}
.x4_c00047{left:762.450000px;}
.x9c_c00047{left:763.500000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws7_c00047{word-spacing:-3.877069pt;}
.ws1_c00047{word-spacing:-3.809524pt;}
.ws4_c00047{word-spacing:-1.111111pt;}
.ws8_c00047{word-spacing:0.000000pt;}
.ws0_c00047{word-spacing:3.678161pt;}
.ws5_c00047{word-spacing:3.888889pt;}
.ws2_c00047{word-spacing:4.444444pt;}
.ws3_c00047{word-spacing:5.614035pt;}
.ws6_c00047{word-spacing:7.017544pt;}
.fs0_c00047{font-size:48.000000pt;}
.fs1_c00047{font-size:53.333333pt;}
.y0_c00047{bottom:0.000000pt;}
.y2d_c00047{bottom:127.866667pt;}
.y2c_c00047{bottom:145.466667pt;}
.y2b_c00047{bottom:163.333333pt;}
.y2a_c00047{bottom:181.200000pt;}
.y29_c00047{bottom:198.800000pt;}
.y28_c00047{bottom:216.400000pt;}
.y27_c00047{bottom:234.000000pt;}
.y26_c00047{bottom:251.866667pt;}
.y25_c00047{bottom:269.466667pt;}
.y24_c00047{bottom:287.066667pt;}
.y23_c00047{bottom:304.933333pt;}
.y22_c00047{bottom:322.533333pt;}
.y21_c00047{bottom:340.400000pt;}
.y20_c00047{bottom:358.000000pt;}
.y1f_c00047{bottom:375.600000pt;}
.y1e_c00047{bottom:393.200000pt;}
.y1d_c00047{bottom:410.800000pt;}
.y1c_c00047{bottom:428.666667pt;}
.y1b_c00047{bottom:446.533333pt;}
.y1a_c00047{bottom:464.133333pt;}
.y19_c00047{bottom:481.733333pt;}
.y18_c00047{bottom:499.333333pt;}
.y17_c00047{bottom:517.200000pt;}
.y16_c00047{bottom:534.800000pt;}
.y15_c00047{bottom:552.666667pt;}
.y14_c00047{bottom:570.533333pt;}
.y13_c00047{bottom:588.133333pt;}
.y12_c00047{bottom:605.866667pt;}
.y11_c00047{bottom:623.733333pt;}
.y10_c00047{bottom:641.333333pt;}
.yf_c00047{bottom:659.200000pt;}
.ye_c00047{bottom:677.066667pt;}
.yd_c00047{bottom:694.666667pt;}
.yc_c00047{bottom:712.933333pt;}
.yb_c00047{bottom:730.800000pt;}
.ya_c00047{bottom:748.400000pt;}
.y9_c00047{bottom:766.266667pt;}
.y8_c00047{bottom:784.133333pt;}
.y7_c00047{bottom:801.733333pt;}
.y6_c00047{bottom:819.600000pt;}
.y5_c00047{bottom:837.200000pt;}
.y4_c00047{bottom:855.066667pt;}
.y3_c00047{bottom:872.666667pt;}
.y2_c00047{bottom:890.533333pt;}
.y1_c00047{bottom:924.800000pt;}
.h2_c00047{height:48.000000pt;}
.h3_c00047{height:53.333333pt;}
.h1_c00047{height:1037.333333pt;}
.h0_c00047{height:1037.439941pt;}
.w0_c00047{width:811.840007pt;}
.w1_c00047{width:812.000000pt;}
.x0_c00047{left:0.000000pt;}
.x123_c00047{left:88.933333pt;}
.xfd_c00047{left:89.866667pt;}
.x5_c00047{left:90.933333pt;}
.x143_c00047{left:102.266667pt;}
.x12f_c00047{left:103.600000pt;}
.x29_c00047{left:107.600000pt;}
.x95_c00047{left:109.600000pt;}
.x50_c00047{left:111.733333pt;}
.xde_c00047{left:113.333333pt;}
.xa7_c00047{left:117.333333pt;}
.x89_c00047{left:118.666667pt;}
.xf8_c00047{left:120.533333pt;}
.x51_c00047{left:121.600000pt;}
.x10f_c00047{left:122.800000pt;}
.x72_c00047{left:124.400000pt;}
.x66_c00047{left:125.866667pt;}
.x8a_c00047{left:129.866667pt;}
.x107_c00047{left:131.066667pt;}
.x2a_c00047{left:133.466667pt;}
.xdb_c00047{left:136.133333pt;}
.x9d_c00047{left:138.266667pt;}
.x18_c00047{left:139.466667pt;}
.xa8_c00047{left:141.066667pt;}
.x73_c00047{left:142.933333pt;}
.x128_c00047{left:144.400000pt;}
.x147_c00047{left:145.733333pt;}
.xb3_c00047{left:147.200000pt;}
.xe3_c00047{left:148.400000pt;}
.x6_c00047{left:150.400000pt;}
.x133_c00047{left:151.466667pt;}
.x37_c00047{left:152.533333pt;}
.x7d_c00047{left:155.066667pt;}
.xc6_c00047{left:159.600000pt;}
.x52_c00047{left:161.333333pt;}
.x102_c00047{left:168.533333pt;}
.xb4_c00047{left:169.866667pt;}
.x7_c00047{left:170.933333pt;}
.xfe_c00047{left:172.133333pt;}
.x7e_c00047{left:174.266667pt;}
.x8b_c00047{left:176.533333pt;}
.x67_c00047{left:178.000000pt;}
.x42_c00047{left:181.200000pt;}
.x2b_c00047{left:184.400000pt;}
.x53_c00047{left:185.600000pt;}
.x19_c00047{left:187.200000pt;}
.x11e_c00047{left:188.133333pt;}
.x110_c00047{left:192.000000pt;}
.x8_c00047{left:193.600000pt;}
.x5d_c00047{left:195.066667pt;}
.xa9_c00047{left:197.333333pt;}
.xc0_c00047{left:198.666667pt;}
.x108_c00047{left:200.533333pt;}
.x74_c00047{left:204.000000pt;}
.x43_c00047{left:206.133333pt;}
.x38_c00047{left:208.533333pt;}
.x1a_c00047{left:209.866667pt;}
.x124_c00047{left:212.400000pt;}
.x148_c00047{left:214.266667pt;}
.x130_c00047{left:215.733333pt;}
.x111_c00047{left:216.933333pt;}
.x109_c00047{left:217.866667pt;}
.xe8_c00047{left:218.800000pt;}
.x9e_c00047{left:220.533333pt;}
.xd2_c00047{left:221.733333pt;}
.xb5_c00047{left:224.000000pt;}
.x87_c00047{left:226.800000pt;}
.x9_c00047{left:227.866667pt;}
.x75_c00047{left:229.333333pt;}
.x8c_c00047{left:233.466667pt;}
.x44_c00047{left:234.666667pt;}
.x9f_c00047{left:236.800000pt;}
.xd3_c00047{left:238.000000pt;}
.x125_c00047{left:239.600000pt;}
.x10a_c00047{left:242.133333pt;}
.xff_c00047{left:243.200000pt;}
.x54_c00047{left:244.133333pt;}
.x119_c00047{left:246.000000pt;}
.x1b_c00047{left:247.600000pt;}
.x5e_c00047{left:249.200000pt;}
.x2c_c00047{left:250.933333pt;}
.xd4_c00047{left:253.733333pt;}
.x88_c00047{left:257.200000pt;}
.x103_c00047{left:259.066667pt;}
.x39_c00047{left:260.000000pt;}
.x1c_c00047{left:261.066667pt;}
.x112_c00047{left:262.400000pt;}
.xaa_c00047{left:263.866667pt;}
.xa_c00047{left:266.533333pt;}
.x68_c00047{left:268.933333pt;}
.xcb_c00047{left:272.000000pt;}
.x76_c00047{left:274.133333pt;}
.x7f_c00047{left:275.066667pt;}
.x100_c00047{left:277.466667pt;}
.xf2_c00047{left:278.666667pt;}
.x11a_c00047{left:280.266667pt;}
.xb_c00047{left:282.533333pt;}
.xc7_c00047{left:283.466667pt;}
.xc1_c00047{left:284.400000pt;}
.xe4_c00047{left:286.266667pt;}
.x69_c00047{left:288.133333pt;}
.xdc_c00047{left:289.600000pt;}
.xb6_c00047{left:291.200000pt;}
.x45_c00047{left:292.266667pt;}
.xab_c00047{left:293.333333pt;}
.xe9_c00047{left:294.666667pt;}
.x129_c00047{left:298.400000pt;}
.xc2_c00047{left:300.666667pt;}
.x2d_c00047{left:302.400000pt;}
.xdf_c00047{left:303.733333pt;}
.x1d_c00047{left:304.933333pt;}
.x80_c00047{left:306.800000pt;}
.x8d_c00047{left:308.000000pt;}
.xcc_c00047{left:309.733333pt;}
.x46_c00047{left:314.000000pt;}
.x5f_c00047{left:317.333333pt;}
.xe0_c00047{left:319.066667pt;}
.x10b_c00047{left:320.000000pt;}
.xc_c00047{left:320.933333pt;}
.xe5_c00047{left:323.066667pt;}
.x104_c00047{left:325.600000pt;}
.x3a_c00047{left:326.533333pt;}
.x77_c00047{left:327.600000pt;}
.x96_c00047{left:330.666667pt;}
.x1_c00047{left:332.133333pt;}
.x55_c00047{left:333.066667pt;}
.x12a_c00047{left:335.200000pt;}
.xd_c00047{left:336.266667pt;}
.x60_c00047{left:337.466667pt;}
.x11b_c00047{left:338.800000pt;}
.xf3_c00047{left:339.733333pt;}
.x140_c00047{left:343.200000pt;}
.x8e_c00047{left:344.133333pt;}
.x3b_c00047{left:345.466667pt;}
.x61_c00047{left:347.333333pt;}
.x78_c00047{left:349.066667pt;}
.xf9_c00047{left:350.133333pt;}
.x136_c00047{left:351.866667pt;}
.xe_c00047{left:353.600000pt;}
.xb7_c00047{left:354.533333pt;}
.xf4_c00047{left:355.466667pt;}
.xcd_c00047{left:357.466667pt;}
.x141_c00047{left:359.200000pt;}
.x1e_c00047{left:361.200000pt;}
.xd5_c00047{left:363.466667pt;}
.x47_c00047{left:364.533333pt;}
.x137_c00047{left:366.000000pt;}
.x113_c00047{left:368.666667pt;}
.xfa_c00047{left:371.200000pt;}
.x3c_c00047{left:372.933333pt;}
.xac_c00047{left:373.866667pt;}
.x6a_c00047{left:376.800000pt;}
.x81_c00047{left:378.133333pt;}
.x2_c00047{left:379.200000pt;}
.x11f_c00047{left:381.333333pt;}
.x2e_c00047{left:382.400000pt;}
.xb8_c00047{left:384.933333pt;}
.x56_c00047{left:386.800000pt;}
.x11c_c00047{left:388.666667pt;}
.xa0_c00047{left:390.800000pt;}
.x12b_c00047{left:392.133333pt;}
.x1f_c00047{left:393.466667pt;}
.xec_c00047{left:396.933333pt;}
.x13c_c00047{left:398.000000pt;}
.x3_c00047{left:400.000000pt;}
.xce_c00047{left:402.000000pt;}
.x8f_c00047{left:404.266667pt;}
.xc8_c00047{left:405.333333pt;}
.x134_c00047{left:408.133333pt;}
.x48_c00047{left:410.000000pt;}
.xf5_c00047{left:411.200000pt;}
.x6b_c00047{left:412.666667pt;}
.xb9_c00047{left:414.400000pt;}
.xf_c00047{left:417.866667pt;}
.x114_c00047{left:419.600000pt;}
.xa1_c00047{left:420.533333pt;}
.x120_c00047{left:421.600000pt;}
.xed_c00047{left:422.800000pt;}
.xd6_c00047{left:425.866667pt;}
.x10c_c00047{left:426.800000pt;}
.x20_c00047{left:428.000000pt;}
.x79_c00047{left:429.733333pt;}
.x10_c00047{left:432.000000pt;}
.xc9_c00047{left:434.133333pt;}
.x6c_c00047{left:436.400000pt;}
.x49_c00047{left:438.800000pt;}
.xad_c00047{left:440.400000pt;}
.x138_c00047{left:442.266667pt;}
.xcf_c00047{left:443.200000pt;}
.x11d_c00047{left:444.933333pt;}
.x90_c00047{left:446.533333pt;}
.x97_c00047{left:447.733333pt;}
.x3d_c00047{left:448.800000pt;}
.x62_c00047{left:450.133333pt;}
.x2f_c00047{left:451.200000pt;}
.x115_c00047{left:453.200000pt;}
.x7a_c00047{left:455.333333pt;}
.xea_c00047{left:456.266667pt;}
.xe6_c00047{left:457.866667pt;}
.xba_c00047{left:458.933333pt;}
.x21_c00047{left:460.000000pt;}
.x57_c00047{left:461.733333pt;}
.x4a_c00047{left:463.066667pt;}
.x126_c00047{left:464.533333pt;}
.xd7_c00047{left:465.466667pt;}
.x91_c00047{left:467.066667pt;}
.x105_c00047{left:468.933333pt;}
.xd0_c00047{left:473.333333pt;}
.x63_c00047{left:474.400000pt;}
.xe1_c00047{left:475.333333pt;}
.x30_c00047{left:477.066667pt;}
.x11_c00047{left:479.333333pt;}
.x6d_c00047{left:481.466667pt;}
.x22_c00047{left:482.666667pt;}
.x12c_c00047{left:483.600000pt;}
.xdd_c00047{left:486.000000pt;}
.x139_c00047{left:488.000000pt;}
.x145_c00047{left:489.333333pt;}
.x3e_c00047{left:490.400000pt;}
.x4b_c00047{left:491.866667pt;}
.x142_c00047{left:493.333333pt;}
.xee_c00047{left:495.466667pt;}
.xae_c00047{left:498.000000pt;}
.x106_c00047{left:499.066667pt;}
.x58_c00047{left:500.800000pt;}
.x31_c00047{left:502.000000pt;}
.x121_c00047{left:503.466667pt;}
.x92_c00047{left:506.400000pt;}
.xa2_c00047{left:508.000000pt;}
.x12_c00047{left:509.466667pt;}
.x7b_c00047{left:510.666667pt;}
.xf6_c00047{left:511.600000pt;}
.xc3_c00047{left:514.800000pt;}
.x13a_c00047{left:516.400000pt;}
.x13d_c00047{left:517.333333pt;}
.x3f_c00047{left:520.133333pt;}
.x82_c00047{left:521.466667pt;}
.x23_c00047{left:523.333333pt;}
.x135_c00047{left:524.666667pt;}
.x13_c00047{left:525.733333pt;}
.x59_c00047{left:528.266667pt;}
.x98_c00047{left:529.600000pt;}
.xc4_c00047{left:531.066667pt;}
.x24_c00047{left:533.200000pt;}
.x10d_c00047{left:537.200000pt;}
.xd8_c00047{left:540.933333pt;}
.xaf_c00047{left:542.800000pt;}
.x83_c00047{left:543.866667pt;}
.xef_c00047{left:546.666667pt;}
.x6e_c00047{left:547.733333pt;}
.xc5_c00047{left:548.933333pt;}
.xe7_c00047{left:551.200000pt;}
.x12d_c00047{left:552.400000pt;}
.x149_c00047{left:553.333333pt;}
.xa3_c00047{left:554.666667pt;}
.x32_c00047{left:556.133333pt;}
.x4c_c00047{left:557.466667pt;}
.x25_c00047{left:558.800000pt;}
.x13b_c00047{left:559.866667pt;}
.x14_c00047{left:561.866667pt;}
.xbb_c00047{left:562.933333pt;}
.xe2_c00047{left:564.000000pt;}
.x144_c00047{left:565.200000pt;}
.xd9_c00047{left:566.800000pt;}
.x6f_c00047{left:568.800000pt;}
.x84_c00047{left:570.800000pt;}
.x10e_c00047{left:573.066667pt;}
.x33_c00047{left:574.000000pt;}
.x26_c00047{left:576.666667pt;}
.x4d_c00047{left:578.000000pt;}
.x122_c00047{left:581.200000pt;}
.xb0_c00047{left:583.066667pt;}
.xf7_c00047{left:584.266667pt;}
.xbc_c00047{left:585.600000pt;}
.x5a_c00047{left:587.200000pt;}
.x93_c00047{left:588.266667pt;}
.xa4_c00047{left:589.866667pt;}
.xda_c00047{left:591.466667pt;}
.x116_c00047{left:592.666667pt;}
.x70_c00047{left:594.400000pt;}
.x85_c00047{left:595.733333pt;}
.x13e_c00047{left:597.600000pt;}
.x94_c00047{left:598.800000pt;}
.xf0_c00047{left:599.733333pt;}
.xbd_c00047{left:600.933333pt;}
.x15_c00047{left:603.466667pt;}
.x34_c00047{left:604.666667pt;}
.x4e_c00047{left:605.866667pt;}
.xb1_c00047{left:609.600000pt;}
.x27_c00047{left:610.933333pt;}
.x64_c00047{left:612.266667pt;}
.xa5_c00047{left:615.200000pt;}
.x131_c00047{left:616.400000pt;}
.x5b_c00047{left:618.266667pt;}
.x86_c00047{left:620.666667pt;}
.x99_c00047{left:621.733333pt;}
.xfb_c00047{left:624.266667pt;}
.x7c_c00047{left:625.466667pt;}
.xbe_c00047{left:626.533333pt;}
.x146_c00047{left:627.733333pt;}
.x117_c00047{left:628.800000pt;}
.x12e_c00047{left:630.000000pt;}
.x9a_c00047{left:631.600000pt;}
.xca_c00047{left:633.066667pt;}
.x132_c00047{left:634.000000pt;}
.xd1_c00047{left:635.066667pt;}
.x40_c00047{left:636.800000pt;}
.x101_c00047{left:639.200000pt;}
.x65_c00047{left:641.333333pt;}
.x16_c00047{left:642.533333pt;}
.x35_c00047{left:644.400000pt;}
.x5c_c00047{left:646.133333pt;}
.x13f_c00047{left:648.133333pt;}
.xf1_c00047{left:649.600000pt;}
.x28_c00047{left:650.666667pt;}
.x71_c00047{left:652.666667pt;}
.x118_c00047{left:654.400000pt;}
.x9b_c00047{left:655.333333pt;}
.xfc_c00047{left:658.133333pt;}
.xeb_c00047{left:660.666667pt;}
.x127_c00047{left:662.800000pt;}
.xa6_c00047{left:663.866667pt;}
.x17_c00047{left:665.200000pt;}
.x4f_c00047{left:666.266667pt;}
.x36_c00047{left:670.666667pt;}
.x41_c00047{left:671.733333pt;}
.xb2_c00047{left:672.933333pt;}
.xbf_c00047{left:673.866667pt;}
.x4_c00047{left:677.733333pt;}
.x9c_c00047{left:678.666667pt;}
}





/* 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_c00048 {
    display:none;
  }
  .loading-indicator_c00048.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00048 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_c00048 { 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_c00048" -> "#page-container .classname_c00048")
 */
.pf_c00048 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00048 { /* 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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00048 { /* 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_c00048 { /* 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_c00048 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00048 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00048 {overflow:visible;}
  }
}
.c_c00048 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00048 { /* 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_c00048:after { /* webkit #35443 */
  content: '';
}
.t_c00048:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00048 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 */
}
.__c00048 { /* 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_c00048 { /* info for Javascript */
  display:none;
}
.l_c00048 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00048 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00048 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00048: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_c00048 {
    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_c00048.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00048.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_c00048 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00048{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00048;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.000000;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;}
.m39_c00048{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m66_c00048{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m29_c00048{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00048{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00048{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00048{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00048{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m49_c00048{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00048{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00048{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00048{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00048{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00048{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00048{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m69_c00048{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mac_c00048{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00048{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00048{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m23_c00048{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m70_c00048{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mad_c00048{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00048{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00048{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m27_c00048{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00048{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00048{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00048{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m33_c00048{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00048{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00048{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m71_c00048{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m52_c00048{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m30_c00048{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00048{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mae_c00048{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m58_c00048{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m91_c00048{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m92_c00048{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00048{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m59_c00048{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m17_c00048{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m78_c00048{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00048{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m47_c00048{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m13_c00048{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00048{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00048{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m31_c00048{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00048{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00048{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00048{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00048{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m35_c00048{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m68_c00048{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00048{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m51_c00048{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m87_c00048{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00048{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00048{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00048{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m20_c00048{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00048{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6_c00048{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m64_c00048{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m61_c00048{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00048{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m96_c00048{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9_c00048{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00048{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m26_c00048{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00048{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00048{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m97_c00048{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m44_c00048{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00048{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00048{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00048{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00048{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00048{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m54_c00048{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00048{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m94_c00048{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m73_c00048{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00048{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m67_c00048{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00048{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00048{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maf_c00048{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00048{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m38_c00048{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00048{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m72_c00048{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m18_c00048{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00048{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m32_c00048{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m86_c00048{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11_c00048{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00048{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m50_c00048{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00048{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00048{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m88_c00048{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00048{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m43_c00048{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m82_c00048{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00048{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m60_c00048{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00048{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m24_c00048{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m62_c00048{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00048{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m34_c00048{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00048{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00048{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00048{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00048{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m83_c00048{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00048{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00048{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00048{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m45_c00048{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m81_c00048{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00048{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m55_c00048{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00048{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00048{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m74_c00048{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m36_c00048{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);}
.ma9_c00048{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00048{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m95_c00048{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3_c00048{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m84_c00048{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00048{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00048{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m53_c00048{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00048{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m16_c00048{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00048{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m80_c00048{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m10_c00048{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00048{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00048{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m40_c00048{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m25_c00048{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m76_c00048{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00048{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m85_c00048{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00048{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00048{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m42_c00048{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.maa_c00048{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00048{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mab_c00048{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00048{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m75_c00048{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m98_c00048{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00048{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m57_c00048{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00048{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00048{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m28_c00048{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m79_c00048{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00048{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00048{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m37_c00048{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00048{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00048{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m41_c00048{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m56_c00048{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m93_c00048{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m77_c00048{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m90_c00048{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00048{vertical-align:0.000000px;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{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__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00048{word-spacing:-11.022727px;}
.ws8_c00048{word-spacing:0.000000px;}
.ws7_c00048{word-spacing:3.125000px;}
.ws2_c00048{word-spacing:3.382353px;}
.ws5_c00048{word-spacing:6.136364px;}
.ws0_c00048{word-spacing:7.058824px;}
.ws3_c00048{word-spacing:8.970588px;}
.ws6_c00048{word-spacing:13.787879px;}
.ws1_c00048{word-spacing:48.611111px;}
._0_c00048{width:40.735294px;}
.fc0_c00048{color:transparent;}
.fs0_c00048{font-size:54.000000px;}
.fs1_c00048{font-size:60.000000px;}
.y0_c00048{bottom:0.000000px;}
.y2d_c00048{bottom:152.100000px;}
.y2c_c00048{bottom:172.200000px;}
.y2b_c00048{bottom:192.000000px;}
.y2a_c00048{bottom:212.100000px;}
.y29_c00048{bottom:231.900000px;}
.y28_c00048{bottom:251.700000px;}
.y27_c00048{bottom:272.400000px;}
.y26_c00048{bottom:292.500000px;}
.y25_c00048{bottom:312.600000px;}
.y24_c00048{bottom:332.400000px;}
.y23_c00048{bottom:351.900000px;}
.y22_c00048{bottom:372.000000px;}
.y21_c00048{bottom:391.800000px;}
.y20_c00048{bottom:411.600000px;}
.y1f_c00048{bottom:431.700000px;}
.y1e_c00048{bottom:451.500000px;}
.y1d_c00048{bottom:471.600000px;}
.y1c_c00048{bottom:491.400000px;}
.y1b_c00048{bottom:511.200000px;}
.y1a_c00048{bottom:531.300000px;}
.y19_c00048{bottom:551.100000px;}
.y18_c00048{bottom:570.900000px;}
.y17_c00048{bottom:591.000000px;}
.y16_c00048{bottom:610.500000px;}
.y15_c00048{bottom:630.300000px;}
.y14_c00048{bottom:650.400000px;}
.y13_c00048{bottom:670.500000px;}
.y12_c00048{bottom:690.600000px;}
.y11_c00048{bottom:710.400000px;}
.y10_c00048{bottom:730.500000px;}
.yf_c00048{bottom:750.300000px;}
.ye_c00048{bottom:770.100000px;}
.yd_c00048{bottom:790.050000px;}
.yc_c00048{bottom:810.150000px;}
.yb_c00048{bottom:830.250000px;}
.ya_c00048{bottom:850.350000px;}
.y9_c00048{bottom:869.850000px;}
.y8_c00048{bottom:889.950000px;}
.y7_c00048{bottom:910.050000px;}
.y6_c00048{bottom:929.550000px;}
.y5_c00048{bottom:950.100000px;}
.y4_c00048{bottom:970.200000px;}
.y3_c00048{bottom:990.000000px;}
.y2_c00048{bottom:1009.800000px;}
.y1_c00048{bottom:1048.350000px;}
.h2_c00048{height:54.000000px;}
.h3_c00048{height:60.000000px;}
.h1_c00048{height:1167.000000px;}
.h0_c00048{height:1167.119934px;}
.w0_c00048{width:913.320007px;}
.w1_c00048{width:913.500000px;}
.x0_c00048{left:0.000000px;}
.x112_c00048{left:139.650000px;}
.xd8_c00048{left:141.150000px;}
.x52_c00048{left:142.350000px;}
.x4_c00048{left:143.700000px;}
.x1_c00048{left:144.750000px;}
.x8d_c00048{left:155.550000px;}
.xe3_c00048{left:157.050000px;}
.x53_c00048{left:159.600000px;}
.xc4_c00048{left:164.700000px;}
.x128_c00048{left:167.250000px;}
.xdf_c00048{left:169.650000px;}
.x24_c00048{left:173.250000px;}
.x43_c00048{left:174.300000px;}
.xb7_c00048{left:176.400000px;}
.xcd_c00048{left:178.050000px;}
.x13_c00048{left:180.300000px;}
.xb0_c00048{left:181.650000px;}
.xec_c00048{left:182.700000px;}
.x141_c00048{left:184.200000px;}
.x54_c00048{left:185.550000px;}
.x10a_c00048{left:191.100000px;}
.x9d_c00048{left:192.150000px;}
.x77_c00048{left:193.350000px;}
.x33_c00048{left:195.900000px;}
.x100_c00048{left:198.450000px;}
.x11e_c00048{left:199.800000px;}
.xbd_c00048{left:201.300000px;}
.x96_c00048{left:203.400000px;}
.xa6_c00048{left:205.200000px;}
.x5_c00048{left:208.200000px;}
.x25_c00048{left:210.000000px;}
.xd9_c00048{left:211.050000px;}
.x14_c00048{left:214.500000px;}
.x81_c00048{left:216.000000px;}
.x44_c00048{left:217.200000px;}
.xbe_c00048{left:218.250000px;}
.x113_c00048{left:219.900000px;}
.xc5_c00048{left:222.300000px;}
.xe4_c00048{left:223.650000px;}
.x34_c00048{left:226.200000px;}
.x55_c00048{left:227.700000px;}
.xed_c00048{left:230.250000px;}
.x8e_c00048{left:232.200000px;}
.xb1_c00048{left:233.850000px;}
.x6d_c00048{left:235.950000px;}
.x138_c00048{left:237.150000px;}
.xf9_c00048{left:239.850000px;}
.x135_c00048{left:240.900000px;}
.x15_c00048{left:243.000000px;}
.x97_c00048{left:244.800000px;}
.x62_c00048{left:247.650000px;}
.xce_c00048{left:248.850000px;}
.x78_c00048{left:251.250000px;}
.x9e_c00048{left:252.300000px;}
.x6_c00048{left:253.950000px;}
.xa7_c00048{left:255.300000px;}
.x35_c00048{left:260.700000px;}
.xb8_c00048{left:262.350000px;}
.x10e_c00048{left:263.400000px;}
.xda_c00048{left:265.050000px;}
.x45_c00048{left:267.600000px;}
.x120_c00048{left:268.650000px;}
.x8f_c00048{left:269.700000px;}
.x136_c00048{left:271.200000px;}
.xc6_c00048{left:273.450000px;}
.x7_c00048{left:279.150000px;}
.x79_c00048{left:280.800000px;}
.x82_c00048{left:282.900000px;}
.xcf_c00048{left:284.850000px;}
.x129_c00048{left:286.800000px;}
.x46_c00048{left:288.150000px;}
.x10b_c00048{left:289.500000px;}
.xb9_c00048{left:291.150000px;}
.x16_c00048{left:292.650000px;}
.x56_c00048{left:294.000000px;}
.x63_c00048{left:295.950000px;}
.xee_c00048{left:300.150000px;}
.x8_c00048{left:304.350000px;}
.x83_c00048{left:306.300000px;}
.x13e_c00048{left:307.350000px;}
.xf5_c00048{left:308.400000px;}
.x17_c00048{left:309.900000px;}
.x26_c00048{left:311.400000px;}
.x116_c00048{left:313.650000px;}
.x9f_c00048{left:315.750000px;}
.x121_c00048{left:317.550000px;}
.x47_c00048{left:318.750000px;}
.x13c_c00048{left:321.750000px;}
.xe5_c00048{left:324.150000px;}
.xba_c00048{left:329.250000px;}
.xef_c00048{left:331.050000px;}
.x6e_c00048{left:332.100000px;}
.x36_c00048{left:333.450000px;}
.x57_c00048{left:335.400000px;}
.xd0_c00048{left:338.100000px;}
.xa8_c00048{left:340.200000px;}
.x9_c00048{left:342.150000px;}
.xfa_c00048{left:344.250000px;}
.x122_c00048{left:345.600000px;}
.x11b_c00048{left:347.100000px;}
.x27_c00048{left:348.900000px;}
.x58_c00048{left:350.550000px;}
.x101_c00048{left:355.650000px;}
.x117_c00048{left:357.150000px;}
.xbf_c00048{left:358.350000px;}
.xf6_c00048{left:360.150000px;}
.xa_c00048{left:361.950000px;}
.x64_c00048{left:364.050000px;}
.x59_c00048{left:366.000000px;}
.x84_c00048{left:368.250000px;}
.x28_c00048{left:369.750000px;}
.x12a_c00048{left:372.900000px;}
.x18_c00048{left:376.500000px;}
.x7a_c00048{left:378.300000px;}
.x6f_c00048{left:381.750000px;}
.xfb_c00048{left:382.800000px;}
.x65_c00048{left:383.850000px;}
.x48_c00048{left:385.650000px;}
.x2_c00048{left:386.700000px;}
.x13d_c00048{left:388.050000px;}
.x12e_c00048{left:390.300000px;}
.x70_c00048{left:393.300000px;}
.x7b_c00048{left:396.000000px;}
.x29_c00048{left:397.800000px;}
.x37_c00048{left:399.750000px;}
.x142_c00048{left:401.550000px;}
.xe6_c00048{left:402.600000px;}
.x49_c00048{left:405.150000px;}
.x19_c00048{left:406.350000px;}
.xb2_c00048{left:407.400000px;}
.x5a_c00048{left:412.500000px;}
.x131_c00048{left:414.000000px;}
.x13f_c00048{left:415.050000px;}
.x4a_c00048{left:417.000000px;}
.xd1_c00048{left:418.050000px;}
.xc7_c00048{left:419.250000px;}
.x139_c00048{left:421.050000px;}
.x38_c00048{left:422.400000px;}
.x1a_c00048{left:424.650000px;}
.xa9_c00048{left:426.600000px;}
.xc8_c00048{left:430.350000px;}
.xc0_c00048{left:431.400000px;}
.xb_c00048{left:433.650000px;}
.x7c_c00048{left:435.300000px;}
.xbb_c00048{left:437.250000px;}
.x71_c00048{left:438.300000px;}
.xf0_c00048{left:441.900000px;}
.x137_c00048{left:442.950000px;}
.x66_c00048{left:444.300000px;}
.x5b_c00048{left:448.200000px;}
.x1b_c00048{left:450.150000px;}
.xa0_c00048{left:451.800000px;}
.xfc_c00048{left:453.750000px;}
.x10c_c00048{left:455.550000px;}
.xc9_c00048{left:456.600000px;}
.x39_c00048{left:458.400000px;}
.xe7_c00048{left:459.450000px;}
.x7d_c00048{left:460.500000px;}
.x2a_c00048{left:462.600000px;}
.x67_c00048{left:464.100000px;}
.x102_c00048{left:465.750000px;}
.xc_c00048{left:467.100000px;}
.x12f_c00048{left:468.750000px;}
.x105_c00048{left:469.800000px;}
.xc1_c00048{left:471.750000px;}
.x5c_c00048{left:473.100000px;}
.x85_c00048{left:474.150000px;}
.x90_c00048{left:478.200000px;}
.x2b_c00048{left:479.850000px;}
.xa1_c00048{left:481.650000px;}
.x3_c00048{left:485.400000px;}
.x4b_c00048{left:486.450000px;}
.x11c_c00048{left:488.100000px;}
.x68_c00048{left:489.300000px;}
.x72_c00048{left:490.950000px;}
.xaa_c00048{left:493.950000px;}
.xd2_c00048{left:495.450000px;}
.xb3_c00048{left:498.450000px;}
.x3a_c00048{left:499.500000px;}
.x2c_c00048{left:502.500000px;}
.x91_c00048{left:503.700000px;}
.x13a_c00048{left:505.950000px;}
.xca_c00048{left:509.400000px;}
.x98_c00048{left:512.700000px;}
.x86_c00048{left:516.300000px;}
.xdb_c00048{left:517.650000px;}
.x10f_c00048{left:519.300000px;}
.xe0_c00048{left:520.350000px;}
.xd_c00048{left:522.900000px;}
.xd3_c00048{left:523.950000px;}
.x124_c00048{left:527.250000px;}
.x140_c00048{left:528.450000px;}
.x7e_c00048{left:529.650000px;}
.x87_c00048{left:531.000000px;}
.xa2_c00048{left:532.800000px;}
.x5d_c00048{left:534.000000px;}
.x11d_c00048{left:535.200000px;}
.x106_c00048{left:537.450000px;}
.xab_c00048{left:539.700000px;}
.x2d_c00048{left:542.850000px;}
.x3b_c00048{left:544.800000px;}
.x103_c00048{left:546.750000px;}
.xb4_c00048{left:548.550000px;}
.x99_c00048{left:550.500000px;}
.x1c_c00048{left:552.450000px;}
.x107_c00048{left:555.150000px;}
.x3c_c00048{left:556.350000px;}
.x88_c00048{left:557.700000px;}
.xfd_c00048{left:559.200000px;}
.x125_c00048{left:561.750000px;}
.x92_c00048{left:562.800000px;}
.xd4_c00048{left:565.650000px;}
.x4c_c00048{left:566.700000px;}
.xac_c00048{left:567.750000px;}
.xe8_c00048{left:569.100000px;}
.x73_c00048{left:570.600000px;}
.x9a_c00048{left:572.400000px;}
.x132_c00048{left:573.750000px;}
.x110_c00048{left:578.400000px;}
.x93_c00048{left:579.750000px;}
.x69_c00048{left:581.100000px;}
.xd5_c00048{left:582.900000px;}
.x3d_c00048{left:586.200000px;}
.xe9_c00048{left:588.900000px;}
.x126_c00048{left:590.250000px;}
.xe1_c00048{left:591.300000px;}
.x2e_c00048{left:593.250000px;}
.x4d_c00048{left:595.200000px;}
.xf1_c00048{left:596.700000px;}
.x1d_c00048{left:599.250000px;}
.xc2_c00048{left:601.650000px;}
.x118_c00048{left:603.750000px;}
.xe_c00048{left:606.450000px;}
.xb5_c00048{left:609.450000px;}
.x9b_c00048{left:612.000000px;}
.xdc_c00048{left:613.500000px;}
.xea_c00048{left:615.150000px;}
.x114_c00048{left:616.350000px;}
.x6a_c00048{left:617.850000px;}
.x4e_c00048{left:620.700000px;}
.x130_c00048{left:622.050000px;}
.xf_c00048{left:623.400000px;}
.x13b_c00048{left:628.350000px;}
.x94_c00048{left:630.150000px;}
.x3e_c00048{left:631.500000px;}
.xbc_c00048{left:633.150000px;}
.xfe_c00048{left:634.350000px;}
.x5e_c00048{left:636.150000px;}
.x12b_c00048{left:637.950000px;}
.x1e_c00048{left:639.150000px;}
.x2f_c00048{left:641.550000px;}
.xb6_c00048{left:643.350000px;}
.x95_c00048{left:645.300000px;}
.x4f_c00048{left:648.000000px;}
.x74_c00048{left:649.050000px;}
.xcb_c00048{left:651.150000px;}
.x12c_c00048{left:653.400000px;}
.x7f_c00048{left:654.900000px;}
.xd6_c00048{left:655.950000px;}
.x1f_c00048{left:660.000000px;}
.xeb_c00048{left:661.200000px;}
.x133_c00048{left:662.250000px;}
.x75_c00048{left:663.750000px;}
.x108_c00048{left:666.000000px;}
.xf2_c00048{left:668.400000px;}
.x119_c00048{left:670.650000px;}
.x123_c00048{left:672.750000px;}
.xa3_c00048{left:676.050000px;}
.x89_c00048{left:677.550000px;}
.x134_c00048{left:679.500000px;}
.x50_c00048{left:680.700000px;}
.xf7_c00048{left:683.100000px;}
.x10_c00048{left:685.350000px;}
.xd7_c00048{left:687.300000px;}
.x3f_c00048{left:688.800000px;}
.x104_c00048{left:689.850000px;}
.xad_c00048{left:691.200000px;}
.xdd_c00048{left:692.400000px;}
.x20_c00048{left:696.300000px;}
.x30_c00048{left:699.450000px;}
.x40_c00048{left:700.650000px;}
.x76_c00048{left:704.550000px;}
.xf8_c00048{left:705.750000px;}
.x9c_c00048{left:707.400000px;}
.x109_c00048{left:709.950000px;}
.x5f_c00048{left:713.100000px;}
.x11f_c00048{left:715.950000px;}
.x21_c00048{left:717.600000px;}
.x8a_c00048{left:720.000000px;}
.xa4_c00048{left:721.800000px;}
.x6b_c00048{left:725.100000px;}
.x51_c00048{left:728.550000px;}
.x143_c00048{left:730.950000px;}
.x127_c00048{left:734.700000px;}
.x11_c00048{left:735.750000px;}
.xe2_c00048{left:737.700000px;}
.x8b_c00048{left:738.750000px;}
.xff_c00048{left:739.950000px;}
.x80_c00048{left:742.650000px;}
.x111_c00048{left:745.200000px;}
.x41_c00048{left:747.150000px;}
.xa5_c00048{left:748.500000px;}
.x115_c00048{left:749.550000px;}
.x31_c00048{left:751.350000px;}
.xcc_c00048{left:752.700000px;}
.xf3_c00048{left:754.350000px;}
.x11a_c00048{left:756.600000px;}
.x60_c00048{left:760.200000px;}
.x42_c00048{left:765.450000px;}
.xae_c00048{left:768.900000px;}
.x22_c00048{left:772.350000px;}
.xc3_c00048{left:775.950000px;}
.x61_c00048{left:777.900000px;}
.x32_c00048{left:779.400000px;}
.xde_c00048{left:781.200000px;}
.x12d_c00048{left:782.700000px;}
.x8c_c00048{left:786.600000px;}
.xaf_c00048{left:789.000000px;}
.x12_c00048{left:790.800000px;}
.x23_c00048{left:792.150000px;}
.xf4_c00048{left:793.200000px;}
.x6c_c00048{left:798.150000px;}
.x10d_c00048{left:801.900000px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws4_c00048{word-spacing:-9.797980pt;}
.ws8_c00048{word-spacing:0.000000pt;}
.ws7_c00048{word-spacing:2.777778pt;}
.ws2_c00048{word-spacing:3.006536pt;}
.ws5_c00048{word-spacing:5.454545pt;}
.ws0_c00048{word-spacing:6.274510pt;}
.ws3_c00048{word-spacing:7.973856pt;}
.ws6_c00048{word-spacing:12.255892pt;}
.ws1_c00048{word-spacing:43.209877pt;}
._0_c00048{width:36.209150pt;}
.fs0_c00048{font-size:48.000000pt;}
.fs1_c00048{font-size:53.333333pt;}
.y0_c00048{bottom:0.000000pt;}
.y2d_c00048{bottom:135.200000pt;}
.y2c_c00048{bottom:153.066667pt;}
.y2b_c00048{bottom:170.666667pt;}
.y2a_c00048{bottom:188.533333pt;}
.y29_c00048{bottom:206.133333pt;}
.y28_c00048{bottom:223.733333pt;}
.y27_c00048{bottom:242.133333pt;}
.y26_c00048{bottom:260.000000pt;}
.y25_c00048{bottom:277.866667pt;}
.y24_c00048{bottom:295.466667pt;}
.y23_c00048{bottom:312.800000pt;}
.y22_c00048{bottom:330.666667pt;}
.y21_c00048{bottom:348.266667pt;}
.y20_c00048{bottom:365.866667pt;}
.y1f_c00048{bottom:383.733333pt;}
.y1e_c00048{bottom:401.333333pt;}
.y1d_c00048{bottom:419.200000pt;}
.y1c_c00048{bottom:436.800000pt;}
.y1b_c00048{bottom:454.400000pt;}
.y1a_c00048{bottom:472.266667pt;}
.y19_c00048{bottom:489.866667pt;}
.y18_c00048{bottom:507.466667pt;}
.y17_c00048{bottom:525.333333pt;}
.y16_c00048{bottom:542.666667pt;}
.y15_c00048{bottom:560.266667pt;}
.y14_c00048{bottom:578.133333pt;}
.y13_c00048{bottom:596.000000pt;}
.y12_c00048{bottom:613.866667pt;}
.y11_c00048{bottom:631.466667pt;}
.y10_c00048{bottom:649.333333pt;}
.yf_c00048{bottom:666.933333pt;}
.ye_c00048{bottom:684.533333pt;}
.yd_c00048{bottom:702.266667pt;}
.yc_c00048{bottom:720.133333pt;}
.yb_c00048{bottom:738.000000pt;}
.ya_c00048{bottom:755.866667pt;}
.y9_c00048{bottom:773.200000pt;}
.y8_c00048{bottom:791.066667pt;}
.y7_c00048{bottom:808.933333pt;}
.y6_c00048{bottom:826.266667pt;}
.y5_c00048{bottom:844.533333pt;}
.y4_c00048{bottom:862.400000pt;}
.y3_c00048{bottom:880.000000pt;}
.y2_c00048{bottom:897.600000pt;}
.y1_c00048{bottom:931.866667pt;}
.h2_c00048{height:48.000000pt;}
.h3_c00048{height:53.333333pt;}
.h1_c00048{height:1037.333333pt;}
.h0_c00048{height:1037.439941pt;}
.w0_c00048{width:811.840007pt;}
.w1_c00048{width:812.000000pt;}
.x0_c00048{left:0.000000pt;}
.x112_c00048{left:124.133333pt;}
.xd8_c00048{left:125.466667pt;}
.x52_c00048{left:126.533333pt;}
.x4_c00048{left:127.733333pt;}
.x1_c00048{left:128.666667pt;}
.x8d_c00048{left:138.266667pt;}
.xe3_c00048{left:139.600000pt;}
.x53_c00048{left:141.866667pt;}
.xc4_c00048{left:146.400000pt;}
.x128_c00048{left:148.666667pt;}
.xdf_c00048{left:150.800000pt;}
.x24_c00048{left:154.000000pt;}
.x43_c00048{left:154.933333pt;}
.xb7_c00048{left:156.800000pt;}
.xcd_c00048{left:158.266667pt;}
.x13_c00048{left:160.266667pt;}
.xb0_c00048{left:161.466667pt;}
.xec_c00048{left:162.400000pt;}
.x141_c00048{left:163.733333pt;}
.x54_c00048{left:164.933333pt;}
.x10a_c00048{left:169.866667pt;}
.x9d_c00048{left:170.800000pt;}
.x77_c00048{left:171.866667pt;}
.x33_c00048{left:174.133333pt;}
.x100_c00048{left:176.400000pt;}
.x11e_c00048{left:177.600000pt;}
.xbd_c00048{left:178.933333pt;}
.x96_c00048{left:180.800000pt;}
.xa6_c00048{left:182.400000pt;}
.x5_c00048{left:185.066667pt;}
.x25_c00048{left:186.666667pt;}
.xd9_c00048{left:187.600000pt;}
.x14_c00048{left:190.666667pt;}
.x81_c00048{left:192.000000pt;}
.x44_c00048{left:193.066667pt;}
.xbe_c00048{left:194.000000pt;}
.x113_c00048{left:195.466667pt;}
.xc5_c00048{left:197.600000pt;}
.xe4_c00048{left:198.800000pt;}
.x34_c00048{left:201.066667pt;}
.x55_c00048{left:202.400000pt;}
.xed_c00048{left:204.666667pt;}
.x8e_c00048{left:206.400000pt;}
.xb1_c00048{left:207.866667pt;}
.x6d_c00048{left:209.733333pt;}
.x138_c00048{left:210.800000pt;}
.xf9_c00048{left:213.200000pt;}
.x135_c00048{left:214.133333pt;}
.x15_c00048{left:216.000000pt;}
.x97_c00048{left:217.600000pt;}
.x62_c00048{left:220.133333pt;}
.xce_c00048{left:221.200000pt;}
.x78_c00048{left:223.333333pt;}
.x9e_c00048{left:224.266667pt;}
.x6_c00048{left:225.733333pt;}
.xa7_c00048{left:226.933333pt;}
.x35_c00048{left:231.733333pt;}
.xb8_c00048{left:233.200000pt;}
.x10e_c00048{left:234.133333pt;}
.xda_c00048{left:235.600000pt;}
.x45_c00048{left:237.866667pt;}
.x120_c00048{left:238.800000pt;}
.x8f_c00048{left:239.733333pt;}
.x136_c00048{left:241.066667pt;}
.xc6_c00048{left:243.066667pt;}
.x7_c00048{left:248.133333pt;}
.x79_c00048{left:249.600000pt;}
.x82_c00048{left:251.466667pt;}
.xcf_c00048{left:253.200000pt;}
.x129_c00048{left:254.933333pt;}
.x46_c00048{left:256.133333pt;}
.x10b_c00048{left:257.333333pt;}
.xb9_c00048{left:258.800000pt;}
.x16_c00048{left:260.133333pt;}
.x56_c00048{left:261.333333pt;}
.x63_c00048{left:263.066667pt;}
.xee_c00048{left:266.800000pt;}
.x8_c00048{left:270.533333pt;}
.x83_c00048{left:272.266667pt;}
.x13e_c00048{left:273.200000pt;}
.xf5_c00048{left:274.133333pt;}
.x17_c00048{left:275.466667pt;}
.x26_c00048{left:276.800000pt;}
.x116_c00048{left:278.800000pt;}
.x9f_c00048{left:280.666667pt;}
.x121_c00048{left:282.266667pt;}
.x47_c00048{left:283.333333pt;}
.x13c_c00048{left:286.000000pt;}
.xe5_c00048{left:288.133333pt;}
.xba_c00048{left:292.666667pt;}
.xef_c00048{left:294.266667pt;}
.x6e_c00048{left:295.200000pt;}
.x36_c00048{left:296.400000pt;}
.x57_c00048{left:298.133333pt;}
.xd0_c00048{left:300.533333pt;}
.xa8_c00048{left:302.400000pt;}
.x9_c00048{left:304.133333pt;}
.xfa_c00048{left:306.000000pt;}
.x122_c00048{left:307.200000pt;}
.x11b_c00048{left:308.533333pt;}
.x27_c00048{left:310.133333pt;}
.x58_c00048{left:311.600000pt;}
.x101_c00048{left:316.133333pt;}
.x117_c00048{left:317.466667pt;}
.xbf_c00048{left:318.533333pt;}
.xf6_c00048{left:320.133333pt;}
.xa_c00048{left:321.733333pt;}
.x64_c00048{left:323.600000pt;}
.x59_c00048{left:325.333333pt;}
.x84_c00048{left:327.333333pt;}
.x28_c00048{left:328.666667pt;}
.x12a_c00048{left:331.466667pt;}
.x18_c00048{left:334.666667pt;}
.x7a_c00048{left:336.266667pt;}
.x6f_c00048{left:339.333333pt;}
.xfb_c00048{left:340.266667pt;}
.x65_c00048{left:341.200000pt;}
.x48_c00048{left:342.800000pt;}
.x2_c00048{left:343.733333pt;}
.x13d_c00048{left:344.933333pt;}
.x12e_c00048{left:346.933333pt;}
.x70_c00048{left:349.600000pt;}
.x7b_c00048{left:352.000000pt;}
.x29_c00048{left:353.600000pt;}
.x37_c00048{left:355.333333pt;}
.x142_c00048{left:356.933333pt;}
.xe6_c00048{left:357.866667pt;}
.x49_c00048{left:360.133333pt;}
.x19_c00048{left:361.200000pt;}
.xb2_c00048{left:362.133333pt;}
.x5a_c00048{left:366.666667pt;}
.x131_c00048{left:368.000000pt;}
.x13f_c00048{left:368.933333pt;}
.x4a_c00048{left:370.666667pt;}
.xd1_c00048{left:371.600000pt;}
.xc7_c00048{left:372.666667pt;}
.x139_c00048{left:374.266667pt;}
.x38_c00048{left:375.466667pt;}
.x1a_c00048{left:377.466667pt;}
.xa9_c00048{left:379.200000pt;}
.xc8_c00048{left:382.533333pt;}
.xc0_c00048{left:383.466667pt;}
.xb_c00048{left:385.466667pt;}
.x7c_c00048{left:386.933333pt;}
.xbb_c00048{left:388.666667pt;}
.x71_c00048{left:389.600000pt;}
.xf0_c00048{left:392.800000pt;}
.x137_c00048{left:393.733333pt;}
.x66_c00048{left:394.933333pt;}
.x5b_c00048{left:398.400000pt;}
.x1b_c00048{left:400.133333pt;}
.xa0_c00048{left:401.600000pt;}
.xfc_c00048{left:403.333333pt;}
.x10c_c00048{left:404.933333pt;}
.xc9_c00048{left:405.866667pt;}
.x39_c00048{left:407.466667pt;}
.xe7_c00048{left:408.400000pt;}
.x7d_c00048{left:409.333333pt;}
.x2a_c00048{left:411.200000pt;}
.x67_c00048{left:412.533333pt;}
.x102_c00048{left:414.000000pt;}
.xc_c00048{left:415.200000pt;}
.x12f_c00048{left:416.666667pt;}
.x105_c00048{left:417.600000pt;}
.xc1_c00048{left:419.333333pt;}
.x5c_c00048{left:420.533333pt;}
.x85_c00048{left:421.466667pt;}
.x90_c00048{left:425.066667pt;}
.x2b_c00048{left:426.533333pt;}
.xa1_c00048{left:428.133333pt;}
.x3_c00048{left:431.466667pt;}
.x4b_c00048{left:432.400000pt;}
.x11c_c00048{left:433.866667pt;}
.x68_c00048{left:434.933333pt;}
.x72_c00048{left:436.400000pt;}
.xaa_c00048{left:439.066667pt;}
.xd2_c00048{left:440.400000pt;}
.xb3_c00048{left:443.066667pt;}
.x3a_c00048{left:444.000000pt;}
.x2c_c00048{left:446.666667pt;}
.x91_c00048{left:447.733333pt;}
.x13a_c00048{left:449.733333pt;}
.xca_c00048{left:452.800000pt;}
.x98_c00048{left:455.733333pt;}
.x86_c00048{left:458.933333pt;}
.xdb_c00048{left:460.133333pt;}
.x10f_c00048{left:461.600000pt;}
.xe0_c00048{left:462.533333pt;}
.xd_c00048{left:464.800000pt;}
.xd3_c00048{left:465.733333pt;}
.x124_c00048{left:468.666667pt;}
.x140_c00048{left:469.733333pt;}
.x7e_c00048{left:470.800000pt;}
.x87_c00048{left:472.000000pt;}
.xa2_c00048{left:473.600000pt;}
.x5d_c00048{left:474.666667pt;}
.x11d_c00048{left:475.733333pt;}
.x106_c00048{left:477.733333pt;}
.xab_c00048{left:479.733333pt;}
.x2d_c00048{left:482.533333pt;}
.x3b_c00048{left:484.266667pt;}
.x103_c00048{left:486.000000pt;}
.xb4_c00048{left:487.600000pt;}
.x99_c00048{left:489.333333pt;}
.x1c_c00048{left:491.066667pt;}
.x107_c00048{left:493.466667pt;}
.x3c_c00048{left:494.533333pt;}
.x88_c00048{left:495.733333pt;}
.xfd_c00048{left:497.066667pt;}
.x125_c00048{left:499.333333pt;}
.x92_c00048{left:500.266667pt;}
.xd4_c00048{left:502.800000pt;}
.x4c_c00048{left:503.733333pt;}
.xac_c00048{left:504.666667pt;}
.xe8_c00048{left:505.866667pt;}
.x73_c00048{left:507.200000pt;}
.x9a_c00048{left:508.800000pt;}
.x132_c00048{left:510.000000pt;}
.x110_c00048{left:514.133333pt;}
.x93_c00048{left:515.333333pt;}
.x69_c00048{left:516.533333pt;}
.xd5_c00048{left:518.133333pt;}
.x3d_c00048{left:521.066667pt;}
.xe9_c00048{left:523.466667pt;}
.x126_c00048{left:524.666667pt;}
.xe1_c00048{left:525.600000pt;}
.x2e_c00048{left:527.333333pt;}
.x4d_c00048{left:529.066667pt;}
.xf1_c00048{left:530.400000pt;}
.x1d_c00048{left:532.666667pt;}
.xc2_c00048{left:534.800000pt;}
.x118_c00048{left:536.666667pt;}
.xe_c00048{left:539.066667pt;}
.xb5_c00048{left:541.733333pt;}
.x9b_c00048{left:544.000000pt;}
.xdc_c00048{left:545.333333pt;}
.xea_c00048{left:546.800000pt;}
.x114_c00048{left:547.866667pt;}
.x6a_c00048{left:549.200000pt;}
.x4e_c00048{left:551.733333pt;}
.x130_c00048{left:552.933333pt;}
.xf_c00048{left:554.133333pt;}
.x13b_c00048{left:558.533333pt;}
.x94_c00048{left:560.133333pt;}
.x3e_c00048{left:561.333333pt;}
.xbc_c00048{left:562.800000pt;}
.xfe_c00048{left:563.866667pt;}
.x5e_c00048{left:565.466667pt;}
.x12b_c00048{left:567.066667pt;}
.x1e_c00048{left:568.133333pt;}
.x2f_c00048{left:570.266667pt;}
.xb6_c00048{left:571.866667pt;}
.x95_c00048{left:573.600000pt;}
.x4f_c00048{left:576.000000pt;}
.x74_c00048{left:576.933333pt;}
.xcb_c00048{left:578.800000pt;}
.x12c_c00048{left:580.800000pt;}
.x7f_c00048{left:582.133333pt;}
.xd6_c00048{left:583.066667pt;}
.x1f_c00048{left:586.666667pt;}
.xeb_c00048{left:587.733333pt;}
.x133_c00048{left:588.666667pt;}
.x75_c00048{left:590.000000pt;}
.x108_c00048{left:592.000000pt;}
.xf2_c00048{left:594.133333pt;}
.x119_c00048{left:596.133333pt;}
.x123_c00048{left:598.000000pt;}
.xa3_c00048{left:600.933333pt;}
.x89_c00048{left:602.266667pt;}
.x134_c00048{left:604.000000pt;}
.x50_c00048{left:605.066667pt;}
.xf7_c00048{left:607.200000pt;}
.x10_c00048{left:609.200000pt;}
.xd7_c00048{left:610.933333pt;}
.x3f_c00048{left:612.266667pt;}
.x104_c00048{left:613.200000pt;}
.xad_c00048{left:614.400000pt;}
.xdd_c00048{left:615.466667pt;}
.x20_c00048{left:618.933333pt;}
.x30_c00048{left:621.733333pt;}
.x40_c00048{left:622.800000pt;}
.x76_c00048{left:626.266667pt;}
.xf8_c00048{left:627.333333pt;}
.x9c_c00048{left:628.800000pt;}
.x109_c00048{left:631.066667pt;}
.x5f_c00048{left:633.866667pt;}
.x11f_c00048{left:636.400000pt;}
.x21_c00048{left:637.866667pt;}
.x8a_c00048{left:640.000000pt;}
.xa4_c00048{left:641.600000pt;}
.x6b_c00048{left:644.533333pt;}
.x51_c00048{left:647.600000pt;}
.x143_c00048{left:649.733333pt;}
.x127_c00048{left:653.066667pt;}
.x11_c00048{left:654.000000pt;}
.xe2_c00048{left:655.733333pt;}
.x8b_c00048{left:656.666667pt;}
.xff_c00048{left:657.733333pt;}
.x80_c00048{left:660.133333pt;}
.x111_c00048{left:662.400000pt;}
.x41_c00048{left:664.133333pt;}
.xa5_c00048{left:665.333333pt;}
.x115_c00048{left:666.266667pt;}
.x31_c00048{left:667.866667pt;}
.xcc_c00048{left:669.066667pt;}
.xf3_c00048{left:670.533333pt;}
.x11a_c00048{left:672.533333pt;}
.x60_c00048{left:675.733333pt;}
.x42_c00048{left:680.400000pt;}
.xae_c00048{left:683.466667pt;}
.x22_c00048{left:686.533333pt;}
.xc3_c00048{left:689.733333pt;}
.x61_c00048{left:691.466667pt;}
.x32_c00048{left:692.800000pt;}
.xde_c00048{left:694.400000pt;}
.x12d_c00048{left:695.733333pt;}
.x8c_c00048{left:699.200000pt;}
.xaf_c00048{left:701.333333pt;}
.x12_c00048{left:702.933333pt;}
.x23_c00048{left:704.133333pt;}
.xf4_c00048{left:705.066667pt;}
.x6c_c00048{left:709.466667pt;}
.x10d_c00048{left:712.800000pt;}
}





/* 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_c00049 {
    display:none;
  }
  .loading-indicator_c00049.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00049 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_c00049 { 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_c00049" -> "#page-container .classname_c00049")
 */
.pf_c00049 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00049 { /* 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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00049 { /* 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_c00049 { /* 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_c00049 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00049 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00049 {overflow:visible;}
  }
}
.c_c00049 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00049 { /* 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_c00049:after { /* webkit #35443 */
  content: '';
}
.t_c00049:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00049 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 */
}
.__c00049 { /* 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_c00049 { /* info for Javascript */
  display:none;
}
.l_c00049 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00049 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00049 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00049: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_c00049 {
    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_c00049.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00049.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_c00049 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.000000;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;}
.m2f_c00049{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00049{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00049{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m94_c00049{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m78_c00049{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m73_c00049{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m28_c00049{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00049{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00049{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m7_c00049{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00049{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m91_c00049{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m21_c00049{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00049{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m97_c00049{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m76_c00049{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00049{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m58_c00049{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mab_c00049{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00049{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00049{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00049{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m27_c00049{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m72_c00049{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb_c00049{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m19_c00049{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m17_c00049{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00049{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m86_c00049{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00049{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m26_c00049{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00049{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m80_c00049{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00049{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00049{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m6_c00049{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00049{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00049{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mae_c00049{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m14_c00049{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00049{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m13_c00049{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00049{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00049{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00049{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m25_c00049{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m52_c00049{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00049{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00049{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00049{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m66_c00049{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00049{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m30_c00049{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m23_c00049{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m63_c00049{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m54_c00049{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m47_c00049{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4_c00049{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m79_c00049{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5_c00049{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_c00049{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mac_c00049{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m89_c00049{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m49_c00049{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m50_c00049{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m61_c00049{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9_c00049{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m11_c00049{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00049{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf_c00049{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00049{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00049{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00049{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00049{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00049{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00049{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00049{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00049{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00049{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00049{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m57_c00049{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00049{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m71_c00049{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m15_c00049{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00049{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00049{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00049{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00049{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00049{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00049{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00049{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00049{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00049{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m77_c00049{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00049{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00049{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00049{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00049{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00049{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m16_c00049{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m90_c00049{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m85_c00049{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m59_c00049{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00049{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mad_c00049{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md_c00049{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00049{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00049{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00049{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m42_c00049{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00049{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m87_c00049{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00049{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00049{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m20_c00049{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m37_c00049{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m70_c00049{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma_c00049{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00049{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m68_c00049{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00049{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.maa_c00049{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00049{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m48_c00049{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m40_c00049{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m84_c00049{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m51_c00049{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m43_c00049{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00049{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m64_c00049{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00049{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m29_c00049{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m53_c00049{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m39_c00049{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00049{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m75_c00049{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m88_c00049{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00049{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m93_c00049{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m32_c00049{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00049{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);}
.ma0_c00049{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00049{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00049{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m33_c00049{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00049{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00049{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00049{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m35_c00049{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m41_c00049{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m10_c00049{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00049{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m45_c00049{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m81_c00049{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00049{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00049{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00049{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00049{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00049{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m46_c00049{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00049{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00049{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m69_c00049{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m83_c00049{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m74_c00049{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m98_c00049{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.maf_c00049{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m18_c00049{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m44_c00049{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00049{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m22_c00049{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m65_c00049{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m0_c00049{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m60_c00049{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00049{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00049{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m96_c00049{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00049{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00049{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00049{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00049{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m56_c00049{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m62_c00049{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00049{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00049{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m92_c00049{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{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__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00049{word-spacing:-5.277778px;}
.ws5_c00049{word-spacing:-3.611111px;}
.ws7_c00049{word-spacing:-3.472222px;}
.ws8_c00049{word-spacing:0.000000px;}
.ws0_c00049{word-spacing:2.567568px;}
.ws2_c00049{word-spacing:4.324943px;}
.ws1_c00049{word-spacing:8.194444px;}
.ws3_c00049{word-spacing:10.277778px;}
.ws4_c00049{word-spacing:18.611111px;}
.fc0_c00049{color:transparent;}
.fs0_c00049{font-size:54.000000px;}
.fs1_c00049{font-size:60.000000px;}
.y0_c00049{bottom:0.000000px;}
.y2c_c00049{bottom:143.250000px;}
.y2b_c00049{bottom:185.850000px;}
.y2a_c00049{bottom:205.950000px;}
.y29_c00049{bottom:225.750000px;}
.y28_c00049{bottom:245.250000px;}
.y27_c00049{bottom:265.350000px;}
.y26_c00049{bottom:285.150000px;}
.y25_c00049{bottom:305.250000px;}
.y24_c00049{bottom:325.050000px;}
.y23_c00049{bottom:345.150000px;}
.y22_c00049{bottom:364.950000px;}
.y21_c00049{bottom:385.050000px;}
.y20_c00049{bottom:404.850000px;}
.y1f_c00049{bottom:424.650000px;}
.y1e_c00049{bottom:444.450000px;}
.y1d_c00049{bottom:464.250000px;}
.y1c_c00049{bottom:484.350000px;}
.y1b_c00049{bottom:504.150000px;}
.y1a_c00049{bottom:524.250000px;}
.y19_c00049{bottom:544.350000px;}
.y18_c00049{bottom:564.450000px;}
.y17_c00049{bottom:584.250000px;}
.y16_c00049{bottom:604.350000px;}
.y15_c00049{bottom:624.450000px;}
.y14_c00049{bottom:644.550000px;}
.y13_c00049{bottom:664.350000px;}
.y12_c00049{bottom:684.150000px;}
.y11_c00049{bottom:704.250000px;}
.y10_c00049{bottom:724.050000px;}
.yf_c00049{bottom:743.850000px;}
.ye_c00049{bottom:764.400000px;}
.yd_c00049{bottom:784.200000px;}
.yc_c00049{bottom:804.300000px;}
.yb_c00049{bottom:823.800000px;}
.ya_c00049{bottom:843.600000px;}
.y9_c00049{bottom:863.700000px;}
.y8_c00049{bottom:883.500000px;}
.y7_c00049{bottom:903.450000px;}
.y6_c00049{bottom:923.550000px;}
.y5_c00049{bottom:943.650000px;}
.y4_c00049{bottom:963.750000px;}
.y3_c00049{bottom:983.550000px;}
.y2_c00049{bottom:1003.650000px;}
.y1_c00049{bottom:1042.200000px;}
.h2_c00049{height:54.000000px;}
.h3_c00049{height:60.000000px;}
.h1_c00049{height:1167.000000px;}
.h0_c00049{height:1167.119934px;}
.w0_c00049{width:913.320007px;}
.w1_c00049{width:913.500000px;}
.x0_c00049{left:0.000000px;}
.x12f_c00049{left:94.800000px;}
.xc2_c00049{left:95.850000px;}
.x5_c00049{left:97.200000px;}
.x78_c00049{left:108.600000px;}
.x26_c00049{left:112.200000px;}
.x138_c00049{left:113.250000px;}
.x130_c00049{left:114.600000px;}
.x36_c00049{left:117.000000px;}
.x110_c00049{left:121.350000px;}
.x18_c00049{left:123.750000px;}
.xc3_c00049{left:125.400000px;}
.xf5_c00049{left:126.750000px;}
.x5e_c00049{left:128.550000px;}
.xf7_c00049{left:130.650000px;}
.x79_c00049{left:132.300000px;}
.x123_c00049{left:133.500000px;}
.x13a_c00049{left:135.750000px;}
.x10d_c00049{left:136.950000px;}
.xb9_c00049{left:138.750000px;}
.x5f_c00049{left:140.400000px;}
.x37_c00049{left:143.250000px;}
.x19_c00049{left:144.600000px;}
.x6_c00049{left:145.800000px;}
.xeb_c00049{left:147.150000px;}
.xfc_c00049{left:148.500000px;}
.x7a_c00049{left:152.850000px;}
.xa7_c00049{left:154.650000px;}
.xd1_c00049{left:156.300000px;}
.xba_c00049{left:157.500000px;}
.x9d_c00049{left:159.150000px;}
.x91_c00049{left:161.250000px;}
.x27_c00049{left:163.650000px;}
.x7_c00049{left:164.850000px;}
.x51_c00049{left:166.650000px;}
.xcb_c00049{left:167.700000px;}
.x6e_c00049{left:169.650000px;}
.x86_c00049{left:171.300000px;}
.x1a_c00049{left:172.350000px;}
.xec_c00049{left:174.150000px;}
.x111_c00049{left:175.350000px;}
.x13b_c00049{left:176.700000px;}
.x38_c00049{left:178.200000px;}
.xd2_c00049{left:179.700000px;}
.x12a_c00049{left:181.650000px;}
.x11c_c00049{left:183.750000px;}
.x9e_c00049{left:187.200000px;}
.xa8_c00049{left:189.600000px;}
.x46_c00049{left:190.800000px;}
.x6f_c00049{left:193.350000px;}
.x8_c00049{left:195.450000px;}
.x39_c00049{left:198.300000px;}
.x87_c00049{left:199.800000px;}
.x13e_c00049{left:205.950000px;}
.x104_c00049{left:207.150000px;}
.x28_c00049{left:208.350000px;}
.x9_c00049{left:210.600000px;}
.xc4_c00049{left:212.850000px;}
.x92_c00049{left:214.950000px;}
.xa9_c00049{left:218.400000px;}
.x139_c00049{left:219.600000px;}
.x52_c00049{left:220.650000px;}
.xac_c00049{left:223.050000px;}
.x29_c00049{left:224.250000px;}
.x88_c00049{left:227.100000px;}
.xf6_c00049{left:228.150000px;}
.x3a_c00049{left:229.950000px;}
.x84_c00049{left:232.050000px;}
.x11f_c00049{left:233.100000px;}
.x60_c00049{left:235.350000px;}
.xe5_c00049{left:236.550000px;}
.xa_c00049{left:238.350000px;}
.x10e_c00049{left:240.300000px;}
.x1b_c00049{left:242.250000px;}
.xcc_c00049{left:246.600000px;}
.x124_c00049{left:248.700000px;}
.x9f_c00049{left:250.950000px;}
.xbb_c00049{left:252.750000px;}
.x112_c00049{left:254.250000px;}
.xdd_c00049{left:258.000000px;}
.x53_c00049{left:259.200000px;}
.x1c_c00049{left:261.750000px;}
.x61_c00049{left:263.100000px;}
.x89_c00049{left:264.900000px;}
.x7b_c00049{left:266.550000px;}
.xb3_c00049{left:268.800000px;}
.xaa_c00049{left:269.850000px;}
.xb_c00049{left:272.250000px;}
.x12b_c00049{left:274.200000px;}
.x125_c00049{left:275.700000px;}
.xde_c00049{left:279.300000px;}
.xbc_c00049{left:281.850000px;}
.x117_c00049{left:284.400000px;}
.x93_c00049{left:286.200000px;}
.x10b_c00049{left:287.850000px;}
.x2a_c00049{left:289.800000px;}
.x47_c00049{left:291.900000px;}
.x13f_c00049{left:293.250000px;}
.x54_c00049{left:294.450000px;}
.xc5_c00049{left:296.700000px;}
.xad_c00049{left:298.200000px;}
.xd3_c00049{left:299.550000px;}
.x62_c00049{left:300.900000px;}
.xe6_c00049{left:303.900000px;}
.x3b_c00049{left:306.300000px;}
.xc_c00049{left:309.300000px;}
.xbd_c00049{left:310.650000px;}
.xcd_c00049{left:313.500000px;}
.x133_c00049{left:315.300000px;}
.x55_c00049{left:316.800000px;}
.x85_c00049{left:318.750000px;}
.x63_c00049{left:321.750000px;}
.xe7_c00049{left:323.700000px;}
.x3c_c00049{left:325.800000px;}
.x1d_c00049{left:329.850000px;}
.xff_c00049{left:331.350000px;}
.xa0_c00049{left:334.050000px;}
.x48_c00049{left:335.850000px;}
.x2b_c00049{left:338.100000px;}
.x70_c00049{left:339.750000px;}
.xae_c00049{left:341.400000px;}
.xed_c00049{left:342.900000px;}
.x126_c00049{left:345.900000px;}
.x113_c00049{left:347.100000px;}
.xc6_c00049{left:348.150000px;}
.xdf_c00049{left:349.500000px;}
.x94_c00049{left:352.050000px;}
.x3d_c00049{left:353.850000px;}
.x132_c00049{left:356.100000px;}
.x131_c00049{left:359.550000px;}
.x1e_c00049{left:361.500000px;}
.x64_c00049{left:363.150000px;}
.x2c_c00049{left:364.800000px;}
.x1_c00049{left:367.950000px;}
.x95_c00049{left:369.300000px;}
.xee_c00049{left:370.650000px;}
.x134_c00049{left:372.150000px;}
.x120_c00049{left:374.250000px;}
.xd_c00049{left:375.900000px;}
.xfd_c00049{left:376.950000px;}
.x13c_c00049{left:378.150000px;}
.x100_c00049{left:379.200000px;}
.xce_c00049{left:382.200000px;}
.x118_c00049{left:383.400000px;}
.xd4_c00049{left:387.750000px;}
.x135_c00049{left:389.100000px;}
.x49_c00049{left:390.150000px;}
.xe_c00049{left:392.100000px;}
.xe0_c00049{left:396.300000px;}
.x8a_c00049{left:401.400000px;}
.x121_c00049{left:403.050000px;}
.xd5_c00049{left:404.700000px;}
.x3e_c00049{left:406.800000px;}
.x7c_c00049{left:408.450000px;}
.xbe_c00049{left:410.250000px;}
.x4a_c00049{left:412.500000px;}
.x56_c00049{left:414.000000px;}
.xa1_c00049{left:415.800000px;}
.xd6_c00049{left:418.800000px;}
.x2_c00049{left:420.450000px;}
.x2d_c00049{left:422.400000px;}
.x65_c00049{left:423.600000px;}
.xef_c00049{left:425.400000px;}
.x8b_c00049{left:427.350000px;}
.x1f_c00049{left:429.150000px;}
.x3f_c00049{left:430.200000px;}
.x96_c00049{left:432.300000px;}
.xf_c00049{left:434.250000px;}
.x136_c00049{left:435.600000px;}
.x127_c00049{left:437.700000px;}
.x57_c00049{left:442.050000px;}
.x3_c00049{left:443.850000px;}
.x4b_c00049{left:445.650000px;}
.x71_c00049{left:448.800000px;}
.x20_c00049{left:450.000000px;}
.x10_c00049{left:451.500000px;}
.x122_c00049{left:453.150000px;}
.x66_c00049{left:455.250000px;}
.x2e_c00049{left:456.300000px;}
.x137_c00049{left:459.300000px;}
.x40_c00049{left:460.800000px;}
.x7d_c00049{left:463.200000px;}
.xd7_c00049{left:466.350000px;}
.x72_c00049{left:467.850000px;}
.x8c_c00049{left:470.250000px;}
.x114_c00049{left:472.500000px;}
.x2f_c00049{left:474.600000px;}
.xb4_c00049{left:482.250000px;}
.xfe_c00049{left:484.200000px;}
.x12c_c00049{left:485.400000px;}
.x58_c00049{left:486.750000px;}
.x4c_c00049{left:488.400000px;}
.x11_c00049{left:490.050000px;}
.x73_c00049{left:493.050000px;}
.x41_c00049{left:495.000000px;}
.xf0_c00049{left:496.950000px;}
.x30_c00049{left:498.750000px;}
.x8d_c00049{left:500.100000px;}
.xcf_c00049{left:503.400000px;}
.xf8_c00049{left:505.800000px;}
.x59_c00049{left:508.050000px;}
.x42_c00049{left:509.700000px;}
.x21_c00049{left:511.950000px;}
.xe8_c00049{left:517.500000px;}
.xb5_c00049{left:520.050000px;}
.x101_c00049{left:521.400000px;}
.xa2_c00049{left:523.200000px;}
.xe1_c00049{left:524.850000px;}
.x115_c00049{left:526.050000px;}
.x67_c00049{left:527.250000px;}
.xbf_c00049{left:530.100000px;}
.x31_c00049{left:531.450000px;}
.x119_c00049{left:533.400000px;}
.xc7_c00049{left:534.600000px;}
.x12_c00049{left:536.550000px;}
.x22_c00049{left:538.950000px;}
.xf9_c00049{left:540.750000px;}
.x43_c00049{left:541.800000px;}
.x32_c00049{left:546.150000px;}
.xa3_c00049{left:547.650000px;}
.x97_c00049{left:549.000000px;}
.x5a_c00049{left:552.300000px;}
.x7e_c00049{left:554.250000px;}
.x68_c00049{left:555.300000px;}
.x105_c00049{left:558.600000px;}
.xe2_c00049{left:561.150000px;}
.x74_c00049{left:562.950000px;}
.xd8_c00049{left:564.900000px;}
.xf1_c00049{left:567.150000px;}
.xaf_c00049{left:569.100000px;}
.x13_c00049{left:570.750000px;}
.x12d_c00049{left:572.100000px;}
.x5b_c00049{left:573.600000px;}
.xc0_c00049{left:574.800000px;}
.xd9_c00049{left:576.000000px;}
.x11a_c00049{left:577.350000px;}
.x8e_c00049{left:579.600000px;}
.x102_c00049{left:582.150000px;}
.x7f_c00049{left:584.100000px;}
.xf2_c00049{left:585.450000px;}
.xb6_c00049{left:586.950000px;}
.xa4_c00049{left:588.750000px;}
.x44_c00049{left:592.650000px;}
.x98_c00049{left:594.000000px;}
.x13d_c00049{left:596.250000px;}
.x69_c00049{left:597.750000px;}
.xb7_c00049{left:599.250000px;}
.x14_c00049{left:600.300000px;}
.x75_c00049{left:602.250000px;}
.x11d_c00049{left:603.600000px;}
.xc8_c00049{left:604.800000px;}
.x106_c00049{left:606.900000px;}
.x33_c00049{left:608.850000px;}
.x5c_c00049{left:609.900000px;}
.x99_c00049{left:613.050000px;}
.x23_c00049{left:614.250000px;}
.x11b_c00049{left:617.700000px;}
.x45_c00049{left:620.700000px;}
.x107_c00049{left:622.800000px;}
.xfa_c00049{left:625.350000px;}
.x76_c00049{left:627.450000px;}
.x80_c00049{left:629.100000px;}
.xc9_c00049{left:630.750000px;}
.xda_c00049{left:632.550000px;}
.x8f_c00049{left:636.450000px;}
.x15_c00049{left:638.850000px;}
.xb0_c00049{left:641.100000px;}
.x12e_c00049{left:644.400000px;}
.x6a_c00049{left:645.600000px;}
.x11e_c00049{left:647.850000px;}
.x5d_c00049{left:649.500000px;}
.x4d_c00049{left:651.450000px;}
.xb1_c00049{left:655.800000px;}
.x81_c00049{left:657.600000px;}
.x9a_c00049{left:660.900000px;}
.x116_c00049{left:662.850000px;}
.xa5_c00049{left:664.350000px;}
.x4e_c00049{left:666.600000px;}
.xf3_c00049{left:667.950000px;}
.x34_c00049{left:669.000000px;}
.x103_c00049{left:670.350000px;}
.x6b_c00049{left:671.550000px;}
.x24_c00049{left:673.950000px;}
.x10f_c00049{left:677.550000px;}
.xe3_c00049{left:679.650000px;}
.x10c_c00049{left:683.850000px;}
.x77_c00049{left:685.350000px;}
.xfb_c00049{left:687.000000px;}
.x25_c00049{left:688.650000px;}
.x90_c00049{left:689.700000px;}
.x108_c00049{left:692.250000px;}
.x6c_c00049{left:694.200000px;}
.x128_c00049{left:695.850000px;}
.x35_c00049{left:697.050000px;}
.x9b_c00049{left:699.450000px;}
.xe9_c00049{left:702.600000px;}
.xdb_c00049{left:703.950000px;}
.x16_c00049{left:705.450000px;}
.x4f_c00049{left:707.700000px;}
.xb2_c00049{left:709.500000px;}
.x129_c00049{left:710.550000px;}
.x109_c00049{left:713.850000px;}
.xf4_c00049{left:715.050000px;}
.x82_c00049{left:716.250000px;}
.xab_c00049{left:718.350000px;}
.xd0_c00049{left:720.450000px;}
.xdc_c00049{left:721.950000px;}
.xe4_c00049{left:724.650000px;}
.xca_c00049{left:727.200000px;}
.xea_c00049{left:730.650000px;}
.x50_c00049{left:733.650000px;}
.xc1_c00049{left:735.600000px;}
.x9c_c00049{left:738.000000px;}
.x83_c00049{left:739.650000px;}
.x6d_c00049{left:741.000000px;}
.x17_c00049{left:742.200000px;}
.xa6_c00049{left:744.600000px;}
.x10a_c00049{left:749.550000px;}
.xb8_c00049{left:756.900000px;}
.x4_c00049{left:758.100000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws6_c00049{word-spacing:-4.691358pt;}
.ws5_c00049{word-spacing:-3.209877pt;}
.ws7_c00049{word-spacing:-3.086420pt;}
.ws8_c00049{word-spacing:0.000000pt;}
.ws0_c00049{word-spacing:2.282282pt;}
.ws2_c00049{word-spacing:3.844394pt;}
.ws1_c00049{word-spacing:7.283951pt;}
.ws3_c00049{word-spacing:9.135802pt;}
.ws4_c00049{word-spacing:16.543210pt;}
.fs0_c00049{font-size:48.000000pt;}
.fs1_c00049{font-size:53.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y2c_c00049{bottom:127.333333pt;}
.y2b_c00049{bottom:165.200000pt;}
.y2a_c00049{bottom:183.066667pt;}
.y29_c00049{bottom:200.666667pt;}
.y28_c00049{bottom:218.000000pt;}
.y27_c00049{bottom:235.866667pt;}
.y26_c00049{bottom:253.466667pt;}
.y25_c00049{bottom:271.333333pt;}
.y24_c00049{bottom:288.933333pt;}
.y23_c00049{bottom:306.800000pt;}
.y22_c00049{bottom:324.400000pt;}
.y21_c00049{bottom:342.266667pt;}
.y20_c00049{bottom:359.866667pt;}
.y1f_c00049{bottom:377.466667pt;}
.y1e_c00049{bottom:395.066667pt;}
.y1d_c00049{bottom:412.666667pt;}
.y1c_c00049{bottom:430.533333pt;}
.y1b_c00049{bottom:448.133333pt;}
.y1a_c00049{bottom:466.000000pt;}
.y19_c00049{bottom:483.866667pt;}
.y18_c00049{bottom:501.733333pt;}
.y17_c00049{bottom:519.333333pt;}
.y16_c00049{bottom:537.200000pt;}
.y15_c00049{bottom:555.066667pt;}
.y14_c00049{bottom:572.933333pt;}
.y13_c00049{bottom:590.533333pt;}
.y12_c00049{bottom:608.133333pt;}
.y11_c00049{bottom:626.000000pt;}
.y10_c00049{bottom:643.600000pt;}
.yf_c00049{bottom:661.200000pt;}
.ye_c00049{bottom:679.466667pt;}
.yd_c00049{bottom:697.066667pt;}
.yc_c00049{bottom:714.933333pt;}
.yb_c00049{bottom:732.266667pt;}
.ya_c00049{bottom:749.866667pt;}
.y9_c00049{bottom:767.733333pt;}
.y8_c00049{bottom:785.333333pt;}
.y7_c00049{bottom:803.066667pt;}
.y6_c00049{bottom:820.933333pt;}
.y5_c00049{bottom:838.800000pt;}
.y4_c00049{bottom:856.666667pt;}
.y3_c00049{bottom:874.266667pt;}
.y2_c00049{bottom:892.133333pt;}
.y1_c00049{bottom:926.400000pt;}
.h2_c00049{height:48.000000pt;}
.h3_c00049{height:53.333333pt;}
.h1_c00049{height:1037.333333pt;}
.h0_c00049{height:1037.439941pt;}
.w0_c00049{width:811.840007pt;}
.w1_c00049{width:812.000000pt;}
.x0_c00049{left:0.000000pt;}
.x12f_c00049{left:84.266667pt;}
.xc2_c00049{left:85.200000pt;}
.x5_c00049{left:86.400000pt;}
.x78_c00049{left:96.533333pt;}
.x26_c00049{left:99.733333pt;}
.x138_c00049{left:100.666667pt;}
.x130_c00049{left:101.866667pt;}
.x36_c00049{left:104.000000pt;}
.x110_c00049{left:107.866667pt;}
.x18_c00049{left:110.000000pt;}
.xc3_c00049{left:111.466667pt;}
.xf5_c00049{left:112.666667pt;}
.x5e_c00049{left:114.266667pt;}
.xf7_c00049{left:116.133333pt;}
.x79_c00049{left:117.600000pt;}
.x123_c00049{left:118.666667pt;}
.x13a_c00049{left:120.666667pt;}
.x10d_c00049{left:121.733333pt;}
.xb9_c00049{left:123.333333pt;}
.x5f_c00049{left:124.800000pt;}
.x37_c00049{left:127.333333pt;}
.x19_c00049{left:128.533333pt;}
.x6_c00049{left:129.600000pt;}
.xeb_c00049{left:130.800000pt;}
.xfc_c00049{left:132.000000pt;}
.x7a_c00049{left:135.866667pt;}
.xa7_c00049{left:137.466667pt;}
.xd1_c00049{left:138.933333pt;}
.xba_c00049{left:140.000000pt;}
.x9d_c00049{left:141.466667pt;}
.x91_c00049{left:143.333333pt;}
.x27_c00049{left:145.466667pt;}
.x7_c00049{left:146.533333pt;}
.x51_c00049{left:148.133333pt;}
.xcb_c00049{left:149.066667pt;}
.x6e_c00049{left:150.800000pt;}
.x86_c00049{left:152.266667pt;}
.x1a_c00049{left:153.200000pt;}
.xec_c00049{left:154.800000pt;}
.x111_c00049{left:155.866667pt;}
.x13b_c00049{left:157.066667pt;}
.x38_c00049{left:158.400000pt;}
.xd2_c00049{left:159.733333pt;}
.x12a_c00049{left:161.466667pt;}
.x11c_c00049{left:163.333333pt;}
.x9e_c00049{left:166.400000pt;}
.xa8_c00049{left:168.533333pt;}
.x46_c00049{left:169.600000pt;}
.x6f_c00049{left:171.866667pt;}
.x8_c00049{left:173.733333pt;}
.x39_c00049{left:176.266667pt;}
.x87_c00049{left:177.600000pt;}
.x13e_c00049{left:183.066667pt;}
.x104_c00049{left:184.133333pt;}
.x28_c00049{left:185.200000pt;}
.x9_c00049{left:187.200000pt;}
.xc4_c00049{left:189.200000pt;}
.x92_c00049{left:191.066667pt;}
.xa9_c00049{left:194.133333pt;}
.x139_c00049{left:195.200000pt;}
.x52_c00049{left:196.133333pt;}
.xac_c00049{left:198.266667pt;}
.x29_c00049{left:199.333333pt;}
.x88_c00049{left:201.866667pt;}
.xf6_c00049{left:202.800000pt;}
.x3a_c00049{left:204.400000pt;}
.x84_c00049{left:206.266667pt;}
.x11f_c00049{left:207.200000pt;}
.x60_c00049{left:209.200000pt;}
.xe5_c00049{left:210.266667pt;}
.xa_c00049{left:211.866667pt;}
.x10e_c00049{left:213.600000pt;}
.x1b_c00049{left:215.333333pt;}
.xcc_c00049{left:219.200000pt;}
.x124_c00049{left:221.066667pt;}
.x9f_c00049{left:223.066667pt;}
.xbb_c00049{left:224.666667pt;}
.x112_c00049{left:226.000000pt;}
.xdd_c00049{left:229.333333pt;}
.x53_c00049{left:230.400000pt;}
.x1c_c00049{left:232.666667pt;}
.x61_c00049{left:233.866667pt;}
.x89_c00049{left:235.466667pt;}
.x7b_c00049{left:236.933333pt;}
.xb3_c00049{left:238.933333pt;}
.xaa_c00049{left:239.866667pt;}
.xb_c00049{left:242.000000pt;}
.x12b_c00049{left:243.733333pt;}
.x125_c00049{left:245.066667pt;}
.xde_c00049{left:248.266667pt;}
.xbc_c00049{left:250.533333pt;}
.x117_c00049{left:252.800000pt;}
.x93_c00049{left:254.400000pt;}
.x10b_c00049{left:255.866667pt;}
.x2a_c00049{left:257.600000pt;}
.x47_c00049{left:259.466667pt;}
.x13f_c00049{left:260.666667pt;}
.x54_c00049{left:261.733333pt;}
.xc5_c00049{left:263.733333pt;}
.xad_c00049{left:265.066667pt;}
.xd3_c00049{left:266.266667pt;}
.x62_c00049{left:267.466667pt;}
.xe6_c00049{left:270.133333pt;}
.x3b_c00049{left:272.266667pt;}
.xc_c00049{left:274.933333pt;}
.xbd_c00049{left:276.133333pt;}
.xcd_c00049{left:278.666667pt;}
.x133_c00049{left:280.266667pt;}
.x55_c00049{left:281.600000pt;}
.x85_c00049{left:283.333333pt;}
.x63_c00049{left:286.000000pt;}
.xe7_c00049{left:287.733333pt;}
.x3c_c00049{left:289.600000pt;}
.x1d_c00049{left:293.200000pt;}
.xff_c00049{left:294.533333pt;}
.xa0_c00049{left:296.933333pt;}
.x48_c00049{left:298.533333pt;}
.x2b_c00049{left:300.533333pt;}
.x70_c00049{left:302.000000pt;}
.xae_c00049{left:303.466667pt;}
.xed_c00049{left:304.800000pt;}
.x126_c00049{left:307.466667pt;}
.x113_c00049{left:308.533333pt;}
.xc6_c00049{left:309.466667pt;}
.xdf_c00049{left:310.666667pt;}
.x94_c00049{left:312.933333pt;}
.x3d_c00049{left:314.533333pt;}
.x132_c00049{left:316.533333pt;}
.x131_c00049{left:319.600000pt;}
.x1e_c00049{left:321.333333pt;}
.x64_c00049{left:322.800000pt;}
.x2c_c00049{left:324.266667pt;}
.x1_c00049{left:327.066667pt;}
.x95_c00049{left:328.266667pt;}
.xee_c00049{left:329.466667pt;}
.x134_c00049{left:330.800000pt;}
.x120_c00049{left:332.666667pt;}
.xd_c00049{left:334.133333pt;}
.xfd_c00049{left:335.066667pt;}
.x13c_c00049{left:336.133333pt;}
.x100_c00049{left:337.066667pt;}
.xce_c00049{left:339.733333pt;}
.x118_c00049{left:340.800000pt;}
.xd4_c00049{left:344.666667pt;}
.x135_c00049{left:345.866667pt;}
.x49_c00049{left:346.800000pt;}
.xe_c00049{left:348.533333pt;}
.xe0_c00049{left:352.266667pt;}
.x8a_c00049{left:356.800000pt;}
.x121_c00049{left:358.266667pt;}
.xd5_c00049{left:359.733333pt;}
.x3e_c00049{left:361.600000pt;}
.x7c_c00049{left:363.066667pt;}
.xbe_c00049{left:364.666667pt;}
.x4a_c00049{left:366.666667pt;}
.x56_c00049{left:368.000000pt;}
.xa1_c00049{left:369.600000pt;}
.xd6_c00049{left:372.266667pt;}
.x2_c00049{left:373.733333pt;}
.x2d_c00049{left:375.466667pt;}
.x65_c00049{left:376.533333pt;}
.xef_c00049{left:378.133333pt;}
.x8b_c00049{left:379.866667pt;}
.x1f_c00049{left:381.466667pt;}
.x3f_c00049{left:382.400000pt;}
.x96_c00049{left:384.266667pt;}
.xf_c00049{left:386.000000pt;}
.x136_c00049{left:387.200000pt;}
.x127_c00049{left:389.066667pt;}
.x57_c00049{left:392.933333pt;}
.x3_c00049{left:394.533333pt;}
.x4b_c00049{left:396.133333pt;}
.x71_c00049{left:398.933333pt;}
.x20_c00049{left:400.000000pt;}
.x10_c00049{left:401.333333pt;}
.x122_c00049{left:402.800000pt;}
.x66_c00049{left:404.666667pt;}
.x2e_c00049{left:405.600000pt;}
.x137_c00049{left:408.266667pt;}
.x40_c00049{left:409.600000pt;}
.x7d_c00049{left:411.733333pt;}
.xd7_c00049{left:414.533333pt;}
.x72_c00049{left:415.866667pt;}
.x8c_c00049{left:418.000000pt;}
.x114_c00049{left:420.000000pt;}
.x2f_c00049{left:421.866667pt;}
.xb4_c00049{left:428.666667pt;}
.xfe_c00049{left:430.400000pt;}
.x12c_c00049{left:431.466667pt;}
.x58_c00049{left:432.666667pt;}
.x4c_c00049{left:434.133333pt;}
.x11_c00049{left:435.600000pt;}
.x73_c00049{left:438.266667pt;}
.x41_c00049{left:440.000000pt;}
.xf0_c00049{left:441.733333pt;}
.x30_c00049{left:443.333333pt;}
.x8d_c00049{left:444.533333pt;}
.xcf_c00049{left:447.466667pt;}
.xf8_c00049{left:449.600000pt;}
.x59_c00049{left:451.600000pt;}
.x42_c00049{left:453.066667pt;}
.x21_c00049{left:455.066667pt;}
.xe8_c00049{left:460.000000pt;}
.xb5_c00049{left:462.266667pt;}
.x101_c00049{left:463.466667pt;}
.xa2_c00049{left:465.066667pt;}
.xe1_c00049{left:466.533333pt;}
.x115_c00049{left:467.600000pt;}
.x67_c00049{left:468.666667pt;}
.xbf_c00049{left:471.200000pt;}
.x31_c00049{left:472.400000pt;}
.x119_c00049{left:474.133333pt;}
.xc7_c00049{left:475.200000pt;}
.x12_c00049{left:476.933333pt;}
.x22_c00049{left:479.066667pt;}
.xf9_c00049{left:480.666667pt;}
.x43_c00049{left:481.600000pt;}
.x32_c00049{left:485.466667pt;}
.xa3_c00049{left:486.800000pt;}
.x97_c00049{left:488.000000pt;}
.x5a_c00049{left:490.933333pt;}
.x7e_c00049{left:492.666667pt;}
.x68_c00049{left:493.600000pt;}
.x105_c00049{left:496.533333pt;}
.xe2_c00049{left:498.800000pt;}
.x74_c00049{left:500.400000pt;}
.xd8_c00049{left:502.133333pt;}
.xf1_c00049{left:504.133333pt;}
.xaf_c00049{left:505.866667pt;}
.x13_c00049{left:507.333333pt;}
.x12d_c00049{left:508.533333pt;}
.x5b_c00049{left:509.866667pt;}
.xc0_c00049{left:510.933333pt;}
.xd9_c00049{left:512.000000pt;}
.x11a_c00049{left:513.200000pt;}
.x8e_c00049{left:515.200000pt;}
.x102_c00049{left:517.466667pt;}
.x7f_c00049{left:519.200000pt;}
.xf2_c00049{left:520.400000pt;}
.xb6_c00049{left:521.733333pt;}
.xa4_c00049{left:523.333333pt;}
.x44_c00049{left:526.800000pt;}
.x98_c00049{left:528.000000pt;}
.x13d_c00049{left:530.000000pt;}
.x69_c00049{left:531.333333pt;}
.xb7_c00049{left:532.666667pt;}
.x14_c00049{left:533.600000pt;}
.x75_c00049{left:535.333333pt;}
.x11d_c00049{left:536.533333pt;}
.xc8_c00049{left:537.600000pt;}
.x106_c00049{left:539.466667pt;}
.x33_c00049{left:541.200000pt;}
.x5c_c00049{left:542.133333pt;}
.x99_c00049{left:544.933333pt;}
.x23_c00049{left:546.000000pt;}
.x11b_c00049{left:549.066667pt;}
.x45_c00049{left:551.733333pt;}
.x107_c00049{left:553.600000pt;}
.xfa_c00049{left:555.866667pt;}
.x76_c00049{left:557.733333pt;}
.x80_c00049{left:559.200000pt;}
.xc9_c00049{left:560.666667pt;}
.xda_c00049{left:562.266667pt;}
.x8f_c00049{left:565.733333pt;}
.x15_c00049{left:567.866667pt;}
.xb0_c00049{left:569.866667pt;}
.x12e_c00049{left:572.800000pt;}
.x6a_c00049{left:573.866667pt;}
.x11e_c00049{left:575.866667pt;}
.x5d_c00049{left:577.333333pt;}
.x4d_c00049{left:579.066667pt;}
.xb1_c00049{left:582.933333pt;}
.x81_c00049{left:584.533333pt;}
.x9a_c00049{left:587.466667pt;}
.x116_c00049{left:589.200000pt;}
.xa5_c00049{left:590.533333pt;}
.x4e_c00049{left:592.533333pt;}
.xf3_c00049{left:593.733333pt;}
.x34_c00049{left:594.666667pt;}
.x103_c00049{left:595.866667pt;}
.x6b_c00049{left:596.933333pt;}
.x24_c00049{left:599.066667pt;}
.x10f_c00049{left:602.266667pt;}
.xe3_c00049{left:604.133333pt;}
.x10c_c00049{left:607.866667pt;}
.x77_c00049{left:609.200000pt;}
.xfb_c00049{left:610.666667pt;}
.x25_c00049{left:612.133333pt;}
.x90_c00049{left:613.066667pt;}
.x108_c00049{left:615.333333pt;}
.x6c_c00049{left:617.066667pt;}
.x128_c00049{left:618.533333pt;}
.x35_c00049{left:619.600000pt;}
.x9b_c00049{left:621.733333pt;}
.xe9_c00049{left:624.533333pt;}
.xdb_c00049{left:625.733333pt;}
.x16_c00049{left:627.066667pt;}
.x4f_c00049{left:629.066667pt;}
.xb2_c00049{left:630.666667pt;}
.x129_c00049{left:631.600000pt;}
.x109_c00049{left:634.533333pt;}
.xf4_c00049{left:635.600000pt;}
.x82_c00049{left:636.666667pt;}
.xab_c00049{left:638.533333pt;}
.xd0_c00049{left:640.400000pt;}
.xdc_c00049{left:641.733333pt;}
.xe4_c00049{left:644.133333pt;}
.xca_c00049{left:646.400000pt;}
.xea_c00049{left:649.466667pt;}
.x50_c00049{left:652.133333pt;}
.xc1_c00049{left:653.866667pt;}
.x9c_c00049{left:656.000000pt;}
.x83_c00049{left:657.466667pt;}
.x6d_c00049{left:658.666667pt;}
.x17_c00049{left:659.733333pt;}
.xa6_c00049{left:661.866667pt;}
.x10a_c00049{left:666.266667pt;}
.xb8_c00049{left:672.800000pt;}
.x4_c00049{left:673.866667pt;}
}





/* 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_c00050 {
    display:none;
  }
  .loading-indicator_c00050.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00050 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_c00050 { 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_c00050" -> "#page-container .classname_c00050")
 */
.pf_c00050 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00050 { /* 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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00050 { /* 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_c00050 { /* 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_c00050 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00050 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00050 {overflow:visible;}
  }
}
.c_c00050 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00050 { /* 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_c00050:after { /* webkit #35443 */
  content: '';
}
.t_c00050:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00050 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 */
}
.__c00050 { /* 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_c00050 { /* info for Javascript */
  display:none;
}
.l_c00050 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00050 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00050 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00050: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_c00050 {
    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_c00050.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00050.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_c00050 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00050{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00050;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.000000;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;}
.mf_c00050{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00050{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m48_c00050{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m59_c00050{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00050{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m91_c00050{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00050{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00050{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m82_c00050{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mab_c00050{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m11_c00050{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m41_c00050{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00050{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m69_c00050{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00050{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m92_c00050{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m45_c00050{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00050{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.maa_c00050{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mac_c00050{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m40_c00050{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00050{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m18_c00050{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m64_c00050{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00050{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m90_c00050{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00050{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m97_c00050{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00050{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m54_c00050{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m13_c00050{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00050{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m83_c00050{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m87_c00050{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m32_c00050{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m74_c00050{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00050{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00050{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m51_c00050{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m86_c00050{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00050{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m98_c00050{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m39_c00050{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00050{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m77_c00050{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00050{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m28_c00050{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m56_c00050{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m34_c00050{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00050{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00050{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00050{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m63_c00050{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00050{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00050{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00050{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m73_c00050{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m29_c00050{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m72_c00050{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m52_c00050{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00050{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m76_c00050{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m70_c00050{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00050{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00050{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m65_c00050{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m93_c00050{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00050{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00050{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00050{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m23_c00050{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m31_c00050{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00050{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00050{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00050{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00050{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m36_c00050{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m94_c00050{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m71_c00050{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00050{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00050{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m81_c00050{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb_c00050{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m88_c00050{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00050{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m78_c00050{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00050{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00050{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00050{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00050{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00050{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00050{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00050{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m79_c00050{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m38_c00050{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00050{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00050{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20_c00050{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m85_c00050{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m60_c00050{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m58_c00050{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m42_c00050{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);}
.m22_c00050{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00050{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00050{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00050{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00050{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m99_c00050{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m30_c00050{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m67_c00050{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m68_c00050{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00050{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m27_c00050{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00050{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00050{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m89_c00050{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c00050{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00050{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m80_c00050{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00050{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m21_c00050{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m95_c00050{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.ma_c00050{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m37_c00050{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m61_c00050{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00050{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m84_c00050{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m96_c00050{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00050{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m75_c00050{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m49_c00050{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00050{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00050{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m57_c00050{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00050{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m66_c00050{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00050{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00050{vertical-align:0.000000px;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{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__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00050{word-spacing:-6.578947px;}
.wsd_c00050{word-spacing:-6.521739px;}
.ws9_c00050{word-spacing:-5.000000px;}
.ws4_c00050{word-spacing:-0.606061px;}
.ws12_c00050{word-spacing:0.000000px;}
.ws3_c00050{word-spacing:0.277778px;}
.ws5_c00050{word-spacing:0.703125px;}
.wsa_c00050{word-spacing:1.666667px;}
.ws10_c00050{word-spacing:2.878788px;}
.wsb_c00050{word-spacing:3.125000px;}
.wsc_c00050{word-spacing:5.512821px;}
.wse_c00050{word-spacing:6.527778px;}
.ws0_c00050{word-spacing:7.115385px;}
.ws7_c00050{word-spacing:8.100686px;}
.wsf_c00050{word-spacing:8.194444px;}
.ws1_c00050{word-spacing:13.787879px;}
.ws8_c00050{word-spacing:15.882353px;}
.ws11_c00050{word-spacing:17.575758px;}
.ws2_c00050{word-spacing:22.962963px;}
.fc0_c00050{color:transparent;}
.fs0_c00050{font-size:54.000000px;}
.fs1_c00050{font-size:60.000000px;}
.y0_c00050{bottom:0.000000px;}
.y2c_c00050{bottom:158.100000px;}
.y2b_c00050{bottom:199.050000px;}
.y2a_c00050{bottom:217.800000px;}
.y29_c00050{bottom:239.400000px;}
.y28_c00050{bottom:259.500000px;}
.y27_c00050{bottom:279.300000px;}
.y26_c00050{bottom:299.400000px;}
.y25_c00050{bottom:319.200000px;}
.y24_c00050{bottom:339.000000px;}
.y23_c00050{bottom:358.500000px;}
.y22_c00050{bottom:378.300000px;}
.y21_c00050{bottom:398.100000px;}
.y20_c00050{bottom:418.200000px;}
.y1f_c00050{bottom:438.000000px;}
.y1e_c00050{bottom:457.800000px;}
.y1d_c00050{bottom:477.300000px;}
.y1c_c00050{bottom:497.400000px;}
.y1b_c00050{bottom:517.200000px;}
.y1a_c00050{bottom:537.300000px;}
.y19_c00050{bottom:557.100000px;}
.y18_c00050{bottom:577.200000px;}
.y17_c00050{bottom:597.300000px;}
.y16_c00050{bottom:616.800000px;}
.y15_c00050{bottom:636.900000px;}
.y14_c00050{bottom:657.000000px;}
.y13_c00050{bottom:676.800000px;}
.y12_c00050{bottom:696.900000px;}
.y11_c00050{bottom:716.400000px;}
.y10_c00050{bottom:736.500000px;}
.yf_c00050{bottom:757.050000px;}
.ye_c00050{bottom:776.550000px;}
.yd_c00050{bottom:796.650000px;}
.yc_c00050{bottom:816.150000px;}
.yb_c00050{bottom:836.700000px;}
.ya_c00050{bottom:856.650000px;}
.y9_c00050{bottom:876.750000px;}
.y8_c00050{bottom:896.550000px;}
.y7_c00050{bottom:916.350000px;}
.y6_c00050{bottom:936.450000px;}
.y5_c00050{bottom:955.950000px;}
.y4_c00050{bottom:976.050000px;}
.y3_c00050{bottom:995.850000px;}
.y2_c00050{bottom:1015.950000px;}
.y1_c00050{bottom:1054.500000px;}
.h2_c00050{height:54.000000px;}
.h3_c00050{height:60.000000px;}
.h1_c00050{height:1167.000000px;}
.h0_c00050{height:1167.119934px;}
.w0_c00050{width:913.320007px;}
.w1_c00050{width:913.500000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:149.700000px;}
.x103_c00050{left:151.650000px;}
.x13d_c00050{left:164.850000px;}
.x4e_c00050{left:167.550000px;}
.x5d_c00050{left:169.350000px;}
.x3e_c00050{left:172.950000px;}
.x6a_c00050{left:174.750000px;}
.xa5_c00050{left:177.000000px;}
.x16_c00050{left:178.200000px;}
.x94_c00050{left:179.250000px;}
.x5e_c00050{left:181.650000px;}
.x120_c00050{left:183.300000px;}
.xe3_c00050{left:184.350000px;}
.x11e_c00050{left:185.850000px;}
.x108_c00050{left:189.300000px;}
.x135_c00050{left:190.350000px;}
.x4f_c00050{left:191.700000px;}
.x83_c00050{left:194.250000px;}
.xd1_c00050{left:195.750000px;}
.x32_c00050{left:198.150000px;}
.x104_c00050{left:199.950000px;}
.x79_c00050{left:202.050000px;}
.x26_c00050{left:203.550000px;}
.x89_c00050{left:206.400000px;}
.x136_c00050{left:207.600000px;}
.x17_c00050{left:210.600000px;}
.xaf_c00050{left:212.100000px;}
.x139_c00050{left:213.900000px;}
.x119_c00050{left:220.800000px;}
.x5f_c00050{left:222.300000px;}
.x9d_c00050{left:223.650000px;}
.x6b_c00050{left:225.450000px;}
.xca_c00050{left:226.500000px;}
.xd7_c00050{left:230.400000px;}
.x27_c00050{left:232.050000px;}
.x3f_c00050{left:234.150000px;}
.x4_c00050{left:237.300000px;}
.x50_c00050{left:241.050000px;}
.x12a_c00050{left:245.100000px;}
.xd2_c00050{left:246.450000px;}
.xb8_c00050{left:247.500000px;}
.x9e_c00050{left:249.150000px;}
.xb0_c00050{left:250.200000px;}
.x60_c00050{left:253.200000px;}
.x40_c00050{left:255.000000px;}
.xcb_c00050{left:256.050000px;}
.x33_c00050{left:257.250000px;}
.x5_c00050{left:258.600000px;}
.xd8_c00050{left:259.950000px;}
.x121_c00050{left:261.000000px;}
.xe8_c00050{left:262.650000px;}
.x28_c00050{left:267.300000px;}
.x10d_c00050{left:268.800000px;}
.x51_c00050{left:270.150000px;}
.xfa_c00050{left:271.200000px;}
.x18_c00050{left:272.550000px;}
.xa6_c00050{left:274.200000px;}
.x34_c00050{left:276.300000px;}
.x29_c00050{left:279.150000px;}
.x84_c00050{left:280.350000px;}
.xc2_c00050{left:281.850000px;}
.x6c_c00050{left:283.800000px;}
.xd3_c00050{left:285.300000px;}
.x6_c00050{left:286.650000px;}
.x115_c00050{left:288.300000px;}
.xf4_c00050{left:289.650000px;}
.x41_c00050{left:291.750000px;}
.x11a_c00050{left:292.800000px;}
.xb9_c00050{left:295.050000px;}
.xc3_c00050{left:297.300000px;}
.x9f_c00050{left:298.800000px;}
.xef_c00050{left:300.000000px;}
.x6d_c00050{left:301.050000px;}
.xd4_c00050{left:302.250000px;}
.x8a_c00050{left:306.750000px;}
.xe9_c00050{left:308.700000px;}
.x19_c00050{left:310.050000px;}
.x42_c00050{left:312.600000px;}
.xd9_c00050{left:313.650000px;}
.x7_c00050{left:315.450000px;}
.x35_c00050{left:316.950000px;}
.x85_c00050{left:318.900000px;}
.x7a_c00050{left:320.100000px;}
.x1a_c00050{left:323.700000px;}
.xc4_c00050{left:325.800000px;}
.xdf_c00050{left:327.150000px;}
.xea_c00050{left:329.550000px;}
.xf0_c00050{left:330.600000px;}
.x126_c00050{left:334.800000px;}
.xd5_c00050{left:336.150000px;}
.x122_c00050{left:337.200000px;}
.x10e_c00050{left:338.250000px;}
.x8b_c00050{left:339.900000px;}
.x8_c00050{left:342.450000px;}
.x61_c00050{left:345.300000px;}
.x12b_c00050{left:346.800000px;}
.xda_c00050{left:347.850000px;}
.xcc_c00050{left:351.150000px;}
.xa0_c00050{left:352.500000px;}
.xbc_c00050{left:355.350000px;}
.xeb_c00050{left:357.300000px;}
.x13e_c00050{left:358.500000px;}
.x8c_c00050{left:360.750000px;}
.xa7_c00050{left:363.750000px;}
.x52_c00050{left:365.850000px;}
.x137_c00050{left:367.350000px;}
.x123_c00050{left:369.900000px;}
.x2a_c00050{left:371.250000px;}
.xfb_c00050{left:372.450000px;}
.x7b_c00050{left:373.800000px;}
.xbd_c00050{left:375.450000px;}
.x62_c00050{left:377.700000px;}
.x95_c00050{left:379.050000px;}
.xa1_c00050{left:380.550000px;}
.x12f_c00050{left:383.400000px;}
.x1b_c00050{left:384.900000px;}
.x8d_c00050{left:386.700000px;}
.xe4_c00050{left:389.250000px;}
.x76_c00050{left:392.550000px;}
.x43_c00050{left:394.650000px;}
.x13a_c00050{left:396.150000px;}
.x2_c00050{left:397.350000px;}
.x86_c00050{left:400.200000px;}
.xcd_c00050{left:402.300000px;}
.xba_c00050{left:404.100000px;}
.x9_c00050{left:408.600000px;}
.x63_c00050{left:412.650000px;}
.x53_c00050{left:414.000000px;}
.xbe_c00050{left:416.850000px;}
.xe5_c00050{left:418.800000px;}
.xdb_c00050{left:420.150000px;}
.x1c_c00050{left:421.650000px;}
.x6e_c00050{left:422.850000px;}
.x44_c00050{left:424.950000px;}
.xc5_c00050{left:427.050000px;}
.xfc_c00050{left:429.300000px;}
.x77_c00050{left:430.650000px;}
.x36_c00050{left:431.850000px;}
.xa2_c00050{left:433.500000px;}
.x105_c00050{left:435.000000px;}
.xdc_c00050{left:437.100000px;}
.x1d_c00050{left:438.600000px;}
.xa8_c00050{left:440.850000px;}
.xa_c00050{left:442.500000px;}
.x127_c00050{left:445.650000px;}
.x64_c00050{left:448.650000px;}
.x10f_c00050{left:450.300000px;}
.xa3_c00050{left:451.800000px;}
.x6f_c00050{left:453.750000px;}
.x87_c00050{left:455.250000px;}
.xd6_c00050{left:456.750000px;}
.xfd_c00050{left:462.000000px;}
.x37_c00050{left:463.500000px;}
.xf5_c00050{left:465.000000px;}
.xc6_c00050{left:466.350000px;}
.x54_c00050{left:468.300000px;}
.x96_c00050{left:469.800000px;}
.x2b_c00050{left:471.000000px;}
.xce_c00050{left:473.700000px;}
.x11b_c00050{left:477.000000px;}
.x45_c00050{left:478.200000px;}
.x55_c00050{left:482.700000px;}
.xb_c00050{left:484.950000px;}
.x78_c00050{left:487.200000px;}
.xf1_c00050{left:488.400000px;}
.x7c_c00050{left:489.450000px;}
.xa9_c00050{left:490.500000px;}
.x2c_c00050{left:491.550000px;}
.xb1_c00050{left:493.050000px;}
.xf6_c00050{left:494.850000px;}
.x3_c00050{left:496.350000px;}
.x130_c00050{left:497.550000px;}
.x1e_c00050{left:499.800000px;}
.xbf_c00050{left:501.150000px;}
.x8e_c00050{left:503.400000px;}
.xa4_c00050{left:505.050000px;}
.x97_c00050{left:506.550000px;}
.x65_c00050{left:511.650000px;}
.x11c_c00050{left:513.300000px;}
.x110_c00050{left:515.850000px;}
.x56_c00050{left:516.900000px;}
.x128_c00050{left:518.400000px;}
.xb2_c00050{left:522.150000px;}
.x70_c00050{left:525.000000px;}
.x7d_c00050{left:526.050000px;}
.xe6_c00050{left:528.600000px;}
.x66_c00050{left:529.650000px;}
.x106_c00050{left:530.700000px;}
.x2d_c00050{left:532.950000px;}
.x11f_c00050{left:534.450000px;}
.x109_c00050{left:535.650000px;}
.xec_c00050{left:536.700000px;}
.x8f_c00050{left:540.450000px;}
.xc_c00050{left:542.550000px;}
.x13f_c00050{left:547.800000px;}
.xdd_c00050{left:552.750000px;}
.x38_c00050{left:554.550000px;}
.x46_c00050{left:555.600000px;}
.xb3_c00050{left:557.100000px;}
.x98_c00050{left:558.750000px;}
.xe7_c00050{left:560.250000px;}
.x71_c00050{left:562.800000px;}
.xc7_c00050{left:564.750000px;}
.x111_c00050{left:566.250000px;}
.xe0_c00050{left:568.350000px;}
.x116_c00050{left:570.300000px;}
.xc0_c00050{left:571.650000px;}
.x47_c00050{left:576.150000px;}
.xf2_c00050{left:578.250000px;}
.x57_c00050{left:579.900000px;}
.x129_c00050{left:581.100000px;}
.x2e_c00050{left:583.050000px;}
.x112_c00050{left:584.550000px;}
.x99_c00050{left:585.750000px;}
.x1f_c00050{left:587.700000px;}
.x39_c00050{left:589.800000px;}
.x140_c00050{left:591.750000px;}
.xd_c00050{left:593.250000px;}
.x11d_c00050{left:596.100000px;}
.x67_c00050{left:599.850000px;}
.x12c_c00050{left:601.350000px;}
.x48_c00050{left:604.950000px;}
.xb4_c00050{left:607.200000px;}
.x7e_c00050{left:610.350000px;}
.xe_c00050{left:611.550000px;}
.x72_c00050{left:613.950000px;}
.x90_c00050{left:616.050000px;}
.x20_c00050{left:617.550000px;}
.x107_c00050{left:620.700000px;}
.xc8_c00050{left:622.050000px;}
.x10a_c00050{left:623.250000px;}
.xb5_c00050{left:625.500000px;}
.xaa_c00050{left:627.300000px;}
.x13b_c00050{left:628.800000px;}
.x91_c00050{left:630.750000px;}
.xf_c00050{left:632.100000px;}
.x73_c00050{left:636.300000px;}
.x58_c00050{left:637.500000px;}
.xed_c00050{left:640.350000px;}
.xcf_c00050{left:641.400000px;}
.x68_c00050{left:643.050000px;}
.x10_c00050{left:645.000000px;}
.x117_c00050{left:646.950000px;}
.x7f_c00050{left:648.150000px;}
.x113_c00050{left:650.100000px;}
.x11_c00050{left:652.200000px;}
.x21_c00050{left:653.250000px;}
.xb6_c00050{left:654.300000px;}
.x3a_c00050{left:656.100000px;}
.xe1_c00050{left:658.350000px;}
.x12d_c00050{left:660.150000px;}
.x141_c00050{left:661.350000px;}
.xf7_c00050{left:664.500000px;}
.xc9_c00050{left:666.000000px;}
.x2f_c00050{left:667.650000px;}
.xab_c00050{left:669.000000px;}
.x131_c00050{left:670.050000px;}
.x49_c00050{left:671.550000px;}
.x59_c00050{left:672.750000px;}
.xbb_c00050{left:674.550000px;}
.x138_c00050{left:676.050000px;}
.x80_c00050{left:679.800000px;}
.x4a_c00050{left:682.350000px;}
.xac_c00050{left:684.150000px;}
.x9a_c00050{left:685.200000px;}
.x114_c00050{left:687.900000px;}
.x118_c00050{left:689.400000px;}
.x74_c00050{left:691.350000px;}
.x3b_c00050{left:692.850000px;}
.x22_c00050{left:694.350000px;}
.xff_c00050{left:696.600000px;}
.x132_c00050{left:699.600000px;}
.x92_c00050{left:700.950000px;}
.x5a_c00050{left:702.600000px;}
.x9b_c00050{left:704.250000px;}
.x88_c00050{left:705.600000px;}
.x12_c00050{left:707.700000px;}
.x23_c00050{left:711.300000px;}
.x3c_c00050{left:715.200000px;}
.x100_c00050{left:717.150000px;}
.xe2_c00050{left:720.000000px;}
.xf8_c00050{left:721.650000px;}
.x5b_c00050{left:723.450000px;}
.x13c_c00050{left:724.950000px;}
.x75_c00050{left:726.600000px;}
.x69_c00050{left:727.950000px;}
.xfe_c00050{left:731.700000px;}
.x4b_c00050{left:733.800000px;}
.x10b_c00050{left:734.850000px;}
.x9c_c00050{left:735.900000px;}
.x12e_c00050{left:737.850000px;}
.xc1_c00050{left:739.050000px;}
.x30_c00050{left:741.450000px;}
.xad_c00050{left:743.850000px;}
.x24_c00050{left:749.400000px;}
.x5c_c00050{left:753.000000px;}
.x13_c00050{left:754.200000px;}
.x81_c00050{left:756.450000px;}
.x101_c00050{left:761.400000px;}
.x93_c00050{left:762.450000px;}
.xae_c00050{left:764.400000px;}
.xde_c00050{left:765.900000px;}
.xd0_c00050{left:767.100000px;}
.x4c_c00050{left:769.050000px;}
.x124_c00050{left:770.250000px;}
.x31_c00050{left:772.350000px;}
.x133_c00050{left:774.150000px;}
.xf9_c00050{left:775.950000px;}
.x82_c00050{left:777.750000px;}
.xb7_c00050{left:780.000000px;}
.x142_c00050{left:782.250000px;}
.x25_c00050{left:783.600000px;}
.xee_c00050{left:785.400000px;}
.x14_c00050{left:787.350000px;}
.x125_c00050{left:790.350000px;}
.x3d_c00050{left:791.850000px;}
.x10c_c00050{left:793.200000px;}
.x102_c00050{left:796.350000px;}
.xf3_c00050{left:801.600000px;}
.x134_c00050{left:802.650000px;}
.x15_c00050{left:804.600000px;}
.x4d_c00050{left:806.550000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws6_c00050{word-spacing:-5.847953pt;}
.wsd_c00050{word-spacing:-5.797101pt;}
.ws9_c00050{word-spacing:-4.444444pt;}
.ws4_c00050{word-spacing:-0.538721pt;}
.ws12_c00050{word-spacing:0.000000pt;}
.ws3_c00050{word-spacing:0.246914pt;}
.ws5_c00050{word-spacing:0.625000pt;}
.wsa_c00050{word-spacing:1.481481pt;}
.ws10_c00050{word-spacing:2.558923pt;}
.wsb_c00050{word-spacing:2.777778pt;}
.wsc_c00050{word-spacing:4.900285pt;}
.wse_c00050{word-spacing:5.802469pt;}
.ws0_c00050{word-spacing:6.324786pt;}
.ws7_c00050{word-spacing:7.200610pt;}
.wsf_c00050{word-spacing:7.283951pt;}
.ws1_c00050{word-spacing:12.255892pt;}
.ws8_c00050{word-spacing:14.117647pt;}
.ws11_c00050{word-spacing:15.622896pt;}
.ws2_c00050{word-spacing:20.411523pt;}
.fs0_c00050{font-size:48.000000pt;}
.fs1_c00050{font-size:53.333333pt;}
.y0_c00050{bottom:0.000000pt;}
.y2c_c00050{bottom:140.533333pt;}
.y2b_c00050{bottom:176.933333pt;}
.y2a_c00050{bottom:193.600000pt;}
.y29_c00050{bottom:212.800000pt;}
.y28_c00050{bottom:230.666667pt;}
.y27_c00050{bottom:248.266667pt;}
.y26_c00050{bottom:266.133333pt;}
.y25_c00050{bottom:283.733333pt;}
.y24_c00050{bottom:301.333333pt;}
.y23_c00050{bottom:318.666667pt;}
.y22_c00050{bottom:336.266667pt;}
.y21_c00050{bottom:353.866667pt;}
.y20_c00050{bottom:371.733333pt;}
.y1f_c00050{bottom:389.333333pt;}
.y1e_c00050{bottom:406.933333pt;}
.y1d_c00050{bottom:424.266667pt;}
.y1c_c00050{bottom:442.133333pt;}
.y1b_c00050{bottom:459.733333pt;}
.y1a_c00050{bottom:477.600000pt;}
.y19_c00050{bottom:495.200000pt;}
.y18_c00050{bottom:513.066667pt;}
.y17_c00050{bottom:530.933333pt;}
.y16_c00050{bottom:548.266667pt;}
.y15_c00050{bottom:566.133333pt;}
.y14_c00050{bottom:584.000000pt;}
.y13_c00050{bottom:601.600000pt;}
.y12_c00050{bottom:619.466667pt;}
.y11_c00050{bottom:636.800000pt;}
.y10_c00050{bottom:654.666667pt;}
.yf_c00050{bottom:672.933333pt;}
.ye_c00050{bottom:690.266667pt;}
.yd_c00050{bottom:708.133333pt;}
.yc_c00050{bottom:725.466667pt;}
.yb_c00050{bottom:743.733333pt;}
.ya_c00050{bottom:761.466667pt;}
.y9_c00050{bottom:779.333333pt;}
.y8_c00050{bottom:796.933333pt;}
.y7_c00050{bottom:814.533333pt;}
.y6_c00050{bottom:832.400000pt;}
.y5_c00050{bottom:849.733333pt;}
.y4_c00050{bottom:867.600000pt;}
.y3_c00050{bottom:885.200000pt;}
.y2_c00050{bottom:903.066667pt;}
.y1_c00050{bottom:937.333333pt;}
.h2_c00050{height:48.000000pt;}
.h3_c00050{height:53.333333pt;}
.h1_c00050{height:1037.333333pt;}
.h0_c00050{height:1037.439941pt;}
.w0_c00050{width:811.840007pt;}
.w1_c00050{width:812.000000pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:133.066667pt;}
.x103_c00050{left:134.800000pt;}
.x13d_c00050{left:146.533333pt;}
.x4e_c00050{left:148.933333pt;}
.x5d_c00050{left:150.533333pt;}
.x3e_c00050{left:153.733333pt;}
.x6a_c00050{left:155.333333pt;}
.xa5_c00050{left:157.333333pt;}
.x16_c00050{left:158.400000pt;}
.x94_c00050{left:159.333333pt;}
.x5e_c00050{left:161.466667pt;}
.x120_c00050{left:162.933333pt;}
.xe3_c00050{left:163.866667pt;}
.x11e_c00050{left:165.200000pt;}
.x108_c00050{left:168.266667pt;}
.x135_c00050{left:169.200000pt;}
.x4f_c00050{left:170.400000pt;}
.x83_c00050{left:172.666667pt;}
.xd1_c00050{left:174.000000pt;}
.x32_c00050{left:176.133333pt;}
.x104_c00050{left:177.733333pt;}
.x79_c00050{left:179.600000pt;}
.x26_c00050{left:180.933333pt;}
.x89_c00050{left:183.466667pt;}
.x136_c00050{left:184.533333pt;}
.x17_c00050{left:187.200000pt;}
.xaf_c00050{left:188.533333pt;}
.x139_c00050{left:190.133333pt;}
.x119_c00050{left:196.266667pt;}
.x5f_c00050{left:197.600000pt;}
.x9d_c00050{left:198.800000pt;}
.x6b_c00050{left:200.400000pt;}
.xca_c00050{left:201.333333pt;}
.xd7_c00050{left:204.800000pt;}
.x27_c00050{left:206.266667pt;}
.x3f_c00050{left:208.133333pt;}
.x4_c00050{left:210.933333pt;}
.x50_c00050{left:214.266667pt;}
.x12a_c00050{left:217.866667pt;}
.xd2_c00050{left:219.066667pt;}
.xb8_c00050{left:220.000000pt;}
.x9e_c00050{left:221.466667pt;}
.xb0_c00050{left:222.400000pt;}
.x60_c00050{left:225.066667pt;}
.x40_c00050{left:226.666667pt;}
.xcb_c00050{left:227.600000pt;}
.x33_c00050{left:228.666667pt;}
.x5_c00050{left:229.866667pt;}
.xd8_c00050{left:231.066667pt;}
.x121_c00050{left:232.000000pt;}
.xe8_c00050{left:233.466667pt;}
.x28_c00050{left:237.600000pt;}
.x10d_c00050{left:238.933333pt;}
.x51_c00050{left:240.133333pt;}
.xfa_c00050{left:241.066667pt;}
.x18_c00050{left:242.266667pt;}
.xa6_c00050{left:243.733333pt;}
.x34_c00050{left:245.600000pt;}
.x29_c00050{left:248.133333pt;}
.x84_c00050{left:249.200000pt;}
.xc2_c00050{left:250.533333pt;}
.x6c_c00050{left:252.266667pt;}
.xd3_c00050{left:253.600000pt;}
.x6_c00050{left:254.800000pt;}
.x115_c00050{left:256.266667pt;}
.xf4_c00050{left:257.466667pt;}
.x41_c00050{left:259.333333pt;}
.x11a_c00050{left:260.266667pt;}
.xb9_c00050{left:262.266667pt;}
.xc3_c00050{left:264.266667pt;}
.x9f_c00050{left:265.600000pt;}
.xef_c00050{left:266.666667pt;}
.x6d_c00050{left:267.600000pt;}
.xd4_c00050{left:268.666667pt;}
.x8a_c00050{left:272.666667pt;}
.xe9_c00050{left:274.400000pt;}
.x19_c00050{left:275.600000pt;}
.x42_c00050{left:277.866667pt;}
.xd9_c00050{left:278.800000pt;}
.x7_c00050{left:280.400000pt;}
.x35_c00050{left:281.733333pt;}
.x85_c00050{left:283.466667pt;}
.x7a_c00050{left:284.533333pt;}
.x1a_c00050{left:287.733333pt;}
.xc4_c00050{left:289.600000pt;}
.xdf_c00050{left:290.800000pt;}
.xea_c00050{left:292.933333pt;}
.xf0_c00050{left:293.866667pt;}
.x126_c00050{left:297.600000pt;}
.xd5_c00050{left:298.800000pt;}
.x122_c00050{left:299.733333pt;}
.x10e_c00050{left:300.666667pt;}
.x8b_c00050{left:302.133333pt;}
.x8_c00050{left:304.400000pt;}
.x61_c00050{left:306.933333pt;}
.x12b_c00050{left:308.266667pt;}
.xda_c00050{left:309.200000pt;}
.xcc_c00050{left:312.133333pt;}
.xa0_c00050{left:313.333333pt;}
.xbc_c00050{left:315.866667pt;}
.xeb_c00050{left:317.600000pt;}
.x13e_c00050{left:318.666667pt;}
.x8c_c00050{left:320.666667pt;}
.xa7_c00050{left:323.333333pt;}
.x52_c00050{left:325.200000pt;}
.x137_c00050{left:326.533333pt;}
.x123_c00050{left:328.800000pt;}
.x2a_c00050{left:330.000000pt;}
.xfb_c00050{left:331.066667pt;}
.x7b_c00050{left:332.266667pt;}
.xbd_c00050{left:333.733333pt;}
.x62_c00050{left:335.733333pt;}
.x95_c00050{left:336.933333pt;}
.xa1_c00050{left:338.266667pt;}
.x12f_c00050{left:340.800000pt;}
.x1b_c00050{left:342.133333pt;}
.x8d_c00050{left:343.733333pt;}
.xe4_c00050{left:346.000000pt;}
.x76_c00050{left:348.933333pt;}
.x43_c00050{left:350.800000pt;}
.x13a_c00050{left:352.133333pt;}
.x2_c00050{left:353.200000pt;}
.x86_c00050{left:355.733333pt;}
.xcd_c00050{left:357.600000pt;}
.xba_c00050{left:359.200000pt;}
.x9_c00050{left:363.200000pt;}
.x63_c00050{left:366.800000pt;}
.x53_c00050{left:368.000000pt;}
.xbe_c00050{left:370.533333pt;}
.xe5_c00050{left:372.266667pt;}
.xdb_c00050{left:373.466667pt;}
.x1c_c00050{left:374.800000pt;}
.x6e_c00050{left:375.866667pt;}
.x44_c00050{left:377.733333pt;}
.xc5_c00050{left:379.600000pt;}
.xfc_c00050{left:381.600000pt;}
.x77_c00050{left:382.800000pt;}
.x36_c00050{left:383.866667pt;}
.xa2_c00050{left:385.333333pt;}
.x105_c00050{left:386.666667pt;}
.xdc_c00050{left:388.533333pt;}
.x1d_c00050{left:389.866667pt;}
.xa8_c00050{left:391.866667pt;}
.xa_c00050{left:393.333333pt;}
.x127_c00050{left:396.133333pt;}
.x64_c00050{left:398.800000pt;}
.x10f_c00050{left:400.266667pt;}
.xa3_c00050{left:401.600000pt;}
.x6f_c00050{left:403.333333pt;}
.x87_c00050{left:404.666667pt;}
.xd6_c00050{left:406.000000pt;}
.xfd_c00050{left:410.666667pt;}
.x37_c00050{left:412.000000pt;}
.xf5_c00050{left:413.333333pt;}
.xc6_c00050{left:414.533333pt;}
.x54_c00050{left:416.266667pt;}
.x96_c00050{left:417.600000pt;}
.x2b_c00050{left:418.666667pt;}
.xce_c00050{left:421.066667pt;}
.x11b_c00050{left:424.000000pt;}
.x45_c00050{left:425.066667pt;}
.x55_c00050{left:429.066667pt;}
.xb_c00050{left:431.066667pt;}
.x78_c00050{left:433.066667pt;}
.xf1_c00050{left:434.133333pt;}
.x7c_c00050{left:435.066667pt;}
.xa9_c00050{left:436.000000pt;}
.x2c_c00050{left:436.933333pt;}
.xb1_c00050{left:438.266667pt;}
.xf6_c00050{left:439.866667pt;}
.x3_c00050{left:441.200000pt;}
.x130_c00050{left:442.266667pt;}
.x1e_c00050{left:444.266667pt;}
.xbf_c00050{left:445.466667pt;}
.x8e_c00050{left:447.466667pt;}
.xa4_c00050{left:448.933333pt;}
.x97_c00050{left:450.266667pt;}
.x65_c00050{left:454.800000pt;}
.x11c_c00050{left:456.266667pt;}
.x110_c00050{left:458.533333pt;}
.x56_c00050{left:459.466667pt;}
.x128_c00050{left:460.800000pt;}
.xb2_c00050{left:464.133333pt;}
.x70_c00050{left:466.666667pt;}
.x7d_c00050{left:467.600000pt;}
.xe6_c00050{left:469.866667pt;}
.x66_c00050{left:470.800000pt;}
.x106_c00050{left:471.733333pt;}
.x2d_c00050{left:473.733333pt;}
.x11f_c00050{left:475.066667pt;}
.x109_c00050{left:476.133333pt;}
.xec_c00050{left:477.066667pt;}
.x8f_c00050{left:480.400000pt;}
.xc_c00050{left:482.266667pt;}
.x13f_c00050{left:486.933333pt;}
.xdd_c00050{left:491.333333pt;}
.x38_c00050{left:492.933333pt;}
.x46_c00050{left:493.866667pt;}
.xb3_c00050{left:495.200000pt;}
.x98_c00050{left:496.666667pt;}
.xe7_c00050{left:498.000000pt;}
.x71_c00050{left:500.266667pt;}
.xc7_c00050{left:502.000000pt;}
.x111_c00050{left:503.333333pt;}
.xe0_c00050{left:505.200000pt;}
.x116_c00050{left:506.933333pt;}
.xc0_c00050{left:508.133333pt;}
.x47_c00050{left:512.133333pt;}
.xf2_c00050{left:514.000000pt;}
.x57_c00050{left:515.466667pt;}
.x129_c00050{left:516.533333pt;}
.x2e_c00050{left:518.266667pt;}
.x112_c00050{left:519.600000pt;}
.x99_c00050{left:520.666667pt;}
.x1f_c00050{left:522.400000pt;}
.x39_c00050{left:524.266667pt;}
.x140_c00050{left:526.000000pt;}
.xd_c00050{left:527.333333pt;}
.x11d_c00050{left:529.866667pt;}
.x67_c00050{left:533.200000pt;}
.x12c_c00050{left:534.533333pt;}
.x48_c00050{left:537.733333pt;}
.xb4_c00050{left:539.733333pt;}
.x7e_c00050{left:542.533333pt;}
.xe_c00050{left:543.600000pt;}
.x72_c00050{left:545.733333pt;}
.x90_c00050{left:547.600000pt;}
.x20_c00050{left:548.933333pt;}
.x107_c00050{left:551.733333pt;}
.xc8_c00050{left:552.933333pt;}
.x10a_c00050{left:554.000000pt;}
.xb5_c00050{left:556.000000pt;}
.xaa_c00050{left:557.600000pt;}
.x13b_c00050{left:558.933333pt;}
.x91_c00050{left:560.666667pt;}
.xf_c00050{left:561.866667pt;}
.x73_c00050{left:565.600000pt;}
.x58_c00050{left:566.666667pt;}
.xed_c00050{left:569.200000pt;}
.xcf_c00050{left:570.133333pt;}
.x68_c00050{left:571.600000pt;}
.x10_c00050{left:573.333333pt;}
.x117_c00050{left:575.066667pt;}
.x7f_c00050{left:576.133333pt;}
.x113_c00050{left:577.866667pt;}
.x11_c00050{left:579.733333pt;}
.x21_c00050{left:580.666667pt;}
.xb6_c00050{left:581.600000pt;}
.x3a_c00050{left:583.200000pt;}
.xe1_c00050{left:585.200000pt;}
.x12d_c00050{left:586.800000pt;}
.x141_c00050{left:587.866667pt;}
.xf7_c00050{left:590.666667pt;}
.xc9_c00050{left:592.000000pt;}
.x2f_c00050{left:593.466667pt;}
.xab_c00050{left:594.666667pt;}
.x131_c00050{left:595.600000pt;}
.x49_c00050{left:596.933333pt;}
.x59_c00050{left:598.000000pt;}
.xbb_c00050{left:599.600000pt;}
.x138_c00050{left:600.933333pt;}
.x80_c00050{left:604.266667pt;}
.x4a_c00050{left:606.533333pt;}
.xac_c00050{left:608.133333pt;}
.x9a_c00050{left:609.066667pt;}
.x114_c00050{left:611.466667pt;}
.x118_c00050{left:612.800000pt;}
.x74_c00050{left:614.533333pt;}
.x3b_c00050{left:615.866667pt;}
.x22_c00050{left:617.200000pt;}
.xff_c00050{left:619.200000pt;}
.x132_c00050{left:621.866667pt;}
.x92_c00050{left:623.066667pt;}
.x5a_c00050{left:624.533333pt;}
.x9b_c00050{left:626.000000pt;}
.x88_c00050{left:627.200000pt;}
.x12_c00050{left:629.066667pt;}
.x23_c00050{left:632.266667pt;}
.x3c_c00050{left:635.733333pt;}
.x100_c00050{left:637.466667pt;}
.xe2_c00050{left:640.000000pt;}
.xf8_c00050{left:641.466667pt;}
.x5b_c00050{left:643.066667pt;}
.x13c_c00050{left:644.400000pt;}
.x75_c00050{left:645.866667pt;}
.x69_c00050{left:647.066667pt;}
.xfe_c00050{left:650.400000pt;}
.x4b_c00050{left:652.266667pt;}
.x10b_c00050{left:653.200000pt;}
.x9c_c00050{left:654.133333pt;}
.x12e_c00050{left:655.866667pt;}
.xc1_c00050{left:656.933333pt;}
.x30_c00050{left:659.066667pt;}
.xad_c00050{left:661.200000pt;}
.x24_c00050{left:666.133333pt;}
.x5c_c00050{left:669.333333pt;}
.x13_c00050{left:670.400000pt;}
.x81_c00050{left:672.400000pt;}
.x101_c00050{left:676.800000pt;}
.x93_c00050{left:677.733333pt;}
.xae_c00050{left:679.466667pt;}
.xde_c00050{left:680.800000pt;}
.xd0_c00050{left:681.866667pt;}
.x4c_c00050{left:683.600000pt;}
.x124_c00050{left:684.666667pt;}
.x31_c00050{left:686.533333pt;}
.x133_c00050{left:688.133333pt;}
.xf9_c00050{left:689.733333pt;}
.x82_c00050{left:691.333333pt;}
.xb7_c00050{left:693.333333pt;}
.x142_c00050{left:695.333333pt;}
.x25_c00050{left:696.533333pt;}
.xee_c00050{left:698.133333pt;}
.x14_c00050{left:699.866667pt;}
.x125_c00050{left:702.533333pt;}
.x3d_c00050{left:703.866667pt;}
.x10c_c00050{left:705.066667pt;}
.x102_c00050{left:707.866667pt;}
.xf3_c00050{left:712.533333pt;}
.x134_c00050{left:713.466667pt;}
.x15_c00050{left:715.200000pt;}
.x4d_c00050{left:716.933333pt;}
}





/* 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_c00051 {
    display:none;
  }
  .loading-indicator_c00051.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00051 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_c00051 { 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_c00051" -> "#page-container .classname_c00051")
 */
.pf_c00051 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00051 { /* 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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00051 { /* 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_c00051 { /* 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_c00051 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00051 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00051 {overflow:visible;}
  }
}
.c_c00051 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00051 { /* 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_c00051:after { /* webkit #35443 */
  content: '';
}
.t_c00051:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00051 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 */
}
.__c00051 { /* 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_c00051 { /* info for Javascript */
  display:none;
}
.l_c00051 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00051 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00051 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00051: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_c00051 {
    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_c00051.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00051.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_c00051 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00051{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00051;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.000000;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;}
.m7d_c00051{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00051{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00051{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m3_c00051{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00051{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mba_c00051{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00051{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00051{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m6_c00051{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m62_c00051{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00051{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mac_c00051{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00051{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00051{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m21_c00051{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00051{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00051{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m64_c00051{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00051{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m93_c00051{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m77_c00051{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00051{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m39_c00051{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00051{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00051{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00051{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m16_c00051{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00051{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00051{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.maf_c00051{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00051{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma_c00051{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maa_c00051{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00051{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00051{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10_c00051{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00051{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m25_c00051{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00051{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00051{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m52_c00051{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m60_c00051{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m80_c00051{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00051{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00051{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5_c00051{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mab_c00051{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m85_c00051{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m27_c00051{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mf_c00051{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4_c00051{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00051{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mae_c00051{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00051{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00051{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m20_c00051{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00051{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00051{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00051{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m54_c00051{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00051{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m99_c00051{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m92_c00051{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00051{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00051{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m58_c00051{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00051{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00051{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00051{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m84_c00051{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00051{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m49_c00051{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m34_c00051{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m47_c00051{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m59_c00051{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00051{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00051{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m28_c00051{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m75_c00051{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00051{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc_c00051{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00051{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m67_c00051{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m87_c00051{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m19_c00051{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m72_c00051{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00051{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m63_c00051{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m42_c00051{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m57_c00051{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00051{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m50_c00051{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m13_c00051{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00051{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00051{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m44_c00051{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00051{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m68_c00051{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00051{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00051{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m24_c00051{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m76_c00051{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m94_c00051{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00051{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m18_c00051{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00051{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m98_c00051{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m81_c00051{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00051{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00051{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00051{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8_c00051{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m36_c00051{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m88_c00051{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00051{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00051{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00051{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00051{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m45_c00051{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m89_c00051{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00051{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m12_c00051{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m46_c00051{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00051{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m38_c00051{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m79_c00051{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m11_c00051{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00051{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m33_c00051{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00051{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00051{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m14_c00051{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00051{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m83_c00051{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m73_c00051{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m66_c00051{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m70_c00051{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m69_c00051{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m23_c00051{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00051{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00051{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c00051{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00051{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m56_c00051{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00051{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00051{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00051{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m51_c00051{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);}
.m4e_c00051{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00051{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00051{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m96_c00051{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m48_c00051{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00051{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00051{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00051{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00051{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00051{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m31_c00051{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00051{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m30_c00051{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m40_c00051{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m26_c00051{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m0_c00051{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m90_c00051{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m53_c00051{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00051{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m95_c00051{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00051{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m86_c00051{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00051{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00051{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mb_c00051{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mad_c00051{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1_c00051{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00051{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m61_c00051{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m97_c00051{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00051{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00051{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00051{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m71_c00051{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m37_c00051{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m22_c00051{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m78_c00051{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00051{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m41_c00051{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00051{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m55_c00051{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m74_c00051{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m17_c00051{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.v0_c00051{vertical-align:0.000000px;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{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__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00051{word-spacing:-20.263158px;}
.ws0_c00051{word-spacing:-14.342105px;}
.ws2_c00051{word-spacing:-2.424242px;}
.ws5_c00051{word-spacing:-2.300319px;}
.wsa_c00051{word-spacing:0.000000px;}
.ws7_c00051{word-spacing:1.730769px;}
.ws6_c00051{word-spacing:3.026316px;}
.ws1_c00051{word-spacing:3.421053px;}
.ws8_c00051{word-spacing:4.878049px;}
.ws4_c00051{word-spacing:10.735294px;}
.ws3_c00051{word-spacing:12.205882px;}
._0_c00051{width:25.263158px;}
.fc0_c00051{color:transparent;}
.fs0_c00051{font-size:60.000000px;}
.y0_c00051{bottom:0.000000px;}
.y2d_c00051{bottom:153.000000px;}
.y2c_c00051{bottom:168.450000px;}
.y2b_c00051{bottom:185.100000px;}
.y2a_c00051{bottom:211.800000px;}
.y29_c00051{bottom:231.600000px;}
.y28_c00051{bottom:251.400000px;}
.y27_c00051{bottom:271.500000px;}
.y26_c00051{bottom:291.300000px;}
.y25_c00051{bottom:311.400000px;}
.y24_c00051{bottom:331.200000px;}
.y23_c00051{bottom:351.000000px;}
.y22_c00051{bottom:370.800000px;}
.y21_c00051{bottom:390.600000px;}
.y20_c00051{bottom:410.400000px;}
.y1f_c00051{bottom:430.500000px;}
.y1e_c00051{bottom:450.300000px;}
.y1d_c00051{bottom:469.800000px;}
.y1c_c00051{bottom:489.600000px;}
.y1b_c00051{bottom:509.400000px;}
.y1a_c00051{bottom:529.200000px;}
.y19_c00051{bottom:549.000000px;}
.y18_c00051{bottom:568.800000px;}
.y17_c00051{bottom:588.600000px;}
.y16_c00051{bottom:608.400000px;}
.y15_c00051{bottom:628.200000px;}
.y14_c00051{bottom:648.000000px;}
.y13_c00051{bottom:667.800000px;}
.y12_c00051{bottom:687.600000px;}
.y11_c00051{bottom:707.400000px;}
.y10_c00051{bottom:727.200000px;}
.yf_c00051{bottom:747.000000px;}
.ye_c00051{bottom:766.800000px;}
.yd_c00051{bottom:786.600000px;}
.yc_c00051{bottom:806.700000px;}
.yb_c00051{bottom:826.200000px;}
.ya_c00051{bottom:846.300000px;}
.y9_c00051{bottom:866.100000px;}
.y8_c00051{bottom:885.900000px;}
.y7_c00051{bottom:905.700000px;}
.y6_c00051{bottom:925.200000px;}
.y5_c00051{bottom:945.000000px;}
.y4_c00051{bottom:964.800000px;}
.y3_c00051{bottom:984.300000px;}
.y2_c00051{bottom:1004.400000px;}
.y1_c00051{bottom:1043.250000px;}
.h2_c00051{height:60.000000px;}
.h1_c00051{height:1167.000000px;}
.h0_c00051{height:1167.119934px;}
.w0_c00051{width:913.320007px;}
.w1_c00051{width:913.500000px;}
.x0_c00051{left:0.000000px;}
.x5_c00051{left:91.800000px;}
.x32_c00051{left:93.000000px;}
.x79_c00051{left:94.500000px;}
.xc7_c00051{left:95.850000px;}
.x11d_c00051{left:97.500000px;}
.x132_c00051{left:98.550000px;}
.xa4_c00051{left:112.650000px;}
.xb3_c00051{left:114.900000px;}
.x1b_c00051{left:115.950000px;}
.x13d_c00051{left:117.300000px;}
.x62_c00051{left:121.350000px;}
.xe3_c00051{left:123.300000px;}
.x141_c00051{left:124.650000px;}
.x115_c00051{left:125.850000px;}
.x33_c00051{left:126.900000px;}
.x13e_c00051{left:128.100000px;}
.x142_c00051{left:130.200000px;}
.x85_c00051{left:132.300000px;}
.x16_c00051{left:134.250000px;}
.x7a_c00051{left:137.400000px;}
.xbb_c00051{left:140.550000px;}
.x40_c00051{left:142.650000px;}
.x1c_c00051{left:145.050000px;}
.x27_c00051{left:146.100000px;}
.x90_c00051{left:148.650000px;}
.xa5_c00051{left:151.200000px;}
.x127_c00051{left:152.850000px;}
.xd1_c00051{left:154.500000px;}
.x106_c00051{left:156.450000px;}
.xc8_c00051{left:157.650000px;}
.xb4_c00051{left:162.000000px;}
.x17_c00051{left:163.350000px;}
.x4d_c00051{left:165.150000px;}
.x6d_c00051{left:166.800000px;}
.x34_c00051{left:168.000000px;}
.x91_c00051{left:169.950000px;}
.xed_c00051{left:171.300000px;}
.x6_c00051{left:172.800000px;}
.xc3_c00051{left:175.350000px;}
.x11e_c00051{left:176.400000px;}
.xbc_c00051{left:178.350000px;}
.xab_c00051{left:179.850000px;}
.xfa_c00051{left:182.400000px;}
.x7b_c00051{left:183.450000px;}
.xb5_c00051{left:185.400000px;}
.x10d_c00051{left:187.650000px;}
.x9b_c00051{left:189.450000px;}
.x7_c00051{left:190.500000px;}
.x86_c00051{left:192.450000px;}
.x11f_c00051{left:196.500000px;}
.xac_c00051{left:199.350000px;}
.x63_c00051{left:201.300000px;}
.x116_c00051{left:202.800000px;}
.xd6_c00051{left:204.150000px;}
.x8_c00051{left:205.650000px;}
.xee_c00051{left:207.600000px;}
.x110_c00051{left:211.350000px;}
.x4e_c00051{left:213.450000px;}
.x41_c00051{left:215.700000px;}
.xc4_c00051{left:216.750000px;}
.x28_c00051{left:218.100000px;}
.x35_c00051{left:219.450000px;}
.x1d_c00051{left:221.400000px;}
.xa6_c00051{left:222.450000px;}
.xd7_c00051{left:224.250000px;}
.xfb_c00051{left:225.900000px;}
.x92_c00051{left:227.550000px;}
.x5a_c00051{left:228.750000px;}
.x9_c00051{left:230.850000px;}
.x12a_c00051{left:232.650000px;}
.x133_c00051{left:234.000000px;}
.x29_c00051{left:235.800000px;}
.xad_c00051{left:238.200000px;}
.x143_c00051{left:240.300000px;}
.x13c_c00051{left:243.000000px;}
.x18_c00051{left:244.350000px;}
.x42_c00051{left:247.050000px;}
.x93_c00051{left:249.150000px;}
.xef_c00051{left:252.300000px;}
.xbd_c00051{left:254.700000px;}
.x4f_c00051{left:256.650000px;}
.xdd_c00051{left:258.600000px;}
.x107_c00051{left:259.650000px;}
.x135_c00051{left:261.000000px;}
.x123_c00051{left:262.650000px;}
.x5b_c00051{left:264.000000px;}
.x19_c00051{left:265.650000px;}
.xd8_c00051{left:267.750000px;}
.x7c_c00051{left:269.250000px;}
.x6e_c00051{left:271.650000px;}
.x117_c00051{left:274.350000px;}
.x100_c00051{left:277.350000px;}
.x36_c00051{left:279.150000px;}
.x43_c00051{left:281.250000px;}
.xb6_c00051{left:282.300000px;}
.x87_c00051{left:285.000000px;}
.x144_c00051{left:286.050000px;}
.xa_c00051{left:288.150000px;}
.x7d_c00051{left:289.350000px;}
.xea_c00051{left:290.400000px;}
.x2a_c00051{left:291.900000px;}
.xfc_c00051{left:295.050000px;}
.xf0_c00051{left:297.300000px;}
.x1e_c00051{left:298.800000px;}
.x37_c00051{left:301.800000px;}
.x10e_c00051{left:302.850000px;}
.x13f_c00051{left:305.250000px;}
.x12b_c00051{left:306.900000px;}
.xc5_c00051{left:309.000000px;}
.xd2_c00051{left:310.350000px;}
.x44_c00051{left:311.550000px;}
.x94_c00051{left:312.900000px;}
.x5c_c00051{left:314.400000px;}
.x9c_c00051{left:316.500000px;}
.xb_c00051{left:317.700000px;}
.xae_c00051{left:319.200000px;}
.x1f_c00051{left:320.400000px;}
.x108_c00051{left:321.600000px;}
.x12d_c00051{left:322.800000px;}
.xc9_c00051{left:324.750000px;}
.x9d_c00051{left:328.050000px;}
.x2b_c00051{left:329.400000px;}
.x1a_c00051{left:333.300000px;}
.x10f_c00051{left:334.500000px;}
.xe4_c00051{left:336.300000px;}
.xbe_c00051{left:340.050000px;}
.x38_c00051{left:341.400000px;}
.xde_c00051{left:345.300000px;}
.x118_c00051{left:347.100000px;}
.x6f_c00051{left:349.350000px;}
.x1_c00051{left:354.900000px;}
.xc6_c00051{left:356.100000px;}
.x5d_c00051{left:357.600000px;}
.x109_c00051{left:358.650000px;}
.x12e_c00051{left:362.700000px;}
.xca_c00051{left:364.350000px;}
.x70_c00051{left:366.600000px;}
.x111_c00051{left:369.000000px;}
.xfd_c00051{left:370.200000px;}
.x12c_c00051{left:371.700000px;}
.xaf_c00051{left:373.200000px;}
.x20_c00051{left:374.400000px;}
.x64_c00051{left:377.250000px;}
.xc_c00051{left:379.650000px;}
.x7e_c00051{left:382.950000px;}
.xcb_c00051{left:385.200000px;}
.x95_c00051{left:386.400000px;}
.xe5_c00051{left:387.750000px;}
.x21_c00051{left:390.300000px;}
.x71_c00051{left:391.800000px;}
.x2c_c00051{left:394.200000px;}
.x50_c00051{left:396.000000px;}
.x65_c00051{left:397.350000px;}
.x45_c00051{left:399.450000px;}
.x39_c00051{left:402.900000px;}
.xb0_c00051{left:404.550000px;}
.x2_c00051{left:408.600000px;}
.x9e_c00051{left:411.150000px;}
.xf4_c00051{left:412.350000px;}
.xd9_c00051{left:414.000000px;}
.xe6_c00051{left:419.850000px;}
.x136_c00051{left:422.550000px;}
.x101_c00051{left:424.650000px;}
.x51_c00051{left:425.850000px;}
.xa7_c00051{left:427.950000px;}
.x3_c00051{left:431.700000px;}
.x9f_c00051{left:433.500000px;}
.xbf_c00051{left:434.700000px;}
.xd_c00051{left:436.500000px;}
.xf5_c00051{left:438.300000px;}
.x46_c00051{left:439.350000px;}
.x7f_c00051{left:440.550000px;}
.x72_c00051{left:443.700000px;}
.xfe_c00051{left:446.250000px;}
.x96_c00051{left:447.900000px;}
.xb7_c00051{left:451.950000px;}
.x102_c00051{left:455.550000px;}
.xe_c00051{left:456.600000px;}
.x80_c00051{left:458.550000px;}
.x88_c00051{left:460.950000px;}
.xf1_c00051{left:464.700000px;}
.x52_c00051{left:467.550000px;}
.xa8_c00051{left:470.400000px;}
.xa0_c00051{left:472.350000px;}
.x66_c00051{left:473.400000px;}
.x22_c00051{left:474.900000px;}
.x137_c00051{left:477.600000px;}
.x120_c00051{left:480.300000px;}
.x119_c00051{left:481.800000px;}
.x3a_c00051{left:482.850000px;}
.x81_c00051{left:486.300000px;}
.xdf_c00051{left:488.250000px;}
.xa1_c00051{left:489.600000px;}
.x73_c00051{left:490.800000px;}
.xd3_c00051{left:492.300000px;}
.xcc_c00051{left:493.500000px;}
.xf2_c00051{left:495.600000px;}
.x138_c00051{left:497.100000px;}
.x2d_c00051{left:498.300000px;}
.x5e_c00051{left:499.500000px;}
.xda_c00051{left:501.000000px;}
.x112_c00051{left:502.500000px;}
.x67_c00051{left:504.300000px;}
.x11a_c00051{left:506.700000px;}
.x89_c00051{left:507.750000px;}
.x47_c00051{left:509.850000px;}
.x2e_c00051{left:511.650000px;}
.xf6_c00051{left:513.600000px;}
.x53_c00051{left:515.400000px;}
.xe7_c00051{left:516.750000px;}
.x74_c00051{left:518.850000px;}
.xb8_c00051{left:520.350000px;}
.xa9_c00051{left:521.550000px;}
.xc0_c00051{left:523.650000px;}
.x128_c00051{left:525.450000px;}
.x5f_c00051{left:527.550000px;}
.x8a_c00051{left:529.350000px;}
.x113_c00051{left:531.600000px;}
.x48_c00051{left:532.950000px;}
.xf_c00051{left:536.100000px;}
.x68_c00051{left:537.750000px;}
.x139_c00051{left:543.600000px;}
.xe0_c00051{left:546.600000px;}
.x124_c00051{left:547.800000px;}
.xa2_c00051{left:550.050000px;}
.x82_c00051{left:551.400000px;}
.x8b_c00051{left:552.450000px;}
.x121_c00051{left:554.400000px;}
.x75_c00051{left:555.900000px;}
.x3b_c00051{left:557.400000px;}
.xc1_c00051{left:558.600000px;}
.x23_c00051{left:560.250000px;}
.x54_c00051{left:562.200000px;}
.x49_c00051{left:563.250000px;}
.x10_c00051{left:564.600000px;}
.xf7_c00051{left:567.900000px;}
.xd4_c00051{left:568.950000px;}
.x83_c00051{left:570.900000px;}
.xaa_c00051{left:571.950000px;}
.x140_c00051{left:574.200000px;}
.xe8_c00051{left:575.400000px;}
.xcd_c00051{left:579.150000px;}
.x55_c00051{left:581.250000px;}
.x69_c00051{left:585.300000px;}
.x11_c00051{left:587.700000px;}
.xc2_c00051{left:588.900000px;}
.x2f_c00051{left:590.850000px;}
.x24_c00051{left:595.200000px;}
.x10a_c00051{left:598.350000px;}
.x12_c00051{left:600.000000px;}
.x3c_c00051{left:602.400000px;}
.x4a_c00051{left:604.650000px;}
.x60_c00051{left:607.800000px;}
.xf8_c00051{left:609.300000px;}
.x30_c00051{left:610.350000px;}
.x8c_c00051{left:612.150000px;}
.xb9_c00051{left:615.150000px;}
.x122_c00051{left:617.400000px;}
.x125_c00051{left:619.050000px;}
.x56_c00051{left:620.100000px;}
.x12f_c00051{left:621.600000px;}
.x76_c00051{left:622.800000px;}
.xeb_c00051{left:623.850000px;}
.x103_c00051{left:625.800000px;}
.x97_c00051{left:626.850000px;}
.xb1_c00051{left:628.500000px;}
.x84_c00051{left:630.600000px;}
.x6a_c00051{left:631.800000px;}
.xdb_c00051{left:633.450000px;}
.x11b_c00051{left:636.300000px;}
.x57_c00051{left:637.350000px;}
.xa3_c00051{left:639.300000px;}
.x3d_c00051{left:641.250000px;}
.x98_c00051{left:642.750000px;}
.x114_c00051{left:643.950000px;}
.xce_c00051{left:646.800000px;}
.x77_c00051{left:648.300000px;}
.x130_c00051{left:649.350000px;}
.xd5_c00051{left:653.550000px;}
.x31_c00051{left:658.650000px;}
.x104_c00051{left:662.100000px;}
.x13a_c00051{left:663.450000px;}
.x58_c00051{left:665.100000px;}
.xcf_c00051{left:666.900000px;}
.x8d_c00051{left:669.000000px;}
.x6b_c00051{left:672.450000px;}
.x13_c00051{left:675.300000px;}
.xba_c00051{left:676.650000px;}
.xb2_c00051{left:680.400000px;}
.x99_c00051{left:681.600000px;}
.x78_c00051{left:682.800000px;}
.x25_c00051{left:684.150000px;}
.xe1_c00051{left:687.000000px;}
.x59_c00051{left:690.000000px;}
.xe9_c00051{left:691.800000px;}
.x105_c00051{left:693.000000px;}
.x8e_c00051{left:694.500000px;}
.xd0_c00051{left:696.000000px;}
.x126_c00051{left:697.200000px;}
.x4b_c00051{left:698.250000px;}
.x6c_c00051{left:702.750000px;}
.x134_c00051{left:705.300000px;}
.x3e_c00051{left:706.350000px;}
.x14_c00051{left:709.200000px;}
.xec_c00051{left:712.050000px;}
.x4c_c00051{left:713.400000px;}
.x13b_c00051{left:714.600000px;}
.xf3_c00051{left:715.800000px;}
.xdc_c00051{left:720.150000px;}
.x10b_c00051{left:722.550000px;}
.x61_c00051{left:726.600000px;}
.xff_c00051{left:727.800000px;}
.x3f_c00051{left:729.000000px;}
.x129_c00051{left:731.700000px;}
.x11c_c00051{left:732.900000px;}
.x26_c00051{left:734.250000px;}
.x9a_c00051{left:737.400000px;}
.xe2_c00051{left:738.900000px;}
.xf9_c00051{left:740.100000px;}
.x15_c00051{left:742.650000px;}
.x131_c00051{left:744.750000px;}
.x4_c00051{left:745.950000px;}
.x8f_c00051{left:750.300000px;}
.x10c_c00051{left:756.450000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws9_c00051{word-spacing:-18.011696pt;}
.ws0_c00051{word-spacing:-12.748538pt;}
.ws2_c00051{word-spacing:-2.154882pt;}
.ws5_c00051{word-spacing:-2.044728pt;}
.wsa_c00051{word-spacing:0.000000pt;}
.ws7_c00051{word-spacing:1.538462pt;}
.ws6_c00051{word-spacing:2.690058pt;}
.ws1_c00051{word-spacing:3.040936pt;}
.ws8_c00051{word-spacing:4.336043pt;}
.ws4_c00051{word-spacing:9.542484pt;}
.ws3_c00051{word-spacing:10.849673pt;}
._0_c00051{width:22.456140pt;}
.fs0_c00051{font-size:53.333333pt;}
.y0_c00051{bottom:0.000000pt;}
.y2d_c00051{bottom:136.000000pt;}
.y2c_c00051{bottom:149.733333pt;}
.y2b_c00051{bottom:164.533333pt;}
.y2a_c00051{bottom:188.266667pt;}
.y29_c00051{bottom:205.866667pt;}
.y28_c00051{bottom:223.466667pt;}
.y27_c00051{bottom:241.333333pt;}
.y26_c00051{bottom:258.933333pt;}
.y25_c00051{bottom:276.800000pt;}
.y24_c00051{bottom:294.400000pt;}
.y23_c00051{bottom:312.000000pt;}
.y22_c00051{bottom:329.600000pt;}
.y21_c00051{bottom:347.200000pt;}
.y20_c00051{bottom:364.800000pt;}
.y1f_c00051{bottom:382.666667pt;}
.y1e_c00051{bottom:400.266667pt;}
.y1d_c00051{bottom:417.600000pt;}
.y1c_c00051{bottom:435.200000pt;}
.y1b_c00051{bottom:452.800000pt;}
.y1a_c00051{bottom:470.400000pt;}
.y19_c00051{bottom:488.000000pt;}
.y18_c00051{bottom:505.600000pt;}
.y17_c00051{bottom:523.200000pt;}
.y16_c00051{bottom:540.800000pt;}
.y15_c00051{bottom:558.400000pt;}
.y14_c00051{bottom:576.000000pt;}
.y13_c00051{bottom:593.600000pt;}
.y12_c00051{bottom:611.200000pt;}
.y11_c00051{bottom:628.800000pt;}
.y10_c00051{bottom:646.400000pt;}
.yf_c00051{bottom:664.000000pt;}
.ye_c00051{bottom:681.600000pt;}
.yd_c00051{bottom:699.200000pt;}
.yc_c00051{bottom:717.066667pt;}
.yb_c00051{bottom:734.400000pt;}
.ya_c00051{bottom:752.266667pt;}
.y9_c00051{bottom:769.866667pt;}
.y8_c00051{bottom:787.466667pt;}
.y7_c00051{bottom:805.066667pt;}
.y6_c00051{bottom:822.400000pt;}
.y5_c00051{bottom:840.000000pt;}
.y4_c00051{bottom:857.600000pt;}
.y3_c00051{bottom:874.933333pt;}
.y2_c00051{bottom:892.800000pt;}
.y1_c00051{bottom:927.333333pt;}
.h2_c00051{height:53.333333pt;}
.h1_c00051{height:1037.333333pt;}
.h0_c00051{height:1037.439941pt;}
.w0_c00051{width:811.840007pt;}
.w1_c00051{width:812.000000pt;}
.x0_c00051{left:0.000000pt;}
.x5_c00051{left:81.600000pt;}
.x32_c00051{left:82.666667pt;}
.x79_c00051{left:84.000000pt;}
.xc7_c00051{left:85.200000pt;}
.x11d_c00051{left:86.666667pt;}
.x132_c00051{left:87.600000pt;}
.xa4_c00051{left:100.133333pt;}
.xb3_c00051{left:102.133333pt;}
.x1b_c00051{left:103.066667pt;}
.x13d_c00051{left:104.266667pt;}
.x62_c00051{left:107.866667pt;}
.xe3_c00051{left:109.600000pt;}
.x141_c00051{left:110.800000pt;}
.x115_c00051{left:111.866667pt;}
.x33_c00051{left:112.800000pt;}
.x13e_c00051{left:113.866667pt;}
.x142_c00051{left:115.733333pt;}
.x85_c00051{left:117.600000pt;}
.x16_c00051{left:119.333333pt;}
.x7a_c00051{left:122.133333pt;}
.xbb_c00051{left:124.933333pt;}
.x40_c00051{left:126.800000pt;}
.x1c_c00051{left:128.933333pt;}
.x27_c00051{left:129.866667pt;}
.x90_c00051{left:132.133333pt;}
.xa5_c00051{left:134.400000pt;}
.x127_c00051{left:135.866667pt;}
.xd1_c00051{left:137.333333pt;}
.x106_c00051{left:139.066667pt;}
.xc8_c00051{left:140.133333pt;}
.xb4_c00051{left:144.000000pt;}
.x17_c00051{left:145.200000pt;}
.x4d_c00051{left:146.800000pt;}
.x6d_c00051{left:148.266667pt;}
.x34_c00051{left:149.333333pt;}
.x91_c00051{left:151.066667pt;}
.xed_c00051{left:152.266667pt;}
.x6_c00051{left:153.600000pt;}
.xc3_c00051{left:155.866667pt;}
.x11e_c00051{left:156.800000pt;}
.xbc_c00051{left:158.533333pt;}
.xab_c00051{left:159.866667pt;}
.xfa_c00051{left:162.133333pt;}
.x7b_c00051{left:163.066667pt;}
.xb5_c00051{left:164.800000pt;}
.x10d_c00051{left:166.800000pt;}
.x9b_c00051{left:168.400000pt;}
.x7_c00051{left:169.333333pt;}
.x86_c00051{left:171.066667pt;}
.x11f_c00051{left:174.666667pt;}
.xac_c00051{left:177.200000pt;}
.x63_c00051{left:178.933333pt;}
.x116_c00051{left:180.266667pt;}
.xd6_c00051{left:181.466667pt;}
.x8_c00051{left:182.800000pt;}
.xee_c00051{left:184.533333pt;}
.x110_c00051{left:187.866667pt;}
.x4e_c00051{left:189.733333pt;}
.x41_c00051{left:191.733333pt;}
.xc4_c00051{left:192.666667pt;}
.x28_c00051{left:193.866667pt;}
.x35_c00051{left:195.066667pt;}
.x1d_c00051{left:196.800000pt;}
.xa6_c00051{left:197.733333pt;}
.xd7_c00051{left:199.333333pt;}
.xfb_c00051{left:200.800000pt;}
.x92_c00051{left:202.266667pt;}
.x5a_c00051{left:203.333333pt;}
.x9_c00051{left:205.200000pt;}
.x12a_c00051{left:206.800000pt;}
.x133_c00051{left:208.000000pt;}
.x29_c00051{left:209.600000pt;}
.xad_c00051{left:211.733333pt;}
.x143_c00051{left:213.600000pt;}
.x13c_c00051{left:216.000000pt;}
.x18_c00051{left:217.200000pt;}
.x42_c00051{left:219.600000pt;}
.x93_c00051{left:221.466667pt;}
.xef_c00051{left:224.266667pt;}
.xbd_c00051{left:226.400000pt;}
.x4f_c00051{left:228.133333pt;}
.xdd_c00051{left:229.866667pt;}
.x107_c00051{left:230.800000pt;}
.x135_c00051{left:232.000000pt;}
.x123_c00051{left:233.466667pt;}
.x5b_c00051{left:234.666667pt;}
.x19_c00051{left:236.133333pt;}
.xd8_c00051{left:238.000000pt;}
.x7c_c00051{left:239.333333pt;}
.x6e_c00051{left:241.466667pt;}
.x117_c00051{left:243.866667pt;}
.x100_c00051{left:246.533333pt;}
.x36_c00051{left:248.133333pt;}
.x43_c00051{left:250.000000pt;}
.xb6_c00051{left:250.933333pt;}
.x87_c00051{left:253.333333pt;}
.x144_c00051{left:254.266667pt;}
.xa_c00051{left:256.133333pt;}
.x7d_c00051{left:257.200000pt;}
.xea_c00051{left:258.133333pt;}
.x2a_c00051{left:259.466667pt;}
.xfc_c00051{left:262.266667pt;}
.xf0_c00051{left:264.266667pt;}
.x1e_c00051{left:265.600000pt;}
.x37_c00051{left:268.266667pt;}
.x10e_c00051{left:269.200000pt;}
.x13f_c00051{left:271.333333pt;}
.x12b_c00051{left:272.800000pt;}
.xc5_c00051{left:274.666667pt;}
.xd2_c00051{left:275.866667pt;}
.x44_c00051{left:276.933333pt;}
.x94_c00051{left:278.133333pt;}
.x5c_c00051{left:279.466667pt;}
.x9c_c00051{left:281.333333pt;}
.xb_c00051{left:282.400000pt;}
.xae_c00051{left:283.733333pt;}
.x1f_c00051{left:284.800000pt;}
.x108_c00051{left:285.866667pt;}
.x12d_c00051{left:286.933333pt;}
.xc9_c00051{left:288.666667pt;}
.x9d_c00051{left:291.600000pt;}
.x2b_c00051{left:292.800000pt;}
.x1a_c00051{left:296.266667pt;}
.x10f_c00051{left:297.333333pt;}
.xe4_c00051{left:298.933333pt;}
.xbe_c00051{left:302.266667pt;}
.x38_c00051{left:303.466667pt;}
.xde_c00051{left:306.933333pt;}
.x118_c00051{left:308.533333pt;}
.x6f_c00051{left:310.533333pt;}
.x1_c00051{left:315.466667pt;}
.xc6_c00051{left:316.533333pt;}
.x5d_c00051{left:317.866667pt;}
.x109_c00051{left:318.800000pt;}
.x12e_c00051{left:322.400000pt;}
.xca_c00051{left:323.866667pt;}
.x70_c00051{left:325.866667pt;}
.x111_c00051{left:328.000000pt;}
.xfd_c00051{left:329.066667pt;}
.x12c_c00051{left:330.400000pt;}
.xaf_c00051{left:331.733333pt;}
.x20_c00051{left:332.800000pt;}
.x64_c00051{left:335.333333pt;}
.xc_c00051{left:337.466667pt;}
.x7e_c00051{left:340.400000pt;}
.xcb_c00051{left:342.400000pt;}
.x95_c00051{left:343.466667pt;}
.xe5_c00051{left:344.666667pt;}
.x21_c00051{left:346.933333pt;}
.x71_c00051{left:348.266667pt;}
.x2c_c00051{left:350.400000pt;}
.x50_c00051{left:352.000000pt;}
.x65_c00051{left:353.200000pt;}
.x45_c00051{left:355.066667pt;}
.x39_c00051{left:358.133333pt;}
.xb0_c00051{left:359.600000pt;}
.x2_c00051{left:363.200000pt;}
.x9e_c00051{left:365.466667pt;}
.xf4_c00051{left:366.533333pt;}
.xd9_c00051{left:368.000000pt;}
.xe6_c00051{left:373.200000pt;}
.x136_c00051{left:375.600000pt;}
.x101_c00051{left:377.466667pt;}
.x51_c00051{left:378.533333pt;}
.xa7_c00051{left:380.400000pt;}
.x3_c00051{left:383.733333pt;}
.x9f_c00051{left:385.333333pt;}
.xbf_c00051{left:386.400000pt;}
.xd_c00051{left:388.000000pt;}
.xf5_c00051{left:389.600000pt;}
.x46_c00051{left:390.533333pt;}
.x7f_c00051{left:391.600000pt;}
.x72_c00051{left:394.400000pt;}
.xfe_c00051{left:396.666667pt;}
.x96_c00051{left:398.133333pt;}
.xb7_c00051{left:401.733333pt;}
.x102_c00051{left:404.933333pt;}
.xe_c00051{left:405.866667pt;}
.x80_c00051{left:407.600000pt;}
.x88_c00051{left:409.733333pt;}
.xf1_c00051{left:413.066667pt;}
.x52_c00051{left:415.600000pt;}
.xa8_c00051{left:418.133333pt;}
.xa0_c00051{left:419.866667pt;}
.x66_c00051{left:420.800000pt;}
.x22_c00051{left:422.133333pt;}
.x137_c00051{left:424.533333pt;}
.x120_c00051{left:426.933333pt;}
.x119_c00051{left:428.266667pt;}
.x3a_c00051{left:429.200000pt;}
.x81_c00051{left:432.266667pt;}
.xdf_c00051{left:434.000000pt;}
.xa1_c00051{left:435.200000pt;}
.x73_c00051{left:436.266667pt;}
.xd3_c00051{left:437.600000pt;}
.xcc_c00051{left:438.666667pt;}
.xf2_c00051{left:440.533333pt;}
.x138_c00051{left:441.866667pt;}
.x2d_c00051{left:442.933333pt;}
.x5e_c00051{left:444.000000pt;}
.xda_c00051{left:445.333333pt;}
.x112_c00051{left:446.666667pt;}
.x67_c00051{left:448.266667pt;}
.x11a_c00051{left:450.400000pt;}
.x89_c00051{left:451.333333pt;}
.x47_c00051{left:453.200000pt;}
.x2e_c00051{left:454.800000pt;}
.xf6_c00051{left:456.533333pt;}
.x53_c00051{left:458.133333pt;}
.xe7_c00051{left:459.333333pt;}
.x74_c00051{left:461.200000pt;}
.xb8_c00051{left:462.533333pt;}
.xa9_c00051{left:463.600000pt;}
.xc0_c00051{left:465.466667pt;}
.x128_c00051{left:467.066667pt;}
.x5f_c00051{left:468.933333pt;}
.x8a_c00051{left:470.533333pt;}
.x113_c00051{left:472.533333pt;}
.x48_c00051{left:473.733333pt;}
.xf_c00051{left:476.533333pt;}
.x68_c00051{left:478.000000pt;}
.x139_c00051{left:483.200000pt;}
.xe0_c00051{left:485.866667pt;}
.x124_c00051{left:486.933333pt;}
.xa2_c00051{left:488.933333pt;}
.x82_c00051{left:490.133333pt;}
.x8b_c00051{left:491.066667pt;}
.x121_c00051{left:492.800000pt;}
.x75_c00051{left:494.133333pt;}
.x3b_c00051{left:495.466667pt;}
.xc1_c00051{left:496.533333pt;}
.x23_c00051{left:498.000000pt;}
.x54_c00051{left:499.733333pt;}
.x49_c00051{left:500.666667pt;}
.x10_c00051{left:501.866667pt;}
.xf7_c00051{left:504.800000pt;}
.xd4_c00051{left:505.733333pt;}
.x83_c00051{left:507.466667pt;}
.xaa_c00051{left:508.400000pt;}
.x140_c00051{left:510.400000pt;}
.xe8_c00051{left:511.466667pt;}
.xcd_c00051{left:514.800000pt;}
.x55_c00051{left:516.666667pt;}
.x69_c00051{left:520.266667pt;}
.x11_c00051{left:522.400000pt;}
.xc2_c00051{left:523.466667pt;}
.x2f_c00051{left:525.200000pt;}
.x24_c00051{left:529.066667pt;}
.x10a_c00051{left:531.866667pt;}
.x12_c00051{left:533.333333pt;}
.x3c_c00051{left:535.466667pt;}
.x4a_c00051{left:537.466667pt;}
.x60_c00051{left:540.266667pt;}
.xf8_c00051{left:541.600000pt;}
.x30_c00051{left:542.533333pt;}
.x8c_c00051{left:544.133333pt;}
.xb9_c00051{left:546.800000pt;}
.x122_c00051{left:548.800000pt;}
.x125_c00051{left:550.266667pt;}
.x56_c00051{left:551.200000pt;}
.x12f_c00051{left:552.533333pt;}
.x76_c00051{left:553.600000pt;}
.xeb_c00051{left:554.533333pt;}
.x103_c00051{left:556.266667pt;}
.x97_c00051{left:557.200000pt;}
.xb1_c00051{left:558.666667pt;}
.x84_c00051{left:560.533333pt;}
.x6a_c00051{left:561.600000pt;}
.xdb_c00051{left:563.066667pt;}
.x11b_c00051{left:565.600000pt;}
.x57_c00051{left:566.533333pt;}
.xa3_c00051{left:568.266667pt;}
.x3d_c00051{left:570.000000pt;}
.x98_c00051{left:571.333333pt;}
.x114_c00051{left:572.400000pt;}
.xce_c00051{left:574.933333pt;}
.x77_c00051{left:576.266667pt;}
.x130_c00051{left:577.200000pt;}
.xd5_c00051{left:580.933333pt;}
.x31_c00051{left:585.466667pt;}
.x104_c00051{left:588.533333pt;}
.x13a_c00051{left:589.733333pt;}
.x58_c00051{left:591.200000pt;}
.xcf_c00051{left:592.800000pt;}
.x8d_c00051{left:594.666667pt;}
.x6b_c00051{left:597.733333pt;}
.x13_c00051{left:600.266667pt;}
.xba_c00051{left:601.466667pt;}
.xb2_c00051{left:604.800000pt;}
.x99_c00051{left:605.866667pt;}
.x78_c00051{left:606.933333pt;}
.x25_c00051{left:608.133333pt;}
.xe1_c00051{left:610.666667pt;}
.x59_c00051{left:613.333333pt;}
.xe9_c00051{left:614.933333pt;}
.x105_c00051{left:616.000000pt;}
.x8e_c00051{left:617.333333pt;}
.xd0_c00051{left:618.666667pt;}
.x126_c00051{left:619.733333pt;}
.x4b_c00051{left:620.666667pt;}
.x6c_c00051{left:624.666667pt;}
.x134_c00051{left:626.933333pt;}
.x3e_c00051{left:627.866667pt;}
.x14_c00051{left:630.400000pt;}
.xec_c00051{left:632.933333pt;}
.x4c_c00051{left:634.133333pt;}
.x13b_c00051{left:635.200000pt;}
.xf3_c00051{left:636.266667pt;}
.xdc_c00051{left:640.133333pt;}
.x10b_c00051{left:642.266667pt;}
.x61_c00051{left:645.866667pt;}
.xff_c00051{left:646.933333pt;}
.x3f_c00051{left:648.000000pt;}
.x129_c00051{left:650.400000pt;}
.x11c_c00051{left:651.466667pt;}
.x26_c00051{left:652.666667pt;}
.x9a_c00051{left:655.466667pt;}
.xe2_c00051{left:656.800000pt;}
.xf9_c00051{left:657.866667pt;}
.x15_c00051{left:660.133333pt;}
.x131_c00051{left:662.000000pt;}
.x4_c00051{left:663.066667pt;}
.x8f_c00051{left:666.933333pt;}
.x10c_c00051{left:672.400000pt;}
}





/* 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_c00052 {
    display:none;
  }
  .loading-indicator_c00052.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00052 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_c00052 { 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_c00052" -> "#page-container .classname_c00052")
 */
.pf_c00052 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00052 { /* 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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00052 { /* 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_c00052 { /* 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_c00052 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00052 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00052 {overflow:visible;}
  }
}
.c_c00052 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00052 { /* 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_c00052:after { /* webkit #35443 */
  content: '';
}
.t_c00052:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00052 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 */
}
.__c00052 { /* 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_c00052 { /* info for Javascript */
  display:none;
}
.l_c00052 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00052 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00052 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00052: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_c00052 {
    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_c00052.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00052.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_c00052 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00052{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.000000;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;}
.m43_c00052{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m98_c00052{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m75_c00052{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m69_c00052{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00052{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00052{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m80_c00052{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00052{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m72_c00052{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00052{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m24_c00052{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00052{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m97_c00052{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00052{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m52_c00052{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m46_c00052{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00052{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m27_c00052{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00052{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m94_c00052{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m21_c00052{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m48_c00052{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m65_c00052{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m73_c00052{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m67_c00052{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00052{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00052{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00052{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m60_c00052{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m84_c00052{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00052{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m71_c00052{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mf_c00052{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m74_c00052{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00052{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00052{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb_c00052{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m79_c00052{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m22_c00052{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00052{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00052{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00052{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m70_c00052{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m32_c00052{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m89_c00052{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00052{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m91_c00052{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00052{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00052{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m63_c00052{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m38_c00052{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m81_c00052{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m86_c00052{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00052{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m87_c00052{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00052{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00052{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00052{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m10_c00052{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m59_c00052{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m77_c00052{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m35_c00052{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00052{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma_c00052{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m53_c00052{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00052{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00052{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m11_c00052{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00052{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00052{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00052{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00052{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00052{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m34_c00052{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00052{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00052{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00052{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00052{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m51_c00052{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00052{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00052{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00052{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00052{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00052{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00052{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me_c00052{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00052{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m78_c00052{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00052{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00052{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00052{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00052{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00052{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m31_c00052{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m49_c00052{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m36_c00052{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m39_c00052{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m88_c00052{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m28_c00052{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00052{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00052{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00052{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m66_c00052{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m19_c00052{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m95_c00052{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m23_c00052{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m61_c00052{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00052{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00052{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m96_c00052{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md_c00052{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00052{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00052{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00052{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m42_c00052{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00052{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m57_c00052{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00052{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m30_c00052{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00052{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18_c00052{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29_c00052{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00052{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00052{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00052{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m45_c00052{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00052{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m25_c00052{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00052{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m64_c00052{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m90_c00052{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00052{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m15_c00052{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00052{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m47_c00052{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00052{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00052{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m20_c00052{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m41_c00052{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m37_c00052{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m13_c00052{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m92_c00052{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m26_c00052{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00052{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m93_c00052{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m68_c00052{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m50_c00052{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00052{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00052{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m76_c00052{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m40_c00052{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00052{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m99_c00052{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00052{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00052{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00052{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00052{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00052{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00052{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m82_c00052{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m83_c00052{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{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__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:-7.500000px;}
.ws6_c00052{word-spacing:-5.277778px;}
.ws7_c00052{word-spacing:-4.285714px;}
.ws8_c00052{word-spacing:0.000000px;}
.ws3_c00052{word-spacing:3.918919px;}
.ws4_c00052{word-spacing:4.791667px;}
.ws5_c00052{word-spacing:8.055556px;}
.ws1_c00052{word-spacing:14.411765px;}
.ws2_c00052{word-spacing:27.592593px;}
.fc0_c00052{color:transparent;}
.fs0_c00052{font-size:54.000000px;}
.fs1_c00052{font-size:60.000000px;}
.y0_c00052{bottom:0.000000px;}
.y2c_c00052{bottom:160.950000px;}
.y2b_c00052{bottom:201.300000px;}
.y2a_c00052{bottom:221.400000px;}
.y29_c00052{bottom:241.500000px;}
.y28_c00052{bottom:261.000000px;}
.y27_c00052{bottom:280.800000px;}
.y26_c00052{bottom:300.600000px;}
.y25_c00052{bottom:320.400000px;}
.y24_c00052{bottom:339.900000px;}
.y23_c00052{bottom:359.700000px;}
.y22_c00052{bottom:379.500000px;}
.y21_c00052{bottom:399.300000px;}
.y20_c00052{bottom:419.400000px;}
.y1f_c00052{bottom:439.200000px;}
.y1e_c00052{bottom:459.300000px;}
.y1d_c00052{bottom:478.800000px;}
.y1c_c00052{bottom:498.900000px;}
.y1b_c00052{bottom:518.400000px;}
.y1a_c00052{bottom:538.500000px;}
.y19_c00052{bottom:558.300000px;}
.y18_c00052{bottom:578.100000px;}
.y17_c00052{bottom:597.600000px;}
.y16_c00052{bottom:617.400000px;}
.y15_c00052{bottom:636.900000px;}
.y14_c00052{bottom:657.000000px;}
.y13_c00052{bottom:676.800000px;}
.y12_c00052{bottom:696.600000px;}
.y11_c00052{bottom:716.700000px;}
.y10_c00052{bottom:736.200000px;}
.yf_c00052{bottom:756.000000px;}
.ye_c00052{bottom:775.800000px;}
.yd_c00052{bottom:795.600000px;}
.yc_c00052{bottom:815.700000px;}
.yb_c00052{bottom:835.500000px;}
.ya_c00052{bottom:854.550000px;}
.y9_c00052{bottom:874.650000px;}
.y8_c00052{bottom:895.200000px;}
.y7_c00052{bottom:914.700000px;}
.y6_c00052{bottom:934.500000px;}
.y5_c00052{bottom:954.300000px;}
.y4_c00052{bottom:974.100000px;}
.y3_c00052{bottom:993.900000px;}
.y2_c00052{bottom:1013.700000px;}
.y1_c00052{bottom:1051.950000px;}
.h2_c00052{height:54.000000px;}
.h3_c00052{height:60.000000px;}
.h1_c00052{height:1167.000000px;}
.h0_c00052{height:1167.119934px;}
.w0_c00052{width:913.320007px;}
.w1_c00052{width:913.500000px;}
.x0_c00052{left:0.000000px;}
.xd9_c00052{left:145.050000px;}
.xed_c00052{left:146.100000px;}
.xb9_c00052{left:147.300000px;}
.x52_c00052{left:148.350000px;}
.x14_c00052{left:149.700000px;}
.x1_c00052{left:151.200000px;}
.xf7_c00052{left:162.900000px;}
.xf3_c00052{left:166.200000px;}
.x68_c00052{left:169.200000px;}
.xff_c00052{left:171.750000px;}
.x9f_c00052{left:173.400000px;}
.x94_c00052{left:175.500000px;}
.x5f_c00052{left:176.850000px;}
.xe7_c00052{left:177.900000px;}
.x69_c00052{left:179.700000px;}
.x4_c00052{left:180.750000px;}
.xa9_c00052{left:184.200000px;}
.xba_c00052{left:185.400000px;}
.x115_c00052{left:187.200000px;}
.xf4_c00052{left:189.600000px;}
.x88_c00052{left:190.800000px;}
.x95_c00052{left:192.750000px;}
.xee_c00052{left:194.400000px;}
.x45_c00052{left:196.500000px;}
.x76_c00052{left:198.750000px;}
.x15_c00052{left:201.150000px;}
.xc3_c00052{left:205.650000px;}
.x2f_c00052{left:210.750000px;}
.x110_c00052{left:212.100000px;}
.x96_c00052{left:213.300000px;}
.xe8_c00052{left:214.950000px;}
.x53_c00052{left:218.250000px;}
.x82_c00052{left:222.300000px;}
.xef_c00052{left:226.050000px;}
.x3a_c00052{left:228.000000px;}
.x107_c00052{left:230.400000px;}
.x127_c00052{left:231.750000px;}
.x46_c00052{left:233.550000px;}
.x22_c00052{left:237.150000px;}
.x6a_c00052{left:238.500000px;}
.x5_c00052{left:240.150000px;}
.xa0_c00052{left:242.100000px;}
.xd3_c00052{left:243.150000px;}
.xb0_c00052{left:245.100000px;}
.x83_c00052{left:247.500000px;}
.x108_c00052{left:250.500000px;}
.x47_c00052{left:253.350000px;}
.x123_c00052{left:254.550000px;}
.xe0_c00052{left:257.400000px;}
.x12a_c00052{left:259.800000px;}
.x60_c00052{left:262.200000px;}
.xd4_c00052{left:263.250000px;}
.x16_c00052{left:264.450000px;}
.x116_c00052{left:268.200000px;}
.xa1_c00052{left:269.400000px;}
.x111_c00052{left:270.750000px;}
.x77_c00052{left:273.300000px;}
.xc8_c00052{left:275.250000px;}
.x3b_c00052{left:276.600000px;}
.x6b_c00052{left:279.150000px;}
.xf8_c00052{left:280.200000px;}
.x100_c00052{left:282.300000px;}
.x6_c00052{left:284.850000px;}
.xda_c00052{left:286.500000px;}
.xc4_c00052{left:288.150000px;}
.x97_c00052{left:289.500000px;}
.x61_c00052{left:291.000000px;}
.xb1_c00052{left:295.500000px;}
.x30_c00052{left:297.150000px;}
.x17_c00052{left:298.950000px;}
.x23_c00052{left:302.250000px;}
.xf5_c00052{left:306.150000px;}
.x78_c00052{left:307.200000px;}
.xf9_c00052{left:309.000000px;}
.x84_c00052{left:311.550000px;}
.x109_c00052{left:317.100000px;}
.xc5_c00052{left:319.500000px;}
.x7_c00052{left:320.850000px;}
.xb2_c00052{left:322.200000px;}
.x18_c00052{left:324.900000px;}
.xdb_c00052{left:328.650000px;}
.x121_c00052{left:330.600000px;}
.x8_c00052{left:331.650000px;}
.x6c_c00052{left:333.900000px;}
.x98_c00052{left:336.300000px;}
.xa2_c00052{left:337.800000px;}
.x89_c00052{left:339.150000px;}
.x62_c00052{left:341.700000px;}
.x11b_c00052{left:346.050000px;}
.xd5_c00052{left:349.200000px;}
.x99_c00052{left:352.500000px;}
.x101_c00052{left:354.300000px;}
.x124_c00052{left:356.700000px;}
.x31_c00052{left:358.350000px;}
.x85_c00052{left:359.850000px;}
.x6d_c00052{left:360.900000px;}
.x54_c00052{left:361.950000px;}
.x3c_c00052{left:364.500000px;}
.xc6_c00052{left:366.000000px;}
.x19_c00052{left:368.850000px;}
.xbb_c00052{left:371.550000px;}
.x112_c00052{left:375.450000px;}
.xcf_c00052{left:376.650000px;}
.x79_c00052{left:378.450000px;}
.x8a_c00052{left:379.800000px;}
.x55_c00052{left:384.300000px;}
.xfa_c00052{left:387.150000px;}
.x1a_c00052{left:388.350000px;}
.x9a_c00052{left:389.550000px;}
.x9_c00052{left:391.050000px;}
.x102_c00052{left:393.150000px;}
.x2_c00052{left:396.300000px;}
.x12d_c00052{left:397.950000px;}
.x3d_c00052{left:399.750000px;}
.x6e_c00052{left:400.800000px;}
.x24_c00052{left:403.500000px;}
.xbc_c00052{left:405.000000px;}
.x56_c00052{left:406.950000px;}
.xf0_c00052{left:408.600000px;}
.x48_c00052{left:412.050000px;}
.xe1_c00052{left:414.750000px;}
.xa3_c00052{left:417.750000px;}
.x11c_c00052{left:419.850000px;}
.xb3_c00052{left:421.200000px;}
.x12c_c00052{left:423.750000px;}
.x10b_c00052{left:425.850000px;}
.xd6_c00052{left:427.050000px;}
.x86_c00052{left:428.700000px;}
.xc9_c00052{left:430.800000px;}
.x6f_c00052{left:434.250000px;}
.x9b_c00052{left:436.050000px;}
.xa_c00052{left:437.550000px;}
.x25_c00052{left:438.750000px;}
.x117_c00052{left:440.250000px;}
.x10a_c00052{left:441.450000px;}
.xa4_c00052{left:442.950000px;}
.x49_c00052{left:444.150000px;}
.xfb_c00052{left:446.850000px;}
.x32_c00052{left:448.650000px;}
.xf6_c00052{left:450.900000px;}
.xca_c00052{left:452.400000px;}
.x8b_c00052{left:454.350000px;}
.xe9_c00052{left:457.200000px;}
.x7a_c00052{left:458.700000px;}
.x122_c00052{left:460.050000px;}
.x26_c00052{left:461.850000px;}
.x57_c00052{left:463.500000px;}
.x63_c00052{left:465.900000px;}
.x1b_c00052{left:467.250000px;}
.x118_c00052{left:471.150000px;}
.xb_c00052{left:473.250000px;}
.x70_c00052{left:475.350000px;}
.x113_c00052{left:477.450000px;}
.xc7_c00052{left:479.400000px;}
.x3e_c00052{left:481.800000px;}
.xdc_c00052{left:483.750000px;}
.x33_c00052{left:485.400000px;}
.x4a_c00052{left:487.650000px;}
.x11d_c00052{left:489.000000px;}
.x58_c00052{left:490.200000px;}
.x71_c00052{left:493.050000px;}
.xcb_c00052{left:494.100000px;}
.x3_c00052{left:495.300000px;}
.x9c_c00052{left:499.050000px;}
.x3f_c00052{left:501.300000px;}
.x7b_c00052{left:503.400000px;}
.xe2_c00052{left:505.500000px;}
.x12e_c00052{left:507.000000px;}
.x34_c00052{left:508.800000px;}
.x10c_c00052{left:510.900000px;}
.x125_c00052{left:511.950000px;}
.x132_c00052{left:515.400000px;}
.xdd_c00052{left:516.900000px;}
.x1c_c00052{left:520.950000px;}
.x103_c00052{left:523.350000px;}
.x4b_c00052{left:524.700000px;}
.x119_c00052{left:526.950000px;}
.xc_c00052{left:529.800000px;}
.xd0_c00052{left:531.150000px;}
.x114_c00052{left:533.550000px;}
.xbd_c00052{left:535.050000px;}
.x10d_c00052{left:538.950000px;}
.x59_c00052{left:541.350000px;}
.x27_c00052{left:545.700000px;}
.xd_c00052{left:549.600000px;}
.xaa_c00052{left:550.800000px;}
.xb4_c00052{left:552.000000px;}
.xa5_c00052{left:553.050000px;}
.xe3_c00052{left:554.400000px;}
.x8c_c00052{left:555.900000px;}
.xbe_c00052{left:558.450000px;}
.x128_c00052{left:559.500000px;}
.xfc_c00052{left:564.600000px;}
.x11e_c00052{left:566.400000px;}
.x35_c00052{left:567.900000px;}
.x7c_c00052{left:570.000000px;}
.x5a_c00052{left:571.200000px;}
.x1d_c00052{left:573.150000px;}
.xe_c00052{left:577.650000px;}
.x40_c00052{left:579.000000px;}
.x28_c00052{left:583.800000px;}
.xd7_c00052{left:586.500000px;}
.x5b_c00052{left:588.900000px;}
.xe4_c00052{left:590.100000px;}
.x10e_c00052{left:591.150000px;}
.x7d_c00052{left:592.350000px;}
.xd1_c00052{left:595.200000px;}
.x8d_c00052{left:597.300000px;}
.x41_c00052{left:599.850000px;}
.x129_c00052{left:601.650000px;}
.x29_c00052{left:602.850000px;}
.x12f_c00052{left:610.200000px;}
.x104_c00052{left:612.000000px;}
.x1e_c00052{left:613.050000px;}
.xe5_c00052{left:615.300000px;}
.xbf_c00052{left:616.650000px;}
.x8e_c00052{left:618.150000px;}
.x4c_c00052{left:620.100000px;}
.xab_c00052{left:623.100000px;}
.xf1_c00052{left:625.650000px;}
.x7e_c00052{left:629.400000px;}
.xde_c00052{left:630.750000px;}
.xb5_c00052{left:633.750000px;}
.x36_c00052{left:634.800000px;}
.xf_c00052{left:636.750000px;}
.x42_c00052{left:638.700000px;}
.x2a_c00052{left:640.350000px;}
.x72_c00052{left:642.450000px;}
.xfd_c00052{left:643.800000px;}
.x4d_c00052{left:645.300000px;}
.x9d_c00052{left:648.000000px;}
.x105_c00052{left:649.050000px;}
.x5c_c00052{left:652.650000px;}
.x87_c00052{left:654.450000px;}
.x8f_c00052{left:657.000000px;}
.x2b_c00052{left:658.650000px;}
.xcc_c00052{left:661.050000px;}
.x37_c00052{left:663.600000px;}
.xdf_c00052{left:664.950000px;}
.x1f_c00052{left:666.300000px;}
.x64_c00052{left:669.000000px;}
.x10_c00052{left:670.950000px;}
.x126_c00052{left:672.150000px;}
.x11a_c00052{left:675.900000px;}
.xac_c00052{left:678.900000px;}
.x2c_c00052{left:679.950000px;}
.xa6_c00052{left:681.750000px;}
.x38_c00052{left:685.500000px;}
.xb6_c00052{left:686.700000px;}
.x43_c00052{left:688.350000px;}
.x20_c00052{left:689.400000px;}
.xea_c00052{left:690.600000px;}
.x65_c00052{left:691.650000px;}
.x73_c00052{left:693.900000px;}
.x4e_c00052{left:694.950000px;}
.x11_c00052{left:696.450000px;}
.x11f_c00052{left:697.500000px;}
.x90_c00052{left:701.700000px;}
.xe6_c00052{left:703.950000px;}
.x7f_c00052{left:705.750000px;}
.x130_c00052{left:708.000000px;}
.x10f_c00052{left:710.700000px;}
.xa7_c00052{left:712.350000px;}
.xc0_c00052{left:713.850000px;}
.xd8_c00052{left:715.350000px;}
.x4f_c00052{left:718.650000px;}
.xad_c00052{left:720.600000px;}
.xfe_c00052{left:722.550000px;}
.x12_c00052{left:725.250000px;}
.x106_c00052{left:726.750000px;}
.x5d_c00052{left:729.000000px;}
.x21_c00052{left:730.050000px;}
.x91_c00052{left:731.250000px;}
.x74_c00052{left:733.800000px;}
.xb7_c00052{left:735.600000px;}
.x120_c00052{left:738.150000px;}
.xcd_c00052{left:740.550000px;}
.xae_c00052{left:741.900000px;}
.x44_c00052{left:743.100000px;}
.xeb_c00052{left:744.900000px;}
.x2d_c00052{left:747.600000px;}
.xf2_c00052{left:750.000000px;}
.x92_c00052{left:751.050000px;}
.x50_c00052{left:752.850000px;}
.xc1_c00052{left:754.500000px;}
.xa8_c00052{left:755.850000px;}
.x13_c00052{left:759.150000px;}
.x39_c00052{left:761.100000px;}
.x66_c00052{left:765.000000px;}
.xec_c00052{left:766.800000px;}
.xaf_c00052{left:767.850000px;}
.x80_c00052{left:771.300000px;}
.xd2_c00052{left:773.100000px;}
.xb8_c00052{left:775.800000px;}
.x75_c00052{left:777.300000px;}
.x93_c00052{left:779.100000px;}
.x2e_c00052{left:780.300000px;}
.x131_c00052{left:781.350000px;}
.xc2_c00052{left:784.800000px;}
.x67_c00052{left:786.600000px;}
.x12b_c00052{left:788.700000px;}
.xce_c00052{left:790.200000px;}
.x81_c00052{left:791.400000px;}
.x9e_c00052{left:797.400000px;}
.x5e_c00052{left:800.700000px;}
.x51_c00052{left:808.950000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:-6.666667pt;}
.ws6_c00052{word-spacing:-4.691358pt;}
.ws7_c00052{word-spacing:-3.809524pt;}
.ws8_c00052{word-spacing:0.000000pt;}
.ws3_c00052{word-spacing:3.483483pt;}
.ws4_c00052{word-spacing:4.259259pt;}
.ws5_c00052{word-spacing:7.160494pt;}
.ws1_c00052{word-spacing:12.810458pt;}
.ws2_c00052{word-spacing:24.526749pt;}
.fs0_c00052{font-size:48.000000pt;}
.fs1_c00052{font-size:53.333333pt;}
.y0_c00052{bottom:0.000000pt;}
.y2c_c00052{bottom:143.066667pt;}
.y2b_c00052{bottom:178.933333pt;}
.y2a_c00052{bottom:196.800000pt;}
.y29_c00052{bottom:214.666667pt;}
.y28_c00052{bottom:232.000000pt;}
.y27_c00052{bottom:249.600000pt;}
.y26_c00052{bottom:267.200000pt;}
.y25_c00052{bottom:284.800000pt;}
.y24_c00052{bottom:302.133333pt;}
.y23_c00052{bottom:319.733333pt;}
.y22_c00052{bottom:337.333333pt;}
.y21_c00052{bottom:354.933333pt;}
.y20_c00052{bottom:372.800000pt;}
.y1f_c00052{bottom:390.400000pt;}
.y1e_c00052{bottom:408.266667pt;}
.y1d_c00052{bottom:425.600000pt;}
.y1c_c00052{bottom:443.466667pt;}
.y1b_c00052{bottom:460.800000pt;}
.y1a_c00052{bottom:478.666667pt;}
.y19_c00052{bottom:496.266667pt;}
.y18_c00052{bottom:513.866667pt;}
.y17_c00052{bottom:531.200000pt;}
.y16_c00052{bottom:548.800000pt;}
.y15_c00052{bottom:566.133333pt;}
.y14_c00052{bottom:584.000000pt;}
.y13_c00052{bottom:601.600000pt;}
.y12_c00052{bottom:619.200000pt;}
.y11_c00052{bottom:637.066667pt;}
.y10_c00052{bottom:654.400000pt;}
.yf_c00052{bottom:672.000000pt;}
.ye_c00052{bottom:689.600000pt;}
.yd_c00052{bottom:707.200000pt;}
.yc_c00052{bottom:725.066667pt;}
.yb_c00052{bottom:742.666667pt;}
.ya_c00052{bottom:759.600000pt;}
.y9_c00052{bottom:777.466667pt;}
.y8_c00052{bottom:795.733333pt;}
.y7_c00052{bottom:813.066667pt;}
.y6_c00052{bottom:830.666667pt;}
.y5_c00052{bottom:848.266667pt;}
.y4_c00052{bottom:865.866667pt;}
.y3_c00052{bottom:883.466667pt;}
.y2_c00052{bottom:901.066667pt;}
.y1_c00052{bottom:935.066667pt;}
.h2_c00052{height:48.000000pt;}
.h3_c00052{height:53.333333pt;}
.h1_c00052{height:1037.333333pt;}
.h0_c00052{height:1037.439941pt;}
.w0_c00052{width:811.840007pt;}
.w1_c00052{width:812.000000pt;}
.x0_c00052{left:0.000000pt;}
.xd9_c00052{left:128.933333pt;}
.xed_c00052{left:129.866667pt;}
.xb9_c00052{left:130.933333pt;}
.x52_c00052{left:131.866667pt;}
.x14_c00052{left:133.066667pt;}
.x1_c00052{left:134.400000pt;}
.xf7_c00052{left:144.800000pt;}
.xf3_c00052{left:147.733333pt;}
.x68_c00052{left:150.400000pt;}
.xff_c00052{left:152.666667pt;}
.x9f_c00052{left:154.133333pt;}
.x94_c00052{left:156.000000pt;}
.x5f_c00052{left:157.200000pt;}
.xe7_c00052{left:158.133333pt;}
.x69_c00052{left:159.733333pt;}
.x4_c00052{left:160.666667pt;}
.xa9_c00052{left:163.733333pt;}
.xba_c00052{left:164.800000pt;}
.x115_c00052{left:166.400000pt;}
.xf4_c00052{left:168.533333pt;}
.x88_c00052{left:169.600000pt;}
.x95_c00052{left:171.333333pt;}
.xee_c00052{left:172.800000pt;}
.x45_c00052{left:174.666667pt;}
.x76_c00052{left:176.666667pt;}
.x15_c00052{left:178.800000pt;}
.xc3_c00052{left:182.800000pt;}
.x2f_c00052{left:187.333333pt;}
.x110_c00052{left:188.533333pt;}
.x96_c00052{left:189.600000pt;}
.xe8_c00052{left:191.066667pt;}
.x53_c00052{left:194.000000pt;}
.x82_c00052{left:197.600000pt;}
.xef_c00052{left:200.933333pt;}
.x3a_c00052{left:202.666667pt;}
.x107_c00052{left:204.800000pt;}
.x127_c00052{left:206.000000pt;}
.x46_c00052{left:207.600000pt;}
.x22_c00052{left:210.800000pt;}
.x6a_c00052{left:212.000000pt;}
.x5_c00052{left:213.466667pt;}
.xa0_c00052{left:215.200000pt;}
.xd3_c00052{left:216.133333pt;}
.xb0_c00052{left:217.866667pt;}
.x83_c00052{left:220.000000pt;}
.x108_c00052{left:222.666667pt;}
.x47_c00052{left:225.200000pt;}
.x123_c00052{left:226.266667pt;}
.xe0_c00052{left:228.800000pt;}
.x12a_c00052{left:230.933333pt;}
.x60_c00052{left:233.066667pt;}
.xd4_c00052{left:234.000000pt;}
.x16_c00052{left:235.066667pt;}
.x116_c00052{left:238.400000pt;}
.xa1_c00052{left:239.466667pt;}
.x111_c00052{left:240.666667pt;}
.x77_c00052{left:242.933333pt;}
.xc8_c00052{left:244.666667pt;}
.x3b_c00052{left:245.866667pt;}
.x6b_c00052{left:248.133333pt;}
.xf8_c00052{left:249.066667pt;}
.x100_c00052{left:250.933333pt;}
.x6_c00052{left:253.200000pt;}
.xda_c00052{left:254.666667pt;}
.xc4_c00052{left:256.133333pt;}
.x97_c00052{left:257.333333pt;}
.x61_c00052{left:258.666667pt;}
.xb1_c00052{left:262.666667pt;}
.x30_c00052{left:264.133333pt;}
.x17_c00052{left:265.733333pt;}
.x23_c00052{left:268.666667pt;}
.xf5_c00052{left:272.133333pt;}
.x78_c00052{left:273.066667pt;}
.xf9_c00052{left:274.666667pt;}
.x84_c00052{left:276.933333pt;}
.x109_c00052{left:281.866667pt;}
.xc5_c00052{left:284.000000pt;}
.x7_c00052{left:285.200000pt;}
.xb2_c00052{left:286.400000pt;}
.x18_c00052{left:288.800000pt;}
.xdb_c00052{left:292.133333pt;}
.x121_c00052{left:293.866667pt;}
.x8_c00052{left:294.800000pt;}
.x6c_c00052{left:296.800000pt;}
.x98_c00052{left:298.933333pt;}
.xa2_c00052{left:300.266667pt;}
.x89_c00052{left:301.466667pt;}
.x62_c00052{left:303.733333pt;}
.x11b_c00052{left:307.600000pt;}
.xd5_c00052{left:310.400000pt;}
.x99_c00052{left:313.333333pt;}
.x101_c00052{left:314.933333pt;}
.x124_c00052{left:317.066667pt;}
.x31_c00052{left:318.533333pt;}
.x85_c00052{left:319.866667pt;}
.x6d_c00052{left:320.800000pt;}
.x54_c00052{left:321.733333pt;}
.x3c_c00052{left:324.000000pt;}
.xc6_c00052{left:325.333333pt;}
.x19_c00052{left:327.866667pt;}
.xbb_c00052{left:330.266667pt;}
.x112_c00052{left:333.733333pt;}
.xcf_c00052{left:334.800000pt;}
.x79_c00052{left:336.400000pt;}
.x8a_c00052{left:337.600000pt;}
.x55_c00052{left:341.600000pt;}
.xfa_c00052{left:344.133333pt;}
.x1a_c00052{left:345.200000pt;}
.x9a_c00052{left:346.266667pt;}
.x9_c00052{left:347.600000pt;}
.x102_c00052{left:349.466667pt;}
.x2_c00052{left:352.266667pt;}
.x12d_c00052{left:353.733333pt;}
.x3d_c00052{left:355.333333pt;}
.x6e_c00052{left:356.266667pt;}
.x24_c00052{left:358.666667pt;}
.xbc_c00052{left:360.000000pt;}
.x56_c00052{left:361.733333pt;}
.xf0_c00052{left:363.200000pt;}
.x48_c00052{left:366.266667pt;}
.xe1_c00052{left:368.666667pt;}
.xa3_c00052{left:371.333333pt;}
.x11c_c00052{left:373.200000pt;}
.xb3_c00052{left:374.400000pt;}
.x12c_c00052{left:376.666667pt;}
.x10b_c00052{left:378.533333pt;}
.xd6_c00052{left:379.600000pt;}
.x86_c00052{left:381.066667pt;}
.xc9_c00052{left:382.933333pt;}
.x6f_c00052{left:386.000000pt;}
.x9b_c00052{left:387.600000pt;}
.xa_c00052{left:388.933333pt;}
.x25_c00052{left:390.000000pt;}
.x117_c00052{left:391.333333pt;}
.x10a_c00052{left:392.400000pt;}
.xa4_c00052{left:393.733333pt;}
.x49_c00052{left:394.800000pt;}
.xfb_c00052{left:397.200000pt;}
.x32_c00052{left:398.800000pt;}
.xf6_c00052{left:400.800000pt;}
.xca_c00052{left:402.133333pt;}
.x8b_c00052{left:403.866667pt;}
.xe9_c00052{left:406.400000pt;}
.x7a_c00052{left:407.733333pt;}
.x122_c00052{left:408.933333pt;}
.x26_c00052{left:410.533333pt;}
.x57_c00052{left:412.000000pt;}
.x63_c00052{left:414.133333pt;}
.x1b_c00052{left:415.333333pt;}
.x118_c00052{left:418.800000pt;}
.xb_c00052{left:420.666667pt;}
.x70_c00052{left:422.533333pt;}
.x113_c00052{left:424.400000pt;}
.xc7_c00052{left:426.133333pt;}
.x3e_c00052{left:428.266667pt;}
.xdc_c00052{left:430.000000pt;}
.x33_c00052{left:431.466667pt;}
.x4a_c00052{left:433.466667pt;}
.x11d_c00052{left:434.666667pt;}
.x58_c00052{left:435.733333pt;}
.x71_c00052{left:438.266667pt;}
.xcb_c00052{left:439.200000pt;}
.x3_c00052{left:440.266667pt;}
.x9c_c00052{left:443.600000pt;}
.x3f_c00052{left:445.600000pt;}
.x7b_c00052{left:447.466667pt;}
.xe2_c00052{left:449.333333pt;}
.x12e_c00052{left:450.666667pt;}
.x34_c00052{left:452.266667pt;}
.x10c_c00052{left:454.133333pt;}
.x125_c00052{left:455.066667pt;}
.x132_c00052{left:458.133333pt;}
.xdd_c00052{left:459.466667pt;}
.x1c_c00052{left:463.066667pt;}
.x103_c00052{left:465.200000pt;}
.x4b_c00052{left:466.400000pt;}
.x119_c00052{left:468.400000pt;}
.xc_c00052{left:470.933333pt;}
.xd0_c00052{left:472.133333pt;}
.x114_c00052{left:474.266667pt;}
.xbd_c00052{left:475.600000pt;}
.x10d_c00052{left:479.066667pt;}
.x59_c00052{left:481.200000pt;}
.x27_c00052{left:485.066667pt;}
.xd_c00052{left:488.533333pt;}
.xaa_c00052{left:489.600000pt;}
.xb4_c00052{left:490.666667pt;}
.xa5_c00052{left:491.600000pt;}
.xe3_c00052{left:492.800000pt;}
.x8c_c00052{left:494.133333pt;}
.xbe_c00052{left:496.400000pt;}
.x128_c00052{left:497.333333pt;}
.xfc_c00052{left:501.866667pt;}
.x11e_c00052{left:503.466667pt;}
.x35_c00052{left:504.800000pt;}
.x7c_c00052{left:506.666667pt;}
.x5a_c00052{left:507.733333pt;}
.x1d_c00052{left:509.466667pt;}
.xe_c00052{left:513.466667pt;}
.x40_c00052{left:514.666667pt;}
.x28_c00052{left:518.933333pt;}
.xd7_c00052{left:521.333333pt;}
.x5b_c00052{left:523.466667pt;}
.xe4_c00052{left:524.533333pt;}
.x10e_c00052{left:525.466667pt;}
.x7d_c00052{left:526.533333pt;}
.xd1_c00052{left:529.066667pt;}
.x8d_c00052{left:530.933333pt;}
.x41_c00052{left:533.200000pt;}
.x129_c00052{left:534.800000pt;}
.x29_c00052{left:535.866667pt;}
.x12f_c00052{left:542.400000pt;}
.x104_c00052{left:544.000000pt;}
.x1e_c00052{left:544.933333pt;}
.xe5_c00052{left:546.933333pt;}
.xbf_c00052{left:548.133333pt;}
.x8e_c00052{left:549.466667pt;}
.x4c_c00052{left:551.200000pt;}
.xab_c00052{left:553.866667pt;}
.xf1_c00052{left:556.133333pt;}
.x7e_c00052{left:559.466667pt;}
.xde_c00052{left:560.666667pt;}
.xb5_c00052{left:563.333333pt;}
.x36_c00052{left:564.266667pt;}
.xf_c00052{left:566.000000pt;}
.x42_c00052{left:567.733333pt;}
.x2a_c00052{left:569.200000pt;}
.x72_c00052{left:571.066667pt;}
.xfd_c00052{left:572.266667pt;}
.x4d_c00052{left:573.600000pt;}
.x9d_c00052{left:576.000000pt;}
.x105_c00052{left:576.933333pt;}
.x5c_c00052{left:580.133333pt;}
.x87_c00052{left:581.733333pt;}
.x8f_c00052{left:584.000000pt;}
.x2b_c00052{left:585.466667pt;}
.xcc_c00052{left:587.600000pt;}
.x37_c00052{left:589.866667pt;}
.xdf_c00052{left:591.066667pt;}
.x1f_c00052{left:592.266667pt;}
.x64_c00052{left:594.666667pt;}
.x10_c00052{left:596.400000pt;}
.x126_c00052{left:597.466667pt;}
.x11a_c00052{left:600.800000pt;}
.xac_c00052{left:603.466667pt;}
.x2c_c00052{left:604.400000pt;}
.xa6_c00052{left:606.000000pt;}
.x38_c00052{left:609.333333pt;}
.xb6_c00052{left:610.400000pt;}
.x43_c00052{left:611.866667pt;}
.x20_c00052{left:612.800000pt;}
.xea_c00052{left:613.866667pt;}
.x65_c00052{left:614.800000pt;}
.x73_c00052{left:616.800000pt;}
.x4e_c00052{left:617.733333pt;}
.x11_c00052{left:619.066667pt;}
.x11f_c00052{left:620.000000pt;}
.x90_c00052{left:623.733333pt;}
.xe6_c00052{left:625.733333pt;}
.x7f_c00052{left:627.333333pt;}
.x130_c00052{left:629.333333pt;}
.x10f_c00052{left:631.733333pt;}
.xa7_c00052{left:633.200000pt;}
.xc0_c00052{left:634.533333pt;}
.xd8_c00052{left:635.866667pt;}
.x4f_c00052{left:638.800000pt;}
.xad_c00052{left:640.533333pt;}
.xfe_c00052{left:642.266667pt;}
.x12_c00052{left:644.666667pt;}
.x106_c00052{left:646.000000pt;}
.x5d_c00052{left:648.000000pt;}
.x21_c00052{left:648.933333pt;}
.x91_c00052{left:650.000000pt;}
.x74_c00052{left:652.266667pt;}
.xb7_c00052{left:653.866667pt;}
.x120_c00052{left:656.133333pt;}
.xcd_c00052{left:658.266667pt;}
.xae_c00052{left:659.466667pt;}
.x44_c00052{left:660.533333pt;}
.xeb_c00052{left:662.133333pt;}
.x2d_c00052{left:664.533333pt;}
.xf2_c00052{left:666.666667pt;}
.x92_c00052{left:667.600000pt;}
.x50_c00052{left:669.200000pt;}
.xc1_c00052{left:670.666667pt;}
.xa8_c00052{left:671.866667pt;}
.x13_c00052{left:674.800000pt;}
.x39_c00052{left:676.533333pt;}
.x66_c00052{left:680.000000pt;}
.xec_c00052{left:681.600000pt;}
.xaf_c00052{left:682.533333pt;}
.x80_c00052{left:685.600000pt;}
.xd2_c00052{left:687.200000pt;}
.xb8_c00052{left:689.600000pt;}
.x75_c00052{left:690.933333pt;}
.x93_c00052{left:692.533333pt;}
.x2e_c00052{left:693.600000pt;}
.x131_c00052{left:694.533333pt;}
.xc2_c00052{left:697.600000pt;}
.x67_c00052{left:699.200000pt;}
.x12b_c00052{left:701.066667pt;}
.xce_c00052{left:702.400000pt;}
.x81_c00052{left:703.466667pt;}
.x9e_c00052{left:708.800000pt;}
.x5e_c00052{left:711.733333pt;}
.x51_c00052{left:719.066667pt;}
}





/* 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_c00053 {
    display:none;
  }
  .loading-indicator_c00053.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00053 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_c00053 { 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_c00053" -> "#page-container .classname_c00053")
 */
.pf_c00053 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00053 { /* 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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00053 { /* 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_c00053 { /* 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_c00053 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00053 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00053 {overflow:visible;}
  }
}
.c_c00053 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00053 { /* 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_c00053:after { /* webkit #35443 */
  content: '';
}
.t_c00053:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00053 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 */
}
.__c00053 { /* 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_c00053 { /* info for Javascript */
  display:none;
}
.l_c00053 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00053 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00053 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00053: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_c00053 {
    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_c00053.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00053.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_c00053 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00053{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.000000;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;}
.m2c_c00053{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m15_c00053{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m93_c00053{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m78_c00053{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m53_c00053{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m96_c00053{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c00053{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m46_c00053{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00053{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00053{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00053{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00053{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00053{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m76_c00053{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00053{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m54_c00053{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m29_c00053{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00053{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00053{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00053{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m90_c00053{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m25_c00053{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m98_c00053{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00053{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m43_c00053{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m97_c00053{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m61_c00053{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m32_c00053{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00053{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mc_c00053{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m55_c00053{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m38_c00053{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00053{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m74_c00053{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00053{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m40_c00053{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m67_c00053{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m16_c00053{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00053{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m79_c00053{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m36_c00053{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00053{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00053{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m14_c00053{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00053{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00053{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m26_c00053{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00053{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m66_c00053{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m88_c00053{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00053{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m94_c00053{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m57_c00053{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00053{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m75_c00053{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m35_c00053{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00053{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m19_c00053{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00053{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m45_c00053{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00053{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00053{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00053{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00053{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00053{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m31_c00053{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00053{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m50_c00053{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m71_c00053{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m81_c00053{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00053{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00053{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m82_c00053{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m59_c00053{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00053{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m87_c00053{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m21_c00053{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m92_c00053{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m77_c00053{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00053{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m42_c00053{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8_c00053{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00053{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5_c00053{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00053{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00053{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m20_c00053{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m12_c00053{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00053{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00053{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00053{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00053{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00053{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00053{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00053{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00053{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m91_c00053{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00053{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m83_c00053{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c00053{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00053{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00053{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m69_c00053{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00053{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m60_c00053{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m51_c00053{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m47_c00053{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m85_c00053{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m41_c00053{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00053{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mf_c00053{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m70_c00053{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m58_c00053{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m52_c00053{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00053{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00053{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m72_c00053{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m63_c00053{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00053{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4_c00053{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m73_c00053{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00053{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m34_c00053{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00053{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00053{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb_c00053{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00053{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00053{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);}
.m33_c00053{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m64_c00053{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m23_c00053{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m44_c00053{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m0_c00053{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00053{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3_c00053{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00053{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m37_c00053{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00053{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00053{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00053{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1_c00053{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00053{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00053{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m89_c00053{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.md_c00053{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m39_c00053{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00053{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m27_c00053{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00053{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m56_c00053{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m86_c00053{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m62_c00053{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00053{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00053{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00053{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{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__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00053{word-spacing:0.000000px;}
.ws2_c00053{word-spacing:2.619048px;}
.ws9_c00053{word-spacing:6.527778px;}
.ws8_c00053{word-spacing:6.885246px;}
.wsa_c00053{word-spacing:7.631579px;}
.ws3_c00053{word-spacing:8.529412px;}
.ws4_c00053{word-spacing:10.277778px;}
.ws7_c00053{word-spacing:13.194444px;}
.ws6_c00053{word-spacing:13.787879px;}
.ws5_c00053{word-spacing:17.352941px;}
.ws0_c00053{word-spacing:18.194444px;}
.ws1_c00053{word-spacing:19.655172px;}
.fc0_c00053{color:transparent;}
.fs0_c00053{font-size:60.000000px;}
.y0_c00053{bottom:0.000000px;}
.y2c_c00053{bottom:150.450000px;}
.y2b_c00053{bottom:165.900000px;}
.y2a_c00053{bottom:208.800000px;}
.y29_c00053{bottom:228.900000px;}
.y28_c00053{bottom:249.900000px;}
.y27_c00053{bottom:268.650000px;}
.y26_c00053{bottom:288.450000px;}
.y25_c00053{bottom:309.000000px;}
.y24_c00053{bottom:329.100000px;}
.y23_c00053{bottom:348.900000px;}
.y22_c00053{bottom:368.700000px;}
.y21_c00053{bottom:388.800000px;}
.y20_c00053{bottom:408.600000px;}
.y1f_c00053{bottom:428.400000px;}
.y1e_c00053{bottom:447.900000px;}
.y1d_c00053{bottom:467.250000px;}
.y1c_c00053{bottom:487.800000px;}
.y1b_c00053{bottom:507.900000px;}
.y1a_c00053{bottom:527.400000px;}
.y19_c00053{bottom:547.200000px;}
.y18_c00053{bottom:567.000000px;}
.y17_c00053{bottom:586.800000px;}
.y16_c00053{bottom:606.900000px;}
.y15_c00053{bottom:626.400000px;}
.y14_c00053{bottom:646.200000px;}
.y13_c00053{bottom:666.300000px;}
.y12_c00053{bottom:686.100000px;}
.y11_c00053{bottom:706.200000px;}
.y10_c00053{bottom:726.000000px;}
.yf_c00053{bottom:745.500000px;}
.ye_c00053{bottom:766.050000px;}
.yd_c00053{bottom:785.850000px;}
.yc_c00053{bottom:805.650000px;}
.yb_c00053{bottom:825.450000px;}
.ya_c00053{bottom:845.250000px;}
.y9_c00053{bottom:865.050000px;}
.y8_c00053{bottom:884.850000px;}
.y7_c00053{bottom:904.350000px;}
.y6_c00053{bottom:924.150000px;}
.y5_c00053{bottom:944.250000px;}
.y4_c00053{bottom:963.750000px;}
.y3_c00053{bottom:983.850000px;}
.y2_c00053{bottom:1003.350000px;}
.y1_c00053{bottom:1041.150000px;}
.h2_c00053{height:60.000000px;}
.h1_c00053{height:1167.000000px;}
.h0_c00053{height:1167.119934px;}
.w0_c00053{width:913.320007px;}
.w1_c00053{width:913.500000px;}
.x0_c00053{left:0.000000px;}
.x12a_c00053{left:98.250000px;}
.x11c_c00053{left:99.750000px;}
.x10a_c00053{left:100.950000px;}
.x100_c00053{left:102.000000px;}
.xee_c00053{left:103.050000px;}
.x66_c00053{left:104.100000px;}
.x4e_c00053{left:105.450000px;}
.x5_c00053{left:106.500000px;}
.x72_c00053{left:118.350000px;}
.x101_c00053{left:119.700000px;}
.x10d_c00053{left:121.200000px;}
.x98_c00053{left:123.450000px;}
.xa5_c00053{left:124.800000px;}
.x3d_c00053{left:126.750000px;}
.x12b_c00053{left:130.650000px;}
.xb3_c00053{left:132.300000px;}
.x9b_c00053{left:134.700000px;}
.x6_c00053{left:136.800000px;}
.x118_c00053{left:138.150000px;}
.x78_c00053{left:143.550000px;}
.x15_c00053{left:147.000000px;}
.x3e_c00053{left:150.150000px;}
.x22_c00053{left:153.000000px;}
.xa6_c00053{left:154.350000px;}
.x73_c00053{left:156.900000px;}
.x67_c00053{left:159.900000px;}
.xd0_c00053{left:161.400000px;}
.xc7_c00053{left:165.450000px;}
.xdf_c00053{left:166.650000px;}
.x106_c00053{left:168.450000px;}
.x16_c00053{left:171.150000px;}
.xfc_c00053{left:172.350000px;}
.x23_c00053{left:174.300000px;}
.x9c_c00053{left:176.850000px;}
.xe6_c00053{left:177.900000px;}
.x3f_c00053{left:178.950000px;}
.x68_c00053{left:180.450000px;}
.x4f_c00053{left:182.400000px;}
.x90_c00053{left:184.950000px;}
.x124_c00053{left:187.800000px;}
.xfd_c00053{left:188.850000px;}
.xae_c00053{left:191.250000px;}
.x111_c00053{left:193.050000px;}
.x84_c00053{left:195.900000px;}
.xbe_c00053{left:199.050000px;}
.x2d_c00053{left:200.550000px;}
.xef_c00053{left:202.050000px;}
.xb4_c00053{left:203.250000px;}
.xa7_c00053{left:205.050000px;}
.x7_c00053{left:206.250000px;}
.x107_c00053{left:208.050000px;}
.x17_c00053{left:211.500000px;}
.xe7_c00053{left:214.650000px;}
.x127_c00053{left:219.300000px;}
.x69_c00053{left:220.350000px;}
.x85_c00053{left:221.400000px;}
.x135_c00053{left:225.150000px;}
.x8_c00053{left:227.100000px;}
.xe0_c00053{left:230.400000px;}
.xb5_c00053{left:232.800000px;}
.x50_c00053{left:234.600000px;}
.xd8_c00053{left:236.850000px;}
.x40_c00053{left:238.050000px;}
.x5b_c00053{left:240.450000px;}
.xbf_c00053{left:242.250000px;}
.xe8_c00053{left:243.750000px;}
.x6a_c00053{left:245.850000px;}
.x2e_c00053{left:248.850000px;}
.xe1_c00053{left:251.700000px;}
.x102_c00053{left:252.900000px;}
.xc8_c00053{left:255.750000px;}
.x18_c00053{left:256.800000px;}
.x119_c00053{left:258.300000px;}
.x41_c00053{left:259.950000px;}
.x9_c00053{left:261.000000px;}
.x5c_c00053{left:263.850000px;}
.x79_c00053{left:267.300000px;}
.xa8_c00053{left:268.800000px;}
.xb6_c00053{left:271.650000px;}
.x11a_c00053{left:275.250000px;}
.xaf_c00053{left:277.200000px;}
.x24_c00053{left:279.000000px;}
.x2f_c00053{left:282.750000px;}
.x112_c00053{left:284.100000px;}
.x136_c00053{left:285.300000px;}
.xf6_c00053{left:286.350000px;}
.x42_c00053{left:288.750000px;}
.x19_c00053{left:291.000000px;}
.x7a_c00053{left:293.250000px;}
.x108_c00053{left:294.450000px;}
.xf0_c00053{left:296.400000px;}
.xa9_c00053{left:297.600000px;}
.xb7_c00053{left:298.950000px;}
.x113_c00053{left:300.000000px;}
.xa_c00053{left:302.400000px;}
.x6b_c00053{left:304.950000px;}
.xc9_c00053{left:306.900000px;}
.x103_c00053{left:308.700000px;}
.x9d_c00053{left:310.350000px;}
.x99_c00053{left:311.700000px;}
.x30_c00053{left:314.100000px;}
.xd1_c00053{left:315.150000px;}
.x91_c00053{left:316.350000px;}
.x51_c00053{left:322.500000px;}
.x1a_c00053{left:325.950000px;}
.xca_c00053{left:327.450000px;}
.xb8_c00053{left:329.550000px;}
.xb0_c00053{left:333.750000px;}
.x31_c00053{left:335.700000px;}
.x6c_c00053{left:337.350000px;}
.x9a_c00053{left:339.750000px;}
.x25_c00053{left:342.000000px;}
.x43_c00053{left:343.050000px;}
.xb_c00053{left:344.100000px;}
.x12c_c00053{left:345.450000px;}
.x86_c00053{left:348.900000px;}
.x11b_c00053{left:350.850000px;}
.x9e_c00053{left:353.550000px;}
.x74_c00053{left:357.150000px;}
.x10e_c00053{left:358.950000px;}
.x92_c00053{left:361.050000px;}
.x52_c00053{left:362.100000px;}
.x1b_c00053{left:364.050000px;}
.x6d_c00053{left:366.150000px;}
.xc_c00053{left:367.200000px;}
.x32_c00053{left:369.150000px;}
.x11d_c00053{left:371.850000px;}
.x1_c00053{left:375.150000px;}
.x44_c00053{left:376.200000px;}
.xc0_c00053{left:377.250000px;}
.xb9_c00053{left:380.250000px;}
.xe9_c00053{left:382.200000px;}
.x87_c00053{left:383.400000px;}
.xf1_c00053{left:386.700000px;}
.x53_c00053{left:388.350000px;}
.xd_c00053{left:389.850000px;}
.x5d_c00053{left:391.950000px;}
.x104_c00053{left:394.350000px;}
.x26_c00053{left:397.500000px;}
.xc1_c00053{left:399.600000px;}
.x1c_c00053{left:401.100000px;}
.x93_c00053{left:402.450000px;}
.xd9_c00053{left:403.950000px;}
.xaa_c00053{left:405.600000px;}
.x130_c00053{left:409.500000px;}
.xf7_c00053{left:411.600000px;}
.x45_c00053{left:414.000000px;}
.x11e_c00053{left:415.800000px;}
.x27_c00053{left:418.050000px;}
.x54_c00053{left:420.000000px;}
.xd2_c00053{left:421.800000px;}
.x33_c00053{left:423.450000px;}
.xea_c00053{left:425.700000px;}
.x2_c00053{left:428.100000px;}
.xf2_c00053{left:429.600000px;}
.xf8_c00053{left:430.650000px;}
.x7b_c00053{left:433.350000px;}
.xfe_c00053{left:440.100000px;}
.x6e_c00053{left:441.450000px;}
.xe_c00053{left:443.850000px;}
.xeb_c00053{left:447.000000px;}
.x88_c00053{left:450.000000px;}
.x3_c00053{left:451.200000px;}
.xab_c00053{left:453.900000px;}
.x9f_c00053{left:455.850000px;}
.x55_c00053{left:457.500000px;}
.x46_c00053{left:459.300000px;}
.xf_c00053{left:462.900000px;}
.x5e_c00053{left:465.000000px;}
.x75_c00053{left:468.300000px;}
.x10b_c00053{left:469.350000px;}
.x1d_c00053{left:472.350000px;}
.xf9_c00053{left:474.150000px;}
.x109_c00053{left:476.850000px;}
.xd3_c00053{left:478.350000px;}
.x34_c00053{left:483.150000px;}
.x5f_c00053{left:486.900000px;}
.x125_c00053{left:488.550000px;}
.x47_c00053{left:490.950000px;}
.xba_c00053{left:493.350000px;}
.xb1_c00053{left:495.300000px;}
.x56_c00053{left:497.400000px;}
.x131_c00053{left:498.450000px;}
.x7c_c00053{left:499.650000px;}
.x89_c00053{left:501.450000px;}
.x94_c00053{left:503.250000px;}
.xc2_c00053{left:504.300000px;}
.x35_c00053{left:506.250000px;}
.x28_c00053{left:508.050000px;}
.xcb_c00053{left:511.350000px;}
.xa0_c00053{left:513.000000px;}
.x48_c00053{left:514.050000px;}
.x76_c00053{left:519.450000px;}
.xbb_c00053{left:521.400000px;}
.xfa_c00053{left:523.800000px;}
.xc3_c00053{left:524.850000px;}
.x7d_c00053{left:526.650000px;}
.x57_c00053{left:528.300000px;}
.x29_c00053{left:529.650000px;}
.x10_c00053{left:531.300000px;}
.xe2_c00053{left:532.500000px;}
.x12d_c00053{left:534.450000px;}
.x60_c00053{left:537.600000px;}
.xcc_c00053{left:539.850000px;}
.x8a_c00053{left:543.600000px;}
.xf3_c00053{left:545.700000px;}
.x132_c00053{left:547.050000px;}
.x36_c00053{left:549.150000px;}
.xa1_c00053{left:550.800000px;}
.x11_c00053{left:553.650000px;}
.x49_c00053{left:555.150000px;}
.x7e_c00053{left:556.200000px;}
.x8b_c00053{left:558.300000px;}
.xda_c00053{left:559.950000px;}
.x126_c00053{left:561.600000px;}
.x58_c00053{left:567.600000px;}
.x95_c00053{left:569.400000px;}
.x2a_c00053{left:572.100000px;}
.xa2_c00053{left:573.150000px;}
.xf4_c00053{left:574.800000px;}
.x121_c00053{left:576.300000px;}
.xcd_c00053{left:577.650000px;}
.x6f_c00053{left:578.850000px;}
.x61_c00053{left:580.800000px;}
.x4a_c00053{left:582.150000px;}
.x37_c00053{left:587.700000px;}
.x114_c00053{left:589.200000px;}
.xdb_c00053{left:590.550000px;}
.xb2_c00053{left:592.950000px;}
.x1e_c00053{left:596.550000px;}
.xc4_c00053{left:598.650000px;}
.xe3_c00053{left:600.900000px;}
.x12_c00053{left:601.950000px;}
.x137_c00053{left:603.450000px;}
.xce_c00053{left:604.950000px;}
.x105_c00053{left:607.050000px;}
.x62_c00053{left:608.850000px;}
.x8c_c00053{left:611.550000px;}
.x10f_c00053{left:612.750000px;}
.x138_c00053{left:614.550000px;}
.x115_c00053{left:615.900000px;}
.xd4_c00053{left:617.250000px;}
.x1f_c00053{left:619.950000px;}
.x59_c00053{left:622.950000px;}
.x7f_c00053{left:624.300000px;}
.x96_c00053{left:626.700000px;}
.x4b_c00053{left:629.250000px;}
.x122_c00053{left:632.400000px;}
.x12e_c00053{left:636.300000px;}
.x133_c00053{left:637.350000px;}
.x13_c00053{left:638.700000px;}
.x38_c00053{left:640.200000px;}
.x110_c00053{left:641.250000px;}
.xdc_c00053{left:642.450000px;}
.x80_c00053{left:646.200000px;}
.xd5_c00053{left:647.850000px;}
.xec_c00053{left:648.900000px;}
.x63_c00053{left:650.550000px;}
.xf5_c00053{left:651.900000px;}
.x116_c00053{left:654.000000px;}
.xbc_c00053{left:657.000000px;}
.xac_c00053{left:658.050000px;}
.x39_c00053{left:661.800000px;}
.xe4_c00053{left:663.600000px;}
.x14_c00053{left:664.650000px;}
.x10c_c00053{left:665.850000px;}
.xa3_c00053{left:666.900000px;}
.xfb_c00053{left:668.550000px;}
.x4c_c00053{left:672.450000px;}
.x11f_c00053{left:674.250000px;}
.x81_c00053{left:675.750000px;}
.x8d_c00053{left:678.900000px;}
.x97_c00053{left:679.950000px;}
.x2b_c00053{left:682.650000px;}
.xcf_c00053{left:684.150000px;}
.xd6_c00053{left:687.150000px;}
.x3a_c00053{left:689.850000px;}
.x64_c00053{left:693.000000px;}
.x4d_c00053{left:695.550000px;}
.x8e_c00053{left:696.600000px;}
.x120_c00053{left:699.450000px;}
.x123_c00053{left:700.800000px;}
.xdd_c00053{left:702.600000px;}
.x117_c00053{left:703.650000px;}
.xff_c00053{left:704.700000px;}
.x70_c00053{left:708.000000px;}
.x20_c00053{left:709.200000px;}
.x77_c00053{left:711.300000px;}
.xc5_c00053{left:713.850000px;}
.xbd_c00053{left:716.700000px;}
.xa4_c00053{left:717.750000px;}
.xad_c00053{left:718.950000px;}
.x128_c00053{left:720.000000px;}
.x8f_c00053{left:722.550000px;}
.x134_c00053{left:724.200000px;}
.x71_c00053{left:725.250000px;}
.x5a_c00053{left:726.600000px;}
.x82_c00053{left:728.700000px;}
.xed_c00053{left:731.250000px;}
.x3b_c00053{left:734.100000px;}
.x65_c00053{left:735.150000px;}
.xde_c00053{left:736.500000px;}
.x21_c00053{left:739.800000px;}
.xd7_c00053{left:741.150000px;}
.x2c_c00053{left:743.850000px;}
.x3c_c00053{left:745.200000px;}
.x129_c00053{left:746.250000px;}
.x83_c00053{left:748.500000px;}
.x12f_c00053{left:750.000000px;}
.x4_c00053{left:755.100000px;}
.xe5_c00053{left:760.800000px;}
.xc6_c00053{left:764.550000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.wsb_c00053{word-spacing:0.000000pt;}
.ws2_c00053{word-spacing:2.328042pt;}
.ws9_c00053{word-spacing:5.802469pt;}
.ws8_c00053{word-spacing:6.120219pt;}
.wsa_c00053{word-spacing:6.783626pt;}
.ws3_c00053{word-spacing:7.581699pt;}
.ws4_c00053{word-spacing:9.135802pt;}
.ws7_c00053{word-spacing:11.728395pt;}
.ws6_c00053{word-spacing:12.255892pt;}
.ws5_c00053{word-spacing:15.424837pt;}
.ws0_c00053{word-spacing:16.172840pt;}
.ws1_c00053{word-spacing:17.471264pt;}
.fs0_c00053{font-size:53.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y2c_c00053{bottom:133.733333pt;}
.y2b_c00053{bottom:147.466667pt;}
.y2a_c00053{bottom:185.600000pt;}
.y29_c00053{bottom:203.466667pt;}
.y28_c00053{bottom:222.133333pt;}
.y27_c00053{bottom:238.800000pt;}
.y26_c00053{bottom:256.400000pt;}
.y25_c00053{bottom:274.666667pt;}
.y24_c00053{bottom:292.533333pt;}
.y23_c00053{bottom:310.133333pt;}
.y22_c00053{bottom:327.733333pt;}
.y21_c00053{bottom:345.600000pt;}
.y20_c00053{bottom:363.200000pt;}
.y1f_c00053{bottom:380.800000pt;}
.y1e_c00053{bottom:398.133333pt;}
.y1d_c00053{bottom:415.333333pt;}
.y1c_c00053{bottom:433.600000pt;}
.y1b_c00053{bottom:451.466667pt;}
.y1a_c00053{bottom:468.800000pt;}
.y19_c00053{bottom:486.400000pt;}
.y18_c00053{bottom:504.000000pt;}
.y17_c00053{bottom:521.600000pt;}
.y16_c00053{bottom:539.466667pt;}
.y15_c00053{bottom:556.800000pt;}
.y14_c00053{bottom:574.400000pt;}
.y13_c00053{bottom:592.266667pt;}
.y12_c00053{bottom:609.866667pt;}
.y11_c00053{bottom:627.733333pt;}
.y10_c00053{bottom:645.333333pt;}
.yf_c00053{bottom:662.666667pt;}
.ye_c00053{bottom:680.933333pt;}
.yd_c00053{bottom:698.533333pt;}
.yc_c00053{bottom:716.133333pt;}
.yb_c00053{bottom:733.733333pt;}
.ya_c00053{bottom:751.333333pt;}
.y9_c00053{bottom:768.933333pt;}
.y8_c00053{bottom:786.533333pt;}
.y7_c00053{bottom:803.866667pt;}
.y6_c00053{bottom:821.466667pt;}
.y5_c00053{bottom:839.333333pt;}
.y4_c00053{bottom:856.666667pt;}
.y3_c00053{bottom:874.533333pt;}
.y2_c00053{bottom:891.866667pt;}
.y1_c00053{bottom:925.466667pt;}
.h2_c00053{height:53.333333pt;}
.h1_c00053{height:1037.333333pt;}
.h0_c00053{height:1037.439941pt;}
.w0_c00053{width:811.840007pt;}
.w1_c00053{width:812.000000pt;}
.x0_c00053{left:0.000000pt;}
.x12a_c00053{left:87.333333pt;}
.x11c_c00053{left:88.666667pt;}
.x10a_c00053{left:89.733333pt;}
.x100_c00053{left:90.666667pt;}
.xee_c00053{left:91.600000pt;}
.x66_c00053{left:92.533333pt;}
.x4e_c00053{left:93.733333pt;}
.x5_c00053{left:94.666667pt;}
.x72_c00053{left:105.200000pt;}
.x101_c00053{left:106.400000pt;}
.x10d_c00053{left:107.733333pt;}
.x98_c00053{left:109.733333pt;}
.xa5_c00053{left:110.933333pt;}
.x3d_c00053{left:112.666667pt;}
.x12b_c00053{left:116.133333pt;}
.xb3_c00053{left:117.600000pt;}
.x9b_c00053{left:119.733333pt;}
.x6_c00053{left:121.600000pt;}
.x118_c00053{left:122.800000pt;}
.x78_c00053{left:127.600000pt;}
.x15_c00053{left:130.666667pt;}
.x3e_c00053{left:133.466667pt;}
.x22_c00053{left:136.000000pt;}
.xa6_c00053{left:137.200000pt;}
.x73_c00053{left:139.466667pt;}
.x67_c00053{left:142.133333pt;}
.xd0_c00053{left:143.466667pt;}
.xc7_c00053{left:147.066667pt;}
.xdf_c00053{left:148.133333pt;}
.x106_c00053{left:149.733333pt;}
.x16_c00053{left:152.133333pt;}
.xfc_c00053{left:153.200000pt;}
.x23_c00053{left:154.933333pt;}
.x9c_c00053{left:157.200000pt;}
.xe6_c00053{left:158.133333pt;}
.x3f_c00053{left:159.066667pt;}
.x68_c00053{left:160.400000pt;}
.x4f_c00053{left:162.133333pt;}
.x90_c00053{left:164.400000pt;}
.x124_c00053{left:166.933333pt;}
.xfd_c00053{left:167.866667pt;}
.xae_c00053{left:170.000000pt;}
.x111_c00053{left:171.600000pt;}
.x84_c00053{left:174.133333pt;}
.xbe_c00053{left:176.933333pt;}
.x2d_c00053{left:178.266667pt;}
.xef_c00053{left:179.600000pt;}
.xb4_c00053{left:180.666667pt;}
.xa7_c00053{left:182.266667pt;}
.x7_c00053{left:183.333333pt;}
.x107_c00053{left:184.933333pt;}
.x17_c00053{left:188.000000pt;}
.xe7_c00053{left:190.800000pt;}
.x127_c00053{left:194.933333pt;}
.x69_c00053{left:195.866667pt;}
.x85_c00053{left:196.800000pt;}
.x135_c00053{left:200.133333pt;}
.x8_c00053{left:201.866667pt;}
.xe0_c00053{left:204.800000pt;}
.xb5_c00053{left:206.933333pt;}
.x50_c00053{left:208.533333pt;}
.xd8_c00053{left:210.533333pt;}
.x40_c00053{left:211.600000pt;}
.x5b_c00053{left:213.733333pt;}
.xbf_c00053{left:215.333333pt;}
.xe8_c00053{left:216.666667pt;}
.x6a_c00053{left:218.533333pt;}
.x2e_c00053{left:221.200000pt;}
.xe1_c00053{left:223.733333pt;}
.x102_c00053{left:224.800000pt;}
.xc8_c00053{left:227.333333pt;}
.x18_c00053{left:228.266667pt;}
.x119_c00053{left:229.600000pt;}
.x41_c00053{left:231.066667pt;}
.x9_c00053{left:232.000000pt;}
.x5c_c00053{left:234.533333pt;}
.x79_c00053{left:237.600000pt;}
.xa8_c00053{left:238.933333pt;}
.xb6_c00053{left:241.466667pt;}
.x11a_c00053{left:244.666667pt;}
.xaf_c00053{left:246.400000pt;}
.x24_c00053{left:248.000000pt;}
.x2f_c00053{left:251.333333pt;}
.x112_c00053{left:252.533333pt;}
.x136_c00053{left:253.600000pt;}
.xf6_c00053{left:254.533333pt;}
.x42_c00053{left:256.666667pt;}
.x19_c00053{left:258.666667pt;}
.x7a_c00053{left:260.666667pt;}
.x108_c00053{left:261.733333pt;}
.xf0_c00053{left:263.466667pt;}
.xa9_c00053{left:264.533333pt;}
.xb7_c00053{left:265.733333pt;}
.x113_c00053{left:266.666667pt;}
.xa_c00053{left:268.800000pt;}
.x6b_c00053{left:271.066667pt;}
.xc9_c00053{left:272.800000pt;}
.x103_c00053{left:274.400000pt;}
.x9d_c00053{left:275.866667pt;}
.x99_c00053{left:277.066667pt;}
.x30_c00053{left:279.200000pt;}
.xd1_c00053{left:280.133333pt;}
.x91_c00053{left:281.200000pt;}
.x51_c00053{left:286.666667pt;}
.x1a_c00053{left:289.733333pt;}
.xca_c00053{left:291.066667pt;}
.xb8_c00053{left:292.933333pt;}
.xb0_c00053{left:296.666667pt;}
.x31_c00053{left:298.400000pt;}
.x6c_c00053{left:299.866667pt;}
.x9a_c00053{left:302.000000pt;}
.x25_c00053{left:304.000000pt;}
.x43_c00053{left:304.933333pt;}
.xb_c00053{left:305.866667pt;}
.x12c_c00053{left:307.066667pt;}
.x86_c00053{left:310.133333pt;}
.x11b_c00053{left:311.866667pt;}
.x9e_c00053{left:314.266667pt;}
.x74_c00053{left:317.466667pt;}
.x10e_c00053{left:319.066667pt;}
.x92_c00053{left:320.933333pt;}
.x52_c00053{left:321.866667pt;}
.x1b_c00053{left:323.600000pt;}
.x6d_c00053{left:325.466667pt;}
.xc_c00053{left:326.400000pt;}
.x32_c00053{left:328.133333pt;}
.x11d_c00053{left:330.533333pt;}
.x1_c00053{left:333.466667pt;}
.x44_c00053{left:334.400000pt;}
.xc0_c00053{left:335.333333pt;}
.xb9_c00053{left:338.000000pt;}
.xe9_c00053{left:339.733333pt;}
.x87_c00053{left:340.800000pt;}
.xf1_c00053{left:343.733333pt;}
.x53_c00053{left:345.200000pt;}
.xd_c00053{left:346.533333pt;}
.x5d_c00053{left:348.400000pt;}
.x104_c00053{left:350.533333pt;}
.x26_c00053{left:353.333333pt;}
.xc1_c00053{left:355.200000pt;}
.x1c_c00053{left:356.533333pt;}
.x93_c00053{left:357.733333pt;}
.xd9_c00053{left:359.066667pt;}
.xaa_c00053{left:360.533333pt;}
.x130_c00053{left:364.000000pt;}
.xf7_c00053{left:365.866667pt;}
.x45_c00053{left:368.000000pt;}
.x11e_c00053{left:369.600000pt;}
.x27_c00053{left:371.600000pt;}
.x54_c00053{left:373.333333pt;}
.xd2_c00053{left:374.933333pt;}
.x33_c00053{left:376.400000pt;}
.xea_c00053{left:378.400000pt;}
.x2_c00053{left:380.533333pt;}
.xf2_c00053{left:381.866667pt;}
.xf8_c00053{left:382.800000pt;}
.x7b_c00053{left:385.200000pt;}
.xfe_c00053{left:391.200000pt;}
.x6e_c00053{left:392.400000pt;}
.xe_c00053{left:394.533333pt;}
.xeb_c00053{left:397.333333pt;}
.x88_c00053{left:400.000000pt;}
.x3_c00053{left:401.066667pt;}
.xab_c00053{left:403.466667pt;}
.x9f_c00053{left:405.200000pt;}
.x55_c00053{left:406.666667pt;}
.x46_c00053{left:408.266667pt;}
.xf_c00053{left:411.466667pt;}
.x5e_c00053{left:413.333333pt;}
.x75_c00053{left:416.266667pt;}
.x10b_c00053{left:417.200000pt;}
.x1d_c00053{left:419.866667pt;}
.xf9_c00053{left:421.466667pt;}
.x109_c00053{left:423.866667pt;}
.xd3_c00053{left:425.200000pt;}
.x34_c00053{left:429.466667pt;}
.x5f_c00053{left:432.800000pt;}
.x125_c00053{left:434.266667pt;}
.x47_c00053{left:436.400000pt;}
.xba_c00053{left:438.533333pt;}
.xb1_c00053{left:440.266667pt;}
.x56_c00053{left:442.133333pt;}
.x131_c00053{left:443.066667pt;}
.x7c_c00053{left:444.133333pt;}
.x89_c00053{left:445.733333pt;}
.x94_c00053{left:447.333333pt;}
.xc2_c00053{left:448.266667pt;}
.x35_c00053{left:450.000000pt;}
.x28_c00053{left:451.600000pt;}
.xcb_c00053{left:454.533333pt;}
.xa0_c00053{left:456.000000pt;}
.x48_c00053{left:456.933333pt;}
.x76_c00053{left:461.733333pt;}
.xbb_c00053{left:463.466667pt;}
.xfa_c00053{left:465.600000pt;}
.xc3_c00053{left:466.533333pt;}
.x7d_c00053{left:468.133333pt;}
.x57_c00053{left:469.600000pt;}
.x29_c00053{left:470.800000pt;}
.x10_c00053{left:472.266667pt;}
.xe2_c00053{left:473.333333pt;}
.x12d_c00053{left:475.066667pt;}
.x60_c00053{left:477.866667pt;}
.xcc_c00053{left:479.866667pt;}
.x8a_c00053{left:483.200000pt;}
.xf3_c00053{left:485.066667pt;}
.x132_c00053{left:486.266667pt;}
.x36_c00053{left:488.133333pt;}
.xa1_c00053{left:489.600000pt;}
.x11_c00053{left:492.133333pt;}
.x49_c00053{left:493.466667pt;}
.x7e_c00053{left:494.400000pt;}
.x8b_c00053{left:496.266667pt;}
.xda_c00053{left:497.733333pt;}
.x126_c00053{left:499.200000pt;}
.x58_c00053{left:504.533333pt;}
.x95_c00053{left:506.133333pt;}
.x2a_c00053{left:508.533333pt;}
.xa2_c00053{left:509.466667pt;}
.xf4_c00053{left:510.933333pt;}
.x121_c00053{left:512.266667pt;}
.xcd_c00053{left:513.466667pt;}
.x6f_c00053{left:514.533333pt;}
.x61_c00053{left:516.266667pt;}
.x4a_c00053{left:517.466667pt;}
.x37_c00053{left:522.400000pt;}
.x114_c00053{left:523.733333pt;}
.xdb_c00053{left:524.933333pt;}
.xb2_c00053{left:527.066667pt;}
.x1e_c00053{left:530.266667pt;}
.xc4_c00053{left:532.133333pt;}
.xe3_c00053{left:534.133333pt;}
.x12_c00053{left:535.066667pt;}
.x137_c00053{left:536.400000pt;}
.xce_c00053{left:537.733333pt;}
.x105_c00053{left:539.600000pt;}
.x62_c00053{left:541.200000pt;}
.x8c_c00053{left:543.600000pt;}
.x10f_c00053{left:544.666667pt;}
.x138_c00053{left:546.266667pt;}
.x115_c00053{left:547.466667pt;}
.xd4_c00053{left:548.666667pt;}
.x1f_c00053{left:551.066667pt;}
.x59_c00053{left:553.733333pt;}
.x7f_c00053{left:554.933333pt;}
.x96_c00053{left:557.066667pt;}
.x4b_c00053{left:559.333333pt;}
.x122_c00053{left:562.133333pt;}
.x12e_c00053{left:565.600000pt;}
.x133_c00053{left:566.533333pt;}
.x13_c00053{left:567.733333pt;}
.x38_c00053{left:569.066667pt;}
.x110_c00053{left:570.000000pt;}
.xdc_c00053{left:571.066667pt;}
.x80_c00053{left:574.400000pt;}
.xd5_c00053{left:575.866667pt;}
.xec_c00053{left:576.800000pt;}
.x63_c00053{left:578.266667pt;}
.xf5_c00053{left:579.466667pt;}
.x116_c00053{left:581.333333pt;}
.xbc_c00053{left:584.000000pt;}
.xac_c00053{left:584.933333pt;}
.x39_c00053{left:588.266667pt;}
.xe4_c00053{left:589.866667pt;}
.x14_c00053{left:590.800000pt;}
.x10c_c00053{left:591.866667pt;}
.xa3_c00053{left:592.800000pt;}
.xfb_c00053{left:594.266667pt;}
.x4c_c00053{left:597.733333pt;}
.x11f_c00053{left:599.333333pt;}
.x81_c00053{left:600.666667pt;}
.x8d_c00053{left:603.466667pt;}
.x97_c00053{left:604.400000pt;}
.x2b_c00053{left:606.800000pt;}
.xcf_c00053{left:608.133333pt;}
.xd6_c00053{left:610.800000pt;}
.x3a_c00053{left:613.200000pt;}
.x64_c00053{left:616.000000pt;}
.x4d_c00053{left:618.266667pt;}
.x8e_c00053{left:619.200000pt;}
.x120_c00053{left:621.733333pt;}
.x123_c00053{left:622.933333pt;}
.xdd_c00053{left:624.533333pt;}
.x117_c00053{left:625.466667pt;}
.xff_c00053{left:626.400000pt;}
.x70_c00053{left:629.333333pt;}
.x20_c00053{left:630.400000pt;}
.x77_c00053{left:632.266667pt;}
.xc5_c00053{left:634.533333pt;}
.xbd_c00053{left:637.066667pt;}
.xa4_c00053{left:638.000000pt;}
.xad_c00053{left:639.066667pt;}
.x128_c00053{left:640.000000pt;}
.x8f_c00053{left:642.266667pt;}
.x134_c00053{left:643.733333pt;}
.x71_c00053{left:644.666667pt;}
.x5a_c00053{left:645.866667pt;}
.x82_c00053{left:647.733333pt;}
.xed_c00053{left:650.000000pt;}
.x3b_c00053{left:652.533333pt;}
.x65_c00053{left:653.466667pt;}
.xde_c00053{left:654.666667pt;}
.x21_c00053{left:657.600000pt;}
.xd7_c00053{left:658.800000pt;}
.x2c_c00053{left:661.200000pt;}
.x3c_c00053{left:662.400000pt;}
.x129_c00053{left:663.333333pt;}
.x83_c00053{left:665.333333pt;}
.x12f_c00053{left:666.666667pt;}
.x4_c00053{left:671.200000pt;}
.xe5_c00053{left:676.266667pt;}
.xc6_c00053{left:679.600000pt;}
}





/* 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_c00054 {
    display:none;
  }
  .loading-indicator_c00054.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00054 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_c00054 { 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_c00054" -> "#page-container .classname_c00054")
 */
.pf_c00054 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00054 { /* 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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00054 { /* 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_c00054 { /* 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_c00054 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00054 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00054 {overflow:visible;}
  }
}
.c_c00054 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00054 { /* 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_c00054:after { /* webkit #35443 */
  content: '';
}
.t_c00054:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00054 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 */
}
.__c00054 { /* 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_c00054 { /* info for Javascript */
  display:none;
}
.l_c00054 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00054 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00054 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00054: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_c00054 {
    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_c00054.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00054.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_c00054 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00054{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00054;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.000000;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;}
.m27_c00054{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00054{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00054{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m25_c00054{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00054{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00054{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m36_c00054{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00054{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00054{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00054{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00054{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00054{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m17_c00054{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00054{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00054{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m56_c00054{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00054{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00054{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00054{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m67_c00054{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m49_c00054{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m68_c00054{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00054{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00054{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9_c00054{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00054{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m63_c00054{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m75_c00054{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00054{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m51_c00054{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m79_c00054{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m62_c00054{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00054{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m48_c00054{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m72_c00054{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00054{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m34_c00054{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m99_c00054{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00054{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m80_c00054{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00054{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4_c00054{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me_c00054{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00054{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5_c00054{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00054{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00054{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00054{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m64_c00054{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7_c00054{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m60_c00054{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00054{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m19_c00054{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00054{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00054{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m74_c00054{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m35_c00054{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m44_c00054{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc_c00054{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00054{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m52_c00054{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m83_c00054{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00054{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m58_c00054{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m86_c00054{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m82_c00054{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m18_c00054{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m85_c00054{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00054{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m29_c00054{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m76_c00054{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m14_c00054{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3_c00054{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00054{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00054{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00054{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m22_c00054{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m50_c00054{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00054{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m24_c00054{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m54_c00054{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m96_c00054{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma_c00054{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00054{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00054{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00054{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m87_c00054{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00054{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m30_c00054{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00054{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.mb_c00054{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00054{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m13_c00054{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00054{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m69_c00054{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00054{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00054{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00054{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md_c00054{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m45_c00054{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00054{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00054{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m77_c00054{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00054{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m81_c00054{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00054{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00054{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00054{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m84_c00054{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00054{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00054{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m65_c00054{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m42_c00054{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m38_c00054{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m21_c00054{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00054{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m20_c00054{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m41_c00054{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m57_c00054{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m55_c00054{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m94_c00054{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m37_c00054{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m40_c00054{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m31_c00054{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m73_c00054{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00054{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);}
.m91_c00054{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00054{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m39_c00054{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m53_c00054{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16_c00054{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00054{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m28_c00054{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00054{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m32_c00054{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m71_c00054{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00054{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00054{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m59_c00054{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00054{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11_c00054{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m66_c00054{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m89_c00054{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00054{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00054{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m15_c00054{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00054{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m78_c00054{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00054{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m93_c00054{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m97_c00054{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m98_c00054{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m70_c00054{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00054{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8_c00054{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00054{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m12_c00054{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00054{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m90_c00054{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00054{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m26_c00054{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00054{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00054{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00054{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00054{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m61_c00054{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00054{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m92_c00054{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00054{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00054{vertical-align:0.000000px;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{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__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00054{word-spacing:-8.452381px;}
.ws5_c00054{word-spacing:-7.926829px;}
.ws2_c00054{word-spacing:-7.500000px;}
.ws8_c00054{word-spacing:-6.463415px;}
.wsc_c00054{word-spacing:0.000000px;}
.ws0_c00054{word-spacing:1.693548px;}
.ws4_c00054{word-spacing:2.857143px;}
.ws3_c00054{word-spacing:5.138889px;}
.wsb_c00054{word-spacing:5.223214px;}
.ws7_c00054{word-spacing:7.763158px;}
.wsa_c00054{word-spacing:9.736842px;}
.ws6_c00054{word-spacing:10.138889px;}
.ws1_c00054{word-spacing:21.111111px;}
.fc0_c00054{color:transparent;}
.fs0_c00054{font-size:54.000000px;}
.fs1_c00054{font-size:60.000000px;}
.y0_c00054{bottom:0.000000px;}
.y2c_c00054{bottom:155.250000px;}
.y2b_c00054{bottom:175.050000px;}
.y2a_c00054{bottom:194.850000px;}
.y29_c00054{bottom:214.650000px;}
.y28_c00054{bottom:234.750000px;}
.y27_c00054{bottom:254.250000px;}
.y26_c00054{bottom:274.350000px;}
.y25_c00054{bottom:294.150000px;}
.y24_c00054{bottom:313.950000px;}
.y23_c00054{bottom:334.050000px;}
.y22_c00054{bottom:353.550000px;}
.y21_c00054{bottom:373.350000px;}
.y20_c00054{bottom:393.150000px;}
.y1f_c00054{bottom:412.950000px;}
.y1e_c00054{bottom:432.750000px;}
.y1d_c00054{bottom:452.400000px;}
.y1c_c00054{bottom:472.200000px;}
.y1b_c00054{bottom:492.000000px;}
.y1a_c00054{bottom:511.800000px;}
.y19_c00054{bottom:531.600000px;}
.y18_c00054{bottom:551.400000px;}
.y17_c00054{bottom:571.200000px;}
.y16_c00054{bottom:591.000000px;}
.y15_c00054{bottom:610.800000px;}
.y14_c00054{bottom:630.300000px;}
.y13_c00054{bottom:649.800000px;}
.y12_c00054{bottom:669.600000px;}
.y11_c00054{bottom:689.400000px;}
.y10_c00054{bottom:709.200000px;}
.yf_c00054{bottom:729.000000px;}
.ye_c00054{bottom:748.800000px;}
.yd_c00054{bottom:768.600000px;}
.yc_c00054{bottom:788.100000px;}
.yb_c00054{bottom:807.900000px;}
.ya_c00054{bottom:827.700000px;}
.y9_c00054{bottom:847.500000px;}
.y8_c00054{bottom:867.300000px;}
.y7_c00054{bottom:887.100000px;}
.y6_c00054{bottom:927.300000px;}
.y5_c00054{bottom:947.100000px;}
.y4_c00054{bottom:966.900000px;}
.y3_c00054{bottom:986.700000px;}
.y2_c00054{bottom:1006.500000px;}
.y1_c00054{bottom:1044.300000px;}
.h2_c00054{height:54.000000px;}
.h3_c00054{height:60.000000px;}
.h1_c00054{height:1167.000000px;}
.h0_c00054{height:1167.119934px;}
.w0_c00054{width:913.320007px;}
.w1_c00054{width:913.500000px;}
.x0_c00054{left:0.000000px;}
.x128_c00054{left:148.800000px;}
.xe5_c00054{left:149.850000px;}
.x70_c00054{left:150.900000px;}
.x4_c00054{left:151.950000px;}
.x1_c00054{left:153.000000px;}
.x125_c00054{left:161.250000px;}
.x36_c00054{left:163.500000px;}
.x88_c00054{left:165.750000px;}
.x92_c00054{left:174.300000px;}
.xad_c00054{left:176.250000px;}
.xf9_c00054{left:177.300000px;}
.xb6_c00054{left:178.350000px;}
.x138_c00054{left:179.700000px;}
.x71_c00054{left:180.750000px;}
.xbe_c00054{left:181.800000px;}
.x15_c00054{left:183.000000px;}
.x12d_c00054{left:184.800000px;}
.x13e_c00054{left:186.750000px;}
.xe6_c00054{left:187.950000px;}
.xa3_c00054{left:189.900000px;}
.x7c_c00054{left:191.550000px;}
.x37_c00054{left:194.400000px;}
.xb7_c00054{left:196.350000px;}
.xde_c00054{left:199.350000px;}
.xfa_c00054{left:200.700000px;}
.x115_c00054{left:201.900000px;}
.x25_c00054{left:203.100000px;}
.xd0_c00054{left:204.750000px;}
.x5_c00054{left:208.050000px;}
.x129_c00054{left:209.700000px;}
.x55_c00054{left:211.200000px;}
.x4f_c00054{left:212.400000px;}
.x120_c00054{left:213.450000px;}
.xbf_c00054{left:214.950000px;}
.x60_c00054{left:216.150000px;}
.x7d_c00054{left:219.300000px;}
.x10d_c00054{left:220.950000px;}
.xc7_c00054{left:223.200000px;}
.x26_c00054{left:224.700000px;}
.x89_c00054{left:227.250000px;}
.x61_c00054{left:231.300000px;}
.x38_c00054{left:235.050000px;}
.x56_c00054{left:236.100000px;}
.xae_c00054{left:237.150000px;}
.x93_c00054{left:238.800000px;}
.x12e_c00054{left:240.600000px;}
.xb8_c00054{left:243.150000px;}
.x16_c00054{left:244.200000px;}
.xa4_c00054{left:245.700000px;}
.x105_c00054{left:246.900000px;}
.x10e_c00054{left:249.450000px;}
.x39_c00054{left:252.300000px;}
.xc8_c00054{left:254.100000px;}
.x46_c00054{left:255.750000px;}
.xe7_c00054{left:258.900000px;}
.x94_c00054{left:261.900000px;}
.xc0_c00054{left:263.550000px;}
.x72_c00054{left:266.400000px;}
.xd1_c00054{left:269.550000px;}
.x8a_c00054{left:270.750000px;}
.x10a_c00054{left:272.400000px;}
.x116_c00054{left:273.750000px;}
.x17_c00054{left:275.100000px;}
.xbd_c00054{left:277.350000px;}
.x6_c00054{left:279.000000px;}
.x121_c00054{left:280.350000px;}
.xf3_c00054{left:282.750000px;}
.x50_c00054{left:286.200000px;}
.x7e_c00054{left:290.100000px;}
.x27_c00054{left:291.300000px;}
.xa5_c00054{left:292.500000px;}
.x68_c00054{left:296.400000px;}
.x7_c00054{left:298.050000px;}
.x3a_c00054{left:299.700000px;}
.x95_c00054{left:300.750000px;}
.x11a_c00054{left:303.450000px;}
.xc9_c00054{left:305.250000px;}
.x57_c00054{left:307.050000px;}
.x62_c00054{left:311.250000px;}
.xd6_c00054{left:315.000000px;}
.x96_c00054{left:316.650000px;}
.x18_c00054{left:318.300000px;}
.x10f_c00054{left:320.100000px;}
.x7f_c00054{left:321.450000px;}
.x69_c00054{left:323.400000px;}
.x3b_c00054{left:324.900000px;}
.x8_c00054{left:326.100000px;}
.x58_c00054{left:330.450000px;}
.xff_c00054{left:334.050000px;}
.xb9_c00054{left:336.750000px;}
.xa6_c00054{left:337.800000px;}
.xd9_c00054{left:339.000000px;}
.xaf_c00054{left:340.050000px;}
.x47_c00054{left:342.900000px;}
.xca_c00054{left:344.100000px;}
.x110_c00054{left:345.600000px;}
.x28_c00054{left:347.100000px;}
.x19_c00054{left:348.150000px;}
.x10b_c00054{left:350.400000px;}
.x73_c00054{left:352.800000px;}
.x80_c00054{left:353.850000px;}
.x3c_c00054{left:356.250000px;}
.x100_c00054{left:358.650000px;}
.x97_c00054{left:359.850000px;}
.xec_c00054{left:362.100000px;}
.x11b_c00054{left:363.600000px;}
.xb0_c00054{left:364.950000px;}
.x29_c00054{left:366.900000px;}
.x59_c00054{left:368.250000px;}
.xe8_c00054{left:370.050000px;}
.x12a_c00054{left:371.250000px;}
.x3d_c00054{left:375.300000px;}
.x8b_c00054{left:378.000000px;}
.x98_c00054{left:379.650000px;}
.x74_c00054{left:382.650000px;}
.x1a_c00054{left:384.450000px;}
.xfb_c00054{left:385.800000px;}
.x13b_c00054{left:386.850000px;}
.x12f_c00054{left:389.250000px;}
.x9_c00054{left:390.600000px;}
.x10c_c00054{left:393.000000px;}
.xed_c00054{left:394.500000px;}
.x2a_c00054{left:395.700000px;}
.x122_c00054{left:399.450000px;}
.x2_c00054{left:401.100000px;}
.x3e_c00054{left:403.050000px;}
.x111_c00054{left:404.250000px;}
.x48_c00054{left:405.600000px;}
.x13c_c00054{left:407.700000px;}
.x81_c00054{left:410.700000px;}
.x99_c00054{left:412.500000px;}
.xb1_c00054{left:413.550000px;}
.xdf_c00054{left:415.050000px;}
.xa_c00054{left:416.100000px;}
.x6a_c00054{left:418.500000px;}
.xf4_c00054{left:419.550000px;}
.xd7_c00054{left:421.650000px;}
.xc1_c00054{left:423.450000px;}
.x101_c00054{left:424.950000px;}
.x1b_c00054{left:427.650000px;}
.x6b_c00054{left:430.350000px;}
.xe0_c00054{left:433.050000px;}
.xb_c00054{left:434.400000px;}
.x82_c00054{left:436.200000px;}
.x117_c00054{left:437.550000px;}
.x2b_c00054{left:439.650000px;}
.x8c_c00054{left:440.700000px;}
.xcb_c00054{left:442.050000px;}
.x1c_c00054{left:445.950000px;}
.x5a_c00054{left:450.300000px;}
.x9a_c00054{left:451.350000px;}
.xee_c00054{left:452.400000px;}
.x12b_c00054{left:455.400000px;}
.xa7_c00054{left:456.600000px;}
.x2c_c00054{left:457.950000px;}
.x112_c00054{left:460.800000px;}
.xc_c00054{left:462.450000px;}
.xda_c00054{left:463.650000px;}
.xd2_c00054{left:465.900000px;}
.x75_c00054{left:469.800000px;}
.x1d_c00054{left:471.150000px;}
.x11c_c00054{left:472.800000px;}
.x130_c00054{left:474.600000px;}
.x9b_c00054{left:476.850000px;}
.x123_c00054{left:478.650000px;}
.xcc_c00054{left:481.350000px;}
.xa8_c00054{left:484.650000px;}
.x102_c00054{left:490.200000px;}
.xef_c00054{left:492.000000px;}
.x2d_c00054{left:493.950000px;}
.x126_c00054{left:495.300000px;}
.x11d_c00054{left:497.250000px;}
.x3_c00054{left:498.600000px;}
.x133_c00054{left:499.800000px;}
.x3f_c00054{left:501.000000px;}
.x106_c00054{left:503.100000px;}
.x49_c00054{left:505.950000px;}
.xf5_c00054{left:507.150000px;}
.x1e_c00054{left:508.650000px;}
.xfc_c00054{left:509.700000px;}
.xe1_c00054{left:511.500000px;}
.x2e_c00054{left:513.000000px;}
.x134_c00054{left:515.700000px;}
.x9c_c00054{left:517.200000px;}
.x51_c00054{left:518.700000px;}
.x83_c00054{left:520.800000px;}
.x113_c00054{left:522.300000px;}
.x2f_c00054{left:524.850000px;}
.xa9_c00054{left:527.550000px;}
.x76_c00054{left:529.950000px;}
.xe2_c00054{left:531.600000px;}
.x9d_c00054{left:534.150000px;}
.xd_c00054{left:537.300000px;}
.x118_c00054{left:538.800000px;}
.xcd_c00054{left:540.750000px;}
.xba_c00054{left:541.950000px;}
.x63_c00054{left:544.800000px;}
.x1f_c00054{left:547.200000px;}
.xe3_c00054{left:549.600000px;}
.x5b_c00054{left:551.100000px;}
.xe_c00054{left:554.250000px;}
.x30_c00054{left:556.950000px;}
.x9e_c00054{left:559.350000px;}
.xdb_c00054{left:562.350000px;}
.x40_c00054{left:564.750000px;}
.x136_c00054{left:566.400000px;}
.xfd_c00054{left:567.750000px;}
.x13d_c00054{left:571.350000px;}
.x107_c00054{left:573.300000px;}
.x77_c00054{left:576.000000px;}
.xf6_c00054{left:578.400000px;}
.x64_c00054{left:579.750000px;}
.xd8_c00054{left:580.800000px;}
.x131_c00054{left:581.850000px;}
.x6c_c00054{left:583.650000px;}
.x31_c00054{left:586.500000px;}
.x4a_c00054{left:589.200000px;}
.xdc_c00054{left:590.400000px;}
.x103_c00054{left:591.750000px;}
.xf_c00054{left:594.900000px;}
.xc2_c00054{left:598.800000px;}
.x8d_c00054{left:600.750000px;}
.xb2_c00054{left:601.800000px;}
.xf0_c00054{left:604.650000px;}
.x20_c00054{left:606.300000px;}
.x12c_c00054{left:609.900000px;}
.x78_c00054{left:611.700000px;}
.x10_c00054{left:613.200000px;}
.x4b_c00054{left:616.950000px;}
.x5c_c00054{left:619.200000px;}
.xfe_c00054{left:623.550000px;}
.x137_c00054{left:625.500000px;}
.x127_c00054{left:626.550000px;}
.x32_c00054{left:627.900000px;}
.x108_c00054{left:629.400000px;}
.x84_c00054{left:631.350000px;}
.x11e_c00054{left:634.050000px;}
.x119_c00054{left:635.250000px;}
.xc3_c00054{left:636.600000px;}
.x6d_c00054{left:637.950000px;}
.x5d_c00054{left:640.800000px;}
.x21_c00054{left:642.000000px;}
.x65_c00054{left:644.550000px;}
.xbb_c00054{left:646.350000px;}
.x41_c00054{left:648.300000px;}
.x114_c00054{left:651.450000px;}
.xe4_c00054{left:652.500000px;}
.xf1_c00054{left:655.800000px;}
.x66_c00054{left:656.850000px;}
.x109_c00054{left:658.200000px;}
.x4c_c00054{left:661.950000px;}
.xaa_c00054{left:664.050000px;}
.x11_c00054{left:665.400000px;}
.x8e_c00054{left:669.150000px;}
.x42_c00054{left:672.000000px;}
.xc4_c00054{left:673.650000px;}
.x52_c00054{left:675.000000px;}
.x33_c00054{left:677.250000px;}
.xce_c00054{left:679.350000px;}
.x79_c00054{left:681.150000px;}
.xd3_c00054{left:683.400000px;}
.x85_c00054{left:690.000000px;}
.xb3_c00054{left:692.100000px;}
.x22_c00054{left:693.450000px;}
.x5e_c00054{left:695.250000px;}
.xe9_c00054{left:696.600000px;}
.x34_c00054{left:698.100000px;}
.xf7_c00054{left:700.050000px;}
.x8f_c00054{left:701.250000px;}
.x43_c00054{left:702.900000px;}
.x9f_c00054{left:704.700000px;}
.xd4_c00054{left:705.750000px;}
.x12_c00054{left:708.900000px;}
.x104_c00054{left:710.100000px;}
.x135_c00054{left:711.600000px;}
.xbc_c00054{left:714.750000px;}
.x67_c00054{left:715.950000px;}
.xa0_c00054{left:717.300000px;}
.xab_c00054{left:719.100000px;}
.xf8_c00054{left:720.150000px;}
.x7a_c00054{left:721.500000px;}
.x44_c00054{left:724.200000px;}
.xea_c00054{left:726.150000px;}
.x4d_c00054{left:729.000000px;}
.x11f_c00054{left:730.050000px;}
.x6e_c00054{left:732.600000px;}
.xa1_c00054{left:734.250000px;}
.xc5_c00054{left:736.200000px;}
.x53_c00054{left:740.100000px;}
.x7b_c00054{left:741.600000px;}
.x86_c00054{left:744.000000px;}
.xf2_c00054{left:745.500000px;}
.x13_c00054{left:749.250000px;}
.xcf_c00054{left:750.300000px;}
.x90_c00054{left:754.200000px;}
.x23_c00054{left:756.450000px;}
.x6f_c00054{left:758.550000px;}
.x132_c00054{left:761.400000px;}
.x45_c00054{left:762.750000px;}
.xa2_c00054{left:763.800000px;}
.x124_c00054{left:767.550000px;}
.x4e_c00054{left:769.350000px;}
.xdd_c00054{left:771.450000px;}
.xc6_c00054{left:774.000000px;}
.x14_c00054{left:775.950000px;}
.x139_c00054{left:779.700000px;}
.x87_c00054{left:781.050000px;}
.xac_c00054{left:785.400000px;}
.xb4_c00054{left:786.750000px;}
.x54_c00054{left:789.000000px;}
.x24_c00054{left:792.750000px;}
.xd5_c00054{left:794.400000px;}
.x5f_c00054{left:795.750000px;}
.x13a_c00054{left:796.950000px;}
.x91_c00054{left:800.700000px;}
.xeb_c00054{left:802.050000px;}
.x35_c00054{left:804.300000px;}
.xb5_c00054{left:809.850000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws9_c00054{word-spacing:-7.513228pt;}
.ws5_c00054{word-spacing:-7.046070pt;}
.ws2_c00054{word-spacing:-6.666667pt;}
.ws8_c00054{word-spacing:-5.745257pt;}
.wsc_c00054{word-spacing:0.000000pt;}
.ws0_c00054{word-spacing:1.505376pt;}
.ws4_c00054{word-spacing:2.539683pt;}
.ws3_c00054{word-spacing:4.567901pt;}
.wsb_c00054{word-spacing:4.642857pt;}
.ws7_c00054{word-spacing:6.900585pt;}
.wsa_c00054{word-spacing:8.654971pt;}
.ws6_c00054{word-spacing:9.012346pt;}
.ws1_c00054{word-spacing:18.765432pt;}
.fs0_c00054{font-size:48.000000pt;}
.fs1_c00054{font-size:53.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y2c_c00054{bottom:138.000000pt;}
.y2b_c00054{bottom:155.600000pt;}
.y2a_c00054{bottom:173.200000pt;}
.y29_c00054{bottom:190.800000pt;}
.y28_c00054{bottom:208.666667pt;}
.y27_c00054{bottom:226.000000pt;}
.y26_c00054{bottom:243.866667pt;}
.y25_c00054{bottom:261.466667pt;}
.y24_c00054{bottom:279.066667pt;}
.y23_c00054{bottom:296.933333pt;}
.y22_c00054{bottom:314.266667pt;}
.y21_c00054{bottom:331.866667pt;}
.y20_c00054{bottom:349.466667pt;}
.y1f_c00054{bottom:367.066667pt;}
.y1e_c00054{bottom:384.666667pt;}
.y1d_c00054{bottom:402.133333pt;}
.y1c_c00054{bottom:419.733333pt;}
.y1b_c00054{bottom:437.333333pt;}
.y1a_c00054{bottom:454.933333pt;}
.y19_c00054{bottom:472.533333pt;}
.y18_c00054{bottom:490.133333pt;}
.y17_c00054{bottom:507.733333pt;}
.y16_c00054{bottom:525.333333pt;}
.y15_c00054{bottom:542.933333pt;}
.y14_c00054{bottom:560.266667pt;}
.y13_c00054{bottom:577.600000pt;}
.y12_c00054{bottom:595.200000pt;}
.y11_c00054{bottom:612.800000pt;}
.y10_c00054{bottom:630.400000pt;}
.yf_c00054{bottom:648.000000pt;}
.ye_c00054{bottom:665.600000pt;}
.yd_c00054{bottom:683.200000pt;}
.yc_c00054{bottom:700.533333pt;}
.yb_c00054{bottom:718.133333pt;}
.ya_c00054{bottom:735.733333pt;}
.y9_c00054{bottom:753.333333pt;}
.y8_c00054{bottom:770.933333pt;}
.y7_c00054{bottom:788.533333pt;}
.y6_c00054{bottom:824.266667pt;}
.y5_c00054{bottom:841.866667pt;}
.y4_c00054{bottom:859.466667pt;}
.y3_c00054{bottom:877.066667pt;}
.y2_c00054{bottom:894.666667pt;}
.y1_c00054{bottom:928.266667pt;}
.h2_c00054{height:48.000000pt;}
.h3_c00054{height:53.333333pt;}
.h1_c00054{height:1037.333333pt;}
.h0_c00054{height:1037.439941pt;}
.w0_c00054{width:811.840007pt;}
.w1_c00054{width:812.000000pt;}
.x0_c00054{left:0.000000pt;}
.x128_c00054{left:132.266667pt;}
.xe5_c00054{left:133.200000pt;}
.x70_c00054{left:134.133333pt;}
.x4_c00054{left:135.066667pt;}
.x1_c00054{left:136.000000pt;}
.x125_c00054{left:143.333333pt;}
.x36_c00054{left:145.333333pt;}
.x88_c00054{left:147.333333pt;}
.x92_c00054{left:154.933333pt;}
.xad_c00054{left:156.666667pt;}
.xf9_c00054{left:157.600000pt;}
.xb6_c00054{left:158.533333pt;}
.x138_c00054{left:159.733333pt;}
.x71_c00054{left:160.666667pt;}
.xbe_c00054{left:161.600000pt;}
.x15_c00054{left:162.666667pt;}
.x12d_c00054{left:164.266667pt;}
.x13e_c00054{left:166.000000pt;}
.xe6_c00054{left:167.066667pt;}
.xa3_c00054{left:168.800000pt;}
.x7c_c00054{left:170.266667pt;}
.x37_c00054{left:172.800000pt;}
.xb7_c00054{left:174.533333pt;}
.xde_c00054{left:177.200000pt;}
.xfa_c00054{left:178.400000pt;}
.x115_c00054{left:179.466667pt;}
.x25_c00054{left:180.533333pt;}
.xd0_c00054{left:182.000000pt;}
.x5_c00054{left:184.933333pt;}
.x129_c00054{left:186.400000pt;}
.x55_c00054{left:187.733333pt;}
.x4f_c00054{left:188.800000pt;}
.x120_c00054{left:189.733333pt;}
.xbf_c00054{left:191.066667pt;}
.x60_c00054{left:192.133333pt;}
.x7d_c00054{left:194.933333pt;}
.x10d_c00054{left:196.400000pt;}
.xc7_c00054{left:198.400000pt;}
.x26_c00054{left:199.733333pt;}
.x89_c00054{left:202.000000pt;}
.x61_c00054{left:205.600000pt;}
.x38_c00054{left:208.933333pt;}
.x56_c00054{left:209.866667pt;}
.xae_c00054{left:210.800000pt;}
.x93_c00054{left:212.266667pt;}
.x12e_c00054{left:213.866667pt;}
.xb8_c00054{left:216.133333pt;}
.x16_c00054{left:217.066667pt;}
.xa4_c00054{left:218.400000pt;}
.x105_c00054{left:219.466667pt;}
.x10e_c00054{left:221.733333pt;}
.x39_c00054{left:224.266667pt;}
.xc8_c00054{left:225.866667pt;}
.x46_c00054{left:227.333333pt;}
.xe7_c00054{left:230.133333pt;}
.x94_c00054{left:232.800000pt;}
.xc0_c00054{left:234.266667pt;}
.x72_c00054{left:236.800000pt;}
.xd1_c00054{left:239.600000pt;}
.x8a_c00054{left:240.666667pt;}
.x10a_c00054{left:242.133333pt;}
.x116_c00054{left:243.333333pt;}
.x17_c00054{left:244.533333pt;}
.xbd_c00054{left:246.533333pt;}
.x6_c00054{left:248.000000pt;}
.x121_c00054{left:249.200000pt;}
.xf3_c00054{left:251.333333pt;}
.x50_c00054{left:254.400000pt;}
.x7e_c00054{left:257.866667pt;}
.x27_c00054{left:258.933333pt;}
.xa5_c00054{left:260.000000pt;}
.x68_c00054{left:263.466667pt;}
.x7_c00054{left:264.933333pt;}
.x3a_c00054{left:266.400000pt;}
.x95_c00054{left:267.333333pt;}
.x11a_c00054{left:269.733333pt;}
.xc9_c00054{left:271.333333pt;}
.x57_c00054{left:272.933333pt;}
.x62_c00054{left:276.666667pt;}
.xd6_c00054{left:280.000000pt;}
.x96_c00054{left:281.466667pt;}
.x18_c00054{left:282.933333pt;}
.x10f_c00054{left:284.533333pt;}
.x7f_c00054{left:285.733333pt;}
.x69_c00054{left:287.466667pt;}
.x3b_c00054{left:288.800000pt;}
.x8_c00054{left:289.866667pt;}
.x58_c00054{left:293.733333pt;}
.xff_c00054{left:296.933333pt;}
.xb9_c00054{left:299.333333pt;}
.xa6_c00054{left:300.266667pt;}
.xd9_c00054{left:301.333333pt;}
.xaf_c00054{left:302.266667pt;}
.x47_c00054{left:304.800000pt;}
.xca_c00054{left:305.866667pt;}
.x110_c00054{left:307.200000pt;}
.x28_c00054{left:308.533333pt;}
.x19_c00054{left:309.466667pt;}
.x10b_c00054{left:311.466667pt;}
.x73_c00054{left:313.600000pt;}
.x80_c00054{left:314.533333pt;}
.x3c_c00054{left:316.666667pt;}
.x100_c00054{left:318.800000pt;}
.x97_c00054{left:319.866667pt;}
.xec_c00054{left:321.866667pt;}
.x11b_c00054{left:323.200000pt;}
.xb0_c00054{left:324.400000pt;}
.x29_c00054{left:326.133333pt;}
.x59_c00054{left:327.333333pt;}
.xe8_c00054{left:328.933333pt;}
.x12a_c00054{left:330.000000pt;}
.x3d_c00054{left:333.600000pt;}
.x8b_c00054{left:336.000000pt;}
.x98_c00054{left:337.466667pt;}
.x74_c00054{left:340.133333pt;}
.x1a_c00054{left:341.733333pt;}
.xfb_c00054{left:342.933333pt;}
.x13b_c00054{left:343.866667pt;}
.x12f_c00054{left:346.000000pt;}
.x9_c00054{left:347.200000pt;}
.x10c_c00054{left:349.333333pt;}
.xed_c00054{left:350.666667pt;}
.x2a_c00054{left:351.733333pt;}
.x122_c00054{left:355.066667pt;}
.x2_c00054{left:356.533333pt;}
.x3e_c00054{left:358.266667pt;}
.x111_c00054{left:359.333333pt;}
.x48_c00054{left:360.533333pt;}
.x13c_c00054{left:362.400000pt;}
.x81_c00054{left:365.066667pt;}
.x99_c00054{left:366.666667pt;}
.xb1_c00054{left:367.600000pt;}
.xdf_c00054{left:368.933333pt;}
.xa_c00054{left:369.866667pt;}
.x6a_c00054{left:372.000000pt;}
.xf4_c00054{left:372.933333pt;}
.xd7_c00054{left:374.800000pt;}
.xc1_c00054{left:376.400000pt;}
.x101_c00054{left:377.733333pt;}
.x1b_c00054{left:380.133333pt;}
.x6b_c00054{left:382.533333pt;}
.xe0_c00054{left:384.933333pt;}
.xb_c00054{left:386.133333pt;}
.x82_c00054{left:387.733333pt;}
.x117_c00054{left:388.933333pt;}
.x2b_c00054{left:390.800000pt;}
.x8c_c00054{left:391.733333pt;}
.xcb_c00054{left:392.933333pt;}
.x1c_c00054{left:396.400000pt;}
.x5a_c00054{left:400.266667pt;}
.x9a_c00054{left:401.200000pt;}
.xee_c00054{left:402.133333pt;}
.x12b_c00054{left:404.800000pt;}
.xa7_c00054{left:405.866667pt;}
.x2c_c00054{left:407.066667pt;}
.x112_c00054{left:409.600000pt;}
.xc_c00054{left:411.066667pt;}
.xda_c00054{left:412.133333pt;}
.xd2_c00054{left:414.133333pt;}
.x75_c00054{left:417.600000pt;}
.x1d_c00054{left:418.800000pt;}
.x11c_c00054{left:420.266667pt;}
.x130_c00054{left:421.866667pt;}
.x9b_c00054{left:423.866667pt;}
.x123_c00054{left:425.466667pt;}
.xcc_c00054{left:427.866667pt;}
.xa8_c00054{left:430.800000pt;}
.x102_c00054{left:435.733333pt;}
.xef_c00054{left:437.333333pt;}
.x2d_c00054{left:439.066667pt;}
.x126_c00054{left:440.266667pt;}
.x11d_c00054{left:442.000000pt;}
.x3_c00054{left:443.200000pt;}
.x133_c00054{left:444.266667pt;}
.x3f_c00054{left:445.333333pt;}
.x106_c00054{left:447.200000pt;}
.x49_c00054{left:449.733333pt;}
.xf5_c00054{left:450.800000pt;}
.x1e_c00054{left:452.133333pt;}
.xfc_c00054{left:453.066667pt;}
.xe1_c00054{left:454.666667pt;}
.x2e_c00054{left:456.000000pt;}
.x134_c00054{left:458.400000pt;}
.x9c_c00054{left:459.733333pt;}
.x51_c00054{left:461.066667pt;}
.x83_c00054{left:462.933333pt;}
.x113_c00054{left:464.266667pt;}
.x2f_c00054{left:466.533333pt;}
.xa9_c00054{left:468.933333pt;}
.x76_c00054{left:471.066667pt;}
.xe2_c00054{left:472.533333pt;}
.x9d_c00054{left:474.800000pt;}
.xd_c00054{left:477.600000pt;}
.x118_c00054{left:478.933333pt;}
.xcd_c00054{left:480.666667pt;}
.xba_c00054{left:481.733333pt;}
.x63_c00054{left:484.266667pt;}
.x1f_c00054{left:486.400000pt;}
.xe3_c00054{left:488.533333pt;}
.x5b_c00054{left:489.866667pt;}
.xe_c00054{left:492.666667pt;}
.x30_c00054{left:495.066667pt;}
.x9e_c00054{left:497.200000pt;}
.xdb_c00054{left:499.866667pt;}
.x40_c00054{left:502.000000pt;}
.x136_c00054{left:503.466667pt;}
.xfd_c00054{left:504.666667pt;}
.x13d_c00054{left:507.866667pt;}
.x107_c00054{left:509.600000pt;}
.x77_c00054{left:512.000000pt;}
.xf6_c00054{left:514.133333pt;}
.x64_c00054{left:515.333333pt;}
.xd8_c00054{left:516.266667pt;}
.x131_c00054{left:517.200000pt;}
.x6c_c00054{left:518.800000pt;}
.x31_c00054{left:521.333333pt;}
.x4a_c00054{left:523.733333pt;}
.xdc_c00054{left:524.800000pt;}
.x103_c00054{left:526.000000pt;}
.xf_c00054{left:528.800000pt;}
.xc2_c00054{left:532.266667pt;}
.x8d_c00054{left:534.000000pt;}
.xb2_c00054{left:534.933333pt;}
.xf0_c00054{left:537.466667pt;}
.x20_c00054{left:538.933333pt;}
.x12c_c00054{left:542.133333pt;}
.x78_c00054{left:543.733333pt;}
.x10_c00054{left:545.066667pt;}
.x4b_c00054{left:548.400000pt;}
.x5c_c00054{left:550.400000pt;}
.xfe_c00054{left:554.266667pt;}
.x137_c00054{left:556.000000pt;}
.x127_c00054{left:556.933333pt;}
.x32_c00054{left:558.133333pt;}
.x108_c00054{left:559.466667pt;}
.x84_c00054{left:561.200000pt;}
.x11e_c00054{left:563.600000pt;}
.x119_c00054{left:564.666667pt;}
.xc3_c00054{left:565.866667pt;}
.x6d_c00054{left:567.066667pt;}
.x5d_c00054{left:569.600000pt;}
.x21_c00054{left:570.666667pt;}
.x65_c00054{left:572.933333pt;}
.xbb_c00054{left:574.533333pt;}
.x41_c00054{left:576.266667pt;}
.x114_c00054{left:579.066667pt;}
.xe4_c00054{left:580.000000pt;}
.xf1_c00054{left:582.933333pt;}
.x66_c00054{left:583.866667pt;}
.x109_c00054{left:585.066667pt;}
.x4c_c00054{left:588.400000pt;}
.xaa_c00054{left:590.266667pt;}
.x11_c00054{left:591.466667pt;}
.x8e_c00054{left:594.800000pt;}
.x42_c00054{left:597.333333pt;}
.xc4_c00054{left:598.800000pt;}
.x52_c00054{left:600.000000pt;}
.x33_c00054{left:602.000000pt;}
.xce_c00054{left:603.866667pt;}
.x79_c00054{left:605.466667pt;}
.xd3_c00054{left:607.466667pt;}
.x85_c00054{left:613.333333pt;}
.xb3_c00054{left:615.200000pt;}
.x22_c00054{left:616.400000pt;}
.x5e_c00054{left:618.000000pt;}
.xe9_c00054{left:619.200000pt;}
.x34_c00054{left:620.533333pt;}
.xf7_c00054{left:622.266667pt;}
.x8f_c00054{left:623.333333pt;}
.x43_c00054{left:624.800000pt;}
.x9f_c00054{left:626.400000pt;}
.xd4_c00054{left:627.333333pt;}
.x12_c00054{left:630.133333pt;}
.x104_c00054{left:631.200000pt;}
.x135_c00054{left:632.533333pt;}
.xbc_c00054{left:635.333333pt;}
.x67_c00054{left:636.400000pt;}
.xa0_c00054{left:637.600000pt;}
.xab_c00054{left:639.200000pt;}
.xf8_c00054{left:640.133333pt;}
.x7a_c00054{left:641.333333pt;}
.x44_c00054{left:643.733333pt;}
.xea_c00054{left:645.466667pt;}
.x4d_c00054{left:648.000000pt;}
.x11f_c00054{left:648.933333pt;}
.x6e_c00054{left:651.200000pt;}
.xa1_c00054{left:652.666667pt;}
.xc5_c00054{left:654.400000pt;}
.x53_c00054{left:657.866667pt;}
.x7b_c00054{left:659.200000pt;}
.x86_c00054{left:661.333333pt;}
.xf2_c00054{left:662.666667pt;}
.x13_c00054{left:666.000000pt;}
.xcf_c00054{left:666.933333pt;}
.x90_c00054{left:670.400000pt;}
.x23_c00054{left:672.400000pt;}
.x6f_c00054{left:674.266667pt;}
.x132_c00054{left:676.800000pt;}
.x45_c00054{left:678.000000pt;}
.xa2_c00054{left:678.933333pt;}
.x124_c00054{left:682.266667pt;}
.x4e_c00054{left:683.866667pt;}
.xdd_c00054{left:685.733333pt;}
.xc6_c00054{left:688.000000pt;}
.x14_c00054{left:689.733333pt;}
.x139_c00054{left:693.066667pt;}
.x87_c00054{left:694.266667pt;}
.xac_c00054{left:698.133333pt;}
.xb4_c00054{left:699.333333pt;}
.x54_c00054{left:701.333333pt;}
.x24_c00054{left:704.666667pt;}
.xd5_c00054{left:706.133333pt;}
.x5f_c00054{left:707.333333pt;}
.x13a_c00054{left:708.400000pt;}
.x91_c00054{left:711.733333pt;}
.xeb_c00054{left:712.933333pt;}
.x35_c00054{left:714.933333pt;}
.xb5_c00054{left:719.866667pt;}
}





/* 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_c00055 {
    display:none;
  }
  .loading-indicator_c00055.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00055 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_c00055 { 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_c00055" -> "#page-container .classname_c00055")
 */
.pf_c00055 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00055 { /* 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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00055 { /* 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_c00055 { /* 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_c00055 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00055 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00055 {overflow:visible;}
  }
}
.c_c00055 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00055 { /* 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_c00055:after { /* webkit #35443 */
  content: '';
}
.t_c00055:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00055 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 */
}
.__c00055 { /* 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_c00055 { /* info for Javascript */
  display:none;
}
.l_c00055 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00055 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00055 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00055: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_c00055 {
    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_c00055.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00055.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_c00055 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00055{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.000000;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;}
.m46_c00055{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00055{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m56_c00055{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00055{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m62_c00055{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md7_c00055{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.md0_c00055{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m18_c00055{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00055{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mda_c00055{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m89_c00055{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00055{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m34_c00055{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00055{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00055{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00055{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m57_c00055{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md6_c00055{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00055{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m47_c00055{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00055{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m13_c00055{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m73_c00055{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mab_c00055{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m38_c00055{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00055{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00055{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00055{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00055{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m11_c00055{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00055{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00055{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m79_c00055{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00055{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m50_c00055{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md4_c00055{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00055{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00055{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m71_c00055{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m14_c00055{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m88_c00055{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00055{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00055{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mba_c00055{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m66_c00055{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00055{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00055{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m96_c00055{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m97_c00055{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m64_c00055{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00055{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00055{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00055{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mac_c00055{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m42_c00055{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00055{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m59_c00055{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00055{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m84_c00055{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mad_c00055{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00055{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00055{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m49_c00055{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00055{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00055{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mce_c00055{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00055{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m74_c00055{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00055{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00055{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00055{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00055{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00055{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00055{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00055{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00055{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00055{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m67_c00055{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m99_c00055{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m45_c00055{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m91_c00055{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m17_c00055{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00055{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m52_c00055{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00055{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m61_c00055{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00055{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00055{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m29_c00055{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00055{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m19_c00055{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m60_c00055{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00055{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m65_c00055{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00055{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma_c00055{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00055{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00055{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00055{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m35_c00055{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m68_c00055{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m85_c00055{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00055{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00055{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00055{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00055{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00055{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00055{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5_c00055{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00055{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m53_c00055{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00055{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00055{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m21_c00055{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4_c00055{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m24_c00055{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00055{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m28_c00055{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00055{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m63_c00055{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m94_c00055{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m93_c00055{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.md9_c00055{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mae_c00055{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00055{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00055{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m23_c00055{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00055{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00055{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00055{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00055{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00055{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m16_c00055{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m80_c00055{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m27_c00055{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m98_c00055{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2_c00055{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00055{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00055{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m36_c00055{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m25_c00055{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00055{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00055{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00055{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md5_c00055{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00055{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mca_c00055{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m55_c00055{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m82_c00055{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m44_c00055{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00055{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00055{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00055{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00055{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m95_c00055{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00055{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00055{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.md2_c00055{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m51_c00055{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m41_c00055{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00055{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m30_c00055{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m37_c00055{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00055{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m39_c00055{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m86_c00055{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00055{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m72_c00055{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);}
.m7d_c00055{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m32_c00055{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00055{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22_c00055{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb_c00055{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00055{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00055{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00055{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m75_c00055{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m31_c00055{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m70_c00055{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00055{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00055{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00055{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00055{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00055{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00055{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00055{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00055{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00055{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00055{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m26_c00055{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00055{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md8_c00055{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00055{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m77_c00055{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.maa_c00055{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m1_c00055{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m43_c00055{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00055{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00055{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md1_c00055{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00055{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m81_c00055{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m92_c00055{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00055{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m54_c00055{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00055{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00055{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m40_c00055{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.md3_c00055{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m69_c00055{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00055{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00055{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00055{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls1_c00055{letter-spacing:0.000000px;}
.ls0_c00055{letter-spacing:78.627706px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{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__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00055{word-spacing:-105.627706px;}
.wsf_c00055{word-spacing:-11.350665px;}
.ws9_c00055{word-spacing:-9.948052px;}
.wse_c00055{word-spacing:-6.872216px;}
.ws3_c00055{word-spacing:-6.864407px;}
.wsd_c00055{word-spacing:-5.250000px;}
.ws10_c00055{word-spacing:-0.518325px;}
.ws8_c00055{word-spacing:-0.294377px;}
.ws6_c00055{word-spacing:-0.171996px;}
.wsc_c00055{word-spacing:-0.049614px;}
.ws11_c00055{word-spacing:0.000000px;}
.wsa_c00055{word-spacing:0.052755px;}
.wsb_c00055{word-spacing:0.323564px;}
.ws2_c00055{word-spacing:4.794521px;}
.ws5_c00055{word-spacing:8.529412px;}
.ws4_c00055{word-spacing:13.194444px;}
.ws0_c00055{word-spacing:14.411765px;}
.ws1_c00055{word-spacing:22.962963px;}
._0_c00055{margin-left:-78.627706px;}
.fc0_c00055{color:transparent;}
.fs0_c00055{font-size:54.000000px;}
.fs2_c00055{font-size:60.000000px;}
.fs1_c00055{font-size:66.000000px;}
.y0_c00055{bottom:0.000000px;}
.y41_c00055{bottom:142.950000px;}
.y32_c00055{bottom:146.550000px;}
.y31_c00055{bottom:162.450000px;}
.y30_c00055{bottom:177.900000px;}
.y40_c00055{bottom:193.350000px;}
.y2f_c00055{bottom:193.800000px;}
.y2e_c00055{bottom:208.950000px;}
.y3f_c00055{bottom:209.550000px;}
.y2d_c00055{bottom:224.400000px;}
.y3e_c00055{bottom:224.700000px;}
.y3d_c00055{bottom:240.150000px;}
.y2c_c00055{bottom:240.300000px;}
.y3c_c00055{bottom:255.300000px;}
.y2b_c00055{bottom:255.450000px;}
.y3b_c00055{bottom:271.200000px;}
.y2a_c00055{bottom:271.350000px;}
.y3a_c00055{bottom:286.650000px;}
.y29_c00055{bottom:286.800000px;}
.y39_c00055{bottom:302.100000px;}
.y28_c00055{bottom:302.250000px;}
.y27_c00055{bottom:317.700000px;}
.y38_c00055{bottom:318.000000px;}
.y26_c00055{bottom:333.150000px;}
.y25_c00055{bottom:349.050000px;}
.y24_c00055{bottom:364.500000px;}
.y23_c00055{bottom:379.950000px;}
.y22_c00055{bottom:395.400000px;}
.y21_c00055{bottom:410.850000px;}
.y20_c00055{bottom:426.300000px;}
.y1f_c00055{bottom:441.750000px;}
.y1e_c00055{bottom:457.200000px;}
.y37_c00055{bottom:457.650000px;}
.y1d_c00055{bottom:472.650000px;}
.y36_c00055{bottom:473.100000px;}
.y1c_c00055{bottom:488.100000px;}
.y35_c00055{bottom:488.550000px;}
.y1b_c00055{bottom:504.000000px;}
.y34_c00055{bottom:519.450000px;}
.y1a_c00055{bottom:519.900000px;}
.y33_c00055{bottom:534.900000px;}
.y19_c00055{bottom:535.350000px;}
.y18_c00055{bottom:586.800000px;}
.y17_c00055{bottom:606.300000px;}
.y16_c00055{bottom:626.100000px;}
.y15_c00055{bottom:645.900000px;}
.y14_c00055{bottom:666.000000px;}
.y13_c00055{bottom:685.800000px;}
.y12_c00055{bottom:705.600000px;}
.y11_c00055{bottom:725.700000px;}
.y10_c00055{bottom:745.500000px;}
.yf_c00055{bottom:765.300000px;}
.ye_c00055{bottom:785.100000px;}
.yd_c00055{bottom:805.500000px;}
.yc_c00055{bottom:825.300000px;}
.yb_c00055{bottom:845.100000px;}
.ya_c00055{bottom:865.200000px;}
.y9_c00055{bottom:885.300000px;}
.y8_c00055{bottom:905.100000px;}
.y7_c00055{bottom:924.900000px;}
.y6_c00055{bottom:945.000000px;}
.y5_c00055{bottom:964.800000px;}
.y4_c00055{bottom:984.600000px;}
.y3_c00055{bottom:1004.100000px;}
.y2_c00055{bottom:1041.150000px;}
.y1_c00055{bottom:1042.200000px;}
.h2_c00055{height:54.000000px;}
.h4_c00055{height:60.000000px;}
.h3_c00055{height:66.000000px;}
.h1_c00055{height:1167.000000px;}
.h0_c00055{height:1167.119934px;}
.w0_c00055{width:913.320007px;}
.w1_c00055{width:913.500000px;}
.x0_c00055{left:0.000000px;}
.x10d_c00055{left:103.800000px;}
.x8e_c00055{left:105.000000px;}
.x16_c00055{left:106.050000px;}
.x6d_c00055{left:117.000000px;}
.x116_c00055{left:118.050000px;}
.x8f_c00055{left:120.450000px;}
.x110_c00055{left:121.950000px;}
.xaf_c00055{left:124.050000px;}
.x10f_c00055{left:125.700000px;}
.x11a_c00055{left:127.800000px;}
.xf2_c00055{left:129.300000px;}
.x59_c00055{left:130.800000px;}
.x39_c00055{left:133.800000px;}
.x48_c00055{left:135.600000px;}
.x4_c00055{left:137.550000px;}
.xe1_c00055{left:138.600000px;}
.x107_c00055{left:139.800000px;}
.xea_c00055{left:141.450000px;}
.x10b_c00055{left:142.950000px;}
.x6e_c00055{left:146.100000px;}
.x49_c00055{left:147.450000px;}
.xe6_c00055{left:148.500000px;}
.x7b_c00055{left:150.000000px;}
.xb6_c00055{left:151.200000px;}
.xd8_c00055{left:152.400000px;}
.x83_c00055{left:154.650000px;}
.xc0_c00055{left:156.300000px;}
.xe7_c00055{left:158.250000px;}
.x94_c00055{left:159.450000px;}
.x101_c00055{left:163.500000px;}
.xeb_c00055{left:165.600000px;}
.xaa_c00055{left:166.650000px;}
.x2a_c00055{left:168.150000px;}
.x11b_c00055{left:169.200000px;}
.x5_c00055{left:170.250000px;}
.x3a_c00055{left:173.100000px;}
.xc6_c00055{left:174.450000px;}
.x17_c00055{left:177.750000px;}
.x104_c00055{left:180.150000px;}
.x5a_c00055{left:181.500000px;}
.x109_c00055{left:184.200000px;}
.x84_c00055{left:185.550000px;}
.xcb_c00055{left:188.850000px;}
.x3b_c00055{left:190.050000px;}
.xfa_c00055{left:192.450000px;}
.x90_c00055{left:194.250000px;}
.x111_c00055{left:196.950000px;}
.x18_c00055{left:198.300000px;}
.xb0_c00055{left:200.100000px;}
.x9f_c00055{left:201.150000px;}
.xc1_c00055{left:203.400000px;}
.x7c_c00055{left:205.350000px;}
.x95_c00055{left:208.350000px;}
.x63_c00055{left:210.150000px;}
.xde_c00055{left:211.350000px;}
.x19_c00055{left:212.700000px;}
.xef_c00055{left:216.450000px;}
.x3c_c00055{left:220.350000px;}
.x2b_c00055{left:221.850000px;}
.xe2_c00055{left:223.350000px;}
.x85_c00055{left:225.150000px;}
.x112_c00055{left:226.800000px;}
.xe8_c00055{left:228.450000px;}
.x96_c00055{left:229.650000px;}
.xfb_c00055{left:231.750000px;}
.x4a_c00055{left:232.800000px;}
.x105_c00055{left:234.150000px;}
.xb7_c00055{left:236.100000px;}
.x1a_c00055{left:238.200000px;}
.x10c_c00055{left:239.700000px;}
.x5b_c00055{left:243.000000px;}
.xd2_c00055{left:244.950000px;}
.x6_c00055{left:246.600000px;}
.xf6_c00055{left:248.100000px;}
.xf0_c00055{left:251.250000px;}
.x2c_c00055{left:252.750000px;}
.x6f_c00055{left:254.100000px;}
.x1b_c00055{left:256.200000px;}
.xec_c00055{left:257.700000px;}
.xfd_c00055{left:260.400000px;}
.xe9_c00055{left:262.650000px;}
.x5c_c00055{left:264.600000px;}
.x64_c00055{left:265.650000px;}
.x7_c00055{left:267.450000px;}
.x4b_c00055{left:268.800000px;}
.xdf_c00055{left:270.450000px;}
.x113_c00055{left:272.550000px;}
.x117_c00055{left:273.900000px;}
.x70_c00055{left:276.450000px;}
.xc2_c00055{left:278.250000px;}
.xf9_c00055{left:279.900000px;}
.xb8_c00055{left:283.200000px;}
.xfe_c00055{left:284.850000px;}
.xb9_c00055{left:286.800000px;}
.x3d_c00055{left:288.000000px;}
.x100_c00055{left:291.900000px;}
.x5d_c00055{left:293.400000px;}
.x1c_c00055{left:295.800000px;}
.x86_c00055{left:298.950000px;}
.x10a_c00055{left:301.200000px;}
.x3e_c00055{left:302.700000px;}
.xcc_c00055{left:303.750000px;}
.x65_c00055{left:305.250000px;}
.x114_c00055{left:306.450000px;}
.xa0_c00055{left:307.650000px;}
.x71_c00055{left:308.850000px;}
.xe3_c00055{left:310.500000px;}
.x102_c00055{left:311.850000px;}
.xf3_c00055{left:313.650000px;}
.x4c_c00055{left:315.300000px;}
.x1d_c00055{left:317.100000px;}
.x10e_c00055{left:318.600000px;}
.x8_c00055{left:319.650000px;}
.x2d_c00055{left:321.150000px;}
.x106_c00055{left:323.100000px;}
.xa1_c00055{left:326.400000px;}
.x72_c00055{left:328.650000px;}
.x66_c00055{left:330.450000px;}
.x4d_c00055{left:332.250000px;}
.xf7_c00055{left:333.450000px;}
.x7d_c00055{left:335.700000px;}
.xd3_c00055{left:337.050000px;}
.x3f_c00055{left:338.700000px;}
.x9_c00055{left:340.200000px;}
.xff_c00055{left:342.450000px;}
.x2e_c00055{left:345.300000px;}
.xf1_c00055{left:346.650000px;}
.xd9_c00055{left:348.000000px;}
.x5e_c00055{left:351.000000px;}
.x119_c00055{left:352.050000px;}
.xfc_c00055{left:354.150000px;}
.x1e_c00055{left:355.200000px;}
.x7e_c00055{left:356.550000px;}
.x97_c00055{left:358.200000px;}
.xed_c00055{left:360.450000px;}
.x40_c00055{left:362.850000px;}
.xf4_c00055{left:365.550000px;}
.xba_c00055{left:367.500000px;}
.xa_c00055{left:369.000000px;}
.xee_c00055{left:370.200000px;}
.x1_c00055{left:372.900000px;}
.xc7_c00055{left:374.850000px;}
.x91_c00055{left:376.500000px;}
.x118_c00055{left:378.600000px;}
.xe4_c00055{left:379.950000px;}
.xa2_c00055{left:381.150000px;}
.x87_c00055{left:384.150000px;}
.x2f_c00055{left:385.950000px;}
.x108_c00055{left:388.950000px;}
.x11c_c00055{left:390.300000px;}
.xa3_c00055{left:392.250000px;}
.xcd_c00055{left:394.200000px;}
.x73_c00055{left:396.450000px;}
.x4e_c00055{left:398.100000px;}
.xf5_c00055{left:399.750000px;}
.x7f_c00055{left:401.550000px;}
.x103_c00055{left:402.600000px;}
.x98_c00055{left:404.250000px;}
.x5f_c00055{left:407.250000px;}
.x115_c00055{left:408.600000px;}
.xf8_c00055{left:410.550000px;}
.x1f_c00055{left:412.050000px;}
.x67_c00055{left:414.000000px;}
.xe5_c00055{left:415.950000px;}
.x41_c00055{left:417.900000px;}
.x92_c00055{left:419.400000px;}
.x74_c00055{left:421.950000px;}
.x30_c00055{left:423.000000px;}
.xab_c00055{left:424.500000px;}
.xa4_c00055{left:425.700000px;}
.x20_c00055{left:433.350000px;}
.xac_c00055{left:436.800000px;}
.x2_c00055{left:438.450000px;}
.xb_c00055{left:441.300000px;}
.x4f_c00055{left:444.900000px;}
.x130_c00055{left:445.950000px;}
.x21_c00055{left:447.000000px;}
.x31_c00055{left:448.950000px;}
.xb1_c00055{left:450.000000px;}
.x42_c00055{left:453.150000px;}
.x99_c00055{left:454.350000px;}
.xbb_c00055{left:458.550000px;}
.xc_c00055{left:459.600000px;}
.x50_c00055{left:461.850000px;}
.xe0_c00055{left:463.800000px;}
.x68_c00055{left:466.950000px;}
.xda_c00055{left:469.500000px;}
.x136_c00055{left:470.700000px;}
.x129_c00055{left:471.750000px;}
.x22_c00055{left:475.800000px;}
.x122_c00055{left:478.650000px;}
.x132_c00055{left:482.250000px;}
.xc8_c00055{left:483.900000px;}
.x51_c00055{left:485.550000px;}
.x13d_c00055{left:489.000000px;}
.x133_c00055{left:490.950000px;}
.x43_c00055{left:492.000000px;}
.x12b_c00055{left:493.500000px;}
.x80_c00055{left:494.550000px;}
.x139_c00055{left:495.600000px;}
.x23_c00055{left:496.650000px;}
.x9a_c00055{left:498.600000px;}
.x93_c00055{left:500.850000px;}
.xd_c00055{left:503.100000px;}
.xa5_c00055{left:505.350000px;}
.x32_c00055{left:507.300000px;}
.x141_c00055{left:508.650000px;}
.x69_c00055{left:510.900000px;}
.xce_c00055{left:511.950000px;}
.x137_c00055{left:513.150000px;}
.x52_c00055{left:514.650000px;}
.x81_c00055{left:515.850000px;}
.x12e_c00055{left:517.650000px;}
.xa6_c00055{left:519.000000px;}
.x75_c00055{left:520.950000px;}
.x146_c00055{left:523.200000px;}
.x33_c00055{left:525.600000px;}
.x88_c00055{left:527.400000px;}
.x155_c00055{left:528.900000px;}
.xcf_c00055{left:529.950000px;}
.x60_c00055{left:531.150000px;}
.x11d_c00055{left:534.150000px;}
.xbc_c00055{left:535.200000px;}
.x13e_c00055{left:536.850000px;}
.xe_c00055{left:539.850000px;}
.x12c_c00055{left:542.850000px;}
.xd4_c00055{left:544.050000px;}
.x134_c00055{left:546.750000px;}
.x123_c00055{left:548.100000px;}
.x131_c00055{left:549.900000px;}
.xa7_c00055{left:551.100000px;}
.x125_c00055{left:552.300000px;}
.xc3_c00055{left:553.650000px;}
.x13a_c00055{left:555.600000px;}
.xdb_c00055{left:558.000000px;}
.x6a_c00055{left:559.200000px;}
.x53_c00055{left:561.150000px;}
.x24_c00055{left:564.300000px;}
.xd5_c00055{left:565.350000px;}
.xf_c00055{left:567.900000px;}
.x9b_c00055{left:569.550000px;}
.x142_c00055{left:570.600000px;}
.x34_c00055{left:572.400000px;}
.x12a_c00055{left:575.550000px;}
.x89_c00055{left:577.350000px;}
.x13f_c00055{left:579.300000px;}
.xb2_c00055{left:580.350000px;}
.x9c_c00055{left:582.150000px;}
.x25_c00055{left:584.100000px;}
.x76_c00055{left:585.750000px;}
.x10_c00055{left:588.450000px;}
.x44_c00055{left:590.550000px;}
.x143_c00055{left:591.900000px;}
.x54_c00055{left:593.550000px;}
.x152_c00055{left:597.600000px;}
.x26_c00055{left:599.550000px;}
.x61_c00055{left:601.350000px;}
.x14c_c00055{left:602.400000px;}
.x147_c00055{left:603.450000px;}
.xd6_c00055{left:604.950000px;}
.xdc_c00055{left:606.600000px;}
.x8a_c00055{left:609.450000px;}
.xb3_c00055{left:610.950000px;}
.x153_c00055{left:612.000000px;}
.x6b_c00055{left:614.250000px;}
.x14f_c00055{left:615.300000px;}
.xbd_c00055{left:616.500000px;}
.xad_c00055{left:619.650000px;}
.x11_c00055{left:624.150000px;}
.x150_c00055{left:625.350000px;}
.x13b_c00055{left:626.850000px;}
.x55_c00055{left:628.500000px;}
.x82_c00055{left:630.450000px;}
.x35_c00055{left:632.850000px;}
.x11e_c00055{left:634.200000px;}
.xbe_c00055{left:635.550000px;}
.x77_c00055{left:637.200000px;}
.x156_c00055{left:639.150000px;}
.x8b_c00055{left:640.350000px;}
.x124_c00055{left:641.400000px;}
.x121_c00055{left:643.050000px;}
.x13c_c00055{left:644.100000px;}
.x27_c00055{left:645.300000px;}
.xc4_c00055{left:646.950000px;}
.x56_c00055{left:651.150000px;}
.x126_c00055{left:652.200000px;}
.x45_c00055{left:653.550000px;}
.xb4_c00055{left:656.250000px;}
.x78_c00055{left:657.300000px;}
.x28_c00055{left:659.700000px;}
.x9d_c00055{left:662.100000px;}
.x12_c00055{left:663.750000px;}
.x36_c00055{left:664.950000px;}
.xc9_c00055{left:668.100000px;}
.xae_c00055{left:669.750000px;}
.xd7_c00055{left:671.100000px;}
.x14d_c00055{left:672.150000px;}
.x9e_c00055{left:673.950000px;}
.xd0_c00055{left:676.050000px;}
.xa8_c00055{left:677.100000px;}
.x14a_c00055{left:678.300000px;}
.x149_c00055{left:679.650000px;}
.x79_c00055{left:682.800000px;}
.x46_c00055{left:683.850000px;}
.x57_c00055{left:687.150000px;}
.x148_c00055{left:688.800000px;}
.x37_c00055{left:691.200000px;}
.x138_c00055{left:694.650000px;}
.x12d_c00055{left:695.850000px;}
.x157_c00055{left:697.200000px;}
.xa9_c00055{left:699.450000px;}
.x127_c00055{left:701.550000px;}
.x151_c00055{left:703.800000px;}
.x140_c00055{left:704.850000px;}
.x13_c00055{left:706.200000px;}
.x8c_c00055{left:708.000000px;}
.x11f_c00055{left:709.050000px;}
.xd1_c00055{left:710.250000px;}
.x144_c00055{left:711.750000px;}
.x62_c00055{left:712.950000px;}
.x158_c00055{left:714.450000px;}
.x7a_c00055{left:716.250000px;}
.xc5_c00055{left:719.250000px;}
.x128_c00055{left:721.350000px;}
.x58_c00055{left:723.750000px;}
.x14_c00055{left:726.000000px;}
.x38_c00055{left:728.250000px;}
.x145_c00055{left:729.450000px;}
.xca_c00055{left:730.800000px;}
.x159_c00055{left:732.450000px;}
.x120_c00055{left:735.000000px;}
.xdd_c00055{left:736.200000px;}
.x12f_c00055{left:740.400000px;}
.x47_c00055{left:742.500000px;}
.xbf_c00055{left:743.550000px;}
.x15a_c00055{left:745.050000px;}
.x15_c00055{left:746.100000px;}
.x14b_c00055{left:747.150000px;}
.xb5_c00055{left:749.100000px;}
.x6c_c00055{left:752.100000px;}
.x3_c00055{left:754.500000px;}
.x14e_c00055{left:756.750000px;}
.x135_c00055{left:758.700000px;}
.x154_c00055{left:760.950000px;}
.x29_c00055{left:763.650000px;}
.x8d_c00055{left:766.650000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls1_c00055{letter-spacing:0.000000pt;}
.ls0_c00055{letter-spacing:69.891294pt;}
.ws7_c00055{word-spacing:-93.891294pt;}
.wsf_c00055{word-spacing:-10.089480pt;}
.ws9_c00055{word-spacing:-8.842713pt;}
.wse_c00055{word-spacing:-6.108636pt;}
.ws3_c00055{word-spacing:-6.101695pt;}
.wsd_c00055{word-spacing:-4.666667pt;}
.ws10_c00055{word-spacing:-0.460733pt;}
.ws8_c00055{word-spacing:-0.261669pt;}
.ws6_c00055{word-spacing:-0.152885pt;}
.wsc_c00055{word-spacing:-0.044101pt;}
.ws11_c00055{word-spacing:0.000000pt;}
.wsa_c00055{word-spacing:0.046893pt;}
.wsb_c00055{word-spacing:0.287612pt;}
.ws2_c00055{word-spacing:4.261796pt;}
.ws5_c00055{word-spacing:7.581699pt;}
.ws4_c00055{word-spacing:11.728395pt;}
.ws0_c00055{word-spacing:12.810458pt;}
.ws1_c00055{word-spacing:20.411523pt;}
._0_c00055{margin-left:-69.891294pt;}
.fs0_c00055{font-size:48.000000pt;}
.fs2_c00055{font-size:53.333333pt;}
.fs1_c00055{font-size:58.666667pt;}
.y0_c00055{bottom:0.000000pt;}
.y41_c00055{bottom:127.066667pt;}
.y32_c00055{bottom:130.266667pt;}
.y31_c00055{bottom:144.400000pt;}
.y30_c00055{bottom:158.133333pt;}
.y40_c00055{bottom:171.866667pt;}
.y2f_c00055{bottom:172.266667pt;}
.y2e_c00055{bottom:185.733333pt;}
.y3f_c00055{bottom:186.266667pt;}
.y2d_c00055{bottom:199.466667pt;}
.y3e_c00055{bottom:199.733333pt;}
.y3d_c00055{bottom:213.466667pt;}
.y2c_c00055{bottom:213.600000pt;}
.y3c_c00055{bottom:226.933333pt;}
.y2b_c00055{bottom:227.066667pt;}
.y3b_c00055{bottom:241.066667pt;}
.y2a_c00055{bottom:241.200000pt;}
.y3a_c00055{bottom:254.800000pt;}
.y29_c00055{bottom:254.933333pt;}
.y39_c00055{bottom:268.533333pt;}
.y28_c00055{bottom:268.666667pt;}
.y27_c00055{bottom:282.400000pt;}
.y38_c00055{bottom:282.666667pt;}
.y26_c00055{bottom:296.133333pt;}
.y25_c00055{bottom:310.266667pt;}
.y24_c00055{bottom:324.000000pt;}
.y23_c00055{bottom:337.733333pt;}
.y22_c00055{bottom:351.466667pt;}
.y21_c00055{bottom:365.200000pt;}
.y20_c00055{bottom:378.933333pt;}
.y1f_c00055{bottom:392.666667pt;}
.y1e_c00055{bottom:406.400000pt;}
.y37_c00055{bottom:406.800000pt;}
.y1d_c00055{bottom:420.133333pt;}
.y36_c00055{bottom:420.533333pt;}
.y1c_c00055{bottom:433.866667pt;}
.y35_c00055{bottom:434.266667pt;}
.y1b_c00055{bottom:448.000000pt;}
.y34_c00055{bottom:461.733333pt;}
.y1a_c00055{bottom:462.133333pt;}
.y33_c00055{bottom:475.466667pt;}
.y19_c00055{bottom:475.866667pt;}
.y18_c00055{bottom:521.600000pt;}
.y17_c00055{bottom:538.933333pt;}
.y16_c00055{bottom:556.533333pt;}
.y15_c00055{bottom:574.133333pt;}
.y14_c00055{bottom:592.000000pt;}
.y13_c00055{bottom:609.600000pt;}
.y12_c00055{bottom:627.200000pt;}
.y11_c00055{bottom:645.066667pt;}
.y10_c00055{bottom:662.666667pt;}
.yf_c00055{bottom:680.266667pt;}
.ye_c00055{bottom:697.866667pt;}
.yd_c00055{bottom:716.000000pt;}
.yc_c00055{bottom:733.600000pt;}
.yb_c00055{bottom:751.200000pt;}
.ya_c00055{bottom:769.066667pt;}
.y9_c00055{bottom:786.933333pt;}
.y8_c00055{bottom:804.533333pt;}
.y7_c00055{bottom:822.133333pt;}
.y6_c00055{bottom:840.000000pt;}
.y5_c00055{bottom:857.600000pt;}
.y4_c00055{bottom:875.200000pt;}
.y3_c00055{bottom:892.533333pt;}
.y2_c00055{bottom:925.466667pt;}
.y1_c00055{bottom:926.400000pt;}
.h2_c00055{height:48.000000pt;}
.h4_c00055{height:53.333333pt;}
.h3_c00055{height:58.666667pt;}
.h1_c00055{height:1037.333333pt;}
.h0_c00055{height:1037.439941pt;}
.w0_c00055{width:811.840007pt;}
.w1_c00055{width:812.000000pt;}
.x0_c00055{left:0.000000pt;}
.x10d_c00055{left:92.266667pt;}
.x8e_c00055{left:93.333333pt;}
.x16_c00055{left:94.266667pt;}
.x6d_c00055{left:104.000000pt;}
.x116_c00055{left:104.933333pt;}
.x8f_c00055{left:107.066667pt;}
.x110_c00055{left:108.400000pt;}
.xaf_c00055{left:110.266667pt;}
.x10f_c00055{left:111.733333pt;}
.x11a_c00055{left:113.600000pt;}
.xf2_c00055{left:114.933333pt;}
.x59_c00055{left:116.266667pt;}
.x39_c00055{left:118.933333pt;}
.x48_c00055{left:120.533333pt;}
.x4_c00055{left:122.266667pt;}
.xe1_c00055{left:123.200000pt;}
.x107_c00055{left:124.266667pt;}
.xea_c00055{left:125.733333pt;}
.x10b_c00055{left:127.066667pt;}
.x6e_c00055{left:129.866667pt;}
.x49_c00055{left:131.066667pt;}
.xe6_c00055{left:132.000000pt;}
.x7b_c00055{left:133.333333pt;}
.xb6_c00055{left:134.400000pt;}
.xd8_c00055{left:135.466667pt;}
.x83_c00055{left:137.466667pt;}
.xc0_c00055{left:138.933333pt;}
.xe7_c00055{left:140.666667pt;}
.x94_c00055{left:141.733333pt;}
.x101_c00055{left:145.333333pt;}
.xeb_c00055{left:147.200000pt;}
.xaa_c00055{left:148.133333pt;}
.x2a_c00055{left:149.466667pt;}
.x11b_c00055{left:150.400000pt;}
.x5_c00055{left:151.333333pt;}
.x3a_c00055{left:153.866667pt;}
.xc6_c00055{left:155.066667pt;}
.x17_c00055{left:158.000000pt;}
.x104_c00055{left:160.133333pt;}
.x5a_c00055{left:161.333333pt;}
.x109_c00055{left:163.733333pt;}
.x84_c00055{left:164.933333pt;}
.xcb_c00055{left:167.866667pt;}
.x3b_c00055{left:168.933333pt;}
.xfa_c00055{left:171.066667pt;}
.x90_c00055{left:172.666667pt;}
.x111_c00055{left:175.066667pt;}
.x18_c00055{left:176.266667pt;}
.xb0_c00055{left:177.866667pt;}
.x9f_c00055{left:178.800000pt;}
.xc1_c00055{left:180.800000pt;}
.x7c_c00055{left:182.533333pt;}
.x95_c00055{left:185.200000pt;}
.x63_c00055{left:186.800000pt;}
.xde_c00055{left:187.866667pt;}
.x19_c00055{left:189.066667pt;}
.xef_c00055{left:192.400000pt;}
.x3c_c00055{left:195.866667pt;}
.x2b_c00055{left:197.200000pt;}
.xe2_c00055{left:198.533333pt;}
.x85_c00055{left:200.133333pt;}
.x112_c00055{left:201.600000pt;}
.xe8_c00055{left:203.066667pt;}
.x96_c00055{left:204.133333pt;}
.xfb_c00055{left:206.000000pt;}
.x4a_c00055{left:206.933333pt;}
.x105_c00055{left:208.133333pt;}
.xb7_c00055{left:209.866667pt;}
.x1a_c00055{left:211.733333pt;}
.x10c_c00055{left:213.066667pt;}
.x5b_c00055{left:216.000000pt;}
.xd2_c00055{left:217.733333pt;}
.x6_c00055{left:219.200000pt;}
.xf6_c00055{left:220.533333pt;}
.xf0_c00055{left:223.333333pt;}
.x2c_c00055{left:224.666667pt;}
.x6f_c00055{left:225.866667pt;}
.x1b_c00055{left:227.733333pt;}
.xec_c00055{left:229.066667pt;}
.xfd_c00055{left:231.466667pt;}
.xe9_c00055{left:233.466667pt;}
.x5c_c00055{left:235.200000pt;}
.x64_c00055{left:236.133333pt;}
.x7_c00055{left:237.733333pt;}
.x4b_c00055{left:238.933333pt;}
.xdf_c00055{left:240.400000pt;}
.x113_c00055{left:242.266667pt;}
.x117_c00055{left:243.466667pt;}
.x70_c00055{left:245.733333pt;}
.xc2_c00055{left:247.333333pt;}
.xf9_c00055{left:248.800000pt;}
.xb8_c00055{left:251.733333pt;}
.xfe_c00055{left:253.200000pt;}
.xb9_c00055{left:254.933333pt;}
.x3d_c00055{left:256.000000pt;}
.x100_c00055{left:259.466667pt;}
.x5d_c00055{left:260.800000pt;}
.x1c_c00055{left:262.933333pt;}
.x86_c00055{left:265.733333pt;}
.x10a_c00055{left:267.733333pt;}
.x3e_c00055{left:269.066667pt;}
.xcc_c00055{left:270.000000pt;}
.x65_c00055{left:271.333333pt;}
.x114_c00055{left:272.400000pt;}
.xa0_c00055{left:273.466667pt;}
.x71_c00055{left:274.533333pt;}
.xe3_c00055{left:276.000000pt;}
.x102_c00055{left:277.200000pt;}
.xf3_c00055{left:278.800000pt;}
.x4c_c00055{left:280.266667pt;}
.x1d_c00055{left:281.866667pt;}
.x10e_c00055{left:283.200000pt;}
.x8_c00055{left:284.133333pt;}
.x2d_c00055{left:285.466667pt;}
.x106_c00055{left:287.200000pt;}
.xa1_c00055{left:290.133333pt;}
.x72_c00055{left:292.133333pt;}
.x66_c00055{left:293.733333pt;}
.x4d_c00055{left:295.333333pt;}
.xf7_c00055{left:296.400000pt;}
.x7d_c00055{left:298.400000pt;}
.xd3_c00055{left:299.600000pt;}
.x3f_c00055{left:301.066667pt;}
.x9_c00055{left:302.400000pt;}
.xff_c00055{left:304.400000pt;}
.x2e_c00055{left:306.933333pt;}
.xf1_c00055{left:308.133333pt;}
.xd9_c00055{left:309.333333pt;}
.x5e_c00055{left:312.000000pt;}
.x119_c00055{left:312.933333pt;}
.xfc_c00055{left:314.800000pt;}
.x1e_c00055{left:315.733333pt;}
.x7e_c00055{left:316.933333pt;}
.x97_c00055{left:318.400000pt;}
.xed_c00055{left:320.400000pt;}
.x40_c00055{left:322.533333pt;}
.xf4_c00055{left:324.933333pt;}
.xba_c00055{left:326.666667pt;}
.xa_c00055{left:328.000000pt;}
.xee_c00055{left:329.066667pt;}
.x1_c00055{left:331.466667pt;}
.xc7_c00055{left:333.200000pt;}
.x91_c00055{left:334.666667pt;}
.x118_c00055{left:336.533333pt;}
.xe4_c00055{left:337.733333pt;}
.xa2_c00055{left:338.800000pt;}
.x87_c00055{left:341.466667pt;}
.x2f_c00055{left:343.066667pt;}
.x108_c00055{left:345.733333pt;}
.x11c_c00055{left:346.933333pt;}
.xa3_c00055{left:348.666667pt;}
.xcd_c00055{left:350.400000pt;}
.x73_c00055{left:352.400000pt;}
.x4e_c00055{left:353.866667pt;}
.xf5_c00055{left:355.333333pt;}
.x7f_c00055{left:356.933333pt;}
.x103_c00055{left:357.866667pt;}
.x98_c00055{left:359.333333pt;}
.x5f_c00055{left:362.000000pt;}
.x115_c00055{left:363.200000pt;}
.xf8_c00055{left:364.933333pt;}
.x1f_c00055{left:366.266667pt;}
.x67_c00055{left:368.000000pt;}
.xe5_c00055{left:369.733333pt;}
.x41_c00055{left:371.466667pt;}
.x92_c00055{left:372.800000pt;}
.x74_c00055{left:375.066667pt;}
.x30_c00055{left:376.000000pt;}
.xab_c00055{left:377.333333pt;}
.xa4_c00055{left:378.400000pt;}
.x20_c00055{left:385.200000pt;}
.xac_c00055{left:388.266667pt;}
.x2_c00055{left:389.733333pt;}
.xb_c00055{left:392.266667pt;}
.x4f_c00055{left:395.466667pt;}
.x130_c00055{left:396.400000pt;}
.x21_c00055{left:397.333333pt;}
.x31_c00055{left:399.066667pt;}
.xb1_c00055{left:400.000000pt;}
.x42_c00055{left:402.800000pt;}
.x99_c00055{left:403.866667pt;}
.xbb_c00055{left:407.600000pt;}
.xc_c00055{left:408.533333pt;}
.x50_c00055{left:410.533333pt;}
.xe0_c00055{left:412.266667pt;}
.x68_c00055{left:415.066667pt;}
.xda_c00055{left:417.333333pt;}
.x136_c00055{left:418.400000pt;}
.x129_c00055{left:419.333333pt;}
.x22_c00055{left:422.933333pt;}
.x122_c00055{left:425.466667pt;}
.x132_c00055{left:428.666667pt;}
.xc8_c00055{left:430.133333pt;}
.x51_c00055{left:431.600000pt;}
.x13d_c00055{left:434.666667pt;}
.x133_c00055{left:436.400000pt;}
.x43_c00055{left:437.333333pt;}
.x12b_c00055{left:438.666667pt;}
.x80_c00055{left:439.600000pt;}
.x139_c00055{left:440.533333pt;}
.x23_c00055{left:441.466667pt;}
.x9a_c00055{left:443.200000pt;}
.x93_c00055{left:445.200000pt;}
.xd_c00055{left:447.200000pt;}
.xa5_c00055{left:449.200000pt;}
.x32_c00055{left:450.933333pt;}
.x141_c00055{left:452.133333pt;}
.x69_c00055{left:454.133333pt;}
.xce_c00055{left:455.066667pt;}
.x137_c00055{left:456.133333pt;}
.x52_c00055{left:457.466667pt;}
.x81_c00055{left:458.533333pt;}
.x12e_c00055{left:460.133333pt;}
.xa6_c00055{left:461.333333pt;}
.x75_c00055{left:463.066667pt;}
.x146_c00055{left:465.066667pt;}
.x33_c00055{left:467.200000pt;}
.x88_c00055{left:468.800000pt;}
.x155_c00055{left:470.133333pt;}
.xcf_c00055{left:471.066667pt;}
.x60_c00055{left:472.133333pt;}
.x11d_c00055{left:474.800000pt;}
.xbc_c00055{left:475.733333pt;}
.x13e_c00055{left:477.200000pt;}
.xe_c00055{left:479.866667pt;}
.x12c_c00055{left:482.533333pt;}
.xd4_c00055{left:483.600000pt;}
.x134_c00055{left:486.000000pt;}
.x123_c00055{left:487.200000pt;}
.x131_c00055{left:488.800000pt;}
.xa7_c00055{left:489.866667pt;}
.x125_c00055{left:490.933333pt;}
.xc3_c00055{left:492.133333pt;}
.x13a_c00055{left:493.866667pt;}
.xdb_c00055{left:496.000000pt;}
.x6a_c00055{left:497.066667pt;}
.x53_c00055{left:498.800000pt;}
.x24_c00055{left:501.600000pt;}
.xd5_c00055{left:502.533333pt;}
.xf_c00055{left:504.800000pt;}
.x9b_c00055{left:506.266667pt;}
.x142_c00055{left:507.200000pt;}
.x34_c00055{left:508.800000pt;}
.x12a_c00055{left:511.600000pt;}
.x89_c00055{left:513.200000pt;}
.x13f_c00055{left:514.933333pt;}
.xb2_c00055{left:515.866667pt;}
.x9c_c00055{left:517.466667pt;}
.x25_c00055{left:519.200000pt;}
.x76_c00055{left:520.666667pt;}
.x10_c00055{left:523.066667pt;}
.x44_c00055{left:524.933333pt;}
.x143_c00055{left:526.133333pt;}
.x54_c00055{left:527.600000pt;}
.x152_c00055{left:531.200000pt;}
.x26_c00055{left:532.933333pt;}
.x61_c00055{left:534.533333pt;}
.x14c_c00055{left:535.466667pt;}
.x147_c00055{left:536.400000pt;}
.xd6_c00055{left:537.733333pt;}
.xdc_c00055{left:539.200000pt;}
.x8a_c00055{left:541.733333pt;}
.xb3_c00055{left:543.066667pt;}
.x153_c00055{left:544.000000pt;}
.x6b_c00055{left:546.000000pt;}
.x14f_c00055{left:546.933333pt;}
.xbd_c00055{left:548.000000pt;}
.xad_c00055{left:550.800000pt;}
.x11_c00055{left:554.800000pt;}
.x150_c00055{left:555.866667pt;}
.x13b_c00055{left:557.200000pt;}
.x55_c00055{left:558.666667pt;}
.x82_c00055{left:560.400000pt;}
.x35_c00055{left:562.533333pt;}
.x11e_c00055{left:563.733333pt;}
.xbe_c00055{left:564.933333pt;}
.x77_c00055{left:566.400000pt;}
.x156_c00055{left:568.133333pt;}
.x8b_c00055{left:569.200000pt;}
.x124_c00055{left:570.133333pt;}
.x121_c00055{left:571.600000pt;}
.x13c_c00055{left:572.533333pt;}
.x27_c00055{left:573.600000pt;}
.xc4_c00055{left:575.066667pt;}
.x56_c00055{left:578.800000pt;}
.x126_c00055{left:579.733333pt;}
.x45_c00055{left:580.933333pt;}
.xb4_c00055{left:583.333333pt;}
.x78_c00055{left:584.266667pt;}
.x28_c00055{left:586.400000pt;}
.x9d_c00055{left:588.533333pt;}
.x12_c00055{left:590.000000pt;}
.x36_c00055{left:591.066667pt;}
.xc9_c00055{left:593.866667pt;}
.xae_c00055{left:595.333333pt;}
.xd7_c00055{left:596.533333pt;}
.x14d_c00055{left:597.466667pt;}
.x9e_c00055{left:599.066667pt;}
.xd0_c00055{left:600.933333pt;}
.xa8_c00055{left:601.866667pt;}
.x14a_c00055{left:602.933333pt;}
.x149_c00055{left:604.133333pt;}
.x79_c00055{left:606.933333pt;}
.x46_c00055{left:607.866667pt;}
.x57_c00055{left:610.800000pt;}
.x148_c00055{left:612.266667pt;}
.x37_c00055{left:614.400000pt;}
.x138_c00055{left:617.466667pt;}
.x12d_c00055{left:618.533333pt;}
.x157_c00055{left:619.733333pt;}
.xa9_c00055{left:621.733333pt;}
.x127_c00055{left:623.600000pt;}
.x151_c00055{left:625.600000pt;}
.x140_c00055{left:626.533333pt;}
.x13_c00055{left:627.733333pt;}
.x8c_c00055{left:629.333333pt;}
.x11f_c00055{left:630.266667pt;}
.xd1_c00055{left:631.333333pt;}
.x144_c00055{left:632.666667pt;}
.x62_c00055{left:633.733333pt;}
.x158_c00055{left:635.066667pt;}
.x7a_c00055{left:636.666667pt;}
.xc5_c00055{left:639.333333pt;}
.x128_c00055{left:641.200000pt;}
.x58_c00055{left:643.333333pt;}
.x14_c00055{left:645.333333pt;}
.x38_c00055{left:647.333333pt;}
.x145_c00055{left:648.400000pt;}
.xca_c00055{left:649.600000pt;}
.x159_c00055{left:651.066667pt;}
.x120_c00055{left:653.333333pt;}
.xdd_c00055{left:654.400000pt;}
.x12f_c00055{left:658.133333pt;}
.x47_c00055{left:660.000000pt;}
.xbf_c00055{left:660.933333pt;}
.x15a_c00055{left:662.266667pt;}
.x15_c00055{left:663.200000pt;}
.x14b_c00055{left:664.133333pt;}
.xb5_c00055{left:665.866667pt;}
.x6c_c00055{left:668.533333pt;}
.x3_c00055{left:670.666667pt;}
.x14e_c00055{left:672.666667pt;}
.x135_c00055{left:674.400000pt;}
.x154_c00055{left:676.400000pt;}
.x29_c00055{left:678.800000pt;}
.x8d_c00055{left:681.466667pt;}
}





/* 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_c00056 {
    display:none;
  }
  .loading-indicator_c00056.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00056 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_c00056 { 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_c00056" -> "#page-container .classname_c00056")
 */
.pf_c00056 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00056 { /* 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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00056 { /* 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_c00056 { /* 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_c00056 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00056 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00056 {overflow:visible;}
  }
}
.c_c00056 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00056 { /* 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_c00056:after { /* webkit #35443 */
  content: '';
}
.t_c00056:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00056 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 */
}
.__c00056 { /* 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_c00056 { /* info for Javascript */
  display:none;
}
.l_c00056 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00056 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00056 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00056: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_c00056 {
    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_c00056.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00056.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_c00056 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00056{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00056;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.000000;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;}
.m7c_c00056{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00056{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00056{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m76_c00056{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m52_c00056{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m60_c00056{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m26_c00056{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00056{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00056{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00056{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00056{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m63_c00056{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m13_c00056{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00056{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00056{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m72_c00056{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m69_c00056{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma_c00056{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m36_c00056{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00056{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00056{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m42_c00056{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00056{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00056{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m47_c00056{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00056{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m51_c00056{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00056{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m50_c00056{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m59_c00056{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m31_c00056{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m68_c00056{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00056{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m34_c00056{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m80_c00056{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m30_c00056{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00056{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m65_c00056{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00056{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);}
.m17_c00056{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00056{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m41_c00056{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00056{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m78_c00056{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00056{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00056{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00056{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m4_c00056{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00056{vertical-align:0.000000px;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{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__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:-0.277778px;}
.ws2_c00056{word-spacing:0.000000px;}
.ws1_c00056{word-spacing:11.854839px;}
.fc0_c00056{color:transparent;}
.fs0_c00056{font-size:54.000000px;}
.fs1_c00056{font-size:60.000000px;}
.y0_c00056{bottom:0.000000px;}
.y18_c00056{bottom:568.200000px;}
.y17_c00056{bottom:588.000000px;}
.y16_c00056{bottom:607.800000px;}
.y15_c00056{bottom:627.600000px;}
.y14_c00056{bottom:647.400000px;}
.y13_c00056{bottom:667.500000px;}
.y12_c00056{bottom:687.600000px;}
.y11_c00056{bottom:707.400000px;}
.y10_c00056{bottom:727.200000px;}
.yf_c00056{bottom:747.150000px;}
.ye_c00056{bottom:766.950000px;}
.yd_c00056{bottom:786.750000px;}
.yc_c00056{bottom:806.850000px;}
.yb_c00056{bottom:826.650000px;}
.ya_c00056{bottom:846.450000px;}
.y9_c00056{bottom:866.250000px;}
.y8_c00056{bottom:886.050000px;}
.y7_c00056{bottom:905.850000px;}
.y6_c00056{bottom:925.950000px;}
.y5_c00056{bottom:945.450000px;}
.y4_c00056{bottom:965.250000px;}
.y3_c00056{bottom:985.350000px;}
.y2_c00056{bottom:1005.150000px;}
.y1_c00056{bottom:1043.700000px;}
.h2_c00056{height:54.000000px;}
.h3_c00056{height:60.000000px;}
.h1_c00056{height:1167.000000px;}
.h0_c00056{height:1167.119934px;}
.w0_c00056{width:913.320007px;}
.w1_c00056{width:913.500000px;}
.x0_c00056{left:0.000000px;}
.xa3_c00056{left:144.000000px;}
.x12_c00056{left:145.350000px;}
.x1_c00056{left:147.300000px;}
.x2e_c00056{left:165.150000px;}
.x5d_c00056{left:166.500000px;}
.xb3_c00056{left:170.850000px;}
.x4_c00056{left:176.700000px;}
.x83_c00056{left:184.500000px;}
.x96_c00056{left:188.850000px;}
.x35_c00056{left:191.250000px;}
.x2f_c00056{left:193.650000px;}
.x52_c00056{left:196.500000px;}
.xd3_c00056{left:197.550000px;}
.x5_c00056{left:198.600000px;}
.x78_c00056{left:201.450000px;}
.x13_c00056{left:204.750000px;}
.x97_c00056{left:207.150000px;}
.xac_c00056{left:209.100000px;}
.xcb_c00056{left:210.300000px;}
.xbd_c00056{left:215.250000px;}
.x45_c00056{left:218.100000px;}
.x14_c00056{left:222.000000px;}
.x1f_c00056{left:223.050000px;}
.x6_c00056{left:224.100000px;}
.x36_c00056{left:225.450000px;}
.x69_c00056{left:230.100000px;}
.xe2_c00056{left:232.650000px;}
.x20_c00056{left:234.150000px;}
.xd4_c00056{left:241.050000px;}
.xb4_c00056{left:242.550000px;}
.x84_c00056{left:245.250000px;}
.x8f_c00056{left:251.850000px;}
.x37_c00056{left:255.300000px;}
.xc4_c00056{left:261.150000px;}
.x15_c00056{left:262.350000px;}
.x21_c00056{left:266.850000px;}
.x46_c00056{left:268.800000px;}
.x53_c00056{left:271.350000px;}
.x6a_c00056{left:276.150000px;}
.xa4_c00056{left:277.500000px;}
.xd9_c00056{left:279.000000px;}
.x7_c00056{left:283.200000px;}
.x79_c00056{left:287.550000px;}
.x38_c00056{left:290.250000px;}
.x5e_c00056{left:294.750000px;}
.x30_c00056{left:296.700000px;}
.x90_c00056{left:298.650000px;}
.xde_c00056{left:300.750000px;}
.x54_c00056{left:302.250000px;}
.x39_c00056{left:303.900000px;}
.x47_c00056{left:305.850000px;}
.x22_c00056{left:310.350000px;}
.x6b_c00056{left:312.900000px;}
.x5f_c00056{left:315.600000px;}
.x91_c00056{left:318.150000px;}
.xa5_c00056{left:320.700000px;}
.x85_c00056{left:323.100000px;}
.x3a_c00056{left:326.550000px;}
.x8_c00056{left:331.800000px;}
.x98_c00056{left:333.150000px;}
.xad_c00056{left:335.850000px;}
.x7a_c00056{left:340.800000px;}
.x48_c00056{left:341.850000px;}
.xbe_c00056{left:343.650000px;}
.x23_c00056{left:347.100000px;}
.x6c_c00056{left:351.000000px;}
.xc5_c00056{left:352.350000px;}
.x3b_c00056{left:355.650000px;}
.x31_c00056{left:358.950000px;}
.xd5_c00056{left:364.500000px;}
.x55_c00056{left:367.050000px;}
.x7b_c00056{left:369.600000px;}
.xc6_c00056{left:372.900000px;}
.xcc_c00056{left:378.450000px;}
.x49_c00056{left:381.150000px;}
.x6d_c00056{left:389.100000px;}
.x16_c00056{left:390.900000px;}
.x60_c00056{left:391.950000px;}
.x2_c00056{left:394.950000px;}
.x32_c00056{left:396.750000px;}
.x86_c00056{left:399.000000px;}
.xae_c00056{left:402.150000px;}
.xe3_c00056{left:409.650000px;}
.x7c_c00056{left:411.000000px;}
.x3c_c00056{left:413.550000px;}
.x99_c00056{left:415.200000px;}
.x87_c00056{left:417.000000px;}
.xb5_c00056{left:420.000000px;}
.x6e_c00056{left:421.200000px;}
.x56_c00056{left:426.450000px;}
.x24_c00056{left:427.800000px;}
.xcd_c00056{left:429.900000px;}
.xaf_c00056{left:430.950000px;}
.x4a_c00056{left:433.350000px;}
.x9_c00056{left:436.950000px;}
.xda_c00056{left:438.750000px;}
.x6f_c00056{left:439.950000px;}
.x25_c00056{left:445.500000px;}
.x3d_c00056{left:448.500000px;}
.x17_c00056{left:450.000000px;}
.x57_c00056{left:455.550000px;}
.x33_c00056{left:457.350000px;}
.x9a_c00056{left:458.700000px;}
.x61_c00056{left:460.650000px;}
.x70_c00056{left:461.850000px;}
.xa6_c00056{left:463.050000px;}
.x7d_c00056{left:464.700000px;}
.xa_c00056{left:468.300000px;}
.xdb_c00056{left:469.350000px;}
.xb6_c00056{left:478.800000px;}
.x26_c00056{left:481.200000px;}
.x71_c00056{left:482.700000px;}
.x3e_c00056{left:484.200000px;}
.x9b_c00056{left:485.400000px;}
.x88_c00056{left:491.100000px;}
.xdf_c00056{left:492.150000px;}
.x3_c00056{left:493.650000px;}
.x92_c00056{left:497.850000px;}
.x72_c00056{left:503.550000px;}
.x18_c00056{left:506.850000px;}
.xdc_c00056{left:507.900000px;}
.x89_c00056{left:509.100000px;}
.x7e_c00056{left:512.250000px;}
.xb_c00056{left:513.300000px;}
.xa7_c00056{left:514.500000px;}
.x4b_c00056{left:516.900000px;}
.x27_c00056{left:521.550000px;}
.x58_c00056{left:528.300000px;}
.x7f_c00056{left:530.550000px;}
.x62_c00056{left:533.700000px;}
.x8a_c00056{left:537.150000px;}
.x34_c00056{left:538.800000px;}
.x4c_c00056{left:542.100000px;}
.x80_c00056{left:544.200000px;}
.x19_c00056{left:547.950000px;}
.xce_c00056{left:550.200000px;}
.xa8_c00056{left:551.250000px;}
.x28_c00056{left:552.900000px;}
.xe0_c00056{left:554.100000px;}
.xbf_c00056{left:555.900000px;}
.xb0_c00056{left:557.250000px;}
.xb7_c00056{left:558.300000px;}
.x63_c00056{left:562.500000px;}
.xa9_c00056{left:566.400000px;}
.x4d_c00056{left:569.100000px;}
.xcf_c00056{left:572.550000px;}
.x9c_c00056{left:576.450000px;}
.x73_c00056{left:577.950000px;}
.x3f_c00056{left:579.600000px;}
.x59_c00056{left:583.350000px;}
.xc_c00056{left:586.050000px;}
.x64_c00056{left:591.000000px;}
.x8b_c00056{left:592.650000px;}
.x9d_c00056{left:594.450000px;}
.x40_c00056{left:599.700000px;}
.x29_c00056{left:602.250000px;}
.xd_c00056{left:604.050000px;}
.xb8_c00056{left:608.400000px;}
.x8c_c00056{left:612.450000px;}
.xd6_c00056{left:615.600000px;}
.xc7_c00056{left:618.000000px;}
.x41_c00056{left:622.350000px;}
.xaa_c00056{left:625.500000px;}
.xc0_c00056{left:626.850000px;}
.x1a_c00056{left:628.200000px;}
.x74_c00056{left:630.900000px;}
.x65_c00056{left:636.300000px;}
.xc8_c00056{left:637.800000px;}
.xd0_c00056{left:638.850000px;}
.xe1_c00056{left:640.500000px;}
.xd7_c00056{left:642.600000px;}
.x4e_c00056{left:643.650000px;}
.xb9_c00056{left:645.450000px;}
.x9e_c00056{left:646.650000px;}
.x81_c00056{left:649.050000px;}
.xb1_c00056{left:652.350000px;}
.x1b_c00056{left:656.250000px;}
.x42_c00056{left:658.350000px;}
.xab_c00056{left:661.200000px;}
.x8d_c00056{left:663.150000px;}
.x4f_c00056{left:664.500000px;}
.x2a_c00056{left:667.350000px;}
.xc9_c00056{left:670.200000px;}
.xd8_c00056{left:672.900000px;}
.x9f_c00056{left:673.950000px;}
.x66_c00056{left:675.150000px;}
.xe_c00056{left:678.150000px;}
.x2b_c00056{left:684.600000px;}
.x75_c00056{left:687.750000px;}
.x5a_c00056{left:689.100000px;}
.xba_c00056{left:693.000000px;}
.xc1_c00056{left:701.400000px;}
.x67_c00056{left:703.200000px;}
.xb2_c00056{left:704.550000px;}
.x76_c00056{left:707.850000px;}
.xf_c00056{left:710.550000px;}
.xbb_c00056{left:711.750000px;}
.x1c_c00056{left:713.100000px;}
.xa0_c00056{left:714.300000px;}
.xd1_c00056{left:716.700000px;}
.x93_c00056{left:717.750000px;}
.x2c_c00056{left:719.850000px;}
.xdd_c00056{left:725.250000px;}
.x5b_c00056{left:727.650000px;}
.x50_c00056{left:729.300000px;}
.x1d_c00056{left:733.950000px;}
.x8e_c00056{left:735.900000px;}
.x43_c00056{left:738.300000px;}
.x82_c00056{left:741.900000px;}
.x94_c00056{left:743.250000px;}
.x2d_c00056{left:744.750000px;}
.xa1_c00056{left:746.700000px;}
.x68_c00056{left:751.050000px;}
.xc2_c00056{left:755.100000px;}
.x44_c00056{left:759.150000px;}
.x10_c00056{left:760.950000px;}
.xca_c00056{left:763.500000px;}
.xa2_c00056{left:775.800000px;}
.x11_c00056{left:778.950000px;}
.xbc_c00056{left:780.900000px;}
.x51_c00056{left:783.000000px;}
.x1e_c00056{left:784.350000px;}
.x95_c00056{left:785.400000px;}
.x5c_c00056{left:786.750000px;}
.x77_c00056{left:789.600000px;}
.xc3_c00056{left:794.700000px;}
.xd2_c00056{left:798.750000px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:-0.246914pt;}
.ws2_c00056{word-spacing:0.000000pt;}
.ws1_c00056{word-spacing:10.537634pt;}
.fs0_c00056{font-size:48.000000pt;}
.fs1_c00056{font-size:53.333333pt;}
.y0_c00056{bottom:0.000000pt;}
.y18_c00056{bottom:505.066667pt;}
.y17_c00056{bottom:522.666667pt;}
.y16_c00056{bottom:540.266667pt;}
.y15_c00056{bottom:557.866667pt;}
.y14_c00056{bottom:575.466667pt;}
.y13_c00056{bottom:593.333333pt;}
.y12_c00056{bottom:611.200000pt;}
.y11_c00056{bottom:628.800000pt;}
.y10_c00056{bottom:646.400000pt;}
.yf_c00056{bottom:664.133333pt;}
.ye_c00056{bottom:681.733333pt;}
.yd_c00056{bottom:699.333333pt;}
.yc_c00056{bottom:717.200000pt;}
.yb_c00056{bottom:734.800000pt;}
.ya_c00056{bottom:752.400000pt;}
.y9_c00056{bottom:770.000000pt;}
.y8_c00056{bottom:787.600000pt;}
.y7_c00056{bottom:805.200000pt;}
.y6_c00056{bottom:823.066667pt;}
.y5_c00056{bottom:840.400000pt;}
.y4_c00056{bottom:858.000000pt;}
.y3_c00056{bottom:875.866667pt;}
.y2_c00056{bottom:893.466667pt;}
.y1_c00056{bottom:927.733333pt;}
.h2_c00056{height:48.000000pt;}
.h3_c00056{height:53.333333pt;}
.h1_c00056{height:1037.333333pt;}
.h0_c00056{height:1037.439941pt;}
.w0_c00056{width:811.840007pt;}
.w1_c00056{width:812.000000pt;}
.x0_c00056{left:0.000000pt;}
.xa3_c00056{left:128.000000pt;}
.x12_c00056{left:129.200000pt;}
.x1_c00056{left:130.933333pt;}
.x2e_c00056{left:146.800000pt;}
.x5d_c00056{left:148.000000pt;}
.xb3_c00056{left:151.866667pt;}
.x4_c00056{left:157.066667pt;}
.x83_c00056{left:164.000000pt;}
.x96_c00056{left:167.866667pt;}
.x35_c00056{left:170.000000pt;}
.x2f_c00056{left:172.133333pt;}
.x52_c00056{left:174.666667pt;}
.xd3_c00056{left:175.600000pt;}
.x5_c00056{left:176.533333pt;}
.x78_c00056{left:179.066667pt;}
.x13_c00056{left:182.000000pt;}
.x97_c00056{left:184.133333pt;}
.xac_c00056{left:185.866667pt;}
.xcb_c00056{left:186.933333pt;}
.xbd_c00056{left:191.333333pt;}
.x45_c00056{left:193.866667pt;}
.x14_c00056{left:197.333333pt;}
.x1f_c00056{left:198.266667pt;}
.x6_c00056{left:199.200000pt;}
.x36_c00056{left:200.400000pt;}
.x69_c00056{left:204.533333pt;}
.xe2_c00056{left:206.800000pt;}
.x20_c00056{left:208.133333pt;}
.xd4_c00056{left:214.266667pt;}
.xb4_c00056{left:215.600000pt;}
.x84_c00056{left:218.000000pt;}
.x8f_c00056{left:223.866667pt;}
.x37_c00056{left:226.933333pt;}
.xc4_c00056{left:232.133333pt;}
.x15_c00056{left:233.200000pt;}
.x21_c00056{left:237.200000pt;}
.x46_c00056{left:238.933333pt;}
.x53_c00056{left:241.200000pt;}
.x6a_c00056{left:245.466667pt;}
.xa4_c00056{left:246.666667pt;}
.xd9_c00056{left:248.000000pt;}
.x7_c00056{left:251.733333pt;}
.x79_c00056{left:255.600000pt;}
.x38_c00056{left:258.000000pt;}
.x5e_c00056{left:262.000000pt;}
.x30_c00056{left:263.733333pt;}
.x90_c00056{left:265.466667pt;}
.xde_c00056{left:267.333333pt;}
.x54_c00056{left:268.666667pt;}
.x39_c00056{left:270.133333pt;}
.x47_c00056{left:271.866667pt;}
.x22_c00056{left:275.866667pt;}
.x6b_c00056{left:278.133333pt;}
.x5f_c00056{left:280.533333pt;}
.x91_c00056{left:282.800000pt;}
.xa5_c00056{left:285.066667pt;}
.x85_c00056{left:287.200000pt;}
.x3a_c00056{left:290.266667pt;}
.x8_c00056{left:294.933333pt;}
.x98_c00056{left:296.133333pt;}
.xad_c00056{left:298.533333pt;}
.x7a_c00056{left:302.933333pt;}
.x48_c00056{left:303.866667pt;}
.xbe_c00056{left:305.466667pt;}
.x23_c00056{left:308.533333pt;}
.x6c_c00056{left:312.000000pt;}
.xc5_c00056{left:313.200000pt;}
.x3b_c00056{left:316.133333pt;}
.x31_c00056{left:319.066667pt;}
.xd5_c00056{left:324.000000pt;}
.x55_c00056{left:326.266667pt;}
.x7b_c00056{left:328.533333pt;}
.xc6_c00056{left:331.466667pt;}
.xcc_c00056{left:336.400000pt;}
.x49_c00056{left:338.800000pt;}
.x6d_c00056{left:345.866667pt;}
.x16_c00056{left:347.466667pt;}
.x60_c00056{left:348.400000pt;}
.x2_c00056{left:351.066667pt;}
.x32_c00056{left:352.666667pt;}
.x86_c00056{left:354.666667pt;}
.xae_c00056{left:357.466667pt;}
.xe3_c00056{left:364.133333pt;}
.x7c_c00056{left:365.333333pt;}
.x3c_c00056{left:367.600000pt;}
.x99_c00056{left:369.066667pt;}
.x87_c00056{left:370.666667pt;}
.xb5_c00056{left:373.333333pt;}
.x6e_c00056{left:374.400000pt;}
.x56_c00056{left:379.066667pt;}
.x24_c00056{left:380.266667pt;}
.xcd_c00056{left:382.133333pt;}
.xaf_c00056{left:383.066667pt;}
.x4a_c00056{left:385.200000pt;}
.x9_c00056{left:388.400000pt;}
.xda_c00056{left:390.000000pt;}
.x6f_c00056{left:391.066667pt;}
.x25_c00056{left:396.000000pt;}
.x3d_c00056{left:398.666667pt;}
.x17_c00056{left:400.000000pt;}
.x57_c00056{left:404.933333pt;}
.x33_c00056{left:406.533333pt;}
.x9a_c00056{left:407.733333pt;}
.x61_c00056{left:409.466667pt;}
.x70_c00056{left:410.533333pt;}
.xa6_c00056{left:411.600000pt;}
.x7d_c00056{left:413.066667pt;}
.xa_c00056{left:416.266667pt;}
.xdb_c00056{left:417.200000pt;}
.xb6_c00056{left:425.600000pt;}
.x26_c00056{left:427.733333pt;}
.x71_c00056{left:429.066667pt;}
.x3e_c00056{left:430.400000pt;}
.x9b_c00056{left:431.466667pt;}
.x88_c00056{left:436.533333pt;}
.xdf_c00056{left:437.466667pt;}
.x3_c00056{left:438.800000pt;}
.x92_c00056{left:442.533333pt;}
.x72_c00056{left:447.600000pt;}
.x18_c00056{left:450.533333pt;}
.xdc_c00056{left:451.466667pt;}
.x89_c00056{left:452.533333pt;}
.x7e_c00056{left:455.333333pt;}
.xb_c00056{left:456.266667pt;}
.xa7_c00056{left:457.333333pt;}
.x4b_c00056{left:459.466667pt;}
.x27_c00056{left:463.600000pt;}
.x58_c00056{left:469.600000pt;}
.x7f_c00056{left:471.600000pt;}
.x62_c00056{left:474.400000pt;}
.x8a_c00056{left:477.466667pt;}
.x34_c00056{left:478.933333pt;}
.x4c_c00056{left:481.866667pt;}
.x80_c00056{left:483.733333pt;}
.x19_c00056{left:487.066667pt;}
.xce_c00056{left:489.066667pt;}
.xa8_c00056{left:490.000000pt;}
.x28_c00056{left:491.466667pt;}
.xe0_c00056{left:492.533333pt;}
.xbf_c00056{left:494.133333pt;}
.xb0_c00056{left:495.333333pt;}
.xb7_c00056{left:496.266667pt;}
.x63_c00056{left:500.000000pt;}
.xa9_c00056{left:503.466667pt;}
.x4d_c00056{left:505.866667pt;}
.xcf_c00056{left:508.933333pt;}
.x9c_c00056{left:512.400000pt;}
.x73_c00056{left:513.733333pt;}
.x3f_c00056{left:515.200000pt;}
.x59_c00056{left:518.533333pt;}
.xc_c00056{left:520.933333pt;}
.x64_c00056{left:525.333333pt;}
.x8b_c00056{left:526.800000pt;}
.x9d_c00056{left:528.400000pt;}
.x40_c00056{left:533.066667pt;}
.x29_c00056{left:535.333333pt;}
.xd_c00056{left:536.933333pt;}
.xb8_c00056{left:540.800000pt;}
.x8c_c00056{left:544.400000pt;}
.xd6_c00056{left:547.200000pt;}
.xc7_c00056{left:549.333333pt;}
.x41_c00056{left:553.200000pt;}
.xaa_c00056{left:556.000000pt;}
.xc0_c00056{left:557.200000pt;}
.x1a_c00056{left:558.400000pt;}
.x74_c00056{left:560.800000pt;}
.x65_c00056{left:565.600000pt;}
.xc8_c00056{left:566.933333pt;}
.xd0_c00056{left:567.866667pt;}
.xe1_c00056{left:569.333333pt;}
.xd7_c00056{left:571.200000pt;}
.x4e_c00056{left:572.133333pt;}
.xb9_c00056{left:573.733333pt;}
.x9e_c00056{left:574.800000pt;}
.x81_c00056{left:576.933333pt;}
.xb1_c00056{left:579.866667pt;}
.x1b_c00056{left:583.333333pt;}
.x42_c00056{left:585.200000pt;}
.xab_c00056{left:587.733333pt;}
.x8d_c00056{left:589.466667pt;}
.x4f_c00056{left:590.666667pt;}
.x2a_c00056{left:593.200000pt;}
.xc9_c00056{left:595.733333pt;}
.xd8_c00056{left:598.133333pt;}
.x9f_c00056{left:599.066667pt;}
.x66_c00056{left:600.133333pt;}
.xe_c00056{left:602.800000pt;}
.x2b_c00056{left:608.533333pt;}
.x75_c00056{left:611.333333pt;}
.x5a_c00056{left:612.533333pt;}
.xba_c00056{left:616.000000pt;}
.xc1_c00056{left:623.466667pt;}
.x67_c00056{left:625.066667pt;}
.xb2_c00056{left:626.266667pt;}
.x76_c00056{left:629.200000pt;}
.xf_c00056{left:631.600000pt;}
.xbb_c00056{left:632.666667pt;}
.x1c_c00056{left:633.866667pt;}
.xa0_c00056{left:634.933333pt;}
.xd1_c00056{left:637.066667pt;}
.x93_c00056{left:638.000000pt;}
.x2c_c00056{left:639.866667pt;}
.xdd_c00056{left:644.666667pt;}
.x5b_c00056{left:646.800000pt;}
.x50_c00056{left:648.266667pt;}
.x1d_c00056{left:652.400000pt;}
.x8e_c00056{left:654.133333pt;}
.x43_c00056{left:656.266667pt;}
.x82_c00056{left:659.466667pt;}
.x94_c00056{left:660.666667pt;}
.x2d_c00056{left:662.000000pt;}
.xa1_c00056{left:663.733333pt;}
.x68_c00056{left:667.600000pt;}
.xc2_c00056{left:671.200000pt;}
.x44_c00056{left:674.800000pt;}
.x10_c00056{left:676.400000pt;}
.xca_c00056{left:678.666667pt;}
.xa2_c00056{left:689.600000pt;}
.x11_c00056{left:692.400000pt;}
.xbc_c00056{left:694.133333pt;}
.x51_c00056{left:696.000000pt;}
.x1e_c00056{left:697.200000pt;}
.x95_c00056{left:698.133333pt;}
.x5c_c00056{left:699.333333pt;}
.x77_c00056{left:701.866667pt;}
.xc3_c00056{left:706.400000pt;}
.xd2_c00056{left:710.000000pt;}
}





/* 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_c00057 {
    display:none;
  }
  .loading-indicator_c00057.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00057 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_c00057 { 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_c00057" -> "#page-container .classname_c00057")
 */
.pf_c00057 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00057 { /* 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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00057 { /* 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_c00057 { /* 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_c00057 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00057 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00057 {overflow:visible;}
  }
}
.c_c00057 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00057 { /* 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_c00057:after { /* webkit #35443 */
  content: '';
}
.t_c00057:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00057 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 */
}
.__c00057 { /* 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_c00057 { /* info for Javascript */
  display:none;
}
.l_c00057 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00057 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00057 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00057: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_c00057 {
    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_c00057.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00057.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_c00057 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00057{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00057;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.000000;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;}
.m75_c00057{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00057{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m84_c00057{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00057{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m86_c00057{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m83_c00057{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00057{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00057{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m30_c00057{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m72_c00057{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00057{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00057{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00057{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00057{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m55_c00057{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m56_c00057{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00057{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m70_c00057{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00057{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m59_c00057{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00057{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m60_c00057{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m50_c00057{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00057{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m91_c00057{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00057{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m79_c00057{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00057{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m17_c00057{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m16_c00057{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m82_c00057{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m0_c00057{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00057{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m27_c00057{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m97_c00057{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m95_c00057{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m88_c00057{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m76_c00057{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m63_c00057{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m29_c00057{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m38_c00057{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m49_c00057{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00057{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m25_c00057{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00057{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00057{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m41_c00057{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00057{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00057{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc_c00057{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5_c00057{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m33_c00057{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m68_c00057{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c00057{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m99_c00057{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00057{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m67_c00057{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00057{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00057{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00057{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m90_c00057{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m40_c00057{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00057{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00057{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m71_c00057{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m73_c00057{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m61_c00057{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m35_c00057{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00057{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m21_c00057{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m92_c00057{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00057{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m80_c00057{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m98_c00057{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mf_c00057{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m69_c00057{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m74_c00057{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m22_c00057{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00057{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00057{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m52_c00057{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00057{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00057{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00057{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m96_c00057{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00057{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00057{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m78_c00057{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m12_c00057{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00057{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00057{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8_c00057{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00057{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00057{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m45_c00057{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00057{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m64_c00057{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00057{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m62_c00057{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m37_c00057{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m81_c00057{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m7_c00057{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00057{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00057{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00057{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00057{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m85_c00057{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00057{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00057{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m42_c00057{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00057{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28_c00057{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m48_c00057{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m93_c00057{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);}
.m1b_c00057{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00057{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m15_c00057{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00057{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00057{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00057{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m89_c00057{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m47_c00057{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m26_c00057{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m39_c00057{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m34_c00057{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00057{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m18_c00057{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m94_c00057{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m31_c00057{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c00057{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m58_c00057{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m77_c00057{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00057{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m51_c00057{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.ma_c00057{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00057{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00057{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m57_c00057{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m32_c00057{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00057{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m36_c00057{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00057{vertical-align:0.000000px;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{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__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00057{word-spacing:-2.692308px;}
.ws4_c00057{word-spacing:0.000000px;}
.ws0_c00057{word-spacing:8.571429px;}
.ws2_c00057{word-spacing:10.975610px;}
.ws1_c00057{word-spacing:25.277778px;}
.fc0_c00057{color:transparent;}
.fs1_c00057{font-size:60.000000px;}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y24_c00057{bottom:147.300000px;}
.y23_c00057{bottom:188.400000px;}
.y22_c00057{bottom:208.500000px;}
.y21_c00057{bottom:228.300000px;}
.y20_c00057{bottom:248.100000px;}
.y1f_c00057{bottom:267.900000px;}
.y1e_c00057{bottom:287.700000px;}
.y1d_c00057{bottom:307.500000px;}
.y1c_c00057{bottom:327.300000px;}
.y1b_c00057{bottom:347.100000px;}
.y1a_c00057{bottom:366.900000px;}
.y19_c00057{bottom:386.400000px;}
.y18_c00057{bottom:406.200000px;}
.y17_c00057{bottom:426.000000px;}
.y16_c00057{bottom:445.800000px;}
.y15_c00057{bottom:465.600000px;}
.y14_c00057{bottom:485.700000px;}
.y13_c00057{bottom:505.500000px;}
.y12_c00057{bottom:525.300000px;}
.y11_c00057{bottom:545.400000px;}
.y10_c00057{bottom:565.200000px;}
.yf_c00057{bottom:585.000000px;}
.ye_c00057{bottom:604.800000px;}
.yd_c00057{bottom:624.600000px;}
.yc_c00057{bottom:644.400000px;}
.yb_c00057{bottom:664.200000px;}
.ya_c00057{bottom:684.000000px;}
.y9_c00057{bottom:704.100000px;}
.y8_c00057{bottom:723.600000px;}
.y7_c00057{bottom:743.700000px;}
.y6_c00057{bottom:763.500000px;}
.y5_c00057{bottom:783.300000px;}
.y4_c00057{bottom:803.100000px;}
.y3_c00057{bottom:836.250000px;}
.y2_c00057{bottom:869.400000px;}
.y1_c00057{bottom:1047.900000px;}
.h3_c00057{height:60.000000px;}
.h2_c00057{height:72.000000px;}
.h1_c00057{height:1167.000000px;}
.h0_c00057{height:1167.119934px;}
.w0_c00057{width:913.320007px;}
.w1_c00057{width:913.500000px;}
.x0_c00057{left:0.000000px;}
.xcb_c00057{left:96.600000px;}
.xc_c00057{left:97.950000px;}
.x5d_c00057{left:99.000000px;}
.xc2_c00057{left:114.750000px;}
.xd2_c00057{left:117.450000px;}
.x74_c00057{left:118.800000px;}
.x40_c00057{left:120.300000px;}
.xf9_c00057{left:124.500000px;}
.x69_c00057{left:126.750000px;}
.xd_c00057{left:132.150000px;}
.x4d_c00057{left:134.250000px;}
.xbc_c00057{left:136.050000px;}
.x19_c00057{left:137.100000px;}
.xd6_c00057{left:138.300000px;}
.x27_c00057{left:139.500000px;}
.x108_c00057{left:141.150000px;}
.xc3_c00057{left:142.800000px;}
.x5e_c00057{left:146.550000px;}
.xfc_c00057{left:148.050000px;}
.x7e_c00057{left:152.250000px;}
.x4e_c00057{left:155.550000px;}
.xb5_c00057{left:157.050000px;}
.x75_c00057{left:158.100000px;}
.x1a_c00057{left:159.750000px;}
.xcc_c00057{left:165.750000px;}
.xff_c00057{left:167.100000px;}
.x92_c00057{left:172.050000px;}
.xe_c00057{left:173.250000px;}
.xe6_c00057{left:175.050000px;}
.xb6_c00057{left:177.600000px;}
.x7f_c00057{left:180.000000px;}
.x28_c00057{left:181.200000px;}
.x6a_c00057{left:182.550000px;}
.xa7_c00057{left:184.500000px;}
.x88_c00057{left:185.850000px;}
.xd7_c00057{left:187.650000px;}
.x34_c00057{left:188.700000px;}
.x41_c00057{left:192.600000px;}
.xf4_c00057{left:194.850000px;}
.xf_c00057{left:196.350000px;}
.x5f_c00057{left:198.000000px;}
.x4f_c00057{left:199.500000px;}
.x100_c00057{left:202.800000px;}
.xa8_c00057{left:204.300000px;}
.x9a_c00057{left:205.500000px;}
.x89_c00057{left:206.700000px;}
.x6b_c00057{left:208.050000px;}
.x4_c00057{left:210.900000px;}
.xdf_c00057{left:212.850000px;}
.x76_c00057{left:215.250000px;}
.xe7_c00057{left:220.800000px;}
.x35_c00057{left:222.150000px;}
.xd3_c00057{left:226.500000px;}
.x8a_c00057{left:228.000000px;}
.x9b_c00057{left:229.650000px;}
.x1b_c00057{left:231.000000px;}
.x60_c00057{left:232.500000px;}
.x42_c00057{left:235.800000px;}
.x109_c00057{left:236.850000px;}
.x80_c00057{left:238.650000px;}
.xe0_c00057{left:240.900000px;}
.xbd_c00057{left:242.250000px;}
.x29_c00057{left:243.450000px;}
.x10_c00057{left:246.750000px;}
.x111_c00057{left:250.950000px;}
.x50_c00057{left:252.000000px;}
.xe8_c00057{left:254.250000px;}
.xef_c00057{left:255.600000px;}
.x81_c00057{left:256.950000px;}
.x77_c00057{left:260.250000px;}
.x2a_c00057{left:264.000000px;}
.x93_c00057{left:265.350000px;}
.xb7_c00057{left:273.750000px;}
.x9c_c00057{left:275.700000px;}
.x61_c00057{left:277.800000px;}
.x11_c00057{left:278.850000px;}
.x43_c00057{left:280.050000px;}
.x10e_c00057{left:282.450000px;}
.x78_c00057{left:286.200000px;}
.x106_c00057{left:288.000000px;}
.xfa_c00057{left:289.050000px;}
.x6c_c00057{left:291.900000px;}
.x51_c00057{left:294.150000px;}
.x10a_c00057{left:296.250000px;}
.xa9_c00057{left:297.900000px;}
.x5_c00057{left:299.850000px;}
.x1c_c00057{left:301.200000px;}
.xaf_c00057{left:303.600000px;}
.x8b_c00057{left:306.750000px;}
.x82_c00057{left:309.450000px;}
.xd8_c00057{left:310.500000px;}
.x9d_c00057{left:313.200000px;}
.x44_c00057{left:315.300000px;}
.x52_c00057{left:317.250000px;}
.x112_c00057{left:318.300000px;}
.x62_c00057{left:319.500000px;}
.xc4_c00057{left:321.750000px;}
.xf0_c00057{left:325.500000px;}
.x8c_c00057{left:327.600000px;}
.xe9_c00057{left:329.100000px;}
.x6d_c00057{left:330.750000px;}
.x1d_c00057{left:333.900000px;}
.x2b_c00057{left:335.700000px;}
.x83_c00057{left:337.200000px;}
.x79_c00057{left:339.150000px;}
.xd9_c00057{left:346.500000px;}
.x9e_c00057{left:347.700000px;}
.x53_c00057{left:348.900000px;}
.xb0_c00057{left:350.700000px;}
.xd4_c00057{left:352.200000px;}
.x12_c00057{left:354.750000px;}
.x2c_c00057{left:356.250000px;}
.x36_c00057{left:358.500000px;}
.x104_c00057{left:359.700000px;}
.x10f_c00057{left:363.750000px;}
.xea_c00057{left:365.100000px;}
.xc5_c00057{left:366.450000px;}
.x7a_c00057{left:367.650000px;}
.x6_c00057{left:370.800000px;}
.xcd_c00057{left:372.000000px;}
.x2_c00057{left:377.250000px;}
.xb8_c00057{left:381.900000px;}
.xbe_c00057{left:385.200000px;}
.xc6_c00057{left:387.000000px;}
.x45_c00057{left:389.100000px;}
.xeb_c00057{left:390.600000px;}
.x63_c00057{left:392.250000px;}
.xda_c00057{left:395.850000px;}
.x113_c00057{left:399.750000px;}
.x1e_c00057{left:400.800000px;}
.xaa_c00057{left:403.050000px;}
.x54_c00057{left:405.750000px;}
.xbf_c00057{left:407.100000px;}
.x84_c00057{left:408.450000px;}
.xc7_c00057{left:409.650000px;}
.x46_c00057{left:413.550000px;}
.x7b_c00057{left:416.550000px;}
.xf1_c00057{left:418.350000px;}
.x6e_c00057{left:420.450000px;}
.x1_c00057{left:424.800000px;}
.x2d_c00057{left:426.750000px;}
.x37_c00057{left:428.400000px;}
.xb1_c00057{left:432.750000px;}
.x55_c00057{left:434.850000px;}
.x7c_c00057{left:436.050000px;}
.xf2_c00057{left:438.150000px;}
.xfb_c00057{left:440.400000px;}
.x47_c00057{left:442.650000px;}
.x7_c00057{left:445.650000px;}
.x9f_c00057{left:446.700000px;}
.xd5_c00057{left:451.500000px;}
.x6f_c00057{left:455.400000px;}
.x105_c00057{left:459.150000px;}
.x38_c00057{left:460.500000px;}
.x3_c00057{left:461.550000px;}
.xf5_c00057{left:462.750000px;}
.x7d_c00057{left:464.550000px;}
.xe1_c00057{left:468.450000px;}
.xce_c00057{left:471.750000px;}
.x101_c00057{left:473.250000px;}
.x48_c00057{left:475.350000px;}
.x13_c00057{left:477.150000px;}
.x1f_c00057{left:483.900000px;}
.xa0_c00057{left:485.550000px;}
.x64_c00057{left:487.350000px;}
.x8_c00057{left:489.600000px;}
.x70_c00057{left:491.100000px;}
.xab_c00057{left:493.500000px;}
.xc8_c00057{left:494.850000px;}
.x94_c00057{left:499.200000px;}
.x39_c00057{left:500.850000px;}
.x10b_c00057{left:502.350000px;}
.xf3_c00057{left:504.450000px;}
.xa1_c00057{left:506.400000px;}
.xb2_c00057{left:508.050000px;}
.x9_c00057{left:509.400000px;}
.x2e_c00057{left:510.600000px;}
.x8d_c00057{left:511.800000px;}
.xdb_c00057{left:514.650000px;}
.xe2_c00057{left:517.350000px;}
.x110_c00057{left:519.150000px;}
.x56_c00057{left:520.200000px;}
.xb9_c00057{left:521.250000px;}
.x3a_c00057{left:522.450000px;}
.x2f_c00057{left:524.250000px;}
.xf6_c00057{left:529.350000px;}
.x20_c00057{left:530.700000px;}
.x14_c00057{left:531.900000px;}
.xb3_c00057{left:535.050000px;}
.x95_c00057{left:538.500000px;}
.xdc_c00057{left:542.400000px;}
.x21_c00057{left:545.850000px;}
.x8e_c00057{left:547.050000px;}
.xa2_c00057{left:548.550000px;}
.xac_c00057{left:549.600000px;}
.xcf_c00057{left:554.550000px;}
.xec_c00057{left:555.900000px;}
.x57_c00057{left:558.000000px;}
.x71_c00057{left:561.300000px;}
.x8f_c00057{left:567.150000px;}
.x102_c00057{left:568.350000px;}
.x3b_c00057{left:570.000000px;}
.x65_c00057{left:571.500000px;}
.x30_c00057{left:572.550000px;}
.xe3_c00057{left:577.050000px;}
.xa_c00057{left:578.550000px;}
.xd0_c00057{left:580.500000px;}
.x96_c00057{left:584.250000px;}
.xf7_c00057{left:587.700000px;}
.x31_c00057{left:592.050000px;}
.x90_c00057{left:595.200000px;}
.xb_c00057{left:598.650000px;}
.x107_c00057{left:603.750000px;}
.x15_c00057{left:605.400000px;}
.x49_c00057{left:606.750000px;}
.x58_c00057{left:608.100000px;}
.x3c_c00057{left:609.900000px;}
.xba_c00057{left:610.950000px;}
.x22_c00057{left:612.450000px;}
.xed_c00057{left:614.850000px;}
.x85_c00057{left:617.550000px;}
.xa3_c00057{left:619.500000px;}
.x66_c00057{left:622.950000px;}
.x16_c00057{left:624.450000px;}
.x59_c00057{left:627.150000px;}
.x72_c00057{left:629.700000px;}
.x23_c00057{left:630.750000px;}
.xf8_c00057{left:634.200000px;}
.xad_c00057{left:636.300000px;}
.xfd_c00057{left:640.950000px;}
.x97_c00057{left:643.650000px;}
.x103_c00057{left:645.000000px;}
.x67_c00057{left:646.050000px;}
.xc0_c00057{left:651.900000px;}
.x4a_c00057{left:653.250000px;}
.x5a_c00057{left:655.200000px;}
.x86_c00057{left:657.150000px;}
.xa4_c00057{left:658.350000px;}
.x3d_c00057{left:659.550000px;}
.xdd_c00057{left:665.550000px;}
.xd1_c00057{left:666.900000px;}
.x4b_c00057{left:672.000000px;}
.xc9_c00057{left:673.650000px;}
.xa5_c00057{left:678.150000px;}
.xbb_c00057{left:679.650000px;}
.xfe_c00057{left:680.850000px;}
.x17_c00057{left:683.550000px;}
.x24_c00057{left:686.250000px;}
.xee_c00057{left:687.900000px;}
.x32_c00057{left:689.550000px;}
.x3e_c00057{left:691.650000px;}
.x10c_c00057{left:694.800000px;}
.xde_c00057{left:696.150000px;}
.x98_c00057{left:697.650000px;}
.x4c_c00057{left:698.700000px;}
.x87_c00057{left:700.650000px;}
.x73_c00057{left:703.800000px;}
.x5b_c00057{left:708.450000px;}
.xa6_c00057{left:714.900000px;}
.xc1_c00057{left:717.000000px;}
.xb4_c00057{left:720.900000px;}
.x18_c00057{left:724.650000px;}
.x99_c00057{left:725.700000px;}
.x25_c00057{left:726.900000px;}
.xe4_c00057{left:728.250000px;}
.x91_c00057{left:730.050000px;}
.x10d_c00057{left:731.550000px;}
.x3f_c00057{left:734.850000px;}
.xca_c00057{left:736.650000px;}
.xae_c00057{left:739.200000px;}
.x26_c00057{left:742.800000px;}
.x33_c00057{left:745.350000px;}
.x68_c00057{left:746.550000px;}
.xe5_c00057{left:747.750000px;}
.x5c_c00057{left:750.600000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws3_c00057{word-spacing:-2.393162pt;}
.ws4_c00057{word-spacing:0.000000pt;}
.ws0_c00057{word-spacing:7.619048pt;}
.ws2_c00057{word-spacing:9.756098pt;}
.ws1_c00057{word-spacing:22.469136pt;}
.fs1_c00057{font-size:53.333333pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y24_c00057{bottom:130.933333pt;}
.y23_c00057{bottom:167.466667pt;}
.y22_c00057{bottom:185.333333pt;}
.y21_c00057{bottom:202.933333pt;}
.y20_c00057{bottom:220.533333pt;}
.y1f_c00057{bottom:238.133333pt;}
.y1e_c00057{bottom:255.733333pt;}
.y1d_c00057{bottom:273.333333pt;}
.y1c_c00057{bottom:290.933333pt;}
.y1b_c00057{bottom:308.533333pt;}
.y1a_c00057{bottom:326.133333pt;}
.y19_c00057{bottom:343.466667pt;}
.y18_c00057{bottom:361.066667pt;}
.y17_c00057{bottom:378.666667pt;}
.y16_c00057{bottom:396.266667pt;}
.y15_c00057{bottom:413.866667pt;}
.y14_c00057{bottom:431.733333pt;}
.y13_c00057{bottom:449.333333pt;}
.y12_c00057{bottom:466.933333pt;}
.y11_c00057{bottom:484.800000pt;}
.y10_c00057{bottom:502.400000pt;}
.yf_c00057{bottom:520.000000pt;}
.ye_c00057{bottom:537.600000pt;}
.yd_c00057{bottom:555.200000pt;}
.yc_c00057{bottom:572.800000pt;}
.yb_c00057{bottom:590.400000pt;}
.ya_c00057{bottom:608.000000pt;}
.y9_c00057{bottom:625.866667pt;}
.y8_c00057{bottom:643.200000pt;}
.y7_c00057{bottom:661.066667pt;}
.y6_c00057{bottom:678.666667pt;}
.y5_c00057{bottom:696.266667pt;}
.y4_c00057{bottom:713.866667pt;}
.y3_c00057{bottom:743.333333pt;}
.y2_c00057{bottom:772.800000pt;}
.y1_c00057{bottom:931.466667pt;}
.h3_c00057{height:53.333333pt;}
.h2_c00057{height:64.000000pt;}
.h1_c00057{height:1037.333333pt;}
.h0_c00057{height:1037.439941pt;}
.w0_c00057{width:811.840007pt;}
.w1_c00057{width:812.000000pt;}
.x0_c00057{left:0.000000pt;}
.xcb_c00057{left:85.866667pt;}
.xc_c00057{left:87.066667pt;}
.x5d_c00057{left:88.000000pt;}
.xc2_c00057{left:102.000000pt;}
.xd2_c00057{left:104.400000pt;}
.x74_c00057{left:105.600000pt;}
.x40_c00057{left:106.933333pt;}
.xf9_c00057{left:110.666667pt;}
.x69_c00057{left:112.666667pt;}
.xd_c00057{left:117.466667pt;}
.x4d_c00057{left:119.333333pt;}
.xbc_c00057{left:120.933333pt;}
.x19_c00057{left:121.866667pt;}
.xd6_c00057{left:122.933333pt;}
.x27_c00057{left:124.000000pt;}
.x108_c00057{left:125.466667pt;}
.xc3_c00057{left:126.933333pt;}
.x5e_c00057{left:130.266667pt;}
.xfc_c00057{left:131.600000pt;}
.x7e_c00057{left:135.333333pt;}
.x4e_c00057{left:138.266667pt;}
.xb5_c00057{left:139.600000pt;}
.x75_c00057{left:140.533333pt;}
.x1a_c00057{left:142.000000pt;}
.xcc_c00057{left:147.333333pt;}
.xff_c00057{left:148.533333pt;}
.x92_c00057{left:152.933333pt;}
.xe_c00057{left:154.000000pt;}
.xe6_c00057{left:155.600000pt;}
.xb6_c00057{left:157.866667pt;}
.x7f_c00057{left:160.000000pt;}
.x28_c00057{left:161.066667pt;}
.x6a_c00057{left:162.266667pt;}
.xa7_c00057{left:164.000000pt;}
.x88_c00057{left:165.200000pt;}
.xd7_c00057{left:166.800000pt;}
.x34_c00057{left:167.733333pt;}
.x41_c00057{left:171.200000pt;}
.xf4_c00057{left:173.200000pt;}
.xf_c00057{left:174.533333pt;}
.x5f_c00057{left:176.000000pt;}
.x4f_c00057{left:177.333333pt;}
.x100_c00057{left:180.266667pt;}
.xa8_c00057{left:181.600000pt;}
.x9a_c00057{left:182.666667pt;}
.x89_c00057{left:183.733333pt;}
.x6b_c00057{left:184.933333pt;}
.x4_c00057{left:187.466667pt;}
.xdf_c00057{left:189.200000pt;}
.x76_c00057{left:191.333333pt;}
.xe7_c00057{left:196.266667pt;}
.x35_c00057{left:197.466667pt;}
.xd3_c00057{left:201.333333pt;}
.x8a_c00057{left:202.666667pt;}
.x9b_c00057{left:204.133333pt;}
.x1b_c00057{left:205.333333pt;}
.x60_c00057{left:206.666667pt;}
.x42_c00057{left:209.600000pt;}
.x109_c00057{left:210.533333pt;}
.x80_c00057{left:212.133333pt;}
.xe0_c00057{left:214.133333pt;}
.xbd_c00057{left:215.333333pt;}
.x29_c00057{left:216.400000pt;}
.x10_c00057{left:219.333333pt;}
.x111_c00057{left:223.066667pt;}
.x50_c00057{left:224.000000pt;}
.xe8_c00057{left:226.000000pt;}
.xef_c00057{left:227.200000pt;}
.x81_c00057{left:228.400000pt;}
.x77_c00057{left:231.333333pt;}
.x2a_c00057{left:234.666667pt;}
.x93_c00057{left:235.866667pt;}
.xb7_c00057{left:243.333333pt;}
.x9c_c00057{left:245.066667pt;}
.x61_c00057{left:246.933333pt;}
.x11_c00057{left:247.866667pt;}
.x43_c00057{left:248.933333pt;}
.x10e_c00057{left:251.066667pt;}
.x78_c00057{left:254.400000pt;}
.x106_c00057{left:256.000000pt;}
.xfa_c00057{left:256.933333pt;}
.x6c_c00057{left:259.466667pt;}
.x51_c00057{left:261.466667pt;}
.x10a_c00057{left:263.333333pt;}
.xa9_c00057{left:264.800000pt;}
.x5_c00057{left:266.533333pt;}
.x1c_c00057{left:267.733333pt;}
.xaf_c00057{left:269.866667pt;}
.x8b_c00057{left:272.666667pt;}
.x82_c00057{left:275.066667pt;}
.xd8_c00057{left:276.000000pt;}
.x9d_c00057{left:278.400000pt;}
.x44_c00057{left:280.266667pt;}
.x52_c00057{left:282.000000pt;}
.x112_c00057{left:282.933333pt;}
.x62_c00057{left:284.000000pt;}
.xc4_c00057{left:286.000000pt;}
.xf0_c00057{left:289.333333pt;}
.x8c_c00057{left:291.200000pt;}
.xe9_c00057{left:292.533333pt;}
.x6d_c00057{left:294.000000pt;}
.x1d_c00057{left:296.800000pt;}
.x2b_c00057{left:298.400000pt;}
.x83_c00057{left:299.733333pt;}
.x79_c00057{left:301.466667pt;}
.xd9_c00057{left:308.000000pt;}
.x9e_c00057{left:309.066667pt;}
.x53_c00057{left:310.133333pt;}
.xb0_c00057{left:311.733333pt;}
.xd4_c00057{left:313.066667pt;}
.x12_c00057{left:315.333333pt;}
.x2c_c00057{left:316.666667pt;}
.x36_c00057{left:318.666667pt;}
.x104_c00057{left:319.733333pt;}
.x10f_c00057{left:323.333333pt;}
.xea_c00057{left:324.533333pt;}
.xc5_c00057{left:325.733333pt;}
.x7a_c00057{left:326.800000pt;}
.x6_c00057{left:329.600000pt;}
.xcd_c00057{left:330.666667pt;}
.x2_c00057{left:335.333333pt;}
.xb8_c00057{left:339.466667pt;}
.xbe_c00057{left:342.400000pt;}
.xc6_c00057{left:344.000000pt;}
.x45_c00057{left:345.866667pt;}
.xeb_c00057{left:347.200000pt;}
.x63_c00057{left:348.666667pt;}
.xda_c00057{left:351.866667pt;}
.x113_c00057{left:355.333333pt;}
.x1e_c00057{left:356.266667pt;}
.xaa_c00057{left:358.266667pt;}
.x54_c00057{left:360.666667pt;}
.xbf_c00057{left:361.866667pt;}
.x84_c00057{left:363.066667pt;}
.xc7_c00057{left:364.133333pt;}
.x46_c00057{left:367.600000pt;}
.x7b_c00057{left:370.266667pt;}
.xf1_c00057{left:371.866667pt;}
.x6e_c00057{left:373.733333pt;}
.x1_c00057{left:377.600000pt;}
.x2d_c00057{left:379.333333pt;}
.x37_c00057{left:380.800000pt;}
.xb1_c00057{left:384.666667pt;}
.x55_c00057{left:386.533333pt;}
.x7c_c00057{left:387.600000pt;}
.xf2_c00057{left:389.466667pt;}
.xfb_c00057{left:391.466667pt;}
.x47_c00057{left:393.466667pt;}
.x7_c00057{left:396.133333pt;}
.x9f_c00057{left:397.066667pt;}
.xd5_c00057{left:401.333333pt;}
.x6f_c00057{left:404.800000pt;}
.x105_c00057{left:408.133333pt;}
.x38_c00057{left:409.333333pt;}
.x3_c00057{left:410.266667pt;}
.xf5_c00057{left:411.333333pt;}
.x7d_c00057{left:412.933333pt;}
.xe1_c00057{left:416.400000pt;}
.xce_c00057{left:419.333333pt;}
.x101_c00057{left:420.666667pt;}
.x48_c00057{left:422.533333pt;}
.x13_c00057{left:424.133333pt;}
.x1f_c00057{left:430.133333pt;}
.xa0_c00057{left:431.600000pt;}
.x64_c00057{left:433.200000pt;}
.x8_c00057{left:435.200000pt;}
.x70_c00057{left:436.533333pt;}
.xab_c00057{left:438.666667pt;}
.xc8_c00057{left:439.866667pt;}
.x94_c00057{left:443.733333pt;}
.x39_c00057{left:445.200000pt;}
.x10b_c00057{left:446.533333pt;}
.xf3_c00057{left:448.400000pt;}
.xa1_c00057{left:450.133333pt;}
.xb2_c00057{left:451.600000pt;}
.x9_c00057{left:452.800000pt;}
.x2e_c00057{left:453.866667pt;}
.x8d_c00057{left:454.933333pt;}
.xdb_c00057{left:457.466667pt;}
.xe2_c00057{left:459.866667pt;}
.x110_c00057{left:461.466667pt;}
.x56_c00057{left:462.400000pt;}
.xb9_c00057{left:463.333333pt;}
.x3a_c00057{left:464.400000pt;}
.x2f_c00057{left:466.000000pt;}
.xf6_c00057{left:470.533333pt;}
.x20_c00057{left:471.733333pt;}
.x14_c00057{left:472.800000pt;}
.xb3_c00057{left:475.600000pt;}
.x95_c00057{left:478.666667pt;}
.xdc_c00057{left:482.133333pt;}
.x21_c00057{left:485.200000pt;}
.x8e_c00057{left:486.266667pt;}
.xa2_c00057{left:487.600000pt;}
.xac_c00057{left:488.533333pt;}
.xcf_c00057{left:492.933333pt;}
.xec_c00057{left:494.133333pt;}
.x57_c00057{left:496.000000pt;}
.x71_c00057{left:498.933333pt;}
.x8f_c00057{left:504.133333pt;}
.x102_c00057{left:505.200000pt;}
.x3b_c00057{left:506.666667pt;}
.x65_c00057{left:508.000000pt;}
.x30_c00057{left:508.933333pt;}
.xe3_c00057{left:512.933333pt;}
.xa_c00057{left:514.266667pt;}
.xd0_c00057{left:516.000000pt;}
.x96_c00057{left:519.333333pt;}
.xf7_c00057{left:522.400000pt;}
.x31_c00057{left:526.266667pt;}
.x90_c00057{left:529.066667pt;}
.xb_c00057{left:532.133333pt;}
.x107_c00057{left:536.666667pt;}
.x15_c00057{left:538.133333pt;}
.x49_c00057{left:539.333333pt;}
.x58_c00057{left:540.533333pt;}
.x3c_c00057{left:542.133333pt;}
.xba_c00057{left:543.066667pt;}
.x22_c00057{left:544.400000pt;}
.xed_c00057{left:546.533333pt;}
.x85_c00057{left:548.933333pt;}
.xa3_c00057{left:550.666667pt;}
.x66_c00057{left:553.733333pt;}
.x16_c00057{left:555.066667pt;}
.x59_c00057{left:557.466667pt;}
.x72_c00057{left:559.733333pt;}
.x23_c00057{left:560.666667pt;}
.xf8_c00057{left:563.733333pt;}
.xad_c00057{left:565.600000pt;}
.xfd_c00057{left:569.733333pt;}
.x97_c00057{left:572.133333pt;}
.x103_c00057{left:573.333333pt;}
.x67_c00057{left:574.266667pt;}
.xc0_c00057{left:579.466667pt;}
.x4a_c00057{left:580.666667pt;}
.x5a_c00057{left:582.400000pt;}
.x86_c00057{left:584.133333pt;}
.xa4_c00057{left:585.200000pt;}
.x3d_c00057{left:586.266667pt;}
.xdd_c00057{left:591.600000pt;}
.xd1_c00057{left:592.800000pt;}
.x4b_c00057{left:597.333333pt;}
.xc9_c00057{left:598.800000pt;}
.xa5_c00057{left:602.800000pt;}
.xbb_c00057{left:604.133333pt;}
.xfe_c00057{left:605.200000pt;}
.x17_c00057{left:607.600000pt;}
.x24_c00057{left:610.000000pt;}
.xee_c00057{left:611.466667pt;}
.x32_c00057{left:612.933333pt;}
.x3e_c00057{left:614.800000pt;}
.x10c_c00057{left:617.600000pt;}
.xde_c00057{left:618.800000pt;}
.x98_c00057{left:620.133333pt;}
.x4c_c00057{left:621.066667pt;}
.x87_c00057{left:622.800000pt;}
.x73_c00057{left:625.600000pt;}
.x5b_c00057{left:629.733333pt;}
.xa6_c00057{left:635.466667pt;}
.xc1_c00057{left:637.333333pt;}
.xb4_c00057{left:640.800000pt;}
.x18_c00057{left:644.133333pt;}
.x99_c00057{left:645.066667pt;}
.x25_c00057{left:646.133333pt;}
.xe4_c00057{left:647.333333pt;}
.x91_c00057{left:648.933333pt;}
.x10d_c00057{left:650.266667pt;}
.x3f_c00057{left:653.200000pt;}
.xca_c00057{left:654.800000pt;}
.xae_c00057{left:657.066667pt;}
.x26_c00057{left:660.266667pt;}
.x33_c00057{left:662.533333pt;}
.x68_c00057{left:663.600000pt;}
.xe5_c00057{left:664.666667pt;}
.x5c_c00057{left:667.200000pt;}
}





/* 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_c00058 {
    display:none;
  }
  .loading-indicator_c00058.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00058 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_c00058 { 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_c00058" -> "#page-container .classname_c00058")
 */
.pf_c00058 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00058 { /* 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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00058 { /* 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_c00058 { /* 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_c00058 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00058 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00058 {overflow:visible;}
  }
}
.c_c00058 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00058 { /* 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_c00058:after { /* webkit #35443 */
  content: '';
}
.t_c00058:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00058 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 */
}
.__c00058 { /* 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_c00058 { /* info for Javascript */
  display:none;
}
.l_c00058 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00058 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00058 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00058: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_c00058 {
    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_c00058.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00058.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_c00058 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00058{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00058;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.000000;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;}
.m9e_c00058{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.me_c00058{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00058{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m75_c00058{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m25_c00058{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00058{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00058{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00058{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00058{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00058{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00058{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00058{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m57_c00058{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00058{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00058{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m87_c00058{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m39_c00058{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m95_c00058{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00058{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m62_c00058{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m72_c00058{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m89_c00058{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00058{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m34_c00058{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00058{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m21_c00058{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mc_c00058{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m54_c00058{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m33_c00058{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00058{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00058{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m78_c00058{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00058{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m76_c00058{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m67_c00058{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m29_c00058{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00058{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00058{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00058{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00058{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m41_c00058{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36_c00058{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m63_c00058{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m64_c00058{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00058{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00058{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m68_c00058{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m51_c00058{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m31_c00058{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m69_c00058{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00058{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m47_c00058{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m42_c00058{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00058{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00058{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00058{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m81_c00058{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00058{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m35_c00058{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m91_c00058{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m88_c00058{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m30_c00058{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00058{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m86_c00058{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00058{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m28_c00058{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00058{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00058{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m77_c00058{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00058{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m65_c00058{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00058{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00058{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m98_c00058{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m48_c00058{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m44_c00058{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m61_c00058{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m93_c00058{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00058{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m14_c00058{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00058{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00058{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m96_c00058{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m49_c00058{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00058{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m73_c00058{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00058{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00058{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00058{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00058{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00058{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00058{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m40_c00058{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00058{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m18_c00058{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m46_c00058{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00058{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00058{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00058{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00058{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m43_c00058{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00058{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m45_c00058{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00058{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m50_c00058{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00058{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00058{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m52_c00058{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00058{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m55_c00058{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m79_c00058{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00058{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m37_c00058{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00058{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00058{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);}
.m60_c00058{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00058{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00058{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m80_c00058{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00058{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m38_c00058{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00058{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m32_c00058{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m22_c00058{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00058{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00058{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m59_c00058{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00058{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m97_c00058{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m71_c00058{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m66_c00058{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00058{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m90_c00058{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00058{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m74_c00058{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00058{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00058{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m27_c00058{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m26_c00058{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m70_c00058{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m56_c00058{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m82_c00058{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00058{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00058{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m58_c00058{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00058{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m94_c00058{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m85_c00058{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m83_c00058{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{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__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00058{word-spacing:-11.527778px;}
.ws0_c00058{word-spacing:-10.138889px;}
.ws5_c00058{word-spacing:-7.051282px;}
.ws4_c00058{word-spacing:-5.714286px;}
.ws2_c00058{word-spacing:-5.441176px;}
.ws3_c00058{word-spacing:-3.235294px;}
.ws6_c00058{word-spacing:0.000000px;}
.fc0_c00058{color:transparent;}
.fs0_c00058{font-size:54.000000px;}
.fs1_c00058{font-size:60.000000px;}
.y0_c00058{bottom:0.000000px;}
.y2b_c00058{bottom:156.300000px;}
.y2a_c00058{bottom:197.100000px;}
.y29_c00058{bottom:217.200000px;}
.y28_c00058{bottom:237.000000px;}
.y27_c00058{bottom:256.800000px;}
.y26_c00058{bottom:276.600000px;}
.y25_c00058{bottom:296.400000px;}
.y24_c00058{bottom:316.200000px;}
.y23_c00058{bottom:336.000000px;}
.y22_c00058{bottom:355.800000px;}
.y21_c00058{bottom:375.600000px;}
.y20_c00058{bottom:395.700000px;}
.y1f_c00058{bottom:415.500000px;}
.y1e_c00058{bottom:435.000000px;}
.y1d_c00058{bottom:455.100000px;}
.y1c_c00058{bottom:474.900000px;}
.y1b_c00058{bottom:494.700000px;}
.y1a_c00058{bottom:514.500000px;}
.y19_c00058{bottom:534.300000px;}
.y18_c00058{bottom:554.400000px;}
.y17_c00058{bottom:574.200000px;}
.y16_c00058{bottom:594.000000px;}
.y15_c00058{bottom:613.800000px;}
.y14_c00058{bottom:633.300000px;}
.y13_c00058{bottom:653.100000px;}
.y12_c00058{bottom:672.900000px;}
.y11_c00058{bottom:693.000000px;}
.y10_c00058{bottom:712.800000px;}
.yf_c00058{bottom:732.900000px;}
.ye_c00058{bottom:752.700000px;}
.yd_c00058{bottom:773.250000px;}
.yc_c00058{bottom:793.050000px;}
.yb_c00058{bottom:812.850000px;}
.ya_c00058{bottom:832.650000px;}
.y9_c00058{bottom:852.450000px;}
.y8_c00058{bottom:872.250000px;}
.y7_c00058{bottom:891.750000px;}
.y6_c00058{bottom:911.850000px;}
.y5_c00058{bottom:931.650000px;}
.y4_c00058{bottom:971.400000px;}
.y3_c00058{bottom:991.200000px;}
.y2_c00058{bottom:1011.300000px;}
.y1_c00058{bottom:1049.400000px;}
.h2_c00058{height:54.000000px;}
.h3_c00058{height:60.000000px;}
.h1_c00058{height:1167.000000px;}
.h0_c00058{height:1167.119934px;}
.w0_c00058{width:913.320007px;}
.w1_c00058{width:913.500000px;}
.x0_c00058{left:0.000000px;}
.x63_c00058{left:147.300000px;}
.x4_c00058{left:148.350000px;}
.x1_c00058{left:149.700000px;}
.xcc_c00058{left:160.200000px;}
.x4d_c00058{left:165.450000px;}
.x117_c00058{left:167.100000px;}
.xd9_c00058{left:168.150000px;}
.x96_c00058{left:174.900000px;}
.x33_c00058{left:178.950000px;}
.xbb_c00058{left:182.700000px;}
.xad_c00058{left:186.600000px;}
.x103_c00058{left:187.800000px;}
.x8a_c00058{left:189.750000px;}
.x4e_c00058{left:190.950000px;}
.xda_c00058{left:194.100000px;}
.x9a_c00058{left:195.150000px;}
.x12a_c00058{left:197.400000px;}
.x7b_c00058{left:199.050000px;}
.xf3_c00058{left:200.550000px;}
.x131_c00058{left:202.050000px;}
.x16_c00058{left:203.250000px;}
.x34_c00058{left:204.450000px;}
.xec_c00058{left:207.300000px;}
.xe3_c00058{left:209.100000px;}
.x3f_c00058{left:210.600000px;}
.x107_c00058{left:212.550000px;}
.xb4_c00058{left:214.200000px;}
.x64_c00058{left:215.700000px;}
.x6f_c00058{left:217.500000px;}
.x17_c00058{left:218.700000px;}
.x9b_c00058{left:220.350000px;}
.x10b_c00058{left:222.150000px;}
.x7c_c00058{left:224.250000px;}
.xb5_c00058{left:226.500000px;}
.xbc_c00058{left:228.000000px;}
.x5_c00058{left:230.100000px;}
.x13b_c00058{left:231.750000px;}
.x35_c00058{left:232.950000px;}
.x4f_c00058{left:235.950000px;}
.xae_c00058{left:237.000000px;}
.x124_c00058{left:238.350000px;}
.x104_c00058{left:241.200000px;}
.xdb_c00058{left:242.700000px;}
.x18_c00058{left:246.450000px;}
.x40_c00058{left:247.650000px;}
.x65_c00058{left:249.900000px;}
.x8b_c00058{left:251.250000px;}
.x50_c00058{left:254.250000px;}
.xa4_c00058{left:255.600000px;}
.xf6_c00058{left:257.550000px;}
.x120_c00058{left:262.950000px;}
.xc3_c00058{left:264.300000px;}
.x9c_c00058{left:266.100000px;}
.x8c_c00058{left:268.200000px;}
.x111_c00058{left:271.500000px;}
.x6_c00058{left:272.550000px;}
.xdc_c00058{left:273.600000px;}
.xaf_c00058{left:274.800000px;}
.x70_c00058{left:276.150000px;}
.xa5_c00058{left:277.500000px;}
.xe4_c00058{left:281.100000px;}
.x51_c00058{left:283.050000px;}
.xcd_c00058{left:285.450000px;}
.xc8_c00058{left:286.650000px;}
.x7_c00058{left:289.050000px;}
.xd6_c00058{left:290.250000px;}
.x112_c00058{left:292.050000px;}
.x8d_c00058{left:293.400000px;}
.x36_c00058{left:294.450000px;}
.x59_c00058{left:297.150000px;}
.x41_c00058{left:298.350000px;}
.x66_c00058{left:301.350000px;}
.x81_c00058{left:302.550000px;}
.xa6_c00058{left:303.750000px;}
.xf4_c00058{left:305.550000px;}
.x19_c00058{left:307.350000px;}
.xb6_c00058{left:310.800000px;}
.x71_c00058{left:312.150000px;}
.xce_c00058{left:313.950000px;}
.x37_c00058{left:315.300000px;}
.x26_c00058{left:317.700000px;}
.x67_c00058{left:319.350000px;}
.xf7_c00058{left:323.100000px;}
.x52_c00058{left:325.200000px;}
.x1a_c00058{left:327.900000px;}
.x8e_c00058{left:329.700000px;}
.x8_c00058{left:330.750000px;}
.x125_c00058{left:331.800000px;}
.x121_c00058{left:333.900000px;}
.x5a_c00058{left:336.000000px;}
.x53_c00058{left:337.050000px;}
.x27_c00058{left:338.250000px;}
.xbd_c00058{left:341.400000px;}
.x42_c00058{left:343.050000px;}
.x12b_c00058{left:345.000000px;}
.xc4_c00058{left:348.150000px;}
.x132_c00058{left:349.200000px;}
.xb0_c00058{left:350.700000px;}
.xc9_c00058{left:352.500000px;}
.x7d_c00058{left:353.850000px;}
.x72_c00058{left:355.350000px;}
.xcf_c00058{left:357.450000px;}
.x5b_c00058{left:361.950000px;}
.xbe_c00058{left:364.050000px;}
.x13c_c00058{left:366.000000px;}
.x28_c00058{left:367.050000px;}
.x38_c00058{left:368.250000px;}
.xdd_c00058{left:369.450000px;}
.xe5_c00058{left:371.850000px;}
.x43_c00058{left:372.900000px;}
.xd0_c00058{left:375.750000px;}
.x1b_c00058{left:378.300000px;}
.x12c_c00058{left:379.500000px;}
.xed_c00058{left:382.350000px;}
.xb7_c00058{left:383.550000px;}
.x82_c00058{left:384.900000px;}
.xe6_c00058{left:390.150000px;}
.x113_c00058{left:392.850000px;}
.xb1_c00058{left:394.650000px;}
.x2_c00058{left:396.000000px;}
.x68_c00058{left:397.500000px;}
.x108_c00058{left:398.550000px;}
.x12d_c00058{left:399.600000px;}
.xd1_c00058{left:400.650000px;}
.x44_c00058{left:402.450000px;}
.xa7_c00058{left:404.850000px;}
.x1c_c00058{left:406.350000px;}
.x13e_c00058{left:407.850000px;}
.xf8_c00058{left:410.400000px;}
.xbf_c00058{left:411.900000px;}
.x9_c00058{left:413.550000px;}
.x5c_c00058{left:415.650000px;}
.xde_c00058{left:418.350000px;}
.x83_c00058{left:419.400000px;}
.xc5_c00058{left:421.500000px;}
.x8f_c00058{left:423.000000px;}
.x133_c00058{left:425.100000px;}
.x54_c00058{left:430.650000px;}
.xfe_c00058{left:433.500000px;}
.x73_c00058{left:435.300000px;}
.xca_c00058{left:436.800000px;}
.xa_c00058{left:440.550000px;}
.x39_c00058{left:442.050000px;}
.x29_c00058{left:444.150000px;}
.x5d_c00058{left:446.550000px;}
.x69_c00058{left:448.650000px;}
.xa8_c00058{left:450.300000px;}
.x134_c00058{left:451.800000px;}
.xb_c00058{left:452.850000px;}
.x55_c00058{left:454.800000px;}
.x90_c00058{left:457.950000px;}
.xf9_c00058{left:462.600000px;}
.x9d_c00058{left:464.100000px;}
.x84_c00058{left:465.150000px;}
.x126_c00058{left:466.950000px;}
.x5e_c00058{left:470.250000px;}
.x3a_c00058{left:471.900000px;}
.x118_c00058{left:474.300000px;}
.x135_c00058{left:475.500000px;}
.xc_c00058{left:476.550000px;}
.x11d_c00058{left:479.100000px;}
.x9e_c00058{left:481.350000px;}
.x85_c00058{left:482.850000px;}
.x1d_c00058{left:487.350000px;}
.x10c_c00058{left:489.150000px;}
.x119_c00058{left:490.800000px;}
.x3b_c00058{left:493.200000px;}
.x3_c00058{left:495.300000px;}
.xdf_c00058{left:496.800000px;}
.xff_c00058{left:499.050000px;}
.xb2_c00058{left:501.750000px;}
.xd2_c00058{left:502.950000px;}
.xc0_c00058{left:504.150000px;}
.x2a_c00058{left:505.350000px;}
.x1e_c00058{left:507.150000px;}
.xf5_c00058{left:508.350000px;}
.xee_c00058{left:510.900000px;}
.x45_c00058{left:512.250000px;}
.x13f_c00058{left:513.600000px;}
.xa9_c00058{left:514.650000px;}
.x137_c00058{left:515.850000px;}
.xd_c00058{left:517.200000px;}
.x86_c00058{left:518.850000px;}
.x74_c00058{left:520.650000px;}
.xe0_c00058{left:522.000000px;}
.x7e_c00058{left:524.100000px;}
.xd3_c00058{left:525.300000px;}
.x56_c00058{left:527.550000px;}
.x114_c00058{left:529.200000px;}
.xd7_c00058{left:532.200000px;}
.xe_c00058{left:534.450000px;}
.x9f_c00058{left:536.700000px;}
.x46_c00058{left:539.550000px;}
.x7f_c00058{left:542.850000px;}
.x1f_c00058{left:544.200000px;}
.x57_c00058{left:545.850000px;}
.x136_c00058{left:547.050000px;}
.x127_c00058{left:550.200000px;}
.x2b_c00058{left:551.400000px;}
.xb8_c00058{left:553.200000px;}
.x91_c00058{left:555.450000px;}
.xa0_c00058{left:559.050000px;}
.x11e_c00058{left:560.700000px;}
.xc1_c00058{left:562.050000px;}
.x5f_c00058{left:564.450000px;}
.xc6_c00058{left:565.650000px;}
.xfa_c00058{left:568.350000px;}
.x75_c00058{left:570.300000px;}
.x3c_c00058{left:572.400000px;}
.xe7_c00058{left:573.450000px;}
.xf_c00058{left:575.100000px;}
.x11a_c00058{left:577.050000px;}
.x80_c00058{left:579.150000px;}
.x58_c00058{left:581.850000px;}
.x92_c00058{left:583.950000px;}
.x10_c00058{left:586.200000px;}
.xaa_c00058{left:588.750000px;}
.x60_c00058{left:589.950000px;}
.xa1_c00058{left:594.000000px;}
.xb3_c00058{left:596.400000px;}
.x87_c00058{left:598.800000px;}
.x128_c00058{left:599.850000px;}
.x97_c00058{left:602.250000px;}
.x2c_c00058{left:603.600000px;}
.xe8_c00058{left:607.650000px;}
.x115_c00058{left:609.450000px;}
.x76_c00058{left:610.650000px;}
.xef_c00058{left:612.000000px;}
.x6a_c00058{left:613.500000px;}
.x11_c00058{left:614.700000px;}
.xfb_c00058{left:617.700000px;}
.x138_c00058{left:619.500000px;}
.x47_c00058{left:622.050000px;}
.xab_c00058{left:624.750000px;}
.x109_c00058{left:626.850000px;}
.x11b_c00058{left:628.500000px;}
.x13d_c00058{left:629.850000px;}
.x88_c00058{left:632.250000px;}
.x129_c00058{left:634.050000px;}
.xcb_c00058{left:637.200000px;}
.x20_c00058{left:640.650000px;}
.xe9_c00058{left:643.950000px;}
.x11c_c00058{left:645.000000px;}
.x2d_c00058{left:646.500000px;}
.x12_c00058{left:650.400000px;}
.x61_c00058{left:651.450000px;}
.xf0_c00058{left:653.400000px;}
.x6b_c00058{left:654.600000px;}
.x77_c00058{left:657.450000px;}
.xa2_c00058{left:659.550000px;}
.x2e_c00058{left:660.600000px;}
.x21_c00058{left:662.250000px;}
.x3d_c00058{left:664.950000px;}
.x48_c00058{left:667.800000px;}
.x10a_c00058{left:670.350000px;}
.x98_c00058{left:671.400000px;}
.x100_c00058{left:675.300000px;}
.x78_c00058{left:679.050000px;}
.x49_c00058{left:680.100000px;}
.x93_c00058{left:681.900000px;}
.x10d_c00058{left:683.850000px;}
.xea_c00058{left:686.400000px;}
.x62_c00058{left:687.750000px;}
.xd4_c00058{left:689.850000px;}
.x22_c00058{left:691.050000px;}
.x94_c00058{left:693.750000px;}
.x12e_c00058{left:697.350000px;}
.x89_c00058{left:699.900000px;}
.x2f_c00058{left:702.750000px;}
.x122_c00058{left:705.150000px;}
.x6c_c00058{left:707.100000px;}
.x13_c00058{left:710.850000px;}
.xac_c00058{left:713.550000px;}
.x4a_c00058{left:715.350000px;}
.x79_c00058{left:717.150000px;}
.x30_c00058{left:719.700000px;}
.xf1_c00058{left:721.800000px;}
.xe1_c00058{left:724.950000px;}
.x14_c00058{left:726.000000px;}
.xc2_c00058{left:729.750000px;}
.x139_c00058{left:731.400000px;}
.x23_c00058{left:732.750000px;}
.x116_c00058{left:736.350000px;}
.xfc_c00058{left:738.000000px;}
.xa3_c00058{left:739.350000px;}
.x11f_c00058{left:740.400000px;}
.xb9_c00058{left:741.750000px;}
.x6d_c00058{left:742.800000px;}
.x15_c00058{left:745.500000px;}
.x101_c00058{left:746.550000px;}
.x105_c00058{left:748.500000px;}
.x4b_c00058{left:750.300000px;}
.xeb_c00058{left:751.500000px;}
.x10f_c00058{left:753.150000px;}
.x24_c00058{left:754.350000px;}
.xd5_c00058{left:755.700000px;}
.x31_c00058{left:758.250000px;}
.xfd_c00058{left:760.350000px;}
.x99_c00058{left:761.400000px;}
.x110_c00058{left:763.950000px;}
.x12f_c00058{left:765.450000px;}
.x13a_c00058{left:767.100000px;}
.xf2_c00058{left:768.150000px;}
.x4c_c00058{left:769.800000px;}
.x106_c00058{left:773.700000px;}
.x6e_c00058{left:775.200000px;}
.xc7_c00058{left:776.250000px;}
.x32_c00058{left:777.750000px;}
.xe2_c00058{left:779.700000px;}
.x25_c00058{left:782.850000px;}
.xba_c00058{left:784.200000px;}
.x102_c00058{left:785.400000px;}
.x130_c00058{left:786.750000px;}
.x3e_c00058{left:789.150000px;}
.x10e_c00058{left:793.200000px;}
.x7a_c00058{left:796.650000px;}
.x95_c00058{left:799.950000px;}
.x123_c00058{left:801.300000px;}
.xd8_c00058{left:805.650000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws1_c00058{word-spacing:-10.246914pt;}
.ws0_c00058{word-spacing:-9.012346pt;}
.ws5_c00058{word-spacing:-6.267806pt;}
.ws4_c00058{word-spacing:-5.079365pt;}
.ws2_c00058{word-spacing:-4.836601pt;}
.ws3_c00058{word-spacing:-2.875817pt;}
.ws6_c00058{word-spacing:0.000000pt;}
.fs0_c00058{font-size:48.000000pt;}
.fs1_c00058{font-size:53.333333pt;}
.y0_c00058{bottom:0.000000pt;}
.y2b_c00058{bottom:138.933333pt;}
.y2a_c00058{bottom:175.200000pt;}
.y29_c00058{bottom:193.066667pt;}
.y28_c00058{bottom:210.666667pt;}
.y27_c00058{bottom:228.266667pt;}
.y26_c00058{bottom:245.866667pt;}
.y25_c00058{bottom:263.466667pt;}
.y24_c00058{bottom:281.066667pt;}
.y23_c00058{bottom:298.666667pt;}
.y22_c00058{bottom:316.266667pt;}
.y21_c00058{bottom:333.866667pt;}
.y20_c00058{bottom:351.733333pt;}
.y1f_c00058{bottom:369.333333pt;}
.y1e_c00058{bottom:386.666667pt;}
.y1d_c00058{bottom:404.533333pt;}
.y1c_c00058{bottom:422.133333pt;}
.y1b_c00058{bottom:439.733333pt;}
.y1a_c00058{bottom:457.333333pt;}
.y19_c00058{bottom:474.933333pt;}
.y18_c00058{bottom:492.800000pt;}
.y17_c00058{bottom:510.400000pt;}
.y16_c00058{bottom:528.000000pt;}
.y15_c00058{bottom:545.600000pt;}
.y14_c00058{bottom:562.933333pt;}
.y13_c00058{bottom:580.533333pt;}
.y12_c00058{bottom:598.133333pt;}
.y11_c00058{bottom:616.000000pt;}
.y10_c00058{bottom:633.600000pt;}
.yf_c00058{bottom:651.466667pt;}
.ye_c00058{bottom:669.066667pt;}
.yd_c00058{bottom:687.333333pt;}
.yc_c00058{bottom:704.933333pt;}
.yb_c00058{bottom:722.533333pt;}
.ya_c00058{bottom:740.133333pt;}
.y9_c00058{bottom:757.733333pt;}
.y8_c00058{bottom:775.333333pt;}
.y7_c00058{bottom:792.666667pt;}
.y6_c00058{bottom:810.533333pt;}
.y5_c00058{bottom:828.133333pt;}
.y4_c00058{bottom:863.466667pt;}
.y3_c00058{bottom:881.066667pt;}
.y2_c00058{bottom:898.933333pt;}
.y1_c00058{bottom:932.800000pt;}
.h2_c00058{height:48.000000pt;}
.h3_c00058{height:53.333333pt;}
.h1_c00058{height:1037.333333pt;}
.h0_c00058{height:1037.439941pt;}
.w0_c00058{width:811.840007pt;}
.w1_c00058{width:812.000000pt;}
.x0_c00058{left:0.000000pt;}
.x63_c00058{left:130.933333pt;}
.x4_c00058{left:131.866667pt;}
.x1_c00058{left:133.066667pt;}
.xcc_c00058{left:142.400000pt;}
.x4d_c00058{left:147.066667pt;}
.x117_c00058{left:148.533333pt;}
.xd9_c00058{left:149.466667pt;}
.x96_c00058{left:155.466667pt;}
.x33_c00058{left:159.066667pt;}
.xbb_c00058{left:162.400000pt;}
.xad_c00058{left:165.866667pt;}
.x103_c00058{left:166.933333pt;}
.x8a_c00058{left:168.666667pt;}
.x4e_c00058{left:169.733333pt;}
.xda_c00058{left:172.533333pt;}
.x9a_c00058{left:173.466667pt;}
.x12a_c00058{left:175.466667pt;}
.x7b_c00058{left:176.933333pt;}
.xf3_c00058{left:178.266667pt;}
.x131_c00058{left:179.600000pt;}
.x16_c00058{left:180.666667pt;}
.x34_c00058{left:181.733333pt;}
.xec_c00058{left:184.266667pt;}
.xe3_c00058{left:185.866667pt;}
.x3f_c00058{left:187.200000pt;}
.x107_c00058{left:188.933333pt;}
.xb4_c00058{left:190.400000pt;}
.x64_c00058{left:191.733333pt;}
.x6f_c00058{left:193.333333pt;}
.x17_c00058{left:194.400000pt;}
.x9b_c00058{left:195.866667pt;}
.x10b_c00058{left:197.466667pt;}
.x7c_c00058{left:199.333333pt;}
.xb5_c00058{left:201.333333pt;}
.xbc_c00058{left:202.666667pt;}
.x5_c00058{left:204.533333pt;}
.x13b_c00058{left:206.000000pt;}
.x35_c00058{left:207.066667pt;}
.x4f_c00058{left:209.733333pt;}
.xae_c00058{left:210.666667pt;}
.x124_c00058{left:211.866667pt;}
.x104_c00058{left:214.400000pt;}
.xdb_c00058{left:215.733333pt;}
.x18_c00058{left:219.066667pt;}
.x40_c00058{left:220.133333pt;}
.x65_c00058{left:222.133333pt;}
.x8b_c00058{left:223.333333pt;}
.x50_c00058{left:226.000000pt;}
.xa4_c00058{left:227.200000pt;}
.xf6_c00058{left:228.933333pt;}
.x120_c00058{left:233.733333pt;}
.xc3_c00058{left:234.933333pt;}
.x9c_c00058{left:236.533333pt;}
.x8c_c00058{left:238.400000pt;}
.x111_c00058{left:241.333333pt;}
.x6_c00058{left:242.266667pt;}
.xdc_c00058{left:243.200000pt;}
.xaf_c00058{left:244.266667pt;}
.x70_c00058{left:245.466667pt;}
.xa5_c00058{left:246.666667pt;}
.xe4_c00058{left:249.866667pt;}
.x51_c00058{left:251.600000pt;}
.xcd_c00058{left:253.733333pt;}
.xc8_c00058{left:254.800000pt;}
.x7_c00058{left:256.933333pt;}
.xd6_c00058{left:258.000000pt;}
.x112_c00058{left:259.600000pt;}
.x8d_c00058{left:260.800000pt;}
.x36_c00058{left:261.733333pt;}
.x59_c00058{left:264.133333pt;}
.x41_c00058{left:265.200000pt;}
.x66_c00058{left:267.866667pt;}
.x81_c00058{left:268.933333pt;}
.xa6_c00058{left:270.000000pt;}
.xf4_c00058{left:271.600000pt;}
.x19_c00058{left:273.200000pt;}
.xb6_c00058{left:276.266667pt;}
.x71_c00058{left:277.466667pt;}
.xce_c00058{left:279.066667pt;}
.x37_c00058{left:280.266667pt;}
.x26_c00058{left:282.400000pt;}
.x67_c00058{left:283.866667pt;}
.xf7_c00058{left:287.200000pt;}
.x52_c00058{left:289.066667pt;}
.x1a_c00058{left:291.466667pt;}
.x8e_c00058{left:293.066667pt;}
.x8_c00058{left:294.000000pt;}
.x125_c00058{left:294.933333pt;}
.x121_c00058{left:296.800000pt;}
.x5a_c00058{left:298.666667pt;}
.x53_c00058{left:299.600000pt;}
.x27_c00058{left:300.666667pt;}
.xbd_c00058{left:303.466667pt;}
.x42_c00058{left:304.933333pt;}
.x12b_c00058{left:306.666667pt;}
.xc4_c00058{left:309.466667pt;}
.x132_c00058{left:310.400000pt;}
.xb0_c00058{left:311.733333pt;}
.xc9_c00058{left:313.333333pt;}
.x7d_c00058{left:314.533333pt;}
.x72_c00058{left:315.866667pt;}
.xcf_c00058{left:317.733333pt;}
.x5b_c00058{left:321.733333pt;}
.xbe_c00058{left:323.600000pt;}
.x13c_c00058{left:325.333333pt;}
.x28_c00058{left:326.266667pt;}
.x38_c00058{left:327.333333pt;}
.xdd_c00058{left:328.400000pt;}
.xe5_c00058{left:330.533333pt;}
.x43_c00058{left:331.466667pt;}
.xd0_c00058{left:334.000000pt;}
.x1b_c00058{left:336.266667pt;}
.x12c_c00058{left:337.333333pt;}
.xed_c00058{left:339.866667pt;}
.xb7_c00058{left:340.933333pt;}
.x82_c00058{left:342.133333pt;}
.xe6_c00058{left:346.800000pt;}
.x113_c00058{left:349.200000pt;}
.xb1_c00058{left:350.800000pt;}
.x2_c00058{left:352.000000pt;}
.x68_c00058{left:353.333333pt;}
.x108_c00058{left:354.266667pt;}
.x12d_c00058{left:355.200000pt;}
.xd1_c00058{left:356.133333pt;}
.x44_c00058{left:357.733333pt;}
.xa7_c00058{left:359.866667pt;}
.x1c_c00058{left:361.200000pt;}
.x13e_c00058{left:362.533333pt;}
.xf8_c00058{left:364.800000pt;}
.xbf_c00058{left:366.133333pt;}
.x9_c00058{left:367.600000pt;}
.x5c_c00058{left:369.466667pt;}
.xde_c00058{left:371.866667pt;}
.x83_c00058{left:372.800000pt;}
.xc5_c00058{left:374.666667pt;}
.x8f_c00058{left:376.000000pt;}
.x133_c00058{left:377.866667pt;}
.x54_c00058{left:382.800000pt;}
.xfe_c00058{left:385.333333pt;}
.x73_c00058{left:386.933333pt;}
.xca_c00058{left:388.266667pt;}
.xa_c00058{left:391.600000pt;}
.x39_c00058{left:392.933333pt;}
.x29_c00058{left:394.800000pt;}
.x5d_c00058{left:396.933333pt;}
.x69_c00058{left:398.800000pt;}
.xa8_c00058{left:400.266667pt;}
.x134_c00058{left:401.600000pt;}
.xb_c00058{left:402.533333pt;}
.x55_c00058{left:404.266667pt;}
.x90_c00058{left:407.066667pt;}
.xf9_c00058{left:411.200000pt;}
.x9d_c00058{left:412.533333pt;}
.x84_c00058{left:413.466667pt;}
.x126_c00058{left:415.066667pt;}
.x5e_c00058{left:418.000000pt;}
.x3a_c00058{left:419.466667pt;}
.x118_c00058{left:421.600000pt;}
.x135_c00058{left:422.666667pt;}
.xc_c00058{left:423.600000pt;}
.x11d_c00058{left:425.866667pt;}
.x9e_c00058{left:427.866667pt;}
.x85_c00058{left:429.200000pt;}
.x1d_c00058{left:433.200000pt;}
.x10c_c00058{left:434.800000pt;}
.x119_c00058{left:436.266667pt;}
.x3b_c00058{left:438.400000pt;}
.x3_c00058{left:440.266667pt;}
.xdf_c00058{left:441.600000pt;}
.xff_c00058{left:443.600000pt;}
.xb2_c00058{left:446.000000pt;}
.xd2_c00058{left:447.066667pt;}
.xc0_c00058{left:448.133333pt;}
.x2a_c00058{left:449.200000pt;}
.x1e_c00058{left:450.800000pt;}
.xf5_c00058{left:451.866667pt;}
.xee_c00058{left:454.133333pt;}
.x45_c00058{left:455.333333pt;}
.x13f_c00058{left:456.533333pt;}
.xa9_c00058{left:457.466667pt;}
.x137_c00058{left:458.533333pt;}
.xd_c00058{left:459.733333pt;}
.x86_c00058{left:461.200000pt;}
.x74_c00058{left:462.800000pt;}
.xe0_c00058{left:464.000000pt;}
.x7e_c00058{left:465.866667pt;}
.xd3_c00058{left:466.933333pt;}
.x56_c00058{left:468.933333pt;}
.x114_c00058{left:470.400000pt;}
.xd7_c00058{left:473.066667pt;}
.xe_c00058{left:475.066667pt;}
.x9f_c00058{left:477.066667pt;}
.x46_c00058{left:479.600000pt;}
.x7f_c00058{left:482.533333pt;}
.x1f_c00058{left:483.733333pt;}
.x57_c00058{left:485.200000pt;}
.x136_c00058{left:486.266667pt;}
.x127_c00058{left:489.066667pt;}
.x2b_c00058{left:490.133333pt;}
.xb8_c00058{left:491.733333pt;}
.x91_c00058{left:493.733333pt;}
.xa0_c00058{left:496.933333pt;}
.x11e_c00058{left:498.400000pt;}
.xc1_c00058{left:499.600000pt;}
.x5f_c00058{left:501.733333pt;}
.xc6_c00058{left:502.800000pt;}
.xfa_c00058{left:505.200000pt;}
.x75_c00058{left:506.933333pt;}
.x3c_c00058{left:508.800000pt;}
.xe7_c00058{left:509.733333pt;}
.xf_c00058{left:511.200000pt;}
.x11a_c00058{left:512.933333pt;}
.x80_c00058{left:514.800000pt;}
.x58_c00058{left:517.200000pt;}
.x92_c00058{left:519.066667pt;}
.x10_c00058{left:521.066667pt;}
.xaa_c00058{left:523.333333pt;}
.x60_c00058{left:524.400000pt;}
.xa1_c00058{left:528.000000pt;}
.xb3_c00058{left:530.133333pt;}
.x87_c00058{left:532.266667pt;}
.x128_c00058{left:533.200000pt;}
.x97_c00058{left:535.333333pt;}
.x2c_c00058{left:536.533333pt;}
.xe8_c00058{left:540.133333pt;}
.x115_c00058{left:541.733333pt;}
.x76_c00058{left:542.800000pt;}
.xef_c00058{left:544.000000pt;}
.x6a_c00058{left:545.333333pt;}
.x11_c00058{left:546.400000pt;}
.xfb_c00058{left:549.066667pt;}
.x138_c00058{left:550.666667pt;}
.x47_c00058{left:552.933333pt;}
.xab_c00058{left:555.333333pt;}
.x109_c00058{left:557.200000pt;}
.x11b_c00058{left:558.666667pt;}
.x13d_c00058{left:559.866667pt;}
.x88_c00058{left:562.000000pt;}
.x129_c00058{left:563.600000pt;}
.xcb_c00058{left:566.400000pt;}
.x20_c00058{left:569.466667pt;}
.xe9_c00058{left:572.400000pt;}
.x11c_c00058{left:573.333333pt;}
.x2d_c00058{left:574.666667pt;}
.x12_c00058{left:578.133333pt;}
.x61_c00058{left:579.066667pt;}
.xf0_c00058{left:580.800000pt;}
.x6b_c00058{left:581.866667pt;}
.x77_c00058{left:584.400000pt;}
.xa2_c00058{left:586.266667pt;}
.x2e_c00058{left:587.200000pt;}
.x21_c00058{left:588.666667pt;}
.x3d_c00058{left:591.066667pt;}
.x48_c00058{left:593.600000pt;}
.x10a_c00058{left:595.866667pt;}
.x98_c00058{left:596.800000pt;}
.x100_c00058{left:600.266667pt;}
.x78_c00058{left:603.600000pt;}
.x49_c00058{left:604.533333pt;}
.x93_c00058{left:606.133333pt;}
.x10d_c00058{left:607.866667pt;}
.xea_c00058{left:610.133333pt;}
.x62_c00058{left:611.333333pt;}
.xd4_c00058{left:613.200000pt;}
.x22_c00058{left:614.266667pt;}
.x94_c00058{left:616.666667pt;}
.x12e_c00058{left:619.866667pt;}
.x89_c00058{left:622.133333pt;}
.x2f_c00058{left:624.666667pt;}
.x122_c00058{left:626.800000pt;}
.x6c_c00058{left:628.533333pt;}
.x13_c00058{left:631.866667pt;}
.xac_c00058{left:634.266667pt;}
.x4a_c00058{left:635.866667pt;}
.x79_c00058{left:637.466667pt;}
.x30_c00058{left:639.733333pt;}
.xf1_c00058{left:641.600000pt;}
.xe1_c00058{left:644.400000pt;}
.x14_c00058{left:645.333333pt;}
.xc2_c00058{left:648.666667pt;}
.x139_c00058{left:650.133333pt;}
.x23_c00058{left:651.333333pt;}
.x116_c00058{left:654.533333pt;}
.xfc_c00058{left:656.000000pt;}
.xa3_c00058{left:657.200000pt;}
.x11f_c00058{left:658.133333pt;}
.xb9_c00058{left:659.333333pt;}
.x6d_c00058{left:660.266667pt;}
.x15_c00058{left:662.666667pt;}
.x101_c00058{left:663.600000pt;}
.x105_c00058{left:665.333333pt;}
.x4b_c00058{left:666.933333pt;}
.xeb_c00058{left:668.000000pt;}
.x10f_c00058{left:669.466667pt;}
.x24_c00058{left:670.533333pt;}
.xd5_c00058{left:671.733333pt;}
.x31_c00058{left:674.000000pt;}
.xfd_c00058{left:675.866667pt;}
.x99_c00058{left:676.800000pt;}
.x110_c00058{left:679.066667pt;}
.x12f_c00058{left:680.400000pt;}
.x13a_c00058{left:681.866667pt;}
.xf2_c00058{left:682.800000pt;}
.x4c_c00058{left:684.266667pt;}
.x106_c00058{left:687.733333pt;}
.x6e_c00058{left:689.066667pt;}
.xc7_c00058{left:690.000000pt;}
.x32_c00058{left:691.333333pt;}
.xe2_c00058{left:693.066667pt;}
.x25_c00058{left:695.866667pt;}
.xba_c00058{left:697.066667pt;}
.x102_c00058{left:698.133333pt;}
.x130_c00058{left:699.333333pt;}
.x3e_c00058{left:701.466667pt;}
.x10e_c00058{left:705.066667pt;}
.x7a_c00058{left:708.133333pt;}
.x95_c00058{left:711.066667pt;}
.x123_c00058{left:712.266667pt;}
.xd8_c00058{left:716.133333pt;}
}





/* 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_c00059 {
    display:none;
  }
  .loading-indicator_c00059.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00059 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_c00059 { 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_c00059" -> "#page-container .classname_c00059")
 */
.pf_c00059 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00059 { /* 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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00059 { /* 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_c00059 { /* 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_c00059 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00059 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00059 {overflow:visible;}
  }
}
.c_c00059 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00059 { /* 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_c00059:after { /* webkit #35443 */
  content: '';
}
.t_c00059:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00059 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 */
}
.__c00059 { /* 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_c00059 { /* info for Javascript */
  display:none;
}
.l_c00059 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00059 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00059 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00059: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_c00059 {
    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_c00059.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00059.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_c00059 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00059{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00059;src:url('chunks/assets/font_5ee62836daa9b4c1c6cfc156.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.000000;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;}
.mb2_c00059{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00059{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m61_c00059{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00059{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00059{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00059{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00059{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00059{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m78_c00059{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00059{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00059{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.me_c00059{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00059{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00059{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m98_c00059{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m54_c00059{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mab_c00059{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m79_c00059{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00059{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mad_c00059{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m60_c00059{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m23_c00059{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.maa_c00059{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mba_c00059{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00059{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00059{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00059{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00059{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m31_c00059{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mae_c00059{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00059{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00059{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m85_c00059{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00059{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00059{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00059{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00059{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m68_c00059{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m16_c00059{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00059{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00059{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00059{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00059{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00059{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00059{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m39_c00059{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00059{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m25_c00059{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00059{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00059{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m12_c00059{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00059{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m83_c00059{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m59_c00059{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m90_c00059{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00059{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00059{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00059{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00059{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00059{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00059{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m56_c00059{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m20_c00059{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10_c00059{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00059{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m21_c00059{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00059{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00059{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00059{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m15_c00059{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00059{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00059{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00059{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m45_c00059{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00059{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00059{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00059{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00059{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00059{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf_c00059{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9_c00059{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00059{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00059{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00059{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00059{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m66_c00059{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m87_c00059{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8_c00059{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m92_c00059{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00059{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m38_c00059{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m41_c00059{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m47_c00059{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m49_c00059{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5_c00059{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00059{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m28_c00059{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m70_c00059{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7_c00059{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m95_c00059{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00059{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m35_c00059{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6_c00059{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.maf_c00059{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m69_c00059{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m62_c00059{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m84_c00059{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m46_c00059{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00059{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m50_c00059{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mac_c00059{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24_c00059{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m72_c00059{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m58_c00059{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);}
.mb4_c00059{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m63_c00059{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma_c00059{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m18_c00059{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m82_c00059{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m71_c00059{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m37_c00059{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m76_c00059{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m75_c00059{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m13_c00059{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m73_c00059{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00059{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m88_c00059{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m32_c00059{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00059{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m40_c00059{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m96_c00059{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m14_c00059{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2_c00059{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00059{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m51_c00059{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00059{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00059{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m80_c00059{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m43_c00059{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m48_c00059{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mb_c00059{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m86_c00059{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00059{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m57_c00059{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00059{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m97_c00059{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00059{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00059{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m81_c00059{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00059{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00059{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m44_c00059{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00059{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m91_c00059{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mc_c00059{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00059{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m34_c00059{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m26_c00059{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m67_c00059{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00059{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m11_c00059{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00059{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m52_c00059{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00059{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m94_c00059{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3_c00059{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m77_c00059{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m93_c00059{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m53_c00059{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00059{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m64_c00059{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m55_c00059{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md_c00059{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m17_c00059{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m0_c00059{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m42_c00059{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00059{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m29_c00059{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m1_c00059{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m27_c00059{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c00059{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00059{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m33_c00059{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00059{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m99_c00059{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00059{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m30_c00059{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m74_c00059{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m89_c00059{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00059{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m22_c00059{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.v0_c00059{vertical-align:0.000000px;}
.ls1_c00059{letter-spacing:0.000000px;}
.ls0_c00059{letter-spacing:182.115282px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{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__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00059{word-spacing:-209.115282px;}
.wsa_c00059{word-spacing:-9.000000px;}
.ws7_c00059{word-spacing:-6.000000px;}
.ws5_c00059{word-spacing:-4.750000px;}
.ws9_c00059{word-spacing:-4.250000px;}
.wsd_c00059{word-spacing:0.000000px;}
.ws4_c00059{word-spacing:2.193322px;}
.wsb_c00059{word-spacing:2.217252px;}
.ws0_c00059{word-spacing:4.071429px;}
.ws2_c00059{word-spacing:7.250000px;}
.wsc_c00059{word-spacing:7.500000px;}
.ws3_c00059{word-spacing:12.519294px;}
.ws6_c00059{word-spacing:17.204893px;}
.ws1_c00059{word-spacing:22.363636px;}
._0_c00059{margin-left:-182.115282px;}
.fc0_c00059{color:transparent;}
.fs1_c00059{font-size:30.000000px;}
.fs0_c00059{font-size:54.000000px;}
.y0_c00059{bottom:0.000000px;}
.y2f_c00059{bottom:126.000000px;}
.y2e_c00059{bottom:144.000000px;}
.y2d_c00059{bottom:160.200000px;}
.y2c_c00059{bottom:175.350000px;}
.y2b_c00059{bottom:191.250000px;}
.y2a_c00059{bottom:206.700000px;}
.y29_c00059{bottom:222.450000px;}
.y28_c00059{bottom:237.900000px;}
.y27_c00059{bottom:253.500000px;}
.y26_c00059{bottom:268.950000px;}
.y25_c00059{bottom:284.400000px;}
.y24_c00059{bottom:324.450000px;}
.y23_c00059{bottom:344.550000px;}
.y22_c00059{bottom:364.200000px;}
.y21_c00059{bottom:384.300000px;}
.y20_c00059{bottom:404.400000px;}
.y1f_c00059{bottom:423.900000px;}
.y1e_c00059{bottom:444.000000px;}
.y1d_c00059{bottom:464.100000px;}
.y1c_c00059{bottom:484.050000px;}
.y1b_c00059{bottom:503.850000px;}
.y1a_c00059{bottom:523.650000px;}
.y19_c00059{bottom:543.750000px;}
.y18_c00059{bottom:563.550000px;}
.y17_c00059{bottom:583.650000px;}
.y16_c00059{bottom:603.450000px;}
.y15_c00059{bottom:623.250000px;}
.y14_c00059{bottom:643.050000px;}
.y13_c00059{bottom:662.850000px;}
.y12_c00059{bottom:682.950000px;}
.y11_c00059{bottom:703.050000px;}
.y10_c00059{bottom:722.850000px;}
.yf_c00059{bottom:742.350000px;}
.ye_c00059{bottom:762.150000px;}
.yd_c00059{bottom:781.950000px;}
.yc_c00059{bottom:801.750000px;}
.yb_c00059{bottom:821.550000px;}
.ya_c00059{bottom:841.650000px;}
.y9_c00059{bottom:861.750000px;}
.y8_c00059{bottom:881.250000px;}
.y7_c00059{bottom:901.350000px;}
.y6_c00059{bottom:921.900000px;}
.y5_c00059{bottom:941.700000px;}
.y4_c00059{bottom:961.500000px;}
.y3_c00059{bottom:981.300000px;}
.y2_c00059{bottom:1000.800000px;}
.y1_c00059{bottom:1039.350000px;}
.h3_c00059{height:30.000000px;}
.h2_c00059{height:54.000000px;}
.h1_c00059{height:1167.000000px;}
.h0_c00059{height:1167.119934px;}
.w0_c00059{width:913.320007px;}
.w1_c00059{width:913.500000px;}
.x0_c00059{left:0.000000px;}
.x12d_c00059{left:94.650000px;}
.x10b_c00059{left:95.700000px;}
.x15_c00059{left:96.750000px;}
.xf1_c00059{left:113.100000px;}
.x126_c00059{left:114.900000px;}
.x25_c00059{left:117.150000px;}
.x10c_c00059{left:121.200000px;}
.xa5_c00059{left:122.550000px;}
.x139_c00059{left:124.650000px;}
.x96_c00059{left:125.850000px;}
.x5_c00059{left:127.800000px;}
.x62_c00059{left:130.350000px;}
.x79_c00059{left:132.000000px;}
.xcf_c00059{left:133.650000px;}
.x11a_c00059{left:136.050000px;}
.x16_c00059{left:137.100000px;}
.xb0_c00059{left:139.650000px;}
.xb8_c00059{left:141.000000px;}
.x8d_c00059{left:142.500000px;}
.x51_c00059{left:143.550000px;}
.xf2_c00059{left:146.550000px;}
.x44_c00059{left:148.500000px;}
.x10d_c00059{left:149.700000px;}
.x122_c00059{left:151.500000px;}
.xd7_c00059{left:153.150000px;}
.x33_c00059{left:155.100000px;}
.x7a_c00059{left:156.150000px;}
.x11e_c00059{left:158.700000px;}
.x6_c00059{left:160.950000px;}
.x52_c00059{left:163.650000px;}
.xe6_c00059{left:165.150000px;}
.xf9_c00059{left:167.100000px;}
.x136_c00059{left:169.050000px;}
.x63_c00059{left:171.000000px;}
.x117_c00059{left:172.800000px;}
.x6f_c00059{left:174.150000px;}
.x112_c00059{left:175.200000px;}
.x45_c00059{left:176.250000px;}
.x17_c00059{left:177.450000px;}
.x11b_c00059{left:179.250000px;}
.x7_c00059{left:180.450000px;}
.x84_c00059{left:183.000000px;}
.xbe_c00059{left:184.650000px;}
.xb1_c00059{left:186.450000px;}
.xd8_c00059{left:188.400000px;}
.x97_c00059{left:189.600000px;}
.xa6_c00059{left:190.650000px;}
.x34_c00059{left:193.200000px;}
.x26_c00059{left:195.300000px;}
.x113_c00059{left:197.850000px;}
.x70_c00059{left:200.400000px;}
.x64_c00059{left:202.650000px;}
.x128_c00059{left:204.000000px;}
.xd9_c00059{left:205.350000px;}
.xec_c00059{left:206.850000px;}
.x8_c00059{left:210.000000px;}
.x53_c00059{left:212.250000px;}
.x18_c00059{left:215.550000px;}
.xf3_c00059{left:216.750000px;}
.x8e_c00059{left:219.300000px;}
.xbf_c00059{left:220.650000px;}
.x7b_c00059{left:226.650000px;}
.x46_c00059{left:228.450000px;}
.x118_c00059{left:231.900000px;}
.xd0_c00059{left:233.400000px;}
.x65_c00059{left:235.050000px;}
.x35_c00059{left:236.700000px;}
.xa7_c00059{left:237.750000px;}
.xb9_c00059{left:240.000000px;}
.x27_c00059{left:243.450000px;}
.x103_c00059{left:245.850000px;}
.x47_c00059{left:248.550000px;}
.x9e_c00059{left:249.600000px;}
.x9_c00059{left:250.650000px;}
.x131_c00059{left:252.450000px;}
.xfa_c00059{left:256.050000px;}
.x85_c00059{left:257.850000px;}
.xd1_c00059{left:258.900000px;}
.x119_c00059{left:260.400000px;}
.x36_c00059{left:264.000000px;}
.x134_c00059{left:265.050000px;}
.x54_c00059{left:268.800000px;}
.x10e_c00059{left:269.850000px;}
.xc0_c00059{left:271.050000px;}
.x98_c00059{left:272.850000px;}
.x12e_c00059{left:274.650000px;}
.xb2_c00059{left:275.700000px;}
.xfb_c00059{left:277.350000px;}
.x13a_c00059{left:279.450000px;}
.xf4_c00059{left:282.300000px;}
.x19_c00059{left:283.650000px;}
.x37_c00059{left:285.300000px;}
.x7c_c00059{left:287.100000px;}
.x86_c00059{left:288.450000px;}
.xa8_c00059{left:291.000000px;}
.x71_c00059{left:292.500000px;}
.x55_c00059{left:294.300000px;}
.x8f_c00059{left:297.750000px;}
.xd2_c00059{left:300.600000px;}
.xc7_c00059{left:302.700000px;}
.xf5_c00059{left:305.400000px;}
.xe3_c00059{left:308.550000px;}
.xa_c00059{left:310.050000px;}
.x38_c00059{left:312.000000px;}
.x48_c00059{left:315.450000px;}
.x1a_c00059{left:317.550000px;}
.x72_c00059{left:319.200000px;}
.xd3_c00059{left:320.400000px;}
.x13d_c00059{left:321.600000px;}
.x56_c00059{left:323.850000px;}
.x99_c00059{left:326.100000px;}
.x13c_c00059{left:327.900000px;}
.xb_c00059{left:329.100000px;}
.xed_c00059{left:332.100000px;}
.x7d_c00059{left:335.700000px;}
.x11f_c00059{left:337.800000px;}
.x28_c00059{left:338.850000px;}
.x90_c00059{left:339.900000px;}
.x1b_c00059{left:341.700000px;}
.xda_c00059{left:344.700000px;}
.x137_c00059{left:346.950000px;}
.xc8_c00059{left:348.000000px;}
.xe0_c00059{left:349.050000px;}
.x1_c00059{left:350.250000px;}
.x129_c00059{left:351.300000px;}
.x13e_c00059{left:352.500000px;}
.x13b_c00059{left:356.550000px;}
.x57_c00059{left:358.350000px;}
.x91_c00059{left:360.000000px;}
.xdb_c00059{left:362.700000px;}
.x7e_c00059{left:363.750000px;}
.x66_c00059{left:365.400000px;}
.x29_c00059{left:367.650000px;}
.x9f_c00059{left:369.150000px;}
.x39_c00059{left:372.150000px;}
.x58_c00059{left:378.150000px;}
.xc9_c00059{left:379.650000px;}
.xc_c00059{left:381.600000px;}
.x73_c00059{left:382.950000px;}
.x1c_c00059{left:386.700000px;}
.x67_c00059{left:389.850000px;}
.x9a_c00059{left:392.700000px;}
.x87_c00059{left:394.650000px;}
.xba_c00059{left:396.000000px;}
.x49_c00059{left:398.250000px;}
.xa0_c00059{left:400.500000px;}
.xa9_c00059{left:403.950000px;}
.x3a_c00059{left:405.600000px;}
.x9b_c00059{left:412.500000px;}
.x7f_c00059{left:414.900000px;}
.x1d_c00059{left:416.550000px;}
.xd_c00059{left:417.600000px;}
.xb3_c00059{left:419.700000px;}
.x68_c00059{left:424.350000px;}
.x59_c00059{left:426.450000px;}
.x123_c00059{left:427.500000px;}
.xdc_c00059{left:428.550000px;}
.x2_c00059{left:429.750000px;}
.xc1_c00059{left:432.450000px;}
.xca_c00059{left:434.400000px;}
.x74_c00059{left:436.200000px;}
.x127_c00059{left:437.850000px;}
.xb4_c00059{left:439.200000px;}
.xfc_c00059{left:441.150000px;}
.x80_c00059{left:442.200000px;}
.x114_c00059{left:443.550000px;}
.xe_c00059{left:446.100000px;}
.x2a_c00059{left:451.650000px;}
.x3_c00059{left:452.850000px;}
.xdd_c00059{left:455.550000px;}
.x124_c00059{left:456.600000px;}
.x106_c00059{left:457.950000px;}
.xa1_c00059{left:459.150000px;}
.xfd_c00059{left:461.250000px;}
.x69_c00059{left:463.950000px;}
.x12a_c00059{left:465.450000px;}
.x3b_c00059{left:467.850000px;}
.x92_c00059{left:469.800000px;}
.x5a_c00059{left:471.750000px;}
.xbb_c00059{left:473.100000px;}
.xb5_c00059{left:475.950000px;}
.x2b_c00059{left:477.150000px;}
.x88_c00059{left:478.950000px;}
.x12b_c00059{left:480.150000px;}
.x4a_c00059{left:484.650000px;}
.x6a_c00059{left:487.050000px;}
.xfe_c00059{left:490.050000px;}
.xcb_c00059{left:491.250000px;}
.x10f_c00059{left:493.500000px;}
.x1e_c00059{left:496.500000px;}
.xaa_c00059{left:497.550000px;}
.xd4_c00059{left:499.200000px;}
.x3c_c00059{left:500.550000px;}
.x5b_c00059{left:503.100000px;}
.xf_c00059{left:505.200000px;}
.xb6_c00059{left:508.350000px;}
.xc2_c00059{left:510.450000px;}
.x2c_c00059{left:511.650000px;}
.x4b_c00059{left:515.250000px;}
.x6b_c00059{left:516.900000px;}
.xe7_c00059{left:518.250000px;}
.xab_c00059{left:520.200000px;}
.xe4_c00059{left:521.250000px;}
.x10_c00059{left:523.950000px;}
.x5c_c00059{left:527.550000px;}
.x3d_c00059{left:529.050000px;}
.x1f_c00059{left:530.700000px;}
.xd5_c00059{left:532.650000px;}
.x104_c00059{left:534.300000px;}
.xee_c00059{left:536.400000px;}
.xa2_c00059{left:537.600000px;}
.xff_c00059{left:539.400000px;}
.x93_c00059{left:541.050000px;}
.x89_c00059{left:544.800000px;}
.xac_c00059{left:546.450000px;}
.xf6_c00059{left:547.950000px;}
.x12f_c00059{left:550.050000px;}
.x11_c00059{left:552.000000px;}
.x2d_c00059{left:555.150000px;}
.xde_c00059{left:556.800000px;}
.x5d_c00059{left:558.450000px;}
.x6c_c00059{left:560.400000px;}
.x9c_c00059{left:563.400000px;}
.x20_c00059{left:565.650000px;}
.xa3_c00059{left:568.950000px;}
.x81_c00059{left:573.300000px;}
.x132_c00059{left:574.950000px;}
.x3e_c00059{left:576.150000px;}
.xcc_c00059{left:578.100000px;}
.xe8_c00059{left:579.900000px;}
.x6d_c00059{left:582.300000px;}
.x8a_c00059{left:584.100000px;}
.x13f_c00059{left:585.300000px;}
.x100_c00059{left:586.500000px;}
.x120_c00059{left:588.000000px;}
.xe1_c00059{left:589.200000px;}
.x75_c00059{left:591.000000px;}
.x3f_c00059{left:593.850000px;}
.x2e_c00059{left:597.300000px;}
.x4c_c00059{left:598.350000px;}
.x5e_c00059{left:599.850000px;}
.x9d_c00059{left:600.900000px;}
.x138_c00059{left:603.150000px;}
.x12_c00059{left:604.950000px;}
.xc3_c00059{left:606.600000px;}
.xd6_c00059{left:609.300000px;}
.x21_c00059{left:611.400000px;}
.x105_c00059{left:612.450000px;}
.xe9_c00059{left:614.100000px;}
.x40_c00059{left:619.050000px;}
.x115_c00059{left:621.000000px;}
.x5f_c00059{left:622.200000px;}
.x6e_c00059{left:623.400000px;}
.xad_c00059{left:624.900000px;}
.x76_c00059{left:628.800000px;}
.x12c_c00059{left:631.050000px;}
.x4d_c00059{left:632.250000px;}
.xc4_c00059{left:633.900000px;}
.x107_c00059{left:634.950000px;}
.x121_c00059{left:636.300000px;}
.x22_c00059{left:638.400000px;}
.x135_c00059{left:640.500000px;}
.x116_c00059{left:641.850000px;}
.xbc_c00059{left:643.050000px;}
.xdf_c00059{left:645.000000px;}
.xae_c00059{left:646.200000px;}
.xa4_c00059{left:647.850000px;}
.xf7_c00059{left:649.200000px;}
.x2f_c00059{left:651.300000px;}
.xef_c00059{left:653.400000px;}
.xcd_c00059{left:655.800000px;}
.xc5_c00059{left:657.600000px;}
.x108_c00059{left:658.650000px;}
.x13_c00059{left:662.250000px;}
.x60_c00059{left:663.900000px;}
.x82_c00059{left:666.900000px;}
.x125_c00059{left:670.200000px;}
.x8b_c00059{left:671.850000px;}
.x23_c00059{left:673.650000px;}
.x41_c00059{left:675.600000px;}
.x4e_c00059{left:677.550000px;}
.x109_c00059{left:678.750000px;}
.x94_c00059{left:681.750000px;}
.x30_c00059{left:685.500000px;}
.x110_c00059{left:688.200000px;}
.x11c_c00059{left:690.000000px;}
.x140_c00059{left:691.500000px;}
.x42_c00059{left:692.850000px;}
.xce_c00059{left:693.900000px;}
.x77_c00059{left:696.450000px;}
.x4f_c00059{left:697.650000px;}
.x130_c00059{left:698.850000px;}
.x14_c00059{left:700.050000px;}
.xbd_c00059{left:701.850000px;}
.x31_c00059{left:703.200000px;}
.xc6_c00059{left:705.450000px;}
.x95_c00059{left:707.250000px;}
.x11d_c00059{left:708.300000px;}
.x101_c00059{left:711.450000px;}
.x111_c00059{left:713.100000px;}
.x61_c00059{left:715.050000px;}
.xe5_c00059{left:716.250000px;}
.xb7_c00059{left:718.200000px;}
.xea_c00059{left:720.300000px;}
.xaf_c00059{left:722.400000px;}
.x78_c00059{left:724.200000px;}
.x24_c00059{left:725.550000px;}
.xf0_c00059{left:729.000000px;}
.x43_c00059{left:732.150000px;}
.x8c_c00059{left:734.100000px;}
.x133_c00059{left:736.200000px;}
.xe2_c00059{left:737.250000px;}
.x32_c00059{left:738.900000px;}
.xeb_c00059{left:741.150000px;}
.x4_c00059{left:744.750000px;}
.x50_c00059{left:748.350000px;}
.x83_c00059{left:750.000000px;}
.x102_c00059{left:754.350000px;}
.x10a_c00059{left:756.600000px;}
.xf8_c00059{left:758.250000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls1_c00059{letter-spacing:0.000000pt;}
.ls0_c00059{letter-spacing:161.880250pt;}
.ws8_c00059{word-spacing:-185.880250pt;}
.wsa_c00059{word-spacing:-8.000000pt;}
.ws7_c00059{word-spacing:-5.333333pt;}
.ws5_c00059{word-spacing:-4.222222pt;}
.ws9_c00059{word-spacing:-3.777778pt;}
.wsd_c00059{word-spacing:0.000000pt;}
.ws4_c00059{word-spacing:1.949619pt;}
.wsb_c00059{word-spacing:1.970891pt;}
.ws0_c00059{word-spacing:3.619048pt;}
.ws2_c00059{word-spacing:6.444444pt;}
.wsc_c00059{word-spacing:6.666667pt;}
.ws3_c00059{word-spacing:11.128262pt;}
.ws6_c00059{word-spacing:15.293238pt;}
.ws1_c00059{word-spacing:19.878788pt;}
._0_c00059{margin-left:-161.880250pt;}
.fs1_c00059{font-size:26.666667pt;}
.fs0_c00059{font-size:48.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y2f_c00059{bottom:112.000000pt;}
.y2e_c00059{bottom:128.000000pt;}
.y2d_c00059{bottom:142.400000pt;}
.y2c_c00059{bottom:155.866667pt;}
.y2b_c00059{bottom:170.000000pt;}
.y2a_c00059{bottom:183.733333pt;}
.y29_c00059{bottom:197.733333pt;}
.y28_c00059{bottom:211.466667pt;}
.y27_c00059{bottom:225.333333pt;}
.y26_c00059{bottom:239.066667pt;}
.y25_c00059{bottom:252.800000pt;}
.y24_c00059{bottom:288.400000pt;}
.y23_c00059{bottom:306.266667pt;}
.y22_c00059{bottom:323.733333pt;}
.y21_c00059{bottom:341.600000pt;}
.y20_c00059{bottom:359.466667pt;}
.y1f_c00059{bottom:376.800000pt;}
.y1e_c00059{bottom:394.666667pt;}
.y1d_c00059{bottom:412.533333pt;}
.y1c_c00059{bottom:430.266667pt;}
.y1b_c00059{bottom:447.866667pt;}
.y1a_c00059{bottom:465.466667pt;}
.y19_c00059{bottom:483.333333pt;}
.y18_c00059{bottom:500.933333pt;}
.y17_c00059{bottom:518.800000pt;}
.y16_c00059{bottom:536.400000pt;}
.y15_c00059{bottom:554.000000pt;}
.y14_c00059{bottom:571.600000pt;}
.y13_c00059{bottom:589.200000pt;}
.y12_c00059{bottom:607.066667pt;}
.y11_c00059{bottom:624.933333pt;}
.y10_c00059{bottom:642.533333pt;}
.yf_c00059{bottom:659.866667pt;}
.ye_c00059{bottom:677.466667pt;}
.yd_c00059{bottom:695.066667pt;}
.yc_c00059{bottom:712.666667pt;}
.yb_c00059{bottom:730.266667pt;}
.ya_c00059{bottom:748.133333pt;}
.y9_c00059{bottom:766.000000pt;}
.y8_c00059{bottom:783.333333pt;}
.y7_c00059{bottom:801.200000pt;}
.y6_c00059{bottom:819.466667pt;}
.y5_c00059{bottom:837.066667pt;}
.y4_c00059{bottom:854.666667pt;}
.y3_c00059{bottom:872.266667pt;}
.y2_c00059{bottom:889.600000pt;}
.y1_c00059{bottom:923.866667pt;}
.h3_c00059{height:26.666667pt;}
.h2_c00059{height:48.000000pt;}
.h1_c00059{height:1037.333333pt;}
.h0_c00059{height:1037.439941pt;}
.w0_c00059{width:811.840007pt;}
.w1_c00059{width:812.000000pt;}
.x0_c00059{left:0.000000pt;}
.x12d_c00059{left:84.133333pt;}
.x10b_c00059{left:85.066667pt;}
.x15_c00059{left:86.000000pt;}
.xf1_c00059{left:100.533333pt;}
.x126_c00059{left:102.133333pt;}
.x25_c00059{left:104.133333pt;}
.x10c_c00059{left:107.733333pt;}
.xa5_c00059{left:108.933333pt;}
.x139_c00059{left:110.800000pt;}
.x96_c00059{left:111.866667pt;}
.x5_c00059{left:113.600000pt;}
.x62_c00059{left:115.866667pt;}
.x79_c00059{left:117.333333pt;}
.xcf_c00059{left:118.800000pt;}
.x11a_c00059{left:120.933333pt;}
.x16_c00059{left:121.866667pt;}
.xb0_c00059{left:124.133333pt;}
.xb8_c00059{left:125.333333pt;}
.x8d_c00059{left:126.666667pt;}
.x51_c00059{left:127.600000pt;}
.xf2_c00059{left:130.266667pt;}
.x44_c00059{left:132.000000pt;}
.x10d_c00059{left:133.066667pt;}
.x122_c00059{left:134.666667pt;}
.xd7_c00059{left:136.133333pt;}
.x33_c00059{left:137.866667pt;}
.x7a_c00059{left:138.800000pt;}
.x11e_c00059{left:141.066667pt;}
.x6_c00059{left:143.066667pt;}
.x52_c00059{left:145.466667pt;}
.xe6_c00059{left:146.800000pt;}
.xf9_c00059{left:148.533333pt;}
.x136_c00059{left:150.266667pt;}
.x63_c00059{left:152.000000pt;}
.x117_c00059{left:153.600000pt;}
.x6f_c00059{left:154.800000pt;}
.x112_c00059{left:155.733333pt;}
.x45_c00059{left:156.666667pt;}
.x17_c00059{left:157.733333pt;}
.x11b_c00059{left:159.333333pt;}
.x7_c00059{left:160.400000pt;}
.x84_c00059{left:162.666667pt;}
.xbe_c00059{left:164.133333pt;}
.xb1_c00059{left:165.733333pt;}
.xd8_c00059{left:167.466667pt;}
.x97_c00059{left:168.533333pt;}
.xa6_c00059{left:169.466667pt;}
.x34_c00059{left:171.733333pt;}
.x26_c00059{left:173.600000pt;}
.x113_c00059{left:175.866667pt;}
.x70_c00059{left:178.133333pt;}
.x64_c00059{left:180.133333pt;}
.x128_c00059{left:181.333333pt;}
.xd9_c00059{left:182.533333pt;}
.xec_c00059{left:183.866667pt;}
.x8_c00059{left:186.666667pt;}
.x53_c00059{left:188.666667pt;}
.x18_c00059{left:191.600000pt;}
.xf3_c00059{left:192.666667pt;}
.x8e_c00059{left:194.933333pt;}
.xbf_c00059{left:196.133333pt;}
.x7b_c00059{left:201.466667pt;}
.x46_c00059{left:203.066667pt;}
.x118_c00059{left:206.133333pt;}
.xd0_c00059{left:207.466667pt;}
.x65_c00059{left:208.933333pt;}
.x35_c00059{left:210.400000pt;}
.xa7_c00059{left:211.333333pt;}
.xb9_c00059{left:213.333333pt;}
.x27_c00059{left:216.400000pt;}
.x103_c00059{left:218.533333pt;}
.x47_c00059{left:220.933333pt;}
.x9e_c00059{left:221.866667pt;}
.x9_c00059{left:222.800000pt;}
.x131_c00059{left:224.400000pt;}
.xfa_c00059{left:227.600000pt;}
.x85_c00059{left:229.200000pt;}
.xd1_c00059{left:230.133333pt;}
.x119_c00059{left:231.466667pt;}
.x36_c00059{left:234.666667pt;}
.x134_c00059{left:235.600000pt;}
.x54_c00059{left:238.933333pt;}
.x10e_c00059{left:239.866667pt;}
.xc0_c00059{left:240.933333pt;}
.x98_c00059{left:242.533333pt;}
.x12e_c00059{left:244.133333pt;}
.xb2_c00059{left:245.066667pt;}
.xfb_c00059{left:246.533333pt;}
.x13a_c00059{left:248.400000pt;}
.xf4_c00059{left:250.933333pt;}
.x19_c00059{left:252.133333pt;}
.x37_c00059{left:253.600000pt;}
.x7c_c00059{left:255.200000pt;}
.x86_c00059{left:256.400000pt;}
.xa8_c00059{left:258.666667pt;}
.x71_c00059{left:260.000000pt;}
.x55_c00059{left:261.600000pt;}
.x8f_c00059{left:264.666667pt;}
.xd2_c00059{left:267.200000pt;}
.xc7_c00059{left:269.066667pt;}
.xf5_c00059{left:271.466667pt;}
.xe3_c00059{left:274.266667pt;}
.xa_c00059{left:275.600000pt;}
.x38_c00059{left:277.333333pt;}
.x48_c00059{left:280.400000pt;}
.x1a_c00059{left:282.266667pt;}
.x72_c00059{left:283.733333pt;}
.xd3_c00059{left:284.800000pt;}
.x13d_c00059{left:285.866667pt;}
.x56_c00059{left:287.866667pt;}
.x99_c00059{left:289.866667pt;}
.x13c_c00059{left:291.466667pt;}
.xb_c00059{left:292.533333pt;}
.xed_c00059{left:295.200000pt;}
.x7d_c00059{left:298.400000pt;}
.x11f_c00059{left:300.266667pt;}
.x28_c00059{left:301.200000pt;}
.x90_c00059{left:302.133333pt;}
.x1b_c00059{left:303.733333pt;}
.xda_c00059{left:306.400000pt;}
.x137_c00059{left:308.400000pt;}
.xc8_c00059{left:309.333333pt;}
.xe0_c00059{left:310.266667pt;}
.x1_c00059{left:311.333333pt;}
.x129_c00059{left:312.266667pt;}
.x13e_c00059{left:313.333333pt;}
.x13b_c00059{left:316.933333pt;}
.x57_c00059{left:318.533333pt;}
.x91_c00059{left:320.000000pt;}
.xdb_c00059{left:322.400000pt;}
.x7e_c00059{left:323.333333pt;}
.x66_c00059{left:324.800000pt;}
.x29_c00059{left:326.800000pt;}
.x9f_c00059{left:328.133333pt;}
.x39_c00059{left:330.800000pt;}
.x58_c00059{left:336.133333pt;}
.xc9_c00059{left:337.466667pt;}
.xc_c00059{left:339.200000pt;}
.x73_c00059{left:340.400000pt;}
.x1c_c00059{left:343.733333pt;}
.x67_c00059{left:346.533333pt;}
.x9a_c00059{left:349.066667pt;}
.x87_c00059{left:350.800000pt;}
.xba_c00059{left:352.000000pt;}
.x49_c00059{left:354.000000pt;}
.xa0_c00059{left:356.000000pt;}
.xa9_c00059{left:359.066667pt;}
.x3a_c00059{left:360.533333pt;}
.x9b_c00059{left:366.666667pt;}
.x7f_c00059{left:368.800000pt;}
.x1d_c00059{left:370.266667pt;}
.xd_c00059{left:371.200000pt;}
.xb3_c00059{left:373.066667pt;}
.x68_c00059{left:377.200000pt;}
.x59_c00059{left:379.066667pt;}
.x123_c00059{left:380.000000pt;}
.xdc_c00059{left:380.933333pt;}
.x2_c00059{left:382.000000pt;}
.xc1_c00059{left:384.400000pt;}
.xca_c00059{left:386.133333pt;}
.x74_c00059{left:387.733333pt;}
.x127_c00059{left:389.200000pt;}
.xb4_c00059{left:390.400000pt;}
.xfc_c00059{left:392.133333pt;}
.x80_c00059{left:393.066667pt;}
.x114_c00059{left:394.266667pt;}
.xe_c00059{left:396.533333pt;}
.x2a_c00059{left:401.466667pt;}
.x3_c00059{left:402.533333pt;}
.xdd_c00059{left:404.933333pt;}
.x124_c00059{left:405.866667pt;}
.x106_c00059{left:407.066667pt;}
.xa1_c00059{left:408.133333pt;}
.xfd_c00059{left:410.000000pt;}
.x69_c00059{left:412.400000pt;}
.x12a_c00059{left:413.733333pt;}
.x3b_c00059{left:415.866667pt;}
.x92_c00059{left:417.600000pt;}
.x5a_c00059{left:419.333333pt;}
.xbb_c00059{left:420.533333pt;}
.xb5_c00059{left:423.066667pt;}
.x2b_c00059{left:424.133333pt;}
.x88_c00059{left:425.733333pt;}
.x12b_c00059{left:426.800000pt;}
.x4a_c00059{left:430.800000pt;}
.x6a_c00059{left:432.933333pt;}
.xfe_c00059{left:435.600000pt;}
.xcb_c00059{left:436.666667pt;}
.x10f_c00059{left:438.666667pt;}
.x1e_c00059{left:441.333333pt;}
.xaa_c00059{left:442.266667pt;}
.xd4_c00059{left:443.733333pt;}
.x3c_c00059{left:444.933333pt;}
.x5b_c00059{left:447.200000pt;}
.xf_c00059{left:449.066667pt;}
.xb6_c00059{left:451.866667pt;}
.xc2_c00059{left:453.733333pt;}
.x2c_c00059{left:454.800000pt;}
.x4b_c00059{left:458.000000pt;}
.x6b_c00059{left:459.466667pt;}
.xe7_c00059{left:460.666667pt;}
.xab_c00059{left:462.400000pt;}
.xe4_c00059{left:463.333333pt;}
.x10_c00059{left:465.733333pt;}
.x5c_c00059{left:468.933333pt;}
.x3d_c00059{left:470.266667pt;}
.x1f_c00059{left:471.733333pt;}
.xd5_c00059{left:473.466667pt;}
.x104_c00059{left:474.933333pt;}
.xee_c00059{left:476.800000pt;}
.xa2_c00059{left:477.866667pt;}
.xff_c00059{left:479.466667pt;}
.x93_c00059{left:480.933333pt;}
.x89_c00059{left:484.266667pt;}
.xac_c00059{left:485.733333pt;}
.xf6_c00059{left:487.066667pt;}
.x12f_c00059{left:488.933333pt;}
.x11_c00059{left:490.666667pt;}
.x2d_c00059{left:493.466667pt;}
.xde_c00059{left:494.933333pt;}
.x5d_c00059{left:496.400000pt;}
.x6c_c00059{left:498.133333pt;}
.x9c_c00059{left:500.800000pt;}
.x20_c00059{left:502.800000pt;}
.xa3_c00059{left:505.733333pt;}
.x81_c00059{left:509.600000pt;}
.x132_c00059{left:511.066667pt;}
.x3e_c00059{left:512.133333pt;}
.xcc_c00059{left:513.866667pt;}
.xe8_c00059{left:515.466667pt;}
.x6d_c00059{left:517.600000pt;}
.x8a_c00059{left:519.200000pt;}
.x13f_c00059{left:520.266667pt;}
.x100_c00059{left:521.333333pt;}
.x120_c00059{left:522.666667pt;}
.xe1_c00059{left:523.733333pt;}
.x75_c00059{left:525.333333pt;}
.x3f_c00059{left:527.866667pt;}
.x2e_c00059{left:530.933333pt;}
.x4c_c00059{left:531.866667pt;}
.x5e_c00059{left:533.200000pt;}
.x9d_c00059{left:534.133333pt;}
.x138_c00059{left:536.133333pt;}
.x12_c00059{left:537.733333pt;}
.xc3_c00059{left:539.200000pt;}
.xd6_c00059{left:541.600000pt;}
.x21_c00059{left:543.466667pt;}
.x105_c00059{left:544.400000pt;}
.xe9_c00059{left:545.866667pt;}
.x40_c00059{left:550.266667pt;}
.x115_c00059{left:552.000000pt;}
.x5f_c00059{left:553.066667pt;}
.x6e_c00059{left:554.133333pt;}
.xad_c00059{left:555.466667pt;}
.x76_c00059{left:558.933333pt;}
.x12c_c00059{left:560.933333pt;}
.x4d_c00059{left:562.000000pt;}
.xc4_c00059{left:563.466667pt;}
.x107_c00059{left:564.400000pt;}
.x121_c00059{left:565.600000pt;}
.x22_c00059{left:567.466667pt;}
.x135_c00059{left:569.333333pt;}
.x116_c00059{left:570.533333pt;}
.xbc_c00059{left:571.600000pt;}
.xdf_c00059{left:573.333333pt;}
.xae_c00059{left:574.400000pt;}
.xa4_c00059{left:575.866667pt;}
.xf7_c00059{left:577.066667pt;}
.x2f_c00059{left:578.933333pt;}
.xef_c00059{left:580.800000pt;}
.xcd_c00059{left:582.933333pt;}
.xc5_c00059{left:584.533333pt;}
.x108_c00059{left:585.466667pt;}
.x13_c00059{left:588.666667pt;}
.x60_c00059{left:590.133333pt;}
.x82_c00059{left:592.800000pt;}
.x125_c00059{left:595.733333pt;}
.x8b_c00059{left:597.200000pt;}
.x23_c00059{left:598.800000pt;}
.x41_c00059{left:600.533333pt;}
.x4e_c00059{left:602.266667pt;}
.x109_c00059{left:603.333333pt;}
.x94_c00059{left:606.000000pt;}
.x30_c00059{left:609.333333pt;}
.x110_c00059{left:611.733333pt;}
.x11c_c00059{left:613.333333pt;}
.x140_c00059{left:614.666667pt;}
.x42_c00059{left:615.866667pt;}
.xce_c00059{left:616.800000pt;}
.x77_c00059{left:619.066667pt;}
.x4f_c00059{left:620.133333pt;}
.x130_c00059{left:621.200000pt;}
.x14_c00059{left:622.266667pt;}
.xbd_c00059{left:623.866667pt;}
.x31_c00059{left:625.066667pt;}
.xc6_c00059{left:627.066667pt;}
.x95_c00059{left:628.666667pt;}
.x11d_c00059{left:629.600000pt;}
.x101_c00059{left:632.400000pt;}
.x111_c00059{left:633.866667pt;}
.x61_c00059{left:635.600000pt;}
.xe5_c00059{left:636.666667pt;}
.xb7_c00059{left:638.400000pt;}
.xea_c00059{left:640.266667pt;}
.xaf_c00059{left:642.133333pt;}
.x78_c00059{left:643.733333pt;}
.x24_c00059{left:644.933333pt;}
.xf0_c00059{left:648.000000pt;}
.x43_c00059{left:650.800000pt;}
.x8c_c00059{left:652.533333pt;}
.x133_c00059{left:654.400000pt;}
.xe2_c00059{left:655.333333pt;}
.x32_c00059{left:656.800000pt;}
.xeb_c00059{left:658.800000pt;}
.x4_c00059{left:662.000000pt;}
.x50_c00059{left:665.200000pt;}
.x83_c00059{left:666.666667pt;}
.x102_c00059{left:670.533333pt;}
.x10a_c00059{left:672.533333pt;}
.xf8_c00059{left:674.000000pt;}
}





/* 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_c00060 {
    display:none;
  }
  .loading-indicator_c00060.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00060 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_c00060 { 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_c00060" -> "#page-container .classname_c00060")
 */
.pf_c00060 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00060 { /* 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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00060 { /* 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_c00060 { /* 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_c00060 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00060 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00060 {overflow:visible;}
  }
}
.c_c00060 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00060 { /* 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_c00060:after { /* webkit #35443 */
  content: '';
}
.t_c00060:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00060 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 */
}
.__c00060 { /* 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_c00060 { /* info for Javascript */
  display:none;
}
.l_c00060 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00060 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00060 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00060: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_c00060 {
    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_c00060.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00060.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_c00060 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00060{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00060;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.000000;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;}
.m99_c00060{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m30_c00060{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m11_c00060{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mad_c00060{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m26_c00060{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00060{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00060{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m75_c00060{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m13_c00060{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m32_c00060{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00060{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m44_c00060{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00060{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m63_c00060{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00060{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00060{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00060{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00060{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m50_c00060{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m51_c00060{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00060{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m58_c00060{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00060{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00060{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00060{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m57_c00060{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00060{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m33_c00060{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m84_c00060{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00060{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00060{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mac_c00060{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00060{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m23_c00060{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00060{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m60_c00060{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m54_c00060{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m86_c00060{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m94_c00060{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00060{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00060{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m28_c00060{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m89_c00060{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00060{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00060{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00060{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m49_c00060{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m90_c00060{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00060{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00060{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00060{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00060{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00060{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00060{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m36_c00060{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00060{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00060{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00060{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m78_c00060{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00060{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00060{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00060{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00060{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m42_c00060{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00060{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m80_c00060{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00060{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m55_c00060{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00060{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8_c00060{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m15_c00060{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00060{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m45_c00060{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00060{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m47_c00060{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m85_c00060{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m65_c00060{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00060{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m93_c00060{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00060{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.md_c00060{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00060{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m73_c00060{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m97_c00060{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m71_c00060{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00060{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00060{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m21_c00060{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mab_c00060{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m61_c00060{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00060{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m22_c00060{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00060{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m41_c00060{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00060{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m66_c00060{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf_c00060{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m27_c00060{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m62_c00060{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m79_c00060{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00060{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m74_c00060{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00060{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m96_c00060{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m48_c00060{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m43_c00060{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00060{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m18_c00060{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00060{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00060{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m53_c00060{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00060{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m24_c00060{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m92_c00060{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m83_c00060{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00060{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00060{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m38_c00060{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9_c00060{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00060{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);}
.m95_c00060{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m72_c00060{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19_c00060{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00060{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00060{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m69_c00060{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00060{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m12_c00060{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m82_c00060{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m35_c00060{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00060{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00060{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m59_c00060{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m70_c00060{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m40_c00060{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m76_c00060{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m37_c00060{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00060{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00060{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00060{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m67_c00060{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m98_c00060{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00060{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m91_c00060{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m20_c00060{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00060{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00060{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m56_c00060{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00060{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10_c00060{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00060{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m29_c00060{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m64_c00060{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m87_c00060{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m52_c00060{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m46_c00060{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00060{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00060{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00060{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00060{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00060{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.maa_c00060{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00060{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00060{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00060{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00060{vertical-align:0.000000px;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{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__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:-9.318182px;}
.ws1_c00060{word-spacing:-6.052632px;}
.ws8_c00060{word-spacing:-2.985075px;}
.wsa_c00060{word-spacing:0.000000px;}
.ws9_c00060{word-spacing:3.518519px;}
.ws4_c00060{word-spacing:6.944444px;}
.ws5_c00060{word-spacing:7.857143px;}
.ws3_c00060{word-spacing:14.722222px;}
.ws2_c00060{word-spacing:16.025641px;}
.ws6_c00060{word-spacing:21.029412px;}
.ws7_c00060{word-spacing:34.017857px;}
.fc0_c00060{color:transparent;}
.fs0_c00060{font-size:54.000000px;}
.fs1_c00060{font-size:60.000000px;}
.y0_c00060{bottom:0.000000px;}
.y2c_c00060{bottom:150.450000px;}
.y2b_c00060{bottom:191.550000px;}
.y2a_c00060{bottom:211.650000px;}
.y29_c00060{bottom:231.450000px;}
.y28_c00060{bottom:251.550000px;}
.y27_c00060{bottom:271.350000px;}
.y26_c00060{bottom:290.850000px;}
.y25_c00060{bottom:310.650000px;}
.y24_c00060{bottom:330.450000px;}
.y23_c00060{bottom:350.250000px;}
.y22_c00060{bottom:370.050000px;}
.y21_c00060{bottom:389.850000px;}
.y20_c00060{bottom:409.650000px;}
.y1f_c00060{bottom:429.450000px;}
.y1e_c00060{bottom:449.250000px;}
.y1d_c00060{bottom:469.050000px;}
.y1c_c00060{bottom:488.850000px;}
.y1b_c00060{bottom:508.650000px;}
.y1a_c00060{bottom:528.450000px;}
.y19_c00060{bottom:548.700000px;}
.y18_c00060{bottom:568.800000px;}
.y17_c00060{bottom:588.600000px;}
.y16_c00060{bottom:608.400000px;}
.y15_c00060{bottom:627.900000px;}
.y14_c00060{bottom:648.000000px;}
.y13_c00060{bottom:667.800000px;}
.y12_c00060{bottom:687.600000px;}
.y11_c00060{bottom:707.700000px;}
.y10_c00060{bottom:727.500000px;}
.yf_c00060{bottom:747.300000px;}
.ye_c00060{bottom:767.100000px;}
.yd_c00060{bottom:786.900000px;}
.yc_c00060{bottom:807.000000px;}
.yb_c00060{bottom:826.800000px;}
.ya_c00060{bottom:846.600000px;}
.y9_c00060{bottom:866.700000px;}
.y8_c00060{bottom:886.500000px;}
.y7_c00060{bottom:906.300000px;}
.y6_c00060{bottom:926.400000px;}
.y5_c00060{bottom:946.500000px;}
.y4_c00060{bottom:966.600000px;}
.y3_c00060{bottom:986.400000px;}
.y2_c00060{bottom:1006.200000px;}
.y1_c00060{bottom:1044.750000px;}
.h2_c00060{height:54.000000px;}
.h3_c00060{height:60.000000px;}
.h1_c00060{height:1167.000000px;}
.h0_c00060{height:1167.119934px;}
.w0_c00060{width:913.320007px;}
.w1_c00060{width:913.500000px;}
.x0_c00060{left:0.000000px;}
.x121_c00060{left:148.650000px;}
.x7e_c00060{left:149.700000px;}
.xd8_c00060{left:151.050000px;}
.x4_c00060{left:152.250000px;}
.x1_c00060{left:153.750000px;}
.x114_c00060{left:162.600000px;}
.x5_c00060{left:167.400000px;}
.xee_c00060{left:170.700000px;}
.xbe_c00060{left:174.300000px;}
.x44_c00060{left:176.400000px;}
.x5d_c00060{left:178.350000px;}
.x25_c00060{left:180.900000px;}
.xa5_c00060{left:182.850000px;}
.x67_c00060{left:185.400000px;}
.x88_c00060{left:186.600000px;}
.xdd_c00060{left:187.950000px;}
.xc6_c00060{left:189.750000px;}
.x115_c00060{left:191.100000px;}
.xb5_c00060{left:192.750000px;}
.x8e_c00060{left:194.100000px;}
.x6_c00060{left:195.900000px;}
.x73_c00060{left:198.750000px;}
.x118_c00060{left:203.250000px;}
.x33_c00060{left:204.450000px;}
.xfd_c00060{left:207.150000px;}
.x11e_c00060{left:209.700000px;}
.x134_c00060{left:210.900000px;}
.xe5_c00060{left:211.950000px;}
.x99_c00060{left:214.200000px;}
.x7_c00060{left:216.000000px;}
.x130_c00060{left:217.500000px;}
.x15_c00060{left:218.550000px;}
.x34_c00060{left:219.900000px;}
.x89_c00060{left:221.850000px;}
.x26_c00060{left:224.850000px;}
.xde_c00060{left:227.850000px;}
.xaf_c00060{left:229.050000px;}
.x52_c00060{left:231.450000px;}
.xe6_c00060{left:234.300000px;}
.x8f_c00060{left:237.300000px;}
.x117_c00060{left:239.550000px;}
.x35_c00060{left:240.750000px;}
.x16_c00060{left:242.250000px;}
.x129_c00060{left:243.300000px;}
.x8_c00060{left:244.500000px;}
.x111_c00060{left:245.550000px;}
.x8a_c00060{left:247.050000px;}
.xa6_c00060{left:248.400000px;}
.x125_c00060{left:252.450000px;}
.x7f_c00060{left:253.500000px;}
.xcf_c00060{left:254.550000px;}
.x101_c00060{left:255.900000px;}
.x45_c00060{left:257.400000px;}
.x74_c00060{left:259.200000px;}
.xb6_c00060{left:261.150000px;}
.xd9_c00060{left:263.400000px;}
.x68_c00060{left:264.600000px;}
.x46_c00060{left:266.100000px;}
.x116_c00060{left:267.750000px;}
.x17_c00060{left:271.050000px;}
.xdf_c00060{left:274.950000px;}
.x69_c00060{left:276.450000px;}
.x9a_c00060{left:281.850000px;}
.x36_c00060{left:283.650000px;}
.x119_c00060{left:285.300000px;}
.x12d_c00060{left:288.900000px;}
.x11f_c00060{left:291.600000px;}
.x47_c00060{left:292.800000px;}
.x10b_c00060{left:293.850000px;}
.xa7_c00060{left:295.200000px;}
.x135_c00060{left:296.550000px;}
.xc7_c00060{left:298.050000px;}
.x27_c00060{left:299.400000px;}
.xd0_c00060{left:301.350000px;}
.x102_c00060{left:303.000000px;}
.xe0_c00060{left:304.050000px;}
.xfe_c00060{left:307.650000px;}
.xf6_c00060{left:309.300000px;}
.x37_c00060{left:310.350000px;}
.x9b_c00060{left:312.450000px;}
.x136_c00060{left:314.250000px;}
.xd1_c00060{left:315.750000px;}
.x48_c00060{left:318.000000px;}
.xe7_c00060{left:319.950000px;}
.xa8_c00060{left:321.150000px;}
.x38_c00060{left:323.250000px;}
.x105_c00060{left:324.900000px;}
.x18_c00060{left:326.550000px;}
.x28_c00060{left:329.250000px;}
.xbf_c00060{left:330.300000px;}
.x90_c00060{left:334.800000px;}
.xb7_c00060{left:336.000000px;}
.x9_c00060{left:338.400000px;}
.xe1_c00060{left:340.350000px;}
.x12e_c00060{left:342.450000px;}
.x80_c00060{left:347.100000px;}
.x126_c00060{left:348.150000px;}
.x19_c00060{left:349.950000px;}
.x75_c00060{left:351.000000px;}
.x8b_c00060{left:354.000000px;}
.x53_c00060{left:355.200000px;}
.xb8_c00060{left:356.550000px;}
.x39_c00060{left:358.200000px;}
.x137_c00060{left:360.300000px;}
.x106_c00060{left:361.950000px;}
.x6a_c00060{left:363.150000px;}
.x91_c00060{left:369.750000px;}
.x76_c00060{left:371.850000px;}
.x29_c00060{left:373.200000px;}
.xb0_c00060{left:374.850000px;}
.x81_c00060{left:378.000000px;}
.x5e_c00060{left:379.350000px;}
.x49_c00060{left:381.300000px;}
.xc8_c00060{left:383.400000px;}
.x9c_c00060{left:384.750000px;}
.x54_c00060{left:385.800000px;}
.xef_c00060{left:387.000000px;}
.xd2_c00060{left:388.050000px;}
.x103_c00060{left:390.450000px;}
.x92_c00060{left:392.100000px;}
.x2a_c00060{left:394.050000px;}
.x10c_c00060{left:396.150000px;}
.x2_c00060{left:400.350000px;}
.x5f_c00060{left:401.700000px;}
.x12a_c00060{left:403.500000px;}
.x1a_c00060{left:405.450000px;}
.xa_c00060{left:406.500000px;}
.xb9_c00060{left:411.600000px;}
.x55_c00060{left:414.300000px;}
.x3a_c00060{left:417.600000px;}
.xf7_c00060{left:419.850000px;}
.x6b_c00060{left:422.850000px;}
.xe2_c00060{left:426.750000px;}
.x82_c00060{left:432.300000px;}
.x1b_c00060{left:433.500000px;}
.x9d_c00060{left:436.200000px;}
.x11a_c00060{left:437.550000px;}
.x4a_c00060{left:439.950000px;}
.xb_c00060{left:443.550000px;}
.x138_c00060{left:445.200000px;}
.xf0_c00060{left:446.700000px;}
.x77_c00060{left:447.750000px;}
.xc0_c00060{left:451.950000px;}
.xe8_c00060{left:454.950000px;}
.x6c_c00060{left:456.300000px;}
.xf8_c00060{left:457.350000px;}
.x8c_c00060{left:458.400000px;}
.x127_c00060{left:459.450000px;}
.x93_c00060{left:461.250000px;}
.x2b_c00060{left:463.500000px;}
.x1c_c00060{left:465.150000px;}
.xff_c00060{left:466.800000px;}
.xa9_c00060{left:468.750000px;}
.x9e_c00060{left:473.250000px;}
.x60_c00060{left:474.750000px;}
.xd3_c00060{left:476.850000px;}
.x128_c00060{left:478.500000px;}
.xc_c00060{left:479.850000px;}
.xe9_c00060{left:481.650000px;}
.x139_c00060{left:482.700000px;}
.x3b_c00060{left:483.900000px;}
.x56_c00060{left:485.550000px;}
.x107_c00060{left:488.400000px;}
.xb1_c00060{left:490.350000px;}
.x10d_c00060{left:491.550000px;}
.x6d_c00060{left:493.050000px;}
.xe3_c00060{left:494.850000px;}
.x2c_c00060{left:495.900000px;}
.x3_c00060{left:498.600000px;}
.x94_c00060{left:499.800000px;}
.x3c_c00060{left:502.200000px;}
.xc1_c00060{left:505.650000px;}
.x1d_c00060{left:510.150000px;}
.x83_c00060{left:511.500000px;}
.xd_c00060{left:512.550000px;}
.xc9_c00060{left:514.800000px;}
.x61_c00060{left:515.850000px;}
.x57_c00060{left:517.950000px;}
.x12b_c00060{left:521.250000px;}
.x78_c00060{left:522.300000px;}
.x6e_c00060{left:525.150000px;}
.x3d_c00060{left:527.400000px;}
.x95_c00060{left:528.600000px;}
.xb2_c00060{left:530.250000px;}
.x1e_c00060{left:533.250000px;}
.xea_c00060{left:535.350000px;}
.x84_c00060{left:537.000000px;}
.xe_c00060{left:538.050000px;}
.x58_c00060{left:540.300000px;}
.xd4_c00060{left:541.650000px;}
.x9f_c00060{left:543.150000px;}
.x11b_c00060{left:544.200000px;}
.x2d_c00060{left:546.000000px;}
.x4b_c00060{left:547.500000px;}
.xf1_c00060{left:549.000000px;}
.x62_c00060{left:550.050000px;}
.xf_c00060{left:552.150000px;}
.x8d_c00060{left:555.300000px;}
.xca_c00060{left:558.300000px;}
.x96_c00060{left:560.250000px;}
.x112_c00060{left:563.550000px;}
.x1f_c00060{left:564.600000px;}
.x2e_c00060{left:569.100000px;}
.xaa_c00060{left:572.850000px;}
.x6f_c00060{left:576.000000px;}
.xeb_c00060{left:580.650000px;}
.x3e_c00060{left:581.700000px;}
.xc2_c00060{left:583.350000px;}
.x108_c00060{left:585.600000px;}
.x63_c00060{left:586.800000px;}
.x4c_c00060{left:591.450000px;}
.x10e_c00060{left:592.650000px;}
.x59_c00060{left:594.000000px;}
.xa0_c00060{left:595.050000px;}
.x70_c00060{left:597.300000px;}
.x122_c00060{left:598.650000px;}
.x12f_c00060{left:600.600000px;}
.xcb_c00060{left:602.250000px;}
.x2f_c00060{left:605.850000px;}
.xf9_c00060{left:607.200000px;}
.x10f_c00060{left:611.700000px;}
.x64_c00060{left:613.050000px;}
.x3f_c00060{left:614.400000px;}
.x4d_c00060{left:615.900000px;}
.xd5_c00060{left:619.350000px;}
.xba_c00060{left:621.000000px;}
.xa1_c00060{left:624.900000px;}
.xc3_c00060{left:626.850000px;}
.x113_c00060{left:629.100000px;}
.x97_c00060{left:630.750000px;}
.xec_c00060{left:632.550000px;}
.x30_c00060{left:634.350000px;}
.x10_c00060{left:636.450000px;}
.x79_c00060{left:637.800000px;}
.xab_c00060{left:640.200000px;}
.x20_c00060{left:642.300000px;}
.xf2_c00060{left:648.000000px;}
.x131_c00060{left:650.550000px;}
.x4e_c00060{left:651.900000px;}
.x5a_c00060{left:654.150000px;}
.x85_c00060{left:656.100000px;}
.x123_c00060{left:657.300000px;}
.x40_c00060{left:658.350000px;}
.xcc_c00060{left:659.850000px;}
.xfa_c00060{left:662.700000px;}
.xb3_c00060{left:664.650000px;}
.xda_c00060{left:665.700000px;}
.x11c_c00060{left:668.700000px;}
.x11_c00060{left:672.150000px;}
.xbb_c00060{left:673.950000px;}
.xed_c00060{left:676.800000px;}
.x132_c00060{left:679.050000px;}
.xdb_c00060{left:680.850000px;}
.x21_c00060{left:683.400000px;}
.xfb_c00060{left:686.100000px;}
.x41_c00060{left:687.150000px;}
.xa2_c00060{left:688.650000px;}
.x12c_c00060{left:689.700000px;}
.x65_c00060{left:691.800000px;}
.x71_c00060{left:693.450000px;}
.xac_c00060{left:696.300000px;}
.x98_c00060{left:697.650000px;}
.x7a_c00060{left:702.900000px;}
.x5b_c00060{left:704.250000px;}
.xbc_c00060{left:707.100000px;}
.x22_c00060{left:710.400000px;}
.x11d_c00060{left:712.200000px;}
.x86_c00060{left:715.500000px;}
.xf3_c00060{left:716.700000px;}
.x4f_c00060{left:717.750000px;}
.x72_c00060{left:720.750000px;}
.x5c_c00060{left:721.950000px;}
.xa3_c00060{left:726.450000px;}
.x104_c00060{left:728.400000px;}
.xb4_c00060{left:731.700000px;}
.xad_c00060{left:734.100000px;}
.x12_c00060{left:736.200000px;}
.x109_c00060{left:737.550000px;}
.x50_c00060{left:739.050000px;}
.x42_c00060{left:740.850000px;}
.xc4_c00060{left:742.050000px;}
.xcd_c00060{left:744.150000px;}
.x7b_c00060{left:747.600000px;}
.x31_c00060{left:750.900000px;}
.x23_c00060{left:754.350000px;}
.xdc_c00060{left:755.400000px;}
.xf4_c00060{left:757.050000px;}
.xce_c00060{left:758.550000px;}
.x120_c00060{left:760.350000px;}
.x110_c00060{left:762.450000px;}
.x51_c00060{left:764.550000px;}
.xfc_c00060{left:765.600000px;}
.xd6_c00060{left:766.950000px;}
.xc5_c00060{left:768.300000px;}
.x66_c00060{left:772.050000px;}
.xae_c00060{left:773.400000px;}
.x133_c00060{left:775.200000px;}
.xa4_c00060{left:777.900000px;}
.xe4_c00060{left:780.450000px;}
.x13_c00060{left:783.000000px;}
.x87_c00060{left:784.950000px;}
.x10a_c00060{left:786.150000px;}
.x32_c00060{left:788.700000px;}
.xbd_c00060{left:789.900000px;}
.xd7_c00060{left:791.100000px;}
.x7c_c00060{left:792.300000px;}
.xf5_c00060{left:793.800000px;}
.x14_c00060{left:795.300000px;}
.x124_c00060{left:798.450000px;}
.x43_c00060{left:800.250000px;}
.x100_c00060{left:802.800000px;}
.x24_c00060{left:805.500000px;}
.x7d_c00060{left:811.350000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:-8.282828pt;}
.ws1_c00060{word-spacing:-5.380117pt;}
.ws8_c00060{word-spacing:-2.653400pt;}
.wsa_c00060{word-spacing:0.000000pt;}
.ws9_c00060{word-spacing:3.127572pt;}
.ws4_c00060{word-spacing:6.172840pt;}
.ws5_c00060{word-spacing:6.984127pt;}
.ws3_c00060{word-spacing:13.086420pt;}
.ws2_c00060{word-spacing:14.245014pt;}
.ws6_c00060{word-spacing:18.692810pt;}
.ws7_c00060{word-spacing:30.238095pt;}
.fs0_c00060{font-size:48.000000pt;}
.fs1_c00060{font-size:53.333333pt;}
.y0_c00060{bottom:0.000000pt;}
.y2c_c00060{bottom:133.733333pt;}
.y2b_c00060{bottom:170.266667pt;}
.y2a_c00060{bottom:188.133333pt;}
.y29_c00060{bottom:205.733333pt;}
.y28_c00060{bottom:223.600000pt;}
.y27_c00060{bottom:241.200000pt;}
.y26_c00060{bottom:258.533333pt;}
.y25_c00060{bottom:276.133333pt;}
.y24_c00060{bottom:293.733333pt;}
.y23_c00060{bottom:311.333333pt;}
.y22_c00060{bottom:328.933333pt;}
.y21_c00060{bottom:346.533333pt;}
.y20_c00060{bottom:364.133333pt;}
.y1f_c00060{bottom:381.733333pt;}
.y1e_c00060{bottom:399.333333pt;}
.y1d_c00060{bottom:416.933333pt;}
.y1c_c00060{bottom:434.533333pt;}
.y1b_c00060{bottom:452.133333pt;}
.y1a_c00060{bottom:469.733333pt;}
.y19_c00060{bottom:487.733333pt;}
.y18_c00060{bottom:505.600000pt;}
.y17_c00060{bottom:523.200000pt;}
.y16_c00060{bottom:540.800000pt;}
.y15_c00060{bottom:558.133333pt;}
.y14_c00060{bottom:576.000000pt;}
.y13_c00060{bottom:593.600000pt;}
.y12_c00060{bottom:611.200000pt;}
.y11_c00060{bottom:629.066667pt;}
.y10_c00060{bottom:646.666667pt;}
.yf_c00060{bottom:664.266667pt;}
.ye_c00060{bottom:681.866667pt;}
.yd_c00060{bottom:699.466667pt;}
.yc_c00060{bottom:717.333333pt;}
.yb_c00060{bottom:734.933333pt;}
.ya_c00060{bottom:752.533333pt;}
.y9_c00060{bottom:770.400000pt;}
.y8_c00060{bottom:788.000000pt;}
.y7_c00060{bottom:805.600000pt;}
.y6_c00060{bottom:823.466667pt;}
.y5_c00060{bottom:841.333333pt;}
.y4_c00060{bottom:859.200000pt;}
.y3_c00060{bottom:876.800000pt;}
.y2_c00060{bottom:894.400000pt;}
.y1_c00060{bottom:928.666667pt;}
.h2_c00060{height:48.000000pt;}
.h3_c00060{height:53.333333pt;}
.h1_c00060{height:1037.333333pt;}
.h0_c00060{height:1037.439941pt;}
.w0_c00060{width:811.840007pt;}
.w1_c00060{width:812.000000pt;}
.x0_c00060{left:0.000000pt;}
.x121_c00060{left:132.133333pt;}
.x7e_c00060{left:133.066667pt;}
.xd8_c00060{left:134.266667pt;}
.x4_c00060{left:135.333333pt;}
.x1_c00060{left:136.666667pt;}
.x114_c00060{left:144.533333pt;}
.x5_c00060{left:148.800000pt;}
.xee_c00060{left:151.733333pt;}
.xbe_c00060{left:154.933333pt;}
.x44_c00060{left:156.800000pt;}
.x5d_c00060{left:158.533333pt;}
.x25_c00060{left:160.800000pt;}
.xa5_c00060{left:162.533333pt;}
.x67_c00060{left:164.800000pt;}
.x88_c00060{left:165.866667pt;}
.xdd_c00060{left:167.066667pt;}
.xc6_c00060{left:168.666667pt;}
.x115_c00060{left:169.866667pt;}
.xb5_c00060{left:171.333333pt;}
.x8e_c00060{left:172.533333pt;}
.x6_c00060{left:174.133333pt;}
.x73_c00060{left:176.666667pt;}
.x118_c00060{left:180.666667pt;}
.x33_c00060{left:181.733333pt;}
.xfd_c00060{left:184.133333pt;}
.x11e_c00060{left:186.400000pt;}
.x134_c00060{left:187.466667pt;}
.xe5_c00060{left:188.400000pt;}
.x99_c00060{left:190.400000pt;}
.x7_c00060{left:192.000000pt;}
.x130_c00060{left:193.333333pt;}
.x15_c00060{left:194.266667pt;}
.x34_c00060{left:195.466667pt;}
.x89_c00060{left:197.200000pt;}
.x26_c00060{left:199.866667pt;}
.xde_c00060{left:202.533333pt;}
.xaf_c00060{left:203.600000pt;}
.x52_c00060{left:205.733333pt;}
.xe6_c00060{left:208.266667pt;}
.x8f_c00060{left:210.933333pt;}
.x117_c00060{left:212.933333pt;}
.x35_c00060{left:214.000000pt;}
.x16_c00060{left:215.333333pt;}
.x129_c00060{left:216.266667pt;}
.x8_c00060{left:217.333333pt;}
.x111_c00060{left:218.266667pt;}
.x8a_c00060{left:219.600000pt;}
.xa6_c00060{left:220.800000pt;}
.x125_c00060{left:224.400000pt;}
.x7f_c00060{left:225.333333pt;}
.xcf_c00060{left:226.266667pt;}
.x101_c00060{left:227.466667pt;}
.x45_c00060{left:228.800000pt;}
.x74_c00060{left:230.400000pt;}
.xb6_c00060{left:232.133333pt;}
.xd9_c00060{left:234.133333pt;}
.x68_c00060{left:235.200000pt;}
.x46_c00060{left:236.533333pt;}
.x116_c00060{left:238.000000pt;}
.x17_c00060{left:240.933333pt;}
.xdf_c00060{left:244.400000pt;}
.x69_c00060{left:245.733333pt;}
.x9a_c00060{left:250.533333pt;}
.x36_c00060{left:252.133333pt;}
.x119_c00060{left:253.600000pt;}
.x12d_c00060{left:256.800000pt;}
.x11f_c00060{left:259.200000pt;}
.x47_c00060{left:260.266667pt;}
.x10b_c00060{left:261.200000pt;}
.xa7_c00060{left:262.400000pt;}
.x135_c00060{left:263.600000pt;}
.xc7_c00060{left:264.933333pt;}
.x27_c00060{left:266.133333pt;}
.xd0_c00060{left:267.866667pt;}
.x102_c00060{left:269.333333pt;}
.xe0_c00060{left:270.266667pt;}
.xfe_c00060{left:273.466667pt;}
.xf6_c00060{left:274.933333pt;}
.x37_c00060{left:275.866667pt;}
.x9b_c00060{left:277.733333pt;}
.x136_c00060{left:279.333333pt;}
.xd1_c00060{left:280.666667pt;}
.x48_c00060{left:282.666667pt;}
.xe7_c00060{left:284.400000pt;}
.xa8_c00060{left:285.466667pt;}
.x38_c00060{left:287.333333pt;}
.x105_c00060{left:288.800000pt;}
.x18_c00060{left:290.266667pt;}
.x28_c00060{left:292.666667pt;}
.xbf_c00060{left:293.600000pt;}
.x90_c00060{left:297.600000pt;}
.xb7_c00060{left:298.666667pt;}
.x9_c00060{left:300.800000pt;}
.xe1_c00060{left:302.533333pt;}
.x12e_c00060{left:304.400000pt;}
.x80_c00060{left:308.533333pt;}
.x126_c00060{left:309.466667pt;}
.x19_c00060{left:311.066667pt;}
.x75_c00060{left:312.000000pt;}
.x8b_c00060{left:314.666667pt;}
.x53_c00060{left:315.733333pt;}
.xb8_c00060{left:316.933333pt;}
.x39_c00060{left:318.400000pt;}
.x137_c00060{left:320.266667pt;}
.x106_c00060{left:321.733333pt;}
.x6a_c00060{left:322.800000pt;}
.x91_c00060{left:328.666667pt;}
.x76_c00060{left:330.533333pt;}
.x29_c00060{left:331.733333pt;}
.xb0_c00060{left:333.200000pt;}
.x81_c00060{left:336.000000pt;}
.x5e_c00060{left:337.200000pt;}
.x49_c00060{left:338.933333pt;}
.xc8_c00060{left:340.800000pt;}
.x9c_c00060{left:342.000000pt;}
.x54_c00060{left:342.933333pt;}
.xef_c00060{left:344.000000pt;}
.xd2_c00060{left:344.933333pt;}
.x103_c00060{left:347.066667pt;}
.x92_c00060{left:348.533333pt;}
.x2a_c00060{left:350.266667pt;}
.x10c_c00060{left:352.133333pt;}
.x2_c00060{left:355.866667pt;}
.x5f_c00060{left:357.066667pt;}
.x12a_c00060{left:358.666667pt;}
.x1a_c00060{left:360.400000pt;}
.xa_c00060{left:361.333333pt;}
.xb9_c00060{left:365.866667pt;}
.x55_c00060{left:368.266667pt;}
.x3a_c00060{left:371.200000pt;}
.xf7_c00060{left:373.200000pt;}
.x6b_c00060{left:375.866667pt;}
.xe2_c00060{left:379.333333pt;}
.x82_c00060{left:384.266667pt;}
.x1b_c00060{left:385.333333pt;}
.x9d_c00060{left:387.733333pt;}
.x11a_c00060{left:388.933333pt;}
.x4a_c00060{left:391.066667pt;}
.xb_c00060{left:394.266667pt;}
.x138_c00060{left:395.733333pt;}
.xf0_c00060{left:397.066667pt;}
.x77_c00060{left:398.000000pt;}
.xc0_c00060{left:401.733333pt;}
.xe8_c00060{left:404.400000pt;}
.x6c_c00060{left:405.600000pt;}
.xf8_c00060{left:406.533333pt;}
.x8c_c00060{left:407.466667pt;}
.x127_c00060{left:408.400000pt;}
.x93_c00060{left:410.000000pt;}
.x2b_c00060{left:412.000000pt;}
.x1c_c00060{left:413.466667pt;}
.xff_c00060{left:414.933333pt;}
.xa9_c00060{left:416.666667pt;}
.x9e_c00060{left:420.666667pt;}
.x60_c00060{left:422.000000pt;}
.xd3_c00060{left:423.866667pt;}
.x128_c00060{left:425.333333pt;}
.xc_c00060{left:426.533333pt;}
.xe9_c00060{left:428.133333pt;}
.x139_c00060{left:429.066667pt;}
.x3b_c00060{left:430.133333pt;}
.x56_c00060{left:431.600000pt;}
.x107_c00060{left:434.133333pt;}
.xb1_c00060{left:435.866667pt;}
.x10d_c00060{left:436.933333pt;}
.x6d_c00060{left:438.266667pt;}
.xe3_c00060{left:439.866667pt;}
.x2c_c00060{left:440.800000pt;}
.x3_c00060{left:443.200000pt;}
.x94_c00060{left:444.266667pt;}
.x3c_c00060{left:446.400000pt;}
.xc1_c00060{left:449.466667pt;}
.x1d_c00060{left:453.466667pt;}
.x83_c00060{left:454.666667pt;}
.xd_c00060{left:455.600000pt;}
.xc9_c00060{left:457.600000pt;}
.x61_c00060{left:458.533333pt;}
.x57_c00060{left:460.400000pt;}
.x12b_c00060{left:463.333333pt;}
.x78_c00060{left:464.266667pt;}
.x6e_c00060{left:466.800000pt;}
.x3d_c00060{left:468.800000pt;}
.x95_c00060{left:469.866667pt;}
.xb2_c00060{left:471.333333pt;}
.x1e_c00060{left:474.000000pt;}
.xea_c00060{left:475.866667pt;}
.x84_c00060{left:477.333333pt;}
.xe_c00060{left:478.266667pt;}
.x58_c00060{left:480.266667pt;}
.xd4_c00060{left:481.466667pt;}
.x9f_c00060{left:482.800000pt;}
.x11b_c00060{left:483.733333pt;}
.x2d_c00060{left:485.333333pt;}
.x4b_c00060{left:486.666667pt;}
.xf1_c00060{left:488.000000pt;}
.x62_c00060{left:488.933333pt;}
.xf_c00060{left:490.800000pt;}
.x8d_c00060{left:493.600000pt;}
.xca_c00060{left:496.266667pt;}
.x96_c00060{left:498.000000pt;}
.x112_c00060{left:500.933333pt;}
.x1f_c00060{left:501.866667pt;}
.x2e_c00060{left:505.866667pt;}
.xaa_c00060{left:509.200000pt;}
.x6f_c00060{left:512.000000pt;}
.xeb_c00060{left:516.133333pt;}
.x3e_c00060{left:517.066667pt;}
.xc2_c00060{left:518.533333pt;}
.x108_c00060{left:520.533333pt;}
.x63_c00060{left:521.600000pt;}
.x4c_c00060{left:525.733333pt;}
.x10e_c00060{left:526.800000pt;}
.x59_c00060{left:528.000000pt;}
.xa0_c00060{left:528.933333pt;}
.x70_c00060{left:530.933333pt;}
.x122_c00060{left:532.133333pt;}
.x12f_c00060{left:533.866667pt;}
.xcb_c00060{left:535.333333pt;}
.x2f_c00060{left:538.533333pt;}
.xf9_c00060{left:539.733333pt;}
.x10f_c00060{left:543.733333pt;}
.x64_c00060{left:544.933333pt;}
.x3f_c00060{left:546.133333pt;}
.x4d_c00060{left:547.466667pt;}
.xd5_c00060{left:550.533333pt;}
.xba_c00060{left:552.000000pt;}
.xa1_c00060{left:555.466667pt;}
.xc3_c00060{left:557.200000pt;}
.x113_c00060{left:559.200000pt;}
.x97_c00060{left:560.666667pt;}
.xec_c00060{left:562.266667pt;}
.x30_c00060{left:563.866667pt;}
.x10_c00060{left:565.733333pt;}
.x79_c00060{left:566.933333pt;}
.xab_c00060{left:569.066667pt;}
.x20_c00060{left:570.933333pt;}
.xf2_c00060{left:576.000000pt;}
.x131_c00060{left:578.266667pt;}
.x4e_c00060{left:579.466667pt;}
.x5a_c00060{left:581.466667pt;}
.x85_c00060{left:583.200000pt;}
.x123_c00060{left:584.266667pt;}
.x40_c00060{left:585.200000pt;}
.xcc_c00060{left:586.533333pt;}
.xfa_c00060{left:589.066667pt;}
.xb3_c00060{left:590.800000pt;}
.xda_c00060{left:591.733333pt;}
.x11c_c00060{left:594.400000pt;}
.x11_c00060{left:597.466667pt;}
.xbb_c00060{left:599.066667pt;}
.xed_c00060{left:601.600000pt;}
.x132_c00060{left:603.600000pt;}
.xdb_c00060{left:605.200000pt;}
.x21_c00060{left:607.466667pt;}
.xfb_c00060{left:609.866667pt;}
.x41_c00060{left:610.800000pt;}
.xa2_c00060{left:612.133333pt;}
.x12c_c00060{left:613.066667pt;}
.x65_c00060{left:614.933333pt;}
.x71_c00060{left:616.400000pt;}
.xac_c00060{left:618.933333pt;}
.x98_c00060{left:620.133333pt;}
.x7a_c00060{left:624.800000pt;}
.x5b_c00060{left:626.000000pt;}
.xbc_c00060{left:628.533333pt;}
.x22_c00060{left:631.466667pt;}
.x11d_c00060{left:633.066667pt;}
.x86_c00060{left:636.000000pt;}
.xf3_c00060{left:637.066667pt;}
.x4f_c00060{left:638.000000pt;}
.x72_c00060{left:640.666667pt;}
.x5c_c00060{left:641.733333pt;}
.xa3_c00060{left:645.733333pt;}
.x104_c00060{left:647.466667pt;}
.xb4_c00060{left:650.400000pt;}
.xad_c00060{left:652.533333pt;}
.x12_c00060{left:654.400000pt;}
.x109_c00060{left:655.600000pt;}
.x50_c00060{left:656.933333pt;}
.x42_c00060{left:658.533333pt;}
.xc4_c00060{left:659.600000pt;}
.xcd_c00060{left:661.466667pt;}
.x7b_c00060{left:664.533333pt;}
.x31_c00060{left:667.466667pt;}
.x23_c00060{left:670.533333pt;}
.xdc_c00060{left:671.466667pt;}
.xf4_c00060{left:672.933333pt;}
.xce_c00060{left:674.266667pt;}
.x120_c00060{left:675.866667pt;}
.x110_c00060{left:677.733333pt;}
.x51_c00060{left:679.600000pt;}
.xfc_c00060{left:680.533333pt;}
.xd6_c00060{left:681.733333pt;}
.xc5_c00060{left:682.933333pt;}
.x66_c00060{left:686.266667pt;}
.xae_c00060{left:687.466667pt;}
.x133_c00060{left:689.066667pt;}
.xa4_c00060{left:691.466667pt;}
.xe4_c00060{left:693.733333pt;}
.x13_c00060{left:696.000000pt;}
.x87_c00060{left:697.733333pt;}
.x10a_c00060{left:698.800000pt;}
.x32_c00060{left:701.066667pt;}
.xbd_c00060{left:702.133333pt;}
.xd7_c00060{left:703.200000pt;}
.x7c_c00060{left:704.266667pt;}
.xf5_c00060{left:705.600000pt;}
.x14_c00060{left:706.933333pt;}
.x124_c00060{left:709.733333pt;}
.x43_c00060{left:711.333333pt;}
.x100_c00060{left:713.600000pt;}
.x24_c00060{left:716.000000pt;}
.x7d_c00060{left:721.200000pt;}
}





/* 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_c00061 {
    display:none;
  }
  .loading-indicator_c00061.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00061 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_c00061 { 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_c00061" -> "#page-container .classname_c00061")
 */
.pf_c00061 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00061 { /* 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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00061 { /* 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_c00061 { /* 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_c00061 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00061 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00061 {overflow:visible;}
  }
}
.c_c00061 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00061 { /* 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_c00061:after { /* webkit #35443 */
  content: '';
}
.t_c00061:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00061 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 */
}
.__c00061 { /* 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_c00061 { /* info for Javascript */
  display:none;
}
.l_c00061 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00061 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00061 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00061: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_c00061 {
    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_c00061.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00061.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_c00061 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00061{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.000000;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;}
.m53_c00061{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00061{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00061{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00061{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m88_c00061{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00061{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m70_c00061{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m76_c00061{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mac_c00061{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00061{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00061{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00061{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m83_c00061{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m79_c00061{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00061{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m94_c00061{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00061{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00061{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00061{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m97_c00061{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m51_c00061{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mad_c00061{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m37_c00061{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00061{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m80_c00061{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m42_c00061{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00061{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m61_c00061{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00061{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00061{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m77_c00061{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m96_c00061{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00061{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00061{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00061{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m98_c00061{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00061{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m89_c00061{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m86_c00061{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mab_c00061{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00061{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00061{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00061{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00061{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m92_c00061{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00061{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m58_c00061{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00061{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00061{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00061{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00061{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6_c00061{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m39_c00061{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m52_c00061{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00061{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m78_c00061{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.maf_c00061{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m81_c00061{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m59_c00061{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb_c00061{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m67_c00061{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m90_c00061{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m66_c00061{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00061{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maa_c00061{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m21_c00061{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00061{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4_c00061{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00061{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00061{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00061{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m32_c00061{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00061{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m16_c00061{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00061{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m72_c00061{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00061{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m33_c00061{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00061{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m34_c00061{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00061{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00061{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00061{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m49_c00061{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m82_c00061{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m87_c00061{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m31_c00061{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00061{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00061{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m73_c00061{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m22_c00061{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m35_c00061{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m84_c00061{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m75_c00061{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00061{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00061{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00061{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m57_c00061{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m99_c00061{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00061{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m69_c00061{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc_c00061{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m74_c00061{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m13_c00061{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00061{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00061{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m71_c00061{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00061{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00061{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m60_c00061{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mae_c00061{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00061{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00061{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00061{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00061{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m36_c00061{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00061{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m29_c00061{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m93_c00061{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00061{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00061{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m95_c00061{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{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__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00061{word-spacing:-16.388889px;}
.ws8_c00061{word-spacing:-4.009060px;}
.ws7_c00061{word-spacing:-1.250000px;}
.wse_c00061{word-spacing:0.000000px;}
.ws3_c00061{word-spacing:3.518519px;}
.ws2_c00061{word-spacing:8.055556px;}
.ws0_c00061{word-spacing:8.194444px;}
.ws6_c00061{word-spacing:8.389831px;}
.ws4_c00061{word-spacing:8.529412px;}
.ws1_c00061{word-spacing:10.314770px;}
.wsb_c00061{word-spacing:11.805556px;}
.wsa_c00061{word-spacing:13.055556px;}
.ws9_c00061{word-spacing:24.852941px;}
.wsc_c00061{word-spacing:25.645955px;}
.wsd_c00061{word-spacing:26.428571px;}
._0_c00061{width:19.722222px;}
._1_c00061{width:48.333333px;}
.fc0_c00061{color:transparent;}
.fs0_c00061{font-size:54.000000px;}
.fs1_c00061{font-size:60.000000px;}
.y0_c00061{bottom:0.000000px;}
.y2e_c00061{bottom:141.750000px;}
.y2d_c00061{bottom:157.200000px;}
.y2c_c00061{bottom:173.100000px;}
.y2b_c00061{bottom:188.550000px;}
.y2a_c00061{bottom:204.450000px;}
.y29_c00061{bottom:219.900000px;}
.y28_c00061{bottom:235.500000px;}
.y27_c00061{bottom:250.500000px;}
.y26_c00061{bottom:266.700000px;}
.y25_c00061{bottom:302.400000px;}
.y24_c00061{bottom:322.500000px;}
.y23_c00061{bottom:342.300000px;}
.y22_c00061{bottom:362.100000px;}
.y21_c00061{bottom:382.050000px;}
.y20_c00061{bottom:402.150000px;}
.y1f_c00061{bottom:423.150000px;}
.y1e_c00061{bottom:443.250000px;}
.y1d_c00061{bottom:463.350000px;}
.y1c_c00061{bottom:483.150000px;}
.y1b_c00061{bottom:502.950000px;}
.y1a_c00061{bottom:522.750000px;}
.y19_c00061{bottom:542.550000px;}
.y18_c00061{bottom:562.650000px;}
.y17_c00061{bottom:582.450000px;}
.y16_c00061{bottom:602.250000px;}
.y15_c00061{bottom:622.800000px;}
.y14_c00061{bottom:641.850000px;}
.y13_c00061{bottom:662.400000px;}
.y12_c00061{bottom:682.200000px;}
.y11_c00061{bottom:702.000000px;}
.y10_c00061{bottom:721.800000px;}
.yf_c00061{bottom:742.050000px;}
.ye_c00061{bottom:761.850000px;}
.yd_c00061{bottom:781.950000px;}
.yc_c00061{bottom:801.750000px;}
.yb_c00061{bottom:821.700000px;}
.ya_c00061{bottom:841.800000px;}
.y9_c00061{bottom:861.900000px;}
.y8_c00061{bottom:881.700000px;}
.y7_c00061{bottom:901.800000px;}
.y6_c00061{bottom:922.050000px;}
.y5_c00061{bottom:941.850000px;}
.y4_c00061{bottom:961.950000px;}
.y3_c00061{bottom:982.050000px;}
.y2_c00061{bottom:1001.850000px;}
.y1_c00061{bottom:1039.650000px;}
.h2_c00061{height:54.000000px;}
.h3_c00061{height:60.000000px;}
.h1_c00061{height:1167.000000px;}
.h0_c00061{height:1167.119934px;}
.w0_c00061{width:913.320007px;}
.w1_c00061{width:913.500000px;}
.x0_c00061{left:0.000000px;}
.xff_c00061{left:94.800000px;}
.x4c_c00061{left:96.300000px;}
.x5_c00061{left:97.500000px;}
.xc3_c00061{left:113.700000px;}
.x3b_c00061{left:116.250000px;}
.x119_c00061{left:118.200000px;}
.xa2_c00061{left:120.900000px;}
.xee_c00061{left:125.100000px;}
.xd5_c00061{left:127.050000px;}
.x42_c00061{left:128.550000px;}
.x7b_c00061{left:135.150000px;}
.x98_c00061{left:137.850000px;}
.x15_c00061{left:139.050000px;}
.x11a_c00061{left:142.350000px;}
.x21_c00061{left:143.850000px;}
.xd2_c00061{left:145.200000px;}
.xa3_c00061{left:146.400000px;}
.xb7_c00061{left:148.050000px;}
.x5d_c00061{left:150.000000px;}
.xaf_c00061{left:152.550000px;}
.x87_c00061{left:153.900000px;}
.x11e_c00061{left:155.400000px;}
.x69_c00061{left:158.250000px;}
.x43_c00061{left:159.900000px;}
.x2e_c00061{left:165.600000px;}
.x6c_c00061{left:166.650000px;}
.x6_c00061{left:168.000000px;}
.xc4_c00061{left:169.200000px;}
.x22_c00061{left:171.600000px;}
.x99_c00061{left:173.100000px;}
.x73_c00061{left:175.500000px;}
.x8f_c00061{left:177.300000px;}
.x4d_c00061{left:178.800000px;}
.x10b_c00061{left:180.750000px;}
.x7c_c00061{left:181.950000px;}
.xeb_c00061{left:184.350000px;}
.xf3_c00061{left:185.700000px;}
.x3c_c00061{left:186.900000px;}
.x7_c00061{left:189.300000px;}
.x9a_c00061{left:193.950000px;}
.x56_c00061{left:195.450000px;}
.xdb_c00061{left:197.550000px;}
.x6a_c00061{left:198.600000px;}
.xb8_c00061{left:201.300000px;}
.x5e_c00061{left:202.800000px;}
.x16_c00061{left:204.150000px;}
.xec_c00061{left:205.200000px;}
.x6d_c00061{left:206.550000px;}
.x126_c00061{left:209.400000px;}
.x9b_c00061{left:211.650000px;}
.x11f_c00061{left:212.700000px;}
.x23_c00061{left:215.550000px;}
.x106_c00061{left:220.050000px;}
.xfa_c00061{left:224.100000px;}
.x7d_c00061{left:225.150000px;}
.x4e_c00061{left:227.100000px;}
.x17_c00061{left:228.300000px;}
.xe7_c00061{left:230.250000px;}
.xcb_c00061{left:232.050000px;}
.x2f_c00061{left:233.550000px;}
.xa4_c00061{left:235.350000px;}
.x8_c00061{left:237.600000px;}
.x90_c00061{left:239.250000px;}
.x6b_c00061{left:240.300000px;}
.x7e_c00061{left:243.900000px;}
.x12a_c00061{left:247.650000px;}
.x123_c00061{left:248.700000px;}
.xcc_c00061{left:249.750000px;}
.x3d_c00061{left:252.450000px;}
.x4f_c00061{left:254.400000px;}
.x5f_c00061{left:256.500000px;}
.xd6_c00061{left:257.700000px;}
.xe4_c00061{left:259.350000px;}
.x18_c00061{left:261.750000px;}
.xdc_c00061{left:266.250000px;}
.xcd_c00061{left:267.450000px;}
.xd3_c00061{left:268.650000px;}
.x11b_c00061{left:270.150000px;}
.xf5_c00061{left:271.350000px;}
.x74_c00061{left:273.300000px;}
.xb9_c00061{left:274.800000px;}
.xa5_c00061{left:277.800000px;}
.x9c_c00061{left:279.750000px;}
.x44_c00061{left:282.300000px;}
.x60_c00061{left:285.300000px;}
.x100_c00061{left:287.100000px;}
.x88_c00061{left:289.650000px;}
.x50_c00061{left:290.700000px;}
.x3e_c00061{left:292.350000px;}
.xd7_c00061{left:294.000000px;}
.x24_c00061{left:295.800000px;}
.x9d_c00061{left:297.000000px;}
.x9_c00061{left:299.850000px;}
.xef_c00061{left:303.600000px;}
.x6e_c00061{left:305.850000px;}
.xa8_c00061{left:308.700000px;}
.xba_c00061{left:309.750000px;}
.x12b_c00061{left:311.700000px;}
.xfb_c00061{left:313.050000px;}
.x7f_c00061{left:314.100000px;}
.xd4_c00061{left:315.150000px;}
.x25_c00061{left:316.350000px;}
.x10a_c00061{left:318.000000px;}
.xdd_c00061{left:319.500000px;}
.x30_c00061{left:322.800000px;}
.xe5_c00061{left:324.900000px;}
.xb0_c00061{left:326.700000px;}
.xce_c00061{left:328.350000px;}
.xd8_c00061{left:332.550000px;}
.xa9_c00061{left:333.600000px;}
.xa_c00061{left:334.800000px;}
.xf6_c00061{left:339.450000px;}
.x19_c00061{left:343.050000px;}
.x80_c00061{left:344.400000px;}
.x1_c00061{left:345.900000px;}
.xf0_c00061{left:347.100000px;}
.x120_c00061{left:349.200000px;}
.xcf_c00061{left:350.700000px;}
.x117_c00061{left:351.900000px;}
.x3f_c00061{left:356.850000px;}
.x91_c00061{left:361.200000px;}
.xe8_c00061{left:362.700000px;}
.xb_c00061{left:363.900000px;}
.x81_c00061{left:366.000000px;}
.x26_c00061{left:367.050000px;}
.x57_c00061{left:368.400000px;}
.xbb_c00061{left:369.600000px;}
.xb1_c00061{left:370.650000px;}
.x61_c00061{left:372.450000px;}
.x130_c00061{left:374.250000px;}
.xd0_c00061{left:375.600000px;}
.x10c_c00061{left:378.300000px;}
.xc5_c00061{left:379.950000px;}
.x107_c00061{left:381.750000px;}
.x9e_c00061{left:384.450000px;}
.x31_c00061{left:386.250000px;}
.x89_c00061{left:387.900000px;}
.xaa_c00061{left:390.150000px;}
.xa6_c00061{left:392.700000px;}
.xb2_c00061{left:393.750000px;}
.x1a_c00061{left:395.250000px;}
.x75_c00061{left:400.500000px;}
.xc_c00061{left:403.200000px;}
.x131_c00061{left:407.700000px;}
.x40_c00061{left:408.750000px;}
.xf1_c00061{left:409.800000px;}
.xe6_c00061{left:411.000000px;}
.xbc_c00061{left:413.100000px;}
.x32_c00061{left:414.300000px;}
.xf7_c00061{left:415.800000px;}
.x1b_c00061{left:417.150000px;}
.x101_c00061{left:419.250000px;}
.xa7_c00061{left:421.500000px;}
.x92_c00061{left:422.700000px;}
.x2_c00061{left:424.800000px;}
.xfc_c00061{left:429.600000px;}
.x62_c00061{left:431.850000px;}
.xde_c00061{left:434.700000px;}
.x51_c00061{left:435.750000px;}
.x10d_c00061{left:437.400000px;}
.xd_c00061{left:438.900000px;}
.x93_c00061{left:444.000000px;}
.x102_c00061{left:445.200000px;}
.x41_c00061{left:446.250000px;}
.x3_c00061{left:447.450000px;}
.x58_c00061{left:449.400000px;}
.xbd_c00061{left:450.600000px;}
.x33_c00061{left:452.850000px;}
.xf2_c00061{left:454.500000px;}
.x10e_c00061{left:456.450000px;}
.x27_c00061{left:460.350000px;}
.x94_c00061{left:461.700000px;}
.x9f_c00061{left:463.350000px;}
.xf4_c00061{left:464.400000px;}
.x6f_c00061{left:465.600000px;}
.x12c_c00061{left:468.450000px;}
.xc6_c00061{left:471.000000px;}
.xab_c00061{left:472.200000px;}
.x82_c00061{left:476.850000px;}
.xe_c00061{left:478.500000px;}
.x28_c00061{left:479.850000px;}
.x1c_c00061{left:481.200000px;}
.x45_c00061{left:483.450000px;}
.x34_c00061{left:484.950000px;}
.xbe_c00061{left:486.600000px;}
.x95_c00061{left:487.650000px;}
.x127_c00061{left:490.200000px;}
.x8a_c00061{left:491.550000px;}
.xb3_c00061{left:495.600000px;}
.x63_c00061{left:496.950000px;}
.xf8_c00061{left:499.050000px;}
.x118_c00061{left:501.900000px;}
.x114_c00061{left:503.250000px;}
.x35_c00061{left:504.750000px;}
.xa0_c00061{left:506.550000px;}
.x29_c00061{left:508.350000px;}
.xbf_c00061{left:510.300000px;}
.xc7_c00061{left:511.650000px;}
.xac_c00061{left:512.850000px;}
.x64_c00061{left:514.950000px;}
.xdf_c00061{left:517.500000px;}
.x76_c00061{left:520.050000px;}
.x46_c00061{left:521.550000px;}
.x10f_c00061{left:523.050000px;}
.xe9_c00061{left:525.150000px;}
.x59_c00061{left:527.550000px;}
.x12d_c00061{left:531.450000px;}
.x103_c00061{left:532.950000px;}
.xf_c00061{left:534.000000px;}
.xc0_c00061{left:539.400000px;}
.xb4_c00061{left:540.900000px;}
.x110_c00061{left:542.100000px;}
.xd9_c00061{left:544.200000px;}
.xe0_c00061{left:545.550000px;}
.x36_c00061{left:547.950000px;}
.x8b_c00061{left:550.950000px;}
.x5a_c00061{left:553.500000px;}
.x96_c00061{left:555.000000px;}
.x2a_c00061{left:556.650000px;}
.x124_c00061{left:558.300000px;}
.x104_c00061{left:560.250000px;}
.x115_c00061{left:563.400000px;}
.xa1_c00061{left:564.450000px;}
.x10_c00061{left:566.400000px;}
.xc8_c00061{left:568.800000px;}
.x128_c00061{left:571.200000px;}
.x1d_c00061{left:572.250000px;}
.xad_c00061{left:574.350000px;}
.x65_c00061{left:575.850000px;}
.x47_c00061{left:578.100000px;}
.x108_c00061{left:579.900000px;}
.xea_c00061{left:582.450000px;}
.xc1_c00061{left:584.100000px;}
.xfd_c00061{left:585.900000px;}
.x52_c00061{left:587.400000px;}
.xb5_c00061{left:589.500000px;}
.xe1_c00061{left:593.100000px;}
.x11_c00061{left:594.450000px;}
.x66_c00061{left:596.700000px;}
.x37_c00061{left:599.400000px;}
.x11c_c00061{left:604.800000px;}
.x48_c00061{left:606.900000px;}
.x70_c00061{left:609.150000px;}
.x121_c00061{left:611.850000px;}
.x83_c00061{left:614.700000px;}
.x12_c00061{left:617.100000px;}
.xe2_c00061{left:619.050000px;}
.x105_c00061{left:621.150000px;}
.x132_c00061{left:622.200000px;}
.x2b_c00061{left:624.300000px;}
.x1e_c00061{left:625.500000px;}
.x12e_c00061{left:627.150000px;}
.xc2_c00061{left:628.350000px;}
.x5b_c00061{left:630.600000px;}
.x84_c00061{left:635.250000px;}
.xf9_c00061{left:636.600000px;}
.x71_c00061{left:640.500000px;}
.x38_c00061{left:641.550000px;}
.x77_c00061{left:643.950000px;}
.x125_c00061{left:648.300000px;}
.x8c_c00061{left:651.000000px;}
.xc9_c00061{left:655.800000px;}
.xae_c00061{left:657.150000px;}
.x1f_c00061{left:658.200000px;}
.x13_c00061{left:661.050000px;}
.x53_c00061{left:663.300000px;}
.x97_c00061{left:666.150000px;}
.x78_c00061{left:671.250000px;}
.x49_c00061{left:673.800000px;}
.x8d_c00061{left:676.200000px;}
.xfe_c00061{left:678.300000px;}
.x67_c00061{left:679.500000px;}
.x2c_c00061{left:681.450000px;}
.x20_c00061{left:683.100000px;}
.x39_c00061{left:685.050000px;}
.x12f_c00061{left:686.850000px;}
.xe3_c00061{left:688.950000px;}
.xed_c00061{left:691.050000px;}
.x111_c00061{left:692.100000px;}
.x4a_c00061{left:695.700000px;}
.x5c_c00061{left:697.200000px;}
.xca_c00061{left:699.450000px;}
.x14_c00061{left:705.000000px;}
.x68_c00061{left:707.550000px;}
.x3a_c00061{left:709.950000px;}
.x8e_c00061{left:711.900000px;}
.x122_c00061{left:714.750000px;}
.x11d_c00061{left:715.950000px;}
.xda_c00061{left:718.800000px;}
.x54_c00061{left:723.450000px;}
.x4b_c00061{left:725.550000px;}
.x112_c00061{left:727.050000px;}
.xd1_c00061{left:728.100000px;}
.x72_c00061{left:729.450000px;}
.x129_c00061{left:730.800000px;}
.x85_c00061{left:732.750000px;}
.x79_c00061{left:736.350000px;}
.xb6_c00061{left:738.900000px;}
.x2d_c00061{left:740.100000px;}
.x109_c00061{left:741.300000px;}
.x86_c00061{left:743.850000px;}
.x4_c00061{left:745.500000px;}
.x55_c00061{left:746.550000px;}
.x113_c00061{left:748.350000px;}
.x116_c00061{left:751.200000px;}
.x7a_c00061{left:754.650000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws5_c00061{word-spacing:-14.567901pt;}
.ws8_c00061{word-spacing:-3.563609pt;}
.ws7_c00061{word-spacing:-1.111111pt;}
.wse_c00061{word-spacing:0.000000pt;}
.ws3_c00061{word-spacing:3.127572pt;}
.ws2_c00061{word-spacing:7.160494pt;}
.ws0_c00061{word-spacing:7.283951pt;}
.ws6_c00061{word-spacing:7.457627pt;}
.ws4_c00061{word-spacing:7.581699pt;}
.ws1_c00061{word-spacing:9.168684pt;}
.wsb_c00061{word-spacing:10.493827pt;}
.wsa_c00061{word-spacing:11.604938pt;}
.ws9_c00061{word-spacing:22.091503pt;}
.wsc_c00061{word-spacing:22.796405pt;}
.wsd_c00061{word-spacing:23.492063pt;}
._0_c00061{width:17.530864pt;}
._1_c00061{width:42.962963pt;}
.fs0_c00061{font-size:48.000000pt;}
.fs1_c00061{font-size:53.333333pt;}
.y0_c00061{bottom:0.000000pt;}
.y2e_c00061{bottom:126.000000pt;}
.y2d_c00061{bottom:139.733333pt;}
.y2c_c00061{bottom:153.866667pt;}
.y2b_c00061{bottom:167.600000pt;}
.y2a_c00061{bottom:181.733333pt;}
.y29_c00061{bottom:195.466667pt;}
.y28_c00061{bottom:209.333333pt;}
.y27_c00061{bottom:222.666667pt;}
.y26_c00061{bottom:237.066667pt;}
.y25_c00061{bottom:268.800000pt;}
.y24_c00061{bottom:286.666667pt;}
.y23_c00061{bottom:304.266667pt;}
.y22_c00061{bottom:321.866667pt;}
.y21_c00061{bottom:339.600000pt;}
.y20_c00061{bottom:357.466667pt;}
.y1f_c00061{bottom:376.133333pt;}
.y1e_c00061{bottom:394.000000pt;}
.y1d_c00061{bottom:411.866667pt;}
.y1c_c00061{bottom:429.466667pt;}
.y1b_c00061{bottom:447.066667pt;}
.y1a_c00061{bottom:464.666667pt;}
.y19_c00061{bottom:482.266667pt;}
.y18_c00061{bottom:500.133333pt;}
.y17_c00061{bottom:517.733333pt;}
.y16_c00061{bottom:535.333333pt;}
.y15_c00061{bottom:553.600000pt;}
.y14_c00061{bottom:570.533333pt;}
.y13_c00061{bottom:588.800000pt;}
.y12_c00061{bottom:606.400000pt;}
.y11_c00061{bottom:624.000000pt;}
.y10_c00061{bottom:641.600000pt;}
.yf_c00061{bottom:659.600000pt;}
.ye_c00061{bottom:677.200000pt;}
.yd_c00061{bottom:695.066667pt;}
.yc_c00061{bottom:712.666667pt;}
.yb_c00061{bottom:730.400000pt;}
.ya_c00061{bottom:748.266667pt;}
.y9_c00061{bottom:766.133333pt;}
.y8_c00061{bottom:783.733333pt;}
.y7_c00061{bottom:801.600000pt;}
.y6_c00061{bottom:819.600000pt;}
.y5_c00061{bottom:837.200000pt;}
.y4_c00061{bottom:855.066667pt;}
.y3_c00061{bottom:872.933333pt;}
.y2_c00061{bottom:890.533333pt;}
.y1_c00061{bottom:924.133333pt;}
.h2_c00061{height:48.000000pt;}
.h3_c00061{height:53.333333pt;}
.h1_c00061{height:1037.333333pt;}
.h0_c00061{height:1037.439941pt;}
.w0_c00061{width:811.840007pt;}
.w1_c00061{width:812.000000pt;}
.x0_c00061{left:0.000000pt;}
.xff_c00061{left:84.266667pt;}
.x4c_c00061{left:85.600000pt;}
.x5_c00061{left:86.666667pt;}
.xc3_c00061{left:101.066667pt;}
.x3b_c00061{left:103.333333pt;}
.x119_c00061{left:105.066667pt;}
.xa2_c00061{left:107.466667pt;}
.xee_c00061{left:111.200000pt;}
.xd5_c00061{left:112.933333pt;}
.x42_c00061{left:114.266667pt;}
.x7b_c00061{left:120.133333pt;}
.x98_c00061{left:122.533333pt;}
.x15_c00061{left:123.600000pt;}
.x11a_c00061{left:126.533333pt;}
.x21_c00061{left:127.866667pt;}
.xd2_c00061{left:129.066667pt;}
.xa3_c00061{left:130.133333pt;}
.xb7_c00061{left:131.600000pt;}
.x5d_c00061{left:133.333333pt;}
.xaf_c00061{left:135.600000pt;}
.x87_c00061{left:136.800000pt;}
.x11e_c00061{left:138.133333pt;}
.x69_c00061{left:140.666667pt;}
.x43_c00061{left:142.133333pt;}
.x2e_c00061{left:147.200000pt;}
.x6c_c00061{left:148.133333pt;}
.x6_c00061{left:149.333333pt;}
.xc4_c00061{left:150.400000pt;}
.x22_c00061{left:152.533333pt;}
.x99_c00061{left:153.866667pt;}
.x73_c00061{left:156.000000pt;}
.x8f_c00061{left:157.600000pt;}
.x4d_c00061{left:158.933333pt;}
.x10b_c00061{left:160.666667pt;}
.x7c_c00061{left:161.733333pt;}
.xeb_c00061{left:163.866667pt;}
.xf3_c00061{left:165.066667pt;}
.x3c_c00061{left:166.133333pt;}
.x7_c00061{left:168.266667pt;}
.x9a_c00061{left:172.400000pt;}
.x56_c00061{left:173.733333pt;}
.xdb_c00061{left:175.600000pt;}
.x6a_c00061{left:176.533333pt;}
.xb8_c00061{left:178.933333pt;}
.x5e_c00061{left:180.266667pt;}
.x16_c00061{left:181.466667pt;}
.xec_c00061{left:182.400000pt;}
.x6d_c00061{left:183.600000pt;}
.x126_c00061{left:186.133333pt;}
.x9b_c00061{left:188.133333pt;}
.x11f_c00061{left:189.066667pt;}
.x23_c00061{left:191.600000pt;}
.x106_c00061{left:195.600000pt;}
.xfa_c00061{left:199.200000pt;}
.x7d_c00061{left:200.133333pt;}
.x4e_c00061{left:201.866667pt;}
.x17_c00061{left:202.933333pt;}
.xe7_c00061{left:204.666667pt;}
.xcb_c00061{left:206.266667pt;}
.x2f_c00061{left:207.600000pt;}
.xa4_c00061{left:209.200000pt;}
.x8_c00061{left:211.200000pt;}
.x90_c00061{left:212.666667pt;}
.x6b_c00061{left:213.600000pt;}
.x7e_c00061{left:216.800000pt;}
.x12a_c00061{left:220.133333pt;}
.x123_c00061{left:221.066667pt;}
.xcc_c00061{left:222.000000pt;}
.x3d_c00061{left:224.400000pt;}
.x4f_c00061{left:226.133333pt;}
.x5f_c00061{left:228.000000pt;}
.xd6_c00061{left:229.066667pt;}
.xe4_c00061{left:230.533333pt;}
.x18_c00061{left:232.666667pt;}
.xdc_c00061{left:236.666667pt;}
.xcd_c00061{left:237.733333pt;}
.xd3_c00061{left:238.800000pt;}
.x11b_c00061{left:240.133333pt;}
.xf5_c00061{left:241.200000pt;}
.x74_c00061{left:242.933333pt;}
.xb9_c00061{left:244.266667pt;}
.xa5_c00061{left:246.933333pt;}
.x9c_c00061{left:248.666667pt;}
.x44_c00061{left:250.933333pt;}
.x60_c00061{left:253.600000pt;}
.x100_c00061{left:255.200000pt;}
.x88_c00061{left:257.466667pt;}
.x50_c00061{left:258.400000pt;}
.x3e_c00061{left:259.866667pt;}
.xd7_c00061{left:261.333333pt;}
.x24_c00061{left:262.933333pt;}
.x9d_c00061{left:264.000000pt;}
.x9_c00061{left:266.533333pt;}
.xef_c00061{left:269.866667pt;}
.x6e_c00061{left:271.866667pt;}
.xa8_c00061{left:274.400000pt;}
.xba_c00061{left:275.333333pt;}
.x12b_c00061{left:277.066667pt;}
.xfb_c00061{left:278.266667pt;}
.x7f_c00061{left:279.200000pt;}
.xd4_c00061{left:280.133333pt;}
.x25_c00061{left:281.200000pt;}
.x10a_c00061{left:282.666667pt;}
.xdd_c00061{left:284.000000pt;}
.x30_c00061{left:286.933333pt;}
.xe5_c00061{left:288.800000pt;}
.xb0_c00061{left:290.400000pt;}
.xce_c00061{left:291.866667pt;}
.xd8_c00061{left:295.600000pt;}
.xa9_c00061{left:296.533333pt;}
.xa_c00061{left:297.600000pt;}
.xf6_c00061{left:301.733333pt;}
.x19_c00061{left:304.933333pt;}
.x80_c00061{left:306.133333pt;}
.x1_c00061{left:307.466667pt;}
.xf0_c00061{left:308.533333pt;}
.x120_c00061{left:310.400000pt;}
.xcf_c00061{left:311.733333pt;}
.x117_c00061{left:312.800000pt;}
.x3f_c00061{left:317.200000pt;}
.x91_c00061{left:321.066667pt;}
.xe8_c00061{left:322.400000pt;}
.xb_c00061{left:323.466667pt;}
.x81_c00061{left:325.333333pt;}
.x26_c00061{left:326.266667pt;}
.x57_c00061{left:327.466667pt;}
.xbb_c00061{left:328.533333pt;}
.xb1_c00061{left:329.466667pt;}
.x61_c00061{left:331.066667pt;}
.x130_c00061{left:332.666667pt;}
.xd0_c00061{left:333.866667pt;}
.x10c_c00061{left:336.266667pt;}
.xc5_c00061{left:337.733333pt;}
.x107_c00061{left:339.333333pt;}
.x9e_c00061{left:341.733333pt;}
.x31_c00061{left:343.333333pt;}
.x89_c00061{left:344.800000pt;}
.xaa_c00061{left:346.800000pt;}
.xa6_c00061{left:349.066667pt;}
.xb2_c00061{left:350.000000pt;}
.x1a_c00061{left:351.333333pt;}
.x75_c00061{left:356.000000pt;}
.xc_c00061{left:358.400000pt;}
.x131_c00061{left:362.400000pt;}
.x40_c00061{left:363.333333pt;}
.xf1_c00061{left:364.266667pt;}
.xe6_c00061{left:365.333333pt;}
.xbc_c00061{left:367.200000pt;}
.x32_c00061{left:368.266667pt;}
.xf7_c00061{left:369.600000pt;}
.x1b_c00061{left:370.800000pt;}
.x101_c00061{left:372.666667pt;}
.xa7_c00061{left:374.666667pt;}
.x92_c00061{left:375.733333pt;}
.x2_c00061{left:377.600000pt;}
.xfc_c00061{left:381.866667pt;}
.x62_c00061{left:383.866667pt;}
.xde_c00061{left:386.400000pt;}
.x51_c00061{left:387.333333pt;}
.x10d_c00061{left:388.800000pt;}
.xd_c00061{left:390.133333pt;}
.x93_c00061{left:394.666667pt;}
.x102_c00061{left:395.733333pt;}
.x41_c00061{left:396.666667pt;}
.x3_c00061{left:397.733333pt;}
.x58_c00061{left:399.466667pt;}
.xbd_c00061{left:400.533333pt;}
.x33_c00061{left:402.533333pt;}
.xf2_c00061{left:404.000000pt;}
.x10e_c00061{left:405.733333pt;}
.x27_c00061{left:409.200000pt;}
.x94_c00061{left:410.400000pt;}
.x9f_c00061{left:411.866667pt;}
.xf4_c00061{left:412.800000pt;}
.x6f_c00061{left:413.866667pt;}
.x12c_c00061{left:416.400000pt;}
.xc6_c00061{left:418.666667pt;}
.xab_c00061{left:419.733333pt;}
.x82_c00061{left:423.866667pt;}
.xe_c00061{left:425.333333pt;}
.x28_c00061{left:426.533333pt;}
.x1c_c00061{left:427.733333pt;}
.x45_c00061{left:429.733333pt;}
.x34_c00061{left:431.066667pt;}
.xbe_c00061{left:432.533333pt;}
.x95_c00061{left:433.466667pt;}
.x127_c00061{left:435.733333pt;}
.x8a_c00061{left:436.933333pt;}
.xb3_c00061{left:440.533333pt;}
.x63_c00061{left:441.733333pt;}
.xf8_c00061{left:443.600000pt;}
.x118_c00061{left:446.133333pt;}
.x114_c00061{left:447.333333pt;}
.x35_c00061{left:448.666667pt;}
.xa0_c00061{left:450.266667pt;}
.x29_c00061{left:451.866667pt;}
.xbf_c00061{left:453.600000pt;}
.xc7_c00061{left:454.800000pt;}
.xac_c00061{left:455.866667pt;}
.x64_c00061{left:457.733333pt;}
.xdf_c00061{left:460.000000pt;}
.x76_c00061{left:462.266667pt;}
.x46_c00061{left:463.600000pt;}
.x10f_c00061{left:464.933333pt;}
.xe9_c00061{left:466.800000pt;}
.x59_c00061{left:468.933333pt;}
.x12d_c00061{left:472.400000pt;}
.x103_c00061{left:473.733333pt;}
.xf_c00061{left:474.666667pt;}
.xc0_c00061{left:479.466667pt;}
.xb4_c00061{left:480.800000pt;}
.x110_c00061{left:481.866667pt;}
.xd9_c00061{left:483.733333pt;}
.xe0_c00061{left:484.933333pt;}
.x36_c00061{left:487.066667pt;}
.x8b_c00061{left:489.733333pt;}
.x5a_c00061{left:492.000000pt;}
.x96_c00061{left:493.333333pt;}
.x2a_c00061{left:494.800000pt;}
.x124_c00061{left:496.266667pt;}
.x104_c00061{left:498.000000pt;}
.x115_c00061{left:500.800000pt;}
.xa1_c00061{left:501.733333pt;}
.x10_c00061{left:503.466667pt;}
.xc8_c00061{left:505.600000pt;}
.x128_c00061{left:507.733333pt;}
.x1d_c00061{left:508.666667pt;}
.xad_c00061{left:510.533333pt;}
.x65_c00061{left:511.866667pt;}
.x47_c00061{left:513.866667pt;}
.x108_c00061{left:515.466667pt;}
.xea_c00061{left:517.733333pt;}
.xc1_c00061{left:519.200000pt;}
.xfd_c00061{left:520.800000pt;}
.x52_c00061{left:522.133333pt;}
.xb5_c00061{left:524.000000pt;}
.xe1_c00061{left:527.200000pt;}
.x11_c00061{left:528.400000pt;}
.x66_c00061{left:530.400000pt;}
.x37_c00061{left:532.800000pt;}
.x11c_c00061{left:537.600000pt;}
.x48_c00061{left:539.466667pt;}
.x70_c00061{left:541.466667pt;}
.x121_c00061{left:543.866667pt;}
.x83_c00061{left:546.400000pt;}
.x12_c00061{left:548.533333pt;}
.xe2_c00061{left:550.266667pt;}
.x105_c00061{left:552.133333pt;}
.x132_c00061{left:553.066667pt;}
.x2b_c00061{left:554.933333pt;}
.x1e_c00061{left:556.000000pt;}
.x12e_c00061{left:557.466667pt;}
.xc2_c00061{left:558.533333pt;}
.x5b_c00061{left:560.533333pt;}
.x84_c00061{left:564.666667pt;}
.xf9_c00061{left:565.866667pt;}
.x71_c00061{left:569.333333pt;}
.x38_c00061{left:570.266667pt;}
.x77_c00061{left:572.400000pt;}
.x125_c00061{left:576.266667pt;}
.x8c_c00061{left:578.666667pt;}
.xc9_c00061{left:582.933333pt;}
.xae_c00061{left:584.133333pt;}
.x1f_c00061{left:585.066667pt;}
.x13_c00061{left:587.600000pt;}
.x53_c00061{left:589.600000pt;}
.x97_c00061{left:592.133333pt;}
.x78_c00061{left:596.666667pt;}
.x49_c00061{left:598.933333pt;}
.x8d_c00061{left:601.066667pt;}
.xfe_c00061{left:602.933333pt;}
.x67_c00061{left:604.000000pt;}
.x2c_c00061{left:605.733333pt;}
.x20_c00061{left:607.200000pt;}
.x39_c00061{left:608.933333pt;}
.x12f_c00061{left:610.533333pt;}
.xe3_c00061{left:612.400000pt;}
.xed_c00061{left:614.266667pt;}
.x111_c00061{left:615.200000pt;}
.x4a_c00061{left:618.400000pt;}
.x5c_c00061{left:619.733333pt;}
.xca_c00061{left:621.733333pt;}
.x14_c00061{left:626.666667pt;}
.x68_c00061{left:628.933333pt;}
.x3a_c00061{left:631.066667pt;}
.x8e_c00061{left:632.800000pt;}
.x122_c00061{left:635.333333pt;}
.x11d_c00061{left:636.400000pt;}
.xda_c00061{left:638.933333pt;}
.x54_c00061{left:643.066667pt;}
.x4b_c00061{left:644.933333pt;}
.x112_c00061{left:646.266667pt;}
.xd1_c00061{left:647.200000pt;}
.x72_c00061{left:648.400000pt;}
.x129_c00061{left:649.600000pt;}
.x85_c00061{left:651.333333pt;}
.x79_c00061{left:654.533333pt;}
.xb6_c00061{left:656.800000pt;}
.x2d_c00061{left:657.866667pt;}
.x109_c00061{left:658.933333pt;}
.x86_c00061{left:661.200000pt;}
.x4_c00061{left:662.666667pt;}
.x55_c00061{left:663.600000pt;}
.x113_c00061{left:665.200000pt;}
.x116_c00061{left:667.733333pt;}
.x7a_c00061{left:670.800000pt;}
}





/* 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_c00062 {
    display:none;
  }
  .loading-indicator_c00062.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00062 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_c00062 { 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_c00062" -> "#page-container .classname_c00062")
 */
.pf_c00062 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00062 { /* 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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00062 { /* 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_c00062 { /* 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_c00062 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00062 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00062 {overflow:visible;}
  }
}
.c_c00062 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00062 { /* 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_c00062:after { /* webkit #35443 */
  content: '';
}
.t_c00062:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00062 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 */
}
.__c00062 { /* 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_c00062 { /* info for Javascript */
  display:none;
}
.l_c00062 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00062 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00062 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00062: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_c00062 {
    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_c00062.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00062.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_c00062 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00062{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00062;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.000000;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;}
.mc2_c00062{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m70_c00062{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00062{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00062{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m47_c00062{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00062{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m58_c00062{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00062{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00062{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m56_c00062{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m63_c00062{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00062{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m55_c00062{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.maf_c00062{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00062{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00062{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00062{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00062{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m68_c00062{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00062{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00062{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00062{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00062{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m37_c00062{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00062{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00062{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma_c00062{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00062{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m67_c00062{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m36_c00062{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m31_c00062{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00062{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m54_c00062{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m17_c00062{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00062{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00062{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m52_c00062{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00062{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00062{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mae_c00062{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m39_c00062{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m60_c00062{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00062{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00062{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00062{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00062{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00062{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00062{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mac_c00062{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00062{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m38_c00062{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m29_c00062{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00062{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00062{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m92_c00062{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m82_c00062{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00062{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00062{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00062{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00062{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00062{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00062{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m25_c00062{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00062{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00062{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00062{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m44_c00062{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00062{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m99_c00062{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00062{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00062{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m91_c00062{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m27_c00062{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00062{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m57_c00062{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m40_c00062{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00062{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00062{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00062{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m18_c00062{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00062{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00062{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m30_c00062{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00062{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m77_c00062{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m81_c00062{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00062{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maa_c00062{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00062{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00062{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m22_c00062{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m33_c00062{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m46_c00062{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00062{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00062{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m72_c00062{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00062{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00062{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m23_c00062{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00062{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m86_c00062{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00062{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00062{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00062{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m84_c00062{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m93_c00062{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00062{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5_c00062{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00062{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m76_c00062{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00062{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m66_c00062{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m20_c00062{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m59_c00062{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00062{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00062{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m69_c00062{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m41_c00062{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m97_c00062{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00062{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m24_c00062{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf_c00062{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00062{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m64_c00062{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m61_c00062{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md_c00062{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00062{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00062{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m74_c00062{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00062{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00062{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00062{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00062{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00062{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00062{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m96_c00062{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m83_c00062{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00062{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00062{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m75_c00062{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00062{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00062{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m73_c00062{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m34_c00062{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m51_c00062{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4_c00062{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00062{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00062{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00062{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m85_c00062{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m43_c00062{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21_c00062{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m49_c00062{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);}
.m62_c00062{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m50_c00062{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m32_c00062{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00062{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1_c00062{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00062{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m11_c00062{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00062{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00062{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00062{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m45_c00062{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00062{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00062{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m71_c00062{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00062{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mab_c00062{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m26_c00062{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00062{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00062{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mba_c00062{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m80_c00062{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m79_c00062{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00062{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00062{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00062{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m90_c00062{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00062{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m87_c00062{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m98_c00062{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00062{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00062{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m89_c00062{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00062{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00062{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m95_c00062{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{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__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00062{word-spacing:-10.975610px;}
.ws2_c00062{word-spacing:-4.861111px;}
.ws7_c00062{word-spacing:-4.709261px;}
.ws5_c00062{word-spacing:-0.641026px;}
.ws9_c00062{word-spacing:0.000000px;}
.ws3_c00062{word-spacing:3.518519px;}
.ws4_c00062{word-spacing:8.333333px;}
.ws0_c00062{word-spacing:8.571429px;}
.ws8_c00062{word-spacing:10.241993px;}
.ws6_c00062{word-spacing:14.166667px;}
._0_c00062{width:22.073171px;}
.fc0_c00062{color:transparent;}
.fs1_c00062{font-size:54.000000px;}
.fs0_c00062{font-size:60.000000px;}
.y0_c00062{bottom:0.000000px;}
.y2d_c00062{bottom:144.750000px;}
.y2c_c00062{bottom:160.500000px;}
.y2b_c00062{bottom:176.400000px;}
.y2a_c00062{bottom:191.850000px;}
.y29_c00062{bottom:207.750000px;}
.y28_c00062{bottom:223.500000px;}
.y27_c00062{bottom:239.100000px;}
.y26_c00062{bottom:291.000000px;}
.y25_c00062{bottom:310.800000px;}
.y24_c00062{bottom:330.600000px;}
.y23_c00062{bottom:350.100000px;}
.y22_c00062{bottom:370.200000px;}
.y21_c00062{bottom:389.700000px;}
.y20_c00062{bottom:409.800000px;}
.y1f_c00062{bottom:429.900000px;}
.y1e_c00062{bottom:449.700000px;}
.y1d_c00062{bottom:469.500000px;}
.y1c_c00062{bottom:489.300000px;}
.y1b_c00062{bottom:509.100000px;}
.y1a_c00062{bottom:528.900000px;}
.y19_c00062{bottom:549.000000px;}
.y18_c00062{bottom:569.250000px;}
.y17_c00062{bottom:589.050000px;}
.y16_c00062{bottom:608.850000px;}
.y15_c00062{bottom:628.650000px;}
.y14_c00062{bottom:648.450000px;}
.y13_c00062{bottom:669.000000px;}
.y12_c00062{bottom:688.800000px;}
.y11_c00062{bottom:708.900000px;}
.y10_c00062{bottom:728.700000px;}
.yf_c00062{bottom:748.500000px;}
.ye_c00062{bottom:768.300000px;}
.yd_c00062{bottom:788.100000px;}
.yc_c00062{bottom:807.900000px;}
.yb_c00062{bottom:827.700000px;}
.ya_c00062{bottom:847.500000px;}
.y9_c00062{bottom:867.300000px;}
.y8_c00062{bottom:887.400000px;}
.y7_c00062{bottom:907.200000px;}
.y6_c00062{bottom:927.300000px;}
.y5_c00062{bottom:947.100000px;}
.y4_c00062{bottom:967.350000px;}
.y3_c00062{bottom:987.150000px;}
.y2_c00062{bottom:1006.950000px;}
.y1_c00062{bottom:1045.050000px;}
.h3_c00062{height:54.000000px;}
.h2_c00062{height:60.000000px;}
.h1_c00062{height:1167.000000px;}
.h0_c00062{height:1167.119934px;}
.w0_c00062{width:913.320007px;}
.w1_c00062{width:913.500000px;}
.x0_c00062{left:0.000000px;}
.x140_c00062{left:141.450000px;}
.x12b_c00062{left:142.500000px;}
.x11c_c00062{left:144.750000px;}
.xd5_c00062{left:145.800000px;}
.xaa_c00062{left:147.000000px;}
.x85_c00062{left:148.200000px;}
.x45_c00062{left:149.400000px;}
.x15_c00062{left:151.500000px;}
.x1_c00062{left:152.700000px;}
.x134_c00062{left:155.250000px;}
.x13e_c00062{left:161.250000px;}
.xba_c00062{left:167.100000px;}
.x67_c00062{left:171.600000px;}
.xa1_c00062{left:175.500000px;}
.xe6_c00062{left:177.450000px;}
.x12f_c00062{left:179.250000px;}
.x2d_c00062{left:181.800000px;}
.x4_c00062{left:182.850000px;}
.x86_c00062{left:183.900000px;}
.xdd_c00062{left:184.950000px;}
.x117_c00062{left:187.950000px;}
.x72_c00062{left:189.300000px;}
.xcd_c00062{left:191.100000px;}
.xd6_c00062{left:192.900000px;}
.x54_c00062{left:198.000000px;}
.x106_c00062{left:199.050000px;}
.x46_c00062{left:201.600000px;}
.x16_c00062{left:202.950000px;}
.x9a_c00062{left:204.600000px;}
.xb5_c00062{left:208.050000px;}
.x13f_c00062{left:209.100000px;}
.x145_c00062{left:210.300000px;}
.x2e_c00062{left:211.350000px;}
.x91_c00062{left:212.850000px;}
.xf7_c00062{left:215.250000px;}
.x24_c00062{left:216.900000px;}
.x5_c00062{left:218.850000px;}
.x126_c00062{left:221.700000px;}
.xef_c00062{left:223.650000px;}
.x17_c00062{left:224.850000px;}
.x55_c00062{left:226.800000px;}
.xab_c00062{left:228.300000px;}
.x92_c00062{left:230.550000px;}
.x3a_c00062{left:232.200000px;}
.xb6_c00062{left:233.250000px;}
.x102_c00062{left:234.900000px;}
.x25_c00062{left:236.700000px;}
.x118_c00062{left:240.450000px;}
.x6_c00062{left:241.950000px;}
.x56_c00062{left:244.050000px;}
.x13b_c00062{left:245.250000px;}
.xf8_c00062{left:246.600000px;}
.x7d_c00062{left:248.250000px;}
.x3b_c00062{left:250.500000px;}
.x2f_c00062{left:252.450000px;}
.xd7_c00062{left:253.650000px;}
.x87_c00062{left:256.500000px;}
.x26_c00062{left:258.600000px;}
.xc4_c00062{left:261.150000px;}
.xf0_c00062{left:262.200000px;}
.xe7_c00062{left:264.150000px;}
.xbb_c00062{left:266.100000px;}
.x73_c00062{left:270.000000px;}
.x57_c00062{left:271.800000px;}
.xa2_c00062{left:273.000000px;}
.x130_c00062{left:275.700000px;}
.x30_c00062{left:276.900000px;}
.x88_c00062{left:278.100000px;}
.x18_c00062{left:279.600000px;}
.xe8_c00062{left:283.650000px;}
.x119_c00062{left:287.550000px;}
.x47_c00062{left:289.500000px;}
.x74_c00062{left:290.550000px;}
.xa3_c00062{left:293.550000px;}
.xe3_c00062{left:294.900000px;}
.x3c_c00062{left:296.550000px;}
.x68_c00062{left:298.500000px;}
.x103_c00062{left:302.250000px;}
.x7e_c00062{left:303.750000px;}
.x48_c00062{left:304.950000px;}
.x89_c00062{left:306.150000px;}
.x127_c00062{left:307.350000px;}
.xd8_c00062{left:308.400000px;}
.x19_c00062{left:310.950000px;}
.x75_c00062{left:312.900000px;}
.x141_c00062{left:316.050000px;}
.x7_c00062{left:317.250000px;}
.xe4_c00062{left:320.100000px;}
.xce_c00062{left:321.750000px;}
.xc5_c00062{left:323.850000px;}
.xde_c00062{left:325.350000px;}
.x69_c00062{left:326.550000px;}
.x93_c00062{left:328.500000px;}
.x8_c00062{left:329.550000px;}
.x27_c00062{left:330.900000px;}
.x10e_c00062{left:333.150000px;}
.xe9_c00062{left:334.800000px;}
.x31_c00062{left:337.050000px;}
.x11d_c00062{left:339.150000px;}
.x135_c00062{left:341.700000px;}
.x76_c00062{left:344.250000px;}
.x3d_c00062{left:346.500000px;}
.x104_c00062{left:347.850000px;}
.x28_c00062{left:348.900000px;}
.xf1_c00062{left:350.100000px;}
.x1a_c00062{left:351.600000px;}
.xb7_c00062{left:352.800000px;}
.xe5_c00062{left:355.050000px;}
.xbc_c00062{left:358.950000px;}
.x136_c00062{left:360.750000px;}
.x58_c00062{left:362.400000px;}
.xa4_c00062{left:363.450000px;}
.x7f_c00062{left:364.950000px;}
.xac_c00062{left:367.200000px;}
.x9_c00062{left:369.150000px;}
.x10f_c00062{left:370.650000px;}
.x131_c00062{left:373.200000px;}
.xdf_c00062{left:374.400000px;}
.x49_c00062{left:376.650000px;}
.x59_c00062{left:380.100000px;}
.x94_c00062{left:382.500000px;}
.x110_c00062{left:384.000000px;}
.xea_c00062{left:386.700000px;}
.x80_c00062{left:388.350000px;}
.x77_c00062{left:390.300000px;}
.x9b_c00062{left:391.650000px;}
.x4a_c00062{left:393.600000px;}
.x5a_c00062{left:395.550000px;}
.x137_c00062{left:396.750000px;}
.x2_c00062{left:397.800000px;}
.xa_c00062{left:403.650000px;}
.x6a_c00062{left:404.700000px;}
.xcf_c00062{left:406.650000px;}
.x32_c00062{left:411.600000px;}
.x10a_c00062{left:413.100000px;}
.x29_c00062{left:414.450000px;}
.xbd_c00062{left:416.550000px;}
.x4b_c00062{left:418.800000px;}
.x5b_c00062{left:421.500000px;}
.xd0_c00062{left:427.500000px;}
.x9c_c00062{left:429.750000px;}
.xd9_c00062{left:431.250000px;}
.x5c_c00062{left:433.350000px;}
.x2a_c00062{left:435.300000px;}
.x128_c00062{left:439.800000px;}
.xb_c00062{left:441.450000px;}
.xb8_c00062{left:442.500000px;}
.x1b_c00062{left:444.900000px;}
.x111_c00062{left:446.250000px;}
.xfe_c00062{left:447.300000px;}
.x12c_c00062{left:448.350000px;}
.xe0_c00062{left:450.300000px;}
.xf9_c00062{left:451.800000px;}
.xad_c00062{left:453.300000px;}
.x122_c00062{left:456.600000px;}
.xbe_c00062{left:459.750000px;}
.x33_c00062{left:463.050000px;}
.x6b_c00062{left:465.150000px;}
.x5d_c00062{left:466.800000px;}
.x4c_c00062{left:469.500000px;}
.x105_c00062{left:470.550000px;}
.xc_c00062{left:474.900000px;}
.xd1_c00062{left:477.150000px;}
.x1c_c00062{left:478.350000px;}
.xf2_c00062{left:480.150000px;}
.x78_c00062{left:482.400000px;}
.x142_c00062{left:484.050000px;}
.x8a_c00062{left:485.400000px;}
.xae_c00062{left:486.750000px;}
.x34_c00062{left:488.250000px;}
.x11a_c00062{left:489.600000px;}
.xbf_c00062{left:490.650000px;}
.x3e_c00062{left:492.150000px;}
.x112_c00062{left:493.800000px;}
.x3_c00062{left:496.050000px;}
.x81_c00062{left:499.200000px;}
.x11e_c00062{left:500.700000px;}
.x79_c00062{left:502.500000px;}
.xda_c00062{left:507.150000px;}
.x9d_c00062{left:508.500000px;}
.x10b_c00062{left:510.300000px;}
.x6c_c00062{left:511.650000px;}
.x1d_c00062{left:513.600000px;}
.x4d_c00062{left:514.800000px;}
.xc7_c00062{left:516.450000px;}
.xd_c00062{left:517.800000px;}
.x8b_c00062{left:518.850000px;}
.x5e_c00062{left:521.550000px;}
.xa5_c00062{left:523.950000px;}
.xaf_c00062{left:525.600000px;}
.x1e_c00062{left:528.750000px;}
.x7a_c00062{left:531.600000px;}
.x143_c00062{left:532.950000px;}
.x11f_c00062{left:534.600000px;}
.x107_c00062{left:536.250000px;}
.xff_c00062{left:537.900000px;}
.x4e_c00062{left:543.600000px;}
.xf3_c00062{left:544.950000px;}
.x5f_c00062{left:548.250000px;}
.x129_c00062{left:549.900000px;}
.xe_c00062{left:550.950000px;}
.x3f_c00062{left:552.300000px;}
.xc0_c00062{left:553.350000px;}
.x6d_c00062{left:555.300000px;}
.xfa_c00062{left:557.700000px;}
.x12d_c00062{left:562.050000px;}
.x95_c00062{left:563.850000px;}
.x4f_c00062{left:564.900000px;}
.x113_c00062{left:566.850000px;}
.x35_c00062{left:568.200000px;}
.xc8_c00062{left:569.700000px;}
.x138_c00062{left:571.800000px;}
.x1f_c00062{left:574.500000px;}
.xeb_c00062{left:577.500000px;}
.xf_c00062{left:579.000000px;}
.x8c_c00062{left:581.850000px;}
.xb9_c00062{left:582.900000px;}
.x60_c00062{left:586.350000px;}
.xf4_c00062{left:588.600000px;}
.x2b_c00062{left:591.450000px;}
.xfb_c00062{left:594.450000px;}
.x144_c00062{left:597.150000px;}
.x40_c00062{left:600.150000px;}
.xc1_c00062{left:602.250000px;}
.xa6_c00062{left:603.450000px;}
.x82_c00062{left:605.400000px;}
.x123_c00062{left:606.750000px;}
.x50_c00062{left:609.600000px;}
.x61_c00062{left:615.150000px;}
.x108_c00062{left:617.850000px;}
.x36_c00062{left:619.350000px;}
.x10_c00062{left:620.400000px;}
.xb0_c00062{left:622.500000px;}
.x6e_c00062{left:624.750000px;}
.x8d_c00062{left:625.800000px;}
.x100_c00062{left:626.850000px;}
.x20_c00062{left:634.200000px;}
.xec_c00062{left:636.450000px;}
.x96_c00062{left:638.700000px;}
.x11_c00062{left:639.900000px;}
.x62_c00062{left:641.100000px;}
.x114_c00062{left:642.450000px;}
.xa7_c00062{left:644.850000px;}
.x83_c00062{left:647.100000px;}
.x124_c00062{left:648.450000px;}
.xc9_c00062{left:650.400000px;}
.x13c_c00062{left:652.650000px;}
.xf5_c00062{left:654.150000px;}
.xfc_c00062{left:659.700000px;}
.xb1_c00062{left:661.350000px;}
.x101_c00062{left:664.650000px;}
.x51_c00062{left:666.450000px;}
.x37_c00062{left:668.250000px;}
.xd2_c00062{left:669.300000px;}
.xa8_c00062{left:670.350000px;}
.x41_c00062{left:671.850000px;}
.x7b_c00062{left:674.100000px;}
.xe1_c00062{left:675.600000px;}
.x6f_c00062{left:676.650000px;}
.x2c_c00062{left:678.150000px;}
.x8e_c00062{left:679.500000px;}
.x139_c00062{left:682.650000px;}
.x9e_c00062{left:685.200000px;}
.x84_c00062{left:687.750000px;}
.x38_c00062{left:689.550000px;}
.x97_c00062{left:690.600000px;}
.x120_c00062{left:691.800000px;}
.x42_c00062{left:693.150000px;}
.x21_c00062{left:696.450000px;}
.x12_c00062{left:698.250000px;}
.x8f_c00062{left:699.300000px;}
.xca_c00062{left:700.500000px;}
.x63_c00062{left:702.300000px;}
.x13d_c00062{left:706.350000px;}
.xb2_c00062{left:707.850000px;}
.xa9_c00062{left:708.900000px;}
.x10c_c00062{left:710.100000px;}
.x70_c00062{left:711.900000px;}
.xc6_c00062{left:713.700000px;}
.x125_c00062{left:715.050000px;}
.x9f_c00062{left:717.300000px;}
.x13_c00062{left:718.800000px;}
.x115_c00062{left:721.350000px;}
.x12e_c00062{left:722.550000px;}
.x121_c00062{left:724.200000px;}
.xd3_c00062{left:726.150000px;}
.x11b_c00062{left:727.650000px;}
.xcb_c00062{left:729.000000px;}
.x43_c00062{left:730.200000px;}
.x90_c00062{left:732.000000px;}
.x64_c00062{left:733.950000px;}
.x22_c00062{left:736.050000px;}
.x132_c00062{left:739.500000px;}
.xb3_c00062{left:742.050000px;}
.xfd_c00062{left:743.550000px;}
.xdb_c00062{left:745.800000px;}
.x98_c00062{left:749.250000px;}
.x65_c00062{left:750.450000px;}
.xc2_c00062{left:751.950000px;}
.xed_c00062{left:753.150000px;}
.xe2_c00062{left:754.500000px;}
.x23_c00062{left:756.900000px;}
.x39_c00062{left:758.700000px;}
.x71_c00062{left:761.250000px;}
.xdc_c00062{left:763.050000px;}
.xb4_c00062{left:767.550000px;}
.x109_c00062{left:769.050000px;}
.x52_c00062{left:770.100000px;}
.xee_c00062{left:771.450000px;}
.x99_c00062{left:772.650000px;}
.x7c_c00062{left:774.600000px;}
.xc3_c00062{left:776.400000px;}
.xa0_c00062{left:779.250000px;}
.x13a_c00062{left:781.050000px;}
.x66_c00062{left:783.600000px;}
.x10d_c00062{left:786.000000px;}
.x53_c00062{left:787.050000px;}
.x116_c00062{left:790.950000px;}
.xcc_c00062{left:792.000000px;}
.x44_c00062{left:795.300000px;}
.x14_c00062{left:796.950000px;}
.x133_c00062{left:798.900000px;}
.xf6_c00062{left:800.250000px;}
.x12a_c00062{left:803.550000px;}
.xd4_c00062{left:805.350000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws1_c00062{word-spacing:-9.756098pt;}
.ws2_c00062{word-spacing:-4.320988pt;}
.ws7_c00062{word-spacing:-4.186010pt;}
.ws5_c00062{word-spacing:-0.569801pt;}
.ws9_c00062{word-spacing:0.000000pt;}
.ws3_c00062{word-spacing:3.127572pt;}
.ws4_c00062{word-spacing:7.407407pt;}
.ws0_c00062{word-spacing:7.619048pt;}
.ws8_c00062{word-spacing:9.103994pt;}
.ws6_c00062{word-spacing:12.592593pt;}
._0_c00062{width:19.620596pt;}
.fs1_c00062{font-size:48.000000pt;}
.fs0_c00062{font-size:53.333333pt;}
.y0_c00062{bottom:0.000000pt;}
.y2d_c00062{bottom:128.666667pt;}
.y2c_c00062{bottom:142.666667pt;}
.y2b_c00062{bottom:156.800000pt;}
.y2a_c00062{bottom:170.533333pt;}
.y29_c00062{bottom:184.666667pt;}
.y28_c00062{bottom:198.666667pt;}
.y27_c00062{bottom:212.533333pt;}
.y26_c00062{bottom:258.666667pt;}
.y25_c00062{bottom:276.266667pt;}
.y24_c00062{bottom:293.866667pt;}
.y23_c00062{bottom:311.200000pt;}
.y22_c00062{bottom:329.066667pt;}
.y21_c00062{bottom:346.400000pt;}
.y20_c00062{bottom:364.266667pt;}
.y1f_c00062{bottom:382.133333pt;}
.y1e_c00062{bottom:399.733333pt;}
.y1d_c00062{bottom:417.333333pt;}
.y1c_c00062{bottom:434.933333pt;}
.y1b_c00062{bottom:452.533333pt;}
.y1a_c00062{bottom:470.133333pt;}
.y19_c00062{bottom:488.000000pt;}
.y18_c00062{bottom:506.000000pt;}
.y17_c00062{bottom:523.600000pt;}
.y16_c00062{bottom:541.200000pt;}
.y15_c00062{bottom:558.800000pt;}
.y14_c00062{bottom:576.400000pt;}
.y13_c00062{bottom:594.666667pt;}
.y12_c00062{bottom:612.266667pt;}
.y11_c00062{bottom:630.133333pt;}
.y10_c00062{bottom:647.733333pt;}
.yf_c00062{bottom:665.333333pt;}
.ye_c00062{bottom:682.933333pt;}
.yd_c00062{bottom:700.533333pt;}
.yc_c00062{bottom:718.133333pt;}
.yb_c00062{bottom:735.733333pt;}
.ya_c00062{bottom:753.333333pt;}
.y9_c00062{bottom:770.933333pt;}
.y8_c00062{bottom:788.800000pt;}
.y7_c00062{bottom:806.400000pt;}
.y6_c00062{bottom:824.266667pt;}
.y5_c00062{bottom:841.866667pt;}
.y4_c00062{bottom:859.866667pt;}
.y3_c00062{bottom:877.466667pt;}
.y2_c00062{bottom:895.066667pt;}
.y1_c00062{bottom:928.933333pt;}
.h3_c00062{height:48.000000pt;}
.h2_c00062{height:53.333333pt;}
.h1_c00062{height:1037.333333pt;}
.h0_c00062{height:1037.439941pt;}
.w0_c00062{width:811.840007pt;}
.w1_c00062{width:812.000000pt;}
.x0_c00062{left:0.000000pt;}
.x140_c00062{left:125.733333pt;}
.x12b_c00062{left:126.666667pt;}
.x11c_c00062{left:128.666667pt;}
.xd5_c00062{left:129.600000pt;}
.xaa_c00062{left:130.666667pt;}
.x85_c00062{left:131.733333pt;}
.x45_c00062{left:132.800000pt;}
.x15_c00062{left:134.666667pt;}
.x1_c00062{left:135.733333pt;}
.x134_c00062{left:138.000000pt;}
.x13e_c00062{left:143.333333pt;}
.xba_c00062{left:148.533333pt;}
.x67_c00062{left:152.533333pt;}
.xa1_c00062{left:156.000000pt;}
.xe6_c00062{left:157.733333pt;}
.x12f_c00062{left:159.333333pt;}
.x2d_c00062{left:161.600000pt;}
.x4_c00062{left:162.533333pt;}
.x86_c00062{left:163.466667pt;}
.xdd_c00062{left:164.400000pt;}
.x117_c00062{left:167.066667pt;}
.x72_c00062{left:168.266667pt;}
.xcd_c00062{left:169.866667pt;}
.xd6_c00062{left:171.466667pt;}
.x54_c00062{left:176.000000pt;}
.x106_c00062{left:176.933333pt;}
.x46_c00062{left:179.200000pt;}
.x16_c00062{left:180.400000pt;}
.x9a_c00062{left:181.866667pt;}
.xb5_c00062{left:184.933333pt;}
.x13f_c00062{left:185.866667pt;}
.x145_c00062{left:186.933333pt;}
.x2e_c00062{left:187.866667pt;}
.x91_c00062{left:189.200000pt;}
.xf7_c00062{left:191.333333pt;}
.x24_c00062{left:192.800000pt;}
.x5_c00062{left:194.533333pt;}
.x126_c00062{left:197.066667pt;}
.xef_c00062{left:198.800000pt;}
.x17_c00062{left:199.866667pt;}
.x55_c00062{left:201.600000pt;}
.xab_c00062{left:202.933333pt;}
.x92_c00062{left:204.933333pt;}
.x3a_c00062{left:206.400000pt;}
.xb6_c00062{left:207.333333pt;}
.x102_c00062{left:208.800000pt;}
.x25_c00062{left:210.400000pt;}
.x118_c00062{left:213.733333pt;}
.x6_c00062{left:215.066667pt;}
.x56_c00062{left:216.933333pt;}
.x13b_c00062{left:218.000000pt;}
.xf8_c00062{left:219.200000pt;}
.x7d_c00062{left:220.666667pt;}
.x3b_c00062{left:222.666667pt;}
.x2f_c00062{left:224.400000pt;}
.xd7_c00062{left:225.466667pt;}
.x87_c00062{left:228.000000pt;}
.x26_c00062{left:229.866667pt;}
.xc4_c00062{left:232.133333pt;}
.xf0_c00062{left:233.066667pt;}
.xe7_c00062{left:234.800000pt;}
.xbb_c00062{left:236.533333pt;}
.x73_c00062{left:240.000000pt;}
.x57_c00062{left:241.600000pt;}
.xa2_c00062{left:242.666667pt;}
.x130_c00062{left:245.066667pt;}
.x30_c00062{left:246.133333pt;}
.x88_c00062{left:247.200000pt;}
.x18_c00062{left:248.533333pt;}
.xe8_c00062{left:252.133333pt;}
.x119_c00062{left:255.600000pt;}
.x47_c00062{left:257.333333pt;}
.x74_c00062{left:258.266667pt;}
.xa3_c00062{left:260.933333pt;}
.xe3_c00062{left:262.133333pt;}
.x3c_c00062{left:263.600000pt;}
.x68_c00062{left:265.333333pt;}
.x103_c00062{left:268.666667pt;}
.x7e_c00062{left:270.000000pt;}
.x48_c00062{left:271.066667pt;}
.x89_c00062{left:272.133333pt;}
.x127_c00062{left:273.200000pt;}
.xd8_c00062{left:274.133333pt;}
.x19_c00062{left:276.400000pt;}
.x75_c00062{left:278.133333pt;}
.x141_c00062{left:280.933333pt;}
.x7_c00062{left:282.000000pt;}
.xe4_c00062{left:284.533333pt;}
.xce_c00062{left:286.000000pt;}
.xc5_c00062{left:287.866667pt;}
.xde_c00062{left:289.200000pt;}
.x69_c00062{left:290.266667pt;}
.x93_c00062{left:292.000000pt;}
.x8_c00062{left:292.933333pt;}
.x27_c00062{left:294.133333pt;}
.x10e_c00062{left:296.133333pt;}
.xe9_c00062{left:297.600000pt;}
.x31_c00062{left:299.600000pt;}
.x11d_c00062{left:301.466667pt;}
.x135_c00062{left:303.733333pt;}
.x76_c00062{left:306.000000pt;}
.x3d_c00062{left:308.000000pt;}
.x104_c00062{left:309.200000pt;}
.x28_c00062{left:310.133333pt;}
.xf1_c00062{left:311.200000pt;}
.x1a_c00062{left:312.533333pt;}
.xb7_c00062{left:313.600000pt;}
.xe5_c00062{left:315.600000pt;}
.xbc_c00062{left:319.066667pt;}
.x136_c00062{left:320.666667pt;}
.x58_c00062{left:322.133333pt;}
.xa4_c00062{left:323.066667pt;}
.x7f_c00062{left:324.400000pt;}
.xac_c00062{left:326.400000pt;}
.x9_c00062{left:328.133333pt;}
.x10f_c00062{left:329.466667pt;}
.x131_c00062{left:331.733333pt;}
.xdf_c00062{left:332.800000pt;}
.x49_c00062{left:334.800000pt;}
.x59_c00062{left:337.866667pt;}
.x94_c00062{left:340.000000pt;}
.x110_c00062{left:341.333333pt;}
.xea_c00062{left:343.733333pt;}
.x80_c00062{left:345.200000pt;}
.x77_c00062{left:346.933333pt;}
.x9b_c00062{left:348.133333pt;}
.x4a_c00062{left:349.866667pt;}
.x5a_c00062{left:351.600000pt;}
.x137_c00062{left:352.666667pt;}
.x2_c00062{left:353.600000pt;}
.xa_c00062{left:358.800000pt;}
.x6a_c00062{left:359.733333pt;}
.xcf_c00062{left:361.466667pt;}
.x32_c00062{left:365.866667pt;}
.x10a_c00062{left:367.200000pt;}
.x29_c00062{left:368.400000pt;}
.xbd_c00062{left:370.266667pt;}
.x4b_c00062{left:372.266667pt;}
.x5b_c00062{left:374.666667pt;}
.xd0_c00062{left:380.000000pt;}
.x9c_c00062{left:382.000000pt;}
.xd9_c00062{left:383.333333pt;}
.x5c_c00062{left:385.200000pt;}
.x2a_c00062{left:386.933333pt;}
.x128_c00062{left:390.933333pt;}
.xb_c00062{left:392.400000pt;}
.xb8_c00062{left:393.333333pt;}
.x1b_c00062{left:395.466667pt;}
.x111_c00062{left:396.666667pt;}
.xfe_c00062{left:397.600000pt;}
.x12c_c00062{left:398.533333pt;}
.xe0_c00062{left:400.266667pt;}
.xf9_c00062{left:401.600000pt;}
.xad_c00062{left:402.933333pt;}
.x122_c00062{left:405.866667pt;}
.xbe_c00062{left:408.666667pt;}
.x33_c00062{left:411.600000pt;}
.x6b_c00062{left:413.466667pt;}
.x5d_c00062{left:414.933333pt;}
.x4c_c00062{left:417.333333pt;}
.x105_c00062{left:418.266667pt;}
.xc_c00062{left:422.133333pt;}
.xd1_c00062{left:424.133333pt;}
.x1c_c00062{left:425.200000pt;}
.xf2_c00062{left:426.800000pt;}
.x78_c00062{left:428.800000pt;}
.x142_c00062{left:430.266667pt;}
.x8a_c00062{left:431.466667pt;}
.xae_c00062{left:432.666667pt;}
.x34_c00062{left:434.000000pt;}
.x11a_c00062{left:435.200000pt;}
.xbf_c00062{left:436.133333pt;}
.x3e_c00062{left:437.466667pt;}
.x112_c00062{left:438.933333pt;}
.x3_c00062{left:440.933333pt;}
.x81_c00062{left:443.733333pt;}
.x11e_c00062{left:445.066667pt;}
.x79_c00062{left:446.666667pt;}
.xda_c00062{left:450.800000pt;}
.x9d_c00062{left:452.000000pt;}
.x10b_c00062{left:453.600000pt;}
.x6c_c00062{left:454.800000pt;}
.x1d_c00062{left:456.533333pt;}
.x4d_c00062{left:457.600000pt;}
.xc7_c00062{left:459.066667pt;}
.xd_c00062{left:460.266667pt;}
.x8b_c00062{left:461.200000pt;}
.x5e_c00062{left:463.600000pt;}
.xa5_c00062{left:465.733333pt;}
.xaf_c00062{left:467.200000pt;}
.x1e_c00062{left:470.000000pt;}
.x7a_c00062{left:472.533333pt;}
.x143_c00062{left:473.733333pt;}
.x11f_c00062{left:475.200000pt;}
.x107_c00062{left:476.666667pt;}
.xff_c00062{left:478.133333pt;}
.x4e_c00062{left:483.200000pt;}
.xf3_c00062{left:484.400000pt;}
.x5f_c00062{left:487.333333pt;}
.x129_c00062{left:488.800000pt;}
.xe_c00062{left:489.733333pt;}
.x3f_c00062{left:490.933333pt;}
.xc0_c00062{left:491.866667pt;}
.x6d_c00062{left:493.600000pt;}
.xfa_c00062{left:495.733333pt;}
.x12d_c00062{left:499.600000pt;}
.x95_c00062{left:501.200000pt;}
.x4f_c00062{left:502.133333pt;}
.x113_c00062{left:503.866667pt;}
.x35_c00062{left:505.066667pt;}
.xc8_c00062{left:506.400000pt;}
.x138_c00062{left:508.266667pt;}
.x1f_c00062{left:510.666667pt;}
.xeb_c00062{left:513.333333pt;}
.xf_c00062{left:514.666667pt;}
.x8c_c00062{left:517.200000pt;}
.xb9_c00062{left:518.133333pt;}
.x60_c00062{left:521.200000pt;}
.xf4_c00062{left:523.200000pt;}
.x2b_c00062{left:525.733333pt;}
.xfb_c00062{left:528.400000pt;}
.x144_c00062{left:530.800000pt;}
.x40_c00062{left:533.466667pt;}
.xc1_c00062{left:535.333333pt;}
.xa6_c00062{left:536.400000pt;}
.x82_c00062{left:538.133333pt;}
.x123_c00062{left:539.333333pt;}
.x50_c00062{left:541.866667pt;}
.x61_c00062{left:546.800000pt;}
.x108_c00062{left:549.200000pt;}
.x36_c00062{left:550.533333pt;}
.x10_c00062{left:551.466667pt;}
.xb0_c00062{left:553.333333pt;}
.x6e_c00062{left:555.333333pt;}
.x8d_c00062{left:556.266667pt;}
.x100_c00062{left:557.200000pt;}
.x20_c00062{left:563.733333pt;}
.xec_c00062{left:565.733333pt;}
.x96_c00062{left:567.733333pt;}
.x11_c00062{left:568.800000pt;}
.x62_c00062{left:569.866667pt;}
.x114_c00062{left:571.066667pt;}
.xa7_c00062{left:573.200000pt;}
.x83_c00062{left:575.200000pt;}
.x124_c00062{left:576.400000pt;}
.xc9_c00062{left:578.133333pt;}
.x13c_c00062{left:580.133333pt;}
.xf5_c00062{left:581.466667pt;}
.xfc_c00062{left:586.400000pt;}
.xb1_c00062{left:587.866667pt;}
.x101_c00062{left:590.800000pt;}
.x51_c00062{left:592.400000pt;}
.x37_c00062{left:594.000000pt;}
.xd2_c00062{left:594.933333pt;}
.xa8_c00062{left:595.866667pt;}
.x41_c00062{left:597.200000pt;}
.x7b_c00062{left:599.200000pt;}
.xe1_c00062{left:600.533333pt;}
.x6f_c00062{left:601.466667pt;}
.x2c_c00062{left:602.800000pt;}
.x8e_c00062{left:604.000000pt;}
.x139_c00062{left:606.800000pt;}
.x9e_c00062{left:609.066667pt;}
.x84_c00062{left:611.333333pt;}
.x38_c00062{left:612.933333pt;}
.x97_c00062{left:613.866667pt;}
.x120_c00062{left:614.933333pt;}
.x42_c00062{left:616.133333pt;}
.x21_c00062{left:619.066667pt;}
.x12_c00062{left:620.666667pt;}
.x8f_c00062{left:621.600000pt;}
.xca_c00062{left:622.666667pt;}
.x63_c00062{left:624.266667pt;}
.x13d_c00062{left:627.866667pt;}
.xb2_c00062{left:629.200000pt;}
.xa9_c00062{left:630.133333pt;}
.x10c_c00062{left:631.200000pt;}
.x70_c00062{left:632.800000pt;}
.xc6_c00062{left:634.400000pt;}
.x125_c00062{left:635.600000pt;}
.x9f_c00062{left:637.600000pt;}
.x13_c00062{left:638.933333pt;}
.x115_c00062{left:641.200000pt;}
.x12e_c00062{left:642.266667pt;}
.x121_c00062{left:643.733333pt;}
.xd3_c00062{left:645.466667pt;}
.x11b_c00062{left:646.800000pt;}
.xcb_c00062{left:648.000000pt;}
.x43_c00062{left:649.066667pt;}
.x90_c00062{left:650.666667pt;}
.x64_c00062{left:652.400000pt;}
.x22_c00062{left:654.266667pt;}
.x132_c00062{left:657.333333pt;}
.xb3_c00062{left:659.600000pt;}
.xfd_c00062{left:660.933333pt;}
.xdb_c00062{left:662.933333pt;}
.x98_c00062{left:666.000000pt;}
.x65_c00062{left:667.066667pt;}
.xc2_c00062{left:668.400000pt;}
.xed_c00062{left:669.466667pt;}
.xe2_c00062{left:670.666667pt;}
.x23_c00062{left:672.800000pt;}
.x39_c00062{left:674.400000pt;}
.x71_c00062{left:676.666667pt;}
.xdc_c00062{left:678.266667pt;}
.xb4_c00062{left:682.266667pt;}
.x109_c00062{left:683.600000pt;}
.x52_c00062{left:684.533333pt;}
.xee_c00062{left:685.733333pt;}
.x99_c00062{left:686.800000pt;}
.x7c_c00062{left:688.533333pt;}
.xc3_c00062{left:690.133333pt;}
.xa0_c00062{left:692.666667pt;}
.x13a_c00062{left:694.266667pt;}
.x66_c00062{left:696.533333pt;}
.x10d_c00062{left:698.666667pt;}
.x53_c00062{left:699.600000pt;}
.x116_c00062{left:703.066667pt;}
.xcc_c00062{left:704.000000pt;}
.x44_c00062{left:706.933333pt;}
.x14_c00062{left:708.400000pt;}
.x133_c00062{left:710.133333pt;}
.xf6_c00062{left:711.333333pt;}
.x12a_c00062{left:714.266667pt;}
.xd4_c00062{left:715.866667pt;}
}





/* 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_c00063 {
    display:none;
  }
  .loading-indicator_c00063.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00063 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_c00063 { 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_c00063" -> "#page-container .classname_c00063")
 */
.pf_c00063 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00063 { /* 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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00063 { /* 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_c00063 { /* 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_c00063 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00063 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00063 {overflow:visible;}
  }
}
.c_c00063 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00063 { /* 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_c00063:after { /* webkit #35443 */
  content: '';
}
.t_c00063:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00063 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 */
}
.__c00063 { /* 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_c00063 { /* info for Javascript */
  display:none;
}
.l_c00063 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00063 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00063 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00063: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_c00063 {
    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_c00063.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00063.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_c00063 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00063{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.000000;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;}
.m2f_c00063{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc_c00063{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00063{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mab_c00063{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m23_c00063{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00063{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mac_c00063{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m38_c00063{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c00063{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m27_c00063{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m46_c00063{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m67_c00063{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m91_c00063{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00063{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00063{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00063{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00063{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00063{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m30_c00063{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m50_c00063{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m36_c00063{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m39_c00063{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m84_c00063{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m96_c00063{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.maa_c00063{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00063{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00063{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00063{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m62_c00063{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m75_c00063{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00063{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00063{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10_c00063{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00063{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m70_c00063{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m16_c00063{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00063{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m83_c00063{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m57_c00063{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m80_c00063{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m54_c00063{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00063{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00063{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00063{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb_c00063{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m28_c00063{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m53_c00063{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00063{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m25_c00063{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00063{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00063{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m81_c00063{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m32_c00063{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m17_c00063{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00063{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00063{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00063{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00063{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00063{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00063{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m52_c00063{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m22_c00063{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00063{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m47_c00063{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m92_c00063{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m65_c00063{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m98_c00063{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m59_c00063{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m11_c00063{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m94_c00063{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m56_c00063{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md_c00063{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00063{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00063{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m61_c00063{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00063{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m72_c00063{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00063{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00063{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00063{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m82_c00063{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00063{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m55_c00063{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m64_c00063{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m21_c00063{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00063{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m58_c00063{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00063{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4_c00063{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m73_c00063{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5_c00063{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m71_c00063{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma_c00063{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m93_c00063{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00063{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6_c00063{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me_c00063{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00063{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7_c00063{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m37_c00063{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00063{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m24_c00063{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m85_c00063{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00063{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf_c00063{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m49_c00063{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m77_c00063{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m34_c00063{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00063{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00063{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00063{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m33_c00063{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00063{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m42_c00063{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00063{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9_c00063{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00063{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m35_c00063{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00063{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00063{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m31_c00063{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00063{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m48_c00063{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m87_c00063{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m66_c00063{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m20_c00063{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00063{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00063{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m40_c00063{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m43_c00063{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00063{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00063{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);}
.m1d_c00063{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m89_c00063{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8_c00063{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00063{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00063{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00063{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00063{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00063{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m74_c00063{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m86_c00063{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00063{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2_c00063{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00063{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00063{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00063{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m63_c00063{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m51_c00063{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m12_c00063{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00063{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00063{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00063{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00063{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m41_c00063{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m26_c00063{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00063{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00063{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m13_c00063{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m90_c00063{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m95_c00063{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00063{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m88_c00063{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m44_c00063{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00063{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00063{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m29_c00063{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00063{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00063{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00063{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{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__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00063{word-spacing:-7.261905px;}
.wsd_c00063{word-spacing:-4.861111px;}
.ws2_c00063{word-spacing:-4.722222px;}
.ws1_c00063{word-spacing:-4.090909px;}
.wsa_c00063{word-spacing:-3.823529px;}
.ws3_c00063{word-spacing:-1.805556px;}
.ws8_c00063{word-spacing:-0.606061px;}
.wse_c00063{word-spacing:0.000000px;}
.ws9_c00063{word-spacing:3.846154px;}
.ws4_c00063{word-spacing:5.945946px;}
.ws5_c00063{word-spacing:6.944444px;}
.ws0_c00063{word-spacing:8.170732px;}
.wsc_c00063{word-spacing:10.000000px;}
.ws6_c00063{word-spacing:14.861111px;}
.ws7_c00063{word-spacing:32.954545px;}
.fc0_c00063{color:transparent;}
.fs0_c00063{font-size:54.000000px;}
.fs1_c00063{font-size:60.000000px;}
.y0_c00063{bottom:0.000000px;}
.y2c_c00063{bottom:149.100000px;}
.y2b_c00063{bottom:188.700000px;}
.y2a_c00063{bottom:208.800000px;}
.y29_c00063{bottom:228.900000px;}
.y28_c00063{bottom:248.400000px;}
.y27_c00063{bottom:268.500000px;}
.y26_c00063{bottom:288.600000px;}
.y25_c00063{bottom:308.100000px;}
.y24_c00063{bottom:327.900000px;}
.y23_c00063{bottom:347.700000px;}
.y22_c00063{bottom:367.500000px;}
.y21_c00063{bottom:387.600000px;}
.y20_c00063{bottom:407.400000px;}
.y1f_c00063{bottom:427.500000px;}
.y1e_c00063{bottom:447.300000px;}
.y1d_c00063{bottom:467.100000px;}
.y1c_c00063{bottom:486.900000px;}
.y1b_c00063{bottom:507.000000px;}
.y1a_c00063{bottom:526.800000px;}
.y19_c00063{bottom:546.900000px;}
.y18_c00063{bottom:566.700000px;}
.y17_c00063{bottom:586.500000px;}
.y16_c00063{bottom:606.300000px;}
.y15_c00063{bottom:626.400000px;}
.y14_c00063{bottom:646.500000px;}
.y13_c00063{bottom:666.450000px;}
.y12_c00063{bottom:686.250000px;}
.y11_c00063{bottom:706.050000px;}
.y10_c00063{bottom:725.850000px;}
.yf_c00063{bottom:745.950000px;}
.ye_c00063{bottom:766.050000px;}
.yd_c00063{bottom:786.450000px;}
.yc_c00063{bottom:805.950000px;}
.yb_c00063{bottom:826.050000px;}
.ya_c00063{bottom:846.150000px;}
.y9_c00063{bottom:865.950000px;}
.y8_c00063{bottom:885.750000px;}
.y7_c00063{bottom:905.850000px;}
.y6_c00063{bottom:925.650000px;}
.y5_c00063{bottom:945.450000px;}
.y4_c00063{bottom:965.250000px;}
.y3_c00063{bottom:985.350000px;}
.y2_c00063{bottom:1010.550000px;}
.y1_c00063{bottom:1044.000000px;}
.h2_c00063{height:54.000000px;}
.h3_c00063{height:60.000000px;}
.h1_c00063{height:1167.000000px;}
.h0_c00063{height:1167.119934px;}
.w0_c00063{width:913.320007px;}
.w1_c00063{width:913.500000px;}
.x0_c00063{left:0.000000px;}
.x133_c00063{left:102.900000px;}
.xd0_c00063{left:104.250000px;}
.x5_c00063{left:105.450000px;}
.xf5_c00063{left:121.500000px;}
.x1d_c00063{left:123.150000px;}
.xaf_c00063{left:124.650000px;}
.x68_c00063{left:127.050000px;}
.xe8_c00063{left:129.450000px;}
.x31_c00063{left:132.150000px;}
.x12_c00063{left:133.800000px;}
.x91_c00063{left:136.050000px;}
.x112_c00063{left:137.550000px;}
.x83_c00063{left:139.350000px;}
.xc7_c00063{left:142.350000px;}
.xe1_c00063{left:144.750000px;}
.xa4_c00063{left:146.100000px;}
.xd1_c00063{left:148.200000px;}
.xd9_c00063{left:149.550000px;}
.x9c_c00063{left:151.950000px;}
.x73_c00063{left:153.000000px;}
.xf6_c00063{left:154.200000px;}
.x1e_c00063{left:155.550000px;}
.x69_c00063{left:160.500000px;}
.xc8_c00063{left:162.450000px;}
.x12a_c00063{left:164.100000px;}
.xe2_c00063{left:165.600000px;}
.x50_c00063{left:166.650000px;}
.x92_c00063{left:169.200000px;}
.x6_c00063{left:170.250000px;}
.x7d_c00063{left:171.900000px;}
.x1f_c00063{left:173.550000px;}
.x5d_c00063{left:175.200000px;}
.x8e_c00063{left:177.450000px;}
.xda_c00063{left:178.650000px;}
.xbe_c00063{left:180.450000px;}
.xfc_c00063{left:181.650000px;}
.x130_c00063{left:183.000000px;}
.xd2_c00063{left:185.250000px;}
.xc9_c00063{left:187.950000px;}
.x9d_c00063{left:189.450000px;}
.x102_c00063{left:190.800000px;}
.x51_c00063{left:191.850000px;}
.xa5_c00063{left:194.400000px;}
.xc1_c00063{left:195.600000px;}
.x3f_c00063{left:197.550000px;}
.x84_c00063{left:198.750000px;}
.x20_c00063{left:201.600000px;}
.x7_c00063{left:203.400000px;}
.x120_c00063{left:205.050000px;}
.x52_c00063{left:206.550000px;}
.xdb_c00063{left:208.500000px;}
.x5e_c00063{left:210.900000px;}
.xb5_c00063{left:214.800000px;}
.xe9_c00063{left:216.600000px;}
.x11b_c00063{left:218.400000px;}
.x74_c00063{left:220.050000px;}
.xbf_c00063{left:221.100000px;}
.x40_c00063{left:223.050000px;}
.x13_c00063{left:225.600000px;}
.x117_c00063{left:227.250000px;}
.x6a_c00063{left:228.900000px;}
.x32_c00063{left:230.100000px;}
.x8f_c00063{left:231.150000px;}
.x7e_c00063{left:232.800000px;}
.xdc_c00063{left:234.000000px;}
.x113_c00063{left:235.800000px;}
.xc0_c00063{left:238.050000px;}
.x21_c00063{left:241.200000px;}
.x75_c00063{left:242.400000px;}
.x11c_c00063{left:245.100000px;}
.xb0_c00063{left:246.450000px;}
.x10f_c00063{left:247.800000px;}
.x41_c00063{left:249.000000px;}
.x53_c00063{left:252.600000px;}
.x12d_c00063{left:254.100000px;}
.xe3_c00063{left:255.150000px;}
.x123_c00063{left:258.600000px;}
.x42_c00063{left:260.550000px;}
.x8_c00063{left:263.550000px;}
.xc2_c00063{left:264.600000px;}
.x5f_c00063{left:266.400000px;}
.x93_c00063{left:267.450000px;}
.x33_c00063{left:269.400000px;}
.x22_c00063{left:272.100000px;}
.xb1_c00063{left:274.950000px;}
.x90_c00063{left:277.200000px;}
.xa6_c00063{left:279.450000px;}
.xca_c00063{left:280.800000px;}
.x54_c00063{left:282.450000px;}
.x76_c00063{left:285.300000px;}
.x103_c00063{left:286.950000px;}
.x134_c00063{left:289.350000px;}
.xc3_c00063{left:290.550000px;}
.x94_c00063{left:291.900000px;}
.xdd_c00063{left:294.150000px;}
.xb6_c00063{left:295.350000px;}
.x10a_c00063{left:297.900000px;}
.x6b_c00063{left:299.400000px;}
.x85_c00063{left:301.050000px;}
.x124_c00063{left:303.600000px;}
.x9e_c00063{left:306.000000px;}
.x34_c00063{left:307.500000px;}
.x14_c00063{left:308.700000px;}
.x55_c00063{left:309.750000px;}
.xa7_c00063{left:311.100000px;}
.xb7_c00063{left:312.300000px;}
.x60_c00063{left:313.950000px;}
.x12b_c00063{left:317.100000px;}
.xfd_c00063{left:318.600000px;}
.x23_c00063{left:321.450000px;}
.x125_c00063{left:324.150000px;}
.x9_c00063{left:329.100000px;}
.x43_c00063{left:331.050000px;}
.x106_c00063{left:332.850000px;}
.xd3_c00063{left:334.050000px;}
.x95_c00063{left:335.850000px;}
.xde_c00063{left:339.150000px;}
.x9f_c00063{left:340.500000px;}
.xb2_c00063{left:343.050000px;}
.x24_c00063{left:345.600000px;}
.x86_c00063{left:346.800000px;}
.x77_c00063{left:349.350000px;}
.xb8_c00063{left:354.450000px;}
.x35_c00063{left:355.800000px;}
.x1_c00063{left:357.900000px;}
.xfe_c00063{left:360.000000px;}
.xa0_c00063{left:361.800000px;}
.x118_c00063{left:363.000000px;}
.x87_c00063{left:364.050000px;}
.x10b_c00063{left:365.250000px;}
.x44_c00063{left:367.050000px;}
.x13b_c00063{left:368.250000px;}
.xa8_c00063{left:370.200000px;}
.xb9_c00063{left:373.500000px;}
.x96_c00063{left:375.150000px;}
.xf1_c00063{left:376.200000px;}
.xa_c00063{left:378.000000px;}
.x88_c00063{left:380.250000px;}
.x13c_c00063{left:381.600000px;}
.x25_c00063{left:382.650000px;}
.xea_c00063{left:384.600000px;}
.x45_c00063{left:387.150000px;}
.xff_c00063{left:389.100000px;}
.x121_c00063{left:390.750000px;}
.x135_c00063{left:394.200000px;}
.x12c_c00063{left:395.250000px;}
.x15_c00063{left:400.050000px;}
.xf2_c00063{left:401.400000px;}
.x26_c00063{left:402.750000px;}
.x126_c00063{left:403.800000px;}
.xeb_c00063{left:405.150000px;}
.x89_c00063{left:408.000000px;}
.x56_c00063{left:409.050000px;}
.x61_c00063{left:412.200000px;}
.x46_c00063{left:414.900000px;}
.x104_c00063{left:416.250000px;}
.xd4_c00063{left:420.450000px;}
.x16_c00063{left:422.400000px;}
.x6c_c00063{left:423.600000px;}
.x78_c00063{left:425.250000px;}
.x27_c00063{left:428.700000px;}
.x36_c00063{left:431.100000px;}
.x12e_c00063{left:434.400000px;}
.x2_c00063{left:436.350000px;}
.x11d_c00063{left:438.450000px;}
.xd5_c00063{left:440.250000px;}
.x79_c00063{left:442.500000px;}
.xa9_c00063{left:445.800000px;}
.x62_c00063{left:447.150000px;}
.xcb_c00063{left:448.200000px;}
.xb3_c00063{left:450.000000px;}
.x7f_c00063{left:451.200000px;}
.x17_c00063{left:453.750000px;}
.xec_c00063{left:454.800000px;}
.xa1_c00063{left:458.250000px;}
.x3_c00063{left:459.750000px;}
.xe4_c00063{left:463.200000px;}
.x37_c00063{left:464.250000px;}
.xdf_c00063{left:466.950000px;}
.xaa_c00063{left:468.450000px;}
.x6d_c00063{left:471.450000px;}
.x47_c00063{left:474.000000px;}
.x28_c00063{left:476.550000px;}
.xf7_c00063{left:479.250000px;}
.x7a_c00063{left:481.050000px;}
.x127_c00063{left:482.400000px;}
.x119_c00063{left:483.600000px;}
.x8a_c00063{left:486.450000px;}
.x18_c00063{left:488.700000px;}
.x97_c00063{left:491.100000px;}
.xb_c00063{left:492.450000px;}
.xa2_c00063{left:494.550000px;}
.x29_c00063{left:496.350000px;}
.x57_c00063{left:498.450000px;}
.xcc_c00063{left:500.400000px;}
.x114_c00063{left:502.350000px;}
.x48_c00063{left:504.300000px;}
.xba_c00063{left:506.700000px;}
.x7b_c00063{left:508.050000px;}
.x12f_c00063{left:511.500000px;}
.x10c_c00063{left:512.550000px;}
.x105_c00063{left:513.750000px;}
.x131_c00063{left:514.800000px;}
.x8b_c00063{left:519.600000px;}
.x139_c00063{left:520.950000px;}
.xd6_c00063{left:522.300000px;}
.xed_c00063{left:523.950000px;}
.x2a_c00063{left:525.900000px;}
.x107_c00063{left:528.750000px;}
.x49_c00063{left:529.800000px;}
.x58_c00063{left:531.150000px;}
.xc4_c00063{left:533.250000px;}
.x80_c00063{left:535.800000px;}
.x19_c00063{left:537.000000px;}
.xbb_c00063{left:538.050000px;}
.x100_c00063{left:539.850000px;}
.xf3_c00063{left:543.300000px;}
.x98_c00063{left:545.100000px;}
.xab_c00063{left:547.650000px;}
.x38_c00063{left:548.850000px;}
.xe5_c00063{left:551.400000px;}
.xcd_c00063{left:552.900000px;}
.x4a_c00063{left:554.700000px;}
.x1a_c00063{left:558.600000px;}
.x122_c00063{left:564.150000px;}
.xbc_c00063{left:565.800000px;}
.xc_c00063{left:568.350000px;}
.xac_c00063{left:569.550000px;}
.x136_c00063{left:572.400000px;}
.x63_c00063{left:573.450000px;}
.x110_c00063{left:577.050000px;}
.x8c_c00063{left:579.000000px;}
.x2b_c00063{left:580.200000px;}
.x10d_c00063{left:581.250000px;}
.x59_c00063{left:583.050000px;}
.xee_c00063{left:584.400000px;}
.x11a_c00063{left:586.650000px;}
.xd_c00063{left:588.450000px;}
.xb4_c00063{left:589.800000px;}
.x81_c00063{left:590.850000px;}
.xf8_c00063{left:592.650000px;}
.x111_c00063{left:594.300000px;}
.x4b_c00063{left:596.850000px;}
.x11e_c00063{left:597.900000px;}
.x64_c00063{left:599.400000px;}
.x99_c00063{left:602.700000px;}
.x39_c00063{left:605.700000px;}
.x6e_c00063{left:607.200000px;}
.xd7_c00063{left:608.550000px;}
.xe_c00063{left:609.750000px;}
.x132_c00063{left:612.000000px;}
.x115_c00063{left:613.350000px;}
.xe6_c00063{left:615.900000px;}
.x2c_c00063{left:617.700000px;}
.x4c_c00063{left:623.550000px;}
.xf_c00063{left:625.200000px;}
.x6f_c00063{left:627.300000px;}
.x3a_c00063{left:629.100000px;}
.x5a_c00063{left:632.400000px;}
.x116_c00063{left:633.900000px;}
.xef_c00063{left:638.400000px;}
.x10e_c00063{left:642.450000px;}
.x1b_c00063{left:643.650000px;}
.xf9_c00063{left:645.600000px;}
.xfa_c00063{left:649.500000px;}
.x4d_c00063{left:651.600000px;}
.x128_c00063{left:652.650000px;}
.x3b_c00063{left:655.050000px;}
.x137_c00063{left:656.700000px;}
.x70_c00063{left:658.650000px;}
.x5b_c00063{left:660.450000px;}
.x2d_c00063{left:662.700000px;}
.xbd_c00063{left:665.550000px;}
.x108_c00063{left:669.000000px;}
.x71_c00063{left:670.200000px;}
.xa3_c00063{left:672.000000px;}
.x65_c00063{left:674.550000px;}
.x101_c00063{left:675.750000px;}
.xe7_c00063{left:678.600000px;}
.x2e_c00063{left:682.200000px;}
.x8d_c00063{left:683.700000px;}
.xad_c00063{left:684.750000px;}
.x10_c00063{left:688.500000px;}
.x7c_c00063{left:690.750000px;}
.x138_c00063{left:691.950000px;}
.x3c_c00063{left:696.450000px;}
.xc5_c00063{left:697.500000px;}
.x72_c00063{left:699.000000px;}
.xf0_c00063{left:700.350000px;}
.x5c_c00063{left:703.200000px;}
.x4e_c00063{left:706.650000px;}
.x1c_c00063{left:709.200000px;}
.x11f_c00063{left:710.550000px;}
.x2f_c00063{left:712.050000px;}
.xae_c00063{left:713.250000px;}
.x9a_c00063{left:715.800000px;}
.x3d_c00063{left:718.050000px;}
.x66_c00063{left:721.350000px;}
.x129_c00063{left:723.900000px;}
.x13a_c00063{left:724.950000px;}
.x4f_c00063{left:726.150000px;}
.xf4_c00063{left:728.400000px;}
.xce_c00063{left:732.150000px;}
.xc6_c00063{left:735.300000px;}
.x30_c00063{left:736.950000px;}
.x9b_c00063{left:738.150000px;}
.x109_c00063{left:740.700000px;}
.xfb_c00063{left:742.050000px;}
.x67_c00063{left:743.700000px;}
.xd8_c00063{left:745.350000px;}
.x82_c00063{left:747.150000px;}
.x3e_c00063{left:748.350000px;}
.xcf_c00063{left:750.450000px;}
.x4_c00063{left:754.650000px;}
.xe0_c00063{left:757.500000px;}
.x11_c00063{left:759.450000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.wsb_c00063{word-spacing:-6.455026pt;}
.wsd_c00063{word-spacing:-4.320988pt;}
.ws2_c00063{word-spacing:-4.197531pt;}
.ws1_c00063{word-spacing:-3.636364pt;}
.wsa_c00063{word-spacing:-3.398693pt;}
.ws3_c00063{word-spacing:-1.604938pt;}
.ws8_c00063{word-spacing:-0.538721pt;}
.wse_c00063{word-spacing:0.000000pt;}
.ws9_c00063{word-spacing:3.418803pt;}
.ws4_c00063{word-spacing:5.285285pt;}
.ws5_c00063{word-spacing:6.172840pt;}
.ws0_c00063{word-spacing:7.262873pt;}
.wsc_c00063{word-spacing:8.888889pt;}
.ws6_c00063{word-spacing:13.209877pt;}
.ws7_c00063{word-spacing:29.292929pt;}
.fs0_c00063{font-size:48.000000pt;}
.fs1_c00063{font-size:53.333333pt;}
.y0_c00063{bottom:0.000000pt;}
.y2c_c00063{bottom:132.533333pt;}
.y2b_c00063{bottom:167.733333pt;}
.y2a_c00063{bottom:185.600000pt;}
.y29_c00063{bottom:203.466667pt;}
.y28_c00063{bottom:220.800000pt;}
.y27_c00063{bottom:238.666667pt;}
.y26_c00063{bottom:256.533333pt;}
.y25_c00063{bottom:273.866667pt;}
.y24_c00063{bottom:291.466667pt;}
.y23_c00063{bottom:309.066667pt;}
.y22_c00063{bottom:326.666667pt;}
.y21_c00063{bottom:344.533333pt;}
.y20_c00063{bottom:362.133333pt;}
.y1f_c00063{bottom:380.000000pt;}
.y1e_c00063{bottom:397.600000pt;}
.y1d_c00063{bottom:415.200000pt;}
.y1c_c00063{bottom:432.800000pt;}
.y1b_c00063{bottom:450.666667pt;}
.y1a_c00063{bottom:468.266667pt;}
.y19_c00063{bottom:486.133333pt;}
.y18_c00063{bottom:503.733333pt;}
.y17_c00063{bottom:521.333333pt;}
.y16_c00063{bottom:538.933333pt;}
.y15_c00063{bottom:556.800000pt;}
.y14_c00063{bottom:574.666667pt;}
.y13_c00063{bottom:592.400000pt;}
.y12_c00063{bottom:610.000000pt;}
.y11_c00063{bottom:627.600000pt;}
.y10_c00063{bottom:645.200000pt;}
.yf_c00063{bottom:663.066667pt;}
.ye_c00063{bottom:680.933333pt;}
.yd_c00063{bottom:699.066667pt;}
.yc_c00063{bottom:716.400000pt;}
.yb_c00063{bottom:734.266667pt;}
.ya_c00063{bottom:752.133333pt;}
.y9_c00063{bottom:769.733333pt;}
.y8_c00063{bottom:787.333333pt;}
.y7_c00063{bottom:805.200000pt;}
.y6_c00063{bottom:822.800000pt;}
.y5_c00063{bottom:840.400000pt;}
.y4_c00063{bottom:858.000000pt;}
.y3_c00063{bottom:875.866667pt;}
.y2_c00063{bottom:898.266667pt;}
.y1_c00063{bottom:928.000000pt;}
.h2_c00063{height:48.000000pt;}
.h3_c00063{height:53.333333pt;}
.h1_c00063{height:1037.333333pt;}
.h0_c00063{height:1037.439941pt;}
.w0_c00063{width:811.840007pt;}
.w1_c00063{width:812.000000pt;}
.x0_c00063{left:0.000000pt;}
.x133_c00063{left:91.466667pt;}
.xd0_c00063{left:92.666667pt;}
.x5_c00063{left:93.733333pt;}
.xf5_c00063{left:108.000000pt;}
.x1d_c00063{left:109.466667pt;}
.xaf_c00063{left:110.800000pt;}
.x68_c00063{left:112.933333pt;}
.xe8_c00063{left:115.066667pt;}
.x31_c00063{left:117.466667pt;}
.x12_c00063{left:118.933333pt;}
.x91_c00063{left:120.933333pt;}
.x112_c00063{left:122.266667pt;}
.x83_c00063{left:123.866667pt;}
.xc7_c00063{left:126.533333pt;}
.xe1_c00063{left:128.666667pt;}
.xa4_c00063{left:129.866667pt;}
.xd1_c00063{left:131.733333pt;}
.xd9_c00063{left:132.933333pt;}
.x9c_c00063{left:135.066667pt;}
.x73_c00063{left:136.000000pt;}
.xf6_c00063{left:137.066667pt;}
.x1e_c00063{left:138.266667pt;}
.x69_c00063{left:142.666667pt;}
.xc8_c00063{left:144.400000pt;}
.x12a_c00063{left:145.866667pt;}
.xe2_c00063{left:147.200000pt;}
.x50_c00063{left:148.133333pt;}
.x92_c00063{left:150.400000pt;}
.x6_c00063{left:151.333333pt;}
.x7d_c00063{left:152.800000pt;}
.x1f_c00063{left:154.266667pt;}
.x5d_c00063{left:155.733333pt;}
.x8e_c00063{left:157.733333pt;}
.xda_c00063{left:158.800000pt;}
.xbe_c00063{left:160.400000pt;}
.xfc_c00063{left:161.466667pt;}
.x130_c00063{left:162.666667pt;}
.xd2_c00063{left:164.666667pt;}
.xc9_c00063{left:167.066667pt;}
.x9d_c00063{left:168.400000pt;}
.x102_c00063{left:169.600000pt;}
.x51_c00063{left:170.533333pt;}
.xa5_c00063{left:172.800000pt;}
.xc1_c00063{left:173.866667pt;}
.x3f_c00063{left:175.600000pt;}
.x84_c00063{left:176.666667pt;}
.x20_c00063{left:179.200000pt;}
.x7_c00063{left:180.800000pt;}
.x120_c00063{left:182.266667pt;}
.x52_c00063{left:183.600000pt;}
.xdb_c00063{left:185.333333pt;}
.x5e_c00063{left:187.466667pt;}
.xb5_c00063{left:190.933333pt;}
.xe9_c00063{left:192.533333pt;}
.x11b_c00063{left:194.133333pt;}
.x74_c00063{left:195.600000pt;}
.xbf_c00063{left:196.533333pt;}
.x40_c00063{left:198.266667pt;}
.x13_c00063{left:200.533333pt;}
.x117_c00063{left:202.000000pt;}
.x6a_c00063{left:203.466667pt;}
.x32_c00063{left:204.533333pt;}
.x8f_c00063{left:205.466667pt;}
.x7e_c00063{left:206.933333pt;}
.xdc_c00063{left:208.000000pt;}
.x113_c00063{left:209.600000pt;}
.xc0_c00063{left:211.600000pt;}
.x21_c00063{left:214.400000pt;}
.x75_c00063{left:215.466667pt;}
.x11c_c00063{left:217.866667pt;}
.xb0_c00063{left:219.066667pt;}
.x10f_c00063{left:220.266667pt;}
.x41_c00063{left:221.333333pt;}
.x53_c00063{left:224.533333pt;}
.x12d_c00063{left:225.866667pt;}
.xe3_c00063{left:226.800000pt;}
.x123_c00063{left:229.866667pt;}
.x42_c00063{left:231.600000pt;}
.x8_c00063{left:234.266667pt;}
.xc2_c00063{left:235.200000pt;}
.x5f_c00063{left:236.800000pt;}
.x93_c00063{left:237.733333pt;}
.x33_c00063{left:239.466667pt;}
.x22_c00063{left:241.866667pt;}
.xb1_c00063{left:244.400000pt;}
.x90_c00063{left:246.400000pt;}
.xa6_c00063{left:248.400000pt;}
.xca_c00063{left:249.600000pt;}
.x54_c00063{left:251.066667pt;}
.x76_c00063{left:253.600000pt;}
.x103_c00063{left:255.066667pt;}
.x134_c00063{left:257.200000pt;}
.xc3_c00063{left:258.266667pt;}
.x94_c00063{left:259.466667pt;}
.xdd_c00063{left:261.466667pt;}
.xb6_c00063{left:262.533333pt;}
.x10a_c00063{left:264.800000pt;}
.x6b_c00063{left:266.133333pt;}
.x85_c00063{left:267.600000pt;}
.x124_c00063{left:269.866667pt;}
.x9e_c00063{left:272.000000pt;}
.x34_c00063{left:273.333333pt;}
.x14_c00063{left:274.400000pt;}
.x55_c00063{left:275.333333pt;}
.xa7_c00063{left:276.533333pt;}
.xb7_c00063{left:277.600000pt;}
.x60_c00063{left:279.066667pt;}
.x12b_c00063{left:281.866667pt;}
.xfd_c00063{left:283.200000pt;}
.x23_c00063{left:285.733333pt;}
.x125_c00063{left:288.133333pt;}
.x9_c00063{left:292.533333pt;}
.x43_c00063{left:294.266667pt;}
.x106_c00063{left:295.866667pt;}
.xd3_c00063{left:296.933333pt;}
.x95_c00063{left:298.533333pt;}
.xde_c00063{left:301.466667pt;}
.x9f_c00063{left:302.666667pt;}
.xb2_c00063{left:304.933333pt;}
.x24_c00063{left:307.200000pt;}
.x86_c00063{left:308.266667pt;}
.x77_c00063{left:310.533333pt;}
.xb8_c00063{left:315.066667pt;}
.x35_c00063{left:316.266667pt;}
.x1_c00063{left:318.133333pt;}
.xfe_c00063{left:320.000000pt;}
.xa0_c00063{left:321.600000pt;}
.x118_c00063{left:322.666667pt;}
.x87_c00063{left:323.600000pt;}
.x10b_c00063{left:324.666667pt;}
.x44_c00063{left:326.266667pt;}
.x13b_c00063{left:327.333333pt;}
.xa8_c00063{left:329.066667pt;}
.xb9_c00063{left:332.000000pt;}
.x96_c00063{left:333.466667pt;}
.xf1_c00063{left:334.400000pt;}
.xa_c00063{left:336.000000pt;}
.x88_c00063{left:338.000000pt;}
.x13c_c00063{left:339.200000pt;}
.x25_c00063{left:340.133333pt;}
.xea_c00063{left:341.866667pt;}
.x45_c00063{left:344.133333pt;}
.xff_c00063{left:345.866667pt;}
.x121_c00063{left:347.333333pt;}
.x135_c00063{left:350.400000pt;}
.x12c_c00063{left:351.333333pt;}
.x15_c00063{left:355.600000pt;}
.xf2_c00063{left:356.800000pt;}
.x26_c00063{left:358.000000pt;}
.x126_c00063{left:358.933333pt;}
.xeb_c00063{left:360.133333pt;}
.x89_c00063{left:362.666667pt;}
.x56_c00063{left:363.600000pt;}
.x61_c00063{left:366.400000pt;}
.x46_c00063{left:368.800000pt;}
.x104_c00063{left:370.000000pt;}
.xd4_c00063{left:373.733333pt;}
.x16_c00063{left:375.466667pt;}
.x6c_c00063{left:376.533333pt;}
.x78_c00063{left:378.000000pt;}
.x27_c00063{left:381.066667pt;}
.x36_c00063{left:383.200000pt;}
.x12e_c00063{left:386.133333pt;}
.x2_c00063{left:387.866667pt;}
.x11d_c00063{left:389.733333pt;}
.xd5_c00063{left:391.333333pt;}
.x79_c00063{left:393.333333pt;}
.xa9_c00063{left:396.266667pt;}
.x62_c00063{left:397.466667pt;}
.xcb_c00063{left:398.400000pt;}
.xb3_c00063{left:400.000000pt;}
.x7f_c00063{left:401.066667pt;}
.x17_c00063{left:403.333333pt;}
.xec_c00063{left:404.266667pt;}
.xa1_c00063{left:407.333333pt;}
.x3_c00063{left:408.666667pt;}
.xe4_c00063{left:411.733333pt;}
.x37_c00063{left:412.666667pt;}
.xdf_c00063{left:415.066667pt;}
.xaa_c00063{left:416.400000pt;}
.x6d_c00063{left:419.066667pt;}
.x47_c00063{left:421.333333pt;}
.x28_c00063{left:423.600000pt;}
.xf7_c00063{left:426.000000pt;}
.x7a_c00063{left:427.600000pt;}
.x127_c00063{left:428.800000pt;}
.x119_c00063{left:429.866667pt;}
.x8a_c00063{left:432.400000pt;}
.x18_c00063{left:434.400000pt;}
.x97_c00063{left:436.533333pt;}
.xb_c00063{left:437.733333pt;}
.xa2_c00063{left:439.600000pt;}
.x29_c00063{left:441.200000pt;}
.x57_c00063{left:443.066667pt;}
.xcc_c00063{left:444.800000pt;}
.x114_c00063{left:446.533333pt;}
.x48_c00063{left:448.266667pt;}
.xba_c00063{left:450.400000pt;}
.x7b_c00063{left:451.600000pt;}
.x12f_c00063{left:454.666667pt;}
.x10c_c00063{left:455.600000pt;}
.x105_c00063{left:456.666667pt;}
.x131_c00063{left:457.600000pt;}
.x8b_c00063{left:461.866667pt;}
.x139_c00063{left:463.066667pt;}
.xd6_c00063{left:464.266667pt;}
.xed_c00063{left:465.733333pt;}
.x2a_c00063{left:467.466667pt;}
.x107_c00063{left:470.000000pt;}
.x49_c00063{left:470.933333pt;}
.x58_c00063{left:472.133333pt;}
.xc4_c00063{left:474.000000pt;}
.x80_c00063{left:476.266667pt;}
.x19_c00063{left:477.333333pt;}
.xbb_c00063{left:478.266667pt;}
.x100_c00063{left:479.866667pt;}
.xf3_c00063{left:482.933333pt;}
.x98_c00063{left:484.533333pt;}
.xab_c00063{left:486.800000pt;}
.x38_c00063{left:487.866667pt;}
.xe5_c00063{left:490.133333pt;}
.xcd_c00063{left:491.466667pt;}
.x4a_c00063{left:493.066667pt;}
.x1a_c00063{left:496.533333pt;}
.x122_c00063{left:501.466667pt;}
.xbc_c00063{left:502.933333pt;}
.xc_c00063{left:505.200000pt;}
.xac_c00063{left:506.266667pt;}
.x136_c00063{left:508.800000pt;}
.x63_c00063{left:509.733333pt;}
.x110_c00063{left:512.933333pt;}
.x8c_c00063{left:514.666667pt;}
.x2b_c00063{left:515.733333pt;}
.x10d_c00063{left:516.666667pt;}
.x59_c00063{left:518.266667pt;}
.xee_c00063{left:519.466667pt;}
.x11a_c00063{left:521.466667pt;}
.xd_c00063{left:523.066667pt;}
.xb4_c00063{left:524.266667pt;}
.x81_c00063{left:525.200000pt;}
.xf8_c00063{left:526.800000pt;}
.x111_c00063{left:528.266667pt;}
.x4b_c00063{left:530.533333pt;}
.x11e_c00063{left:531.466667pt;}
.x64_c00063{left:532.800000pt;}
.x99_c00063{left:535.733333pt;}
.x39_c00063{left:538.400000pt;}
.x6e_c00063{left:539.733333pt;}
.xd7_c00063{left:540.933333pt;}
.xe_c00063{left:542.000000pt;}
.x132_c00063{left:544.000000pt;}
.x115_c00063{left:545.200000pt;}
.xe6_c00063{left:547.466667pt;}
.x2c_c00063{left:549.066667pt;}
.x4c_c00063{left:554.266667pt;}
.xf_c00063{left:555.733333pt;}
.x6f_c00063{left:557.600000pt;}
.x3a_c00063{left:559.200000pt;}
.x5a_c00063{left:562.133333pt;}
.x116_c00063{left:563.466667pt;}
.xef_c00063{left:567.466667pt;}
.x10e_c00063{left:571.066667pt;}
.x1b_c00063{left:572.133333pt;}
.xf9_c00063{left:573.866667pt;}
.xfa_c00063{left:577.333333pt;}
.x4d_c00063{left:579.200000pt;}
.x128_c00063{left:580.133333pt;}
.x3b_c00063{left:582.266667pt;}
.x137_c00063{left:583.733333pt;}
.x70_c00063{left:585.466667pt;}
.x5b_c00063{left:587.066667pt;}
.x2d_c00063{left:589.066667pt;}
.xbd_c00063{left:591.600000pt;}
.x108_c00063{left:594.666667pt;}
.x71_c00063{left:595.733333pt;}
.xa3_c00063{left:597.333333pt;}
.x65_c00063{left:599.600000pt;}
.x101_c00063{left:600.666667pt;}
.xe7_c00063{left:603.200000pt;}
.x2e_c00063{left:606.400000pt;}
.x8d_c00063{left:607.733333pt;}
.xad_c00063{left:608.666667pt;}
.x10_c00063{left:612.000000pt;}
.x7c_c00063{left:614.000000pt;}
.x138_c00063{left:615.066667pt;}
.x3c_c00063{left:619.066667pt;}
.xc5_c00063{left:620.000000pt;}
.x72_c00063{left:621.333333pt;}
.xf0_c00063{left:622.533333pt;}
.x5c_c00063{left:625.066667pt;}
.x4e_c00063{left:628.133333pt;}
.x1c_c00063{left:630.400000pt;}
.x11f_c00063{left:631.600000pt;}
.x2f_c00063{left:632.933333pt;}
.xae_c00063{left:634.000000pt;}
.x9a_c00063{left:636.266667pt;}
.x3d_c00063{left:638.266667pt;}
.x66_c00063{left:641.200000pt;}
.x129_c00063{left:643.466667pt;}
.x13a_c00063{left:644.400000pt;}
.x4f_c00063{left:645.466667pt;}
.xf4_c00063{left:647.466667pt;}
.xce_c00063{left:650.800000pt;}
.xc6_c00063{left:653.600000pt;}
.x30_c00063{left:655.066667pt;}
.x9b_c00063{left:656.133333pt;}
.x109_c00063{left:658.400000pt;}
.xfb_c00063{left:659.600000pt;}
.x67_c00063{left:661.066667pt;}
.xd8_c00063{left:662.533333pt;}
.x82_c00063{left:664.133333pt;}
.x3e_c00063{left:665.200000pt;}
.xcf_c00063{left:667.066667pt;}
.x4_c00063{left:670.800000pt;}
.xe0_c00063{left:673.333333pt;}
.x11_c00063{left:675.066667pt;}
}





/* 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_c00064 {
    display:none;
  }
  .loading-indicator_c00064.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00064 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_c00064 { 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_c00064" -> "#page-container .classname_c00064")
 */
.pf_c00064 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00064 { /* 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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00064 { /* 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_c00064 { /* 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_c00064 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00064 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00064 {overflow:visible;}
  }
}
.c_c00064 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00064 { /* 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_c00064:after { /* webkit #35443 */
  content: '';
}
.t_c00064:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00064 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 */
}
.__c00064 { /* 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_c00064 { /* info for Javascript */
  display:none;
}
.l_c00064 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00064 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00064 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00064: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_c00064 {
    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_c00064.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00064.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_c00064 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00064{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00064;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.000000;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;}
.me_c00064{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m43_c00064{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00064{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00064{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m49_c00064{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00064{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00064{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00064{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00064{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m62_c00064{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m11_c00064{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00064{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m63_c00064{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00064{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m30_c00064{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7_c00064{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m17_c00064{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m46_c00064{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00064{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00064{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m42_c00064{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m51_c00064{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00064{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m69_c00064{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15_c00064{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m31_c00064{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{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);}
.m54_c00064{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m35_c00064{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m50_c00064{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m26_c00064{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00064{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00064{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m19_c00064{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00064{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00064{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m22_c00064{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m4_c00064{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00064{vertical-align:0.000000px;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{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__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:-5.368063px;}
.ws1_c00064{word-spacing:0.000000px;}
.fc0_c00064{color:transparent;}
.fs0_c00064{font-size:54.000000px;}
.fs1_c00064{font-size:60.000000px;}
.y0_c00064{bottom:0.000000px;}
.y11_c00064{bottom:709.950000px;}
.y10_c00064{bottom:730.050000px;}
.yf_c00064{bottom:749.850000px;}
.ye_c00064{bottom:769.650000px;}
.yd_c00064{bottom:789.450000px;}
.yc_c00064{bottom:809.250000px;}
.yb_c00064{bottom:829.050000px;}
.ya_c00064{bottom:848.850000px;}
.y9_c00064{bottom:868.800000px;}
.y8_c00064{bottom:888.900000px;}
.y7_c00064{bottom:908.700000px;}
.y6_c00064{bottom:928.500000px;}
.y5_c00064{bottom:948.600000px;}
.y4_c00064{bottom:968.700000px;}
.y3_c00064{bottom:988.950000px;}
.y2_c00064{bottom:1008.750000px;}
.y1_c00064{bottom:1047.300000px;}
.h2_c00064{height:54.000000px;}
.h3_c00064{height:60.000000px;}
.h1_c00064{height:1167.000000px;}
.h0_c00064{height:1167.119934px;}
.w0_c00064{width:913.320007px;}
.w1_c00064{width:913.500000px;}
.x0_c00064{left:0.000000px;}
.x6e_c00064{left:138.900000px;}
.x14_c00064{left:140.100000px;}
.x1_c00064{left:141.150000px;}
.x5b_c00064{left:159.000000px;}
.x98_c00064{left:166.800000px;}
.x1c_c00064{left:171.000000px;}
.x37_c00064{left:176.550000px;}
.x4_c00064{left:185.700000px;}
.x83_c00064{left:188.100000px;}
.x4e_c00064{left:190.950000px;}
.x15_c00064{left:194.850000px;}
.x6f_c00064{left:196.200000px;}
.x5_c00064{left:204.750000px;}
.x91_c00064{left:206.400000px;}
.x60_c00064{left:208.050000px;}
.x44_c00064{left:211.800000px;}
.x16_c00064{left:214.650000px;}
.x27_c00064{left:217.050000px;}
.x4f_c00064{left:218.250000px;}
.x92_c00064{left:224.700000px;}
.x86_c00064{left:234.450000px;}
.x61_c00064{left:236.100000px;}
.x17_c00064{left:242.700000px;}
.x50_c00064{left:248.850000px;}
.x70_c00064{left:253.500000px;}
.x87_c00064{left:256.800000px;}
.x5c_c00064{left:260.550000px;}
.x28_c00064{left:262.800000px;}
.x51_c00064{left:265.350000px;}
.xa0_c00064{left:273.900000px;}
.x6_c00064{left:275.250000px;}
.x18_c00064{left:278.700000px;}
.x62_c00064{left:287.550000px;}
.x29_c00064{left:289.500000px;}
.x45_c00064{left:290.700000px;}
.x79_c00064{left:294.750000px;}
.x5d_c00064{left:295.800000px;}
.x7_c00064{left:298.350000px;}
.x38_c00064{left:300.300000px;}
.x1d_c00064{left:305.700000px;}
.x63_c00064{left:308.100000px;}
.xa1_c00064{left:310.950000px;}
.x46_c00064{left:314.400000px;}
.x7a_c00064{left:316.050000px;}
.x2a_c00064{left:317.250000px;}
.x88_c00064{left:319.050000px;}
.x39_c00064{left:320.850000px;}
.x1e_c00064{left:325.500000px;}
.x52_c00064{left:338.400000px;}
.x99_c00064{left:342.150000px;}
.x71_c00064{left:343.500000px;}
.x19_c00064{left:345.600000px;}
.x8_c00064{left:356.700000px;}
.x3a_c00064{left:359.700000px;}
.x89_c00064{left:362.250000px;}
.x47_c00064{left:363.750000px;}
.x2b_c00064{left:365.100000px;}
.x5e_c00064{left:373.950000px;}
.x9a_c00064{left:377.850000px;}
.x2c_c00064{left:381.000000px;}
.x2_c00064{left:387.000000px;}
.x1a_c00064{left:388.800000px;}
.x5f_c00064{left:393.000000px;}
.x64_c00064{left:398.850000px;}
.x72_c00064{left:402.900000px;}
.x9_c00064{left:406.800000px;}
.x1b_c00064{left:416.850000px;}
.x8a_c00064{left:418.050000px;}
.x7b_c00064{left:420.450000px;}
.x1f_c00064{left:423.150000px;}
.x2d_c00064{left:424.950000px;}
.x65_c00064{left:426.900000px;}
.x48_c00064{left:429.300000px;}
.x3b_c00064{left:444.750000px;}
.xa_c00064{left:446.700000px;}
.x93_c00064{left:448.050000px;}
.x7c_c00064{left:450.300000px;}
.xa2_c00064{left:452.850000px;}
.x49_c00064{left:464.550000px;}
.x73_c00064{left:465.900000px;}
.xa3_c00064{left:472.650000px;}
.x53_c00064{left:474.450000px;}
.x3c_c00064{left:482.550000px;}
.x3_c00064{left:486.000000px;}
.x2e_c00064{left:490.050000px;}
.x4a_c00064{left:495.450000px;}
.xa4_c00064{left:500.700000px;}
.x20_c00064{left:502.050000px;}
.xb_c00064{left:510.000000px;}
.x7d_c00064{left:512.250000px;}
.x54_c00064{left:517.650000px;}
.x3d_c00064{left:521.100000px;}
.x66_c00064{left:526.650000px;}
.x74_c00064{left:528.900000px;}
.x9b_c00064{left:530.100000px;}
.x8b_c00064{left:534.300000px;}
.x2f_c00064{left:538.350000px;}
.x94_c00064{left:541.950000px;}
.x3e_c00064{left:543.750000px;}
.x7e_c00064{left:544.950000px;}
.x67_c00064{left:546.750000px;}
.x75_c00064{left:549.750000px;}
.xc_c00064{left:552.450000px;}
.x55_c00064{left:556.500000px;}
.x3f_c00064{left:560.700000px;}
.x95_c00064{left:563.250000px;}
.x9c_c00064{left:566.100000px;}
.x68_c00064{left:574.500000px;}
.xd_c00064{left:576.900000px;}
.x21_c00064{left:579.450000px;}
.x30_c00064{left:582.600000px;}
.x9d_c00064{left:587.400000px;}
.x4b_c00064{left:589.050000px;}
.x84_c00064{left:590.850000px;}
.x8c_c00064{left:596.550000px;}
.x7f_c00064{left:599.250000px;}
.x40_c00064{left:614.400000px;}
.x69_c00064{left:625.200000px;}
.x22_c00064{left:627.000000px;}
.x56_c00064{left:628.500000px;}
.x8d_c00064{left:630.000000px;}
.x76_c00064{left:632.250000px;}
.x9e_c00064{left:634.950000px;}
.x31_c00064{left:638.100000px;}
.x80_c00064{left:639.150000px;}
.xe_c00064{left:643.800000px;}
.x23_c00064{left:646.050000px;}
.x96_c00064{left:655.050000px;}
.x6a_c00064{left:658.350000px;}
.x24_c00064{left:661.500000px;}
.x41_c00064{left:663.750000px;}
.xf_c00064{left:666.450000px;}
.x32_c00064{left:667.950000px;}
.x8e_c00064{left:673.500000px;}
.x57_c00064{left:679.200000px;}
.x33_c00064{left:680.250000px;}
.x4c_c00064{left:683.400000px;}
.x77_c00064{left:684.450000px;}
.x97_c00064{left:685.950000px;}
.x6b_c00064{left:691.800000px;}
.x10_c00064{left:697.350000px;}
.x34_c00064{left:708.300000px;}
.x6c_c00064{left:709.500000px;}
.x85_c00064{left:710.700000px;}
.x9f_c00064{left:713.100000px;}
.x42_c00064{left:719.100000px;}
.x11_c00064{left:720.450000px;}
.x8f_c00064{left:722.100000px;}
.x58_c00064{left:733.200000px;}
.x25_c00064{left:740.400000px;}
.x81_c00064{left:741.750000px;}
.x78_c00064{left:748.200000px;}
.x35_c00064{left:749.400000px;}
.x90_c00064{left:750.600000px;}
.x59_c00064{left:752.700000px;}
.x12_c00064{left:759.300000px;}
.x6d_c00064{left:762.450000px;}
.x5a_c00064{left:767.400000px;}
.x36_c00064{left:769.500000px;}
.x4d_c00064{left:770.550000px;}
.x82_c00064{left:772.650000px;}
.x13_c00064{left:782.400000px;}
.x26_c00064{left:790.050000px;}
.x43_c00064{left:792.900000px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:-4.771612pt;}
.ws1_c00064{word-spacing:0.000000pt;}
.fs0_c00064{font-size:48.000000pt;}
.fs1_c00064{font-size:53.333333pt;}
.y0_c00064{bottom:0.000000pt;}
.y11_c00064{bottom:631.066667pt;}
.y10_c00064{bottom:648.933333pt;}
.yf_c00064{bottom:666.533333pt;}
.ye_c00064{bottom:684.133333pt;}
.yd_c00064{bottom:701.733333pt;}
.yc_c00064{bottom:719.333333pt;}
.yb_c00064{bottom:736.933333pt;}
.ya_c00064{bottom:754.533333pt;}
.y9_c00064{bottom:772.266667pt;}
.y8_c00064{bottom:790.133333pt;}
.y7_c00064{bottom:807.733333pt;}
.y6_c00064{bottom:825.333333pt;}
.y5_c00064{bottom:843.200000pt;}
.y4_c00064{bottom:861.066667pt;}
.y3_c00064{bottom:879.066667pt;}
.y2_c00064{bottom:896.666667pt;}
.y1_c00064{bottom:930.933333pt;}
.h2_c00064{height:48.000000pt;}
.h3_c00064{height:53.333333pt;}
.h1_c00064{height:1037.333333pt;}
.h0_c00064{height:1037.439941pt;}
.w0_c00064{width:811.840007pt;}
.w1_c00064{width:812.000000pt;}
.x0_c00064{left:0.000000pt;}
.x6e_c00064{left:123.466667pt;}
.x14_c00064{left:124.533333pt;}
.x1_c00064{left:125.466667pt;}
.x5b_c00064{left:141.333333pt;}
.x98_c00064{left:148.266667pt;}
.x1c_c00064{left:152.000000pt;}
.x37_c00064{left:156.933333pt;}
.x4_c00064{left:165.066667pt;}
.x83_c00064{left:167.200000pt;}
.x4e_c00064{left:169.733333pt;}
.x15_c00064{left:173.200000pt;}
.x6f_c00064{left:174.400000pt;}
.x5_c00064{left:182.000000pt;}
.x91_c00064{left:183.466667pt;}
.x60_c00064{left:184.933333pt;}
.x44_c00064{left:188.266667pt;}
.x16_c00064{left:190.800000pt;}
.x27_c00064{left:192.933333pt;}
.x4f_c00064{left:194.000000pt;}
.x92_c00064{left:199.733333pt;}
.x86_c00064{left:208.400000pt;}
.x61_c00064{left:209.866667pt;}
.x17_c00064{left:215.733333pt;}
.x50_c00064{left:221.200000pt;}
.x70_c00064{left:225.333333pt;}
.x87_c00064{left:228.266667pt;}
.x5c_c00064{left:231.600000pt;}
.x28_c00064{left:233.600000pt;}
.x51_c00064{left:235.866667pt;}
.xa0_c00064{left:243.466667pt;}
.x6_c00064{left:244.666667pt;}
.x18_c00064{left:247.733333pt;}
.x62_c00064{left:255.600000pt;}
.x29_c00064{left:257.333333pt;}
.x45_c00064{left:258.400000pt;}
.x79_c00064{left:262.000000pt;}
.x5d_c00064{left:262.933333pt;}
.x7_c00064{left:265.200000pt;}
.x38_c00064{left:266.933333pt;}
.x1d_c00064{left:271.733333pt;}
.x63_c00064{left:273.866667pt;}
.xa1_c00064{left:276.400000pt;}
.x46_c00064{left:279.466667pt;}
.x7a_c00064{left:280.933333pt;}
.x2a_c00064{left:282.000000pt;}
.x88_c00064{left:283.600000pt;}
.x39_c00064{left:285.200000pt;}
.x1e_c00064{left:289.333333pt;}
.x52_c00064{left:300.800000pt;}
.x99_c00064{left:304.133333pt;}
.x71_c00064{left:305.333333pt;}
.x19_c00064{left:307.200000pt;}
.x8_c00064{left:317.066667pt;}
.x3a_c00064{left:319.733333pt;}
.x89_c00064{left:322.000000pt;}
.x47_c00064{left:323.333333pt;}
.x2b_c00064{left:324.533333pt;}
.x5e_c00064{left:332.400000pt;}
.x9a_c00064{left:335.866667pt;}
.x2c_c00064{left:338.666667pt;}
.x2_c00064{left:344.000000pt;}
.x1a_c00064{left:345.600000pt;}
.x5f_c00064{left:349.333333pt;}
.x64_c00064{left:354.533333pt;}
.x72_c00064{left:358.133333pt;}
.x9_c00064{left:361.600000pt;}
.x1b_c00064{left:370.533333pt;}
.x8a_c00064{left:371.600000pt;}
.x7b_c00064{left:373.733333pt;}
.x1f_c00064{left:376.133333pt;}
.x2d_c00064{left:377.733333pt;}
.x65_c00064{left:379.466667pt;}
.x48_c00064{left:381.600000pt;}
.x3b_c00064{left:395.333333pt;}
.xa_c00064{left:397.066667pt;}
.x93_c00064{left:398.266667pt;}
.x7c_c00064{left:400.266667pt;}
.xa2_c00064{left:402.533333pt;}
.x49_c00064{left:412.933333pt;}
.x73_c00064{left:414.133333pt;}
.xa3_c00064{left:420.133333pt;}
.x53_c00064{left:421.733333pt;}
.x3c_c00064{left:428.933333pt;}
.x3_c00064{left:432.000000pt;}
.x2e_c00064{left:435.600000pt;}
.x4a_c00064{left:440.400000pt;}
.xa4_c00064{left:445.066667pt;}
.x20_c00064{left:446.266667pt;}
.xb_c00064{left:453.333333pt;}
.x7d_c00064{left:455.333333pt;}
.x54_c00064{left:460.133333pt;}
.x3d_c00064{left:463.200000pt;}
.x66_c00064{left:468.133333pt;}
.x74_c00064{left:470.133333pt;}
.x9b_c00064{left:471.200000pt;}
.x8b_c00064{left:474.933333pt;}
.x2f_c00064{left:478.533333pt;}
.x94_c00064{left:481.733333pt;}
.x3e_c00064{left:483.333333pt;}
.x7e_c00064{left:484.400000pt;}
.x67_c00064{left:486.000000pt;}
.x75_c00064{left:488.666667pt;}
.xc_c00064{left:491.066667pt;}
.x55_c00064{left:494.666667pt;}
.x3f_c00064{left:498.400000pt;}
.x95_c00064{left:500.666667pt;}
.x9c_c00064{left:503.200000pt;}
.x68_c00064{left:510.666667pt;}
.xd_c00064{left:512.800000pt;}
.x21_c00064{left:515.066667pt;}
.x30_c00064{left:517.866667pt;}
.x9d_c00064{left:522.133333pt;}
.x4b_c00064{left:523.600000pt;}
.x84_c00064{left:525.200000pt;}
.x8c_c00064{left:530.266667pt;}
.x7f_c00064{left:532.666667pt;}
.x40_c00064{left:546.133333pt;}
.x69_c00064{left:555.733333pt;}
.x22_c00064{left:557.333333pt;}
.x56_c00064{left:558.666667pt;}
.x8d_c00064{left:560.000000pt;}
.x76_c00064{left:562.000000pt;}
.x9e_c00064{left:564.400000pt;}
.x31_c00064{left:567.200000pt;}
.x80_c00064{left:568.133333pt;}
.xe_c00064{left:572.266667pt;}
.x23_c00064{left:574.266667pt;}
.x96_c00064{left:582.266667pt;}
.x6a_c00064{left:585.200000pt;}
.x24_c00064{left:588.000000pt;}
.x41_c00064{left:590.000000pt;}
.xf_c00064{left:592.400000pt;}
.x32_c00064{left:593.733333pt;}
.x8e_c00064{left:598.666667pt;}
.x57_c00064{left:603.733333pt;}
.x33_c00064{left:604.666667pt;}
.x4c_c00064{left:607.466667pt;}
.x77_c00064{left:608.400000pt;}
.x97_c00064{left:609.733333pt;}
.x6b_c00064{left:614.933333pt;}
.x10_c00064{left:619.866667pt;}
.x34_c00064{left:629.600000pt;}
.x6c_c00064{left:630.666667pt;}
.x85_c00064{left:631.733333pt;}
.x9f_c00064{left:633.866667pt;}
.x42_c00064{left:639.200000pt;}
.x11_c00064{left:640.400000pt;}
.x8f_c00064{left:641.866667pt;}
.x58_c00064{left:651.733333pt;}
.x25_c00064{left:658.133333pt;}
.x81_c00064{left:659.333333pt;}
.x78_c00064{left:665.066667pt;}
.x35_c00064{left:666.133333pt;}
.x90_c00064{left:667.200000pt;}
.x59_c00064{left:669.066667pt;}
.x12_c00064{left:674.933333pt;}
.x6d_c00064{left:677.733333pt;}
.x5a_c00064{left:682.133333pt;}
.x36_c00064{left:684.000000pt;}
.x4d_c00064{left:684.933333pt;}
.x82_c00064{left:686.800000pt;}
.x13_c00064{left:695.466667pt;}
.x26_c00064{left:702.266667pt;}
.x43_c00064{left:704.800000pt;}
}





/* 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_c00065 {
    display:none;
  }
  .loading-indicator_c00065.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00065 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_c00065 { 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_c00065" -> "#page-container .classname_c00065")
 */
.pf_c00065 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00065 { /* 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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00065 { /* 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_c00065 { /* 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_c00065 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00065 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00065 {overflow:visible;}
  }
}
.c_c00065 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00065 { /* 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_c00065:after { /* webkit #35443 */
  content: '';
}
.t_c00065:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00065 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 */
}
.__c00065 { /* 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_c00065 { /* info for Javascript */
  display:none;
}
.l_c00065 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00065 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00065 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00065: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_c00065 {
    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_c00065.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00065.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_c00065 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00065{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.000000;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;}
.m4f_c00065{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m81_c00065{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m92_c00065{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00065{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m95_c00065{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m76_c00065{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m31_c00065{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m78_c00065{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00065{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00065{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00065{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00065{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00065{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m86_c00065{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m66_c00065{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00065{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m75_c00065{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m56_c00065{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m77_c00065{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m53_c00065{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00065{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m50_c00065{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m36_c00065{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m21_c00065{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00065{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m62_c00065{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m71_c00065{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00065{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00065{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00065{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00065{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m84_c00065{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m18_c00065{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00065{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00065{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m74_c00065{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00065{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m58_c00065{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m82_c00065{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m67_c00065{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m68_c00065{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00065{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m22_c00065{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00065{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m96_c00065{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m43_c00065{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m33_c00065{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00065{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00065{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00065{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m97_c00065{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00065{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m59_c00065{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00065{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m85_c00065{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00065{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00065{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00065{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m93_c00065{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00065{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00065{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00065{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m52_c00065{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00065{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m27_c00065{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00065{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00065{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00065{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00065{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m35_c00065{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m88_c00065{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m16_c00065{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00065{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m63_c00065{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m32_c00065{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00065{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00065{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m23_c00065{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m87_c00065{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m70_c00065{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m29_c00065{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m80_c00065{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m49_c00065{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00065{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m15_c00065{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00065{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00065{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00065{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00065{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m64_c00065{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m65_c00065{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m48_c00065{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00065{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m37_c00065{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00065{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m94_c00065{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m45_c00065{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m54_c00065{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m72_c00065{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00065{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00065{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00065{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m89_c00065{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m51_c00065{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00065{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m91_c00065{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00065{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m0_c00065{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00065{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00065{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m24_c00065{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00065{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00065{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m98_c00065{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26_c00065{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00065{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00065{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m46_c00065{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);}
.m28_c00065{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m40_c00065{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00065{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00065{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00065{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m44_c00065{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00065{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00065{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00065{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m25_c00065{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m57_c00065{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00065{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00065{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c00065{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m83_c00065{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m20_c00065{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00065{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00065{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00065{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00065{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00065{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m79_c00065{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m30_c00065{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00065{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m60_c00065{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00065{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00065{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me_c00065{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6_c00065{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m14_c00065{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m4_c00065{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.ma_c00065{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m13_c00065{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m12_c00065{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m38_c00065{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.md_c00065{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m11_c00065{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m8_c00065{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m9_c00065{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.mc_c00065{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.m10_c00065{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m3_c00065{transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381000,0.000000,0.000000,0.250000,0,0);}
.mf_c00065{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m7_c00065{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m34_c00065{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{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__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00065{word-spacing:-7.500000px;}
.ws2_c00065{word-spacing:-6.250000px;}
.ws0_c00065{word-spacing:-6.160714px;}
.ws3_c00065{word-spacing:-0.119048px;}
.ws8_c00065{word-spacing:0.000000px;}
.ws5_c00065{word-spacing:6.447368px;}
.ws7_c00065{word-spacing:12.857143px;}
.ws4_c00065{word-spacing:13.611111px;}
.ws6_c00065{word-spacing:23.194444px;}
._0_c00065{width:49.861111px;}
.fc0_c00065{color:transparent;}
.fs2_c00065{font-size:42.000000px;}
.fs3_c00065{font-size:54.000000px;}
.fs1_c00065{font-size:60.000000px;}
.fs0_c00065{font-size:66.000000px;}
.y0_c00065{bottom:0.000000px;}
.y26_c00065{bottom:143.250000px;}
.y25_c00065{bottom:174.750000px;}
.y24_c00065{bottom:194.550000px;}
.y23_c00065{bottom:214.650000px;}
.y22_c00065{bottom:234.450000px;}
.y21_c00065{bottom:254.550000px;}
.y20_c00065{bottom:274.350000px;}
.y1f_c00065{bottom:294.150000px;}
.y1e_c00065{bottom:313.350000px;}
.y1d_c00065{bottom:333.900000px;}
.y1c_c00065{bottom:354.000000px;}
.y1b_c00065{bottom:374.100000px;}
.y1a_c00065{bottom:393.900000px;}
.y19_c00065{bottom:414.000000px;}
.y18_c00065{bottom:433.500000px;}
.y17_c00065{bottom:453.000000px;}
.y16_c00065{bottom:473.100000px;}
.y15_c00065{bottom:492.900000px;}
.y14_c00065{bottom:512.700000px;}
.y13_c00065{bottom:532.500000px;}
.y12_c00065{bottom:552.600000px;}
.y11_c00065{bottom:572.100000px;}
.y10_c00065{bottom:592.200000px;}
.yf_c00065{bottom:612.000000px;}
.ye_c00065{bottom:631.800000px;}
.yd_c00065{bottom:651.600000px;}
.yc_c00065{bottom:671.400000px;}
.yb_c00065{bottom:691.200000px;}
.ya_c00065{bottom:711.000000px;}
.y9_c00065{bottom:731.100000px;}
.y8_c00065{bottom:750.750000px;}
.y7_c00065{bottom:770.850000px;}
.y6_c00065{bottom:790.950000px;}
.y5_c00065{bottom:811.050000px;}
.y4_c00065{bottom:844.200000px;}
.y3_c00065{bottom:864.000000px;}
.y2_c00065{bottom:896.700000px;}
.y1_c00065{bottom:1044.300000px;}
.h4_c00065{height:42.000000px;}
.h5_c00065{height:54.000000px;}
.h3_c00065{height:60.000000px;}
.h2_c00065{height:66.000000px;}
.h1_c00065{height:1167.000000px;}
.h0_c00065{height:1167.119934px;}
.w0_c00065{width:913.320007px;}
.w1_c00065{width:913.500000px;}
.x0_c00065{left:0.000000px;}
.x103_c00065{left:102.300000px;}
.x4_c00065{left:103.350000px;}
.x95_c00065{left:104.550000px;}
.x2a_c00065{left:115.500000px;}
.xe8_c00065{left:120.450000px;}
.x1a_c00065{left:122.400000px;}
.xf8_c00065{left:124.050000px;}
.xe1_c00065{left:129.300000px;}
.x88_c00065{left:132.000000px;}
.x48_c00065{left:134.700000px;}
.x7c_c00065{left:136.050000px;}
.xb1_c00065{left:137.700000px;}
.x96_c00065{left:140.850000px;}
.x70_c00065{left:142.050000px;}
.xf3_c00065{left:145.800000px;}
.x104_c00065{left:148.350000px;}
.x3a_c00065{left:149.850000px;}
.x1b_c00065{left:151.950000px;}
.xc8_c00065{left:156.900000px;}
.xe9_c00065{left:159.300000px;}
.x49_c00065{left:161.400000px;}
.xbe_c00065{left:162.450000px;}
.x64_c00065{left:163.500000px;}
.xdb_c00065{left:166.800000px;}
.x2b_c00065{left:168.000000px;}
.x71_c00065{left:170.100000px;}
.xb2_c00065{left:171.600000px;}
.x58_c00065{left:174.150000px;}
.xbf_c00065{left:176.550000px;}
.xf4_c00065{left:179.250000px;}
.x12_c00065{left:180.750000px;}
.x5_c00065{left:183.300000px;}
.x89_c00065{left:184.950000px;}
.xa7_c00065{left:188.550000px;}
.xea_c00065{left:189.750000px;}
.x45_c00065{left:191.100000px;}
.x97_c00065{left:195.600000px;}
.x3b_c00065{left:197.400000px;}
.xfc_c00065{left:201.750000px;}
.x6_c00065{left:202.800000px;}
.x7d_c00065{left:205.200000px;}
.xa1_c00065{left:206.850000px;}
.xc0_c00065{left:208.650000px;}
.x65_c00065{left:211.050000px;}
.x4a_c00065{left:212.550000px;}
.x59_c00065{left:217.050000px;}
.x10a_c00065{left:218.100000px;}
.x2c_c00065{left:219.450000px;}
.x72_c00065{left:220.800000px;}
.x98_c00065{left:223.650000px;}
.xc9_c00065{left:226.050000px;}
.xdc_c00065{left:227.250000px;}
.xc1_c00065{left:229.200000px;}
.x7_c00065{left:235.500000px;}
.xe2_c00065{left:238.050000px;}
.xb3_c00065{left:243.300000px;}
.xe5_c00065{left:245.250000px;}
.x4b_c00065{left:246.450000px;}
.x107_c00065{left:247.500000px;}
.x66_c00065{left:248.850000px;}
.xd4_c00065{left:250.500000px;}
.x13_c00065{left:252.000000px;}
.xcd_c00065{left:253.650000px;}
.x1c_c00065{left:254.850000px;}
.x2d_c00065{left:256.500000px;}
.x5a_c00065{left:258.450000px;}
.x99_c00065{left:260.700000px;}
.x10b_c00065{left:262.350000px;}
.xeb_c00065{left:263.850000px;}
.x8a_c00065{left:264.900000px;}
.x2e_c00065{left:268.800000px;}
.xb4_c00065{left:271.800000px;}
.x1d_c00065{left:273.150000px;}
.x46_c00065{left:277.200000px;}
.xe3_c00065{left:278.700000px;}
.x8_c00065{left:281.550000px;}
.x8b_c00065{left:284.400000px;}
.xec_c00065{left:286.200000px;}
.x9a_c00065{left:288.000000px;}
.x3c_c00065{left:289.500000px;}
.x73_c00065{left:296.400000px;}
.x4c_c00065{left:298.350000px;}
.x1e_c00065{left:304.500000px;}
.xa8_c00065{left:305.550000px;}
.x74_c00065{left:313.650000px;}
.x5b_c00065{left:315.300000px;}
.x8c_c00065{left:317.550000px;}
.x4d_c00065{left:319.200000px;}
.x7e_c00065{left:320.400000px;}
.xc2_c00065{left:321.600000px;}
.x9_c00065{left:322.950000px;}
.xb5_c00065{left:325.800000px;}
.x2f_c00065{left:327.450000px;}
.x10c_c00065{left:330.300000px;}
.xfd_c00065{left:331.650000px;}
.x9b_c00065{left:335.850000px;}
.x75_c00065{left:339.150000px;}
.x7f_c00065{left:341.250000px;}
.xa2_c00065{left:343.500000px;}
.x30_c00065{left:344.700000px;}
.x101_c00065{left:345.900000px;}
.x4e_c00065{left:346.950000px;}
.x14_c00065{left:349.500000px;}
.xca_c00065{left:351.600000px;}
.x10d_c00065{left:354.750000px;}
.xa_c00065{left:356.100000px;}
.xed_c00065{left:357.150000px;}
.xb6_c00065{left:358.950000px;}
.xce_c00065{left:360.150000px;}
.xa3_c00065{left:362.550000px;}
.xc3_c00065{left:364.800000px;}
.x80_c00065{left:366.150000px;}
.xd5_c00065{left:368.250000px;}
.x1f_c00065{left:369.300000px;}
.xfe_c00065{left:370.950000px;}
.x47_c00065{left:373.350000px;}
.x31_c00065{left:379.650000px;}
.x2_c00065{left:381.300000px;}
.x5c_c00065{left:382.500000px;}
.xdd_c00065{left:384.000000px;}
.x8d_c00065{left:385.950000px;}
.x4f_c00065{left:388.050000px;}
.xa9_c00065{left:389.700000px;}
.x15_c00065{left:392.700000px;}
.x3d_c00065{left:394.200000px;}
.xb7_c00065{left:395.250000px;}
.x9c_c00065{left:397.050000px;}
.x67_c00065{left:400.650000px;}
.xcb_c00065{left:402.750000px;}
.xc4_c00065{left:404.700000px;}
.xd6_c00065{left:406.350000px;}
.x50_c00065{left:407.550000px;}
.x20_c00065{left:409.950000px;}
.x8e_c00065{left:411.900000px;}
.x32_c00065{left:414.150000px;}
.xaa_c00065{left:415.200000px;}
.xad_c00065{left:418.050000px;}
.xe6_c00065{left:419.700000px;}
.x3e_c00065{left:424.800000px;}
.x1_c00065{left:427.650000px;}
.xb_c00065{left:429.600000px;}
.x9d_c00065{left:430.950000px;}
.xde_c00065{left:432.600000px;}
.xd7_c00065{left:435.900000px;}
.x33_c00065{left:439.350000px;}
.xc5_c00065{left:440.400000px;}
.xee_c00065{left:442.800000px;}
.xcf_c00065{left:444.450000px;}
.x76_c00065{left:446.550000px;}
.x16_c00065{left:448.800000px;}
.x5d_c00065{left:451.200000px;}
.x81_c00065{left:453.600000px;}
.x102_c00065{left:455.700000px;}
.x51_c00065{left:460.050000px;}
.x8f_c00065{left:462.000000px;}
.x3_c00065{left:467.400000px;}
.xf9_c00065{left:468.600000px;}
.x34_c00065{left:471.000000px;}
.xef_c00065{left:474.150000px;}
.xd8_c00065{left:475.200000px;}
.xab_c00065{left:478.500000px;}
.xa4_c00065{left:479.550000px;}
.xb9_c00065{left:481.350000px;}
.x10e_c00065{left:483.000000px;}
.x21_c00065{left:485.250000px;}
.xc_c00065{left:487.500000px;}
.x52_c00065{left:488.550000px;}
.x3f_c00065{left:491.100000px;}
.x17_c00065{left:492.300000px;}
.xd0_c00065{left:493.500000px;}
.xe4_c00065{left:495.450000px;}
.x82_c00065{left:496.800000px;}
.x77_c00065{left:498.750000px;}
.x90_c00065{left:499.800000px;}
.x5e_c00065{left:501.600000px;}
.xba_c00065{left:502.650000px;}
.xac_c00065{left:504.000000px;}
.x68_c00065{left:505.050000px;}
.x53_c00065{left:506.250000px;}
.x9e_c00065{left:509.550000px;}
.x18_c00065{left:512.400000px;}
.x83_c00065{left:514.500000px;}
.xf0_c00065{left:517.050000px;}
.x5f_c00065{left:522.150000px;}
.x69_c00065{left:524.850000px;}
.x78_c00065{left:528.600000px;}
.xd1_c00065{left:532.350000px;}
.x54_c00065{left:534.750000px;}
.xf1_c00065{left:537.150000px;}
.xf5_c00065{left:540.450000px;}
.xc6_c00065{left:542.700000px;}
.x35_c00065{left:544.500000px;}
.x60_c00065{left:547.650000px;}
.x84_c00065{left:549.450000px;}
.x105_c00065{left:552.000000px;}
.x91_c00065{left:553.050000px;}
.x22_c00065{left:555.150000px;}
.x40_c00065{left:560.850000px;}
.x36_c00065{left:564.600000px;}
.xd_c00065{left:566.400000px;}
.x108_c00065{left:568.500000px;}
.x23_c00065{left:572.400000px;}
.x55_c00065{left:576.150000px;}
.xf6_c00065{left:581.100000px;}
.xbb_c00065{left:582.300000px;}
.xe7_c00065{left:584.100000px;}
.xe_c00065{left:585.150000px;}
.x24_c00065{left:587.100000px;}
.x37_c00065{left:590.550000px;}
.xd9_c00065{left:594.000000px;}
.x41_c00065{left:596.100000px;}
.x92_c00065{left:599.850000px;}
.x79_c00065{left:601.050000px;}
.x10f_c00065{left:602.550000px;}
.xae_c00065{left:604.350000px;}
.xd2_c00065{left:607.200000px;}
.x6a_c00065{left:609.150000px;}
.x25_c00065{left:612.300000px;}
.x19_c00065{left:616.200000px;}
.xda_c00065{left:617.400000px;}
.x85_c00065{left:624.000000px;}
.xa5_c00065{left:627.150000px;}
.x38_c00065{left:629.850000px;}
.xaf_c00065{left:632.100000px;}
.x110_c00065{left:634.200000px;}
.xdf_c00065{left:636.000000px;}
.xb8_c00065{left:641.100000px;}
.xbc_c00065{left:647.100000px;}
.x111_c00065{left:648.600000px;}
.x6b_c00065{left:649.800000px;}
.x9f_c00065{left:651.900000px;}
.xf_c00065{left:653.550000px;}
.x61_c00065{left:655.350000px;}
.x26_c00065{left:656.550000px;}
.x7a_c00065{left:660.900000px;}
.x6c_c00065{left:662.700000px;}
.x56_c00065{left:665.850000px;}
.x106_c00065{left:669.000000px;}
.xf2_c00065{left:672.450000px;}
.x39_c00065{left:678.750000px;}
.x10_c00065{left:683.850000px;}
.x27_c00065{left:687.150000px;}
.x6d_c00065{left:688.200000px;}
.x57_c00065{left:689.550000px;}
.xcc_c00065{left:691.650000px;}
.x62_c00065{left:694.200000px;}
.xff_c00065{left:698.400000px;}
.x42_c00065{left:700.800000px;}
.x7b_c00065{left:702.600000px;}
.x86_c00065{left:704.700000px;}
.x28_c00065{left:706.650000px;}
.x6e_c00065{left:708.300000px;}
.xb0_c00065{left:709.800000px;}
.xa6_c00065{left:712.050000px;}
.xf7_c00065{left:715.950000px;}
.x43_c00065{left:718.500000px;}
.x100_c00065{left:723.900000px;}
.xa0_c00065{left:728.100000px;}
.xfa_c00065{left:729.150000px;}
.x93_c00065{left:730.200000px;}
.x29_c00065{left:732.150000px;}
.x44_c00065{left:736.500000px;}
.x63_c00065{left:741.000000px;}
.x6f_c00065{left:742.200000px;}
.xbd_c00065{left:748.200000px;}
.x94_c00065{left:749.250000px;}
.xfb_c00065{left:750.750000px;}
.xd3_c00065{left:752.250000px;}
.x109_c00065{left:754.950000px;}
.x11_c00065{left:756.600000px;}
.x87_c00065{left:757.650000px;}
.xc7_c00065{left:758.700000px;}
.xe0_c00065{left:759.750000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws1_c00065{word-spacing:-6.666667pt;}
.ws2_c00065{word-spacing:-5.555556pt;}
.ws0_c00065{word-spacing:-5.476190pt;}
.ws3_c00065{word-spacing:-0.105820pt;}
.ws8_c00065{word-spacing:0.000000pt;}
.ws5_c00065{word-spacing:5.730994pt;}
.ws7_c00065{word-spacing:11.428571pt;}
.ws4_c00065{word-spacing:12.098765pt;}
.ws6_c00065{word-spacing:20.617284pt;}
._0_c00065{width:44.320988pt;}
.fs2_c00065{font-size:37.333333pt;}
.fs3_c00065{font-size:48.000000pt;}
.fs1_c00065{font-size:53.333333pt;}
.fs0_c00065{font-size:58.666667pt;}
.y0_c00065{bottom:0.000000pt;}
.y26_c00065{bottom:127.333333pt;}
.y25_c00065{bottom:155.333333pt;}
.y24_c00065{bottom:172.933333pt;}
.y23_c00065{bottom:190.800000pt;}
.y22_c00065{bottom:208.400000pt;}
.y21_c00065{bottom:226.266667pt;}
.y20_c00065{bottom:243.866667pt;}
.y1f_c00065{bottom:261.466667pt;}
.y1e_c00065{bottom:278.533333pt;}
.y1d_c00065{bottom:296.800000pt;}
.y1c_c00065{bottom:314.666667pt;}
.y1b_c00065{bottom:332.533333pt;}
.y1a_c00065{bottom:350.133333pt;}
.y19_c00065{bottom:368.000000pt;}
.y18_c00065{bottom:385.333333pt;}
.y17_c00065{bottom:402.666667pt;}
.y16_c00065{bottom:420.533333pt;}
.y15_c00065{bottom:438.133333pt;}
.y14_c00065{bottom:455.733333pt;}
.y13_c00065{bottom:473.333333pt;}
.y12_c00065{bottom:491.200000pt;}
.y11_c00065{bottom:508.533333pt;}
.y10_c00065{bottom:526.400000pt;}
.yf_c00065{bottom:544.000000pt;}
.ye_c00065{bottom:561.600000pt;}
.yd_c00065{bottom:579.200000pt;}
.yc_c00065{bottom:596.800000pt;}
.yb_c00065{bottom:614.400000pt;}
.ya_c00065{bottom:632.000000pt;}
.y9_c00065{bottom:649.866667pt;}
.y8_c00065{bottom:667.333333pt;}
.y7_c00065{bottom:685.200000pt;}
.y6_c00065{bottom:703.066667pt;}
.y5_c00065{bottom:720.933333pt;}
.y4_c00065{bottom:750.400000pt;}
.y3_c00065{bottom:768.000000pt;}
.y2_c00065{bottom:797.066667pt;}
.y1_c00065{bottom:928.266667pt;}
.h4_c00065{height:37.333333pt;}
.h5_c00065{height:48.000000pt;}
.h3_c00065{height:53.333333pt;}
.h2_c00065{height:58.666667pt;}
.h1_c00065{height:1037.333333pt;}
.h0_c00065{height:1037.439941pt;}
.w0_c00065{width:811.840007pt;}
.w1_c00065{width:812.000000pt;}
.x0_c00065{left:0.000000pt;}
.x103_c00065{left:90.933333pt;}
.x4_c00065{left:91.866667pt;}
.x95_c00065{left:92.933333pt;}
.x2a_c00065{left:102.666667pt;}
.xe8_c00065{left:107.066667pt;}
.x1a_c00065{left:108.800000pt;}
.xf8_c00065{left:110.266667pt;}
.xe1_c00065{left:114.933333pt;}
.x88_c00065{left:117.333333pt;}
.x48_c00065{left:119.733333pt;}
.x7c_c00065{left:120.933333pt;}
.xb1_c00065{left:122.400000pt;}
.x96_c00065{left:125.200000pt;}
.x70_c00065{left:126.266667pt;}
.xf3_c00065{left:129.600000pt;}
.x104_c00065{left:131.866667pt;}
.x3a_c00065{left:133.200000pt;}
.x1b_c00065{left:135.066667pt;}
.xc8_c00065{left:139.466667pt;}
.xe9_c00065{left:141.600000pt;}
.x49_c00065{left:143.466667pt;}
.xbe_c00065{left:144.400000pt;}
.x64_c00065{left:145.333333pt;}
.xdb_c00065{left:148.266667pt;}
.x2b_c00065{left:149.333333pt;}
.x71_c00065{left:151.200000pt;}
.xb2_c00065{left:152.533333pt;}
.x58_c00065{left:154.800000pt;}
.xbf_c00065{left:156.933333pt;}
.xf4_c00065{left:159.333333pt;}
.x12_c00065{left:160.666667pt;}
.x5_c00065{left:162.933333pt;}
.x89_c00065{left:164.400000pt;}
.xa7_c00065{left:167.600000pt;}
.xea_c00065{left:168.666667pt;}
.x45_c00065{left:169.866667pt;}
.x97_c00065{left:173.866667pt;}
.x3b_c00065{left:175.466667pt;}
.xfc_c00065{left:179.333333pt;}
.x6_c00065{left:180.266667pt;}
.x7d_c00065{left:182.400000pt;}
.xa1_c00065{left:183.866667pt;}
.xc0_c00065{left:185.466667pt;}
.x65_c00065{left:187.600000pt;}
.x4a_c00065{left:188.933333pt;}
.x59_c00065{left:192.933333pt;}
.x10a_c00065{left:193.866667pt;}
.x2c_c00065{left:195.066667pt;}
.x72_c00065{left:196.266667pt;}
.x98_c00065{left:198.800000pt;}
.xc9_c00065{left:200.933333pt;}
.xdc_c00065{left:202.000000pt;}
.xc1_c00065{left:203.733333pt;}
.x7_c00065{left:209.333333pt;}
.xe2_c00065{left:211.600000pt;}
.xb3_c00065{left:216.266667pt;}
.xe5_c00065{left:218.000000pt;}
.x4b_c00065{left:219.066667pt;}
.x107_c00065{left:220.000000pt;}
.x66_c00065{left:221.200000pt;}
.xd4_c00065{left:222.666667pt;}
.x13_c00065{left:224.000000pt;}
.xcd_c00065{left:225.466667pt;}
.x1c_c00065{left:226.533333pt;}
.x2d_c00065{left:228.000000pt;}
.x5a_c00065{left:229.733333pt;}
.x99_c00065{left:231.733333pt;}
.x10b_c00065{left:233.200000pt;}
.xeb_c00065{left:234.533333pt;}
.x8a_c00065{left:235.466667pt;}
.x2e_c00065{left:238.933333pt;}
.xb4_c00065{left:241.600000pt;}
.x1d_c00065{left:242.800000pt;}
.x46_c00065{left:246.400000pt;}
.xe3_c00065{left:247.733333pt;}
.x8_c00065{left:250.266667pt;}
.x8b_c00065{left:252.800000pt;}
.xec_c00065{left:254.400000pt;}
.x9a_c00065{left:256.000000pt;}
.x3c_c00065{left:257.333333pt;}
.x73_c00065{left:263.466667pt;}
.x4c_c00065{left:265.200000pt;}
.x1e_c00065{left:270.666667pt;}
.xa8_c00065{left:271.600000pt;}
.x74_c00065{left:278.800000pt;}
.x5b_c00065{left:280.266667pt;}
.x8c_c00065{left:282.266667pt;}
.x4d_c00065{left:283.733333pt;}
.x7e_c00065{left:284.800000pt;}
.xc2_c00065{left:285.866667pt;}
.x9_c00065{left:287.066667pt;}
.xb5_c00065{left:289.600000pt;}
.x2f_c00065{left:291.066667pt;}
.x10c_c00065{left:293.600000pt;}
.xfd_c00065{left:294.800000pt;}
.x9b_c00065{left:298.533333pt;}
.x75_c00065{left:301.466667pt;}
.x7f_c00065{left:303.333333pt;}
.xa2_c00065{left:305.333333pt;}
.x30_c00065{left:306.400000pt;}
.x101_c00065{left:307.466667pt;}
.x4e_c00065{left:308.400000pt;}
.x14_c00065{left:310.666667pt;}
.xca_c00065{left:312.533333pt;}
.x10d_c00065{left:315.333333pt;}
.xa_c00065{left:316.533333pt;}
.xed_c00065{left:317.466667pt;}
.xb6_c00065{left:319.066667pt;}
.xce_c00065{left:320.133333pt;}
.xa3_c00065{left:322.266667pt;}
.xc3_c00065{left:324.266667pt;}
.x80_c00065{left:325.466667pt;}
.xd5_c00065{left:327.333333pt;}
.x1f_c00065{left:328.266667pt;}
.xfe_c00065{left:329.733333pt;}
.x47_c00065{left:331.866667pt;}
.x31_c00065{left:337.466667pt;}
.x2_c00065{left:338.933333pt;}
.x5c_c00065{left:340.000000pt;}
.xdd_c00065{left:341.333333pt;}
.x8d_c00065{left:343.066667pt;}
.x4f_c00065{left:344.933333pt;}
.xa9_c00065{left:346.400000pt;}
.x15_c00065{left:349.066667pt;}
.x3d_c00065{left:350.400000pt;}
.xb7_c00065{left:351.333333pt;}
.x9c_c00065{left:352.933333pt;}
.x67_c00065{left:356.133333pt;}
.xcb_c00065{left:358.000000pt;}
.xc4_c00065{left:359.733333pt;}
.xd6_c00065{left:361.200000pt;}
.x50_c00065{left:362.266667pt;}
.x20_c00065{left:364.400000pt;}
.x8e_c00065{left:366.133333pt;}
.x32_c00065{left:368.133333pt;}
.xaa_c00065{left:369.066667pt;}
.xad_c00065{left:371.600000pt;}
.xe6_c00065{left:373.066667pt;}
.x3e_c00065{left:377.600000pt;}
.x1_c00065{left:380.133333pt;}
.xb_c00065{left:381.866667pt;}
.x9d_c00065{left:383.066667pt;}
.xde_c00065{left:384.533333pt;}
.xd7_c00065{left:387.466667pt;}
.x33_c00065{left:390.533333pt;}
.xc5_c00065{left:391.466667pt;}
.xee_c00065{left:393.600000pt;}
.xcf_c00065{left:395.066667pt;}
.x76_c00065{left:396.933333pt;}
.x16_c00065{left:398.933333pt;}
.x5d_c00065{left:401.066667pt;}
.x81_c00065{left:403.200000pt;}
.x102_c00065{left:405.066667pt;}
.x51_c00065{left:408.933333pt;}
.x8f_c00065{left:410.666667pt;}
.x3_c00065{left:415.466667pt;}
.xf9_c00065{left:416.533333pt;}
.x34_c00065{left:418.666667pt;}
.xef_c00065{left:421.466667pt;}
.xd8_c00065{left:422.400000pt;}
.xab_c00065{left:425.333333pt;}
.xa4_c00065{left:426.266667pt;}
.xb9_c00065{left:427.866667pt;}
.x10e_c00065{left:429.333333pt;}
.x21_c00065{left:431.333333pt;}
.xc_c00065{left:433.333333pt;}
.x52_c00065{left:434.266667pt;}
.x3f_c00065{left:436.533333pt;}
.x17_c00065{left:437.600000pt;}
.xd0_c00065{left:438.666667pt;}
.xe4_c00065{left:440.400000pt;}
.x82_c00065{left:441.600000pt;}
.x77_c00065{left:443.333333pt;}
.x90_c00065{left:444.266667pt;}
.x5e_c00065{left:445.866667pt;}
.xba_c00065{left:446.800000pt;}
.xac_c00065{left:448.000000pt;}
.x68_c00065{left:448.933333pt;}
.x53_c00065{left:450.000000pt;}
.x9e_c00065{left:452.933333pt;}
.x18_c00065{left:455.466667pt;}
.x83_c00065{left:457.333333pt;}
.xf0_c00065{left:459.600000pt;}
.x5f_c00065{left:464.133333pt;}
.x69_c00065{left:466.533333pt;}
.x78_c00065{left:469.866667pt;}
.xd1_c00065{left:473.200000pt;}
.x54_c00065{left:475.333333pt;}
.xf1_c00065{left:477.466667pt;}
.xf5_c00065{left:480.400000pt;}
.xc6_c00065{left:482.400000pt;}
.x35_c00065{left:484.000000pt;}
.x60_c00065{left:486.800000pt;}
.x84_c00065{left:488.400000pt;}
.x105_c00065{left:490.666667pt;}
.x91_c00065{left:491.600000pt;}
.x22_c00065{left:493.466667pt;}
.x40_c00065{left:498.533333pt;}
.x36_c00065{left:501.866667pt;}
.xd_c00065{left:503.466667pt;}
.x108_c00065{left:505.333333pt;}
.x23_c00065{left:508.800000pt;}
.x55_c00065{left:512.133333pt;}
.xf6_c00065{left:516.533333pt;}
.xbb_c00065{left:517.600000pt;}
.xe7_c00065{left:519.200000pt;}
.xe_c00065{left:520.133333pt;}
.x24_c00065{left:521.866667pt;}
.x37_c00065{left:524.933333pt;}
.xd9_c00065{left:528.000000pt;}
.x41_c00065{left:529.866667pt;}
.x92_c00065{left:533.200000pt;}
.x79_c00065{left:534.266667pt;}
.x10f_c00065{left:535.600000pt;}
.xae_c00065{left:537.200000pt;}
.xd2_c00065{left:539.733333pt;}
.x6a_c00065{left:541.466667pt;}
.x25_c00065{left:544.266667pt;}
.x19_c00065{left:547.733333pt;}
.xda_c00065{left:548.800000pt;}
.x85_c00065{left:554.666667pt;}
.xa5_c00065{left:557.466667pt;}
.x38_c00065{left:559.866667pt;}
.xaf_c00065{left:561.866667pt;}
.x110_c00065{left:563.733333pt;}
.xdf_c00065{left:565.333333pt;}
.xb8_c00065{left:569.866667pt;}
.xbc_c00065{left:575.200000pt;}
.x111_c00065{left:576.533333pt;}
.x6b_c00065{left:577.600000pt;}
.x9f_c00065{left:579.466667pt;}
.xf_c00065{left:580.933333pt;}
.x61_c00065{left:582.533333pt;}
.x26_c00065{left:583.600000pt;}
.x7a_c00065{left:587.466667pt;}
.x6c_c00065{left:589.066667pt;}
.x56_c00065{left:591.866667pt;}
.x106_c00065{left:594.666667pt;}
.xf2_c00065{left:597.733333pt;}
.x39_c00065{left:603.333333pt;}
.x10_c00065{left:607.866667pt;}
.x27_c00065{left:610.800000pt;}
.x6d_c00065{left:611.733333pt;}
.x57_c00065{left:612.933333pt;}
.xcc_c00065{left:614.800000pt;}
.x62_c00065{left:617.066667pt;}
.xff_c00065{left:620.800000pt;}
.x42_c00065{left:622.933333pt;}
.x7b_c00065{left:624.533333pt;}
.x86_c00065{left:626.400000pt;}
.x28_c00065{left:628.133333pt;}
.x6e_c00065{left:629.600000pt;}
.xb0_c00065{left:630.933333pt;}
.xa6_c00065{left:632.933333pt;}
.xf7_c00065{left:636.400000pt;}
.x43_c00065{left:638.666667pt;}
.x100_c00065{left:643.466667pt;}
.xa0_c00065{left:647.200000pt;}
.xfa_c00065{left:648.133333pt;}
.x93_c00065{left:649.066667pt;}
.x29_c00065{left:650.800000pt;}
.x44_c00065{left:654.666667pt;}
.x63_c00065{left:658.666667pt;}
.x6f_c00065{left:659.733333pt;}
.xbd_c00065{left:665.066667pt;}
.x94_c00065{left:666.000000pt;}
.xfb_c00065{left:667.333333pt;}
.xd3_c00065{left:668.666667pt;}
.x109_c00065{left:671.066667pt;}
.x11_c00065{left:672.533333pt;}
.x87_c00065{left:673.466667pt;}
.xc7_c00065{left:674.400000pt;}
.xe0_c00065{left:675.333333pt;}
}





/* 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_c00066 {
    display:none;
  }
  .loading-indicator_c00066.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00066 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_c00066 { 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_c00066" -> "#page-container .classname_c00066")
 */
.pf_c00066 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00066 { /* 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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00066 { /* 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_c00066 { /* 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_c00066 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00066 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00066 {overflow:visible;}
  }
}
.c_c00066 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00066 { /* 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_c00066:after { /* webkit #35443 */
  content: '';
}
.t_c00066:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00066 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 */
}
.__c00066 { /* 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_c00066 { /* info for Javascript */
  display:none;
}
.l_c00066 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00066 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00066 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00066: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_c00066 {
    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_c00066.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00066.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_c00066 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00066{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00066;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.000000;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;}
.m51_c00066{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00066{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00066{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m52_c00066{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m99_c00066{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mb_c00066{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00066{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00066{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00066{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m81_c00066{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00066{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00066{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m75_c00066{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00066{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m87_c00066{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00066{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00066{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00066{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m68_c00066{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m64_c00066{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m77_c00066{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00066{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m96_c00066{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00066{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m22_c00066{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m88_c00066{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00066{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00066{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m50_c00066{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00066{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00066{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00066{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m76_c00066{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m45_c00066{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m78_c00066{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5_c00066{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00066{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00066{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m80_c00066{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00066{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00066{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m42_c00066{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m73_c00066{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m65_c00066{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00066{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m39_c00066{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00066{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00066{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m26_c00066{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00066{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00066{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m28_c00066{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m98_c00066{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m25_c00066{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m34_c00066{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m61_c00066{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00066{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m70_c00066{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00066{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m57_c00066{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00066{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m94_c00066{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m13_c00066{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m97_c00066{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00066{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m83_c00066{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m36_c00066{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00066{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00066{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m23_c00066{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00066{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00066{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m47_c00066{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00066{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00066{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10_c00066{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00066{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m14_c00066{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m82_c00066{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m27_c00066{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c00066{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m24_c00066{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma_c00066{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00066{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m40_c00066{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m91_c00066{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m44_c00066{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m60_c00066{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00066{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00066{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00066{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00066{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m35_c00066{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m69_c00066{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m37_c00066{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m15_c00066{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00066{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mf_c00066{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00066{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m84_c00066{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m55_c00066{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00066{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m63_c00066{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00066{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m72_c00066{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m59_c00066{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00066{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m20_c00066{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m86_c00066{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00066{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00066{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m66_c00066{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m89_c00066{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m95_c00066{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00066{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00066{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m79_c00066{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m43_c00066{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00066{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m58_c00066{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21_c00066{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00066{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m33_c00066{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m56_c00066{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00066{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12_c00066{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m11_c00066{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00066{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00066{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m29_c00066{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9_c00066{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00066{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m74_c00066{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md_c00066{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m48_c00066{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m67_c00066{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00066{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00066{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00066{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m92_c00066{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m93_c00066{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00066{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m31_c00066{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00066{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00066{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00066{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m54_c00066{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00066{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00066{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00066{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00066{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m53_c00066{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m46_c00066{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00066{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m49_c00066{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00066{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m19_c00066{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00066{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1_c00066{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.me_c00066{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00066{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m7_c00066{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m30_c00066{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00066{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.v0_c00066{vertical-align:0.000000px;}
.ls0_c00066{letter-spacing:0.000000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{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__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00066{word-spacing:-6.363636px;}
.ws7_c00066{word-spacing:-5.441176px;}
.wsa_c00066{word-spacing:0.000000px;}
.ws4_c00066{word-spacing:0.277778px;}
.ws5_c00066{word-spacing:5.121951px;}
.ws8_c00066{word-spacing:5.405405px;}
.ws1_c00066{word-spacing:7.857143px;}
.ws2_c00066{word-spacing:8.611111px;}
.ws3_c00066{word-spacing:9.722222px;}
.ws0_c00066{word-spacing:12.205882px;}
.ws6_c00066{word-spacing:19.722222px;}
._0_c00066{width:26.617647px;}
.fc0_c00066{color:transparent;}
.fs0_c00066{font-size:54.000000px;}
.fs1_c00066{font-size:60.000000px;}
.y0_c00066{bottom:0.000000px;}
.y2c_c00066{bottom:144.000000px;}
.y2b_c00066{bottom:189.450000px;}
.y2a_c00066{bottom:209.250000px;}
.y29_c00066{bottom:229.050000px;}
.y28_c00066{bottom:249.150000px;}
.y27_c00066{bottom:269.250000px;}
.y26_c00066{bottom:289.050000px;}
.y25_c00066{bottom:309.150000px;}
.y24_c00066{bottom:329.250000px;}
.y23_c00066{bottom:349.050000px;}
.y22_c00066{bottom:368.850000px;}
.y21_c00066{bottom:388.950000px;}
.y20_c00066{bottom:408.750000px;}
.y1f_c00066{bottom:428.850000px;}
.y1e_c00066{bottom:448.650000px;}
.y1d_c00066{bottom:468.750000px;}
.y1c_c00066{bottom:488.250000px;}
.y1b_c00066{bottom:508.350000px;}
.y1a_c00066{bottom:528.150000px;}
.y19_c00066{bottom:547.950000px;}
.y18_c00066{bottom:568.050000px;}
.y17_c00066{bottom:587.850000px;}
.y16_c00066{bottom:607.800000px;}
.y15_c00066{bottom:627.300000px;}
.y14_c00066{bottom:647.100000px;}
.y13_c00066{bottom:666.900000px;}
.y12_c00066{bottom:687.000000px;}
.y11_c00066{bottom:706.800000px;}
.y10_c00066{bottom:726.900000px;}
.yf_c00066{bottom:746.700000px;}
.ye_c00066{bottom:766.500000px;}
.yd_c00066{bottom:786.600000px;}
.yc_c00066{bottom:806.400000px;}
.yb_c00066{bottom:826.200000px;}
.ya_c00066{bottom:845.100000px;}
.y9_c00066{bottom:865.950000px;}
.y8_c00066{bottom:885.750000px;}
.y7_c00066{bottom:905.850000px;}
.y6_c00066{bottom:925.650000px;}
.y5_c00066{bottom:945.450000px;}
.y4_c00066{bottom:965.550000px;}
.y3_c00066{bottom:985.650000px;}
.y2_c00066{bottom:1005.450000px;}
.y1_c00066{bottom:1044.000000px;}
.h2_c00066{height:54.000000px;}
.h3_c00066{height:60.000000px;}
.h1_c00066{height:1167.000000px;}
.h0_c00066{height:1167.119934px;}
.w0_c00066{width:913.320007px;}
.w1_c00066{width:913.500000px;}
.x0_c00066{left:0.000000px;}
.x36_c00066{left:140.850000px;}
.x1_c00066{left:142.200000px;}
.x101_c00066{left:143.550000px;}
.x70_c00066{left:156.600000px;}
.xa6_c00066{left:162.450000px;}
.xfa_c00066{left:165.450000px;}
.x56_c00066{left:167.850000px;}
.xde_c00066{left:171.900000px;}
.x65_c00066{left:173.100000px;}
.x106_c00066{left:174.750000px;}
.xd2_c00066{left:179.250000px;}
.x115_c00066{left:181.050000px;}
.x12_c00066{left:183.600000px;}
.x49_c00066{left:185.400000px;}
.x1f_c00066{left:187.950000px;}
.x37_c00066{left:189.450000px;}
.xa7_c00066{left:190.500000px;}
.xdf_c00066{left:193.800000px;}
.x57_c00066{left:196.650000px;}
.x126_c00066{left:201.150000px;}
.x105_c00066{left:202.500000px;}
.x66_c00066{left:205.800000px;}
.x20_c00066{left:208.500000px;}
.x4_c00066{left:210.600000px;}
.xb9_c00066{left:211.800000px;}
.xb1_c00066{left:213.450000px;}
.xc0_c00066{left:215.550000px;}
.x38_c00066{left:217.200000px;}
.xf2_c00066{left:218.250000px;}
.x8d_c00066{left:220.950000px;}
.x11f_c00066{left:224.100000px;}
.x71_c00066{left:225.300000px;}
.xe0_c00066{left:228.300000px;}
.x7a_c00066{left:230.250000px;}
.xe8_c00066{left:231.600000px;}
.xd3_c00066{left:233.250000px;}
.xee_c00066{left:234.750000px;}
.xc7_c00066{left:236.100000px;}
.x9c_c00066{left:240.000000px;}
.xb2_c00066{left:241.200000px;}
.x21_c00066{left:243.000000px;}
.xc1_c00066{left:245.100000px;}
.x12b_c00066{left:246.300000px;}
.x39_c00066{left:248.550000px;}
.x117_c00066{left:249.600000px;}
.x8e_c00066{left:252.600000px;}
.x109_c00066{left:254.850000px;}
.x82_c00066{left:256.650000px;}
.xe9_c00066{left:258.600000px;}
.x5_c00066{left:261.000000px;}
.xd4_c00066{left:262.050000px;}
.x4a_c00066{left:263.100000px;}
.x102_c00066{left:264.450000px;}
.x7b_c00066{left:266.550000px;}
.x13_c00066{left:269.700000px;}
.x10b_c00066{left:272.850000px;}
.x58_c00066{left:274.800000px;}
.xcb_c00066{left:277.950000px;}
.x67_c00066{left:279.900000px;}
.x7c_c00066{left:284.550000px;}
.x72_c00066{left:285.750000px;}
.x4b_c00066{left:287.550000px;}
.xf3_c00066{left:290.250000px;}
.x3a_c00066{left:293.250000px;}
.x2c_c00066{left:295.200000px;}
.x68_c00066{left:297.150000px;}
.x103_c00066{left:298.950000px;}
.x96_c00066{left:301.650000px;}
.x14_c00066{left:302.850000px;}
.xa8_c00066{left:304.650000px;}
.x6_c00066{left:306.300000px;}
.x11b_c00066{left:307.950000px;}
.xd5_c00066{left:312.150000px;}
.x9d_c00066{left:313.500000px;}
.x3b_c00066{left:314.850000px;}
.x5d_c00066{left:316.800000px;}
.x7_c00066{left:317.850000px;}
.xf4_c00066{left:319.800000px;}
.x111_c00066{left:321.300000px;}
.x116_c00066{left:324.300000px;}
.x10a_c00066{left:327.150000px;}
.xdc_c00066{left:330.150000px;}
.x4c_c00066{left:331.800000px;}
.x9e_c00066{left:333.600000px;}
.x7d_c00066{left:334.950000px;}
.xfb_c00066{left:336.900000px;}
.xa9_c00066{left:338.550000px;}
.x118_c00066{left:339.600000px;}
.x22_c00066{left:343.800000px;}
.x12c_c00066{left:346.050000px;}
.x5e_c00066{left:347.700000px;}
.x15_c00066{left:349.950000px;}
.x8_c00066{left:354.600000px;}
.xd6_c00066{left:357.150000px;}
.x3c_c00066{left:360.150000px;}
.xc2_c00066{left:361.350000px;}
.xaa_c00066{left:363.000000px;}
.x120_c00066{left:365.550000px;}
.x73_c00066{left:366.900000px;}
.xcc_c00066{left:367.950000px;}
.x4d_c00066{left:369.300000px;}
.x23_c00066{left:372.900000px;}
.xb3_c00066{left:374.250000px;}
.x127_c00066{left:376.050000px;}
.xfc_c00066{left:380.850000px;}
.xba_c00066{left:382.800000px;}
.xe1_c00066{left:384.300000px;}
.x97_c00066{left:385.500000px;}
.x2_c00066{left:388.800000px;}
.xf5_c00066{left:390.000000px;}
.x3d_c00066{left:391.500000px;}
.xc3_c00066{left:394.050000px;}
.x83_c00066{left:395.550000px;}
.x5f_c00066{left:397.350000px;}
.x8f_c00066{left:398.550000px;}
.x98_c00066{left:403.500000px;}
.x7e_c00066{left:408.000000px;}
.x2d_c00066{left:410.700000px;}
.x4e_c00066{left:411.750000px;}
.xe2_c00066{left:413.100000px;}
.xab_c00066{left:414.450000px;}
.x90_c00066{left:415.800000px;}
.x9_c00066{left:417.300000px;}
.x9f_c00066{left:423.600000px;}
.x16_c00066{left:424.800000px;}
.xdd_c00066{left:426.750000px;}
.x7f_c00066{left:428.550000px;}
.x3e_c00066{left:433.200000px;}
.x24_c00066{left:436.200000px;}
.xef_c00066{left:437.550000px;}
.xea_c00066{left:438.900000px;}
.xa_c00066{left:440.400000px;}
.x2e_c00066{left:443.100000px;}
.x17_c00066{left:444.300000px;}
.x4f_c00066{left:446.250000px;}
.x121_c00066{left:449.850000px;}
.x74_c00066{left:451.200000px;}
.x128_c00066{left:453.450000px;}
.xcd_c00066{left:455.100000px;}
.x69_c00066{left:458.700000px;}
.x99_c00066{left:460.050000px;}
.x84_c00066{left:463.650000px;}
.xa0_c00066{left:465.300000px;}
.x59_c00066{left:466.800000px;}
.xac_c00066{left:469.200000px;}
.xbb_c00066{left:470.250000px;}
.x18_c00066{left:472.800000px;}
.x3f_c00066{left:473.850000px;}
.x60_c00066{left:477.000000px;}
.xf6_c00066{left:478.200000px;}
.x91_c00066{left:481.050000px;}
.x80_c00066{left:483.000000px;}
.x9a_c00066{left:485.550000px;}
.x3_c00066{left:487.500000px;}
.xeb_c00066{left:489.000000px;}
.x129_c00066{left:490.500000px;}
.xc8_c00066{left:492.450000px;}
.x40_c00066{left:493.650000px;}
.x85_c00066{left:495.000000px;}
.xa1_c00066{left:497.700000px;}
.x50_c00066{left:499.950000px;}
.x112_c00066{left:501.450000px;}
.xbc_c00066{left:504.150000px;}
.x92_c00066{left:506.250000px;}
.x75_c00066{left:507.300000px;}
.xec_c00066{left:509.850000px;}
.x6a_c00066{left:511.650000px;}
.x11c_c00066{left:513.150000px;}
.xd7_c00066{left:515.250000px;}
.x86_c00066{left:516.300000px;}
.xa2_c00066{left:518.250000px;}
.xb_c00066{left:519.300000px;}
.x12d_c00066{left:520.950000px;}
.x19_c00066{left:522.450000px;}
.x61_c00066{left:523.800000px;}
.xc9_c00066{left:526.350000px;}
.x76_c00066{left:527.400000px;}
.x25_c00066{left:528.750000px;}
.xce_c00066{left:529.950000px;}
.x41_c00066{left:531.750000px;}
.x122_c00066{left:534.000000px;}
.x10c_c00066{left:536.400000px;}
.x104_c00066{left:538.350000px;}
.xb4_c00066{left:541.200000px;}
.xca_c00066{left:544.350000px;}
.x87_c00066{left:546.150000px;}
.x2f_c00066{left:547.500000px;}
.x107_c00066{left:548.550000px;}
.x6b_c00066{left:549.750000px;}
.x26_c00066{left:551.850000px;}
.xbd_c00066{left:554.250000px;}
.x123_c00066{left:555.300000px;}
.xc_c00066{left:556.800000px;}
.xf0_c00066{left:560.400000px;}
.x42_c00066{left:563.100000px;}
.xb5_c00066{left:567.150000px;}
.x30_c00066{left:569.850000px;}
.xe3_c00066{left:571.800000px;}
.xd8_c00066{left:573.600000px;}
.x51_c00066{left:575.250000px;}
.xd_c00066{left:576.900000px;}
.x1a_c00066{left:578.550000px;}
.x27_c00066{left:579.600000px;}
.x124_c00066{left:580.800000px;}
.xa3_c00066{left:582.300000px;}
.x88_c00066{left:583.950000px;}
.x62_c00066{left:585.750000px;}
.x31_c00066{left:587.550000px;}
.x6c_c00066{left:589.350000px;}
.x43_c00066{left:592.200000px;}
.x93_c00066{left:595.950000px;}
.x10d_c00066{left:600.450000px;}
.xbe_c00066{left:602.850000px;}
.xad_c00066{left:604.500000px;}
.xe4_c00066{left:607.800000px;}
.x9b_c00066{left:609.300000px;}
.xd9_c00066{left:612.900000px;}
.xc4_c00066{left:614.400000px;}
.x52_c00066{left:620.250000px;}
.x5a_c00066{left:622.200000px;}
.xe5_c00066{left:625.500000px;}
.x113_c00066{left:628.200000px;}
.xe_c00066{left:629.400000px;}
.x12e_c00066{left:631.500000px;}
.x1b_c00066{left:634.350000px;}
.x53_c00066{left:637.950000px;}
.xae_c00066{left:639.000000px;}
.x32_c00066{left:640.500000px;}
.x77_c00066{left:641.550000px;}
.xc5_c00066{left:643.500000px;}
.x119_c00066{left:645.150000px;}
.x89_c00066{left:646.200000px;}
.xda_c00066{left:647.400000px;}
.x114_c00066{left:649.050000px;}
.x10e_c00066{left:650.100000px;}
.x6d_c00066{left:652.650000px;}
.x28_c00066{left:657.300000px;}
.xfd_c00066{left:659.100000px;}
.xf7_c00066{left:660.450000px;}
.xe6_c00066{left:661.800000px;}
.x44_c00066{left:663.150000px;}
.x11d_c00066{left:664.500000px;}
.x54_c00066{left:665.700000px;}
.xb6_c00066{left:667.950000px;}
.xcf_c00066{left:669.600000px;}
.x6e_c00066{left:671.400000px;}
.x108_c00066{left:673.050000px;}
.xa4_c00066{left:678.000000px;}
.xfe_c00066{left:679.200000px;}
.xc6_c00066{left:681.000000px;}
.xed_c00066{left:682.200000px;}
.x45_c00066{left:684.000000px;}
.xf_c00066{left:685.500000px;}
.x63_c00066{left:687.600000px;}
.xf8_c00066{left:688.950000px;}
.x8a_c00066{left:691.950000px;}
.xdb_c00066{left:694.950000px;}
.x94_c00066{left:696.750000px;}
.x12a_c00066{left:698.550000px;}
.x46_c00066{left:699.900000px;}
.x78_c00066{left:700.950000px;}
.x29_c00066{left:702.300000px;}
.x1c_c00066{left:706.650000px;}
.xf1_c00066{left:708.450000px;}
.xb7_c00066{left:711.150000px;}
.x81_c00066{left:713.100000px;}
.x33_c00066{left:716.100000px;}
.x8b_c00066{left:717.900000px;}
.xe7_c00066{left:719.100000px;}
.x11e_c00066{left:721.350000px;}
.xaf_c00066{left:722.550000px;}
.x2a_c00066{left:726.000000px;}
.x1d_c00066{left:728.250000px;}
.xd0_c00066{left:731.550000px;}
.xb8_c00066{left:733.500000px;}
.x5b_c00066{left:735.600000px;}
.x34_c00066{left:736.950000px;}
.x47_c00066{left:739.500000px;}
.xb0_c00066{left:740.850000px;}
.x10f_c00066{left:742.500000px;}
.xff_c00066{left:745.800000px;}
.xa5_c00066{left:747.450000px;}
.x95_c00066{left:751.050000px;}
.xf9_c00066{left:752.700000px;}
.x6f_c00066{left:754.500000px;}
.x10_c00066{left:756.750000px;}
.x2b_c00066{left:758.700000px;}
.x11a_c00066{left:760.200000px;}
.x55_c00066{left:762.150000px;}
.x35_c00066{left:765.750000px;}
.x5c_c00066{left:768.300000px;}
.xd1_c00066{left:769.650000px;}
.x79_c00066{left:771.450000px;}
.x12f_c00066{left:773.250000px;}
.x100_c00066{left:777.150000px;}
.x1e_c00066{left:780.750000px;}
.x64_c00066{left:783.750000px;}
.x11_c00066{left:785.850000px;}
.xbf_c00066{left:787.950000px;}
.x8c_c00066{left:790.950000px;}
.x48_c00066{left:794.250000px;}
.x125_c00066{left:797.100000px;}
.x110_c00066{left:806.250000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws9_c00066{word-spacing:-5.656566pt;}
.ws7_c00066{word-spacing:-4.836601pt;}
.wsa_c00066{word-spacing:0.000000pt;}
.ws4_c00066{word-spacing:0.246914pt;}
.ws5_c00066{word-spacing:4.552846pt;}
.ws8_c00066{word-spacing:4.804805pt;}
.ws1_c00066{word-spacing:6.984127pt;}
.ws2_c00066{word-spacing:7.654321pt;}
.ws3_c00066{word-spacing:8.641975pt;}
.ws0_c00066{word-spacing:10.849673pt;}
.ws6_c00066{word-spacing:17.530864pt;}
._0_c00066{width:23.660131pt;}
.fs0_c00066{font-size:48.000000pt;}
.fs1_c00066{font-size:53.333333pt;}
.y0_c00066{bottom:0.000000pt;}
.y2c_c00066{bottom:128.000000pt;}
.y2b_c00066{bottom:168.400000pt;}
.y2a_c00066{bottom:186.000000pt;}
.y29_c00066{bottom:203.600000pt;}
.y28_c00066{bottom:221.466667pt;}
.y27_c00066{bottom:239.333333pt;}
.y26_c00066{bottom:256.933333pt;}
.y25_c00066{bottom:274.800000pt;}
.y24_c00066{bottom:292.666667pt;}
.y23_c00066{bottom:310.266667pt;}
.y22_c00066{bottom:327.866667pt;}
.y21_c00066{bottom:345.733333pt;}
.y20_c00066{bottom:363.333333pt;}
.y1f_c00066{bottom:381.200000pt;}
.y1e_c00066{bottom:398.800000pt;}
.y1d_c00066{bottom:416.666667pt;}
.y1c_c00066{bottom:434.000000pt;}
.y1b_c00066{bottom:451.866667pt;}
.y1a_c00066{bottom:469.466667pt;}
.y19_c00066{bottom:487.066667pt;}
.y18_c00066{bottom:504.933333pt;}
.y17_c00066{bottom:522.533333pt;}
.y16_c00066{bottom:540.266667pt;}
.y15_c00066{bottom:557.600000pt;}
.y14_c00066{bottom:575.200000pt;}
.y13_c00066{bottom:592.800000pt;}
.y12_c00066{bottom:610.666667pt;}
.y11_c00066{bottom:628.266667pt;}
.y10_c00066{bottom:646.133333pt;}
.yf_c00066{bottom:663.733333pt;}
.ye_c00066{bottom:681.333333pt;}
.yd_c00066{bottom:699.200000pt;}
.yc_c00066{bottom:716.800000pt;}
.yb_c00066{bottom:734.400000pt;}
.ya_c00066{bottom:751.200000pt;}
.y9_c00066{bottom:769.733333pt;}
.y8_c00066{bottom:787.333333pt;}
.y7_c00066{bottom:805.200000pt;}
.y6_c00066{bottom:822.800000pt;}
.y5_c00066{bottom:840.400000pt;}
.y4_c00066{bottom:858.266667pt;}
.y3_c00066{bottom:876.133333pt;}
.y2_c00066{bottom:893.733333pt;}
.y1_c00066{bottom:928.000000pt;}
.h2_c00066{height:48.000000pt;}
.h3_c00066{height:53.333333pt;}
.h1_c00066{height:1037.333333pt;}
.h0_c00066{height:1037.439941pt;}
.w0_c00066{width:811.840007pt;}
.w1_c00066{width:812.000000pt;}
.x0_c00066{left:0.000000pt;}
.x36_c00066{left:125.200000pt;}
.x1_c00066{left:126.400000pt;}
.x101_c00066{left:127.600000pt;}
.x70_c00066{left:139.200000pt;}
.xa6_c00066{left:144.400000pt;}
.xfa_c00066{left:147.066667pt;}
.x56_c00066{left:149.200000pt;}
.xde_c00066{left:152.800000pt;}
.x65_c00066{left:153.866667pt;}
.x106_c00066{left:155.333333pt;}
.xd2_c00066{left:159.333333pt;}
.x115_c00066{left:160.933333pt;}
.x12_c00066{left:163.200000pt;}
.x49_c00066{left:164.800000pt;}
.x1f_c00066{left:167.066667pt;}
.x37_c00066{left:168.400000pt;}
.xa7_c00066{left:169.333333pt;}
.xdf_c00066{left:172.266667pt;}
.x57_c00066{left:174.800000pt;}
.x126_c00066{left:178.800000pt;}
.x105_c00066{left:180.000000pt;}
.x66_c00066{left:182.933333pt;}
.x20_c00066{left:185.333333pt;}
.x4_c00066{left:187.200000pt;}
.xb9_c00066{left:188.266667pt;}
.xb1_c00066{left:189.733333pt;}
.xc0_c00066{left:191.600000pt;}
.x38_c00066{left:193.066667pt;}
.xf2_c00066{left:194.000000pt;}
.x8d_c00066{left:196.400000pt;}
.x11f_c00066{left:199.200000pt;}
.x71_c00066{left:200.266667pt;}
.xe0_c00066{left:202.933333pt;}
.x7a_c00066{left:204.666667pt;}
.xe8_c00066{left:205.866667pt;}
.xd3_c00066{left:207.333333pt;}
.xee_c00066{left:208.666667pt;}
.xc7_c00066{left:209.866667pt;}
.x9c_c00066{left:213.333333pt;}
.xb2_c00066{left:214.400000pt;}
.x21_c00066{left:216.000000pt;}
.xc1_c00066{left:217.866667pt;}
.x12b_c00066{left:218.933333pt;}
.x39_c00066{left:220.933333pt;}
.x117_c00066{left:221.866667pt;}
.x8e_c00066{left:224.533333pt;}
.x109_c00066{left:226.533333pt;}
.x82_c00066{left:228.133333pt;}
.xe9_c00066{left:229.866667pt;}
.x5_c00066{left:232.000000pt;}
.xd4_c00066{left:232.933333pt;}
.x4a_c00066{left:233.866667pt;}
.x102_c00066{left:235.066667pt;}
.x7b_c00066{left:236.933333pt;}
.x13_c00066{left:239.733333pt;}
.x10b_c00066{left:242.533333pt;}
.x58_c00066{left:244.266667pt;}
.xcb_c00066{left:247.066667pt;}
.x67_c00066{left:248.800000pt;}
.x7c_c00066{left:252.933333pt;}
.x72_c00066{left:254.000000pt;}
.x4b_c00066{left:255.600000pt;}
.xf3_c00066{left:258.000000pt;}
.x3a_c00066{left:260.666667pt;}
.x2c_c00066{left:262.400000pt;}
.x68_c00066{left:264.133333pt;}
.x103_c00066{left:265.733333pt;}
.x96_c00066{left:268.133333pt;}
.x14_c00066{left:269.200000pt;}
.xa8_c00066{left:270.800000pt;}
.x6_c00066{left:272.266667pt;}
.x11b_c00066{left:273.733333pt;}
.xd5_c00066{left:277.466667pt;}
.x9d_c00066{left:278.666667pt;}
.x3b_c00066{left:279.866667pt;}
.x5d_c00066{left:281.600000pt;}
.x7_c00066{left:282.533333pt;}
.xf4_c00066{left:284.266667pt;}
.x111_c00066{left:285.600000pt;}
.x116_c00066{left:288.266667pt;}
.x10a_c00066{left:290.800000pt;}
.xdc_c00066{left:293.466667pt;}
.x4c_c00066{left:294.933333pt;}
.x9e_c00066{left:296.533333pt;}
.x7d_c00066{left:297.733333pt;}
.xfb_c00066{left:299.466667pt;}
.xa9_c00066{left:300.933333pt;}
.x118_c00066{left:301.866667pt;}
.x22_c00066{left:305.600000pt;}
.x12c_c00066{left:307.600000pt;}
.x5e_c00066{left:309.066667pt;}
.x15_c00066{left:311.066667pt;}
.x8_c00066{left:315.200000pt;}
.xd6_c00066{left:317.466667pt;}
.x3c_c00066{left:320.133333pt;}
.xc2_c00066{left:321.200000pt;}
.xaa_c00066{left:322.666667pt;}
.x120_c00066{left:324.933333pt;}
.x73_c00066{left:326.133333pt;}
.xcc_c00066{left:327.066667pt;}
.x4d_c00066{left:328.266667pt;}
.x23_c00066{left:331.466667pt;}
.xb3_c00066{left:332.666667pt;}
.x127_c00066{left:334.266667pt;}
.xfc_c00066{left:338.533333pt;}
.xba_c00066{left:340.266667pt;}
.xe1_c00066{left:341.600000pt;}
.x97_c00066{left:342.666667pt;}
.x2_c00066{left:345.600000pt;}
.xf5_c00066{left:346.666667pt;}
.x3d_c00066{left:348.000000pt;}
.xc3_c00066{left:350.266667pt;}
.x83_c00066{left:351.600000pt;}
.x5f_c00066{left:353.200000pt;}
.x8f_c00066{left:354.266667pt;}
.x98_c00066{left:358.666667pt;}
.x7e_c00066{left:362.666667pt;}
.x2d_c00066{left:365.066667pt;}
.x4e_c00066{left:366.000000pt;}
.xe2_c00066{left:367.200000pt;}
.xab_c00066{left:368.400000pt;}
.x90_c00066{left:369.600000pt;}
.x9_c00066{left:370.933333pt;}
.x9f_c00066{left:376.533333pt;}
.x16_c00066{left:377.600000pt;}
.xdd_c00066{left:379.333333pt;}
.x7f_c00066{left:380.933333pt;}
.x3e_c00066{left:385.066667pt;}
.x24_c00066{left:387.733333pt;}
.xef_c00066{left:388.933333pt;}
.xea_c00066{left:390.133333pt;}
.xa_c00066{left:391.466667pt;}
.x2e_c00066{left:393.866667pt;}
.x17_c00066{left:394.933333pt;}
.x4f_c00066{left:396.666667pt;}
.x121_c00066{left:399.866667pt;}
.x74_c00066{left:401.066667pt;}
.x128_c00066{left:403.066667pt;}
.xcd_c00066{left:404.533333pt;}
.x69_c00066{left:407.733333pt;}
.x99_c00066{left:408.933333pt;}
.x84_c00066{left:412.133333pt;}
.xa0_c00066{left:413.600000pt;}
.x59_c00066{left:414.933333pt;}
.xac_c00066{left:417.066667pt;}
.xbb_c00066{left:418.000000pt;}
.x18_c00066{left:420.266667pt;}
.x3f_c00066{left:421.200000pt;}
.x60_c00066{left:424.000000pt;}
.xf6_c00066{left:425.066667pt;}
.x91_c00066{left:427.600000pt;}
.x80_c00066{left:429.333333pt;}
.x9a_c00066{left:431.600000pt;}
.x3_c00066{left:433.333333pt;}
.xeb_c00066{left:434.666667pt;}
.x129_c00066{left:436.000000pt;}
.xc8_c00066{left:437.733333pt;}
.x40_c00066{left:438.800000pt;}
.x85_c00066{left:440.000000pt;}
.xa1_c00066{left:442.400000pt;}
.x50_c00066{left:444.400000pt;}
.x112_c00066{left:445.733333pt;}
.xbc_c00066{left:448.133333pt;}
.x92_c00066{left:450.000000pt;}
.x75_c00066{left:450.933333pt;}
.xec_c00066{left:453.200000pt;}
.x6a_c00066{left:454.800000pt;}
.x11c_c00066{left:456.133333pt;}
.xd7_c00066{left:458.000000pt;}
.x86_c00066{left:458.933333pt;}
.xa2_c00066{left:460.666667pt;}
.xb_c00066{left:461.600000pt;}
.x12d_c00066{left:463.066667pt;}
.x19_c00066{left:464.400000pt;}
.x61_c00066{left:465.600000pt;}
.xc9_c00066{left:467.866667pt;}
.x76_c00066{left:468.800000pt;}
.x25_c00066{left:470.000000pt;}
.xce_c00066{left:471.066667pt;}
.x41_c00066{left:472.666667pt;}
.x122_c00066{left:474.666667pt;}
.x10c_c00066{left:476.800000pt;}
.x104_c00066{left:478.533333pt;}
.xb4_c00066{left:481.066667pt;}
.xca_c00066{left:483.866667pt;}
.x87_c00066{left:485.466667pt;}
.x2f_c00066{left:486.666667pt;}
.x107_c00066{left:487.600000pt;}
.x6b_c00066{left:488.666667pt;}
.x26_c00066{left:490.533333pt;}
.xbd_c00066{left:492.666667pt;}
.x123_c00066{left:493.600000pt;}
.xc_c00066{left:494.933333pt;}
.xf0_c00066{left:498.133333pt;}
.x42_c00066{left:500.533333pt;}
.xb5_c00066{left:504.133333pt;}
.x30_c00066{left:506.533333pt;}
.xe3_c00066{left:508.266667pt;}
.xd8_c00066{left:509.866667pt;}
.x51_c00066{left:511.333333pt;}
.xd_c00066{left:512.800000pt;}
.x1a_c00066{left:514.266667pt;}
.x27_c00066{left:515.200000pt;}
.x124_c00066{left:516.266667pt;}
.xa3_c00066{left:517.600000pt;}
.x88_c00066{left:519.066667pt;}
.x62_c00066{left:520.666667pt;}
.x31_c00066{left:522.266667pt;}
.x6c_c00066{left:523.866667pt;}
.x43_c00066{left:526.400000pt;}
.x93_c00066{left:529.733333pt;}
.x10d_c00066{left:533.733333pt;}
.xbe_c00066{left:535.866667pt;}
.xad_c00066{left:537.333333pt;}
.xe4_c00066{left:540.266667pt;}
.x9b_c00066{left:541.600000pt;}
.xd9_c00066{left:544.800000pt;}
.xc4_c00066{left:546.133333pt;}
.x52_c00066{left:551.333333pt;}
.x5a_c00066{left:553.066667pt;}
.xe5_c00066{left:556.000000pt;}
.x113_c00066{left:558.400000pt;}
.xe_c00066{left:559.466667pt;}
.x12e_c00066{left:561.333333pt;}
.x1b_c00066{left:563.866667pt;}
.x53_c00066{left:567.066667pt;}
.xae_c00066{left:568.000000pt;}
.x32_c00066{left:569.333333pt;}
.x77_c00066{left:570.266667pt;}
.xc5_c00066{left:572.000000pt;}
.x119_c00066{left:573.466667pt;}
.x89_c00066{left:574.400000pt;}
.xda_c00066{left:575.466667pt;}
.x114_c00066{left:576.933333pt;}
.x10e_c00066{left:577.866667pt;}
.x6d_c00066{left:580.133333pt;}
.x28_c00066{left:584.266667pt;}
.xfd_c00066{left:585.866667pt;}
.xf7_c00066{left:587.066667pt;}
.xe6_c00066{left:588.266667pt;}
.x44_c00066{left:589.466667pt;}
.x11d_c00066{left:590.666667pt;}
.x54_c00066{left:591.733333pt;}
.xb6_c00066{left:593.733333pt;}
.xcf_c00066{left:595.200000pt;}
.x6e_c00066{left:596.800000pt;}
.x108_c00066{left:598.266667pt;}
.xa4_c00066{left:602.666667pt;}
.xfe_c00066{left:603.733333pt;}
.xc6_c00066{left:605.333333pt;}
.xed_c00066{left:606.400000pt;}
.x45_c00066{left:608.000000pt;}
.xf_c00066{left:609.333333pt;}
.x63_c00066{left:611.200000pt;}
.xf8_c00066{left:612.400000pt;}
.x8a_c00066{left:615.066667pt;}
.xdb_c00066{left:617.733333pt;}
.x94_c00066{left:619.333333pt;}
.x12a_c00066{left:620.933333pt;}
.x46_c00066{left:622.133333pt;}
.x78_c00066{left:623.066667pt;}
.x29_c00066{left:624.266667pt;}
.x1c_c00066{left:628.133333pt;}
.xf1_c00066{left:629.733333pt;}
.xb7_c00066{left:632.133333pt;}
.x81_c00066{left:633.866667pt;}
.x33_c00066{left:636.533333pt;}
.x8b_c00066{left:638.133333pt;}
.xe7_c00066{left:639.200000pt;}
.x11e_c00066{left:641.200000pt;}
.xaf_c00066{left:642.266667pt;}
.x2a_c00066{left:645.333333pt;}
.x1d_c00066{left:647.333333pt;}
.xd0_c00066{left:650.266667pt;}
.xb8_c00066{left:652.000000pt;}
.x5b_c00066{left:653.866667pt;}
.x34_c00066{left:655.066667pt;}
.x47_c00066{left:657.333333pt;}
.xb0_c00066{left:658.533333pt;}
.x10f_c00066{left:660.000000pt;}
.xff_c00066{left:662.933333pt;}
.xa5_c00066{left:664.400000pt;}
.x95_c00066{left:667.600000pt;}
.xf9_c00066{left:669.066667pt;}
.x6f_c00066{left:670.666667pt;}
.x10_c00066{left:672.666667pt;}
.x2b_c00066{left:674.400000pt;}
.x11a_c00066{left:675.733333pt;}
.x55_c00066{left:677.466667pt;}
.x35_c00066{left:680.666667pt;}
.x5c_c00066{left:682.933333pt;}
.xd1_c00066{left:684.133333pt;}
.x79_c00066{left:685.733333pt;}
.x12f_c00066{left:687.333333pt;}
.x100_c00066{left:690.800000pt;}
.x1e_c00066{left:694.000000pt;}
.x64_c00066{left:696.666667pt;}
.x11_c00066{left:698.533333pt;}
.xbf_c00066{left:700.400000pt;}
.x8c_c00066{left:703.066667pt;}
.x48_c00066{left:706.000000pt;}
.x125_c00066{left:708.533333pt;}
.x110_c00066{left:716.666667pt;}
}





/* 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_c00067 {
    display:none;
  }
  .loading-indicator_c00067.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00067 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_c00067 { 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_c00067" -> "#page-container .classname_c00067")
 */
.pf_c00067 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00067 { /* 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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00067 { /* 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_c00067 { /* 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_c00067 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00067 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00067 {overflow:visible;}
  }
}
.c_c00067 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00067 { /* 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_c00067:after { /* webkit #35443 */
  content: '';
}
.t_c00067:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00067 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 */
}
.__c00067 { /* 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_c00067 { /* info for Javascript */
  display:none;
}
.l_c00067 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00067 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00067 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00067: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_c00067 {
    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_c00067.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00067.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_c00067 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00067{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00067;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.000000;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;}
.m3e_c00067{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m19_c00067{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00067{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00067{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m81_c00067{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00067{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m53_c00067{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5_c00067{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00067{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m41_c00067{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00067{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m65_c00067{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m50_c00067{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00067{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m88_c00067{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00067{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m96_c00067{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m14_c00067{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00067{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00067{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00067{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m76_c00067{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m98_c00067{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m51_c00067{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m93_c00067{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8_c00067{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m86_c00067{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m82_c00067{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m49_c00067{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00067{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m89_c00067{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m94_c00067{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00067{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00067{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m83_c00067{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00067{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m43_c00067{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m61_c00067{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00067{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00067{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m71_c00067{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m35_c00067{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00067{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00067{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m22_c00067{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00067{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m75_c00067{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00067{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00067{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m62_c00067{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00067{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4_c00067{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m90_c00067{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m31_c00067{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m44_c00067{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m57_c00067{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m47_c00067{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m55_c00067{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00067{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m34_c00067{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m37_c00067{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00067{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00067{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00067{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m78_c00067{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00067{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m54_c00067{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00067{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m48_c00067{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m13_c00067{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3_c00067{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m68_c00067{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m69_c00067{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m97_c00067{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00067{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m59_c00067{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00067{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00067{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00067{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00067{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00067{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00067{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00067{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00067{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00067{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m11_c00067{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7_c00067{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00067{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m67_c00067{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00067{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00067{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00067{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m25_c00067{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00067{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00067{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.me_c00067{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m73_c00067{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00067{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00067{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m32_c00067{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m28_c00067{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m45_c00067{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m64_c00067{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00067{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m30_c00067{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00067{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m52_c00067{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00067{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m91_c00067{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m27_c00067{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m18_c00067{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m58_c00067{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m6_c00067{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00067{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m24_c00067{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00067{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m23_c00067{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9_c00067{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc_c00067{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00067{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m60_c00067{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00067{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m72_c00067{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m40_c00067{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m42_c00067{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m16_c00067{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00067{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12_c00067{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00067{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m15_c00067{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m77_c00067{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00067{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20_c00067{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m56_c00067{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00067{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00067{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m92_c00067{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m66_c00067{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00067{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00067{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m21_c00067{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m46_c00067{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00067{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m26_c00067{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00067{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m29_c00067{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00067{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m79_c00067{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2_c00067{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mf_c00067{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m87_c00067{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m36_c00067{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m38_c00067{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m74_c00067{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00067{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00067{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00067{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00067{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m0_c00067{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00067{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00067{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m84_c00067{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m80_c00067{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00067{vertical-align:0.000000px;}
.ls0_c00067{letter-spacing:0.000000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{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__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00067{word-spacing:-10.138889px;}
.ws1_c00067{word-spacing:-7.500000px;}
.wsa_c00067{word-spacing:-5.454545px;}
.ws3_c00067{word-spacing:-5.277778px;}
.wsb_c00067{word-spacing:0.000000px;}
.ws7_c00067{word-spacing:4.722222px;}
.ws9_c00067{word-spacing:4.868421px;}
.ws0_c00067{word-spacing:5.000000px;}
.ws4_c00067{word-spacing:6.315789px;}
.ws2_c00067{word-spacing:6.388889px;}
.ws6_c00067{word-spacing:19.411765px;}
.ws8_c00067{word-spacing:19.722222px;}
.fc0_c00067{color:transparent;}
.fs0_c00067{font-size:54.000000px;}
.fs1_c00067{font-size:60.000000px;}
.y0_c00067{bottom:0.000000px;}
.y2d_c00067{bottom:149.850000px;}
.y2c_c00067{bottom:169.950000px;}
.y2b_c00067{bottom:190.050000px;}
.y2a_c00067{bottom:209.850000px;}
.y29_c00067{bottom:229.350000px;}
.y28_c00067{bottom:249.450000px;}
.y27_c00067{bottom:269.250000px;}
.y26_c00067{bottom:289.650000px;}
.y25_c00067{bottom:309.450000px;}
.y24_c00067{bottom:329.250000px;}
.y23_c00067{bottom:349.350000px;}
.y22_c00067{bottom:369.450000px;}
.y21_c00067{bottom:389.550000px;}
.y20_c00067{bottom:409.350000px;}
.y1f_c00067{bottom:429.450000px;}
.y1e_c00067{bottom:449.250000px;}
.y1d_c00067{bottom:469.050000px;}
.y1c_c00067{bottom:488.850000px;}
.y1b_c00067{bottom:508.650000px;}
.y1a_c00067{bottom:528.150000px;}
.y19_c00067{bottom:548.250000px;}
.y18_c00067{bottom:568.050000px;}
.y17_c00067{bottom:588.000000px;}
.y16_c00067{bottom:608.100000px;}
.y15_c00067{bottom:627.900000px;}
.y14_c00067{bottom:647.700000px;}
.y13_c00067{bottom:667.800000px;}
.y12_c00067{bottom:687.600000px;}
.y11_c00067{bottom:707.700000px;}
.y10_c00067{bottom:727.500000px;}
.yf_c00067{bottom:747.300000px;}
.ye_c00067{bottom:767.100000px;}
.yd_c00067{bottom:786.900000px;}
.yc_c00067{bottom:806.700000px;}
.yb_c00067{bottom:826.800000px;}
.ya_c00067{bottom:846.600000px;}
.y9_c00067{bottom:866.400000px;}
.y8_c00067{bottom:885.900000px;}
.y7_c00067{bottom:906.150000px;}
.y6_c00067{bottom:925.950000px;}
.y5_c00067{bottom:946.050000px;}
.y4_c00067{bottom:965.550000px;}
.y3_c00067{bottom:985.350000px;}
.y2_c00067{bottom:1005.450000px;}
.y1_c00067{bottom:1044.000000px;}
.h2_c00067{height:54.000000px;}
.h3_c00067{height:60.000000px;}
.h1_c00067{height:1167.000000px;}
.h0_c00067{height:1167.119934px;}
.w0_c00067{width:913.320007px;}
.w1_c00067{width:913.500000px;}
.x0_c00067{left:0.000000px;}
.x11_c00067{left:92.250000px;}
.xbe_c00067{left:93.750000px;}
.xf2_c00067{left:94.800000px;}
.x114_c00067{left:95.850000px;}
.x139_c00067{left:97.200000px;}
.xd6_c00067{left:106.800000px;}
.x124_c00067{left:113.850000px;}
.xc8_c00067{left:117.150000px;}
.xa8_c00067{left:118.650000px;}
.x91_c00067{left:119.850000px;}
.x3_c00067{left:123.150000px;}
.x83_c00067{left:125.400000px;}
.x11f_c00067{left:127.050000px;}
.xb1_c00067{left:129.450000px;}
.x45_c00067{left:130.650000px;}
.x39_c00067{left:133.200000px;}
.x11a_c00067{left:137.250000px;}
.x125_c00067{left:139.350000px;}
.x46_c00067{left:142.500000px;}
.x53_c00067{left:144.750000px;}
.x130_c00067{left:145.950000px;}
.xe7_c00067{left:148.200000px;}
.x9d_c00067{left:150.150000px;}
.xd7_c00067{left:151.800000px;}
.x1e_c00067{left:153.150000px;}
.x4_c00067{left:156.600000px;}
.x12_c00067{left:157.800000px;}
.xa9_c00067{left:159.300000px;}
.x2d_c00067{left:162.000000px;}
.x3a_c00067{left:165.300000px;}
.x47_c00067{left:168.750000px;}
.x84_c00067{left:170.400000px;}
.x1f_c00067{left:172.950000px;}
.x76_c00067{left:174.450000px;}
.x126_c00067{left:177.900000px;}
.xf7_c00067{left:180.900000px;}
.x61_c00067{left:184.050000px;}
.x54_c00067{left:186.150000px;}
.xb5_c00067{left:188.250000px;}
.x48_c00067{left:189.300000px;}
.xdf_c00067{left:190.950000px;}
.xb2_c00067{left:192.150000px;}
.x92_c00067{left:193.350000px;}
.x85_c00067{left:196.650000px;}
.x20_c00067{left:200.700000px;}
.xfe_c00067{left:201.750000px;}
.x77_c00067{left:203.250000px;}
.xd8_c00067{left:207.300000px;}
.x55_c00067{left:208.500000px;}
.x2e_c00067{left:209.550000px;}
.xbf_c00067{left:210.750000px;}
.xf8_c00067{left:212.250000px;}
.x93_c00067{left:213.450000px;}
.x5_c00067{left:215.250000px;}
.xe0_c00067{left:219.000000px;}
.xe8_c00067{left:220.500000px;}
.x120_c00067{left:221.700000px;}
.xee_c00067{left:222.750000px;}
.x86_c00067{left:226.500000px;}
.x78_c00067{left:228.150000px;}
.xdb_c00067{left:230.400000px;}
.xc0_c00067{left:232.350000px;}
.x6_c00067{left:234.750000px;}
.x62_c00067{left:236.250000px;}
.x49_c00067{left:239.400000px;}
.x10b_c00067{left:241.200000px;}
.x13_c00067{left:242.400000px;}
.x11b_c00067{left:246.750000px;}
.x3b_c00067{left:247.800000px;}
.x2f_c00067{left:251.250000px;}
.xce_c00067{left:254.100000px;}
.x6c_c00067{left:255.900000px;}
.x4a_c00067{left:257.700000px;}
.x117_c00067{left:259.350000px;}
.x10f_c00067{left:261.450000px;}
.x7_c00067{left:262.800000px;}
.xb6_c00067{left:263.850000px;}
.x102_c00067{left:265.500000px;}
.x3c_c00067{left:268.650000px;}
.x14_c00067{left:270.900000px;}
.x56_c00067{left:272.250000px;}
.xa0_c00067{left:276.600000px;}
.x94_c00067{left:278.250000px;}
.x7e_c00067{left:281.700000px;}
.x103_c00067{left:283.800000px;}
.x105_c00067{left:285.300000px;}
.xc1_c00067{left:286.350000px;}
.x21_c00067{left:287.850000px;}
.xf9_c00067{left:289.200000px;}
.x87_c00067{left:290.550000px;}
.xcf_c00067{left:293.700000px;}
.x10c_c00067{left:294.750000px;}
.x79_c00067{left:299.400000px;}
.x3d_c00067{left:303.150000px;}
.x6d_c00067{left:305.250000px;}
.x88_c00067{left:306.750000px;}
.x4b_c00067{left:308.100000px;}
.x30_c00067{left:309.900000px;}
.x15_c00067{left:311.250000px;}
.x57_c00067{left:312.600000px;}
.x8_c00067{left:313.950000px;}
.x95_c00067{left:317.550000px;}
.x22_c00067{left:318.750000px;}
.x13a_c00067{left:319.950000px;}
.x6e_c00067{left:323.550000px;}
.x9e_c00067{left:326.100000px;}
.xb3_c00067{left:327.150000px;}
.x131_c00067{left:328.950000px;}
.xdc_c00067{left:332.250000px;}
.x16_c00067{left:333.900000px;}
.x11c_c00067{left:334.950000px;}
.xe5_c00067{left:336.600000px;}
.xc9_c00067{left:341.550000px;}
.x58_c00067{left:343.200000px;}
.x121_c00067{left:344.400000px;}
.x31_c00067{left:346.950000px;}
.x23_c00067{left:348.300000px;}
.x132_c00067{left:349.500000px;}
.x7f_c00067{left:350.850000px;}
.x89_c00067{left:352.800000px;}
.x11d_c00067{left:354.450000px;}
.xaa_c00067{left:355.500000px;}
.xb7_c00067{left:357.150000px;}
.x127_c00067{left:358.950000px;}
.xd0_c00067{left:360.600000px;}
.xc2_c00067{left:364.800000px;}
.x106_c00067{left:366.000000px;}
.x13b_c00067{left:367.500000px;}
.xca_c00067{left:370.050000px;}
.x1_c00067{left:372.600000px;}
.x104_c00067{left:373.800000px;}
.xfa_c00067{left:374.850000px;}
.x4c_c00067{left:377.250000px;}
.x133_c00067{left:378.300000px;}
.x6f_c00067{left:379.650000px;}
.x3e_c00067{left:381.000000px;}
.x63_c00067{left:382.350000px;}
.x24_c00067{left:384.600000px;}
.x118_c00067{left:387.600000px;}
.x9_c00067{left:389.250000px;}
.xc3_c00067{left:393.300000px;}
.xb8_c00067{left:394.950000px;}
.x4d_c00067{left:397.050000px;}
.x11e_c00067{left:398.700000px;}
.x17_c00067{left:400.500000px;}
.x7a_c00067{left:402.750000px;}
.xa1_c00067{left:404.100000px;}
.xab_c00067{left:405.150000px;}
.x96_c00067{left:406.200000px;}
.x8a_c00067{left:408.600000px;}
.x64_c00067{left:409.650000px;}
.xd9_c00067{left:412.050000px;}
.x13c_c00067{left:413.550000px;}
.xb4_c00067{left:416.850000px;}
.xe9_c00067{left:418.200000px;}
.x32_c00067{left:419.700000px;}
.xe1_c00067{left:420.750000px;}
.x128_c00067{left:423.000000px;}
.x134_c00067{left:424.050000px;}
.x4e_c00067{left:427.650000px;}
.xb9_c00067{left:430.950000px;}
.x25_c00067{left:432.450000px;}
.x70_c00067{left:433.950000px;}
.x18_c00067{left:436.200000px;}
.x3f_c00067{left:438.600000px;}
.x65_c00067{left:442.350000px;}
.xf3_c00067{left:444.000000px;}
.xa2_c00067{left:445.500000px;}
.x97_c00067{left:446.850000px;}
.x8b_c00067{left:448.950000px;}
.x107_c00067{left:452.400000px;}
.x40_c00067{left:453.750000px;}
.x59_c00067{left:456.300000px;}
.xff_c00067{left:458.100000px;}
.xea_c00067{left:460.650000px;}
.x19_c00067{left:461.700000px;}
.xa3_c00067{left:463.200000px;}
.x4f_c00067{left:464.700000px;}
.xdd_c00067{left:466.950000px;}
.x9f_c00067{left:468.600000px;}
.x26_c00067{left:470.250000px;}
.xa_c00067{left:472.350000px;}
.x33_c00067{left:476.250000px;}
.x66_c00067{left:477.600000px;}
.xe2_c00067{left:479.850000px;}
.xcb_c00067{left:480.900000px;}
.x119_c00067{left:482.250000px;}
.x122_c00067{left:483.300000px;}
.x5a_c00067{left:484.350000px;}
.x7b_c00067{left:487.650000px;}
.xb_c00067{left:489.600000px;}
.xeb_c00067{left:492.000000px;}
.xba_c00067{left:493.350000px;}
.x12b_c00067{left:496.800000px;}
.x98_c00067{left:498.000000px;}
.xc4_c00067{left:499.050000px;}
.x27_c00067{left:500.850000px;}
.x67_c00067{left:503.100000px;}
.x10d_c00067{left:505.350000px;}
.x71_c00067{left:506.700000px;}
.x50_c00067{left:508.650000px;}
.x41_c00067{left:510.300000px;}
.x108_c00067{left:513.900000px;}
.x13e_c00067{left:515.550000px;}
.x8c_c00067{left:516.600000px;}
.x99_c00067{left:517.800000px;}
.x34_c00067{left:519.150000px;}
.x80_c00067{left:520.650000px;}
.x115_c00067{left:523.200000px;}
.xc_c00067{left:524.550000px;}
.xd1_c00067{left:527.700000px;}
.x51_c00067{left:528.750000px;}
.xf4_c00067{left:530.100000px;}
.xa4_c00067{left:532.650000px;}
.xfb_c00067{left:534.300000px;}
.x109_c00067{left:537.000000px;}
.x12f_c00067{left:538.500000px;}
.x1a_c00067{left:539.850000px;}
.x12c_c00067{left:543.600000px;}
.xac_c00067{left:545.100000px;}
.x13f_c00067{left:546.150000px;}
.x72_c00067{left:549.900000px;}
.x8d_c00067{left:552.600000px;}
.x13d_c00067{left:553.650000px;}
.xbb_c00067{left:556.350000px;}
.x1b_c00067{left:559.350000px;}
.x110_c00067{left:563.100000px;}
.x52_c00067{left:566.250000px;}
.x5b_c00067{left:567.450000px;}
.x135_c00067{left:570.600000px;}
.xc5_c00067{left:571.800000px;}
.x8e_c00067{left:574.950000px;}
.x28_c00067{left:577.500000px;}
.x7c_c00067{left:580.950000px;}
.x68_c00067{left:583.650000px;}
.x1c_c00067{left:584.850000px;}
.xec_c00067{left:587.100000px;}
.x5c_c00067{left:588.300000px;}
.xad_c00067{left:591.900000px;}
.x35_c00067{left:593.250000px;}
.x111_c00067{left:594.450000px;}
.xd2_c00067{left:595.800000px;}
.xef_c00067{left:597.450000px;}
.x136_c00067{left:598.650000px;}
.x29_c00067{left:600.600000px;}
.x73_c00067{left:602.850000px;}
.x8f_c00067{left:604.800000px;}
.xd_c00067{left:608.100000px;}
.x69_c00067{left:609.150000px;}
.x9a_c00067{left:611.400000px;}
.xd3_c00067{left:613.500000px;}
.xda_c00067{left:615.750000px;}
.xf5_c00067{left:617.100000px;}
.xae_c00067{left:620.700000px;}
.x140_c00067{left:622.200000px;}
.x5d_c00067{left:625.800000px;}
.x42_c00067{left:628.800000px;}
.x2a_c00067{left:630.450000px;}
.xe_c00067{left:631.500000px;}
.x112_c00067{left:633.300000px;}
.xfc_c00067{left:635.100000px;}
.x137_c00067{left:637.500000px;}
.xe3_c00067{left:641.100000px;}
.x7d_c00067{left:643.200000px;}
.x12d_c00067{left:644.400000px;}
.x10a_c00067{left:646.500000px;}
.x74_c00067{left:647.550000px;}
.x81_c00067{left:649.500000px;}
.xa5_c00067{left:651.900000px;}
.x5e_c00067{left:653.850000px;}
.xd4_c00067{left:655.650000px;}
.x138_c00067{left:657.300000px;}
.x36_c00067{left:658.800000px;}
.xbc_c00067{left:660.000000px;}
.x113_c00067{left:661.050000px;}
.xf0_c00067{left:662.550000px;}
.xc6_c00067{left:663.600000px;}
.xe4_c00067{left:669.600000px;}
.xcc_c00067{left:671.700000px;}
.x123_c00067{left:673.050000px;}
.x6a_c00067{left:674.250000px;}
.x37_c00067{left:677.550000px;}
.xed_c00067{left:680.400000px;}
.xfd_c00067{left:681.600000px;}
.xf_c00067{left:683.700000px;}
.xaf_c00067{left:685.800000px;}
.xd5_c00067{left:687.000000px;}
.x116_c00067{left:689.250000px;}
.x9b_c00067{left:690.900000px;}
.x90_c00067{left:693.300000px;}
.x2b_c00067{left:696.300000px;}
.xf6_c00067{left:697.350000px;}
.x5f_c00067{left:698.550000px;}
.xf1_c00067{left:700.650000px;}
.x9c_c00067{left:702.000000px;}
.x38_c00067{left:703.050000px;}
.x10_c00067{left:704.550000px;}
.xc7_c00067{left:706.050000px;}
.xcd_c00067{left:707.700000px;}
.xa6_c00067{left:708.750000px;}
.x12e_c00067{left:709.950000px;}
.x100_c00067{left:712.350000px;}
.x43_c00067{left:717.000000px;}
.x2c_c00067{left:719.700000px;}
.x129_c00067{left:722.250000px;}
.x60_c00067{left:726.600000px;}
.x75_c00067{left:728.550000px;}
.x82_c00067{left:730.200000px;}
.xe6_c00067{left:732.000000px;}
.x1d_c00067{left:735.300000px;}
.xbd_c00067{left:736.650000px;}
.x44_c00067{left:738.300000px;}
.x2_c00067{left:740.550000px;}
.x12a_c00067{left:742.050000px;}
.xde_c00067{left:744.600000px;}
.xb0_c00067{left:746.250000px;}
.xa7_c00067{left:747.300000px;}
.x101_c00067{left:750.150000px;}
.x10e_c00067{left:751.950000px;}
.x6b_c00067{left:755.250000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws5_c00067{word-spacing:-9.012346pt;}
.ws1_c00067{word-spacing:-6.666667pt;}
.wsa_c00067{word-spacing:-4.848485pt;}
.ws3_c00067{word-spacing:-4.691358pt;}
.wsb_c00067{word-spacing:0.000000pt;}
.ws7_c00067{word-spacing:4.197531pt;}
.ws9_c00067{word-spacing:4.327485pt;}
.ws0_c00067{word-spacing:4.444444pt;}
.ws4_c00067{word-spacing:5.614035pt;}
.ws2_c00067{word-spacing:5.679012pt;}
.ws6_c00067{word-spacing:17.254902pt;}
.ws8_c00067{word-spacing:17.530864pt;}
.fs0_c00067{font-size:48.000000pt;}
.fs1_c00067{font-size:53.333333pt;}
.y0_c00067{bottom:0.000000pt;}
.y2d_c00067{bottom:133.200000pt;}
.y2c_c00067{bottom:151.066667pt;}
.y2b_c00067{bottom:168.933333pt;}
.y2a_c00067{bottom:186.533333pt;}
.y29_c00067{bottom:203.866667pt;}
.y28_c00067{bottom:221.733333pt;}
.y27_c00067{bottom:239.333333pt;}
.y26_c00067{bottom:257.466667pt;}
.y25_c00067{bottom:275.066667pt;}
.y24_c00067{bottom:292.666667pt;}
.y23_c00067{bottom:310.533333pt;}
.y22_c00067{bottom:328.400000pt;}
.y21_c00067{bottom:346.266667pt;}
.y20_c00067{bottom:363.866667pt;}
.y1f_c00067{bottom:381.733333pt;}
.y1e_c00067{bottom:399.333333pt;}
.y1d_c00067{bottom:416.933333pt;}
.y1c_c00067{bottom:434.533333pt;}
.y1b_c00067{bottom:452.133333pt;}
.y1a_c00067{bottom:469.466667pt;}
.y19_c00067{bottom:487.333333pt;}
.y18_c00067{bottom:504.933333pt;}
.y17_c00067{bottom:522.666667pt;}
.y16_c00067{bottom:540.533333pt;}
.y15_c00067{bottom:558.133333pt;}
.y14_c00067{bottom:575.733333pt;}
.y13_c00067{bottom:593.600000pt;}
.y12_c00067{bottom:611.200000pt;}
.y11_c00067{bottom:629.066667pt;}
.y10_c00067{bottom:646.666667pt;}
.yf_c00067{bottom:664.266667pt;}
.ye_c00067{bottom:681.866667pt;}
.yd_c00067{bottom:699.466667pt;}
.yc_c00067{bottom:717.066667pt;}
.yb_c00067{bottom:734.933333pt;}
.ya_c00067{bottom:752.533333pt;}
.y9_c00067{bottom:770.133333pt;}
.y8_c00067{bottom:787.466667pt;}
.y7_c00067{bottom:805.466667pt;}
.y6_c00067{bottom:823.066667pt;}
.y5_c00067{bottom:840.933333pt;}
.y4_c00067{bottom:858.266667pt;}
.y3_c00067{bottom:875.866667pt;}
.y2_c00067{bottom:893.733333pt;}
.y1_c00067{bottom:928.000000pt;}
.h2_c00067{height:48.000000pt;}
.h3_c00067{height:53.333333pt;}
.h1_c00067{height:1037.333333pt;}
.h0_c00067{height:1037.439941pt;}
.w0_c00067{width:811.840007pt;}
.w1_c00067{width:812.000000pt;}
.x0_c00067{left:0.000000pt;}
.x11_c00067{left:82.000000pt;}
.xbe_c00067{left:83.333333pt;}
.xf2_c00067{left:84.266667pt;}
.x114_c00067{left:85.200000pt;}
.x139_c00067{left:86.400000pt;}
.xd6_c00067{left:94.933333pt;}
.x124_c00067{left:101.200000pt;}
.xc8_c00067{left:104.133333pt;}
.xa8_c00067{left:105.466667pt;}
.x91_c00067{left:106.533333pt;}
.x3_c00067{left:109.466667pt;}
.x83_c00067{left:111.466667pt;}
.x11f_c00067{left:112.933333pt;}
.xb1_c00067{left:115.066667pt;}
.x45_c00067{left:116.133333pt;}
.x39_c00067{left:118.400000pt;}
.x11a_c00067{left:122.000000pt;}
.x125_c00067{left:123.866667pt;}
.x46_c00067{left:126.666667pt;}
.x53_c00067{left:128.666667pt;}
.x130_c00067{left:129.733333pt;}
.xe7_c00067{left:131.733333pt;}
.x9d_c00067{left:133.466667pt;}
.xd7_c00067{left:134.933333pt;}
.x1e_c00067{left:136.133333pt;}
.x4_c00067{left:139.200000pt;}
.x12_c00067{left:140.266667pt;}
.xa9_c00067{left:141.600000pt;}
.x2d_c00067{left:144.000000pt;}
.x3a_c00067{left:146.933333pt;}
.x47_c00067{left:150.000000pt;}
.x84_c00067{left:151.466667pt;}
.x1f_c00067{left:153.733333pt;}
.x76_c00067{left:155.066667pt;}
.x126_c00067{left:158.133333pt;}
.xf7_c00067{left:160.800000pt;}
.x61_c00067{left:163.600000pt;}
.x54_c00067{left:165.466667pt;}
.xb5_c00067{left:167.333333pt;}
.x48_c00067{left:168.266667pt;}
.xdf_c00067{left:169.733333pt;}
.xb2_c00067{left:170.800000pt;}
.x92_c00067{left:171.866667pt;}
.x85_c00067{left:174.800000pt;}
.x20_c00067{left:178.400000pt;}
.xfe_c00067{left:179.333333pt;}
.x77_c00067{left:180.666667pt;}
.xd8_c00067{left:184.266667pt;}
.x55_c00067{left:185.333333pt;}
.x2e_c00067{left:186.266667pt;}
.xbf_c00067{left:187.333333pt;}
.xf8_c00067{left:188.666667pt;}
.x93_c00067{left:189.733333pt;}
.x5_c00067{left:191.333333pt;}
.xe0_c00067{left:194.666667pt;}
.xe8_c00067{left:196.000000pt;}
.x120_c00067{left:197.066667pt;}
.xee_c00067{left:198.000000pt;}
.x86_c00067{left:201.333333pt;}
.x78_c00067{left:202.800000pt;}
.xdb_c00067{left:204.800000pt;}
.xc0_c00067{left:206.533333pt;}
.x6_c00067{left:208.666667pt;}
.x62_c00067{left:210.000000pt;}
.x49_c00067{left:212.800000pt;}
.x10b_c00067{left:214.400000pt;}
.x13_c00067{left:215.466667pt;}
.x11b_c00067{left:219.333333pt;}
.x3b_c00067{left:220.266667pt;}
.x2f_c00067{left:223.333333pt;}
.xce_c00067{left:225.866667pt;}
.x6c_c00067{left:227.466667pt;}
.x4a_c00067{left:229.066667pt;}
.x117_c00067{left:230.533333pt;}
.x10f_c00067{left:232.400000pt;}
.x7_c00067{left:233.600000pt;}
.xb6_c00067{left:234.533333pt;}
.x102_c00067{left:236.000000pt;}
.x3c_c00067{left:238.800000pt;}
.x14_c00067{left:240.800000pt;}
.x56_c00067{left:242.000000pt;}
.xa0_c00067{left:245.866667pt;}
.x94_c00067{left:247.333333pt;}
.x7e_c00067{left:250.400000pt;}
.x103_c00067{left:252.266667pt;}
.x105_c00067{left:253.600000pt;}
.xc1_c00067{left:254.533333pt;}
.x21_c00067{left:255.866667pt;}
.xf9_c00067{left:257.066667pt;}
.x87_c00067{left:258.266667pt;}
.xcf_c00067{left:261.066667pt;}
.x10c_c00067{left:262.000000pt;}
.x79_c00067{left:266.133333pt;}
.x3d_c00067{left:269.466667pt;}
.x6d_c00067{left:271.333333pt;}
.x88_c00067{left:272.666667pt;}
.x4b_c00067{left:273.866667pt;}
.x30_c00067{left:275.466667pt;}
.x15_c00067{left:276.666667pt;}
.x57_c00067{left:277.866667pt;}
.x8_c00067{left:279.066667pt;}
.x95_c00067{left:282.266667pt;}
.x22_c00067{left:283.333333pt;}
.x13a_c00067{left:284.400000pt;}
.x6e_c00067{left:287.600000pt;}
.x9e_c00067{left:289.866667pt;}
.xb3_c00067{left:290.800000pt;}
.x131_c00067{left:292.400000pt;}
.xdc_c00067{left:295.333333pt;}
.x16_c00067{left:296.800000pt;}
.x11c_c00067{left:297.733333pt;}
.xe5_c00067{left:299.200000pt;}
.xc9_c00067{left:303.600000pt;}
.x58_c00067{left:305.066667pt;}
.x121_c00067{left:306.133333pt;}
.x31_c00067{left:308.400000pt;}
.x23_c00067{left:309.600000pt;}
.x132_c00067{left:310.666667pt;}
.x7f_c00067{left:311.866667pt;}
.x89_c00067{left:313.600000pt;}
.x11d_c00067{left:315.066667pt;}
.xaa_c00067{left:316.000000pt;}
.xb7_c00067{left:317.466667pt;}
.x127_c00067{left:319.066667pt;}
.xd0_c00067{left:320.533333pt;}
.xc2_c00067{left:324.266667pt;}
.x106_c00067{left:325.333333pt;}
.x13b_c00067{left:326.666667pt;}
.xca_c00067{left:328.933333pt;}
.x1_c00067{left:331.200000pt;}
.x104_c00067{left:332.266667pt;}
.xfa_c00067{left:333.200000pt;}
.x4c_c00067{left:335.333333pt;}
.x133_c00067{left:336.266667pt;}
.x6f_c00067{left:337.466667pt;}
.x3e_c00067{left:338.666667pt;}
.x63_c00067{left:339.866667pt;}
.x24_c00067{left:341.866667pt;}
.x118_c00067{left:344.533333pt;}
.x9_c00067{left:346.000000pt;}
.xc3_c00067{left:349.600000pt;}
.xb8_c00067{left:351.066667pt;}
.x4d_c00067{left:352.933333pt;}
.x11e_c00067{left:354.400000pt;}
.x17_c00067{left:356.000000pt;}
.x7a_c00067{left:358.000000pt;}
.xa1_c00067{left:359.200000pt;}
.xab_c00067{left:360.133333pt;}
.x96_c00067{left:361.066667pt;}
.x8a_c00067{left:363.200000pt;}
.x64_c00067{left:364.133333pt;}
.xd9_c00067{left:366.266667pt;}
.x13c_c00067{left:367.600000pt;}
.xb4_c00067{left:370.533333pt;}
.xe9_c00067{left:371.733333pt;}
.x32_c00067{left:373.066667pt;}
.xe1_c00067{left:374.000000pt;}
.x128_c00067{left:376.000000pt;}
.x134_c00067{left:376.933333pt;}
.x4e_c00067{left:380.133333pt;}
.xb9_c00067{left:383.066667pt;}
.x25_c00067{left:384.400000pt;}
.x70_c00067{left:385.733333pt;}
.x18_c00067{left:387.733333pt;}
.x3f_c00067{left:389.866667pt;}
.x65_c00067{left:393.200000pt;}
.xf3_c00067{left:394.666667pt;}
.xa2_c00067{left:396.000000pt;}
.x97_c00067{left:397.200000pt;}
.x8b_c00067{left:399.066667pt;}
.x107_c00067{left:402.133333pt;}
.x40_c00067{left:403.333333pt;}
.x59_c00067{left:405.600000pt;}
.xff_c00067{left:407.200000pt;}
.xea_c00067{left:409.466667pt;}
.x19_c00067{left:410.400000pt;}
.xa3_c00067{left:411.733333pt;}
.x4f_c00067{left:413.066667pt;}
.xdd_c00067{left:415.066667pt;}
.x9f_c00067{left:416.533333pt;}
.x26_c00067{left:418.000000pt;}
.xa_c00067{left:419.866667pt;}
.x33_c00067{left:423.333333pt;}
.x66_c00067{left:424.533333pt;}
.xe2_c00067{left:426.533333pt;}
.xcb_c00067{left:427.466667pt;}
.x119_c00067{left:428.666667pt;}
.x122_c00067{left:429.600000pt;}
.x5a_c00067{left:430.533333pt;}
.x7b_c00067{left:433.466667pt;}
.xb_c00067{left:435.200000pt;}
.xeb_c00067{left:437.333333pt;}
.xba_c00067{left:438.533333pt;}
.x12b_c00067{left:441.600000pt;}
.x98_c00067{left:442.666667pt;}
.xc4_c00067{left:443.600000pt;}
.x27_c00067{left:445.200000pt;}
.x67_c00067{left:447.200000pt;}
.x10d_c00067{left:449.200000pt;}
.x71_c00067{left:450.400000pt;}
.x50_c00067{left:452.133333pt;}
.x41_c00067{left:453.600000pt;}
.x108_c00067{left:456.800000pt;}
.x13e_c00067{left:458.266667pt;}
.x8c_c00067{left:459.200000pt;}
.x99_c00067{left:460.266667pt;}
.x34_c00067{left:461.466667pt;}
.x80_c00067{left:462.800000pt;}
.x115_c00067{left:465.066667pt;}
.xc_c00067{left:466.266667pt;}
.xd1_c00067{left:469.066667pt;}
.x51_c00067{left:470.000000pt;}
.xf4_c00067{left:471.200000pt;}
.xa4_c00067{left:473.466667pt;}
.xfb_c00067{left:474.933333pt;}
.x109_c00067{left:477.333333pt;}
.x12f_c00067{left:478.666667pt;}
.x1a_c00067{left:479.866667pt;}
.x12c_c00067{left:483.200000pt;}
.xac_c00067{left:484.533333pt;}
.x13f_c00067{left:485.466667pt;}
.x72_c00067{left:488.800000pt;}
.x8d_c00067{left:491.200000pt;}
.x13d_c00067{left:492.133333pt;}
.xbb_c00067{left:494.533333pt;}
.x1b_c00067{left:497.200000pt;}
.x110_c00067{left:500.533333pt;}
.x52_c00067{left:503.333333pt;}
.x5b_c00067{left:504.400000pt;}
.x135_c00067{left:507.200000pt;}
.xc5_c00067{left:508.266667pt;}
.x8e_c00067{left:511.066667pt;}
.x28_c00067{left:513.333333pt;}
.x7c_c00067{left:516.400000pt;}
.x68_c00067{left:518.800000pt;}
.x1c_c00067{left:519.866667pt;}
.xec_c00067{left:521.866667pt;}
.x5c_c00067{left:522.933333pt;}
.xad_c00067{left:526.133333pt;}
.x35_c00067{left:527.333333pt;}
.x111_c00067{left:528.400000pt;}
.xd2_c00067{left:529.600000pt;}
.xef_c00067{left:531.066667pt;}
.x136_c00067{left:532.133333pt;}
.x29_c00067{left:533.866667pt;}
.x73_c00067{left:535.866667pt;}
.x8f_c00067{left:537.600000pt;}
.xd_c00067{left:540.533333pt;}
.x69_c00067{left:541.466667pt;}
.x9a_c00067{left:543.466667pt;}
.xd3_c00067{left:545.333333pt;}
.xda_c00067{left:547.333333pt;}
.xf5_c00067{left:548.533333pt;}
.xae_c00067{left:551.733333pt;}
.x140_c00067{left:553.066667pt;}
.x5d_c00067{left:556.266667pt;}
.x42_c00067{left:558.933333pt;}
.x2a_c00067{left:560.400000pt;}
.xe_c00067{left:561.333333pt;}
.x112_c00067{left:562.933333pt;}
.xfc_c00067{left:564.533333pt;}
.x137_c00067{left:566.666667pt;}
.xe3_c00067{left:569.866667pt;}
.x7d_c00067{left:571.733333pt;}
.x12d_c00067{left:572.800000pt;}
.x10a_c00067{left:574.666667pt;}
.x74_c00067{left:575.600000pt;}
.x81_c00067{left:577.333333pt;}
.xa5_c00067{left:579.466667pt;}
.x5e_c00067{left:581.200000pt;}
.xd4_c00067{left:582.800000pt;}
.x138_c00067{left:584.266667pt;}
.x36_c00067{left:585.600000pt;}
.xbc_c00067{left:586.666667pt;}
.x113_c00067{left:587.600000pt;}
.xf0_c00067{left:588.933333pt;}
.xc6_c00067{left:589.866667pt;}
.xe4_c00067{left:595.200000pt;}
.xcc_c00067{left:597.066667pt;}
.x123_c00067{left:598.266667pt;}
.x6a_c00067{left:599.333333pt;}
.x37_c00067{left:602.266667pt;}
.xed_c00067{left:604.800000pt;}
.xfd_c00067{left:605.866667pt;}
.xf_c00067{left:607.733333pt;}
.xaf_c00067{left:609.600000pt;}
.xd5_c00067{left:610.666667pt;}
.x116_c00067{left:612.666667pt;}
.x9b_c00067{left:614.133333pt;}
.x90_c00067{left:616.266667pt;}
.x2b_c00067{left:618.933333pt;}
.xf6_c00067{left:619.866667pt;}
.x5f_c00067{left:620.933333pt;}
.xf1_c00067{left:622.800000pt;}
.x9c_c00067{left:624.000000pt;}
.x38_c00067{left:624.933333pt;}
.x10_c00067{left:626.266667pt;}
.xc7_c00067{left:627.600000pt;}
.xcd_c00067{left:629.066667pt;}
.xa6_c00067{left:630.000000pt;}
.x12e_c00067{left:631.066667pt;}
.x100_c00067{left:633.200000pt;}
.x43_c00067{left:637.333333pt;}
.x2c_c00067{left:639.733333pt;}
.x129_c00067{left:642.000000pt;}
.x60_c00067{left:645.866667pt;}
.x75_c00067{left:647.600000pt;}
.x82_c00067{left:649.066667pt;}
.xe6_c00067{left:650.666667pt;}
.x1d_c00067{left:653.600000pt;}
.xbd_c00067{left:654.800000pt;}
.x44_c00067{left:656.266667pt;}
.x2_c00067{left:658.266667pt;}
.x12a_c00067{left:659.600000pt;}
.xde_c00067{left:661.866667pt;}
.xb0_c00067{left:663.333333pt;}
.xa7_c00067{left:664.266667pt;}
.x101_c00067{left:666.800000pt;}
.x10e_c00067{left:668.400000pt;}
.x6b_c00067{left:671.333333pt;}
}





/* 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_c00068 {
    display:none;
  }
  .loading-indicator_c00068.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00068 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_c00068 { 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_c00068" -> "#page-container .classname_c00068")
 */
.pf_c00068 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00068 { /* 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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00068 { /* 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_c00068 { /* 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_c00068 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00068 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00068 {overflow:visible;}
  }
}
.c_c00068 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00068 { /* 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_c00068:after { /* webkit #35443 */
  content: '';
}
.t_c00068:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00068 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 */
}
.__c00068 { /* 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_c00068 { /* info for Javascript */
  display:none;
}
.l_c00068 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00068 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00068 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00068: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_c00068 {
    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_c00068.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00068.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_c00068 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00068{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00068;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.000000;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;}
.m28_c00068{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00068{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m60_c00068{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00068{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00068{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m99_c00068{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00068{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00068{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00068{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00068{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00068{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m37_c00068{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00068{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m46_c00068{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00068{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m72_c00068{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m79_c00068{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00068{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00068{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m98_c00068{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00068{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m85_c00068{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc_c00068{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00068{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00068{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m96_c00068{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m95_c00068{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00068{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00068{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00068{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00068{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m84_c00068{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00068{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00068{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m69_c00068{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m56_c00068{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00068{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00068{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m75_c00068{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m32_c00068{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00068{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12_c00068{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00068{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m74_c00068{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00068{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m62_c00068{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00068{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m59_c00068{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00068{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00068{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m67_c00068{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00068{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m27_c00068{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00068{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00068{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m94_c00068{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6_c00068{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m51_c00068{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00068{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00068{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00068{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m81_c00068{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00068{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m77_c00068{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m41_c00068{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00068{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m22_c00068{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m73_c00068{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md_c00068{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me_c00068{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00068{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00068{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3_c00068{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m61_c00068{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m23_c00068{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m76_c00068{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m24_c00068{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00068{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m57_c00068{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00068{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m38_c00068{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m40_c00068{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m97_c00068{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00068{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00068{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00068{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00068{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00068{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00068{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00068{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m64_c00068{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);}
.m6b_c00068{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m66_c00068{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00068{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00068{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m35_c00068{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00068{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00068{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m31_c00068{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00068{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m90_c00068{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m63_c00068{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m92_c00068{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m70_c00068{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m80_c00068{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00068{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00068{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m86_c00068{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m44_c00068{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m45_c00068{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m83_c00068{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00068{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00068{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m82_c00068{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m71_c00068{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m87_c00068{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m93_c00068{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m89_c00068{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00068{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{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__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00068{word-spacing:-7.261905px;}
.ws0_c00068{word-spacing:-2.045455px;}
.wsa_c00068{word-spacing:0.000000px;}
.ws7_c00068{word-spacing:1.234568px;}
.ws9_c00068{word-spacing:1.527778px;}
.ws6_c00068{word-spacing:4.375000px;}
.ws4_c00068{word-spacing:8.181818px;}
.ws2_c00068{word-spacing:8.611111px;}
.ws5_c00068{word-spacing:9.722222px;}
.ws8_c00068{word-spacing:11.184211px;}
.ws3_c00068{word-spacing:21.805556px;}
.fc0_c00068{color:transparent;}
.fs0_c00068{font-size:54.000000px;}
.fs1_c00068{font-size:60.000000px;}
.y0_c00068{bottom:0.000000px;}
.y2c_c00068{bottom:155.850000px;}
.y2b_c00068{bottom:196.950000px;}
.y2a_c00068{bottom:216.750000px;}
.y29_c00068{bottom:236.550000px;}
.y28_c00068{bottom:256.350000px;}
.y27_c00068{bottom:276.150000px;}
.y26_c00068{bottom:296.250000px;}
.y25_c00068{bottom:316.200000px;}
.y24_c00068{bottom:336.000000px;}
.y23_c00068{bottom:355.800000px;}
.y22_c00068{bottom:375.600000px;}
.y21_c00068{bottom:395.400000px;}
.y20_c00068{bottom:415.200000px;}
.y1f_c00068{bottom:435.000000px;}
.y1e_c00068{bottom:454.800000px;}
.y1d_c00068{bottom:474.600000px;}
.y1c_c00068{bottom:494.400000px;}
.y1b_c00068{bottom:514.200000px;}
.y1a_c00068{bottom:534.300000px;}
.y19_c00068{bottom:554.100000px;}
.y18_c00068{bottom:573.900000px;}
.y17_c00068{bottom:594.000000px;}
.y16_c00068{bottom:614.100000px;}
.y15_c00068{bottom:633.900000px;}
.y14_c00068{bottom:654.000000px;}
.y13_c00068{bottom:673.800000px;}
.y12_c00068{bottom:693.900000px;}
.y11_c00068{bottom:713.700000px;}
.y10_c00068{bottom:733.800000px;}
.yf_c00068{bottom:753.900000px;}
.ye_c00068{bottom:773.700000px;}
.yd_c00068{bottom:793.500000px;}
.yc_c00068{bottom:813.300000px;}
.yb_c00068{bottom:833.100000px;}
.ya_c00068{bottom:853.050000px;}
.y9_c00068{bottom:873.150000px;}
.y8_c00068{bottom:892.950000px;}
.y7_c00068{bottom:912.750000px;}
.y6_c00068{bottom:932.550000px;}
.y5_c00068{bottom:952.350000px;}
.y4_c00068{bottom:972.450000px;}
.y3_c00068{bottom:992.250000px;}
.y2_c00068{bottom:1012.350000px;}
.y1_c00068{bottom:1050.900000px;}
.h2_c00068{height:54.000000px;}
.h3_c00068{height:60.000000px;}
.h1_c00068{height:1167.000000px;}
.h0_c00068{height:1167.119934px;}
.w0_c00068{width:913.320007px;}
.w1_c00068{width:913.500000px;}
.x0_c00068{left:0.000000px;}
.x12b_c00068{left:144.750000px;}
.x114_c00068{left:145.950000px;}
.x91_c00068{left:147.300000px;}
.x15_c00068{left:148.350000px;}
.x4_c00068{left:149.400000px;}
.x1_c00068{left:150.900000px;}
.x11c_c00068{left:167.550000px;}
.x97_c00068{left:169.500000px;}
.x5f_c00068{left:170.550000px;}
.x126_c00068{left:176.400000px;}
.x77_c00068{left:177.750000px;}
.x80_c00068{left:179.700000px;}
.x24_c00068{left:181.650000px;}
.x92_c00068{left:183.600000px;}
.x43_c00068{left:185.550000px;}
.xd1_c00068{left:187.350000px;}
.x51_c00068{left:189.300000px;}
.x89_c00068{left:191.400000px;}
.x5_c00068{left:192.600000px;}
.x36_c00068{left:194.700000px;}
.x44_c00068{left:196.350000px;}
.x25_c00068{left:198.900000px;}
.x6c_c00068{left:203.550000px;}
.xe3_c00068{left:205.350000px;}
.x10f_c00068{left:207.300000px;}
.x108_c00068{left:209.400000px;}
.xf4_c00068{left:210.900000px;}
.x8a_c00068{left:212.250000px;}
.x98_c00068{left:214.800000px;}
.xb8_c00068{left:216.750000px;}
.x60_c00068{left:218.100000px;}
.x12c_c00068{left:221.100000px;}
.x81_c00068{left:222.600000px;}
.x45_c00068{left:225.150000px;}
.x52_c00068{left:226.350000px;}
.xc3_c00068{left:229.350000px;}
.x13a_c00068{left:231.150000px;}
.xc9_c00068{left:233.250000px;}
.xb3_c00068{left:234.450000px;}
.x99_c00068{left:236.400000px;}
.x6_c00068{left:238.650000px;}
.xdd_c00068{left:241.950000px;}
.x6d_c00068{left:245.250000px;}
.x119_c00068{left:246.450000px;}
.xa1_c00068{left:249.600000px;}
.x78_c00068{left:251.250000px;}
.x37_c00068{left:252.600000px;}
.xd2_c00068{left:255.750000px;}
.xb4_c00068{left:257.850000px;}
.x46_c00068{left:259.350000px;}
.x8b_c00068{left:261.600000px;}
.x26_c00068{left:262.650000px;}
.x110_c00068{left:263.850000px;}
.x127_c00068{left:265.800000px;}
.x100_c00068{left:269.250000px;}
.xd3_c00068{left:271.650000px;}
.x82_c00068{left:273.000000px;}
.x61_c00068{left:274.950000px;}
.xca_c00068{left:276.750000px;}
.x53_c00068{left:278.250000px;}
.x11a_c00068{left:279.600000px;}
.x7_c00068{left:281.850000px;}
.xaf_c00068{left:283.350000px;}
.x16_c00068{left:286.200000px;}
.x115_c00068{left:288.600000px;}
.x109_c00068{left:291.450000px;}
.xee_c00068{left:294.000000px;}
.xe4_c00068{left:295.650000px;}
.x11d_c00068{left:297.000000px;}
.x54_c00068{left:298.350000px;}
.x128_c00068{left:300.750000px;}
.xd4_c00068{left:302.250000px;}
.xcb_c00068{left:303.750000px;}
.x8_c00068{left:305.550000px;}
.xd7_c00068{left:307.350000px;}
.x47_c00068{left:310.500000px;}
.xa8_c00068{left:312.450000px;}
.x6e_c00068{left:313.950000px;}
.xef_c00068{left:316.650000px;}
.x38_c00068{left:320.250000px;}
.xb9_c00068{left:321.450000px;}
.xc4_c00068{left:322.950000px;}
.x17_c00068{left:325.050000px;}
.x55_c00068{left:326.400000px;}
.x48_c00068{left:327.450000px;}
.x122_c00068{left:328.950000px;}
.x136_c00068{left:330.150000px;}
.xea_c00068{left:332.250000px;}
.x9_c00068{left:333.600000px;}
.x79_c00068{left:336.600000px;}
.x131_c00068{left:337.650000px;}
.xcc_c00068{left:338.700000px;}
.x39_c00068{left:340.350000px;}
.xfb_c00068{left:343.800000px;}
.xf5_c00068{left:350.250000px;}
.xeb_c00068{left:352.350000px;}
.xd9_c00068{left:355.050000px;}
.x27_c00068{left:356.250000px;}
.x7a_c00068{left:357.450000px;}
.x101_c00068{left:361.800000px;}
.x3a_c00068{left:365.550000px;}
.x123_c00068{left:367.800000px;}
.xe5_c00068{left:370.500000px;}
.x18_c00068{left:372.150000px;}
.x28_c00068{left:373.200000px;}
.x83_c00068{left:374.550000px;}
.xc5_c00068{left:379.500000px;}
.xec_c00068{left:380.850000px;}
.xa9_c00068{left:383.400000px;}
.xba_c00068{left:385.800000px;}
.xf6_c00068{left:387.300000px;}
.x49_c00068{left:389.100000px;}
.xde_c00068{left:391.650000px;}
.x13b_c00068{left:394.500000px;}
.x56_c00068{left:395.550000px;}
.x2_c00068{left:397.500000px;}
.x29_c00068{left:400.200000px;}
.xb0_c00068{left:403.950000px;}
.xe6_c00068{left:405.450000px;}
.x8c_c00068{left:406.650000px;}
.x4a_c00068{left:409.650000px;}
.x10a_c00068{left:411.450000px;}
.xa_c00068{left:413.550000px;}
.xbb_c00068{left:414.900000px;}
.x2a_c00068{left:417.450000px;}
.x137_c00068{left:418.650000px;}
.x19_c00068{left:419.700000px;}
.x102_c00068{left:422.550000px;}
.x132_c00068{left:423.600000px;}
.x111_c00068{left:424.950000px;}
.x129_c00068{left:428.850000px;}
.xd8_c00068{left:430.050000px;}
.xb_c00068{left:431.850000px;}
.xcd_c00068{left:433.050000px;}
.xf7_c00068{left:434.850000px;}
.xb5_c00068{left:435.900000px;}
.x3b_c00068{left:436.950000px;}
.x4b_c00068{left:438.750000px;}
.x2b_c00068{left:440.550000px;}
.xb1_c00068{left:443.850000px;}
.xc6_c00068{left:446.100000px;}
.x6f_c00068{left:447.600000px;}
.x138_c00068{left:451.050000px;}
.x11e_c00068{left:452.550000px;}
.x1a_c00068{left:453.900000px;}
.x62_c00068{left:455.400000px;}
.x7b_c00068{left:457.500000px;}
.xbc_c00068{left:459.150000px;}
.x57_c00068{left:460.650000px;}
.x3c_c00068{left:465.000000px;}
.xa2_c00068{left:468.000000px;}
.xc_c00068{left:470.700000px;}
.xd5_c00068{left:473.400000px;}
.x63_c00068{left:474.900000px;}
.xfc_c00068{left:477.000000px;}
.x84_c00068{left:478.950000px;}
.x4c_c00068{left:480.900000px;}
.x124_c00068{left:483.300000px;}
.xa3_c00068{left:484.950000px;}
.xc7_c00068{left:486.450000px;}
.xbd_c00068{left:491.250000px;}
.x103_c00068{left:492.750000px;}
.x70_c00068{left:494.100000px;}
.x58_c00068{left:495.600000px;}
.x3_c00068{left:497.250000px;}
.x9a_c00068{left:499.200000px;}
.xda_c00068{left:500.550000px;}
.x2c_c00068{left:502.500000px;}
.xd_c00068{left:508.200000px;}
.x4d_c00068{left:510.000000px;}
.x64_c00068{left:511.650000px;}
.x12d_c00068{left:514.200000px;}
.x8d_c00068{left:515.550000px;}
.x7c_c00068{left:516.600000px;}
.x11f_c00068{left:517.650000px;}
.x9b_c00068{left:518.700000px;}
.x1b_c00068{left:521.550000px;}
.xfd_c00068{left:523.800000px;}
.x2d_c00068{left:526.650000px;}
.xe_c00068{left:528.300000px;}
.xa4_c00068{left:530.250000px;}
.x116_c00068{left:531.900000px;}
.xbe_c00068{left:533.700000px;}
.x133_c00068{left:535.500000px;}
.x59_c00068{left:536.700000px;}
.x120_c00068{left:538.950000px;}
.x12e_c00068{left:541.200000px;}
.x71_c00068{left:543.000000px;}
.x10b_c00068{left:544.500000px;}
.x9c_c00068{left:546.750000px;}
.x85_c00068{left:548.100000px;}
.x65_c00068{left:549.450000px;}
.xf_c00068{left:553.800000px;}
.xf0_c00068{left:555.000000px;}
.x1c_c00068{left:557.550000px;}
.xfe_c00068{left:560.100000px;}
.x2e_c00068{left:561.150000px;}
.x93_c00068{left:563.100000px;}
.x3d_c00068{left:564.450000px;}
.xe7_c00068{left:567.450000px;}
.xb2_c00068{left:572.400000px;}
.xce_c00068{left:573.900000px;}
.xf8_c00068{left:576.000000px;}
.x1d_c00068{left:577.050000px;}
.xaa_c00068{left:578.100000px;}
.xdf_c00068{left:580.350000px;}
.x104_c00068{left:585.600000px;}
.x2f_c00068{left:587.400000px;}
.x10c_c00068{left:589.800000px;}
.x1e_c00068{left:591.750000px;}
.x117_c00068{left:594.150000px;}
.x86_c00068{left:595.200000px;}
.x7d_c00068{left:597.150000px;}
.xf1_c00068{left:599.700000px;}
.x8e_c00068{left:602.250000px;}
.xa5_c00068{left:603.300000px;}
.xbf_c00068{left:604.650000px;}
.x105_c00068{left:606.150000px;}
.x10_c00068{left:608.850000px;}
.x30_c00068{left:611.100000px;}
.xf9_c00068{left:612.750000px;}
.x72_c00068{left:614.550000px;}
.x134_c00068{left:616.500000px;}
.x5a_c00068{left:618.450000px;}
.x1f_c00068{left:620.550000px;}
.xc0_c00068{left:622.650000px;}
.x3e_c00068{left:624.150000px;}
.x66_c00068{left:627.900000px;}
.xf2_c00068{left:629.550000px;}
.xab_c00068{left:632.100000px;}
.x9d_c00068{left:633.900000px;}
.x112_c00068{left:635.250000px;}
.x73_c00068{left:637.950000px;}
.x4e_c00068{left:641.850000px;}
.x13c_c00068{left:643.050000px;}
.x11_c00068{left:645.150000px;}
.x12a_c00068{left:647.400000px;}
.x20_c00068{left:649.050000px;}
.x10d_c00068{left:651.300000px;}
.xb6_c00068{left:652.950000px;}
.x5b_c00068{left:654.450000px;}
.x118_c00068{left:656.100000px;}
.xdb_c00068{left:658.500000px;}
.x94_c00068{left:660.300000px;}
.x31_c00068{left:661.800000px;}
.xc8_c00068{left:662.850000px;}
.x3f_c00068{left:664.500000px;}
.x67_c00068{left:670.050000px;}
.xac_c00068{left:672.000000px;}
.x139_c00068{left:673.500000px;}
.xdc_c00068{left:676.500000px;}
.x95_c00068{left:678.600000px;}
.xa6_c00068{left:679.650000px;}
.x7e_c00068{left:682.200000px;}
.x8f_c00068{left:683.250000px;}
.xe8_c00068{left:687.000000px;}
.x12f_c00068{left:688.050000px;}
.x9e_c00068{left:689.700000px;}
.xed_c00068{left:693.450000px;}
.x68_c00068{left:695.250000px;}
.x11b_c00068{left:696.450000px;}
.x106_c00068{left:697.950000px;}
.xc1_c00068{left:700.800000px;}
.x12_c00068{left:702.000000px;}
.x74_c00068{left:703.800000px;}
.x32_c00068{left:706.050000px;}
.xff_c00068{left:707.250000px;}
.x40_c00068{left:710.550000px;}
.x5c_c00068{left:711.750000px;}
.x96_c00068{left:713.550000px;}
.xb7_c00068{left:715.650000px;}
.xcf_c00068{left:716.850000px;}
.x10e_c00068{left:718.350000px;}
.x87_c00068{left:721.800000px;}
.x121_c00068{left:723.600000px;}
.x13_c00068{left:725.100000px;}
.xc2_c00068{left:728.100000px;}
.xe0_c00068{left:730.200000px;}
.x4f_c00068{left:732.900000px;}
.x33_c00068{left:734.100000px;}
.x21_c00068{left:735.750000px;}
.x5d_c00068{left:739.050000px;}
.x75_c00068{left:740.850000px;}
.x69_c00068{left:744.600000px;}
.x130_c00068{left:745.650000px;}
.xf3_c00068{left:748.350000px;}
.x41_c00068{left:751.650000px;}
.x125_c00068{left:753.450000px;}
.xe1_c00068{left:755.400000px;}
.x9f_c00068{left:760.950000px;}
.xa7_c00068{left:762.450000px;}
.x22_c00068{left:763.500000px;}
.xd6_c00068{left:765.150000px;}
.x88_c00068{left:768.150000px;}
.xad_c00068{left:771.450000px;}
.x34_c00068{left:772.950000px;}
.xd0_c00068{left:774.450000px;}
.xe9_c00068{left:775.500000px;}
.x5e_c00068{left:777.600000px;}
.xfa_c00068{left:778.650000px;}
.x14_c00068{left:781.950000px;}
.x7f_c00068{left:784.050000px;}
.x6a_c00068{left:786.000000px;}
.x42_c00068{left:787.350000px;}
.xa0_c00068{left:788.700000px;}
.x107_c00068{left:789.750000px;}
.x135_c00068{left:791.400000px;}
.x35_c00068{left:792.750000px;}
.xae_c00068{left:793.800000px;}
.x13d_c00068{left:796.050000px;}
.x113_c00068{left:797.850000px;}
.xe2_c00068{left:799.050000px;}
.x50_c00068{left:800.250000px;}
.x90_c00068{left:802.500000px;}
.x23_c00068{left:804.150000px;}
.x76_c00068{left:805.200000px;}
.x6b_c00068{left:808.650000px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws1_c00068{word-spacing:-6.455026pt;}
.ws0_c00068{word-spacing:-1.818182pt;}
.wsa_c00068{word-spacing:0.000000pt;}
.ws7_c00068{word-spacing:1.097394pt;}
.ws9_c00068{word-spacing:1.358025pt;}
.ws6_c00068{word-spacing:3.888889pt;}
.ws4_c00068{word-spacing:7.272727pt;}
.ws2_c00068{word-spacing:7.654321pt;}
.ws5_c00068{word-spacing:8.641975pt;}
.ws8_c00068{word-spacing:9.941520pt;}
.ws3_c00068{word-spacing:19.382716pt;}
.fs0_c00068{font-size:48.000000pt;}
.fs1_c00068{font-size:53.333333pt;}
.y0_c00068{bottom:0.000000pt;}
.y2c_c00068{bottom:138.533333pt;}
.y2b_c00068{bottom:175.066667pt;}
.y2a_c00068{bottom:192.666667pt;}
.y29_c00068{bottom:210.266667pt;}
.y28_c00068{bottom:227.866667pt;}
.y27_c00068{bottom:245.466667pt;}
.y26_c00068{bottom:263.333333pt;}
.y25_c00068{bottom:281.066667pt;}
.y24_c00068{bottom:298.666667pt;}
.y23_c00068{bottom:316.266667pt;}
.y22_c00068{bottom:333.866667pt;}
.y21_c00068{bottom:351.466667pt;}
.y20_c00068{bottom:369.066667pt;}
.y1f_c00068{bottom:386.666667pt;}
.y1e_c00068{bottom:404.266667pt;}
.y1d_c00068{bottom:421.866667pt;}
.y1c_c00068{bottom:439.466667pt;}
.y1b_c00068{bottom:457.066667pt;}
.y1a_c00068{bottom:474.933333pt;}
.y19_c00068{bottom:492.533333pt;}
.y18_c00068{bottom:510.133333pt;}
.y17_c00068{bottom:528.000000pt;}
.y16_c00068{bottom:545.866667pt;}
.y15_c00068{bottom:563.466667pt;}
.y14_c00068{bottom:581.333333pt;}
.y13_c00068{bottom:598.933333pt;}
.y12_c00068{bottom:616.800000pt;}
.y11_c00068{bottom:634.400000pt;}
.y10_c00068{bottom:652.266667pt;}
.yf_c00068{bottom:670.133333pt;}
.ye_c00068{bottom:687.733333pt;}
.yd_c00068{bottom:705.333333pt;}
.yc_c00068{bottom:722.933333pt;}
.yb_c00068{bottom:740.533333pt;}
.ya_c00068{bottom:758.266667pt;}
.y9_c00068{bottom:776.133333pt;}
.y8_c00068{bottom:793.733333pt;}
.y7_c00068{bottom:811.333333pt;}
.y6_c00068{bottom:828.933333pt;}
.y5_c00068{bottom:846.533333pt;}
.y4_c00068{bottom:864.400000pt;}
.y3_c00068{bottom:882.000000pt;}
.y2_c00068{bottom:899.866667pt;}
.y1_c00068{bottom:934.133333pt;}
.h2_c00068{height:48.000000pt;}
.h3_c00068{height:53.333333pt;}
.h1_c00068{height:1037.333333pt;}
.h0_c00068{height:1037.439941pt;}
.w0_c00068{width:811.840007pt;}
.w1_c00068{width:812.000000pt;}
.x0_c00068{left:0.000000pt;}
.x12b_c00068{left:128.666667pt;}
.x114_c00068{left:129.733333pt;}
.x91_c00068{left:130.933333pt;}
.x15_c00068{left:131.866667pt;}
.x4_c00068{left:132.800000pt;}
.x1_c00068{left:134.133333pt;}
.x11c_c00068{left:148.933333pt;}
.x97_c00068{left:150.666667pt;}
.x5f_c00068{left:151.600000pt;}
.x126_c00068{left:156.800000pt;}
.x77_c00068{left:158.000000pt;}
.x80_c00068{left:159.733333pt;}
.x24_c00068{left:161.466667pt;}
.x92_c00068{left:163.200000pt;}
.x43_c00068{left:164.933333pt;}
.xd1_c00068{left:166.533333pt;}
.x51_c00068{left:168.266667pt;}
.x89_c00068{left:170.133333pt;}
.x5_c00068{left:171.200000pt;}
.x36_c00068{left:173.066667pt;}
.x44_c00068{left:174.533333pt;}
.x25_c00068{left:176.800000pt;}
.x6c_c00068{left:180.933333pt;}
.xe3_c00068{left:182.533333pt;}
.x10f_c00068{left:184.266667pt;}
.x108_c00068{left:186.133333pt;}
.xf4_c00068{left:187.466667pt;}
.x8a_c00068{left:188.666667pt;}
.x98_c00068{left:190.933333pt;}
.xb8_c00068{left:192.666667pt;}
.x60_c00068{left:193.866667pt;}
.x12c_c00068{left:196.533333pt;}
.x81_c00068{left:197.866667pt;}
.x45_c00068{left:200.133333pt;}
.x52_c00068{left:201.200000pt;}
.xc3_c00068{left:203.866667pt;}
.x13a_c00068{left:205.466667pt;}
.xc9_c00068{left:207.333333pt;}
.xb3_c00068{left:208.400000pt;}
.x99_c00068{left:210.133333pt;}
.x6_c00068{left:212.133333pt;}
.xdd_c00068{left:215.066667pt;}
.x6d_c00068{left:218.000000pt;}
.x119_c00068{left:219.066667pt;}
.xa1_c00068{left:221.866667pt;}
.x78_c00068{left:223.333333pt;}
.x37_c00068{left:224.533333pt;}
.xd2_c00068{left:227.333333pt;}
.xb4_c00068{left:229.200000pt;}
.x46_c00068{left:230.533333pt;}
.x8b_c00068{left:232.533333pt;}
.x26_c00068{left:233.466667pt;}
.x110_c00068{left:234.533333pt;}
.x127_c00068{left:236.266667pt;}
.x100_c00068{left:239.333333pt;}
.xd3_c00068{left:241.466667pt;}
.x82_c00068{left:242.666667pt;}
.x61_c00068{left:244.400000pt;}
.xca_c00068{left:246.000000pt;}
.x53_c00068{left:247.333333pt;}
.x11a_c00068{left:248.533333pt;}
.x7_c00068{left:250.533333pt;}
.xaf_c00068{left:251.866667pt;}
.x16_c00068{left:254.400000pt;}
.x115_c00068{left:256.533333pt;}
.x109_c00068{left:259.066667pt;}
.xee_c00068{left:261.333333pt;}
.xe4_c00068{left:262.800000pt;}
.x11d_c00068{left:264.000000pt;}
.x54_c00068{left:265.200000pt;}
.x128_c00068{left:267.333333pt;}
.xd4_c00068{left:268.666667pt;}
.xcb_c00068{left:270.000000pt;}
.x8_c00068{left:271.600000pt;}
.xd7_c00068{left:273.200000pt;}
.x47_c00068{left:276.000000pt;}
.xa8_c00068{left:277.733333pt;}
.x6e_c00068{left:279.066667pt;}
.xef_c00068{left:281.466667pt;}
.x38_c00068{left:284.666667pt;}
.xb9_c00068{left:285.733333pt;}
.xc4_c00068{left:287.066667pt;}
.x17_c00068{left:288.933333pt;}
.x55_c00068{left:290.133333pt;}
.x48_c00068{left:291.066667pt;}
.x122_c00068{left:292.400000pt;}
.x136_c00068{left:293.466667pt;}
.xea_c00068{left:295.333333pt;}
.x9_c00068{left:296.533333pt;}
.x79_c00068{left:299.200000pt;}
.x131_c00068{left:300.133333pt;}
.xcc_c00068{left:301.066667pt;}
.x39_c00068{left:302.533333pt;}
.xfb_c00068{left:305.600000pt;}
.xf5_c00068{left:311.333333pt;}
.xeb_c00068{left:313.200000pt;}
.xd9_c00068{left:315.600000pt;}
.x27_c00068{left:316.666667pt;}
.x7a_c00068{left:317.733333pt;}
.x101_c00068{left:321.600000pt;}
.x3a_c00068{left:324.933333pt;}
.x123_c00068{left:326.933333pt;}
.xe5_c00068{left:329.333333pt;}
.x18_c00068{left:330.800000pt;}
.x28_c00068{left:331.733333pt;}
.x83_c00068{left:332.933333pt;}
.xc5_c00068{left:337.333333pt;}
.xec_c00068{left:338.533333pt;}
.xa9_c00068{left:340.800000pt;}
.xba_c00068{left:342.933333pt;}
.xf6_c00068{left:344.266667pt;}
.x49_c00068{left:345.866667pt;}
.xde_c00068{left:348.133333pt;}
.x13b_c00068{left:350.666667pt;}
.x56_c00068{left:351.600000pt;}
.x2_c00068{left:353.333333pt;}
.x29_c00068{left:355.733333pt;}
.xb0_c00068{left:359.066667pt;}
.xe6_c00068{left:360.400000pt;}
.x8c_c00068{left:361.466667pt;}
.x4a_c00068{left:364.133333pt;}
.x10a_c00068{left:365.733333pt;}
.xa_c00068{left:367.600000pt;}
.xbb_c00068{left:368.800000pt;}
.x2a_c00068{left:371.066667pt;}
.x137_c00068{left:372.133333pt;}
.x19_c00068{left:373.066667pt;}
.x102_c00068{left:375.600000pt;}
.x132_c00068{left:376.533333pt;}
.x111_c00068{left:377.733333pt;}
.x129_c00068{left:381.200000pt;}
.xd8_c00068{left:382.266667pt;}
.xb_c00068{left:383.866667pt;}
.xcd_c00068{left:384.933333pt;}
.xf7_c00068{left:386.533333pt;}
.xb5_c00068{left:387.466667pt;}
.x3b_c00068{left:388.400000pt;}
.x4b_c00068{left:390.000000pt;}
.x2b_c00068{left:391.600000pt;}
.xb1_c00068{left:394.533333pt;}
.xc6_c00068{left:396.533333pt;}
.x6f_c00068{left:397.866667pt;}
.x138_c00068{left:400.933333pt;}
.x11e_c00068{left:402.266667pt;}
.x1a_c00068{left:403.466667pt;}
.x62_c00068{left:404.800000pt;}
.x7b_c00068{left:406.666667pt;}
.xbc_c00068{left:408.133333pt;}
.x57_c00068{left:409.466667pt;}
.x3c_c00068{left:413.333333pt;}
.xa2_c00068{left:416.000000pt;}
.xc_c00068{left:418.400000pt;}
.xd5_c00068{left:420.800000pt;}
.x63_c00068{left:422.133333pt;}
.xfc_c00068{left:424.000000pt;}
.x84_c00068{left:425.733333pt;}
.x4c_c00068{left:427.466667pt;}
.x124_c00068{left:429.600000pt;}
.xa3_c00068{left:431.066667pt;}
.xc7_c00068{left:432.400000pt;}
.xbd_c00068{left:436.666667pt;}
.x103_c00068{left:438.000000pt;}
.x70_c00068{left:439.200000pt;}
.x58_c00068{left:440.533333pt;}
.x3_c00068{left:442.000000pt;}
.x9a_c00068{left:443.733333pt;}
.xda_c00068{left:444.933333pt;}
.x2c_c00068{left:446.666667pt;}
.xd_c00068{left:451.733333pt;}
.x4d_c00068{left:453.333333pt;}
.x64_c00068{left:454.800000pt;}
.x12d_c00068{left:457.066667pt;}
.x8d_c00068{left:458.266667pt;}
.x7c_c00068{left:459.200000pt;}
.x11f_c00068{left:460.133333pt;}
.x9b_c00068{left:461.066667pt;}
.x1b_c00068{left:463.600000pt;}
.xfd_c00068{left:465.600000pt;}
.x2d_c00068{left:468.133333pt;}
.xe_c00068{left:469.600000pt;}
.xa4_c00068{left:471.333333pt;}
.x116_c00068{left:472.800000pt;}
.xbe_c00068{left:474.400000pt;}
.x133_c00068{left:476.000000pt;}
.x59_c00068{left:477.066667pt;}
.x120_c00068{left:479.066667pt;}
.x12e_c00068{left:481.066667pt;}
.x71_c00068{left:482.666667pt;}
.x10b_c00068{left:484.000000pt;}
.x9c_c00068{left:486.000000pt;}
.x85_c00068{left:487.200000pt;}
.x65_c00068{left:488.400000pt;}
.xf_c00068{left:492.266667pt;}
.xf0_c00068{left:493.333333pt;}
.x1c_c00068{left:495.600000pt;}
.xfe_c00068{left:497.866667pt;}
.x2e_c00068{left:498.800000pt;}
.x93_c00068{left:500.533333pt;}
.x3d_c00068{left:501.733333pt;}
.xe7_c00068{left:504.400000pt;}
.xb2_c00068{left:508.800000pt;}
.xce_c00068{left:510.133333pt;}
.xf8_c00068{left:512.000000pt;}
.x1d_c00068{left:512.933333pt;}
.xaa_c00068{left:513.866667pt;}
.xdf_c00068{left:515.866667pt;}
.x104_c00068{left:520.533333pt;}
.x2f_c00068{left:522.133333pt;}
.x10c_c00068{left:524.266667pt;}
.x1e_c00068{left:526.000000pt;}
.x117_c00068{left:528.133333pt;}
.x86_c00068{left:529.066667pt;}
.x7d_c00068{left:530.800000pt;}
.xf1_c00068{left:533.066667pt;}
.x8e_c00068{left:535.333333pt;}
.xa5_c00068{left:536.266667pt;}
.xbf_c00068{left:537.466667pt;}
.x105_c00068{left:538.800000pt;}
.x10_c00068{left:541.200000pt;}
.x30_c00068{left:543.200000pt;}
.xf9_c00068{left:544.666667pt;}
.x72_c00068{left:546.266667pt;}
.x134_c00068{left:548.000000pt;}
.x5a_c00068{left:549.733333pt;}
.x1f_c00068{left:551.600000pt;}
.xc0_c00068{left:553.466667pt;}
.x3e_c00068{left:554.800000pt;}
.x66_c00068{left:558.133333pt;}
.xf2_c00068{left:559.600000pt;}
.xab_c00068{left:561.866667pt;}
.x9d_c00068{left:563.466667pt;}
.x112_c00068{left:564.666667pt;}
.x73_c00068{left:567.066667pt;}
.x4e_c00068{left:570.533333pt;}
.x13c_c00068{left:571.600000pt;}
.x11_c00068{left:573.466667pt;}
.x12a_c00068{left:575.466667pt;}
.x20_c00068{left:576.933333pt;}
.x10d_c00068{left:578.933333pt;}
.xb6_c00068{left:580.400000pt;}
.x5b_c00068{left:581.733333pt;}
.x118_c00068{left:583.200000pt;}
.xdb_c00068{left:585.333333pt;}
.x94_c00068{left:586.933333pt;}
.x31_c00068{left:588.266667pt;}
.xc8_c00068{left:589.200000pt;}
.x3f_c00068{left:590.666667pt;}
.x67_c00068{left:595.600000pt;}
.xac_c00068{left:597.333333pt;}
.x139_c00068{left:598.666667pt;}
.xdc_c00068{left:601.333333pt;}
.x95_c00068{left:603.200000pt;}
.xa6_c00068{left:604.133333pt;}
.x7e_c00068{left:606.400000pt;}
.x8f_c00068{left:607.333333pt;}
.xe8_c00068{left:610.666667pt;}
.x12f_c00068{left:611.600000pt;}
.x9e_c00068{left:613.066667pt;}
.xed_c00068{left:616.400000pt;}
.x68_c00068{left:618.000000pt;}
.x11b_c00068{left:619.066667pt;}
.x106_c00068{left:620.400000pt;}
.xc1_c00068{left:622.933333pt;}
.x12_c00068{left:624.000000pt;}
.x74_c00068{left:625.600000pt;}
.x32_c00068{left:627.600000pt;}
.xff_c00068{left:628.666667pt;}
.x40_c00068{left:631.600000pt;}
.x5c_c00068{left:632.666667pt;}
.x96_c00068{left:634.266667pt;}
.xb7_c00068{left:636.133333pt;}
.xcf_c00068{left:637.200000pt;}
.x10e_c00068{left:638.533333pt;}
.x87_c00068{left:641.600000pt;}
.x121_c00068{left:643.200000pt;}
.x13_c00068{left:644.533333pt;}
.xc2_c00068{left:647.200000pt;}
.xe0_c00068{left:649.066667pt;}
.x4f_c00068{left:651.466667pt;}
.x33_c00068{left:652.533333pt;}
.x21_c00068{left:654.000000pt;}
.x5d_c00068{left:656.933333pt;}
.x75_c00068{left:658.533333pt;}
.x69_c00068{left:661.866667pt;}
.x130_c00068{left:662.800000pt;}
.xf3_c00068{left:665.200000pt;}
.x41_c00068{left:668.133333pt;}
.x125_c00068{left:669.733333pt;}
.xe1_c00068{left:671.466667pt;}
.x9f_c00068{left:676.400000pt;}
.xa7_c00068{left:677.733333pt;}
.x22_c00068{left:678.666667pt;}
.xd6_c00068{left:680.133333pt;}
.x88_c00068{left:682.800000pt;}
.xad_c00068{left:685.733333pt;}
.x34_c00068{left:687.066667pt;}
.xd0_c00068{left:688.400000pt;}
.xe9_c00068{left:689.333333pt;}
.x5e_c00068{left:691.200000pt;}
.xfa_c00068{left:692.133333pt;}
.x14_c00068{left:695.066667pt;}
.x7f_c00068{left:696.933333pt;}
.x6a_c00068{left:698.666667pt;}
.x42_c00068{left:699.866667pt;}
.xa0_c00068{left:701.066667pt;}
.x107_c00068{left:702.000000pt;}
.x135_c00068{left:703.466667pt;}
.x35_c00068{left:704.666667pt;}
.xae_c00068{left:705.600000pt;}
.x13d_c00068{left:707.600000pt;}
.x113_c00068{left:709.200000pt;}
.xe2_c00068{left:710.266667pt;}
.x50_c00068{left:711.333333pt;}
.x90_c00068{left:713.333333pt;}
.x23_c00068{left:714.800000pt;}
.x76_c00068{left:715.733333pt;}
.x6b_c00068{left:718.800000pt;}
}





/* 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_c00069 {
    display:none;
  }
  .loading-indicator_c00069.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00069 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_c00069 { 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_c00069" -> "#page-container .classname_c00069")
 */
.pf_c00069 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00069 { /* 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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00069 { /* 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_c00069 { /* 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_c00069 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00069 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00069 {overflow:visible;}
  }
}
.c_c00069 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00069 { /* 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_c00069:after { /* webkit #35443 */
  content: '';
}
.t_c00069:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00069 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 */
}
.__c00069 { /* 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_c00069 { /* info for Javascript */
  display:none;
}
.l_c00069 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00069 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00069 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00069: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_c00069 {
    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_c00069.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00069.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_c00069 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00069{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00069;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.000000;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;}
.m38_c00069{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m15_c00069{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m96_c00069{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma_c00069{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m83_c00069{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00069{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m47_c00069{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00069{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m21_c00069{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00069{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00069{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00069{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m24_c00069{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m71_c00069{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m20_c00069{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m76_c00069{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00069{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00069{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m35_c00069{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00069{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m70_c00069{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00069{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00069{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m48_c00069{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m39_c00069{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00069{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00069{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00069{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m63_c00069{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m88_c00069{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m36_c00069{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c00069{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m46_c00069{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00069{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00069{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m95_c00069{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00069{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m31_c00069{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m17_c00069{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00069{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00069{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00069{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m27_c00069{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m77_c00069{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00069{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00069{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00069{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m98_c00069{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m34_c00069{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00069{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m86_c00069{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00069{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00069{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00069{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00069{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00069{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m66_c00069{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00069{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00069{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m33_c00069{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m87_c00069{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00069{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00069{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m90_c00069{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m99_c00069{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m49_c00069{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m65_c00069{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m56_c00069{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00069{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m50_c00069{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m81_c00069{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00069{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m72_c00069{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00069{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00069{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m59_c00069{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00069{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00069{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00069{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);}
.m2_c00069{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00069{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m45_c00069{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m37_c00069{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00069{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00069{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m14_c00069{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00069{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00069{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m64_c00069{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00069{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00069{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00069{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00069{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m52_c00069{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00069{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00069{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m22_c00069{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00069{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00069{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m68_c00069{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m60_c00069{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m18_c00069{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m25_c00069{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m54_c00069{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m28_c00069{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m74_c00069{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00069{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m51_c00069{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m12_c00069{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m91_c00069{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m58_c00069{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m62_c00069{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m19_c00069{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00069{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00069{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00069{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m61_c00069{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m78_c00069{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m97_c00069{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00069{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m85_c00069{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m43_c00069{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m69_c00069{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m80_c00069{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m53_c00069{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m94_c00069{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m57_c00069{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m26_c00069{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m44_c00069{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m32_c00069{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m30_c00069{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c00069{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00069{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00069{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m93_c00069{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00069{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m82_c00069{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m92_c00069{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m84_c00069{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m16_c00069{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m89_c00069{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00069{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m75_c00069{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m67_c00069{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00069{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m29_c00069{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00069{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00069{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00069{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{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__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00069{word-spacing:-4.133568px;}
.ws9_c00069{word-spacing:-2.875000px;}
.ws1_c00069{word-spacing:-1.625000px;}
.wsd_c00069{word-spacing:0.000000px;}
.ws3_c00069{word-spacing:0.214286px;}
.ws4_c00069{word-spacing:2.750000px;}
.ws8_c00069{word-spacing:5.024316px;}
.ws6_c00069{word-spacing:6.000000px;}
.ws2_c00069{word-spacing:8.427653px;}
.wsc_c00069{word-spacing:12.320525px;}
.ws5_c00069{word-spacing:13.250000px;}
.wsb_c00069{word-spacing:19.321543px;}
.ws7_c00069{word-spacing:28.956710px;}
.ws0_c00069{word-spacing:720.500000px;}
.fc0_c00069{color:transparent;}
.fs0_c00069{font-size:54.000000px;}
.y0_c00069{bottom:0.000000px;}
.y2c_c00069{bottom:142.500000px;}
.y2b_c00069{bottom:183.000000px;}
.y2a_c00069{bottom:202.800000px;}
.y29_c00069{bottom:222.600000px;}
.y28_c00069{bottom:242.400000px;}
.y27_c00069{bottom:262.200000px;}
.y26_c00069{bottom:282.300000px;}
.y25_c00069{bottom:301.800000px;}
.y24_c00069{bottom:321.600000px;}
.y23_c00069{bottom:341.700000px;}
.y22_c00069{bottom:361.500000px;}
.y21_c00069{bottom:381.300000px;}
.y20_c00069{bottom:401.400000px;}
.y1f_c00069{bottom:421.200000px;}
.y1e_c00069{bottom:441.000000px;}
.y1d_c00069{bottom:460.650000px;}
.y1c_c00069{bottom:480.750000px;}
.y1b_c00069{bottom:500.550000px;}
.y1a_c00069{bottom:520.650000px;}
.y19_c00069{bottom:540.450000px;}
.y18_c00069{bottom:560.250000px;}
.y17_c00069{bottom:580.350000px;}
.y16_c00069{bottom:600.150000px;}
.y15_c00069{bottom:619.950000px;}
.y14_c00069{bottom:639.900000px;}
.y13_c00069{bottom:659.700000px;}
.y12_c00069{bottom:679.800000px;}
.y11_c00069{bottom:699.600000px;}
.y10_c00069{bottom:719.400000px;}
.yf_c00069{bottom:739.500000px;}
.ye_c00069{bottom:759.300000px;}
.yd_c00069{bottom:779.100000px;}
.yc_c00069{bottom:799.200000px;}
.yb_c00069{bottom:819.000000px;}
.ya_c00069{bottom:839.100000px;}
.y9_c00069{bottom:858.900000px;}
.y8_c00069{bottom:878.550000px;}
.y7_c00069{bottom:898.350000px;}
.y6_c00069{bottom:918.450000px;}
.y5_c00069{bottom:938.550000px;}
.y4_c00069{bottom:958.650000px;}
.y3_c00069{bottom:978.150000px;}
.y2_c00069{bottom:997.950000px;}
.y1_c00069{bottom:1037.100000px;}
.h2_c00069{height:54.000000px;}
.h1_c00069{height:1167.000000px;}
.h0_c00069{height:1167.119934px;}
.w0_c00069{width:913.320007px;}
.w1_c00069{width:913.500000px;}
.x0_c00069{left:0.000000px;}
.x3_c00069{left:101.550000px;}
.x37_c00069{left:102.600000px;}
.xc7_c00069{left:104.250000px;}
.xe6_c00069{left:105.750000px;}
.x17_c00069{left:117.450000px;}
.x38_c00069{left:122.700000px;}
.xc1_c00069{left:124.950000px;}
.x90_c00069{left:128.250000px;}
.xdd_c00069{left:130.050000px;}
.x61_c00069{left:131.550000px;}
.x6a_c00069{left:133.200000px;}
.x18_c00069{left:134.700000px;}
.xc8_c00069{left:135.900000px;}
.x55_c00069{left:139.950000px;}
.x122_c00069{left:144.000000px;}
.x47_c00069{left:146.100000px;}
.x85_c00069{left:147.450000px;}
.x39_c00069{left:151.200000px;}
.x27_c00069{left:152.850000px;}
.x62_c00069{left:154.650000px;}
.x11e_c00069{left:156.150000px;}
.xd5_c00069{left:157.350000px;}
.x99_c00069{left:159.300000px;}
.xf1_c00069{left:160.950000px;}
.x117_c00069{left:162.900000px;}
.x110_c00069{left:163.950000px;}
.xde_c00069{left:167.100000px;}
.x6b_c00069{left:169.200000px;}
.x4_c00069{left:171.000000px;}
.x19_c00069{left:173.250000px;}
.xd6_c00069{left:174.600000px;}
.x48_c00069{left:176.400000px;}
.xe7_c00069{left:177.450000px;}
.xbb_c00069{left:179.850000px;}
.x86_c00069{left:181.650000px;}
.xc2_c00069{left:183.300000px;}
.xd1_c00069{left:185.100000px;}
.xe2_c00069{left:186.300000px;}
.x9a_c00069{left:191.400000px;}
.x5_c00069{left:192.600000px;}
.xbc_c00069{left:194.250000px;}
.x6c_c00069{left:195.900000px;}
.x11c_c00069{left:197.400000px;}
.x56_c00069{left:199.350000px;}
.x49_c00069{left:202.350000px;}
.x1a_c00069{left:204.150000px;}
.xa4_c00069{left:205.200000px;}
.xdf_c00069{left:206.700000px;}
.x91_c00069{left:209.850000px;}
.x6_c00069{left:211.650000px;}
.xf2_c00069{left:212.700000px;}
.x63_c00069{left:214.050000px;}
.xb6_c00069{left:216.450000px;}
.xf7_c00069{left:218.250000px;}
.xa5_c00069{left:221.400000px;}
.x6d_c00069{left:224.400000px;}
.x7a_c00069{left:225.450000px;}
.xc9_c00069{left:228.000000px;}
.x7_c00069{left:230.400000px;}
.xd7_c00069{left:231.750000px;}
.x28_c00069{left:233.100000px;}
.x9b_c00069{left:234.300000px;}
.x87_c00069{left:236.400000px;}
.xf8_c00069{left:239.100000px;}
.x3a_c00069{left:241.950000px;}
.xd2_c00069{left:243.000000px;}
.xaf_c00069{left:245.850000px;}
.x7b_c00069{left:249.150000px;}
.x9c_c00069{left:251.250000px;}
.xf9_c00069{left:254.550000px;}
.x11d_c00069{left:255.750000px;}
.x111_c00069{left:257.100000px;}
.xb7_c00069{left:259.950000px;}
.xca_c00069{left:262.200000px;}
.x101_c00069{left:264.150000px;}
.x57_c00069{left:266.250000px;}
.x92_c00069{left:267.900000px;}
.x3b_c00069{left:268.950000px;}
.x29_c00069{left:270.600000px;}
.xd8_c00069{left:271.650000px;}
.x8_c00069{left:273.900000px;}
.x88_c00069{left:274.950000px;}
.x4a_c00069{left:276.600000px;}
.x7c_c00069{left:277.950000px;}
.x64_c00069{left:280.350000px;}
.x12e_c00069{left:281.400000px;}
.xc3_c00069{left:284.700000px;}
.x3c_c00069{left:287.700000px;}
.x6e_c00069{left:291.000000px;}
.x1b_c00069{left:292.050000px;}
.xbd_c00069{left:293.700000px;}
.xe8_c00069{left:296.550000px;}
.xa6_c00069{left:298.500000px;}
.xd9_c00069{left:300.450000px;}
.x89_c00069{left:303.000000px;}
.x1c_c00069{left:304.650000px;}
.x106_c00069{left:306.450000px;}
.x9_c00069{left:308.100000px;}
.x12f_c00069{left:309.450000px;}
.x12b_c00069{left:310.950000px;}
.x65_c00069{left:312.450000px;}
.xb0_c00069{left:314.250000px;}
.x102_c00069{left:316.050000px;}
.x4b_c00069{left:317.700000px;}
.x2a_c00069{left:321.300000px;}
.xa7_c00069{left:324.450000px;}
.x93_c00069{left:328.050000px;}
.x128_c00069{left:330.450000px;}
.x3d_c00069{left:331.650000px;}
.x136_c00069{left:332.700000px;}
.x58_c00069{left:334.950000px;}
.xcb_c00069{left:339.300000px;}
.x66_c00069{left:341.550000px;}
.x4c_c00069{left:342.600000px;}
.xa_c00069{left:344.850000px;}
.x1d_c00069{left:347.100000px;}
.xbe_c00069{left:352.350000px;}
.x1_c00069{left:354.300000px;}
.xf3_c00069{left:356.100000px;}
.x2b_c00069{left:358.800000px;}
.x94_c00069{left:361.200000px;}
.x6f_c00069{left:362.250000px;}
.xe3_c00069{left:363.750000px;}
.x7d_c00069{left:365.550000px;}
.xb1_c00069{left:367.500000px;}
.x127_c00069{left:369.300000px;}
.x118_c00069{left:370.350000px;}
.xc4_c00069{left:371.550000px;}
.x4d_c00069{left:377.100000px;}
.x67_c00069{left:379.050000px;}
.xb_c00069{left:380.100000px;}
.x7e_c00069{left:382.800000px;}
.x3e_c00069{left:383.850000px;}
.xfa_c00069{left:385.200000px;}
.x9d_c00069{left:387.000000px;}
.x2c_c00069{left:388.650000px;}
.x12c_c00069{left:391.950000px;}
.x1e_c00069{left:393.600000px;}
.xe9_c00069{left:395.550000px;}
.x70_c00069{left:400.050000px;}
.x129_c00069{left:402.150000px;}
.x59_c00069{left:403.650000px;}
.x2d_c00069{left:406.950000px;}
.xcc_c00069{left:409.500000px;}
.x134_c00069{left:410.550000px;}
.x3f_c00069{left:411.600000px;}
.xfb_c00069{left:412.950000px;}
.xa8_c00069{left:414.450000px;}
.x112_c00069{left:416.250000px;}
.x9e_c00069{left:418.350000px;}
.xda_c00069{left:422.100000px;}
.x130_c00069{left:423.150000px;}
.x103_c00069{left:425.100000px;}
.x4e_c00069{left:426.750000px;}
.x5a_c00069{left:429.600000px;}
.xb2_c00069{left:430.800000px;}
.xcd_c00069{left:433.200000px;}
.x71_c00069{left:436.350000px;}
.x1f_c00069{left:437.550000px;}
.x107_c00069{left:438.900000px;}
.x10f_c00069{left:440.250000px;}
.x135_c00069{left:442.650000px;}
.x119_c00069{left:443.700000px;}
.x2_c00069{left:445.350000px;}
.x113_c00069{left:446.550000px;}
.x68_c00069{left:448.200000px;}
.xc_c00069{left:449.550000px;}
.x8a_c00069{left:455.250000px;}
.x20_c00069{left:457.050000px;}
.x9f_c00069{left:459.000000px;}
.xea_c00069{left:460.050000px;}
.x12d_c00069{left:461.400000px;}
.xa9_c00069{left:462.750000px;}
.x2e_c00069{left:464.850000px;}
.x40_c00069{left:466.650000px;}
.xb8_c00069{left:468.450000px;}
.xd_c00069{left:469.650000px;}
.x69_c00069{left:472.350000px;}
.x8b_c00069{left:475.050000px;}
.x72_c00069{left:479.550000px;}
.x114_c00069{left:481.500000px;}
.x2f_c00069{left:482.550000px;}
.x7f_c00069{left:484.350000px;}
.x108_c00069{left:487.500000px;}
.xe_c00069{left:490.200000px;}
.xd3_c00069{left:492.750000px;}
.xeb_c00069{left:493.950000px;}
.xe0_c00069{left:495.450000px;}
.xa0_c00069{left:499.650000px;}
.x73_c00069{left:500.850000px;}
.x21_c00069{left:503.850000px;}
.x4f_c00069{left:505.200000px;}
.x95_c00069{left:506.250000px;}
.x30_c00069{left:507.750000px;}
.xaa_c00069{left:509.850000px;}
.x5b_c00069{left:512.100000px;}
.x11f_c00069{left:513.600000px;}
.x131_c00069{left:514.950000px;}
.x8c_c00069{left:519.000000px;}
.xd4_c00069{left:520.800000px;}
.xec_c00069{left:523.050000px;}
.x41_c00069{left:525.300000px;}
.xfc_c00069{left:526.350000px;}
.xf_c00069{left:528.750000px;}
.x31_c00069{left:531.150000px;}
.xe4_c00069{left:532.650000px;}
.x22_c00069{left:535.200000px;}
.x74_c00069{left:537.150000px;}
.xa1_c00069{left:538.500000px;}
.xb3_c00069{left:540.150000px;}
.xf4_c00069{left:544.350000px;}
.xdb_c00069{left:545.550000px;}
.xce_c00069{left:546.900000px;}
.x133_c00069{left:548.250000px;}
.x10_c00069{left:549.300000px;}
.x42_c00069{left:551.550000px;}
.xbf_c00069{left:553.650000px;}
.x5c_c00069{left:556.800000px;}
.x32_c00069{left:558.450000px;}
.x109_c00069{left:560.250000px;}
.x115_c00069{left:561.450000px;}
.xfd_c00069{left:567.450000px;}
.x123_c00069{left:568.950000px;}
.x50_c00069{left:573.000000px;}
.x12a_c00069{left:575.550000px;}
.x5d_c00069{left:576.600000px;}
.xed_c00069{left:580.200000px;}
.xc0_c00069{left:583.200000px;}
.xf5_c00069{left:584.250000px;}
.x23_c00069{left:585.300000px;}
.xab_c00069{left:586.800000px;}
.x11_c00069{left:587.850000px;}
.x75_c00069{left:590.100000px;}
.xe1_c00069{left:592.800000px;}
.x80_c00069{left:594.150000px;}
.x33_c00069{left:595.500000px;}
.x96_c00069{left:597.600000px;}
.xb9_c00069{left:598.800000px;}
.x124_c00069{left:602.100000px;}
.xc5_c00069{left:603.600000px;}
.x51_c00069{left:605.100000px;}
.x76_c00069{left:608.100000px;}
.x12_c00069{left:610.950000px;}
.xdc_c00069{left:612.900000px;}
.x125_c00069{left:615.750000px;}
.xb4_c00069{left:618.300000px;}
.x120_c00069{left:620.850000px;}
.x104_c00069{left:622.050000px;}
.x10a_c00069{left:623.700000px;}
.x43_c00069{left:626.850000px;}
.x11a_c00069{left:628.650000px;}
.x24_c00069{left:630.000000px;}
.x34_c00069{left:632.250000px;}
.xac_c00069{left:635.400000px;}
.x81_c00069{left:636.600000px;}
.x10b_c00069{left:638.850000px;}
.x13_c00069{left:640.050000px;}
.x8d_c00069{left:641.400000px;}
.x52_c00069{left:645.000000px;}
.x121_c00069{left:646.350000px;}
.xfe_c00069{left:647.400000px;}
.xa2_c00069{left:649.050000px;}
.xee_c00069{left:650.850000px;}
.xad_c00069{left:655.500000px;}
.x132_c00069{left:656.700000px;}
.xba_c00069{left:658.200000px;}
.x97_c00069{left:659.850000px;}
.x35_c00069{left:662.850000px;}
.x10c_c00069{left:664.350000px;}
.xa3_c00069{left:667.800000px;}
.xef_c00069{left:668.850000px;}
.x44_c00069{left:672.900000px;}
.x5e_c00069{left:674.100000px;}
.x25_c00069{left:677.850000px;}
.xff_c00069{left:679.500000px;}
.x14_c00069{left:681.150000px;}
.xae_c00069{left:683.250000px;}
.x126_c00069{left:685.950000px;}
.x82_c00069{left:689.550000px;}
.x8e_c00069{left:692.100000px;}
.xcf_c00069{left:694.800000px;}
.x53_c00069{left:696.150000px;}
.xf0_c00069{left:697.350000px;}
.xb5_c00069{left:698.550000px;}
.x15_c00069{left:700.650000px;}
.x116_c00069{left:701.850000px;}
.x77_c00069{left:706.050000px;}
.x100_c00069{left:708.600000px;}
.x98_c00069{left:710.550000px;}
.xd0_c00069{left:712.500000px;}
.x26_c00069{left:714.150000px;}
.x5f_c00069{left:715.500000px;}
.x36_c00069{left:718.200000px;}
.x8f_c00069{left:719.400000px;}
.x78_c00069{left:725.850000px;}
.x45_c00069{left:728.700000px;}
.x10d_c00069{left:730.650000px;}
.x83_c00069{left:734.550000px;}
.x105_c00069{left:736.200000px;}
.xc6_c00069{left:737.550000px;}
.xf6_c00069{left:738.750000px;}
.x79_c00069{left:740.550000px;}
.x16_c00069{left:742.350000px;}
.x54_c00069{left:745.050000px;}
.xe5_c00069{left:746.550000px;}
.x46_c00069{left:748.500000px;}
.x10e_c00069{left:749.700000px;}
.x84_c00069{left:752.250000px;}
.x60_c00069{left:755.100000px;}
.x11b_c00069{left:760.050000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.wsa_c00069{word-spacing:-3.674282pt;}
.ws9_c00069{word-spacing:-2.555556pt;}
.ws1_c00069{word-spacing:-1.444444pt;}
.wsd_c00069{word-spacing:0.000000pt;}
.ws3_c00069{word-spacing:0.190476pt;}
.ws4_c00069{word-spacing:2.444444pt;}
.ws8_c00069{word-spacing:4.466059pt;}
.ws6_c00069{word-spacing:5.333333pt;}
.ws2_c00069{word-spacing:7.491247pt;}
.wsc_c00069{word-spacing:10.951578pt;}
.ws5_c00069{word-spacing:11.777778pt;}
.wsb_c00069{word-spacing:17.174705pt;}
.ws7_c00069{word-spacing:25.739298pt;}
.ws0_c00069{word-spacing:640.444444pt;}
.fs0_c00069{font-size:48.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y2c_c00069{bottom:126.666667pt;}
.y2b_c00069{bottom:162.666667pt;}
.y2a_c00069{bottom:180.266667pt;}
.y29_c00069{bottom:197.866667pt;}
.y28_c00069{bottom:215.466667pt;}
.y27_c00069{bottom:233.066667pt;}
.y26_c00069{bottom:250.933333pt;}
.y25_c00069{bottom:268.266667pt;}
.y24_c00069{bottom:285.866667pt;}
.y23_c00069{bottom:303.733333pt;}
.y22_c00069{bottom:321.333333pt;}
.y21_c00069{bottom:338.933333pt;}
.y20_c00069{bottom:356.800000pt;}
.y1f_c00069{bottom:374.400000pt;}
.y1e_c00069{bottom:392.000000pt;}
.y1d_c00069{bottom:409.466667pt;}
.y1c_c00069{bottom:427.333333pt;}
.y1b_c00069{bottom:444.933333pt;}
.y1a_c00069{bottom:462.800000pt;}
.y19_c00069{bottom:480.400000pt;}
.y18_c00069{bottom:498.000000pt;}
.y17_c00069{bottom:515.866667pt;}
.y16_c00069{bottom:533.466667pt;}
.y15_c00069{bottom:551.066667pt;}
.y14_c00069{bottom:568.800000pt;}
.y13_c00069{bottom:586.400000pt;}
.y12_c00069{bottom:604.266667pt;}
.y11_c00069{bottom:621.866667pt;}
.y10_c00069{bottom:639.466667pt;}
.yf_c00069{bottom:657.333333pt;}
.ye_c00069{bottom:674.933333pt;}
.yd_c00069{bottom:692.533333pt;}
.yc_c00069{bottom:710.400000pt;}
.yb_c00069{bottom:728.000000pt;}
.ya_c00069{bottom:745.866667pt;}
.y9_c00069{bottom:763.466667pt;}
.y8_c00069{bottom:780.933333pt;}
.y7_c00069{bottom:798.533333pt;}
.y6_c00069{bottom:816.400000pt;}
.y5_c00069{bottom:834.266667pt;}
.y4_c00069{bottom:852.133333pt;}
.y3_c00069{bottom:869.466667pt;}
.y2_c00069{bottom:887.066667pt;}
.y1_c00069{bottom:921.866667pt;}
.h2_c00069{height:48.000000pt;}
.h1_c00069{height:1037.333333pt;}
.h0_c00069{height:1037.439941pt;}
.w0_c00069{width:811.840007pt;}
.w1_c00069{width:812.000000pt;}
.x0_c00069{left:0.000000pt;}
.x3_c00069{left:90.266667pt;}
.x37_c00069{left:91.200000pt;}
.xc7_c00069{left:92.666667pt;}
.xe6_c00069{left:94.000000pt;}
.x17_c00069{left:104.400000pt;}
.x38_c00069{left:109.066667pt;}
.xc1_c00069{left:111.066667pt;}
.x90_c00069{left:114.000000pt;}
.xdd_c00069{left:115.600000pt;}
.x61_c00069{left:116.933333pt;}
.x6a_c00069{left:118.400000pt;}
.x18_c00069{left:119.733333pt;}
.xc8_c00069{left:120.800000pt;}
.x55_c00069{left:124.400000pt;}
.x122_c00069{left:128.000000pt;}
.x47_c00069{left:129.866667pt;}
.x85_c00069{left:131.066667pt;}
.x39_c00069{left:134.400000pt;}
.x27_c00069{left:135.866667pt;}
.x62_c00069{left:137.466667pt;}
.x11e_c00069{left:138.800000pt;}
.xd5_c00069{left:139.866667pt;}
.x99_c00069{left:141.600000pt;}
.xf1_c00069{left:143.066667pt;}
.x117_c00069{left:144.800000pt;}
.x110_c00069{left:145.733333pt;}
.xde_c00069{left:148.533333pt;}
.x6b_c00069{left:150.400000pt;}
.x4_c00069{left:152.000000pt;}
.x19_c00069{left:154.000000pt;}
.xd6_c00069{left:155.200000pt;}
.x48_c00069{left:156.800000pt;}
.xe7_c00069{left:157.733333pt;}
.xbb_c00069{left:159.866667pt;}
.x86_c00069{left:161.466667pt;}
.xc2_c00069{left:162.933333pt;}
.xd1_c00069{left:164.533333pt;}
.xe2_c00069{left:165.600000pt;}
.x9a_c00069{left:170.133333pt;}
.x5_c00069{left:171.200000pt;}
.xbc_c00069{left:172.666667pt;}
.x6c_c00069{left:174.133333pt;}
.x11c_c00069{left:175.466667pt;}
.x56_c00069{left:177.200000pt;}
.x49_c00069{left:179.866667pt;}
.x1a_c00069{left:181.466667pt;}
.xa4_c00069{left:182.400000pt;}
.xdf_c00069{left:183.733333pt;}
.x91_c00069{left:186.533333pt;}
.x6_c00069{left:188.133333pt;}
.xf2_c00069{left:189.066667pt;}
.x63_c00069{left:190.266667pt;}
.xb6_c00069{left:192.400000pt;}
.xf7_c00069{left:194.000000pt;}
.xa5_c00069{left:196.800000pt;}
.x6d_c00069{left:199.466667pt;}
.x7a_c00069{left:200.400000pt;}
.xc9_c00069{left:202.666667pt;}
.x7_c00069{left:204.800000pt;}
.xd7_c00069{left:206.000000pt;}
.x28_c00069{left:207.200000pt;}
.x9b_c00069{left:208.266667pt;}
.x87_c00069{left:210.133333pt;}
.xf8_c00069{left:212.533333pt;}
.x3a_c00069{left:215.066667pt;}
.xd2_c00069{left:216.000000pt;}
.xaf_c00069{left:218.533333pt;}
.x7b_c00069{left:221.466667pt;}
.x9c_c00069{left:223.333333pt;}
.xf9_c00069{left:226.266667pt;}
.x11d_c00069{left:227.333333pt;}
.x111_c00069{left:228.533333pt;}
.xb7_c00069{left:231.066667pt;}
.xca_c00069{left:233.066667pt;}
.x101_c00069{left:234.800000pt;}
.x57_c00069{left:236.666667pt;}
.x92_c00069{left:238.133333pt;}
.x3b_c00069{left:239.066667pt;}
.x29_c00069{left:240.533333pt;}
.xd8_c00069{left:241.466667pt;}
.x8_c00069{left:243.466667pt;}
.x88_c00069{left:244.400000pt;}
.x4a_c00069{left:245.866667pt;}
.x7c_c00069{left:247.066667pt;}
.x64_c00069{left:249.200000pt;}
.x12e_c00069{left:250.133333pt;}
.xc3_c00069{left:253.066667pt;}
.x3c_c00069{left:255.733333pt;}
.x6e_c00069{left:258.666667pt;}
.x1b_c00069{left:259.600000pt;}
.xbd_c00069{left:261.066667pt;}
.xe8_c00069{left:263.600000pt;}
.xa6_c00069{left:265.333333pt;}
.xd9_c00069{left:267.066667pt;}
.x89_c00069{left:269.333333pt;}
.x1c_c00069{left:270.800000pt;}
.x106_c00069{left:272.400000pt;}
.x9_c00069{left:273.866667pt;}
.x12f_c00069{left:275.066667pt;}
.x12b_c00069{left:276.400000pt;}
.x65_c00069{left:277.733333pt;}
.xb0_c00069{left:279.333333pt;}
.x102_c00069{left:280.933333pt;}
.x4b_c00069{left:282.400000pt;}
.x2a_c00069{left:285.600000pt;}
.xa7_c00069{left:288.400000pt;}
.x93_c00069{left:291.600000pt;}
.x128_c00069{left:293.733333pt;}
.x3d_c00069{left:294.800000pt;}
.x136_c00069{left:295.733333pt;}
.x58_c00069{left:297.733333pt;}
.xcb_c00069{left:301.600000pt;}
.x66_c00069{left:303.600000pt;}
.x4c_c00069{left:304.533333pt;}
.xa_c00069{left:306.533333pt;}
.x1d_c00069{left:308.533333pt;}
.xbe_c00069{left:313.200000pt;}
.x1_c00069{left:314.933333pt;}
.xf3_c00069{left:316.533333pt;}
.x2b_c00069{left:318.933333pt;}
.x94_c00069{left:321.066667pt;}
.x6f_c00069{left:322.000000pt;}
.xe3_c00069{left:323.333333pt;}
.x7d_c00069{left:324.933333pt;}
.xb1_c00069{left:326.666667pt;}
.x127_c00069{left:328.266667pt;}
.x118_c00069{left:329.200000pt;}
.xc4_c00069{left:330.266667pt;}
.x4d_c00069{left:335.200000pt;}
.x67_c00069{left:336.933333pt;}
.xb_c00069{left:337.866667pt;}
.x7e_c00069{left:340.266667pt;}
.x3e_c00069{left:341.200000pt;}
.xfa_c00069{left:342.400000pt;}
.x9d_c00069{left:344.000000pt;}
.x2c_c00069{left:345.466667pt;}
.x12c_c00069{left:348.400000pt;}
.x1e_c00069{left:349.866667pt;}
.xe9_c00069{left:351.600000pt;}
.x70_c00069{left:355.600000pt;}
.x129_c00069{left:357.466667pt;}
.x59_c00069{left:358.800000pt;}
.x2d_c00069{left:361.733333pt;}
.xcc_c00069{left:364.000000pt;}
.x134_c00069{left:364.933333pt;}
.x3f_c00069{left:365.866667pt;}
.xfb_c00069{left:367.066667pt;}
.xa8_c00069{left:368.400000pt;}
.x112_c00069{left:370.000000pt;}
.x9e_c00069{left:371.866667pt;}
.xda_c00069{left:375.200000pt;}
.x130_c00069{left:376.133333pt;}
.x103_c00069{left:377.866667pt;}
.x4e_c00069{left:379.333333pt;}
.x5a_c00069{left:381.866667pt;}
.xb2_c00069{left:382.933333pt;}
.xcd_c00069{left:385.066667pt;}
.x71_c00069{left:387.866667pt;}
.x1f_c00069{left:388.933333pt;}
.x107_c00069{left:390.133333pt;}
.x10f_c00069{left:391.333333pt;}
.x135_c00069{left:393.466667pt;}
.x119_c00069{left:394.400000pt;}
.x2_c00069{left:395.866667pt;}
.x113_c00069{left:396.933333pt;}
.x68_c00069{left:398.400000pt;}
.xc_c00069{left:399.600000pt;}
.x8a_c00069{left:404.666667pt;}
.x20_c00069{left:406.266667pt;}
.x9f_c00069{left:408.000000pt;}
.xea_c00069{left:408.933333pt;}
.x12d_c00069{left:410.133333pt;}
.xa9_c00069{left:411.333333pt;}
.x2e_c00069{left:413.200000pt;}
.x40_c00069{left:414.800000pt;}
.xb8_c00069{left:416.400000pt;}
.xd_c00069{left:417.466667pt;}
.x69_c00069{left:419.866667pt;}
.x8b_c00069{left:422.266667pt;}
.x72_c00069{left:426.266667pt;}
.x114_c00069{left:428.000000pt;}
.x2f_c00069{left:428.933333pt;}
.x7f_c00069{left:430.533333pt;}
.x108_c00069{left:433.333333pt;}
.xe_c00069{left:435.733333pt;}
.xd3_c00069{left:438.000000pt;}
.xeb_c00069{left:439.066667pt;}
.xe0_c00069{left:440.400000pt;}
.xa0_c00069{left:444.133333pt;}
.x73_c00069{left:445.200000pt;}
.x21_c00069{left:447.866667pt;}
.x4f_c00069{left:449.066667pt;}
.x95_c00069{left:450.000000pt;}
.x30_c00069{left:451.333333pt;}
.xaa_c00069{left:453.200000pt;}
.x5b_c00069{left:455.200000pt;}
.x11f_c00069{left:456.533333pt;}
.x131_c00069{left:457.733333pt;}
.x8c_c00069{left:461.333333pt;}
.xd4_c00069{left:462.933333pt;}
.xec_c00069{left:464.933333pt;}
.x41_c00069{left:466.933333pt;}
.xfc_c00069{left:467.866667pt;}
.xf_c00069{left:470.000000pt;}
.x31_c00069{left:472.133333pt;}
.xe4_c00069{left:473.466667pt;}
.x22_c00069{left:475.733333pt;}
.x74_c00069{left:477.466667pt;}
.xa1_c00069{left:478.666667pt;}
.xb3_c00069{left:480.133333pt;}
.xf4_c00069{left:483.866667pt;}
.xdb_c00069{left:484.933333pt;}
.xce_c00069{left:486.133333pt;}
.x133_c00069{left:487.333333pt;}
.x10_c00069{left:488.266667pt;}
.x42_c00069{left:490.266667pt;}
.xbf_c00069{left:492.133333pt;}
.x5c_c00069{left:494.933333pt;}
.x32_c00069{left:496.400000pt;}
.x109_c00069{left:498.000000pt;}
.x115_c00069{left:499.066667pt;}
.xfd_c00069{left:504.400000pt;}
.x123_c00069{left:505.733333pt;}
.x50_c00069{left:509.333333pt;}
.x12a_c00069{left:511.600000pt;}
.x5d_c00069{left:512.533333pt;}
.xed_c00069{left:515.733333pt;}
.xc0_c00069{left:518.400000pt;}
.xf5_c00069{left:519.333333pt;}
.x23_c00069{left:520.266667pt;}
.xab_c00069{left:521.600000pt;}
.x11_c00069{left:522.533333pt;}
.x75_c00069{left:524.533333pt;}
.xe1_c00069{left:526.933333pt;}
.x80_c00069{left:528.133333pt;}
.x33_c00069{left:529.333333pt;}
.x96_c00069{left:531.200000pt;}
.xb9_c00069{left:532.266667pt;}
.x124_c00069{left:535.200000pt;}
.xc5_c00069{left:536.533333pt;}
.x51_c00069{left:537.866667pt;}
.x76_c00069{left:540.533333pt;}
.x12_c00069{left:543.066667pt;}
.xdc_c00069{left:544.800000pt;}
.x125_c00069{left:547.333333pt;}
.xb4_c00069{left:549.600000pt;}
.x120_c00069{left:551.866667pt;}
.x104_c00069{left:552.933333pt;}
.x10a_c00069{left:554.400000pt;}
.x43_c00069{left:557.200000pt;}
.x11a_c00069{left:558.800000pt;}
.x24_c00069{left:560.000000pt;}
.x34_c00069{left:562.000000pt;}
.xac_c00069{left:564.800000pt;}
.x81_c00069{left:565.866667pt;}
.x10b_c00069{left:567.866667pt;}
.x13_c00069{left:568.933333pt;}
.x8d_c00069{left:570.133333pt;}
.x52_c00069{left:573.333333pt;}
.x121_c00069{left:574.533333pt;}
.xfe_c00069{left:575.466667pt;}
.xa2_c00069{left:576.933333pt;}
.xee_c00069{left:578.533333pt;}
.xad_c00069{left:582.666667pt;}
.x132_c00069{left:583.733333pt;}
.xba_c00069{left:585.066667pt;}
.x97_c00069{left:586.533333pt;}
.x35_c00069{left:589.200000pt;}
.x10c_c00069{left:590.533333pt;}
.xa3_c00069{left:593.600000pt;}
.xef_c00069{left:594.533333pt;}
.x44_c00069{left:598.133333pt;}
.x5e_c00069{left:599.200000pt;}
.x25_c00069{left:602.533333pt;}
.xff_c00069{left:604.000000pt;}
.x14_c00069{left:605.466667pt;}
.xae_c00069{left:607.333333pt;}
.x126_c00069{left:609.733333pt;}
.x82_c00069{left:612.933333pt;}
.x8e_c00069{left:615.200000pt;}
.xcf_c00069{left:617.600000pt;}
.x53_c00069{left:618.800000pt;}
.xf0_c00069{left:619.866667pt;}
.xb5_c00069{left:620.933333pt;}
.x15_c00069{left:622.800000pt;}
.x116_c00069{left:623.866667pt;}
.x77_c00069{left:627.600000pt;}
.x100_c00069{left:629.866667pt;}
.x98_c00069{left:631.600000pt;}
.xd0_c00069{left:633.333333pt;}
.x26_c00069{left:634.800000pt;}
.x5f_c00069{left:636.000000pt;}
.x36_c00069{left:638.400000pt;}
.x8f_c00069{left:639.466667pt;}
.x78_c00069{left:645.200000pt;}
.x45_c00069{left:647.733333pt;}
.x10d_c00069{left:649.466667pt;}
.x83_c00069{left:652.933333pt;}
.x105_c00069{left:654.400000pt;}
.xc6_c00069{left:655.600000pt;}
.xf6_c00069{left:656.666667pt;}
.x79_c00069{left:658.266667pt;}
.x16_c00069{left:659.866667pt;}
.x54_c00069{left:662.266667pt;}
.xe5_c00069{left:663.600000pt;}
.x46_c00069{left:665.333333pt;}
.x10e_c00069{left:666.400000pt;}
.x84_c00069{left:668.666667pt;}
.x60_c00069{left:671.200000pt;}
.x11b_c00069{left:675.600000pt;}
}





/* 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_c00070 {
    display:none;
  }
  .loading-indicator_c00070.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00070 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_c00070 { 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_c00070" -> "#page-container .classname_c00070")
 */
.pf_c00070 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00070 { /* 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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00070 { /* 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_c00070 { /* 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_c00070 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00070 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00070 {overflow:visible;}
  }
}
.c_c00070 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00070 { /* 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_c00070:after { /* webkit #35443 */
  content: '';
}
.t_c00070:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00070 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 */
}
.__c00070 { /* 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_c00070 { /* info for Javascript */
  display:none;
}
.l_c00070 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00070 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00070 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00070: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_c00070 {
    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_c00070.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00070.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_c00070 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00070{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00070;src:url('chunks/assets/font_61a2dbaccd85e5c230bed072.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.000000;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;}
.m75_c00070{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m92_c00070{transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076000,0.000000,0.000000,0.250000,0,0);}
.m36_c00070{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m21_c00070{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m93_c00070{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00070{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00070{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m31_c00070{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m99_c00070{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m42_c00070{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00070{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m66_c00070{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m90_c00070{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00070{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m81_c00070{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m15_c00070{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m26_c00070{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m9_c00070{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00070{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m85_c00070{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00070{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00070{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m71_c00070{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m89_c00070{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m86_c00070{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m25_c00070{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00070{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m94_c00070{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00070{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00070{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00070{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m91_c00070{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00070{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m11_c00070{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00070{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00070{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00070{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m57_c00070{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m17_c00070{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00070{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m19_c00070{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00070{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6_c00070{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00070{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m87_c00070{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m38_c00070{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00070{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m23_c00070{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m12_c00070{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00070{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00070{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m98_c00070{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00070{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m50_c00070{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7_c00070{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m67_c00070{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00070{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m48_c00070{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00070{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00070{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m60_c00070{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00070{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00070{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m64_c00070{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00070{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00070{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me_c00070{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m77_c00070{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m45_c00070{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m97_c00070{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m44_c00070{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00070{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mf_c00070{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m84_c00070{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00070{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m65_c00070{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m63_c00070{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m18_c00070{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00070{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m53_c00070{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00070{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00070{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00070{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m70_c00070{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10_c00070{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00070{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00070{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00070{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m20_c00070{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m56_c00070{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00070{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00070{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m52_c00070{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m59_c00070{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md_c00070{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00070{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00070{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00070{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00070{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00070{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00070{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00070{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00070{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00070{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m68_c00070{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m27_c00070{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m54_c00070{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00070{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m47_c00070{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00070{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00070{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00070{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m39_c00070{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m83_c00070{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00070{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m76_c00070{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc_c00070{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00070{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00070{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m72_c00070{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00070{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mb_c00070{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00070{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m30_c00070{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m61_c00070{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m55_c00070{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00070{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00070{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m46_c00070{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m78_c00070{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00070{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00070{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m74_c00070{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m22_c00070{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m95_c00070{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m29_c00070{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00070{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00070{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m62_c00070{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00070{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00070{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m13_c00070{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00070{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00070{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00070{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m4_c00070{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00070{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m49_c00070{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m80_c00070{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m34_c00070{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00070{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m51_c00070{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m96_c00070{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m28_c00070{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m69_c00070{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00070{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m79_c00070{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00070{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m8_c00070{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00070{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m88_c00070{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.v0_c00070{vertical-align:0.000000px;}
.ls0_c00070{letter-spacing:0.000000px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{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__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:-9.756098px;}
.ws4_c00070{word-spacing:-4.722222px;}
.ws3_c00070{word-spacing:-3.942652px;}
.ws5_c00070{word-spacing:-1.764706px;}
.wsc_c00070{word-spacing:0.000000px;}
.ws6_c00070{word-spacing:3.055556px;}
.ws8_c00070{word-spacing:4.375000px;}
.ws1_c00070{word-spacing:5.000000px;}
.wsb_c00070{word-spacing:8.611111px;}
.wsa_c00070{word-spacing:9.736842px;}
.ws9_c00070{word-spacing:10.270270px;}
.ws7_c00070{word-spacing:13.194444px;}
.ws2_c00070{word-spacing:21.621622px;}
.fc0_c00070{color:transparent;}
.fs0_c00070{font-size:54.000000px;}
.fs1_c00070{font-size:60.000000px;}
.y0_c00070{bottom:0.000000px;}
.y2c_c00070{bottom:161.250000px;}
.y2b_c00070{bottom:201.300000px;}
.y2a_c00070{bottom:221.400000px;}
.y29_c00070{bottom:241.200000px;}
.y28_c00070{bottom:261.000000px;}
.y27_c00070{bottom:280.350000px;}
.y26_c00070{bottom:300.900000px;}
.y25_c00070{bottom:320.700000px;}
.y24_c00070{bottom:340.200000px;}
.y23_c00070{bottom:360.000000px;}
.y22_c00070{bottom:379.800000px;}
.y21_c00070{bottom:399.600000px;}
.y20_c00070{bottom:420.150000px;}
.y1f_c00070{bottom:439.950000px;}
.y1e_c00070{bottom:459.450000px;}
.y1d_c00070{bottom:479.550000px;}
.y1c_c00070{bottom:499.050000px;}
.y1b_c00070{bottom:519.150000px;}
.y1a_c00070{bottom:539.250000px;}
.y19_c00070{bottom:559.050000px;}
.y18_c00070{bottom:578.850000px;}
.y17_c00070{bottom:598.650000px;}
.y16_c00070{bottom:618.600000px;}
.y15_c00070{bottom:638.700000px;}
.y14_c00070{bottom:658.800000px;}
.y13_c00070{bottom:678.600000px;}
.y12_c00070{bottom:698.700000px;}
.y11_c00070{bottom:718.800000px;}
.y10_c00070{bottom:738.600000px;}
.yf_c00070{bottom:758.700000px;}
.ye_c00070{bottom:778.500000px;}
.yd_c00070{bottom:798.300000px;}
.yc_c00070{bottom:818.400000px;}
.yb_c00070{bottom:838.200000px;}
.ya_c00070{bottom:858.000000px;}
.y9_c00070{bottom:878.100000px;}
.y8_c00070{bottom:898.200000px;}
.y7_c00070{bottom:917.700000px;}
.y6_c00070{bottom:937.500000px;}
.y5_c00070{bottom:957.600000px;}
.y4_c00070{bottom:977.400000px;}
.y3_c00070{bottom:997.200000px;}
.y2_c00070{bottom:1017.000000px;}
.y1_c00070{bottom:1055.100000px;}
.h2_c00070{height:54.000000px;}
.h3_c00070{height:60.000000px;}
.h1_c00070{height:1167.000000px;}
.h0_c00070{height:1167.119934px;}
.w0_c00070{width:913.320007px;}
.w1_c00070{width:913.500000px;}
.x0_c00070{left:0.000000px;}
.x4_c00070{left:142.950000px;}
.x1_c00070{left:144.000000px;}
.x73_c00070{left:145.050000px;}
.x101_c00070{left:146.250000px;}
.x134_c00070{left:148.200000px;}
.x120_c00070{left:161.700000px;}
.x5_c00070{left:163.500000px;}
.x74_c00070{left:164.850000px;}
.x52_c00070{left:166.650000px;}
.x128_c00070{left:170.250000px;}
.x114_c00070{left:172.350000px;}
.x15_c00070{left:173.850000px;}
.xc1_c00070{left:175.650000px;}
.xe9_c00070{left:177.900000px;}
.x25_c00070{left:178.950000px;}
.x35_c00070{left:180.750000px;}
.xb9_c00070{left:182.550000px;}
.x9e_c00070{left:184.500000px;}
.x96_c00070{left:186.000000px;}
.xcf_c00070{left:187.500000px;}
.xab_c00070{left:188.700000px;}
.xa6_c00070{left:190.050000px;}
.x6a_c00070{left:196.050000px;}
.x5f_c00070{left:197.850000px;}
.x45_c00070{left:201.300000px;}
.x109_c00070{left:202.500000px;}
.x97_c00070{left:204.000000px;}
.x26_c00070{left:206.700000px;}
.x83_c00070{left:208.500000px;}
.x53_c00070{left:210.150000px;}
.xac_c00070{left:214.200000px;}
.x102_c00070{left:215.400000px;}
.x36_c00070{left:217.800000px;}
.x121_c00070{left:218.850000px;}
.x9f_c00070{left:221.550000px;}
.x6_c00070{left:222.900000px;}
.x10d_c00070{left:224.250000px;}
.x8f_c00070{left:225.900000px;}
.x129_c00070{left:228.150000px;}
.xc8_c00070{left:229.800000px;}
.x119_c00070{left:231.150000px;}
.xf1_c00070{left:232.650000px;}
.xe4_c00070{left:234.450000px;}
.x98_c00070{left:236.400000px;}
.x16_c00070{left:240.150000px;}
.x6b_c00070{left:241.350000px;}
.x75_c00070{left:242.550000px;}
.x7_c00070{left:244.500000px;}
.xd0_c00070{left:246.150000px;}
.x27_c00070{left:247.350000px;}
.xdb_c00070{left:248.400000px;}
.x60_c00070{left:250.050000px;}
.xad_c00070{left:253.050000px;}
.xd4_c00070{left:254.100000px;}
.xe5_c00070{left:255.750000px;}
.x37_c00070{left:257.100000px;}
.xa0_c00070{left:258.600000px;}
.xba_c00070{left:259.950000px;}
.x122_c00070{left:261.000000px;}
.xc2_c00070{left:262.800000px;}
.x76_c00070{left:265.950000px;}
.x54_c00070{left:269.550000px;}
.x11c_c00070{left:271.350000px;}
.xf7_c00070{left:272.850000px;}
.xc9_c00070{left:275.850000px;}
.xa1_c00070{left:276.900000px;}
.x38_c00070{left:277.950000px;}
.xbb_c00070{left:279.750000px;}
.x17_c00070{left:281.550000px;}
.xdc_c00070{left:282.600000px;}
.xbf_c00070{left:284.100000px;}
.xa7_c00070{left:285.450000px;}
.x28_c00070{left:293.850000px;}
.x11d_c00070{left:295.050000px;}
.x6c_c00070{left:296.100000px;}
.x84_c00070{left:297.300000px;}
.xd1_c00070{left:299.850000px;}
.x8_c00070{left:302.400000px;}
.x61_c00070{left:303.750000px;}
.x39_c00070{left:305.250000px;}
.x103_c00070{left:307.200000px;}
.x46_c00070{left:308.550000px;}
.x55_c00070{left:310.200000px;}
.x99_c00070{left:316.050000px;}
.x115_c00070{left:318.150000px;}
.xf5_c00070{left:319.350000px;}
.x18_c00070{left:321.150000px;}
.x9_c00070{left:323.250000px;}
.x62_c00070{left:324.300000px;}
.x85_c00070{left:326.100000px;}
.xf2_c00070{left:328.050000px;}
.x12f_c00070{left:329.850000px;}
.xc0_c00070{left:332.700000px;}
.x110_c00070{left:335.550000px;}
.xd5_c00070{left:337.200000px;}
.x90_c00070{left:338.550000px;}
.x13a_c00070{left:341.250000px;}
.xf6_c00070{left:342.450000px;}
.x56_c00070{left:344.100000px;}
.xdd_c00070{left:345.600000px;}
.x104_c00070{left:349.650000px;}
.x77_c00070{left:352.050000px;}
.x19_c00070{left:353.250000px;}
.xea_c00070{left:356.400000px;}
.x130_c00070{left:358.350000px;}
.x29_c00070{left:360.450000px;}
.xa_c00070{left:362.100000px;}
.x6d_c00070{left:363.450000px;}
.x47_c00070{left:365.850000px;}
.x123_c00070{left:367.650000px;}
.xae_c00070{left:369.000000px;}
.x1a_c00070{left:370.500000px;}
.xd6_c00070{left:374.700000px;}
.x91_c00070{left:376.050000px;}
.x131_c00070{left:379.200000px;}
.xb_c00070{left:380.850000px;}
.x3a_c00070{left:382.350000px;}
.x78_c00070{left:385.500000px;}
.x86_c00070{left:388.350000px;}
.x2_c00070{left:389.850000px;}
.x57_c00070{left:390.900000px;}
.x6e_c00070{left:393.300000px;}
.xfd_c00070{left:394.650000px;}
.x2a_c00070{left:395.700000px;}
.x3b_c00070{left:399.300000px;}
.x9a_c00070{left:401.400000px;}
.x136_c00070{left:402.450000px;}
.x10a_c00070{left:406.200000px;}
.xaf_c00070{left:407.550000px;}
.x87_c00070{left:409.200000px;}
.x48_c00070{left:411.600000px;}
.xf8_c00070{left:414.450000px;}
.x63_c00070{left:415.650000px;}
.xc_c00070{left:416.850000px;}
.x79_c00070{left:419.700000px;}
.x9b_c00070{left:420.900000px;}
.x124_c00070{left:422.700000px;}
.x12a_c00070{left:424.650000px;}
.x1b_c00070{left:426.000000px;}
.x2b_c00070{left:428.100000px;}
.x49_c00070{left:429.600000px;}
.xa8_c00070{left:431.700000px;}
.x92_c00070{left:435.150000px;}
.x64_c00070{left:438.300000px;}
.xf3_c00070{left:440.400000px;}
.xd_c00070{left:441.750000px;}
.x88_c00070{left:447.750000px;}
.x1c_c00070{left:449.400000px;}
.x12b_c00070{left:451.950000px;}
.x58_c00070{left:453.600000px;}
.xa2_c00070{left:457.800000px;}
.xbc_c00070{left:459.000000px;}
.xde_c00070{left:460.800000px;}
.x3c_c00070{left:462.000000px;}
.x116_c00070{left:463.200000px;}
.x2c_c00070{left:464.850000px;}
.x7a_c00070{left:466.200000px;}
.xfe_c00070{left:468.450000px;}
.x65_c00070{left:470.400000px;}
.x89_c00070{left:473.250000px;}
.xb0_c00070{left:476.550000px;}
.x4a_c00070{left:478.200000px;}
.x1d_c00070{left:480.000000px;}
.xf9_c00070{left:481.350000px;}
.x105_c00070{left:483.900000px;}
.x3_c00070{left:488.550000px;}
.xeb_c00070{left:489.600000px;}
.x13b_c00070{left:490.650000px;}
.xe6_c00070{left:496.350000px;}
.x4b_c00070{left:499.800000px;}
.xca_c00070{left:502.500000px;}
.x2d_c00070{left:505.200000px;}
.xb1_c00070{left:507.150000px;}
.x137_c00070{left:509.100000px;}
.x10b_c00070{left:510.900000px;}
.xd7_c00070{left:512.100000px;}
.x7b_c00070{left:514.500000px;}
.x9c_c00070{left:519.600000px;}
.x2e_c00070{left:524.250000px;}
.xb2_c00070{left:525.450000px;}
.x6f_c00070{left:527.250000px;}
.xdf_c00070{left:530.400000px;}
.x59_c00070{left:532.200000px;}
.xe_c00070{left:533.250000px;}
.xcb_c00070{left:534.900000px;}
.x8a_c00070{left:535.950000px;}
.xe2_c00070{left:537.450000px;}
.x1e_c00070{left:538.650000px;}
.x3d_c00070{left:540.150000px;}
.x111_c00070{left:542.400000px;}
.x70_c00070{left:544.950000px;}
.xc3_c00070{left:548.400000px;}
.xfa_c00070{left:550.800000px;}
.x4c_c00070{left:552.300000px;}
.x1f_c00070{left:559.200000px;}
.x117_c00070{left:561.150000px;}
.x125_c00070{left:562.650000px;}
.xb3_c00070{left:564.000000px;}
.x8b_c00070{left:566.850000px;}
.xa3_c00070{left:567.900000px;}
.x138_c00070{left:569.250000px;}
.x5a_c00070{left:570.750000px;}
.x3e_c00070{left:572.550000px;}
.xf_c00070{left:573.900000px;}
.x7c_c00070{left:574.950000px;}
.x12c_c00070{left:576.900000px;}
.xd8_c00070{left:581.850000px;}
.xb4_c00070{left:583.800000px;}
.x4d_c00070{left:586.500000px;}
.x20_c00070{left:588.300000px;}
.x10e_c00070{left:592.650000px;}
.x5b_c00070{left:593.850000px;}
.x2f_c00070{left:595.500000px;}
.x132_c00070{left:597.150000px;}
.x7d_c00070{left:598.350000px;}
.x3f_c00070{left:601.050000px;}
.x126_c00070{left:604.800000px;}
.xbd_c00070{left:606.150000px;}
.x11a_c00070{left:609.750000px;}
.xd9_c00070{left:611.400000px;}
.xc4_c00070{left:613.500000px;}
.x4e_c00070{left:615.600000px;}
.x71_c00070{left:619.050000px;}
.x93_c00070{left:621.300000px;}
.x11e_c00070{left:622.350000px;}
.xec_c00070{left:624.600000px;}
.x30_c00070{left:626.850000px;}
.xff_c00070{left:628.200000px;}
.x139_c00070{left:630.150000px;}
.xb5_c00070{left:631.350000px;}
.x21_c00070{left:633.000000px;}
.x5c_c00070{left:634.200000px;}
.xe7_c00070{left:636.600000px;}
.x10_c00070{left:639.750000px;}
.x106_c00070{left:640.950000px;}
.xed_c00070{left:644.100000px;}
.x40_c00070{left:645.750000px;}
.x118_c00070{left:647.550000px;}
.x100_c00070{left:649.050000px;}
.x8c_c00070{left:650.700000px;}
.x7e_c00070{left:652.350000px;}
.x4f_c00070{left:654.450000px;}
.x66_c00070{left:658.050000px;}
.x11_c00070{left:662.400000px;}
.xb6_c00070{left:664.050000px;}
.x22_c00070{left:665.700000px;}
.xfb_c00070{left:668.250000px;}
.xc5_c00070{left:669.900000px;}
.xee_c00070{left:673.950000px;}
.x50_c00070{left:676.350000px;}
.x31_c00070{left:677.550000px;}
.x12_c00070{left:679.650000px;}
.x67_c00070{left:681.150000px;}
.x5d_c00070{left:683.100000px;}
.xcc_c00070{left:685.800000px;}
.x135_c00070{left:688.350000px;}
.x7f_c00070{left:690.150000px;}
.xe0_c00070{left:692.400000px;}
.x94_c00070{left:695.100000px;}
.xa9_c00070{left:696.300000px;}
.x11b_c00070{left:697.650000px;}
.xfc_c00070{left:699.150000px;}
.xcd_c00070{left:700.500000px;}
.x41_c00070{left:702.300000px;}
.x5e_c00070{left:706.200000px;}
.x32_c00070{left:707.400000px;}
.x127_c00070{left:708.450000px;}
.x8d_c00070{left:710.400000px;}
.x80_c00070{left:712.800000px;}
.xa4_c00070{left:714.150000px;}
.x72_c00070{left:715.650000px;}
.x11f_c00070{left:717.450000px;}
.x42_c00070{left:720.000000px;}
.xaa_c00070{left:723.300000px;}
.x13_c00070{left:724.950000px;}
.xb7_c00070{left:726.750000px;}
.x8e_c00070{left:728.400000px;}
.xd2_c00070{left:729.600000px;}
.x33_c00070{left:731.850000px;}
.xe8_c00070{left:733.050000px;}
.xc6_c00070{left:735.000000px;}
.xef_c00070{left:737.400000px;}
.x12d_c00070{left:739.350000px;}
.xf4_c00070{left:742.050000px;}
.x23_c00070{left:743.400000px;}
.xa5_c00070{left:744.450000px;}
.xe3_c00070{left:745.950000px;}
.x43_c00070{left:747.300000px;}
.xe1_c00070{left:749.250000px;}
.xb8_c00070{left:751.650000px;}
.x51_c00070{left:752.700000px;}
.x81_c00070{left:755.250000px;}
.x112_c00070{left:759.000000px;}
.x24_c00070{left:760.650000px;}
.xce_c00070{left:762.750000px;}
.x107_c00070{left:764.100000px;}
.x133_c00070{left:765.600000px;}
.x10c_c00070{left:767.100000px;}
.x68_c00070{left:769.050000px;}
.xc7_c00070{left:771.750000px;}
.x10f_c00070{left:776.550000px;}
.x82_c00070{left:777.600000px;}
.x34_c00070{left:778.950000px;}
.xbe_c00070{left:782.250000px;}
.x108_c00070{left:783.600000px;}
.xda_c00070{left:784.950000px;}
.xd3_c00070{left:789.000000px;}
.x69_c00070{left:790.350000px;}
.xf0_c00070{left:792.150000px;}
.x14_c00070{left:795.900000px;}
.x44_c00070{left:797.700000px;}
.x95_c00070{left:799.050000px;}
.x12e_c00070{left:800.250000px;}
.x9d_c00070{left:801.900000px;}
.x113_c00070{left:808.350000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:-8.672087pt;}
.ws4_c00070{word-spacing:-4.197531pt;}
.ws3_c00070{word-spacing:-3.504580pt;}
.ws5_c00070{word-spacing:-1.568627pt;}
.wsc_c00070{word-spacing:0.000000pt;}
.ws6_c00070{word-spacing:2.716049pt;}
.ws8_c00070{word-spacing:3.888889pt;}
.ws1_c00070{word-spacing:4.444444pt;}
.wsb_c00070{word-spacing:7.654321pt;}
.wsa_c00070{word-spacing:8.654971pt;}
.ws9_c00070{word-spacing:9.129129pt;}
.ws7_c00070{word-spacing:11.728395pt;}
.ws2_c00070{word-spacing:19.219219pt;}
.fs0_c00070{font-size:48.000000pt;}
.fs1_c00070{font-size:53.333333pt;}
.y0_c00070{bottom:0.000000pt;}
.y2c_c00070{bottom:143.333333pt;}
.y2b_c00070{bottom:178.933333pt;}
.y2a_c00070{bottom:196.800000pt;}
.y29_c00070{bottom:214.400000pt;}
.y28_c00070{bottom:232.000000pt;}
.y27_c00070{bottom:249.200000pt;}
.y26_c00070{bottom:267.466667pt;}
.y25_c00070{bottom:285.066667pt;}
.y24_c00070{bottom:302.400000pt;}
.y23_c00070{bottom:320.000000pt;}
.y22_c00070{bottom:337.600000pt;}
.y21_c00070{bottom:355.200000pt;}
.y20_c00070{bottom:373.466667pt;}
.y1f_c00070{bottom:391.066667pt;}
.y1e_c00070{bottom:408.400000pt;}
.y1d_c00070{bottom:426.266667pt;}
.y1c_c00070{bottom:443.600000pt;}
.y1b_c00070{bottom:461.466667pt;}
.y1a_c00070{bottom:479.333333pt;}
.y19_c00070{bottom:496.933333pt;}
.y18_c00070{bottom:514.533333pt;}
.y17_c00070{bottom:532.133333pt;}
.y16_c00070{bottom:549.866667pt;}
.y15_c00070{bottom:567.733333pt;}
.y14_c00070{bottom:585.600000pt;}
.y13_c00070{bottom:603.200000pt;}
.y12_c00070{bottom:621.066667pt;}
.y11_c00070{bottom:638.933333pt;}
.y10_c00070{bottom:656.533333pt;}
.yf_c00070{bottom:674.400000pt;}
.ye_c00070{bottom:692.000000pt;}
.yd_c00070{bottom:709.600000pt;}
.yc_c00070{bottom:727.466667pt;}
.yb_c00070{bottom:745.066667pt;}
.ya_c00070{bottom:762.666667pt;}
.y9_c00070{bottom:780.533333pt;}
.y8_c00070{bottom:798.400000pt;}
.y7_c00070{bottom:815.733333pt;}
.y6_c00070{bottom:833.333333pt;}
.y5_c00070{bottom:851.200000pt;}
.y4_c00070{bottom:868.800000pt;}
.y3_c00070{bottom:886.400000pt;}
.y2_c00070{bottom:904.000000pt;}
.y1_c00070{bottom:937.866667pt;}
.h2_c00070{height:48.000000pt;}
.h3_c00070{height:53.333333pt;}
.h1_c00070{height:1037.333333pt;}
.h0_c00070{height:1037.439941pt;}
.w0_c00070{width:811.840007pt;}
.w1_c00070{width:812.000000pt;}
.x0_c00070{left:0.000000pt;}
.x4_c00070{left:127.066667pt;}
.x1_c00070{left:128.000000pt;}
.x73_c00070{left:128.933333pt;}
.x101_c00070{left:130.000000pt;}
.x134_c00070{left:131.733333pt;}
.x120_c00070{left:143.733333pt;}
.x5_c00070{left:145.333333pt;}
.x74_c00070{left:146.533333pt;}
.x52_c00070{left:148.133333pt;}
.x128_c00070{left:151.333333pt;}
.x114_c00070{left:153.200000pt;}
.x15_c00070{left:154.533333pt;}
.xc1_c00070{left:156.133333pt;}
.xe9_c00070{left:158.133333pt;}
.x25_c00070{left:159.066667pt;}
.x35_c00070{left:160.666667pt;}
.xb9_c00070{left:162.266667pt;}
.x9e_c00070{left:164.000000pt;}
.x96_c00070{left:165.333333pt;}
.xcf_c00070{left:166.666667pt;}
.xab_c00070{left:167.733333pt;}
.xa6_c00070{left:168.933333pt;}
.x6a_c00070{left:174.266667pt;}
.x5f_c00070{left:175.866667pt;}
.x45_c00070{left:178.933333pt;}
.x109_c00070{left:180.000000pt;}
.x97_c00070{left:181.333333pt;}
.x26_c00070{left:183.733333pt;}
.x83_c00070{left:185.333333pt;}
.x53_c00070{left:186.800000pt;}
.xac_c00070{left:190.400000pt;}
.x102_c00070{left:191.466667pt;}
.x36_c00070{left:193.600000pt;}
.x121_c00070{left:194.533333pt;}
.x9f_c00070{left:196.933333pt;}
.x6_c00070{left:198.133333pt;}
.x10d_c00070{left:199.333333pt;}
.x8f_c00070{left:200.800000pt;}
.x129_c00070{left:202.800000pt;}
.xc8_c00070{left:204.266667pt;}
.x119_c00070{left:205.466667pt;}
.xf1_c00070{left:206.800000pt;}
.xe4_c00070{left:208.400000pt;}
.x98_c00070{left:210.133333pt;}
.x16_c00070{left:213.466667pt;}
.x6b_c00070{left:214.533333pt;}
.x75_c00070{left:215.600000pt;}
.x7_c00070{left:217.333333pt;}
.xd0_c00070{left:218.800000pt;}
.x27_c00070{left:219.866667pt;}
.xdb_c00070{left:220.800000pt;}
.x60_c00070{left:222.266667pt;}
.xad_c00070{left:224.933333pt;}
.xd4_c00070{left:225.866667pt;}
.xe5_c00070{left:227.333333pt;}
.x37_c00070{left:228.533333pt;}
.xa0_c00070{left:229.866667pt;}
.xba_c00070{left:231.066667pt;}
.x122_c00070{left:232.000000pt;}
.xc2_c00070{left:233.600000pt;}
.x76_c00070{left:236.400000pt;}
.x54_c00070{left:239.600000pt;}
.x11c_c00070{left:241.200000pt;}
.xf7_c00070{left:242.533333pt;}
.xc9_c00070{left:245.200000pt;}
.xa1_c00070{left:246.133333pt;}
.x38_c00070{left:247.066667pt;}
.xbb_c00070{left:248.666667pt;}
.x17_c00070{left:250.266667pt;}
.xdc_c00070{left:251.200000pt;}
.xbf_c00070{left:252.533333pt;}
.xa7_c00070{left:253.733333pt;}
.x28_c00070{left:261.200000pt;}
.x11d_c00070{left:262.266667pt;}
.x6c_c00070{left:263.200000pt;}
.x84_c00070{left:264.266667pt;}
.xd1_c00070{left:266.533333pt;}
.x8_c00070{left:268.800000pt;}
.x61_c00070{left:270.000000pt;}
.x39_c00070{left:271.333333pt;}
.x103_c00070{left:273.066667pt;}
.x46_c00070{left:274.266667pt;}
.x55_c00070{left:275.733333pt;}
.x99_c00070{left:280.933333pt;}
.x115_c00070{left:282.800000pt;}
.xf5_c00070{left:283.866667pt;}
.x18_c00070{left:285.466667pt;}
.x9_c00070{left:287.333333pt;}
.x62_c00070{left:288.266667pt;}
.x85_c00070{left:289.866667pt;}
.xf2_c00070{left:291.600000pt;}
.x12f_c00070{left:293.200000pt;}
.xc0_c00070{left:295.733333pt;}
.x110_c00070{left:298.266667pt;}
.xd5_c00070{left:299.733333pt;}
.x90_c00070{left:300.933333pt;}
.x13a_c00070{left:303.333333pt;}
.xf6_c00070{left:304.400000pt;}
.x56_c00070{left:305.866667pt;}
.xdd_c00070{left:307.200000pt;}
.x104_c00070{left:310.800000pt;}
.x77_c00070{left:312.933333pt;}
.x19_c00070{left:314.000000pt;}
.xea_c00070{left:316.800000pt;}
.x130_c00070{left:318.533333pt;}
.x29_c00070{left:320.400000pt;}
.xa_c00070{left:321.866667pt;}
.x6d_c00070{left:323.066667pt;}
.x47_c00070{left:325.200000pt;}
.x123_c00070{left:326.800000pt;}
.xae_c00070{left:328.000000pt;}
.x1a_c00070{left:329.333333pt;}
.xd6_c00070{left:333.066667pt;}
.x91_c00070{left:334.266667pt;}
.x131_c00070{left:337.066667pt;}
.xb_c00070{left:338.533333pt;}
.x3a_c00070{left:339.866667pt;}
.x78_c00070{left:342.666667pt;}
.x86_c00070{left:345.200000pt;}
.x2_c00070{left:346.533333pt;}
.x57_c00070{left:347.466667pt;}
.x6e_c00070{left:349.600000pt;}
.xfd_c00070{left:350.800000pt;}
.x2a_c00070{left:351.733333pt;}
.x3b_c00070{left:354.933333pt;}
.x9a_c00070{left:356.800000pt;}
.x136_c00070{left:357.733333pt;}
.x10a_c00070{left:361.066667pt;}
.xaf_c00070{left:362.266667pt;}
.x87_c00070{left:363.733333pt;}
.x48_c00070{left:365.866667pt;}
.xf8_c00070{left:368.400000pt;}
.x63_c00070{left:369.466667pt;}
.xc_c00070{left:370.533333pt;}
.x79_c00070{left:373.066667pt;}
.x9b_c00070{left:374.133333pt;}
.x124_c00070{left:375.733333pt;}
.x12a_c00070{left:377.466667pt;}
.x1b_c00070{left:378.666667pt;}
.x2b_c00070{left:380.533333pt;}
.x49_c00070{left:381.866667pt;}
.xa8_c00070{left:383.733333pt;}
.x92_c00070{left:386.800000pt;}
.x64_c00070{left:389.600000pt;}
.xf3_c00070{left:391.466667pt;}
.xd_c00070{left:392.666667pt;}
.x88_c00070{left:398.000000pt;}
.x1c_c00070{left:399.466667pt;}
.x12b_c00070{left:401.733333pt;}
.x58_c00070{left:403.200000pt;}
.xa2_c00070{left:406.933333pt;}
.xbc_c00070{left:408.000000pt;}
.xde_c00070{left:409.600000pt;}
.x3c_c00070{left:410.666667pt;}
.x116_c00070{left:411.733333pt;}
.x2c_c00070{left:413.200000pt;}
.x7a_c00070{left:414.400000pt;}
.xfe_c00070{left:416.400000pt;}
.x65_c00070{left:418.133333pt;}
.x89_c00070{left:420.666667pt;}
.xb0_c00070{left:423.600000pt;}
.x4a_c00070{left:425.066667pt;}
.x1d_c00070{left:426.666667pt;}
.xf9_c00070{left:427.866667pt;}
.x105_c00070{left:430.133333pt;}
.x3_c00070{left:434.266667pt;}
.xeb_c00070{left:435.200000pt;}
.x13b_c00070{left:436.133333pt;}
.xe6_c00070{left:441.200000pt;}
.x4b_c00070{left:444.266667pt;}
.xca_c00070{left:446.666667pt;}
.x2d_c00070{left:449.066667pt;}
.xb1_c00070{left:450.800000pt;}
.x137_c00070{left:452.533333pt;}
.x10b_c00070{left:454.133333pt;}
.xd7_c00070{left:455.200000pt;}
.x7b_c00070{left:457.333333pt;}
.x9c_c00070{left:461.866667pt;}
.x2e_c00070{left:466.000000pt;}
.xb2_c00070{left:467.066667pt;}
.x6f_c00070{left:468.666667pt;}
.xdf_c00070{left:471.466667pt;}
.x59_c00070{left:473.066667pt;}
.xe_c00070{left:474.000000pt;}
.xcb_c00070{left:475.466667pt;}
.x8a_c00070{left:476.400000pt;}
.xe2_c00070{left:477.733333pt;}
.x1e_c00070{left:478.800000pt;}
.x3d_c00070{left:480.133333pt;}
.x111_c00070{left:482.133333pt;}
.x70_c00070{left:484.400000pt;}
.xc3_c00070{left:487.466667pt;}
.xfa_c00070{left:489.600000pt;}
.x4c_c00070{left:490.933333pt;}
.x1f_c00070{left:497.066667pt;}
.x117_c00070{left:498.800000pt;}
.x125_c00070{left:500.133333pt;}
.xb3_c00070{left:501.333333pt;}
.x8b_c00070{left:503.866667pt;}
.xa3_c00070{left:504.800000pt;}
.x138_c00070{left:506.000000pt;}
.x5a_c00070{left:507.333333pt;}
.x3e_c00070{left:508.933333pt;}
.xf_c00070{left:510.133333pt;}
.x7c_c00070{left:511.066667pt;}
.x12c_c00070{left:512.800000pt;}
.xd8_c00070{left:517.200000pt;}
.xb4_c00070{left:518.933333pt;}
.x4d_c00070{left:521.333333pt;}
.x20_c00070{left:522.933333pt;}
.x10e_c00070{left:526.800000pt;}
.x5b_c00070{left:527.866667pt;}
.x2f_c00070{left:529.333333pt;}
.x132_c00070{left:530.800000pt;}
.x7d_c00070{left:531.866667pt;}
.x3f_c00070{left:534.266667pt;}
.x126_c00070{left:537.600000pt;}
.xbd_c00070{left:538.800000pt;}
.x11a_c00070{left:542.000000pt;}
.xd9_c00070{left:543.466667pt;}
.xc4_c00070{left:545.333333pt;}
.x4e_c00070{left:547.200000pt;}
.x71_c00070{left:550.266667pt;}
.x93_c00070{left:552.266667pt;}
.x11e_c00070{left:553.200000pt;}
.xec_c00070{left:555.200000pt;}
.x30_c00070{left:557.200000pt;}
.xff_c00070{left:558.400000pt;}
.x139_c00070{left:560.133333pt;}
.xb5_c00070{left:561.200000pt;}
.x21_c00070{left:562.666667pt;}
.x5c_c00070{left:563.733333pt;}
.xe7_c00070{left:565.866667pt;}
.x10_c00070{left:568.666667pt;}
.x106_c00070{left:569.733333pt;}
.xed_c00070{left:572.533333pt;}
.x40_c00070{left:574.000000pt;}
.x118_c00070{left:575.600000pt;}
.x100_c00070{left:576.933333pt;}
.x8c_c00070{left:578.400000pt;}
.x7e_c00070{left:579.866667pt;}
.x4f_c00070{left:581.733333pt;}
.x66_c00070{left:584.933333pt;}
.x11_c00070{left:588.800000pt;}
.xb6_c00070{left:590.266667pt;}
.x22_c00070{left:591.733333pt;}
.xfb_c00070{left:594.000000pt;}
.xc5_c00070{left:595.466667pt;}
.xee_c00070{left:599.066667pt;}
.x50_c00070{left:601.200000pt;}
.x31_c00070{left:602.266667pt;}
.x12_c00070{left:604.133333pt;}
.x67_c00070{left:605.466667pt;}
.x5d_c00070{left:607.200000pt;}
.xcc_c00070{left:609.600000pt;}
.x135_c00070{left:611.866667pt;}
.x7f_c00070{left:613.466667pt;}
.xe0_c00070{left:615.466667pt;}
.x94_c00070{left:617.866667pt;}
.xa9_c00070{left:618.933333pt;}
.x11b_c00070{left:620.133333pt;}
.xfc_c00070{left:621.466667pt;}
.xcd_c00070{left:622.666667pt;}
.x41_c00070{left:624.266667pt;}
.x5e_c00070{left:627.733333pt;}
.x32_c00070{left:628.800000pt;}
.x127_c00070{left:629.733333pt;}
.x8d_c00070{left:631.466667pt;}
.x80_c00070{left:633.600000pt;}
.xa4_c00070{left:634.800000pt;}
.x72_c00070{left:636.133333pt;}
.x11f_c00070{left:637.733333pt;}
.x42_c00070{left:640.000000pt;}
.xaa_c00070{left:642.933333pt;}
.x13_c00070{left:644.400000pt;}
.xb7_c00070{left:646.000000pt;}
.x8e_c00070{left:647.466667pt;}
.xd2_c00070{left:648.533333pt;}
.x33_c00070{left:650.533333pt;}
.xe8_c00070{left:651.600000pt;}
.xc6_c00070{left:653.333333pt;}
.xef_c00070{left:655.466667pt;}
.x12d_c00070{left:657.200000pt;}
.xf4_c00070{left:659.600000pt;}
.x23_c00070{left:660.800000pt;}
.xa5_c00070{left:661.733333pt;}
.xe3_c00070{left:663.066667pt;}
.x43_c00070{left:664.266667pt;}
.xe1_c00070{left:666.000000pt;}
.xb8_c00070{left:668.133333pt;}
.x51_c00070{left:669.066667pt;}
.x81_c00070{left:671.333333pt;}
.x112_c00070{left:674.666667pt;}
.x24_c00070{left:676.133333pt;}
.xce_c00070{left:678.000000pt;}
.x107_c00070{left:679.200000pt;}
.x133_c00070{left:680.533333pt;}
.x10c_c00070{left:681.866667pt;}
.x68_c00070{left:683.600000pt;}
.xc7_c00070{left:686.000000pt;}
.x10f_c00070{left:690.266667pt;}
.x82_c00070{left:691.200000pt;}
.x34_c00070{left:692.400000pt;}
.xbe_c00070{left:695.333333pt;}
.x108_c00070{left:696.533333pt;}
.xda_c00070{left:697.733333pt;}
.xd3_c00070{left:701.333333pt;}
.x69_c00070{left:702.533333pt;}
.xf0_c00070{left:704.133333pt;}
.x14_c00070{left:707.466667pt;}
.x44_c00070{left:709.066667pt;}
.x95_c00070{left:710.266667pt;}
.x12e_c00070{left:711.333333pt;}
.x9d_c00070{left:712.800000pt;}
.x113_c00070{left:718.533333pt;}
}





/* 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_c00071 {
    display:none;
  }
  .loading-indicator_c00071.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00071 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_c00071 { 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_c00071" -> "#page-container .classname_c00071")
 */
.pf_c00071 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00071 { /* 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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00071 { /* 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_c00071 { /* 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_c00071 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00071 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00071 {overflow:visible;}
  }
}
.c_c00071 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00071 { /* 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_c00071:after { /* webkit #35443 */
  content: '';
}
.t_c00071:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00071 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 */
}
.__c00071 { /* 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_c00071 { /* info for Javascript */
  display:none;
}
.l_c00071 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00071 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00071 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00071: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_c00071 {
    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_c00071.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00071.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_c00071 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00071{font-family:sans-serif;visibility:hidden;}
.sc__c00071{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
}
.y0_c00071{bottom:0.000000px;}
.h1_c00071{height:1167.000000px;}
.h0_c00071{height:1167.119934px;}
.w0_c00071{width:913.320007px;}
.w1_c00071{width:913.500000px;}
.x0_c00071{left:0.000000px;}
@media print{
.y0_c00071{bottom:0.000000pt;}
.h1_c00071{height:1037.333333pt;}
.h0_c00071{height:1037.439941pt;}
.w0_c00071{width:811.840007pt;}
.w1_c00071{width:812.000000pt;}
.x0_c00071{left:0.000000pt;}
}





/* 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_c00072 {
    display:none;
  }
  .loading-indicator_c00072.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00072 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_c00072 { 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_c00072" -> "#page-container .classname_c00072")
 */
.pf_c00072 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00072 { /* 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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00072 { /* 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_c00072 { /* 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_c00072 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00072 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00072 {overflow:visible;}
  }
}
.c_c00072 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00072 { /* 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_c00072:after { /* webkit #35443 */
  content: '';
}
.t_c00072:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00072 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 */
}
.__c00072 { /* 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_c00072 { /* info for Javascript */
  display:none;
}
.l_c00072 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00072 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00072 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00072: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_c00072 {
    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_c00072.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00072.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_c00072 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00072{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00072;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.000000;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;}
.m8_c00072{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1_c00072{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2_c00072{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m0_c00072{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7_c00072{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5_c00072{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4_c00072{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00072{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00072{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{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__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00072{word-spacing:0.000000px;}
.ws0_c00072{word-spacing:140.428571px;}
.ws2_c00072{word-spacing:155.857143px;}
.ws1_c00072{word-spacing:158.210526px;}
.fc0_c00072{color:transparent;}
.fs0_c00072{font-size:48.000000px;}
.y0_c00072{bottom:0.000000px;}
.y2_c00072{bottom:1114.500000px;}
.y1_c00072{bottom:1115.250000px;}
.h2_c00072{height:48.000000px;}
.h1_c00072{height:1167.000000px;}
.h0_c00072{height:1167.119934px;}
.w0_c00072{width:913.320007px;}
.w1_c00072{width:913.500000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:60.150000px;}
.x2_c00072{left:155.550000px;}
.x3_c00072{left:252.450000px;}
.x4_c00072{left:300.000000px;}
.x5_c00072{left:347.850000px;}
.x6_c00072{left:394.350000px;}
.x7_c00072{left:442.650000px;}
.x8_c00072{left:583.200000px;}
.x9_c00072{left:630.750000px;}
.xa_c00072{left:677.250000px;}
.xb_c00072{left:773.700000px;}
.xc_c00072{left:822.300000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws3_c00072{word-spacing:0.000000pt;}
.ws0_c00072{word-spacing:124.825397pt;}
.ws2_c00072{word-spacing:138.539683pt;}
.ws1_c00072{word-spacing:140.631579pt;}
.fs0_c00072{font-size:42.666667pt;}
.y0_c00072{bottom:0.000000pt;}
.y2_c00072{bottom:990.666667pt;}
.y1_c00072{bottom:991.333333pt;}
.h2_c00072{height:42.666667pt;}
.h1_c00072{height:1037.333333pt;}
.h0_c00072{height:1037.439941pt;}
.w0_c00072{width:811.840007pt;}
.w1_c00072{width:812.000000pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:53.466667pt;}
.x2_c00072{left:138.266667pt;}
.x3_c00072{left:224.400000pt;}
.x4_c00072{left:266.666667pt;}
.x5_c00072{left:309.200000pt;}
.x6_c00072{left:350.533333pt;}
.x7_c00072{left:393.466667pt;}
.x8_c00072{left:518.400000pt;}
.x9_c00072{left:560.666667pt;}
.xa_c00072{left:602.000000pt;}
.xb_c00072{left:687.733333pt;}
.xc_c00072{left:730.933333pt;}
}





/* 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_c00073 {
    display:none;
  }
  .loading-indicator_c00073.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00073 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_c00073 { 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_c00073" -> "#page-container .classname_c00073")
 */
.pf_c00073 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00073 { /* 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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00073 { /* 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_c00073 { /* 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_c00073 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00073 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00073 {overflow:visible;}
  }
}
.c_c00073 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00073 { /* 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_c00073:after { /* webkit #35443 */
  content: '';
}
.t_c00073:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00073 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 */
}
.__c00073 { /* 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_c00073 { /* info for Javascript */
  display:none;
}
.l_c00073 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00073 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00073 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00073: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_c00073 {
    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_c00073.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00073.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_c00073 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00073{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00073;src:url('chunks/assets/font_f121e65e5862f90328048958.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00073{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8_c00073{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.me_c00073{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m14_c00073{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma_c00073{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{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__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00073{word-spacing:0.000000px;}
.ws0_c00073{word-spacing:102.774194px;}
.ws1_c00073{word-spacing:119.571429px;}
.ws2_c00073{word-spacing:123.744681px;}
.fc0_c00073{color:transparent;}
.fs1_c00073{font-size:36.000000px;}
.fs3_c00073{font-size:42.000000px;}
.fs2_c00073{font-size:54.000000px;}
.fs0_c00073{font-size:60.000000px;}
.y0_c00073{bottom:0.000000px;}
.y8_c00073{bottom:14.700000px;}
.y7_c00073{bottom:31.350000px;}
.y6_c00073{bottom:95.400000px;}
.y4_c00073{bottom:136.800000px;}
.y5_c00073{bottom:138.300000px;}
.y3_c00073{bottom:140.400000px;}
.y2_c00073{bottom:1108.050000px;}
.y1_c00073{bottom:1116.000000px;}
.h3_c00073{height:36.000000px;}
.h5_c00073{height:42.000000px;}
.h4_c00073{height:54.000000px;}
.h2_c00073{height:60.000000px;}
.h1_c00073{height:1167.000000px;}
.h0_c00073{height:1167.119934px;}
.w0_c00073{width:913.320007px;}
.w1_c00073{width:913.500000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:25.200000px;}
.x2_c00073{left:61.950000px;}
.x3_c00073{left:107.700000px;}
.x18_c00073{left:113.100000px;}
.x4_c00073{left:153.450000px;}
.x19_c00073{left:157.800000px;}
.x5_c00073{left:201.300000px;}
.x1a_c00073{left:204.600000px;}
.x6_c00073{left:249.150000px;}
.x7_c00073{left:296.250000px;}
.x1b_c00073{left:301.050000px;}
.x8_c00073{left:344.100000px;}
.x1c_c00073{left:347.100000px;}
.x13_c00073{left:368.700000px;}
.x9_c00073{left:388.800000px;}
.x1d_c00073{left:394.650000px;}
.x14_c00073{left:414.000000px;}
.xa_c00073{left:437.100000px;}
.xb_c00073{left:485.400000px;}
.x1e_c00073{left:489.750000px;}
.x15_c00073{left:513.000000px;}
.xc_c00073{left:534.000000px;}
.x1f_c00073{left:539.400000px;}
.xd_c00073{left:580.800000px;}
.x16_c00073{left:603.000000px;}
.xe_c00073{left:628.650000px;}
.x20_c00073{left:634.200000px;}
.xf_c00073{left:676.950000px;}
.x21_c00073{left:682.500000px;}
.x10_c00073{left:722.250000px;}
.x22_c00073{left:727.800000px;}
.x11_c00073{left:770.550000px;}
.x23_c00073{left:775.650000px;}
.x25_c00073{left:803.100000px;}
.x12_c00073{left:817.050000px;}
.x24_c00073{left:823.200000px;}
.x26_c00073{left:845.550000px;}
.x17_c00073{left:876.600000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws3_c00073{word-spacing:0.000000pt;}
.ws0_c00073{word-spacing:91.354839pt;}
.ws1_c00073{word-spacing:106.285714pt;}
.ws2_c00073{word-spacing:109.995272pt;}
.fs1_c00073{font-size:32.000000pt;}
.fs3_c00073{font-size:37.333333pt;}
.fs2_c00073{font-size:48.000000pt;}
.fs0_c00073{font-size:53.333333pt;}
.y0_c00073{bottom:0.000000pt;}
.y8_c00073{bottom:13.066667pt;}
.y7_c00073{bottom:27.866667pt;}
.y6_c00073{bottom:84.800000pt;}
.y4_c00073{bottom:121.600000pt;}
.y5_c00073{bottom:122.933333pt;}
.y3_c00073{bottom:124.800000pt;}
.y2_c00073{bottom:984.933333pt;}
.y1_c00073{bottom:992.000000pt;}
.h3_c00073{height:32.000000pt;}
.h5_c00073{height:37.333333pt;}
.h4_c00073{height:48.000000pt;}
.h2_c00073{height:53.333333pt;}
.h1_c00073{height:1037.333333pt;}
.h0_c00073{height:1037.439941pt;}
.w0_c00073{width:811.840007pt;}
.w1_c00073{width:812.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:22.400000pt;}
.x2_c00073{left:55.066667pt;}
.x3_c00073{left:95.733333pt;}
.x18_c00073{left:100.533333pt;}
.x4_c00073{left:136.400000pt;}
.x19_c00073{left:140.266667pt;}
.x5_c00073{left:178.933333pt;}
.x1a_c00073{left:181.866667pt;}
.x6_c00073{left:221.466667pt;}
.x7_c00073{left:263.333333pt;}
.x1b_c00073{left:267.600000pt;}
.x8_c00073{left:305.866667pt;}
.x1c_c00073{left:308.533333pt;}
.x13_c00073{left:327.733333pt;}
.x9_c00073{left:345.600000pt;}
.x1d_c00073{left:350.800000pt;}
.x14_c00073{left:368.000000pt;}
.xa_c00073{left:388.533333pt;}
.xb_c00073{left:431.466667pt;}
.x1e_c00073{left:435.333333pt;}
.x15_c00073{left:456.000000pt;}
.xc_c00073{left:474.666667pt;}
.x1f_c00073{left:479.466667pt;}
.xd_c00073{left:516.266667pt;}
.x16_c00073{left:536.000000pt;}
.xe_c00073{left:558.800000pt;}
.x20_c00073{left:563.733333pt;}
.xf_c00073{left:601.733333pt;}
.x21_c00073{left:606.666667pt;}
.x10_c00073{left:642.000000pt;}
.x22_c00073{left:646.933333pt;}
.x11_c00073{left:684.933333pt;}
.x23_c00073{left:689.466667pt;}
.x25_c00073{left:713.866667pt;}
.x12_c00073{left:726.266667pt;}
.x24_c00073{left:731.733333pt;}
.x26_c00073{left:751.600000pt;}
.x17_c00073{left:779.200000pt;}
}





/* 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_c00074 {
    display:none;
  }
  .loading-indicator_c00074.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00074 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_c00074 { 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_c00074" -> "#page-container .classname_c00074")
 */
.pf_c00074 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00074 { /* 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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00074 { /* 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_c00074 { /* 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_c00074 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00074 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00074 {overflow:visible;}
  }
}
.c_c00074 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00074 { /* 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_c00074:after { /* webkit #35443 */
  content: '';
}
.t_c00074:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00074 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 */
}
.__c00074 { /* 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_c00074 { /* info for Javascript */
  display:none;
}
.l_c00074 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00074 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00074 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00074: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_c00074 {
    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_c00074.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00074.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_c00074 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00074{font-family:sans-serif;visibility:hidden;}
.sc__c00074{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
}
.y0_c00074{bottom:0.000000px;}
.h1_c00074{height:1167.000000px;}
.h0_c00074{height:1167.119934px;}
.w0_c00074{width:913.320007px;}
.w1_c00074{width:913.500000px;}
.x0_c00074{left:0.000000px;}
@media print{
.y0_c00074{bottom:0.000000pt;}
.h1_c00074{height:1037.333333pt;}
.h0_c00074{height:1037.439941pt;}
.w0_c00074{width:811.840007pt;}
.w1_c00074{width:812.000000pt;}
.x0_c00074{left:0.000000pt;}
}





/* 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_c00075 {
    display:none;
  }
  .loading-indicator_c00075.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00075 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_c00075 { 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_c00075" -> "#page-container .classname_c00075")
 */
.pf_c00075 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00075 { /* 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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00075 { /* 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_c00075 { /* 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_c00075 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00075 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00075 {overflow:visible;}
  }
}
.c_c00075 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00075 { /* 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_c00075:after { /* webkit #35443 */
  content: '';
}
.t_c00075:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00075 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 */
}
.__c00075 { /* 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_c00075 { /* info for Javascript */
  display:none;
}
.l_c00075 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00075 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00075 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00075: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_c00075 {
    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_c00075.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00075.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_c00075 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00075{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.000000;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;}
.m34_c00075{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m23_c00075{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m25_c00075{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m47_c00075{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m66_c00075{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00075{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5_c00075{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m49_c00075{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m51_c00075{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m27_c00075{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m62_c00075{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00075{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m24_c00075{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m39_c00075{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m55_c00075{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m57_c00075{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m52_c00075{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00075{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00075{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00075{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00075{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m16_c00075{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00075{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00075{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9_c00075{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m64_c00075{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00075{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c00075{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00075{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m17_c00075{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00075{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00075{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m43_c00075{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me_c00075{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m21_c00075{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m20_c00075{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00075{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m48_c00075{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m30_c00075{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00075{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m58_c00075{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m35_c00075{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m40_c00075{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00075{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8_c00075{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.md_c00075{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00075{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00075{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00075{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00075{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m26_c00075{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m15_c00075{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00075{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00075{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m41_c00075{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00075{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m56_c00075{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6_c00075{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m29_c00075{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf_c00075{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m19_c00075{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3_c00075{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m12_c00075{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00075{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00075{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00075{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m63_c00075{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00075{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00075{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma_c00075{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00075{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00075{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00075{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m14_c00075{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00075{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00075{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m33_c00075{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00075{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m18_c00075{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11_c00075{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m32_c00075{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m67_c00075{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00075{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m44_c00075{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m31_c00075{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m54_c00075{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m37_c00075{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00075{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00075{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb_c00075{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22_c00075{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00075{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00075{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00075{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m45_c00075{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m46_c00075{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10_c00075{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m60_c00075{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00075{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00075{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m61_c00075{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m53_c00075{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m7_c00075{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00075{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00075{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00075{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00075{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00075{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m65_c00075{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00075{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{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__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:-8.024691px;}
.ws5_c00075{word-spacing:0.000000px;}
.ws2_c00075{word-spacing:4.375000px;}
.ws4_c00075{word-spacing:6.136364px;}
.ws3_c00075{word-spacing:8.210526px;}
.ws1_c00075{word-spacing:10.735294px;}
.fc0_c00075{color:transparent;}
.fs0_c00075{font-size:54.000000px;}
.fs1_c00075{font-size:60.000000px;}
.y0_c00075{bottom:0.000000px;}
.y13_c00075{bottom:661.050000px;}
.y12_c00075{bottom:681.150000px;}
.y11_c00075{bottom:701.550000px;}
.y10_c00075{bottom:721.050000px;}
.yf_c00075{bottom:740.550000px;}
.ye_c00075{bottom:760.350000px;}
.yd_c00075{bottom:780.450000px;}
.yc_c00075{bottom:800.250000px;}
.yb_c00075{bottom:820.800000px;}
.ya_c00075{bottom:840.600000px;}
.y9_c00075{bottom:860.100000px;}
.y8_c00075{bottom:880.050000px;}
.y7_c00075{bottom:900.150000px;}
.y6_c00075{bottom:919.950000px;}
.y5_c00075{bottom:939.750000px;}
.y4_c00075{bottom:959.850000px;}
.y3_c00075{bottom:979.650000px;}
.y2_c00075{bottom:999.750000px;}
.y1_c00075{bottom:1037.550000px;}
.h2_c00075{height:54.000000px;}
.h3_c00075{height:60.000000px;}
.h1_c00075{height:1167.000000px;}
.h0_c00075{height:1167.119934px;}
.w0_c00075{width:913.320007px;}
.w1_c00075{width:913.500000px;}
.x0_c00075{left:0.000000px;}
.x4_c00075{left:100.800000px;}
.x97_c00075{left:101.850000px;}
.xa1_c00075{left:123.150000px;}
.x93_c00075{left:126.300000px;}
.x59_c00075{left:131.700000px;}
.xaa_c00075{left:133.200000px;}
.xb3_c00075{left:138.600000px;}
.x89_c00075{left:142.050000px;}
.x68_c00075{left:144.750000px;}
.x98_c00075{left:151.950000px;}
.x5_c00075{left:153.750000px;}
.x4d_c00075{left:157.050000px;}
.xa9_c00075{left:158.400000px;}
.x31_c00075{left:161.250000px;}
.x15_c00075{left:165.750000px;}
.x6_c00075{left:171.000000px;}
.x8a_c00075{left:172.650000px;}
.x73_c00075{left:173.700000px;}
.x23_c00075{left:174.900000px;}
.x7f_c00075{left:176.850000px;}
.x3e_c00075{left:178.650000px;}
.xa2_c00075{left:180.000000px;}
.xab_c00075{left:186.750000px;}
.x7_c00075{left:192.300000px;}
.x74_c00075{left:193.800000px;}
.x99_c00075{left:195.450000px;}
.x32_c00075{left:199.050000px;}
.x24_c00075{left:208.350000px;}
.x33_c00075{left:213.750000px;}
.x9a_c00075{left:220.350000px;}
.x5a_c00075{left:224.550000px;}
.x75_c00075{left:230.100000px;}
.xa3_c00075{left:232.500000px;}
.x25_c00075{left:237.900000px;}
.x3f_c00075{left:243.750000px;}
.x80_c00075{left:246.300000px;}
.x8b_c00075{left:249.000000px;}
.x69_c00075{left:250.650000px;}
.x16_c00075{left:252.150000px;}
.x8_c00075{left:256.050000px;}
.x5b_c00075{left:257.700000px;}
.x76_c00075{left:258.900000px;}
.x17_c00075{left:269.850000px;}
.x77_c00075{left:274.800000px;}
.x40_c00075{left:284.400000px;}
.x34_c00075{left:288.300000px;}
.x9_c00075{left:289.950000px;}
.x5c_c00075{left:291.600000px;}
.x18_c00075{left:295.350000px;}
.x26_c00075{left:302.400000px;}
.x41_c00075{left:304.200000px;}
.xac_c00075{left:305.250000px;}
.x6a_c00075{left:307.500000px;}
.x9b_c00075{left:309.900000px;}
.x4e_c00075{left:316.500000px;}
.xb4_c00075{left:319.200000px;}
.x81_c00075{left:324.000000px;}
.x8c_c00075{left:325.650000px;}
.xa4_c00075{left:326.850000px;}
.xad_c00075{left:331.950000px;}
.xa_c00075{left:337.050000px;}
.x9c_c00075{left:340.800000px;}
.x42_c00075{left:344.850000px;}
.x82_c00075{left:346.350000px;}
.x1_c00075{left:348.450000px;}
.x27_c00075{left:352.050000px;}
.x6b_c00075{left:353.550000px;}
.xb5_c00075{left:355.500000px;}
.xb_c00075{left:357.600000px;}
.xa5_c00075{left:360.750000px;}
.x9d_c00075{left:368.850000px;}
.x5d_c00075{left:370.050000px;}
.x35_c00075{left:371.850000px;}
.x28_c00075{left:377.250000px;}
.x6c_c00075{left:382.350000px;}
.x43_c00075{left:384.750000px;}
.x19_c00075{left:386.850000px;}
.x9e_c00075{left:390.150000px;}
.x5e_c00075{left:392.400000px;}
.x94_c00075{left:396.000000px;}
.xae_c00075{left:397.050000px;}
.xa6_c00075{left:402.450000px;}
.xc_c00075{left:412.650000px;}
.x36_c00075{left:414.000000px;}
.xaf_c00075{left:417.150000px;}
.x1a_c00075{left:418.200000px;}
.x29_c00075{left:420.150000px;}
.x44_c00075{left:421.800000px;}
.x4f_c00075{left:423.750000px;}
.x78_c00075{left:429.600000px;}
.x37_c00075{left:434.850000px;}
.x2a_c00075{left:437.100000px;}
.x2_c00075{left:439.500000px;}
.x45_c00075{left:441.900000px;}
.x9f_c00075{left:445.650000px;}
.xd_c00075{left:447.900000px;}
.x79_c00075{left:458.700000px;}
.x8d_c00075{left:459.900000px;}
.x50_c00075{left:461.850000px;}
.xb0_c00075{left:467.550000px;}
.x6d_c00075{left:468.750000px;}
.xe_c00075{left:472.050000px;}
.x38_c00075{left:475.200000px;}
.x7a_c00075{left:477.450000px;}
.x2b_c00075{left:481.050000px;}
.x83_c00075{left:482.550000px;}
.x1b_c00075{left:484.800000px;}
.x5f_c00075{left:487.500000px;}
.x46_c00075{left:491.250000px;}
.x60_c00075{left:498.600000px;}
.xf_c00075{left:500.550000px;}
.xb1_c00075{left:502.500000px;}
.x51_c00075{left:504.750000px;}
.x7b_c00075{left:508.050000px;}
.x1c_c00075{left:510.300000px;}
.x84_c00075{left:516.450000px;}
.xb6_c00075{left:519.900000px;}
.xa7_c00075{left:522.750000px;}
.x61_c00075{left:525.300000px;}
.x8e_c00075{left:529.800000px;}
.x2c_c00075{left:531.150000px;}
.x47_c00075{left:536.550000px;}
.x6e_c00075{left:538.950000px;}
.x52_c00075{left:544.050000px;}
.x1d_c00075{left:546.600000px;}
.x62_c00075{left:547.650000px;}
.xa0_c00075{left:549.000000px;}
.x10_c00075{left:560.700000px;}
.xb2_c00075{left:562.650000px;}
.x1e_c00075{left:563.850000px;}
.x39_c00075{left:570.600000px;}
.x53_c00075{left:572.850000px;}
.x63_c00075{left:580.350000px;}
.x6f_c00075{left:584.250000px;}
.x7c_c00075{left:587.850000px;}
.x11_c00075{left:600.600000px;}
.x48_c00075{left:603.150000px;}
.x1f_c00075{left:605.550000px;}
.x54_c00075{left:610.350000px;}
.x8f_c00075{left:613.650000px;}
.x3a_c00075{left:616.350000px;}
.x12_c00075{left:617.550000px;}
.x85_c00075{left:620.100000px;}
.x64_c00075{left:622.050000px;}
.x49_c00075{left:631.200000px;}
.x70_c00075{left:633.300000px;}
.x90_c00075{left:634.500000px;}
.x2d_c00075{left:642.300000px;}
.x55_c00075{left:644.250000px;}
.x7d_c00075{left:650.550000px;}
.x20_c00075{left:652.650000px;}
.x65_c00075{left:658.050000px;}
.x13_c00075{left:665.100000px;}
.x86_c00075{left:669.000000px;}
.x56_c00075{left:670.200000px;}
.x2e_c00075{left:676.200000px;}
.x95_c00075{left:680.700000px;}
.x71_c00075{left:681.900000px;}
.x21_c00075{left:685.350000px;}
.x4a_c00075{left:687.000000px;}
.x3b_c00075{left:689.100000px;}
.x7e_c00075{left:692.700000px;}
.x87_c00075{left:696.300000px;}
.x2f_c00075{left:698.850000px;}
.xa8_c00075{left:700.200000px;}
.x66_c00075{left:701.250000px;}
.x14_c00075{left:703.650000px;}
.x4b_c00075{left:704.700000px;}
.x91_c00075{left:709.350000px;}
.x96_c00075{left:714.150000px;}
.x57_c00075{left:721.350000px;}
.x3c_c00075{left:722.550000px;}
.x22_c00075{left:728.550000px;}
.x4c_c00075{left:730.200000px;}
.x30_c00075{left:737.700000px;}
.x67_c00075{left:739.800000px;}
.x58_c00075{left:740.850000px;}
.x92_c00075{left:743.250000px;}
.x72_c00075{left:745.650000px;}
.x3_c00075{left:749.850000px;}
.x88_c00075{left:755.400000px;}
.x3d_c00075{left:760.350000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:-7.133059pt;}
.ws5_c00075{word-spacing:0.000000pt;}
.ws2_c00075{word-spacing:3.888889pt;}
.ws4_c00075{word-spacing:5.454545pt;}
.ws3_c00075{word-spacing:7.298246pt;}
.ws1_c00075{word-spacing:9.542484pt;}
.fs0_c00075{font-size:48.000000pt;}
.fs1_c00075{font-size:53.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y13_c00075{bottom:587.600000pt;}
.y12_c00075{bottom:605.466667pt;}
.y11_c00075{bottom:623.600000pt;}
.y10_c00075{bottom:640.933333pt;}
.yf_c00075{bottom:658.266667pt;}
.ye_c00075{bottom:675.866667pt;}
.yd_c00075{bottom:693.733333pt;}
.yc_c00075{bottom:711.333333pt;}
.yb_c00075{bottom:729.600000pt;}
.ya_c00075{bottom:747.200000pt;}
.y9_c00075{bottom:764.533333pt;}
.y8_c00075{bottom:782.266667pt;}
.y7_c00075{bottom:800.133333pt;}
.y6_c00075{bottom:817.733333pt;}
.y5_c00075{bottom:835.333333pt;}
.y4_c00075{bottom:853.200000pt;}
.y3_c00075{bottom:870.800000pt;}
.y2_c00075{bottom:888.666667pt;}
.y1_c00075{bottom:922.266667pt;}
.h2_c00075{height:48.000000pt;}
.h3_c00075{height:53.333333pt;}
.h1_c00075{height:1037.333333pt;}
.h0_c00075{height:1037.439941pt;}
.w0_c00075{width:811.840007pt;}
.w1_c00075{width:812.000000pt;}
.x0_c00075{left:0.000000pt;}
.x4_c00075{left:89.600000pt;}
.x97_c00075{left:90.533333pt;}
.xa1_c00075{left:109.466667pt;}
.x93_c00075{left:112.266667pt;}
.x59_c00075{left:117.066667pt;}
.xaa_c00075{left:118.400000pt;}
.xb3_c00075{left:123.200000pt;}
.x89_c00075{left:126.266667pt;}
.x68_c00075{left:128.666667pt;}
.x98_c00075{left:135.066667pt;}
.x5_c00075{left:136.666667pt;}
.x4d_c00075{left:139.600000pt;}
.xa9_c00075{left:140.800000pt;}
.x31_c00075{left:143.333333pt;}
.x15_c00075{left:147.333333pt;}
.x6_c00075{left:152.000000pt;}
.x8a_c00075{left:153.466667pt;}
.x73_c00075{left:154.400000pt;}
.x23_c00075{left:155.466667pt;}
.x7f_c00075{left:157.200000pt;}
.x3e_c00075{left:158.800000pt;}
.xa2_c00075{left:160.000000pt;}
.xab_c00075{left:166.000000pt;}
.x7_c00075{left:170.933333pt;}
.x74_c00075{left:172.266667pt;}
.x99_c00075{left:173.733333pt;}
.x32_c00075{left:176.933333pt;}
.x24_c00075{left:185.200000pt;}
.x33_c00075{left:190.000000pt;}
.x9a_c00075{left:195.866667pt;}
.x5a_c00075{left:199.600000pt;}
.x75_c00075{left:204.533333pt;}
.xa3_c00075{left:206.666667pt;}
.x25_c00075{left:211.466667pt;}
.x3f_c00075{left:216.666667pt;}
.x80_c00075{left:218.933333pt;}
.x8b_c00075{left:221.333333pt;}
.x69_c00075{left:222.800000pt;}
.x16_c00075{left:224.133333pt;}
.x8_c00075{left:227.600000pt;}
.x5b_c00075{left:229.066667pt;}
.x76_c00075{left:230.133333pt;}
.x17_c00075{left:239.866667pt;}
.x77_c00075{left:244.266667pt;}
.x40_c00075{left:252.800000pt;}
.x34_c00075{left:256.266667pt;}
.x9_c00075{left:257.733333pt;}
.x5c_c00075{left:259.200000pt;}
.x18_c00075{left:262.533333pt;}
.x26_c00075{left:268.800000pt;}
.x41_c00075{left:270.400000pt;}
.xac_c00075{left:271.333333pt;}
.x6a_c00075{left:273.333333pt;}
.x9b_c00075{left:275.466667pt;}
.x4e_c00075{left:281.333333pt;}
.xb4_c00075{left:283.733333pt;}
.x81_c00075{left:288.000000pt;}
.x8c_c00075{left:289.466667pt;}
.xa4_c00075{left:290.533333pt;}
.xad_c00075{left:295.066667pt;}
.xa_c00075{left:299.600000pt;}
.x9c_c00075{left:302.933333pt;}
.x42_c00075{left:306.533333pt;}
.x82_c00075{left:307.866667pt;}
.x1_c00075{left:309.733333pt;}
.x27_c00075{left:312.933333pt;}
.x6b_c00075{left:314.266667pt;}
.xb5_c00075{left:316.000000pt;}
.xb_c00075{left:317.866667pt;}
.xa5_c00075{left:320.666667pt;}
.x9d_c00075{left:327.866667pt;}
.x5d_c00075{left:328.933333pt;}
.x35_c00075{left:330.533333pt;}
.x28_c00075{left:335.333333pt;}
.x6c_c00075{left:339.866667pt;}
.x43_c00075{left:342.000000pt;}
.x19_c00075{left:343.866667pt;}
.x9e_c00075{left:346.800000pt;}
.x5e_c00075{left:348.800000pt;}
.x94_c00075{left:352.000000pt;}
.xae_c00075{left:352.933333pt;}
.xa6_c00075{left:357.733333pt;}
.xc_c00075{left:366.800000pt;}
.x36_c00075{left:368.000000pt;}
.xaf_c00075{left:370.800000pt;}
.x1a_c00075{left:371.733333pt;}
.x29_c00075{left:373.466667pt;}
.x44_c00075{left:374.933333pt;}
.x4f_c00075{left:376.666667pt;}
.x78_c00075{left:381.866667pt;}
.x37_c00075{left:386.533333pt;}
.x2a_c00075{left:388.533333pt;}
.x2_c00075{left:390.666667pt;}
.x45_c00075{left:392.800000pt;}
.x9f_c00075{left:396.133333pt;}
.xd_c00075{left:398.133333pt;}
.x79_c00075{left:407.733333pt;}
.x8d_c00075{left:408.800000pt;}
.x50_c00075{left:410.533333pt;}
.xb0_c00075{left:415.600000pt;}
.x6d_c00075{left:416.666667pt;}
.xe_c00075{left:419.600000pt;}
.x38_c00075{left:422.400000pt;}
.x7a_c00075{left:424.400000pt;}
.x2b_c00075{left:427.600000pt;}
.x83_c00075{left:428.933333pt;}
.x1b_c00075{left:430.933333pt;}
.x5f_c00075{left:433.333333pt;}
.x46_c00075{left:436.666667pt;}
.x60_c00075{left:443.200000pt;}
.xf_c00075{left:444.933333pt;}
.xb1_c00075{left:446.666667pt;}
.x51_c00075{left:448.666667pt;}
.x7b_c00075{left:451.600000pt;}
.x1c_c00075{left:453.600000pt;}
.x84_c00075{left:459.066667pt;}
.xb6_c00075{left:462.133333pt;}
.xa7_c00075{left:464.666667pt;}
.x61_c00075{left:466.933333pt;}
.x8e_c00075{left:470.933333pt;}
.x2c_c00075{left:472.133333pt;}
.x47_c00075{left:476.933333pt;}
.x6e_c00075{left:479.066667pt;}
.x52_c00075{left:483.600000pt;}
.x1d_c00075{left:485.866667pt;}
.x62_c00075{left:486.800000pt;}
.xa0_c00075{left:488.000000pt;}
.x10_c00075{left:498.400000pt;}
.xb2_c00075{left:500.133333pt;}
.x1e_c00075{left:501.200000pt;}
.x39_c00075{left:507.200000pt;}
.x53_c00075{left:509.200000pt;}
.x63_c00075{left:515.866667pt;}
.x6f_c00075{left:519.333333pt;}
.x7c_c00075{left:522.533333pt;}
.x11_c00075{left:533.866667pt;}
.x48_c00075{left:536.133333pt;}
.x1f_c00075{left:538.266667pt;}
.x54_c00075{left:542.533333pt;}
.x8f_c00075{left:545.466667pt;}
.x3a_c00075{left:547.866667pt;}
.x12_c00075{left:548.933333pt;}
.x85_c00075{left:551.200000pt;}
.x64_c00075{left:552.933333pt;}
.x49_c00075{left:561.066667pt;}
.x70_c00075{left:562.933333pt;}
.x90_c00075{left:564.000000pt;}
.x2d_c00075{left:570.933333pt;}
.x55_c00075{left:572.666667pt;}
.x7d_c00075{left:578.266667pt;}
.x20_c00075{left:580.133333pt;}
.x65_c00075{left:584.933333pt;}
.x13_c00075{left:591.200000pt;}
.x86_c00075{left:594.666667pt;}
.x56_c00075{left:595.733333pt;}
.x2e_c00075{left:601.066667pt;}
.x95_c00075{left:605.066667pt;}
.x71_c00075{left:606.133333pt;}
.x21_c00075{left:609.200000pt;}
.x4a_c00075{left:610.666667pt;}
.x3b_c00075{left:612.533333pt;}
.x7e_c00075{left:615.733333pt;}
.x87_c00075{left:618.933333pt;}
.x2f_c00075{left:621.200000pt;}
.xa8_c00075{left:622.400000pt;}
.x66_c00075{left:623.333333pt;}
.x14_c00075{left:625.466667pt;}
.x4b_c00075{left:626.400000pt;}
.x91_c00075{left:630.533333pt;}
.x96_c00075{left:634.800000pt;}
.x57_c00075{left:641.200000pt;}
.x3c_c00075{left:642.266667pt;}
.x22_c00075{left:647.600000pt;}
.x4c_c00075{left:649.066667pt;}
.x30_c00075{left:655.733333pt;}
.x67_c00075{left:657.600000pt;}
.x58_c00075{left:658.533333pt;}
.x92_c00075{left:660.666667pt;}
.x72_c00075{left:662.800000pt;}
.x3_c00075{left:666.533333pt;}
.x88_c00075{left:671.466667pt;}
.x3d_c00075{left:675.866667pt;}
}





/* 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_c00076 {
    display:none;
  }
  .loading-indicator_c00076.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00076 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_c00076 { 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_c00076" -> "#page-container .classname_c00076")
 */
.pf_c00076 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00076 { /* 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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00076 { /* 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_c00076 { /* 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_c00076 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00076 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00076 {overflow:visible;}
  }
}
.c_c00076 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00076 { /* 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_c00076:after { /* webkit #35443 */
  content: '';
}
.t_c00076:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00076 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 */
}
.__c00076 { /* 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_c00076 { /* info for Javascript */
  display:none;
}
.l_c00076 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00076 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00076 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00076: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_c00076 {
    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_c00076.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00076.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_c00076 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00076{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00076;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.000000;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;}
.m97_c00076{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00076{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m79_c00076{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00076{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m47_c00076{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00076{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m68_c00076{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00076{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00076{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00076{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00076{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m95_c00076{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m91_c00076{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00076{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m99_c00076{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00076{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00076{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m41_c00076{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m98_c00076{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m93_c00076{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m29_c00076{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00076{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m94_c00076{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m75_c00076{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00076{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00076{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m16_c00076{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m51_c00076{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m59_c00076{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00076{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00076{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m34_c00076{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m39_c00076{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00076{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m31_c00076{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00076{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00076{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m96_c00076{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m71_c00076{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00076{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00076{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m80_c00076{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m11_c00076{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m49_c00076{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m22_c00076{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m78_c00076{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m66_c00076{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m42_c00076{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m65_c00076{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m46_c00076{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m45_c00076{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m63_c00076{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m36_c00076{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7_c00076{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00076{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00076{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m48_c00076{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m72_c00076{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m67_c00076{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m17_c00076{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m82_c00076{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00076{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m87_c00076{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m88_c00076{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00076{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00076{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00076{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00076{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m37_c00076{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m70_c00076{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00076{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m64_c00076{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m81_c00076{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00076{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00076{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me_c00076{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00076{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00076{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m44_c00076{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m13_c00076{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00076{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m83_c00076{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00076{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m38_c00076{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00076{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00076{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20_c00076{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);}
.m14_c00076{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00076{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00076{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m50_c00076{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00076{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19_c00076{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m76_c00076{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00076{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m33_c00076{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m57_c00076{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m15_c00076{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00076{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00076{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m61_c00076{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m40_c00076{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m56_c00076{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m89_c00076{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m10_c00076{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00076{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00076{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m62_c00076{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m86_c00076{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00076{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m25_c00076{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m85_c00076{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m30_c00076{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00076{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m84_c00076{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00076{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m18_c00076{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00076{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00076{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00076{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m21_c00076{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00076{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m32_c00076{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00076{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m43_c00076{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m35_c00076{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m12_c00076{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00076{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00076{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m60_c00076{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00076{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m58_c00076{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00076{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m53_c00076{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00076{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m54_c00076{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00076{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m26_c00076{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00076{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m69_c00076{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00076{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m52_c00076{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m77_c00076{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m74_c00076{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00076{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m8_c00076{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00076{vertical-align:0.000000px;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{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__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:-7.250000px;}
.ws8_c00076{word-spacing:-6.574692px;}
.ws6_c00076{word-spacing:-4.625000px;}
.wsb_c00076{word-spacing:-0.184739px;}
.wsc_c00076{word-spacing:0.000000px;}
.ws4_c00076{word-spacing:1.500000px;}
.ws9_c00076{word-spacing:3.887460px;}
.ws7_c00076{word-spacing:4.375000px;}
.ws3_c00076{word-spacing:5.478528px;}
.ws5_c00076{word-spacing:6.250000px;}
.wsa_c00076{word-spacing:11.071611px;}
.ws2_c00076{word-spacing:14.985932px;}
.ws1_c00076{word-spacing:18.125000px;}
.fc0_c00076{color:transparent;}
.fs1_c00076{font-size:54.000000px;}
.fs0_c00076{font-size:66.000000px;}
.y0_c00076{bottom:0.000000px;}
.y24_c00076{bottom:146.850000px;}
.y23_c00076{bottom:162.000000px;}
.y22_c00076{bottom:177.900000px;}
.y21_c00076{bottom:218.400000px;}
.y20_c00076{bottom:238.500000px;}
.y1f_c00076{bottom:258.000000px;}
.y1e_c00076{bottom:277.500000px;}
.y1d_c00076{bottom:297.600000px;}
.y1c_c00076{bottom:317.700000px;}
.y1b_c00076{bottom:337.800000px;}
.y1a_c00076{bottom:357.600000px;}
.y19_c00076{bottom:377.400000px;}
.y18_c00076{bottom:397.500000px;}
.y17_c00076{bottom:417.000000px;}
.y16_c00076{bottom:437.100000px;}
.y15_c00076{bottom:456.600000px;}
.y14_c00076{bottom:476.400000px;}
.y13_c00076{bottom:496.500000px;}
.y12_c00076{bottom:516.300000px;}
.y11_c00076{bottom:536.400000px;}
.y10_c00076{bottom:555.900000px;}
.yf_c00076{bottom:576.000000px;}
.ye_c00076{bottom:595.800000px;}
.yd_c00076{bottom:615.900000px;}
.yc_c00076{bottom:636.000000px;}
.yb_c00076{bottom:656.100000px;}
.ya_c00076{bottom:675.900000px;}
.y9_c00076{bottom:695.700000px;}
.y8_c00076{bottom:715.500000px;}
.y7_c00076{bottom:735.600000px;}
.y6_c00076{bottom:755.400000px;}
.y5_c00076{bottom:775.500000px;}
.y4_c00076{bottom:795.300000px;}
.y3_c00076{bottom:828.300000px;}
.y2_c00076{bottom:861.900000px;}
.y1_c00076{bottom:1037.550000px;}
.h3_c00076{height:54.000000px;}
.h2_c00076{height:66.000000px;}
.h1_c00076{height:1167.000000px;}
.h0_c00076{height:1167.119934px;}
.w0_c00076{width:913.320007px;}
.w1_c00076{width:913.500000px;}
.x0_c00076{left:0.000000px;}
.x10_c00076{left:143.700000px;}
.x9f_c00076{left:145.200000px;}
.x103_c00076{left:146.550000px;}
.xfe_c00076{left:165.600000px;}
.x3d_c00076{left:169.050000px;}
.x86_c00076{left:175.350000px;}
.x96_c00076{left:177.150000px;}
.xd7_c00076{left:179.550000px;}
.xd3_c00076{left:182.250000px;}
.xff_c00076{left:184.650000px;}
.x61_c00076{left:186.150000px;}
.x56_c00076{left:190.500000px;}
.xb0_c00076{left:192.150000px;}
.xc4_c00076{left:193.350000px;}
.x11_c00076{left:196.650000px;}
.xd8_c00076{left:199.650000px;}
.xcc_c00076{left:200.850000px;}
.x2c_c00076{left:202.050000px;}
.x48_c00076{left:204.150000px;}
.xa0_c00076{left:207.150000px;}
.x8e_c00076{left:208.650000px;}
.x57_c00076{left:211.800000px;}
.x4_c00076{left:217.050000px;}
.x20_c00076{left:219.900000px;}
.x97_c00076{left:221.400000px;}
.x12_c00076{left:224.700000px;}
.x49_c00076{left:227.250000px;}
.xf3_c00076{left:230.400000px;}
.x2d_c00076{left:234.450000px;}
.xa1_c00076{left:236.250000px;}
.xe6_c00076{left:237.750000px;}
.x105_c00076{left:239.100000px;}
.xc5_c00076{left:240.450000px;}
.x58_c00076{left:241.650000px;}
.xd9_c00076{left:243.600000px;}
.x6d_c00076{left:244.650000px;}
.x62_c00076{left:246.300000px;}
.x3e_c00076{left:248.250000px;}
.x5_c00076{left:250.500000px;}
.xe0_c00076{left:253.950000px;}
.x98_c00076{left:257.100000px;}
.x2e_c00076{left:259.950000px;}
.x87_c00076{left:263.550000px;}
.xa2_c00076{left:265.800000px;}
.x21_c00076{left:268.800000px;}
.x100_c00076{left:276.450000px;}
.x76_c00076{left:278.100000px;}
.x7f_c00076{left:279.450000px;}
.xb8_c00076{left:281.250000px;}
.xf0_c00076{left:286.650000px;}
.x13_c00076{left:289.800000px;}
.x3f_c00076{left:291.450000px;}
.xa3_c00076{left:295.350000px;}
.x22_c00076{left:296.550000px;}
.xe1_c00076{left:297.900000px;}
.x99_c00076{left:299.550000px;}
.x4a_c00076{left:301.050000px;}
.x2f_c00076{left:302.850000px;}
.x63_c00076{left:308.550000px;}
.xc6_c00076{left:309.600000px;}
.xda_c00076{left:313.500000px;}
.xf1_c00076{left:315.150000px;}
.xe2_c00076{left:317.700000px;}
.x6e_c00076{left:320.700000px;}
.xe7_c00076{left:321.900000px;}
.x9a_c00076{left:326.850000px;}
.x6_c00076{left:328.200000px;}
.xcd_c00076{left:330.000000px;}
.xa7_c00076{left:331.200000px;}
.xfb_c00076{left:333.150000px;}
.x14_c00076{left:334.800000px;}
.xd4_c00076{left:337.050000px;}
.x4b_c00076{left:338.100000px;}
.xb9_c00076{left:342.150000px;}
.x30_c00076{left:344.550000px;}
.x23_c00076{left:345.900000px;}
.x7_c00076{left:348.000000px;}
.x6f_c00076{left:349.200000px;}
.x8f_c00076{left:350.850000px;}
.x106_c00076{left:352.500000px;}
.x64_c00076{left:354.300000px;}
.xba_c00076{left:356.550000px;}
.x59_c00076{left:361.650000px;}
.x77_c00076{left:367.650000px;}
.xce_c00076{left:368.850000px;}
.xa8_c00076{left:371.100000px;}
.x80_c00076{left:372.750000px;}
.x65_c00076{left:374.850000px;}
.x31_c00076{left:375.900000px;}
.x8_c00076{left:378.300000px;}
.x88_c00076{left:380.550000px;}
.xe8_c00076{left:383.400000px;}
.xf4_c00076{left:384.450000px;}
.x40_c00076{left:386.550000px;}
.x101_c00076{left:388.350000px;}
.x4c_c00076{left:389.550000px;}
.xb1_c00076{left:390.900000px;}
.xe3_c00076{left:391.950000px;}
.xbb_c00076{left:395.400000px;}
.xc7_c00076{left:397.800000px;}
.x107_c00076{left:399.750000px;}
.xdb_c00076{left:402.450000px;}
.x15_c00076{left:405.300000px;}
.xcf_c00076{left:406.950000px;}
.x70_c00076{left:408.900000px;}
.x4d_c00076{left:411.150000px;}
.xbc_c00076{left:416.250000px;}
.x41_c00076{left:418.200000px;}
.x32_c00076{left:419.850000px;}
.x9_c00076{left:421.800000px;}
.x2_c00076{left:423.300000px;}
.x16_c00076{left:426.600000px;}
.x104_c00076{left:433.050000px;}
.xf8_c00076{left:434.400000px;}
.xe9_c00076{left:435.600000px;}
.x33_c00076{left:436.800000px;}
.x24_c00076{left:438.900000px;}
.x81_c00076{left:441.450000px;}
.x4e_c00076{left:443.250000px;}
.xd0_c00076{left:444.750000px;}
.xc0_c00076{left:447.450000px;}
.x17_c00076{left:452.100000px;}
.x78_c00076{left:454.050000px;}
.x66_c00076{left:457.650000px;}
.x71_c00076{left:460.050000px;}
.x5a_c00076{left:461.100000px;}
.xb2_c00076{left:462.150000px;}
.x90_c00076{left:463.350000px;}
.x89_c00076{left:466.200000px;}
.x1_c00076{left:468.000000px;}
.xdc_c00076{left:471.600000px;}
.xa9_c00076{left:472.650000px;}
.x34_c00076{left:477.900000px;}
.x82_c00076{left:478.950000px;}
.xa_c00076{left:481.200000px;}
.xb3_c00076{left:483.000000px;}
.xd1_c00076{left:484.650000px;}
.xed_c00076{left:489.600000px;}
.x42_c00076{left:491.700000px;}
.x25_c00076{left:493.200000px;}
.xc8_c00076{left:495.300000px;}
.xb_c00076{left:497.100000px;}
.x35_c00076{left:499.500000px;}
.x4f_c00076{left:500.850000px;}
.xaa_c00076{left:502.200000px;}
.x3_c00076{left:507.900000px;}
.xb4_c00076{left:509.700000px;}
.x43_c00076{left:513.000000px;}
.x79_c00076{left:516.000000px;}
.xf2_c00076{left:518.400000px;}
.xab_c00076{left:519.450000px;}
.x26_c00076{left:523.050000px;}
.x9b_c00076{left:525.300000px;}
.x8a_c00076{left:526.350000px;}
.x18_c00076{left:527.700000px;}
.x36_c00076{left:530.100000px;}
.xc9_c00076{left:533.100000px;}
.x50_c00076{left:538.950000px;}
.x44_c00076{left:541.500000px;}
.xd2_c00076{left:543.750000px;}
.x19_c00076{left:545.400000px;}
.xee_c00076{left:547.500000px;}
.x91_c00076{left:548.700000px;}
.xdd_c00076{left:550.050000px;}
.xc_c00076{left:555.450000px;}
.xf9_c00076{left:558.300000px;}
.xca_c00076{left:559.800000px;}
.xbd_c00076{left:560.850000px;}
.xac_c00076{left:562.350000px;}
.xa4_c00076{left:566.100000px;}
.xfc_c00076{left:568.350000px;}
.xd5_c00076{left:571.500000px;}
.x1a_c00076{left:573.450000px;}
.x83_c00076{left:574.950000px;}
.xc1_c00076{left:579.150000px;}
.x5b_c00076{left:580.650000px;}
.x7a_c00076{left:585.150000px;}
.x37_c00076{left:587.400000px;}
.xd6_c00076{left:590.550000px;}
.x72_c00076{left:592.500000px;}
.x9c_c00076{left:598.350000px;}
.xde_c00076{left:599.400000px;}
.x45_c00076{left:605.550000px;}
.x27_c00076{left:606.600000px;}
.x73_c00076{left:609.750000px;}
.x84_c00076{left:611.700000px;}
.x1b_c00076{left:613.050000px;}
.x51_c00076{left:614.250000px;}
.xd_c00076{left:615.600000px;}
.xc2_c00076{left:617.250000px;}
.x5c_c00076{left:619.500000px;}
.x9d_c00076{left:620.700000px;}
.x67_c00076{left:621.900000px;}
.xe_c00076{left:631.800000px;}
.xf5_c00076{left:635.250000px;}
.xad_c00076{left:638.400000px;}
.xea_c00076{left:639.750000px;}
.x8b_c00076{left:640.950000px;}
.x52_c00076{left:643.050000px;}
.x102_c00076{left:644.250000px;}
.x7b_c00076{left:645.300000px;}
.x28_c00076{left:648.750000px;}
.x68_c00076{left:651.450000px;}
.x92_c00076{left:654.150000px;}
.xb5_c00076{left:655.800000px;}
.xfd_c00076{left:658.050000px;}
.x1c_c00076{left:659.550000px;}
.x5d_c00076{left:663.000000px;}
.xe4_c00076{left:664.050000px;}
.x38_c00076{left:665.100000px;}
.x93_c00076{left:675.000000px;}
.x8c_c00076{left:676.950000px;}
.x74_c00076{left:679.500000px;}
.x7c_c00076{left:681.300000px;}
.x5e_c00076{left:684.900000px;}
.xf_c00076{left:687.900000px;}
.xef_c00076{left:690.900000px;}
.x46_c00076{left:692.250000px;}
.x39_c00076{left:694.950000px;}
.x29_c00076{left:697.350000px;}
.xc3_c00076{left:698.550000px;}
.x69_c00076{left:701.550000px;}
.xf6_c00076{left:703.350000px;}
.x53_c00076{left:704.550000px;}
.x8d_c00076{left:709.050000px;}
.x5f_c00076{left:714.750000px;}
.xb6_c00076{left:717.300000px;}
.x6a_c00076{left:718.500000px;}
.x3a_c00076{left:719.850000px;}
.x85_c00076{left:721.200000px;}
.x47_c00076{left:723.600000px;}
.xae_c00076{left:725.550000px;}
.xbe_c00076{left:728.250000px;}
.x1d_c00076{left:730.050000px;}
.x2a_c00076{left:731.250000px;}
.xa5_c00076{left:734.850000px;}
.x7d_c00076{left:736.050000px;}
.x6b_c00076{left:745.800000px;}
.xbf_c00076{left:747.750000px;}
.x94_c00076{left:750.600000px;}
.x54_c00076{left:751.650000px;}
.x3b_c00076{left:753.300000px;}
.x75_c00076{left:754.350000px;}
.xeb_c00076{left:759.900000px;}
.xe5_c00076{left:760.950000px;}
.xcb_c00076{left:763.950000px;}
.x60_c00076{left:766.200000px;}
.x2b_c00076{left:769.050000px;}
.x3c_c00076{left:771.300000px;}
.x9e_c00076{left:772.350000px;}
.xdf_c00076{left:775.500000px;}
.x1e_c00076{left:778.650000px;}
.x95_c00076{left:780.150000px;}
.xec_c00076{left:781.200000px;}
.xf7_c00076{left:783.600000px;}
.xaf_c00076{left:786.450000px;}
.xb7_c00076{left:787.800000px;}
.x55_c00076{left:789.450000px;}
.xa6_c00076{left:790.950000px;}
.x7e_c00076{left:793.950000px;}
.x1f_c00076{left:795.600000px;}
.x6c_c00076{left:799.050000px;}
.xfa_c00076{left:801.150000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:-6.444444pt;}
.ws8_c00076{word-spacing:-5.844171pt;}
.ws6_c00076{word-spacing:-4.111111pt;}
.wsb_c00076{word-spacing:-0.164212pt;}
.wsc_c00076{word-spacing:0.000000pt;}
.ws4_c00076{word-spacing:1.333333pt;}
.ws9_c00076{word-spacing:3.455520pt;}
.ws7_c00076{word-spacing:3.888889pt;}
.ws3_c00076{word-spacing:4.869802pt;}
.ws5_c00076{word-spacing:5.555556pt;}
.wsa_c00076{word-spacing:9.841432pt;}
.ws2_c00076{word-spacing:13.320828pt;}
.ws1_c00076{word-spacing:16.111111pt;}
.fs1_c00076{font-size:48.000000pt;}
.fs0_c00076{font-size:58.666667pt;}
.y0_c00076{bottom:0.000000pt;}
.y24_c00076{bottom:130.533333pt;}
.y23_c00076{bottom:144.000000pt;}
.y22_c00076{bottom:158.133333pt;}
.y21_c00076{bottom:194.133333pt;}
.y20_c00076{bottom:212.000000pt;}
.y1f_c00076{bottom:229.333333pt;}
.y1e_c00076{bottom:246.666667pt;}
.y1d_c00076{bottom:264.533333pt;}
.y1c_c00076{bottom:282.400000pt;}
.y1b_c00076{bottom:300.266667pt;}
.y1a_c00076{bottom:317.866667pt;}
.y19_c00076{bottom:335.466667pt;}
.y18_c00076{bottom:353.333333pt;}
.y17_c00076{bottom:370.666667pt;}
.y16_c00076{bottom:388.533333pt;}
.y15_c00076{bottom:405.866667pt;}
.y14_c00076{bottom:423.466667pt;}
.y13_c00076{bottom:441.333333pt;}
.y12_c00076{bottom:458.933333pt;}
.y11_c00076{bottom:476.800000pt;}
.y10_c00076{bottom:494.133333pt;}
.yf_c00076{bottom:512.000000pt;}
.ye_c00076{bottom:529.600000pt;}
.yd_c00076{bottom:547.466667pt;}
.yc_c00076{bottom:565.333333pt;}
.yb_c00076{bottom:583.200000pt;}
.ya_c00076{bottom:600.800000pt;}
.y9_c00076{bottom:618.400000pt;}
.y8_c00076{bottom:636.000000pt;}
.y7_c00076{bottom:653.866667pt;}
.y6_c00076{bottom:671.466667pt;}
.y5_c00076{bottom:689.333333pt;}
.y4_c00076{bottom:706.933333pt;}
.y3_c00076{bottom:736.266667pt;}
.y2_c00076{bottom:766.133333pt;}
.y1_c00076{bottom:922.266667pt;}
.h3_c00076{height:48.000000pt;}
.h2_c00076{height:58.666667pt;}
.h1_c00076{height:1037.333333pt;}
.h0_c00076{height:1037.439941pt;}
.w0_c00076{width:811.840007pt;}
.w1_c00076{width:812.000000pt;}
.x0_c00076{left:0.000000pt;}
.x10_c00076{left:127.733333pt;}
.x9f_c00076{left:129.066667pt;}
.x103_c00076{left:130.266667pt;}
.xfe_c00076{left:147.200000pt;}
.x3d_c00076{left:150.266667pt;}
.x86_c00076{left:155.866667pt;}
.x96_c00076{left:157.466667pt;}
.xd7_c00076{left:159.600000pt;}
.xd3_c00076{left:162.000000pt;}
.xff_c00076{left:164.133333pt;}
.x61_c00076{left:165.466667pt;}
.x56_c00076{left:169.333333pt;}
.xb0_c00076{left:170.800000pt;}
.xc4_c00076{left:171.866667pt;}
.x11_c00076{left:174.800000pt;}
.xd8_c00076{left:177.466667pt;}
.xcc_c00076{left:178.533333pt;}
.x2c_c00076{left:179.600000pt;}
.x48_c00076{left:181.466667pt;}
.xa0_c00076{left:184.133333pt;}
.x8e_c00076{left:185.466667pt;}
.x57_c00076{left:188.266667pt;}
.x4_c00076{left:192.933333pt;}
.x20_c00076{left:195.466667pt;}
.x97_c00076{left:196.800000pt;}
.x12_c00076{left:199.733333pt;}
.x49_c00076{left:202.000000pt;}
.xf3_c00076{left:204.800000pt;}
.x2d_c00076{left:208.400000pt;}
.xa1_c00076{left:210.000000pt;}
.xe6_c00076{left:211.333333pt;}
.x105_c00076{left:212.533333pt;}
.xc5_c00076{left:213.733333pt;}
.x58_c00076{left:214.800000pt;}
.xd9_c00076{left:216.533333pt;}
.x6d_c00076{left:217.466667pt;}
.x62_c00076{left:218.933333pt;}
.x3e_c00076{left:220.666667pt;}
.x5_c00076{left:222.666667pt;}
.xe0_c00076{left:225.733333pt;}
.x98_c00076{left:228.533333pt;}
.x2e_c00076{left:231.066667pt;}
.x87_c00076{left:234.266667pt;}
.xa2_c00076{left:236.266667pt;}
.x21_c00076{left:238.933333pt;}
.x100_c00076{left:245.733333pt;}
.x76_c00076{left:247.200000pt;}
.x7f_c00076{left:248.400000pt;}
.xb8_c00076{left:250.000000pt;}
.xf0_c00076{left:254.800000pt;}
.x13_c00076{left:257.600000pt;}
.x3f_c00076{left:259.066667pt;}
.xa3_c00076{left:262.533333pt;}
.x22_c00076{left:263.600000pt;}
.xe1_c00076{left:264.800000pt;}
.x99_c00076{left:266.266667pt;}
.x4a_c00076{left:267.600000pt;}
.x2f_c00076{left:269.200000pt;}
.x63_c00076{left:274.266667pt;}
.xc6_c00076{left:275.200000pt;}
.xda_c00076{left:278.666667pt;}
.xf1_c00076{left:280.133333pt;}
.xe2_c00076{left:282.400000pt;}
.x6e_c00076{left:285.066667pt;}
.xe7_c00076{left:286.133333pt;}
.x9a_c00076{left:290.533333pt;}
.x6_c00076{left:291.733333pt;}
.xcd_c00076{left:293.333333pt;}
.xa7_c00076{left:294.400000pt;}
.xfb_c00076{left:296.133333pt;}
.x14_c00076{left:297.600000pt;}
.xd4_c00076{left:299.600000pt;}
.x4b_c00076{left:300.533333pt;}
.xb9_c00076{left:304.133333pt;}
.x30_c00076{left:306.266667pt;}
.x23_c00076{left:307.466667pt;}
.x7_c00076{left:309.333333pt;}
.x6f_c00076{left:310.400000pt;}
.x8f_c00076{left:311.866667pt;}
.x106_c00076{left:313.333333pt;}
.x64_c00076{left:314.933333pt;}
.xba_c00076{left:316.933333pt;}
.x59_c00076{left:321.466667pt;}
.x77_c00076{left:326.800000pt;}
.xce_c00076{left:327.866667pt;}
.xa8_c00076{left:329.866667pt;}
.x80_c00076{left:331.333333pt;}
.x65_c00076{left:333.200000pt;}
.x31_c00076{left:334.133333pt;}
.x8_c00076{left:336.266667pt;}
.x88_c00076{left:338.266667pt;}
.xe8_c00076{left:340.800000pt;}
.xf4_c00076{left:341.733333pt;}
.x40_c00076{left:343.600000pt;}
.x101_c00076{left:345.200000pt;}
.x4c_c00076{left:346.266667pt;}
.xb1_c00076{left:347.466667pt;}
.xe3_c00076{left:348.400000pt;}
.xbb_c00076{left:351.466667pt;}
.xc7_c00076{left:353.600000pt;}
.x107_c00076{left:355.333333pt;}
.xdb_c00076{left:357.733333pt;}
.x15_c00076{left:360.266667pt;}
.xcf_c00076{left:361.733333pt;}
.x70_c00076{left:363.466667pt;}
.x4d_c00076{left:365.466667pt;}
.xbc_c00076{left:370.000000pt;}
.x41_c00076{left:371.733333pt;}
.x32_c00076{left:373.200000pt;}
.x9_c00076{left:374.933333pt;}
.x2_c00076{left:376.266667pt;}
.x16_c00076{left:379.200000pt;}
.x104_c00076{left:384.933333pt;}
.xf8_c00076{left:386.133333pt;}
.xe9_c00076{left:387.200000pt;}
.x33_c00076{left:388.266667pt;}
.x24_c00076{left:390.133333pt;}
.x81_c00076{left:392.400000pt;}
.x4e_c00076{left:394.000000pt;}
.xd0_c00076{left:395.333333pt;}
.xc0_c00076{left:397.733333pt;}
.x17_c00076{left:401.866667pt;}
.x78_c00076{left:403.600000pt;}
.x66_c00076{left:406.800000pt;}
.x71_c00076{left:408.933333pt;}
.x5a_c00076{left:409.866667pt;}
.xb2_c00076{left:410.800000pt;}
.x90_c00076{left:411.866667pt;}
.x89_c00076{left:414.400000pt;}
.x1_c00076{left:416.000000pt;}
.xdc_c00076{left:419.200000pt;}
.xa9_c00076{left:420.133333pt;}
.x34_c00076{left:424.800000pt;}
.x82_c00076{left:425.733333pt;}
.xa_c00076{left:427.733333pt;}
.xb3_c00076{left:429.333333pt;}
.xd1_c00076{left:430.800000pt;}
.xed_c00076{left:435.200000pt;}
.x42_c00076{left:437.066667pt;}
.x25_c00076{left:438.400000pt;}
.xc8_c00076{left:440.266667pt;}
.xb_c00076{left:441.866667pt;}
.x35_c00076{left:444.000000pt;}
.x4f_c00076{left:445.200000pt;}
.xaa_c00076{left:446.400000pt;}
.x3_c00076{left:451.466667pt;}
.xb4_c00076{left:453.066667pt;}
.x43_c00076{left:456.000000pt;}
.x79_c00076{left:458.666667pt;}
.xf2_c00076{left:460.800000pt;}
.xab_c00076{left:461.733333pt;}
.x26_c00076{left:464.933333pt;}
.x9b_c00076{left:466.933333pt;}
.x8a_c00076{left:467.866667pt;}
.x18_c00076{left:469.066667pt;}
.x36_c00076{left:471.200000pt;}
.xc9_c00076{left:473.866667pt;}
.x50_c00076{left:479.066667pt;}
.x44_c00076{left:481.333333pt;}
.xd2_c00076{left:483.333333pt;}
.x19_c00076{left:484.800000pt;}
.xee_c00076{left:486.666667pt;}
.x91_c00076{left:487.733333pt;}
.xdd_c00076{left:488.933333pt;}
.xc_c00076{left:493.733333pt;}
.xf9_c00076{left:496.266667pt;}
.xca_c00076{left:497.600000pt;}
.xbd_c00076{left:498.533333pt;}
.xac_c00076{left:499.866667pt;}
.xa4_c00076{left:503.200000pt;}
.xfc_c00076{left:505.200000pt;}
.xd5_c00076{left:508.000000pt;}
.x1a_c00076{left:509.733333pt;}
.x83_c00076{left:511.066667pt;}
.xc1_c00076{left:514.800000pt;}
.x5b_c00076{left:516.133333pt;}
.x7a_c00076{left:520.133333pt;}
.x37_c00076{left:522.133333pt;}
.xd6_c00076{left:524.933333pt;}
.x72_c00076{left:526.666667pt;}
.x9c_c00076{left:531.866667pt;}
.xde_c00076{left:532.800000pt;}
.x45_c00076{left:538.266667pt;}
.x27_c00076{left:539.200000pt;}
.x73_c00076{left:542.000000pt;}
.x84_c00076{left:543.733333pt;}
.x1b_c00076{left:544.933333pt;}
.x51_c00076{left:546.000000pt;}
.xd_c00076{left:547.200000pt;}
.xc2_c00076{left:548.666667pt;}
.x5c_c00076{left:550.666667pt;}
.x9d_c00076{left:551.733333pt;}
.x67_c00076{left:552.800000pt;}
.xe_c00076{left:561.600000pt;}
.xf5_c00076{left:564.666667pt;}
.xad_c00076{left:567.466667pt;}
.xea_c00076{left:568.666667pt;}
.x8b_c00076{left:569.733333pt;}
.x52_c00076{left:571.600000pt;}
.x102_c00076{left:572.666667pt;}
.x7b_c00076{left:573.600000pt;}
.x28_c00076{left:576.666667pt;}
.x68_c00076{left:579.066667pt;}
.x92_c00076{left:581.466667pt;}
.xb5_c00076{left:582.933333pt;}
.xfd_c00076{left:584.933333pt;}
.x1c_c00076{left:586.266667pt;}
.x5d_c00076{left:589.333333pt;}
.xe4_c00076{left:590.266667pt;}
.x38_c00076{left:591.200000pt;}
.x93_c00076{left:600.000000pt;}
.x8c_c00076{left:601.733333pt;}
.x74_c00076{left:604.000000pt;}
.x7c_c00076{left:605.600000pt;}
.x5e_c00076{left:608.800000pt;}
.xf_c00076{left:611.466667pt;}
.xef_c00076{left:614.133333pt;}
.x46_c00076{left:615.333333pt;}
.x39_c00076{left:617.733333pt;}
.x29_c00076{left:619.866667pt;}
.xc3_c00076{left:620.933333pt;}
.x69_c00076{left:623.600000pt;}
.xf6_c00076{left:625.200000pt;}
.x53_c00076{left:626.266667pt;}
.x8d_c00076{left:630.266667pt;}
.x5f_c00076{left:635.333333pt;}
.xb6_c00076{left:637.600000pt;}
.x6a_c00076{left:638.666667pt;}
.x3a_c00076{left:639.866667pt;}
.x85_c00076{left:641.066667pt;}
.x47_c00076{left:643.200000pt;}
.xae_c00076{left:644.933333pt;}
.xbe_c00076{left:647.333333pt;}
.x1d_c00076{left:648.933333pt;}
.x2a_c00076{left:650.000000pt;}
.xa5_c00076{left:653.200000pt;}
.x7d_c00076{left:654.266667pt;}
.x6b_c00076{left:662.933333pt;}
.xbf_c00076{left:664.666667pt;}
.x94_c00076{left:667.200000pt;}
.x54_c00076{left:668.133333pt;}
.x3b_c00076{left:669.600000pt;}
.x75_c00076{left:670.533333pt;}
.xeb_c00076{left:675.466667pt;}
.xe5_c00076{left:676.400000pt;}
.xcb_c00076{left:679.066667pt;}
.x60_c00076{left:681.066667pt;}
.x2b_c00076{left:683.600000pt;}
.x3c_c00076{left:685.600000pt;}
.x9e_c00076{left:686.533333pt;}
.xdf_c00076{left:689.333333pt;}
.x1e_c00076{left:692.133333pt;}
.x95_c00076{left:693.466667pt;}
.xec_c00076{left:694.400000pt;}
.xf7_c00076{left:696.533333pt;}
.xaf_c00076{left:699.066667pt;}
.xb7_c00076{left:700.266667pt;}
.x55_c00076{left:701.733333pt;}
.xa6_c00076{left:703.066667pt;}
.x7e_c00076{left:705.733333pt;}
.x1f_c00076{left:707.200000pt;}
.x6c_c00076{left:710.266667pt;}
.xfa_c00076{left:712.133333pt;}
}





/* 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_c00077 {
    display:none;
  }
  .loading-indicator_c00077.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00077 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_c00077 { 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_c00077" -> "#page-container .classname_c00077")
 */
.pf_c00077 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00077 { /* 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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00077 { /* 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_c00077 { /* 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_c00077 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00077 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00077 {overflow:visible;}
  }
}
.c_c00077 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00077 { /* 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_c00077:after { /* webkit #35443 */
  content: '';
}
.t_c00077:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00077 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 */
}
.__c00077 { /* 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_c00077 { /* info for Javascript */
  display:none;
}
.l_c00077 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00077 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00077 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00077: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_c00077 {
    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_c00077.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00077.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_c00077 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00077{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.000000;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;}
.m26_c00077{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00077{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00077{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m89_c00077{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m49_c00077{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00077{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00077{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m40_c00077{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m30_c00077{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00077{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m82_c00077{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00077{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00077{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00077{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00077{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mab_c00077{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m83_c00077{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m95_c00077{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m64_c00077{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m96_c00077{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m17_c00077{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00077{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00077{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00077{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m52_c00077{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00077{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m57_c00077{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m74_c00077{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m66_c00077{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00077{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.maa_c00077{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11_c00077{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m55_c00077{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m87_c00077{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00077{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m73_c00077{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00077{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m86_c00077{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m45_c00077{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m50_c00077{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9_c00077{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00077{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m76_c00077{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00077{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00077{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m60_c00077{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00077{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m44_c00077{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m32_c00077{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m69_c00077{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00077{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m80_c00077{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m91_c00077{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m85_c00077{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00077{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00077{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m29_c00077{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00077{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m22_c00077{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00077{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m27_c00077{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00077{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00077{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00077{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m63_c00077{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m78_c00077{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma_c00077{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m54_c00077{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m47_c00077{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00077{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00077{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m72_c00077{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00077{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m25_c00077{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m19_c00077{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00077{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00077{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00077{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m31_c00077{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m84_c00077{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me_c00077{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c00077{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00077{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m61_c00077{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m35_c00077{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00077{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00077{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00077{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00077{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m34_c00077{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00077{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m77_c00077{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00077{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8_c00077{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m14_c00077{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m93_c00077{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00077{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00077{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m99_c00077{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00077{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m65_c00077{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m37_c00077{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m28_c00077{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m81_c00077{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m51_c00077{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m46_c00077{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00077{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00077{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m18_c00077{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00077{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00077{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00077{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00077{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00077{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00077{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00077{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00077{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00077{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md_c00077{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6_c00077{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00077{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m75_c00077{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00077{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m59_c00077{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00077{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00077{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00077{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00077{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00077{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16_c00077{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00077{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m48_c00077{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00077{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00077{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m70_c00077{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m90_c00077{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00077{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m36_c00077{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00077{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00077{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00077{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m53_c00077{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00077{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m10_c00077{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m41_c00077{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m33_c00077{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m58_c00077{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m79_c00077{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m67_c00077{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00077{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00077{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m39_c00077{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00077{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m92_c00077{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00077{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m2_c00077{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00077{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m71_c00077{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00077{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m97_c00077{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m94_c00077{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{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__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00077{word-spacing:-5.138889px;}
.ws7_c00077{word-spacing:-4.861111px;}
.ws9_c00077{word-spacing:0.000000px;}
.ws3_c00077{word-spacing:3.333333px;}
.ws0_c00077{word-spacing:9.722222px;}
.ws4_c00077{word-spacing:11.388889px;}
.ws1_c00077{word-spacing:12.857143px;}
.ws8_c00077{word-spacing:13.333333px;}
.ws2_c00077{word-spacing:15.000000px;}
.ws6_c00077{word-spacing:17.187500px;}
.fc0_c00077{color:transparent;}
.fs0_c00077{font-size:54.000000px;}
.fs1_c00077{font-size:60.000000px;}
.y0_c00077{bottom:0.000000px;}
.y2d_c00077{bottom:158.100000px;}
.y2c_c00077{bottom:177.000000px;}
.y2b_c00077{bottom:197.550000px;}
.y2a_c00077{bottom:217.350000px;}
.y29_c00077{bottom:237.150000px;}
.y28_c00077{bottom:256.950000px;}
.y27_c00077{bottom:276.750000px;}
.y26_c00077{bottom:296.850000px;}
.y25_c00077{bottom:316.650000px;}
.y24_c00077{bottom:336.450000px;}
.y23_c00077{bottom:356.250000px;}
.y22_c00077{bottom:376.800000px;}
.y21_c00077{bottom:396.300000px;}
.y20_c00077{bottom:416.250000px;}
.y1f_c00077{bottom:436.350000px;}
.y1e_c00077{bottom:456.150000px;}
.y1d_c00077{bottom:475.950000px;}
.y1c_c00077{bottom:496.200000px;}
.y1b_c00077{bottom:516.300000px;}
.y1a_c00077{bottom:536.400000px;}
.y19_c00077{bottom:556.200000px;}
.y18_c00077{bottom:576.300000px;}
.y17_c00077{bottom:595.500000px;}
.y16_c00077{bottom:616.350000px;}
.y15_c00077{bottom:636.150000px;}
.y14_c00077{bottom:655.950000px;}
.y13_c00077{bottom:675.750000px;}
.y12_c00077{bottom:695.850000px;}
.y11_c00077{bottom:715.350000px;}
.y10_c00077{bottom:735.450000px;}
.yf_c00077{bottom:755.250000px;}
.ye_c00077{bottom:775.050000px;}
.yd_c00077{bottom:794.850000px;}
.yc_c00077{bottom:815.400000px;}
.yb_c00077{bottom:835.200000px;}
.ya_c00077{bottom:855.300000px;}
.y9_c00077{bottom:874.800000px;}
.y8_c00077{bottom:894.600000px;}
.y7_c00077{bottom:914.700000px;}
.y6_c00077{bottom:934.500000px;}
.y5_c00077{bottom:954.300000px;}
.y4_c00077{bottom:973.800000px;}
.y3_c00077{bottom:993.900000px;}
.y2_c00077{bottom:1013.700000px;}
.y1_c00077{bottom:1052.700000px;}
.h2_c00077{height:54.000000px;}
.h3_c00077{height:60.000000px;}
.h1_c00077{height:1167.000000px;}
.h0_c00077{height:1167.119934px;}
.w0_c00077{width:913.320007px;}
.w1_c00077{width:913.500000px;}
.x0_c00077{left:0.000000px;}
.x4_c00077{left:105.450000px;}
.x2a_c00077{left:106.650000px;}
.x88_c00077{left:107.700000px;}
.xc2_c00077{left:108.750000px;}
.xde_c00077{left:122.400000px;}
.x106_c00077{left:126.750000px;}
.x12d_c00077{left:127.950000px;}
.x10c_c00077{left:129.300000px;}
.x91_c00077{left:130.500000px;}
.xf4_c00077{left:131.550000px;}
.x5_c00077{left:134.250000px;}
.x10_c00077{left:135.300000px;}
.x9a_c00077{left:138.150000px;}
.x36_c00077{left:139.200000px;}
.xba_c00077{left:141.150000px;}
.xf_c00077{left:147.150000px;}
.xb0_c00077{left:148.200000px;}
.x37_c00077{left:150.750000px;}
.xfe_c00077{left:152.550000px;}
.xd5_c00077{left:154.800000px;}
.xec_c00077{left:156.600000px;}
.x60_c00077{left:158.550000px;}
.x1f_c00077{left:160.650000px;}
.xa7_c00077{left:161.700000px;}
.x53_c00077{left:163.200000px;}
.xe2_c00077{left:165.150000px;}
.x11_c00077{left:166.950000px;}
.xa1_c00077{left:168.300000px;}
.x2b_c00077{left:169.650000px;}
.xbb_c00077{left:173.250000px;}
.x89_c00077{left:174.300000px;}
.x124_c00077{left:175.800000px;}
.x128_c00077{left:177.300000px;}
.xd6_c00077{left:178.500000px;}
.x54_c00077{left:181.200000px;}
.x7e_c00077{left:183.300000px;}
.xdf_c00077{left:185.700000px;}
.x46_c00077{left:186.750000px;}
.xc3_c00077{left:190.800000px;}
.xe3_c00077{left:195.750000px;}
.x6_c00077{left:197.550000px;}
.x38_c00077{left:200.100000px;}
.x2c_c00077{left:201.300000px;}
.x92_c00077{left:204.750000px;}
.xcb_c00077{left:207.450000px;}
.x20_c00077{left:208.500000px;}
.x47_c00077{left:210.150000px;}
.x118_c00077{left:212.400000px;}
.x10d_c00077{left:214.650000px;}
.xf5_c00077{left:216.900000px;}
.x39_c00077{left:219.900000px;}
.x7f_c00077{left:221.100000px;}
.x12_c00077{left:223.050000px;}
.x61_c00077{left:226.650000px;}
.x2d_c00077{left:228.600000px;}
.xc4_c00077{left:230.700000px;}
.xb1_c00077{left:232.050000px;}
.x76_c00077{left:233.700000px;}
.xda_c00077{left:235.800000px;}
.x129_c00077{left:237.900000px;}
.x8a_c00077{left:239.400000px;}
.xcc_c00077{left:244.200000px;}
.x6c_c00077{left:246.450000px;}
.x119_c00077{left:248.400000px;}
.xc5_c00077{left:250.500000px;}
.x55_c00077{left:252.150000px;}
.xb2_c00077{left:255.150000px;}
.x107_c00077{left:256.650000px;}
.x77_c00077{left:258.150000px;}
.x48_c00077{left:259.800000px;}
.x11a_c00077{left:262.500000px;}
.xcd_c00077{left:264.000000px;}
.x3a_c00077{left:265.200000px;}
.xa2_c00077{left:266.550000px;}
.xa8_c00077{left:268.650000px;}
.xd2_c00077{left:271.650000px;}
.x21_c00077{left:273.000000px;}
.x10e_c00077{left:274.350000px;}
.x3b_c00077{left:276.300000px;}
.x93_c00077{left:278.550000px;}
.xc6_c00077{left:281.100000px;}
.xff_c00077{left:282.150000px;}
.xce_c00077{left:284.550000px;}
.xa3_c00077{left:286.350000px;}
.x9b_c00077{left:287.550000px;}
.x11b_c00077{left:290.550000px;}
.x2e_c00077{left:291.900000px;}
.x80_c00077{left:293.100000px;}
.xf6_c00077{left:294.300000px;}
.x49_c00077{left:297.900000px;}
.x7_c00077{left:300.150000px;}
.x2f_c00077{left:304.500000px;}
.x3c_c00077{left:306.150000px;}
.x81_c00077{left:311.850000px;}
.xbc_c00077{left:314.250000px;}
.xed_c00077{left:315.450000px;}
.x6d_c00077{left:317.400000px;}
.xa9_c00077{left:319.050000px;}
.x111_c00077{left:322.050000px;}
.x13_c00077{left:323.850000px;}
.x4a_c00077{left:327.450000px;}
.xb3_c00077{left:330.750000px;}
.x56_c00077{left:332.100000px;}
.x9c_c00077{left:335.400000px;}
.x94_c00077{left:339.000000px;}
.xaa_c00077{left:340.350000px;}
.x100_c00077{left:341.850000px;}
.x14_c00077{left:343.350000px;}
.x3d_c00077{left:345.000000px;}
.x78_c00077{left:346.650000px;}
.xbd_c00077{left:349.200000px;}
.xca_c00077{left:351.150000px;}
.x57_c00077{left:353.400000px;}
.x8_c00077{left:356.700000px;}
.x30_c00077{left:358.500000px;}
.x82_c00077{left:361.200000px;}
.x6e_c00077{left:363.900000px;}
.x3e_c00077{left:365.550000px;}
.xfb_c00077{left:367.350000px;}
.x11f_c00077{left:368.400000px;}
.x11c_c00077{left:369.450000px;}
.x1_c00077{left:370.500000px;}
.x108_c00077{left:372.000000px;}
.x22_c00077{left:373.800000px;}
.x8b_c00077{left:374.850000px;}
.x62_c00077{left:376.800000px;}
.x15_c00077{left:379.350000px;}
.x58_c00077{left:381.900000px;}
.xee_c00077{left:384.150000px;}
.x6f_c00077{left:387.000000px;}
.xe4_c00077{left:389.100000px;}
.xfa_c00077{left:390.300000px;}
.x83_c00077{left:392.550000px;}
.xf7_c00077{left:393.600000px;}
.xcf_c00077{left:395.100000px;}
.x9d_c00077{left:396.600000px;}
.x4b_c00077{left:398.700000px;}
.x16_c00077{left:399.900000px;}
.xc7_c00077{left:400.950000px;}
.x114_c00077{left:403.050000px;}
.xa4_c00077{left:406.950000px;}
.x8c_c00077{left:408.750000px;}
.x63_c00077{left:411.300000px;}
.xd7_c00077{left:413.700000px;}
.x109_c00077{left:415.200000px;}
.x70_c00077{left:416.850000px;}
.x101_c00077{left:418.200000px;}
.xe0_c00077{left:421.200000px;}
.xef_c00077{left:423.000000px;}
.x4c_c00077{left:424.200000px;}
.x17_c00077{left:426.900000px;}
.x95_c00077{left:428.250000px;}
.x64_c00077{left:433.200000px;}
.x2_c00077{left:436.800000px;}
.x59_c00077{left:438.750000px;}
.x8d_c00077{left:442.200000px;}
.x115_c00077{left:445.200000px;}
.x12e_c00077{left:446.850000px;}
.x3f_c00077{left:449.850000px;}
.xab_c00077{left:453.000000px;}
.x71_c00077{left:454.650000px;}
.xe5_c00077{left:456.450000px;}
.x5a_c00077{left:458.250000px;}
.xe1_c00077{left:460.500000px;}
.x96_c00077{left:462.750000px;}
.x9e_c00077{left:464.700000px;}
.x4d_c00077{left:467.400000px;}
.xb4_c00077{left:470.700000px;}
.x23_c00077{left:472.800000px;}
.x65_c00077{left:474.900000px;}
.xc8_c00077{left:478.350000px;}
.x40_c00077{left:481.500000px;}
.x79_c00077{left:483.450000px;}
.xf0_c00077{left:485.700000px;}
.x10a_c00077{left:488.550000px;}
.xbe_c00077{left:490.350000px;}
.x24_c00077{left:492.900000px;}
.xac_c00077{left:494.100000px;}
.x18_c00077{left:497.100000px;}
.xc9_c00077{left:501.000000px;}
.x125_c00077{left:502.050000px;}
.xe6_c00077{left:505.800000px;}
.xd3_c00077{left:507.450000px;}
.x9_c00077{left:509.700000px;}
.x66_c00077{left:511.950000px;}
.x4e_c00077{left:516.000000px;}
.xf1_c00077{left:519.150000px;}
.x25_c00077{left:521.700000px;}
.x122_c00077{left:523.200000px;}
.x7a_c00077{left:525.900000px;}
.x5b_c00077{left:529.500000px;}
.xb5_c00077{left:530.700000px;}
.x72_c00077{left:532.800000px;}
.x12a_c00077{left:534.150000px;}
.xa_c00077{left:535.200000px;}
.xe7_c00077{left:536.700000px;}
.x102_c00077{left:538.200000px;}
.xad_c00077{left:540.600000px;}
.x97_c00077{left:541.950000px;}
.xd8_c00077{left:543.300000px;}
.xf2_c00077{left:547.200000px;}
.x31_c00077{left:549.900000px;}
.x84_c00077{left:552.000000px;}
.x12b_c00077{left:553.650000px;}
.x103_c00077{left:555.450000px;}
.x41_c00077{left:558.150000px;}
.x19_c00077{left:559.350000px;}
.x4f_c00077{left:562.800000px;}
.x7b_c00077{left:565.500000px;}
.xa5_c00077{left:566.550000px;}
.x5c_c00077{left:568.050000px;}
.xd9_c00077{left:570.600000px;}
.x98_c00077{left:573.300000px;}
.x26_c00077{left:575.700000px;}
.x120_c00077{left:577.650000px;}
.xd0_c00077{left:578.700000px;}
.x67_c00077{left:580.350000px;}
.x116_c00077{left:582.000000px;}
.xe8_c00077{left:585.000000px;}
.xdb_c00077{left:586.500000px;}
.x73_c00077{left:589.650000px;}
.x10b_c00077{left:592.650000px;}
.xb6_c00077{left:593.700000px;}
.x8e_c00077{left:595.200000px;}
.x7c_c00077{left:597.150000px;}
.x1a_c00077{left:598.200000px;}
.x10f_c00077{left:600.150000px;}
.x42_c00077{left:601.350000px;}
.xb_c00077{left:603.600000px;}
.x126_c00077{left:605.400000px;}
.xae_c00077{left:606.450000px;}
.x50_c00077{left:607.800000px;}
.x85_c00077{left:611.850000px;}
.x9f_c00077{left:616.050000px;}
.xb7_c00077{left:617.400000px;}
.xfc_c00077{left:619.650000px;}
.x1b_c00077{left:620.850000px;}
.x5d_c00077{left:623.550000px;}
.x27_c00077{left:625.350000px;}
.x104_c00077{left:629.700000px;}
.x43_c00077{left:633.450000px;}
.x68_c00077{left:635.400000px;}
.xfd_c00077{left:637.350000px;}
.x11d_c00077{left:638.550000px;}
.xa0_c00077{left:641.550000px;}
.xc_c00077{left:644.250000px;}
.x28_c00077{left:645.900000px;}
.x121_c00077{left:647.100000px;}
.x99_c00077{left:649.200000px;}
.x32_c00077{left:651.000000px;}
.xe9_c00077{left:652.350000px;}
.x69_c00077{left:654.450000px;}
.x1c_c00077{left:657.900000px;}
.x123_c00077{left:661.200000px;}
.x74_c00077{left:663.150000px;}
.xf3_c00077{left:665.700000px;}
.x112_c00077{left:667.650000px;}
.x44_c00077{left:670.950000px;}
.x5e_c00077{left:672.900000px;}
.xbf_c00077{left:673.950000px;}
.xd_c00077{left:675.900000px;}
.xdc_c00077{left:676.950000px;}
.x51_c00077{left:678.750000px;}
.x7d_c00077{left:682.500000px;}
.x86_c00077{left:683.850000px;}
.x8f_c00077{left:686.250000px;}
.xa6_c00077{left:687.450000px;}
.xea_c00077{left:690.750000px;}
.x113_c00077{left:693.150000px;}
.x12f_c00077{left:695.100000px;}
.xf8_c00077{left:696.150000px;}
.xb8_c00077{left:699.450000px;}
.x33_c00077{left:701.100000px;}
.x1d_c00077{left:704.700000px;}
.x11e_c00077{left:707.250000px;}
.x52_c00077{left:708.600000px;}
.x87_c00077{left:710.100000px;}
.x6a_c00077{left:712.050000px;}
.x34_c00077{left:715.200000px;}
.x90_c00077{left:718.350000px;}
.x29_c00077{left:720.450000px;}
.xb9_c00077{left:722.850000px;}
.x75_c00077{left:725.400000px;}
.xeb_c00077{left:726.750000px;}
.x5f_c00077{left:728.700000px;}
.xc0_c00077{left:729.750000px;}
.xaf_c00077{left:732.150000px;}
.x110_c00077{left:733.800000px;}
.x12c_c00077{left:734.850000px;}
.x105_c00077{left:736.200000px;}
.xe_c00077{left:738.150000px;}
.xdd_c00077{left:739.500000px;}
.xd4_c00077{left:740.850000px;}
.x1e_c00077{left:742.500000px;}
.x6b_c00077{left:744.750000px;}
.xc1_c00077{left:752.850000px;}
.x3_c00077{left:754.650000px;}
.x117_c00077{left:756.600000px;}
.x127_c00077{left:757.650000px;}
.x45_c00077{left:758.850000px;}
.x35_c00077{left:760.200000px;}
.xd1_c00077{left:761.400000px;}
.xf9_c00077{left:766.800000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws5_c00077{word-spacing:-4.567901pt;}
.ws7_c00077{word-spacing:-4.320988pt;}
.ws9_c00077{word-spacing:0.000000pt;}
.ws3_c00077{word-spacing:2.962963pt;}
.ws0_c00077{word-spacing:8.641975pt;}
.ws4_c00077{word-spacing:10.123457pt;}
.ws1_c00077{word-spacing:11.428571pt;}
.ws8_c00077{word-spacing:11.851852pt;}
.ws2_c00077{word-spacing:13.333333pt;}
.ws6_c00077{word-spacing:15.277778pt;}
.fs0_c00077{font-size:48.000000pt;}
.fs1_c00077{font-size:53.333333pt;}
.y0_c00077{bottom:0.000000pt;}
.y2d_c00077{bottom:140.533333pt;}
.y2c_c00077{bottom:157.333333pt;}
.y2b_c00077{bottom:175.600000pt;}
.y2a_c00077{bottom:193.200000pt;}
.y29_c00077{bottom:210.800000pt;}
.y28_c00077{bottom:228.400000pt;}
.y27_c00077{bottom:246.000000pt;}
.y26_c00077{bottom:263.866667pt;}
.y25_c00077{bottom:281.466667pt;}
.y24_c00077{bottom:299.066667pt;}
.y23_c00077{bottom:316.666667pt;}
.y22_c00077{bottom:334.933333pt;}
.y21_c00077{bottom:352.266667pt;}
.y20_c00077{bottom:370.000000pt;}
.y1f_c00077{bottom:387.866667pt;}
.y1e_c00077{bottom:405.466667pt;}
.y1d_c00077{bottom:423.066667pt;}
.y1c_c00077{bottom:441.066667pt;}
.y1b_c00077{bottom:458.933333pt;}
.y1a_c00077{bottom:476.800000pt;}
.y19_c00077{bottom:494.400000pt;}
.y18_c00077{bottom:512.266667pt;}
.y17_c00077{bottom:529.333333pt;}
.y16_c00077{bottom:547.866667pt;}
.y15_c00077{bottom:565.466667pt;}
.y14_c00077{bottom:583.066667pt;}
.y13_c00077{bottom:600.666667pt;}
.y12_c00077{bottom:618.533333pt;}
.y11_c00077{bottom:635.866667pt;}
.y10_c00077{bottom:653.733333pt;}
.yf_c00077{bottom:671.333333pt;}
.ye_c00077{bottom:688.933333pt;}
.yd_c00077{bottom:706.533333pt;}
.yc_c00077{bottom:724.800000pt;}
.yb_c00077{bottom:742.400000pt;}
.ya_c00077{bottom:760.266667pt;}
.y9_c00077{bottom:777.600000pt;}
.y8_c00077{bottom:795.200000pt;}
.y7_c00077{bottom:813.066667pt;}
.y6_c00077{bottom:830.666667pt;}
.y5_c00077{bottom:848.266667pt;}
.y4_c00077{bottom:865.600000pt;}
.y3_c00077{bottom:883.466667pt;}
.y2_c00077{bottom:901.066667pt;}
.y1_c00077{bottom:935.733333pt;}
.h2_c00077{height:48.000000pt;}
.h3_c00077{height:53.333333pt;}
.h1_c00077{height:1037.333333pt;}
.h0_c00077{height:1037.439941pt;}
.w0_c00077{width:811.840007pt;}
.w1_c00077{width:812.000000pt;}
.x0_c00077{left:0.000000pt;}
.x4_c00077{left:93.733333pt;}
.x2a_c00077{left:94.800000pt;}
.x88_c00077{left:95.733333pt;}
.xc2_c00077{left:96.666667pt;}
.xde_c00077{left:108.800000pt;}
.x106_c00077{left:112.666667pt;}
.x12d_c00077{left:113.733333pt;}
.x10c_c00077{left:114.933333pt;}
.x91_c00077{left:116.000000pt;}
.xf4_c00077{left:116.933333pt;}
.x5_c00077{left:119.333333pt;}
.x10_c00077{left:120.266667pt;}
.x9a_c00077{left:122.800000pt;}
.x36_c00077{left:123.733333pt;}
.xba_c00077{left:125.466667pt;}
.xf_c00077{left:130.800000pt;}
.xb0_c00077{left:131.733333pt;}
.x37_c00077{left:134.000000pt;}
.xfe_c00077{left:135.600000pt;}
.xd5_c00077{left:137.600000pt;}
.xec_c00077{left:139.200000pt;}
.x60_c00077{left:140.933333pt;}
.x1f_c00077{left:142.800000pt;}
.xa7_c00077{left:143.733333pt;}
.x53_c00077{left:145.066667pt;}
.xe2_c00077{left:146.800000pt;}
.x11_c00077{left:148.400000pt;}
.xa1_c00077{left:149.600000pt;}
.x2b_c00077{left:150.800000pt;}
.xbb_c00077{left:154.000000pt;}
.x89_c00077{left:154.933333pt;}
.x124_c00077{left:156.266667pt;}
.x128_c00077{left:157.600000pt;}
.xd6_c00077{left:158.666667pt;}
.x54_c00077{left:161.066667pt;}
.x7e_c00077{left:162.933333pt;}
.xdf_c00077{left:165.066667pt;}
.x46_c00077{left:166.000000pt;}
.xc3_c00077{left:169.600000pt;}
.xe3_c00077{left:174.000000pt;}
.x6_c00077{left:175.600000pt;}
.x38_c00077{left:177.866667pt;}
.x2c_c00077{left:178.933333pt;}
.x92_c00077{left:182.000000pt;}
.xcb_c00077{left:184.400000pt;}
.x20_c00077{left:185.333333pt;}
.x47_c00077{left:186.800000pt;}
.x118_c00077{left:188.800000pt;}
.x10d_c00077{left:190.800000pt;}
.xf5_c00077{left:192.800000pt;}
.x39_c00077{left:195.466667pt;}
.x7f_c00077{left:196.533333pt;}
.x12_c00077{left:198.266667pt;}
.x61_c00077{left:201.466667pt;}
.x2d_c00077{left:203.200000pt;}
.xc4_c00077{left:205.066667pt;}
.xb1_c00077{left:206.266667pt;}
.x76_c00077{left:207.733333pt;}
.xda_c00077{left:209.600000pt;}
.x129_c00077{left:211.466667pt;}
.x8a_c00077{left:212.800000pt;}
.xcc_c00077{left:217.066667pt;}
.x6c_c00077{left:219.066667pt;}
.x119_c00077{left:220.800000pt;}
.xc5_c00077{left:222.666667pt;}
.x55_c00077{left:224.133333pt;}
.xb2_c00077{left:226.800000pt;}
.x107_c00077{left:228.133333pt;}
.x77_c00077{left:229.466667pt;}
.x48_c00077{left:230.933333pt;}
.x11a_c00077{left:233.333333pt;}
.xcd_c00077{left:234.666667pt;}
.x3a_c00077{left:235.733333pt;}
.xa2_c00077{left:236.933333pt;}
.xa8_c00077{left:238.800000pt;}
.xd2_c00077{left:241.466667pt;}
.x21_c00077{left:242.666667pt;}
.x10e_c00077{left:243.866667pt;}
.x3b_c00077{left:245.600000pt;}
.x93_c00077{left:247.600000pt;}
.xc6_c00077{left:249.866667pt;}
.xff_c00077{left:250.800000pt;}
.xce_c00077{left:252.933333pt;}
.xa3_c00077{left:254.533333pt;}
.x9b_c00077{left:255.600000pt;}
.x11b_c00077{left:258.266667pt;}
.x2e_c00077{left:259.466667pt;}
.x80_c00077{left:260.533333pt;}
.xf6_c00077{left:261.600000pt;}
.x49_c00077{left:264.800000pt;}
.x7_c00077{left:266.800000pt;}
.x2f_c00077{left:270.666667pt;}
.x3c_c00077{left:272.133333pt;}
.x81_c00077{left:277.200000pt;}
.xbc_c00077{left:279.333333pt;}
.xed_c00077{left:280.400000pt;}
.x6d_c00077{left:282.133333pt;}
.xa9_c00077{left:283.600000pt;}
.x111_c00077{left:286.266667pt;}
.x13_c00077{left:287.866667pt;}
.x4a_c00077{left:291.066667pt;}
.xb3_c00077{left:294.000000pt;}
.x56_c00077{left:295.200000pt;}
.x9c_c00077{left:298.133333pt;}
.x94_c00077{left:301.333333pt;}
.xaa_c00077{left:302.533333pt;}
.x100_c00077{left:303.866667pt;}
.x14_c00077{left:305.200000pt;}
.x3d_c00077{left:306.666667pt;}
.x78_c00077{left:308.133333pt;}
.xbd_c00077{left:310.400000pt;}
.xca_c00077{left:312.133333pt;}
.x57_c00077{left:314.133333pt;}
.x8_c00077{left:317.066667pt;}
.x30_c00077{left:318.666667pt;}
.x82_c00077{left:321.066667pt;}
.x6e_c00077{left:323.466667pt;}
.x3e_c00077{left:324.933333pt;}
.xfb_c00077{left:326.533333pt;}
.x11f_c00077{left:327.466667pt;}
.x11c_c00077{left:328.400000pt;}
.x1_c00077{left:329.333333pt;}
.x108_c00077{left:330.666667pt;}
.x22_c00077{left:332.266667pt;}
.x8b_c00077{left:333.200000pt;}
.x62_c00077{left:334.933333pt;}
.x15_c00077{left:337.200000pt;}
.x58_c00077{left:339.466667pt;}
.xee_c00077{left:341.466667pt;}
.x6f_c00077{left:344.000000pt;}
.xe4_c00077{left:345.866667pt;}
.xfa_c00077{left:346.933333pt;}
.x83_c00077{left:348.933333pt;}
.xf7_c00077{left:349.866667pt;}
.xcf_c00077{left:351.200000pt;}
.x9d_c00077{left:352.533333pt;}
.x4b_c00077{left:354.400000pt;}
.x16_c00077{left:355.466667pt;}
.xc7_c00077{left:356.400000pt;}
.x114_c00077{left:358.266667pt;}
.xa4_c00077{left:361.733333pt;}
.x8c_c00077{left:363.333333pt;}
.x63_c00077{left:365.600000pt;}
.xd7_c00077{left:367.733333pt;}
.x109_c00077{left:369.066667pt;}
.x70_c00077{left:370.533333pt;}
.x101_c00077{left:371.733333pt;}
.xe0_c00077{left:374.400000pt;}
.xef_c00077{left:376.000000pt;}
.x4c_c00077{left:377.066667pt;}
.x17_c00077{left:379.466667pt;}
.x95_c00077{left:380.666667pt;}
.x64_c00077{left:385.066667pt;}
.x2_c00077{left:388.266667pt;}
.x59_c00077{left:390.000000pt;}
.x8d_c00077{left:393.066667pt;}
.x115_c00077{left:395.733333pt;}
.x12e_c00077{left:397.200000pt;}
.x3f_c00077{left:399.866667pt;}
.xab_c00077{left:402.666667pt;}
.x71_c00077{left:404.133333pt;}
.xe5_c00077{left:405.733333pt;}
.x5a_c00077{left:407.333333pt;}
.xe1_c00077{left:409.333333pt;}
.x96_c00077{left:411.333333pt;}
.x9e_c00077{left:413.066667pt;}
.x4d_c00077{left:415.466667pt;}
.xb4_c00077{left:418.400000pt;}
.x23_c00077{left:420.266667pt;}
.x65_c00077{left:422.133333pt;}
.xc8_c00077{left:425.200000pt;}
.x40_c00077{left:428.000000pt;}
.x79_c00077{left:429.733333pt;}
.xf0_c00077{left:431.733333pt;}
.x10a_c00077{left:434.266667pt;}
.xbe_c00077{left:435.866667pt;}
.x24_c00077{left:438.133333pt;}
.xac_c00077{left:439.200000pt;}
.x18_c00077{left:441.866667pt;}
.xc9_c00077{left:445.333333pt;}
.x125_c00077{left:446.266667pt;}
.xe6_c00077{left:449.600000pt;}
.xd3_c00077{left:451.066667pt;}
.x9_c00077{left:453.066667pt;}
.x66_c00077{left:455.066667pt;}
.x4e_c00077{left:458.666667pt;}
.xf1_c00077{left:461.466667pt;}
.x25_c00077{left:463.733333pt;}
.x122_c00077{left:465.066667pt;}
.x7a_c00077{left:467.466667pt;}
.x5b_c00077{left:470.666667pt;}
.xb5_c00077{left:471.733333pt;}
.x72_c00077{left:473.600000pt;}
.x12a_c00077{left:474.800000pt;}
.xa_c00077{left:475.733333pt;}
.xe7_c00077{left:477.066667pt;}
.x102_c00077{left:478.400000pt;}
.xad_c00077{left:480.533333pt;}
.x97_c00077{left:481.733333pt;}
.xd8_c00077{left:482.933333pt;}
.xf2_c00077{left:486.400000pt;}
.x31_c00077{left:488.800000pt;}
.x84_c00077{left:490.666667pt;}
.x12b_c00077{left:492.133333pt;}
.x103_c00077{left:493.733333pt;}
.x41_c00077{left:496.133333pt;}
.x19_c00077{left:497.200000pt;}
.x4f_c00077{left:500.266667pt;}
.x7b_c00077{left:502.666667pt;}
.xa5_c00077{left:503.600000pt;}
.x5c_c00077{left:504.933333pt;}
.xd9_c00077{left:507.200000pt;}
.x98_c00077{left:509.600000pt;}
.x26_c00077{left:511.733333pt;}
.x120_c00077{left:513.466667pt;}
.xd0_c00077{left:514.400000pt;}
.x67_c00077{left:515.866667pt;}
.x116_c00077{left:517.333333pt;}
.xe8_c00077{left:520.000000pt;}
.xdb_c00077{left:521.333333pt;}
.x73_c00077{left:524.133333pt;}
.x10b_c00077{left:526.800000pt;}
.xb6_c00077{left:527.733333pt;}
.x8e_c00077{left:529.066667pt;}
.x7c_c00077{left:530.800000pt;}
.x1a_c00077{left:531.733333pt;}
.x10f_c00077{left:533.466667pt;}
.x42_c00077{left:534.533333pt;}
.xb_c00077{left:536.533333pt;}
.x126_c00077{left:538.133333pt;}
.xae_c00077{left:539.066667pt;}
.x50_c00077{left:540.266667pt;}
.x85_c00077{left:543.866667pt;}
.x9f_c00077{left:547.600000pt;}
.xb7_c00077{left:548.800000pt;}
.xfc_c00077{left:550.800000pt;}
.x1b_c00077{left:551.866667pt;}
.x5d_c00077{left:554.266667pt;}
.x27_c00077{left:555.866667pt;}
.x104_c00077{left:559.733333pt;}
.x43_c00077{left:563.066667pt;}
.x68_c00077{left:564.800000pt;}
.xfd_c00077{left:566.533333pt;}
.x11d_c00077{left:567.600000pt;}
.xa0_c00077{left:570.266667pt;}
.xc_c00077{left:572.666667pt;}
.x28_c00077{left:574.133333pt;}
.x121_c00077{left:575.200000pt;}
.x99_c00077{left:577.066667pt;}
.x32_c00077{left:578.666667pt;}
.xe9_c00077{left:579.866667pt;}
.x69_c00077{left:581.733333pt;}
.x1c_c00077{left:584.800000pt;}
.x123_c00077{left:587.733333pt;}
.x74_c00077{left:589.466667pt;}
.xf3_c00077{left:591.733333pt;}
.x112_c00077{left:593.466667pt;}
.x44_c00077{left:596.400000pt;}
.x5e_c00077{left:598.133333pt;}
.xbf_c00077{left:599.066667pt;}
.xd_c00077{left:600.800000pt;}
.xdc_c00077{left:601.733333pt;}
.x51_c00077{left:603.333333pt;}
.x7d_c00077{left:606.666667pt;}
.x86_c00077{left:607.866667pt;}
.x8f_c00077{left:610.000000pt;}
.xa6_c00077{left:611.066667pt;}
.xea_c00077{left:614.000000pt;}
.x113_c00077{left:616.133333pt;}
.x12f_c00077{left:617.866667pt;}
.xf8_c00077{left:618.800000pt;}
.xb8_c00077{left:621.733333pt;}
.x33_c00077{left:623.200000pt;}
.x1d_c00077{left:626.400000pt;}
.x11e_c00077{left:628.666667pt;}
.x52_c00077{left:629.866667pt;}
.x87_c00077{left:631.200000pt;}
.x6a_c00077{left:632.933333pt;}
.x34_c00077{left:635.733333pt;}
.x90_c00077{left:638.533333pt;}
.x29_c00077{left:640.400000pt;}
.xb9_c00077{left:642.533333pt;}
.x75_c00077{left:644.800000pt;}
.xeb_c00077{left:646.000000pt;}
.x5f_c00077{left:647.733333pt;}
.xc0_c00077{left:648.666667pt;}
.xaf_c00077{left:650.800000pt;}
.x110_c00077{left:652.266667pt;}
.x12c_c00077{left:653.200000pt;}
.x105_c00077{left:654.400000pt;}
.xe_c00077{left:656.133333pt;}
.xdd_c00077{left:657.333333pt;}
.xd4_c00077{left:658.533333pt;}
.x1e_c00077{left:660.000000pt;}
.x6b_c00077{left:662.000000pt;}
.xc1_c00077{left:669.200000pt;}
.x3_c00077{left:670.800000pt;}
.x117_c00077{left:672.533333pt;}
.x127_c00077{left:673.466667pt;}
.x45_c00077{left:674.533333pt;}
.x35_c00077{left:675.733333pt;}
.xd1_c00077{left:676.800000pt;}
.xf9_c00077{left:681.600000pt;}
}





/* 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_c00078 {
    display:none;
  }
  .loading-indicator_c00078.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00078 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_c00078 { 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_c00078" -> "#page-container .classname_c00078")
 */
.pf_c00078 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00078 { /* 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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00078 { /* 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_c00078 { /* 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_c00078 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00078 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00078 {overflow:visible;}
  }
}
.c_c00078 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00078 { /* 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_c00078:after { /* webkit #35443 */
  content: '';
}
.t_c00078:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00078 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 */
}
.__c00078 { /* 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_c00078 { /* info for Javascript */
  display:none;
}
.l_c00078 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00078 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00078 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00078: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_c00078 {
    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_c00078.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00078.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_c00078 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00078{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00078;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.000000;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;}
.mb8_c00078{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m20_c00078{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00078{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00078{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m54_c00078{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00078{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m91_c00078{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m44_c00078{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00078{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00078{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m19_c00078{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m14_c00078{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m16_c00078{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00078{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00078{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maa_c00078{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00078{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00078{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m34_c00078{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00078{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m98_c00078{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m71_c00078{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00078{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m96_c00078{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m11_c00078{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00078{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00078{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m37_c00078{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00078{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00078{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00078{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00078{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00078{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00078{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m31_c00078{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00078{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m93_c00078{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00078{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00078{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m81_c00078{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m32_c00078{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00078{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00078{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00078{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m92_c00078{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00078{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00078{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00078{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00078{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00078{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00078{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00078{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00078{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m97_c00078{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mad_c00078{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00078{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00078{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mab_c00078{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00078{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00078{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00078{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m90_c00078{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00078{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00078{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m56_c00078{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m99_c00078{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00078{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m73_c00078{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mf_c00078{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m95_c00078{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m70_c00078{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00078{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00078{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00078{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m63_c00078{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00078{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma_c00078{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m57_c00078{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5_c00078{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00078{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00078{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00078{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00078{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mac_c00078{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc_c00078{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m88_c00078{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m40_c00078{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m28_c00078{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00078{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00078{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m18_c00078{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m75_c00078{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00078{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mba_c00078{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m83_c00078{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00078{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m80_c00078{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m52_c00078{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m15_c00078{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m94_c00078{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m89_c00078{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m61_c00078{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m69_c00078{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3_c00078{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m68_c00078{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00078{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m65_c00078{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m66_c00078{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00078{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m12_c00078{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7_c00078{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6_c00078{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25_c00078{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00078{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00078{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m87_c00078{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m42_c00078{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m62_c00078{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00078{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m27_c00078{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8_c00078{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m72_c00078{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);}
.m86_c00078{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m46_c00078{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13_c00078{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00078{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m59_c00078{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00078{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00078{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00078{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m64_c00078{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00078{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m43_c00078{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00078{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m36_c00078{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m82_c00078{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00078{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00078{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00078{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m78_c00078{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m21_c00078{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m35_c00078{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00078{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m58_c00078{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00078{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m4_c00078{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00078{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m2_c00078{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m45_c00078{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m38_c00078{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m49_c00078{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00078{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb_c00078{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m47_c00078{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m29_c00078{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m60_c00078{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m26_c00078{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m74_c00078{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m77_c00078{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00078{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m48_c00078{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00078{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00078{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m9_c00078{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m79_c00078{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m23_c00078{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00078{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00078{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m51_c00078{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m17_c00078{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00078{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00078{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00078{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00078{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00078{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m41_c00078{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00078{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m55_c00078{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00078{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m0_c00078{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00078{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m33_c00078{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m85_c00078{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m67_c00078{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00078{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m22_c00078{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m76_c00078{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00078{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00078{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m30_c00078{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00078{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00078{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00078{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00078{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00078{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00078{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.v0_c00078{vertical-align:0.000000px;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{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__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00078{word-spacing:-4.482577px;}
.wsc_c00078{word-spacing:0.000000px;}
.ws2_c00078{word-spacing:0.806678px;}
.ws0_c00078{word-spacing:4.650602px;}
.wsb_c00078{word-spacing:5.250000px;}
.ws5_c00078{word-spacing:5.750000px;}
.ws1_c00078{word-spacing:6.457831px;}
.ws8_c00078{word-spacing:7.500000px;}
.wsa_c00078{word-spacing:7.625000px;}
.ws9_c00078{word-spacing:10.337621px;}
.ws7_c00078{word-spacing:11.848769px;}
.ws3_c00078{word-spacing:12.337395px;}
.ws4_c00078{word-spacing:17.333333px;}
._0_c00078{width:46.500000px;}
.fc0_c00078{color:transparent;}
.fs0_c00078{font-size:54.000000px;}
.y0_c00078{bottom:0.000000px;}
.y30_c00078{bottom:149.700000px;}
.y2f_c00078{bottom:165.300000px;}
.y2e_c00078{bottom:180.750000px;}
.y2d_c00078{bottom:196.200000px;}
.y2c_c00078{bottom:211.650000px;}
.y2b_c00078{bottom:227.250000px;}
.y2a_c00078{bottom:242.700000px;}
.y29_c00078{bottom:258.450000px;}
.y28_c00078{bottom:274.350000px;}
.y27_c00078{bottom:289.800000px;}
.y26_c00078{bottom:305.250000px;}
.y25_c00078{bottom:320.700000px;}
.y24_c00078{bottom:336.600000px;}
.y23_c00078{bottom:352.500000px;}
.y22_c00078{bottom:367.950000px;}
.y21_c00078{bottom:400.050000px;}
.y20_c00078{bottom:419.550000px;}
.y1f_c00078{bottom:439.650000px;}
.y1e_c00078{bottom:459.450000px;}
.y1d_c00078{bottom:479.250000px;}
.y1c_c00078{bottom:499.800000px;}
.y1b_c00078{bottom:519.300000px;}
.y1a_c00078{bottom:539.400000px;}
.y19_c00078{bottom:559.200000px;}
.y18_c00078{bottom:579.000000px;}
.y17_c00078{bottom:599.100000px;}
.y16_c00078{bottom:618.900000px;}
.y15_c00078{bottom:639.000000px;}
.y14_c00078{bottom:658.800000px;}
.y13_c00078{bottom:678.900000px;}
.y12_c00078{bottom:698.700000px;}
.y11_c00078{bottom:718.500000px;}
.y10_c00078{bottom:738.600000px;}
.yf_c00078{bottom:758.400000px;}
.ye_c00078{bottom:778.500000px;}
.yd_c00078{bottom:798.300000px;}
.yc_c00078{bottom:818.400000px;}
.yb_c00078{bottom:838.500000px;}
.ya_c00078{bottom:858.300000px;}
.y9_c00078{bottom:878.100000px;}
.y8_c00078{bottom:898.200000px;}
.y7_c00078{bottom:918.000000px;}
.y6_c00078{bottom:937.800000px;}
.y5_c00078{bottom:957.600000px;}
.y4_c00078{bottom:977.550000px;}
.y3_c00078{bottom:997.650000px;}
.y2_c00078{bottom:1017.750000px;}
.y1_c00078{bottom:1055.850000px;}
.h2_c00078{height:54.000000px;}
.h1_c00078{height:1167.000000px;}
.h0_c00078{height:1167.119934px;}
.w0_c00078{width:913.320007px;}
.w1_c00078{width:913.500000px;}
.x0_c00078{left:0.000000px;}
.x4_c00078{left:142.200000px;}
.x1_c00078{left:143.250000px;}
.xc0_c00078{left:144.300000px;}
.x110_c00078{left:158.400000px;}
.x5_c00078{left:163.800000px;}
.x25_c00078{left:165.900000px;}
.xad_c00078{left:170.700000px;}
.xe1_c00078{left:172.800000px;}
.x2e_c00078{left:173.850000px;}
.x138_c00078{left:175.650000px;}
.x14_c00078{left:176.850000px;}
.x134_c00078{left:178.200000px;}
.x111_c00078{left:179.700000px;}
.x63_c00078{left:182.550000px;}
.x13b_c00078{left:184.200000px;}
.x108_c00078{left:185.400000px;}
.x4a_c00078{left:187.050000px;}
.xf4_c00078{left:189.750000px;}
.xe2_c00078{left:190.800000px;}
.x15_c00078{left:194.100000px;}
.x57_c00078{left:195.150000px;}
.x3c_c00078{left:196.350000px;}
.x78_c00078{left:197.550000px;}
.x83_c00078{left:199.200000px;}
.x128_c00078{left:201.300000px;}
.x8e_c00078{left:202.650000px;}
.x2f_c00078{left:204.150000px;}
.x26_c00078{left:207.300000px;}
.xb7_c00078{left:210.450000px;}
.x64_c00078{left:213.150000px;}
.xa0_c00078{left:214.500000px;}
.x3d_c00078{left:217.200000px;}
.x16_c00078{left:218.550000px;}
.x70_c00078{left:220.950000px;}
.x116_c00078{left:225.600000px;}
.xcd_c00078{left:227.850000px;}
.x6_c00078{left:229.650000px;}
.xb8_c00078{left:231.000000px;}
.x84_c00078{left:233.100000px;}
.xd9_c00078{left:234.300000px;}
.xc1_c00078{left:236.400000px;}
.xa5_c00078{left:239.250000px;}
.x122_c00078{left:240.450000px;}
.x12d_c00078{left:241.500000px;}
.xa1_c00078{left:242.550000px;}
.x8f_c00078{left:246.150000px;}
.x27_c00078{left:247.200000px;}
.xae_c00078{left:248.850000px;}
.xce_c00078{left:250.200000px;}
.x3e_c00078{left:253.500000px;}
.x129_c00078{left:254.550000px;}
.x130_c00078{left:255.900000px;}
.x4b_c00078{left:258.450000px;}
.xc7_c00078{left:261.600000px;}
.x7_c00078{left:263.850000px;}
.xaf_c00078{left:266.550000px;}
.xcf_c00078{left:267.900000px;}
.x65_c00078{left:269.700000px;}
.x12c_c00078{left:271.500000px;}
.x17_c00078{left:272.550000px;}
.x28_c00078{left:273.900000px;}
.xc2_c00078{left:274.950000px;}
.xfd_c00078{left:276.450000px;}
.x30_c00078{left:281.850000px;}
.xef_c00078{left:283.200000px;}
.xf9_c00078{left:284.250000px;}
.x3f_c00078{left:286.200000px;}
.x18_c00078{left:287.250000px;}
.xb9_c00078{left:288.300000px;}
.x109_c00078{left:289.800000px;}
.x126_c00078{left:290.850000px;}
.xe8_c00078{left:292.800000px;}
.xd0_c00078{left:294.150000px;}
.x123_c00078{left:296.250000px;}
.xda_c00078{left:300.600000px;}
.x58_c00078{left:302.100000px;}
.xc3_c00078{left:305.550000px;}
.x66_c00078{left:307.200000px;}
.xba_c00078{left:308.400000px;}
.x29_c00078{left:311.400000px;}
.x135_c00078{left:312.450000px;}
.xa6_c00078{left:314.100000px;}
.x99_c00078{left:315.450000px;}
.xb0_c00078{left:316.650000px;}
.x103_c00078{left:319.500000px;}
.xdb_c00078{left:322.950000px;}
.x8_c00078{left:325.800000px;}
.x19_c00078{left:327.600000px;}
.x10a_c00078{left:330.900000px;}
.xd1_c00078{left:331.950000px;}
.x90_c00078{left:335.400000px;}
.x79_c00078{left:337.350000px;}
.x59_c00078{left:342.450000px;}
.x4c_c00078{left:345.450000px;}
.x31_c00078{left:348.150000px;}
.x10b_c00078{left:349.950000px;}
.x40_c00078{left:351.750000px;}
.xa2_c00078{left:353.850000px;}
.x9_c00078{left:354.900000px;}
.x11a_c00078{left:357.000000px;}
.xdc_c00078{left:359.250000px;}
.x1a_c00078{left:360.750000px;}
.x32_c00078{left:362.550000px;}
.x7a_c00078{left:365.400000px;}
.xe3_c00078{left:371.250000px;}
.xc8_c00078{left:373.200000px;}
.xe9_c00078{left:375.000000px;}
.x9a_c00078{left:376.200000px;}
.x1b_c00078{left:378.450000px;}
.x5a_c00078{left:379.950000px;}
.x4d_c00078{left:382.200000px;}
.x41_c00078{left:384.450000px;}
.x71_c00078{left:387.900000px;}
.x2_c00078{left:389.850000px;}
.xa7_c00078{left:391.050000px;}
.xb1_c00078{left:394.500000px;}
.xdd_c00078{left:395.550000px;}
.x33_c00078{left:397.800000px;}
.x104_c00078{left:399.150000px;}
.x10c_c00078{left:400.950000px;}
.x85_c00078{left:403.050000px;}
.x2a_c00078{left:405.300000px;}
.xcc_c00078{left:407.850000px;}
.xa_c00078{left:409.950000px;}
.x42_c00078{left:412.200000px;}
.x67_c00078{left:413.400000px;}
.xc4_c00078{left:416.400000px;}
.x5b_c00078{left:417.750000px;}
.x4e_c00078{left:420.750000px;}
.x131_c00078{left:422.100000px;}
.xde_c00078{left:423.300000px;}
.xd2_c00078{left:425.250000px;}
.x136_c00078{left:426.900000px;}
.x1c_c00078{left:430.200000px;}
.x9b_c00078{left:433.050000px;}
.xbb_c00078{left:434.100000px;}
.xf7_c00078{left:438.150000px;}
.x2b_c00078{left:439.500000px;}
.x91_c00078{left:440.550000px;}
.x4f_c00078{left:442.650000px;}
.x124_c00078{left:443.850000px;}
.x1d_c00078{left:444.900000px;}
.x72_c00078{left:446.700000px;}
.xb_c00078{left:448.500000px;}
.x68_c00078{left:449.700000px;}
.x86_c00078{left:451.350000px;}
.x43_c00078{left:453.900000px;}
.xfe_c00078{left:457.500000px;}
.x92_c00078{left:460.350000px;}
.xfa_c00078{left:466.800000px;}
.xc_c00078{left:469.350000px;}
.x105_c00078{left:471.150000px;}
.x50_c00078{left:472.500000px;}
.x7b_c00078{left:474.150000px;}
.x1e_c00078{left:475.500000px;}
.x44_c00078{left:476.550000px;}
.xea_c00078{left:479.400000px;}
.x69_c00078{left:480.600000px;}
.xd3_c00078{left:483.600000px;}
.x10d_c00078{left:485.550000px;}
.x12e_c00078{left:486.600000px;}
.x3_c00078{left:488.850000px;}
.x73_c00078{left:492.000000px;}
.x2c_c00078{left:493.200000px;}
.xc9_c00078{left:495.150000px;}
.xeb_c00078{left:496.350000px;}
.xf0_c00078{left:499.800000px;}
.x5c_c00078{left:502.050000px;}
.xa3_c00078{left:505.350000px;}
.x87_c00078{left:506.850000px;}
.x11d_c00078{left:510.300000px;}
.xa8_c00078{left:511.350000px;}
.xc5_c00078{left:512.550000px;}
.x106_c00078{left:513.600000px;}
.xd4_c00078{left:514.950000px;}
.x51_c00078{left:516.750000px;}
.x1f_c00078{left:519.000000px;}
.x11f_c00078{left:520.200000px;}
.x34_c00078{left:522.150000px;}
.x2d_c00078{left:524.100000px;}
.xd_c00078{left:526.200000px;}
.xdf_c00078{left:529.800000px;}
.x45_c00078{left:532.650000px;}
.xf1_c00078{left:533.700000px;}
.x127_c00078{left:535.950000px;}
.x12a_c00078{left:537.150000px;}
.x93_c00078{left:538.500000px;}
.xb2_c00078{left:540.000000px;}
.xbc_c00078{left:543.300000px;}
.x5d_c00078{left:546.750000px;}
.xe4_c00078{left:547.800000px;}
.x88_c00078{left:549.750000px;}
.x20_c00078{left:552.150000px;}
.xe_c00078{left:556.500000px;}
.x35_c00078{left:558.150000px;}
.xec_c00078{left:561.900000px;}
.x46_c00078{left:564.000000px;}
.x7c_c00078{left:565.950000px;}
.x6a_c00078{left:569.100000px;}
.x5e_c00078{left:572.250000px;}
.x9c_c00078{left:573.750000px;}
.xe5_c00078{left:576.300000px;}
.x36_c00078{left:578.700000px;}
.xd5_c00078{left:579.750000px;}
.x125_c00078{left:583.200000px;}
.x74_c00078{left:584.400000px;}
.x94_c00078{left:586.050000px;}
.xf8_c00078{left:588.600000px;}
.xf_c00078{left:589.950000px;}
.x9d_c00078{left:593.550000px;}
.xf5_c00078{left:595.350000px;}
.x132_c00078{left:597.450000px;}
.x100_c00078{left:598.650000px;}
.x52_c00078{left:600.900000px;}
.xb3_c00078{left:602.400000px;}
.x112_c00078{left:604.050000px;}
.x5f_c00078{left:605.700000px;}
.x95_c00078{left:608.400000px;}
.x120_c00078{left:609.900000px;}
.x6b_c00078{left:612.000000px;}
.xed_c00078{left:613.350000px;}
.x10e_c00078{left:614.550000px;}
.x107_c00078{left:616.950000px;}
.x10_c00078{left:618.450000px;}
.x7d_c00078{left:619.950000px;}
.x9e_c00078{left:621.600000px;}
.x89_c00078{left:624.300000px;}
.x96_c00078{left:625.650000px;}
.x75_c00078{left:629.700000px;}
.x139_c00078{left:631.350000px;}
.x37_c00078{left:632.700000px;}
.x21_c00078{left:636.150000px;}
.xa9_c00078{left:638.700000px;}
.xbd_c00078{left:640.050000px;}
.xd6_c00078{left:641.400000px;}
.x47_c00078{left:642.900000px;}
.x7e_c00078{left:644.400000px;}
.x8a_c00078{left:645.600000px;}
.x6c_c00078{left:649.050000px;}
.xfb_c00078{left:650.100000px;}
.xf2_c00078{left:651.600000px;}
.x11b_c00078{left:654.000000px;}
.x11e_c00078{left:657.150000px;}
.xc6_c00078{left:661.950000px;}
.x7f_c00078{left:664.500000px;}
.x6d_c00078{left:666.300000px;}
.x113_c00078{left:668.550000px;}
.xe6_c00078{left:669.900000px;}
.x13a_c00078{left:671.700000px;}
.x117_c00078{left:673.200000px;}
.x8b_c00078{left:674.700000px;}
.xe0_c00078{left:675.750000px;}
.x48_c00078{left:678.150000px;}
.x9f_c00078{left:679.200000px;}
.x6e_c00078{left:681.750000px;}
.xee_c00078{left:687.900000px;}
.x38_c00078{left:689.250000px;}
.xb4_c00078{left:690.300000px;}
.x133_c00078{left:691.350000px;}
.x53_c00078{left:694.500000px;}
.x76_c00078{left:698.850000px;}
.xd7_c00078{left:700.800000px;}
.xf6_c00078{left:703.800000px;}
.x80_c00078{left:704.850000px;}
.xbe_c00078{left:707.700000px;}
.xca_c00078{left:709.350000px;}
.x22_c00078{left:711.000000px;}
.x97_c00078{left:712.500000px;}
.x39_c00078{left:713.700000px;}
.x60_c00078{left:715.050000px;}
.xb5_c00078{left:716.550000px;}
.x11_c00078{left:720.750000px;}
.x81_c00078{left:722.850000px;}
.xa4_c00078{left:725.400000px;}
.x77_c00078{left:726.900000px;}
.xaa_c00078{left:728.700000px;}
.xff_c00078{left:730.050000px;}
.x54_c00078{left:731.250000px;}
.x49_c00078{left:732.450000px;}
.x8c_c00078{left:734.100000px;}
.x61_c00078{left:736.650000px;}
.x101_c00078{left:737.850000px;}
.x3a_c00078{left:741.450000px;}
.x23_c00078{left:743.400000px;}
.x114_c00078{left:744.750000px;}
.xab_c00078{left:746.400000px;}
.x118_c00078{left:748.500000px;}
.x82_c00078{left:751.350000px;}
.xcb_c00078{left:752.550000px;}
.x12_c00078{left:754.200000px;}
.x55_c00078{left:758.550000px;}
.x12b_c00078{left:759.900000px;}
.x119_c00078{left:761.400000px;}
.x115_c00078{left:763.050000px;}
.x6f_c00078{left:764.550000px;}
.xe7_c00078{left:765.600000px;}
.x98_c00078{left:766.950000px;}
.x137_c00078{left:768.900000px;}
.xb6_c00078{left:770.250000px;}
.x62_c00078{left:771.900000px;}
.xd8_c00078{left:773.100000px;}
.xac_c00078{left:774.450000px;}
.x13_c00078{left:779.100000px;}
.xbf_c00078{left:780.450000px;}
.x11c_c00078{left:783.600000px;}
.x24_c00078{left:785.850000px;}
.x56_c00078{left:787.050000px;}
.x8d_c00078{left:788.400000px;}
.xfc_c00078{left:790.050000px;}
.x3b_c00078{left:791.850000px;}
.xf3_c00078{left:793.200000px;}
.x12f_c00078{left:796.800000px;}
.x10f_c00078{left:798.450000px;}
.x121_c00078{left:800.250000px;}
.x102_c00078{left:803.400000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws6_c00078{word-spacing:-3.984512pt;}
.wsc_c00078{word-spacing:0.000000pt;}
.ws2_c00078{word-spacing:0.717047pt;}
.ws0_c00078{word-spacing:4.133869pt;}
.wsb_c00078{word-spacing:4.666667pt;}
.ws5_c00078{word-spacing:5.111111pt;}
.ws1_c00078{word-spacing:5.740295pt;}
.ws8_c00078{word-spacing:6.666667pt;}
.wsa_c00078{word-spacing:6.777778pt;}
.ws9_c00078{word-spacing:9.188996pt;}
.ws7_c00078{word-spacing:10.532239pt;}
.ws3_c00078{word-spacing:10.966573pt;}
.ws4_c00078{word-spacing:15.407407pt;}
._0_c00078{width:41.333333pt;}
.fs0_c00078{font-size:48.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y30_c00078{bottom:133.066667pt;}
.y2f_c00078{bottom:146.933333pt;}
.y2e_c00078{bottom:160.666667pt;}
.y2d_c00078{bottom:174.400000pt;}
.y2c_c00078{bottom:188.133333pt;}
.y2b_c00078{bottom:202.000000pt;}
.y2a_c00078{bottom:215.733333pt;}
.y29_c00078{bottom:229.733333pt;}
.y28_c00078{bottom:243.866667pt;}
.y27_c00078{bottom:257.600000pt;}
.y26_c00078{bottom:271.333333pt;}
.y25_c00078{bottom:285.066667pt;}
.y24_c00078{bottom:299.200000pt;}
.y23_c00078{bottom:313.333333pt;}
.y22_c00078{bottom:327.066667pt;}
.y21_c00078{bottom:355.600000pt;}
.y20_c00078{bottom:372.933333pt;}
.y1f_c00078{bottom:390.800000pt;}
.y1e_c00078{bottom:408.400000pt;}
.y1d_c00078{bottom:426.000000pt;}
.y1c_c00078{bottom:444.266667pt;}
.y1b_c00078{bottom:461.600000pt;}
.y1a_c00078{bottom:479.466667pt;}
.y19_c00078{bottom:497.066667pt;}
.y18_c00078{bottom:514.666667pt;}
.y17_c00078{bottom:532.533333pt;}
.y16_c00078{bottom:550.133333pt;}
.y15_c00078{bottom:568.000000pt;}
.y14_c00078{bottom:585.600000pt;}
.y13_c00078{bottom:603.466667pt;}
.y12_c00078{bottom:621.066667pt;}
.y11_c00078{bottom:638.666667pt;}
.y10_c00078{bottom:656.533333pt;}
.yf_c00078{bottom:674.133333pt;}
.ye_c00078{bottom:692.000000pt;}
.yd_c00078{bottom:709.600000pt;}
.yc_c00078{bottom:727.466667pt;}
.yb_c00078{bottom:745.333333pt;}
.ya_c00078{bottom:762.933333pt;}
.y9_c00078{bottom:780.533333pt;}
.y8_c00078{bottom:798.400000pt;}
.y7_c00078{bottom:816.000000pt;}
.y6_c00078{bottom:833.600000pt;}
.y5_c00078{bottom:851.200000pt;}
.y4_c00078{bottom:868.933333pt;}
.y3_c00078{bottom:886.800000pt;}
.y2_c00078{bottom:904.666667pt;}
.y1_c00078{bottom:938.533333pt;}
.h2_c00078{height:48.000000pt;}
.h1_c00078{height:1037.333333pt;}
.h0_c00078{height:1037.439941pt;}
.w0_c00078{width:811.840007pt;}
.w1_c00078{width:812.000000pt;}
.x0_c00078{left:0.000000pt;}
.x4_c00078{left:126.400000pt;}
.x1_c00078{left:127.333333pt;}
.xc0_c00078{left:128.266667pt;}
.x110_c00078{left:140.800000pt;}
.x5_c00078{left:145.600000pt;}
.x25_c00078{left:147.466667pt;}
.xad_c00078{left:151.733333pt;}
.xe1_c00078{left:153.600000pt;}
.x2e_c00078{left:154.533333pt;}
.x138_c00078{left:156.133333pt;}
.x14_c00078{left:157.200000pt;}
.x134_c00078{left:158.400000pt;}
.x111_c00078{left:159.733333pt;}
.x63_c00078{left:162.266667pt;}
.x13b_c00078{left:163.733333pt;}
.x108_c00078{left:164.800000pt;}
.x4a_c00078{left:166.266667pt;}
.xf4_c00078{left:168.666667pt;}
.xe2_c00078{left:169.600000pt;}
.x15_c00078{left:172.533333pt;}
.x57_c00078{left:173.466667pt;}
.x3c_c00078{left:174.533333pt;}
.x78_c00078{left:175.600000pt;}
.x83_c00078{left:177.066667pt;}
.x128_c00078{left:178.933333pt;}
.x8e_c00078{left:180.133333pt;}
.x2f_c00078{left:181.466667pt;}
.x26_c00078{left:184.266667pt;}
.xb7_c00078{left:187.066667pt;}
.x64_c00078{left:189.466667pt;}
.xa0_c00078{left:190.666667pt;}
.x3d_c00078{left:193.066667pt;}
.x16_c00078{left:194.266667pt;}
.x70_c00078{left:196.400000pt;}
.x116_c00078{left:200.533333pt;}
.xcd_c00078{left:202.533333pt;}
.x6_c00078{left:204.133333pt;}
.xb8_c00078{left:205.333333pt;}
.x84_c00078{left:207.200000pt;}
.xd9_c00078{left:208.266667pt;}
.xc1_c00078{left:210.133333pt;}
.xa5_c00078{left:212.666667pt;}
.x122_c00078{left:213.733333pt;}
.x12d_c00078{left:214.666667pt;}
.xa1_c00078{left:215.600000pt;}
.x8f_c00078{left:218.800000pt;}
.x27_c00078{left:219.733333pt;}
.xae_c00078{left:221.200000pt;}
.xce_c00078{left:222.400000pt;}
.x3e_c00078{left:225.333333pt;}
.x129_c00078{left:226.266667pt;}
.x130_c00078{left:227.466667pt;}
.x4b_c00078{left:229.733333pt;}
.xc7_c00078{left:232.533333pt;}
.x7_c00078{left:234.533333pt;}
.xaf_c00078{left:236.933333pt;}
.xcf_c00078{left:238.133333pt;}
.x65_c00078{left:239.733333pt;}
.x12c_c00078{left:241.333333pt;}
.x17_c00078{left:242.266667pt;}
.x28_c00078{left:243.466667pt;}
.xc2_c00078{left:244.400000pt;}
.xfd_c00078{left:245.733333pt;}
.x30_c00078{left:250.533333pt;}
.xef_c00078{left:251.733333pt;}
.xf9_c00078{left:252.666667pt;}
.x3f_c00078{left:254.400000pt;}
.x18_c00078{left:255.333333pt;}
.xb9_c00078{left:256.266667pt;}
.x109_c00078{left:257.600000pt;}
.x126_c00078{left:258.533333pt;}
.xe8_c00078{left:260.266667pt;}
.xd0_c00078{left:261.466667pt;}
.x123_c00078{left:263.333333pt;}
.xda_c00078{left:267.200000pt;}
.x58_c00078{left:268.533333pt;}
.xc3_c00078{left:271.600000pt;}
.x66_c00078{left:273.066667pt;}
.xba_c00078{left:274.133333pt;}
.x29_c00078{left:276.800000pt;}
.x135_c00078{left:277.733333pt;}
.xa6_c00078{left:279.200000pt;}
.x99_c00078{left:280.400000pt;}
.xb0_c00078{left:281.466667pt;}
.x103_c00078{left:284.000000pt;}
.xdb_c00078{left:287.066667pt;}
.x8_c00078{left:289.600000pt;}
.x19_c00078{left:291.200000pt;}
.x10a_c00078{left:294.133333pt;}
.xd1_c00078{left:295.066667pt;}
.x90_c00078{left:298.133333pt;}
.x79_c00078{left:299.866667pt;}
.x59_c00078{left:304.400000pt;}
.x4c_c00078{left:307.066667pt;}
.x31_c00078{left:309.466667pt;}
.x10b_c00078{left:311.066667pt;}
.x40_c00078{left:312.666667pt;}
.xa2_c00078{left:314.533333pt;}
.x9_c00078{left:315.466667pt;}
.x11a_c00078{left:317.333333pt;}
.xdc_c00078{left:319.333333pt;}
.x1a_c00078{left:320.666667pt;}
.x32_c00078{left:322.266667pt;}
.x7a_c00078{left:324.800000pt;}
.xe3_c00078{left:330.000000pt;}
.xc8_c00078{left:331.733333pt;}
.xe9_c00078{left:333.333333pt;}
.x9a_c00078{left:334.400000pt;}
.x1b_c00078{left:336.400000pt;}
.x5a_c00078{left:337.733333pt;}
.x4d_c00078{left:339.733333pt;}
.x41_c00078{left:341.733333pt;}
.x71_c00078{left:344.800000pt;}
.x2_c00078{left:346.533333pt;}
.xa7_c00078{left:347.600000pt;}
.xb1_c00078{left:350.666667pt;}
.xdd_c00078{left:351.600000pt;}
.x33_c00078{left:353.600000pt;}
.x104_c00078{left:354.800000pt;}
.x10c_c00078{left:356.400000pt;}
.x85_c00078{left:358.266667pt;}
.x2a_c00078{left:360.266667pt;}
.xcc_c00078{left:362.533333pt;}
.xa_c00078{left:364.400000pt;}
.x42_c00078{left:366.400000pt;}
.x67_c00078{left:367.466667pt;}
.xc4_c00078{left:370.133333pt;}
.x5b_c00078{left:371.333333pt;}
.x4e_c00078{left:374.000000pt;}
.x131_c00078{left:375.200000pt;}
.xde_c00078{left:376.266667pt;}
.xd2_c00078{left:378.000000pt;}
.x136_c00078{left:379.466667pt;}
.x1c_c00078{left:382.400000pt;}
.x9b_c00078{left:384.933333pt;}
.xbb_c00078{left:385.866667pt;}
.xf7_c00078{left:389.466667pt;}
.x2b_c00078{left:390.666667pt;}
.x91_c00078{left:391.600000pt;}
.x4f_c00078{left:393.466667pt;}
.x124_c00078{left:394.533333pt;}
.x1d_c00078{left:395.466667pt;}
.x72_c00078{left:397.066667pt;}
.xb_c00078{left:398.666667pt;}
.x68_c00078{left:399.733333pt;}
.x86_c00078{left:401.200000pt;}
.x43_c00078{left:403.466667pt;}
.xfe_c00078{left:406.666667pt;}
.x92_c00078{left:409.200000pt;}
.xfa_c00078{left:414.933333pt;}
.xc_c00078{left:417.200000pt;}
.x105_c00078{left:418.800000pt;}
.x50_c00078{left:420.000000pt;}
.x7b_c00078{left:421.466667pt;}
.x1e_c00078{left:422.666667pt;}
.x44_c00078{left:423.600000pt;}
.xea_c00078{left:426.133333pt;}
.x69_c00078{left:427.200000pt;}
.xd3_c00078{left:429.866667pt;}
.x10d_c00078{left:431.600000pt;}
.x12e_c00078{left:432.533333pt;}
.x3_c00078{left:434.533333pt;}
.x73_c00078{left:437.333333pt;}
.x2c_c00078{left:438.400000pt;}
.xc9_c00078{left:440.133333pt;}
.xeb_c00078{left:441.200000pt;}
.xf0_c00078{left:444.266667pt;}
.x5c_c00078{left:446.266667pt;}
.xa3_c00078{left:449.200000pt;}
.x87_c00078{left:450.533333pt;}
.x11d_c00078{left:453.600000pt;}
.xa8_c00078{left:454.533333pt;}
.xc5_c00078{left:455.600000pt;}
.x106_c00078{left:456.533333pt;}
.xd4_c00078{left:457.733333pt;}
.x51_c00078{left:459.333333pt;}
.x1f_c00078{left:461.333333pt;}
.x11f_c00078{left:462.400000pt;}
.x34_c00078{left:464.133333pt;}
.x2d_c00078{left:465.866667pt;}
.xd_c00078{left:467.733333pt;}
.xdf_c00078{left:470.933333pt;}
.x45_c00078{left:473.466667pt;}
.xf1_c00078{left:474.400000pt;}
.x127_c00078{left:476.400000pt;}
.x12a_c00078{left:477.466667pt;}
.x93_c00078{left:478.666667pt;}
.xb2_c00078{left:480.000000pt;}
.xbc_c00078{left:482.933333pt;}
.x5d_c00078{left:486.000000pt;}
.xe4_c00078{left:486.933333pt;}
.x88_c00078{left:488.666667pt;}
.x20_c00078{left:490.800000pt;}
.xe_c00078{left:494.666667pt;}
.x35_c00078{left:496.133333pt;}
.xec_c00078{left:499.466667pt;}
.x46_c00078{left:501.333333pt;}
.x7c_c00078{left:503.066667pt;}
.x6a_c00078{left:505.866667pt;}
.x5e_c00078{left:508.666667pt;}
.x9c_c00078{left:510.000000pt;}
.xe5_c00078{left:512.266667pt;}
.x36_c00078{left:514.400000pt;}
.xd5_c00078{left:515.333333pt;}
.x125_c00078{left:518.400000pt;}
.x74_c00078{left:519.466667pt;}
.x94_c00078{left:520.933333pt;}
.xf8_c00078{left:523.200000pt;}
.xf_c00078{left:524.400000pt;}
.x9d_c00078{left:527.600000pt;}
.xf5_c00078{left:529.200000pt;}
.x132_c00078{left:531.066667pt;}
.x100_c00078{left:532.133333pt;}
.x52_c00078{left:534.133333pt;}
.xb3_c00078{left:535.466667pt;}
.x112_c00078{left:536.933333pt;}
.x5f_c00078{left:538.400000pt;}
.x95_c00078{left:540.800000pt;}
.x120_c00078{left:542.133333pt;}
.x6b_c00078{left:544.000000pt;}
.xed_c00078{left:545.200000pt;}
.x10e_c00078{left:546.266667pt;}
.x107_c00078{left:548.400000pt;}
.x10_c00078{left:549.733333pt;}
.x7d_c00078{left:551.066667pt;}
.x9e_c00078{left:552.533333pt;}
.x89_c00078{left:554.933333pt;}
.x96_c00078{left:556.133333pt;}
.x75_c00078{left:559.733333pt;}
.x139_c00078{left:561.200000pt;}
.x37_c00078{left:562.400000pt;}
.x21_c00078{left:565.466667pt;}
.xa9_c00078{left:567.733333pt;}
.xbd_c00078{left:568.933333pt;}
.xd6_c00078{left:570.133333pt;}
.x47_c00078{left:571.466667pt;}
.x7e_c00078{left:572.800000pt;}
.x8a_c00078{left:573.866667pt;}
.x6c_c00078{left:576.933333pt;}
.xfb_c00078{left:577.866667pt;}
.xf2_c00078{left:579.200000pt;}
.x11b_c00078{left:581.333333pt;}
.x11e_c00078{left:584.133333pt;}
.xc6_c00078{left:588.400000pt;}
.x7f_c00078{left:590.666667pt;}
.x6d_c00078{left:592.266667pt;}
.x113_c00078{left:594.266667pt;}
.xe6_c00078{left:595.466667pt;}
.x13a_c00078{left:597.066667pt;}
.x117_c00078{left:598.400000pt;}
.x8b_c00078{left:599.733333pt;}
.xe0_c00078{left:600.666667pt;}
.x48_c00078{left:602.800000pt;}
.x9f_c00078{left:603.733333pt;}
.x6e_c00078{left:606.000000pt;}
.xee_c00078{left:611.466667pt;}
.x38_c00078{left:612.666667pt;}
.xb4_c00078{left:613.600000pt;}
.x133_c00078{left:614.533333pt;}
.x53_c00078{left:617.333333pt;}
.x76_c00078{left:621.200000pt;}
.xd7_c00078{left:622.933333pt;}
.xf6_c00078{left:625.600000pt;}
.x80_c00078{left:626.533333pt;}
.xbe_c00078{left:629.066667pt;}
.xca_c00078{left:630.533333pt;}
.x22_c00078{left:632.000000pt;}
.x97_c00078{left:633.333333pt;}
.x39_c00078{left:634.400000pt;}
.x60_c00078{left:635.600000pt;}
.xb5_c00078{left:636.933333pt;}
.x11_c00078{left:640.666667pt;}
.x81_c00078{left:642.533333pt;}
.xa4_c00078{left:644.800000pt;}
.x77_c00078{left:646.133333pt;}
.xaa_c00078{left:647.733333pt;}
.xff_c00078{left:648.933333pt;}
.x54_c00078{left:650.000000pt;}
.x49_c00078{left:651.066667pt;}
.x8c_c00078{left:652.533333pt;}
.x61_c00078{left:654.800000pt;}
.x101_c00078{left:655.866667pt;}
.x3a_c00078{left:659.066667pt;}
.x23_c00078{left:660.800000pt;}
.x114_c00078{left:662.000000pt;}
.xab_c00078{left:663.466667pt;}
.x118_c00078{left:665.333333pt;}
.x82_c00078{left:667.866667pt;}
.xcb_c00078{left:668.933333pt;}
.x12_c00078{left:670.400000pt;}
.x55_c00078{left:674.266667pt;}
.x12b_c00078{left:675.466667pt;}
.x119_c00078{left:676.800000pt;}
.x115_c00078{left:678.266667pt;}
.x6f_c00078{left:679.600000pt;}
.xe7_c00078{left:680.533333pt;}
.x98_c00078{left:681.733333pt;}
.x137_c00078{left:683.466667pt;}
.xb6_c00078{left:684.666667pt;}
.x62_c00078{left:686.133333pt;}
.xd8_c00078{left:687.200000pt;}
.xac_c00078{left:688.400000pt;}
.x13_c00078{left:692.533333pt;}
.xbf_c00078{left:693.733333pt;}
.x11c_c00078{left:696.533333pt;}
.x24_c00078{left:698.533333pt;}
.x56_c00078{left:699.600000pt;}
.x8d_c00078{left:700.800000pt;}
.xfc_c00078{left:702.266667pt;}
.x3b_c00078{left:703.866667pt;}
.xf3_c00078{left:705.066667pt;}
.x12f_c00078{left:708.266667pt;}
.x10f_c00078{left:709.733333pt;}
.x121_c00078{left:711.333333pt;}
.x102_c00078{left:714.133333pt;}
}





/* 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_c00079 {
    display:none;
  }
  .loading-indicator_c00079.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00079 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_c00079 { 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_c00079" -> "#page-container .classname_c00079")
 */
.pf_c00079 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00079 { /* 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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00079 { /* 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_c00079 { /* 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_c00079 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00079 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00079 {overflow:visible;}
  }
}
.c_c00079 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00079 { /* 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_c00079:after { /* webkit #35443 */
  content: '';
}
.t_c00079:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00079 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 */
}
.__c00079 { /* 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_c00079 { /* info for Javascript */
  display:none;
}
.l_c00079 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00079 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00079 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00079: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_c00079 {
    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_c00079.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00079.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_c00079 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00079{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.000000;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;}
.m7f_c00079{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m46_c00079{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m15_c00079{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m88_c00079{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00079{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m97_c00079{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m84_c00079{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m83_c00079{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m93_c00079{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00079{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00079{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md_c00079{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00079{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00079{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m18_c00079{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00079{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m94_c00079{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mad_c00079{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.maf_c00079{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mca_c00079{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00079{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00079{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00079{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m12_c00079{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00079{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m98_c00079{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00079{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m80_c00079{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00079{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00079{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00079{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00079{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00079{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00079{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m85_c00079{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00079{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00079{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m89_c00079{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00079{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m91_c00079{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00079{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00079{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00079{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m81_c00079{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mab_c00079{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m95_c00079{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m86_c00079{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00079{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00079{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00079{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mac_c00079{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00079{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m79_c00079{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00079{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00079{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m82_c00079{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00079{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00079{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00079{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00079{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00079{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00079{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m72_c00079{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m90_c00079{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9_c00079{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00079{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00079{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m87_c00079{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00079{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00079{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00079{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00079{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00079{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00079{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00079{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m96_c00079{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00079{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00079{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00079{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00079{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00079{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m31_c00079{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00079{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00079{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00079{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m34_c00079{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00079{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00079{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m21_c00079{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00079{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00079{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00079{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m77_c00079{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m38_c00079{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00079{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m49_c00079{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00079{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00079{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m71_c00079{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m27_c00079{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m24_c00079{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00079{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m57_c00079{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m76_c00079{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00079{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00079{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11_c00079{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00079{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00079{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m45_c00079{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00079{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00079{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m55_c00079{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m25_c00079{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.maa_c00079{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m73_c00079{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m41_c00079{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00079{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m43_c00079{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m37_c00079{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00079{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00079{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m29_c00079{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mae_c00079{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00079{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00079{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00079{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m62_c00079{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m99_c00079{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mc_c00079{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00079{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00079{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5_c00079{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00079{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16_c00079{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00079{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m65_c00079{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00079{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00079{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00079{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00079{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m20_c00079{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m60_c00079{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m42_c00079{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);}
.m64_c00079{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m13_c00079{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m35_c00079{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m48_c00079{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00079{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb_c00079{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m70_c00079{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m28_c00079{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00079{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00079{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00079{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m7_c00079{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00079{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m33_c00079{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00079{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00079{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00079{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m75_c00079{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4_c00079{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00079{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00079{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m67_c00079{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00079{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m66_c00079{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00079{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m51_c00079{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m58_c00079{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m10_c00079{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00079{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m22_c00079{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00079{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00079{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00079{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mba_c00079{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf_c00079{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m53_c00079{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m54_c00079{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3_c00079{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00079{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m8_c00079{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m32_c00079{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma_c00079{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m36_c00079{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m19_c00079{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m39_c00079{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m74_c00079{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.me_c00079{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00079{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m68_c00079{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00079{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m50_c00079{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m26_c00079{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m52_c00079{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m44_c00079{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00079{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00079{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00079{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00079{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00079{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00079{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m47_c00079{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{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__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00079{word-spacing:-12.066823px;}
.ws6_c00079{word-spacing:-5.250000px;}
.ws2_c00079{word-spacing:-4.625000px;}
.ws9_c00079{word-spacing:-3.750000px;}
.wse_c00079{word-spacing:0.000000px;}
.wsb_c00079{word-spacing:0.125000px;}
.wsc_c00079{word-spacing:2.841235px;}
.ws8_c00079{word-spacing:4.920281px;}
.ws5_c00079{word-spacing:5.029308px;}
.ws1_c00079{word-spacing:7.375000px;}
.ws3_c00079{word-spacing:7.500000px;}
.wsa_c00079{word-spacing:8.186701px;}
.ws4_c00079{word-spacing:12.125000px;}
.wsd_c00079{word-spacing:12.519294px;}
.ws0_c00079{word-spacing:21.164502px;}
._0_c00079{width:24.125000px;}
._1_c00079{width:28.500000px;}
.fc0_c00079{color:transparent;}
.fs0_c00079{font-size:54.000000px;}
.y0_c00079{bottom:0.000000px;}
.y34_c00079{bottom:108.000000px;}
.y33_c00079{bottom:133.800000px;}
.y32_c00079{bottom:149.700000px;}
.y31_c00079{bottom:165.600000px;}
.y30_c00079{bottom:181.050000px;}
.y2f_c00079{bottom:196.500000px;}
.y2e_c00079{bottom:211.650000px;}
.y2d_c00079{bottom:227.550000px;}
.y2c_c00079{bottom:243.000000px;}
.y2b_c00079{bottom:258.900000px;}
.y2a_c00079{bottom:274.350000px;}
.y29_c00079{bottom:289.800000px;}
.y28_c00079{bottom:305.700000px;}
.y27_c00079{bottom:321.150000px;}
.y26_c00079{bottom:336.600000px;}
.y25_c00079{bottom:352.050000px;}
.y24_c00079{bottom:367.950000px;}
.y23_c00079{bottom:383.400000px;}
.y22_c00079{bottom:398.850000px;}
.y21_c00079{bottom:414.300000px;}
.y20_c00079{bottom:430.200000px;}
.y1f_c00079{bottom:445.650000px;}
.y1e_c00079{bottom:461.550000px;}
.y1d_c00079{bottom:477.000000px;}
.y1c_c00079{bottom:492.150000px;}
.y1b_c00079{bottom:508.350000px;}
.y1a_c00079{bottom:523.800000px;}
.y19_c00079{bottom:544.800000px;}
.y18_c00079{bottom:564.900000px;}
.y17_c00079{bottom:585.000000px;}
.y16_c00079{bottom:604.950000px;}
.y15_c00079{bottom:625.800000px;}
.y14_c00079{bottom:645.600000px;}
.y13_c00079{bottom:665.400000px;}
.y12_c00079{bottom:685.200000px;}
.y11_c00079{bottom:705.300000px;}
.y10_c00079{bottom:725.100000px;}
.yf_c00079{bottom:744.900000px;}
.ye_c00079{bottom:765.000000px;}
.yd_c00079{bottom:785.550000px;}
.yc_c00079{bottom:805.650000px;}
.yb_c00079{bottom:825.150000px;}
.ya_c00079{bottom:845.850000px;}
.y9_c00079{bottom:865.650000px;}
.y8_c00079{bottom:885.450000px;}
.y7_c00079{bottom:905.550000px;}
.y6_c00079{bottom:925.350000px;}
.y5_c00079{bottom:945.450000px;}
.y4_c00079{bottom:965.550000px;}
.y3_c00079{bottom:985.650000px;}
.y2_c00079{bottom:1005.150000px;}
.y1_c00079{bottom:1043.700000px;}
.h2_c00079{height:54.000000px;}
.h1_c00079{height:1167.000000px;}
.h0_c00079{height:1167.119934px;}
.w0_c00079{width:913.320007px;}
.w1_c00079{width:913.500000px;}
.x0_c00079{left:0.000000px;}
.x70_c00079{left:98.550000px;}
.x15_c00079{left:100.200000px;}
.xcc_c00079{left:101.550000px;}
.xba_c00079{left:111.900000px;}
.xfa_c00079{left:113.400000px;}
.x148_c00079{left:115.050000px;}
.x32_c00079{left:117.600000px;}
.x71_c00079{left:120.150000px;}
.x13c_c00079{left:122.400000px;}
.xdd_c00079{left:124.350000px;}
.xf0_c00079{left:126.300000px;}
.x40_c00079{left:127.950000px;}
.x16_c00079{left:130.500000px;}
.x4_c00079{left:131.700000px;}
.x33_c00079{left:132.750000px;}
.xc4_c00079{left:134.100000px;}
.x10c_c00079{left:135.750000px;}
.x63_c00079{left:138.450000px;}
.x107_c00079{left:139.800000px;}
.x75_c00079{left:142.500000px;}
.x72_c00079{left:144.600000px;}
.x56_c00079{left:146.850000px;}
.x121_c00079{left:148.950000px;}
.x17_c00079{left:151.350000px;}
.x5_c00079{left:152.550000px;}
.x26_c00079{left:154.200000px;}
.xd4_c00079{left:156.300000px;}
.xb1_c00079{left:157.650000px;}
.x83_c00079{left:159.300000px;}
.x64_c00079{left:161.100000px;}
.xab_c00079{left:163.050000px;}
.x11a_c00079{left:164.250000px;}
.x41_c00079{left:165.450000px;}
.x98_c00079{left:168.000000px;}
.xc5_c00079{left:169.050000px;}
.x140_c00079{left:170.850000px;}
.x84_c00079{left:171.900000px;}
.x149_c00079{left:174.150000px;}
.xd5_c00079{left:176.100000px;}
.x4a_c00079{left:178.500000px;}
.x57_c00079{left:179.550000px;}
.x34_c00079{left:181.050000px;}
.xf1_c00079{left:182.850000px;}
.xac_c00079{left:184.650000px;}
.xfb_c00079{left:185.850000px;}
.x76_c00079{left:187.950000px;}
.xbb_c00079{left:189.300000px;}
.x42_c00079{left:190.650000px;}
.x27_c00079{left:192.750000px;}
.x99_c00079{left:196.050000px;}
.x73_c00079{left:198.300000px;}
.xd7_c00079{left:201.150000px;}
.x35_c00079{left:202.350000px;}
.x114_c00079{left:203.850000px;}
.xfe_c00079{left:205.650000px;}
.x138_c00079{left:206.700000px;}
.x91_c00079{left:207.900000px;}
.xd6_c00079{left:209.250000px;}
.x12f_c00079{left:210.450000px;}
.x143_c00079{left:212.250000px;}
.xad_c00079{left:215.550000px;}
.x65_c00079{left:217.200000px;}
.x6_c00079{left:218.400000px;}
.x122_c00079{left:219.750000px;}
.x115_c00079{left:221.100000px;}
.x104_c00079{left:222.900000px;}
.x28_c00079{left:225.600000px;}
.x18_c00079{left:227.250000px;}
.x36_c00079{left:228.300000px;}
.x14a_c00079{left:231.750000px;}
.xe3_c00079{left:232.800000px;}
.x85_c00079{left:234.600000px;}
.x74_c00079{left:237.600000px;}
.x66_c00079{left:239.550000px;}
.x7_c00079{left:241.800000px;}
.xf2_c00079{left:242.850000px;}
.x43_c00079{left:243.900000px;}
.x58_c00079{left:245.400000px;}
.x77_c00079{left:248.100000px;}
.x4b_c00079{left:250.800000px;}
.x112_c00079{left:252.150000px;}
.xbc_c00079{left:254.850000px;}
.x10d_c00079{left:256.350000px;}
.xb2_c00079{left:257.400000px;}
.x29_c00079{left:261.300000px;}
.x135_c00079{left:265.050000px;}
.xe4_c00079{left:266.400000px;}
.xd8_c00079{left:267.450000px;}
.x78_c00079{left:268.950000px;}
.x8_c00079{left:270.600000px;}
.xff_c00079{left:271.950000px;}
.xf3_c00079{left:273.150000px;}
.x59_c00079{left:274.950000px;}
.x86_c00079{left:278.100000px;}
.x67_c00079{left:281.250000px;}
.x19_c00079{left:282.750000px;}
.x2a_c00079{left:284.400000px;}
.xb3_c00079{left:285.900000px;}
.xf4_c00079{left:288.600000px;}
.x4c_c00079{left:290.100000px;}
.xa2_c00079{left:293.100000px;}
.x79_c00079{left:295.650000px;}
.x130_c00079{left:297.450000px;}
.xbd_c00079{left:299.850000px;}
.x92_c00079{left:301.500000px;}
.x139_c00079{left:303.150000px;}
.x87_c00079{left:304.350000px;}
.x128_c00079{left:306.300000px;}
.xae_c00079{left:307.650000px;}
.x9_c00079{left:309.150000px;}
.x5a_c00079{left:310.650000px;}
.x2b_c00079{left:312.450000px;}
.x1a_c00079{left:313.650000px;}
.xfc_c00079{left:317.550000px;}
.x129_c00079{left:320.400000px;}
.xa3_c00079{left:322.200000px;}
.x44_c00079{left:324.150000px;}
.x103_c00079{left:325.500000px;}
.xcd_c00079{left:328.050000px;}
.x136_c00079{left:329.550000px;}
.xbe_c00079{left:331.950000px;}
.x108_c00079{left:333.000000px;}
.xde_c00079{left:335.250000px;}
.x37_c00079{left:338.100000px;}
.x1b_c00079{left:339.150000px;}
.x68_c00079{left:341.700000px;}
.x13a_c00079{left:343.800000px;}
.xb4_c00079{left:346.350000px;}
.x5b_c00079{left:348.450000px;}
.x9a_c00079{left:350.850000px;}
.xf5_c00079{left:352.650000px;}
.xa_c00079{left:354.150000px;}
.x123_c00079{left:357.300000px;}
.x88_c00079{left:358.650000px;}
.xc6_c00079{left:360.600000px;}
.x7a_c00079{left:361.950000px;}
.x93_c00079{left:363.450000px;}
.x12a_c00079{left:365.100000px;}
.x1_c00079{left:366.150000px;}
.x38_c00079{left:369.450000px;}
.x5c_c00079{left:372.600000px;}
.x89_c00079{left:376.350000px;}
.x1c_c00079{left:377.700000px;}
.x137_c00079{left:379.200000px;}
.xd9_c00079{left:380.550000px;}
.x131_c00079{left:383.850000px;}
.xc1_c00079{left:385.350000px;}
.xbf_c00079{left:389.250000px;}
.xe5_c00079{left:390.750000px;}
.x9b_c00079{left:391.950000px;}
.xfd_c00079{left:393.150000px;}
.x4d_c00079{left:395.250000px;}
.x7b_c00079{left:397.650000px;}
.xb_c00079{left:399.900000px;}
.x109_c00079{left:401.100000px;}
.x2c_c00079{left:405.000000px;}
.xc7_c00079{left:406.350000px;}
.xb5_c00079{left:409.650000px;}
.x141_c00079{left:411.300000px;}
.x4e_c00079{left:412.950000px;}
.x1d_c00079{left:415.800000px;}
.x144_c00079{left:418.200000px;}
.x8a_c00079{left:420.300000px;}
.xce_c00079{left:421.350000px;}
.xe6_c00079{left:424.200000px;}
.xc_c00079{left:425.400000px;}
.x69_c00079{left:427.050000px;}
.xa4_c00079{left:428.700000px;}
.x39_c00079{left:429.900000px;}
.x5d_c00079{left:430.950000px;}
.x2_c00079{left:432.000000px;}
.x7c_c00079{left:435.750000px;}
.xc2_c00079{left:438.600000px;}
.x4f_c00079{left:440.250000px;}
.xe7_c00079{left:441.900000px;}
.xe8_c00079{left:443.250000px;}
.x1e_c00079{left:446.400000px;}
.xcf_c00079{left:450.150000px;}
.x8b_c00079{left:451.650000px;}
.x2d_c00079{left:458.700000px;}
.xd_c00079{left:460.650000px;}
.x9c_c00079{left:464.250000px;}
.x45_c00079{left:465.300000px;}
.xdf_c00079{left:466.650000px;}
.x3a_c00079{left:467.700000px;}
.xc8_c00079{left:469.050000px;}
.x8c_c00079{left:471.150000px;}
.xec_c00079{left:472.200000px;}
.x14f_c00079{left:473.250000px;}
.x50_c00079{left:475.200000px;}
.x133_c00079{left:476.700000px;}
.x94_c00079{left:478.650000px;}
.x46_c00079{left:483.300000px;}
.xda_c00079{left:484.650000px;}
.x12b_c00079{left:486.450000px;}
.x5e_c00079{left:487.800000px;}
.x1f_c00079{left:489.600000px;}
.x11b_c00079{left:491.100000px;}
.x2e_c00079{left:492.150000px;}
.xe_c00079{left:494.550000px;}
.x9d_c00079{left:497.400000px;}
.x8d_c00079{left:498.450000px;}
.xa5_c00079{left:500.400000px;}
.x13b_c00079{left:501.450000px;}
.x20_c00079{left:504.750000px;}
.x95_c00079{left:506.700000px;}
.x12c_c00079{left:507.750000px;}
.xb6_c00079{left:509.100000px;}
.x5f_c00079{left:510.900000px;}
.x10e_c00079{left:513.450000px;}
.xed_c00079{left:514.650000px;}
.xe9_c00079{left:517.800000px;}
.x47_c00079{left:519.600000px;}
.xe0_c00079{left:522.150000px;}
.xf_c00079{left:524.400000px;}
.xc9_c00079{left:525.600000px;}
.x8e_c00079{left:528.000000px;}
.xa6_c00079{left:529.200000px;}
.x6a_c00079{left:532.950000px;}
.x124_c00079{left:534.450000px;}
.xaf_c00079{left:535.650000px;}
.x11c_c00079{left:536.850000px;}
.x3b_c00079{left:538.650000px;}
.x13d_c00079{left:539.850000px;}
.x21_c00079{left:541.050000px;}
.x51_c00079{left:543.600000px;}
.xf6_c00079{left:547.650000px;}
.x116_c00079{left:549.900000px;}
.x7d_c00079{left:552.450000px;}
.x6b_c00079{left:553.500000px;}
.x125_c00079{left:555.750000px;}
.x11d_c00079{left:556.950000px;}
.x2f_c00079{left:559.200000px;}
.x12d_c00079{left:561.000000px;}
.x96_c00079{left:564.300000px;}
.x8f_c00079{left:565.800000px;}
.x13e_c00079{left:567.150000px;}
.x142_c00079{left:568.200000px;}
.x14b_c00079{left:570.150000px;}
.x48_c00079{left:572.550000px;}
.x7e_c00079{left:574.350000px;}
.x22_c00079{left:575.550000px;}
.xb7_c00079{left:578.550000px;}
.x10a_c00079{left:579.600000px;}
.x14e_c00079{left:582.750000px;}
.x6c_c00079{left:584.400000px;}
.xa7_c00079{left:585.750000px;}
.x52_c00079{left:587.550000px;}
.x3c_c00079{left:590.850000px;}
.x134_c00079{left:592.650000px;}
.x9e_c00079{left:595.350000px;}
.x105_c00079{left:597.000000px;}
.x60_c00079{left:599.100000px;}
.x117_c00079{left:601.050000px;}
.xca_c00079{left:602.250000px;}
.x10_c00079{left:603.900000px;}
.xf7_c00079{left:605.250000px;}
.x126_c00079{left:608.400000px;}
.x23_c00079{left:610.050000px;}
.xd0_c00079{left:612.150000px;}
.xc0_c00079{left:613.200000px;}
.xea_c00079{left:614.550000px;}
.x100_c00079{left:617.700000px;}
.x11_c00079{left:620.100000px;}
.xcb_c00079{left:621.750000px;}
.x7f_c00079{left:623.700000px;}
.x132_c00079{left:626.100000px;}
.xa8_c00079{left:627.150000px;}
.xc3_c00079{left:630.300000px;}
.x3d_c00079{left:631.950000px;}
.x10f_c00079{left:634.050000px;}
.x14c_c00079{left:635.400000px;}
.xdb_c00079{left:637.950000px;}
.x53_c00079{left:639.000000px;}
.x101_c00079{left:641.100000px;}
.x80_c00079{left:643.500000px;}
.xd1_c00079{left:644.850000px;}
.x30_c00079{left:648.000000px;}
.x106_c00079{left:649.500000px;}
.xf8_c00079{left:651.300000px;}
.xb8_c00079{left:652.650000px;}
.xee_c00079{left:654.750000px;}
.x12_c00079{left:656.850000px;}
.x6d_c00079{left:659.700000px;}
.x9f_c00079{left:661.650000px;}
.xa9_c00079{left:663.150000px;}
.x127_c00079{left:666.000000px;}
.xd2_c00079{left:667.200000px;}
.x31_c00079{left:669.900000px;}
.x13f_c00079{left:672.300000px;}
.xdc_c00079{left:673.650000px;}
.x61_c00079{left:675.000000px;}
.x110_c00079{left:676.050000px;}
.x113_c00079{left:677.250000px;}
.x54_c00079{left:678.600000px;}
.x90_c00079{left:680.700000px;}
.xe1_c00079{left:682.350000px;}
.x81_c00079{left:684.600000px;}
.x11e_c00079{left:685.800000px;}
.xf9_c00079{left:687.000000px;}
.x6e_c00079{left:690.000000px;}
.x13_c00079{left:691.800000px;}
.x147_c00079{left:695.400000px;}
.xb0_c00079{left:697.050000px;}
.x3e_c00079{left:699.600000px;}
.x12e_c00079{left:701.400000px;}
.x145_c00079{left:702.750000px;}
.x24_c00079{left:703.950000px;}
.x14d_c00079{left:705.150000px;}
.xa0_c00079{left:706.650000px;}
.x97_c00079{left:708.300000px;}
.x62_c00079{left:713.100000px;}
.x82_c00079{left:715.200000px;}
.x11f_c00079{left:717.150000px;}
.x118_c00079{left:718.500000px;}
.xef_c00079{left:720.000000px;}
.x3f_c00079{left:721.200000px;}
.x55_c00079{left:724.200000px;}
.x14_c00079{left:726.300000px;}
.x6f_c00079{left:727.800000px;}
.x25_c00079{left:732.450000px;}
.xaa_c00079{left:733.650000px;}
.x150_c00079{left:735.000000px;}
.xe2_c00079{left:737.100000px;}
.x146_c00079{left:739.050000px;}
.x49_c00079{left:741.300000px;}
.xeb_c00079{left:742.350000px;}
.xa1_c00079{left:744.150000px;}
.x102_c00079{left:745.200000px;}
.xd3_c00079{left:746.400000px;}
.x120_c00079{left:749.250000px;}
.x3_c00079{left:750.900000px;}
.x119_c00079{left:752.700000px;}
.x111_c00079{left:753.750000px;}
.xb9_c00079{left:754.800000px;}
.x10b_c00079{left:756.750000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws7_c00079{word-spacing:-10.726065pt;}
.ws6_c00079{word-spacing:-4.666667pt;}
.ws2_c00079{word-spacing:-4.111111pt;}
.ws9_c00079{word-spacing:-3.333333pt;}
.wse_c00079{word-spacing:0.000000pt;}
.wsb_c00079{word-spacing:0.111111pt;}
.wsc_c00079{word-spacing:2.525542pt;}
.ws8_c00079{word-spacing:4.373583pt;}
.ws5_c00079{word-spacing:4.470496pt;}
.ws1_c00079{word-spacing:6.555556pt;}
.ws3_c00079{word-spacing:6.666667pt;}
.wsa_c00079{word-spacing:7.277067pt;}
.ws4_c00079{word-spacing:10.777778pt;}
.wsd_c00079{word-spacing:11.128262pt;}
.ws0_c00079{word-spacing:18.812891pt;}
._0_c00079{width:21.444444pt;}
._1_c00079{width:25.333333pt;}
.fs0_c00079{font-size:48.000000pt;}
.y0_c00079{bottom:0.000000pt;}
.y34_c00079{bottom:96.000000pt;}
.y33_c00079{bottom:118.933333pt;}
.y32_c00079{bottom:133.066667pt;}
.y31_c00079{bottom:147.200000pt;}
.y30_c00079{bottom:160.933333pt;}
.y2f_c00079{bottom:174.666667pt;}
.y2e_c00079{bottom:188.133333pt;}
.y2d_c00079{bottom:202.266667pt;}
.y2c_c00079{bottom:216.000000pt;}
.y2b_c00079{bottom:230.133333pt;}
.y2a_c00079{bottom:243.866667pt;}
.y29_c00079{bottom:257.600000pt;}
.y28_c00079{bottom:271.733333pt;}
.y27_c00079{bottom:285.466667pt;}
.y26_c00079{bottom:299.200000pt;}
.y25_c00079{bottom:312.933333pt;}
.y24_c00079{bottom:327.066667pt;}
.y23_c00079{bottom:340.800000pt;}
.y22_c00079{bottom:354.533333pt;}
.y21_c00079{bottom:368.266667pt;}
.y20_c00079{bottom:382.400000pt;}
.y1f_c00079{bottom:396.133333pt;}
.y1e_c00079{bottom:410.266667pt;}
.y1d_c00079{bottom:424.000000pt;}
.y1c_c00079{bottom:437.466667pt;}
.y1b_c00079{bottom:451.866667pt;}
.y1a_c00079{bottom:465.600000pt;}
.y19_c00079{bottom:484.266667pt;}
.y18_c00079{bottom:502.133333pt;}
.y17_c00079{bottom:520.000000pt;}
.y16_c00079{bottom:537.733333pt;}
.y15_c00079{bottom:556.266667pt;}
.y14_c00079{bottom:573.866667pt;}
.y13_c00079{bottom:591.466667pt;}
.y12_c00079{bottom:609.066667pt;}
.y11_c00079{bottom:626.933333pt;}
.y10_c00079{bottom:644.533333pt;}
.yf_c00079{bottom:662.133333pt;}
.ye_c00079{bottom:680.000000pt;}
.yd_c00079{bottom:698.266667pt;}
.yc_c00079{bottom:716.133333pt;}
.yb_c00079{bottom:733.466667pt;}
.ya_c00079{bottom:751.866667pt;}
.y9_c00079{bottom:769.466667pt;}
.y8_c00079{bottom:787.066667pt;}
.y7_c00079{bottom:804.933333pt;}
.y6_c00079{bottom:822.533333pt;}
.y5_c00079{bottom:840.400000pt;}
.y4_c00079{bottom:858.266667pt;}
.y3_c00079{bottom:876.133333pt;}
.y2_c00079{bottom:893.466667pt;}
.y1_c00079{bottom:927.733333pt;}
.h2_c00079{height:48.000000pt;}
.h1_c00079{height:1037.333333pt;}
.h0_c00079{height:1037.439941pt;}
.w0_c00079{width:811.840007pt;}
.w1_c00079{width:812.000000pt;}
.x0_c00079{left:0.000000pt;}
.x70_c00079{left:87.600000pt;}
.x15_c00079{left:89.066667pt;}
.xcc_c00079{left:90.266667pt;}
.xba_c00079{left:99.466667pt;}
.xfa_c00079{left:100.800000pt;}
.x148_c00079{left:102.266667pt;}
.x32_c00079{left:104.533333pt;}
.x71_c00079{left:106.800000pt;}
.x13c_c00079{left:108.800000pt;}
.xdd_c00079{left:110.533333pt;}
.xf0_c00079{left:112.266667pt;}
.x40_c00079{left:113.733333pt;}
.x16_c00079{left:116.000000pt;}
.x4_c00079{left:117.066667pt;}
.x33_c00079{left:118.000000pt;}
.xc4_c00079{left:119.200000pt;}
.x10c_c00079{left:120.666667pt;}
.x63_c00079{left:123.066667pt;}
.x107_c00079{left:124.266667pt;}
.x75_c00079{left:126.666667pt;}
.x72_c00079{left:128.533333pt;}
.x56_c00079{left:130.533333pt;}
.x121_c00079{left:132.400000pt;}
.x17_c00079{left:134.533333pt;}
.x5_c00079{left:135.600000pt;}
.x26_c00079{left:137.066667pt;}
.xd4_c00079{left:138.933333pt;}
.xb1_c00079{left:140.133333pt;}
.x83_c00079{left:141.600000pt;}
.x64_c00079{left:143.200000pt;}
.xab_c00079{left:144.933333pt;}
.x11a_c00079{left:146.000000pt;}
.x41_c00079{left:147.066667pt;}
.x98_c00079{left:149.333333pt;}
.xc5_c00079{left:150.266667pt;}
.x140_c00079{left:151.866667pt;}
.x84_c00079{left:152.800000pt;}
.x149_c00079{left:154.800000pt;}
.xd5_c00079{left:156.533333pt;}
.x4a_c00079{left:158.666667pt;}
.x57_c00079{left:159.600000pt;}
.x34_c00079{left:160.933333pt;}
.xf1_c00079{left:162.533333pt;}
.xac_c00079{left:164.133333pt;}
.xfb_c00079{left:165.200000pt;}
.x76_c00079{left:167.066667pt;}
.xbb_c00079{left:168.266667pt;}
.x42_c00079{left:169.466667pt;}
.x27_c00079{left:171.333333pt;}
.x99_c00079{left:174.266667pt;}
.x73_c00079{left:176.266667pt;}
.xd7_c00079{left:178.800000pt;}
.x35_c00079{left:179.866667pt;}
.x114_c00079{left:181.200000pt;}
.xfe_c00079{left:182.800000pt;}
.x138_c00079{left:183.733333pt;}
.x91_c00079{left:184.800000pt;}
.xd6_c00079{left:186.000000pt;}
.x12f_c00079{left:187.066667pt;}
.x143_c00079{left:188.666667pt;}
.xad_c00079{left:191.600000pt;}
.x65_c00079{left:193.066667pt;}
.x6_c00079{left:194.133333pt;}
.x122_c00079{left:195.333333pt;}
.x115_c00079{left:196.533333pt;}
.x104_c00079{left:198.133333pt;}
.x28_c00079{left:200.533333pt;}
.x18_c00079{left:202.000000pt;}
.x36_c00079{left:202.933333pt;}
.x14a_c00079{left:206.000000pt;}
.xe3_c00079{left:206.933333pt;}
.x85_c00079{left:208.533333pt;}
.x74_c00079{left:211.200000pt;}
.x66_c00079{left:212.933333pt;}
.x7_c00079{left:214.933333pt;}
.xf2_c00079{left:215.866667pt;}
.x43_c00079{left:216.800000pt;}
.x58_c00079{left:218.133333pt;}
.x77_c00079{left:220.533333pt;}
.x4b_c00079{left:222.933333pt;}
.x112_c00079{left:224.133333pt;}
.xbc_c00079{left:226.533333pt;}
.x10d_c00079{left:227.866667pt;}
.xb2_c00079{left:228.800000pt;}
.x29_c00079{left:232.266667pt;}
.x135_c00079{left:235.600000pt;}
.xe4_c00079{left:236.800000pt;}
.xd8_c00079{left:237.733333pt;}
.x78_c00079{left:239.066667pt;}
.x8_c00079{left:240.533333pt;}
.xff_c00079{left:241.733333pt;}
.xf3_c00079{left:242.800000pt;}
.x59_c00079{left:244.400000pt;}
.x86_c00079{left:247.200000pt;}
.x67_c00079{left:250.000000pt;}
.x19_c00079{left:251.333333pt;}
.x2a_c00079{left:252.800000pt;}
.xb3_c00079{left:254.133333pt;}
.xf4_c00079{left:256.533333pt;}
.x4c_c00079{left:257.866667pt;}
.xa2_c00079{left:260.533333pt;}
.x79_c00079{left:262.800000pt;}
.x130_c00079{left:264.400000pt;}
.xbd_c00079{left:266.533333pt;}
.x92_c00079{left:268.000000pt;}
.x139_c00079{left:269.466667pt;}
.x87_c00079{left:270.533333pt;}
.x128_c00079{left:272.266667pt;}
.xae_c00079{left:273.466667pt;}
.x9_c00079{left:274.800000pt;}
.x5a_c00079{left:276.133333pt;}
.x2b_c00079{left:277.733333pt;}
.x1a_c00079{left:278.800000pt;}
.xfc_c00079{left:282.266667pt;}
.x129_c00079{left:284.800000pt;}
.xa3_c00079{left:286.400000pt;}
.x44_c00079{left:288.133333pt;}
.x103_c00079{left:289.333333pt;}
.xcd_c00079{left:291.600000pt;}
.x136_c00079{left:292.933333pt;}
.xbe_c00079{left:295.066667pt;}
.x108_c00079{left:296.000000pt;}
.xde_c00079{left:298.000000pt;}
.x37_c00079{left:300.533333pt;}
.x1b_c00079{left:301.466667pt;}
.x68_c00079{left:303.733333pt;}
.x13a_c00079{left:305.600000pt;}
.xb4_c00079{left:307.866667pt;}
.x5b_c00079{left:309.733333pt;}
.x9a_c00079{left:311.866667pt;}
.xf5_c00079{left:313.466667pt;}
.xa_c00079{left:314.800000pt;}
.x123_c00079{left:317.600000pt;}
.x88_c00079{left:318.800000pt;}
.xc6_c00079{left:320.533333pt;}
.x7a_c00079{left:321.733333pt;}
.x93_c00079{left:323.066667pt;}
.x12a_c00079{left:324.533333pt;}
.x1_c00079{left:325.466667pt;}
.x38_c00079{left:328.400000pt;}
.x5c_c00079{left:331.200000pt;}
.x89_c00079{left:334.533333pt;}
.x1c_c00079{left:335.733333pt;}
.x137_c00079{left:337.066667pt;}
.xd9_c00079{left:338.266667pt;}
.x131_c00079{left:341.200000pt;}
.xc1_c00079{left:342.533333pt;}
.xbf_c00079{left:346.000000pt;}
.xe5_c00079{left:347.333333pt;}
.x9b_c00079{left:348.400000pt;}
.xfd_c00079{left:349.466667pt;}
.x4d_c00079{left:351.333333pt;}
.x7b_c00079{left:353.466667pt;}
.xb_c00079{left:355.466667pt;}
.x109_c00079{left:356.533333pt;}
.x2c_c00079{left:360.000000pt;}
.xc7_c00079{left:361.200000pt;}
.xb5_c00079{left:364.133333pt;}
.x141_c00079{left:365.600000pt;}
.x4e_c00079{left:367.066667pt;}
.x1d_c00079{left:369.600000pt;}
.x144_c00079{left:371.733333pt;}
.x8a_c00079{left:373.600000pt;}
.xce_c00079{left:374.533333pt;}
.xe6_c00079{left:377.066667pt;}
.xc_c00079{left:378.133333pt;}
.x69_c00079{left:379.600000pt;}
.xa4_c00079{left:381.066667pt;}
.x39_c00079{left:382.133333pt;}
.x5d_c00079{left:383.066667pt;}
.x2_c00079{left:384.000000pt;}
.x7c_c00079{left:387.333333pt;}
.xc2_c00079{left:389.866667pt;}
.x4f_c00079{left:391.333333pt;}
.xe7_c00079{left:392.800000pt;}
.xe8_c00079{left:394.000000pt;}
.x1e_c00079{left:396.800000pt;}
.xcf_c00079{left:400.133333pt;}
.x8b_c00079{left:401.466667pt;}
.x2d_c00079{left:407.733333pt;}
.xd_c00079{left:409.466667pt;}
.x9c_c00079{left:412.666667pt;}
.x45_c00079{left:413.600000pt;}
.xdf_c00079{left:414.800000pt;}
.x3a_c00079{left:415.733333pt;}
.xc8_c00079{left:416.933333pt;}
.x8c_c00079{left:418.800000pt;}
.xec_c00079{left:419.733333pt;}
.x14f_c00079{left:420.666667pt;}
.x50_c00079{left:422.400000pt;}
.x133_c00079{left:423.733333pt;}
.x94_c00079{left:425.466667pt;}
.x46_c00079{left:429.600000pt;}
.xda_c00079{left:430.800000pt;}
.x12b_c00079{left:432.400000pt;}
.x5e_c00079{left:433.600000pt;}
.x1f_c00079{left:435.200000pt;}
.x11b_c00079{left:436.533333pt;}
.x2e_c00079{left:437.466667pt;}
.xe_c00079{left:439.600000pt;}
.x9d_c00079{left:442.133333pt;}
.x8d_c00079{left:443.066667pt;}
.xa5_c00079{left:444.800000pt;}
.x13b_c00079{left:445.733333pt;}
.x20_c00079{left:448.666667pt;}
.x95_c00079{left:450.400000pt;}
.x12c_c00079{left:451.333333pt;}
.xb6_c00079{left:452.533333pt;}
.x5f_c00079{left:454.133333pt;}
.x10e_c00079{left:456.400000pt;}
.xed_c00079{left:457.466667pt;}
.xe9_c00079{left:460.266667pt;}
.x47_c00079{left:461.866667pt;}
.xe0_c00079{left:464.133333pt;}
.xf_c00079{left:466.133333pt;}
.xc9_c00079{left:467.200000pt;}
.x8e_c00079{left:469.333333pt;}
.xa6_c00079{left:470.400000pt;}
.x6a_c00079{left:473.733333pt;}
.x124_c00079{left:475.066667pt;}
.xaf_c00079{left:476.133333pt;}
.x11c_c00079{left:477.200000pt;}
.x3b_c00079{left:478.800000pt;}
.x13d_c00079{left:479.866667pt;}
.x21_c00079{left:480.933333pt;}
.x51_c00079{left:483.200000pt;}
.xf6_c00079{left:486.800000pt;}
.x116_c00079{left:488.800000pt;}
.x7d_c00079{left:491.066667pt;}
.x6b_c00079{left:492.000000pt;}
.x125_c00079{left:494.000000pt;}
.x11d_c00079{left:495.066667pt;}
.x2f_c00079{left:497.066667pt;}
.x12d_c00079{left:498.666667pt;}
.x96_c00079{left:501.600000pt;}
.x8f_c00079{left:502.933333pt;}
.x13e_c00079{left:504.133333pt;}
.x142_c00079{left:505.066667pt;}
.x14b_c00079{left:506.800000pt;}
.x48_c00079{left:508.933333pt;}
.x7e_c00079{left:510.533333pt;}
.x22_c00079{left:511.600000pt;}
.xb7_c00079{left:514.266667pt;}
.x10a_c00079{left:515.200000pt;}
.x14e_c00079{left:518.000000pt;}
.x6c_c00079{left:519.466667pt;}
.xa7_c00079{left:520.666667pt;}
.x52_c00079{left:522.266667pt;}
.x3c_c00079{left:525.200000pt;}
.x134_c00079{left:526.800000pt;}
.x9e_c00079{left:529.200000pt;}
.x105_c00079{left:530.666667pt;}
.x60_c00079{left:532.533333pt;}
.x117_c00079{left:534.266667pt;}
.xca_c00079{left:535.333333pt;}
.x10_c00079{left:536.800000pt;}
.xf7_c00079{left:538.000000pt;}
.x126_c00079{left:540.800000pt;}
.x23_c00079{left:542.266667pt;}
.xd0_c00079{left:544.133333pt;}
.xc0_c00079{left:545.066667pt;}
.xea_c00079{left:546.266667pt;}
.x100_c00079{left:549.066667pt;}
.x11_c00079{left:551.200000pt;}
.xcb_c00079{left:552.666667pt;}
.x7f_c00079{left:554.400000pt;}
.x132_c00079{left:556.533333pt;}
.xa8_c00079{left:557.466667pt;}
.xc3_c00079{left:560.266667pt;}
.x3d_c00079{left:561.733333pt;}
.x10f_c00079{left:563.600000pt;}
.x14c_c00079{left:564.800000pt;}
.xdb_c00079{left:567.066667pt;}
.x53_c00079{left:568.000000pt;}
.x101_c00079{left:569.866667pt;}
.x80_c00079{left:572.000000pt;}
.xd1_c00079{left:573.200000pt;}
.x30_c00079{left:576.000000pt;}
.x106_c00079{left:577.333333pt;}
.xf8_c00079{left:578.933333pt;}
.xb8_c00079{left:580.133333pt;}
.xee_c00079{left:582.000000pt;}
.x12_c00079{left:583.866667pt;}
.x6d_c00079{left:586.400000pt;}
.x9f_c00079{left:588.133333pt;}
.xa9_c00079{left:589.466667pt;}
.x127_c00079{left:592.000000pt;}
.xd2_c00079{left:593.066667pt;}
.x31_c00079{left:595.466667pt;}
.x13f_c00079{left:597.600000pt;}
.xdc_c00079{left:598.800000pt;}
.x61_c00079{left:600.000000pt;}
.x110_c00079{left:600.933333pt;}
.x113_c00079{left:602.000000pt;}
.x54_c00079{left:603.200000pt;}
.x90_c00079{left:605.066667pt;}
.xe1_c00079{left:606.533333pt;}
.x81_c00079{left:608.533333pt;}
.x11e_c00079{left:609.600000pt;}
.xf9_c00079{left:610.666667pt;}
.x6e_c00079{left:613.333333pt;}
.x13_c00079{left:614.933333pt;}
.x147_c00079{left:618.133333pt;}
.xb0_c00079{left:619.600000pt;}
.x3e_c00079{left:621.866667pt;}
.x12e_c00079{left:623.466667pt;}
.x145_c00079{left:624.666667pt;}
.x24_c00079{left:625.733333pt;}
.x14d_c00079{left:626.800000pt;}
.xa0_c00079{left:628.133333pt;}
.x97_c00079{left:629.600000pt;}
.x62_c00079{left:633.866667pt;}
.x82_c00079{left:635.733333pt;}
.x11f_c00079{left:637.466667pt;}
.x118_c00079{left:638.666667pt;}
.xef_c00079{left:640.000000pt;}
.x3f_c00079{left:641.066667pt;}
.x55_c00079{left:643.733333pt;}
.x14_c00079{left:645.600000pt;}
.x6f_c00079{left:646.933333pt;}
.x25_c00079{left:651.066667pt;}
.xaa_c00079{left:652.133333pt;}
.x150_c00079{left:653.333333pt;}
.xe2_c00079{left:655.200000pt;}
.x146_c00079{left:656.933333pt;}
.x49_c00079{left:658.933333pt;}
.xeb_c00079{left:659.866667pt;}
.xa1_c00079{left:661.466667pt;}
.x102_c00079{left:662.400000pt;}
.xd3_c00079{left:663.466667pt;}
.x120_c00079{left:666.000000pt;}
.x3_c00079{left:667.466667pt;}
.x119_c00079{left:669.066667pt;}
.x111_c00079{left:670.000000pt;}
.xb9_c00079{left:670.933333pt;}
.x10b_c00079{left:672.666667pt;}
}





/* 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_c00080 {
    display:none;
  }
  .loading-indicator_c00080.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00080 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_c00080 { 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_c00080" -> "#page-container .classname_c00080")
 */
.pf_c00080 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00080 { /* 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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00080 { /* 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_c00080 { /* 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_c00080 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00080 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00080 {overflow:visible;}
  }
}
.c_c00080 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00080 { /* 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_c00080:after { /* webkit #35443 */
  content: '';
}
.t_c00080:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00080 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 */
}
.__c00080 { /* 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_c00080 { /* info for Javascript */
  display:none;
}
.l_c00080 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00080 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00080 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00080: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_c00080 {
    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_c00080.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00080.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_c00080 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00080{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.000000;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;}
.ma0_c00080{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m47_c00080{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m74_c00080{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00080{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00080{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00080{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00080{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m96_c00080{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m92_c00080{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00080{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m97_c00080{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00080{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m34_c00080{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m30_c00080{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m67_c00080{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00080{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00080{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00080{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00080{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00080{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00080{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m15_c00080{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maa_c00080{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00080{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00080{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00080{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00080{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mab_c00080{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00080{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00080{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00080{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m98_c00080{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00080{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mac_c00080{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00080{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00080{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.maf_c00080{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m22_c00080{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00080{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m93_c00080{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00080{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00080{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00080{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00080{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m91_c00080{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m94_c00080{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00080{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00080{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00080{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m90_c00080{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00080{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00080{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mad_c00080{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m99_c00080{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mae_c00080{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m71_c00080{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m32_c00080{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00080{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m59_c00080{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m42_c00080{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m23_c00080{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00080{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00080{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00080{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00080{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00080{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00080{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00080{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m43_c00080{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00080{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00080{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00080{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m56_c00080{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m62_c00080{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00080{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10_c00080{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m64_c00080{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m45_c00080{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00080{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5_c00080{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m82_c00080{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m85_c00080{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m60_c00080{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00080{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc_c00080{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m46_c00080{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00080{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00080{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00080{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m19_c00080{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00080{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00080{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m38_c00080{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00080{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11_c00080{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00080{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m89_c00080{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m52_c00080{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00080{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00080{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m69_c00080{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00080{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00080{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00080{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m77_c00080{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m66_c00080{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m84_c00080{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00080{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m76_c00080{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.md_c00080{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m13_c00080{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m55_c00080{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00080{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m31_c00080{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00080{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12_c00080{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m17_c00080{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20_c00080{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb_c00080{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m79_c00080{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00080{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma_c00080{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00080{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);}
.m63_c00080{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m41_c00080{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00080{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mf_c00080{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m68_c00080{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m57_c00080{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00080{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00080{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00080{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m40_c00080{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m35_c00080{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m80_c00080{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m54_c00080{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m39_c00080{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00080{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00080{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7_c00080{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m24_c00080{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00080{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m44_c00080{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m29_c00080{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00080{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00080{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m65_c00080{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m72_c00080{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m81_c00080{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m27_c00080{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2_c00080{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00080{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00080{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m28_c00080{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m86_c00080{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m75_c00080{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m49_c00080{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00080{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00080{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00080{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00080{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00080{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00080{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00080{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00080{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00080{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m78_c00080{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m51_c00080{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m37_c00080{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m18_c00080{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00080{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00080{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m33_c00080{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.me_c00080{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m61_c00080{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00080{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m26_c00080{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m70_c00080{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m58_c00080{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m8_c00080{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9_c00080{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00080{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m50_c00080{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m88_c00080{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m87_c00080{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m16_c00080{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m83_c00080{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m6_c00080{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m48_c00080{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m25_c00080{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m53_c00080{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.mba_c00080{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{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__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00080{word-spacing:-14.250000px;}
.wsb_c00080{word-spacing:-8.750000px;}
.ws5_c00080{word-spacing:-6.346154px;}
.ws3_c00080{word-spacing:-4.350412px;}
.ws0_c00080{word-spacing:-3.250000px;}
.ws7_c00080{word-spacing:-3.125000px;}
.wse_c00080{word-spacing:0.000000px;}
.ws8_c00080{word-spacing:2.907003px;}
.ws9_c00080{word-spacing:3.137163px;}
.wsa_c00080{word-spacing:3.189918px;}
.ws6_c00080{word-spacing:4.537019px;}
.ws4_c00080{word-spacing:4.625000px;}
.ws1_c00080{word-spacing:5.747590px;}
.ws2_c00080{word-spacing:9.483599px;}
.wsd_c00080{word-spacing:31.772727px;}
._0_c00080{width:31.500000px;}
.fc0_c00080{color:transparent;}
.fs0_c00080{font-size:54.000000px;}
.y0_c00080{bottom:0.000000px;}
.y2f_c00080{bottom:159.150000px;}
.y2e_c00080{bottom:174.600000px;}
.y2d_c00080{bottom:190.050000px;}
.y2c_c00080{bottom:205.950000px;}
.y2b_c00080{bottom:221.400000px;}
.y2a_c00080{bottom:236.850000px;}
.y29_c00080{bottom:252.750000px;}
.y28_c00080{bottom:267.900000px;}
.y27_c00080{bottom:283.650000px;}
.y26_c00080{bottom:299.550000px;}
.y25_c00080{bottom:315.300000px;}
.y24_c00080{bottom:330.450000px;}
.y23_c00080{bottom:346.350000px;}
.y22_c00080{bottom:362.100000px;}
.y21_c00080{bottom:378.000000px;}
.y20_c00080{bottom:414.000000px;}
.y1f_c00080{bottom:433.800000px;}
.y1e_c00080{bottom:453.750000px;}
.y1d_c00080{bottom:474.300000px;}
.y1c_c00080{bottom:494.100000px;}
.y1b_c00080{bottom:513.900000px;}
.y1a_c00080{bottom:534.000000px;}
.y19_c00080{bottom:553.800000px;}
.y18_c00080{bottom:573.600000px;}
.y17_c00080{bottom:593.400000px;}
.y16_c00080{bottom:613.500000px;}
.y15_c00080{bottom:633.300000px;}
.y14_c00080{bottom:653.100000px;}
.y13_c00080{bottom:673.650000px;}
.y12_c00080{bottom:693.450000px;}
.y11_c00080{bottom:713.550000px;}
.y10_c00080{bottom:733.350000px;}
.yf_c00080{bottom:753.450000px;}
.ye_c00080{bottom:773.250000px;}
.yd_c00080{bottom:791.400000px;}
.yc_c00080{bottom:813.750000px;}
.yb_c00080{bottom:833.250000px;}
.ya_c00080{bottom:853.350000px;}
.y9_c00080{bottom:873.150000px;}
.y8_c00080{bottom:893.250000px;}
.y7_c00080{bottom:913.350000px;}
.y6_c00080{bottom:933.450000px;}
.y5_c00080{bottom:953.250000px;}
.y4_c00080{bottom:972.750000px;}
.y3_c00080{bottom:993.600000px;}
.y2_c00080{bottom:1014.150000px;}
.y1_c00080{bottom:1051.950000px;}
.h2_c00080{height:54.000000px;}
.h1_c00080{height:1167.000000px;}
.h0_c00080{height:1167.119934px;}
.w0_c00080{width:913.320007px;}
.w1_c00080{width:913.500000px;}
.x0_c00080{left:0.000000px;}
.x21_c00080{left:140.550000px;}
.x1_c00080{left:141.900000px;}
.x83_c00080{left:143.400000px;}
.xda_c00080{left:144.450000px;}
.xfa_c00080{left:145.500000px;}
.x138_c00080{left:146.550000px;}
.xa8_c00080{left:162.750000px;}
.x7e_c00080{left:163.950000px;}
.xe6_c00080{left:166.350000px;}
.x133_c00080{left:168.450000px;}
.x5d_c00080{left:170.700000px;}
.x22_c00080{left:171.900000px;}
.x4_c00080{left:173.100000px;}
.x84_c00080{left:174.600000px;}
.x42_c00080{left:176.400000px;}
.x51_c00080{left:178.350000px;}
.xcb_c00080{left:180.000000px;}
.x36_c00080{left:181.800000px;}
.x5_c00080{left:183.900000px;}
.x14_c00080{left:186.300000px;}
.x72_c00080{left:187.800000px;}
.x11a_c00080{left:189.300000px;}
.x23_c00080{left:191.700000px;}
.x12d_c00080{left:193.950000px;}
.xe7_c00080{left:195.150000px;}
.x97_c00080{left:196.200000px;}
.x139_c00080{left:198.000000px;}
.x150_c00080{left:199.500000px;}
.x43_c00080{left:205.500000px;}
.x15_c00080{left:207.600000px;}
.x52_c00080{left:212.250000px;}
.x6_c00080{left:214.800000px;}
.x98_c00080{left:216.750000px;}
.x10e_c00080{left:217.950000px;}
.x11f_c00080{left:220.050000px;}
.x37_c00080{left:221.100000px;}
.xdb_c00080{left:223.350000px;}
.x151_c00080{left:225.000000px;}
.x135_c00080{left:226.800000px;}
.x5e_c00080{left:229.050000px;}
.xb4_c00080{left:231.000000px;}
.x24_c00080{left:232.800000px;}
.x134_c00080{left:233.850000px;}
.xe8_c00080{left:236.850000px;}
.x120_c00080{left:238.800000px;}
.x8f_c00080{left:242.850000px;}
.x16_c00080{left:243.900000px;}
.x85_c00080{left:245.850000px;}
.x44_c00080{left:247.950000px;}
.x5f_c00080{left:249.900000px;}
.x7_c00080{left:251.850000px;}
.x6c_c00080{left:254.550000px;}
.xa9_c00080{left:256.350000px;}
.x38_c00080{left:258.900000px;}
.xed_c00080{left:259.950000px;}
.x128_c00080{left:261.000000px;}
.xb5_c00080{left:263.400000px;}
.x136_c00080{left:266.400000px;}
.x45_c00080{left:267.750000px;}
.xaa_c00080{left:269.700000px;}
.x73_c00080{left:272.100000px;}
.x25_c00080{left:274.500000px;}
.x99_c00080{left:277.950000px;}
.xe0_c00080{left:279.000000px;}
.xcc_c00080{left:280.800000px;}
.x53_c00080{left:283.200000px;}
.x8_c00080{left:287.100000px;}
.xab_c00080{left:289.200000px;}
.x29_c00080{left:290.550000px;}
.x13e_c00080{left:292.050000px;}
.xc1_c00080{left:293.100000px;}
.x26_c00080{left:294.600000px;}
.x11b_c00080{left:296.850000px;}
.x101_c00080{left:298.650000px;}
.x74_c00080{left:299.700000px;}
.x17_c00080{left:301.200000px;}
.x129_c00080{left:302.400000px;}
.xcd_c00080{left:306.300000px;}
.x54_c00080{left:307.650000px;}
.x39_c00080{left:309.300000px;}
.x6d_c00080{left:312.150000px;}
.x12e_c00080{left:313.200000px;}
.x9a_c00080{left:314.700000px;}
.xee_c00080{left:316.800000px;}
.x27_c00080{left:318.300000px;}
.x102_c00080{left:319.500000px;}
.x10f_c00080{left:322.050000px;}
.x18_c00080{left:323.100000px;}
.x145_c00080{left:324.300000px;}
.x2a_c00080{left:326.250000px;}
.x60_c00080{left:327.600000px;}
.x9_c00080{left:329.250000px;}
.x7f_c00080{left:330.450000px;}
.x75_c00080{left:332.400000px;}
.x9b_c00080{left:333.450000px;}
.xd5_c00080{left:334.650000px;}
.xb6_c00080{left:335.700000px;}
.x113_c00080{left:337.200000px;}
.xef_c00080{left:338.400000px;}
.x12a_c00080{left:340.500000px;}
.xc2_c00080{left:343.500000px;}
.x3a_c00080{left:345.600000px;}
.x14d_c00080{left:347.100000px;}
.x61_c00080{left:348.150000px;}
.x103_c00080{left:351.150000px;}
.xa_c00080{left:353.400000px;}
.x2b_c00080{left:355.050000px;}
.xbb_c00080{left:357.450000px;}
.xdc_c00080{left:359.850000px;}
.x46_c00080{left:361.350000px;}
.xce_c00080{left:362.850000px;}
.x12b_c00080{left:365.400000px;}
.xf0_c00080{left:367.200000px;}
.x137_c00080{left:368.250000px;}
.x6e_c00080{left:369.750000px;}
.x28_c00080{left:372.600000px;}
.xac_c00080{left:375.300000px;}
.xa1_c00080{left:376.800000px;}
.x121_c00080{left:377.850000px;}
.xb7_c00080{left:380.700000px;}
.x86_c00080{left:382.050000px;}
.x90_c00080{left:384.300000px;}
.x12f_c00080{left:385.950000px;}
.xd6_c00080{left:387.150000px;}
.x2_c00080{left:389.250000px;}
.x2c_c00080{left:392.100000px;}
.xb_c00080{left:393.300000px;}
.x62_c00080{left:397.050000px;}
.x146_c00080{left:398.550000px;}
.x114_c00080{left:400.800000px;}
.x91_c00080{left:404.100000px;}
.x76_c00080{left:405.150000px;}
.x55_c00080{left:407.100000px;}
.x147_c00080{left:408.600000px;}
.xc3_c00080{left:410.400000px;}
.xc_c00080{left:412.800000px;}
.x9c_c00080{left:414.150000px;}
.x104_c00080{left:415.200000px;}
.x63_c00080{left:417.150000px;}
.x47_c00080{left:418.200000px;}
.xe9_c00080{left:420.150000px;}
.xcf_c00080{left:422.550000px;}
.x87_c00080{left:425.250000px;}
.x77_c00080{left:427.050000px;}
.x122_c00080{left:428.250000px;}
.xfb_c00080{left:430.350000px;}
.xa2_c00080{left:432.300000px;}
.xc4_c00080{left:433.800000px;}
.xd_c00080{left:438.300000px;}
.x10a_c00080{left:440.250000px;}
.x64_c00080{left:441.300000px;}
.x2d_c00080{left:442.800000px;}
.xea_c00080{left:443.850000px;}
.xb8_c00080{left:445.200000px;}
.xe1_c00080{left:447.450000px;}
.xd0_c00080{left:448.500000px;}
.x3b_c00080{left:449.700000px;}
.xad_c00080{left:451.800000px;}
.x105_c00080{left:454.050000px;}
.x48_c00080{left:456.000000px;}
.xf6_c00080{left:457.200000px;}
.x56_c00080{left:459.300000px;}
.x92_c00080{left:461.400000px;}
.x2e_c00080{left:462.600000px;}
.x9d_c00080{left:472.800000px;}
.xd7_c00080{left:474.300000px;}
.x110_c00080{left:475.350000px;}
.xfc_c00080{left:476.400000px;}
.xbc_c00080{left:479.100000px;}
.x88_c00080{left:480.300000px;}
.xe2_c00080{left:481.650000px;}
.x106_c00080{left:482.850000px;}
.x49_c00080{left:484.050000px;}
.xc5_c00080{left:486.300000px;}
.x3_c00080{left:488.550000px;}
.x2f_c00080{left:489.600000px;}
.x13d_c00080{left:490.650000px;}
.x93_c00080{left:492.000000px;}
.xa3_c00080{left:493.200000px;}
.xbd_c00080{left:494.550000px;}
.x78_c00080{left:498.750000px;}
.x9e_c00080{left:500.100000px;}
.x89_c00080{left:501.900000px;}
.xe3_c00080{left:503.250000px;}
.x12c_c00080{left:505.050000px;}
.x65_c00080{left:506.400000px;}
.x3c_c00080{left:508.350000px;}
.x19_c00080{left:510.450000px;}
.x80_c00080{left:513.000000px;}
.x107_c00080{left:516.750000px;}
.x123_c00080{left:518.550000px;}
.xfd_c00080{left:520.650000px;}
.x4a_c00080{left:522.600000px;}
.x66_c00080{left:524.100000px;}
.xdd_c00080{left:525.450000px;}
.x10b_c00080{left:526.950000px;}
.x57_c00080{left:528.750000px;}
.x14e_c00080{left:529.800000px;}
.x1a_c00080{left:531.000000px;}
.xbe_c00080{left:533.400000px;}
.xeb_c00080{left:534.600000px;}
.x11c_c00080{left:537.450000px;}
.x115_c00080{left:538.800000px;}
.xae_c00080{left:540.000000px;}
.x30_c00080{left:541.500000px;}
.x13f_c00080{left:543.300000px;}
.x4b_c00080{left:544.500000px;}
.x130_c00080{left:548.400000px;}
.x108_c00080{left:549.450000px;}
.xfe_c00080{left:551.250000px;}
.x111_c00080{left:552.300000px;}
.xc6_c00080{left:555.450000px;}
.x58_c00080{left:556.500000px;}
.x13a_c00080{left:560.250000px;}
.x31_c00080{left:561.600000px;}
.x3d_c00080{left:562.650000px;}
.x1b_c00080{left:565.200000px;}
.x8a_c00080{left:567.750000px;}
.xf7_c00080{left:568.800000px;}
.x67_c00080{left:570.600000px;}
.x4c_c00080{left:572.550000px;}
.x79_c00080{left:573.600000px;}
.x148_c00080{left:575.700000px;}
.xaf_c00080{left:576.750000px;}
.xe_c00080{left:582.300000px;}
.x59_c00080{left:586.350000px;}
.xa4_c00080{left:588.600000px;}
.x14f_c00080{left:589.950000px;}
.x1c_c00080{left:593.250000px;}
.x140_c00080{left:595.500000px;}
.x109_c00080{left:597.750000px;}
.x8b_c00080{left:599.400000px;}
.x32_c00080{left:601.200000px;}
.x11d_c00080{left:602.550000px;}
.x14b_c00080{left:604.050000px;}
.x6f_c00080{left:606.300000px;}
.x13b_c00080{left:608.850000px;}
.x141_c00080{left:610.200000px;}
.xb0_c00080{left:611.250000px;}
.x9f_c00080{left:614.100000px;}
.xc7_c00080{left:615.150000px;}
.x116_c00080{left:616.500000px;}
.xd8_c00080{left:618.900000px;}
.xd1_c00080{left:621.150000px;}
.xde_c00080{left:622.650000px;}
.xa5_c00080{left:625.350000px;}
.x5a_c00080{left:627.750000px;}
.x94_c00080{left:630.000000px;}
.x4d_c00080{left:631.950000px;}
.xf1_c00080{left:634.050000px;}
.x33_c00080{left:635.100000px;}
.x14c_c00080{left:636.450000px;}
.xbf_c00080{left:639.150000px;}
.x131_c00080{left:640.800000px;}
.x68_c00080{left:644.700000px;}
.xe4_c00080{left:645.750000px;}
.xf_c00080{left:647.850000px;}
.xf2_c00080{left:649.950000px;}
.xd9_c00080{left:651.000000px;}
.xa6_c00080{left:652.350000px;}
.x1d_c00080{left:654.750000px;}
.x124_c00080{left:657.450000px;}
.xc0_c00080{left:659.250000px;}
.x7a_c00080{left:661.050000px;}
.x8c_c00080{left:662.100000px;}
.x142_c00080{left:663.150000px;}
.x70_c00080{left:664.200000px;}
.x10_c00080{left:665.550000px;}
.x3e_c00080{left:668.850000px;}
.x5b_c00080{left:670.650000px;}
.x125_c00080{left:672.600000px;}
.xc8_c00080{left:674.550000px;}
.x7b_c00080{left:675.750000px;}
.x69_c00080{left:677.850000px;}
.xf3_c00080{left:680.550000px;}
.xb9_c00080{left:682.050000px;}
.xd2_c00080{left:684.450000px;}
.x1e_c00080{left:685.650000px;}
.x3f_c00080{left:687.900000px;}
.xff_c00080{left:688.950000px;}
.x6a_c00080{left:691.200000px;}
.xb1_c00080{left:693.300000px;}
.x117_c00080{left:694.650000px;}
.x4e_c00080{left:696.300000px;}
.xec_c00080{left:699.150000px;}
.x6b_c00080{left:702.000000px;}
.x5c_c00080{left:704.100000px;}
.x40_c00080{left:705.600000px;}
.x132_c00080{left:706.650000px;}
.x11_c00080{left:707.700000px;}
.x118_c00080{left:709.800000px;}
.x7c_c00080{left:711.750000px;}
.xe5_c00080{left:713.850000px;}
.x34_c00080{left:715.050000px;}
.x126_c00080{left:717.600000px;}
.x81_c00080{left:720.750000px;}
.xc9_c00080{left:722.400000px;}
.x10c_c00080{left:725.250000px;}
.x12_c00080{left:726.750000px;}
.xd3_c00080{left:727.950000px;}
.x4f_c00080{left:730.200000px;}
.xf8_c00080{left:731.850000px;}
.xf4_c00080{left:734.250000px;}
.x41_c00080{left:738.750000px;}
.x8d_c00080{left:740.850000px;}
.x1f_c00080{left:744.000000px;}
.xd4_c00080{left:747.750000px;}
.xf5_c00080{left:748.950000px;}
.xba_c00080{left:750.150000px;}
.x143_c00080{left:752.100000px;}
.x127_c00080{left:753.300000px;}
.x10d_c00080{left:754.350000px;}
.x95_c00080{left:755.700000px;}
.x13c_c00080{left:756.750000px;}
.x50_c00080{left:758.250000px;}
.x149_c00080{left:759.300000px;}
.x71_c00080{left:760.650000px;}
.xa0_c00080{left:761.700000px;}
.xdf_c00080{left:763.800000px;}
.x7d_c00080{left:765.450000px;}
.x11e_c00080{left:767.250000px;}
.xa7_c00080{left:769.050000px;}
.x82_c00080{left:771.900000px;}
.x35_c00080{left:773.700000px;}
.x96_c00080{left:776.250000px;}
.x20_c00080{left:779.250000px;}
.x8e_c00080{left:780.750000px;}
.x13_c00080{left:782.550000px;}
.xb2_c00080{left:784.350000px;}
.xf9_c00080{left:786.600000px;}
.x112_c00080{left:788.850000px;}
.x100_c00080{left:794.850000px;}
.x144_c00080{left:798.150000px;}
.xb3_c00080{left:799.500000px;}
.x119_c00080{left:803.850000px;}
.x14a_c00080{left:805.800000px;}
.xca_c00080{left:808.800000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.wsc_c00080{word-spacing:-12.666667pt;}
.wsb_c00080{word-spacing:-7.777778pt;}
.ws5_c00080{word-spacing:-5.641026pt;}
.ws3_c00080{word-spacing:-3.867033pt;}
.ws0_c00080{word-spacing:-2.888889pt;}
.ws7_c00080{word-spacing:-2.777778pt;}
.wse_c00080{word-spacing:0.000000pt;}
.ws8_c00080{word-spacing:2.584003pt;}
.ws9_c00080{word-spacing:2.788589pt;}
.wsa_c00080{word-spacing:2.835483pt;}
.ws6_c00080{word-spacing:4.032906pt;}
.ws4_c00080{word-spacing:4.111111pt;}
.ws1_c00080{word-spacing:5.108969pt;}
.ws2_c00080{word-spacing:8.429866pt;}
.wsd_c00080{word-spacing:28.242424pt;}
._0_c00080{width:28.000000pt;}
.fs0_c00080{font-size:48.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y2f_c00080{bottom:141.466667pt;}
.y2e_c00080{bottom:155.200000pt;}
.y2d_c00080{bottom:168.933333pt;}
.y2c_c00080{bottom:183.066667pt;}
.y2b_c00080{bottom:196.800000pt;}
.y2a_c00080{bottom:210.533333pt;}
.y29_c00080{bottom:224.666667pt;}
.y28_c00080{bottom:238.133333pt;}
.y27_c00080{bottom:252.133333pt;}
.y26_c00080{bottom:266.266667pt;}
.y25_c00080{bottom:280.266667pt;}
.y24_c00080{bottom:293.733333pt;}
.y23_c00080{bottom:307.866667pt;}
.y22_c00080{bottom:321.866667pt;}
.y21_c00080{bottom:336.000000pt;}
.y20_c00080{bottom:368.000000pt;}
.y1f_c00080{bottom:385.600000pt;}
.y1e_c00080{bottom:403.333333pt;}
.y1d_c00080{bottom:421.600000pt;}
.y1c_c00080{bottom:439.200000pt;}
.y1b_c00080{bottom:456.800000pt;}
.y1a_c00080{bottom:474.666667pt;}
.y19_c00080{bottom:492.266667pt;}
.y18_c00080{bottom:509.866667pt;}
.y17_c00080{bottom:527.466667pt;}
.y16_c00080{bottom:545.333333pt;}
.y15_c00080{bottom:562.933333pt;}
.y14_c00080{bottom:580.533333pt;}
.y13_c00080{bottom:598.800000pt;}
.y12_c00080{bottom:616.400000pt;}
.y11_c00080{bottom:634.266667pt;}
.y10_c00080{bottom:651.866667pt;}
.yf_c00080{bottom:669.733333pt;}
.ye_c00080{bottom:687.333333pt;}
.yd_c00080{bottom:703.466667pt;}
.yc_c00080{bottom:723.333333pt;}
.yb_c00080{bottom:740.666667pt;}
.ya_c00080{bottom:758.533333pt;}
.y9_c00080{bottom:776.133333pt;}
.y8_c00080{bottom:794.000000pt;}
.y7_c00080{bottom:811.866667pt;}
.y6_c00080{bottom:829.733333pt;}
.y5_c00080{bottom:847.333333pt;}
.y4_c00080{bottom:864.666667pt;}
.y3_c00080{bottom:883.200000pt;}
.y2_c00080{bottom:901.466667pt;}
.y1_c00080{bottom:935.066667pt;}
.h2_c00080{height:48.000000pt;}
.h1_c00080{height:1037.333333pt;}
.h0_c00080{height:1037.439941pt;}
.w0_c00080{width:811.840007pt;}
.w1_c00080{width:812.000000pt;}
.x0_c00080{left:0.000000pt;}
.x21_c00080{left:124.933333pt;}
.x1_c00080{left:126.133333pt;}
.x83_c00080{left:127.466667pt;}
.xda_c00080{left:128.400000pt;}
.xfa_c00080{left:129.333333pt;}
.x138_c00080{left:130.266667pt;}
.xa8_c00080{left:144.666667pt;}
.x7e_c00080{left:145.733333pt;}
.xe6_c00080{left:147.866667pt;}
.x133_c00080{left:149.733333pt;}
.x5d_c00080{left:151.733333pt;}
.x22_c00080{left:152.800000pt;}
.x4_c00080{left:153.866667pt;}
.x84_c00080{left:155.200000pt;}
.x42_c00080{left:156.800000pt;}
.x51_c00080{left:158.533333pt;}
.xcb_c00080{left:160.000000pt;}
.x36_c00080{left:161.600000pt;}
.x5_c00080{left:163.466667pt;}
.x14_c00080{left:165.600000pt;}
.x72_c00080{left:166.933333pt;}
.x11a_c00080{left:168.266667pt;}
.x23_c00080{left:170.400000pt;}
.x12d_c00080{left:172.400000pt;}
.xe7_c00080{left:173.466667pt;}
.x97_c00080{left:174.400000pt;}
.x139_c00080{left:176.000000pt;}
.x150_c00080{left:177.333333pt;}
.x43_c00080{left:182.666667pt;}
.x15_c00080{left:184.533333pt;}
.x52_c00080{left:188.666667pt;}
.x6_c00080{left:190.933333pt;}
.x98_c00080{left:192.666667pt;}
.x10e_c00080{left:193.733333pt;}
.x11f_c00080{left:195.600000pt;}
.x37_c00080{left:196.533333pt;}
.xdb_c00080{left:198.533333pt;}
.x151_c00080{left:200.000000pt;}
.x135_c00080{left:201.600000pt;}
.x5e_c00080{left:203.600000pt;}
.xb4_c00080{left:205.333333pt;}
.x24_c00080{left:206.933333pt;}
.x134_c00080{left:207.866667pt;}
.xe8_c00080{left:210.533333pt;}
.x120_c00080{left:212.266667pt;}
.x8f_c00080{left:215.866667pt;}
.x16_c00080{left:216.800000pt;}
.x85_c00080{left:218.533333pt;}
.x44_c00080{left:220.400000pt;}
.x5f_c00080{left:222.133333pt;}
.x7_c00080{left:223.866667pt;}
.x6c_c00080{left:226.266667pt;}
.xa9_c00080{left:227.866667pt;}
.x38_c00080{left:230.133333pt;}
.xed_c00080{left:231.066667pt;}
.x128_c00080{left:232.000000pt;}
.xb5_c00080{left:234.133333pt;}
.x136_c00080{left:236.800000pt;}
.x45_c00080{left:238.000000pt;}
.xaa_c00080{left:239.733333pt;}
.x73_c00080{left:241.866667pt;}
.x25_c00080{left:244.000000pt;}
.x99_c00080{left:247.066667pt;}
.xe0_c00080{left:248.000000pt;}
.xcc_c00080{left:249.600000pt;}
.x53_c00080{left:251.733333pt;}
.x8_c00080{left:255.200000pt;}
.xab_c00080{left:257.066667pt;}
.x29_c00080{left:258.266667pt;}
.x13e_c00080{left:259.600000pt;}
.xc1_c00080{left:260.533333pt;}
.x26_c00080{left:261.866667pt;}
.x11b_c00080{left:263.866667pt;}
.x101_c00080{left:265.466667pt;}
.x74_c00080{left:266.400000pt;}
.x17_c00080{left:267.733333pt;}
.x129_c00080{left:268.800000pt;}
.xcd_c00080{left:272.266667pt;}
.x54_c00080{left:273.466667pt;}
.x39_c00080{left:274.933333pt;}
.x6d_c00080{left:277.466667pt;}
.x12e_c00080{left:278.400000pt;}
.x9a_c00080{left:279.733333pt;}
.xee_c00080{left:281.600000pt;}
.x27_c00080{left:282.933333pt;}
.x102_c00080{left:284.000000pt;}
.x10f_c00080{left:286.266667pt;}
.x18_c00080{left:287.200000pt;}
.x145_c00080{left:288.266667pt;}
.x2a_c00080{left:290.000000pt;}
.x60_c00080{left:291.200000pt;}
.x9_c00080{left:292.666667pt;}
.x7f_c00080{left:293.733333pt;}
.x75_c00080{left:295.466667pt;}
.x9b_c00080{left:296.400000pt;}
.xd5_c00080{left:297.466667pt;}
.xb6_c00080{left:298.400000pt;}
.x113_c00080{left:299.733333pt;}
.xef_c00080{left:300.800000pt;}
.x12a_c00080{left:302.666667pt;}
.xc2_c00080{left:305.333333pt;}
.x3a_c00080{left:307.200000pt;}
.x14d_c00080{left:308.533333pt;}
.x61_c00080{left:309.466667pt;}
.x103_c00080{left:312.133333pt;}
.xa_c00080{left:314.133333pt;}
.x2b_c00080{left:315.600000pt;}
.xbb_c00080{left:317.733333pt;}
.xdc_c00080{left:319.866667pt;}
.x46_c00080{left:321.200000pt;}
.xce_c00080{left:322.533333pt;}
.x12b_c00080{left:324.800000pt;}
.xf0_c00080{left:326.400000pt;}
.x137_c00080{left:327.333333pt;}
.x6e_c00080{left:328.666667pt;}
.x28_c00080{left:331.200000pt;}
.xac_c00080{left:333.600000pt;}
.xa1_c00080{left:334.933333pt;}
.x121_c00080{left:335.866667pt;}
.xb7_c00080{left:338.400000pt;}
.x86_c00080{left:339.600000pt;}
.x90_c00080{left:341.600000pt;}
.x12f_c00080{left:343.066667pt;}
.xd6_c00080{left:344.133333pt;}
.x2_c00080{left:346.000000pt;}
.x2c_c00080{left:348.533333pt;}
.xb_c00080{left:349.600000pt;}
.x62_c00080{left:352.933333pt;}
.x146_c00080{left:354.266667pt;}
.x114_c00080{left:356.266667pt;}
.x91_c00080{left:359.200000pt;}
.x76_c00080{left:360.133333pt;}
.x55_c00080{left:361.866667pt;}
.x147_c00080{left:363.200000pt;}
.xc3_c00080{left:364.800000pt;}
.xc_c00080{left:366.933333pt;}
.x9c_c00080{left:368.133333pt;}
.x104_c00080{left:369.066667pt;}
.x63_c00080{left:370.800000pt;}
.x47_c00080{left:371.733333pt;}
.xe9_c00080{left:373.466667pt;}
.xcf_c00080{left:375.600000pt;}
.x87_c00080{left:378.000000pt;}
.x77_c00080{left:379.600000pt;}
.x122_c00080{left:380.666667pt;}
.xfb_c00080{left:382.533333pt;}
.xa2_c00080{left:384.266667pt;}
.xc4_c00080{left:385.600000pt;}
.xd_c00080{left:389.600000pt;}
.x10a_c00080{left:391.333333pt;}
.x64_c00080{left:392.266667pt;}
.x2d_c00080{left:393.600000pt;}
.xea_c00080{left:394.533333pt;}
.xb8_c00080{left:395.733333pt;}
.xe1_c00080{left:397.733333pt;}
.xd0_c00080{left:398.666667pt;}
.x3b_c00080{left:399.733333pt;}
.xad_c00080{left:401.600000pt;}
.x105_c00080{left:403.600000pt;}
.x48_c00080{left:405.333333pt;}
.xf6_c00080{left:406.400000pt;}
.x56_c00080{left:408.266667pt;}
.x92_c00080{left:410.133333pt;}
.x2e_c00080{left:411.200000pt;}
.x9d_c00080{left:420.266667pt;}
.xd7_c00080{left:421.600000pt;}
.x110_c00080{left:422.533333pt;}
.xfc_c00080{left:423.466667pt;}
.xbc_c00080{left:425.866667pt;}
.x88_c00080{left:426.933333pt;}
.xe2_c00080{left:428.133333pt;}
.x106_c00080{left:429.200000pt;}
.x49_c00080{left:430.266667pt;}
.xc5_c00080{left:432.266667pt;}
.x3_c00080{left:434.266667pt;}
.x2f_c00080{left:435.200000pt;}
.x13d_c00080{left:436.133333pt;}
.x93_c00080{left:437.333333pt;}
.xa3_c00080{left:438.400000pt;}
.xbd_c00080{left:439.600000pt;}
.x78_c00080{left:443.333333pt;}
.x9e_c00080{left:444.533333pt;}
.x89_c00080{left:446.133333pt;}
.xe3_c00080{left:447.333333pt;}
.x12c_c00080{left:448.933333pt;}
.x65_c00080{left:450.133333pt;}
.x3c_c00080{left:451.866667pt;}
.x19_c00080{left:453.733333pt;}
.x80_c00080{left:456.000000pt;}
.x107_c00080{left:459.333333pt;}
.x123_c00080{left:460.933333pt;}
.xfd_c00080{left:462.800000pt;}
.x4a_c00080{left:464.533333pt;}
.x66_c00080{left:465.866667pt;}
.xdd_c00080{left:467.066667pt;}
.x10b_c00080{left:468.400000pt;}
.x57_c00080{left:470.000000pt;}
.x14e_c00080{left:470.933333pt;}
.x1a_c00080{left:472.000000pt;}
.xbe_c00080{left:474.133333pt;}
.xeb_c00080{left:475.200000pt;}
.x11c_c00080{left:477.733333pt;}
.x115_c00080{left:478.933333pt;}
.xae_c00080{left:480.000000pt;}
.x30_c00080{left:481.333333pt;}
.x13f_c00080{left:482.933333pt;}
.x4b_c00080{left:484.000000pt;}
.x130_c00080{left:487.466667pt;}
.x108_c00080{left:488.400000pt;}
.xfe_c00080{left:490.000000pt;}
.x111_c00080{left:490.933333pt;}
.xc6_c00080{left:493.733333pt;}
.x58_c00080{left:494.666667pt;}
.x13a_c00080{left:498.000000pt;}
.x31_c00080{left:499.200000pt;}
.x3d_c00080{left:500.133333pt;}
.x1b_c00080{left:502.400000pt;}
.x8a_c00080{left:504.666667pt;}
.xf7_c00080{left:505.600000pt;}
.x67_c00080{left:507.200000pt;}
.x4c_c00080{left:508.933333pt;}
.x79_c00080{left:509.866667pt;}
.x148_c00080{left:511.733333pt;}
.xaf_c00080{left:512.666667pt;}
.xe_c00080{left:517.600000pt;}
.x59_c00080{left:521.200000pt;}
.xa4_c00080{left:523.200000pt;}
.x14f_c00080{left:524.400000pt;}
.x1c_c00080{left:527.333333pt;}
.x140_c00080{left:529.333333pt;}
.x109_c00080{left:531.333333pt;}
.x8b_c00080{left:532.800000pt;}
.x32_c00080{left:534.400000pt;}
.x11d_c00080{left:535.600000pt;}
.x14b_c00080{left:536.933333pt;}
.x6f_c00080{left:538.933333pt;}
.x13b_c00080{left:541.200000pt;}
.x141_c00080{left:542.400000pt;}
.xb0_c00080{left:543.333333pt;}
.x9f_c00080{left:545.866667pt;}
.xc7_c00080{left:546.800000pt;}
.x116_c00080{left:548.000000pt;}
.xd8_c00080{left:550.133333pt;}
.xd1_c00080{left:552.133333pt;}
.xde_c00080{left:553.466667pt;}
.xa5_c00080{left:555.866667pt;}
.x5a_c00080{left:558.000000pt;}
.x94_c00080{left:560.000000pt;}
.x4d_c00080{left:561.733333pt;}
.xf1_c00080{left:563.600000pt;}
.x33_c00080{left:564.533333pt;}
.x14c_c00080{left:565.733333pt;}
.xbf_c00080{left:568.133333pt;}
.x131_c00080{left:569.600000pt;}
.x68_c00080{left:573.066667pt;}
.xe4_c00080{left:574.000000pt;}
.xf_c00080{left:575.866667pt;}
.xf2_c00080{left:577.733333pt;}
.xd9_c00080{left:578.666667pt;}
.xa6_c00080{left:579.866667pt;}
.x1d_c00080{left:582.000000pt;}
.x124_c00080{left:584.400000pt;}
.xc0_c00080{left:586.000000pt;}
.x7a_c00080{left:587.600000pt;}
.x8c_c00080{left:588.533333pt;}
.x142_c00080{left:589.466667pt;}
.x70_c00080{left:590.400000pt;}
.x10_c00080{left:591.600000pt;}
.x3e_c00080{left:594.533333pt;}
.x5b_c00080{left:596.133333pt;}
.x125_c00080{left:597.866667pt;}
.xc8_c00080{left:599.600000pt;}
.x7b_c00080{left:600.666667pt;}
.x69_c00080{left:602.533333pt;}
.xf3_c00080{left:604.933333pt;}
.xb9_c00080{left:606.266667pt;}
.xd2_c00080{left:608.400000pt;}
.x1e_c00080{left:609.466667pt;}
.x3f_c00080{left:611.466667pt;}
.xff_c00080{left:612.400000pt;}
.x6a_c00080{left:614.400000pt;}
.xb1_c00080{left:616.266667pt;}
.x117_c00080{left:617.466667pt;}
.x4e_c00080{left:618.933333pt;}
.xec_c00080{left:621.466667pt;}
.x6b_c00080{left:624.000000pt;}
.x5c_c00080{left:625.866667pt;}
.x40_c00080{left:627.200000pt;}
.x132_c00080{left:628.133333pt;}
.x11_c00080{left:629.066667pt;}
.x118_c00080{left:630.933333pt;}
.x7c_c00080{left:632.666667pt;}
.xe5_c00080{left:634.533333pt;}
.x34_c00080{left:635.600000pt;}
.x126_c00080{left:637.866667pt;}
.x81_c00080{left:640.666667pt;}
.xc9_c00080{left:642.133333pt;}
.x10c_c00080{left:644.666667pt;}
.x12_c00080{left:646.000000pt;}
.xd3_c00080{left:647.066667pt;}
.x4f_c00080{left:649.066667pt;}
.xf8_c00080{left:650.533333pt;}
.xf4_c00080{left:652.666667pt;}
.x41_c00080{left:656.666667pt;}
.x8d_c00080{left:658.533333pt;}
.x1f_c00080{left:661.333333pt;}
.xd4_c00080{left:664.666667pt;}
.xf5_c00080{left:665.733333pt;}
.xba_c00080{left:666.800000pt;}
.x143_c00080{left:668.533333pt;}
.x127_c00080{left:669.600000pt;}
.x10d_c00080{left:670.533333pt;}
.x95_c00080{left:671.733333pt;}
.x13c_c00080{left:672.666667pt;}
.x50_c00080{left:674.000000pt;}
.x149_c00080{left:674.933333pt;}
.x71_c00080{left:676.133333pt;}
.xa0_c00080{left:677.066667pt;}
.xdf_c00080{left:678.933333pt;}
.x7d_c00080{left:680.400000pt;}
.x11e_c00080{left:682.000000pt;}
.xa7_c00080{left:683.600000pt;}
.x82_c00080{left:686.133333pt;}
.x35_c00080{left:687.733333pt;}
.x96_c00080{left:690.000000pt;}
.x20_c00080{left:692.666667pt;}
.x8e_c00080{left:694.000000pt;}
.x13_c00080{left:695.600000pt;}
.xb2_c00080{left:697.200000pt;}
.xf9_c00080{left:699.200000pt;}
.x112_c00080{left:701.200000pt;}
.x100_c00080{left:706.533333pt;}
.x144_c00080{left:709.466667pt;}
.xb3_c00080{left:710.666667pt;}
.x119_c00080{left:714.533333pt;}
.x14a_c00080{left:716.266667pt;}
.xca_c00080{left:718.933333pt;}
}





/* 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_c00081 {
    display:none;
  }
  .loading-indicator_c00081.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00081 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_c00081 { 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_c00081" -> "#page-container .classname_c00081")
 */
.pf_c00081 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00081 { /* 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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00081 { /* 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_c00081 { /* 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_c00081 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00081 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00081 {overflow:visible;}
  }
}
.c_c00081 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00081 { /* 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_c00081:after { /* webkit #35443 */
  content: '';
}
.t_c00081:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00081 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 */
}
.__c00081 { /* 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_c00081 { /* info for Javascript */
  display:none;
}
.l_c00081 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00081 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00081 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00081: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_c00081 {
    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_c00081.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00081.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_c00081 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00081{font-family:sans-serif;visibility:hidden;}
.sc__c00081{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
}
.y0_c00081{bottom:0.000000px;}
.h1_c00081{height:1167.000000px;}
.h0_c00081{height:1167.119934px;}
.w0_c00081{width:913.320007px;}
.w1_c00081{width:913.500000px;}
.x0_c00081{left:0.000000px;}
@media print{
.y0_c00081{bottom:0.000000pt;}
.h1_c00081{height:1037.333333pt;}
.h0_c00081{height:1037.439941pt;}
.w0_c00081{width:811.840007pt;}
.w1_c00081{width:812.000000pt;}
.x0_c00081{left:0.000000pt;}
}





/* 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_c00082 {
    display:none;
  }
  .loading-indicator_c00082.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00082 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_c00082 { 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_c00082" -> "#page-container .classname_c00082")
 */
.pf_c00082 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00082 { /* 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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00082 { /* 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_c00082 { /* 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_c00082 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00082 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00082 {overflow:visible;}
  }
}
.c_c00082 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00082 { /* 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_c00082:after { /* webkit #35443 */
  content: '';
}
.t_c00082:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00082 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 */
}
.__c00082 { /* 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_c00082 { /* info for Javascript */
  display:none;
}
.l_c00082 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00082 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00082 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00082: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_c00082 {
    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_c00082.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00082.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_c00082 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00082{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00082;src:url('chunks/assets/font_bd71aae7a7f7bf8706faaef0.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.000000;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;}
.m2_c00082{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3_c00082{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6_c00082{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8_c00082{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1_c00082{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00082{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7_c00082{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9_c00082{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5_c00082{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m0_c00082{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v1_c00082{vertical-align:-3.000000px;}
.v0_c00082{vertical-align:0.000000px;}
.ls0_c00082{letter-spacing:0.000000px;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{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__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00082{word-spacing:0.000000px;}
.ws0_c00082{word-spacing:134.181818px;}
.ws2_c00082{word-spacing:138.250000px;}
.ws1_c00082{word-spacing:530.246225px;}
.fc0_c00082{color:transparent;}
.fs0_c00082{font-size:42.000000px;}
.y0_c00082{bottom:0.000000px;}
.y2_c00082{bottom:1120.650000px;}
.y1_c00082{bottom:1121.400000px;}
.h2_c00082{height:42.000000px;}
.h1_c00082{height:1167.000000px;}
.h0_c00082{height:1167.119934px;}
.w0_c00082{width:913.320007px;}
.w1_c00082{width:913.500000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:84.600000px;}
.x2_c00082{left:134.250000px;}
.x3_c00082{left:180.750000px;}
.x4_c00082{left:229.350000px;}
.x5_c00082{left:325.800000px;}
.x6_c00082{left:374.100000px;}
.x7_c00082{left:420.600000px;}
.x8_c00082{left:469.500000px;}
.x9_c00082{left:516.000000px;}
.xa_c00082{left:659.100000px;}
.xb_c00082{left:706.200000px;}
@media print{
.v1_c00082{vertical-align:-2.666667pt;}
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws3_c00082{word-spacing:0.000000pt;}
.ws0_c00082{word-spacing:119.272727pt;}
.ws2_c00082{word-spacing:122.888889pt;}
.ws1_c00082{word-spacing:471.329978pt;}
.fs0_c00082{font-size:37.333333pt;}
.y0_c00082{bottom:0.000000pt;}
.y2_c00082{bottom:996.133333pt;}
.y1_c00082{bottom:996.800000pt;}
.h2_c00082{height:37.333333pt;}
.h1_c00082{height:1037.333333pt;}
.h0_c00082{height:1037.439941pt;}
.w0_c00082{width:811.840007pt;}
.w1_c00082{width:812.000000pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:75.200000pt;}
.x2_c00082{left:119.333333pt;}
.x3_c00082{left:160.666667pt;}
.x4_c00082{left:203.866667pt;}
.x5_c00082{left:289.600000pt;}
.x6_c00082{left:332.533333pt;}
.x7_c00082{left:373.866667pt;}
.x8_c00082{left:417.333333pt;}
.x9_c00082{left:458.666667pt;}
.xa_c00082{left:585.866667pt;}
.xb_c00082{left:627.733333pt;}
}





/* 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_c00083 {
    display:none;
  }
  .loading-indicator_c00083.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00083 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_c00083 { 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_c00083" -> "#page-container .classname_c00083")
 */
.pf_c00083 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00083 { /* 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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00083 { /* 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_c00083 { /* 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_c00083 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00083 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00083 {overflow:visible;}
  }
}
.c_c00083 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00083 { /* 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_c00083:after { /* webkit #35443 */
  content: '';
}
.t_c00083:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00083 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 */
}
.__c00083 { /* 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_c00083 { /* info for Javascript */
  display:none;
}
.l_c00083 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00083 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00083 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00083: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_c00083 {
    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_c00083.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00083.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_c00083 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00083{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.000000;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;}
.m1_c00083{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m0_c00083{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2_c00083{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3_c00083{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{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__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:0.000000px;}
.fc0_c00083{color:transparent;}
.fs0_c00083{font-size:54.000000px;}
.y0_c00083{bottom:0.000000px;}
.y2_c00083{bottom:15.450000px;}
.y1_c00083{bottom:1112.400000px;}
.h2_c00083{height:54.000000px;}
.h1_c00083{height:1167.000000px;}
.h0_c00083{height:1167.119934px;}
.w0_c00083{width:913.320007px;}
.w1_c00083{width:913.500000px;}
.x0_c00083{left:0.000000px;}
.xa_c00083{left:33.450000px;}
.x1_c00083{left:423.000000px;}
.x2_c00083{left:471.300000px;}
.x3_c00083{left:520.200000px;}
.x4_c00083{left:567.300000px;}
.x5_c00083{left:615.600000px;}
.x6_c00083{left:664.200000px;}
.x7_c00083{left:709.950000px;}
.x8_c00083{left:758.550000px;}
.x9_c00083{left:805.350000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.fs0_c00083{font-size:48.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y2_c00083{bottom:13.733333pt;}
.y1_c00083{bottom:988.800000pt;}
.h2_c00083{height:48.000000pt;}
.h1_c00083{height:1037.333333pt;}
.h0_c00083{height:1037.439941pt;}
.w0_c00083{width:811.840007pt;}
.w1_c00083{width:812.000000pt;}
.x0_c00083{left:0.000000pt;}
.xa_c00083{left:29.733333pt;}
.x1_c00083{left:376.000000pt;}
.x2_c00083{left:418.933333pt;}
.x3_c00083{left:462.400000pt;}
.x4_c00083{left:504.266667pt;}
.x5_c00083{left:547.200000pt;}
.x6_c00083{left:590.400000pt;}
.x7_c00083{left:631.066667pt;}
.x8_c00083{left:674.266667pt;}
.x9_c00083{left:715.866667pt;}
}





/* 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_c00084 {
    display:none;
  }
  .loading-indicator_c00084.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00084 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_c00084 { 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_c00084" -> "#page-container .classname_c00084")
 */
.pf_c00084 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00084 { /* 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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00084 { /* 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_c00084 { /* 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_c00084 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00084 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00084 {overflow:visible;}
  }
}
.c_c00084 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00084 { /* 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_c00084:after { /* webkit #35443 */
  content: '';
}
.t_c00084:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00084 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 */
}
.__c00084 { /* 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_c00084 { /* info for Javascript */
  display:none;
}
.l_c00084 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00084 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00084 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00084: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_c00084 {
    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_c00084.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00084.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_c00084 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00084{font-family:sans-serif;visibility:hidden;}
.sc__c00084{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
}
.y0_c00084{bottom:0.000000px;}
.h1_c00084{height:1167.000000px;}
.h0_c00084{height:1167.119934px;}
.w0_c00084{width:913.320007px;}
.w1_c00084{width:913.500000px;}
.x0_c00084{left:0.000000px;}
@media print{
.y0_c00084{bottom:0.000000pt;}
.h1_c00084{height:1037.333333pt;}
.h0_c00084{height:1037.439941pt;}
.w0_c00084{width:811.840007pt;}
.w1_c00084{width:812.000000pt;}
.x0_c00084{left:0.000000pt;}
}





/* 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_c00085 {
    display:none;
  }
  .loading-indicator_c00085.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00085 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_c00085 { 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_c00085" -> "#page-container .classname_c00085")
 */
.pf_c00085 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00085 { /* 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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00085 { /* 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_c00085 { /* 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_c00085 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00085 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00085 {overflow:visible;}
  }
}
.c_c00085 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00085 { /* 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_c00085:after { /* webkit #35443 */
  content: '';
}
.t_c00085:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00085 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 */
}
.__c00085 { /* 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_c00085 { /* info for Javascript */
  display:none;
}
.l_c00085 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00085 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00085 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00085: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_c00085 {
    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_c00085.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00085.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_c00085 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00085{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.000000;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;}
.m35_c00085{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mc_c00085{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mba_c00085{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00085{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00085{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m47_c00085{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00085{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00085{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m29_c00085{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00085{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m23_c00085{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00085{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00085{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00085{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00085{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m81_c00085{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00085{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00085{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m72_c00085{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m78_c00085{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m90_c00085{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00085{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00085{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00085{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00085{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00085{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00085{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m15_c00085{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00085{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m19_c00085{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00085{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00085{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mad_c00085{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00085{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00085{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m14_c00085{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m85_c00085{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m22_c00085{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m74_c00085{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m20_c00085{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00085{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m56_c00085{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m13_c00085{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00085{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00085{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m60_c00085{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00085{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maa_c00085{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m70_c00085{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00085{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00085{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m65_c00085{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m93_c00085{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m27_c00085{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m48_c00085{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m51_c00085{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00085{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m61_c00085{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m86_c00085{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00085{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00085{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00085{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m10_c00085{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9_c00085{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m83_c00085{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m58_c00085{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m49_c00085{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf_c00085{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00085{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00085{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m34_c00085{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m92_c00085{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00085{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3_c00085{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00085{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00085{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m66_c00085{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00085{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00085{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb_c00085{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00085{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00085{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma_c00085{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00085{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00085{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m54_c00085{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m39_c00085{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md_c00085{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00085{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m43_c00085{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00085{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00085{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4_c00085{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m28_c00085{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m71_c00085{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00085{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00085{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00085{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m55_c00085{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.maf_c00085{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m45_c00085{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5_c00085{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00085{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m75_c00085{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00085{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m12_c00085{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00085{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11_c00085{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00085{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m73_c00085{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m33_c00085{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00085{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00085{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m88_c00085{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m53_c00085{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m79_c00085{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m16_c00085{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00085{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m21_c00085{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00085{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00085{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6_c00085{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00085{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00085{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00085{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m98_c00085{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00085{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00085{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m25_c00085{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00085{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m59_c00085{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m84_c00085{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18_c00085{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m46_c00085{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m96_c00085{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m82_c00085{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m69_c00085{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m40_c00085{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mac_c00085{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m41_c00085{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00085{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m7_c00085{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mae_c00085{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m95_c00085{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m50_c00085{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00085{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m24_c00085{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m32_c00085{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00085{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m26_c00085{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00085{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m52_c00085{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00085{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m91_c00085{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m63_c00085{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00085{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8_c00085{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00085{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m57_c00085{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m37_c00085{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00085{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m99_c00085{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00085{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00085{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m30_c00085{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00085{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m87_c00085{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00085{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00085{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m62_c00085{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m67_c00085{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m42_c00085{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00085{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m44_c00085{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00085{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00085{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m17_c00085{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mab_c00085{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m76_c00085{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2_c00085{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00085{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m80_c00085{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m94_c00085{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m0_c00085{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00085{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00085{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00085{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m36_c00085{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{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__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00085{word-spacing:-6.250000px;}
.wsb_c00085{word-spacing:-5.294118px;}
.ws5_c00085{word-spacing:-5.000000px;}
.ws4_c00085{word-spacing:-3.472222px;}
.wsd_c00085{word-spacing:0.000000px;}
.ws8_c00085{word-spacing:0.277778px;}
.ws6_c00085{word-spacing:1.666667px;}
.ws1_c00085{word-spacing:3.125000px;}
.ws2_c00085{word-spacing:3.333333px;}
.ws9_c00085{word-spacing:4.500000px;}
.wsa_c00085{word-spacing:6.527778px;}
.ws0_c00085{word-spacing:7.500000px;}
.ws3_c00085{word-spacing:14.629630px;}
.wsc_c00085{word-spacing:65.833333px;}
._1_c00085{width:26.617647px;}
._0_c00085{width:38.611111px;}
.fc0_c00085{color:transparent;}
.fs0_c00085{font-size:54.000000px;}
.fs1_c00085{font-size:60.000000px;}
.y0_c00085{bottom:0.000000px;}
.y2c_c00085{bottom:144.300000px;}
.y2b_c00085{bottom:160.200000px;}
.y2a_c00085{bottom:203.400000px;}
.y29_c00085{bottom:223.200000px;}
.y28_c00085{bottom:243.300000px;}
.y27_c00085{bottom:263.100000px;}
.y26_c00085{bottom:282.600000px;}
.y25_c00085{bottom:302.400000px;}
.y24_c00085{bottom:322.500000px;}
.y23_c00085{bottom:342.300000px;}
.y22_c00085{bottom:362.100000px;}
.y21_c00085{bottom:382.500000px;}
.y20_c00085{bottom:402.600000px;}
.y1f_c00085{bottom:422.400000px;}
.y1e_c00085{bottom:442.200000px;}
.y1d_c00085{bottom:462.000000px;}
.y1c_c00085{bottom:481.800000px;}
.y1b_c00085{bottom:501.600000px;}
.y1a_c00085{bottom:521.400000px;}
.y19_c00085{bottom:541.200000px;}
.y18_c00085{bottom:561.300000px;}
.y17_c00085{bottom:581.100000px;}
.y16_c00085{bottom:601.200000px;}
.y15_c00085{bottom:621.000000px;}
.y14_c00085{bottom:641.100000px;}
.y13_c00085{bottom:660.900000px;}
.y12_c00085{bottom:680.700000px;}
.y11_c00085{bottom:700.800000px;}
.y10_c00085{bottom:720.600000px;}
.yf_c00085{bottom:740.400000px;}
.ye_c00085{bottom:760.500000px;}
.yd_c00085{bottom:780.300000px;}
.yc_c00085{bottom:800.100000px;}
.yb_c00085{bottom:820.200000px;}
.ya_c00085{bottom:840.300000px;}
.y9_c00085{bottom:860.100000px;}
.y8_c00085{bottom:880.200000px;}
.y7_c00085{bottom:900.000000px;}
.y6_c00085{bottom:919.800000px;}
.y5_c00085{bottom:939.900000px;}
.y4_c00085{bottom:959.700000px;}
.y3_c00085{bottom:979.800000px;}
.y2_c00085{bottom:999.300000px;}
.y1_c00085{bottom:1037.850000px;}
.h2_c00085{height:54.000000px;}
.h3_c00085{height:60.000000px;}
.h1_c00085{height:1167.000000px;}
.h0_c00085{height:1167.119934px;}
.w0_c00085{width:913.320007px;}
.w1_c00085{width:913.500000px;}
.x0_c00085{left:0.000000px;}
.x71_c00085{left:81.900000px;}
.x4_c00085{left:83.100000px;}
.x72_c00085{left:99.600000px;}
.xe0_c00085{left:101.100000px;}
.x5_c00085{left:102.900000px;}
.x13a_c00085{left:105.450000px;}
.xf7_c00085{left:108.000000px;}
.x7b_c00085{left:109.200000px;}
.xa8_c00085{left:110.250000px;}
.x38_c00085{left:111.450000px;}
.x52_c00085{left:113.700000px;}
.xa2_c00085{left:115.200000px;}
.x64_c00085{left:118.200000px;}
.xe1_c00085{left:119.400000px;}
.x87_c00085{left:121.500000px;}
.xe8_c00085{left:123.450000px;}
.x29_c00085{left:125.700000px;}
.xb2_c00085{left:126.750000px;}
.x6_c00085{left:131.400000px;}
.xa9_c00085{left:135.150000px;}
.x133_c00085{left:136.800000px;}
.x10d_c00085{left:138.300000px;}
.x129_c00085{left:139.950000px;}
.xa3_c00085{left:143.250000px;}
.x7c_c00085{left:146.250000px;}
.x2a_c00085{left:147.600000px;}
.xf2_c00085{left:148.950000px;}
.x43_c00085{left:150.150000px;}
.x18_c00085{left:151.350000px;}
.x53_c00085{left:154.800000px;}
.x107_c00085{left:156.900000px;}
.x65_c00085{left:158.850000px;}
.x121_c00085{left:160.200000px;}
.x44_c00085{left:161.250000px;}
.x114_c00085{left:162.300000px;}
.xbf_c00085{left:165.000000px;}
.x73_c00085{left:168.300000px;}
.xc5_c00085{left:170.850000px;}
.x9c_c00085{left:172.200000px;}
.x126_c00085{left:174.300000px;}
.x19_c00085{left:175.800000px;}
.xeb_c00085{left:176.850000px;}
.xb8_c00085{left:178.200000px;}
.xcc_c00085{left:179.400000px;}
.x11f_c00085{left:182.100000px;}
.x12a_c00085{left:183.150000px;}
.xf8_c00085{left:186.450000px;}
.x39_c00085{left:189.600000px;}
.x45_c00085{left:191.850000px;}
.x7_c00085{left:194.400000px;}
.x136_c00085{left:200.250000px;}
.x117_c00085{left:201.450000px;}
.x12b_c00085{left:202.650000px;}
.xb9_c00085{left:204.450000px;}
.x10e_c00085{left:205.950000px;}
.xf9_c00085{left:207.300000px;}
.xc6_c00085{left:208.350000px;}
.x1a_c00085{left:210.750000px;}
.xaa_c00085{left:212.550000px;}
.x88_c00085{left:213.900000px;}
.x12e_c00085{left:215.100000px;}
.x66_c00085{left:216.450000px;}
.x9d_c00085{left:219.450000px;}
.x54_c00085{left:220.650000px;}
.x137_c00085{left:222.600000px;}
.x8_c00085{left:223.950000px;}
.x7d_c00085{left:228.000000px;}
.x108_c00085{left:229.500000px;}
.x74_c00085{left:230.700000px;}
.xf3_c00085{left:232.050000px;}
.xdb_c00085{left:234.150000px;}
.xd3_c00085{left:236.250000px;}
.xba_c00085{left:237.600000px;}
.x67_c00085{left:240.600000px;}
.x2b_c00085{left:243.600000px;}
.x9_c00085{left:245.250000px;}
.xab_c00085{left:247.800000px;}
.x5e_c00085{left:249.450000px;}
.x134_c00085{left:252.450000px;}
.x1b_c00085{left:253.950000px;}
.xd4_c00085{left:258.900000px;}
.x7e_c00085{left:260.100000px;}
.xcd_c00085{left:264.450000px;}
.x46_c00085{left:266.700000px;}
.x10f_c00085{left:268.650000px;}
.x55_c00085{left:271.350000px;}
.x68_c00085{left:275.100000px;}
.x2c_c00085{left:278.100000px;}
.xa_c00085{left:279.750000px;}
.xc0_c00085{left:280.950000px;}
.x101_c00085{left:282.750000px;}
.xd5_c00085{left:284.100000px;}
.x12f_c00085{left:285.300000px;}
.x3a_c00085{left:286.500000px;}
.xe2_c00085{left:287.700000px;}
.x118_c00085{left:289.200000px;}
.xb3_c00085{left:290.250000px;}
.xce_c00085{left:291.450000px;}
.x90_c00085{left:293.100000px;}
.x89_c00085{left:296.400000px;}
.x2d_c00085{left:300.750000px;}
.xdc_c00085{left:301.800000px;}
.x119_c00085{left:304.650000px;}
.x56_c00085{left:306.300000px;}
.xe3_c00085{left:307.500000px;}
.x1c_c00085{left:308.700000px;}
.xcf_c00085{left:310.950000px;}
.xa4_c00085{left:312.000000px;}
.xfd_c00085{left:313.050000px;}
.x7f_c00085{left:316.650000px;}
.xb_c00085{left:318.600000px;}
.xdd_c00085{left:319.800000px;}
.x110_c00085{left:321.600000px;}
.xd6_c00085{left:323.400000px;}
.x69_c00085{left:325.500000px;}
.x3b_c00085{left:326.850000px;}
.x47_c00085{left:333.000000px;}
.x1d_c00085{left:334.950000px;}
.xc7_c00085{left:336.300000px;}
.x75_c00085{left:337.500000px;}
.xc_c00085{left:339.450000px;}
.xa5_c00085{left:342.300000px;}
.xf4_c00085{left:344.250000px;}
.x1_c00085{left:347.100000px;}
.xec_c00085{left:348.600000px;}
.x130_c00085{left:351.600000px;}
.x8a_c00085{left:352.950000px;}
.x3c_c00085{left:354.150000px;}
.xc1_c00085{left:355.800000px;}
.x97_c00085{left:359.400000px;}
.x111_c00085{left:360.900000px;}
.xe4_c00085{left:363.000000px;}
.xd_c00085{left:364.650000px;}
.x5f_c00085{left:365.700000px;}
.x80_c00085{left:367.800000px;}
.xac_c00085{left:369.150000px;}
.x109_c00085{left:370.200000px;}
.xa6_c00085{left:371.400000px;}
.xb4_c00085{left:372.450000px;}
.x1e_c00085{left:374.250000px;}
.x102_c00085{left:376.800000px;}
.x48_c00085{left:378.750000px;}
.x91_c00085{left:382.500000px;}
.xd7_c00085{left:385.350000px;}
.x2e_c00085{left:386.400000px;}
.x81_c00085{left:388.650000px;}
.x57_c00085{left:391.350000px;}
.x60_c00085{left:392.700000px;}
.x1f_c00085{left:397.350000px;}
.xc8_c00085{left:398.550000px;}
.xed_c00085{left:400.200000px;}
.xb5_c00085{left:403.350000px;}
.xfe_c00085{left:404.400000px;}
.x9e_c00085{left:405.600000px;}
.x98_c00085{left:408.750000px;}
.x58_c00085{left:410.400000px;}
.x6a_c00085{left:411.600000px;}
.x2_c00085{left:414.000000px;}
.xb6_c00085{left:418.800000px;}
.x61_c00085{left:420.750000px;}
.x2f_c00085{left:422.700000px;}
.x3d_c00085{left:424.050000px;}
.xde_c00085{left:426.300000px;}
.x113_c00085{left:427.350000px;}
.x20_c00085{left:431.550000px;}
.xe_c00085{left:433.350000px;}
.x120_c00085{left:435.150000px;}
.x59_c00085{left:437.400000px;}
.x13b_c00085{left:438.900000px;}
.x49_c00085{left:440.250000px;}
.xc2_c00085{left:441.450000px;}
.xad_c00085{left:442.950000px;}
.x3e_c00085{left:444.600000px;}
.xd8_c00085{left:447.300000px;}
.xd0_c00085{left:449.250000px;}
.x103_c00085{left:450.300000px;}
.xfa_c00085{left:451.500000px;}
.x10a_c00085{left:453.000000px;}
.x5a_c00085{left:454.650000px;}
.x92_c00085{left:457.800000px;}
.xc9_c00085{left:459.750000px;}
.xf_c00085{left:461.400000px;}
.x82_c00085{left:462.750000px;}
.x99_c00085{left:466.350000px;}
.x9f_c00085{left:467.550000px;}
.x93_c00085{left:468.900000px;}
.x21_c00085{left:471.150000px;}
.x3f_c00085{left:472.350000px;}
.x6b_c00085{left:474.600000px;}
.x76_c00085{left:477.150000px;}
.x5b_c00085{left:479.850000px;}
.xbb_c00085{left:481.800000px;}
.x30_c00085{left:483.900000px;}
.x4a_c00085{left:486.300000px;}
.xfb_c00085{left:489.300000px;}
.x135_c00085{left:491.400000px;}
.x13c_c00085{left:496.800000px;}
.x11a_c00085{left:498.450000px;}
.x62_c00085{left:499.950000px;}
.x22_c00085{left:502.800000px;}
.x31_c00085{left:505.200000px;}
.xdf_c00085{left:506.850000px;}
.x10b_c00085{left:509.550000px;}
.x5c_c00085{left:510.750000px;}
.x6c_c00085{left:512.400000px;}
.x127_c00085{left:513.600000px;}
.x4b_c00085{left:515.100000px;}
.x122_c00085{left:516.300000px;}
.x10_c00085{left:517.950000px;}
.xe5_c00085{left:519.300000px;}
.xd1_c00085{left:520.650000px;}
.x32_c00085{left:523.200000px;}
.xca_c00085{left:526.050000px;}
.x11_c00085{left:528.450000px;}
.x9a_c00085{left:532.200000px;}
.xae_c00085{left:533.400000px;}
.xa0_c00085{left:537.000000px;}
.x128_c00085{left:539.100000px;}
.x23_c00085{left:540.600000px;}
.xee_c00085{left:542.700000px;}
.xbc_c00085{left:548.100000px;}
.xe6_c00085{left:550.200000px;}
.x9b_c00085{left:552.000000px;}
.x94_c00085{left:553.500000px;}
.x4c_c00085{left:555.450000px;}
.x77_c00085{left:557.700000px;}
.x33_c00085{left:559.200000px;}
.x12_c00085{left:560.850000px;}
.x13d_c00085{left:561.900000px;}
.x138_c00085{left:563.700000px;}
.xe9_c00085{left:566.100000px;}
.x104_c00085{left:569.850000px;}
.x4d_c00085{left:571.950000px;}
.x8b_c00085{left:573.300000px;}
.x40_c00085{left:574.650000px;}
.x13_c00085{left:578.850000px;}
.x24_c00085{left:579.900000px;}
.xef_c00085{left:581.250000px;}
.x11b_c00085{left:583.350000px;}
.x6d_c00085{left:584.400000px;}
.x123_c00085{left:585.450000px;}
.xd9_c00085{left:586.950000px;}
.x83_c00085{left:588.450000px;}
.x95_c00085{left:591.000000px;}
.x8c_c00085{left:593.100000px;}
.x10c_c00085{left:594.150000px;}
.xff_c00085{left:595.200000px;}
.x4e_c00085{left:597.900000px;}
.x25_c00085{left:599.700000px;}
.x115_c00085{left:601.350000px;}
.x34_c00085{left:603.150000px;}
.x14_c00085{left:604.350000px;}
.x131_c00085{left:605.700000px;}
.xd2_c00085{left:607.350000px;}
.x6e_c00085{left:609.300000px;}
.x78_c00085{left:611.400000px;}
.xc3_c00085{left:613.500000px;}
.x105_c00085{left:614.850000px;}
.xaf_c00085{left:618.300000px;}
.x26_c00085{left:619.500000px;}
.x8d_c00085{left:620.850000px;}
.x11c_c00085{left:621.900000px;}
.xcb_c00085{left:623.850000px;}
.x124_c00085{left:625.050000px;}
.x112_c00085{left:626.700000px;}
.xf0_c00085{left:629.850000px;}
.x35_c00085{left:633.000000px;}
.x84_c00085{left:635.250000px;}
.x63_c00085{left:637.050000px;}
.x125_c00085{left:638.700000px;}
.x12c_c00085{left:640.650000px;}
.x139_c00085{left:641.850000px;}
.xf5_c00085{left:643.200000px;}
.x15_c00085{left:646.050000px;}
.x4f_c00085{left:648.600000px;}
.x132_c00085{left:649.950000px;}
.x5d_c00085{left:651.900000px;}
.x100_c00085{left:653.850000px;}
.x85_c00085{left:655.050000px;}
.x11d_c00085{left:656.100000px;}
.xc4_c00085{left:659.250000px;}
.x41_c00085{left:660.300000px;}
.x6f_c00085{left:662.550000px;}
.x79_c00085{left:663.900000px;}
.xea_c00085{left:666.150000px;}
.x11e_c00085{left:668.400000px;}
.x116_c00085{left:669.450000px;}
.x96_c00085{left:670.500000px;}
.x106_c00085{left:674.700000px;}
.x8e_c00085{left:676.950000px;}
.xfc_c00085{left:679.650000px;}
.x50_c00085{left:681.750000px;}
.xbd_c00085{left:683.850000px;}
.x51_c00085{left:687.150000px;}
.xa7_c00085{left:688.500000px;}
.x36_c00085{left:689.550000px;}
.xf1_c00085{left:690.750000px;}
.xda_c00085{left:692.100000px;}
.x27_c00085{left:694.800000px;}
.x70_c00085{left:696.000000px;}
.xb0_c00085{left:697.500000px;}
.xbe_c00085{left:702.150000px;}
.x13e_c00085{left:703.200000px;}
.x16_c00085{left:704.400000px;}
.xb1_c00085{left:708.600000px;}
.x37_c00085{left:710.100000px;}
.x86_c00085{left:711.900000px;}
.x12d_c00085{left:714.150000px;}
.x28_c00085{left:715.350000px;}
.x8f_c00085{left:717.600000px;}
.xa1_c00085{left:719.250000px;}
.xf6_c00085{left:721.050000px;}
.x7a_c00085{left:726.600000px;}
.x17_c00085{left:728.850000px;}
.x42_c00085{left:730.800000px;}
.x3_c00085{left:732.900000px;}
.xe7_c00085{left:736.050000px;}
.xb7_c00085{left:741.750000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws7_c00085{word-spacing:-5.555556pt;}
.wsb_c00085{word-spacing:-4.705882pt;}
.ws5_c00085{word-spacing:-4.444444pt;}
.ws4_c00085{word-spacing:-3.086420pt;}
.wsd_c00085{word-spacing:0.000000pt;}
.ws8_c00085{word-spacing:0.246914pt;}
.ws6_c00085{word-spacing:1.481481pt;}
.ws1_c00085{word-spacing:2.777778pt;}
.ws2_c00085{word-spacing:2.962963pt;}
.ws9_c00085{word-spacing:4.000000pt;}
.wsa_c00085{word-spacing:5.802469pt;}
.ws0_c00085{word-spacing:6.666667pt;}
.ws3_c00085{word-spacing:13.004115pt;}
.wsc_c00085{word-spacing:58.518519pt;}
._1_c00085{width:23.660131pt;}
._0_c00085{width:34.320988pt;}
.fs0_c00085{font-size:48.000000pt;}
.fs1_c00085{font-size:53.333333pt;}
.y0_c00085{bottom:0.000000pt;}
.y2c_c00085{bottom:128.266667pt;}
.y2b_c00085{bottom:142.400000pt;}
.y2a_c00085{bottom:180.800000pt;}
.y29_c00085{bottom:198.400000pt;}
.y28_c00085{bottom:216.266667pt;}
.y27_c00085{bottom:233.866667pt;}
.y26_c00085{bottom:251.200000pt;}
.y25_c00085{bottom:268.800000pt;}
.y24_c00085{bottom:286.666667pt;}
.y23_c00085{bottom:304.266667pt;}
.y22_c00085{bottom:321.866667pt;}
.y21_c00085{bottom:340.000000pt;}
.y20_c00085{bottom:357.866667pt;}
.y1f_c00085{bottom:375.466667pt;}
.y1e_c00085{bottom:393.066667pt;}
.y1d_c00085{bottom:410.666667pt;}
.y1c_c00085{bottom:428.266667pt;}
.y1b_c00085{bottom:445.866667pt;}
.y1a_c00085{bottom:463.466667pt;}
.y19_c00085{bottom:481.066667pt;}
.y18_c00085{bottom:498.933333pt;}
.y17_c00085{bottom:516.533333pt;}
.y16_c00085{bottom:534.400000pt;}
.y15_c00085{bottom:552.000000pt;}
.y14_c00085{bottom:569.866667pt;}
.y13_c00085{bottom:587.466667pt;}
.y12_c00085{bottom:605.066667pt;}
.y11_c00085{bottom:622.933333pt;}
.y10_c00085{bottom:640.533333pt;}
.yf_c00085{bottom:658.133333pt;}
.ye_c00085{bottom:676.000000pt;}
.yd_c00085{bottom:693.600000pt;}
.yc_c00085{bottom:711.200000pt;}
.yb_c00085{bottom:729.066667pt;}
.ya_c00085{bottom:746.933333pt;}
.y9_c00085{bottom:764.533333pt;}
.y8_c00085{bottom:782.400000pt;}
.y7_c00085{bottom:800.000000pt;}
.y6_c00085{bottom:817.600000pt;}
.y5_c00085{bottom:835.466667pt;}
.y4_c00085{bottom:853.066667pt;}
.y3_c00085{bottom:870.933333pt;}
.y2_c00085{bottom:888.266667pt;}
.y1_c00085{bottom:922.533333pt;}
.h2_c00085{height:48.000000pt;}
.h3_c00085{height:53.333333pt;}
.h1_c00085{height:1037.333333pt;}
.h0_c00085{height:1037.439941pt;}
.w0_c00085{width:811.840007pt;}
.w1_c00085{width:812.000000pt;}
.x0_c00085{left:0.000000pt;}
.x71_c00085{left:72.800000pt;}
.x4_c00085{left:73.866667pt;}
.x72_c00085{left:88.533333pt;}
.xe0_c00085{left:89.866667pt;}
.x5_c00085{left:91.466667pt;}
.x13a_c00085{left:93.733333pt;}
.xf7_c00085{left:96.000000pt;}
.x7b_c00085{left:97.066667pt;}
.xa8_c00085{left:98.000000pt;}
.x38_c00085{left:99.066667pt;}
.x52_c00085{left:101.066667pt;}
.xa2_c00085{left:102.400000pt;}
.x64_c00085{left:105.066667pt;}
.xe1_c00085{left:106.133333pt;}
.x87_c00085{left:108.000000pt;}
.xe8_c00085{left:109.733333pt;}
.x29_c00085{left:111.733333pt;}
.xb2_c00085{left:112.666667pt;}
.x6_c00085{left:116.800000pt;}
.xa9_c00085{left:120.133333pt;}
.x133_c00085{left:121.600000pt;}
.x10d_c00085{left:122.933333pt;}
.x129_c00085{left:124.400000pt;}
.xa3_c00085{left:127.333333pt;}
.x7c_c00085{left:130.000000pt;}
.x2a_c00085{left:131.200000pt;}
.xf2_c00085{left:132.400000pt;}
.x43_c00085{left:133.466667pt;}
.x18_c00085{left:134.533333pt;}
.x53_c00085{left:137.600000pt;}
.x107_c00085{left:139.466667pt;}
.x65_c00085{left:141.200000pt;}
.x121_c00085{left:142.400000pt;}
.x44_c00085{left:143.333333pt;}
.x114_c00085{left:144.266667pt;}
.xbf_c00085{left:146.666667pt;}
.x73_c00085{left:149.600000pt;}
.xc5_c00085{left:151.866667pt;}
.x9c_c00085{left:153.066667pt;}
.x126_c00085{left:154.933333pt;}
.x19_c00085{left:156.266667pt;}
.xeb_c00085{left:157.200000pt;}
.xb8_c00085{left:158.400000pt;}
.xcc_c00085{left:159.466667pt;}
.x11f_c00085{left:161.866667pt;}
.x12a_c00085{left:162.800000pt;}
.xf8_c00085{left:165.733333pt;}
.x39_c00085{left:168.533333pt;}
.x45_c00085{left:170.533333pt;}
.x7_c00085{left:172.800000pt;}
.x136_c00085{left:178.000000pt;}
.x117_c00085{left:179.066667pt;}
.x12b_c00085{left:180.133333pt;}
.xb9_c00085{left:181.733333pt;}
.x10e_c00085{left:183.066667pt;}
.xf9_c00085{left:184.266667pt;}
.xc6_c00085{left:185.200000pt;}
.x1a_c00085{left:187.333333pt;}
.xaa_c00085{left:188.933333pt;}
.x88_c00085{left:190.133333pt;}
.x12e_c00085{left:191.200000pt;}
.x66_c00085{left:192.400000pt;}
.x9d_c00085{left:195.066667pt;}
.x54_c00085{left:196.133333pt;}
.x137_c00085{left:197.866667pt;}
.x8_c00085{left:199.066667pt;}
.x7d_c00085{left:202.666667pt;}
.x108_c00085{left:204.000000pt;}
.x74_c00085{left:205.066667pt;}
.xf3_c00085{left:206.266667pt;}
.xdb_c00085{left:208.133333pt;}
.xd3_c00085{left:210.000000pt;}
.xba_c00085{left:211.200000pt;}
.x67_c00085{left:213.866667pt;}
.x2b_c00085{left:216.533333pt;}
.x9_c00085{left:218.000000pt;}
.xab_c00085{left:220.266667pt;}
.x5e_c00085{left:221.733333pt;}
.x134_c00085{left:224.400000pt;}
.x1b_c00085{left:225.733333pt;}
.xd4_c00085{left:230.133333pt;}
.x7e_c00085{left:231.200000pt;}
.xcd_c00085{left:235.066667pt;}
.x46_c00085{left:237.066667pt;}
.x10f_c00085{left:238.800000pt;}
.x55_c00085{left:241.200000pt;}
.x68_c00085{left:244.533333pt;}
.x2c_c00085{left:247.200000pt;}
.xa_c00085{left:248.666667pt;}
.xc0_c00085{left:249.733333pt;}
.x101_c00085{left:251.333333pt;}
.xd5_c00085{left:252.533333pt;}
.x12f_c00085{left:253.600000pt;}
.x3a_c00085{left:254.666667pt;}
.xe2_c00085{left:255.733333pt;}
.x118_c00085{left:257.066667pt;}
.xb3_c00085{left:258.000000pt;}
.xce_c00085{left:259.066667pt;}
.x90_c00085{left:260.533333pt;}
.x89_c00085{left:263.466667pt;}
.x2d_c00085{left:267.333333pt;}
.xdc_c00085{left:268.266667pt;}
.x119_c00085{left:270.800000pt;}
.x56_c00085{left:272.266667pt;}
.xe3_c00085{left:273.333333pt;}
.x1c_c00085{left:274.400000pt;}
.xcf_c00085{left:276.400000pt;}
.xa4_c00085{left:277.333333pt;}
.xfd_c00085{left:278.266667pt;}
.x7f_c00085{left:281.466667pt;}
.xb_c00085{left:283.200000pt;}
.xdd_c00085{left:284.266667pt;}
.x110_c00085{left:285.866667pt;}
.xd6_c00085{left:287.466667pt;}
.x69_c00085{left:289.333333pt;}
.x3b_c00085{left:290.533333pt;}
.x47_c00085{left:296.000000pt;}
.x1d_c00085{left:297.733333pt;}
.xc7_c00085{left:298.933333pt;}
.x75_c00085{left:300.000000pt;}
.xc_c00085{left:301.733333pt;}
.xa5_c00085{left:304.266667pt;}
.xf4_c00085{left:306.000000pt;}
.x1_c00085{left:308.533333pt;}
.xec_c00085{left:309.866667pt;}
.x130_c00085{left:312.533333pt;}
.x8a_c00085{left:313.733333pt;}
.x3c_c00085{left:314.800000pt;}
.xc1_c00085{left:316.266667pt;}
.x97_c00085{left:319.466667pt;}
.x111_c00085{left:320.800000pt;}
.xe4_c00085{left:322.666667pt;}
.xd_c00085{left:324.133333pt;}
.x5f_c00085{left:325.066667pt;}
.x80_c00085{left:326.933333pt;}
.xac_c00085{left:328.133333pt;}
.x109_c00085{left:329.066667pt;}
.xa6_c00085{left:330.133333pt;}
.xb4_c00085{left:331.066667pt;}
.x1e_c00085{left:332.666667pt;}
.x102_c00085{left:334.933333pt;}
.x48_c00085{left:336.666667pt;}
.x91_c00085{left:340.000000pt;}
.xd7_c00085{left:342.533333pt;}
.x2e_c00085{left:343.466667pt;}
.x81_c00085{left:345.466667pt;}
.x57_c00085{left:347.866667pt;}
.x60_c00085{left:349.066667pt;}
.x1f_c00085{left:353.200000pt;}
.xc8_c00085{left:354.266667pt;}
.xed_c00085{left:355.733333pt;}
.xb5_c00085{left:358.533333pt;}
.xfe_c00085{left:359.466667pt;}
.x9e_c00085{left:360.533333pt;}
.x98_c00085{left:363.333333pt;}
.x58_c00085{left:364.800000pt;}
.x6a_c00085{left:365.866667pt;}
.x2_c00085{left:368.000000pt;}
.xb6_c00085{left:372.266667pt;}
.x61_c00085{left:374.000000pt;}
.x2f_c00085{left:375.733333pt;}
.x3d_c00085{left:376.933333pt;}
.xde_c00085{left:378.933333pt;}
.x113_c00085{left:379.866667pt;}
.x20_c00085{left:383.600000pt;}
.xe_c00085{left:385.200000pt;}
.x120_c00085{left:386.800000pt;}
.x59_c00085{left:388.800000pt;}
.x13b_c00085{left:390.133333pt;}
.x49_c00085{left:391.333333pt;}
.xc2_c00085{left:392.400000pt;}
.xad_c00085{left:393.733333pt;}
.x3e_c00085{left:395.200000pt;}
.xd8_c00085{left:397.600000pt;}
.xd0_c00085{left:399.333333pt;}
.x103_c00085{left:400.266667pt;}
.xfa_c00085{left:401.333333pt;}
.x10a_c00085{left:402.666667pt;}
.x5a_c00085{left:404.133333pt;}
.x92_c00085{left:406.933333pt;}
.xc9_c00085{left:408.666667pt;}
.xf_c00085{left:410.133333pt;}
.x82_c00085{left:411.333333pt;}
.x99_c00085{left:414.533333pt;}
.x9f_c00085{left:415.600000pt;}
.x93_c00085{left:416.800000pt;}
.x21_c00085{left:418.800000pt;}
.x3f_c00085{left:419.866667pt;}
.x6b_c00085{left:421.866667pt;}
.x76_c00085{left:424.133333pt;}
.x5b_c00085{left:426.533333pt;}
.xbb_c00085{left:428.266667pt;}
.x30_c00085{left:430.133333pt;}
.x4a_c00085{left:432.266667pt;}
.xfb_c00085{left:434.933333pt;}
.x135_c00085{left:436.800000pt;}
.x13c_c00085{left:441.600000pt;}
.x11a_c00085{left:443.066667pt;}
.x62_c00085{left:444.400000pt;}
.x22_c00085{left:446.933333pt;}
.x31_c00085{left:449.066667pt;}
.xdf_c00085{left:450.533333pt;}
.x10b_c00085{left:452.933333pt;}
.x5c_c00085{left:454.000000pt;}
.x6c_c00085{left:455.466667pt;}
.x127_c00085{left:456.533333pt;}
.x4b_c00085{left:457.866667pt;}
.x122_c00085{left:458.933333pt;}
.x10_c00085{left:460.400000pt;}
.xe5_c00085{left:461.600000pt;}
.xd1_c00085{left:462.800000pt;}
.x32_c00085{left:465.066667pt;}
.xca_c00085{left:467.600000pt;}
.x11_c00085{left:469.733333pt;}
.x9a_c00085{left:473.066667pt;}
.xae_c00085{left:474.133333pt;}
.xa0_c00085{left:477.333333pt;}
.x128_c00085{left:479.200000pt;}
.x23_c00085{left:480.533333pt;}
.xee_c00085{left:482.400000pt;}
.xbc_c00085{left:487.200000pt;}
.xe6_c00085{left:489.066667pt;}
.x9b_c00085{left:490.666667pt;}
.x94_c00085{left:492.000000pt;}
.x4c_c00085{left:493.733333pt;}
.x77_c00085{left:495.733333pt;}
.x33_c00085{left:497.066667pt;}
.x12_c00085{left:498.533333pt;}
.x13d_c00085{left:499.466667pt;}
.x138_c00085{left:501.066667pt;}
.xe9_c00085{left:503.200000pt;}
.x104_c00085{left:506.533333pt;}
.x4d_c00085{left:508.400000pt;}
.x8b_c00085{left:509.600000pt;}
.x40_c00085{left:510.800000pt;}
.x13_c00085{left:514.533333pt;}
.x24_c00085{left:515.466667pt;}
.xef_c00085{left:516.666667pt;}
.x11b_c00085{left:518.533333pt;}
.x6d_c00085{left:519.466667pt;}
.x123_c00085{left:520.400000pt;}
.xd9_c00085{left:521.733333pt;}
.x83_c00085{left:523.066667pt;}
.x95_c00085{left:525.333333pt;}
.x8c_c00085{left:527.200000pt;}
.x10c_c00085{left:528.133333pt;}
.xff_c00085{left:529.066667pt;}
.x4e_c00085{left:531.466667pt;}
.x25_c00085{left:533.066667pt;}
.x115_c00085{left:534.533333pt;}
.x34_c00085{left:536.133333pt;}
.x14_c00085{left:537.200000pt;}
.x131_c00085{left:538.400000pt;}
.xd2_c00085{left:539.866667pt;}
.x6e_c00085{left:541.600000pt;}
.x78_c00085{left:543.466667pt;}
.xc3_c00085{left:545.333333pt;}
.x105_c00085{left:546.533333pt;}
.xaf_c00085{left:549.600000pt;}
.x26_c00085{left:550.666667pt;}
.x8d_c00085{left:551.866667pt;}
.x11c_c00085{left:552.800000pt;}
.xcb_c00085{left:554.533333pt;}
.x124_c00085{left:555.600000pt;}
.x112_c00085{left:557.066667pt;}
.xf0_c00085{left:559.866667pt;}
.x35_c00085{left:562.666667pt;}
.x84_c00085{left:564.666667pt;}
.x63_c00085{left:566.266667pt;}
.x125_c00085{left:567.733333pt;}
.x12c_c00085{left:569.466667pt;}
.x139_c00085{left:570.533333pt;}
.xf5_c00085{left:571.733333pt;}
.x15_c00085{left:574.266667pt;}
.x4f_c00085{left:576.533333pt;}
.x132_c00085{left:577.733333pt;}
.x5d_c00085{left:579.466667pt;}
.x100_c00085{left:581.200000pt;}
.x85_c00085{left:582.266667pt;}
.x11d_c00085{left:583.200000pt;}
.xc4_c00085{left:586.000000pt;}
.x41_c00085{left:586.933333pt;}
.x6f_c00085{left:588.933333pt;}
.x79_c00085{left:590.133333pt;}
.xea_c00085{left:592.133333pt;}
.x11e_c00085{left:594.133333pt;}
.x116_c00085{left:595.066667pt;}
.x96_c00085{left:596.000000pt;}
.x106_c00085{left:599.733333pt;}
.x8e_c00085{left:601.733333pt;}
.xfc_c00085{left:604.133333pt;}
.x50_c00085{left:606.000000pt;}
.xbd_c00085{left:607.866667pt;}
.x51_c00085{left:610.800000pt;}
.xa7_c00085{left:612.000000pt;}
.x36_c00085{left:612.933333pt;}
.xf1_c00085{left:614.000000pt;}
.xda_c00085{left:615.200000pt;}
.x27_c00085{left:617.600000pt;}
.x70_c00085{left:618.666667pt;}
.xb0_c00085{left:620.000000pt;}
.xbe_c00085{left:624.133333pt;}
.x13e_c00085{left:625.066667pt;}
.x16_c00085{left:626.133333pt;}
.xb1_c00085{left:629.866667pt;}
.x37_c00085{left:631.200000pt;}
.x86_c00085{left:632.800000pt;}
.x12d_c00085{left:634.800000pt;}
.x28_c00085{left:635.866667pt;}
.x8f_c00085{left:637.866667pt;}
.xa1_c00085{left:639.333333pt;}
.xf6_c00085{left:640.933333pt;}
.x7a_c00085{left:645.866667pt;}
.x17_c00085{left:647.866667pt;}
.x42_c00085{left:649.600000pt;}
.x3_c00085{left:651.466667pt;}
.xe7_c00085{left:654.266667pt;}
.xb7_c00085{left:659.333333pt;}
}





/* 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_c00086 {
    display:none;
  }
  .loading-indicator_c00086.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00086 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_c00086 { 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_c00086" -> "#page-container .classname_c00086")
 */
.pf_c00086 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00086 { /* 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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00086 { /* 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_c00086 { /* 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_c00086 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00086 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00086 {overflow:visible;}
  }
}
.c_c00086 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00086 { /* 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_c00086:after { /* webkit #35443 */
  content: '';
}
.t_c00086:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00086 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 */
}
.__c00086 { /* 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_c00086 { /* info for Javascript */
  display:none;
}
.l_c00086 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00086 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00086 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00086: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_c00086 {
    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_c00086.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00086.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_c00086 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00086{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00086;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.000000;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;}
.m42_c00086{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.me_c00086{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00086{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c00086{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c00086{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m11_c00086{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4_c00086{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m74_c00086{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m13_c00086{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00086{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m38_c00086{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00086{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00086{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m68_c00086{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00086{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8_c00086{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00086{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00086{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m99_c00086{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m97_c00086{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00086{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m61_c00086{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00086{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m29_c00086{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00086{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00086{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m55_c00086{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m71_c00086{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00086{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m46_c00086{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00086{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m20_c00086{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00086{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00086{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00086{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00086{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00086{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00086{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00086{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m60_c00086{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m19_c00086{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00086{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00086{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m16_c00086{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m90_c00086{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00086{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m50_c00086{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00086{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m79_c00086{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7_c00086{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6_c00086{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m69_c00086{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m84_c00086{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m70_c00086{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00086{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m14_c00086{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00086{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00086{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m27_c00086{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m40_c00086{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m51_c00086{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m30_c00086{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00086{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00086{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00086{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m48_c00086{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m32_c00086{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m58_c00086{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00086{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00086{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m34_c00086{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m98_c00086{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m22_c00086{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m77_c00086{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00086{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m23_c00086{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00086{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00086{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00086{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m39_c00086{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m43_c00086{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00086{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m25_c00086{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00086{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m49_c00086{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m53_c00086{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m33_c00086{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00086{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m95_c00086{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m83_c00086{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m37_c00086{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00086{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m76_c00086{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m63_c00086{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m57_c00086{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m47_c00086{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00086{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00086{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00086{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00086{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00086{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m88_c00086{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m72_c00086{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00086{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00086{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m89_c00086{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m28_c00086{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00086{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00086{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mf_c00086{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m86_c00086{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00086{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb_c00086{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00086{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00086{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00086{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m35_c00086{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9_c00086{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00086{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00086{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m65_c00086{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00086{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00086{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m54_c00086{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00086{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m78_c00086{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m81_c00086{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00086{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00086{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00086{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m96_c00086{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00086{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21_c00086{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00086{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00086{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);}
.m15_c00086{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00086{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00086{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00086{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m91_c00086{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00086{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00086{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m64_c00086{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00086{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m87_c00086{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00086{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00086{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00086{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00086{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m36_c00086{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00086{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m26_c00086{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00086{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00086{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00086{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m24_c00086{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00086{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00086{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00086{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m59_c00086{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m94_c00086{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m92_c00086{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m45_c00086{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m56_c00086{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00086{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00086{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m93_c00086{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00086{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls0_c00086{letter-spacing:0.000000px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{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__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00086{word-spacing:-11.527778px;}
.ws9_c00086{word-spacing:0.000000px;}
.ws5_c00086{word-spacing:0.277778px;}
.ws1_c00086{word-spacing:5.568182px;}
.ws2_c00086{word-spacing:6.388889px;}
.ws0_c00086{word-spacing:8.750000px;}
.ws4_c00086{word-spacing:9.848485px;}
.ws3_c00086{word-spacing:11.052632px;}
.ws6_c00086{word-spacing:21.111111px;}
.ws7_c00086{word-spacing:23.392857px;}
.fc0_c00086{color:transparent;}
.fs0_c00086{font-size:54.000000px;}
.fs1_c00086{font-size:60.000000px;}
.y0_c00086{bottom:0.000000px;}
.y2c_c00086{bottom:147.300000px;}
.y2b_c00086{bottom:187.200000px;}
.y2a_c00086{bottom:207.000000px;}
.y29_c00086{bottom:226.800000px;}
.y28_c00086{bottom:247.050000px;}
.y27_c00086{bottom:267.150000px;}
.y26_c00086{bottom:286.950000px;}
.y25_c00086{bottom:307.200000px;}
.y24_c00086{bottom:327.300000px;}
.y23_c00086{bottom:347.100000px;}
.y22_c00086{bottom:366.600000px;}
.y21_c00086{bottom:386.400000px;}
.y20_c00086{bottom:406.500000px;}
.y1f_c00086{bottom:426.300000px;}
.y1e_c00086{bottom:446.850000px;}
.y1d_c00086{bottom:466.950000px;}
.y1c_c00086{bottom:486.450000px;}
.y1b_c00086{bottom:506.550000px;}
.y1a_c00086{bottom:526.650000px;}
.y19_c00086{bottom:546.750000px;}
.y18_c00086{bottom:566.550000px;}
.y17_c00086{bottom:586.350000px;}
.y16_c00086{bottom:606.450000px;}
.y15_c00086{bottom:626.550000px;}
.y14_c00086{bottom:646.350000px;}
.y13_c00086{bottom:666.450000px;}
.y12_c00086{bottom:686.250000px;}
.y11_c00086{bottom:706.350000px;}
.y10_c00086{bottom:725.850000px;}
.yf_c00086{bottom:745.650000px;}
.ye_c00086{bottom:765.450000px;}
.yd_c00086{bottom:785.550000px;}
.yc_c00086{bottom:805.350000px;}
.yb_c00086{bottom:825.450000px;}
.ya_c00086{bottom:845.250000px;}
.y9_c00086{bottom:865.800000px;}
.y8_c00086{bottom:885.900000px;}
.y7_c00086{bottom:905.700000px;}
.y6_c00086{bottom:924.750000px;}
.y5_c00086{bottom:946.050000px;}
.y4_c00086{bottom:965.850000px;}
.y3_c00086{bottom:985.650000px;}
.y2_c00086{bottom:1005.450000px;}
.y1_c00086{bottom:1044.300000px;}
.h2_c00086{height:54.000000px;}
.h3_c00086{height:60.000000px;}
.h1_c00086{height:1167.000000px;}
.h0_c00086{height:1167.119934px;}
.w0_c00086{width:913.320007px;}
.w1_c00086{width:913.500000px;}
.x0_c00086{left:0.000000px;}
.x70_c00086{left:135.750000px;}
.x13f_c00086{left:139.050000px;}
.x137_c00086{left:140.400000px;}
.xeb_c00086{left:141.600000px;}
.x9a_c00086{left:142.800000px;}
.x34_c00086{left:143.850000px;}
.x1_c00086{left:145.050000px;}
.x13b_c00086{left:152.700000px;}
.x107_c00086{left:158.250000px;}
.xf5_c00086{left:159.450000px;}
.xc0_c00086{left:160.500000px;}
.x24_c00086{left:162.150000px;}
.x71_c00086{left:163.200000px;}
.x60_c00086{left:165.000000px;}
.x114_c00086{left:167.400000px;}
.xec_c00086{left:170.700000px;}
.x7b_c00086{left:172.200000px;}
.x141_c00086{left:173.400000px;}
.x4_c00086{left:176.100000px;}
.xd3_c00086{left:178.500000px;}
.x50_c00086{left:180.900000px;}
.x35_c00086{left:182.700000px;}
.xe4_c00086{left:185.100000px;}
.x42_c00086{left:187.950000px;}
.x61_c00086{left:190.950000px;}
.xc1_c00086{left:192.150000px;}
.x132_c00086{left:193.950000px;}
.x90_c00086{left:195.000000px;}
.xed_c00086{left:196.650000px;}
.xdb_c00086{left:198.750000px;}
.x25_c00086{left:200.250000px;}
.x123_c00086{left:202.650000px;}
.xd4_c00086{left:203.700000px;}
.x45_c00086{left:205.200000px;}
.xfb_c00086{left:206.250000px;}
.xee_c00086{left:207.450000px;}
.x10d_c00086{left:208.500000px;}
.x72_c00086{left:209.700000px;}
.x51_c00086{left:212.250000px;}
.xb7_c00086{left:214.050000px;}
.xaa_c00086{left:216.450000px;}
.xa0_c00086{left:219.900000px;}
.x5_c00086{left:221.850000px;}
.x14_c00086{left:224.550000px;}
.x62_c00086{left:226.650000px;}
.x26_c00086{left:228.300000px;}
.x87_c00086{left:232.350000px;}
.x43_c00086{left:235.800000px;}
.x36_c00086{left:237.450000px;}
.x7c_c00086{left:240.900000px;}
.x6_c00086{left:242.400000px;}
.x52_c00086{left:243.600000px;}
.x63_c00086{left:244.650000px;}
.x11b_c00086{left:246.150000px;}
.xa1_c00086{left:248.400000px;}
.xc5_c00086{left:250.200000px;}
.xf6_c00086{left:252.300000px;}
.x88_c00086{left:253.650000px;}
.xab_c00086{left:255.750000px;}
.x37_c00086{left:257.250000px;}
.x100_c00086{left:258.750000px;}
.x7d_c00086{left:260.400000px;}
.x15_c00086{left:261.600000px;}
.x27_c00086{left:265.350000px;}
.x7_c00086{left:267.900000px;}
.xb8_c00086{left:269.100000px;}
.x53_c00086{left:270.900000px;}
.x91_c00086{left:271.950000px;}
.x89_c00086{left:277.050000px;}
.xc2_c00086{left:281.850000px;}
.x46_c00086{left:282.900000px;}
.x64_c00086{left:284.250000px;}
.x103_c00086{left:286.350000px;}
.xe5_c00086{left:288.000000px;}
.xa2_c00086{left:289.500000px;}
.x133_c00086{left:290.850000px;}
.xac_c00086{left:292.050000px;}
.xdc_c00086{left:293.850000px;}
.x115_c00086{left:295.500000px;}
.x7e_c00086{left:297.450000px;}
.x38_c00086{left:298.650000px;}
.x127_c00086{left:300.900000px;}
.x104_c00086{left:303.300000px;}
.x140_c00086{left:306.000000px;}
.x9b_c00086{left:308.400000px;}
.xad_c00086{left:309.750000px;}
.xef_c00086{left:311.850000px;}
.x39_c00086{left:314.100000px;}
.x145_c00086{left:317.850000px;}
.xfc_c00086{left:318.900000px;}
.x28_c00086{left:320.400000px;}
.x8a_c00086{left:321.750000px;}
.xdd_c00086{left:322.950000px;}
.x73_c00086{left:324.150000px;}
.x47_c00086{left:326.100000px;}
.x128_c00086{left:327.150000px;}
.xf0_c00086{left:328.800000px;}
.x146_c00086{left:330.450000px;}
.x16_c00086{left:331.500000px;}
.xd5_c00086{left:332.700000px;}
.x101_c00086{left:334.350000px;}
.x138_c00086{left:340.200000px;}
.xc6_c00086{left:342.450000px;}
.x44_c00086{left:347.700000px;}
.x9c_c00086{left:349.800000px;}
.x65_c00086{left:352.650000px;}
.x54_c00086{left:354.000000px;}
.x29_c00086{left:355.650000px;}
.x92_c00086{left:358.350000px;}
.x17_c00086{left:359.550000px;}
.x8_c00086{left:360.750000px;}
.x112_c00086{left:363.000000px;}
.x2_c00086{left:364.650000px;}
.xc7_c00086{left:367.950000px;}
.xd6_c00086{left:370.950000px;}
.x55_c00086{left:373.500000px;}
.xfd_c00086{left:375.000000px;}
.x147_c00086{left:376.500000px;}
.x124_c00086{left:377.700000px;}
.xc3_c00086{left:379.050000px;}
.x2a_c00086{left:380.100000px;}
.x9_c00086{left:382.650000px;}
.x148_c00086{left:385.800000px;}
.x66_c00086{left:388.950000px;}
.xae_c00086{left:391.500000px;}
.x74_c00086{left:396.450000px;}
.x10e_c00086{left:400.050000px;}
.x7f_c00086{left:401.250000px;}
.xb9_c00086{left:403.500000px;}
.x56_c00086{left:406.650000px;}
.x2b_c00086{left:408.600000px;}
.x12c_c00086{left:409.650000px;}
.xe6_c00086{left:411.450000px;}
.xf7_c00086{left:412.800000px;}
.xc8_c00086{left:414.450000px;}
.x48_c00086{left:416.850000px;}
.x142_c00086{left:418.500000px;}
.xa_c00086{left:420.750000px;}
.x125_c00086{left:422.700000px;}
.xa3_c00086{left:424.050000px;}
.x75_c00086{left:425.250000px;}
.xd7_c00086{left:426.750000px;}
.x105_c00086{left:429.600000px;}
.xc9_c00086{left:431.400000px;}
.x116_c00086{left:433.050000px;}
.x57_c00086{left:434.400000px;}
.xba_c00086{left:436.200000px;}
.x8b_c00086{left:437.700000px;}
.x126_c00086{left:438.900000px;}
.x12d_c00086{left:440.250000px;}
.x49_c00086{left:441.300000px;}
.xf1_c00086{left:442.950000px;}
.x18_c00086{left:444.150000px;}
.x134_c00086{left:446.250000px;}
.x113_c00086{left:447.900000px;}
.x80_c00086{left:449.100000px;}
.xca_c00086{left:451.500000px;}
.x117_c00086{left:452.850000px;}
.x129_c00086{left:454.200000px;}
.x93_c00086{left:455.850000px;}
.xde_c00086{left:457.650000px;}
.x67_c00086{left:459.900000px;}
.xa4_c00086{left:461.850000px;}
.x3_c00086{left:462.900000px;}
.x19_c00086{left:466.500000px;}
.xd8_c00086{left:472.800000px;}
.x76_c00086{left:474.900000px;}
.xa5_c00086{left:477.000000px;}
.x68_c00086{left:480.450000px;}
.x11c_c00086{left:483.450000px;}
.x118_c00086{left:484.950000px;}
.xbb_c00086{left:486.600000px;}
.x10f_c00086{left:487.950000px;}
.xb_c00086{left:489.150000px;}
.x3a_c00086{left:490.950000px;}
.x81_c00086{left:494.400000px;}
.xdf_c00086{left:495.450000px;}
.xe7_c00086{left:497.100000px;}
.x58_c00086{left:498.450000px;}
.xfe_c00086{left:499.650000px;}
.xaf_c00086{left:501.300000px;}
.x1a_c00086{left:504.600000px;}
.x94_c00086{left:506.550000px;}
.xa6_c00086{left:509.400000px;}
.x2c_c00086{left:511.200000px;}
.x3b_c00086{left:512.550000px;}
.x149_c00086{left:514.050000px;}
.x59_c00086{left:515.400000px;}
.x77_c00086{left:519.150000px;}
.x69_c00086{left:520.800000px;}
.xc_c00086{left:521.850000px;}
.xf8_c00086{left:523.650000px;}
.x4a_c00086{left:525.150000px;}
.x95_c00086{left:527.400000px;}
.x110_c00086{left:529.050000px;}
.x139_c00086{left:530.250000px;}
.x108_c00086{left:531.750000px;}
.xf2_c00086{left:533.700000px;}
.xb0_c00086{left:535.800000px;}
.x1b_c00086{left:537.000000px;}
.x119_c00086{left:539.400000px;}
.x106_c00086{left:541.650000px;}
.xf9_c00086{left:543.150000px;}
.xd9_c00086{left:545.550000px;}
.x78_c00086{left:547.650000px;}
.x6a_c00086{left:550.650000px;}
.x2d_c00086{left:551.850000px;}
.x4b_c00086{left:553.650000px;}
.x96_c00086{left:556.200000px;}
.xc4_c00086{left:557.850000px;}
.xd_c00086{left:559.350000px;}
.xb1_c00086{left:561.750000px;}
.x11d_c00086{left:562.950000px;}
.xd0_c00086{left:564.900000px;}
.x6b_c00086{left:567.600000px;}
.x14a_c00086{left:568.650000px;}
.x5a_c00086{left:569.700000px;}
.x1c_c00086{left:571.500000px;}
.x3c_c00086{left:574.500000px;}
.xcb_c00086{left:576.450000px;}
.x130_c00086{left:578.550000px;}
.xe0_c00086{left:580.050000px;}
.x4c_c00086{left:582.450000px;}
.x102_c00086{left:585.000000px;}
.x1d_c00086{left:588.000000px;}
.x82_c00086{left:592.350000px;}
.x3d_c00086{left:594.000000px;}
.x12a_c00086{left:595.650000px;}
.x6c_c00086{left:597.150000px;}
.xe8_c00086{left:598.650000px;}
.x14b_c00086{left:600.300000px;}
.xe_c00086{left:601.800000px;}
.x5b_c00086{left:603.900000px;}
.xcc_c00086{left:606.000000px;}
.xe9_c00086{left:609.450000px;}
.xb2_c00086{left:613.650000px;}
.x13c_c00086{left:614.700000px;}
.x1e_c00086{left:619.350000px;}
.x83_c00086{left:621.150000px;}
.x135_c00086{left:623.100000px;}
.x2e_c00086{left:624.150000px;}
.x3e_c00086{left:625.650000px;}
.x5c_c00086{left:632.400000px;}
.x8c_c00086{left:633.900000px;}
.x13a_c00086{left:635.400000px;}
.xbc_c00086{left:636.750000px;}
.x9d_c00086{left:638.700000px;}
.x4d_c00086{left:640.350000px;}
.xf3_c00086{left:641.700000px;}
.x13d_c00086{left:642.750000px;}
.xcd_c00086{left:643.800000px;}
.x109_c00086{left:647.250000px;}
.x131_c00086{left:648.750000px;}
.x1f_c00086{left:651.750000px;}
.x97_c00086{left:653.700000px;}
.x8d_c00086{left:654.750000px;}
.x2f_c00086{left:655.800000px;}
.xbd_c00086{left:657.300000px;}
.x12b_c00086{left:658.350000px;}
.xb3_c00086{left:660.000000px;}
.xa7_c00086{left:662.400000px;}
.x11e_c00086{left:663.750000px;}
.x3f_c00086{left:664.950000px;}
.xfa_c00086{left:666.300000px;}
.x20_c00086{left:668.700000px;}
.x6d_c00086{left:672.450000px;}
.x30_c00086{left:674.550000px;}
.xf4_c00086{left:675.600000px;}
.x84_c00086{left:677.700000px;}
.x10a_c00086{left:679.650000px;}
.x11f_c00086{left:681.450000px;}
.xe1_c00086{left:682.650000px;}
.x5d_c00086{left:684.150000px;}
.x12e_c00086{left:686.550000px;}
.x4e_c00086{left:688.200000px;}
.x21_c00086{left:690.300000px;}
.x9e_c00086{left:691.650000px;}
.xf_c00086{left:693.600000px;}
.x40_c00086{left:694.800000px;}
.x10b_c00086{left:696.600000px;}
.xb4_c00086{left:700.350000px;}
.xff_c00086{left:703.200000px;}
.x5e_c00086{left:704.250000px;}
.x10_c00086{left:705.450000px;}
.x136_c00086{left:707.100000px;}
.xe2_c00086{left:708.150000px;}
.x13e_c00086{left:709.650000px;}
.xce_c00086{left:713.250000px;}
.x31_c00086{left:715.950000px;}
.x120_c00086{left:717.750000px;}
.x79_c00086{left:719.700000px;}
.xb5_c00086{left:721.950000px;}
.xea_c00086{left:723.300000px;}
.x85_c00086{left:725.250000px;}
.xbe_c00086{left:727.500000px;}
.x6e_c00086{left:729.000000px;}
.x22_c00086{left:730.950000px;}
.x143_c00086{left:733.500000px;}
.x11_c00086{left:736.050000px;}
.xa8_c00086{left:737.700000px;}
.x32_c00086{left:739.350000px;}
.xda_c00086{left:741.750000px;}
.xd1_c00086{left:744.300000px;}
.xe3_c00086{left:745.950000px;}
.xcf_c00086{left:747.150000px;}
.x98_c00086{left:749.400000px;}
.x33_c00086{left:753.750000px;}
.x121_c00086{left:757.350000px;}
.x5f_c00086{left:759.000000px;}
.x12f_c00086{left:760.050000px;}
.x41_c00086{left:761.700000px;}
.xd2_c00086{left:763.050000px;}
.x8e_c00086{left:764.250000px;}
.x10c_c00086{left:766.500000px;}
.x9f_c00086{left:768.600000px;}
.xbf_c00086{left:769.650000px;}
.xb6_c00086{left:771.300000px;}
.x111_c00086{left:772.350000px;}
.x23_c00086{left:774.900000px;}
.xa9_c00086{left:775.950000px;}
.x12_c00086{left:777.450000px;}
.x99_c00086{left:778.500000px;}
.x4f_c00086{left:781.350000px;}
.x7a_c00086{left:783.450000px;}
.x6f_c00086{left:784.800000px;}
.x11a_c00086{left:786.150000px;}
.x122_c00086{left:787.650000px;}
.x8f_c00086{left:789.750000px;}
.x144_c00086{left:794.400000px;}
.x13_c00086{left:795.450000px;}
.x86_c00086{left:797.550000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws8_c00086{word-spacing:-10.246914pt;}
.ws9_c00086{word-spacing:0.000000pt;}
.ws5_c00086{word-spacing:0.246914pt;}
.ws1_c00086{word-spacing:4.949495pt;}
.ws2_c00086{word-spacing:5.679012pt;}
.ws0_c00086{word-spacing:7.777778pt;}
.ws4_c00086{word-spacing:8.754209pt;}
.ws3_c00086{word-spacing:9.824561pt;}
.ws6_c00086{word-spacing:18.765432pt;}
.ws7_c00086{word-spacing:20.793651pt;}
.fs0_c00086{font-size:48.000000pt;}
.fs1_c00086{font-size:53.333333pt;}
.y0_c00086{bottom:0.000000pt;}
.y2c_c00086{bottom:130.933333pt;}
.y2b_c00086{bottom:166.400000pt;}
.y2a_c00086{bottom:184.000000pt;}
.y29_c00086{bottom:201.600000pt;}
.y28_c00086{bottom:219.600000pt;}
.y27_c00086{bottom:237.466667pt;}
.y26_c00086{bottom:255.066667pt;}
.y25_c00086{bottom:273.066667pt;}
.y24_c00086{bottom:290.933333pt;}
.y23_c00086{bottom:308.533333pt;}
.y22_c00086{bottom:325.866667pt;}
.y21_c00086{bottom:343.466667pt;}
.y20_c00086{bottom:361.333333pt;}
.y1f_c00086{bottom:378.933333pt;}
.y1e_c00086{bottom:397.200000pt;}
.y1d_c00086{bottom:415.066667pt;}
.y1c_c00086{bottom:432.400000pt;}
.y1b_c00086{bottom:450.266667pt;}
.y1a_c00086{bottom:468.133333pt;}
.y19_c00086{bottom:486.000000pt;}
.y18_c00086{bottom:503.600000pt;}
.y17_c00086{bottom:521.200000pt;}
.y16_c00086{bottom:539.066667pt;}
.y15_c00086{bottom:556.933333pt;}
.y14_c00086{bottom:574.533333pt;}
.y13_c00086{bottom:592.400000pt;}
.y12_c00086{bottom:610.000000pt;}
.y11_c00086{bottom:627.866667pt;}
.y10_c00086{bottom:645.200000pt;}
.yf_c00086{bottom:662.800000pt;}
.ye_c00086{bottom:680.400000pt;}
.yd_c00086{bottom:698.266667pt;}
.yc_c00086{bottom:715.866667pt;}
.yb_c00086{bottom:733.733333pt;}
.ya_c00086{bottom:751.333333pt;}
.y9_c00086{bottom:769.600000pt;}
.y8_c00086{bottom:787.466667pt;}
.y7_c00086{bottom:805.066667pt;}
.y6_c00086{bottom:822.000000pt;}
.y5_c00086{bottom:840.933333pt;}
.y4_c00086{bottom:858.533333pt;}
.y3_c00086{bottom:876.133333pt;}
.y2_c00086{bottom:893.733333pt;}
.y1_c00086{bottom:928.266667pt;}
.h2_c00086{height:48.000000pt;}
.h3_c00086{height:53.333333pt;}
.h1_c00086{height:1037.333333pt;}
.h0_c00086{height:1037.439941pt;}
.w0_c00086{width:811.840007pt;}
.w1_c00086{width:812.000000pt;}
.x0_c00086{left:0.000000pt;}
.x70_c00086{left:120.666667pt;}
.x13f_c00086{left:123.600000pt;}
.x137_c00086{left:124.800000pt;}
.xeb_c00086{left:125.866667pt;}
.x9a_c00086{left:126.933333pt;}
.x34_c00086{left:127.866667pt;}
.x1_c00086{left:128.933333pt;}
.x13b_c00086{left:135.733333pt;}
.x107_c00086{left:140.666667pt;}
.xf5_c00086{left:141.733333pt;}
.xc0_c00086{left:142.666667pt;}
.x24_c00086{left:144.133333pt;}
.x71_c00086{left:145.066667pt;}
.x60_c00086{left:146.666667pt;}
.x114_c00086{left:148.800000pt;}
.xec_c00086{left:151.733333pt;}
.x7b_c00086{left:153.066667pt;}
.x141_c00086{left:154.133333pt;}
.x4_c00086{left:156.533333pt;}
.xd3_c00086{left:158.666667pt;}
.x50_c00086{left:160.800000pt;}
.x35_c00086{left:162.400000pt;}
.xe4_c00086{left:164.533333pt;}
.x42_c00086{left:167.066667pt;}
.x61_c00086{left:169.733333pt;}
.xc1_c00086{left:170.800000pt;}
.x132_c00086{left:172.400000pt;}
.x90_c00086{left:173.333333pt;}
.xed_c00086{left:174.800000pt;}
.xdb_c00086{left:176.666667pt;}
.x25_c00086{left:178.000000pt;}
.x123_c00086{left:180.133333pt;}
.xd4_c00086{left:181.066667pt;}
.x45_c00086{left:182.400000pt;}
.xfb_c00086{left:183.333333pt;}
.xee_c00086{left:184.400000pt;}
.x10d_c00086{left:185.333333pt;}
.x72_c00086{left:186.400000pt;}
.x51_c00086{left:188.666667pt;}
.xb7_c00086{left:190.266667pt;}
.xaa_c00086{left:192.400000pt;}
.xa0_c00086{left:195.466667pt;}
.x5_c00086{left:197.200000pt;}
.x14_c00086{left:199.600000pt;}
.x62_c00086{left:201.466667pt;}
.x26_c00086{left:202.933333pt;}
.x87_c00086{left:206.533333pt;}
.x43_c00086{left:209.600000pt;}
.x36_c00086{left:211.066667pt;}
.x7c_c00086{left:214.133333pt;}
.x6_c00086{left:215.466667pt;}
.x52_c00086{left:216.533333pt;}
.x63_c00086{left:217.466667pt;}
.x11b_c00086{left:218.800000pt;}
.xa1_c00086{left:220.800000pt;}
.xc5_c00086{left:222.400000pt;}
.xf6_c00086{left:224.266667pt;}
.x88_c00086{left:225.466667pt;}
.xab_c00086{left:227.333333pt;}
.x37_c00086{left:228.666667pt;}
.x100_c00086{left:230.000000pt;}
.x7d_c00086{left:231.466667pt;}
.x15_c00086{left:232.533333pt;}
.x27_c00086{left:235.866667pt;}
.x7_c00086{left:238.133333pt;}
.xb8_c00086{left:239.200000pt;}
.x53_c00086{left:240.800000pt;}
.x91_c00086{left:241.733333pt;}
.x89_c00086{left:246.266667pt;}
.xc2_c00086{left:250.533333pt;}
.x46_c00086{left:251.466667pt;}
.x64_c00086{left:252.666667pt;}
.x103_c00086{left:254.533333pt;}
.xe5_c00086{left:256.000000pt;}
.xa2_c00086{left:257.333333pt;}
.x133_c00086{left:258.533333pt;}
.xac_c00086{left:259.600000pt;}
.xdc_c00086{left:261.200000pt;}
.x115_c00086{left:262.666667pt;}
.x7e_c00086{left:264.400000pt;}
.x38_c00086{left:265.466667pt;}
.x127_c00086{left:267.466667pt;}
.x104_c00086{left:269.600000pt;}
.x140_c00086{left:272.000000pt;}
.x9b_c00086{left:274.133333pt;}
.xad_c00086{left:275.333333pt;}
.xef_c00086{left:277.200000pt;}
.x39_c00086{left:279.200000pt;}
.x145_c00086{left:282.533333pt;}
.xfc_c00086{left:283.466667pt;}
.x28_c00086{left:284.800000pt;}
.x8a_c00086{left:286.000000pt;}
.xdd_c00086{left:287.066667pt;}
.x73_c00086{left:288.133333pt;}
.x47_c00086{left:289.866667pt;}
.x128_c00086{left:290.800000pt;}
.xf0_c00086{left:292.266667pt;}
.x146_c00086{left:293.733333pt;}
.x16_c00086{left:294.666667pt;}
.xd5_c00086{left:295.733333pt;}
.x101_c00086{left:297.200000pt;}
.x138_c00086{left:302.400000pt;}
.xc6_c00086{left:304.400000pt;}
.x44_c00086{left:309.066667pt;}
.x9c_c00086{left:310.933333pt;}
.x65_c00086{left:313.466667pt;}
.x54_c00086{left:314.666667pt;}
.x29_c00086{left:316.133333pt;}
.x92_c00086{left:318.533333pt;}
.x17_c00086{left:319.600000pt;}
.x8_c00086{left:320.666667pt;}
.x112_c00086{left:322.666667pt;}
.x2_c00086{left:324.133333pt;}
.xc7_c00086{left:327.066667pt;}
.xd6_c00086{left:329.733333pt;}
.x55_c00086{left:332.000000pt;}
.xfd_c00086{left:333.333333pt;}
.x147_c00086{left:334.666667pt;}
.x124_c00086{left:335.733333pt;}
.xc3_c00086{left:336.933333pt;}
.x2a_c00086{left:337.866667pt;}
.x9_c00086{left:340.133333pt;}
.x148_c00086{left:342.933333pt;}
.x66_c00086{left:345.733333pt;}
.xae_c00086{left:348.000000pt;}
.x74_c00086{left:352.400000pt;}
.x10e_c00086{left:355.600000pt;}
.x7f_c00086{left:356.666667pt;}
.xb9_c00086{left:358.666667pt;}
.x56_c00086{left:361.466667pt;}
.x2b_c00086{left:363.200000pt;}
.x12c_c00086{left:364.133333pt;}
.xe6_c00086{left:365.733333pt;}
.xf7_c00086{left:366.933333pt;}
.xc8_c00086{left:368.400000pt;}
.x48_c00086{left:370.533333pt;}
.x142_c00086{left:372.000000pt;}
.xa_c00086{left:374.000000pt;}
.x125_c00086{left:375.733333pt;}
.xa3_c00086{left:376.933333pt;}
.x75_c00086{left:378.000000pt;}
.xd7_c00086{left:379.333333pt;}
.x105_c00086{left:381.866667pt;}
.xc9_c00086{left:383.466667pt;}
.x116_c00086{left:384.933333pt;}
.x57_c00086{left:386.133333pt;}
.xba_c00086{left:387.733333pt;}
.x8b_c00086{left:389.066667pt;}
.x126_c00086{left:390.133333pt;}
.x12d_c00086{left:391.333333pt;}
.x49_c00086{left:392.266667pt;}
.xf1_c00086{left:393.733333pt;}
.x18_c00086{left:394.800000pt;}
.x134_c00086{left:396.666667pt;}
.x113_c00086{left:398.133333pt;}
.x80_c00086{left:399.200000pt;}
.xca_c00086{left:401.333333pt;}
.x117_c00086{left:402.533333pt;}
.x129_c00086{left:403.733333pt;}
.x93_c00086{left:405.200000pt;}
.xde_c00086{left:406.800000pt;}
.x67_c00086{left:408.800000pt;}
.xa4_c00086{left:410.533333pt;}
.x3_c00086{left:411.466667pt;}
.x19_c00086{left:414.666667pt;}
.xd8_c00086{left:420.266667pt;}
.x76_c00086{left:422.133333pt;}
.xa5_c00086{left:424.000000pt;}
.x68_c00086{left:427.066667pt;}
.x11c_c00086{left:429.733333pt;}
.x118_c00086{left:431.066667pt;}
.xbb_c00086{left:432.533333pt;}
.x10f_c00086{left:433.733333pt;}
.xb_c00086{left:434.800000pt;}
.x3a_c00086{left:436.400000pt;}
.x81_c00086{left:439.466667pt;}
.xdf_c00086{left:440.400000pt;}
.xe7_c00086{left:441.866667pt;}
.x58_c00086{left:443.066667pt;}
.xfe_c00086{left:444.133333pt;}
.xaf_c00086{left:445.600000pt;}
.x1a_c00086{left:448.533333pt;}
.x94_c00086{left:450.266667pt;}
.xa6_c00086{left:452.800000pt;}
.x2c_c00086{left:454.400000pt;}
.x3b_c00086{left:455.600000pt;}
.x149_c00086{left:456.933333pt;}
.x59_c00086{left:458.133333pt;}
.x77_c00086{left:461.466667pt;}
.x69_c00086{left:462.933333pt;}
.xc_c00086{left:463.866667pt;}
.xf8_c00086{left:465.466667pt;}
.x4a_c00086{left:466.800000pt;}
.x95_c00086{left:468.800000pt;}
.x110_c00086{left:470.266667pt;}
.x139_c00086{left:471.333333pt;}
.x108_c00086{left:472.666667pt;}
.xf2_c00086{left:474.400000pt;}
.xb0_c00086{left:476.266667pt;}
.x1b_c00086{left:477.333333pt;}
.x119_c00086{left:479.466667pt;}
.x106_c00086{left:481.466667pt;}
.xf9_c00086{left:482.800000pt;}
.xd9_c00086{left:484.933333pt;}
.x78_c00086{left:486.800000pt;}
.x6a_c00086{left:489.466667pt;}
.x2d_c00086{left:490.533333pt;}
.x4b_c00086{left:492.133333pt;}
.x96_c00086{left:494.400000pt;}
.xc4_c00086{left:495.866667pt;}
.xd_c00086{left:497.200000pt;}
.xb1_c00086{left:499.333333pt;}
.x11d_c00086{left:500.400000pt;}
.xd0_c00086{left:502.133333pt;}
.x6b_c00086{left:504.533333pt;}
.x14a_c00086{left:505.466667pt;}
.x5a_c00086{left:506.400000pt;}
.x1c_c00086{left:508.000000pt;}
.x3c_c00086{left:510.666667pt;}
.xcb_c00086{left:512.400000pt;}
.x130_c00086{left:514.266667pt;}
.xe0_c00086{left:515.600000pt;}
.x4c_c00086{left:517.733333pt;}
.x102_c00086{left:520.000000pt;}
.x1d_c00086{left:522.666667pt;}
.x82_c00086{left:526.533333pt;}
.x3d_c00086{left:528.000000pt;}
.x12a_c00086{left:529.466667pt;}
.x6c_c00086{left:530.800000pt;}
.xe8_c00086{left:532.133333pt;}
.x14b_c00086{left:533.600000pt;}
.xe_c00086{left:534.933333pt;}
.x5b_c00086{left:536.800000pt;}
.xcc_c00086{left:538.666667pt;}
.xe9_c00086{left:541.733333pt;}
.xb2_c00086{left:545.466667pt;}
.x13c_c00086{left:546.400000pt;}
.x1e_c00086{left:550.533333pt;}
.x83_c00086{left:552.133333pt;}
.x135_c00086{left:553.866667pt;}
.x2e_c00086{left:554.800000pt;}
.x3e_c00086{left:556.133333pt;}
.x5c_c00086{left:562.133333pt;}
.x8c_c00086{left:563.466667pt;}
.x13a_c00086{left:564.800000pt;}
.xbc_c00086{left:566.000000pt;}
.x9d_c00086{left:567.733333pt;}
.x4d_c00086{left:569.200000pt;}
.xf3_c00086{left:570.400000pt;}
.x13d_c00086{left:571.333333pt;}
.xcd_c00086{left:572.266667pt;}
.x109_c00086{left:575.333333pt;}
.x131_c00086{left:576.666667pt;}
.x1f_c00086{left:579.333333pt;}
.x97_c00086{left:581.066667pt;}
.x8d_c00086{left:582.000000pt;}
.x2f_c00086{left:582.933333pt;}
.xbd_c00086{left:584.266667pt;}
.x12b_c00086{left:585.200000pt;}
.xb3_c00086{left:586.666667pt;}
.xa7_c00086{left:588.800000pt;}
.x11e_c00086{left:590.000000pt;}
.x3f_c00086{left:591.066667pt;}
.xfa_c00086{left:592.266667pt;}
.x20_c00086{left:594.400000pt;}
.x6d_c00086{left:597.733333pt;}
.x30_c00086{left:599.600000pt;}
.xf4_c00086{left:600.533333pt;}
.x84_c00086{left:602.400000pt;}
.x10a_c00086{left:604.133333pt;}
.x11f_c00086{left:605.733333pt;}
.xe1_c00086{left:606.800000pt;}
.x5d_c00086{left:608.133333pt;}
.x12e_c00086{left:610.266667pt;}
.x4e_c00086{left:611.733333pt;}
.x21_c00086{left:613.600000pt;}
.x9e_c00086{left:614.800000pt;}
.xf_c00086{left:616.533333pt;}
.x40_c00086{left:617.600000pt;}
.x10b_c00086{left:619.200000pt;}
.xb4_c00086{left:622.533333pt;}
.xff_c00086{left:625.066667pt;}
.x5e_c00086{left:626.000000pt;}
.x10_c00086{left:627.066667pt;}
.x136_c00086{left:628.533333pt;}
.xe2_c00086{left:629.466667pt;}
.x13e_c00086{left:630.800000pt;}
.xce_c00086{left:634.000000pt;}
.x31_c00086{left:636.400000pt;}
.x120_c00086{left:638.000000pt;}
.x79_c00086{left:639.733333pt;}
.xb5_c00086{left:641.733333pt;}
.xea_c00086{left:642.933333pt;}
.x85_c00086{left:644.666667pt;}
.xbe_c00086{left:646.666667pt;}
.x6e_c00086{left:648.000000pt;}
.x22_c00086{left:649.733333pt;}
.x143_c00086{left:652.000000pt;}
.x11_c00086{left:654.266667pt;}
.xa8_c00086{left:655.733333pt;}
.x32_c00086{left:657.200000pt;}
.xda_c00086{left:659.333333pt;}
.xd1_c00086{left:661.600000pt;}
.xe3_c00086{left:663.066667pt;}
.xcf_c00086{left:664.133333pt;}
.x98_c00086{left:666.133333pt;}
.x33_c00086{left:670.000000pt;}
.x121_c00086{left:673.200000pt;}
.x5f_c00086{left:674.666667pt;}
.x12f_c00086{left:675.600000pt;}
.x41_c00086{left:677.066667pt;}
.xd2_c00086{left:678.266667pt;}
.x8e_c00086{left:679.333333pt;}
.x10c_c00086{left:681.333333pt;}
.x9f_c00086{left:683.200000pt;}
.xbf_c00086{left:684.133333pt;}
.xb6_c00086{left:685.600000pt;}
.x111_c00086{left:686.533333pt;}
.x23_c00086{left:688.800000pt;}
.xa9_c00086{left:689.733333pt;}
.x12_c00086{left:691.066667pt;}
.x99_c00086{left:692.000000pt;}
.x4f_c00086{left:694.533333pt;}
.x7a_c00086{left:696.400000pt;}
.x6f_c00086{left:697.600000pt;}
.x11a_c00086{left:698.800000pt;}
.x122_c00086{left:700.133333pt;}
.x8f_c00086{left:702.000000pt;}
.x144_c00086{left:706.133333pt;}
.x13_c00086{left:707.066667pt;}
.x86_c00086{left:708.933333pt;}
}





/* 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_c00087 {
    display:none;
  }
  .loading-indicator_c00087.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00087 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_c00087 { 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_c00087" -> "#page-container .classname_c00087")
 */
.pf_c00087 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00087 { /* 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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00087 { /* 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_c00087 { /* 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_c00087 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00087 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00087 {overflow:visible;}
  }
}
.c_c00087 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00087 { /* 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_c00087:after { /* webkit #35443 */
  content: '';
}
.t_c00087:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00087 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 */
}
.__c00087 { /* 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_c00087 { /* info for Javascript */
  display:none;
}
.l_c00087 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00087 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00087 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00087: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_c00087 {
    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_c00087.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00087.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_c00087 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00087{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.000000;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;}
.m46_c00087{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m70_c00087{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00087{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00087{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m71_c00087{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m23_c00087{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m57_c00087{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m29_c00087{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00087{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00087{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m36_c00087{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00087{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m35_c00087{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00087{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00087{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00087{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00087{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00087{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m79_c00087{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m76_c00087{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00087{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m68_c00087{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m16_c00087{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00087{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m21_c00087{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m89_c00087{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m20_c00087{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00087{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00087{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m63_c00087{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00087{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m94_c00087{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7_c00087{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m93_c00087{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00087{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00087{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m60_c00087{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m80_c00087{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00087{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00087{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m86_c00087{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00087{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m53_c00087{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m37_c00087{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m64_c00087{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00087{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m45_c00087{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m65_c00087{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m33_c00087{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m50_c00087{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00087{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m48_c00087{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00087{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00087{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m99_c00087{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m22_c00087{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m67_c00087{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00087{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m82_c00087{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00087{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.me_c00087{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m38_c00087{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m77_c00087{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m91_c00087{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m69_c00087{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00087{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00087{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00087{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00087{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m27_c00087{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m85_c00087{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00087{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00087{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00087{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m92_c00087{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m47_c00087{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m42_c00087{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00087{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00087{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00087{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m41_c00087{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00087{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m40_c00087{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m25_c00087{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m97_c00087{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00087{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m11_c00087{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m24_c00087{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00087{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m31_c00087{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m10_c00087{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00087{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00087{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00087{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00087{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00087{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m62_c00087{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md_c00087{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m49_c00087{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6_c00087{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00087{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m96_c00087{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00087{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m83_c00087{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m95_c00087{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00087{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00087{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m43_c00087{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m30_c00087{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m84_c00087{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00087{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m26_c00087{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00087{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m73_c00087{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00087{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m87_c00087{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m59_c00087{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m72_c00087{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m90_c00087{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m56_c00087{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00087{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m54_c00087{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00087{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);}
.m4_c00087{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00087{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00087{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28_c00087{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m51_c00087{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00087{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00087{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m14_c00087{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m55_c00087{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m58_c00087{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00087{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00087{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m34_c00087{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00087{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00087{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m52_c00087{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00087{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00087{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m61_c00087{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00087{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00087{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m74_c00087{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m88_c00087{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00087{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1_c00087{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00087{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m81_c00087{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m98_c00087{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m66_c00087{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls0_c00087{letter-spacing:0.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{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__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00087{word-spacing:-6.052632px;}
.ws5_c00087{word-spacing:-4.861111px;}
.ws7_c00087{word-spacing:0.000000px;}
.ws2_c00087{word-spacing:3.658537px;}
.ws3_c00087{word-spacing:5.555556px;}
.ws6_c00087{word-spacing:10.294118px;}
.ws0_c00087{word-spacing:13.472222px;}
.ws4_c00087{word-spacing:14.861111px;}
.fc0_c00087{color:transparent;}
.fs0_c00087{font-size:54.000000px;}
.fs1_c00087{font-size:60.000000px;}
.y0_c00087{bottom:0.000000px;}
.y2d_c00087{bottom:149.700000px;}
.y2c_c00087{bottom:170.100000px;}
.y2b_c00087{bottom:190.200000px;}
.y2a_c00087{bottom:210.000000px;}
.y29_c00087{bottom:230.100000px;}
.y28_c00087{bottom:249.900000px;}
.y27_c00087{bottom:269.700000px;}
.y26_c00087{bottom:289.800000px;}
.y25_c00087{bottom:309.600000px;}
.y24_c00087{bottom:329.700000px;}
.y23_c00087{bottom:349.500000px;}
.y22_c00087{bottom:369.300000px;}
.y21_c00087{bottom:389.850000px;}
.y20_c00087{bottom:409.800000px;}
.y1f_c00087{bottom:429.600000px;}
.y1e_c00087{bottom:449.400000px;}
.y1d_c00087{bottom:469.200000px;}
.y1c_c00087{bottom:489.300000px;}
.y1b_c00087{bottom:509.100000px;}
.y1a_c00087{bottom:529.200000px;}
.y19_c00087{bottom:549.000000px;}
.y18_c00087{bottom:568.800000px;}
.y17_c00087{bottom:588.600000px;}
.y16_c00087{bottom:608.700000px;}
.y15_c00087{bottom:628.350000px;}
.y14_c00087{bottom:648.900000px;}
.y13_c00087{bottom:669.000000px;}
.y12_c00087{bottom:688.800000px;}
.y11_c00087{bottom:708.600000px;}
.y10_c00087{bottom:728.700000px;}
.yf_c00087{bottom:748.500000px;}
.ye_c00087{bottom:768.750000px;}
.yd_c00087{bottom:788.550000px;}
.yc_c00087{bottom:808.650000px;}
.yb_c00087{bottom:828.750000px;}
.ya_c00087{bottom:848.850000px;}
.y9_c00087{bottom:868.950000px;}
.y8_c00087{bottom:888.750000px;}
.y7_c00087{bottom:908.850000px;}
.y6_c00087{bottom:928.950000px;}
.y5_c00087{bottom:949.050000px;}
.y4_c00087{bottom:968.850000px;}
.y3_c00087{bottom:988.950000px;}
.y2_c00087{bottom:1008.750000px;}
.y1_c00087{bottom:1047.600000px;}
.h2_c00087{height:54.000000px;}
.h3_c00087{height:60.000000px;}
.h1_c00087{height:1167.000000px;}
.h0_c00087{height:1167.119934px;}
.w0_c00087{width:913.320007px;}
.w1_c00087{width:913.500000px;}
.x0_c00087{left:0.000000px;}
.x109_c00087{left:100.950000px;}
.xd1_c00087{left:102.750000px;}
.x50_c00087{left:103.950000px;}
.x4_c00087{left:105.900000px;}
.xa7_c00087{left:121.800000px;}
.x12b_c00087{left:127.200000px;}
.x26_c00087{left:128.700000px;}
.x5_c00087{left:131.400000px;}
.x87_c00087{left:132.450000px;}
.x90_c00087{left:134.550000px;}
.x6a_c00087{left:135.750000px;}
.x42_c00087{left:138.450000px;}
.xa8_c00087{left:139.500000px;}
.x68_c00087{left:144.450000px;}
.xdb_c00087{left:147.300000px;}
.xe0_c00087{left:148.500000px;}
.xd8_c00087{left:150.150000px;}
.xc9_c00087{left:151.500000px;}
.x104_c00087{left:152.550000px;}
.xb8_c00087{left:154.200000px;}
.x34_c00087{left:155.700000px;}
.x27_c00087{left:157.500000px;}
.x15_c00087{left:158.550000px;}
.x91_c00087{left:160.500000px;}
.x130_c00087{left:162.000000px;}
.xa9_c00087{left:163.200000px;}
.x98_c00087{left:164.850000px;}
.x51_c00087{left:167.400000px;}
.x105_c00087{left:170.250000px;}
.x81_c00087{left:175.500000px;}
.x16_c00087{left:176.850000px;}
.x35_c00087{left:178.050000px;}
.x132_c00087{left:179.100000px;}
.x6b_c00087{left:180.450000px;}
.xb9_c00087{left:181.950000px;}
.xfc_c00087{left:184.350000px;}
.x119_c00087{left:187.500000px;}
.xdc_c00087{left:189.450000px;}
.x28_c00087{left:190.950000px;}
.xaa_c00087{left:192.750000px;}
.x5c_c00087{left:194.700000px;}
.x76_c00087{left:197.700000px;}
.x106_c00087{left:198.750000px;}
.x92_c00087{left:200.400000px;}
.x121_c00087{left:202.200000px;}
.xd2_c00087{left:203.850000px;}
.xdd_c00087{left:205.950000px;}
.x6_c00087{left:207.300000px;}
.xab_c00087{left:210.000000px;}
.x43_c00087{left:211.950000px;}
.xba_c00087{left:219.750000px;}
.xca_c00087{left:223.050000px;}
.x10a_c00087{left:224.250000px;}
.x69_c00087{left:225.450000px;}
.x77_c00087{left:229.050000px;}
.xf6_c00087{left:230.550000px;}
.x44_c00087{left:233.550000px;}
.x17_c00087{left:235.200000px;}
.x12c_c00087{left:236.550000px;}
.x93_c00087{left:238.500000px;}
.x52_c00087{left:239.700000px;}
.x10f_c00087{left:240.900000px;}
.x82_c00087{left:242.100000px;}
.x36_c00087{left:244.350000px;}
.x7_c00087{left:245.400000px;}
.x5d_c00087{left:246.900000px;}
.xc0_c00087{left:248.550000px;}
.xcb_c00087{left:250.050000px;}
.xfe_c00087{left:252.450000px;}
.x53_c00087{left:255.900000px;}
.x29_c00087{left:257.550000px;}
.x6c_c00087{left:260.400000px;}
.x45_c00087{left:262.350000px;}
.xd9_c00087{left:263.850000px;}
.xa0_c00087{left:265.500000px;}
.xac_c00087{left:266.550000px;}
.x78_c00087{left:268.350000px;}
.x10c_c00087{left:270.300000px;}
.xd3_c00087{left:273.300000px;}
.xc1_c00087{left:275.250000px;}
.x99_c00087{left:277.950000px;}
.x18_c00087{left:279.150000px;}
.xe1_c00087{left:280.350000px;}
.x8_c00087{left:282.450000px;}
.xb3_c00087{left:285.000000px;}
.xe7_c00087{left:286.050000px;}
.xa1_c00087{left:287.850000px;}
.x110_c00087{left:289.200000px;}
.xcc_c00087{left:292.950000px;}
.x2a_c00087{left:295.050000px;}
.x83_c00087{left:297.600000px;}
.x19_c00087{left:298.950000px;}
.x11a_c00087{left:301.950000px;}
.x9a_c00087{left:303.900000px;}
.x46_c00087{left:306.300000px;}
.x79_c00087{left:308.250000px;}
.xe2_c00087{left:313.800000px;}
.xf7_c00087{left:314.850000px;}
.x1a_c00087{left:316.200000px;}
.x37_c00087{left:318.450000px;}
.xc2_c00087{left:319.650000px;}
.xec_c00087{left:320.700000px;}
.x54_c00087{left:322.800000px;}
.x9_c00087{left:324.900000px;}
.xff_c00087{left:325.950000px;}
.x7a_c00087{left:327.300000px;}
.xd4_c00087{left:328.800000px;}
.xf0_c00087{left:330.600000px;}
.x6d_c00087{left:331.650000px;}
.x88_c00087{left:334.050000px;}
.x94_c00087{left:335.400000px;}
.x131_c00087{left:339.300000px;}
.x126_c00087{left:340.650000px;}
.xa2_c00087{left:342.900000px;}
.x12d_c00087{left:344.550000px;}
.x47_c00087{left:348.750000px;}
.x1b_c00087{left:350.700000px;}
.x89_c00087{left:353.100000px;}
.xad_c00087{left:355.350000px;}
.xed_c00087{left:356.700000px;}
.x95_c00087{left:360.900000px;}
.x5e_c00087{left:362.400000px;}
.xa_c00087{left:363.450000px;}
.x6e_c00087{left:364.800000px;}
.x1c_c00087{left:366.150000px;}
.x122_c00087{left:369.000000px;}
.x1_c00087{left:370.800000px;}
.x127_c00087{left:374.550000px;}
.xc3_c00087{left:376.200000px;}
.x9b_c00087{left:378.450000px;}
.xf8_c00087{left:382.950000px;}
.x8a_c00087{left:385.500000px;}
.x128_c00087{left:388.950000px;}
.x48_c00087{left:390.150000px;}
.xa3_c00087{left:391.200000px;}
.x38_c00087{left:392.550000px;}
.x111_c00087{left:394.950000px;}
.x6f_c00087{left:399.000000px;}
.xbb_c00087{left:400.050000px;}
.x55_c00087{left:401.550000px;}
.x96_c00087{left:403.350000px;}
.x11b_c00087{left:404.550000px;}
.xd5_c00087{left:407.700000px;}
.xb_c00087{left:409.950000px;}
.xa4_c00087{left:412.050000px;}
.xbc_c00087{left:414.750000px;}
.x5f_c00087{left:417.450000px;}
.x8b_c00087{left:420.750000px;}
.x56_c00087{left:422.850000px;}
.xe8_c00087{left:426.000000px;}
.x1d_c00087{left:428.850000px;}
.xda_c00087{left:430.800000px;}
.x60_c00087{left:431.850000px;}
.xc_c00087{left:433.050000px;}
.x136_c00087{left:434.100000px;}
.x70_c00087{left:436.050000px;}
.x2_c00087{left:437.100000px;}
.x10d_c00087{left:439.950000px;}
.x11c_c00087{left:442.350000px;}
.xcd_c00087{left:444.000000px;}
.x39_c00087{left:445.050000px;}
.x7b_c00087{left:447.150000px;}
.xbd_c00087{left:448.950000px;}
.x84_c00087{left:450.000000px;}
.xc4_c00087{left:452.250000px;}
.x2b_c00087{left:454.350000px;}
.x71_c00087{left:455.850000px;}
.xd_c00087{left:457.500000px;}
.xf9_c00087{left:459.600000px;}
.x97_c00087{left:461.250000px;}
.x107_c00087{left:462.600000px;}
.xf1_c00087{left:463.800000px;}
.xb4_c00087{left:465.750000px;}
.x57_c00087{left:470.700000px;}
.x49_c00087{left:472.650000px;}
.x1e_c00087{left:476.400000px;}
.x10e_c00087{left:478.800000px;}
.xae_c00087{left:480.300000px;}
.x72_c00087{left:483.900000px;}
.x3a_c00087{left:487.200000px;}
.x61_c00087{left:488.400000px;}
.x7c_c00087{left:490.650000px;}
.xc5_c00087{left:492.900000px;}
.x133_c00087{left:496.800000px;}
.x9c_c00087{left:498.300000px;}
.xbe_c00087{left:499.350000px;}
.x2c_c00087{left:500.400000px;}
.x115_c00087{left:502.800000px;}
.xe3_c00087{left:506.850000px;}
.x62_c00087{left:508.950000px;}
.x1f_c00087{left:511.350000px;}
.xc6_c00087{left:512.400000px;}
.xee_c00087{left:514.800000px;}
.x7d_c00087{left:516.600000px;}
.x2d_c00087{left:521.700000px;}
.xaf_c00087{left:523.200000px;}
.xe_c00087{left:524.400000px;}
.xf2_c00087{left:526.800000px;}
.x10b_c00087{left:528.750000px;}
.x100_c00087{left:530.850000px;}
.x4a_c00087{left:534.150000px;}
.x112_c00087{left:535.500000px;}
.x9d_c00087{left:537.150000px;}
.x3b_c00087{left:540.150000px;}
.xe4_c00087{left:542.550000px;}
.xf3_c00087{left:544.500000px;}
.xf_c00087{left:546.300000px;}
.x2e_c00087{left:549.750000px;}
.xde_c00087{left:551.100000px;}
.xa5_c00087{left:555.150000px;}
.xfd_c00087{left:556.950000px;}
.xc7_c00087{left:558.900000px;}
.x3c_c00087{left:560.250000px;}
.x101_c00087{left:562.200000px;}
.x63_c00087{left:563.250000px;}
.x4b_c00087{left:564.750000px;}
.x20_c00087{left:567.900000px;}
.xdf_c00087{left:569.100000px;}
.x123_c00087{left:572.400000px;}
.x134_c00087{left:573.450000px;}
.xb0_c00087{left:576.150000px;}
.x85_c00087{left:578.100000px;}
.xd6_c00087{left:583.950000px;}
.x116_c00087{left:586.800000px;}
.x64_c00087{left:588.750000px;}
.x2f_c00087{left:591.150000px;}
.x124_c00087{left:592.500000px;}
.x9e_c00087{left:593.700000px;}
.xa6_c00087{left:595.800000px;}
.xce_c00087{left:597.000000px;}
.x86_c00087{left:598.200000px;}
.xb5_c00087{left:600.450000px;}
.x21_c00087{left:603.900000px;}
.x58_c00087{left:605.400000px;}
.x4c_c00087{left:606.900000px;}
.x3d_c00087{left:609.150000px;}
.x129_c00087{left:610.650000px;}
.xd7_c00087{left:612.000000px;}
.x113_c00087{left:615.000000px;}
.x8c_c00087{left:616.800000px;}
.x10_c00087{left:618.300000px;}
.x22_c00087{left:621.600000px;}
.xe5_c00087{left:622.950000px;}
.x125_c00087{left:624.150000px;}
.x11d_c00087{left:625.200000px;}
.x59_c00087{left:626.250000px;}
.xcf_c00087{left:630.450000px;}
.xc8_c00087{left:632.400000px;}
.xef_c00087{left:634.950000px;}
.x4d_c00087{left:636.000000px;}
.x73_c00087{left:637.500000px;}
.x30_c00087{left:638.700000px;}
.x11e_c00087{left:640.650000px;}
.xfa_c00087{left:641.850000px;}
.x7e_c00087{left:643.350000px;}
.xf4_c00087{left:645.000000px;}
.x3e_c00087{left:647.250000px;}
.x65_c00087{left:648.450000px;}
.xb6_c00087{left:649.500000px;}
.xd0_c00087{left:651.750000px;}
.x11_c00087{left:654.000000px;}
.x117_c00087{left:655.200000px;}
.x114_c00087{left:656.400000px;}
.x31_c00087{left:657.750000px;}
.x8d_c00087{left:660.000000px;}
.x12e_c00087{left:663.600000px;}
.x23_c00087{left:664.800000px;}
.xfb_c00087{left:668.850000px;}
.x102_c00087{left:670.650000px;}
.x4e_c00087{left:673.050000px;}
.xb1_c00087{left:675.450000px;}
.x8e_c00087{left:681.300000px;}
.x12_c00087{left:684.600000px;}
.x12a_c00087{left:685.950000px;}
.xe6_c00087{left:687.750000px;}
.x24_c00087{left:690.300000px;}
.x32_c00087{left:692.250000px;}
.x135_c00087{left:693.300000px;}
.x108_c00087{left:694.650000px;}
.x7f_c00087{left:695.850000px;}
.x3f_c00087{left:696.900000px;}
.xb2_c00087{left:698.100000px;}
.x103_c00087{left:699.150000px;}
.x4f_c00087{left:701.550000px;}
.xe9_c00087{left:706.500000px;}
.x9f_c00087{left:708.900000px;}
.x25_c00087{left:710.100000px;}
.xb7_c00087{left:712.200000px;}
.x80_c00087{left:714.600000px;}
.x11f_c00087{left:716.250000px;}
.x5a_c00087{left:717.300000px;}
.x40_c00087{left:722.850000px;}
.xbf_c00087{left:724.200000px;}
.x74_c00087{left:725.400000px;}
.x66_c00087{left:727.650000px;}
.x13_c00087{left:728.850000px;}
.x8f_c00087{left:731.400000px;}
.x118_c00087{left:732.900000px;}
.xea_c00087{left:735.600000px;}
.x33_c00087{left:739.350000px;}
.x75_c00087{left:741.900000px;}
.x120_c00087{left:747.150000px;}
.x67_c00087{left:748.500000px;}
.x14_c00087{left:750.750000px;}
.x5b_c00087{left:753.000000px;}
.x3_c00087{left:754.650000px;}
.xeb_c00087{left:756.900000px;}
.x12f_c00087{left:758.250000px;}
.x41_c00087{left:760.950000px;}
.xf5_c00087{left:762.300000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws1_c00087{word-spacing:-5.380117pt;}
.ws5_c00087{word-spacing:-4.320988pt;}
.ws7_c00087{word-spacing:0.000000pt;}
.ws2_c00087{word-spacing:3.252033pt;}
.ws3_c00087{word-spacing:4.938272pt;}
.ws6_c00087{word-spacing:9.150327pt;}
.ws0_c00087{word-spacing:11.975309pt;}
.ws4_c00087{word-spacing:13.209877pt;}
.fs0_c00087{font-size:48.000000pt;}
.fs1_c00087{font-size:53.333333pt;}
.y0_c00087{bottom:0.000000pt;}
.y2d_c00087{bottom:133.066667pt;}
.y2c_c00087{bottom:151.200000pt;}
.y2b_c00087{bottom:169.066667pt;}
.y2a_c00087{bottom:186.666667pt;}
.y29_c00087{bottom:204.533333pt;}
.y28_c00087{bottom:222.133333pt;}
.y27_c00087{bottom:239.733333pt;}
.y26_c00087{bottom:257.600000pt;}
.y25_c00087{bottom:275.200000pt;}
.y24_c00087{bottom:293.066667pt;}
.y23_c00087{bottom:310.666667pt;}
.y22_c00087{bottom:328.266667pt;}
.y21_c00087{bottom:346.533333pt;}
.y20_c00087{bottom:364.266667pt;}
.y1f_c00087{bottom:381.866667pt;}
.y1e_c00087{bottom:399.466667pt;}
.y1d_c00087{bottom:417.066667pt;}
.y1c_c00087{bottom:434.933333pt;}
.y1b_c00087{bottom:452.533333pt;}
.y1a_c00087{bottom:470.400000pt;}
.y19_c00087{bottom:488.000000pt;}
.y18_c00087{bottom:505.600000pt;}
.y17_c00087{bottom:523.200000pt;}
.y16_c00087{bottom:541.066667pt;}
.y15_c00087{bottom:558.533333pt;}
.y14_c00087{bottom:576.800000pt;}
.y13_c00087{bottom:594.666667pt;}
.y12_c00087{bottom:612.266667pt;}
.y11_c00087{bottom:629.866667pt;}
.y10_c00087{bottom:647.733333pt;}
.yf_c00087{bottom:665.333333pt;}
.ye_c00087{bottom:683.333333pt;}
.yd_c00087{bottom:700.933333pt;}
.yc_c00087{bottom:718.800000pt;}
.yb_c00087{bottom:736.666667pt;}
.ya_c00087{bottom:754.533333pt;}
.y9_c00087{bottom:772.400000pt;}
.y8_c00087{bottom:790.000000pt;}
.y7_c00087{bottom:807.866667pt;}
.y6_c00087{bottom:825.733333pt;}
.y5_c00087{bottom:843.600000pt;}
.y4_c00087{bottom:861.200000pt;}
.y3_c00087{bottom:879.066667pt;}
.y2_c00087{bottom:896.666667pt;}
.y1_c00087{bottom:931.200000pt;}
.h2_c00087{height:48.000000pt;}
.h3_c00087{height:53.333333pt;}
.h1_c00087{height:1037.333333pt;}
.h0_c00087{height:1037.439941pt;}
.w0_c00087{width:811.840007pt;}
.w1_c00087{width:812.000000pt;}
.x0_c00087{left:0.000000pt;}
.x109_c00087{left:89.733333pt;}
.xd1_c00087{left:91.333333pt;}
.x50_c00087{left:92.400000pt;}
.x4_c00087{left:94.133333pt;}
.xa7_c00087{left:108.266667pt;}
.x12b_c00087{left:113.066667pt;}
.x26_c00087{left:114.400000pt;}
.x5_c00087{left:116.800000pt;}
.x87_c00087{left:117.733333pt;}
.x90_c00087{left:119.600000pt;}
.x6a_c00087{left:120.666667pt;}
.x42_c00087{left:123.066667pt;}
.xa8_c00087{left:124.000000pt;}
.x68_c00087{left:128.400000pt;}
.xdb_c00087{left:130.933333pt;}
.xe0_c00087{left:132.000000pt;}
.xd8_c00087{left:133.466667pt;}
.xc9_c00087{left:134.666667pt;}
.x104_c00087{left:135.600000pt;}
.xb8_c00087{left:137.066667pt;}
.x34_c00087{left:138.400000pt;}
.x27_c00087{left:140.000000pt;}
.x15_c00087{left:140.933333pt;}
.x91_c00087{left:142.666667pt;}
.x130_c00087{left:144.000000pt;}
.xa9_c00087{left:145.066667pt;}
.x98_c00087{left:146.533333pt;}
.x51_c00087{left:148.800000pt;}
.x105_c00087{left:151.333333pt;}
.x81_c00087{left:156.000000pt;}
.x16_c00087{left:157.200000pt;}
.x35_c00087{left:158.266667pt;}
.x132_c00087{left:159.200000pt;}
.x6b_c00087{left:160.400000pt;}
.xb9_c00087{left:161.733333pt;}
.xfc_c00087{left:163.866667pt;}
.x119_c00087{left:166.666667pt;}
.xdc_c00087{left:168.400000pt;}
.x28_c00087{left:169.733333pt;}
.xaa_c00087{left:171.333333pt;}
.x5c_c00087{left:173.066667pt;}
.x76_c00087{left:175.733333pt;}
.x106_c00087{left:176.666667pt;}
.x92_c00087{left:178.133333pt;}
.x121_c00087{left:179.733333pt;}
.xd2_c00087{left:181.200000pt;}
.xdd_c00087{left:183.066667pt;}
.x6_c00087{left:184.266667pt;}
.xab_c00087{left:186.666667pt;}
.x43_c00087{left:188.400000pt;}
.xba_c00087{left:195.333333pt;}
.xca_c00087{left:198.266667pt;}
.x10a_c00087{left:199.333333pt;}
.x69_c00087{left:200.400000pt;}
.x77_c00087{left:203.600000pt;}
.xf6_c00087{left:204.933333pt;}
.x44_c00087{left:207.600000pt;}
.x17_c00087{left:209.066667pt;}
.x12c_c00087{left:210.266667pt;}
.x93_c00087{left:212.000000pt;}
.x52_c00087{left:213.066667pt;}
.x10f_c00087{left:214.133333pt;}
.x82_c00087{left:215.200000pt;}
.x36_c00087{left:217.200000pt;}
.x7_c00087{left:218.133333pt;}
.x5d_c00087{left:219.466667pt;}
.xc0_c00087{left:220.933333pt;}
.xcb_c00087{left:222.266667pt;}
.xfe_c00087{left:224.400000pt;}
.x53_c00087{left:227.466667pt;}
.x29_c00087{left:228.933333pt;}
.x6c_c00087{left:231.466667pt;}
.x45_c00087{left:233.200000pt;}
.xd9_c00087{left:234.533333pt;}
.xa0_c00087{left:236.000000pt;}
.xac_c00087{left:236.933333pt;}
.x78_c00087{left:238.533333pt;}
.x10c_c00087{left:240.266667pt;}
.xd3_c00087{left:242.933333pt;}
.xc1_c00087{left:244.666667pt;}
.x99_c00087{left:247.066667pt;}
.x18_c00087{left:248.133333pt;}
.xe1_c00087{left:249.200000pt;}
.x8_c00087{left:251.066667pt;}
.xb3_c00087{left:253.333333pt;}
.xe7_c00087{left:254.266667pt;}
.xa1_c00087{left:255.866667pt;}
.x110_c00087{left:257.066667pt;}
.xcc_c00087{left:260.400000pt;}
.x2a_c00087{left:262.266667pt;}
.x83_c00087{left:264.533333pt;}
.x19_c00087{left:265.733333pt;}
.x11a_c00087{left:268.400000pt;}
.x9a_c00087{left:270.133333pt;}
.x46_c00087{left:272.266667pt;}
.x79_c00087{left:274.000000pt;}
.xe2_c00087{left:278.933333pt;}
.xf7_c00087{left:279.866667pt;}
.x1a_c00087{left:281.066667pt;}
.x37_c00087{left:283.066667pt;}
.xc2_c00087{left:284.133333pt;}
.xec_c00087{left:285.066667pt;}
.x54_c00087{left:286.933333pt;}
.x9_c00087{left:288.800000pt;}
.xff_c00087{left:289.733333pt;}
.x7a_c00087{left:290.933333pt;}
.xd4_c00087{left:292.266667pt;}
.xf0_c00087{left:293.866667pt;}
.x6d_c00087{left:294.800000pt;}
.x88_c00087{left:296.933333pt;}
.x94_c00087{left:298.133333pt;}
.x131_c00087{left:301.600000pt;}
.x126_c00087{left:302.800000pt;}
.xa2_c00087{left:304.800000pt;}
.x12d_c00087{left:306.266667pt;}
.x47_c00087{left:310.000000pt;}
.x1b_c00087{left:311.733333pt;}
.x89_c00087{left:313.866667pt;}
.xad_c00087{left:315.866667pt;}
.xed_c00087{left:317.066667pt;}
.x95_c00087{left:320.800000pt;}
.x5e_c00087{left:322.133333pt;}
.xa_c00087{left:323.066667pt;}
.x6e_c00087{left:324.266667pt;}
.x1c_c00087{left:325.466667pt;}
.x122_c00087{left:328.000000pt;}
.x1_c00087{left:329.600000pt;}
.x127_c00087{left:332.933333pt;}
.xc3_c00087{left:334.400000pt;}
.x9b_c00087{left:336.400000pt;}
.xf8_c00087{left:340.400000pt;}
.x8a_c00087{left:342.666667pt;}
.x128_c00087{left:345.733333pt;}
.x48_c00087{left:346.800000pt;}
.xa3_c00087{left:347.733333pt;}
.x38_c00087{left:348.933333pt;}
.x111_c00087{left:351.066667pt;}
.x6f_c00087{left:354.666667pt;}
.xbb_c00087{left:355.600000pt;}
.x55_c00087{left:356.933333pt;}
.x96_c00087{left:358.533333pt;}
.x11b_c00087{left:359.600000pt;}
.xd5_c00087{left:362.400000pt;}
.xb_c00087{left:364.400000pt;}
.xa4_c00087{left:366.266667pt;}
.xbc_c00087{left:368.666667pt;}
.x5f_c00087{left:371.066667pt;}
.x8b_c00087{left:374.000000pt;}
.x56_c00087{left:375.866667pt;}
.xe8_c00087{left:378.666667pt;}
.x1d_c00087{left:381.200000pt;}
.xda_c00087{left:382.933333pt;}
.x60_c00087{left:383.866667pt;}
.xc_c00087{left:384.933333pt;}
.x136_c00087{left:385.866667pt;}
.x70_c00087{left:387.600000pt;}
.x2_c00087{left:388.533333pt;}
.x10d_c00087{left:391.066667pt;}
.x11c_c00087{left:393.200000pt;}
.xcd_c00087{left:394.666667pt;}
.x39_c00087{left:395.600000pt;}
.x7b_c00087{left:397.466667pt;}
.xbd_c00087{left:399.066667pt;}
.x84_c00087{left:400.000000pt;}
.xc4_c00087{left:402.000000pt;}
.x2b_c00087{left:403.866667pt;}
.x71_c00087{left:405.200000pt;}
.xd_c00087{left:406.666667pt;}
.xf9_c00087{left:408.533333pt;}
.x97_c00087{left:410.000000pt;}
.x107_c00087{left:411.200000pt;}
.xf1_c00087{left:412.266667pt;}
.xb4_c00087{left:414.000000pt;}
.x57_c00087{left:418.400000pt;}
.x49_c00087{left:420.133333pt;}
.x1e_c00087{left:423.466667pt;}
.x10e_c00087{left:425.600000pt;}
.xae_c00087{left:426.933333pt;}
.x72_c00087{left:430.133333pt;}
.x3a_c00087{left:433.066667pt;}
.x61_c00087{left:434.133333pt;}
.x7c_c00087{left:436.133333pt;}
.xc5_c00087{left:438.133333pt;}
.x133_c00087{left:441.600000pt;}
.x9c_c00087{left:442.933333pt;}
.xbe_c00087{left:443.866667pt;}
.x2c_c00087{left:444.800000pt;}
.x115_c00087{left:446.933333pt;}
.xe3_c00087{left:450.533333pt;}
.x62_c00087{left:452.400000pt;}
.x1f_c00087{left:454.533333pt;}
.xc6_c00087{left:455.466667pt;}
.xee_c00087{left:457.600000pt;}
.x7d_c00087{left:459.200000pt;}
.x2d_c00087{left:463.733333pt;}
.xaf_c00087{left:465.066667pt;}
.xe_c00087{left:466.133333pt;}
.xf2_c00087{left:468.266667pt;}
.x10b_c00087{left:470.000000pt;}
.x100_c00087{left:471.866667pt;}
.x4a_c00087{left:474.800000pt;}
.x112_c00087{left:476.000000pt;}
.x9d_c00087{left:477.466667pt;}
.x3b_c00087{left:480.133333pt;}
.xe4_c00087{left:482.266667pt;}
.xf3_c00087{left:484.000000pt;}
.xf_c00087{left:485.600000pt;}
.x2e_c00087{left:488.666667pt;}
.xde_c00087{left:489.866667pt;}
.xa5_c00087{left:493.466667pt;}
.xfd_c00087{left:495.066667pt;}
.xc7_c00087{left:496.800000pt;}
.x3c_c00087{left:498.000000pt;}
.x101_c00087{left:499.733333pt;}
.x63_c00087{left:500.666667pt;}
.x4b_c00087{left:502.000000pt;}
.x20_c00087{left:504.800000pt;}
.xdf_c00087{left:505.866667pt;}
.x123_c00087{left:508.800000pt;}
.x134_c00087{left:509.733333pt;}
.xb0_c00087{left:512.133333pt;}
.x85_c00087{left:513.866667pt;}
.xd6_c00087{left:519.066667pt;}
.x116_c00087{left:521.600000pt;}
.x64_c00087{left:523.333333pt;}
.x2f_c00087{left:525.466667pt;}
.x124_c00087{left:526.666667pt;}
.x9e_c00087{left:527.733333pt;}
.xa6_c00087{left:529.600000pt;}
.xce_c00087{left:530.666667pt;}
.x86_c00087{left:531.733333pt;}
.xb5_c00087{left:533.733333pt;}
.x21_c00087{left:536.800000pt;}
.x58_c00087{left:538.133333pt;}
.x4c_c00087{left:539.466667pt;}
.x3d_c00087{left:541.466667pt;}
.x129_c00087{left:542.800000pt;}
.xd7_c00087{left:544.000000pt;}
.x113_c00087{left:546.666667pt;}
.x8c_c00087{left:548.266667pt;}
.x10_c00087{left:549.600000pt;}
.x22_c00087{left:552.533333pt;}
.xe5_c00087{left:553.733333pt;}
.x125_c00087{left:554.800000pt;}
.x11d_c00087{left:555.733333pt;}
.x59_c00087{left:556.666667pt;}
.xcf_c00087{left:560.400000pt;}
.xc8_c00087{left:562.133333pt;}
.xef_c00087{left:564.400000pt;}
.x4d_c00087{left:565.333333pt;}
.x73_c00087{left:566.666667pt;}
.x30_c00087{left:567.733333pt;}
.x11e_c00087{left:569.466667pt;}
.xfa_c00087{left:570.533333pt;}
.x7e_c00087{left:571.866667pt;}
.xf4_c00087{left:573.333333pt;}
.x3e_c00087{left:575.333333pt;}
.x65_c00087{left:576.400000pt;}
.xb6_c00087{left:577.333333pt;}
.xd0_c00087{left:579.333333pt;}
.x11_c00087{left:581.333333pt;}
.x117_c00087{left:582.400000pt;}
.x114_c00087{left:583.466667pt;}
.x31_c00087{left:584.666667pt;}
.x8d_c00087{left:586.666667pt;}
.x12e_c00087{left:589.866667pt;}
.x23_c00087{left:590.933333pt;}
.xfb_c00087{left:594.533333pt;}
.x102_c00087{left:596.133333pt;}
.x4e_c00087{left:598.266667pt;}
.xb1_c00087{left:600.400000pt;}
.x8e_c00087{left:605.600000pt;}
.x12_c00087{left:608.533333pt;}
.x12a_c00087{left:609.733333pt;}
.xe6_c00087{left:611.333333pt;}
.x24_c00087{left:613.600000pt;}
.x32_c00087{left:615.333333pt;}
.x135_c00087{left:616.266667pt;}
.x108_c00087{left:617.466667pt;}
.x7f_c00087{left:618.533333pt;}
.x3f_c00087{left:619.466667pt;}
.xb2_c00087{left:620.533333pt;}
.x103_c00087{left:621.466667pt;}
.x4f_c00087{left:623.600000pt;}
.xe9_c00087{left:628.000000pt;}
.x9f_c00087{left:630.133333pt;}
.x25_c00087{left:631.200000pt;}
.xb7_c00087{left:633.066667pt;}
.x80_c00087{left:635.200000pt;}
.x11f_c00087{left:636.666667pt;}
.x5a_c00087{left:637.600000pt;}
.x40_c00087{left:642.533333pt;}
.xbf_c00087{left:643.733333pt;}
.x74_c00087{left:644.800000pt;}
.x66_c00087{left:646.800000pt;}
.x13_c00087{left:647.866667pt;}
.x8f_c00087{left:650.133333pt;}
.x118_c00087{left:651.466667pt;}
.xea_c00087{left:653.866667pt;}
.x33_c00087{left:657.200000pt;}
.x75_c00087{left:659.466667pt;}
.x120_c00087{left:664.133333pt;}
.x67_c00087{left:665.333333pt;}
.x14_c00087{left:667.333333pt;}
.x5b_c00087{left:669.333333pt;}
.x3_c00087{left:670.800000pt;}
.xeb_c00087{left:672.800000pt;}
.x12f_c00087{left:674.000000pt;}
.x41_c00087{left:676.400000pt;}
.xf5_c00087{left:677.600000pt;}
}





/* 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_c00088 {
    display:none;
  }
  .loading-indicator_c00088.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00088 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_c00088 { 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_c00088" -> "#page-container .classname_c00088")
 */
.pf_c00088 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00088 { /* 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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00088 { /* 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_c00088 { /* 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_c00088 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00088 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00088 {overflow:visible;}
  }
}
.c_c00088 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00088 { /* 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_c00088:after { /* webkit #35443 */
  content: '';
}
.t_c00088:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00088 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 */
}
.__c00088 { /* 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_c00088 { /* info for Javascript */
  display:none;
}
.l_c00088 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00088 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00088 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00088: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_c00088 {
    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_c00088.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00088.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_c00088 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00088{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00088;src:url('chunks/assets/font_8d220fc6cb305cca524a3af1.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.000000;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;}
.m6c_c00088{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m36_c00088{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00088{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00088{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m37_c00088{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00088{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00088{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00088{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00088{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m9_c00088{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m23_c00088{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00088{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m33_c00088{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m72_c00088{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m4_c00088{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m90_c00088{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00088{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00088{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00088{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00088{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m48_c00088{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00088{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m22_c00088{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00088{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb_c00088{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00088{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m96_c00088{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m43_c00088{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00088{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00088{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00088{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m98_c00088{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m30_c00088{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00088{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m82_c00088{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00088{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00088{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00088{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m91_c00088{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m70_c00088{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00088{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m75_c00088{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m14_c00088{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m19_c00088{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m50_c00088{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m85_c00088{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00088{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m92_c00088{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00088{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m95_c00088{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m53_c00088{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m66_c00088{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m28_c00088{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m49_c00088{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00088{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md_c00088{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00088{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m76_c00088{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00088{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00088{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00088{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m64_c00088{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6_c00088{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m40_c00088{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m93_c00088{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00088{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m46_c00088{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m20_c00088{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00088{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m79_c00088{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m12_c00088{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00088{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00088{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m42_c00088{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00088{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00088{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m13_c00088{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00088{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m11_c00088{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00088{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00088{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m74_c00088{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m35_c00088{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc_c00088{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m97_c00088{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00088{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00088{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m86_c00088{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m51_c00088{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00088{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m31_c00088{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m55_c00088{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m61_c00088{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3_c00088{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m44_c00088{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m58_c00088{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m69_c00088{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00088{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m88_c00088{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5_c00088{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m25_c00088{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00088{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m52_c00088{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00088{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00088{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00088{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m10_c00088{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m38_c00088{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00088{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma_c00088{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m94_c00088{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00088{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00088{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00088{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m41_c00088{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00088{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00088{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00088{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00088{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m59_c00088{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m99_c00088{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m77_c00088{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m56_c00088{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00088{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18_c00088{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00088{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m67_c00088{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00088{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m45_c00088{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m63_c00088{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m80_c00088{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00088{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);}
.m7b_c00088{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m62_c00088{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m78_c00088{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7_c00088{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m34_c00088{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m65_c00088{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00088{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me_c00088{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00088{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m73_c00088{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m17_c00088{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00088{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m81_c00088{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m26_c00088{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8_c00088{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mf_c00088{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2_c00088{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00088{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m57_c00088{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m32_c00088{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m54_c00088{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m84_c00088{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m83_c00088{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m68_c00088{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00088{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m87_c00088{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00088{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00088{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m89_c00088{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m47_c00088{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls0_c00088{letter-spacing:0.000000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{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__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00088{word-spacing:-4.861111px;}
.ws5_c00088{word-spacing:-3.611111px;}
.ws2_c00088{word-spacing:-1.764706px;}
.ws8_c00088{word-spacing:0.000000px;}
.ws1_c00088{word-spacing:5.138889px;}
.ws3_c00088{word-spacing:13.194444px;}
.ws0_c00088{word-spacing:14.629630px;}
.ws6_c00088{word-spacing:21.696429px;}
.ws4_c00088{word-spacing:22.962963px;}
.fc0_c00088{color:transparent;}
.fs0_c00088{font-size:54.000000px;}
.fs1_c00088{font-size:60.000000px;}
.y0_c00088{bottom:0.000000px;}
.y2b_c00088{bottom:150.450000px;}
.y2a_c00088{bottom:209.550000px;}
.y29_c00088{bottom:229.650000px;}
.y28_c00088{bottom:249.450000px;}
.y27_c00088{bottom:269.550000px;}
.y26_c00088{bottom:289.350000px;}
.y25_c00088{bottom:309.450000px;}
.y24_c00088{bottom:329.250000px;}
.y23_c00088{bottom:349.350000px;}
.y22_c00088{bottom:369.150000px;}
.y21_c00088{bottom:389.250000px;}
.y20_c00088{bottom:409.050000px;}
.y1f_c00088{bottom:429.150000px;}
.y1e_c00088{bottom:449.250000px;}
.y1d_c00088{bottom:469.050000px;}
.y1c_c00088{bottom:488.250000px;}
.y1b_c00088{bottom:509.100000px;}
.y1a_c00088{bottom:529.200000px;}
.y19_c00088{bottom:548.550000px;}
.y18_c00088{bottom:569.400000px;}
.y17_c00088{bottom:589.500000px;}
.y16_c00088{bottom:609.300000px;}
.y15_c00088{bottom:629.400000px;}
.y14_c00088{bottom:649.500000px;}
.y13_c00088{bottom:669.600000px;}
.y12_c00088{bottom:689.400000px;}
.y11_c00088{bottom:709.200000px;}
.y10_c00088{bottom:728.400000px;}
.yf_c00088{bottom:749.700000px;}
.ye_c00088{bottom:769.500000px;}
.yd_c00088{bottom:789.600000px;}
.yc_c00088{bottom:809.700000px;}
.yb_c00088{bottom:829.500000px;}
.ya_c00088{bottom:849.300000px;}
.y9_c00088{bottom:869.400000px;}
.y8_c00088{bottom:889.500000px;}
.y7_c00088{bottom:909.600000px;}
.y6_c00088{bottom:929.700000px;}
.y5_c00088{bottom:949.800000px;}
.y4_c00088{bottom:969.600000px;}
.y3_c00088{bottom:989.700000px;}
.y2_c00088{bottom:1009.500000px;}
.y1_c00088{bottom:1048.650000px;}
.h2_c00088{height:54.000000px;}
.h3_c00088{height:60.000000px;}
.h1_c00088{height:1167.000000px;}
.h0_c00088{height:1167.119934px;}
.w0_c00088{width:913.320007px;}
.w1_c00088{width:913.500000px;}
.x0_c00088{left:0.000000px;}
.xd6_c00088{left:131.250000px;}
.x9e_c00088{left:132.450000px;}
.xb7_c00088{left:133.500000px;}
.x76_c00088{left:134.850000px;}
.x30_c00088{left:136.500000px;}
.x1_c00088{left:137.550000px;}
.xd7_c00088{left:148.500000px;}
.xc4_c00088{left:150.150000px;}
.xdf_c00088{left:152.850000px;}
.x22_c00088{left:154.650000px;}
.x59_c00088{left:157.200000px;}
.x118_c00088{left:161.100000px;}
.x10b_c00088{left:162.750000px;}
.xd8_c00088{left:164.100000px;}
.xa0_c00088{left:165.600000px;}
.x40_c00088{left:167.100000px;}
.xad_c00088{left:169.650000px;}
.x4_c00088{left:171.000000px;}
.xf8_c00088{left:172.800000px;}
.xe9_c00088{left:174.000000px;}
.xc5_c00088{left:175.350000px;}
.x31_c00088{left:178.200000px;}
.x11e_c00088{left:179.850000px;}
.xd3_c00088{left:182.700000px;}
.x8f_c00088{left:183.900000px;}
.x77_c00088{left:186.300000px;}
.x4d_c00088{left:187.500000px;}
.xa1_c00088{left:189.750000px;}
.x5a_c00088{left:191.100000px;}
.x5_c00088{left:192.600000px;}
.xbf_c00088{left:194.250000px;}
.x9f_c00088{left:195.750000px;}
.x95_c00088{left:197.250000px;}
.x87_c00088{left:203.550000px;}
.x12_c00088{left:209.250000px;}
.xe0_c00088{left:214.650000px;}
.x23_c00088{left:216.600000px;}
.xce_c00088{left:218.850000px;}
.x5b_c00088{left:221.400000px;}
.x41_c00088{left:225.000000px;}
.xa2_c00088{left:226.050000px;}
.x6c_c00088{left:228.300000px;}
.x24_c00088{left:231.750000px;}
.xc0_c00088{left:233.100000px;}
.x81_c00088{left:234.600000px;}
.x124_c00088{left:236.550000px;}
.x32_c00088{left:237.900000px;}
.xea_c00088{left:239.700000px;}
.xfe_c00088{left:241.200000px;}
.x4e_c00088{left:243.600000px;}
.xcf_c00088{left:244.800000px;}
.x42_c00088{left:246.900000px;}
.x11f_c00088{left:247.950000px;}
.xe1_c00088{left:250.650000px;}
.xf9_c00088{left:251.700000px;}
.xa3_c00088{left:254.550000px;}
.xc6_c00088{left:256.350000px;}
.x60_c00088{left:259.500000px;}
.x13_c00088{left:260.700000px;}
.x82_c00088{left:263.400000px;}
.x6d_c00088{left:264.600000px;}
.x6_c00088{left:268.500000px;}
.x25_c00088{left:270.300000px;}
.x119_c00088{left:271.350000px;}
.x12c_c00088{left:273.300000px;}
.x43_c00088{left:275.700000px;}
.x5c_c00088{left:277.950000px;}
.xf3_c00088{left:279.300000px;}
.x33_c00088{left:281.400000px;}
.x88_c00088{left:282.450000px;}
.x4f_c00088{left:283.500000px;}
.x125_c00088{left:284.850000px;}
.x14_c00088{left:286.200000px;}
.x12d_c00088{left:288.000000px;}
.xa4_c00088{left:289.050000px;}
.x61_c00088{left:292.200000px;}
.x10c_c00088{left:295.950000px;}
.x12e_c00088{left:297.000000px;}
.xe2_c00088{left:298.200000px;}
.x78_c00088{left:299.250000px;}
.x26_c00088{left:300.600000px;}
.x126_c00088{left:301.800000px;}
.x6e_c00088{left:303.150000px;}
.x34_c00088{left:304.500000px;}
.x5d_c00088{left:307.500000px;}
.xd9_c00088{left:309.900000px;}
.x7_c00088{left:312.750000px;}
.xee_c00088{left:314.400000px;}
.xc7_c00088{left:315.450000px;}
.x120_c00088{left:317.100000px;}
.xd4_c00088{left:319.050000px;}
.xfa_c00088{left:321.450000px;}
.x15_c00088{left:323.250000px;}
.x79_c00088{left:328.050000px;}
.x105_c00088{left:329.850000px;}
.x35_c00088{left:332.550000px;}
.x44_c00088{left:334.050000px;}
.x27_c00088{left:335.850000px;}
.xae_c00088{left:336.900000px;}
.x62_c00088{left:340.350000px;}
.xb8_c00088{left:342.750000px;}
.xa5_c00088{left:344.100000px;}
.x6f_c00088{left:346.050000px;}
.x50_c00088{left:349.050000px;}
.xf4_c00088{left:351.300000px;}
.xda_c00088{left:353.400000px;}
.x8_c00088{left:356.250000px;}
.x5e_c00088{left:357.900000px;}
.x63_c00088{left:362.250000px;}
.x110_c00088{left:364.050000px;}
.x28_c00088{left:366.450000px;}
.x96_c00088{left:368.550000px;}
.x12f_c00088{left:370.200000px;}
.x16_c00088{left:372.150000px;}
.xa6_c00088{left:375.450000px;}
.x90_c00088{left:377.100000px;}
.x12b_c00088{left:378.150000px;}
.xb4_c00088{left:379.500000px;}
.x45_c00088{left:382.350000px;}
.xff_c00088{left:384.150000px;}
.x2_c00088{left:385.950000px;}
.x108_c00088{left:388.950000px;}
.x11a_c00088{left:392.700000px;}
.x9_c00088{left:393.750000px;}
.x97_c00088{left:395.550000px;}
.x17_c00088{left:399.900000px;}
.xa7_c00088{left:400.950000px;}
.x121_c00088{left:402.450000px;}
.x5f_c00088{left:403.650000px;}
.x130_c00088{left:404.700000px;}
.x29_c00088{left:406.050000px;}
.x70_c00088{left:410.100000px;}
.xaf_c00088{left:411.450000px;}
.xeb_c00088{left:413.100000px;}
.x36_c00088{left:414.600000px;}
.x51_c00088{left:417.450000px;}
.x91_c00088{left:418.800000px;}
.x71_c00088{left:420.600000px;}
.x2a_c00088{left:424.350000px;}
.x115_c00088{left:426.150000px;}
.xa_c00088{left:428.700000px;}
.x64_c00088{left:431.400000px;}
.x37_c00088{left:433.350000px;}
.x18_c00088{left:436.200000px;}
.xdb_c00088{left:437.250000px;}
.x46_c00088{left:439.650000px;}
.xa8_c00088{left:440.850000px;}
.x11b_c00088{left:444.900000px;}
.x7a_c00088{left:446.400000px;}
.x127_c00088{left:449.400000px;}
.x72_c00088{left:450.450000px;}
.xb0_c00088{left:453.600000px;}
.x65_c00088{left:454.800000px;}
.xef_c00088{left:457.800000px;}
.xc8_c00088{left:458.850000px;}
.xb_c00088{left:462.900000px;}
.x111_c00088{left:464.100000px;}
.x52_c00088{left:466.050000px;}
.x100_c00088{left:468.000000px;}
.x98_c00088{left:471.900000px;}
.x19_c00088{left:473.700000px;}
.xf5_c00088{left:475.800000px;}
.xf0_c00088{left:477.600000px;}
.x38_c00088{left:479.850000px;}
.x7b_c00088{left:482.100000px;}
.x3_c00088{left:484.650000px;}
.xb1_c00088{left:488.100000px;}
.xc9_c00088{left:489.150000px;}
.x122_c00088{left:490.650000px;}
.x99_c00088{left:494.250000px;}
.xdc_c00088{left:495.600000px;}
.x116_c00088{left:498.150000px;}
.x53_c00088{left:499.950000px;}
.xa9_c00088{left:501.000000px;}
.x2b_c00088{left:506.850000px;}
.x109_c00088{left:508.350000px;}
.x10d_c00088{left:509.700000px;}
.x1a_c00088{left:511.200000px;}
.x92_c00088{left:513.900000px;}
.xc_c00088{left:515.100000px;}
.x83_c00088{left:517.200000px;}
.xfb_c00088{left:518.400000px;}
.xb9_c00088{left:522.000000px;}
.x9a_c00088{left:523.050000px;}
.x11c_c00088{left:524.100000px;}
.xd5_c00088{left:525.450000px;}
.x7c_c00088{left:527.850000px;}
.xe3_c00088{left:529.500000px;}
.x89_c00088{left:530.700000px;}
.x54_c00088{left:535.200000px;}
.x112_c00088{left:536.850000px;}
.x39_c00088{left:540.300000px;}
.xdd_c00088{left:542.400000px;}
.xd_c00088{left:543.600000px;}
.xd0_c00088{left:545.250000px;}
.x66_c00088{left:548.700000px;}
.x47_c00088{left:550.200000px;}
.x8a_c00088{left:554.100000px;}
.xec_c00088{left:555.450000px;}
.xc1_c00088{left:559.050000px;}
.x3a_c00088{left:564.450000px;}
.xba_c00088{left:565.950000px;}
.x10e_c00088{left:568.800000px;}
.x1b_c00088{left:571.650000px;}
.x55_c00088{left:576.300000px;}
.xde_c00088{left:577.350000px;}
.x8b_c00088{left:580.050000px;}
.xc2_c00088{left:581.400000px;}
.x113_c00088{left:583.650000px;}
.xe4_c00088{left:586.050000px;}
.xf1_c00088{left:588.150000px;}
.x93_c00088{left:590.550000px;}
.x3b_c00088{left:592.500000px;}
.x48_c00088{left:593.700000px;}
.xaa_c00088{left:595.050000px;}
.x7d_c00088{left:597.000000px;}
.x84_c00088{left:598.200000px;}
.xb5_c00088{left:603.300000px;}
.x117_c00088{left:605.700000px;}
.xca_c00088{left:606.750000px;}
.x2c_c00088{left:609.000000px;}
.x56_c00088{left:612.300000px;}
.xbb_c00088{left:614.550000px;}
.x1c_c00088{left:616.950000px;}
.xe_c00088{left:618.900000px;}
.x67_c00088{left:620.700000px;}
.xe5_c00088{left:621.750000px;}
.x3c_c00088{left:623.100000px;}
.x9b_c00088{left:626.700000px;}
.xf2_c00088{left:628.800000px;}
.x7e_c00088{left:630.900000px;}
.x128_c00088{left:635.250000px;}
.x68_c00088{left:637.200000px;}
.xe6_c00088{left:638.700000px;}
.x73_c00088{left:642.900000px;}
.x101_c00088{left:644.400000px;}
.x1d_c00088{left:645.450000px;}
.x106_c00088{left:648.150000px;}
.xb2_c00088{left:650.100000px;}
.x49_c00088{left:651.300000px;}
.xe7_c00088{left:652.800000px;}
.x8c_c00088{left:654.150000px;}
.xf_c00088{left:656.400000px;}
.x9c_c00088{left:658.800000px;}
.x85_c00088{left:662.550000px;}
.x129_c00088{left:664.350000px;}
.x3d_c00088{left:668.400000px;}
.x11d_c00088{left:673.050000px;}
.xed_c00088{left:674.550000px;}
.x123_c00088{left:676.050000px;}
.x102_c00088{left:678.600000px;}
.xfc_c00088{left:680.400000px;}
.x7f_c00088{left:681.600000px;}
.xbc_c00088{left:682.950000px;}
.x10_c00088{left:685.200000px;}
.xd1_c00088{left:686.700000px;}
.xcb_c00088{left:688.050000px;}
.x69_c00088{left:690.150000px;}
.x10a_c00088{left:691.200000px;}
.xe8_c00088{left:693.450000px;}
.xf6_c00088{left:696.900000px;}
.x94_c00088{left:698.550000px;}
.x131_c00088{left:701.250000px;}
.x1e_c00088{left:702.300000px;}
.x2d_c00088{left:704.850000px;}
.x74_c00088{left:706.200000px;}
.xb6_c00088{left:707.400000px;}
.x8d_c00088{left:709.200000px;}
.x57_c00088{left:710.550000px;}
.x9d_c00088{left:717.150000px;}
.x103_c00088{left:719.400000px;}
.x114_c00088{left:720.900000px;}
.x6a_c00088{left:723.300000px;}
.xcc_c00088{left:726.150000px;}
.x1f_c00088{left:727.500000px;}
.x2e_c00088{left:729.000000px;}
.xfd_c00088{left:731.850000px;}
.x3e_c00088{left:733.650000px;}
.x75_c00088{left:735.300000px;}
.xab_c00088{left:737.250000px;}
.xbd_c00088{left:739.350000px;}
.x4a_c00088{left:740.550000px;}
.xd2_c00088{left:741.750000px;}
.x20_c00088{left:744.750000px;}
.x58_c00088{left:745.800000px;}
.x10f_c00088{left:747.450000px;}
.x6b_c00088{left:750.600000px;}
.xc3_c00088{left:753.450000px;}
.x8e_c00088{left:754.500000px;}
.x2f_c00088{left:756.000000px;}
.x4b_c00088{left:757.050000px;}
.xbe_c00088{left:758.850000px;}
.x80_c00088{left:761.550000px;}
.x21_c00088{left:765.300000px;}
.xf7_c00088{left:766.350000px;}
.x11_c00088{left:769.050000px;}
.x107_c00088{left:771.300000px;}
.x86_c00088{left:772.350000px;}
.x12a_c00088{left:773.550000px;}
.x4c_c00088{left:775.800000px;}
.xac_c00088{left:777.600000px;}
.xb3_c00088{left:779.850000px;}
.xcd_c00088{left:784.800000px;}
.x104_c00088{left:787.350000px;}
.x3f_c00088{left:790.500000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws7_c00088{word-spacing:-4.320988pt;}
.ws5_c00088{word-spacing:-3.209877pt;}
.ws2_c00088{word-spacing:-1.568627pt;}
.ws8_c00088{word-spacing:0.000000pt;}
.ws1_c00088{word-spacing:4.567901pt;}
.ws3_c00088{word-spacing:11.728395pt;}
.ws0_c00088{word-spacing:13.004115pt;}
.ws6_c00088{word-spacing:19.285714pt;}
.ws4_c00088{word-spacing:20.411523pt;}
.fs0_c00088{font-size:48.000000pt;}
.fs1_c00088{font-size:53.333333pt;}
.y0_c00088{bottom:0.000000pt;}
.y2b_c00088{bottom:133.733333pt;}
.y2a_c00088{bottom:186.266667pt;}
.y29_c00088{bottom:204.133333pt;}
.y28_c00088{bottom:221.733333pt;}
.y27_c00088{bottom:239.600000pt;}
.y26_c00088{bottom:257.200000pt;}
.y25_c00088{bottom:275.066667pt;}
.y24_c00088{bottom:292.666667pt;}
.y23_c00088{bottom:310.533333pt;}
.y22_c00088{bottom:328.133333pt;}
.y21_c00088{bottom:346.000000pt;}
.y20_c00088{bottom:363.600000pt;}
.y1f_c00088{bottom:381.466667pt;}
.y1e_c00088{bottom:399.333333pt;}
.y1d_c00088{bottom:416.933333pt;}
.y1c_c00088{bottom:434.000000pt;}
.y1b_c00088{bottom:452.533333pt;}
.y1a_c00088{bottom:470.400000pt;}
.y19_c00088{bottom:487.600000pt;}
.y18_c00088{bottom:506.133333pt;}
.y17_c00088{bottom:524.000000pt;}
.y16_c00088{bottom:541.600000pt;}
.y15_c00088{bottom:559.466667pt;}
.y14_c00088{bottom:577.333333pt;}
.y13_c00088{bottom:595.200000pt;}
.y12_c00088{bottom:612.800000pt;}
.y11_c00088{bottom:630.400000pt;}
.y10_c00088{bottom:647.466667pt;}
.yf_c00088{bottom:666.400000pt;}
.ye_c00088{bottom:684.000000pt;}
.yd_c00088{bottom:701.866667pt;}
.yc_c00088{bottom:719.733333pt;}
.yb_c00088{bottom:737.333333pt;}
.ya_c00088{bottom:754.933333pt;}
.y9_c00088{bottom:772.800000pt;}
.y8_c00088{bottom:790.666667pt;}
.y7_c00088{bottom:808.533333pt;}
.y6_c00088{bottom:826.400000pt;}
.y5_c00088{bottom:844.266667pt;}
.y4_c00088{bottom:861.866667pt;}
.y3_c00088{bottom:879.733333pt;}
.y2_c00088{bottom:897.333333pt;}
.y1_c00088{bottom:932.133333pt;}
.h2_c00088{height:48.000000pt;}
.h3_c00088{height:53.333333pt;}
.h1_c00088{height:1037.333333pt;}
.h0_c00088{height:1037.439941pt;}
.w0_c00088{width:811.840007pt;}
.w1_c00088{width:812.000000pt;}
.x0_c00088{left:0.000000pt;}
.xd6_c00088{left:116.666667pt;}
.x9e_c00088{left:117.733333pt;}
.xb7_c00088{left:118.666667pt;}
.x76_c00088{left:119.866667pt;}
.x30_c00088{left:121.333333pt;}
.x1_c00088{left:122.266667pt;}
.xd7_c00088{left:132.000000pt;}
.xc4_c00088{left:133.466667pt;}
.xdf_c00088{left:135.866667pt;}
.x22_c00088{left:137.466667pt;}
.x59_c00088{left:139.733333pt;}
.x118_c00088{left:143.200000pt;}
.x10b_c00088{left:144.666667pt;}
.xd8_c00088{left:145.866667pt;}
.xa0_c00088{left:147.200000pt;}
.x40_c00088{left:148.533333pt;}
.xad_c00088{left:150.800000pt;}
.x4_c00088{left:152.000000pt;}
.xf8_c00088{left:153.600000pt;}
.xe9_c00088{left:154.666667pt;}
.xc5_c00088{left:155.866667pt;}
.x31_c00088{left:158.400000pt;}
.x11e_c00088{left:159.866667pt;}
.xd3_c00088{left:162.400000pt;}
.x8f_c00088{left:163.466667pt;}
.x77_c00088{left:165.600000pt;}
.x4d_c00088{left:166.666667pt;}
.xa1_c00088{left:168.666667pt;}
.x5a_c00088{left:169.866667pt;}
.x5_c00088{left:171.200000pt;}
.xbf_c00088{left:172.666667pt;}
.x9f_c00088{left:174.000000pt;}
.x95_c00088{left:175.333333pt;}
.x87_c00088{left:180.933333pt;}
.x12_c00088{left:186.000000pt;}
.xe0_c00088{left:190.800000pt;}
.x23_c00088{left:192.533333pt;}
.xce_c00088{left:194.533333pt;}
.x5b_c00088{left:196.800000pt;}
.x41_c00088{left:200.000000pt;}
.xa2_c00088{left:200.933333pt;}
.x6c_c00088{left:202.933333pt;}
.x24_c00088{left:206.000000pt;}
.xc0_c00088{left:207.200000pt;}
.x81_c00088{left:208.533333pt;}
.x124_c00088{left:210.266667pt;}
.x32_c00088{left:211.466667pt;}
.xea_c00088{left:213.066667pt;}
.xfe_c00088{left:214.400000pt;}
.x4e_c00088{left:216.533333pt;}
.xcf_c00088{left:217.600000pt;}
.x42_c00088{left:219.466667pt;}
.x11f_c00088{left:220.400000pt;}
.xe1_c00088{left:222.800000pt;}
.xf9_c00088{left:223.733333pt;}
.xa3_c00088{left:226.266667pt;}
.xc6_c00088{left:227.866667pt;}
.x60_c00088{left:230.666667pt;}
.x13_c00088{left:231.733333pt;}
.x82_c00088{left:234.133333pt;}
.x6d_c00088{left:235.200000pt;}
.x6_c00088{left:238.666667pt;}
.x25_c00088{left:240.266667pt;}
.x119_c00088{left:241.200000pt;}
.x12c_c00088{left:242.933333pt;}
.x43_c00088{left:245.066667pt;}
.x5c_c00088{left:247.066667pt;}
.xf3_c00088{left:248.266667pt;}
.x33_c00088{left:250.133333pt;}
.x88_c00088{left:251.066667pt;}
.x4f_c00088{left:252.000000pt;}
.x125_c00088{left:253.200000pt;}
.x14_c00088{left:254.400000pt;}
.x12d_c00088{left:256.000000pt;}
.xa4_c00088{left:256.933333pt;}
.x61_c00088{left:259.733333pt;}
.x10c_c00088{left:263.066667pt;}
.x12e_c00088{left:264.000000pt;}
.xe2_c00088{left:265.066667pt;}
.x78_c00088{left:266.000000pt;}
.x26_c00088{left:267.200000pt;}
.x126_c00088{left:268.266667pt;}
.x6e_c00088{left:269.466667pt;}
.x34_c00088{left:270.666667pt;}
.x5d_c00088{left:273.333333pt;}
.xd9_c00088{left:275.466667pt;}
.x7_c00088{left:278.000000pt;}
.xee_c00088{left:279.466667pt;}
.xc7_c00088{left:280.400000pt;}
.x120_c00088{left:281.866667pt;}
.xd4_c00088{left:283.600000pt;}
.xfa_c00088{left:285.733333pt;}
.x15_c00088{left:287.333333pt;}
.x79_c00088{left:291.600000pt;}
.x105_c00088{left:293.200000pt;}
.x35_c00088{left:295.600000pt;}
.x44_c00088{left:296.933333pt;}
.x27_c00088{left:298.533333pt;}
.xae_c00088{left:299.466667pt;}
.x62_c00088{left:302.533333pt;}
.xb8_c00088{left:304.666667pt;}
.xa5_c00088{left:305.866667pt;}
.x6f_c00088{left:307.600000pt;}
.x50_c00088{left:310.266667pt;}
.xf4_c00088{left:312.266667pt;}
.xda_c00088{left:314.133333pt;}
.x8_c00088{left:316.666667pt;}
.x5e_c00088{left:318.133333pt;}
.x63_c00088{left:322.000000pt;}
.x110_c00088{left:323.600000pt;}
.x28_c00088{left:325.733333pt;}
.x96_c00088{left:327.600000pt;}
.x12f_c00088{left:329.066667pt;}
.x16_c00088{left:330.800000pt;}
.xa6_c00088{left:333.733333pt;}
.x90_c00088{left:335.200000pt;}
.x12b_c00088{left:336.133333pt;}
.xb4_c00088{left:337.333333pt;}
.x45_c00088{left:339.866667pt;}
.xff_c00088{left:341.466667pt;}
.x2_c00088{left:343.066667pt;}
.x108_c00088{left:345.733333pt;}
.x11a_c00088{left:349.066667pt;}
.x9_c00088{left:350.000000pt;}
.x97_c00088{left:351.600000pt;}
.x17_c00088{left:355.466667pt;}
.xa7_c00088{left:356.400000pt;}
.x121_c00088{left:357.733333pt;}
.x5f_c00088{left:358.800000pt;}
.x130_c00088{left:359.733333pt;}
.x29_c00088{left:360.933333pt;}
.x70_c00088{left:364.533333pt;}
.xaf_c00088{left:365.733333pt;}
.xeb_c00088{left:367.200000pt;}
.x36_c00088{left:368.533333pt;}
.x51_c00088{left:371.066667pt;}
.x91_c00088{left:372.266667pt;}
.x71_c00088{left:373.866667pt;}
.x2a_c00088{left:377.200000pt;}
.x115_c00088{left:378.800000pt;}
.xa_c00088{left:381.066667pt;}
.x64_c00088{left:383.466667pt;}
.x37_c00088{left:385.200000pt;}
.x18_c00088{left:387.733333pt;}
.xdb_c00088{left:388.666667pt;}
.x46_c00088{left:390.800000pt;}
.xa8_c00088{left:391.866667pt;}
.x11b_c00088{left:395.466667pt;}
.x7a_c00088{left:396.800000pt;}
.x127_c00088{left:399.466667pt;}
.x72_c00088{left:400.400000pt;}
.xb0_c00088{left:403.200000pt;}
.x65_c00088{left:404.266667pt;}
.xef_c00088{left:406.933333pt;}
.xc8_c00088{left:407.866667pt;}
.xb_c00088{left:411.466667pt;}
.x111_c00088{left:412.533333pt;}
.x52_c00088{left:414.266667pt;}
.x100_c00088{left:416.000000pt;}
.x98_c00088{left:419.466667pt;}
.x19_c00088{left:421.066667pt;}
.xf5_c00088{left:422.933333pt;}
.xf0_c00088{left:424.533333pt;}
.x38_c00088{left:426.533333pt;}
.x7b_c00088{left:428.533333pt;}
.x3_c00088{left:430.800000pt;}
.xb1_c00088{left:433.866667pt;}
.xc9_c00088{left:434.800000pt;}
.x122_c00088{left:436.133333pt;}
.x99_c00088{left:439.333333pt;}
.xdc_c00088{left:440.533333pt;}
.x116_c00088{left:442.800000pt;}
.x53_c00088{left:444.400000pt;}
.xa9_c00088{left:445.333333pt;}
.x2b_c00088{left:450.533333pt;}
.x109_c00088{left:451.866667pt;}
.x10d_c00088{left:453.066667pt;}
.x1a_c00088{left:454.400000pt;}
.x92_c00088{left:456.800000pt;}
.xc_c00088{left:457.866667pt;}
.x83_c00088{left:459.733333pt;}
.xfb_c00088{left:460.800000pt;}
.xb9_c00088{left:464.000000pt;}
.x9a_c00088{left:464.933333pt;}
.x11c_c00088{left:465.866667pt;}
.xd5_c00088{left:467.066667pt;}
.x7c_c00088{left:469.200000pt;}
.xe3_c00088{left:470.666667pt;}
.x89_c00088{left:471.733333pt;}
.x54_c00088{left:475.733333pt;}
.x112_c00088{left:477.200000pt;}
.x39_c00088{left:480.266667pt;}
.xdd_c00088{left:482.133333pt;}
.xd_c00088{left:483.200000pt;}
.xd0_c00088{left:484.666667pt;}
.x66_c00088{left:487.733333pt;}
.x47_c00088{left:489.066667pt;}
.x8a_c00088{left:492.533333pt;}
.xec_c00088{left:493.733333pt;}
.xc1_c00088{left:496.933333pt;}
.x3a_c00088{left:501.733333pt;}
.xba_c00088{left:503.066667pt;}
.x10e_c00088{left:505.600000pt;}
.x1b_c00088{left:508.133333pt;}
.x55_c00088{left:512.266667pt;}
.xde_c00088{left:513.200000pt;}
.x8b_c00088{left:515.600000pt;}
.xc2_c00088{left:516.800000pt;}
.x113_c00088{left:518.800000pt;}
.xe4_c00088{left:520.933333pt;}
.xf1_c00088{left:522.800000pt;}
.x93_c00088{left:524.933333pt;}
.x3b_c00088{left:526.666667pt;}
.x48_c00088{left:527.733333pt;}
.xaa_c00088{left:528.933333pt;}
.x7d_c00088{left:530.666667pt;}
.x84_c00088{left:531.733333pt;}
.xb5_c00088{left:536.266667pt;}
.x117_c00088{left:538.400000pt;}
.xca_c00088{left:539.333333pt;}
.x2c_c00088{left:541.333333pt;}
.x56_c00088{left:544.266667pt;}
.xbb_c00088{left:546.266667pt;}
.x1c_c00088{left:548.400000pt;}
.xe_c00088{left:550.133333pt;}
.x67_c00088{left:551.733333pt;}
.xe5_c00088{left:552.666667pt;}
.x3c_c00088{left:553.866667pt;}
.x9b_c00088{left:557.066667pt;}
.xf2_c00088{left:558.933333pt;}
.x7e_c00088{left:560.800000pt;}
.x128_c00088{left:564.666667pt;}
.x68_c00088{left:566.400000pt;}
.xe6_c00088{left:567.733333pt;}
.x73_c00088{left:571.466667pt;}
.x101_c00088{left:572.800000pt;}
.x1d_c00088{left:573.733333pt;}
.x106_c00088{left:576.133333pt;}
.xb2_c00088{left:577.866667pt;}
.x49_c00088{left:578.933333pt;}
.xe7_c00088{left:580.266667pt;}
.x8c_c00088{left:581.466667pt;}
.xf_c00088{left:583.466667pt;}
.x9c_c00088{left:585.600000pt;}
.x85_c00088{left:588.933333pt;}
.x129_c00088{left:590.533333pt;}
.x3d_c00088{left:594.133333pt;}
.x11d_c00088{left:598.266667pt;}
.xed_c00088{left:599.600000pt;}
.x123_c00088{left:600.933333pt;}
.x102_c00088{left:603.200000pt;}
.xfc_c00088{left:604.800000pt;}
.x7f_c00088{left:605.866667pt;}
.xbc_c00088{left:607.066667pt;}
.x10_c00088{left:609.066667pt;}
.xd1_c00088{left:610.400000pt;}
.xcb_c00088{left:611.600000pt;}
.x69_c00088{left:613.466667pt;}
.x10a_c00088{left:614.400000pt;}
.xe8_c00088{left:616.400000pt;}
.xf6_c00088{left:619.466667pt;}
.x94_c00088{left:620.933333pt;}
.x131_c00088{left:623.333333pt;}
.x1e_c00088{left:624.266667pt;}
.x2d_c00088{left:626.533333pt;}
.x74_c00088{left:627.733333pt;}
.xb6_c00088{left:628.800000pt;}
.x8d_c00088{left:630.400000pt;}
.x57_c00088{left:631.600000pt;}
.x9d_c00088{left:637.466667pt;}
.x103_c00088{left:639.466667pt;}
.x114_c00088{left:640.800000pt;}
.x6a_c00088{left:642.933333pt;}
.xcc_c00088{left:645.466667pt;}
.x1f_c00088{left:646.666667pt;}
.x2e_c00088{left:648.000000pt;}
.xfd_c00088{left:650.533333pt;}
.x3e_c00088{left:652.133333pt;}
.x75_c00088{left:653.600000pt;}
.xab_c00088{left:655.333333pt;}
.xbd_c00088{left:657.200000pt;}
.x4a_c00088{left:658.266667pt;}
.xd2_c00088{left:659.333333pt;}
.x20_c00088{left:662.000000pt;}
.x58_c00088{left:662.933333pt;}
.x10f_c00088{left:664.400000pt;}
.x6b_c00088{left:667.200000pt;}
.xc3_c00088{left:669.733333pt;}
.x8e_c00088{left:670.666667pt;}
.x2f_c00088{left:672.000000pt;}
.x4b_c00088{left:672.933333pt;}
.xbe_c00088{left:674.533333pt;}
.x80_c00088{left:676.933333pt;}
.x21_c00088{left:680.266667pt;}
.xf7_c00088{left:681.200000pt;}
.x11_c00088{left:683.600000pt;}
.x107_c00088{left:685.600000pt;}
.x86_c00088{left:686.533333pt;}
.x12a_c00088{left:687.600000pt;}
.x4c_c00088{left:689.600000pt;}
.xac_c00088{left:691.200000pt;}
.xb3_c00088{left:693.200000pt;}
.xcd_c00088{left:697.600000pt;}
.x104_c00088{left:699.866667pt;}
.x3f_c00088{left:702.666667pt;}
}





/* 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_c00089 {
    display:none;
  }
  .loading-indicator_c00089.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00089 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_c00089 { 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_c00089" -> "#page-container .classname_c00089")
 */
.pf_c00089 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00089 { /* 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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00089 { /* 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_c00089 { /* 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_c00089 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00089 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00089 {overflow:visible;}
  }
}
.c_c00089 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00089 { /* 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_c00089:after { /* webkit #35443 */
  content: '';
}
.t_c00089:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00089 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 */
}
.__c00089 { /* 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_c00089 { /* info for Javascript */
  display:none;
}
.l_c00089 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00089 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00089 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00089: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_c00089 {
    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_c00089.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00089.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_c00089 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00089{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.000000;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;}
.m16_c00089{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m44_c00089{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m74_c00089{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00089{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m13_c00089{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m11_c00089{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m46_c00089{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m89_c00089{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m77_c00089{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m26_c00089{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m62_c00089{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m28_c00089{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00089{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m86_c00089{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m70_c00089{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m50_c00089{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00089{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00089{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m36_c00089{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00089{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00089{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00089{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00089{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00089{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m98_c00089{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00089{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m57_c00089{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00089{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00089{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m25_c00089{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00089{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m40_c00089{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00089{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00089{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00089{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3_c00089{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m47_c00089{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00089{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m35_c00089{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m71_c00089{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m56_c00089{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m41_c00089{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m99_c00089{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m93_c00089{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00089{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m18_c00089{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m69_c00089{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m30_c00089{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m63_c00089{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb_c00089{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.md_c00089{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00089{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m75_c00089{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00089{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00089{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m48_c00089{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6_c00089{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m80_c00089{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m53_c00089{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00089{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m21_c00089{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00089{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00089{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00089{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m19_c00089{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m84_c00089{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00089{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00089{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00089{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00089{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m82_c00089{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m73_c00089{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00089{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00089{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m27_c00089{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m39_c00089{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m22_c00089{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00089{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m32_c00089{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m68_c00089{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m94_c00089{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m34_c00089{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m97_c00089{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m52_c00089{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00089{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m96_c00089{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4_c00089{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m61_c00089{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00089{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00089{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00089{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m55_c00089{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00089{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00089{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m15_c00089{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m79_c00089{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m76_c00089{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00089{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00089{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00089{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m66_c00089{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m24_c00089{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m54_c00089{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mf_c00089{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00089{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me_c00089{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00089{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m60_c00089{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5_c00089{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m65_c00089{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m17_c00089{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m51_c00089{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00089{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m85_c00089{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00089{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m49_c00089{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00089{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m43_c00089{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00089{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m42_c00089{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00089{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00089{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00089{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00089{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m81_c00089{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00089{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9_c00089{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00089{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00089{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00089{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m58_c00089{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m64_c00089{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma_c00089{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00089{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14_c00089{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00089{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00089{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m95_c00089{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m23_c00089{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m20_c00089{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00089{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m38_c00089{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00089{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m67_c00089{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m88_c00089{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m37_c00089{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00089{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00089{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m92_c00089{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00089{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m10_c00089{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00089{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00089{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00089{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m83_c00089{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m90_c00089{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2_c00089{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m72_c00089{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00089{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00089{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m45_c00089{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00089{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m12_c00089{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00089{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00089{vertical-align:0.000000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{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__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00089{word-spacing:-6.944444px;}
.ws2_c00089{word-spacing:-5.064935px;}
.ws6_c00089{word-spacing:-3.611111px;}
.wsb_c00089{word-spacing:0.000000px;}
.ws4_c00089{word-spacing:3.518519px;}
.ws5_c00089{word-spacing:5.223214px;}
.ws3_c00089{word-spacing:5.555556px;}
.wsa_c00089{word-spacing:6.790123px;}
.ws9_c00089{word-spacing:8.333333px;}
.ws7_c00089{word-spacing:13.055556px;}
.ws8_c00089{word-spacing:34.074074px;}
.ws0_c00089{word-spacing:807.930946px;}
.fc0_c00089{color:transparent;}
.fs0_c00089{font-size:54.000000px;}
.fs1_c00089{font-size:60.000000px;}
.y0_c00089{bottom:0.000000px;}
.y2c_c00089{bottom:140.400000px;}
.y2b_c00089{bottom:181.800000px;}
.y2a_c00089{bottom:201.900000px;}
.y29_c00089{bottom:221.400000px;}
.y28_c00089{bottom:242.100000px;}
.y27_c00089{bottom:261.900000px;}
.y26_c00089{bottom:282.000000px;}
.y25_c00089{bottom:301.800000px;}
.y24_c00089{bottom:321.900000px;}
.y23_c00089{bottom:341.700000px;}
.y22_c00089{bottom:361.800000px;}
.y21_c00089{bottom:381.600000px;}
.y20_c00089{bottom:401.700000px;}
.y1f_c00089{bottom:421.500000px;}
.y1e_c00089{bottom:441.300000px;}
.y1d_c00089{bottom:461.550000px;}
.y1c_c00089{bottom:482.100000px;}
.y1b_c00089{bottom:502.200000px;}
.y1a_c00089{bottom:522.300000px;}
.y19_c00089{bottom:542.400000px;}
.y18_c00089{bottom:562.500000px;}
.y17_c00089{bottom:582.300000px;}
.y16_c00089{bottom:602.400000px;}
.y15_c00089{bottom:622.500000px;}
.y14_c00089{bottom:642.600000px;}
.y13_c00089{bottom:662.400000px;}
.y12_c00089{bottom:682.200000px;}
.y11_c00089{bottom:702.000000px;}
.y10_c00089{bottom:722.100000px;}
.yf_c00089{bottom:742.200000px;}
.ye_c00089{bottom:762.300000px;}
.yd_c00089{bottom:782.400000px;}
.yc_c00089{bottom:802.500000px;}
.yb_c00089{bottom:822.300000px;}
.ya_c00089{bottom:842.100000px;}
.y9_c00089{bottom:862.200000px;}
.y8_c00089{bottom:882.000000px;}
.y7_c00089{bottom:902.400000px;}
.y6_c00089{bottom:922.500000px;}
.y5_c00089{bottom:942.300000px;}
.y4_c00089{bottom:962.400000px;}
.y3_c00089{bottom:982.200000px;}
.y2_c00089{bottom:1002.300000px;}
.y1_c00089{bottom:1040.700000px;}
.h2_c00089{height:54.000000px;}
.h3_c00089{height:60.000000px;}
.h1_c00089{height:1167.000000px;}
.h0_c00089{height:1167.119934px;}
.w0_c00089{width:913.320007px;}
.w1_c00089{width:913.500000px;}
.x0_c00089{left:0.000000px;}
.x4_c00089{left:99.300000px;}
.x5c_c00089{left:101.100000px;}
.x89_c00089{left:102.150000px;}
.xa8_c00089{left:103.350000px;}
.xef_c00089{left:105.000000px;}
.x12e_c00089{left:106.050000px;}
.x8a_c00089{left:119.850000px;}
.x12a_c00089{left:122.700000px;}
.xc6_c00089{left:124.650000px;}
.x4a_c00089{left:126.150000px;}
.xff_c00089{left:130.200000px;}
.x51_c00089{left:132.150000px;}
.x75_c00089{left:133.800000px;}
.x5_c00089{left:136.350000px;}
.x13_c00089{left:140.400000px;}
.xc7_c00089{left:144.750000px;}
.xa9_c00089{left:146.250000px;}
.xdc_c00089{left:147.450000px;}
.x8b_c00089{left:149.400000px;}
.xb7_c00089{left:152.850000px;}
.xe0_c00089{left:155.550000px;}
.x76_c00089{left:157.500000px;}
.x3c_c00089{left:158.700000px;}
.xa0_c00089{left:160.800000px;}
.x6_c00089{left:161.850000px;}
.xaa_c00089{left:163.200000px;}
.x22_c00089{left:166.500000px;}
.x100_c00089{left:168.300000px;}
.x8c_c00089{left:170.250000px;}
.x125_c00089{left:171.750000px;}
.x52_c00089{left:173.550000px;}
.x12b_c00089{left:175.650000px;}
.x4b_c00089{left:176.850000px;}
.x2f_c00089{left:178.500000px;}
.x96_c00089{left:181.050000px;}
.xe5_c00089{left:182.400000px;}
.xb0_c00089{left:183.600000px;}
.x81_c00089{left:185.550000px;}
.x3d_c00089{left:188.550000px;}
.xa1_c00089{left:189.600000px;}
.x115_c00089{left:191.250000px;}
.xe1_c00089{left:193.050000px;}
.x13a_c00089{left:195.300000px;}
.x30_c00089{left:198.000000px;}
.x97_c00089{left:199.050000px;}
.xf0_c00089{left:200.400000px;}
.xf6_c00089{left:202.350000px;}
.x134_c00089{left:203.700000px;}
.xdd_c00089{left:204.750000px;}
.x8d_c00089{left:208.800000px;}
.x14_c00089{left:210.300000px;}
.x126_c00089{left:211.650000px;}
.x82_c00089{left:213.600000px;}
.xb1_c00089{left:214.950000px;}
.x5d_c00089{left:216.300000px;}
.x131_c00089{left:218.700000px;}
.xa2_c00089{left:219.900000px;}
.x77_c00089{left:221.550000px;}
.x3e_c00089{left:225.300000px;}
.xf5_c00089{left:227.550000px;}
.xbf_c00089{left:229.650000px;}
.x6a_c00089{left:231.900000px;}
.x5e_c00089{left:233.550000px;}
.xf1_c00089{left:234.600000px;}
.x101_c00089{left:235.950000px;}
.x3f_c00089{left:237.150000px;}
.x7_c00089{left:238.500000px;}
.x98_c00089{left:242.550000px;}
.x83_c00089{left:247.500000px;}
.xe6_c00089{left:249.000000px;}
.x136_c00089{left:250.350000px;}
.x23_c00089{left:251.400000px;}
.x132_c00089{left:252.600000px;}
.xcc_c00089{left:254.100000px;}
.x31_c00089{left:255.300000px;}
.x8_c00089{left:256.500000px;}
.x13b_c00089{left:257.550000px;}
.xd7_c00089{left:259.350000px;}
.x78_c00089{left:264.000000px;}
.xc0_c00089{left:265.350000px;}
.x5f_c00089{left:267.450000px;}
.x4c_c00089{left:269.400000px;}
.x6b_c00089{left:273.000000px;}
.xe2_c00089{left:277.650000px;}
.xf7_c00089{left:279.450000px;}
.x9_c00089{left:282.000000px;}
.x15_c00089{left:283.350000px;}
.x11d_c00089{left:285.900000px;}
.xcd_c00089{left:288.600000px;}
.xab_c00089{left:289.800000px;}
.x24_c00089{left:291.750000px;}
.xb8_c00089{left:292.950000px;}
.xc8_c00089{left:294.000000px;}
.x60_c00089{left:296.250000px;}
.x40_c00089{left:299.850000px;}
.x53_c00089{left:301.350000px;}
.xeb_c00089{left:304.200000px;}
.x8e_c00089{left:306.750000px;}
.x102_c00089{left:308.250000px;}
.xd8_c00089{left:310.800000px;}
.x79_c00089{left:312.600000px;}
.x4d_c00089{left:314.100000px;}
.x99_c00089{left:315.300000px;}
.xc9_c00089{left:317.700000px;}
.x133_c00089{left:319.500000px;}
.x16_c00089{left:321.150000px;}
.x41_c00089{left:322.200000px;}
.x84_c00089{left:323.850000px;}
.xce_c00089{left:325.350000px;}
.xf8_c00089{left:326.550000px;}
.x103_c00089{left:328.050000px;}
.x54_c00089{left:329.100000px;}
.xf2_c00089{left:331.050000px;}
.xc1_c00089{left:332.250000px;}
.x25_c00089{left:336.450000px;}
.xec_c00089{left:337.650000px;}
.x17_c00089{left:339.450000px;}
.x7a_c00089{left:341.700000px;}
.xa_c00089{left:344.250000px;}
.x32_c00089{left:347.850000px;}
.xc2_c00089{left:349.500000px;}
.x127_c00089{left:352.350000px;}
.x42_c00089{left:353.550000px;}
.x104_c00089{left:356.100000px;}
.x1_c00089{left:358.200000px;}
.x61_c00089{left:360.300000px;}
.x6c_c00089{left:362.700000px;}
.xcf_c00089{left:364.650000px;}
.xb_c00089{left:369.750000px;}
.xac_c00089{left:371.550000px;}
.x18_c00089{left:372.600000px;}
.x8f_c00089{left:374.100000px;}
.x55_c00089{left:375.900000px;}
.x33_c00089{left:378.150000px;}
.xa3_c00089{left:379.800000px;}
.xd0_c00089{left:382.350000px;}
.x4e_c00089{left:384.000000px;}
.x13f_c00089{left:388.200000px;}
.x26_c00089{left:390.150000px;}
.x2_c00089{left:391.650000px;}
.x10c_c00089{left:396.150000px;}
.x6d_c00089{left:397.650000px;}
.x34_c00089{left:398.700000px;}
.x11e_c00089{left:399.750000px;}
.xad_c00089{left:401.100000px;}
.x9a_c00089{left:403.200000px;}
.x62_c00089{left:404.550000px;}
.xf9_c00089{left:409.350000px;}
.x4f_c00089{left:412.800000px;}
.xe7_c00089{left:414.150000px;}
.x140_c00089{left:416.700000px;}
.xc_c00089{left:418.350000px;}
.x43_c00089{left:420.150000px;}
.x11f_c00089{left:421.350000px;}
.xae_c00089{left:424.200000px;}
.x10d_c00089{left:425.250000px;}
.xed_c00089{left:426.900000px;}
.x116_c00089{left:429.600000px;}
.x105_c00089{left:431.700000px;}
.xa4_c00089{left:433.050000px;}
.x63_c00089{left:434.100000px;}
.x90_c00089{left:436.350000px;}
.x19_c00089{left:437.400000px;}
.x27_c00089{left:438.750000px;}
.x12f_c00089{left:442.050000px;}
.x56_c00089{left:443.550000px;}
.x137_c00089{left:444.600000px;}
.x6e_c00089{left:445.800000px;}
.xb9_c00089{left:447.750000px;}
.x12c_c00089{left:450.000000px;}
.x64_c00089{left:451.050000px;}
.xd_c00089{left:453.300000px;}
.x3_c00089{left:457.200000px;}
.x28_c00089{left:462.150000px;}
.x57_c00089{left:464.100000px;}
.x9b_c00089{left:465.750000px;}
.x13c_c00089{left:472.200000px;}
.x85_c00089{left:473.700000px;}
.xa5_c00089{left:475.500000px;}
.x35_c00089{left:477.150000px;}
.x106_c00089{left:478.200000px;}
.x91_c00089{left:480.600000px;}
.xba_c00089{left:483.450000px;}
.xfa_c00089{left:484.950000px;}
.xee_c00089{left:488.100000px;}
.x1a_c00089{left:490.350000px;}
.xe8_c00089{left:491.550000px;}
.x138_c00089{left:493.950000px;}
.x117_c00089{left:495.150000px;}
.x36_c00089{left:497.700000px;}
.xf3_c00089{left:499.500000px;}
.x1b_c00089{left:501.450000px;}
.x128_c00089{left:502.800000px;}
.x50_c00089{left:504.600000px;}
.xd9_c00089{left:508.500000px;}
.x6f_c00089{left:509.850000px;}
.x65_c00089{left:511.950000px;}
.xfb_c00089{left:513.450000px;}
.xe_c00089{left:514.500000px;}
.x120_c00089{left:515.550000px;}
.x107_c00089{left:517.500000px;}
.x86_c00089{left:519.750000px;}
.x9c_c00089{left:521.250000px;}
.x130_c00089{left:523.050000px;}
.xaf_c00089{left:526.800000px;}
.x58_c00089{left:528.150000px;}
.x1c_c00089{left:529.950000px;}
.x13d_c00089{left:531.600000px;}
.x7b_c00089{left:532.950000px;}
.x87_c00089{left:537.450000px;}
.xd1_c00089{left:539.550000px;}
.x92_c00089{left:540.750000px;}
.x118_c00089{left:541.950000px;}
.x121_c00089{left:544.650000px;}
.xa6_c00089{left:546.750000px;}
.x44_c00089{left:547.950000px;}
.xf_c00089{left:549.450000px;}
.x29_c00089{left:551.550000px;}
.x70_c00089{left:554.550000px;}
.x59_c00089{left:557.250000px;}
.xbb_c00089{left:558.300000px;}
.xb2_c00089{left:559.500000px;}
.x7c_c00089{left:561.450000px;}
.x110_c00089{left:562.800000px;}
.x108_c00089{left:564.300000px;}
.xe3_c00089{left:566.400000px;}
.xc3_c00089{left:568.500000px;}
.x37_c00089{left:569.700000px;}
.x71_c00089{left:572.850000px;}
.x93_c00089{left:575.250000px;}
.x2a_c00089{left:577.050000px;}
.xd2_c00089{left:578.400000px;}
.xe9_c00089{left:579.450000px;}
.x66_c00089{left:581.400000px;}
.x10e_c00089{left:582.900000px;}
.x10_c00089{left:585.750000px;}
.x88_c00089{left:588.150000px;}
.x7d_c00089{left:592.350000px;}
.xbc_c00089{left:593.550000px;}
.x45_c00089{left:596.550000px;}
.x1d_c00089{left:598.650000px;}
.x72_c00089{left:600.600000px;}
.xfc_c00089{left:604.650000px;}
.x111_c00089{left:607.500000px;}
.xde_c00089{left:608.850000px;}
.x67_c00089{left:610.500000px;}
.xd3_c00089{left:612.600000px;}
.x1e_c00089{left:616.350000px;}
.xb3_c00089{left:617.400000px;}
.x94_c00089{left:619.200000px;}
.x119_c00089{left:620.400000px;}
.x9d_c00089{left:623.100000px;}
.x139_c00089{left:624.150000px;}
.x38_c00089{left:625.800000px;}
.x68_c00089{left:627.450000px;}
.x122_c00089{left:630.600000px;}
.xca_c00089{left:633.000000px;}
.x46_c00089{left:634.650000px;}
.x2b_c00089{left:635.700000px;}
.x11a_c00089{left:639.150000px;}
.x109_c00089{left:642.750000px;}
.x135_c00089{left:644.400000px;}
.x1f_c00089{left:645.450000px;}
.x73_c00089{left:648.150000px;}
.xc4_c00089{left:649.500000px;}
.x39_c00089{left:651.300000px;}
.xf4_c00089{left:653.700000px;}
.x2c_c00089{left:655.500000px;}
.xb4_c00089{left:657.000000px;}
.xda_c00089{left:659.400000px;}
.xbd_c00089{left:660.900000px;}
.xdf_c00089{left:663.150000px;}
.xfd_c00089{left:665.850000px;}
.x11b_c00089{left:667.200000px;}
.x47_c00089{left:669.600000px;}
.x95_c00089{left:671.400000px;}
.x69_c00089{left:672.450000px;}
.xd4_c00089{left:674.850000px;}
.x20_c00089{left:678.150000px;}
.x11_c00089{left:680.100000px;}
.x9e_c00089{left:682.800000px;}
.xc5_c00089{left:684.450000px;}
.x129_c00089{left:685.650000px;}
.x3a_c00089{left:687.600000px;}
.x123_c00089{left:688.950000px;}
.xd5_c00089{left:694.950000px;}
.x112_c00089{left:696.300000px;}
.x74_c00089{left:697.800000px;}
.xcb_c00089{left:699.600000px;}
.x7e_c00089{left:700.650000px;}
.x5a_c00089{left:705.900000px;}
.x9f_c00089{left:708.300000px;}
.x12_c00089{left:710.700000px;}
.xbe_c00089{left:712.050000px;}
.x113_c00089{left:713.250000px;}
.xa7_c00089{left:714.300000px;}
.x48_c00089{left:719.700000px;}
.x7f_c00089{left:720.750000px;}
.xb5_c00089{left:722.100000px;}
.x13e_c00089{left:723.900000px;}
.x10a_c00089{left:725.550000px;}
.x2d_c00089{left:727.500000px;}
.x3b_c00089{left:729.300000px;}
.x10f_c00089{left:730.950000px;}
.x49_c00089{left:732.000000px;}
.x11c_c00089{left:734.400000px;}
.x12d_c00089{left:735.750000px;}
.x114_c00089{left:738.750000px;}
.x80_c00089{left:741.600000px;}
.x21_c00089{left:744.000000px;}
.xb6_c00089{left:745.500000px;}
.x2e_c00089{left:747.300000px;}
.xea_c00089{left:750.900000px;}
.xd6_c00089{left:752.550000px;}
.x5b_c00089{left:756.600000px;}
.xdb_c00089{left:758.400000px;}
.xe4_c00089{left:759.750000px;}
.x124_c00089{left:764.550000px;}
.x10b_c00089{left:766.650000px;}
.xfe_c00089{left:769.500000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws1_c00089{word-spacing:-6.172840pt;}
.ws2_c00089{word-spacing:-4.502165pt;}
.ws6_c00089{word-spacing:-3.209877pt;}
.wsb_c00089{word-spacing:0.000000pt;}
.ws4_c00089{word-spacing:3.127572pt;}
.ws5_c00089{word-spacing:4.642857pt;}
.ws3_c00089{word-spacing:4.938272pt;}
.wsa_c00089{word-spacing:6.035665pt;}
.ws9_c00089{word-spacing:7.407407pt;}
.ws7_c00089{word-spacing:11.604938pt;}
.ws8_c00089{word-spacing:30.288066pt;}
.ws0_c00089{word-spacing:718.160841pt;}
.fs0_c00089{font-size:48.000000pt;}
.fs1_c00089{font-size:53.333333pt;}
.y0_c00089{bottom:0.000000pt;}
.y2c_c00089{bottom:124.800000pt;}
.y2b_c00089{bottom:161.600000pt;}
.y2a_c00089{bottom:179.466667pt;}
.y29_c00089{bottom:196.800000pt;}
.y28_c00089{bottom:215.200000pt;}
.y27_c00089{bottom:232.800000pt;}
.y26_c00089{bottom:250.666667pt;}
.y25_c00089{bottom:268.266667pt;}
.y24_c00089{bottom:286.133333pt;}
.y23_c00089{bottom:303.733333pt;}
.y22_c00089{bottom:321.600000pt;}
.y21_c00089{bottom:339.200000pt;}
.y20_c00089{bottom:357.066667pt;}
.y1f_c00089{bottom:374.666667pt;}
.y1e_c00089{bottom:392.266667pt;}
.y1d_c00089{bottom:410.266667pt;}
.y1c_c00089{bottom:428.533333pt;}
.y1b_c00089{bottom:446.400000pt;}
.y1a_c00089{bottom:464.266667pt;}
.y19_c00089{bottom:482.133333pt;}
.y18_c00089{bottom:500.000000pt;}
.y17_c00089{bottom:517.600000pt;}
.y16_c00089{bottom:535.466667pt;}
.y15_c00089{bottom:553.333333pt;}
.y14_c00089{bottom:571.200000pt;}
.y13_c00089{bottom:588.800000pt;}
.y12_c00089{bottom:606.400000pt;}
.y11_c00089{bottom:624.000000pt;}
.y10_c00089{bottom:641.866667pt;}
.yf_c00089{bottom:659.733333pt;}
.ye_c00089{bottom:677.600000pt;}
.yd_c00089{bottom:695.466667pt;}
.yc_c00089{bottom:713.333333pt;}
.yb_c00089{bottom:730.933333pt;}
.ya_c00089{bottom:748.533333pt;}
.y9_c00089{bottom:766.400000pt;}
.y8_c00089{bottom:784.000000pt;}
.y7_c00089{bottom:802.133333pt;}
.y6_c00089{bottom:820.000000pt;}
.y5_c00089{bottom:837.600000pt;}
.y4_c00089{bottom:855.466667pt;}
.y3_c00089{bottom:873.066667pt;}
.y2_c00089{bottom:890.933333pt;}
.y1_c00089{bottom:925.066667pt;}
.h2_c00089{height:48.000000pt;}
.h3_c00089{height:53.333333pt;}
.h1_c00089{height:1037.333333pt;}
.h0_c00089{height:1037.439941pt;}
.w0_c00089{width:811.840007pt;}
.w1_c00089{width:812.000000pt;}
.x0_c00089{left:0.000000pt;}
.x4_c00089{left:88.266667pt;}
.x5c_c00089{left:89.866667pt;}
.x89_c00089{left:90.800000pt;}
.xa8_c00089{left:91.866667pt;}
.xef_c00089{left:93.333333pt;}
.x12e_c00089{left:94.266667pt;}
.x8a_c00089{left:106.533333pt;}
.x12a_c00089{left:109.066667pt;}
.xc6_c00089{left:110.800000pt;}
.x4a_c00089{left:112.133333pt;}
.xff_c00089{left:115.733333pt;}
.x51_c00089{left:117.466667pt;}
.x75_c00089{left:118.933333pt;}
.x5_c00089{left:121.200000pt;}
.x13_c00089{left:124.800000pt;}
.xc7_c00089{left:128.666667pt;}
.xa9_c00089{left:130.000000pt;}
.xdc_c00089{left:131.066667pt;}
.x8b_c00089{left:132.800000pt;}
.xb7_c00089{left:135.866667pt;}
.xe0_c00089{left:138.266667pt;}
.x76_c00089{left:140.000000pt;}
.x3c_c00089{left:141.066667pt;}
.xa0_c00089{left:142.933333pt;}
.x6_c00089{left:143.866667pt;}
.xaa_c00089{left:145.066667pt;}
.x22_c00089{left:148.000000pt;}
.x100_c00089{left:149.600000pt;}
.x8c_c00089{left:151.333333pt;}
.x125_c00089{left:152.666667pt;}
.x52_c00089{left:154.266667pt;}
.x12b_c00089{left:156.133333pt;}
.x4b_c00089{left:157.200000pt;}
.x2f_c00089{left:158.666667pt;}
.x96_c00089{left:160.933333pt;}
.xe5_c00089{left:162.133333pt;}
.xb0_c00089{left:163.200000pt;}
.x81_c00089{left:164.933333pt;}
.x3d_c00089{left:167.600000pt;}
.xa1_c00089{left:168.533333pt;}
.x115_c00089{left:170.000000pt;}
.xe1_c00089{left:171.600000pt;}
.x13a_c00089{left:173.600000pt;}
.x30_c00089{left:176.000000pt;}
.x97_c00089{left:176.933333pt;}
.xf0_c00089{left:178.133333pt;}
.xf6_c00089{left:179.866667pt;}
.x134_c00089{left:181.066667pt;}
.xdd_c00089{left:182.000000pt;}
.x8d_c00089{left:185.600000pt;}
.x14_c00089{left:186.933333pt;}
.x126_c00089{left:188.133333pt;}
.x82_c00089{left:189.866667pt;}
.xb1_c00089{left:191.066667pt;}
.x5d_c00089{left:192.266667pt;}
.x131_c00089{left:194.400000pt;}
.xa2_c00089{left:195.466667pt;}
.x77_c00089{left:196.933333pt;}
.x3e_c00089{left:200.266667pt;}
.xf5_c00089{left:202.266667pt;}
.xbf_c00089{left:204.133333pt;}
.x6a_c00089{left:206.133333pt;}
.x5e_c00089{left:207.600000pt;}
.xf1_c00089{left:208.533333pt;}
.x101_c00089{left:209.733333pt;}
.x3f_c00089{left:210.800000pt;}
.x7_c00089{left:212.000000pt;}
.x98_c00089{left:215.600000pt;}
.x83_c00089{left:220.000000pt;}
.xe6_c00089{left:221.333333pt;}
.x136_c00089{left:222.533333pt;}
.x23_c00089{left:223.466667pt;}
.x132_c00089{left:224.533333pt;}
.xcc_c00089{left:225.866667pt;}
.x31_c00089{left:226.933333pt;}
.x8_c00089{left:228.000000pt;}
.x13b_c00089{left:228.933333pt;}
.xd7_c00089{left:230.533333pt;}
.x78_c00089{left:234.666667pt;}
.xc0_c00089{left:235.866667pt;}
.x5f_c00089{left:237.733333pt;}
.x4c_c00089{left:239.466667pt;}
.x6b_c00089{left:242.666667pt;}
.xe2_c00089{left:246.800000pt;}
.xf7_c00089{left:248.400000pt;}
.x9_c00089{left:250.666667pt;}
.x15_c00089{left:251.866667pt;}
.x11d_c00089{left:254.133333pt;}
.xcd_c00089{left:256.533333pt;}
.xab_c00089{left:257.600000pt;}
.x24_c00089{left:259.333333pt;}
.xb8_c00089{left:260.400000pt;}
.xc8_c00089{left:261.333333pt;}
.x60_c00089{left:263.333333pt;}
.x40_c00089{left:266.533333pt;}
.x53_c00089{left:267.866667pt;}
.xeb_c00089{left:270.400000pt;}
.x8e_c00089{left:272.666667pt;}
.x102_c00089{left:274.000000pt;}
.xd8_c00089{left:276.266667pt;}
.x79_c00089{left:277.866667pt;}
.x4d_c00089{left:279.200000pt;}
.x99_c00089{left:280.266667pt;}
.xc9_c00089{left:282.400000pt;}
.x133_c00089{left:284.000000pt;}
.x16_c00089{left:285.466667pt;}
.x41_c00089{left:286.400000pt;}
.x84_c00089{left:287.866667pt;}
.xce_c00089{left:289.200000pt;}
.xf8_c00089{left:290.266667pt;}
.x103_c00089{left:291.600000pt;}
.x54_c00089{left:292.533333pt;}
.xf2_c00089{left:294.266667pt;}
.xc1_c00089{left:295.333333pt;}
.x25_c00089{left:299.066667pt;}
.xec_c00089{left:300.133333pt;}
.x17_c00089{left:301.733333pt;}
.x7a_c00089{left:303.733333pt;}
.xa_c00089{left:306.000000pt;}
.x32_c00089{left:309.200000pt;}
.xc2_c00089{left:310.666667pt;}
.x127_c00089{left:313.200000pt;}
.x42_c00089{left:314.266667pt;}
.x104_c00089{left:316.533333pt;}
.x1_c00089{left:318.400000pt;}
.x61_c00089{left:320.266667pt;}
.x6c_c00089{left:322.400000pt;}
.xcf_c00089{left:324.133333pt;}
.xb_c00089{left:328.666667pt;}
.xac_c00089{left:330.266667pt;}
.x18_c00089{left:331.200000pt;}
.x8f_c00089{left:332.533333pt;}
.x55_c00089{left:334.133333pt;}
.x33_c00089{left:336.133333pt;}
.xa3_c00089{left:337.600000pt;}
.xd0_c00089{left:339.866667pt;}
.x4e_c00089{left:341.333333pt;}
.x13f_c00089{left:345.066667pt;}
.x26_c00089{left:346.800000pt;}
.x2_c00089{left:348.133333pt;}
.x10c_c00089{left:352.133333pt;}
.x6d_c00089{left:353.466667pt;}
.x34_c00089{left:354.400000pt;}
.x11e_c00089{left:355.333333pt;}
.xad_c00089{left:356.533333pt;}
.x9a_c00089{left:358.400000pt;}
.x62_c00089{left:359.600000pt;}
.xf9_c00089{left:363.866667pt;}
.x4f_c00089{left:366.933333pt;}
.xe7_c00089{left:368.133333pt;}
.x140_c00089{left:370.400000pt;}
.xc_c00089{left:371.866667pt;}
.x43_c00089{left:373.466667pt;}
.x11f_c00089{left:374.533333pt;}
.xae_c00089{left:377.066667pt;}
.x10d_c00089{left:378.000000pt;}
.xed_c00089{left:379.466667pt;}
.x116_c00089{left:381.866667pt;}
.x105_c00089{left:383.733333pt;}
.xa4_c00089{left:384.933333pt;}
.x63_c00089{left:385.866667pt;}
.x90_c00089{left:387.866667pt;}
.x19_c00089{left:388.800000pt;}
.x27_c00089{left:390.000000pt;}
.x12f_c00089{left:392.933333pt;}
.x56_c00089{left:394.266667pt;}
.x137_c00089{left:395.200000pt;}
.x6e_c00089{left:396.266667pt;}
.xb9_c00089{left:398.000000pt;}
.x12c_c00089{left:400.000000pt;}
.x64_c00089{left:400.933333pt;}
.xd_c00089{left:402.933333pt;}
.x3_c00089{left:406.400000pt;}
.x28_c00089{left:410.800000pt;}
.x57_c00089{left:412.533333pt;}
.x9b_c00089{left:414.000000pt;}
.x13c_c00089{left:419.733333pt;}
.x85_c00089{left:421.066667pt;}
.xa5_c00089{left:422.666667pt;}
.x35_c00089{left:424.133333pt;}
.x106_c00089{left:425.066667pt;}
.x91_c00089{left:427.200000pt;}
.xba_c00089{left:429.733333pt;}
.xfa_c00089{left:431.066667pt;}
.xee_c00089{left:433.866667pt;}
.x1a_c00089{left:435.866667pt;}
.xe8_c00089{left:436.933333pt;}
.x138_c00089{left:439.066667pt;}
.x117_c00089{left:440.133333pt;}
.x36_c00089{left:442.400000pt;}
.xf3_c00089{left:444.000000pt;}
.x1b_c00089{left:445.733333pt;}
.x128_c00089{left:446.933333pt;}
.x50_c00089{left:448.533333pt;}
.xd9_c00089{left:452.000000pt;}
.x6f_c00089{left:453.200000pt;}
.x65_c00089{left:455.066667pt;}
.xfb_c00089{left:456.400000pt;}
.xe_c00089{left:457.333333pt;}
.x120_c00089{left:458.266667pt;}
.x107_c00089{left:460.000000pt;}
.x86_c00089{left:462.000000pt;}
.x9c_c00089{left:463.333333pt;}
.x130_c00089{left:464.933333pt;}
.xaf_c00089{left:468.266667pt;}
.x58_c00089{left:469.466667pt;}
.x1c_c00089{left:471.066667pt;}
.x13d_c00089{left:472.533333pt;}
.x7b_c00089{left:473.733333pt;}
.x87_c00089{left:477.733333pt;}
.xd1_c00089{left:479.600000pt;}
.x92_c00089{left:480.666667pt;}
.x118_c00089{left:481.733333pt;}
.x121_c00089{left:484.133333pt;}
.xa6_c00089{left:486.000000pt;}
.x44_c00089{left:487.066667pt;}
.xf_c00089{left:488.400000pt;}
.x29_c00089{left:490.266667pt;}
.x70_c00089{left:492.933333pt;}
.x59_c00089{left:495.333333pt;}
.xbb_c00089{left:496.266667pt;}
.xb2_c00089{left:497.333333pt;}
.x7c_c00089{left:499.066667pt;}
.x110_c00089{left:500.266667pt;}
.x108_c00089{left:501.600000pt;}
.xe3_c00089{left:503.466667pt;}
.xc3_c00089{left:505.333333pt;}
.x37_c00089{left:506.400000pt;}
.x71_c00089{left:509.200000pt;}
.x93_c00089{left:511.333333pt;}
.x2a_c00089{left:512.933333pt;}
.xd2_c00089{left:514.133333pt;}
.xe9_c00089{left:515.066667pt;}
.x66_c00089{left:516.800000pt;}
.x10e_c00089{left:518.133333pt;}
.x10_c00089{left:520.666667pt;}
.x88_c00089{left:522.800000pt;}
.x7d_c00089{left:526.533333pt;}
.xbc_c00089{left:527.600000pt;}
.x45_c00089{left:530.266667pt;}
.x1d_c00089{left:532.133333pt;}
.x72_c00089{left:533.866667pt;}
.xfc_c00089{left:537.466667pt;}
.x111_c00089{left:540.000000pt;}
.xde_c00089{left:541.200000pt;}
.x67_c00089{left:542.666667pt;}
.xd3_c00089{left:544.533333pt;}
.x1e_c00089{left:547.866667pt;}
.xb3_c00089{left:548.800000pt;}
.x94_c00089{left:550.400000pt;}
.x119_c00089{left:551.466667pt;}
.x9d_c00089{left:553.866667pt;}
.x139_c00089{left:554.800000pt;}
.x38_c00089{left:556.266667pt;}
.x68_c00089{left:557.733333pt;}
.x122_c00089{left:560.533333pt;}
.xca_c00089{left:562.666667pt;}
.x46_c00089{left:564.133333pt;}
.x2b_c00089{left:565.066667pt;}
.x11a_c00089{left:568.133333pt;}
.x109_c00089{left:571.333333pt;}
.x135_c00089{left:572.800000pt;}
.x1f_c00089{left:573.733333pt;}
.x73_c00089{left:576.133333pt;}
.xc4_c00089{left:577.333333pt;}
.x39_c00089{left:578.933333pt;}
.xf4_c00089{left:581.066667pt;}
.x2c_c00089{left:582.666667pt;}
.xb4_c00089{left:584.000000pt;}
.xda_c00089{left:586.133333pt;}
.xbd_c00089{left:587.466667pt;}
.xdf_c00089{left:589.466667pt;}
.xfd_c00089{left:591.866667pt;}
.x11b_c00089{left:593.066667pt;}
.x47_c00089{left:595.200000pt;}
.x95_c00089{left:596.800000pt;}
.x69_c00089{left:597.733333pt;}
.xd4_c00089{left:599.866667pt;}
.x20_c00089{left:602.800000pt;}
.x11_c00089{left:604.533333pt;}
.x9e_c00089{left:606.933333pt;}
.xc5_c00089{left:608.400000pt;}
.x129_c00089{left:609.466667pt;}
.x3a_c00089{left:611.200000pt;}
.x123_c00089{left:612.400000pt;}
.xd5_c00089{left:617.733333pt;}
.x112_c00089{left:618.933333pt;}
.x74_c00089{left:620.266667pt;}
.xcb_c00089{left:621.866667pt;}
.x7e_c00089{left:622.800000pt;}
.x5a_c00089{left:627.466667pt;}
.x9f_c00089{left:629.600000pt;}
.x12_c00089{left:631.733333pt;}
.xbe_c00089{left:632.933333pt;}
.x113_c00089{left:634.000000pt;}
.xa7_c00089{left:634.933333pt;}
.x48_c00089{left:639.733333pt;}
.x7f_c00089{left:640.666667pt;}
.xb5_c00089{left:641.866667pt;}
.x13e_c00089{left:643.466667pt;}
.x10a_c00089{left:644.933333pt;}
.x2d_c00089{left:646.666667pt;}
.x3b_c00089{left:648.266667pt;}
.x10f_c00089{left:649.733333pt;}
.x49_c00089{left:650.666667pt;}
.x11c_c00089{left:652.800000pt;}
.x12d_c00089{left:654.000000pt;}
.x114_c00089{left:656.666667pt;}
.x80_c00089{left:659.200000pt;}
.x21_c00089{left:661.333333pt;}
.xb6_c00089{left:662.666667pt;}
.x2e_c00089{left:664.266667pt;}
.xea_c00089{left:667.466667pt;}
.xd6_c00089{left:668.933333pt;}
.x5b_c00089{left:672.533333pt;}
.xdb_c00089{left:674.133333pt;}
.xe4_c00089{left:675.333333pt;}
.x124_c00089{left:679.600000pt;}
.x10b_c00089{left:681.466667pt;}
.xfe_c00089{left:684.000000pt;}
}





/* 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_c00090 {
    display:none;
  }
  .loading-indicator_c00090.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00090 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_c00090 { 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_c00090" -> "#page-container .classname_c00090")
 */
.pf_c00090 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00090 { /* 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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00090 { /* 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_c00090 { /* 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_c00090 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00090 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00090 {overflow:visible;}
  }
}
.c_c00090 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00090 { /* 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_c00090:after { /* webkit #35443 */
  content: '';
}
.t_c00090:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00090 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 */
}
.__c00090 { /* 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_c00090 { /* info for Javascript */
  display:none;
}
.l_c00090 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00090 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00090 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00090: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_c00090 {
    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_c00090.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00090.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_c00090 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00090{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00090;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.000000;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;}
.m4b_c00090{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00090{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00090{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00090{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m52_c00090{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m39_c00090{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4_c00090{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00090{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m90_c00090{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m65_c00090{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m97_c00090{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m92_c00090{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m98_c00090{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m15_c00090{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m99_c00090{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00090{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00090{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc_c00090{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m55_c00090{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m20_c00090{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m18_c00090{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m85_c00090{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m89_c00090{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00090{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00090{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00090{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3_c00090{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m87_c00090{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m61_c00090{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00090{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00090{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m73_c00090{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8_c00090{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m63_c00090{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00090{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00090{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00090{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00090{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00090{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mf_c00090{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00090{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00090{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m51_c00090{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9_c00090{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m12_c00090{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m71_c00090{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00090{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00090{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma_c00090{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00090{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5_c00090{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m54_c00090{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00090{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m81_c00090{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m22_c00090{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m80_c00090{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m83_c00090{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m38_c00090{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me_c00090{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00090{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00090{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00090{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m64_c00090{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11_c00090{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m58_c00090{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00090{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00090{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00090{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m17_c00090{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m91_c00090{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m37_c00090{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00090{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00090{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00090{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m56_c00090{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00090{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m76_c00090{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m59_c00090{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m88_c00090{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m44_c00090{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m21_c00090{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m30_c00090{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m19_c00090{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m86_c00090{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00090{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00090{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00090{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00090{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m42_c00090{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m66_c00090{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00090{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m29_c00090{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m75_c00090{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m26_c00090{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10_c00090{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00090{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00090{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m68_c00090{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00090{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m36_c00090{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6_c00090{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00090{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00090{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00090{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00090{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m27_c00090{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00090{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m72_c00090{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m25_c00090{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m77_c00090{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m49_c00090{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m84_c00090{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m93_c00090{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00090{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m40_c00090{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13_c00090{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24_c00090{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m78_c00090{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m79_c00090{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);}
.m60_c00090{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00090{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m69_c00090{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m47_c00090{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00090{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00090{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00090{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m28_c00090{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m33_c00090{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m50_c00090{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m23_c00090{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m32_c00090{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00090{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m41_c00090{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m45_c00090{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00090{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m70_c00090{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m34_c00090{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00090{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00090{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m95_c00090{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m46_c00090{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m35_c00090{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m57_c00090{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00090{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m94_c00090{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00090{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m48_c00090{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00090{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00090{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00090{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m0_c00090{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00090{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00090{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00090{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m74_c00090{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m53_c00090{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00090{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00090{vertical-align:0.000000px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{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__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00090{word-spacing:-7.051282px;}
.ws3_c00090{word-spacing:-6.172840px;}
.ws9_c00090{word-spacing:-4.861111px;}
.ws4_c00090{word-spacing:-0.609756px;}
.wsc_c00090{word-spacing:0.000000px;}
.wsb_c00090{word-spacing:2.613636px;}
.wsa_c00090{word-spacing:3.055556px;}
.ws1_c00090{word-spacing:6.250000px;}
.ws2_c00090{word-spacing:6.527778px;}
.ws7_c00090{word-spacing:6.805556px;}
.ws8_c00090{word-spacing:8.333333px;}
.ws0_c00090{word-spacing:8.529412px;}
.ws5_c00090{word-spacing:8.928571px;}
._0_c00090{width:39.722222px;}
.fc0_c00090{color:transparent;}
.fs0_c00090{font-size:54.000000px;}
.fs1_c00090{font-size:60.000000px;}
.y0_c00090{bottom:0.000000px;}
.y2c_c00090{bottom:148.650000px;}
.y2b_c00090{bottom:189.600000px;}
.y2a_c00090{bottom:209.700000px;}
.y29_c00090{bottom:229.500000px;}
.y28_c00090{bottom:249.000000px;}
.y27_c00090{bottom:269.100000px;}
.y26_c00090{bottom:288.900000px;}
.y25_c00090{bottom:308.700000px;}
.y24_c00090{bottom:328.500000px;}
.y23_c00090{bottom:348.600000px;}
.y22_c00090{bottom:368.700000px;}
.y21_c00090{bottom:388.500000px;}
.y20_c00090{bottom:409.200000px;}
.y1f_c00090{bottom:429.000000px;}
.y1e_c00090{bottom:449.100000px;}
.y1d_c00090{bottom:468.900000px;}
.y1c_c00090{bottom:488.700000px;}
.y1b_c00090{bottom:508.800000px;}
.y1a_c00090{bottom:528.900000px;}
.y19_c00090{bottom:549.000000px;}
.y18_c00090{bottom:568.800000px;}
.y17_c00090{bottom:588.600000px;}
.y16_c00090{bottom:608.400000px;}
.y15_c00090{bottom:628.200000px;}
.y14_c00090{bottom:648.600000px;}
.y13_c00090{bottom:668.400000px;}
.y12_c00090{bottom:688.500000px;}
.y11_c00090{bottom:708.300000px;}
.y10_c00090{bottom:728.400000px;}
.yf_c00090{bottom:748.500000px;}
.ye_c00090{bottom:768.300000px;}
.yd_c00090{bottom:788.400000px;}
.yc_c00090{bottom:808.500000px;}
.yb_c00090{bottom:828.600000px;}
.ya_c00090{bottom:848.700000px;}
.y9_c00090{bottom:868.800000px;}
.y8_c00090{bottom:888.900000px;}
.y7_c00090{bottom:909.000000px;}
.y6_c00090{bottom:928.800000px;}
.y5_c00090{bottom:948.900000px;}
.y4_c00090{bottom:968.700000px;}
.y3_c00090{bottom:988.950000px;}
.y2_c00090{bottom:1009.050000px;}
.y1_c00090{bottom:1047.600000px;}
.h2_c00090{height:54.000000px;}
.h3_c00090{height:60.000000px;}
.h1_c00090{height:1167.000000px;}
.h0_c00090{height:1167.119934px;}
.w0_c00090{width:913.320007px;}
.w1_c00090{width:913.500000px;}
.x0_c00090{left:0.000000px;}
.xad_c00090{left:145.200000px;}
.x2b_c00090{left:147.450000px;}
.x1_c00090{left:148.650000px;}
.x6c_c00090{left:160.350000px;}
.xc3_c00090{left:163.050000px;}
.x127_c00090{left:164.550000px;}
.x79_c00090{left:166.200000px;}
.x47_c00090{left:168.300000px;}
.xfe_c00090{left:172.800000px;}
.xce_c00090{left:176.700000px;}
.xc4_c00090{left:178.200000px;}
.x20_c00090{left:179.250000px;}
.x13_c00090{left:180.300000px;}
.xae_c00090{left:181.500000px;}
.x86_c00090{left:183.000000px;}
.x99_c00090{left:184.350000px;}
.x112_c00090{left:185.850000px;}
.xcc_c00090{left:186.900000px;}
.xb7_c00090{left:188.250000px;}
.x48_c00090{left:192.000000px;}
.xea_c00090{left:194.700000px;}
.x38_c00090{left:197.550000px;}
.x11c_c00090{left:198.600000px;}
.x14_c00090{left:201.150000px;}
.x10b_c00090{left:203.100000px;}
.x87_c00090{left:204.600000px;}
.x52_c00090{left:205.950000px;}
.x60_c00090{left:207.000000px;}
.x4_c00090{left:209.400000px;}
.xd7_c00090{left:211.200000px;}
.x21_c00090{left:212.400000px;}
.xeb_c00090{left:213.750000px;}
.xff_c00090{left:217.800000px;}
.xc5_c00090{left:220.350000px;}
.xaf_c00090{left:223.200000px;}
.x39_c00090{left:224.250000px;}
.x5_c00090{left:227.100000px;}
.x6d_c00090{left:228.450000px;}
.xcd_c00090{left:230.550000px;}
.x7a_c00090{left:236.100000px;}
.x53_c00090{left:238.050000px;}
.xec_c00090{left:243.600000px;}
.x11d_c00090{left:244.650000px;}
.x61_c00090{left:246.600000px;}
.x12a_c00090{left:247.800000px;}
.x105_c00090{left:249.750000px;}
.x7b_c00090{left:253.350000px;}
.x15_c00090{left:255.150000px;}
.x88_c00090{left:257.550000px;}
.x49_c00090{left:258.600000px;}
.x3a_c00090{left:259.950000px;}
.xe2_c00090{left:263.550000px;}
.x12e_c00090{left:264.900000px;}
.xb8_c00090{left:266.700000px;}
.xb0_c00090{left:269.250000px;}
.x6e_c00090{left:270.600000px;}
.x2c_c00090{left:273.450000px;}
.x16_c00090{left:274.950000px;}
.x7c_c00090{left:276.750000px;}
.x62_c00090{left:279.300000px;}
.x9a_c00090{left:281.550000px;}
.x22_c00090{left:283.650000px;}
.xf0_c00090{left:285.750000px;}
.xc6_c00090{left:286.950000px;}
.x120_c00090{left:288.000000px;}
.x12f_c00090{left:289.050000px;}
.x4a_c00090{left:290.700000px;}
.xa0_c00090{left:291.900000px;}
.x113_c00090{left:293.400000px;}
.x89_c00090{left:295.050000px;}
.x3b_c00090{left:297.000000px;}
.xf1_c00090{left:299.100000px;}
.xb1_c00090{left:300.150000px;}
.xfa_c00090{left:301.950000px;}
.x17_c00090{left:303.750000px;}
.x2d_c00090{left:306.600000px;}
.x63_c00090{left:307.800000px;}
.xe3_c00090{left:309.900000px;}
.x6_c00090{left:312.450000px;}
.xbf_c00090{left:316.200000px;}
.x3c_c00090{left:317.850000px;}
.x54_c00090{left:319.050000px;}
.xc7_c00090{left:320.400000px;}
.x106_c00090{left:321.450000px;}
.xf2_c00090{left:322.500000px;}
.xa1_c00090{left:324.000000px;}
.x12b_c00090{left:325.200000px;}
.x7d_c00090{left:326.700000px;}
.xf7_c00090{left:328.200000px;}
.xcf_c00090{left:329.700000px;}
.xd8_c00090{left:331.500000px;}
.x8b_c00090{left:333.300000px;}
.x6f_c00090{left:336.150000px;}
.x55_c00090{left:339.900000px;}
.x2e_c00090{left:341.100000px;}
.x3d_c00090{left:343.050000px;}
.xc8_c00090{left:346.350000px;}
.x107_c00090{left:347.700000px;}
.x7_c00090{left:349.200000px;}
.xa2_c00090{left:350.250000px;}
.x121_c00090{left:352.500000px;}
.x4b_c00090{left:358.350000px;}
.x8a_c00090{left:359.850000px;}
.xc0_c00090{left:362.250000px;}
.xd0_c00090{left:366.000000px;}
.x64_c00090{left:367.500000px;}
.x23_c00090{left:368.850000px;}
.x114_c00090{left:370.500000px;}
.x8c_c00090{left:374.700000px;}
.x8_c00090{left:377.250000px;}
.x9b_c00090{left:380.100000px;}
.x2f_c00090{left:381.750000px;}
.x70_c00090{left:383.700000px;}
.x10c_c00090{left:384.750000px;}
.x109_c00090{left:387.750000px;}
.xe4_c00090{left:390.900000px;}
.xb9_c00090{left:393.450000px;}
.x2_c00090{left:395.250000px;}
.x18_c00090{left:397.050000px;}
.x115_c00090{left:399.000000px;}
.x3e_c00090{left:400.650000px;}
.x8d_c00090{left:403.200000px;}
.xdd_c00090{left:404.400000px;}
.x122_c00090{left:408.000000px;}
.xf3_c00090{left:414.300000px;}
.x9_c00090{left:415.350000px;}
.x56_c00090{left:416.550000px;}
.xa3_c00090{left:418.200000px;}
.x30_c00090{left:419.850000px;}
.x108_c00090{left:420.900000px;}
.x7e_c00090{left:423.150000px;}
.x10d_c00090{left:424.650000px;}
.x19_c00090{left:426.150000px;}
.x65_c00090{left:428.400000px;}
.xba_c00090{left:431.250000px;}
.xed_c00090{left:432.600000px;}
.x123_c00090{left:434.700000px;}
.x10a_c00090{left:437.100000px;}
.x8e_c00090{left:439.950000px;}
.xa4_c00090{left:442.350000px;}
.x24_c00090{left:443.700000px;}
.xd1_c00090{left:446.250000px;}
.xc1_c00090{left:449.400000px;}
.xd9_c00090{left:451.800000px;}
.x7f_c00090{left:453.450000px;}
.x4c_c00090{left:455.850000px;}
.x1a_c00090{left:458.550000px;}
.x31_c00090{left:459.750000px;}
.x66_c00090{left:465.150000px;}
.xa5_c00090{left:467.550000px;}
.xde_c00090{left:469.200000px;}
.x8f_c00090{left:470.850000px;}
.xb2_c00090{left:473.700000px;}
.x25_c00090{left:475.050000px;}
.x116_c00090{left:476.850000px;}
.x100_c00090{left:479.400000px;}
.xe5_c00090{left:482.400000px;}
.xa_c00090{left:485.550000px;}
.xa6_c00090{left:487.350000px;}
.xfb_c00090{left:489.600000px;}
.x57_c00090{left:491.100000px;}
.x80_c00090{left:492.300000px;}
.x3_c00090{left:495.000000px;}
.x1b_c00090{left:496.050000px;}
.x90_c00090{left:498.900000px;}
.xf4_c00090{left:501.300000px;}
.x125_c00090{left:502.650000px;}
.x3f_c00090{left:505.350000px;}
.xc9_c00090{left:506.550000px;}
.xe6_c00090{left:507.600000px;}
.xb_c00090{left:508.950000px;}
.x128_c00090{left:510.900000px;}
.xa7_c00090{left:512.850000px;}
.x117_c00090{left:514.950000px;}
.x67_c00090{left:517.050000px;}
.x71_c00090{left:518.400000px;}
.x58_c00090{left:519.900000px;}
.x81_c00090{left:523.650000px;}
.x26_c00090{left:525.750000px;}
.x4d_c00090{left:527.850000px;}
.xf8_c00090{left:528.900000px;}
.x32_c00090{left:530.250000px;}
.x130_c00090{left:531.300000px;}
.xb3_c00090{left:534.900000px;}
.xc_c00090{left:537.450000px;}
.x40_c00090{left:539.250000px;}
.xd2_c00090{left:544.200000px;}
.x27_c00090{left:545.250000px;}
.x9c_c00090{left:548.250000px;}
.x91_c00090{left:550.350000px;}
.x59_c00090{left:555.900000px;}
.xbb_c00090{left:559.200000px;}
.xf9_c00090{left:560.550000px;}
.xe7_c00090{left:563.400000px;}
.xa8_c00090{left:565.050000px;}
.x33_c00090{left:567.300000px;}
.x92_c00090{left:570.150000px;}
.xda_c00090{left:571.800000px;}
.x12c_c00090{left:573.450000px;}
.x1c_c00090{left:574.500000px;}
.x41_c00090{left:576.000000px;}
.x9d_c00090{left:577.350000px;}
.xd_c00090{left:579.150000px;}
.xd3_c00090{left:580.500000px;}
.x4e_c00090{left:582.900000px;}
.x118_c00090{left:584.850000px;}
.xf5_c00090{left:587.250000px;}
.x101_c00090{left:591.000000px;}
.xd4_c00090{left:594.150000px;}
.x68_c00090{left:597.000000px;}
.xe_c00090{left:598.950000px;}
.xee_c00090{left:600.300000px;}
.xa9_c00090{left:601.350000px;}
.xfc_c00090{left:605.250000px;}
.x72_c00090{left:606.900000px;}
.x82_c00090{left:609.300000px;}
.x42_c00090{left:613.800000px;}
.x5a_c00090{left:616.800000px;}
.xdf_c00090{left:618.750000px;}
.x34_c00090{left:621.600000px;}
.x93_c00090{left:622.650000px;}
.x28_c00090{left:624.450000px;}
.x1d_c00090{left:627.000000px;}
.x102_c00090{left:629.550000px;}
.x73_c00090{left:632.400000px;}
.xca_c00090{left:634.050000px;}
.x11e_c00090{left:635.250000px;}
.x43_c00090{left:636.450000px;}
.x119_c00090{left:637.800000px;}
.xf_c00090{left:639.300000px;}
.x1e_c00090{left:641.700000px;}
.x69_c00090{left:643.800000px;}
.x131_c00090{left:646.800000px;}
.xbc_c00090{left:648.450000px;}
.x83_c00090{left:650.700000px;}
.xc2_c00090{left:653.250000px;}
.x94_c00090{left:655.350000px;}
.x4f_c00090{left:657.750000px;}
.xdb_c00090{left:658.950000px;}
.xbd_c00090{left:660.750000px;}
.x124_c00090{left:662.700000px;}
.x5b_c00090{left:666.900000px;}
.x74_c00090{left:669.150000px;}
.x1f_c00090{left:673.350000px;}
.x10e_c00090{left:675.300000px;}
.x95_c00090{left:676.950000px;}
.x129_c00090{left:678.300000px;}
.x35_c00090{left:682.050000px;}
.x10_c00090{left:685.050000px;}
.x12d_c00090{left:686.400000px;}
.x6a_c00090{left:687.450000px;}
.xe8_c00090{left:689.400000px;}
.xb4_c00090{left:692.550000px;}
.xdc_c00090{left:693.900000px;}
.xaa_c00090{left:697.200000px;}
.x44_c00090{left:699.150000px;}
.x10f_c00090{left:700.800000px;}
.x5c_c00090{left:701.850000px;}
.xfd_c00090{left:703.200000px;}
.xcb_c00090{left:705.000000px;}
.x75_c00090{left:706.650000px;}
.xef_c00090{left:708.000000px;}
.x50_c00090{left:709.200000px;}
.x84_c00090{left:710.400000px;}
.x96_c00090{left:714.000000px;}
.x29_c00090{left:716.250000px;}
.x11a_c00090{left:718.800000px;}
.x36_c00090{left:720.600000px;}
.x11_c00090{left:721.800000px;}
.x45_c00090{left:723.300000px;}
.x5d_c00090{left:725.250000px;}
.xe0_c00090{left:726.750000px;}
.xe9_c00090{left:727.950000px;}
.x97_c00090{left:729.150000px;}
.x85_c00090{left:732.000000px;}
.x6b_c00090{left:733.800000px;}
.xab_c00090{left:735.300000px;}
.x110_c00090{left:737.550000px;}
.x132_c00090{left:738.600000px;}
.xb5_c00090{left:740.400000px;}
.x76_c00090{left:744.450000px;}
.xe1_c00090{left:747.300000px;}
.x12_c00090{left:749.850000px;}
.x11b_c00090{left:752.250000px;}
.x51_c00090{left:754.200000px;}
.x9e_c00090{left:755.850000px;}
.x111_c00090{left:757.050000px;}
.x103_c00090{left:759.150000px;}
.x77_c00090{left:761.700000px;}
.x46_c00090{left:763.650000px;}
.x5e_c00090{left:765.600000px;}
.xbe_c00090{left:767.250000px;}
.xf6_c00090{left:769.800000px;}
.x98_c00090{left:771.600000px;}
.xb6_c00090{left:774.300000px;}
.xd5_c00090{left:775.350000px;}
.x11f_c00090{left:776.400000px;}
.x126_c00090{left:778.650000px;}
.x37_c00090{left:780.750000px;}
.xac_c00090{left:784.200000px;}
.x104_c00090{left:786.150000px;}
.x78_c00090{left:790.500000px;}
.xd6_c00090{left:792.300000px;}
.x5f_c00090{left:794.100000px;}
.x9f_c00090{left:800.550000px;}
.x2a_c00090{left:804.750000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws6_c00090{word-spacing:-6.267806pt;}
.ws3_c00090{word-spacing:-5.486968pt;}
.ws9_c00090{word-spacing:-4.320988pt;}
.ws4_c00090{word-spacing:-0.542005pt;}
.wsc_c00090{word-spacing:0.000000pt;}
.wsb_c00090{word-spacing:2.323232pt;}
.wsa_c00090{word-spacing:2.716049pt;}
.ws1_c00090{word-spacing:5.555556pt;}
.ws2_c00090{word-spacing:5.802469pt;}
.ws7_c00090{word-spacing:6.049383pt;}
.ws8_c00090{word-spacing:7.407407pt;}
.ws0_c00090{word-spacing:7.581699pt;}
.ws5_c00090{word-spacing:7.936508pt;}
._0_c00090{width:35.308642pt;}
.fs0_c00090{font-size:48.000000pt;}
.fs1_c00090{font-size:53.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y2c_c00090{bottom:132.133333pt;}
.y2b_c00090{bottom:168.533333pt;}
.y2a_c00090{bottom:186.400000pt;}
.y29_c00090{bottom:204.000000pt;}
.y28_c00090{bottom:221.333333pt;}
.y27_c00090{bottom:239.200000pt;}
.y26_c00090{bottom:256.800000pt;}
.y25_c00090{bottom:274.400000pt;}
.y24_c00090{bottom:292.000000pt;}
.y23_c00090{bottom:309.866667pt;}
.y22_c00090{bottom:327.733333pt;}
.y21_c00090{bottom:345.333333pt;}
.y20_c00090{bottom:363.733333pt;}
.y1f_c00090{bottom:381.333333pt;}
.y1e_c00090{bottom:399.200000pt;}
.y1d_c00090{bottom:416.800000pt;}
.y1c_c00090{bottom:434.400000pt;}
.y1b_c00090{bottom:452.266667pt;}
.y1a_c00090{bottom:470.133333pt;}
.y19_c00090{bottom:488.000000pt;}
.y18_c00090{bottom:505.600000pt;}
.y17_c00090{bottom:523.200000pt;}
.y16_c00090{bottom:540.800000pt;}
.y15_c00090{bottom:558.400000pt;}
.y14_c00090{bottom:576.533333pt;}
.y13_c00090{bottom:594.133333pt;}
.y12_c00090{bottom:612.000000pt;}
.y11_c00090{bottom:629.600000pt;}
.y10_c00090{bottom:647.466667pt;}
.yf_c00090{bottom:665.333333pt;}
.ye_c00090{bottom:682.933333pt;}
.yd_c00090{bottom:700.800000pt;}
.yc_c00090{bottom:718.666667pt;}
.yb_c00090{bottom:736.533333pt;}
.ya_c00090{bottom:754.400000pt;}
.y9_c00090{bottom:772.266667pt;}
.y8_c00090{bottom:790.133333pt;}
.y7_c00090{bottom:808.000000pt;}
.y6_c00090{bottom:825.600000pt;}
.y5_c00090{bottom:843.466667pt;}
.y4_c00090{bottom:861.066667pt;}
.y3_c00090{bottom:879.066667pt;}
.y2_c00090{bottom:896.933333pt;}
.y1_c00090{bottom:931.200000pt;}
.h2_c00090{height:48.000000pt;}
.h3_c00090{height:53.333333pt;}
.h1_c00090{height:1037.333333pt;}
.h0_c00090{height:1037.439941pt;}
.w0_c00090{width:811.840007pt;}
.w1_c00090{width:812.000000pt;}
.x0_c00090{left:0.000000pt;}
.xad_c00090{left:129.066667pt;}
.x2b_c00090{left:131.066667pt;}
.x1_c00090{left:132.133333pt;}
.x6c_c00090{left:142.533333pt;}
.xc3_c00090{left:144.933333pt;}
.x127_c00090{left:146.266667pt;}
.x79_c00090{left:147.733333pt;}
.x47_c00090{left:149.600000pt;}
.xfe_c00090{left:153.600000pt;}
.xce_c00090{left:157.066667pt;}
.xc4_c00090{left:158.400000pt;}
.x20_c00090{left:159.333333pt;}
.x13_c00090{left:160.266667pt;}
.xae_c00090{left:161.333333pt;}
.x86_c00090{left:162.666667pt;}
.x99_c00090{left:163.866667pt;}
.x112_c00090{left:165.200000pt;}
.xcc_c00090{left:166.133333pt;}
.xb7_c00090{left:167.333333pt;}
.x48_c00090{left:170.666667pt;}
.xea_c00090{left:173.066667pt;}
.x38_c00090{left:175.600000pt;}
.x11c_c00090{left:176.533333pt;}
.x14_c00090{left:178.800000pt;}
.x10b_c00090{left:180.533333pt;}
.x87_c00090{left:181.866667pt;}
.x52_c00090{left:183.066667pt;}
.x60_c00090{left:184.000000pt;}
.x4_c00090{left:186.133333pt;}
.xd7_c00090{left:187.733333pt;}
.x21_c00090{left:188.800000pt;}
.xeb_c00090{left:190.000000pt;}
.xff_c00090{left:193.600000pt;}
.xc5_c00090{left:195.866667pt;}
.xaf_c00090{left:198.400000pt;}
.x39_c00090{left:199.333333pt;}
.x5_c00090{left:201.866667pt;}
.x6d_c00090{left:203.066667pt;}
.xcd_c00090{left:204.933333pt;}
.x7a_c00090{left:209.866667pt;}
.x53_c00090{left:211.600000pt;}
.xec_c00090{left:216.533333pt;}
.x11d_c00090{left:217.466667pt;}
.x61_c00090{left:219.200000pt;}
.x12a_c00090{left:220.266667pt;}
.x105_c00090{left:222.000000pt;}
.x7b_c00090{left:225.200000pt;}
.x15_c00090{left:226.800000pt;}
.x88_c00090{left:228.933333pt;}
.x49_c00090{left:229.866667pt;}
.x3a_c00090{left:231.066667pt;}
.xe2_c00090{left:234.266667pt;}
.x12e_c00090{left:235.466667pt;}
.xb8_c00090{left:237.066667pt;}
.xb0_c00090{left:239.333333pt;}
.x6e_c00090{left:240.533333pt;}
.x2c_c00090{left:243.066667pt;}
.x16_c00090{left:244.400000pt;}
.x7c_c00090{left:246.000000pt;}
.x62_c00090{left:248.266667pt;}
.x9a_c00090{left:250.266667pt;}
.x22_c00090{left:252.133333pt;}
.xf0_c00090{left:254.000000pt;}
.xc6_c00090{left:255.066667pt;}
.x120_c00090{left:256.000000pt;}
.x12f_c00090{left:256.933333pt;}
.x4a_c00090{left:258.400000pt;}
.xa0_c00090{left:259.466667pt;}
.x113_c00090{left:260.800000pt;}
.x89_c00090{left:262.266667pt;}
.x3b_c00090{left:264.000000pt;}
.xf1_c00090{left:265.866667pt;}
.xb1_c00090{left:266.800000pt;}
.xfa_c00090{left:268.400000pt;}
.x17_c00090{left:270.000000pt;}
.x2d_c00090{left:272.533333pt;}
.x63_c00090{left:273.600000pt;}
.xe3_c00090{left:275.466667pt;}
.x6_c00090{left:277.733333pt;}
.xbf_c00090{left:281.066667pt;}
.x3c_c00090{left:282.533333pt;}
.x54_c00090{left:283.600000pt;}
.xc7_c00090{left:284.800000pt;}
.x106_c00090{left:285.733333pt;}
.xf2_c00090{left:286.666667pt;}
.xa1_c00090{left:288.000000pt;}
.x12b_c00090{left:289.066667pt;}
.x7d_c00090{left:290.400000pt;}
.xf7_c00090{left:291.733333pt;}
.xcf_c00090{left:293.066667pt;}
.xd8_c00090{left:294.666667pt;}
.x8b_c00090{left:296.266667pt;}
.x6f_c00090{left:298.800000pt;}
.x55_c00090{left:302.133333pt;}
.x2e_c00090{left:303.200000pt;}
.x3d_c00090{left:304.933333pt;}
.xc8_c00090{left:307.866667pt;}
.x107_c00090{left:309.066667pt;}
.x7_c00090{left:310.400000pt;}
.xa2_c00090{left:311.333333pt;}
.x121_c00090{left:313.333333pt;}
.x4b_c00090{left:318.533333pt;}
.x8a_c00090{left:319.866667pt;}
.xc0_c00090{left:322.000000pt;}
.xd0_c00090{left:325.333333pt;}
.x64_c00090{left:326.666667pt;}
.x23_c00090{left:327.866667pt;}
.x114_c00090{left:329.333333pt;}
.x8c_c00090{left:333.066667pt;}
.x8_c00090{left:335.333333pt;}
.x9b_c00090{left:337.866667pt;}
.x2f_c00090{left:339.333333pt;}
.x70_c00090{left:341.066667pt;}
.x10c_c00090{left:342.000000pt;}
.x109_c00090{left:344.666667pt;}
.xe4_c00090{left:347.466667pt;}
.xb9_c00090{left:349.733333pt;}
.x2_c00090{left:351.333333pt;}
.x18_c00090{left:352.933333pt;}
.x115_c00090{left:354.666667pt;}
.x3e_c00090{left:356.133333pt;}
.x8d_c00090{left:358.400000pt;}
.xdd_c00090{left:359.466667pt;}
.x122_c00090{left:362.666667pt;}
.xf3_c00090{left:368.266667pt;}
.x9_c00090{left:369.200000pt;}
.x56_c00090{left:370.266667pt;}
.xa3_c00090{left:371.733333pt;}
.x30_c00090{left:373.200000pt;}
.x108_c00090{left:374.133333pt;}
.x7e_c00090{left:376.133333pt;}
.x10d_c00090{left:377.466667pt;}
.x19_c00090{left:378.800000pt;}
.x65_c00090{left:380.800000pt;}
.xba_c00090{left:383.333333pt;}
.xed_c00090{left:384.533333pt;}
.x123_c00090{left:386.400000pt;}
.x10a_c00090{left:388.533333pt;}
.x8e_c00090{left:391.066667pt;}
.xa4_c00090{left:393.200000pt;}
.x24_c00090{left:394.400000pt;}
.xd1_c00090{left:396.666667pt;}
.xc1_c00090{left:399.466667pt;}
.xd9_c00090{left:401.600000pt;}
.x7f_c00090{left:403.066667pt;}
.x4c_c00090{left:405.200000pt;}
.x1a_c00090{left:407.600000pt;}
.x31_c00090{left:408.666667pt;}
.x66_c00090{left:413.466667pt;}
.xa5_c00090{left:415.600000pt;}
.xde_c00090{left:417.066667pt;}
.x8f_c00090{left:418.533333pt;}
.xb2_c00090{left:421.066667pt;}
.x25_c00090{left:422.266667pt;}
.x116_c00090{left:423.866667pt;}
.x100_c00090{left:426.133333pt;}
.xe5_c00090{left:428.800000pt;}
.xa_c00090{left:431.600000pt;}
.xa6_c00090{left:433.200000pt;}
.xfb_c00090{left:435.200000pt;}
.x57_c00090{left:436.533333pt;}
.x80_c00090{left:437.600000pt;}
.x3_c00090{left:440.000000pt;}
.x1b_c00090{left:440.933333pt;}
.x90_c00090{left:443.466667pt;}
.xf4_c00090{left:445.600000pt;}
.x125_c00090{left:446.800000pt;}
.x3f_c00090{left:449.200000pt;}
.xc9_c00090{left:450.266667pt;}
.xe6_c00090{left:451.200000pt;}
.xb_c00090{left:452.400000pt;}
.x128_c00090{left:454.133333pt;}
.xa7_c00090{left:455.866667pt;}
.x117_c00090{left:457.733333pt;}
.x67_c00090{left:459.600000pt;}
.x71_c00090{left:460.800000pt;}
.x58_c00090{left:462.133333pt;}
.x81_c00090{left:465.466667pt;}
.x26_c00090{left:467.333333pt;}
.x4d_c00090{left:469.200000pt;}
.xf8_c00090{left:470.133333pt;}
.x32_c00090{left:471.333333pt;}
.x130_c00090{left:472.266667pt;}
.xb3_c00090{left:475.466667pt;}
.xc_c00090{left:477.733333pt;}
.x40_c00090{left:479.333333pt;}
.xd2_c00090{left:483.733333pt;}
.x27_c00090{left:484.666667pt;}
.x9c_c00090{left:487.333333pt;}
.x91_c00090{left:489.200000pt;}
.x59_c00090{left:494.133333pt;}
.xbb_c00090{left:497.066667pt;}
.xf9_c00090{left:498.266667pt;}
.xe7_c00090{left:500.800000pt;}
.xa8_c00090{left:502.266667pt;}
.x33_c00090{left:504.266667pt;}
.x92_c00090{left:506.800000pt;}
.xda_c00090{left:508.266667pt;}
.x12c_c00090{left:509.733333pt;}
.x1c_c00090{left:510.666667pt;}
.x41_c00090{left:512.000000pt;}
.x9d_c00090{left:513.200000pt;}
.xd_c00090{left:514.800000pt;}
.xd3_c00090{left:516.000000pt;}
.x4e_c00090{left:518.133333pt;}
.x118_c00090{left:519.866667pt;}
.xf5_c00090{left:522.000000pt;}
.x101_c00090{left:525.333333pt;}
.xd4_c00090{left:528.133333pt;}
.x68_c00090{left:530.666667pt;}
.xe_c00090{left:532.400000pt;}
.xee_c00090{left:533.600000pt;}
.xa9_c00090{left:534.533333pt;}
.xfc_c00090{left:538.000000pt;}
.x72_c00090{left:539.466667pt;}
.x82_c00090{left:541.600000pt;}
.x42_c00090{left:545.600000pt;}
.x5a_c00090{left:548.266667pt;}
.xdf_c00090{left:550.000000pt;}
.x34_c00090{left:552.533333pt;}
.x93_c00090{left:553.466667pt;}
.x28_c00090{left:555.066667pt;}
.x1d_c00090{left:557.333333pt;}
.x102_c00090{left:559.600000pt;}
.x73_c00090{left:562.133333pt;}
.xca_c00090{left:563.600000pt;}
.x11e_c00090{left:564.666667pt;}
.x43_c00090{left:565.733333pt;}
.x119_c00090{left:566.933333pt;}
.xf_c00090{left:568.266667pt;}
.x1e_c00090{left:570.400000pt;}
.x69_c00090{left:572.266667pt;}
.x131_c00090{left:574.933333pt;}
.xbc_c00090{left:576.400000pt;}
.x83_c00090{left:578.400000pt;}
.xc2_c00090{left:580.666667pt;}
.x94_c00090{left:582.533333pt;}
.x4f_c00090{left:584.666667pt;}
.xdb_c00090{left:585.733333pt;}
.xbd_c00090{left:587.333333pt;}
.x124_c00090{left:589.066667pt;}
.x5b_c00090{left:592.800000pt;}
.x74_c00090{left:594.800000pt;}
.x1f_c00090{left:598.533333pt;}
.x10e_c00090{left:600.266667pt;}
.x95_c00090{left:601.733333pt;}
.x129_c00090{left:602.933333pt;}
.x35_c00090{left:606.266667pt;}
.x10_c00090{left:608.933333pt;}
.x12d_c00090{left:610.133333pt;}
.x6a_c00090{left:611.066667pt;}
.xe8_c00090{left:612.800000pt;}
.xb4_c00090{left:615.600000pt;}
.xdc_c00090{left:616.800000pt;}
.xaa_c00090{left:619.733333pt;}
.x44_c00090{left:621.466667pt;}
.x10f_c00090{left:622.933333pt;}
.x5c_c00090{left:623.866667pt;}
.xfd_c00090{left:625.066667pt;}
.xcb_c00090{left:626.666667pt;}
.x75_c00090{left:628.133333pt;}
.xef_c00090{left:629.333333pt;}
.x50_c00090{left:630.400000pt;}
.x84_c00090{left:631.466667pt;}
.x96_c00090{left:634.666667pt;}
.x29_c00090{left:636.666667pt;}
.x11a_c00090{left:638.933333pt;}
.x36_c00090{left:640.533333pt;}
.x11_c00090{left:641.600000pt;}
.x45_c00090{left:642.933333pt;}
.x5d_c00090{left:644.666667pt;}
.xe0_c00090{left:646.000000pt;}
.xe9_c00090{left:647.066667pt;}
.x97_c00090{left:648.133333pt;}
.x85_c00090{left:650.666667pt;}
.x6b_c00090{left:652.266667pt;}
.xab_c00090{left:653.600000pt;}
.x110_c00090{left:655.600000pt;}
.x132_c00090{left:656.533333pt;}
.xb5_c00090{left:658.133333pt;}
.x76_c00090{left:661.733333pt;}
.xe1_c00090{left:664.266667pt;}
.x12_c00090{left:666.533333pt;}
.x11b_c00090{left:668.666667pt;}
.x51_c00090{left:670.400000pt;}
.x9e_c00090{left:671.866667pt;}
.x111_c00090{left:672.933333pt;}
.x103_c00090{left:674.800000pt;}
.x77_c00090{left:677.066667pt;}
.x46_c00090{left:678.800000pt;}
.x5e_c00090{left:680.533333pt;}
.xbe_c00090{left:682.000000pt;}
.xf6_c00090{left:684.266667pt;}
.x98_c00090{left:685.866667pt;}
.xb6_c00090{left:688.266667pt;}
.xd5_c00090{left:689.200000pt;}
.x11f_c00090{left:690.133333pt;}
.x126_c00090{left:692.133333pt;}
.x37_c00090{left:694.000000pt;}
.xac_c00090{left:697.066667pt;}
.x104_c00090{left:698.800000pt;}
.x78_c00090{left:702.666667pt;}
.xd6_c00090{left:704.266667pt;}
.x5f_c00090{left:705.866667pt;}
.x9f_c00090{left:711.600000pt;}
.x2a_c00090{left:715.333333pt;}
}





/* 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_c00091 {
    display:none;
  }
  .loading-indicator_c00091.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00091 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_c00091 { 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_c00091" -> "#page-container .classname_c00091")
 */
.pf_c00091 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00091 { /* 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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00091 { /* 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_c00091 { /* 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_c00091 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00091 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00091 {overflow:visible;}
  }
}
.c_c00091 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00091 { /* 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_c00091:after { /* webkit #35443 */
  content: '';
}
.t_c00091:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00091 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 */
}
.__c00091 { /* 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_c00091 { /* info for Javascript */
  display:none;
}
.l_c00091 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00091 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00091 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00091: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_c00091 {
    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_c00091.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00091.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_c00091 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00091{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00091;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.000000;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;}
.ma7_c00091{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m17_c00091{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00091{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00091{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00091{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mba_c00091{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m93_c00091{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00091{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00091{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mab_c00091{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m52_c00091{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mad_c00091{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m71_c00091{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m36_c00091{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00091{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m39_c00091{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00091{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m53_c00091{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00091{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00091{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m92_c00091{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00091{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00091{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m99_c00091{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m96_c00091{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00091{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m55_c00091{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7_c00091{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00091{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m98_c00091{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m94_c00091{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00091{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00091{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00091{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00091{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00091{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00091{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00091{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00091{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00091{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00091{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m31_c00091{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00091{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00091{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mac_c00091{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.maa_c00091{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00091{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m83_c00091{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m95_c00091{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00091{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00091{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00091{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00091{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00091{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00091{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00091{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m90_c00091{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m72_c00091{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00091{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00091{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m50_c00091{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00091{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00091{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m38_c00091{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00091{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m54_c00091{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00091{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m34_c00091{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m41_c00091{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00091{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m66_c00091{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.maf_c00091{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00091{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00091{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mae_c00091{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m27_c00091{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m32_c00091{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00091{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00091{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00091{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me_c00091{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00091{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00091{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00091{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00091{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m20_c00091{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00091{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00091{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m35_c00091{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m44_c00091{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m73_c00091{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc_c00091{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m87_c00091{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00091{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00091{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00091{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m91_c00091{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m48_c00091{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00091{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m89_c00091{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m84_c00091{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m57_c00091{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00091{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00091{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00091{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00091{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00091{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22_c00091{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00091{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8_c00091{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00091{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00091{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6_c00091{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00091{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00091{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);}
.m43_c00091{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00091{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00091{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11_c00091{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m63_c00091{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m78_c00091{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m61_c00091{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m65_c00091{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00091{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m26_c00091{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00091{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00091{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m15_c00091{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m33_c00091{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m21_c00091{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00091{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00091{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m59_c00091{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m28_c00091{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5_c00091{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m49_c00091{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m29_c00091{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m45_c00091{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m67_c00091{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00091{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00091{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m85_c00091{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00091{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m75_c00091{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m81_c00091{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00091{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.md_c00091{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m86_c00091{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00091{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00091{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00091{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m19_c00091{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m10_c00091{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00091{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m62_c00091{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m70_c00091{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9_c00091{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00091{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m69_c00091{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m4_c00091{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00091{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m40_c00091{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00091{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m68_c00091{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma_c00091{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00091{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00091{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00091{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00091{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m25_c00091{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m37_c00091{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m82_c00091{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m12_c00091{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00091{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m51_c00091{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00091{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m79_c00091{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00091{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m77_c00091{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m16_c00091{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m3_c00091{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00091{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00091{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m60_c00091{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00091{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00091{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m42_c00091{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00091{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00091{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00091{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m80_c00091{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m58_c00091{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.v0_c00091{vertical-align:0.000000px;}
.ls0_c00091{letter-spacing:0.000000px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{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__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00091{word-spacing:-6.485123px;}
.ws0_c00091{word-spacing:0.000000px;}
.ws5_c00091{word-spacing:0.611599px;}
.ws1_c00091{word-spacing:4.500000px;}
.ws2_c00091{word-spacing:5.875000px;}
.ws3_c00091{word-spacing:7.250000px;}
.ws7_c00091{word-spacing:13.772727px;}
.ws4_c00091{word-spacing:33.166667px;}
.fc0_c00091{color:transparent;}
.fs1_c00091{font-size:36.000000px;}
.fs0_c00091{font-size:54.000000px;}
.y0_c00091{bottom:0.000000px;}
.y2f_c00091{bottom:124.500000px;}
.y2e_c00091{bottom:144.000000px;}
.y2d_c00091{bottom:159.900000px;}
.y2c_c00091{bottom:175.650000px;}
.y2b_c00091{bottom:191.100000px;}
.y2a_c00091{bottom:206.700000px;}
.y29_c00091{bottom:222.450000px;}
.y28_c00091{bottom:237.900000px;}
.y27_c00091{bottom:253.500000px;}
.y26_c00091{bottom:269.250000px;}
.y25_c00091{bottom:284.700000px;}
.y24_c00091{bottom:325.500000px;}
.y23_c00091{bottom:345.300000px;}
.y22_c00091{bottom:364.950000px;}
.y21_c00091{bottom:385.500000px;}
.y20_c00091{bottom:405.300000px;}
.y1f_c00091{bottom:425.100000px;}
.y1e_c00091{bottom:444.900000px;}
.y1d_c00091{bottom:465.000000px;}
.y1c_c00091{bottom:484.800000px;}
.y1b_c00091{bottom:504.900000px;}
.y1a_c00091{bottom:525.000000px;}
.y19_c00091{bottom:544.800000px;}
.y18_c00091{bottom:564.600000px;}
.y17_c00091{bottom:584.400000px;}
.y16_c00091{bottom:604.500000px;}
.y15_c00091{bottom:624.600000px;}
.y14_c00091{bottom:644.400000px;}
.y13_c00091{bottom:664.200000px;}
.y12_c00091{bottom:684.000000px;}
.y11_c00091{bottom:704.400000px;}
.y10_c00091{bottom:724.200000px;}
.yf_c00091{bottom:744.300000px;}
.ye_c00091{bottom:764.400000px;}
.yd_c00091{bottom:784.500000px;}
.yc_c00091{bottom:804.300000px;}
.yb_c00091{bottom:824.100000px;}
.ya_c00091{bottom:844.200000px;}
.y9_c00091{bottom:864.300000px;}
.y8_c00091{bottom:884.400000px;}
.y7_c00091{bottom:903.900000px;}
.y6_c00091{bottom:924.600000px;}
.y5_c00091{bottom:944.400000px;}
.y4_c00091{bottom:964.500000px;}
.y3_c00091{bottom:984.300000px;}
.y2_c00091{bottom:1004.100000px;}
.y1_c00091{bottom:1042.500000px;}
.h3_c00091{height:36.000000px;}
.h2_c00091{height:54.000000px;}
.h1_c00091{height:1167.000000px;}
.h0_c00091{height:1167.119934px;}
.w0_c00091{width:913.320007px;}
.w1_c00091{width:913.500000px;}
.x0_c00091{left:0.000000px;}
.x13_c00091{left:93.600000px;}
.xdb_c00091{left:94.650000px;}
.x124_c00091{left:102.600000px;}
.x6c_c00091{left:113.100000px;}
.x53_c00091{left:114.450000px;}
.xee_c00091{left:119.400000px;}
.x49_c00091{left:122.250000px;}
.x5_c00091{left:124.950000px;}
.x119_c00091{left:127.050000px;}
.xd3_c00091{left:129.600000px;}
.x5e_c00091{left:131.550000px;}
.x79_c00091{left:135.150000px;}
.x11a_c00091{left:136.350000px;}
.x3a_c00091{left:137.550000px;}
.xc5_c00091{left:138.750000px;}
.x21_c00091{left:140.100000px;}
.x9a_c00091{left:141.900000px;}
.x5f_c00091{left:143.100000px;}
.x70_c00091{left:145.050000px;}
.x125_c00091{left:147.600000px;}
.xcd_c00091{left:151.500000px;}
.x82_c00091{left:153.000000px;}
.x14_c00091{left:155.850000px;}
.x6d_c00091{left:158.100000px;}
.x10d_c00091{left:159.150000px;}
.xbc_c00091{left:160.200000px;}
.x71_c00091{left:162.750000px;}
.xb6_c00091{left:163.950000px;}
.x4a_c00091{left:165.750000px;}
.x60_c00091{left:169.050000px;}
.x6_c00091{left:171.000000px;}
.x3b_c00091{left:172.500000px;}
.xde_c00091{left:173.550000px;}
.xa4_c00091{left:180.600000px;}
.x83_c00091{left:182.550000px;}
.xce_c00091{left:184.950000px;}
.xef_c00091{left:187.800000px;}
.x131_c00091{left:189.300000px;}
.x9b_c00091{left:192.300000px;}
.x6e_c00091{left:193.800000px;}
.x22_c00091{left:197.700000px;}
.xae_c00091{left:198.750000px;}
.x116_c00091{left:200.550000px;}
.xb7_c00091{left:203.550000px;}
.x61_c00091{left:205.350000px;}
.x3c_c00091{left:208.200000px;}
.x2e_c00091{left:211.350000px;}
.x109_c00091{left:213.300000px;}
.xd4_c00091{left:215.250000px;}
.x15_c00091{left:216.750000px;}
.x6f_c00091{left:219.300000px;}
.x103_c00091{left:220.500000px;}
.x7a_c00091{left:221.550000px;}
.x84_c00091{left:222.900000px;}
.x110_c00091{left:224.400000px;}
.x3d_c00091{left:227.250000px;}
.x72_c00091{left:228.300000px;}
.x7_c00091{left:229.350000px;}
.x90_c00091{left:230.400000px;}
.xb8_c00091{left:233.400000px;}
.xc6_c00091{left:234.450000px;}
.x54_c00091{left:235.500000px;}
.xd5_c00091{left:238.350000px;}
.x62_c00091{left:240.300000px;}
.xa5_c00091{left:242.550000px;}
.x10e_c00091{left:244.050000px;}
.x7b_c00091{left:246.000000px;}
.x2f_c00091{left:247.350000px;}
.x135_c00091{left:248.700000px;}
.xcf_c00091{left:252.300000px;}
.x111_c00091{left:253.500000px;}
.x85_c00091{left:255.000000px;}
.x4b_c00091{left:256.800000px;}
.x8_c00091{left:257.850000px;}
.x91_c00091{left:259.500000px;}
.x73_c00091{left:262.200000px;}
.xdf_c00091{left:263.850000px;}
.x3e_c00091{left:266.850000px;}
.x23_c00091{left:269.700000px;}
.x7c_c00091{left:271.500000px;}
.x16_c00091{left:272.850000px;}
.x86_c00091{left:276.300000px;}
.x55_c00091{left:278.700000px;}
.xe0_c00091{left:284.700000px;}
.xfa_c00091{left:286.950000px;}
.x63_c00091{left:288.150000px;}
.x9c_c00091{left:289.950000px;}
.x3f_c00091{left:292.350000px;}
.x92_c00091{left:294.450000px;}
.x24_c00091{left:298.200000px;}
.x11b_c00091{left:299.400000px;}
.xbd_c00091{left:300.600000px;}
.xa6_c00091{left:301.650000px;}
.xaf_c00091{left:303.450000px;}
.x17_c00091{left:305.550000px;}
.xd0_c00091{left:310.200000px;}
.xd6_c00091{left:311.850000px;}
.x64_c00091{left:313.650000px;}
.xf0_c00091{left:314.700000px;}
.x9_c00091{left:317.550000px;}
.x11c_c00091{left:319.950000px;}
.x74_c00091{left:321.600000px;}
.x87_c00091{left:324.150000px;}
.x56_c00091{left:326.250000px;}
.x30_c00091{left:327.300000px;}
.x4c_c00091{left:329.100000px;}
.xd1_c00091{left:330.300000px;}
.x65_c00091{left:331.650000px;}
.xa7_c00091{left:333.300000px;}
.x18_c00091{left:335.100000px;}
.x7d_c00091{left:338.850000px;}
.x9d_c00091{left:340.800000px;}
.x93_c00091{left:342.000000px;}
.x25_c00091{left:345.300000px;}
.x133_c00091{left:346.350000px;}
.xf1_c00091{left:348.600000px;}
.x126_c00091{left:350.700000px;}
.x1_c00091{left:352.050000px;}
.xe6_c00091{left:353.400000px;}
.xf5_c00091{left:354.750000px;}
.xea_c00091{left:355.800000px;}
.xfe_c00091{left:357.000000px;}
.x10f_c00091{left:358.200000px;}
.x88_c00091{left:360.900000px;}
.x4d_c00091{left:363.600000px;}
.x26_c00091{left:364.800000px;}
.x117_c00091{left:366.150000px;}
.x75_c00091{left:369.900000px;}
.x12d_c00091{left:372.600000px;}
.x31_c00091{left:375.600000px;}
.xc7_c00091{left:377.100000px;}
.x94_c00091{left:378.300000px;}
.xa_c00091{left:379.500000px;}
.x139_c00091{left:380.850000px;}
.xd2_c00091{left:382.200000px;}
.x89_c00091{left:383.250000px;}
.xe1_c00091{left:384.450000px;}
.x2_c00091{left:385.950000px;}
.x120_c00091{left:388.050000px;}
.x76_c00091{left:390.000000px;}
.x7e_c00091{left:391.350000px;}
.x127_c00091{left:392.850000px;}
.xf2_c00091{left:393.900000px;}
.x112_c00091{left:396.150000px;}
.xb0_c00091{left:397.650000px;}
.x40_c00091{left:399.300000px;}
.x95_c00091{left:401.700000px;}
.x7f_c00091{left:403.200000px;}
.x8a_c00091{left:406.950000px;}
.x9e_c00091{left:408.900000px;}
.x41_c00091{left:411.600000px;}
.x4e_c00091{left:413.250000px;}
.x32_c00091{left:414.450000px;}
.x104_c00091{left:416.700000px;}
.x27_c00091{left:418.500000px;}
.xbe_c00091{left:423.000000px;}
.x57_c00091{left:424.950000px;}
.x8b_c00091{left:427.500000px;}
.xf3_c00091{left:428.850000px;}
.x105_c00091{left:431.850000px;}
.x80_c00091{left:433.500000px;}
.x11d_c00091{left:436.950000px;}
.xb_c00091{left:438.900000px;}
.x28_c00091{left:440.100000px;}
.x19_c00091{left:442.800000px;}
.x10a_c00091{left:444.150000px;}
.x8c_c00091{left:446.250000px;}
.x3_c00091{left:451.500000px;}
.xd7_c00091{left:453.150000px;}
.x66_c00091{left:454.350000px;}
.xfb_c00091{left:456.300000px;}
.x113_c00091{left:457.350000px;}
.xdc_c00091{left:459.600000px;}
.x1a_c00091{left:462.600000px;}
.xe2_c00091{left:463.650000px;}
.x8d_c00091{left:465.000000px;}
.xc_c00091{left:467.700000px;}
.xbf_c00091{left:469.500000px;}
.x58_c00091{left:470.700000px;}
.xe7_c00091{left:472.200000px;}
.x77_c00091{left:474.900000px;}
.xff_c00091{left:477.150000px;}
.xf6_c00091{left:479.250000px;}
.xa8_c00091{left:481.050000px;}
.xc8_c00091{left:484.050000px;}
.x67_c00091{left:485.250000px;}
.x128_c00091{left:486.750000px;}
.x42_c00091{left:489.300000px;}
.x106_c00091{left:490.500000px;}
.x81_c00091{left:492.150000px;}
.xd8_c00091{left:493.800000px;}
.x29_c00091{left:500.250000px;}
.xc0_c00091{left:502.650000px;}
.xa9_c00091{left:504.450000px;}
.x43_c00091{left:506.550000px;}
.x33_c00091{left:507.750000px;}
.x4f_c00091{left:513.000000px;}
.xc9_c00091{left:515.400000px;}
.xd9_c00091{left:516.450000px;}
.x8e_c00091{left:517.500000px;}
.x1b_c00091{left:520.200000px;}
.x78_c00091{left:521.700000px;}
.x136_c00091{left:525.000000px;}
.x9f_c00091{left:529.200000px;}
.x118_c00091{left:530.400000px;}
.x44_c00091{left:531.750000px;}
.x34_c00091{left:534.000000px;}
.xb1_c00091{left:540.150000px;}
.x2a_c00091{left:542.400000px;}
.x59_c00091{left:545.250000px;}
.x96_c00091{left:547.950000px;}
.xa0_c00091{left:549.300000px;}
.xc1_c00091{left:550.950000px;}
.xd_c00091{left:553.050000px;}
.x12e_c00091{left:554.550000px;}
.x100_c00091{left:556.350000px;}
.xb2_c00091{left:557.850000px;}
.xe3_c00091{left:559.650000px;}
.x35_c00091{left:560.700000px;}
.x11e_c00091{left:562.200000px;}
.x12b_c00091{left:564.000000px;}
.xaa_c00091{left:569.700000px;}
.x12f_c00091{left:571.050000px;}
.xe_c00091{left:573.150000px;}
.xeb_c00091{left:575.250000px;}
.x68_c00091{left:576.600000px;}
.x97_c00091{left:578.550000px;}
.xb9_c00091{left:580.800000px;}
.xb3_c00091{left:583.350000px;}
.x36_c00091{left:584.850000px;}
.x107_c00091{left:586.950000px;}
.x8f_c00091{left:588.750000px;}
.xda_c00091{left:589.950000px;}
.xca_c00091{left:591.000000px;}
.x137_c00091{left:592.800000px;}
.x121_c00091{left:594.300000px;}
.xdd_c00091{left:595.350000px;}
.xfc_c00091{left:596.400000px;}
.x129_c00091{left:599.400000px;}
.xf_c00091{left:601.950000px;}
.xc2_c00091{left:603.450000px;}
.x1c_c00091{left:604.800000px;}
.xab_c00091{left:606.000000px;}
.x114_c00091{left:607.800000px;}
.x2b_c00091{left:609.300000px;}
.x101_c00091{left:612.450000px;}
.x37_c00091{left:613.950000px;}
.x10b_c00091{left:615.900000px;}
.x45_c00091{left:617.850000px;}
.x50_c00091{left:619.200000px;}
.xf7_c00091{left:620.250000px;}
.xec_c00091{left:623.100000px;}
.x5a_c00091{left:624.750000px;}
.xac_c00091{left:625.800000px;}
.xb4_c00091{left:631.200000px;}
.x2c_c00091{left:632.400000px;}
.x1d_c00091{left:633.900000px;}
.x69_c00091{left:637.350000px;}
.x98_c00091{left:639.450000px;}
.x134_c00091{left:640.800000px;}
.x122_c00091{left:641.850000px;}
.xe4_c00091{left:642.900000px;}
.xc3_c00091{left:644.550000px;}
.xa1_c00091{left:646.050000px;}
.x10_c00091{left:650.550000px;}
.x46_c00091{left:651.750000px;}
.x5b_c00091{left:653.550000px;}
.x6a_c00091{left:656.100000px;}
.xe8_c00091{left:657.750000px;}
.xf8_c00091{left:662.400000px;}
.x51_c00091{left:664.500000px;}
.xad_c00091{left:666.900000px;}
.x47_c00091{left:669.000000px;}
.xba_c00091{left:671.850000px;}
.x10c_c00091{left:674.550000px;}
.x38_c00091{left:675.900000px;}
.x123_c00091{left:677.100000px;}
.x11f_c00091{left:680.400000px;}
.x6b_c00091{left:681.600000px;}
.x5c_c00091{left:682.650000px;}
.x138_c00091{left:686.100000px;}
.xc4_c00091{left:688.500000px;}
.x2d_c00091{left:690.000000px;}
.xcb_c00091{left:691.500000px;}
.xed_c00091{left:693.300000px;}
.x1e_c00091{left:695.400000px;}
.x12a_c00091{left:696.600000px;}
.xa2_c00091{left:697.950000px;}
.xf9_c00091{left:703.050000px;}
.x11_c00091{left:704.850000px;}
.x1f_c00091{left:706.200000px;}
.x99_c00091{left:707.550000px;}
.x48_c00091{left:710.100000px;}
.xe5_c00091{left:715.200000px;}
.x108_c00091{left:716.850000px;}
.x5d_c00091{left:719.700000px;}
.xa3_c00091{left:721.650000px;}
.x12c_c00091{left:723.150000px;}
.x39_c00091{left:725.250000px;}
.x20_c00091{left:727.500000px;}
.xbb_c00091{left:728.700000px;}
.xb5_c00091{left:730.200000px;}
.xcc_c00091{left:733.200000px;}
.xe9_c00091{left:734.400000px;}
.x102_c00091{left:736.050000px;}
.xf4_c00091{left:738.600000px;}
.x12_c00091{left:740.550000px;}
.x4_c00091{left:743.100000px;}
.x115_c00091{left:744.300000px;}
.x52_c00091{left:749.100000px;}
.xfd_c00091{left:750.450000px;}
.x130_c00091{left:752.100000px;}
.x132_c00091{left:756.450000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws6_c00091{word-spacing:-5.764554pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.ws5_c00091{word-spacing:0.543644pt;}
.ws1_c00091{word-spacing:4.000000pt;}
.ws2_c00091{word-spacing:5.222222pt;}
.ws3_c00091{word-spacing:6.444444pt;}
.ws7_c00091{word-spacing:12.242424pt;}
.ws4_c00091{word-spacing:29.481481pt;}
.fs1_c00091{font-size:32.000000pt;}
.fs0_c00091{font-size:48.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y2f_c00091{bottom:110.666667pt;}
.y2e_c00091{bottom:128.000000pt;}
.y2d_c00091{bottom:142.133333pt;}
.y2c_c00091{bottom:156.133333pt;}
.y2b_c00091{bottom:169.866667pt;}
.y2a_c00091{bottom:183.733333pt;}
.y29_c00091{bottom:197.733333pt;}
.y28_c00091{bottom:211.466667pt;}
.y27_c00091{bottom:225.333333pt;}
.y26_c00091{bottom:239.333333pt;}
.y25_c00091{bottom:253.066667pt;}
.y24_c00091{bottom:289.333333pt;}
.y23_c00091{bottom:306.933333pt;}
.y22_c00091{bottom:324.400000pt;}
.y21_c00091{bottom:342.666667pt;}
.y20_c00091{bottom:360.266667pt;}
.y1f_c00091{bottom:377.866667pt;}
.y1e_c00091{bottom:395.466667pt;}
.y1d_c00091{bottom:413.333333pt;}
.y1c_c00091{bottom:430.933333pt;}
.y1b_c00091{bottom:448.800000pt;}
.y1a_c00091{bottom:466.666667pt;}
.y19_c00091{bottom:484.266667pt;}
.y18_c00091{bottom:501.866667pt;}
.y17_c00091{bottom:519.466667pt;}
.y16_c00091{bottom:537.333333pt;}
.y15_c00091{bottom:555.200000pt;}
.y14_c00091{bottom:572.800000pt;}
.y13_c00091{bottom:590.400000pt;}
.y12_c00091{bottom:608.000000pt;}
.y11_c00091{bottom:626.133333pt;}
.y10_c00091{bottom:643.733333pt;}
.yf_c00091{bottom:661.600000pt;}
.ye_c00091{bottom:679.466667pt;}
.yd_c00091{bottom:697.333333pt;}
.yc_c00091{bottom:714.933333pt;}
.yb_c00091{bottom:732.533333pt;}
.ya_c00091{bottom:750.400000pt;}
.y9_c00091{bottom:768.266667pt;}
.y8_c00091{bottom:786.133333pt;}
.y7_c00091{bottom:803.466667pt;}
.y6_c00091{bottom:821.866667pt;}
.y5_c00091{bottom:839.466667pt;}
.y4_c00091{bottom:857.333333pt;}
.y3_c00091{bottom:874.933333pt;}
.y2_c00091{bottom:892.533333pt;}
.y1_c00091{bottom:926.666667pt;}
.h3_c00091{height:32.000000pt;}
.h2_c00091{height:48.000000pt;}
.h1_c00091{height:1037.333333pt;}
.h0_c00091{height:1037.439941pt;}
.w0_c00091{width:811.840007pt;}
.w1_c00091{width:812.000000pt;}
.x0_c00091{left:0.000000pt;}
.x13_c00091{left:83.200000pt;}
.xdb_c00091{left:84.133333pt;}
.x124_c00091{left:91.200000pt;}
.x6c_c00091{left:100.533333pt;}
.x53_c00091{left:101.733333pt;}
.xee_c00091{left:106.133333pt;}
.x49_c00091{left:108.666667pt;}
.x5_c00091{left:111.066667pt;}
.x119_c00091{left:112.933333pt;}
.xd3_c00091{left:115.200000pt;}
.x5e_c00091{left:116.933333pt;}
.x79_c00091{left:120.133333pt;}
.x11a_c00091{left:121.200000pt;}
.x3a_c00091{left:122.266667pt;}
.xc5_c00091{left:123.333333pt;}
.x21_c00091{left:124.533333pt;}
.x9a_c00091{left:126.133333pt;}
.x5f_c00091{left:127.200000pt;}
.x70_c00091{left:128.933333pt;}
.x125_c00091{left:131.200000pt;}
.xcd_c00091{left:134.666667pt;}
.x82_c00091{left:136.000000pt;}
.x14_c00091{left:138.533333pt;}
.x6d_c00091{left:140.533333pt;}
.x10d_c00091{left:141.466667pt;}
.xbc_c00091{left:142.400000pt;}
.x71_c00091{left:144.666667pt;}
.xb6_c00091{left:145.733333pt;}
.x4a_c00091{left:147.333333pt;}
.x60_c00091{left:150.266667pt;}
.x6_c00091{left:152.000000pt;}
.x3b_c00091{left:153.333333pt;}
.xde_c00091{left:154.266667pt;}
.xa4_c00091{left:160.533333pt;}
.x83_c00091{left:162.266667pt;}
.xce_c00091{left:164.400000pt;}
.xef_c00091{left:166.933333pt;}
.x131_c00091{left:168.266667pt;}
.x9b_c00091{left:170.933333pt;}
.x6e_c00091{left:172.266667pt;}
.x22_c00091{left:175.733333pt;}
.xae_c00091{left:176.666667pt;}
.x116_c00091{left:178.266667pt;}
.xb7_c00091{left:180.933333pt;}
.x61_c00091{left:182.533333pt;}
.x3c_c00091{left:185.066667pt;}
.x2e_c00091{left:187.866667pt;}
.x109_c00091{left:189.600000pt;}
.xd4_c00091{left:191.333333pt;}
.x15_c00091{left:192.666667pt;}
.x6f_c00091{left:194.933333pt;}
.x103_c00091{left:196.000000pt;}
.x7a_c00091{left:196.933333pt;}
.x84_c00091{left:198.133333pt;}
.x110_c00091{left:199.466667pt;}
.x3d_c00091{left:202.000000pt;}
.x72_c00091{left:202.933333pt;}
.x7_c00091{left:203.866667pt;}
.x90_c00091{left:204.800000pt;}
.xb8_c00091{left:207.466667pt;}
.xc6_c00091{left:208.400000pt;}
.x54_c00091{left:209.333333pt;}
.xd5_c00091{left:211.866667pt;}
.x62_c00091{left:213.600000pt;}
.xa5_c00091{left:215.600000pt;}
.x10e_c00091{left:216.933333pt;}
.x7b_c00091{left:218.666667pt;}
.x2f_c00091{left:219.866667pt;}
.x135_c00091{left:221.066667pt;}
.xcf_c00091{left:224.266667pt;}
.x111_c00091{left:225.333333pt;}
.x85_c00091{left:226.666667pt;}
.x4b_c00091{left:228.266667pt;}
.x8_c00091{left:229.200000pt;}
.x91_c00091{left:230.666667pt;}
.x73_c00091{left:233.066667pt;}
.xdf_c00091{left:234.533333pt;}
.x3e_c00091{left:237.200000pt;}
.x23_c00091{left:239.733333pt;}
.x7c_c00091{left:241.333333pt;}
.x16_c00091{left:242.533333pt;}
.x86_c00091{left:245.600000pt;}
.x55_c00091{left:247.733333pt;}
.xe0_c00091{left:253.066667pt;}
.xfa_c00091{left:255.066667pt;}
.x63_c00091{left:256.133333pt;}
.x9c_c00091{left:257.733333pt;}
.x3f_c00091{left:259.866667pt;}
.x92_c00091{left:261.733333pt;}
.x24_c00091{left:265.066667pt;}
.x11b_c00091{left:266.133333pt;}
.xbd_c00091{left:267.200000pt;}
.xa6_c00091{left:268.133333pt;}
.xaf_c00091{left:269.733333pt;}
.x17_c00091{left:271.600000pt;}
.xd0_c00091{left:275.733333pt;}
.xd6_c00091{left:277.200000pt;}
.x64_c00091{left:278.800000pt;}
.xf0_c00091{left:279.733333pt;}
.x9_c00091{left:282.266667pt;}
.x11c_c00091{left:284.400000pt;}
.x74_c00091{left:285.866667pt;}
.x87_c00091{left:288.133333pt;}
.x56_c00091{left:290.000000pt;}
.x30_c00091{left:290.933333pt;}
.x4c_c00091{left:292.533333pt;}
.xd1_c00091{left:293.600000pt;}
.x65_c00091{left:294.800000pt;}
.xa7_c00091{left:296.266667pt;}
.x18_c00091{left:297.866667pt;}
.x7d_c00091{left:301.200000pt;}
.x9d_c00091{left:302.933333pt;}
.x93_c00091{left:304.000000pt;}
.x25_c00091{left:306.933333pt;}
.x133_c00091{left:307.866667pt;}
.xf1_c00091{left:309.866667pt;}
.x126_c00091{left:311.733333pt;}
.x1_c00091{left:312.933333pt;}
.xe6_c00091{left:314.133333pt;}
.xf5_c00091{left:315.333333pt;}
.xea_c00091{left:316.266667pt;}
.xfe_c00091{left:317.333333pt;}
.x10f_c00091{left:318.400000pt;}
.x88_c00091{left:320.800000pt;}
.x4d_c00091{left:323.200000pt;}
.x26_c00091{left:324.266667pt;}
.x117_c00091{left:325.466667pt;}
.x75_c00091{left:328.800000pt;}
.x12d_c00091{left:331.200000pt;}
.x31_c00091{left:333.866667pt;}
.xc7_c00091{left:335.200000pt;}
.x94_c00091{left:336.266667pt;}
.xa_c00091{left:337.333333pt;}
.x139_c00091{left:338.533333pt;}
.xd2_c00091{left:339.733333pt;}
.x89_c00091{left:340.666667pt;}
.xe1_c00091{left:341.733333pt;}
.x2_c00091{left:343.066667pt;}
.x120_c00091{left:344.933333pt;}
.x76_c00091{left:346.666667pt;}
.x7e_c00091{left:347.866667pt;}
.x127_c00091{left:349.200000pt;}
.xf2_c00091{left:350.133333pt;}
.x112_c00091{left:352.133333pt;}
.xb0_c00091{left:353.466667pt;}
.x40_c00091{left:354.933333pt;}
.x95_c00091{left:357.066667pt;}
.x7f_c00091{left:358.400000pt;}
.x8a_c00091{left:361.733333pt;}
.x9e_c00091{left:363.466667pt;}
.x41_c00091{left:365.866667pt;}
.x4e_c00091{left:367.333333pt;}
.x32_c00091{left:368.400000pt;}
.x104_c00091{left:370.400000pt;}
.x27_c00091{left:372.000000pt;}
.xbe_c00091{left:376.000000pt;}
.x57_c00091{left:377.733333pt;}
.x8b_c00091{left:380.000000pt;}
.xf3_c00091{left:381.200000pt;}
.x105_c00091{left:383.866667pt;}
.x80_c00091{left:385.333333pt;}
.x11d_c00091{left:388.400000pt;}
.xb_c00091{left:390.133333pt;}
.x28_c00091{left:391.200000pt;}
.x19_c00091{left:393.600000pt;}
.x10a_c00091{left:394.800000pt;}
.x8c_c00091{left:396.666667pt;}
.x3_c00091{left:401.333333pt;}
.xd7_c00091{left:402.800000pt;}
.x66_c00091{left:403.866667pt;}
.xfb_c00091{left:405.600000pt;}
.x113_c00091{left:406.533333pt;}
.xdc_c00091{left:408.533333pt;}
.x1a_c00091{left:411.200000pt;}
.xe2_c00091{left:412.133333pt;}
.x8d_c00091{left:413.333333pt;}
.xc_c00091{left:415.733333pt;}
.xbf_c00091{left:417.333333pt;}
.x58_c00091{left:418.400000pt;}
.xe7_c00091{left:419.733333pt;}
.x77_c00091{left:422.133333pt;}
.xff_c00091{left:424.133333pt;}
.xf6_c00091{left:426.000000pt;}
.xa8_c00091{left:427.600000pt;}
.xc8_c00091{left:430.266667pt;}
.x67_c00091{left:431.333333pt;}
.x128_c00091{left:432.666667pt;}
.x42_c00091{left:434.933333pt;}
.x106_c00091{left:436.000000pt;}
.x81_c00091{left:437.466667pt;}
.xd8_c00091{left:438.933333pt;}
.x29_c00091{left:444.666667pt;}
.xc0_c00091{left:446.800000pt;}
.xa9_c00091{left:448.400000pt;}
.x43_c00091{left:450.266667pt;}
.x33_c00091{left:451.333333pt;}
.x4f_c00091{left:456.000000pt;}
.xc9_c00091{left:458.133333pt;}
.xd9_c00091{left:459.066667pt;}
.x8e_c00091{left:460.000000pt;}
.x1b_c00091{left:462.400000pt;}
.x78_c00091{left:463.733333pt;}
.x136_c00091{left:466.666667pt;}
.x9f_c00091{left:470.400000pt;}
.x118_c00091{left:471.466667pt;}
.x44_c00091{left:472.666667pt;}
.x34_c00091{left:474.666667pt;}
.xb1_c00091{left:480.133333pt;}
.x2a_c00091{left:482.133333pt;}
.x59_c00091{left:484.666667pt;}
.x96_c00091{left:487.066667pt;}
.xa0_c00091{left:488.266667pt;}
.xc1_c00091{left:489.733333pt;}
.xd_c00091{left:491.600000pt;}
.x12e_c00091{left:492.933333pt;}
.x100_c00091{left:494.533333pt;}
.xb2_c00091{left:495.866667pt;}
.xe3_c00091{left:497.466667pt;}
.x35_c00091{left:498.400000pt;}
.x11e_c00091{left:499.733333pt;}
.x12b_c00091{left:501.333333pt;}
.xaa_c00091{left:506.400000pt;}
.x12f_c00091{left:507.600000pt;}
.xe_c00091{left:509.466667pt;}
.xeb_c00091{left:511.333333pt;}
.x68_c00091{left:512.533333pt;}
.x97_c00091{left:514.266667pt;}
.xb9_c00091{left:516.266667pt;}
.xb3_c00091{left:518.533333pt;}
.x36_c00091{left:519.866667pt;}
.x107_c00091{left:521.733333pt;}
.x8f_c00091{left:523.333333pt;}
.xda_c00091{left:524.400000pt;}
.xca_c00091{left:525.333333pt;}
.x137_c00091{left:526.933333pt;}
.x121_c00091{left:528.266667pt;}
.xdd_c00091{left:529.200000pt;}
.xfc_c00091{left:530.133333pt;}
.x129_c00091{left:532.800000pt;}
.xf_c00091{left:535.066667pt;}
.xc2_c00091{left:536.400000pt;}
.x1c_c00091{left:537.600000pt;}
.xab_c00091{left:538.666667pt;}
.x114_c00091{left:540.266667pt;}
.x2b_c00091{left:541.600000pt;}
.x101_c00091{left:544.400000pt;}
.x37_c00091{left:545.733333pt;}
.x10b_c00091{left:547.466667pt;}
.x45_c00091{left:549.200000pt;}
.x50_c00091{left:550.400000pt;}
.xf7_c00091{left:551.333333pt;}
.xec_c00091{left:553.866667pt;}
.x5a_c00091{left:555.333333pt;}
.xac_c00091{left:556.266667pt;}
.xb4_c00091{left:561.066667pt;}
.x2c_c00091{left:562.133333pt;}
.x1d_c00091{left:563.466667pt;}
.x69_c00091{left:566.533333pt;}
.x98_c00091{left:568.400000pt;}
.x134_c00091{left:569.600000pt;}
.x122_c00091{left:570.533333pt;}
.xe4_c00091{left:571.466667pt;}
.xc3_c00091{left:572.933333pt;}
.xa1_c00091{left:574.266667pt;}
.x10_c00091{left:578.266667pt;}
.x46_c00091{left:579.333333pt;}
.x5b_c00091{left:580.933333pt;}
.x6a_c00091{left:583.200000pt;}
.xe8_c00091{left:584.666667pt;}
.xf8_c00091{left:588.800000pt;}
.x51_c00091{left:590.666667pt;}
.xad_c00091{left:592.800000pt;}
.x47_c00091{left:594.666667pt;}
.xba_c00091{left:597.200000pt;}
.x10c_c00091{left:599.600000pt;}
.x38_c00091{left:600.800000pt;}
.x123_c00091{left:601.866667pt;}
.x11f_c00091{left:604.800000pt;}
.x6b_c00091{left:605.866667pt;}
.x5c_c00091{left:606.800000pt;}
.x138_c00091{left:609.866667pt;}
.xc4_c00091{left:612.000000pt;}
.x2d_c00091{left:613.333333pt;}
.xcb_c00091{left:614.666667pt;}
.xed_c00091{left:616.266667pt;}
.x1e_c00091{left:618.133333pt;}
.x12a_c00091{left:619.200000pt;}
.xa2_c00091{left:620.400000pt;}
.xf9_c00091{left:624.933333pt;}
.x11_c00091{left:626.533333pt;}
.x1f_c00091{left:627.733333pt;}
.x99_c00091{left:628.933333pt;}
.x48_c00091{left:631.200000pt;}
.xe5_c00091{left:635.733333pt;}
.x108_c00091{left:637.200000pt;}
.x5d_c00091{left:639.733333pt;}
.xa3_c00091{left:641.466667pt;}
.x12c_c00091{left:642.800000pt;}
.x39_c00091{left:644.666667pt;}
.x20_c00091{left:646.666667pt;}
.xbb_c00091{left:647.733333pt;}
.xb5_c00091{left:649.066667pt;}
.xcc_c00091{left:651.733333pt;}
.xe9_c00091{left:652.800000pt;}
.x102_c00091{left:654.266667pt;}
.xf4_c00091{left:656.533333pt;}
.x12_c00091{left:658.266667pt;}
.x4_c00091{left:660.533333pt;}
.x115_c00091{left:661.600000pt;}
.x52_c00091{left:665.866667pt;}
.xfd_c00091{left:667.066667pt;}
.x130_c00091{left:668.533333pt;}
.x132_c00091{left:672.400000pt;}
}





/* 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_c00092 {
    display:none;
  }
  .loading-indicator_c00092.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00092 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_c00092 { 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_c00092" -> "#page-container .classname_c00092")
 */
.pf_c00092 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00092 { /* 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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00092 { /* 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_c00092 { /* 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_c00092 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00092 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00092 {overflow:visible;}
  }
}
.c_c00092 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00092 { /* 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_c00092:after { /* webkit #35443 */
  content: '';
}
.t_c00092:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00092 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 */
}
.__c00092 { /* 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_c00092 { /* info for Javascript */
  display:none;
}
.l_c00092 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00092 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00092 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00092: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_c00092 {
    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_c00092.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00092.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_c00092 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00092{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.000000;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;}
.m43_c00092{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00092{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m35_c00092{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m80_c00092{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00092{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00092{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m56_c00092{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00092{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00092{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00092{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00092{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00092{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00092{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00092{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00092{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00092{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m29_c00092{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mae_c00092{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m48_c00092{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00092{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m64_c00092{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00092{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m25_c00092{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00092{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00092{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00092{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m52_c00092{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m67_c00092{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00092{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m21_c00092{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mad_c00092{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00092{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00092{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m75_c00092{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.maa_c00092{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m40_c00092{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m26_c00092{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m42_c00092{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m45_c00092{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m23_c00092{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mab_c00092{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00092{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m28_c00092{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mb_c00092{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m49_c00092{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00092{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00092{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00092{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00092{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m30_c00092{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00092{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00092{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m18_c00092{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00092{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00092{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00092{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00092{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00092{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00092{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m22_c00092{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00092{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m86_c00092{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00092{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m84_c00092{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00092{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00092{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.maf_c00092{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00092{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m32_c00092{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m93_c00092{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md_c00092{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m62_c00092{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00092{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m37_c00092{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00092{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m41_c00092{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00092{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m96_c00092{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00092{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m82_c00092{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m85_c00092{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m57_c00092{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c00092{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00092{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00092{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00092{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m65_c00092{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m61_c00092{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3_c00092{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mac_c00092{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5_c00092{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m79_c00092{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00092{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma_c00092{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00092{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00092{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00092{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc_c00092{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00092{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00092{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00092{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m20_c00092{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00092{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00092{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m15_c00092{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00092{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m76_c00092{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00092{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m98_c00092{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_c00092{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00092{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24_c00092{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7_c00092{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m46_c00092{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m58_c00092{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);}
.m92_c00092{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m60_c00092{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00092{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00092{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m87_c00092{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00092{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m10_c00092{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00092{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m50_c00092{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00092{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m13_c00092{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mba_c00092{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m55_c00092{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00092{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m38_c00092{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m97_c00092{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m36_c00092{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11_c00092{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4_c00092{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m74_c00092{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00092{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00092{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00092{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8_c00092{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00092{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m54_c00092{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m51_c00092{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00092{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m17_c00092{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m9_c00092{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2_c00092{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00092{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m34_c00092{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00092{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00092{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m59_c00092{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00092{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m0_c00092{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m89_c00092{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m95_c00092{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m33_c00092{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m44_c00092{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00092{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m16_c00092{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00092{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m88_c00092{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m12_c00092{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00092{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m71_c00092{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m47_c00092{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m83_c00092{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m70_c00092{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00092{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m63_c00092{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00092{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m81_c00092{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00092{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00092{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00092{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00092{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m14_c00092{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m31_c00092{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00092{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00092{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m53_c00092{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m94_c00092{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m99_c00092{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m66_c00092{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m91_c00092{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m77_c00092{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00092{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m78_c00092{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00092{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m27_c00092{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00092{vertical-align:0.000000px;}
.ls0_c00092{letter-spacing:0.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{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__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:-7.940019px;}
.ws2_c00092{word-spacing:-6.188751px;}
.ws8_c00092{word-spacing:-3.750000px;}
.ws5_c00092{word-spacing:-1.497364px;}
.wsa_c00092{word-spacing:0.000000px;}
.ws3_c00092{word-spacing:0.250000px;}
.ws4_c00092{word-spacing:1.090909px;}
.ws9_c00092{word-spacing:1.500000px;}
.ws6_c00092{word-spacing:5.721619px;}
.ws1_c00092{word-spacing:7.375000px;}
.ws7_c00092{word-spacing:15.790721px;}
.fc0_c00092{color:transparent;}
.fs0_c00092{font-size:54.000000px;}
.y0_c00092{bottom:0.000000px;}
.y27_c00092{bottom:289.500000px;}
.y26_c00092{bottom:305.700000px;}
.y25_c00092{bottom:321.150000px;}
.y24_c00092{bottom:336.600000px;}
.y23_c00092{bottom:352.050000px;}
.y22_c00092{bottom:367.500000px;}
.y21_c00092{bottom:383.100000px;}
.y20_c00092{bottom:398.550000px;}
.y1f_c00092{bottom:414.300000px;}
.y1e_c00092{bottom:445.800000px;}
.y1d_c00092{bottom:465.600000px;}
.y1c_c00092{bottom:485.700000px;}
.y1b_c00092{bottom:505.500000px;}
.y1a_c00092{bottom:526.050000px;}
.y19_c00092{bottom:545.850000px;}
.y18_c00092{bottom:565.950000px;}
.y17_c00092{bottom:585.750000px;}
.y16_c00092{bottom:605.550000px;}
.y15_c00092{bottom:625.350000px;}
.y14_c00092{bottom:645.150000px;}
.y13_c00092{bottom:665.250000px;}
.y12_c00092{bottom:685.050000px;}
.y11_c00092{bottom:705.900000px;}
.y10_c00092{bottom:726.000000px;}
.yf_c00092{bottom:745.800000px;}
.ye_c00092{bottom:765.600000px;}
.yd_c00092{bottom:785.700000px;}
.yc_c00092{bottom:805.800000px;}
.yb_c00092{bottom:825.600000px;}
.ya_c00092{bottom:845.400000px;}
.y9_c00092{bottom:865.200000px;}
.y8_c00092{bottom:885.300000px;}
.y7_c00092{bottom:905.100000px;}
.y6_c00092{bottom:925.200000px;}
.y5_c00092{bottom:944.700000px;}
.y4_c00092{bottom:964.800000px;}
.y3_c00092{bottom:984.600000px;}
.y2_c00092{bottom:1004.400000px;}
.y1_c00092{bottom:1042.200000px;}
.h2_c00092{height:54.000000px;}
.h1_c00092{height:1167.000000px;}
.h0_c00092{height:1167.119934px;}
.w0_c00092{width:913.320007px;}
.w1_c00092{width:913.500000px;}
.x0_c00092{left:0.000000px;}
.x4_c00092{left:144.750000px;}
.x42_c00092{left:145.800000px;}
.x1_c00092{left:147.300000px;}
.xe5_c00092{left:148.350000px;}
.x115_c00092{left:149.400000px;}
.x128_c00092{left:150.450000px;}
.x11e_c00092{left:164.850000px;}
.x8f_c00092{left:167.850000px;}
.x86_c00092{left:170.850000px;}
.xab_c00092{left:172.200000px;}
.x106_c00092{left:173.550000px;}
.x50_c00092{left:175.050000px;}
.xb8_c00092{left:177.450000px;}
.xc1_c00092{left:178.500000px;}
.x22_c00092{left:180.150000px;}
.x43_c00092{left:181.800000px;}
.x5d_c00092{left:182.850000px;}
.x30_c00092{left:187.950000px;}
.xd4_c00092{left:189.000000px;}
.x11b_c00092{left:192.600000px;}
.x117_c00092{left:193.950000px;}
.xda_c00092{left:195.000000px;}
.x6b_c00092{left:198.900000px;}
.x129_c00092{left:200.550000px;}
.x5_c00092{left:202.050000px;}
.x31_c00092{left:203.850000px;}
.x77_c00092{left:205.800000px;}
.x44_c00092{left:208.050000px;}
.x11f_c00092{left:212.700000px;}
.xfa_c00092{left:214.950000px;}
.x90_c00092{left:216.750000px;}
.x87_c00092{left:219.150000px;}
.x10c_c00092{left:225.450000px;}
.x14_c00092{left:226.950000px;}
.x6c_c00092{left:229.800000px;}
.xb9_c00092{left:231.450000px;}
.xcf_c00092{left:232.500000px;}
.xc0_c00092{left:234.600000px;}
.x6_c00092{left:235.950000px;}
.xf2_c00092{left:237.900000px;}
.xd5_c00092{left:240.150000px;}
.x45_c00092{left:242.250000px;}
.xb2_c00092{left:244.350000px;}
.x9a_c00092{left:248.400000px;}
.xea_c00092{left:253.050000px;}
.x88_c00092{left:255.450000px;}
.x32_c00092{left:256.800000px;}
.xf3_c00092{left:258.000000px;}
.x5e_c00092{left:260.250000px;}
.xc8_c00092{left:262.650000px;}
.x23_c00092{left:265.800000px;}
.x78_c00092{left:267.300000px;}
.x51_c00092{left:268.650000px;}
.xd6_c00092{left:270.000000px;}
.x100_c00092{left:271.800000px;}
.x7_c00092{left:273.750000px;}
.x107_c00092{left:277.350000px;}
.x101_c00092{left:280.050000px;}
.x91_c00092{left:281.250000px;}
.x33_c00092{left:282.300000px;}
.xd0_c00092{left:283.950000px;}
.x5f_c00092{left:286.500000px;}
.xa3_c00092{left:289.050000px;}
.x46_c00092{left:290.100000px;}
.x123_c00092{left:291.900000px;}
.x60_c00092{left:292.950000px;}
.x9b_c00092{left:294.900000px;}
.xba_c00092{left:296.550000px;}
.xdf_c00092{left:297.600000px;}
.xfb_c00092{left:299.550000px;}
.x15_c00092{left:304.050000px;}
.x79_c00092{left:305.100000px;}
.x124_c00092{left:307.350000px;}
.xa4_c00092{left:309.150000px;}
.xe6_c00092{left:311.550000px;}
.xc9_c00092{left:314.100000px;}
.x52_c00092{left:315.150000px;}
.x10d_c00092{left:316.200000px;}
.x108_c00092{left:317.250000px;}
.xef_c00092{left:319.950000px;}
.x24_c00092{left:321.900000px;}
.xfc_c00092{left:323.250000px;}
.x8_c00092{left:326.250000px;}
.xeb_c00092{left:327.900000px;}
.x89_c00092{left:329.250000px;}
.x125_c00092{left:331.500000px;}
.x61_c00092{left:332.850000px;}
.x34_c00092{left:335.550000px;}
.xb3_c00092{left:338.700000px;}
.xca_c00092{left:340.050000px;}
.x25_c00092{left:342.450000px;}
.xac_c00092{left:345.300000px;}
.x7a_c00092{left:348.000000px;}
.x10e_c00092{left:349.650000px;}
.x35_c00092{left:351.000000px;}
.x9_c00092{left:354.750000px;}
.x62_c00092{left:358.350000px;}
.xec_c00092{left:359.550000px;}
.x36_c00092{left:362.550000px;}
.x92_c00092{left:364.050000px;}
.xf8_c00092{left:366.300000px;}
.x53_c00092{left:369.450000px;}
.x6d_c00092{left:371.100000px;}
.xe7_c00092{left:372.150000px;}
.x10f_c00092{left:373.350000px;}
.x7b_c00092{left:375.300000px;}
.x16_c00092{left:378.900000px;}
.xa_c00092{left:381.750000px;}
.xa5_c00092{left:383.700000px;}
.x116_c00092{left:386.550000px;}
.x63_c00092{left:389.250000px;}
.x2_c00092{left:391.350000px;}
.x47_c00092{left:392.700000px;}
.x37_c00092{left:394.200000px;}
.xf4_c00092{left:396.900000px;}
.xfd_c00092{left:398.100000px;}
.xd7_c00092{left:400.350000px;}
.x17_c00092{left:401.550000px;}
.xad_c00092{left:405.750000px;}
.x8a_c00092{left:407.700000px;}
.xd1_c00092{left:408.900000px;}
.x9c_c00092{left:410.100000px;}
.x38_c00092{left:411.150000px;}
.x6e_c00092{left:414.300000px;}
.xb_c00092{left:416.250000px;}
.xdb_c00092{left:420.150000px;}
.x12a_c00092{left:421.200000px;}
.x7c_c00092{left:423.150000px;}
.x54_c00092{left:424.500000px;}
.x18_c00092{left:427.050000px;}
.xc_c00092{left:428.100000px;}
.x9d_c00092{left:431.700000px;}
.x26_c00092{left:435.000000px;}
.xc2_c00092{left:436.800000px;}
.x93_c00092{left:438.150000px;}
.x11c_c00092{left:439.650000px;}
.x64_c00092{left:440.700000px;}
.xf5_c00092{left:443.700000px;}
.x6f_c00092{left:445.200000px;}
.x39_c00092{left:448.200000px;}
.xae_c00092{left:450.000000px;}
.xa6_c00092{left:452.100000px;}
.x110_c00092{left:456.150000px;}
.xbb_c00092{left:458.100000px;}
.x9e_c00092{left:460.500000px;}
.xd_c00092{left:461.550000px;}
.x27_c00092{left:463.800000px;}
.x7d_c00092{left:466.350000px;}
.x94_c00092{left:469.800000px;}
.x48_c00092{left:474.750000px;}
.x19_c00092{left:478.950000px;}
.x70_c00092{left:488.100000px;}
.x3_c00092{left:490.050000px;}
.x102_c00092{left:491.400000px;}
.x126_c00092{left:492.450000px;}
.xb4_c00092{left:494.550000px;}
.xa7_c00092{left:496.050000px;}
.xcb_c00092{left:497.400000px;}
.x3a_c00092{left:501.450000px;}
.xfe_c00092{left:504.000000px;}
.x28_c00092{left:505.500000px;}
.x1a_c00092{left:507.450000px;}
.x55_c00092{left:509.850000px;}
.x71_c00092{left:511.200000px;}
.xe_c00092{left:512.250000px;}
.xe0_c00092{left:513.600000px;}
.xe8_c00092{left:515.700000px;}
.x7e_c00092{left:517.500000px;}
.x8b_c00092{left:519.000000px;}
.xdc_c00092{left:521.700000px;}
.x111_c00092{left:525.300000px;}
.x49_c00092{left:526.500000px;}
.x9f_c00092{left:529.200000px;}
.x109_c00092{left:530.250000px;}
.xf_c00092{left:531.300000px;}
.xa8_c00092{left:533.850000px;}
.x72_c00092{left:536.700000px;}
.x65_c00092{left:538.950000px;}
.xcc_c00092{left:540.300000px;}
.xc3_c00092{left:541.950000px;}
.x3b_c00092{left:544.950000px;}
.x1b_c00092{left:546.000000px;}
.x29_c00092{left:549.000000px;}
.x4a_c00092{left:552.000000px;}
.x11d_c00092{left:553.050000px;}
.xb5_c00092{left:554.400000px;}
.x95_c00092{left:555.450000px;}
.x73_c00092{left:557.250000px;}
.xd8_c00092{left:558.300000px;}
.x56_c00092{left:562.050000px;}
.xa0_c00092{left:563.100000px;}
.x118_c00092{left:566.100000px;}
.x66_c00092{left:567.450000px;}
.x10a_c00092{left:568.800000px;}
.x7f_c00092{left:571.500000px;}
.xcd_c00092{left:572.700000px;}
.x127_c00092{left:574.050000px;}
.xc4_c00092{left:575.850000px;}
.xf0_c00092{left:577.650000px;}
.xe1_c00092{left:579.900000px;}
.x96_c00092{left:580.950000px;}
.x74_c00092{left:587.850000px;}
.x8c_c00092{left:589.500000px;}
.x4b_c00092{left:592.650000px;}
.x57_c00092{left:594.450000px;}
.x12b_c00092{left:597.000000px;}
.xdd_c00092{left:599.100000px;}
.x120_c00092{left:600.900000px;}
.x67_c00092{left:604.200000px;}
.x58_c00092{left:607.800000px;}
.xa1_c00092{left:609.900000px;}
.x80_c00092{left:611.850000px;}
.xd2_c00092{left:613.350000px;}
.xc5_c00092{left:614.700000px;}
.xbc_c00092{left:616.050000px;}
.xe2_c00092{left:617.700000px;}
.x10_c00092{left:621.000000px;}
.x119_c00092{left:622.950000px;}
.x1c_c00092{left:625.200000px;}
.x3c_c00092{left:627.150000px;}
.x4c_c00092{left:628.950000px;}
.x81_c00092{left:630.150000px;}
.x2a_c00092{left:632.100000px;}
.xbd_c00092{left:633.750000px;}
.x75_c00092{left:639.000000px;}
.xa9_c00092{left:641.400000px;}
.x103_c00092{left:642.450000px;}
.xb6_c00092{left:644.700000px;}
.x121_c00092{left:645.900000px;}
.x59_c00092{left:652.500000px;}
.x112_c00092{left:653.550000px;}
.x2b_c00092{left:655.500000px;}
.x1d_c00092{left:657.300000px;}
.xc6_c00092{left:659.400000px;}
.x68_c00092{left:661.500000px;}
.x11a_c00092{left:665.400000px;}
.x4d_c00092{left:667.500000px;}
.x97_c00092{left:669.150000px;}
.x82_c00092{left:670.500000px;}
.x11_c00092{left:673.200000px;}
.x1e_c00092{left:675.300000px;}
.x3d_c00092{left:678.300000px;}
.x2c_c00092{left:680.400000px;}
.xbe_c00092{left:684.450000px;}
.x83_c00092{left:687.750000px;}
.xf6_c00092{left:690.600000px;}
.x98_c00092{left:693.600000px;}
.xa2_c00092{left:696.000000px;}
.xaf_c00092{left:697.650000px;}
.xff_c00092{left:699.150000px;}
.xe3_c00092{left:700.500000px;}
.x12_c00092{left:701.700000px;}
.x5a_c00092{left:703.200000px;}
.x113_c00092{left:705.000000px;}
.x3e_c00092{left:708.150000px;}
.xf9_c00092{left:710.100000px;}
.xed_c00092{left:712.350000px;}
.xc7_c00092{left:713.700000px;}
.x8d_c00092{left:716.100000px;}
.xb0_c00092{left:717.750000px;}
.x2d_c00092{left:720.300000px;}
.xe4_c00092{left:721.350000px;}
.xf1_c00092{left:722.850000px;}
.x1f_c00092{left:723.900000px;}
.xaa_c00092{left:725.700000px;}
.x114_c00092{left:726.900000px;}
.xb7_c00092{left:730.500000px;}
.x99_c00092{left:732.900000px;}
.x76_c00092{left:735.150000px;}
.x2e_c00092{left:737.550000px;}
.x3f_c00092{left:742.350000px;}
.x13_c00092{left:743.400000px;}
.xee_c00092{left:745.800000px;}
.x104_c00092{left:746.850000px;}
.x4e_c00092{left:751.050000px;}
.x84_c00092{left:752.250000px;}
.x69_c00092{left:753.750000px;}
.xd3_c00092{left:755.250000px;}
.xe9_c00092{left:756.450000px;}
.x40_c00092{left:758.850000px;}
.xbf_c00092{left:760.050000px;}
.x8e_c00092{left:761.100000px;}
.x5b_c00092{left:762.300000px;}
.x105_c00092{left:764.550000px;}
.x10b_c00092{left:766.050000px;}
.x20_c00092{left:768.450000px;}
.xd9_c00092{left:771.450000px;}
.x6a_c00092{left:774.600000px;}
.xf7_c00092{left:778.050000px;}
.xde_c00092{left:779.700000px;}
.x5c_c00092{left:782.850000px;}
.x41_c00092{left:784.800000px;}
.xb1_c00092{left:792.300000px;}
.x122_c00092{left:795.300000px;}
.x85_c00092{left:796.500000px;}
.x2f_c00092{left:797.700000px;}
.xce_c00092{left:799.050000px;}
.x4f_c00092{left:800.700000px;}
.x21_c00092{left:802.950000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:-7.057794pt;}
.ws2_c00092{word-spacing:-5.501112pt;}
.ws8_c00092{word-spacing:-3.333333pt;}
.ws5_c00092{word-spacing:-1.330990pt;}
.wsa_c00092{word-spacing:0.000000pt;}
.ws3_c00092{word-spacing:0.222222pt;}
.ws4_c00092{word-spacing:0.969697pt;}
.ws9_c00092{word-spacing:1.333333pt;}
.ws6_c00092{word-spacing:5.085884pt;}
.ws1_c00092{word-spacing:6.555556pt;}
.ws7_c00092{word-spacing:14.036196pt;}
.fs0_c00092{font-size:48.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y27_c00092{bottom:257.333333pt;}
.y26_c00092{bottom:271.733333pt;}
.y25_c00092{bottom:285.466667pt;}
.y24_c00092{bottom:299.200000pt;}
.y23_c00092{bottom:312.933333pt;}
.y22_c00092{bottom:326.666667pt;}
.y21_c00092{bottom:340.533333pt;}
.y20_c00092{bottom:354.266667pt;}
.y1f_c00092{bottom:368.266667pt;}
.y1e_c00092{bottom:396.266667pt;}
.y1d_c00092{bottom:413.866667pt;}
.y1c_c00092{bottom:431.733333pt;}
.y1b_c00092{bottom:449.333333pt;}
.y1a_c00092{bottom:467.600000pt;}
.y19_c00092{bottom:485.200000pt;}
.y18_c00092{bottom:503.066667pt;}
.y17_c00092{bottom:520.666667pt;}
.y16_c00092{bottom:538.266667pt;}
.y15_c00092{bottom:555.866667pt;}
.y14_c00092{bottom:573.466667pt;}
.y13_c00092{bottom:591.333333pt;}
.y12_c00092{bottom:608.933333pt;}
.y11_c00092{bottom:627.466667pt;}
.y10_c00092{bottom:645.333333pt;}
.yf_c00092{bottom:662.933333pt;}
.ye_c00092{bottom:680.533333pt;}
.yd_c00092{bottom:698.400000pt;}
.yc_c00092{bottom:716.266667pt;}
.yb_c00092{bottom:733.866667pt;}
.ya_c00092{bottom:751.466667pt;}
.y9_c00092{bottom:769.066667pt;}
.y8_c00092{bottom:786.933333pt;}
.y7_c00092{bottom:804.533333pt;}
.y6_c00092{bottom:822.400000pt;}
.y5_c00092{bottom:839.733333pt;}
.y4_c00092{bottom:857.600000pt;}
.y3_c00092{bottom:875.200000pt;}
.y2_c00092{bottom:892.800000pt;}
.y1_c00092{bottom:926.400000pt;}
.h2_c00092{height:48.000000pt;}
.h1_c00092{height:1037.333333pt;}
.h0_c00092{height:1037.439941pt;}
.w0_c00092{width:811.840007pt;}
.w1_c00092{width:812.000000pt;}
.x0_c00092{left:0.000000pt;}
.x4_c00092{left:128.666667pt;}
.x42_c00092{left:129.600000pt;}
.x1_c00092{left:130.933333pt;}
.xe5_c00092{left:131.866667pt;}
.x115_c00092{left:132.800000pt;}
.x128_c00092{left:133.733333pt;}
.x11e_c00092{left:146.533333pt;}
.x8f_c00092{left:149.200000pt;}
.x86_c00092{left:151.866667pt;}
.xab_c00092{left:153.066667pt;}
.x106_c00092{left:154.266667pt;}
.x50_c00092{left:155.600000pt;}
.xb8_c00092{left:157.733333pt;}
.xc1_c00092{left:158.666667pt;}
.x22_c00092{left:160.133333pt;}
.x43_c00092{left:161.600000pt;}
.x5d_c00092{left:162.533333pt;}
.x30_c00092{left:167.066667pt;}
.xd4_c00092{left:168.000000pt;}
.x11b_c00092{left:171.200000pt;}
.x117_c00092{left:172.400000pt;}
.xda_c00092{left:173.333333pt;}
.x6b_c00092{left:176.800000pt;}
.x129_c00092{left:178.266667pt;}
.x5_c00092{left:179.600000pt;}
.x31_c00092{left:181.200000pt;}
.x77_c00092{left:182.933333pt;}
.x44_c00092{left:184.933333pt;}
.x11f_c00092{left:189.066667pt;}
.xfa_c00092{left:191.066667pt;}
.x90_c00092{left:192.666667pt;}
.x87_c00092{left:194.800000pt;}
.x10c_c00092{left:200.400000pt;}
.x14_c00092{left:201.733333pt;}
.x6c_c00092{left:204.266667pt;}
.xb9_c00092{left:205.733333pt;}
.xcf_c00092{left:206.666667pt;}
.xc0_c00092{left:208.533333pt;}
.x6_c00092{left:209.733333pt;}
.xf2_c00092{left:211.466667pt;}
.xd5_c00092{left:213.466667pt;}
.x45_c00092{left:215.333333pt;}
.xb2_c00092{left:217.200000pt;}
.x9a_c00092{left:220.800000pt;}
.xea_c00092{left:224.933333pt;}
.x88_c00092{left:227.066667pt;}
.x32_c00092{left:228.266667pt;}
.xf3_c00092{left:229.333333pt;}
.x5e_c00092{left:231.333333pt;}
.xc8_c00092{left:233.466667pt;}
.x23_c00092{left:236.266667pt;}
.x78_c00092{left:237.600000pt;}
.x51_c00092{left:238.800000pt;}
.xd6_c00092{left:240.000000pt;}
.x100_c00092{left:241.600000pt;}
.x7_c00092{left:243.333333pt;}
.x107_c00092{left:246.533333pt;}
.x101_c00092{left:248.933333pt;}
.x91_c00092{left:250.000000pt;}
.x33_c00092{left:250.933333pt;}
.xd0_c00092{left:252.400000pt;}
.x5f_c00092{left:254.666667pt;}
.xa3_c00092{left:256.933333pt;}
.x46_c00092{left:257.866667pt;}
.x123_c00092{left:259.466667pt;}
.x60_c00092{left:260.400000pt;}
.x9b_c00092{left:262.133333pt;}
.xba_c00092{left:263.600000pt;}
.xdf_c00092{left:264.533333pt;}
.xfb_c00092{left:266.266667pt;}
.x15_c00092{left:270.266667pt;}
.x79_c00092{left:271.200000pt;}
.x124_c00092{left:273.200000pt;}
.xa4_c00092{left:274.800000pt;}
.xe6_c00092{left:276.933333pt;}
.xc9_c00092{left:279.200000pt;}
.x52_c00092{left:280.133333pt;}
.x10d_c00092{left:281.066667pt;}
.x108_c00092{left:282.000000pt;}
.xef_c00092{left:284.400000pt;}
.x24_c00092{left:286.133333pt;}
.xfc_c00092{left:287.333333pt;}
.x8_c00092{left:290.000000pt;}
.xeb_c00092{left:291.466667pt;}
.x89_c00092{left:292.666667pt;}
.x125_c00092{left:294.666667pt;}
.x61_c00092{left:295.866667pt;}
.x34_c00092{left:298.266667pt;}
.xb3_c00092{left:301.066667pt;}
.xca_c00092{left:302.266667pt;}
.x25_c00092{left:304.400000pt;}
.xac_c00092{left:306.933333pt;}
.x7a_c00092{left:309.333333pt;}
.x10e_c00092{left:310.800000pt;}
.x35_c00092{left:312.000000pt;}
.x9_c00092{left:315.333333pt;}
.x62_c00092{left:318.533333pt;}
.xec_c00092{left:319.600000pt;}
.x36_c00092{left:322.266667pt;}
.x92_c00092{left:323.600000pt;}
.xf8_c00092{left:325.600000pt;}
.x53_c00092{left:328.400000pt;}
.x6d_c00092{left:329.866667pt;}
.xe7_c00092{left:330.800000pt;}
.x10f_c00092{left:331.866667pt;}
.x7b_c00092{left:333.600000pt;}
.x16_c00092{left:336.800000pt;}
.xa_c00092{left:339.333333pt;}
.xa5_c00092{left:341.066667pt;}
.x116_c00092{left:343.600000pt;}
.x63_c00092{left:346.000000pt;}
.x2_c00092{left:347.866667pt;}
.x47_c00092{left:349.066667pt;}
.x37_c00092{left:350.400000pt;}
.xf4_c00092{left:352.800000pt;}
.xfd_c00092{left:353.866667pt;}
.xd7_c00092{left:355.866667pt;}
.x17_c00092{left:356.933333pt;}
.xad_c00092{left:360.666667pt;}
.x8a_c00092{left:362.400000pt;}
.xd1_c00092{left:363.466667pt;}
.x9c_c00092{left:364.533333pt;}
.x38_c00092{left:365.466667pt;}
.x6e_c00092{left:368.266667pt;}
.xb_c00092{left:370.000000pt;}
.xdb_c00092{left:373.466667pt;}
.x12a_c00092{left:374.400000pt;}
.x7c_c00092{left:376.133333pt;}
.x54_c00092{left:377.333333pt;}
.x18_c00092{left:379.600000pt;}
.xc_c00092{left:380.533333pt;}
.x9d_c00092{left:383.733333pt;}
.x26_c00092{left:386.666667pt;}
.xc2_c00092{left:388.266667pt;}
.x93_c00092{left:389.466667pt;}
.x11c_c00092{left:390.800000pt;}
.x64_c00092{left:391.733333pt;}
.xf5_c00092{left:394.400000pt;}
.x6f_c00092{left:395.733333pt;}
.x39_c00092{left:398.400000pt;}
.xae_c00092{left:400.000000pt;}
.xa6_c00092{left:401.866667pt;}
.x110_c00092{left:405.466667pt;}
.xbb_c00092{left:407.200000pt;}
.x9e_c00092{left:409.333333pt;}
.xd_c00092{left:410.266667pt;}
.x27_c00092{left:412.266667pt;}
.x7d_c00092{left:414.533333pt;}
.x94_c00092{left:417.600000pt;}
.x48_c00092{left:422.000000pt;}
.x19_c00092{left:425.733333pt;}
.x70_c00092{left:433.866667pt;}
.x3_c00092{left:435.600000pt;}
.x102_c00092{left:436.800000pt;}
.x126_c00092{left:437.733333pt;}
.xb4_c00092{left:439.600000pt;}
.xa7_c00092{left:440.933333pt;}
.xcb_c00092{left:442.133333pt;}
.x3a_c00092{left:445.733333pt;}
.xfe_c00092{left:448.000000pt;}
.x28_c00092{left:449.333333pt;}
.x1a_c00092{left:451.066667pt;}
.x55_c00092{left:453.200000pt;}
.x71_c00092{left:454.400000pt;}
.xe_c00092{left:455.333333pt;}
.xe0_c00092{left:456.533333pt;}
.xe8_c00092{left:458.400000pt;}
.x7e_c00092{left:460.000000pt;}
.x8b_c00092{left:461.333333pt;}
.xdc_c00092{left:463.733333pt;}
.x111_c00092{left:466.933333pt;}
.x49_c00092{left:468.000000pt;}
.x9f_c00092{left:470.400000pt;}
.x109_c00092{left:471.333333pt;}
.xf_c00092{left:472.266667pt;}
.xa8_c00092{left:474.533333pt;}
.x72_c00092{left:477.066667pt;}
.x65_c00092{left:479.066667pt;}
.xcc_c00092{left:480.266667pt;}
.xc3_c00092{left:481.733333pt;}
.x3b_c00092{left:484.400000pt;}
.x1b_c00092{left:485.333333pt;}
.x29_c00092{left:488.000000pt;}
.x4a_c00092{left:490.666667pt;}
.x11d_c00092{left:491.600000pt;}
.xb5_c00092{left:492.800000pt;}
.x95_c00092{left:493.733333pt;}
.x73_c00092{left:495.333333pt;}
.xd8_c00092{left:496.266667pt;}
.x56_c00092{left:499.600000pt;}
.xa0_c00092{left:500.533333pt;}
.x118_c00092{left:503.200000pt;}
.x66_c00092{left:504.400000pt;}
.x10a_c00092{left:505.600000pt;}
.x7f_c00092{left:508.000000pt;}
.xcd_c00092{left:509.066667pt;}
.x127_c00092{left:510.266667pt;}
.xc4_c00092{left:511.866667pt;}
.xf0_c00092{left:513.466667pt;}
.xe1_c00092{left:515.466667pt;}
.x96_c00092{left:516.400000pt;}
.x74_c00092{left:522.533333pt;}
.x8c_c00092{left:524.000000pt;}
.x4b_c00092{left:526.800000pt;}
.x57_c00092{left:528.400000pt;}
.x12b_c00092{left:530.666667pt;}
.xdd_c00092{left:532.533333pt;}
.x120_c00092{left:534.133333pt;}
.x67_c00092{left:537.066667pt;}
.x58_c00092{left:540.266667pt;}
.xa1_c00092{left:542.133333pt;}
.x80_c00092{left:543.866667pt;}
.xd2_c00092{left:545.200000pt;}
.xc5_c00092{left:546.400000pt;}
.xbc_c00092{left:547.600000pt;}
.xe2_c00092{left:549.066667pt;}
.x10_c00092{left:552.000000pt;}
.x119_c00092{left:553.733333pt;}
.x1c_c00092{left:555.733333pt;}
.x3c_c00092{left:557.466667pt;}
.x4c_c00092{left:559.066667pt;}
.x81_c00092{left:560.133333pt;}
.x2a_c00092{left:561.866667pt;}
.xbd_c00092{left:563.333333pt;}
.x75_c00092{left:568.000000pt;}
.xa9_c00092{left:570.133333pt;}
.x103_c00092{left:571.066667pt;}
.xb6_c00092{left:573.066667pt;}
.x121_c00092{left:574.133333pt;}
.x59_c00092{left:580.000000pt;}
.x112_c00092{left:580.933333pt;}
.x2b_c00092{left:582.666667pt;}
.x1d_c00092{left:584.266667pt;}
.xc6_c00092{left:586.133333pt;}
.x68_c00092{left:588.000000pt;}
.x11a_c00092{left:591.466667pt;}
.x4d_c00092{left:593.333333pt;}
.x97_c00092{left:594.800000pt;}
.x82_c00092{left:596.000000pt;}
.x11_c00092{left:598.400000pt;}
.x1e_c00092{left:600.266667pt;}
.x3d_c00092{left:602.933333pt;}
.x2c_c00092{left:604.800000pt;}
.xbe_c00092{left:608.400000pt;}
.x83_c00092{left:611.333333pt;}
.xf6_c00092{left:613.866667pt;}
.x98_c00092{left:616.533333pt;}
.xa2_c00092{left:618.666667pt;}
.xaf_c00092{left:620.133333pt;}
.xff_c00092{left:621.466667pt;}
.xe3_c00092{left:622.666667pt;}
.x12_c00092{left:623.733333pt;}
.x5a_c00092{left:625.066667pt;}
.x113_c00092{left:626.666667pt;}
.x3e_c00092{left:629.466667pt;}
.xf9_c00092{left:631.200000pt;}
.xed_c00092{left:633.200000pt;}
.xc7_c00092{left:634.400000pt;}
.x8d_c00092{left:636.533333pt;}
.xb0_c00092{left:638.000000pt;}
.x2d_c00092{left:640.266667pt;}
.xe4_c00092{left:641.200000pt;}
.xf1_c00092{left:642.533333pt;}
.x1f_c00092{left:643.466667pt;}
.xaa_c00092{left:645.066667pt;}
.x114_c00092{left:646.133333pt;}
.xb7_c00092{left:649.333333pt;}
.x99_c00092{left:651.466667pt;}
.x76_c00092{left:653.466667pt;}
.x2e_c00092{left:655.600000pt;}
.x3f_c00092{left:659.866667pt;}
.x13_c00092{left:660.800000pt;}
.xee_c00092{left:662.933333pt;}
.x104_c00092{left:663.866667pt;}
.x4e_c00092{left:667.600000pt;}
.x84_c00092{left:668.666667pt;}
.x69_c00092{left:670.000000pt;}
.xd3_c00092{left:671.333333pt;}
.xe9_c00092{left:672.400000pt;}
.x40_c00092{left:674.533333pt;}
.xbf_c00092{left:675.600000pt;}
.x8e_c00092{left:676.533333pt;}
.x5b_c00092{left:677.600000pt;}
.x105_c00092{left:679.600000pt;}
.x10b_c00092{left:680.933333pt;}
.x20_c00092{left:683.066667pt;}
.xd9_c00092{left:685.733333pt;}
.x6a_c00092{left:688.533333pt;}
.xf7_c00092{left:691.600000pt;}
.xde_c00092{left:693.066667pt;}
.x5c_c00092{left:695.866667pt;}
.x41_c00092{left:697.600000pt;}
.xb1_c00092{left:704.266667pt;}
.x122_c00092{left:706.933333pt;}
.x85_c00092{left:708.000000pt;}
.x2f_c00092{left:709.066667pt;}
.xce_c00092{left:710.266667pt;}
.x4f_c00092{left:711.733333pt;}
.x21_c00092{left:713.733333pt;}
}





/* 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_c00093 {
    display:none;
  }
  .loading-indicator_c00093.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00093 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_c00093 { 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_c00093" -> "#page-container .classname_c00093")
 */
.pf_c00093 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00093 { /* 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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00093 { /* 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_c00093 { /* 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_c00093 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00093 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00093 {overflow:visible;}
  }
}
.c_c00093 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00093 { /* 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_c00093:after { /* webkit #35443 */
  content: '';
}
.t_c00093:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00093 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 */
}
.__c00093 { /* 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_c00093 { /* info for Javascript */
  display:none;
}
.l_c00093 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00093 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00093 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00093: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_c00093 {
    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_c00093.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00093.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_c00093 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00093{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.000000;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;}
.m4f_c00093{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00093{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m53_c00093{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00093{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m36_c00093{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m54_c00093{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m0_c00093{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m46_c00093{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m34_c00093{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m60_c00093{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m95_c00093{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m66_c00093{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00093{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00093{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m86_c00093{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m70_c00093{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00093{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m64_c00093{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00093{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00093{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00093{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m49_c00093{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m69_c00093{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m94_c00093{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m98_c00093{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00093{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00093{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m10_c00093{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00093{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00093{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00093{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00093{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00093{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00093{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00093{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m92_c00093{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m39_c00093{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00093{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m74_c00093{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m57_c00093{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m96_c00093{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00093{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m72_c00093{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mb_c00093{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m25_c00093{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m78_c00093{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m68_c00093{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m14_c00093{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m33_c00093{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m58_c00093{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m87_c00093{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00093{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m45_c00093{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00093{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00093{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00093{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8_c00093{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00093{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m42_c00093{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m79_c00093{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00093{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00093{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m27_c00093{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m80_c00093{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00093{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m43_c00093{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00093{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00093{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m81_c00093{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md_c00093{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00093{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2_c00093{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00093{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11_c00093{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m50_c00093{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m55_c00093{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m24_c00093{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00093{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m15_c00093{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00093{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m56_c00093{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00093{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m75_c00093{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00093{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00093{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m51_c00093{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00093{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00093{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m99_c00093{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m44_c00093{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m67_c00093{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m40_c00093{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00093{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m29_c00093{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m23_c00093{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m85_c00093{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00093{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00093{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m47_c00093{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00093{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9_c00093{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00093{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m82_c00093{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00093{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00093{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m65_c00093{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m52_c00093{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m76_c00093{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m48_c00093{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00093{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mf_c00093{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00093{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m91_c00093{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5_c00093{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m63_c00093{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00093{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m41_c00093{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00093{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00093{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00093{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00093{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m84_c00093{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00093{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00093{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00093{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00093{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mc_c00093{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m20_c00093{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00093{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00093{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00093{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7_c00093{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m19_c00093{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m97_c00093{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m59_c00093{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00093{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m37_c00093{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m35_c00093{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m22_c00093{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m38_c00093{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00093{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m32_c00093{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00093{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00093{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m73_c00093{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00093{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00093{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m31_c00093{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4_c00093{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma_c00093{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00093{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m6_c00093{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m71_c00093{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m61_c00093{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m21_c00093{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m13_c00093{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00093{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m83_c00093{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m77_c00093{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m93_c00093{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00093{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00093{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00093{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m89_c00093{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m88_c00093{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{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__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00093{word-spacing:-8.671875px;}
.ws8_c00093{word-spacing:-8.024691px;}
.ws0_c00093{word-spacing:-7.265625px;}
.ws4_c00093{word-spacing:-7.261905px;}
.ws6_c00093{word-spacing:-6.666667px;}
.ws9_c00093{word-spacing:-3.823529px;}
.wsa_c00093{word-spacing:0.000000px;}
.ws1_c00093{word-spacing:0.703125px;}
.ws5_c00093{word-spacing:7.968750px;}
.ws3_c00093{word-spacing:10.277778px;}
.ws2_c00093{word-spacing:22.962963px;}
.fc0_c00093{color:transparent;}
.fs1_c00093{font-size:60.000000px;}
.fs0_c00093{font-size:66.000000px;}
.y0_c00093{bottom:0.000000px;}
.y27_c00093{bottom:140.400000px;}
.y26_c00093{bottom:156.300000px;}
.y25_c00093{bottom:188.100000px;}
.y24_c00093{bottom:207.900000px;}
.y23_c00093{bottom:227.700000px;}
.y22_c00093{bottom:247.500000px;}
.y21_c00093{bottom:267.600000px;}
.y20_c00093{bottom:287.700000px;}
.y1f_c00093{bottom:306.900000px;}
.y1e_c00093{bottom:327.750000px;}
.y1d_c00093{bottom:347.550000px;}
.y1c_c00093{bottom:367.350000px;}
.y1b_c00093{bottom:387.150000px;}
.y1a_c00093{bottom:407.250000px;}
.y19_c00093{bottom:427.350000px;}
.y18_c00093{bottom:446.850000px;}
.y17_c00093{bottom:466.950000px;}
.y16_c00093{bottom:486.750000px;}
.y15_c00093{bottom:506.850000px;}
.y14_c00093{bottom:526.350000px;}
.y13_c00093{bottom:546.150000px;}
.y12_c00093{bottom:565.950000px;}
.y11_c00093{bottom:586.050000px;}
.y10_c00093{bottom:605.850000px;}
.yf_c00093{bottom:625.950000px;}
.ye_c00093{bottom:646.050000px;}
.yd_c00093{bottom:666.150000px;}
.yc_c00093{bottom:686.250000px;}
.yb_c00093{bottom:706.050000px;}
.ya_c00093{bottom:726.150000px;}
.y9_c00093{bottom:745.950000px;}
.y8_c00093{bottom:766.200000px;}
.y7_c00093{bottom:786.000000px;}
.y6_c00093{bottom:805.800000px;}
.y5_c00093{bottom:825.600000px;}
.y4_c00093{bottom:845.700000px;}
.y3_c00093{bottom:878.400000px;}
.y2_c00093{bottom:911.100000px;}
.y1_c00093{bottom:1038.900000px;}
.h3_c00093{height:60.000000px;}
.h2_c00093{height:66.000000px;}
.h1_c00093{height:1167.000000px;}
.h0_c00093{height:1167.119934px;}
.w0_c00093{width:913.320007px;}
.w1_c00093{width:913.500000px;}
.x0_c00093{left:0.000000px;}
.x28_c00093{left:98.700000px;}
.xc_c00093{left:99.750000px;}
.xab_c00093{left:113.850000px;}
.xfb_c00093{left:116.850000px;}
.xd1_c00093{left:119.100000px;}
.x11a_c00093{left:120.300000px;}
.xc6_c00093{left:124.650000px;}
.xbf_c00093{left:127.050000px;}
.x29_c00093{left:130.350000px;}
.xed_c00093{left:132.750000px;}
.x95_c00093{left:135.000000px;}
.xac_c00093{left:136.950000px;}
.xd_c00093{left:140.850000px;}
.xe4_c00093{left:142.350000px;}
.x18_c00093{left:144.300000px;}
.x60_c00093{left:145.650000px;}
.x6a_c00093{left:147.450000px;}
.xdb_c00093{left:149.700000px;}
.x9a_c00093{left:151.200000px;}
.x104_c00093{left:152.700000px;}
.x2a_c00093{left:154.050000px;}
.x7f_c00093{left:155.400000px;}
.xe_c00093{left:156.750000px;}
.x78_c00093{left:159.750000px;}
.x4a_c00093{left:162.600000px;}
.x123_c00093{left:164.100000px;}
.xc7_c00093{left:166.350000px;}
.x105_c00093{left:169.950000px;}
.x8e_c00093{left:171.300000px;}
.x19_c00093{left:173.100000px;}
.xee_c00093{left:174.150000px;}
.x34_c00093{left:177.600000px;}
.xe5_c00093{left:178.650000px;}
.x118_c00093{left:180.900000px;}
.x4b_c00093{left:182.100000px;}
.x80_c00093{left:183.450000px;}
.xc8_c00093{left:185.400000px;}
.xc0_c00093{left:187.200000px;}
.xa3_c00093{left:188.250000px;}
.xef_c00093{left:191.100000px;}
.x2b_c00093{left:193.650000px;}
.x40_c00093{left:194.850000px;}
.x35_c00093{left:198.900000px;}
.x6b_c00093{left:204.000000px;}
.x9b_c00093{left:207.000000px;}
.x96_c00093{left:208.800000px;}
.x8f_c00093{left:212.700000px;}
.xf_c00093{left:217.950000px;}
.xa4_c00093{left:220.950000px;}
.xc1_c00093{left:223.200000px;}
.x41_c00093{left:224.400000px;}
.x81_c00093{left:225.600000px;}
.x1a_c00093{left:228.150000px;}
.xad_c00093{left:229.800000px;}
.x56_c00093{left:232.350000px;}
.x36_c00093{left:234.150000px;}
.xf7_c00093{left:235.350000px;}
.xc9_c00093{left:237.300000px;}
.x124_c00093{left:238.800000px;}
.x97_c00093{left:240.150000px;}
.x4_c00093{left:242.250000px;}
.xf4_c00093{left:243.600000px;}
.xfc_c00093{left:244.650000px;}
.x79_c00093{left:247.200000px;}
.x1b_c00093{left:248.250000px;}
.x42_c00093{left:249.900000px;}
.xe6_c00093{left:253.500000px;}
.x106_c00093{left:254.550000px;}
.x2c_c00093{left:257.700000px;}
.xa5_c00093{left:259.050000px;}
.x57_c00093{left:261.150000px;}
.xae_c00093{left:262.200000px;}
.xf0_c00093{left:263.850000px;}
.x6c_c00093{left:266.700000px;}
.x9c_c00093{left:270.000000px;}
.x11f_c00093{left:271.200000px;}
.xfd_c00093{left:274.500000px;}
.x5_c00093{left:275.700000px;}
.x11b_c00093{left:277.200000px;}
.x7a_c00093{left:278.850000px;}
.x10_c00093{left:280.950000px;}
.xdc_c00093{left:282.150000px;}
.x61_c00093{left:283.200000px;}
.x6d_c00093{left:284.700000px;}
.x2d_c00093{left:286.500000px;}
.x9d_c00093{left:287.700000px;}
.xf1_c00093{left:289.800000px;}
.x4c_c00093{left:290.850000px;}
.xd2_c00093{left:293.250000px;}
.x82_c00093{left:296.550000px;}
.xc2_c00093{left:298.500000px;}
.x1c_c00093{left:299.700000px;}
.x11_c00093{left:303.600000px;}
.xe7_c00093{left:305.400000px;}
.x6e_c00093{left:310.650000px;}
.xb7_c00093{left:313.200000px;}
.x37_c00093{left:314.400000px;}
.xfe_c00093{left:315.600000px;}
.xdd_c00093{left:316.650000px;}
.xf5_c00093{left:318.150000px;}
.x90_c00093{left:321.000000px;}
.xd3_c00093{left:325.650000px;}
.x83_c00093{left:327.450000px;}
.x1d_c00093{left:330.300000px;}
.xb8_c00093{left:333.750000px;}
.x4d_c00093{left:334.800000px;}
.x107_c00093{left:336.600000px;}
.x12_c00093{left:338.100000px;}
.xa6_c00093{left:340.800000px;}
.x62_c00093{left:343.650000px;}
.x43_c00093{left:346.050000px;}
.x125_c00093{left:348.300000px;}
.x10b_c00093{left:351.000000px;}
.x38_c00093{left:352.200000px;}
.x6_c00093{left:353.850000px;}
.xe9_c00093{left:356.550000px;}
.x7b_c00093{left:357.750000px;}
.x4e_c00093{left:359.250000px;}
.xd4_c00093{left:361.650000px;}
.x44_c00093{left:363.300000px;}
.x6f_c00093{left:367.200000px;}
.x119_c00093{left:368.850000px;}
.xb9_c00093{left:371.850000px;}
.x7_c00093{left:373.650000px;}
.xde_c00093{left:375.300000px;}
.x103_c00093{left:377.400000px;}
.x9e_c00093{left:379.800000px;}
.x63_c00093{left:381.450000px;}
.x2_c00093{left:382.650000px;}
.xf2_c00093{left:384.450000px;}
.x11c_c00093{left:386.550000px;}
.xd5_c00093{left:387.600000px;}
.x45_c00093{left:388.800000px;}
.x84_c00093{left:392.250000px;}
.x1e_c00093{left:395.100000px;}
.x10c_c00093{left:397.500000px;}
.xdf_c00093{left:398.700000px;}
.x39_c00093{left:399.750000px;}
.xf6_c00093{left:401.400000px;}
.x8_c00093{left:403.950000px;}
.xa7_c00093{left:405.900000px;}
.x64_c00093{left:409.950000px;}
.x7c_c00093{left:412.800000px;}
.x2e_c00093{left:415.650000px;}
.x1f_c00093{left:418.200000px;}
.x85_c00093{left:420.300000px;}
.xea_c00093{left:422.400000px;}
.x58_c00093{left:423.450000px;}
.x1_c00093{left:424.800000px;}
.x91_c00093{left:426.150000px;}
.x112_c00093{left:427.950000px;}
.x7d_c00093{left:434.700000px;}
.x13_c00093{left:436.800000px;}
.x4f_c00093{left:439.200000px;}
.xa8_c00093{left:440.400000px;}
.x70_c00093{left:441.750000px;}
.xeb_c00093{left:443.700000px;}
.x9_c00093{left:447.450000px;}
.xca_c00093{left:451.650000px;}
.xaf_c00093{left:453.750000px;}
.x9f_c00093{left:455.100000px;}
.xd6_c00093{left:457.500000px;}
.xf8_c00093{left:461.400000px;}
.x20_c00093{left:463.500000px;}
.x98_c00093{left:465.150000px;}
.x3_c00093{left:466.950000px;}
.x59_c00093{left:468.150000px;}
.x10d_c00093{left:470.250000px;}
.xa0_c00093{left:473.100000px;}
.x50_c00093{left:474.150000px;}
.xcb_c00093{left:477.150000px;}
.x3a_c00093{left:478.950000px;}
.xf3_c00093{left:480.300000px;}
.x71_c00093{left:481.650000px;}
.x108_c00093{left:486.750000px;}
.xc3_c00093{left:487.800000px;}
.x113_c00093{left:491.700000px;}
.x86_c00093{left:493.800000px;}
.xb0_c00093{left:496.950000px;}
.x2f_c00093{left:498.750000px;}
.xff_c00093{left:499.950000px;}
.xd7_c00093{left:501.000000px;}
.x72_c00093{left:503.250000px;}
.x46_c00093{left:505.350000px;}
.x99_c00093{left:506.550000px;}
.x10e_c00093{left:508.350000px;}
.x21_c00093{left:510.600000px;}
.x87_c00093{left:513.600000px;}
.x14_c00093{left:515.250000px;}
.xba_c00093{left:517.200000px;}
.x30_c00093{left:518.550000px;}
.xd8_c00093{left:521.550000px;}
.xa_c00093{left:522.750000px;}
.x7e_c00093{left:523.950000px;}
.x109_c00093{left:526.350000px;}
.x100_c00093{left:528.450000px;}
.x5a_c00093{left:530.100000px;}
.x3b_c00093{left:531.150000px;}
.xbb_c00093{left:532.350000px;}
.xcc_c00093{left:536.850000px;}
.x65_c00093{left:540.300000px;}
.x120_c00093{left:542.400000px;}
.x88_c00093{left:546.000000px;}
.xa1_c00093{left:547.650000px;}
.x92_c00093{left:549.150000px;}
.x10f_c00093{left:554.400000px;}
.x51_c00093{left:555.900000px;}
.x31_c00093{left:558.900000px;}
.x89_c00093{left:561.450000px;}
.x22_c00093{left:566.400000px;}
.x66_c00093{left:569.100000px;}
.x110_c00093{left:570.300000px;}
.xbc_c00093{left:571.650000px;}
.xe0_c00093{left:574.050000px;}
.x10a_c00093{left:576.000000px;}
.xb_c00093{left:578.850000px;}
.x5b_c00093{left:579.900000px;}
.x114_c00093{left:580.950000px;}
.x3c_c00093{left:582.300000px;}
.xcd_c00093{left:584.700000px;}
.xa9_c00093{left:585.750000px;}
.xc4_c00093{left:586.800000px;}
.x67_c00093{left:590.700000px;}
.xa2_c00093{left:592.950000px;}
.x23_c00093{left:594.900000px;}
.x8a_c00093{left:596.400000px;}
.x73_c00093{left:597.600000px;}
.x32_c00093{left:600.000000px;}
.x3d_c00093{left:602.400000px;}
.x47_c00093{left:603.450000px;}
.xce_c00093{left:604.500000px;}
.xd9_c00093{left:605.850000px;}
.x15_c00093{left:607.650000px;}
.x11d_c00093{left:608.850000px;}
.x115_c00093{left:610.050000px;}
.xb1_c00093{left:611.400000px;}
.x52_c00093{left:613.800000px;}
.x93_c00093{left:615.450000px;}
.xe8_c00093{left:620.550000px;}
.x74_c00093{left:625.650000px;}
.x68_c00093{left:627.450000px;}
.x5c_c00093{left:628.800000px;}
.x24_c00093{left:629.850000px;}
.xe1_c00093{left:630.900000px;}
.x116_c00093{left:632.400000px;}
.x8b_c00093{left:636.750000px;}
.xda_c00093{left:643.650000px;}
.x53_c00093{left:644.700000px;}
.xbd_c00093{left:645.750000px;}
.x5d_c00093{left:648.900000px;}
.xf9_c00093{left:651.450000px;}
.x75_c00093{left:656.550000px;}
.xb2_c00093{left:658.950000px;}
.x25_c00093{left:661.500000px;}
.x48_c00093{left:663.150000px;}
.x54_c00093{left:668.100000px;}
.x16_c00093{left:669.600000px;}
.x8c_c00093{left:670.650000px;}
.x5e_c00093{left:672.000000px;}
.xb3_c00093{left:674.100000px;}
.x101_c00093{left:675.600000px;}
.xcf_c00093{left:677.550000px;}
.x26_c00093{left:678.750000px;}
.x3e_c00093{left:681.600000px;}
.xaa_c00093{left:684.000000px;}
.x69_c00093{left:685.050000px;}
.xbe_c00093{left:687.900000px;}
.xb4_c00093{left:691.350000px;}
.x49_c00093{left:693.000000px;}
.x11e_c00093{left:694.200000px;}
.x102_c00093{left:695.400000px;}
.x121_c00093{left:696.450000px;}
.x94_c00093{left:697.800000px;}
.xe2_c00093{left:699.300000px;}
.xec_c00093{left:706.800000px;}
.xfa_c00093{left:708.000000px;}
.xb5_c00093{left:710.850000px;}
.x76_c00093{left:714.450000px;}
.xc5_c00093{left:715.650000px;}
.x33_c00093{left:717.300000px;}
.x55_c00093{left:723.900000px;}
.x8d_c00093{left:724.950000px;}
.x117_c00093{left:729.300000px;}
.x5f_c00093{left:732.150000px;}
.x122_c00093{left:733.500000px;}
.xe3_c00093{left:735.300000px;}
.xd0_c00093{left:737.700000px;}
.x27_c00093{left:739.200000px;}
.x3f_c00093{left:741.750000px;}
.x77_c00093{left:745.050000px;}
.x111_c00093{left:746.550000px;}
.xb6_c00093{left:751.950000px;}
.x17_c00093{left:753.900000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws7_c00093{word-spacing:-7.708333pt;}
.ws8_c00093{word-spacing:-7.133059pt;}
.ws0_c00093{word-spacing:-6.458333pt;}
.ws4_c00093{word-spacing:-6.455026pt;}
.ws6_c00093{word-spacing:-5.925926pt;}
.ws9_c00093{word-spacing:-3.398693pt;}
.wsa_c00093{word-spacing:0.000000pt;}
.ws1_c00093{word-spacing:0.625000pt;}
.ws5_c00093{word-spacing:7.083333pt;}
.ws3_c00093{word-spacing:9.135802pt;}
.ws2_c00093{word-spacing:20.411523pt;}
.fs1_c00093{font-size:53.333333pt;}
.fs0_c00093{font-size:58.666667pt;}
.y0_c00093{bottom:0.000000pt;}
.y27_c00093{bottom:124.800000pt;}
.y26_c00093{bottom:138.933333pt;}
.y25_c00093{bottom:167.200000pt;}
.y24_c00093{bottom:184.800000pt;}
.y23_c00093{bottom:202.400000pt;}
.y22_c00093{bottom:220.000000pt;}
.y21_c00093{bottom:237.866667pt;}
.y20_c00093{bottom:255.733333pt;}
.y1f_c00093{bottom:272.800000pt;}
.y1e_c00093{bottom:291.333333pt;}
.y1d_c00093{bottom:308.933333pt;}
.y1c_c00093{bottom:326.533333pt;}
.y1b_c00093{bottom:344.133333pt;}
.y1a_c00093{bottom:362.000000pt;}
.y19_c00093{bottom:379.866667pt;}
.y18_c00093{bottom:397.200000pt;}
.y17_c00093{bottom:415.066667pt;}
.y16_c00093{bottom:432.666667pt;}
.y15_c00093{bottom:450.533333pt;}
.y14_c00093{bottom:467.866667pt;}
.y13_c00093{bottom:485.466667pt;}
.y12_c00093{bottom:503.066667pt;}
.y11_c00093{bottom:520.933333pt;}
.y10_c00093{bottom:538.533333pt;}
.yf_c00093{bottom:556.400000pt;}
.ye_c00093{bottom:574.266667pt;}
.yd_c00093{bottom:592.133333pt;}
.yc_c00093{bottom:610.000000pt;}
.yb_c00093{bottom:627.600000pt;}
.ya_c00093{bottom:645.466667pt;}
.y9_c00093{bottom:663.066667pt;}
.y8_c00093{bottom:681.066667pt;}
.y7_c00093{bottom:698.666667pt;}
.y6_c00093{bottom:716.266667pt;}
.y5_c00093{bottom:733.866667pt;}
.y4_c00093{bottom:751.733333pt;}
.y3_c00093{bottom:780.800000pt;}
.y2_c00093{bottom:809.866667pt;}
.y1_c00093{bottom:923.466667pt;}
.h3_c00093{height:53.333333pt;}
.h2_c00093{height:58.666667pt;}
.h1_c00093{height:1037.333333pt;}
.h0_c00093{height:1037.439941pt;}
.w0_c00093{width:811.840007pt;}
.w1_c00093{width:812.000000pt;}
.x0_c00093{left:0.000000pt;}
.x28_c00093{left:87.733333pt;}
.xc_c00093{left:88.666667pt;}
.xab_c00093{left:101.200000pt;}
.xfb_c00093{left:103.866667pt;}
.xd1_c00093{left:105.866667pt;}
.x11a_c00093{left:106.933333pt;}
.xc6_c00093{left:110.800000pt;}
.xbf_c00093{left:112.933333pt;}
.x29_c00093{left:115.866667pt;}
.xed_c00093{left:118.000000pt;}
.x95_c00093{left:120.000000pt;}
.xac_c00093{left:121.733333pt;}
.xd_c00093{left:125.200000pt;}
.xe4_c00093{left:126.533333pt;}
.x18_c00093{left:128.266667pt;}
.x60_c00093{left:129.466667pt;}
.x6a_c00093{left:131.066667pt;}
.xdb_c00093{left:133.066667pt;}
.x9a_c00093{left:134.400000pt;}
.x104_c00093{left:135.733333pt;}
.x2a_c00093{left:136.933333pt;}
.x7f_c00093{left:138.133333pt;}
.xe_c00093{left:139.333333pt;}
.x78_c00093{left:142.000000pt;}
.x4a_c00093{left:144.533333pt;}
.x123_c00093{left:145.866667pt;}
.xc7_c00093{left:147.866667pt;}
.x105_c00093{left:151.066667pt;}
.x8e_c00093{left:152.266667pt;}
.x19_c00093{left:153.866667pt;}
.xee_c00093{left:154.800000pt;}
.x34_c00093{left:157.866667pt;}
.xe5_c00093{left:158.800000pt;}
.x118_c00093{left:160.800000pt;}
.x4b_c00093{left:161.866667pt;}
.x80_c00093{left:163.066667pt;}
.xc8_c00093{left:164.800000pt;}
.xc0_c00093{left:166.400000pt;}
.xa3_c00093{left:167.333333pt;}
.xef_c00093{left:169.866667pt;}
.x2b_c00093{left:172.133333pt;}
.x40_c00093{left:173.200000pt;}
.x35_c00093{left:176.800000pt;}
.x6b_c00093{left:181.333333pt;}
.x9b_c00093{left:184.000000pt;}
.x96_c00093{left:185.600000pt;}
.x8f_c00093{left:189.066667pt;}
.xf_c00093{left:193.733333pt;}
.xa4_c00093{left:196.400000pt;}
.xc1_c00093{left:198.400000pt;}
.x41_c00093{left:199.466667pt;}
.x81_c00093{left:200.533333pt;}
.x1a_c00093{left:202.800000pt;}
.xad_c00093{left:204.266667pt;}
.x56_c00093{left:206.533333pt;}
.x36_c00093{left:208.133333pt;}
.xf7_c00093{left:209.200000pt;}
.xc9_c00093{left:210.933333pt;}
.x124_c00093{left:212.266667pt;}
.x97_c00093{left:213.466667pt;}
.x4_c00093{left:215.333333pt;}
.xf4_c00093{left:216.533333pt;}
.xfc_c00093{left:217.466667pt;}
.x79_c00093{left:219.733333pt;}
.x1b_c00093{left:220.666667pt;}
.x42_c00093{left:222.133333pt;}
.xe6_c00093{left:225.333333pt;}
.x106_c00093{left:226.266667pt;}
.x2c_c00093{left:229.066667pt;}
.xa5_c00093{left:230.266667pt;}
.x57_c00093{left:232.133333pt;}
.xae_c00093{left:233.066667pt;}
.xf0_c00093{left:234.533333pt;}
.x6c_c00093{left:237.066667pt;}
.x9c_c00093{left:240.000000pt;}
.x11f_c00093{left:241.066667pt;}
.xfd_c00093{left:244.000000pt;}
.x5_c00093{left:245.066667pt;}
.x11b_c00093{left:246.400000pt;}
.x7a_c00093{left:247.866667pt;}
.x10_c00093{left:249.733333pt;}
.xdc_c00093{left:250.800000pt;}
.x61_c00093{left:251.733333pt;}
.x6d_c00093{left:253.066667pt;}
.x2d_c00093{left:254.666667pt;}
.x9d_c00093{left:255.733333pt;}
.xf1_c00093{left:257.600000pt;}
.x4c_c00093{left:258.533333pt;}
.xd2_c00093{left:260.666667pt;}
.x82_c00093{left:263.600000pt;}
.xc2_c00093{left:265.333333pt;}
.x1c_c00093{left:266.400000pt;}
.x11_c00093{left:269.866667pt;}
.xe7_c00093{left:271.466667pt;}
.x6e_c00093{left:276.133333pt;}
.xb7_c00093{left:278.400000pt;}
.x37_c00093{left:279.466667pt;}
.xfe_c00093{left:280.533333pt;}
.xdd_c00093{left:281.466667pt;}
.xf5_c00093{left:282.800000pt;}
.x90_c00093{left:285.333333pt;}
.xd3_c00093{left:289.466667pt;}
.x83_c00093{left:291.066667pt;}
.x1d_c00093{left:293.600000pt;}
.xb8_c00093{left:296.666667pt;}
.x4d_c00093{left:297.600000pt;}
.x107_c00093{left:299.200000pt;}
.x12_c00093{left:300.533333pt;}
.xa6_c00093{left:302.933333pt;}
.x62_c00093{left:305.466667pt;}
.x43_c00093{left:307.600000pt;}
.x125_c00093{left:309.600000pt;}
.x10b_c00093{left:312.000000pt;}
.x38_c00093{left:313.066667pt;}
.x6_c00093{left:314.533333pt;}
.xe9_c00093{left:316.933333pt;}
.x7b_c00093{left:318.000000pt;}
.x4e_c00093{left:319.333333pt;}
.xd4_c00093{left:321.466667pt;}
.x44_c00093{left:322.933333pt;}
.x6f_c00093{left:326.400000pt;}
.x119_c00093{left:327.866667pt;}
.xb9_c00093{left:330.533333pt;}
.x7_c00093{left:332.133333pt;}
.xde_c00093{left:333.600000pt;}
.x103_c00093{left:335.466667pt;}
.x9e_c00093{left:337.600000pt;}
.x63_c00093{left:339.066667pt;}
.x2_c00093{left:340.133333pt;}
.xf2_c00093{left:341.733333pt;}
.x11c_c00093{left:343.600000pt;}
.xd5_c00093{left:344.533333pt;}
.x45_c00093{left:345.600000pt;}
.x84_c00093{left:348.666667pt;}
.x1e_c00093{left:351.200000pt;}
.x10c_c00093{left:353.333333pt;}
.xdf_c00093{left:354.400000pt;}
.x39_c00093{left:355.333333pt;}
.xf6_c00093{left:356.800000pt;}
.x8_c00093{left:359.066667pt;}
.xa7_c00093{left:360.800000pt;}
.x64_c00093{left:364.400000pt;}
.x7c_c00093{left:366.933333pt;}
.x2e_c00093{left:369.466667pt;}
.x1f_c00093{left:371.733333pt;}
.x85_c00093{left:373.600000pt;}
.xea_c00093{left:375.466667pt;}
.x58_c00093{left:376.400000pt;}
.x1_c00093{left:377.600000pt;}
.x91_c00093{left:378.800000pt;}
.x112_c00093{left:380.400000pt;}
.x7d_c00093{left:386.400000pt;}
.x13_c00093{left:388.266667pt;}
.x4f_c00093{left:390.400000pt;}
.xa8_c00093{left:391.466667pt;}
.x70_c00093{left:392.666667pt;}
.xeb_c00093{left:394.400000pt;}
.x9_c00093{left:397.733333pt;}
.xca_c00093{left:401.466667pt;}
.xaf_c00093{left:403.333333pt;}
.x9f_c00093{left:404.533333pt;}
.xd6_c00093{left:406.666667pt;}
.xf8_c00093{left:410.133333pt;}
.x20_c00093{left:412.000000pt;}
.x98_c00093{left:413.466667pt;}
.x3_c00093{left:415.066667pt;}
.x59_c00093{left:416.133333pt;}
.x10d_c00093{left:418.000000pt;}
.xa0_c00093{left:420.533333pt;}
.x50_c00093{left:421.466667pt;}
.xcb_c00093{left:424.133333pt;}
.x3a_c00093{left:425.733333pt;}
.xf3_c00093{left:426.933333pt;}
.x71_c00093{left:428.133333pt;}
.x108_c00093{left:432.666667pt;}
.xc3_c00093{left:433.600000pt;}
.x113_c00093{left:437.066667pt;}
.x86_c00093{left:438.933333pt;}
.xb0_c00093{left:441.733333pt;}
.x2f_c00093{left:443.333333pt;}
.xff_c00093{left:444.400000pt;}
.xd7_c00093{left:445.333333pt;}
.x72_c00093{left:447.333333pt;}
.x46_c00093{left:449.200000pt;}
.x99_c00093{left:450.266667pt;}
.x10e_c00093{left:451.866667pt;}
.x21_c00093{left:453.866667pt;}
.x87_c00093{left:456.533333pt;}
.x14_c00093{left:458.000000pt;}
.xba_c00093{left:459.733333pt;}
.x30_c00093{left:460.933333pt;}
.xd8_c00093{left:463.600000pt;}
.xa_c00093{left:464.666667pt;}
.x7e_c00093{left:465.733333pt;}
.x109_c00093{left:467.866667pt;}
.x100_c00093{left:469.733333pt;}
.x5a_c00093{left:471.200000pt;}
.x3b_c00093{left:472.133333pt;}
.xbb_c00093{left:473.200000pt;}
.xcc_c00093{left:477.200000pt;}
.x65_c00093{left:480.266667pt;}
.x120_c00093{left:482.133333pt;}
.x88_c00093{left:485.333333pt;}
.xa1_c00093{left:486.800000pt;}
.x92_c00093{left:488.133333pt;}
.x10f_c00093{left:492.800000pt;}
.x51_c00093{left:494.133333pt;}
.x31_c00093{left:496.800000pt;}
.x89_c00093{left:499.066667pt;}
.x22_c00093{left:503.466667pt;}
.x66_c00093{left:505.866667pt;}
.x110_c00093{left:506.933333pt;}
.xbc_c00093{left:508.133333pt;}
.xe0_c00093{left:510.266667pt;}
.x10a_c00093{left:512.000000pt;}
.xb_c00093{left:514.533333pt;}
.x5b_c00093{left:515.466667pt;}
.x114_c00093{left:516.400000pt;}
.x3c_c00093{left:517.600000pt;}
.xcd_c00093{left:519.733333pt;}
.xa9_c00093{left:520.666667pt;}
.xc4_c00093{left:521.600000pt;}
.x67_c00093{left:525.066667pt;}
.xa2_c00093{left:527.066667pt;}
.x23_c00093{left:528.800000pt;}
.x8a_c00093{left:530.133333pt;}
.x73_c00093{left:531.200000pt;}
.x32_c00093{left:533.333333pt;}
.x3d_c00093{left:535.466667pt;}
.x47_c00093{left:536.400000pt;}
.xce_c00093{left:537.333333pt;}
.xd9_c00093{left:538.533333pt;}
.x15_c00093{left:540.133333pt;}
.x11d_c00093{left:541.200000pt;}
.x115_c00093{left:542.266667pt;}
.xb1_c00093{left:543.466667pt;}
.x52_c00093{left:545.600000pt;}
.x93_c00093{left:547.066667pt;}
.xe8_c00093{left:551.600000pt;}
.x74_c00093{left:556.133333pt;}
.x68_c00093{left:557.733333pt;}
.x5c_c00093{left:558.933333pt;}
.x24_c00093{left:559.866667pt;}
.xe1_c00093{left:560.800000pt;}
.x116_c00093{left:562.133333pt;}
.x8b_c00093{left:566.000000pt;}
.xda_c00093{left:572.133333pt;}
.x53_c00093{left:573.066667pt;}
.xbd_c00093{left:574.000000pt;}
.x5d_c00093{left:576.800000pt;}
.xf9_c00093{left:579.066667pt;}
.x75_c00093{left:583.600000pt;}
.xb2_c00093{left:585.733333pt;}
.x25_c00093{left:588.000000pt;}
.x48_c00093{left:589.466667pt;}
.x54_c00093{left:593.866667pt;}
.x16_c00093{left:595.200000pt;}
.x8c_c00093{left:596.133333pt;}
.x5e_c00093{left:597.333333pt;}
.xb3_c00093{left:599.200000pt;}
.x101_c00093{left:600.533333pt;}
.xcf_c00093{left:602.266667pt;}
.x26_c00093{left:603.333333pt;}
.x3e_c00093{left:605.866667pt;}
.xaa_c00093{left:608.000000pt;}
.x69_c00093{left:608.933333pt;}
.xbe_c00093{left:611.466667pt;}
.xb4_c00093{left:614.533333pt;}
.x49_c00093{left:616.000000pt;}
.x11e_c00093{left:617.066667pt;}
.x102_c00093{left:618.133333pt;}
.x121_c00093{left:619.066667pt;}
.x94_c00093{left:620.266667pt;}
.xe2_c00093{left:621.600000pt;}
.xec_c00093{left:628.266667pt;}
.xfa_c00093{left:629.333333pt;}
.xb5_c00093{left:631.866667pt;}
.x76_c00093{left:635.066667pt;}
.xc5_c00093{left:636.133333pt;}
.x33_c00093{left:637.600000pt;}
.x55_c00093{left:643.466667pt;}
.x8d_c00093{left:644.400000pt;}
.x117_c00093{left:648.266667pt;}
.x5f_c00093{left:650.800000pt;}
.x122_c00093{left:652.000000pt;}
.xe3_c00093{left:653.600000pt;}
.xd0_c00093{left:655.733333pt;}
.x27_c00093{left:657.066667pt;}
.x3f_c00093{left:659.333333pt;}
.x77_c00093{left:662.266667pt;}
.x111_c00093{left:663.600000pt;}
.xb6_c00093{left:668.400000pt;}
.x17_c00093{left:670.133333pt;}
}





/* 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_c00094 {
    display:none;
  }
  .loading-indicator_c00094.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00094 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_c00094 { 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_c00094" -> "#page-container .classname_c00094")
 */
.pf_c00094 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00094 { /* 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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00094 { /* 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_c00094 { /* 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_c00094 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00094 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00094 {overflow:visible;}
  }
}
.c_c00094 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00094 { /* 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_c00094:after { /* webkit #35443 */
  content: '';
}
.t_c00094:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00094 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 */
}
.__c00094 { /* 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_c00094 { /* info for Javascript */
  display:none;
}
.l_c00094 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00094 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00094 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00094: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_c00094 {
    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_c00094.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00094.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_c00094 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00094{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00094;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.000000;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;}
.mac_c00094{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m23_c00094{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m92_c00094{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00094{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m31_c00094{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m45_c00094{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.maf_c00094{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma_c00094{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m17_c00094{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00094{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m85_c00094{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m54_c00094{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m99_c00094{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00094{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00094{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m58_c00094{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33_c00094{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m63_c00094{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m14_c00094{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m62_c00094{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m76_c00094{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00094{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m84_c00094{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00094{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m26_c00094{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00094{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m98_c00094{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m50_c00094{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00094{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m53_c00094{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m66_c00094{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb_c00094{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m90_c00094{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00094{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m61_c00094{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00094{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00094{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00094{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00094{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf_c00094{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00094{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00094{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00094{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00094{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m55_c00094{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m22_c00094{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00094{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00094{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m96_c00094{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3_c00094{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m69_c00094{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00094{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m64_c00094{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00094{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00094{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m67_c00094{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m25_c00094{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m87_c00094{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m19_c00094{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me_c00094{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m68_c00094{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00094{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m18_c00094{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00094{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00094{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00094{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m97_c00094{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00094{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m27_c00094{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9_c00094{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m37_c00094{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00094{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00094{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00094{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00094{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10_c00094{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m44_c00094{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00094{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m11_c00094{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00094{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00094{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m40_c00094{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m35_c00094{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13_c00094{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m51_c00094{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m89_c00094{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00094{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00094{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00094{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);}
.m7d_c00094{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m94_c00094{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m75_c00094{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00094{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m65_c00094{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m95_c00094{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7_c00094{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00094{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m74_c00094{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m93_c00094{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m36_c00094{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00094{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00094{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m60_c00094{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00094{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m47_c00094{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m88_c00094{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00094{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.md_c00094{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m83_c00094{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m38_c00094{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m82_c00094{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m34_c00094{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m21_c00094{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00094{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m30_c00094{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m49_c00094{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m59_c00094{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m48_c00094{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00094{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5_c00094{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00094{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m42_c00094{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2_c00094{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00094{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00094{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00094{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m91_c00094{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00094{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m80_c00094{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00094{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m57_c00094{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00094{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m56_c00094{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00094{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00094{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m29_c00094{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m43_c00094{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m41_c00094{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m4_c00094{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.maa_c00094{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m28_c00094{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m81_c00094{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m79_c00094{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00094{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m32_c00094{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6_c00094{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc_c00094{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m39_c00094{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mad_c00094{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00094{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00094{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m77_c00094{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00094{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00094{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m73_c00094{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mab_c00094{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m86_c00094{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m20_c00094{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00094{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00094{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m15_c00094{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00094{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m70_c00094{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00094{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m71_c00094{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1_c00094{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m46_c00094{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00094{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00094{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00094{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m0_c00094{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00094{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00094{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m78_c00094{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m72_c00094{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00094{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00094{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.v0_c00094{vertical-align:0.000000px;}
.ls0_c00094{letter-spacing:0.000000px;}
.sc__c00094{text-shadow:none;}
.sc0_c00094{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__c00094{-webkit-text-stroke:0px transparent;}
.sc0_c00094{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00094{word-spacing:-4.375000px;}
.ws0_c00094{word-spacing:-2.917078px;}
.ws8_c00094{word-spacing:-0.171996px;}
.wsa_c00094{word-spacing:0.000000px;}
.ws9_c00094{word-spacing:1.500000px;}
.ws6_c00094{word-spacing:2.750000px;}
.ws5_c00094{word-spacing:4.625000px;}
.ws1_c00094{word-spacing:7.177493px;}
.ws3_c00094{word-spacing:7.500000px;}
.ws4_c00094{word-spacing:9.578831px;}
.ws7_c00094{word-spacing:13.250000px;}
.fc0_c00094{color:transparent;}
.fs0_c00094{font-size:54.000000px;}
.y0_c00094{bottom:0.000000px;}
.y2d_c00094{bottom:146.400000px;}
.y2c_c00094{bottom:166.200000px;}
.y2b_c00094{bottom:185.700000px;}
.y2a_c00094{bottom:205.800000px;}
.y29_c00094{bottom:225.600000px;}
.y28_c00094{bottom:245.700000px;}
.y27_c00094{bottom:265.500000px;}
.y26_c00094{bottom:285.300000px;}
.y25_c00094{bottom:305.100000px;}
.y24_c00094{bottom:325.200000px;}
.y23_c00094{bottom:345.000000px;}
.y22_c00094{bottom:364.800000px;}
.y21_c00094{bottom:384.900000px;}
.y20_c00094{bottom:404.700000px;}
.y1f_c00094{bottom:424.500000px;}
.y1e_c00094{bottom:444.600000px;}
.y1d_c00094{bottom:464.400000px;}
.y1c_c00094{bottom:484.500000px;}
.y1b_c00094{bottom:504.300000px;}
.y1a_c00094{bottom:524.400000px;}
.y19_c00094{bottom:544.500000px;}
.y18_c00094{bottom:564.300000px;}
.y17_c00094{bottom:584.100000px;}
.y16_c00094{bottom:604.200000px;}
.y15_c00094{bottom:624.300000px;}
.y14_c00094{bottom:643.800000px;}
.y13_c00094{bottom:663.900000px;}
.y12_c00094{bottom:683.700000px;}
.y11_c00094{bottom:703.800000px;}
.y10_c00094{bottom:723.600000px;}
.yf_c00094{bottom:743.400000px;}
.ye_c00094{bottom:763.350000px;}
.yd_c00094{bottom:783.900000px;}
.yc_c00094{bottom:803.700000px;}
.yb_c00094{bottom:823.800000px;}
.ya_c00094{bottom:843.900000px;}
.y9_c00094{bottom:863.700000px;}
.y8_c00094{bottom:883.800000px;}
.y7_c00094{bottom:903.600000px;}
.y6_c00094{bottom:923.400000px;}
.y5_c00094{bottom:943.500000px;}
.y4_c00094{bottom:963.300000px;}
.y3_c00094{bottom:983.550000px;}
.y2_c00094{bottom:1003.350000px;}
.y1_c00094{bottom:1042.500000px;}
.h2_c00094{height:54.000000px;}
.h1_c00094{height:1167.000000px;}
.h0_c00094{height:1167.119934px;}
.w0_c00094{width:913.320007px;}
.w1_c00094{width:913.500000px;}
.x0_c00094{left:0.000000px;}
.xa4_c00094{left:137.700000px;}
.x1_c00094{left:138.900000px;}
.x127_c00094{left:157.200000px;}
.xd7_c00094{left:159.600000px;}
.x11b_c00094{left:160.800000px;}
.x72_c00094{left:162.300000px;}
.xc9_c00094{left:164.550000px;}
.x47_c00094{left:166.350000px;}
.xbd_c00094{left:167.400000px;}
.x23_c00094{left:169.950000px;}
.x82_c00094{left:176.400000px;}
.xea_c00094{left:179.550000px;}
.x24_c00094{left:183.300000px;}
.x4_c00094{left:184.350000px;}
.x8d_c00094{left:185.850000px;}
.x39_c00094{left:188.250000px;}
.xef_c00094{left:189.600000px;}
.x17_c00094{left:191.700000px;}
.x104_c00094{left:193.050000px;}
.x83_c00094{left:194.400000px;}
.x30_c00094{left:198.300000px;}
.x73_c00094{left:202.950000px;}
.x120_c00094{left:205.200000px;}
.x9d_c00094{left:207.300000px;}
.x18_c00094{left:209.400000px;}
.x48_c00094{left:211.350000px;}
.xfe_c00094{left:213.150000px;}
.x5_c00094{left:215.250000px;}
.x6a_c00094{left:216.450000px;}
.x74_c00094{left:220.200000px;}
.xb6_c00094{left:221.700000px;}
.xf7_c00094{left:223.050000px;}
.xca_c00094{left:225.000000px;}
.x31_c00094{left:228.600000px;}
.xdc_c00094{left:231.450000px;}
.x97_c00094{left:235.050000px;}
.x75_c00094{left:238.200000px;}
.x49_c00094{left:239.400000px;}
.x115_c00094{left:244.200000px;}
.x25_c00094{left:245.550000px;}
.xa5_c00094{left:247.200000px;}
.x10f_c00094{left:249.300000px;}
.x8e_c00094{left:250.950000px;}
.xbe_c00094{left:255.150000px;}
.xd8_c00094{left:256.800000px;}
.x76_c00094{left:258.750000px;}
.x4a_c00094{left:261.000000px;}
.x3a_c00094{left:262.350000px;}
.x19_c00094{left:263.400000px;}
.xa6_c00094{left:265.200000px;}
.x61_c00094{left:266.700000px;}
.xaa_c00094{left:268.650000px;}
.xcb_c00094{left:269.700000px;}
.x6_c00094{left:271.350000px;}
.xe0_c00094{left:273.000000px;}
.x84_c00094{left:274.950000px;}
.xf8_c00094{left:276.000000px;}
.x26_c00094{left:277.950000px;}
.x9e_c00094{left:280.050000px;}
.x77_c00094{left:284.250000px;}
.x6b_c00094{left:286.950000px;}
.x3b_c00094{left:288.600000px;}
.xd0_c00094{left:290.850000px;}
.x4b_c00094{left:292.350000px;}
.x116_c00094{left:295.350000px;}
.x1a_c00094{left:298.650000px;}
.x125_c00094{left:300.900000px;}
.x7_c00094{left:302.250000px;}
.xc3_c00094{left:304.500000px;}
.xdd_c00094{left:306.000000px;}
.x27_c00094{left:307.050000px;}
.xff_c00094{left:308.250000px;}
.x78_c00094{left:311.250000px;}
.x12c_c00094{left:314.100000px;}
.xd9_c00094{left:317.250000px;}
.x1b_c00094{left:319.500000px;}
.x62_c00094{left:320.700000px;}
.xb7_c00094{left:325.350000px;}
.xaf_c00094{left:326.550000px;}
.xab_c00094{left:327.750000px;}
.x79_c00094{left:330.300000px;}
.xd1_c00094{left:333.300000px;}
.x117_c00094{left:334.650000px;}
.xf9_c00094{left:335.700000px;}
.xbf_c00094{left:338.400000px;}
.xa7_c00094{left:342.900000px;}
.x3c_c00094{left:344.700000px;}
.xf0_c00094{left:346.650000px;}
.x55_c00094{left:348.900000px;}
.x110_c00094{left:351.150000px;}
.x63_c00094{left:352.800000px;}
.x32_c00094{left:356.100000px;}
.xfa_c00094{left:357.300000px;}
.x121_c00094{left:359.400000px;}
.x128_c00094{left:362.550000px;}
.x3d_c00094{left:363.750000px;}
.x56_c00094{left:365.850000px;}
.x9f_c00094{left:367.500000px;}
.x1c_c00094{left:369.900000px;}
.x8_c00094{left:371.700000px;}
.x85_c00094{left:373.950000px;}
.x4c_c00094{left:376.650000px;}
.x6c_c00094{left:380.100000px;}
.x100_c00094{left:382.800000px;}
.x98_c00094{left:384.000000px;}
.x9_c00094{left:386.100000px;}
.x8f_c00094{left:387.450000px;}
.xda_c00094{left:389.250000px;}
.x1d_c00094{left:390.450000px;}
.xcc_c00094{left:391.800000px;}
.x10c_c00094{left:393.900000px;}
.x28_c00094{left:396.600000px;}
.x108_c00094{left:398.700000px;}
.xe4_c00094{left:401.550000px;}
.x2_c00094{left:403.200000px;}
.xf1_c00094{left:405.450000px;}
.x7a_c00094{left:408.750000px;}
.x111_c00094{left:409.800000px;}
.x6d_c00094{left:411.750000px;}
.x86_c00094{left:413.550000px;}
.xde_c00094{left:414.750000px;}
.x1e_c00094{left:415.950000px;}
.xe5_c00094{left:418.500000px;}
.xcd_c00094{left:419.850000px;}
.x3e_c00094{left:421.050000px;}
.x130_c00094{left:422.850000px;}
.xe1_c00094{left:425.250000px;}
.x90_c00094{left:427.800000px;}
.x4d_c00094{left:431.400000px;}
.x105_c00094{left:432.450000px;}
.x87_c00094{left:433.650000px;}
.x33_c00094{left:434.850000px;}
.x11c_c00094{left:436.500000px;}
.x29_c00094{left:438.000000px;}
.xa_c00094{left:440.400000px;}
.x7b_c00094{left:442.650000px;}
.x118_c00094{left:443.850000px;}
.xd2_c00094{left:447.450000px;}
.x3f_c00094{left:450.600000px;}
.xa0_c00094{left:451.650000px;}
.xb0_c00094{left:453.450000px;}
.xc4_c00094{left:456.900000px;}
.xb_c00094{left:459.900000px;}
.xc0_c00094{left:461.250000px;}
.x64_c00094{left:462.300000px;}
.xe6_c00094{left:465.600000px;}
.x1f_c00094{left:466.650000px;}
.x6e_c00094{left:468.600000px;}
.x106_c00094{left:470.250000px;}
.xac_c00094{left:471.300000px;}
.xeb_c00094{left:474.000000px;}
.xc_c00094{left:475.050000px;}
.x57_c00094{left:477.150000px;}
.x12a_c00094{left:478.500000px;}
.x91_c00094{left:480.000000px;}
.x40_c00094{left:485.550000px;}
.x11d_c00094{left:487.200000px;}
.xfb_c00094{left:489.450000px;}
.x4e_c00094{left:490.500000px;}
.xd_c00094{left:492.750000px;}
.xf2_c00094{left:494.250000px;}
.x20_c00094{left:496.200000px;}
.x101_c00094{left:499.500000px;}
.xc1_c00094{left:501.900000px;}
.x3_c00094{left:503.250000px;}
.x109_c00094{left:505.500000px;}
.x10d_c00094{left:507.300000px;}
.x7c_c00094{left:508.500000px;}
.x107_c00094{left:510.600000px;}
.x88_c00094{left:512.100000px;}
.x21_c00094{left:513.450000px;}
.x2a_c00094{left:516.450000px;}
.xd3_c00094{left:518.250000px;}
.x58_c00094{left:520.650000px;}
.xb8_c00094{left:522.150000px;}
.x34_c00094{left:524.850000px;}
.xec_c00094{left:526.200000px;}
.xb1_c00094{left:527.250000px;}
.xe7_c00094{left:529.200000px;}
.x12b_c00094{left:530.700000px;}
.x112_c00094{left:531.750000px;}
.x41_c00094{left:533.100000px;}
.xad_c00094{left:534.300000px;}
.x126_c00094{left:536.250000px;}
.xe_c00094{left:538.050000px;}
.xce_c00094{left:540.150000px;}
.xf3_c00094{left:541.350000px;}
.x65_c00094{left:544.350000px;}
.x2b_c00094{left:546.300000px;}
.x59_c00094{left:549.750000px;}
.x4f_c00094{left:555.000000px;}
.x35_c00094{left:556.500000px;}
.x22_c00094{left:557.700000px;}
.xed_c00094{left:558.900000px;}
.xf_c00094{left:560.400000px;}
.x102_c00094{left:561.750000px;}
.xb2_c00094{left:562.950000px;}
.x66_c00094{left:564.150000px;}
.xa8_c00094{left:566.100000px;}
.x5a_c00094{left:567.750000px;}
.x42_c00094{left:570.600000px;}
.x89_c00094{left:572.250000px;}
.xd4_c00094{left:574.050000px;}
.x6f_c00094{left:575.550000px;}
.x99_c00094{left:576.750000px;}
.xb9_c00094{left:581.550000px;}
.x92_c00094{left:584.400000px;}
.xb3_c00094{left:585.600000px;}
.x2c_c00094{left:587.700000px;}
.xdf_c00094{left:589.350000px;}
.x67_c00094{left:590.850000px;}
.x10_c00094{left:593.850000px;}
.xdb_c00094{left:597.600000px;}
.x8a_c00094{left:599.250000px;}
.x7d_c00094{left:600.750000px;}
.x43_c00094{left:601.950000px;}
.xf4_c00094{left:604.050000px;}
.x113_c00094{left:605.550000px;}
.xa1_c00094{left:606.750000px;}
.x122_c00094{left:608.400000px;}
.x70_c00094{left:611.550000px;}
.x50_c00094{left:612.600000px;}
.x11_c00094{left:614.400000px;}
.xa9_c00094{left:616.800000px;}
.x36_c00094{left:620.250000px;}
.x103_c00094{left:623.400000px;}
.xcf_c00094{left:624.750000px;}
.xba_c00094{left:627.300000px;}
.x9a_c00094{left:631.500000px;}
.x68_c00094{left:634.050000px;}
.xa2_c00094{left:635.250000px;}
.x93_c00094{left:637.650000px;}
.x71_c00094{left:640.050000px;}
.xc5_c00094{left:642.000000px;}
.xd5_c00094{left:643.950000px;}
.x129_c00094{left:648.900000px;}
.x12_c00094{left:652.950000px;}
.x10a_c00094{left:654.150000px;}
.x7e_c00094{left:660.150000px;}
.x2d_c00094{left:661.200000px;}
.xe2_c00094{left:662.700000px;}
.xf5_c00094{left:664.050000px;}
.xfc_c00094{left:665.700000px;}
.x44_c00094{left:667.800000px;}
.x5b_c00094{left:669.300000px;}
.x51_c00094{left:670.650000px;}
.x114_c00094{left:672.150000px;}
.x7f_c00094{left:674.550000px;}
.x12d_c00094{left:677.400000px;}
.x13_c00094{left:681.000000px;}
.x11e_c00094{left:684.750000px;}
.x94_c00094{left:685.950000px;}
.xbb_c00094{left:688.200000px;}
.x9b_c00094{left:690.450000px;}
.x52_c00094{left:691.500000px;}
.x10b_c00094{left:693.000000px;}
.x37_c00094{left:694.350000px;}
.xe3_c00094{left:696.600000px;}
.x45_c00094{left:697.650000px;}
.xae_c00094{left:699.600000px;}
.x119_c00094{left:701.250000px;}
.xb4_c00094{left:704.100000px;}
.x8b_c00094{left:706.500000px;}
.xc6_c00094{left:707.850000px;}
.x5c_c00094{left:709.950000px;}
.xa3_c00094{left:713.400000px;}
.xe8_c00094{left:715.200000px;}
.xbc_c00094{left:718.800000px;}
.x5d_c00094{left:721.050000px;}
.x14_c00094{left:722.400000px;}
.x80_c00094{left:724.200000px;}
.xc7_c00094{left:725.850000px;}
.x9c_c00094{left:729.300000px;}
.x12e_c00094{left:732.450000px;}
.x8c_c00094{left:735.300000px;}
.xfd_c00094{left:738.750000px;}
.x69_c00094{left:740.250000px;}
.xc2_c00094{left:742.050000px;}
.x15_c00094{left:743.250000px;}
.xc8_c00094{left:747.750000px;}
.x5e_c00094{left:749.100000px;}
.x123_c00094{left:752.700000px;}
.x53_c00094{left:754.200000px;}
.x11a_c00094{left:756.300000px;}
.xf6_c00094{left:758.400000px;}
.x38_c00094{left:759.450000px;}
.x5f_c00094{left:762.000000px;}
.xe9_c00094{left:763.800000px;}
.x16_c00094{left:767.400000px;}
.xd6_c00094{left:769.350000px;}
.x95_c00094{left:773.100000px;}
.x2e_c00094{left:774.300000px;}
.xee_c00094{left:775.950000px;}
.x46_c00094{left:777.600000px;}
.x10e_c00094{left:778.800000px;}
.x12f_c00094{left:782.100000px;}
.x124_c00094{left:783.300000px;}
.x81_c00094{left:785.400000px;}
.x54_c00094{left:786.900000px;}
.x11f_c00094{left:790.500000px;}
.x96_c00094{left:793.950000px;}
.xb5_c00094{left:795.150000px;}
.x60_c00094{left:799.050000px;}
.x2f_c00094{left:802.050000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws2_c00094{word-spacing:-3.888889pt;}
.ws0_c00094{word-spacing:-2.592958pt;}
.ws8_c00094{word-spacing:-0.152885pt;}
.wsa_c00094{word-spacing:0.000000pt;}
.ws9_c00094{word-spacing:1.333333pt;}
.ws6_c00094{word-spacing:2.444444pt;}
.ws5_c00094{word-spacing:4.111111pt;}
.ws1_c00094{word-spacing:6.379994pt;}
.ws3_c00094{word-spacing:6.666667pt;}
.ws4_c00094{word-spacing:8.514517pt;}
.ws7_c00094{word-spacing:11.777778pt;}
.fs0_c00094{font-size:48.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y2d_c00094{bottom:130.133333pt;}
.y2c_c00094{bottom:147.733333pt;}
.y2b_c00094{bottom:165.066667pt;}
.y2a_c00094{bottom:182.933333pt;}
.y29_c00094{bottom:200.533333pt;}
.y28_c00094{bottom:218.400000pt;}
.y27_c00094{bottom:236.000000pt;}
.y26_c00094{bottom:253.600000pt;}
.y25_c00094{bottom:271.200000pt;}
.y24_c00094{bottom:289.066667pt;}
.y23_c00094{bottom:306.666667pt;}
.y22_c00094{bottom:324.266667pt;}
.y21_c00094{bottom:342.133333pt;}
.y20_c00094{bottom:359.733333pt;}
.y1f_c00094{bottom:377.333333pt;}
.y1e_c00094{bottom:395.200000pt;}
.y1d_c00094{bottom:412.800000pt;}
.y1c_c00094{bottom:430.666667pt;}
.y1b_c00094{bottom:448.266667pt;}
.y1a_c00094{bottom:466.133333pt;}
.y19_c00094{bottom:484.000000pt;}
.y18_c00094{bottom:501.600000pt;}
.y17_c00094{bottom:519.200000pt;}
.y16_c00094{bottom:537.066667pt;}
.y15_c00094{bottom:554.933333pt;}
.y14_c00094{bottom:572.266667pt;}
.y13_c00094{bottom:590.133333pt;}
.y12_c00094{bottom:607.733333pt;}
.y11_c00094{bottom:625.600000pt;}
.y10_c00094{bottom:643.200000pt;}
.yf_c00094{bottom:660.800000pt;}
.ye_c00094{bottom:678.533333pt;}
.yd_c00094{bottom:696.800000pt;}
.yc_c00094{bottom:714.400000pt;}
.yb_c00094{bottom:732.266667pt;}
.ya_c00094{bottom:750.133333pt;}
.y9_c00094{bottom:767.733333pt;}
.y8_c00094{bottom:785.600000pt;}
.y7_c00094{bottom:803.200000pt;}
.y6_c00094{bottom:820.800000pt;}
.y5_c00094{bottom:838.666667pt;}
.y4_c00094{bottom:856.266667pt;}
.y3_c00094{bottom:874.266667pt;}
.y2_c00094{bottom:891.866667pt;}
.y1_c00094{bottom:926.666667pt;}
.h2_c00094{height:48.000000pt;}
.h1_c00094{height:1037.333333pt;}
.h0_c00094{height:1037.439941pt;}
.w0_c00094{width:811.840007pt;}
.w1_c00094{width:812.000000pt;}
.x0_c00094{left:0.000000pt;}
.xa4_c00094{left:122.400000pt;}
.x1_c00094{left:123.466667pt;}
.x127_c00094{left:139.733333pt;}
.xd7_c00094{left:141.866667pt;}
.x11b_c00094{left:142.933333pt;}
.x72_c00094{left:144.266667pt;}
.xc9_c00094{left:146.266667pt;}
.x47_c00094{left:147.866667pt;}
.xbd_c00094{left:148.800000pt;}
.x23_c00094{left:151.066667pt;}
.x82_c00094{left:156.800000pt;}
.xea_c00094{left:159.600000pt;}
.x24_c00094{left:162.933333pt;}
.x4_c00094{left:163.866667pt;}
.x8d_c00094{left:165.200000pt;}
.x39_c00094{left:167.333333pt;}
.xef_c00094{left:168.533333pt;}
.x17_c00094{left:170.400000pt;}
.x104_c00094{left:171.600000pt;}
.x83_c00094{left:172.800000pt;}
.x30_c00094{left:176.266667pt;}
.x73_c00094{left:180.400000pt;}
.x120_c00094{left:182.400000pt;}
.x9d_c00094{left:184.266667pt;}
.x18_c00094{left:186.133333pt;}
.x48_c00094{left:187.866667pt;}
.xfe_c00094{left:189.466667pt;}
.x5_c00094{left:191.333333pt;}
.x6a_c00094{left:192.400000pt;}
.x74_c00094{left:195.733333pt;}
.xb6_c00094{left:197.066667pt;}
.xf7_c00094{left:198.266667pt;}
.xca_c00094{left:200.000000pt;}
.x31_c00094{left:203.200000pt;}
.xdc_c00094{left:205.733333pt;}
.x97_c00094{left:208.933333pt;}
.x75_c00094{left:211.733333pt;}
.x49_c00094{left:212.800000pt;}
.x115_c00094{left:217.066667pt;}
.x25_c00094{left:218.266667pt;}
.xa5_c00094{left:219.733333pt;}
.x10f_c00094{left:221.600000pt;}
.x8e_c00094{left:223.066667pt;}
.xbe_c00094{left:226.800000pt;}
.xd8_c00094{left:228.266667pt;}
.x76_c00094{left:230.000000pt;}
.x4a_c00094{left:232.000000pt;}
.x3a_c00094{left:233.200000pt;}
.x19_c00094{left:234.133333pt;}
.xa6_c00094{left:235.733333pt;}
.x61_c00094{left:237.066667pt;}
.xaa_c00094{left:238.800000pt;}
.xcb_c00094{left:239.733333pt;}
.x6_c00094{left:241.200000pt;}
.xe0_c00094{left:242.666667pt;}
.x84_c00094{left:244.400000pt;}
.xf8_c00094{left:245.333333pt;}
.x26_c00094{left:247.066667pt;}
.x9e_c00094{left:248.933333pt;}
.x77_c00094{left:252.666667pt;}
.x6b_c00094{left:255.066667pt;}
.x3b_c00094{left:256.533333pt;}
.xd0_c00094{left:258.533333pt;}
.x4b_c00094{left:259.866667pt;}
.x116_c00094{left:262.533333pt;}
.x1a_c00094{left:265.466667pt;}
.x125_c00094{left:267.466667pt;}
.x7_c00094{left:268.666667pt;}
.xc3_c00094{left:270.666667pt;}
.xdd_c00094{left:272.000000pt;}
.x27_c00094{left:272.933333pt;}
.xff_c00094{left:274.000000pt;}
.x78_c00094{left:276.666667pt;}
.x12c_c00094{left:279.200000pt;}
.xd9_c00094{left:282.000000pt;}
.x1b_c00094{left:284.000000pt;}
.x62_c00094{left:285.066667pt;}
.xb7_c00094{left:289.200000pt;}
.xaf_c00094{left:290.266667pt;}
.xab_c00094{left:291.333333pt;}
.x79_c00094{left:293.600000pt;}
.xd1_c00094{left:296.266667pt;}
.x117_c00094{left:297.466667pt;}
.xf9_c00094{left:298.400000pt;}
.xbf_c00094{left:300.800000pt;}
.xa7_c00094{left:304.800000pt;}
.x3c_c00094{left:306.400000pt;}
.xf0_c00094{left:308.133333pt;}
.x55_c00094{left:310.133333pt;}
.x110_c00094{left:312.133333pt;}
.x63_c00094{left:313.600000pt;}
.x32_c00094{left:316.533333pt;}
.xfa_c00094{left:317.600000pt;}
.x121_c00094{left:319.466667pt;}
.x128_c00094{left:322.266667pt;}
.x3d_c00094{left:323.333333pt;}
.x56_c00094{left:325.200000pt;}
.x9f_c00094{left:326.666667pt;}
.x1c_c00094{left:328.800000pt;}
.x8_c00094{left:330.400000pt;}
.x85_c00094{left:332.400000pt;}
.x4c_c00094{left:334.800000pt;}
.x6c_c00094{left:337.866667pt;}
.x100_c00094{left:340.266667pt;}
.x98_c00094{left:341.333333pt;}
.x9_c00094{left:343.200000pt;}
.x8f_c00094{left:344.400000pt;}
.xda_c00094{left:346.000000pt;}
.x1d_c00094{left:347.066667pt;}
.xcc_c00094{left:348.266667pt;}
.x10c_c00094{left:350.133333pt;}
.x28_c00094{left:352.533333pt;}
.x108_c00094{left:354.400000pt;}
.xe4_c00094{left:356.933333pt;}
.x2_c00094{left:358.400000pt;}
.xf1_c00094{left:360.400000pt;}
.x7a_c00094{left:363.333333pt;}
.x111_c00094{left:364.266667pt;}
.x6d_c00094{left:366.000000pt;}
.x86_c00094{left:367.600000pt;}
.xde_c00094{left:368.666667pt;}
.x1e_c00094{left:369.733333pt;}
.xe5_c00094{left:372.000000pt;}
.xcd_c00094{left:373.200000pt;}
.x3e_c00094{left:374.266667pt;}
.x130_c00094{left:375.866667pt;}
.xe1_c00094{left:378.000000pt;}
.x90_c00094{left:380.266667pt;}
.x4d_c00094{left:383.466667pt;}
.x105_c00094{left:384.400000pt;}
.x87_c00094{left:385.466667pt;}
.x33_c00094{left:386.533333pt;}
.x11c_c00094{left:388.000000pt;}
.x29_c00094{left:389.333333pt;}
.xa_c00094{left:391.466667pt;}
.x7b_c00094{left:393.466667pt;}
.x118_c00094{left:394.533333pt;}
.xd2_c00094{left:397.733333pt;}
.x3f_c00094{left:400.533333pt;}
.xa0_c00094{left:401.466667pt;}
.xb0_c00094{left:403.066667pt;}
.xc4_c00094{left:406.133333pt;}
.xb_c00094{left:408.800000pt;}
.xc0_c00094{left:410.000000pt;}
.x64_c00094{left:410.933333pt;}
.xe6_c00094{left:413.866667pt;}
.x1f_c00094{left:414.800000pt;}
.x6e_c00094{left:416.533333pt;}
.x106_c00094{left:418.000000pt;}
.xac_c00094{left:418.933333pt;}
.xeb_c00094{left:421.333333pt;}
.xc_c00094{left:422.266667pt;}
.x57_c00094{left:424.133333pt;}
.x12a_c00094{left:425.333333pt;}
.x91_c00094{left:426.666667pt;}
.x40_c00094{left:431.600000pt;}
.x11d_c00094{left:433.066667pt;}
.xfb_c00094{left:435.066667pt;}
.x4e_c00094{left:436.000000pt;}
.xd_c00094{left:438.000000pt;}
.xf2_c00094{left:439.333333pt;}
.x20_c00094{left:441.066667pt;}
.x101_c00094{left:444.000000pt;}
.xc1_c00094{left:446.133333pt;}
.x3_c00094{left:447.333333pt;}
.x109_c00094{left:449.333333pt;}
.x10d_c00094{left:450.933333pt;}
.x7c_c00094{left:452.000000pt;}
.x107_c00094{left:453.866667pt;}
.x88_c00094{left:455.200000pt;}
.x21_c00094{left:456.400000pt;}
.x2a_c00094{left:459.066667pt;}
.xd3_c00094{left:460.666667pt;}
.x58_c00094{left:462.800000pt;}
.xb8_c00094{left:464.133333pt;}
.x34_c00094{left:466.533333pt;}
.xec_c00094{left:467.733333pt;}
.xb1_c00094{left:468.666667pt;}
.xe7_c00094{left:470.400000pt;}
.x12b_c00094{left:471.733333pt;}
.x112_c00094{left:472.666667pt;}
.x41_c00094{left:473.866667pt;}
.xad_c00094{left:474.933333pt;}
.x126_c00094{left:476.666667pt;}
.xe_c00094{left:478.266667pt;}
.xce_c00094{left:480.133333pt;}
.xf3_c00094{left:481.200000pt;}
.x65_c00094{left:483.866667pt;}
.x2b_c00094{left:485.600000pt;}
.x59_c00094{left:488.666667pt;}
.x4f_c00094{left:493.333333pt;}
.x35_c00094{left:494.666667pt;}
.x22_c00094{left:495.733333pt;}
.xed_c00094{left:496.800000pt;}
.xf_c00094{left:498.133333pt;}
.x102_c00094{left:499.333333pt;}
.xb2_c00094{left:500.400000pt;}
.x66_c00094{left:501.466667pt;}
.xa8_c00094{left:503.200000pt;}
.x5a_c00094{left:504.666667pt;}
.x42_c00094{left:507.200000pt;}
.x89_c00094{left:508.666667pt;}
.xd4_c00094{left:510.266667pt;}
.x6f_c00094{left:511.600000pt;}
.x99_c00094{left:512.666667pt;}
.xb9_c00094{left:516.933333pt;}
.x92_c00094{left:519.466667pt;}
.xb3_c00094{left:520.533333pt;}
.x2c_c00094{left:522.400000pt;}
.xdf_c00094{left:523.866667pt;}
.x67_c00094{left:525.200000pt;}
.x10_c00094{left:527.866667pt;}
.xdb_c00094{left:531.200000pt;}
.x8a_c00094{left:532.666667pt;}
.x7d_c00094{left:534.000000pt;}
.x43_c00094{left:535.066667pt;}
.xf4_c00094{left:536.933333pt;}
.x113_c00094{left:538.266667pt;}
.xa1_c00094{left:539.333333pt;}
.x122_c00094{left:540.800000pt;}
.x70_c00094{left:543.600000pt;}
.x50_c00094{left:544.533333pt;}
.x11_c00094{left:546.133333pt;}
.xa9_c00094{left:548.266667pt;}
.x36_c00094{left:551.333333pt;}
.x103_c00094{left:554.133333pt;}
.xcf_c00094{left:555.333333pt;}
.xba_c00094{left:557.600000pt;}
.x9a_c00094{left:561.333333pt;}
.x68_c00094{left:563.600000pt;}
.xa2_c00094{left:564.666667pt;}
.x93_c00094{left:566.800000pt;}
.x71_c00094{left:568.933333pt;}
.xc5_c00094{left:570.666667pt;}
.xd5_c00094{left:572.400000pt;}
.x129_c00094{left:576.800000pt;}
.x12_c00094{left:580.400000pt;}
.x10a_c00094{left:581.466667pt;}
.x7e_c00094{left:586.800000pt;}
.x2d_c00094{left:587.733333pt;}
.xe2_c00094{left:589.066667pt;}
.xf5_c00094{left:590.266667pt;}
.xfc_c00094{left:591.733333pt;}
.x44_c00094{left:593.600000pt;}
.x5b_c00094{left:594.933333pt;}
.x51_c00094{left:596.133333pt;}
.x114_c00094{left:597.466667pt;}
.x7f_c00094{left:599.600000pt;}
.x12d_c00094{left:602.133333pt;}
.x13_c00094{left:605.333333pt;}
.x11e_c00094{left:608.666667pt;}
.x94_c00094{left:609.733333pt;}
.xbb_c00094{left:611.733333pt;}
.x9b_c00094{left:613.733333pt;}
.x52_c00094{left:614.666667pt;}
.x10b_c00094{left:616.000000pt;}
.x37_c00094{left:617.200000pt;}
.xe3_c00094{left:619.200000pt;}
.x45_c00094{left:620.133333pt;}
.xae_c00094{left:621.866667pt;}
.x119_c00094{left:623.333333pt;}
.xb4_c00094{left:625.866667pt;}
.x8b_c00094{left:628.000000pt;}
.xc6_c00094{left:629.200000pt;}
.x5c_c00094{left:631.066667pt;}
.xa3_c00094{left:634.133333pt;}
.xe8_c00094{left:635.733333pt;}
.xbc_c00094{left:638.933333pt;}
.x5d_c00094{left:640.933333pt;}
.x14_c00094{left:642.133333pt;}
.x80_c00094{left:643.733333pt;}
.xc7_c00094{left:645.200000pt;}
.x9c_c00094{left:648.266667pt;}
.x12e_c00094{left:651.066667pt;}
.x8c_c00094{left:653.600000pt;}
.xfd_c00094{left:656.666667pt;}
.x69_c00094{left:658.000000pt;}
.xc2_c00094{left:659.600000pt;}
.x15_c00094{left:660.666667pt;}
.xc8_c00094{left:664.666667pt;}
.x5e_c00094{left:665.866667pt;}
.x123_c00094{left:669.066667pt;}
.x53_c00094{left:670.400000pt;}
.x11a_c00094{left:672.266667pt;}
.xf6_c00094{left:674.133333pt;}
.x38_c00094{left:675.066667pt;}
.x5f_c00094{left:677.333333pt;}
.xe9_c00094{left:678.933333pt;}
.x16_c00094{left:682.133333pt;}
.xd6_c00094{left:683.866667pt;}
.x95_c00094{left:687.200000pt;}
.x2e_c00094{left:688.266667pt;}
.xee_c00094{left:689.733333pt;}
.x46_c00094{left:691.200000pt;}
.x10e_c00094{left:692.266667pt;}
.x12f_c00094{left:695.200000pt;}
.x124_c00094{left:696.266667pt;}
.x81_c00094{left:698.133333pt;}
.x54_c00094{left:699.466667pt;}
.x11f_c00094{left:702.666667pt;}
.x96_c00094{left:705.733333pt;}
.xb5_c00094{left:706.800000pt;}
.x60_c00094{left:710.266667pt;}
.x2f_c00094{left:712.933333pt;}
}





/* 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_c00095 {
    display:none;
  }
  .loading-indicator_c00095.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00095 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_c00095 { 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_c00095" -> "#page-container .classname_c00095")
 */
.pf_c00095 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00095 { /* 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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00095 { /* 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_c00095 { /* 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_c00095 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00095 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00095 {overflow:visible;}
  }
}
.c_c00095 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00095 { /* 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_c00095:after { /* webkit #35443 */
  content: '';
}
.t_c00095:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00095 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 */
}
.__c00095 { /* 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_c00095 { /* info for Javascript */
  display:none;
}
.l_c00095 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00095 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00095 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00095: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_c00095 {
    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_c00095.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00095.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_c00095 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00095{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00095;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.000000;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;}
.m79_c00095{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m59_c00095{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00095{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00095{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m50_c00095{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00095{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m73_c00095{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m12_c00095{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m30_c00095{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00095{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00095{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m58_c00095{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00095{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00095{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00095{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m67_c00095{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00095{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mae_c00095{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m72_c00095{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m76_c00095{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m27_c00095{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00095{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00095{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00095{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m48_c00095{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m17_c00095{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00095{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00095{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00095{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00095{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m71_c00095{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m49_c00095{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00095{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m42_c00095{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m55_c00095{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00095{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m86_c00095{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00095{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m16_c00095{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m84_c00095{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m80_c00095{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00095{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00095{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00095{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m83_c00095{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.me_c00095{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00095{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00095{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m65_c00095{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m43_c00095{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m14_c00095{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m97_c00095{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m66_c00095{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00095{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00095{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00095{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mab_c00095{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m68_c00095{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00095{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m39_c00095{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m81_c00095{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00095{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m53_c00095{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00095{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00095{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00095{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m94_c00095{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00095{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00095{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00095{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m37_c00095{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m41_c00095{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m21_c00095{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m88_c00095{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00095{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00095{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00095{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m92_c00095{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m52_c00095{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00095{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29_c00095{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00095{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00095{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m31_c00095{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m99_c00095{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00095{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00095{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m91_c00095{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00095{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);}
.m56_c00095{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mba_c00095{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m20_c00095{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00095{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb_c00095{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22_c00095{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23_c00095{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00095{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00095{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00095{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00095{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m93_c00095{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m47_c00095{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00095{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m36_c00095{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m95_c00095{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00095{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00095{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00095{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m28_c00095{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m51_c00095{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00095{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m54_c00095{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m26_c00095{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m46_c00095{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00095{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.maf_c00095{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00095{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m10_c00095{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m96_c00095{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.maa_c00095{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m9_c00095{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m82_c00095{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00095{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00095{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m45_c00095{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00095{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m61_c00095{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m38_c00095{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00095{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00095{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m15_c00095{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00095{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00095{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00095{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m89_c00095{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m44_c00095{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00095{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m11_c00095{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00095{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00095{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m25_c00095{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00095{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m18_c00095{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00095{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00095{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00095{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m24_c00095{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00095{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m60_c00095{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00095{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00095{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00095{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mac_c00095{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00095{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m85_c00095{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m75_c00095{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00095{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m90_c00095{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.mf_c00095{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00095{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00095{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m32_c00095{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00095{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m35_c00095{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00095{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m87_c00095{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00095{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00095{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00095{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m33_c00095{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m70_c00095{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m77_c00095{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m62_c00095{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00095{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00095{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mad_c00095{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m78_c00095{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m57_c00095{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00095{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00095{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00095{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m34_c00095{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00095{vertical-align:0.000000px;}
.ls0_c00095{letter-spacing:0.000000px;}
.sc__c00095{text-shadow:none;}
.sc0_c00095{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__c00095{-webkit-text-stroke:0px transparent;}
.sc0_c00095{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00095{word-spacing:-4.375000px;}
.ws3_c00095{word-spacing:0.000000px;}
.ws1_c00095{word-spacing:12.409091px;}
.ws2_c00095{word-spacing:15.790721px;}
.fc0_c00095{color:transparent;}
.fs0_c00095{font-size:54.000000px;}
.y0_c00095{bottom:0.000000px;}
.y2d_c00095{bottom:135.000000px;}
.y2c_c00095{bottom:158.250000px;}
.y2b_c00095{bottom:178.800000px;}
.y2a_c00095{bottom:198.900000px;}
.y29_c00095{bottom:219.000000px;}
.y28_c00095{bottom:239.100000px;}
.y27_c00095{bottom:258.900000px;}
.y26_c00095{bottom:279.000000px;}
.y25_c00095{bottom:299.100000px;}
.y24_c00095{bottom:319.200000px;}
.y23_c00095{bottom:339.300000px;}
.y22_c00095{bottom:359.100000px;}
.y21_c00095{bottom:379.200000px;}
.y20_c00095{bottom:399.000000px;}
.y1f_c00095{bottom:418.800000px;}
.y1e_c00095{bottom:439.350000px;}
.y1d_c00095{bottom:459.150000px;}
.y1c_c00095{bottom:479.250000px;}
.y1b_c00095{bottom:499.050000px;}
.y1a_c00095{bottom:519.150000px;}
.y19_c00095{bottom:538.800000px;}
.y18_c00095{bottom:559.650000px;}
.y17_c00095{bottom:584.550000px;}
.y16_c00095{bottom:599.700000px;}
.y15_c00095{bottom:619.800000px;}
.y14_c00095{bottom:639.900000px;}
.y13_c00095{bottom:660.000000px;}
.y12_c00095{bottom:679.800000px;}
.y11_c00095{bottom:699.300000px;}
.y10_c00095{bottom:719.400000px;}
.yf_c00095{bottom:739.500000px;}
.ye_c00095{bottom:759.300000px;}
.yd_c00095{bottom:779.400000px;}
.yc_c00095{bottom:799.500000px;}
.yb_c00095{bottom:819.600000px;}
.ya_c00095{bottom:839.700000px;}
.y9_c00095{bottom:859.800000px;}
.y8_c00095{bottom:879.600000px;}
.y7_c00095{bottom:899.100000px;}
.y6_c00095{bottom:919.200000px;}
.y5_c00095{bottom:939.300000px;}
.y4_c00095{bottom:959.400000px;}
.y3_c00095{bottom:979.500000px;}
.y2_c00095{bottom:999.300000px;}
.y1_c00095{bottom:1038.300000px;}
.h2_c00095{height:54.000000px;}
.h1_c00095{height:1167.000000px;}
.h0_c00095{height:1167.119934px;}
.w0_c00095{width:913.320007px;}
.w1_c00095{width:913.500000px;}
.x0_c00095{left:0.000000px;}
.x87_c00095{left:101.550000px;}
.x13_c00095{left:102.600000px;}
.x12d_c00095{left:114.750000px;}
.x14_c00095{left:119.850000px;}
.xb5_c00095{left:121.500000px;}
.x3d_c00095{left:123.300000px;}
.xca_c00095{left:126.450000px;}
.xa9_c00095{left:127.800000px;}
.x9f_c00095{left:132.750000px;}
.x5_c00095{left:133.950000px;}
.x23_c00095{left:136.050000px;}
.x91_c00095{left:138.150000px;}
.xaa_c00095{left:139.650000px;}
.xfd_c00095{left:141.000000px;}
.x128_c00095{left:143.850000px;}
.x15_c00095{left:148.350000px;}
.x3e_c00095{left:151.800000px;}
.x133_c00095{left:153.450000px;}
.xb6_c00095{left:155.700000px;}
.xa0_c00095{left:158.700000px;}
.x30_c00095{left:162.300000px;}
.x24_c00095{left:164.550000px;}
.xf2_c00095{left:166.350000px;}
.xf8_c00095{left:167.400000px;}
.x6_c00095{left:168.450000px;}
.x76_c00095{left:170.850000px;}
.x7f_c00095{left:176.400000px;}
.x59_c00095{left:178.650000px;}
.xd5_c00095{left:180.300000px;}
.x92_c00095{left:181.350000px;}
.xe3_c00095{left:182.550000px;}
.xcb_c00095{left:184.050000px;}
.xf9_c00095{left:185.400000px;}
.xee_c00095{left:187.200000px;}
.x31_c00095{left:190.350000px;}
.x108_c00095{left:193.050000px;}
.xab_c00095{left:194.400000px;}
.xda_c00095{left:196.200000px;}
.x63_c00095{left:200.550000px;}
.xb7_c00095{left:202.500000px;}
.xfa_c00095{left:204.150000px;}
.xa1_c00095{left:207.000000px;}
.x139_c00095{left:209.100000px;}
.xc2_c00095{left:210.300000px;}
.x4d_c00095{left:211.350000px;}
.xe4_c00095{left:212.850000px;}
.x134_c00095{left:214.950000px;}
.x16_c00095{left:217.050000px;}
.x129_c00095{left:218.400000px;}
.x6f_c00095{left:219.450000px;}
.x13b_c00095{left:221.850000px;}
.xb8_c00095{left:224.400000px;}
.xcc_c00095{left:226.800000px;}
.x3f_c00095{left:228.450000px;}
.x80_c00095{left:230.700000px;}
.x88_c00095{left:232.350000px;}
.x11a_c00095{left:234.450000px;}
.x7_c00095{left:236.100000px;}
.xc3_c00095{left:237.600000px;}
.x93_c00095{left:240.000000px;}
.x64_c00095{left:241.200000px;}
.x4e_c00095{left:242.250000px;}
.xa2_c00095{left:243.750000px;}
.xdf_c00095{left:247.350000px;}
.x25_c00095{left:248.400000px;}
.x32_c00095{left:250.200000px;}
.xef_c00095{left:251.550000px;}
.x10b_c00095{left:254.250000px;}
.xb9_c00095{left:255.300000px;}
.x77_c00095{left:256.950000px;}
.xe5_c00095{left:258.150000px;}
.x5a_c00095{left:259.650000px;}
.x65_c00095{left:261.750000px;}
.x26_c00095{left:265.350000px;}
.xac_c00095{left:268.500000px;}
.x12e_c00095{left:270.150000px;}
.xdb_c00095{left:273.300000px;}
.x17_c00095{left:275.400000px;}
.x40_c00095{left:277.800000px;}
.x89_c00095{left:280.200000px;}
.x5b_c00095{left:282.000000px;}
.x11b_c00095{left:283.050000px;}
.x12a_c00095{left:287.550000px;}
.x8_c00095{left:288.600000px;}
.x94_c00095{left:290.400000px;}
.x78_c00095{left:292.200000px;}
.x66_c00095{left:295.950000px;}
.xad_c00095{left:297.600000px;}
.x33_c00095{left:299.100000px;}
.x4f_c00095{left:300.600000px;}
.x18_c00095{left:302.100000px;}
.xf3_c00095{left:303.450000px;}
.xcd_c00095{left:305.700000px;}
.xba_c00095{left:307.500000px;}
.x8a_c00095{left:312.300000px;}
.x136_c00095{left:313.500000px;}
.x70_c00095{left:316.650000px;}
.x11c_c00095{left:319.050000px;}
.xe6_c00095{left:320.850000px;}
.xae_c00095{left:323.100000px;}
.x95_c00095{left:324.600000px;}
.x118_c00095{left:326.550000px;}
.x67_c00095{left:327.600000px;}
.x12b_c00095{left:329.250000px;}
.x34_c00095{left:332.550000px;}
.x125_c00095{left:334.350000px;}
.x50_c00095{left:337.350000px;}
.xa3_c00095{left:339.150000px;}
.xdc_c00095{left:340.950000px;}
.x27_c00095{left:342.450000px;}
.x120_c00095{left:343.800000px;}
.xce_c00095{left:345.000000px;}
.xe7_c00095{left:346.350000px;}
.x19_c00095{left:347.850000px;}
.xf0_c00095{left:349.800000px;}
.x68_c00095{left:351.750000px;}
.x96_c00095{left:353.400000px;}
.x12f_c00095{left:356.100000px;}
.x9_c00095{left:358.050000px;}
.x41_c00095{left:359.550000px;}
.x1_c00095{left:360.750000px;}
.x28_c00095{left:363.750000px;}
.x51_c00095{left:366.450000px;}
.x81_c00095{left:368.850000px;}
.xaf_c00095{left:370.650000px;}
.xbb_c00095{left:372.300000px;}
.x8b_c00095{left:374.550000px;}
.xc4_c00095{left:376.050000px;}
.xcf_c00095{left:378.150000px;}
.x5c_c00095{left:379.200000px;}
.x35_c00095{left:381.150000px;}
.x79_c00095{left:382.200000px;}
.xd6_c00095{left:384.450000px;}
.xbc_c00095{left:388.200000px;}
.x1a_c00095{left:389.550000px;}
.x42_c00095{left:390.900000px;}
.x8c_c00095{left:392.550000px;}
.x2_c00095{left:394.200000px;}
.x126_c00095{left:396.000000px;}
.xa_c00095{left:402.750000px;}
.xd7_c00095{left:404.250000px;}
.x97_c00095{left:405.600000px;}
.x7a_c00095{left:407.100000px;}
.x29_c00095{left:410.250000px;}
.xf4_c00095{left:412.650000px;}
.x110_c00095{left:413.700000px;}
.xfb_c00095{left:415.350000px;}
.x52_c00095{left:416.550000px;}
.x13c_c00095{left:417.900000px;}
.xc5_c00095{left:419.250000px;}
.x1b_c00095{left:420.450000px;}
.xb_c00095{left:422.850000px;}
.x71_c00095{left:426.450000px;}
.xf5_c00095{left:427.800000px;}
.x5d_c00095{left:429.600000px;}
.x43_c00095{left:432.300000px;}
.x13d_c00095{left:433.350000px;}
.x104_c00095{left:434.400000px;}
.x82_c00095{left:435.750000px;}
.xbd_c00095{left:436.800000px;}
.x2a_c00095{left:438.000000px;}
.xc6_c00095{left:439.050000px;}
.x121_c00095{left:440.400000px;}
.x36_c00095{left:441.600000px;}
.xe8_c00095{left:445.650000px;}
.x1c_c00095{left:446.700000px;}
.x44_c00095{left:448.800000px;}
.x98_c00095{left:450.300000px;}
.xbe_c00095{left:454.800000px;}
.x10c_c00095{left:455.850000px;}
.x105_c00095{left:457.050000px;}
.x45_c00095{left:459.900000px;}
.x3_c00095{left:462.300000px;}
.x109_c00095{left:466.200000px;}
.x69_c00095{left:467.250000px;}
.x111_c00095{left:468.450000px;}
.xd8_c00095{left:471.150000px;}
.xa4_c00095{left:473.100000px;}
.x137_c00095{left:474.750000px;}
.x10d_c00095{left:475.950000px;}
.xbf_c00095{left:477.450000px;}
.xd0_c00095{left:478.650000px;}
.x112_c00095{left:480.300000px;}
.x10a_c00095{left:481.350000px;}
.x7b_c00095{left:482.700000px;}
.xe9_c00095{left:483.750000px;}
.xc_c00095{left:484.800000px;}
.x122_c00095{left:486.150000px;}
.x6a_c00095{left:487.350000px;}
.x46_c00095{left:489.750000px;}
.xe0_c00095{left:492.150000px;}
.xd_c00095{left:497.100000px;}
.x1d_c00095{left:498.900000px;}
.x37_c00095{left:501.000000px;}
.x11d_c00095{left:502.200000px;}
.xfe_c00095{left:503.700000px;}
.x5e_c00095{left:505.200000px;}
.x6b_c00095{left:510.450000px;}
.x10e_c00095{left:514.500000px;}
.x8d_c00095{left:515.700000px;}
.x106_c00095{left:516.750000px;}
.xe1_c00095{left:518.100000px;}
.x53_c00095{left:519.900000px;}
.x99_c00095{left:521.550000px;}
.x7c_c00095{left:523.350000px;}
.x130_c00095{left:524.850000px;}
.xf1_c00095{left:527.400000px;}
.x5f_c00095{left:528.900000px;}
.x38_c00095{left:530.550000px;}
.x12c_c00095{left:532.950000px;}
.xe_c00095{left:534.600000px;}
.xa5_c00095{left:536.100000px;}
.x83_c00095{left:538.350000px;}
.xff_c00095{left:543.000000px;}
.xdd_c00095{left:544.050000px;}
.x2b_c00095{left:545.250000px;}
.xc7_c00095{left:547.050000px;}
.x115_c00095{left:550.050000px;}
.x1e_c00095{left:551.100000px;}
.x72_c00095{left:553.500000px;}
.x54_c00095{left:557.700000px;}
.x7d_c00095{left:561.450000px;}
.x8e_c00095{left:562.500000px;}
.xc8_c00095{left:564.000000px;}
.x6c_c00095{left:565.500000px;}
.x11e_c00095{left:568.500000px;}
.x116_c00095{left:569.850000px;}
.x9a_c00095{left:571.650000px;}
.x47_c00095{left:573.600000px;}
.xc9_c00095{left:575.850000px;}
.xf_c00095{left:577.500000px;}
.x7e_c00095{left:579.150000px;}
.x8f_c00095{left:582.000000px;}
.x100_c00095{left:583.350000px;}
.x39_c00095{left:587.400000px;}
.xea_c00095{left:589.950000px;}
.x48_c00095{left:591.900000px;}
.x131_c00095{left:593.250000px;}
.x2c_c00095{left:595.650000px;}
.xa6_c00095{left:598.350000px;}
.xb0_c00095{left:600.000000px;}
.x1f_c00095{left:601.200000px;}
.x138_c00095{left:606.450000px;}
.x10_c00095{left:609.150000px;}
.x9b_c00095{left:610.500000px;}
.xde_c00095{left:613.500000px;}
.xa7_c00095{left:614.850000px;}
.x60_c00095{left:616.350000px;}
.xd1_c00095{left:617.700000px;}
.x3a_c00095{left:620.100000px;}
.x101_c00095{left:621.450000px;}
.x55_c00095{left:622.500000px;}
.x90_c00095{left:625.200000px;}
.x73_c00095{left:627.000000px;}
.x9c_c00095{left:631.350000px;}
.xb1_c00095{left:634.500000px;}
.x123_c00095{left:637.050000px;}
.x49_c00095{left:638.400000px;}
.x6d_c00095{left:639.600000px;}
.xa8_c00095{left:641.100000px;}
.x9d_c00095{left:644.700000px;}
.x84_c00095{left:646.650000px;}
.x61_c00095{left:647.700000px;}
.x20_c00095{left:650.100000px;}
.xe2_c00095{left:651.600000px;}
.x2d_c00095{left:652.950000px;}
.xeb_c00095{left:655.800000px;}
.x3b_c00095{left:657.600000px;}
.x117_c00095{left:659.100000px;}
.xc0_c00095{left:660.300000px;}
.xd2_c00095{left:663.000000px;}
.x132_c00095{left:667.800000px;}
.x113_c00095{left:669.000000px;}
.x13e_c00095{left:670.500000px;}
.x102_c00095{left:671.550000px;}
.x11_c00095{left:673.200000px;}
.x74_c00095{left:674.850000px;}
.xec_c00095{left:676.350000px;}
.x107_c00095{left:677.400000px;}
.x2e_c00095{left:678.900000px;}
.x114_c00095{left:681.600000px;}
.x3c_c00095{left:683.100000px;}
.x13f_c00095{left:684.600000px;}
.x56_c00095{left:687.300000px;}
.x85_c00095{left:689.100000px;}
.xf6_c00095{left:690.450000px;}
.xb2_c00095{left:692.400000px;}
.x21_c00095{left:693.600000px;}
.x4a_c00095{left:696.750000px;}
.x103_c00095{left:699.300000px;}
.x13a_c00095{left:701.100000px;}
.xed_c00095{left:705.450000px;}
.x75_c00095{left:708.750000px;}
.xb3_c00095{left:710.700000px;}
.x2f_c00095{left:712.350000px;}
.x22_c00095{left:714.150000px;}
.x57_c00095{left:715.350000px;}
.x11f_c00095{left:716.850000px;}
.xf7_c00095{left:718.950000px;}
.x62_c00095{left:721.200000px;}
.x4b_c00095{left:722.250000px;}
.xc1_c00095{left:725.400000px;}
.x6e_c00095{left:727.350000px;}
.x12_c00095{left:729.750000px;}
.x127_c00095{left:731.400000px;}
.xd3_c00095{left:733.200000px;}
.x124_c00095{left:736.050000px;}
.xb4_c00095{left:737.400000px;}
.x86_c00095{left:739.500000px;}
.xd9_c00095{left:741.600000px;}
.x119_c00095{left:743.100000px;}
.xd4_c00095{left:744.300000px;}
.x9e_c00095{left:745.500000px;}
.x58_c00095{left:746.700000px;}
.xfc_c00095{left:748.950000px;}
.x4_c00095{left:751.350000px;}
.x4c_c00095{left:756.450000px;}
.x135_c00095{left:757.500000px;}
.x10f_c00095{left:762.300000px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:-3.888889pt;}
.ws3_c00095{word-spacing:0.000000pt;}
.ws1_c00095{word-spacing:11.030303pt;}
.ws2_c00095{word-spacing:14.036196pt;}
.fs0_c00095{font-size:48.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y2d_c00095{bottom:120.000000pt;}
.y2c_c00095{bottom:140.666667pt;}
.y2b_c00095{bottom:158.933333pt;}
.y2a_c00095{bottom:176.800000pt;}
.y29_c00095{bottom:194.666667pt;}
.y28_c00095{bottom:212.533333pt;}
.y27_c00095{bottom:230.133333pt;}
.y26_c00095{bottom:248.000000pt;}
.y25_c00095{bottom:265.866667pt;}
.y24_c00095{bottom:283.733333pt;}
.y23_c00095{bottom:301.600000pt;}
.y22_c00095{bottom:319.200000pt;}
.y21_c00095{bottom:337.066667pt;}
.y20_c00095{bottom:354.666667pt;}
.y1f_c00095{bottom:372.266667pt;}
.y1e_c00095{bottom:390.533333pt;}
.y1d_c00095{bottom:408.133333pt;}
.y1c_c00095{bottom:426.000000pt;}
.y1b_c00095{bottom:443.600000pt;}
.y1a_c00095{bottom:461.466667pt;}
.y19_c00095{bottom:478.933333pt;}
.y18_c00095{bottom:497.466667pt;}
.y17_c00095{bottom:519.600000pt;}
.y16_c00095{bottom:533.066667pt;}
.y15_c00095{bottom:550.933333pt;}
.y14_c00095{bottom:568.800000pt;}
.y13_c00095{bottom:586.666667pt;}
.y12_c00095{bottom:604.266667pt;}
.y11_c00095{bottom:621.600000pt;}
.y10_c00095{bottom:639.466667pt;}
.yf_c00095{bottom:657.333333pt;}
.ye_c00095{bottom:674.933333pt;}
.yd_c00095{bottom:692.800000pt;}
.yc_c00095{bottom:710.666667pt;}
.yb_c00095{bottom:728.533333pt;}
.ya_c00095{bottom:746.400000pt;}
.y9_c00095{bottom:764.266667pt;}
.y8_c00095{bottom:781.866667pt;}
.y7_c00095{bottom:799.200000pt;}
.y6_c00095{bottom:817.066667pt;}
.y5_c00095{bottom:834.933333pt;}
.y4_c00095{bottom:852.800000pt;}
.y3_c00095{bottom:870.666667pt;}
.y2_c00095{bottom:888.266667pt;}
.y1_c00095{bottom:922.933333pt;}
.h2_c00095{height:48.000000pt;}
.h1_c00095{height:1037.333333pt;}
.h0_c00095{height:1037.439941pt;}
.w0_c00095{width:811.840007pt;}
.w1_c00095{width:812.000000pt;}
.x0_c00095{left:0.000000pt;}
.x87_c00095{left:90.266667pt;}
.x13_c00095{left:91.200000pt;}
.x12d_c00095{left:102.000000pt;}
.x14_c00095{left:106.533333pt;}
.xb5_c00095{left:108.000000pt;}
.x3d_c00095{left:109.600000pt;}
.xca_c00095{left:112.400000pt;}
.xa9_c00095{left:113.600000pt;}
.x9f_c00095{left:118.000000pt;}
.x5_c00095{left:119.066667pt;}
.x23_c00095{left:120.933333pt;}
.x91_c00095{left:122.800000pt;}
.xaa_c00095{left:124.133333pt;}
.xfd_c00095{left:125.333333pt;}
.x128_c00095{left:127.866667pt;}
.x15_c00095{left:131.866667pt;}
.x3e_c00095{left:134.933333pt;}
.x133_c00095{left:136.400000pt;}
.xb6_c00095{left:138.400000pt;}
.xa0_c00095{left:141.066667pt;}
.x30_c00095{left:144.266667pt;}
.x24_c00095{left:146.266667pt;}
.xf2_c00095{left:147.866667pt;}
.xf8_c00095{left:148.800000pt;}
.x6_c00095{left:149.733333pt;}
.x76_c00095{left:151.866667pt;}
.x7f_c00095{left:156.800000pt;}
.x59_c00095{left:158.800000pt;}
.xd5_c00095{left:160.266667pt;}
.x92_c00095{left:161.200000pt;}
.xe3_c00095{left:162.266667pt;}
.xcb_c00095{left:163.600000pt;}
.xf9_c00095{left:164.800000pt;}
.xee_c00095{left:166.400000pt;}
.x31_c00095{left:169.200000pt;}
.x108_c00095{left:171.600000pt;}
.xab_c00095{left:172.800000pt;}
.xda_c00095{left:174.400000pt;}
.x63_c00095{left:178.266667pt;}
.xb7_c00095{left:180.000000pt;}
.xfa_c00095{left:181.466667pt;}
.xa1_c00095{left:184.000000pt;}
.x139_c00095{left:185.866667pt;}
.xc2_c00095{left:186.933333pt;}
.x4d_c00095{left:187.866667pt;}
.xe4_c00095{left:189.200000pt;}
.x134_c00095{left:191.066667pt;}
.x16_c00095{left:192.933333pt;}
.x129_c00095{left:194.133333pt;}
.x6f_c00095{left:195.066667pt;}
.x13b_c00095{left:197.200000pt;}
.xb8_c00095{left:199.466667pt;}
.xcc_c00095{left:201.600000pt;}
.x3f_c00095{left:203.066667pt;}
.x80_c00095{left:205.066667pt;}
.x88_c00095{left:206.533333pt;}
.x11a_c00095{left:208.400000pt;}
.x7_c00095{left:209.866667pt;}
.xc3_c00095{left:211.200000pt;}
.x93_c00095{left:213.333333pt;}
.x64_c00095{left:214.400000pt;}
.x4e_c00095{left:215.333333pt;}
.xa2_c00095{left:216.666667pt;}
.xdf_c00095{left:219.866667pt;}
.x25_c00095{left:220.800000pt;}
.x32_c00095{left:222.400000pt;}
.xef_c00095{left:223.600000pt;}
.x10b_c00095{left:226.000000pt;}
.xb9_c00095{left:226.933333pt;}
.x77_c00095{left:228.400000pt;}
.xe5_c00095{left:229.466667pt;}
.x5a_c00095{left:230.800000pt;}
.x65_c00095{left:232.666667pt;}
.x26_c00095{left:235.866667pt;}
.xac_c00095{left:238.666667pt;}
.x12e_c00095{left:240.133333pt;}
.xdb_c00095{left:242.933333pt;}
.x17_c00095{left:244.800000pt;}
.x40_c00095{left:246.933333pt;}
.x89_c00095{left:249.066667pt;}
.x5b_c00095{left:250.666667pt;}
.x11b_c00095{left:251.600000pt;}
.x12a_c00095{left:255.600000pt;}
.x8_c00095{left:256.533333pt;}
.x94_c00095{left:258.133333pt;}
.x78_c00095{left:259.733333pt;}
.x66_c00095{left:263.066667pt;}
.xad_c00095{left:264.533333pt;}
.x33_c00095{left:265.866667pt;}
.x4f_c00095{left:267.200000pt;}
.x18_c00095{left:268.533333pt;}
.xf3_c00095{left:269.733333pt;}
.xcd_c00095{left:271.733333pt;}
.xba_c00095{left:273.333333pt;}
.x8a_c00095{left:277.600000pt;}
.x136_c00095{left:278.666667pt;}
.x70_c00095{left:281.466667pt;}
.x11c_c00095{left:283.600000pt;}
.xe6_c00095{left:285.200000pt;}
.xae_c00095{left:287.200000pt;}
.x95_c00095{left:288.533333pt;}
.x118_c00095{left:290.266667pt;}
.x67_c00095{left:291.200000pt;}
.x12b_c00095{left:292.666667pt;}
.x34_c00095{left:295.600000pt;}
.x125_c00095{left:297.200000pt;}
.x50_c00095{left:299.866667pt;}
.xa3_c00095{left:301.466667pt;}
.xdc_c00095{left:303.066667pt;}
.x27_c00095{left:304.400000pt;}
.x120_c00095{left:305.600000pt;}
.xce_c00095{left:306.666667pt;}
.xe7_c00095{left:307.866667pt;}
.x19_c00095{left:309.200000pt;}
.xf0_c00095{left:310.933333pt;}
.x68_c00095{left:312.666667pt;}
.x96_c00095{left:314.133333pt;}
.x12f_c00095{left:316.533333pt;}
.x9_c00095{left:318.266667pt;}
.x41_c00095{left:319.600000pt;}
.x1_c00095{left:320.666667pt;}
.x28_c00095{left:323.333333pt;}
.x51_c00095{left:325.733333pt;}
.x81_c00095{left:327.866667pt;}
.xaf_c00095{left:329.466667pt;}
.xbb_c00095{left:330.933333pt;}
.x8b_c00095{left:332.933333pt;}
.xc4_c00095{left:334.266667pt;}
.xcf_c00095{left:336.133333pt;}
.x5c_c00095{left:337.066667pt;}
.x35_c00095{left:338.800000pt;}
.x79_c00095{left:339.733333pt;}
.xd6_c00095{left:341.733333pt;}
.xbc_c00095{left:345.066667pt;}
.x1a_c00095{left:346.266667pt;}
.x42_c00095{left:347.466667pt;}
.x8c_c00095{left:348.933333pt;}
.x2_c00095{left:350.400000pt;}
.x126_c00095{left:352.000000pt;}
.xa_c00095{left:358.000000pt;}
.xd7_c00095{left:359.333333pt;}
.x97_c00095{left:360.533333pt;}
.x7a_c00095{left:361.866667pt;}
.x29_c00095{left:364.666667pt;}
.xf4_c00095{left:366.800000pt;}
.x110_c00095{left:367.733333pt;}
.xfb_c00095{left:369.200000pt;}
.x52_c00095{left:370.266667pt;}
.x13c_c00095{left:371.466667pt;}
.xc5_c00095{left:372.666667pt;}
.x1b_c00095{left:373.733333pt;}
.xb_c00095{left:375.866667pt;}
.x71_c00095{left:379.066667pt;}
.xf5_c00095{left:380.266667pt;}
.x5d_c00095{left:381.866667pt;}
.x43_c00095{left:384.266667pt;}
.x13d_c00095{left:385.200000pt;}
.x104_c00095{left:386.133333pt;}
.x82_c00095{left:387.333333pt;}
.xbd_c00095{left:388.266667pt;}
.x2a_c00095{left:389.333333pt;}
.xc6_c00095{left:390.266667pt;}
.x121_c00095{left:391.466667pt;}
.x36_c00095{left:392.533333pt;}
.xe8_c00095{left:396.133333pt;}
.x1c_c00095{left:397.066667pt;}
.x44_c00095{left:398.933333pt;}
.x98_c00095{left:400.266667pt;}
.xbe_c00095{left:404.266667pt;}
.x10c_c00095{left:405.200000pt;}
.x105_c00095{left:406.266667pt;}
.x45_c00095{left:408.800000pt;}
.x3_c00095{left:410.933333pt;}
.x109_c00095{left:414.400000pt;}
.x69_c00095{left:415.333333pt;}
.x111_c00095{left:416.400000pt;}
.xd8_c00095{left:418.800000pt;}
.xa4_c00095{left:420.533333pt;}
.x137_c00095{left:422.000000pt;}
.x10d_c00095{left:423.066667pt;}
.xbf_c00095{left:424.400000pt;}
.xd0_c00095{left:425.466667pt;}
.x112_c00095{left:426.933333pt;}
.x10a_c00095{left:427.866667pt;}
.x7b_c00095{left:429.066667pt;}
.xe9_c00095{left:430.000000pt;}
.xc_c00095{left:430.933333pt;}
.x122_c00095{left:432.133333pt;}
.x6a_c00095{left:433.200000pt;}
.x46_c00095{left:435.333333pt;}
.xe0_c00095{left:437.466667pt;}
.xd_c00095{left:441.866667pt;}
.x1d_c00095{left:443.466667pt;}
.x37_c00095{left:445.333333pt;}
.x11d_c00095{left:446.400000pt;}
.xfe_c00095{left:447.733333pt;}
.x5e_c00095{left:449.066667pt;}
.x6b_c00095{left:453.733333pt;}
.x10e_c00095{left:457.333333pt;}
.x8d_c00095{left:458.400000pt;}
.x106_c00095{left:459.333333pt;}
.xe1_c00095{left:460.533333pt;}
.x53_c00095{left:462.133333pt;}
.x99_c00095{left:463.600000pt;}
.x7c_c00095{left:465.200000pt;}
.x130_c00095{left:466.533333pt;}
.xf1_c00095{left:468.800000pt;}
.x5f_c00095{left:470.133333pt;}
.x38_c00095{left:471.600000pt;}
.x12c_c00095{left:473.733333pt;}
.xe_c00095{left:475.200000pt;}
.xa5_c00095{left:476.533333pt;}
.x83_c00095{left:478.533333pt;}
.xff_c00095{left:482.666667pt;}
.xdd_c00095{left:483.600000pt;}
.x2b_c00095{left:484.666667pt;}
.xc7_c00095{left:486.266667pt;}
.x115_c00095{left:488.933333pt;}
.x1e_c00095{left:489.866667pt;}
.x72_c00095{left:492.000000pt;}
.x54_c00095{left:495.733333pt;}
.x7d_c00095{left:499.066667pt;}
.x8e_c00095{left:500.000000pt;}
.xc8_c00095{left:501.333333pt;}
.x6c_c00095{left:502.666667pt;}
.x11e_c00095{left:505.333333pt;}
.x116_c00095{left:506.533333pt;}
.x9a_c00095{left:508.133333pt;}
.x47_c00095{left:509.866667pt;}
.xc9_c00095{left:511.866667pt;}
.xf_c00095{left:513.333333pt;}
.x7e_c00095{left:514.800000pt;}
.x8f_c00095{left:517.333333pt;}
.x100_c00095{left:518.533333pt;}
.x39_c00095{left:522.133333pt;}
.xea_c00095{left:524.400000pt;}
.x48_c00095{left:526.133333pt;}
.x131_c00095{left:527.333333pt;}
.x2c_c00095{left:529.466667pt;}
.xa6_c00095{left:531.866667pt;}
.xb0_c00095{left:533.333333pt;}
.x1f_c00095{left:534.400000pt;}
.x138_c00095{left:539.066667pt;}
.x10_c00095{left:541.466667pt;}
.x9b_c00095{left:542.666667pt;}
.xde_c00095{left:545.333333pt;}
.xa7_c00095{left:546.533333pt;}
.x60_c00095{left:547.866667pt;}
.xd1_c00095{left:549.066667pt;}
.x3a_c00095{left:551.200000pt;}
.x101_c00095{left:552.400000pt;}
.x55_c00095{left:553.333333pt;}
.x90_c00095{left:555.733333pt;}
.x73_c00095{left:557.333333pt;}
.x9c_c00095{left:561.200000pt;}
.xb1_c00095{left:564.000000pt;}
.x123_c00095{left:566.266667pt;}
.x49_c00095{left:567.466667pt;}
.x6d_c00095{left:568.533333pt;}
.xa8_c00095{left:569.866667pt;}
.x9d_c00095{left:573.066667pt;}
.x84_c00095{left:574.800000pt;}
.x61_c00095{left:575.733333pt;}
.x20_c00095{left:577.866667pt;}
.xe2_c00095{left:579.200000pt;}
.x2d_c00095{left:580.400000pt;}
.xeb_c00095{left:582.933333pt;}
.x3b_c00095{left:584.533333pt;}
.x117_c00095{left:585.866667pt;}
.xc0_c00095{left:586.933333pt;}
.xd2_c00095{left:589.333333pt;}
.x132_c00095{left:593.600000pt;}
.x113_c00095{left:594.666667pt;}
.x13e_c00095{left:596.000000pt;}
.x102_c00095{left:596.933333pt;}
.x11_c00095{left:598.400000pt;}
.x74_c00095{left:599.866667pt;}
.xec_c00095{left:601.200000pt;}
.x107_c00095{left:602.133333pt;}
.x2e_c00095{left:603.466667pt;}
.x114_c00095{left:605.866667pt;}
.x3c_c00095{left:607.200000pt;}
.x13f_c00095{left:608.533333pt;}
.x56_c00095{left:610.933333pt;}
.x85_c00095{left:612.533333pt;}
.xf6_c00095{left:613.733333pt;}
.xb2_c00095{left:615.466667pt;}
.x21_c00095{left:616.533333pt;}
.x4a_c00095{left:619.333333pt;}
.x103_c00095{left:621.600000pt;}
.x13a_c00095{left:623.200000pt;}
.xed_c00095{left:627.066667pt;}
.x75_c00095{left:630.000000pt;}
.xb3_c00095{left:631.733333pt;}
.x2f_c00095{left:633.200000pt;}
.x22_c00095{left:634.800000pt;}
.x57_c00095{left:635.866667pt;}
.x11f_c00095{left:637.200000pt;}
.xf7_c00095{left:639.066667pt;}
.x62_c00095{left:641.066667pt;}
.x4b_c00095{left:642.000000pt;}
.xc1_c00095{left:644.800000pt;}
.x6e_c00095{left:646.533333pt;}
.x12_c00095{left:648.666667pt;}
.x127_c00095{left:650.133333pt;}
.xd3_c00095{left:651.733333pt;}
.x124_c00095{left:654.266667pt;}
.xb4_c00095{left:655.466667pt;}
.x86_c00095{left:657.333333pt;}
.xd9_c00095{left:659.200000pt;}
.x119_c00095{left:660.533333pt;}
.xd4_c00095{left:661.600000pt;}
.x9e_c00095{left:662.666667pt;}
.x58_c00095{left:663.733333pt;}
.xfc_c00095{left:665.733333pt;}
.x4_c00095{left:667.866667pt;}
.x4c_c00095{left:672.400000pt;}
.x135_c00095{left:673.333333pt;}
.x10f_c00095{left:677.600000pt;}
}





/* 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_c00096 {
    display:none;
  }
  .loading-indicator_c00096.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00096 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_c00096 { 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_c00096" -> "#page-container .classname_c00096")
 */
.pf_c00096 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00096 { /* 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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00096 { /* 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_c00096 { /* 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_c00096 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00096 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00096 {overflow:visible;}
  }
}
.c_c00096 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00096 { /* 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_c00096:after { /* webkit #35443 */
  content: '';
}
.t_c00096:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00096 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 */
}
.__c00096 { /* 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_c00096 { /* info for Javascript */
  display:none;
}
.l_c00096 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00096 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00096 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00096: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_c00096 {
    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_c00096.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00096.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_c00096 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00096{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00096;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.000000;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;}
.m8a_c00096{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00096{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m20_c00096{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00096{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4_c00096{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m48_c00096{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m76_c00096{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m24_c00096{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00096{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m65_c00096{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00096{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00096{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m23_c00096{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00096{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00096{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00096{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00096{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m96_c00096{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m63_c00096{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m84_c00096{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m52_c00096{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m50_c00096{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00096{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00096{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00096{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00096{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00096{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00096{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8_c00096{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00096{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m70_c00096{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m77_c00096{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m55_c00096{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00096{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m66_c00096{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m89_c00096{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m71_c00096{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m46_c00096{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.md_c00096{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m95_c00096{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m61_c00096{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00096{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m91_c00096{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m69_c00096{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00096{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00096{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7_c00096{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00096{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00096{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00096{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00096{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m53_c00096{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m31_c00096{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m67_c00096{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m41_c00096{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m94_c00096{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00096{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00096{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00096{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00096{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m93_c00096{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m17_c00096{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00096{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m81_c00096{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m92_c00096{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m68_c00096{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m44_c00096{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m33_c00096{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00096{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mc_c00096{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m75_c00096{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb_c00096{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m97_c00096{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00096{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m60_c00096{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00096{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00096{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00096{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00096{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m43_c00096{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00096{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m36_c00096{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11_c00096{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m78_c00096{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6_c00096{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m22_c00096{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m13_c00096{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m42_c00096{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m35_c00096{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00096{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00096{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00096{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m90_c00096{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m5_c00096{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m18_c00096{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m99_c00096{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m21_c00096{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m38_c00096{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00096{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00096{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00096{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m72_c00096{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mf_c00096{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m98_c00096{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00096{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00096{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m16_c00096{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m64_c00096{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m62_c00096{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00096{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m12_c00096{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00096{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00096{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m37_c00096{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m87_c00096{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00096{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26_c00096{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00096{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m28_c00096{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00096{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m86_c00096{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10_c00096{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m85_c00096{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m25_c00096{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m14_c00096{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.me_c00096{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m54_c00096{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00096{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m57_c00096{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m88_c00096{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m56_c00096{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m30_c00096{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00096{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m39_c00096{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00096{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00096{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m59_c00096{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00096{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m51_c00096{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00096{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00096{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m49_c00096{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m40_c00096{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m32_c00096{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m58_c00096{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00096{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m83_c00096{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m29_c00096{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00096{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00096{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m45_c00096{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m80_c00096{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m0_c00096{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00096{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1_c00096{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00096{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00096{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m73_c00096{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m74_c00096{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00096{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m82_c00096{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00096{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00096{vertical-align:0.000000px;}
.ls0_c00096{letter-spacing:0.000000px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{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__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00096{word-spacing:-4.861111px;}
.ws9_c00096{word-spacing:0.000000px;}
.ws5_c00096{word-spacing:1.666667px;}
.ws7_c00096{word-spacing:4.102564px;}
.ws4_c00096{word-spacing:6.944444px;}
.ws2_c00096{word-spacing:7.051282px;}
.ws8_c00096{word-spacing:7.826087px;}
.ws1_c00096{word-spacing:9.910714px;}
.ws0_c00096{word-spacing:13.472222px;}
.ws6_c00096{word-spacing:429.583333px;}
._0_c00096{width:455.416667px;}
.fc0_c00096{color:transparent;}
.fs2_c00096{font-size:42.000000px;}
.fs0_c00096{font-size:54.000000px;}
.fs1_c00096{font-size:60.000000px;}
.y0_c00096{bottom:0.000000px;}
.y2c_c00096{bottom:150.150000px;}
.y2b_c00096{bottom:186.600000px;}
.y2a_c00096{bottom:206.400000px;}
.y29_c00096{bottom:226.200000px;}
.y28_c00096{bottom:246.000000px;}
.y27_c00096{bottom:266.100000px;}
.y26_c00096{bottom:285.600000px;}
.y25_c00096{bottom:305.700000px;}
.y24_c00096{bottom:325.200000px;}
.y23_c00096{bottom:346.050000px;}
.y22_c00096{bottom:365.850000px;}
.y21_c00096{bottom:385.650000px;}
.y20_c00096{bottom:405.450000px;}
.y1f_c00096{bottom:425.550000px;}
.y1e_c00096{bottom:444.900000px;}
.y1d_c00096{bottom:464.700000px;}
.y1c_c00096{bottom:485.250000px;}
.y1b_c00096{bottom:508.650000px;}
.y1a_c00096{bottom:524.550000px;}
.y19_c00096{bottom:546.000000px;}
.y18_c00096{bottom:567.300000px;}
.y17_c00096{bottom:587.100000px;}
.y16_c00096{bottom:606.900000px;}
.y15_c00096{bottom:627.000000px;}
.y14_c00096{bottom:647.100000px;}
.y13_c00096{bottom:667.200000px;}
.y12_c00096{bottom:687.000000px;}
.y11_c00096{bottom:706.800000px;}
.y10_c00096{bottom:726.900000px;}
.yf_c00096{bottom:746.700000px;}
.ye_c00096{bottom:765.600000px;}
.yd_c00096{bottom:786.900000px;}
.yc_c00096{bottom:807.000000px;}
.yb_c00096{bottom:826.800000px;}
.ya_c00096{bottom:846.600000px;}
.y9_c00096{bottom:866.700000px;}
.y8_c00096{bottom:886.500000px;}
.y7_c00096{bottom:906.300000px;}
.y6_c00096{bottom:926.400000px;}
.y5_c00096{bottom:946.500000px;}
.y4_c00096{bottom:966.600000px;}
.y3_c00096{bottom:986.400000px;}
.y2_c00096{bottom:1006.200000px;}
.y1_c00096{bottom:1044.750000px;}
.h4_c00096{height:42.000000px;}
.h2_c00096{height:54.000000px;}
.h3_c00096{height:60.000000px;}
.h1_c00096{height:1167.750000px;}
.h0_c00096{height:1167.839997px;}
.w1_c00096{width:920.250000px;}
.w0_c00096{width:920.519990px;}
.x0_c00096{left:0.000000px;}
.xac_c00096{left:146.250000px;}
.x13_c00096{left:148.350000px;}
.x1_c00096{left:149.700000px;}
.x113_c00096{left:165.450000px;}
.xb3_c00096{left:168.300000px;}
.x12a_c00096{left:172.050000px;}
.x7c_c00096{left:175.650000px;}
.x85_c00096{left:178.500000px;}
.x4_c00096{left:179.700000px;}
.xe6_c00096{left:183.900000px;}
.x14_c00096{left:185.850000px;}
.xc4_c00096{left:188.400000px;}
.x5a_c00096{left:190.050000px;}
.x74_c00096{left:192.300000px;}
.xa4_c00096{left:195.750000px;}
.xd6_c00096{left:198.750000px;}
.xde_c00096{left:203.700000px;}
.xad_c00096{left:205.950000px;}
.x75_c00096{left:207.450000px;}
.x3f_c00096{left:208.800000px;}
.x5b_c00096{left:211.350000px;}
.x2f_c00096{left:212.550000px;}
.x105_c00096{left:213.750000px;}
.x7d_c00096{left:216.000000px;}
.xc5_c00096{left:217.200000px;}
.xcf_c00096{left:219.750000px;}
.x5_c00096{left:222.150000px;}
.xa5_c00096{left:223.800000px;}
.xd7_c00096{left:226.050000px;}
.x22_c00096{left:230.250000px;}
.x30_c00096{left:232.650000px;}
.xfe_c00096{left:237.450000px;}
.x6_c00096{left:241.200000px;}
.x40_c00096{left:245.850000px;}
.x11c_c00096{left:248.400000px;}
.xc6_c00096{left:251.400000px;}
.x31_c00096{left:253.200000px;}
.x69_c00096{left:254.250000px;}
.xae_c00096{left:256.650000px;}
.xb4_c00096{left:258.750000px;}
.x41_c00096{left:259.950000px;}
.x4f_c00096{left:263.250000px;}
.x15_c00096{left:264.750000px;}
.xd0_c00096{left:265.800000px;}
.x5c_c00096{left:268.650000px;}
.xa6_c00096{left:270.900000px;}
.x42_c00096{left:274.050000px;}
.x9a_c00096{left:275.400000px;}
.x23_c00096{left:277.800000px;}
.x90_c00096{left:280.800000px;}
.xea_c00096{left:282.600000px;}
.xd8_c00096{left:283.650000px;}
.xc7_c00096{left:285.900000px;}
.x50_c00096{left:287.400000px;}
.x7e_c00096{left:290.100000px;}
.xb5_c00096{left:292.200000px;}
.x86_c00096{left:294.450000px;}
.x118_c00096{left:296.100000px;}
.x5d_c00096{left:297.150000px;}
.xff_c00096{left:298.950000px;}
.x125_c00096{left:301.500000px;}
.x7_c00096{left:303.900000px;}
.x43_c00096{left:304.950000px;}
.x12d_c00096{left:306.750000px;}
.xa7_c00096{left:308.700000px;}
.x9b_c00096{left:310.350000px;}
.xb6_c00096{left:312.300000px;}
.x51_c00096{left:314.100000px;}
.x24_c00096{left:317.700000px;}
.x119_c00096{left:319.200000px;}
.xf4_c00096{left:321.150000px;}
.x32_c00096{left:323.100000px;}
.x6a_c00096{left:324.150000px;}
.xeb_c00096{left:326.250000px;}
.x100_c00096{left:327.750000px;}
.x7f_c00096{left:330.450000px;}
.xd9_c00096{left:332.250000px;}
.x16_c00096{left:334.200000px;}
.xf8_c00096{left:335.850000px;}
.xf5_c00096{left:337.350000px;}
.x44_c00096{left:338.850000px;}
.xc8_c00096{left:341.250000px;}
.x9c_c00096{left:343.500000px;}
.xbd_c00096{left:344.850000px;}
.x114_c00096{left:345.900000px;}
.x123_c00096{left:347.250000px;}
.x87_c00096{left:349.200000px;}
.x80_c00096{left:350.550000px;}
.x17_c00096{left:352.500000px;}
.x5e_c00096{left:354.750000px;}
.x126_c00096{left:356.100000px;}
.x8_c00096{left:357.600000px;}
.x45_c00096{left:360.750000px;}
.x9d_c00096{left:363.000000px;}
.x33_c00096{left:364.800000px;}
.x76_c00096{left:366.600000px;}
.xec_c00096{left:372.000000px;}
.x52_c00096{left:373.800000px;}
.x5f_c00096{left:375.600000px;}
.xb7_c00096{left:376.800000px;}
.xa8_c00096{left:378.150000px;}
.xdf_c00096{left:379.500000px;}
.x101_c00096{left:382.200000px;}
.x106_c00096{left:383.700000px;}
.x88_c00096{left:385.500000px;}
.x34_c00096{left:387.450000px;}
.xc9_c00096{left:389.550000px;}
.xe7_c00096{left:390.600000px;}
.xbe_c00096{left:391.650000px;}
.x2_c00096{left:394.200000px;}
.x46_c00096{left:395.250000px;}
.xb8_c00096{left:396.900000px;}
.x11a_c00096{left:398.400000px;}
.x18_c00096{left:400.350000px;}
.x132_c00096{left:404.700000px;}
.x107_c00096{left:406.050000px;}
.x9_c00096{left:407.250000px;}
.x11d_c00096{left:408.300000px;}
.xca_c00096{left:409.350000px;}
.x89_c00096{left:414.000000px;}
.xee_c00096{left:416.550000px;}
.x130_c00096{left:418.050000px;}
.x19_c00096{left:419.850000px;}
.xaf_c00096{left:420.900000px;}
.x60_c00096{left:422.100000px;}
.x35_c00096{left:423.750000px;}
.xa_c00096{left:424.950000px;}
.xed_c00096{left:427.350000px;}
.xda_c00096{left:428.400000px;}
.x61_c00096{left:433.200000px;}
.xcb_c00096{left:438.150000px;}
.xf6_c00096{left:439.650000px;}
.x115_c00096{left:441.600000px;}
.x6b_c00096{left:442.800000px;}
.xd1_c00096{left:444.600000px;}
.x91_c00096{left:446.400000px;}
.x1a_c00096{left:447.900000px;}
.xb_c00096{left:450.450000px;}
.x124_c00096{left:451.500000px;}
.xef_c00096{left:452.550000px;}
.xf9_c00096{left:455.700000px;}
.x12e_c00096{left:459.300000px;}
.x62_c00096{left:460.950000px;}
.xa9_c00096{left:462.750000px;}
.x53_c00096{left:464.100000px;}
.x108_c00096{left:467.250000px;}
.x25_c00096{left:469.650000px;}
.x116_c00096{left:473.250000px;}
.x81_c00096{left:474.750000px;}
.xb9_c00096{left:476.850000px;}
.x92_c00096{left:480.300000px;}
.x47_c00096{left:482.100000px;}
.xd2_c00096{left:483.900000px;}
.xf0_c00096{left:485.700000px;}
.xcc_c00096{left:488.250000px;}
.x8a_c00096{left:490.350000px;}
.x12c_c00096{left:492.000000px;}
.x3_c00096{left:493.950000px;}
.x54_c00096{left:496.200000px;}
.xbf_c00096{left:498.150000px;}
.x48_c00096{left:502.950000px;}
.x9e_c00096{left:504.150000px;}
.x1b_c00096{left:507.000000px;}
.x109_c00096{left:508.650000px;}
.x36_c00096{left:509.850000px;}
.x77_c00096{left:512.400000px;}
.xe0_c00096{left:513.450000px;}
.x11e_c00096{left:514.950000px;}
.x102_c00096{left:516.150000px;}
.x8b_c00096{left:517.650000px;}
.xba_c00096{left:521.550000px;}
.x82_c00096{left:523.650000px;}
.x26_c00096{left:524.700000px;}
.xfa_c00096{left:525.900000px;}
.x93_c00096{left:527.100000px;}
.x63_c00096{left:529.350000px;}
.xc_c00096{left:530.700000px;}
.x49_c00096{left:531.750000px;}
.x6c_c00096{left:534.300000px;}
.x133_c00096{left:539.100000px;}
.x37_c00096{left:540.750000px;}
.x12b_c00096{left:545.400000px;}
.x9f_c00096{left:547.050000px;}
.x64_c00096{left:548.850000px;}
.xd_c00096{left:550.500000px;}
.x94_c00096{left:552.300000px;}
.x127_c00096{left:553.350000px;}
.x8c_c00096{left:555.000000px;}
.x103_c00096{left:557.550000px;}
.x78_c00096{left:560.250000px;}
.x10f_c00096{left:562.200000px;}
.x6d_c00096{left:563.400000px;}
.x1c_c00096{left:567.150000px;}
.xe1_c00096{left:568.500000px;}
.x95_c00096{left:570.000000px;}
.x11f_c00096{left:571.500000px;}
.xb0_c00096{left:573.900000px;}
.xf1_c00096{left:575.700000px;}
.x27_c00096{left:577.650000px;}
.x55_c00096{left:579.000000px;}
.x10a_c00096{left:581.400000px;}
.x128_c00096{left:582.450000px;}
.x79_c00096{left:583.650000px;}
.x4a_c00096{left:585.000000px;}
.xaa_c00096{left:586.950000px;}
.x11b_c00096{left:588.000000px;}
.x65_c00096{left:590.550000px;}
.xf2_c00096{left:593.700000px;}
.x38_c00096{left:596.850000px;}
.x7a_c00096{left:600.900000px;}
.x129_c00096{left:603.300000px;}
.xdb_c00096{left:604.800000px;}
.xc0_c00096{left:606.600000px;}
.xb1_c00096{left:608.850000px;}
.x110_c00096{left:610.050000px;}
.xa0_c00096{left:611.100000px;}
.xfb_c00096{left:612.900000px;}
.x28_c00096{left:618.750000px;}
.x39_c00096{left:620.550000px;}
.xe_c00096{left:622.500000px;}
.x1d_c00096{left:624.450000px;}
.x131_c00096{left:626.550000px;}
.x29_c00096{left:629.850000px;}
.x96_c00096{left:630.900000px;}
.xf3_c00096{left:633.000000px;}
.xe2_c00096{left:634.800000px;}
.x10b_c00096{left:637.950000px;}
.x104_c00096{left:639.300000px;}
.xf_c00096{left:640.500000px;}
.x120_c00096{left:643.200000px;}
.x6e_c00096{left:645.450000px;}
.xc1_c00096{left:646.950000px;}
.xa1_c00096{left:648.600000px;}
.xfc_c00096{left:650.400000px;}
.x134_c00096{left:652.350000px;}
.x4b_c00096{left:654.150000px;}
.x56_c00096{left:655.350000px;}
.x8d_c00096{left:657.300000px;}
.x2a_c00096{left:660.450000px;}
.x12f_c00096{left:662.550000px;}
.x111_c00096{left:664.050000px;}
.x66_c00096{left:666.150000px;}
.x3a_c00096{left:667.350000px;}
.x6f_c00096{left:669.150000px;}
.x1e_c00096{left:674.550000px;}
.xb2_c00096{left:675.750000px;}
.xd3_c00096{left:677.850000px;}
.xe3_c00096{left:682.650000px;}
.xc2_c00096{left:683.700000px;}
.x10_c00096{left:684.750000px;}
.x3b_c00096{left:686.850000px;}
.x70_c00096{left:688.950000px;}
.x67_c00096{left:690.600000px;}
.x1f_c00096{left:692.850000px;}
.x7b_c00096{left:697.650000px;}
.x8e_c00096{left:698.700000px;}
.x4c_c00096{left:700.650000px;}
.xcd_c00096{left:702.900000px;}
.x121_c00096{left:706.200000px;}
.x2b_c00096{left:708.300000px;}
.x10c_c00096{left:709.950000px;}
.xd4_c00096{left:712.800000px;}
.xe4_c00096{left:715.050000px;}
.x112_c00096{left:717.600000px;}
.x20_c00096{left:719.850000px;}
.xe8_c00096{left:723.300000px;}
.x122_c00096{left:725.250000px;}
.x2c_c00096{left:726.600000px;}
.xbb_c00096{left:730.050000px;}
.x10d_c00096{left:731.850000px;}
.x83_c00096{left:733.200000px;}
.x97_c00096{left:734.850000px;}
.x57_c00096{left:736.350000px;}
.x71_c00096{left:737.550000px;}
.x3c_c00096{left:739.800000px;}
.xfd_c00096{left:741.150000px;}
.x4d_c00096{left:743.100000px;}
.x117_c00096{left:744.300000px;}
.x2d_c00096{left:746.100000px;}
.xbc_c00096{left:750.150000px;}
.x11_c00096{left:751.350000px;}
.xdc_c00096{left:754.650000px;}
.x58_c00096{left:756.450000px;}
.x98_c00096{left:757.500000px;}
.xf7_c00096{left:758.550000px;}
.xa2_c00096{left:762.000000px;}
.x72_c00096{left:763.500000px;}
.x4e_c00096{left:766.500000px;}
.x68_c00096{left:768.300000px;}
.xe5_c00096{left:770.100000px;}
.x59_c00096{left:771.150000px;}
.xce_c00096{left:772.800000px;}
.x10e_c00096{left:774.000000px;}
.x3d_c00096{left:775.050000px;}
.x8f_c00096{left:776.850000px;}
.x2e_c00096{left:778.500000px;}
.x73_c00096{left:781.200000px;}
.xe9_c00096{left:783.450000px;}
.xab_c00096{left:784.500000px;}
.xd5_c00096{left:785.550000px;}
.x99_c00096{left:787.350000px;}
.xa3_c00096{left:789.750000px;}
.xc3_c00096{left:792.900000px;}
.x12_c00096{left:795.300000px;}
.x84_c00096{left:799.500000px;}
.x3e_c00096{left:800.550000px;}
.x21_c00096{left:804.450000px;}
.xdd_c00096{left:808.950000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws3_c00096{word-spacing:-4.320988pt;}
.ws9_c00096{word-spacing:0.000000pt;}
.ws5_c00096{word-spacing:1.481481pt;}
.ws7_c00096{word-spacing:3.646724pt;}
.ws4_c00096{word-spacing:6.172840pt;}
.ws2_c00096{word-spacing:6.267806pt;}
.ws8_c00096{word-spacing:6.956522pt;}
.ws1_c00096{word-spacing:8.809524pt;}
.ws0_c00096{word-spacing:11.975309pt;}
.ws6_c00096{word-spacing:381.851852pt;}
._0_c00096{width:404.814815pt;}
.fs2_c00096{font-size:37.333333pt;}
.fs0_c00096{font-size:48.000000pt;}
.fs1_c00096{font-size:53.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y2c_c00096{bottom:133.466667pt;}
.y2b_c00096{bottom:165.866667pt;}
.y2a_c00096{bottom:183.466667pt;}
.y29_c00096{bottom:201.066667pt;}
.y28_c00096{bottom:218.666667pt;}
.y27_c00096{bottom:236.533333pt;}
.y26_c00096{bottom:253.866667pt;}
.y25_c00096{bottom:271.733333pt;}
.y24_c00096{bottom:289.066667pt;}
.y23_c00096{bottom:307.600000pt;}
.y22_c00096{bottom:325.200000pt;}
.y21_c00096{bottom:342.800000pt;}
.y20_c00096{bottom:360.400000pt;}
.y1f_c00096{bottom:378.266667pt;}
.y1e_c00096{bottom:395.466667pt;}
.y1d_c00096{bottom:413.066667pt;}
.y1c_c00096{bottom:431.333333pt;}
.y1b_c00096{bottom:452.133333pt;}
.y1a_c00096{bottom:466.266667pt;}
.y19_c00096{bottom:485.333333pt;}
.y18_c00096{bottom:504.266667pt;}
.y17_c00096{bottom:521.866667pt;}
.y16_c00096{bottom:539.466667pt;}
.y15_c00096{bottom:557.333333pt;}
.y14_c00096{bottom:575.200000pt;}
.y13_c00096{bottom:593.066667pt;}
.y12_c00096{bottom:610.666667pt;}
.y11_c00096{bottom:628.266667pt;}
.y10_c00096{bottom:646.133333pt;}
.yf_c00096{bottom:663.733333pt;}
.ye_c00096{bottom:680.533333pt;}
.yd_c00096{bottom:699.466667pt;}
.yc_c00096{bottom:717.333333pt;}
.yb_c00096{bottom:734.933333pt;}
.ya_c00096{bottom:752.533333pt;}
.y9_c00096{bottom:770.400000pt;}
.y8_c00096{bottom:788.000000pt;}
.y7_c00096{bottom:805.600000pt;}
.y6_c00096{bottom:823.466667pt;}
.y5_c00096{bottom:841.333333pt;}
.y4_c00096{bottom:859.200000pt;}
.y3_c00096{bottom:876.800000pt;}
.y2_c00096{bottom:894.400000pt;}
.y1_c00096{bottom:928.666667pt;}
.h4_c00096{height:37.333333pt;}
.h2_c00096{height:48.000000pt;}
.h3_c00096{height:53.333333pt;}
.h1_c00096{height:1038.000000pt;}
.h0_c00096{height:1038.079997pt;}
.w1_c00096{width:818.000000pt;}
.w0_c00096{width:818.239991pt;}
.x0_c00096{left:0.000000pt;}
.xac_c00096{left:130.000000pt;}
.x13_c00096{left:131.866667pt;}
.x1_c00096{left:133.066667pt;}
.x113_c00096{left:147.066667pt;}
.xb3_c00096{left:149.600000pt;}
.x12a_c00096{left:152.933333pt;}
.x7c_c00096{left:156.133333pt;}
.x85_c00096{left:158.666667pt;}
.x4_c00096{left:159.733333pt;}
.xe6_c00096{left:163.466667pt;}
.x14_c00096{left:165.200000pt;}
.xc4_c00096{left:167.466667pt;}
.x5a_c00096{left:168.933333pt;}
.x74_c00096{left:170.933333pt;}
.xa4_c00096{left:174.000000pt;}
.xd6_c00096{left:176.666667pt;}
.xde_c00096{left:181.066667pt;}
.xad_c00096{left:183.066667pt;}
.x75_c00096{left:184.400000pt;}
.x3f_c00096{left:185.600000pt;}
.x5b_c00096{left:187.866667pt;}
.x2f_c00096{left:188.933333pt;}
.x105_c00096{left:190.000000pt;}
.x7d_c00096{left:192.000000pt;}
.xc5_c00096{left:193.066667pt;}
.xcf_c00096{left:195.333333pt;}
.x5_c00096{left:197.466667pt;}
.xa5_c00096{left:198.933333pt;}
.xd7_c00096{left:200.933333pt;}
.x22_c00096{left:204.666667pt;}
.x30_c00096{left:206.800000pt;}
.xfe_c00096{left:211.066667pt;}
.x6_c00096{left:214.400000pt;}
.x40_c00096{left:218.533333pt;}
.x11c_c00096{left:220.800000pt;}
.xc6_c00096{left:223.466667pt;}
.x31_c00096{left:225.066667pt;}
.x69_c00096{left:226.000000pt;}
.xae_c00096{left:228.133333pt;}
.xb4_c00096{left:230.000000pt;}
.x41_c00096{left:231.066667pt;}
.x4f_c00096{left:234.000000pt;}
.x15_c00096{left:235.333333pt;}
.xd0_c00096{left:236.266667pt;}
.x5c_c00096{left:238.800000pt;}
.xa6_c00096{left:240.800000pt;}
.x42_c00096{left:243.600000pt;}
.x9a_c00096{left:244.800000pt;}
.x23_c00096{left:246.933333pt;}
.x90_c00096{left:249.600000pt;}
.xea_c00096{left:251.200000pt;}
.xd8_c00096{left:252.133333pt;}
.xc7_c00096{left:254.133333pt;}
.x50_c00096{left:255.466667pt;}
.x7e_c00096{left:257.866667pt;}
.xb5_c00096{left:259.733333pt;}
.x86_c00096{left:261.733333pt;}
.x118_c00096{left:263.200000pt;}
.x5d_c00096{left:264.133333pt;}
.xff_c00096{left:265.733333pt;}
.x125_c00096{left:268.000000pt;}
.x7_c00096{left:270.133333pt;}
.x43_c00096{left:271.066667pt;}
.x12d_c00096{left:272.666667pt;}
.xa7_c00096{left:274.400000pt;}
.x9b_c00096{left:275.866667pt;}
.xb6_c00096{left:277.600000pt;}
.x51_c00096{left:279.200000pt;}
.x24_c00096{left:282.400000pt;}
.x119_c00096{left:283.733333pt;}
.xf4_c00096{left:285.466667pt;}
.x32_c00096{left:287.200000pt;}
.x6a_c00096{left:288.133333pt;}
.xeb_c00096{left:290.000000pt;}
.x100_c00096{left:291.333333pt;}
.x7f_c00096{left:293.733333pt;}
.xd9_c00096{left:295.333333pt;}
.x16_c00096{left:297.066667pt;}
.xf8_c00096{left:298.533333pt;}
.xf5_c00096{left:299.866667pt;}
.x44_c00096{left:301.200000pt;}
.xc8_c00096{left:303.333333pt;}
.x9c_c00096{left:305.333333pt;}
.xbd_c00096{left:306.533333pt;}
.x114_c00096{left:307.466667pt;}
.x123_c00096{left:308.666667pt;}
.x87_c00096{left:310.400000pt;}
.x80_c00096{left:311.600000pt;}
.x17_c00096{left:313.333333pt;}
.x5e_c00096{left:315.333333pt;}
.x126_c00096{left:316.533333pt;}
.x8_c00096{left:317.866667pt;}
.x45_c00096{left:320.666667pt;}
.x9d_c00096{left:322.666667pt;}
.x33_c00096{left:324.266667pt;}
.x76_c00096{left:325.866667pt;}
.xec_c00096{left:330.666667pt;}
.x52_c00096{left:332.266667pt;}
.x5f_c00096{left:333.866667pt;}
.xb7_c00096{left:334.933333pt;}
.xa8_c00096{left:336.133333pt;}
.xdf_c00096{left:337.333333pt;}
.x101_c00096{left:339.733333pt;}
.x106_c00096{left:341.066667pt;}
.x88_c00096{left:342.666667pt;}
.x34_c00096{left:344.400000pt;}
.xc9_c00096{left:346.266667pt;}
.xe7_c00096{left:347.200000pt;}
.xbe_c00096{left:348.133333pt;}
.x2_c00096{left:350.400000pt;}
.x46_c00096{left:351.333333pt;}
.xb8_c00096{left:352.800000pt;}
.x11a_c00096{left:354.133333pt;}
.x18_c00096{left:355.866667pt;}
.x132_c00096{left:359.733333pt;}
.x107_c00096{left:360.933333pt;}
.x9_c00096{left:362.000000pt;}
.x11d_c00096{left:362.933333pt;}
.xca_c00096{left:363.866667pt;}
.x89_c00096{left:368.000000pt;}
.xee_c00096{left:370.266667pt;}
.x130_c00096{left:371.600000pt;}
.x19_c00096{left:373.200000pt;}
.xaf_c00096{left:374.133333pt;}
.x60_c00096{left:375.200000pt;}
.x35_c00096{left:376.666667pt;}
.xa_c00096{left:377.733333pt;}
.xed_c00096{left:379.866667pt;}
.xda_c00096{left:380.800000pt;}
.x61_c00096{left:385.066667pt;}
.xcb_c00096{left:389.466667pt;}
.xf6_c00096{left:390.800000pt;}
.x115_c00096{left:392.533333pt;}
.x6b_c00096{left:393.600000pt;}
.xd1_c00096{left:395.200000pt;}
.x91_c00096{left:396.800000pt;}
.x1a_c00096{left:398.133333pt;}
.xb_c00096{left:400.400000pt;}
.x124_c00096{left:401.333333pt;}
.xef_c00096{left:402.266667pt;}
.xf9_c00096{left:405.066667pt;}
.x12e_c00096{left:408.266667pt;}
.x62_c00096{left:409.733333pt;}
.xa9_c00096{left:411.333333pt;}
.x53_c00096{left:412.533333pt;}
.x108_c00096{left:415.333333pt;}
.x25_c00096{left:417.466667pt;}
.x116_c00096{left:420.666667pt;}
.x81_c00096{left:422.000000pt;}
.xb9_c00096{left:423.866667pt;}
.x92_c00096{left:426.933333pt;}
.x47_c00096{left:428.533333pt;}
.xd2_c00096{left:430.133333pt;}
.xf0_c00096{left:431.733333pt;}
.xcc_c00096{left:434.000000pt;}
.x8a_c00096{left:435.866667pt;}
.x12c_c00096{left:437.333333pt;}
.x3_c00096{left:439.066667pt;}
.x54_c00096{left:441.066667pt;}
.xbf_c00096{left:442.800000pt;}
.x48_c00096{left:447.066667pt;}
.x9e_c00096{left:448.133333pt;}
.x1b_c00096{left:450.666667pt;}
.x109_c00096{left:452.133333pt;}
.x36_c00096{left:453.200000pt;}
.x77_c00096{left:455.466667pt;}
.xe0_c00096{left:456.400000pt;}
.x11e_c00096{left:457.733333pt;}
.x102_c00096{left:458.800000pt;}
.x8b_c00096{left:460.133333pt;}
.xba_c00096{left:463.600000pt;}
.x82_c00096{left:465.466667pt;}
.x26_c00096{left:466.400000pt;}
.xfa_c00096{left:467.466667pt;}
.x93_c00096{left:468.533333pt;}
.x63_c00096{left:470.533333pt;}
.xc_c00096{left:471.733333pt;}
.x49_c00096{left:472.666667pt;}
.x6c_c00096{left:474.933333pt;}
.x133_c00096{left:479.200000pt;}
.x37_c00096{left:480.666667pt;}
.x12b_c00096{left:484.800000pt;}
.x9f_c00096{left:486.266667pt;}
.x64_c00096{left:487.866667pt;}
.xd_c00096{left:489.333333pt;}
.x94_c00096{left:490.933333pt;}
.x127_c00096{left:491.866667pt;}
.x8c_c00096{left:493.333333pt;}
.x103_c00096{left:495.600000pt;}
.x78_c00096{left:498.000000pt;}
.x10f_c00096{left:499.733333pt;}
.x6d_c00096{left:500.800000pt;}
.x1c_c00096{left:504.133333pt;}
.xe1_c00096{left:505.333333pt;}
.x95_c00096{left:506.666667pt;}
.x11f_c00096{left:508.000000pt;}
.xb0_c00096{left:510.133333pt;}
.xf1_c00096{left:511.733333pt;}
.x27_c00096{left:513.466667pt;}
.x55_c00096{left:514.666667pt;}
.x10a_c00096{left:516.800000pt;}
.x128_c00096{left:517.733333pt;}
.x79_c00096{left:518.800000pt;}
.x4a_c00096{left:520.000000pt;}
.xaa_c00096{left:521.733333pt;}
.x11b_c00096{left:522.666667pt;}
.x65_c00096{left:524.933333pt;}
.xf2_c00096{left:527.733333pt;}
.x38_c00096{left:530.533333pt;}
.x7a_c00096{left:534.133333pt;}
.x129_c00096{left:536.266667pt;}
.xdb_c00096{left:537.600000pt;}
.xc0_c00096{left:539.200000pt;}
.xb1_c00096{left:541.200000pt;}
.x110_c00096{left:542.266667pt;}
.xa0_c00096{left:543.200000pt;}
.xfb_c00096{left:544.800000pt;}
.x28_c00096{left:550.000000pt;}
.x39_c00096{left:551.600000pt;}
.xe_c00096{left:553.333333pt;}
.x1d_c00096{left:555.066667pt;}
.x131_c00096{left:556.933333pt;}
.x29_c00096{left:559.866667pt;}
.x96_c00096{left:560.800000pt;}
.xf3_c00096{left:562.666667pt;}
.xe2_c00096{left:564.266667pt;}
.x10b_c00096{left:567.066667pt;}
.x104_c00096{left:568.266667pt;}
.xf_c00096{left:569.333333pt;}
.x120_c00096{left:571.733333pt;}
.x6e_c00096{left:573.733333pt;}
.xc1_c00096{left:575.066667pt;}
.xa1_c00096{left:576.533333pt;}
.xfc_c00096{left:578.133333pt;}
.x134_c00096{left:579.866667pt;}
.x4b_c00096{left:581.466667pt;}
.x56_c00096{left:582.533333pt;}
.x8d_c00096{left:584.266667pt;}
.x2a_c00096{left:587.066667pt;}
.x12f_c00096{left:588.933333pt;}
.x111_c00096{left:590.266667pt;}
.x66_c00096{left:592.133333pt;}
.x3a_c00096{left:593.200000pt;}
.x6f_c00096{left:594.800000pt;}
.x1e_c00096{left:599.600000pt;}
.xb2_c00096{left:600.666667pt;}
.xd3_c00096{left:602.533333pt;}
.xe3_c00096{left:606.800000pt;}
.xc2_c00096{left:607.733333pt;}
.x10_c00096{left:608.666667pt;}
.x3b_c00096{left:610.533333pt;}
.x70_c00096{left:612.400000pt;}
.x67_c00096{left:613.866667pt;}
.x1f_c00096{left:615.866667pt;}
.x7b_c00096{left:620.133333pt;}
.x8e_c00096{left:621.066667pt;}
.x4c_c00096{left:622.800000pt;}
.xcd_c00096{left:624.800000pt;}
.x121_c00096{left:627.733333pt;}
.x2b_c00096{left:629.600000pt;}
.x10c_c00096{left:631.066667pt;}
.xd4_c00096{left:633.600000pt;}
.xe4_c00096{left:635.600000pt;}
.x112_c00096{left:637.866667pt;}
.x20_c00096{left:639.866667pt;}
.xe8_c00096{left:642.933333pt;}
.x122_c00096{left:644.666667pt;}
.x2c_c00096{left:645.866667pt;}
.xbb_c00096{left:648.933333pt;}
.x10d_c00096{left:650.533333pt;}
.x83_c00096{left:651.733333pt;}
.x97_c00096{left:653.200000pt;}
.x57_c00096{left:654.533333pt;}
.x71_c00096{left:655.600000pt;}
.x3c_c00096{left:657.600000pt;}
.xfd_c00096{left:658.800000pt;}
.x4d_c00096{left:660.533333pt;}
.x117_c00096{left:661.600000pt;}
.x2d_c00096{left:663.200000pt;}
.xbc_c00096{left:666.800000pt;}
.x11_c00096{left:667.866667pt;}
.xdc_c00096{left:670.800000pt;}
.x58_c00096{left:672.400000pt;}
.x98_c00096{left:673.333333pt;}
.xf7_c00096{left:674.266667pt;}
.xa2_c00096{left:677.333333pt;}
.x72_c00096{left:678.666667pt;}
.x4e_c00096{left:681.333333pt;}
.x68_c00096{left:682.933333pt;}
.xe5_c00096{left:684.533333pt;}
.x59_c00096{left:685.466667pt;}
.xce_c00096{left:686.933333pt;}
.x10e_c00096{left:688.000000pt;}
.x3d_c00096{left:688.933333pt;}
.x8f_c00096{left:690.533333pt;}
.x2e_c00096{left:692.000000pt;}
.x73_c00096{left:694.400000pt;}
.xe9_c00096{left:696.400000pt;}
.xab_c00096{left:697.333333pt;}
.xd5_c00096{left:698.266667pt;}
.x99_c00096{left:699.866667pt;}
.xa3_c00096{left:702.000000pt;}
.xc3_c00096{left:704.800000pt;}
.x12_c00096{left:706.933333pt;}
.x84_c00096{left:710.666667pt;}
.x3e_c00096{left:711.600000pt;}
.x21_c00096{left:715.066667pt;}
.xdd_c00096{left:719.066667pt;}
}





/* 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_c00097 {
    display:none;
  }
  .loading-indicator_c00097.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00097 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_c00097 { 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_c00097" -> "#page-container .classname_c00097")
 */
.pf_c00097 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00097 { /* 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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00097 { /* 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_c00097 { /* 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_c00097 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00097 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00097 {overflow:visible;}
  }
}
.c_c00097 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00097 { /* 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_c00097:after { /* webkit #35443 */
  content: '';
}
.t_c00097:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00097 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 */
}
.__c00097 { /* 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_c00097 { /* info for Javascript */
  display:none;
}
.l_c00097 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00097 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00097 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00097: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_c00097 {
    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_c00097.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00097.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_c00097 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00097{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.000000;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;}
.m34_c00097{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00097{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00097{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mab_c00097{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m36_c00097{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m60_c00097{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00097{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00097{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00097{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m65_c00097{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00097{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m61_c00097{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00097{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m98_c00097{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m10_c00097{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00097{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00097{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m33_c00097{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00097{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00097{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m29_c00097{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00097{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m97_c00097{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00097{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00097{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00097{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.maa_c00097{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m20_c00097{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00097{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m86_c00097{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m99_c00097{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00097{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m82_c00097{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00097{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m46_c00097{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m30_c00097{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00097{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m59_c00097{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00097{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m64_c00097{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m66_c00097{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00097{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00097{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m95_c00097{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00097{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m89_c00097{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m25_c00097{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00097{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00097{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m54_c00097{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m84_c00097{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00097{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m38_c00097{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m32_c00097{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00097{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m15_c00097{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00097{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m83_c00097{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m78_c00097{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m52_c00097{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00097{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m48_c00097{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m11_c00097{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m80_c00097{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m93_c00097{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00097{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m45_c00097{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00097{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m63_c00097{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00097{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m73_c00097{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m58_c00097{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m51_c00097{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m39_c00097{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m79_c00097{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00097{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00097{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00097{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m88_c00097{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00097{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m72_c00097{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m55_c00097{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00097{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m49_c00097{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00097{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00097{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00097{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m81_c00097{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m69_c00097{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m35_c00097{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m23_c00097{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m24_c00097{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m53_c00097{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00097{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m12_c00097{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m56_c00097{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00097{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m41_c00097{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m96_c00097{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00097{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m44_c00097{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m57_c00097{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00097{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00097{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m74_c00097{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00097{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m91_c00097{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00097{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m70_c00097{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00097{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00097{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00097{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m28_c00097{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m19_c00097{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00097{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00097{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00097{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m76_c00097{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m27_c00097{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m47_c00097{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m16_c00097{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00097{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m94_c00097{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00097{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00097{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00097{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m21_c00097{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00097{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00097{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00097{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00097{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00097{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m77_c00097{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m75_c00097{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m17_c00097{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00097{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m40_c00097{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00097{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00097{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m67_c00097{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m92_c00097{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m85_c00097{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m43_c00097{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m42_c00097{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m68_c00097{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00097{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m37_c00097{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m62_c00097{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m31_c00097{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00097{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00097{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00097{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m22_c00097{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m26_c00097{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m71_c00097{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m87_c00097{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{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__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00097{word-spacing:-13.611111px;}
.ws3_c00097{word-spacing:-5.277778px;}
.ws9_c00097{word-spacing:0.000000px;}
.ws8_c00097{word-spacing:0.178571px;}
.ws0_c00097{word-spacing:4.503632px;}
.ws6_c00097{word-spacing:8.918919px;}
.ws5_c00097{word-spacing:11.919643px;}
.ws7_c00097{word-spacing:12.352941px;}
.ws4_c00097{word-spacing:13.823529px;}
.ws2_c00097{word-spacing:17.424242px;}
._0_c00097{width:38.333333px;}
.fc0_c00097{color:transparent;}
.fs0_c00097{font-size:60.000000px;}
.y0_c00097{bottom:0.000000px;}
.y2c_c00097{bottom:151.200000px;}
.y2b_c00097{bottom:182.850000px;}
.y2a_c00097{bottom:202.650000px;}
.y29_c00097{bottom:222.450000px;}
.y28_c00097{bottom:242.550000px;}
.y27_c00097{bottom:262.650000px;}
.y26_c00097{bottom:282.450000px;}
.y25_c00097{bottom:302.250000px;}
.y24_c00097{bottom:322.050000px;}
.y23_c00097{bottom:342.150000px;}
.y22_c00097{bottom:361.950000px;}
.y21_c00097{bottom:382.050000px;}
.y20_c00097{bottom:402.150000px;}
.y1f_c00097{bottom:421.950000px;}
.y1e_c00097{bottom:442.050000px;}
.y1d_c00097{bottom:461.850000px;}
.y1c_c00097{bottom:481.650000px;}
.y1b_c00097{bottom:501.750000px;}
.y1a_c00097{bottom:521.850000px;}
.y19_c00097{bottom:541.950000px;}
.y18_c00097{bottom:561.750000px;}
.y17_c00097{bottom:581.550000px;}
.y16_c00097{bottom:601.350000px;}
.y15_c00097{bottom:621.450000px;}
.y14_c00097{bottom:641.250000px;}
.y13_c00097{bottom:661.050000px;}
.y12_c00097{bottom:680.850000px;}
.y11_c00097{bottom:700.950000px;}
.y10_c00097{bottom:720.900000px;}
.yf_c00097{bottom:741.000000px;}
.ye_c00097{bottom:760.800000px;}
.yd_c00097{bottom:780.900000px;}
.yc_c00097{bottom:800.700000px;}
.yb_c00097{bottom:820.500000px;}
.ya_c00097{bottom:849.300000px;}
.y9_c00097{bottom:869.850000px;}
.y8_c00097{bottom:889.650000px;}
.y7_c00097{bottom:909.750000px;}
.y6_c00097{bottom:929.550000px;}
.y5_c00097{bottom:949.650000px;}
.y4_c00097{bottom:969.900000px;}
.y3_c00097{bottom:989.400000px;}
.y2_c00097{bottom:1009.500000px;}
.y1_c00097{bottom:1048.350000px;}
.h2_c00097{height:60.000000px;}
.h1_c00097{height:1167.750000px;}
.h0_c00097{height:1167.839997px;}
.w1_c00097{width:920.250000px;}
.w0_c00097{width:920.519990px;}
.x0_c00097{left:0.000000px;}
.xfb_c00097{left:107.850000px;}
.x5_c00097{left:109.050000px;}
.x142_c00097{left:121.350000px;}
.x110_c00097{left:125.700000px;}
.xc2_c00097{left:127.350000px;}
.x13a_c00097{left:128.550000px;}
.xdf_c00097{left:133.800000px;}
.x101_c00097{left:134.850000px;}
.x3c_c00097{left:136.200000px;}
.x11b_c00097{left:137.850000px;}
.x2c_c00097{left:139.650000px;}
.x6f_c00097{left:140.850000px;}
.x93_c00097{left:143.100000px;}
.xae_c00097{left:145.050000px;}
.x64_c00097{left:147.150000px;}
.x111_c00097{left:151.200000px;}
.x105_c00097{left:156.450000px;}
.x128_c00097{left:157.500000px;}
.x133_c00097{left:159.900000px;}
.x2d_c00097{left:162.300000px;}
.xfc_c00097{left:163.350000px;}
.x6_c00097{left:165.600000px;}
.xb8_c00097{left:166.650000px;}
.x123_c00097{left:169.650000px;}
.x89_c00097{left:173.100000px;}
.xa4_c00097{left:174.300000px;}
.x129_c00097{left:176.250000px;}
.x70_c00097{left:177.900000px;}
.xd9_c00097{left:178.950000px;}
.x4a_c00097{left:181.200000px;}
.x7_c00097{left:183.300000px;}
.x94_c00097{left:184.800000px;}
.x65_c00097{left:187.800000px;}
.x22_c00097{left:189.900000px;}
.xcb_c00097{left:192.750000px;}
.xaf_c00097{left:194.400000px;}
.x143_c00097{left:195.600000px;}
.x112_c00097{left:196.950000px;}
.x58_c00097{left:198.750000px;}
.x102_c00097{left:199.950000px;}
.x106_c00097{left:201.450000px;}
.x15_c00097{left:204.000000px;}
.x71_c00097{left:205.200000px;}
.x95_c00097{left:207.900000px;}
.x3d_c00097{left:210.000000px;}
.xa0_c00097{left:212.400000px;}
.xc3_c00097{left:213.750000px;}
.x2e_c00097{left:215.250000px;}
.x8_c00097{left:216.750000px;}
.x23_c00097{left:218.400000px;}
.x59_c00097{left:220.650000px;}
.x83_c00097{left:223.950000px;}
.x130_c00097{left:225.750000px;}
.x134_c00097{left:228.300000px;}
.x113_c00097{left:229.350000px;}
.x12d_c00097{left:230.550000px;}
.xe0_c00097{left:231.750000px;}
.x3e_c00097{left:233.400000px;}
.xef_c00097{left:239.550000px;}
.x7c_c00097{left:243.150000px;}
.x72_c00097{left:244.500000px;}
.x66_c00097{left:246.450000px;}
.x5a_c00097{left:249.450000px;}
.x16_c00097{left:250.800000px;}
.x10b_c00097{left:252.300000px;}
.xa5_c00097{left:253.800000px;}
.xc4_c00097{left:255.450000px;}
.xe1_c00097{left:261.600000px;}
.x9_c00097{left:263.250000px;}
.x84_c00097{left:265.350000px;}
.xf0_c00097{left:268.350000px;}
.x17_c00097{left:270.600000px;}
.xfd_c00097{left:271.800000px;}
.x67_c00097{left:273.150000px;}
.x24_c00097{left:274.500000px;}
.xa6_c00097{left:276.900000px;}
.xb0_c00097{left:277.950000px;}
.x114_c00097{left:279.450000px;}
.xb9_c00097{left:281.850000px;}
.x96_c00097{left:283.050000px;}
.xa1_c00097{left:284.400000px;}
.x5b_c00097{left:285.450000px;}
.x4b_c00097{left:287.400000px;}
.x107_c00097{left:288.450000px;}
.xcc_c00097{left:289.950000px;}
.x25_c00097{left:293.250000px;}
.xe2_c00097{left:294.750000px;}
.xd5_c00097{left:295.800000px;}
.xb1_c00097{left:298.050000px;}
.xda_c00097{left:299.850000px;}
.x135_c00097{left:301.350000px;}
.x10c_c00097{left:303.150000px;}
.xa2_c00097{left:304.200000px;}
.xf5_c00097{left:306.450000px;}
.x4c_c00097{left:308.250000px;}
.x12a_c00097{left:309.450000px;}
.x97_c00097{left:311.100000px;}
.xba_c00097{left:312.450000px;}
.xa_c00097{left:313.950000px;}
.x5c_c00097{left:316.050000px;}
.xd6_c00097{left:317.100000px;}
.xc5_c00097{left:319.200000px;}
.x108_c00097{left:320.550000px;}
.x18_c00097{left:321.750000px;}
.x2f_c00097{left:323.250000px;}
.x68_c00097{left:325.050000px;}
.xb2_c00097{left:327.900000px;}
.x8a_c00097{left:329.700000px;}
.x13f_c00097{left:336.150000px;}
.x4d_c00097{left:339.150000px;}
.xa7_c00097{left:340.350000px;}
.xcd_c00097{left:342.750000px;}
.xb_c00097{left:344.550000px;}
.x26_c00097{left:345.750000px;}
.x5d_c00097{left:347.700000px;}
.x19_c00097{left:349.800000px;}
.x3f_c00097{left:351.150000px;}
.x8b_c00097{left:352.350000px;}
.x124_c00097{left:355.500000px;}
.xfe_c00097{left:356.850000px;}
.x98_c00097{left:359.400000px;}
.x12b_c00097{left:362.700000px;}
.x27_c00097{left:364.500000px;}
.x30_c00097{left:366.750000px;}
.x1_c00097{left:367.950000px;}
.x136_c00097{left:369.750000px;}
.x115_c00097{left:370.950000px;}
.x40_c00097{left:372.000000px;}
.x11c_c00097{left:374.250000px;}
.x69_c00097{left:376.200000px;}
.x131_c00097{left:377.250000px;}
.xa8_c00097{left:378.450000px;}
.x10d_c00097{left:379.800000px;}
.x4e_c00097{left:380.850000px;}
.xe3_c00097{left:381.900000px;}
.xbb_c00097{left:382.950000px;}
.x73_c00097{left:384.150000px;}
.x4f_c00097{left:385.950000px;}
.x13b_c00097{left:387.450000px;}
.xf1_c00097{left:388.950000px;}
.xce_c00097{left:390.600000px;}
.xd7_c00097{left:394.500000px;}
.xa9_c00097{left:396.450000px;}
.xc_c00097{left:397.500000px;}
.x31_c00097{left:399.150000px;}
.x2_c00097{left:401.850000px;}
.x7d_c00097{left:403.350000px;}
.x116_c00097{left:404.850000px;}
.xe4_c00097{left:406.350000px;}
.x41_c00097{left:408.300000px;}
.x1a_c00097{left:410.250000px;}
.x74_c00097{left:412.200000px;}
.x6a_c00097{left:413.700000px;}
.xdb_c00097{left:415.050000px;}
.x85_c00097{left:416.700000px;}
.xbc_c00097{left:419.250000px;}
.xa3_c00097{left:421.800000px;}
.x7e_c00097{left:423.150000px;}
.xea_c00097{left:425.250000px;}
.x5e_c00097{left:427.350000px;}
.xf2_c00097{left:428.550000px;}
.xaa_c00097{left:431.700000px;}
.xd_c00097{left:432.750000px;}
.x32_c00097{left:434.100000px;}
.x50_c00097{left:435.300000px;}
.x86_c00097{left:436.800000px;}
.x42_c00097{left:439.200000px;}
.x8c_c00097{left:442.050000px;}
.x6b_c00097{left:444.000000px;}
.xeb_c00097{left:446.100000px;}
.x125_c00097{left:448.800000px;}
.xbd_c00097{left:450.150000px;}
.x75_c00097{left:453.300000px;}
.x5f_c00097{left:455.400000px;}
.x140_c00097{left:457.200000px;}
.x28_c00097{left:459.450000px;}
.x51_c00097{left:460.800000px;}
.x8d_c00097{left:462.150000px;}
.x137_c00097{left:463.350000px;}
.x3_c00097{left:467.700000px;}
.x1b_c00097{left:469.950000px;}
.xcf_c00097{left:472.050000px;}
.x76_c00097{left:473.100000px;}
.xb3_c00097{left:474.450000px;}
.x33_c00097{left:475.800000px;}
.x126_c00097{left:477.300000px;}
.x29_c00097{left:478.500000px;}
.x52_c00097{left:479.850000px;}
.x43_c00097{left:481.350000px;}
.x99_c00097{left:484.200000px;}
.x6c_c00097{left:486.150000px;}
.x12c_c00097{left:490.050000px;}
.x7f_c00097{left:491.550000px;}
.xd0_c00097{left:492.900000px;}
.x53_c00097{left:495.000000px;}
.x11d_c00097{left:497.250000px;}
.xf6_c00097{left:498.750000px;}
.x77_c00097{left:501.600000px;}
.x87_c00097{left:503.400000px;}
.x103_c00097{left:504.600000px;}
.x1c_c00097{left:505.950000px;}
.x60_c00097{left:510.450000px;}
.x34_c00097{left:511.500000px;}
.xe5_c00097{left:513.300000px;}
.xdc_c00097{left:515.100000px;}
.x80_c00097{left:521.100000px;}
.xab_c00097{left:522.900000px;}
.x9a_c00097{left:524.550000px;}
.xd1_c00097{left:526.050000px;}
.x10e_c00097{left:529.200000px;}
.x2a_c00097{left:530.400000px;}
.x12e_c00097{left:531.600000px;}
.x138_c00097{left:532.800000px;}
.x54_c00097{left:535.650000px;}
.x8e_c00097{left:539.250000px;}
.x35_c00097{left:542.850000px;}
.x1d_c00097{left:544.050000px;}
.xc6_c00097{left:545.250000px;}
.xac_c00097{left:546.600000px;}
.x2b_c00097{left:549.150000px;}
.x78_c00097{left:551.700000px;}
.x12f_c00097{left:552.900000px;}
.x109_c00097{left:553.950000px;}
.x9b_c00097{left:555.150000px;}
.xe6_c00097{left:557.250000px;}
.xb4_c00097{left:558.750000px;}
.x61_c00097{left:560.100000px;}
.x44_c00097{left:561.750000px;}
.xf7_c00097{left:564.600000px;}
.xbe_c00097{left:565.800000px;}
.x10a_c00097{left:567.600000px;}
.x8f_c00097{left:570.600000px;}
.xe_c00097{left:573.750000px;}
.xe7_c00097{left:576.750000px;}
.x36_c00097{left:578.100000px;}
.xb5_c00097{left:579.300000px;}
.x81_c00097{left:581.250000px;}
.x45_c00097{left:584.400000px;}
.x117_c00097{left:585.900000px;}
.x1e_c00097{left:588.000000px;}
.x11e_c00097{left:590.100000px;}
.xc7_c00097{left:592.050000px;}
.x62_c00097{left:595.050000px;}
.xbf_c00097{left:596.700000px;}
.xdd_c00097{left:598.200000px;}
.x79_c00097{left:599.250000px;}
.xf_c00097{left:603.600000px;}
.xe8_c00097{left:604.800000px;}
.x11f_c00097{left:606.300000px;}
.x46_c00097{left:609.600000px;}
.x88_c00097{left:610.950000px;}
.x37_c00097{left:612.000000px;}
.x7a_c00097{left:613.950000px;}
.xd8_c00097{left:616.050000px;}
.x82_c00097{left:618.000000px;}
.x1f_c00097{left:622.200000px;}
.x10_c00097{left:624.450000px;}
.x38_c00097{left:629.700000px;}
.x118_c00097{left:632.400000px;}
.xad_c00097{left:633.450000px;}
.xc0_c00097{left:635.250000px;}
.xff_c00097{left:638.100000px;}
.x104_c00097{left:640.650000px;}
.x55_c00097{left:642.900000px;}
.xde_c00097{left:647.400000px;}
.xf8_c00097{left:650.400000px;}
.xec_c00097{left:653.100000px;}
.x9c_c00097{left:654.450000px;}
.xd2_c00097{left:655.650000px;}
.x20_c00097{left:657.150000px;}
.x11_c00097{left:658.950000px;}
.xc1_c00097{left:661.200000px;}
.x47_c00097{left:662.550000px;}
.x13c_c00097{left:665.250000px;}
.x132_c00097{left:666.300000px;}
.xf3_c00097{left:668.850000px;}
.x119_c00097{left:670.200000px;}
.xc8_c00097{left:671.550000px;}
.x90_c00097{left:673.500000px;}
.x100_c00097{left:674.850000px;}
.xb6_c00097{left:677.850000px;}
.x9d_c00097{left:679.350000px;}
.x139_c00097{left:681.150000px;}
.xd3_c00097{left:682.350000px;}
.x6d_c00097{left:685.200000px;}
.x120_c00097{left:688.800000px;}
.x48_c00097{left:691.050000px;}
.x39_c00097{left:693.450000px;}
.x141_c00097{left:694.800000px;}
.x7b_c00097{left:697.050000px;}
.x11a_c00097{left:698.700000px;}
.x12_c00097{left:700.050000px;}
.xed_c00097{left:701.700000px;}
.x10f_c00097{left:703.800000px;}
.xf9_c00097{left:706.200000px;}
.x121_c00097{left:707.550000px;}
.x6e_c00097{left:709.650000px;}
.xc9_c00097{left:711.900000px;}
.xd4_c00097{left:713.700000px;}
.x49_c00097{left:714.750000px;}
.x3a_c00097{left:715.800000px;}
.x9e_c00097{left:716.850000px;}
.x13d_c00097{left:720.000000px;}
.x91_c00097{left:721.650000px;}
.xee_c00097{left:723.300000px;}
.x63_c00097{left:725.700000px;}
.x21_c00097{left:727.050000px;}
.x13_c00097{left:728.550000px;}
.xe9_c00097{left:729.750000px;}
.x127_c00097{left:732.150000px;}
.x56_c00097{left:733.350000px;}
.x122_c00097{left:735.600000px;}
.x92_c00097{left:736.800000px;}
.x144_c00097{left:739.050000px;}
.x13e_c00097{left:740.100000px;}
.x3b_c00097{left:742.500000px;}
.x14_c00097{left:745.800000px;}
.xfa_c00097{left:747.900000px;}
.x9f_c00097{left:751.350000px;}
.xb7_c00097{left:755.250000px;}
.x57_c00097{left:756.450000px;}
.x4_c00097{left:759.600000px;}
.xf4_c00097{left:762.150000px;}
.xca_c00097{left:768.300000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws1_c00097{word-spacing:-12.098765pt;}
.ws3_c00097{word-spacing:-4.691358pt;}
.ws9_c00097{word-spacing:0.000000pt;}
.ws8_c00097{word-spacing:0.158730pt;}
.ws0_c00097{word-spacing:4.003228pt;}
.ws6_c00097{word-spacing:7.927928pt;}
.ws5_c00097{word-spacing:10.595238pt;}
.ws7_c00097{word-spacing:10.980392pt;}
.ws4_c00097{word-spacing:12.287582pt;}
.ws2_c00097{word-spacing:15.488215pt;}
._0_c00097{width:34.074074pt;}
.fs0_c00097{font-size:53.333333pt;}
.y0_c00097{bottom:0.000000pt;}
.y2c_c00097{bottom:134.400000pt;}
.y2b_c00097{bottom:162.533333pt;}
.y2a_c00097{bottom:180.133333pt;}
.y29_c00097{bottom:197.733333pt;}
.y28_c00097{bottom:215.600000pt;}
.y27_c00097{bottom:233.466667pt;}
.y26_c00097{bottom:251.066667pt;}
.y25_c00097{bottom:268.666667pt;}
.y24_c00097{bottom:286.266667pt;}
.y23_c00097{bottom:304.133333pt;}
.y22_c00097{bottom:321.733333pt;}
.y21_c00097{bottom:339.600000pt;}
.y20_c00097{bottom:357.466667pt;}
.y1f_c00097{bottom:375.066667pt;}
.y1e_c00097{bottom:392.933333pt;}
.y1d_c00097{bottom:410.533333pt;}
.y1c_c00097{bottom:428.133333pt;}
.y1b_c00097{bottom:446.000000pt;}
.y1a_c00097{bottom:463.866667pt;}
.y19_c00097{bottom:481.733333pt;}
.y18_c00097{bottom:499.333333pt;}
.y17_c00097{bottom:516.933333pt;}
.y16_c00097{bottom:534.533333pt;}
.y15_c00097{bottom:552.400000pt;}
.y14_c00097{bottom:570.000000pt;}
.y13_c00097{bottom:587.600000pt;}
.y12_c00097{bottom:605.200000pt;}
.y11_c00097{bottom:623.066667pt;}
.y10_c00097{bottom:640.800000pt;}
.yf_c00097{bottom:658.666667pt;}
.ye_c00097{bottom:676.266667pt;}
.yd_c00097{bottom:694.133333pt;}
.yc_c00097{bottom:711.733333pt;}
.yb_c00097{bottom:729.333333pt;}
.ya_c00097{bottom:754.933333pt;}
.y9_c00097{bottom:773.200000pt;}
.y8_c00097{bottom:790.800000pt;}
.y7_c00097{bottom:808.666667pt;}
.y6_c00097{bottom:826.266667pt;}
.y5_c00097{bottom:844.133333pt;}
.y4_c00097{bottom:862.133333pt;}
.y3_c00097{bottom:879.466667pt;}
.y2_c00097{bottom:897.333333pt;}
.y1_c00097{bottom:931.866667pt;}
.h2_c00097{height:53.333333pt;}
.h1_c00097{height:1038.000000pt;}
.h0_c00097{height:1038.079997pt;}
.w1_c00097{width:818.000000pt;}
.w0_c00097{width:818.239991pt;}
.x0_c00097{left:0.000000pt;}
.xfb_c00097{left:95.866667pt;}
.x5_c00097{left:96.933333pt;}
.x142_c00097{left:107.866667pt;}
.x110_c00097{left:111.733333pt;}
.xc2_c00097{left:113.200000pt;}
.x13a_c00097{left:114.266667pt;}
.xdf_c00097{left:118.933333pt;}
.x101_c00097{left:119.866667pt;}
.x3c_c00097{left:121.066667pt;}
.x11b_c00097{left:122.533333pt;}
.x2c_c00097{left:124.133333pt;}
.x6f_c00097{left:125.200000pt;}
.x93_c00097{left:127.200000pt;}
.xae_c00097{left:128.933333pt;}
.x64_c00097{left:130.800000pt;}
.x111_c00097{left:134.400000pt;}
.x105_c00097{left:139.066667pt;}
.x128_c00097{left:140.000000pt;}
.x133_c00097{left:142.133333pt;}
.x2d_c00097{left:144.266667pt;}
.xfc_c00097{left:145.200000pt;}
.x6_c00097{left:147.200000pt;}
.xb8_c00097{left:148.133333pt;}
.x123_c00097{left:150.800000pt;}
.x89_c00097{left:153.866667pt;}
.xa4_c00097{left:154.933333pt;}
.x129_c00097{left:156.666667pt;}
.x70_c00097{left:158.133333pt;}
.xd9_c00097{left:159.066667pt;}
.x4a_c00097{left:161.066667pt;}
.x7_c00097{left:162.933333pt;}
.x94_c00097{left:164.266667pt;}
.x65_c00097{left:166.933333pt;}
.x22_c00097{left:168.800000pt;}
.xcb_c00097{left:171.333333pt;}
.xaf_c00097{left:172.800000pt;}
.x143_c00097{left:173.866667pt;}
.x112_c00097{left:175.066667pt;}
.x58_c00097{left:176.666667pt;}
.x102_c00097{left:177.733333pt;}
.x106_c00097{left:179.066667pt;}
.x15_c00097{left:181.333333pt;}
.x71_c00097{left:182.400000pt;}
.x95_c00097{left:184.800000pt;}
.x3d_c00097{left:186.666667pt;}
.xa0_c00097{left:188.800000pt;}
.xc3_c00097{left:190.000000pt;}
.x2e_c00097{left:191.333333pt;}
.x8_c00097{left:192.666667pt;}
.x23_c00097{left:194.133333pt;}
.x59_c00097{left:196.133333pt;}
.x83_c00097{left:199.066667pt;}
.x130_c00097{left:200.666667pt;}
.x134_c00097{left:202.933333pt;}
.x113_c00097{left:203.866667pt;}
.x12d_c00097{left:204.933333pt;}
.xe0_c00097{left:206.000000pt;}
.x3e_c00097{left:207.466667pt;}
.xef_c00097{left:212.933333pt;}
.x7c_c00097{left:216.133333pt;}
.x72_c00097{left:217.333333pt;}
.x66_c00097{left:219.066667pt;}
.x5a_c00097{left:221.733333pt;}
.x16_c00097{left:222.933333pt;}
.x10b_c00097{left:224.266667pt;}
.xa5_c00097{left:225.600000pt;}
.xc4_c00097{left:227.066667pt;}
.xe1_c00097{left:232.533333pt;}
.x9_c00097{left:234.000000pt;}
.x84_c00097{left:235.866667pt;}
.xf0_c00097{left:238.533333pt;}
.x17_c00097{left:240.533333pt;}
.xfd_c00097{left:241.600000pt;}
.x67_c00097{left:242.800000pt;}
.x24_c00097{left:244.000000pt;}
.xa6_c00097{left:246.133333pt;}
.xb0_c00097{left:247.066667pt;}
.x114_c00097{left:248.400000pt;}
.xb9_c00097{left:250.533333pt;}
.x96_c00097{left:251.600000pt;}
.xa1_c00097{left:252.800000pt;}
.x5b_c00097{left:253.733333pt;}
.x4b_c00097{left:255.466667pt;}
.x107_c00097{left:256.400000pt;}
.xcc_c00097{left:257.733333pt;}
.x25_c00097{left:260.666667pt;}
.xe2_c00097{left:262.000000pt;}
.xd5_c00097{left:262.933333pt;}
.xb1_c00097{left:264.933333pt;}
.xda_c00097{left:266.533333pt;}
.x135_c00097{left:267.866667pt;}
.x10c_c00097{left:269.466667pt;}
.xa2_c00097{left:270.400000pt;}
.xf5_c00097{left:272.400000pt;}
.x4c_c00097{left:274.000000pt;}
.x12a_c00097{left:275.066667pt;}
.x97_c00097{left:276.533333pt;}
.xba_c00097{left:277.733333pt;}
.xa_c00097{left:279.066667pt;}
.x5c_c00097{left:280.933333pt;}
.xd6_c00097{left:281.866667pt;}
.xc5_c00097{left:283.733333pt;}
.x108_c00097{left:284.933333pt;}
.x18_c00097{left:286.000000pt;}
.x2f_c00097{left:287.333333pt;}
.x68_c00097{left:288.933333pt;}
.xb2_c00097{left:291.466667pt;}
.x8a_c00097{left:293.066667pt;}
.x13f_c00097{left:298.800000pt;}
.x4d_c00097{left:301.466667pt;}
.xa7_c00097{left:302.533333pt;}
.xcd_c00097{left:304.666667pt;}
.xb_c00097{left:306.266667pt;}
.x26_c00097{left:307.333333pt;}
.x5d_c00097{left:309.066667pt;}
.x19_c00097{left:310.933333pt;}
.x3f_c00097{left:312.133333pt;}
.x8b_c00097{left:313.200000pt;}
.x124_c00097{left:316.000000pt;}
.xfe_c00097{left:317.200000pt;}
.x98_c00097{left:319.466667pt;}
.x12b_c00097{left:322.400000pt;}
.x27_c00097{left:324.000000pt;}
.x30_c00097{left:326.000000pt;}
.x1_c00097{left:327.066667pt;}
.x136_c00097{left:328.666667pt;}
.x115_c00097{left:329.733333pt;}
.x40_c00097{left:330.666667pt;}
.x11c_c00097{left:332.666667pt;}
.x69_c00097{left:334.400000pt;}
.x131_c00097{left:335.333333pt;}
.xa8_c00097{left:336.400000pt;}
.x10d_c00097{left:337.600000pt;}
.x4e_c00097{left:338.533333pt;}
.xe3_c00097{left:339.466667pt;}
.xbb_c00097{left:340.400000pt;}
.x73_c00097{left:341.466667pt;}
.x4f_c00097{left:343.066667pt;}
.x13b_c00097{left:344.400000pt;}
.xf1_c00097{left:345.733333pt;}
.xce_c00097{left:347.200000pt;}
.xd7_c00097{left:350.666667pt;}
.xa9_c00097{left:352.400000pt;}
.xc_c00097{left:353.333333pt;}
.x31_c00097{left:354.800000pt;}
.x2_c00097{left:357.200000pt;}
.x7d_c00097{left:358.533333pt;}
.x116_c00097{left:359.866667pt;}
.xe4_c00097{left:361.200000pt;}
.x41_c00097{left:362.933333pt;}
.x1a_c00097{left:364.666667pt;}
.x74_c00097{left:366.400000pt;}
.x6a_c00097{left:367.733333pt;}
.xdb_c00097{left:368.933333pt;}
.x85_c00097{left:370.400000pt;}
.xbc_c00097{left:372.666667pt;}
.xa3_c00097{left:374.933333pt;}
.x7e_c00097{left:376.133333pt;}
.xea_c00097{left:378.000000pt;}
.x5e_c00097{left:379.866667pt;}
.xf2_c00097{left:380.933333pt;}
.xaa_c00097{left:383.733333pt;}
.xd_c00097{left:384.666667pt;}
.x32_c00097{left:385.866667pt;}
.x50_c00097{left:386.933333pt;}
.x86_c00097{left:388.266667pt;}
.x42_c00097{left:390.400000pt;}
.x8c_c00097{left:392.933333pt;}
.x6b_c00097{left:394.666667pt;}
.xeb_c00097{left:396.533333pt;}
.x125_c00097{left:398.933333pt;}
.xbd_c00097{left:400.133333pt;}
.x75_c00097{left:402.933333pt;}
.x5f_c00097{left:404.800000pt;}
.x140_c00097{left:406.400000pt;}
.x28_c00097{left:408.400000pt;}
.x51_c00097{left:409.600000pt;}
.x8d_c00097{left:410.800000pt;}
.x137_c00097{left:411.866667pt;}
.x3_c00097{left:415.733333pt;}
.x1b_c00097{left:417.733333pt;}
.xcf_c00097{left:419.600000pt;}
.x76_c00097{left:420.533333pt;}
.xb3_c00097{left:421.733333pt;}
.x33_c00097{left:422.933333pt;}
.x126_c00097{left:424.266667pt;}
.x29_c00097{left:425.333333pt;}
.x52_c00097{left:426.533333pt;}
.x43_c00097{left:427.866667pt;}
.x99_c00097{left:430.400000pt;}
.x6c_c00097{left:432.133333pt;}
.x12c_c00097{left:435.600000pt;}
.x7f_c00097{left:436.933333pt;}
.xd0_c00097{left:438.133333pt;}
.x53_c00097{left:440.000000pt;}
.x11d_c00097{left:442.000000pt;}
.xf6_c00097{left:443.333333pt;}
.x77_c00097{left:445.866667pt;}
.x87_c00097{left:447.466667pt;}
.x103_c00097{left:448.533333pt;}
.x1c_c00097{left:449.733333pt;}
.x60_c00097{left:453.733333pt;}
.x34_c00097{left:454.666667pt;}
.xe5_c00097{left:456.266667pt;}
.xdc_c00097{left:457.866667pt;}
.x80_c00097{left:463.200000pt;}
.xab_c00097{left:464.800000pt;}
.x9a_c00097{left:466.266667pt;}
.xd1_c00097{left:467.600000pt;}
.x10e_c00097{left:470.400000pt;}
.x2a_c00097{left:471.466667pt;}
.x12e_c00097{left:472.533333pt;}
.x138_c00097{left:473.600000pt;}
.x54_c00097{left:476.133333pt;}
.x8e_c00097{left:479.333333pt;}
.x35_c00097{left:482.533333pt;}
.x1d_c00097{left:483.600000pt;}
.xc6_c00097{left:484.666667pt;}
.xac_c00097{left:485.866667pt;}
.x2b_c00097{left:488.133333pt;}
.x78_c00097{left:490.400000pt;}
.x12f_c00097{left:491.466667pt;}
.x109_c00097{left:492.400000pt;}
.x9b_c00097{left:493.466667pt;}
.xe6_c00097{left:495.333333pt;}
.xb4_c00097{left:496.666667pt;}
.x61_c00097{left:497.866667pt;}
.x44_c00097{left:499.333333pt;}
.xf7_c00097{left:501.866667pt;}
.xbe_c00097{left:502.933333pt;}
.x10a_c00097{left:504.533333pt;}
.x8f_c00097{left:507.200000pt;}
.xe_c00097{left:510.000000pt;}
.xe7_c00097{left:512.666667pt;}
.x36_c00097{left:513.866667pt;}
.xb5_c00097{left:514.933333pt;}
.x81_c00097{left:516.666667pt;}
.x45_c00097{left:519.466667pt;}
.x117_c00097{left:520.800000pt;}
.x1e_c00097{left:522.666667pt;}
.x11e_c00097{left:524.533333pt;}
.xc7_c00097{left:526.266667pt;}
.x62_c00097{left:528.933333pt;}
.xbf_c00097{left:530.400000pt;}
.xdd_c00097{left:531.733333pt;}
.x79_c00097{left:532.666667pt;}
.xf_c00097{left:536.533333pt;}
.xe8_c00097{left:537.600000pt;}
.x11f_c00097{left:538.933333pt;}
.x46_c00097{left:541.866667pt;}
.x88_c00097{left:543.066667pt;}
.x37_c00097{left:544.000000pt;}
.x7a_c00097{left:545.733333pt;}
.xd8_c00097{left:547.600000pt;}
.x82_c00097{left:549.333333pt;}
.x1f_c00097{left:553.066667pt;}
.x10_c00097{left:555.066667pt;}
.x38_c00097{left:559.733333pt;}
.x118_c00097{left:562.133333pt;}
.xad_c00097{left:563.066667pt;}
.xc0_c00097{left:564.666667pt;}
.xff_c00097{left:567.200000pt;}
.x104_c00097{left:569.466667pt;}
.x55_c00097{left:571.466667pt;}
.xde_c00097{left:575.466667pt;}
.xf8_c00097{left:578.133333pt;}
.xec_c00097{left:580.533333pt;}
.x9c_c00097{left:581.733333pt;}
.xd2_c00097{left:582.800000pt;}
.x20_c00097{left:584.133333pt;}
.x11_c00097{left:585.733333pt;}
.xc1_c00097{left:587.733333pt;}
.x47_c00097{left:588.933333pt;}
.x13c_c00097{left:591.333333pt;}
.x132_c00097{left:592.266667pt;}
.xf3_c00097{left:594.533333pt;}
.x119_c00097{left:595.733333pt;}
.xc8_c00097{left:596.933333pt;}
.x90_c00097{left:598.666667pt;}
.x100_c00097{left:599.866667pt;}
.xb6_c00097{left:602.533333pt;}
.x9d_c00097{left:603.866667pt;}
.x139_c00097{left:605.466667pt;}
.xd3_c00097{left:606.533333pt;}
.x6d_c00097{left:609.066667pt;}
.x120_c00097{left:612.266667pt;}
.x48_c00097{left:614.266667pt;}
.x39_c00097{left:616.400000pt;}
.x141_c00097{left:617.600000pt;}
.x7b_c00097{left:619.600000pt;}
.x11a_c00097{left:621.066667pt;}
.x12_c00097{left:622.266667pt;}
.xed_c00097{left:623.733333pt;}
.x10f_c00097{left:625.600000pt;}
.xf9_c00097{left:627.733333pt;}
.x121_c00097{left:628.933333pt;}
.x6e_c00097{left:630.800000pt;}
.xc9_c00097{left:632.800000pt;}
.xd4_c00097{left:634.400000pt;}
.x49_c00097{left:635.333333pt;}
.x3a_c00097{left:636.266667pt;}
.x9e_c00097{left:637.200000pt;}
.x13d_c00097{left:640.000000pt;}
.x91_c00097{left:641.466667pt;}
.xee_c00097{left:642.933333pt;}
.x63_c00097{left:645.066667pt;}
.x21_c00097{left:646.266667pt;}
.x13_c00097{left:647.600000pt;}
.xe9_c00097{left:648.666667pt;}
.x127_c00097{left:650.800000pt;}
.x56_c00097{left:651.866667pt;}
.x122_c00097{left:653.866667pt;}
.x92_c00097{left:654.933333pt;}
.x144_c00097{left:656.933333pt;}
.x13e_c00097{left:657.866667pt;}
.x3b_c00097{left:660.000000pt;}
.x14_c00097{left:662.933333pt;}
.xfa_c00097{left:664.800000pt;}
.x9f_c00097{left:667.866667pt;}
.xb7_c00097{left:671.333333pt;}
.x57_c00097{left:672.400000pt;}
.x4_c00097{left:675.200000pt;}
.xf4_c00097{left:677.466667pt;}
.xca_c00097{left:682.933333pt;}
}





/* 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_c00098 {
    display:none;
  }
  .loading-indicator_c00098.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00098 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_c00098 { 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_c00098" -> "#page-container .classname_c00098")
 */
.pf_c00098 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00098 { /* 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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00098 { /* 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_c00098 { /* 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_c00098 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00098 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00098 {overflow:visible;}
  }
}
.c_c00098 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00098 { /* 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_c00098:after { /* webkit #35443 */
  content: '';
}
.t_c00098:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00098 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 */
}
.__c00098 { /* 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_c00098 { /* info for Javascript */
  display:none;
}
.l_c00098 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00098 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00098 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00098: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_c00098 {
    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_c00098.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00098.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_c00098 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00098{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00098;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.000000;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;}
.m1f_c00098{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m66_c00098{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m67_c00098{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m72_c00098{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m73_c00098{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m16_c00098{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00098{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m30_c00098{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00098{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00098{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m40_c00098{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m20_c00098{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m59_c00098{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00098{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00098{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00098{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00098{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m89_c00098{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00098{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m63_c00098{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m81_c00098{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m52_c00098{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m78_c00098{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00098{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00098{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m91_c00098{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m76_c00098{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00098{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00098{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m25_c00098{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m42_c00098{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m77_c00098{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m65_c00098{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m48_c00098{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00098{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m97_c00098{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00098{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m82_c00098{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m62_c00098{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00098{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8_c00098{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf_c00098{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m94_c00098{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m51_c00098{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc_c00098{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00098{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m75_c00098{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m68_c00098{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md_c00098{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m26_c00098{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m98_c00098{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m33_c00098{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00098{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00098{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m90_c00098{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m99_c00098{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m17_c00098{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00098{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00098{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m35_c00098{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00098{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00098{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m95_c00098{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m64_c00098{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00098{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00098{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00098{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00098{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m92_c00098{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m57_c00098{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m80_c00098{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00098{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00098{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00098{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m58_c00098{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m55_c00098{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00098{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00098{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m32_c00098{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m60_c00098{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00098{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00098{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00098{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00098{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00098{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5_c00098{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m27_c00098{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00098{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00098{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00098{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00098{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma_c00098{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m70_c00098{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00098{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00098{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m15_c00098{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m18_c00098{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.me_c00098{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00098{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m31_c00098{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00098{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00098{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3_c00098{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00098{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m83_c00098{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m29_c00098{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m85_c00098{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m28_c00098{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m44_c00098{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m43_c00098{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m36_c00098{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m37_c00098{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m96_c00098{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00098{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m22_c00098{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00098{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00098{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00098{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m11_c00098{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00098{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m45_c00098{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m54_c00098{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m79_c00098{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12_c00098{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00098{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00098{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24_c00098{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00098{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00098{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14_c00098{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00098{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);}
.m9_c00098{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00098{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m84_c00098{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00098{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00098{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00098{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00098{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m39_c00098{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m23_c00098{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00098{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m88_c00098{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m46_c00098{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00098{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m93_c00098{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m53_c00098{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m71_c00098{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00098{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00098{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m13_c00098{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00098{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00098{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00098{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m69_c00098{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m49_c00098{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m50_c00098{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m74_c00098{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00098{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00098{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m41_c00098{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m34_c00098{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00098{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00098{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{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__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00098{word-spacing:-10.138889px;}
.ws4_c00098{word-spacing:-8.750000px;}
.ws2_c00098{word-spacing:-5.340909px;}
.ws3_c00098{word-spacing:-3.382353px;}
.ws1_c00098{word-spacing:-1.527778px;}
.wsa_c00098{word-spacing:0.000000px;}
.ws7_c00098{word-spacing:0.277778px;}
.ws5_c00098{word-spacing:6.527778px;}
.ws0_c00098{word-spacing:6.794872px;}
.ws8_c00098{word-spacing:7.500000px;}
.ws9_c00098{word-spacing:14.285714px;}
.fc0_c00098{color:transparent;}
.fs0_c00098{font-size:54.000000px;}
.fs1_c00098{font-size:60.000000px;}
.y0_c00098{bottom:0.000000px;}
.y2d_c00098{bottom:158.100000px;}
.y2c_c00098{bottom:177.900000px;}
.y2b_c00098{bottom:198.000000px;}
.y2a_c00098{bottom:217.800000px;}
.y29_c00098{bottom:237.750000px;}
.y28_c00098{bottom:257.850000px;}
.y27_c00098{bottom:277.650000px;}
.y26_c00098{bottom:297.750000px;}
.y25_c00098{bottom:317.850000px;}
.y24_c00098{bottom:337.650000px;}
.y23_c00098{bottom:357.600000px;}
.y22_c00098{bottom:377.700000px;}
.y21_c00098{bottom:397.800000px;}
.y20_c00098{bottom:417.600000px;}
.y1f_c00098{bottom:437.700000px;}
.y1e_c00098{bottom:457.500000px;}
.y1d_c00098{bottom:477.900000px;}
.y1c_c00098{bottom:497.700000px;}
.y1b_c00098{bottom:517.500000px;}
.y1a_c00098{bottom:537.600000px;}
.y19_c00098{bottom:557.400000px;}
.y18_c00098{bottom:577.500000px;}
.y17_c00098{bottom:597.600000px;}
.y16_c00098{bottom:617.400000px;}
.y15_c00098{bottom:636.900000px;}
.y14_c00098{bottom:657.300000px;}
.y13_c00098{bottom:677.100000px;}
.y12_c00098{bottom:697.200000px;}
.y11_c00098{bottom:717.000000px;}
.y10_c00098{bottom:736.800000px;}
.yf_c00098{bottom:756.900000px;}
.ye_c00098{bottom:777.000000px;}
.yd_c00098{bottom:796.800000px;}
.yc_c00098{bottom:816.900000px;}
.yb_c00098{bottom:836.700000px;}
.ya_c00098{bottom:856.800000px;}
.y9_c00098{bottom:876.900000px;}
.y8_c00098{bottom:896.700000px;}
.y7_c00098{bottom:916.800000px;}
.y6_c00098{bottom:936.900000px;}
.y5_c00098{bottom:957.000000px;}
.y4_c00098{bottom:976.800000px;}
.y3_c00098{bottom:996.600000px;}
.y2_c00098{bottom:1016.700000px;}
.y1_c00098{bottom:1055.100000px;}
.h2_c00098{height:54.000000px;}
.h3_c00098{height:60.000000px;}
.h1_c00098{height:1167.750000px;}
.h0_c00098{height:1167.839997px;}
.w1_c00098{width:920.250000px;}
.w0_c00098{width:920.519990px;}
.x0_c00098{left:0.000000px;}
.x95_c00098{left:140.850000px;}
.x1_c00098{left:142.200000px;}
.x53_c00098{left:156.450000px;}
.x1a_c00098{left:159.000000px;}
.x10_c00098{left:163.050000px;}
.x3a_c00098{left:169.650000px;}
.xc8_c00098{left:171.750000px;}
.x55_c00098{left:173.550000px;}
.x130_c00098{left:174.600000px;}
.x119_c00098{left:177.450000px;}
.xe6_c00098{left:178.650000px;}
.xaa_c00098{left:180.600000px;}
.x11e_c00098{left:181.950000px;}
.x1b_c00098{left:184.200000px;}
.x29_c00098{left:186.300000px;}
.x6b_c00098{left:188.100000px;}
.x8a_c00098{left:190.950000px;}
.xd8_c00098{left:192.300000px;}
.x61_c00098{left:194.700000px;}
.xa3_c00098{left:196.200000px;}
.xc9_c00098{left:198.450000px;}
.x7f_c00098{left:199.800000px;}
.x56_c00098{left:201.300000px;}
.x10e_c00098{left:203.250000px;}
.xab_c00098{left:206.550000px;}
.x2a_c00098{left:207.600000px;}
.x6c_c00098{left:210.750000px;}
.xe1_c00098{left:211.800000px;}
.x4_c00098{left:213.600000px;}
.xbb_c00098{left:215.550000px;}
.xa4_c00098{left:217.050000px;}
.x11_c00098{left:219.150000px;}
.xc3_c00098{left:220.200000px;}
.x123_c00098{left:222.000000px;}
.xe7_c00098{left:224.100000px;}
.x54_c00098{left:225.150000px;}
.xeb_c00098{left:226.200000px;}
.xef_c00098{left:227.250000px;}
.x96_c00098{left:229.350000px;}
.x8b_c00098{left:232.350000px;}
.xd4_c00098{left:235.650000px;}
.x1c_c00098{left:237.900000px;}
.xf7_c00098{left:241.200000px;}
.xa5_c00098{left:243.000000px;}
.xb5_c00098{left:246.000000px;}
.x80_c00098{left:247.650000px;}
.x12e_c00098{left:249.150000px;}
.x12_c00098{left:250.800000px;}
.x11f_c00098{left:253.200000px;}
.xca_c00098{left:254.250000px;}
.xff_c00098{left:255.750000px;}
.x124_c00098{left:256.950000px;}
.xac_c00098{left:258.000000px;}
.x76_c00098{left:260.700000px;}
.xe2_c00098{left:263.700000px;}
.x47_c00098{left:265.500000px;}
.x62_c00098{left:268.800000px;}
.x81_c00098{left:270.750000px;}
.x5_c00098{left:272.550000px;}
.xc4_c00098{left:274.500000px;}
.xb6_c00098{left:277.350000px;}
.x97_c00098{left:279.000000px;}
.xc5_c00098{left:282.000000px;}
.xcb_c00098{left:284.100000px;}
.x63_c00098{left:286.050000px;}
.xad_c00098{left:287.550000px;}
.x10f_c00098{left:288.600000px;}
.x2b_c00098{left:289.650000px;}
.x57_c00098{left:292.350000px;}
.xa6_c00098{left:293.400000px;}
.x77_c00098{left:296.700000px;}
.x3b_c00098{left:299.550000px;}
.xf8_c00098{left:301.950000px;}
.x1d_c00098{left:303.000000px;}
.xb7_c00098{left:305.100000px;}
.x98_c00098{left:307.050000px;}
.x2c_c00098{left:310.950000px;}
.xe3_c00098{left:312.300000px;}
.xd9_c00098{left:315.300000px;}
.xec_c00098{left:318.750000px;}
.xf0_c00098{left:321.600000px;}
.xbc_c00098{left:322.800000px;}
.x12f_c00098{left:324.000000px;}
.x3c_c00098{left:325.500000px;}
.x6d_c00098{left:326.700000px;}
.x82_c00098{left:328.350000px;}
.x8c_c00098{left:329.850000px;}
.xda_c00098{left:334.050000px;}
.xcc_c00098{left:335.250000px;}
.xae_c00098{left:336.900000px;}
.x2d_c00098{left:339.450000px;}
.x13_c00098{left:342.300000px;}
.xd5_c00098{left:344.550000px;}
.x11c_c00098{left:347.250000px;}
.x10a_c00098{left:348.900000px;}
.x110_c00098{left:350.100000px;}
.x99_c00098{left:352.350000px;}
.xbd_c00098{left:353.700000px;}
.x58_c00098{left:355.350000px;}
.x1e_c00098{left:357.300000px;}
.xa7_c00098{left:360.000000px;}
.xc6_c00098{left:362.700000px;}
.x100_c00098{left:365.550000px;}
.x106_c00098{left:367.050000px;}
.x10b_c00098{left:369.000000px;}
.x6_c00098{left:370.800000px;}
.xd6_c00098{left:374.100000px;}
.xf1_c00098{left:375.900000px;}
.xcd_c00098{left:380.250000px;}
.x64_c00098{left:381.750000px;}
.x114_c00098{left:383.850000px;}
.x9a_c00098{left:385.050000px;}
.x6e_c00098{left:386.550000px;}
.x2_c00098{left:389.100000px;}
.x7_c00098{left:390.600000px;}
.x2e_c00098{left:392.400000px;}
.x48_c00098{left:394.050000px;}
.xf9_c00098{left:395.250000px;}
.x3d_c00098{left:396.450000px;}
.x78_c00098{left:397.950000px;}
.x65_c00098{left:400.500000px;}
.x8d_c00098{left:402.600000px;}
.xbe_c00098{left:404.850000px;}
.x83_c00098{left:406.500000px;}
.xaf_c00098{left:412.200000px;}
.x59_c00098{left:416.100000px;}
.xa8_c00098{left:417.300000px;}
.x8_c00098{left:420.150000px;}
.x9b_c00098{left:421.350000px;}
.x8e_c00098{left:423.150000px;}
.x115_c00098{left:424.200000px;}
.xce_c00098{left:425.250000px;}
.x2f_c00098{left:427.350000px;}
.x49_c00098{left:428.550000px;}
.x12c_c00098{left:430.050000px;}
.xb8_c00098{left:431.100000px;}
.x11a_c00098{left:437.100000px;}
.x3e_c00098{left:438.150000px;}
.xb0_c00098{left:440.700000px;}
.x30_c00098{left:441.750000px;}
.x1f_c00098{left:443.700000px;}
.x79_c00098{left:444.750000px;}
.x111_c00098{left:447.750000px;}
.x107_c00098{left:449.100000px;}
.x101_c00098{left:451.200000px;}
.x84_c00098{left:452.550000px;}
.x14_c00098{left:454.200000px;}
.xe8_c00098{left:459.450000px;}
.x20_c00098{left:460.950000px;}
.x8f_c00098{left:462.000000px;}
.xf2_c00098{left:463.350000px;}
.x4a_c00098{left:465.300000px;}
.x9c_c00098{left:467.400000px;}
.x6f_c00098{left:469.050000px;}
.xbf_c00098{left:471.000000px;}
.x31_c00098{left:472.050000px;}
.x85_c00098{left:474.450000px;}
.x3f_c00098{left:475.950000px;}
.x9_c00098{left:480.600000px;}
.xfa_c00098{left:482.100000px;}
.x9d_c00098{left:484.650000px;}
.x21_c00098{left:486.450000px;}
.x3_c00098{left:488.100000px;}
.x70_c00098{left:490.350000px;}
.x108_c00098{left:491.550000px;}
.x32_c00098{left:493.650000px;}
.x12d_c00098{left:495.300000px;}
.x4b_c00098{left:496.650000px;}
.x5a_c00098{left:498.150000px;}
.x66_c00098{left:499.200000px;}
.x15_c00098{left:501.000000px;}
.xf3_c00098{left:502.350000px;}
.xb9_c00098{left:503.400000px;}
.x120_c00098{left:504.450000px;}
.xfb_c00098{left:508.050000px;}
.x7a_c00098{left:509.850000px;}
.xa_c00098{left:511.950000px;}
.xe4_c00098{left:514.650000px;}
.x5b_c00098{left:515.850000px;}
.xb1_c00098{left:518.400000px;}
.x71_c00098{left:519.450000px;}
.x4c_c00098{left:522.600000px;}
.x128_c00098{left:523.950000px;}
.x22_c00098{left:525.000000px;}
.x67_c00098{left:529.500000px;}
.x7b_c00098{left:531.750000px;}
.xc0_c00098{left:535.800000px;}
.x11d_c00098{left:536.850000px;}
.x16_c00098{left:539.850000px;}
.x40_c00098{left:541.500000px;}
.x5c_c00098{left:542.850000px;}
.x23_c00098{left:544.800000px;}
.xcf_c00098{left:546.900000px;}
.xb2_c00098{left:548.250000px;}
.x131_c00098{left:552.600000px;}
.x33_c00098{left:553.800000px;}
.x68_c00098{left:555.000000px;}
.xf4_c00098{left:557.100000px;}
.xfc_c00098{left:559.200000px;}
.x41_c00098{left:561.300000px;}
.x72_c00098{left:562.350000px;}
.x9e_c00098{left:563.850000px;}
.x4d_c00098{left:565.500000px;}
.xb_c00098{left:568.050000px;}
.x102_c00098{left:570.450000px;}
.x90_c00098{left:572.250000px;}
.x24_c00098{left:573.300000px;}
.x121_c00098{left:574.350000px;}
.x109_c00098{left:575.850000px;}
.x125_c00098{left:579.600000px;}
.xb3_c00098{left:580.650000px;}
.x7c_c00098{left:582.450000px;}
.xe9_c00098{left:585.900000px;}
.xd7_c00098{left:587.550000px;}
.x86_c00098{left:589.350000px;}
.xfd_c00098{left:590.850000px;}
.x4e_c00098{left:594.000000px;}
.x42_c00098{left:595.200000px;}
.xed_c00098{left:598.500000px;}
.xc_c00098{left:601.500000px;}
.x34_c00098{left:603.450000px;}
.x10c_c00098{left:606.450000px;}
.x17_c00098{left:607.500000px;}
.x126_c00098{left:608.700000px;}
.x9f_c00098{left:611.400000px;}
.xdb_c00098{left:613.350000px;}
.xf5_c00098{left:614.400000px;}
.x103_c00098{left:617.250000px;}
.x112_c00098{left:620.400000px;}
.x35_c00098{left:622.200000px;}
.x25_c00098{left:624.000000px;}
.x87_c00098{left:626.400000px;}
.xc1_c00098{left:629.400000px;}
.x5d_c00098{left:631.350000px;}
.x4f_c00098{left:632.550000px;}
.xdc_c00098{left:634.200000px;}
.xfe_c00098{left:639.150000px;}
.x7d_c00098{left:641.100000px;}
.x69_c00098{left:643.200000px;}
.x11b_c00098{left:645.750000px;}
.xc7_c00098{left:647.250000px;}
.xa0_c00098{left:648.900000px;}
.x36_c00098{left:651.000000px;}
.xd0_c00098{left:652.050000px;}
.x73_c00098{left:653.100000px;}
.x104_c00098{left:654.750000px;}
.x91_c00098{left:658.050000px;}
.xc2_c00098{left:661.050000px;}
.xdd_c00098{left:664.050000px;}
.x26_c00098{left:668.250000px;}
.x7e_c00098{left:670.650000px;}
.x88_c00098{left:672.000000px;}
.x5e_c00098{left:676.050000px;}
.x50_c00098{left:677.850000px;}
.xd1_c00098{left:680.550000px;}
.x116_c00098{left:682.050000px;}
.x105_c00098{left:683.550000px;}
.x92_c00098{left:685.050000px;}
.x129_c00098{left:686.250000px;}
.xd_c00098{left:689.700000px;}
.x18_c00098{left:691.800000px;}
.xba_c00098{left:693.300000px;}
.x74_c00098{left:694.500000px;}
.xde_c00098{left:697.200000px;}
.x43_c00098{left:700.350000px;}
.x37_c00098{left:702.150000px;}
.xa9_c00098{left:704.400000px;}
.xee_c00098{left:707.550000px;}
.x127_c00098{left:710.250000px;}
.x12a_c00098{left:714.300000px;}
.x51_c00098{left:715.950000px;}
.xe_c00098{left:718.200000px;}
.x44_c00098{left:720.450000px;}
.xa1_c00098{left:723.000000px;}
.x5f_c00098{left:724.350000px;}
.x19_c00098{left:726.000000px;}
.x93_c00098{left:729.000000px;}
.x117_c00098{left:730.200000px;}
.xd2_c00098{left:732.450000px;}
.x45_c00098{left:734.850000px;}
.x27_c00098{left:738.450000px;}
.xea_c00098{left:741.000000px;}
.x89_c00098{left:743.250000px;}
.x6a_c00098{left:745.350000px;}
.x38_c00098{left:747.450000px;}
.x122_c00098{left:750.750000px;}
.x52_c00098{left:753.000000px;}
.x60_c00098{left:757.800000px;}
.xf6_c00098{left:760.950000px;}
.xdf_c00098{left:762.750000px;}
.x113_c00098{left:764.100000px;}
.x28_c00098{left:765.450000px;}
.x75_c00098{left:766.500000px;}
.xf_c00098{left:769.650000px;}
.x118_c00098{left:770.850000px;}
.xb4_c00098{left:771.900000px;}
.xa2_c00098{left:774.450000px;}
.xd3_c00098{left:775.650000px;}
.x39_c00098{left:779.100000px;}
.xe0_c00098{left:780.450000px;}
.x46_c00098{left:783.450000px;}
.x94_c00098{left:784.500000px;}
.xe5_c00098{left:786.750000px;}
.x10d_c00098{left:788.700000px;}
.x132_c00098{left:794.850000px;}
.x12b_c00098{left:797.850000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws6_c00098{word-spacing:-9.012346pt;}
.ws4_c00098{word-spacing:-7.777778pt;}
.ws2_c00098{word-spacing:-4.747475pt;}
.ws3_c00098{word-spacing:-3.006536pt;}
.ws1_c00098{word-spacing:-1.358025pt;}
.wsa_c00098{word-spacing:0.000000pt;}
.ws7_c00098{word-spacing:0.246914pt;}
.ws5_c00098{word-spacing:5.802469pt;}
.ws0_c00098{word-spacing:6.039886pt;}
.ws8_c00098{word-spacing:6.666667pt;}
.ws9_c00098{word-spacing:12.698413pt;}
.fs0_c00098{font-size:48.000000pt;}
.fs1_c00098{font-size:53.333333pt;}
.y0_c00098{bottom:0.000000pt;}
.y2d_c00098{bottom:140.533333pt;}
.y2c_c00098{bottom:158.133333pt;}
.y2b_c00098{bottom:176.000000pt;}
.y2a_c00098{bottom:193.600000pt;}
.y29_c00098{bottom:211.333333pt;}
.y28_c00098{bottom:229.200000pt;}
.y27_c00098{bottom:246.800000pt;}
.y26_c00098{bottom:264.666667pt;}
.y25_c00098{bottom:282.533333pt;}
.y24_c00098{bottom:300.133333pt;}
.y23_c00098{bottom:317.866667pt;}
.y22_c00098{bottom:335.733333pt;}
.y21_c00098{bottom:353.600000pt;}
.y20_c00098{bottom:371.200000pt;}
.y1f_c00098{bottom:389.066667pt;}
.y1e_c00098{bottom:406.666667pt;}
.y1d_c00098{bottom:424.800000pt;}
.y1c_c00098{bottom:442.400000pt;}
.y1b_c00098{bottom:460.000000pt;}
.y1a_c00098{bottom:477.866667pt;}
.y19_c00098{bottom:495.466667pt;}
.y18_c00098{bottom:513.333333pt;}
.y17_c00098{bottom:531.200000pt;}
.y16_c00098{bottom:548.800000pt;}
.y15_c00098{bottom:566.133333pt;}
.y14_c00098{bottom:584.266667pt;}
.y13_c00098{bottom:601.866667pt;}
.y12_c00098{bottom:619.733333pt;}
.y11_c00098{bottom:637.333333pt;}
.y10_c00098{bottom:654.933333pt;}
.yf_c00098{bottom:672.800000pt;}
.ye_c00098{bottom:690.666667pt;}
.yd_c00098{bottom:708.266667pt;}
.yc_c00098{bottom:726.133333pt;}
.yb_c00098{bottom:743.733333pt;}
.ya_c00098{bottom:761.600000pt;}
.y9_c00098{bottom:779.466667pt;}
.y8_c00098{bottom:797.066667pt;}
.y7_c00098{bottom:814.933333pt;}
.y6_c00098{bottom:832.800000pt;}
.y5_c00098{bottom:850.666667pt;}
.y4_c00098{bottom:868.266667pt;}
.y3_c00098{bottom:885.866667pt;}
.y2_c00098{bottom:903.733333pt;}
.y1_c00098{bottom:937.866667pt;}
.h2_c00098{height:48.000000pt;}
.h3_c00098{height:53.333333pt;}
.h1_c00098{height:1038.000000pt;}
.h0_c00098{height:1038.079997pt;}
.w1_c00098{width:818.000000pt;}
.w0_c00098{width:818.239991pt;}
.x0_c00098{left:0.000000pt;}
.x95_c00098{left:125.200000pt;}
.x1_c00098{left:126.400000pt;}
.x53_c00098{left:139.066667pt;}
.x1a_c00098{left:141.333333pt;}
.x10_c00098{left:144.933333pt;}
.x3a_c00098{left:150.800000pt;}
.xc8_c00098{left:152.666667pt;}
.x55_c00098{left:154.266667pt;}
.x130_c00098{left:155.200000pt;}
.x119_c00098{left:157.733333pt;}
.xe6_c00098{left:158.800000pt;}
.xaa_c00098{left:160.533333pt;}
.x11e_c00098{left:161.733333pt;}
.x1b_c00098{left:163.733333pt;}
.x29_c00098{left:165.600000pt;}
.x6b_c00098{left:167.200000pt;}
.x8a_c00098{left:169.733333pt;}
.xd8_c00098{left:170.933333pt;}
.x61_c00098{left:173.066667pt;}
.xa3_c00098{left:174.400000pt;}
.xc9_c00098{left:176.400000pt;}
.x7f_c00098{left:177.600000pt;}
.x56_c00098{left:178.933333pt;}
.x10e_c00098{left:180.666667pt;}
.xab_c00098{left:183.600000pt;}
.x2a_c00098{left:184.533333pt;}
.x6c_c00098{left:187.333333pt;}
.xe1_c00098{left:188.266667pt;}
.x4_c00098{left:189.866667pt;}
.xbb_c00098{left:191.600000pt;}
.xa4_c00098{left:192.933333pt;}
.x11_c00098{left:194.800000pt;}
.xc3_c00098{left:195.733333pt;}
.x123_c00098{left:197.333333pt;}
.xe7_c00098{left:199.200000pt;}
.x54_c00098{left:200.133333pt;}
.xeb_c00098{left:201.066667pt;}
.xef_c00098{left:202.000000pt;}
.x96_c00098{left:203.866667pt;}
.x8b_c00098{left:206.533333pt;}
.xd4_c00098{left:209.466667pt;}
.x1c_c00098{left:211.466667pt;}
.xf7_c00098{left:214.400000pt;}
.xa5_c00098{left:216.000000pt;}
.xb5_c00098{left:218.666667pt;}
.x80_c00098{left:220.133333pt;}
.x12e_c00098{left:221.466667pt;}
.x12_c00098{left:222.933333pt;}
.x11f_c00098{left:225.066667pt;}
.xca_c00098{left:226.000000pt;}
.xff_c00098{left:227.333333pt;}
.x124_c00098{left:228.400000pt;}
.xac_c00098{left:229.333333pt;}
.x76_c00098{left:231.733333pt;}
.xe2_c00098{left:234.400000pt;}
.x47_c00098{left:236.000000pt;}
.x62_c00098{left:238.933333pt;}
.x81_c00098{left:240.666667pt;}
.x5_c00098{left:242.266667pt;}
.xc4_c00098{left:244.000000pt;}
.xb6_c00098{left:246.533333pt;}
.x97_c00098{left:248.000000pt;}
.xc5_c00098{left:250.666667pt;}
.xcb_c00098{left:252.533333pt;}
.x63_c00098{left:254.266667pt;}
.xad_c00098{left:255.600000pt;}
.x10f_c00098{left:256.533333pt;}
.x2b_c00098{left:257.466667pt;}
.x57_c00098{left:259.866667pt;}
.xa6_c00098{left:260.800000pt;}
.x77_c00098{left:263.733333pt;}
.x3b_c00098{left:266.266667pt;}
.xf8_c00098{left:268.400000pt;}
.x1d_c00098{left:269.333333pt;}
.xb7_c00098{left:271.200000pt;}
.x98_c00098{left:272.933333pt;}
.x2c_c00098{left:276.400000pt;}
.xe3_c00098{left:277.600000pt;}
.xd9_c00098{left:280.266667pt;}
.xec_c00098{left:283.333333pt;}
.xf0_c00098{left:285.866667pt;}
.xbc_c00098{left:286.933333pt;}
.x12f_c00098{left:288.000000pt;}
.x3c_c00098{left:289.333333pt;}
.x6d_c00098{left:290.400000pt;}
.x82_c00098{left:291.866667pt;}
.x8c_c00098{left:293.200000pt;}
.xda_c00098{left:296.933333pt;}
.xcc_c00098{left:298.000000pt;}
.xae_c00098{left:299.466667pt;}
.x2d_c00098{left:301.733333pt;}
.x13_c00098{left:304.266667pt;}
.xd5_c00098{left:306.266667pt;}
.x11c_c00098{left:308.666667pt;}
.x10a_c00098{left:310.133333pt;}
.x110_c00098{left:311.200000pt;}
.x99_c00098{left:313.200000pt;}
.xbd_c00098{left:314.400000pt;}
.x58_c00098{left:315.866667pt;}
.x1e_c00098{left:317.600000pt;}
.xa7_c00098{left:320.000000pt;}
.xc6_c00098{left:322.400000pt;}
.x100_c00098{left:324.933333pt;}
.x106_c00098{left:326.266667pt;}
.x10b_c00098{left:328.000000pt;}
.x6_c00098{left:329.600000pt;}
.xd6_c00098{left:332.533333pt;}
.xf1_c00098{left:334.133333pt;}
.xcd_c00098{left:338.000000pt;}
.x64_c00098{left:339.333333pt;}
.x114_c00098{left:341.200000pt;}
.x9a_c00098{left:342.266667pt;}
.x6e_c00098{left:343.600000pt;}
.x2_c00098{left:345.866667pt;}
.x7_c00098{left:347.200000pt;}
.x2e_c00098{left:348.800000pt;}
.x48_c00098{left:350.266667pt;}
.xf9_c00098{left:351.333333pt;}
.x3d_c00098{left:352.400000pt;}
.x78_c00098{left:353.733333pt;}
.x65_c00098{left:356.000000pt;}
.x8d_c00098{left:357.866667pt;}
.xbe_c00098{left:359.866667pt;}
.x83_c00098{left:361.333333pt;}
.xaf_c00098{left:366.400000pt;}
.x59_c00098{left:369.866667pt;}
.xa8_c00098{left:370.933333pt;}
.x8_c00098{left:373.466667pt;}
.x9b_c00098{left:374.533333pt;}
.x8e_c00098{left:376.133333pt;}
.x115_c00098{left:377.066667pt;}
.xce_c00098{left:378.000000pt;}
.x2f_c00098{left:379.866667pt;}
.x49_c00098{left:380.933333pt;}
.x12c_c00098{left:382.266667pt;}
.xb8_c00098{left:383.200000pt;}
.x11a_c00098{left:388.533333pt;}
.x3e_c00098{left:389.466667pt;}
.xb0_c00098{left:391.733333pt;}
.x30_c00098{left:392.666667pt;}
.x1f_c00098{left:394.400000pt;}
.x79_c00098{left:395.333333pt;}
.x111_c00098{left:398.000000pt;}
.x107_c00098{left:399.200000pt;}
.x101_c00098{left:401.066667pt;}
.x84_c00098{left:402.266667pt;}
.x14_c00098{left:403.733333pt;}
.xe8_c00098{left:408.400000pt;}
.x20_c00098{left:409.733333pt;}
.x8f_c00098{left:410.666667pt;}
.xf2_c00098{left:411.866667pt;}
.x4a_c00098{left:413.600000pt;}
.x9c_c00098{left:415.466667pt;}
.x6f_c00098{left:416.933333pt;}
.xbf_c00098{left:418.666667pt;}
.x31_c00098{left:419.600000pt;}
.x85_c00098{left:421.733333pt;}
.x3f_c00098{left:423.066667pt;}
.x9_c00098{left:427.200000pt;}
.xfa_c00098{left:428.533333pt;}
.x9d_c00098{left:430.800000pt;}
.x21_c00098{left:432.400000pt;}
.x3_c00098{left:433.866667pt;}
.x70_c00098{left:435.866667pt;}
.x108_c00098{left:436.933333pt;}
.x32_c00098{left:438.800000pt;}
.x12d_c00098{left:440.266667pt;}
.x4b_c00098{left:441.466667pt;}
.x5a_c00098{left:442.800000pt;}
.x66_c00098{left:443.733333pt;}
.x15_c00098{left:445.333333pt;}
.xf3_c00098{left:446.533333pt;}
.xb9_c00098{left:447.466667pt;}
.x120_c00098{left:448.400000pt;}
.xfb_c00098{left:451.600000pt;}
.x7a_c00098{left:453.200000pt;}
.xa_c00098{left:455.066667pt;}
.xe4_c00098{left:457.466667pt;}
.x5b_c00098{left:458.533333pt;}
.xb1_c00098{left:460.800000pt;}
.x71_c00098{left:461.733333pt;}
.x4c_c00098{left:464.533333pt;}
.x128_c00098{left:465.733333pt;}
.x22_c00098{left:466.666667pt;}
.x67_c00098{left:470.666667pt;}
.x7b_c00098{left:472.666667pt;}
.xc0_c00098{left:476.266667pt;}
.x11d_c00098{left:477.200000pt;}
.x16_c00098{left:479.866667pt;}
.x40_c00098{left:481.333333pt;}
.x5c_c00098{left:482.533333pt;}
.x23_c00098{left:484.266667pt;}
.xcf_c00098{left:486.133333pt;}
.xb2_c00098{left:487.333333pt;}
.x131_c00098{left:491.200000pt;}
.x33_c00098{left:492.266667pt;}
.x68_c00098{left:493.333333pt;}
.xf4_c00098{left:495.200000pt;}
.xfc_c00098{left:497.066667pt;}
.x41_c00098{left:498.933333pt;}
.x72_c00098{left:499.866667pt;}
.x9e_c00098{left:501.200000pt;}
.x4d_c00098{left:502.666667pt;}
.xb_c00098{left:504.933333pt;}
.x102_c00098{left:507.066667pt;}
.x90_c00098{left:508.666667pt;}
.x24_c00098{left:509.600000pt;}
.x121_c00098{left:510.533333pt;}
.x109_c00098{left:511.866667pt;}
.x125_c00098{left:515.200000pt;}
.xb3_c00098{left:516.133333pt;}
.x7c_c00098{left:517.733333pt;}
.xe9_c00098{left:520.800000pt;}
.xd7_c00098{left:522.266667pt;}
.x86_c00098{left:523.866667pt;}
.xfd_c00098{left:525.200000pt;}
.x4e_c00098{left:528.000000pt;}
.x42_c00098{left:529.066667pt;}
.xed_c00098{left:532.000000pt;}
.xc_c00098{left:534.666667pt;}
.x34_c00098{left:536.400000pt;}
.x10c_c00098{left:539.066667pt;}
.x17_c00098{left:540.000000pt;}
.x126_c00098{left:541.066667pt;}
.x9f_c00098{left:543.466667pt;}
.xdb_c00098{left:545.200000pt;}
.xf5_c00098{left:546.133333pt;}
.x103_c00098{left:548.666667pt;}
.x112_c00098{left:551.466667pt;}
.x35_c00098{left:553.066667pt;}
.x25_c00098{left:554.666667pt;}
.x87_c00098{left:556.800000pt;}
.xc1_c00098{left:559.466667pt;}
.x5d_c00098{left:561.200000pt;}
.x4f_c00098{left:562.266667pt;}
.xdc_c00098{left:563.733333pt;}
.xfe_c00098{left:568.133333pt;}
.x7d_c00098{left:569.866667pt;}
.x69_c00098{left:571.733333pt;}
.x11b_c00098{left:574.000000pt;}
.xc7_c00098{left:575.333333pt;}
.xa0_c00098{left:576.800000pt;}
.x36_c00098{left:578.666667pt;}
.xd0_c00098{left:579.600000pt;}
.x73_c00098{left:580.533333pt;}
.x104_c00098{left:582.000000pt;}
.x91_c00098{left:584.933333pt;}
.xc2_c00098{left:587.600000pt;}
.xdd_c00098{left:590.266667pt;}
.x26_c00098{left:594.000000pt;}
.x7e_c00098{left:596.133333pt;}
.x88_c00098{left:597.333333pt;}
.x5e_c00098{left:600.933333pt;}
.x50_c00098{left:602.533333pt;}
.xd1_c00098{left:604.933333pt;}
.x116_c00098{left:606.266667pt;}
.x105_c00098{left:607.600000pt;}
.x92_c00098{left:608.933333pt;}
.x129_c00098{left:610.000000pt;}
.xd_c00098{left:613.066667pt;}
.x18_c00098{left:614.933333pt;}
.xba_c00098{left:616.266667pt;}
.x74_c00098{left:617.333333pt;}
.xde_c00098{left:619.733333pt;}
.x43_c00098{left:622.533333pt;}
.x37_c00098{left:624.133333pt;}
.xa9_c00098{left:626.133333pt;}
.xee_c00098{left:628.933333pt;}
.x127_c00098{left:631.333333pt;}
.x12a_c00098{left:634.933333pt;}
.x51_c00098{left:636.400000pt;}
.xe_c00098{left:638.400000pt;}
.x44_c00098{left:640.400000pt;}
.xa1_c00098{left:642.666667pt;}
.x5f_c00098{left:643.866667pt;}
.x19_c00098{left:645.333333pt;}
.x93_c00098{left:648.000000pt;}
.x117_c00098{left:649.066667pt;}
.xd2_c00098{left:651.066667pt;}
.x45_c00098{left:653.200000pt;}
.x27_c00098{left:656.400000pt;}
.xea_c00098{left:658.666667pt;}
.x89_c00098{left:660.666667pt;}
.x6a_c00098{left:662.533333pt;}
.x38_c00098{left:664.400000pt;}
.x122_c00098{left:667.333333pt;}
.x52_c00098{left:669.333333pt;}
.x60_c00098{left:673.600000pt;}
.xf6_c00098{left:676.400000pt;}
.xdf_c00098{left:678.000000pt;}
.x113_c00098{left:679.200000pt;}
.x28_c00098{left:680.400000pt;}
.x75_c00098{left:681.333333pt;}
.xf_c00098{left:684.133333pt;}
.x118_c00098{left:685.200000pt;}
.xb4_c00098{left:686.133333pt;}
.xa2_c00098{left:688.400000pt;}
.xd3_c00098{left:689.466667pt;}
.x39_c00098{left:692.533333pt;}
.xe0_c00098{left:693.733333pt;}
.x46_c00098{left:696.400000pt;}
.x94_c00098{left:697.333333pt;}
.xe5_c00098{left:699.333333pt;}
.x10d_c00098{left:701.066667pt;}
.x132_c00098{left:706.533333pt;}
.x12b_c00098{left:709.200000pt;}
}





/* 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_c00099 {
    display:none;
  }
  .loading-indicator_c00099.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00099 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_c00099 { 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_c00099" -> "#page-container .classname_c00099")
 */
.pf_c00099 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00099 { /* 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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00099 { /* 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_c00099 { /* 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_c00099 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00099 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00099 {overflow:visible;}
  }
}
.c_c00099 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00099 { /* 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_c00099:after { /* webkit #35443 */
  content: '';
}
.t_c00099:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00099 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 */
}
.__c00099 { /* 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_c00099 { /* info for Javascript */
  display:none;
}
.l_c00099 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00099 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00099 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00099: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_c00099 {
    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_c00099.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00099.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_c00099 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00099{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.000000;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;}
.ma_c00099{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00099{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m48_c00099{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00099{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00099{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00099{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m54_c00099{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00099{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m72_c00099{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m71_c00099{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m77_c00099{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m81_c00099{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m59_c00099{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00099{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9_c00099{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00099{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00099{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00099{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m47_c00099{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00099{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00099{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00099{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m55_c00099{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00099{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m74_c00099{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00099{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m52_c00099{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m66_c00099{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00099{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00099{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00099{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00099{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m86_c00099{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00099{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m85_c00099{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00099{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m46_c00099{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00099{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00099{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00099{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m65_c00099{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m93_c00099{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m75_c00099{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m60_c00099{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m90_c00099{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m95_c00099{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m64_c00099{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m70_c00099{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00099{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00099{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00099{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00099{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m57_c00099{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m73_c00099{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00099{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m79_c00099{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m91_c00099{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00099{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00099{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00099{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00099{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00099{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m41_c00099{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m94_c00099{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00099{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m84_c00099{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00099{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10_c00099{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m26_c00099{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m27_c00099{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00099{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m50_c00099{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m87_c00099{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m56_c00099{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8_c00099{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m80_c00099{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m92_c00099{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m40_c00099{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m88_c00099{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00099{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00099{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m45_c00099{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m51_c00099{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00099{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m62_c00099{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m49_c00099{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m68_c00099{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m89_c00099{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00099{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m43_c00099{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m82_c00099{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m67_c00099{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m61_c00099{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00099{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00099{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m69_c00099{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m42_c00099{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00099{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00099{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m97_c00099{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m63_c00099{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m53_c00099{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m98_c00099{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m96_c00099{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00099{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00099{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00099{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m83_c00099{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m76_c00099{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00099{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00099{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m44_c00099{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00099{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00099{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00099{vertical-align:0.000000px;}
.ls0_c00099{letter-spacing:0.000000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{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__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00099{word-spacing:-6.808511px;}
.ws5_c00099{word-spacing:-6.527778px;}
.ws8_c00099{word-spacing:-4.861111px;}
.ws4_c00099{word-spacing:-3.942652px;}
.wsc_c00099{word-spacing:0.000000px;}
.ws2_c00099{word-spacing:2.878788px;}
.ws6_c00099{word-spacing:5.641026px;}
.wsb_c00099{word-spacing:7.115385px;}
.ws3_c00099{word-spacing:8.641975px;}
.ws9_c00099{word-spacing:9.545455px;}
.ws7_c00099{word-spacing:9.661017px;}
.ws1_c00099{word-spacing:14.861111px;}
.ws0_c00099{word-spacing:15.657895px;}
.fc0_c00099{color:transparent;}
.fs2_c00099{font-size:42.000000px;}
.fs0_c00099{font-size:54.000000px;}
.fs1_c00099{font-size:60.000000px;}
.y0_c00099{bottom:0.000000px;}
.y2e_c00099{bottom:126.000000px;}
.y2d_c00099{bottom:146.100000px;}
.y2c_c00099{bottom:166.200000px;}
.y2b_c00099{bottom:186.000000px;}
.y2a_c00099{bottom:205.500000px;}
.y29_c00099{bottom:225.600000px;}
.y28_c00099{bottom:245.400000px;}
.y27_c00099{bottom:265.500000px;}
.y26_c00099{bottom:285.300000px;}
.y25_c00099{bottom:305.100000px;}
.y24_c00099{bottom:325.200000px;}
.y23_c00099{bottom:345.000000px;}
.y22_c00099{bottom:364.800000px;}
.y21_c00099{bottom:384.600000px;}
.y20_c00099{bottom:404.400000px;}
.y1f_c00099{bottom:424.500000px;}
.y1e_c00099{bottom:444.300000px;}
.y1d_c00099{bottom:464.400000px;}
.y1c_c00099{bottom:484.200000px;}
.y1b_c00099{bottom:504.000000px;}
.y1a_c00099{bottom:523.800000px;}
.y19_c00099{bottom:543.600000px;}
.y18_c00099{bottom:563.400000px;}
.y17_c00099{bottom:583.350000px;}
.y16_c00099{bottom:603.450000px;}
.y15_c00099{bottom:623.250000px;}
.y14_c00099{bottom:643.350000px;}
.y13_c00099{bottom:663.150000px;}
.y12_c00099{bottom:682.950000px;}
.y11_c00099{bottom:702.750000px;}
.y10_c00099{bottom:722.550000px;}
.yf_c00099{bottom:742.350000px;}
.ye_c00099{bottom:762.150000px;}
.yd_c00099{bottom:782.250000px;}
.yc_c00099{bottom:802.050000px;}
.yb_c00099{bottom:821.850000px;}
.ya_c00099{bottom:842.250000px;}
.y9_c00099{bottom:862.050000px;}
.y8_c00099{bottom:882.150000px;}
.y7_c00099{bottom:902.250000px;}
.y6_c00099{bottom:922.050000px;}
.y5_c00099{bottom:941.850000px;}
.y4_c00099{bottom:961.650000px;}
.y3_c00099{bottom:981.450000px;}
.y2_c00099{bottom:1001.550000px;}
.y1_c00099{bottom:1040.100000px;}
.h4_c00099{height:42.000000px;}
.h2_c00099{height:54.000000px;}
.h3_c00099{height:60.000000px;}
.h1_c00099{height:1167.750000px;}
.h0_c00099{height:1167.839997px;}
.w1_c00099{width:920.250000px;}
.w0_c00099{width:920.519990px;}
.x0_c00099{left:0.000000px;}
.x141_c00099{left:109.350000px;}
.x12d_c00099{left:110.400000px;}
.x124_c00099{left:111.450000px;}
.x101_c00099{left:112.500000px;}
.x5_c00099{left:114.150000px;}
.x16_c00099{left:115.650000px;}
.x97_c00099{left:116.850000px;}
.x13e_c00099{left:127.200000px;}
.x142_c00099{left:129.450000px;}
.x2f_c00099{left:130.500000px;}
.x79_c00099{left:132.450000px;}
.xe5_c00099{left:134.250000px;}
.x59_c00099{left:136.350000px;}
.x98_c00099{left:137.400000px;}
.xcb_c00099{left:140.100000px;}
.x11c_c00099{left:142.050000px;}
.xbc_c00099{left:143.100000px;}
.xdd_c00099{left:144.750000px;}
.x67_c00099{left:146.100000px;}
.x13b_c00099{left:147.450000px;}
.x4a_c00099{left:149.250000px;}
.x132_c00099{left:151.950000px;}
.x23_c00099{left:154.500000px;}
.xa5_c00099{left:155.700000px;}
.x17_c00099{left:156.750000px;}
.x30_c00099{left:161.850000px;}
.x83_c00099{left:163.200000px;}
.x109_c00099{left:164.700000px;}
.x5a_c00099{left:165.900000px;}
.xf6_c00099{left:169.950000px;}
.xfc_c00099{left:171.300000px;}
.x7a_c00099{left:172.350000px;}
.x63_c00099{left:173.850000px;}
.x6f_c00099{left:175.050000px;}
.x102_c00099{left:176.550000px;}
.x125_c00099{left:179.850000px;}
.x4b_c00099{left:181.350000px;}
.x6_c00099{left:184.050000px;}
.x24_c00099{left:185.850000px;}
.x12e_c00099{left:187.500000px;}
.xcc_c00099{left:189.000000px;}
.xd3_c00099{left:190.650000px;}
.xeb_c00099{left:192.750000px;}
.x18_c00099{left:195.600000px;}
.x126_c00099{left:198.150000px;}
.xc6_c00099{left:202.200000px;}
.x84_c00099{left:204.300000px;}
.x99_c00099{left:205.500000px;}
.x3b_c00099{left:206.700000px;}
.x133_c00099{left:208.050000px;}
.x68_c00099{left:209.850000px;}
.x5b_c00099{left:213.000000px;}
.x19_c00099{left:215.400000px;}
.xa6_c00099{left:217.200000px;}
.xd4_c00099{left:219.150000px;}
.xb7_c00099{left:220.200000px;}
.xbd_c00099{left:222.600000px;}
.x31_c00099{left:224.100000px;}
.x70_c00099{left:225.900000px;}
.x7_c00099{left:226.950000px;}
.xde_c00099{left:228.300000px;}
.x8d_c00099{left:232.950000px;}
.x103_c00099{left:240.000000px;}
.x12f_c00099{left:241.050000px;}
.xaf_c00099{left:242.400000px;}
.x85_c00099{left:244.650000px;}
.x25_c00099{left:248.100000px;}
.x3c_c00099{left:249.900000px;}
.xa7_c00099{left:251.100000px;}
.x9a_c00099{left:252.300000px;}
.xdf_c00099{left:254.250000px;}
.xbe_c00099{left:255.300000px;}
.x8_c00099{left:256.800000px;}
.x143_c00099{left:259.800000px;}
.x10c_c00099{left:261.750000px;}
.x4c_c00099{left:264.150000px;}
.x10f_c00099{left:266.250000px;}
.x121_c00099{left:268.950000px;}
.x71_c00099{left:271.200000px;}
.xf3_c00099{left:273.900000px;}
.x8e_c00099{left:275.400000px;}
.x26_c00099{left:276.900000px;}
.xec_c00099{left:278.850000px;}
.x1a_c00099{left:280.500000px;}
.x5c_c00099{left:281.700000px;}
.x4d_c00099{left:283.650000px;}
.xd5_c00099{left:284.700000px;}
.xc7_c00099{left:287.100000px;}
.xa8_c00099{left:288.600000px;}
.xcd_c00099{left:290.550000px;}
.x9_c00099{left:295.650000px;}
.x5d_c00099{left:297.600000px;}
.x104_c00099{left:298.650000px;}
.xed_c00099{left:300.450000px;}
.x3d_c00099{left:302.100000px;}
.xbf_c00099{left:304.200000px;}
.xb8_c00099{left:305.250000px;}
.x8f_c00099{left:308.400000px;}
.x4e_c00099{left:309.900000px;}
.xd6_c00099{left:311.700000px;}
.x110_c00099{left:313.050000px;}
.x32_c00099{left:315.600000px;}
.xb0_c00099{left:316.950000px;}
.x9b_c00099{left:318.600000px;}
.x86_c00099{left:321.300000px;}
.xc0_c00099{left:324.000000px;}
.x27_c00099{left:326.250000px;}
.x90_c00099{left:327.450000px;}
.x134_c00099{left:328.950000px;}
.x3e_c00099{left:330.150000px;}
.xd7_c00099{left:331.500000px;}
.xa_c00099{left:333.450000px;}
.x1b_c00099{left:335.550000px;}
.x69_c00099{left:339.000000px;}
.xfd_c00099{left:341.550000px;}
.x9c_c00099{left:344.100000px;}
.xb1_c00099{left:345.750000px;}
.x10a_c00099{left:349.950000px;}
.x117_c00099{left:351.900000px;}
.x127_c00099{left:353.550000px;}
.x4f_c00099{left:355.950000px;}
.xd8_c00099{left:357.750000px;}
.xfe_c00099{left:359.250000px;}
.xe6_c00099{left:361.800000px;}
.xb_c00099{left:364.050000px;}
.xf7_c00099{left:365.400000px;}
.x28_c00099{left:366.600000px;}
.xee_c00099{left:368.400000px;}
.x3f_c00099{left:369.750000px;}
.x1_c00099{left:373.650000px;}
.x1c_c00099{left:375.150000px;}
.x6a_c00099{left:376.800000px;}
.xe0_c00099{left:378.750000px;}
.x111_c00099{left:380.400000px;}
.x33_c00099{left:382.500000px;}
.x130_c00099{left:384.600000px;}
.x72_c00099{left:387.450000px;}
.x13c_c00099{left:389.250000px;}
.x40_c00099{left:392.400000px;}
.x50_c00099{left:393.750000px;}
.xd9_c00099{left:396.600000px;}
.x9d_c00099{left:397.800000px;}
.x7b_c00099{left:399.150000px;}
.x10d_c00099{left:401.100000px;}
.xe7_c00099{left:402.450000px;}
.xc_c00099{left:403.650000px;}
.x87_c00099{left:405.150000px;}
.x2_c00099{left:407.550000px;}
.xb2_c00099{left:409.200000px;}
.x9e_c00099{left:412.500000px;}
.x1d_c00099{left:414.000000px;}
.xce_c00099{left:415.950000px;}
.x112_c00099{left:419.700000px;}
.x51_c00099{left:421.050000px;}
.xda_c00099{left:422.100000px;}
.x41_c00099{left:424.050000px;}
.x64_c00099{left:428.400000px;}
.x115_c00099{left:430.800000px;}
.x7c_c00099{left:431.850000px;}
.xc8_c00099{left:435.000000px;}
.x73_c00099{left:436.050000px;}
.xe8_c00099{left:437.400000px;}
.x10b_c00099{left:440.250000px;}
.x91_c00099{left:443.100000px;}
.x34_c00099{left:445.050000px;}
.x7d_c00099{left:448.350000px;}
.x118_c00099{left:449.550000px;}
.x5e_c00099{left:451.200000px;}
.x29_c00099{left:452.250000px;}
.xd_c00099{left:453.300000px;}
.xf4_c00099{left:454.800000px;}
.x88_c00099{left:457.050000px;}
.x52_c00099{left:459.900000px;}
.x105_c00099{left:462.750000px;}
.x42_c00099{left:464.400000px;}
.xe_c00099{left:467.700000px;}
.xdb_c00099{left:469.950000px;}
.x5f_c00099{left:472.050000px;}
.x3_c00099{left:473.400000px;}
.x35_c00099{left:475.350000px;}
.xef_c00099{left:477.450000px;}
.x12c_c00099{left:478.650000px;}
.x53_c00099{left:479.700000px;}
.xb3_c00099{left:481.950000px;}
.x89_c00099{left:485.100000px;}
.xf8_c00099{left:486.750000px;}
.x7e_c00099{left:488.700000px;}
.xcf_c00099{left:490.350000px;}
.xc1_c00099{left:493.500000px;}
.xdc_c00099{left:495.450000px;}
.xf_c00099{left:496.500000px;}
.x11d_c00099{left:497.700000px;}
.xc9_c00099{left:499.500000px;}
.x113_c00099{left:500.700000px;}
.x13f_c00099{left:501.900000px;}
.x135_c00099{left:505.650000px;}
.x106_c00099{left:509.550000px;}
.x36_c00099{left:511.050000px;}
.x60_c00099{left:512.400000px;}
.x6b_c00099{left:514.650000px;}
.x138_c00099{left:517.050000px;}
.xa9_c00099{left:520.350000px;}
.xf0_c00099{left:522.900000px;}
.x74_c00099{left:526.350000px;}
.x43_c00099{left:527.400000px;}
.x7f_c00099{left:529.050000px;}
.xe1_c00099{left:530.400000px;}
.x114_c00099{left:532.800000px;}
.xff_c00099{left:534.750000px;}
.xe9_c00099{left:536.850000px;}
.x92_c00099{left:540.600000px;}
.x2a_c00099{left:542.250000px;}
.x6c_c00099{left:544.200000px;}
.xe2_c00099{left:545.850000px;}
.x1e_c00099{left:546.900000px;}
.xaa_c00099{left:548.850000px;}
.x9f_c00099{left:550.950000px;}
.x54_c00099{left:553.200000px;}
.x128_c00099{left:555.150000px;}
.xc2_c00099{left:556.500000px;}
.xf9_c00099{left:558.750000px;}
.x44_c00099{left:561.300000px;}
.x10_c00099{left:563.850000px;}
.x75_c00099{left:565.950000px;}
.x80_c00099{left:567.150000px;}
.x55_c00099{left:568.350000px;}
.x8a_c00099{left:569.400000px;}
.xb9_c00099{left:571.200000px;}
.xb4_c00099{left:572.250000px;}
.x1f_c00099{left:574.650000px;}
.x129_c00099{left:576.750000px;}
.xc3_c00099{left:577.800000px;}
.xa0_c00099{left:580.050000px;}
.x136_c00099{left:582.000000px;}
.x76_c00099{left:583.950000px;}
.x11_c00099{left:586.500000px;}
.x8b_c00099{left:589.200000px;}
.xf1_c00099{left:591.000000px;}
.x93_c00099{left:594.600000px;}
.x45_c00099{left:598.050000px;}
.xe3_c00099{left:599.550000px;}
.x2b_c00099{left:600.600000px;}
.xd0_c00099{left:602.250000px;}
.x139_c00099{left:603.450000px;}
.x81_c00099{left:604.650000px;}
.x56_c00099{left:606.450000px;}
.x144_c00099{left:607.800000px;}
.x37_c00099{left:609.000000px;}
.x77_c00099{left:610.650000px;}
.x119_c00099{left:612.600000px;}
.xf2_c00099{left:614.700000px;}
.x12_c00099{left:616.800000px;}
.xab_c00099{left:621.150000px;}
.x46_c00099{left:622.950000px;}
.x6d_c00099{left:625.200000px;}
.x10e_c00099{left:626.550000px;}
.x2c_c00099{left:629.400000px;}
.x13d_c00099{left:633.300000px;}
.x82_c00099{left:634.950000px;}
.x38_c00099{left:637.800000px;}
.x11e_c00099{left:638.850000px;}
.x20_c00099{left:640.200000px;}
.xf5_c00099{left:641.250000px;}
.x65_c00099{left:643.050000px;}
.x13_c00099{left:644.850000px;}
.x61_c00099{left:647.400000px;}
.xc4_c00099{left:648.600000px;}
.xa1_c00099{left:649.950000px;}
.xea_c00099{left:652.050000px;}
.xb5_c00099{left:653.550000px;}
.xba_c00099{left:655.200000px;}
.x122_c00099{left:658.350000px;}
.x12a_c00099{left:659.850000px;}
.x140_c00099{left:661.350000px;}
.xac_c00099{left:663.750000px;}
.x66_c00099{left:664.950000px;}
.x8c_c00099{left:667.350000px;}
.x14_c00099{left:668.550000px;}
.xa2_c00099{left:670.500000px;}
.x78_c00099{left:672.150000px;}
.x94_c00099{left:674.550000px;}
.x6e_c00099{left:678.150000px;}
.x11f_c00099{left:681.000000px;}
.x39_c00099{left:683.100000px;}
.x12b_c00099{left:685.350000px;}
.x47_c00099{left:688.050000px;}
.x11a_c00099{left:689.550000px;}
.xbb_c00099{left:690.900000px;}
.xd1_c00099{left:692.850000px;}
.x2d_c00099{left:694.950000px;}
.x116_c00099{left:696.150000px;}
.x57_c00099{left:697.950000px;}
.x107_c00099{left:700.350000px;}
.x21_c00099{left:701.700000px;}
.xa3_c00099{left:705.000000px;}
.xfa_c00099{left:706.650000px;}
.x95_c00099{left:708.450000px;}
.x11b_c00099{left:714.450000px;}
.x100_c00099{left:715.500000px;}
.x48_c00099{left:716.850000px;}
.x58_c00099{left:719.550000px;}
.xd2_c00099{left:721.650000px;}
.x96_c00099{left:723.150000px;}
.xb6_c00099{left:726.300000px;}
.x145_c00099{left:728.100000px;}
.x120_c00099{left:730.650000px;}
.xad_c00099{left:732.900000px;}
.x22_c00099{left:738.000000px;}
.x13a_c00099{left:740.250000px;}
.x62_c00099{left:741.600000px;}
.x123_c00099{left:742.950000px;}
.x49_c00099{left:745.350000px;}
.x108_c00099{left:746.400000px;}
.x131_c00099{left:747.450000px;}
.xae_c00099{left:751.200000px;}
.x137_c00099{left:752.250000px;}
.xc5_c00099{left:754.500000px;}
.xa4_c00099{left:756.450000px;}
.x15_c00099{left:758.550000px;}
.x3a_c00099{left:760.500000px;}
.xe4_c00099{left:762.450000px;}
.x4_c00099{left:764.250000px;}
.xfb_c00099{left:766.350000px;}
.x2e_c00099{left:768.000000px;}
.xca_c00099{left:775.950000px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls0_c00099{letter-spacing:0.000000pt;}
.wsa_c00099{word-spacing:-6.052009pt;}
.ws5_c00099{word-spacing:-5.802469pt;}
.ws8_c00099{word-spacing:-4.320988pt;}
.ws4_c00099{word-spacing:-3.504580pt;}
.wsc_c00099{word-spacing:0.000000pt;}
.ws2_c00099{word-spacing:2.558923pt;}
.ws6_c00099{word-spacing:5.014245pt;}
.wsb_c00099{word-spacing:6.324786pt;}
.ws3_c00099{word-spacing:7.681756pt;}
.ws9_c00099{word-spacing:8.484848pt;}
.ws7_c00099{word-spacing:8.587571pt;}
.ws1_c00099{word-spacing:13.209877pt;}
.ws0_c00099{word-spacing:13.918129pt;}
.fs2_c00099{font-size:37.333333pt;}
.fs0_c00099{font-size:48.000000pt;}
.fs1_c00099{font-size:53.333333pt;}
.y0_c00099{bottom:0.000000pt;}
.y2e_c00099{bottom:112.000000pt;}
.y2d_c00099{bottom:129.866667pt;}
.y2c_c00099{bottom:147.733333pt;}
.y2b_c00099{bottom:165.333333pt;}
.y2a_c00099{bottom:182.666667pt;}
.y29_c00099{bottom:200.533333pt;}
.y28_c00099{bottom:218.133333pt;}
.y27_c00099{bottom:236.000000pt;}
.y26_c00099{bottom:253.600000pt;}
.y25_c00099{bottom:271.200000pt;}
.y24_c00099{bottom:289.066667pt;}
.y23_c00099{bottom:306.666667pt;}
.y22_c00099{bottom:324.266667pt;}
.y21_c00099{bottom:341.866667pt;}
.y20_c00099{bottom:359.466667pt;}
.y1f_c00099{bottom:377.333333pt;}
.y1e_c00099{bottom:394.933333pt;}
.y1d_c00099{bottom:412.800000pt;}
.y1c_c00099{bottom:430.400000pt;}
.y1b_c00099{bottom:448.000000pt;}
.y1a_c00099{bottom:465.600000pt;}
.y19_c00099{bottom:483.200000pt;}
.y18_c00099{bottom:500.800000pt;}
.y17_c00099{bottom:518.533333pt;}
.y16_c00099{bottom:536.400000pt;}
.y15_c00099{bottom:554.000000pt;}
.y14_c00099{bottom:571.866667pt;}
.y13_c00099{bottom:589.466667pt;}
.y12_c00099{bottom:607.066667pt;}
.y11_c00099{bottom:624.666667pt;}
.y10_c00099{bottom:642.266667pt;}
.yf_c00099{bottom:659.866667pt;}
.ye_c00099{bottom:677.466667pt;}
.yd_c00099{bottom:695.333333pt;}
.yc_c00099{bottom:712.933333pt;}
.yb_c00099{bottom:730.533333pt;}
.ya_c00099{bottom:748.666667pt;}
.y9_c00099{bottom:766.266667pt;}
.y8_c00099{bottom:784.133333pt;}
.y7_c00099{bottom:802.000000pt;}
.y6_c00099{bottom:819.600000pt;}
.y5_c00099{bottom:837.200000pt;}
.y4_c00099{bottom:854.800000pt;}
.y3_c00099{bottom:872.400000pt;}
.y2_c00099{bottom:890.266667pt;}
.y1_c00099{bottom:924.533333pt;}
.h4_c00099{height:37.333333pt;}
.h2_c00099{height:48.000000pt;}
.h3_c00099{height:53.333333pt;}
.h1_c00099{height:1038.000000pt;}
.h0_c00099{height:1038.079997pt;}
.w1_c00099{width:818.000000pt;}
.w0_c00099{width:818.239991pt;}
.x0_c00099{left:0.000000pt;}
.x141_c00099{left:97.200000pt;}
.x12d_c00099{left:98.133333pt;}
.x124_c00099{left:99.066667pt;}
.x101_c00099{left:100.000000pt;}
.x5_c00099{left:101.466667pt;}
.x16_c00099{left:102.800000pt;}
.x97_c00099{left:103.866667pt;}
.x13e_c00099{left:113.066667pt;}
.x142_c00099{left:115.066667pt;}
.x2f_c00099{left:116.000000pt;}
.x79_c00099{left:117.733333pt;}
.xe5_c00099{left:119.333333pt;}
.x59_c00099{left:121.200000pt;}
.x98_c00099{left:122.133333pt;}
.xcb_c00099{left:124.533333pt;}
.x11c_c00099{left:126.266667pt;}
.xbc_c00099{left:127.200000pt;}
.xdd_c00099{left:128.666667pt;}
.x67_c00099{left:129.866667pt;}
.x13b_c00099{left:131.066667pt;}
.x4a_c00099{left:132.666667pt;}
.x132_c00099{left:135.066667pt;}
.x23_c00099{left:137.333333pt;}
.xa5_c00099{left:138.400000pt;}
.x17_c00099{left:139.333333pt;}
.x30_c00099{left:143.866667pt;}
.x83_c00099{left:145.066667pt;}
.x109_c00099{left:146.400000pt;}
.x5a_c00099{left:147.466667pt;}
.xf6_c00099{left:151.066667pt;}
.xfc_c00099{left:152.266667pt;}
.x7a_c00099{left:153.200000pt;}
.x63_c00099{left:154.533333pt;}
.x6f_c00099{left:155.600000pt;}
.x102_c00099{left:156.933333pt;}
.x125_c00099{left:159.866667pt;}
.x4b_c00099{left:161.200000pt;}
.x6_c00099{left:163.600000pt;}
.x24_c00099{left:165.200000pt;}
.x12e_c00099{left:166.666667pt;}
.xcc_c00099{left:168.000000pt;}
.xd3_c00099{left:169.466667pt;}
.xeb_c00099{left:171.333333pt;}
.x18_c00099{left:173.866667pt;}
.x126_c00099{left:176.133333pt;}
.xc6_c00099{left:179.733333pt;}
.x84_c00099{left:181.600000pt;}
.x99_c00099{left:182.666667pt;}
.x3b_c00099{left:183.733333pt;}
.x133_c00099{left:184.933333pt;}
.x68_c00099{left:186.533333pt;}
.x5b_c00099{left:189.333333pt;}
.x19_c00099{left:191.466667pt;}
.xa6_c00099{left:193.066667pt;}
.xd4_c00099{left:194.800000pt;}
.xb7_c00099{left:195.733333pt;}
.xbd_c00099{left:197.866667pt;}
.x31_c00099{left:199.200000pt;}
.x70_c00099{left:200.800000pt;}
.x7_c00099{left:201.733333pt;}
.xde_c00099{left:202.933333pt;}
.x8d_c00099{left:207.066667pt;}
.x103_c00099{left:213.333333pt;}
.x12f_c00099{left:214.266667pt;}
.xaf_c00099{left:215.466667pt;}
.x85_c00099{left:217.466667pt;}
.x25_c00099{left:220.533333pt;}
.x3c_c00099{left:222.133333pt;}
.xa7_c00099{left:223.200000pt;}
.x9a_c00099{left:224.266667pt;}
.xdf_c00099{left:226.000000pt;}
.xbe_c00099{left:226.933333pt;}
.x8_c00099{left:228.266667pt;}
.x143_c00099{left:230.933333pt;}
.x10c_c00099{left:232.666667pt;}
.x4c_c00099{left:234.800000pt;}
.x10f_c00099{left:236.666667pt;}
.x121_c00099{left:239.066667pt;}
.x71_c00099{left:241.066667pt;}
.xf3_c00099{left:243.466667pt;}
.x8e_c00099{left:244.800000pt;}
.x26_c00099{left:246.133333pt;}
.xec_c00099{left:247.866667pt;}
.x1a_c00099{left:249.333333pt;}
.x5c_c00099{left:250.400000pt;}
.x4d_c00099{left:252.133333pt;}
.xd5_c00099{left:253.066667pt;}
.xc7_c00099{left:255.200000pt;}
.xa8_c00099{left:256.533333pt;}
.xcd_c00099{left:258.266667pt;}
.x9_c00099{left:262.800000pt;}
.x5d_c00099{left:264.533333pt;}
.x104_c00099{left:265.466667pt;}
.xed_c00099{left:267.066667pt;}
.x3d_c00099{left:268.533333pt;}
.xbf_c00099{left:270.400000pt;}
.xb8_c00099{left:271.333333pt;}
.x8f_c00099{left:274.133333pt;}
.x4e_c00099{left:275.466667pt;}
.xd6_c00099{left:277.066667pt;}
.x110_c00099{left:278.266667pt;}
.x32_c00099{left:280.533333pt;}
.xb0_c00099{left:281.733333pt;}
.x9b_c00099{left:283.200000pt;}
.x86_c00099{left:285.600000pt;}
.xc0_c00099{left:288.000000pt;}
.x27_c00099{left:290.000000pt;}
.x90_c00099{left:291.066667pt;}
.x134_c00099{left:292.400000pt;}
.x3e_c00099{left:293.466667pt;}
.xd7_c00099{left:294.666667pt;}
.xa_c00099{left:296.400000pt;}
.x1b_c00099{left:298.266667pt;}
.x69_c00099{left:301.333333pt;}
.xfd_c00099{left:303.600000pt;}
.x9c_c00099{left:305.866667pt;}
.xb1_c00099{left:307.333333pt;}
.x10a_c00099{left:311.066667pt;}
.x117_c00099{left:312.800000pt;}
.x127_c00099{left:314.266667pt;}
.x4f_c00099{left:316.400000pt;}
.xd8_c00099{left:318.000000pt;}
.xfe_c00099{left:319.333333pt;}
.xe6_c00099{left:321.600000pt;}
.xb_c00099{left:323.600000pt;}
.xf7_c00099{left:324.800000pt;}
.x28_c00099{left:325.866667pt;}
.xee_c00099{left:327.466667pt;}
.x3f_c00099{left:328.666667pt;}
.x1_c00099{left:332.133333pt;}
.x1c_c00099{left:333.466667pt;}
.x6a_c00099{left:334.933333pt;}
.xe0_c00099{left:336.666667pt;}
.x111_c00099{left:338.133333pt;}
.x33_c00099{left:340.000000pt;}
.x130_c00099{left:341.866667pt;}
.x72_c00099{left:344.400000pt;}
.x13c_c00099{left:346.000000pt;}
.x40_c00099{left:348.800000pt;}
.x50_c00099{left:350.000000pt;}
.xd9_c00099{left:352.533333pt;}
.x9d_c00099{left:353.600000pt;}
.x7b_c00099{left:354.800000pt;}
.x10d_c00099{left:356.533333pt;}
.xe7_c00099{left:357.733333pt;}
.xc_c00099{left:358.800000pt;}
.x87_c00099{left:360.133333pt;}
.x2_c00099{left:362.266667pt;}
.xb2_c00099{left:363.733333pt;}
.x9e_c00099{left:366.666667pt;}
.x1d_c00099{left:368.000000pt;}
.xce_c00099{left:369.733333pt;}
.x112_c00099{left:373.066667pt;}
.x51_c00099{left:374.266667pt;}
.xda_c00099{left:375.200000pt;}
.x41_c00099{left:376.933333pt;}
.x64_c00099{left:380.800000pt;}
.x115_c00099{left:382.933333pt;}
.x7c_c00099{left:383.866667pt;}
.xc8_c00099{left:386.666667pt;}
.x73_c00099{left:387.600000pt;}
.xe8_c00099{left:388.800000pt;}
.x10b_c00099{left:391.333333pt;}
.x91_c00099{left:393.866667pt;}
.x34_c00099{left:395.600000pt;}
.x7d_c00099{left:398.533333pt;}
.x118_c00099{left:399.600000pt;}
.x5e_c00099{left:401.066667pt;}
.x29_c00099{left:402.000000pt;}
.xd_c00099{left:402.933333pt;}
.xf4_c00099{left:404.266667pt;}
.x88_c00099{left:406.266667pt;}
.x52_c00099{left:408.800000pt;}
.x105_c00099{left:411.333333pt;}
.x42_c00099{left:412.800000pt;}
.xe_c00099{left:415.733333pt;}
.xdb_c00099{left:417.733333pt;}
.x5f_c00099{left:419.600000pt;}
.x3_c00099{left:420.800000pt;}
.x35_c00099{left:422.533333pt;}
.xef_c00099{left:424.400000pt;}
.x12c_c00099{left:425.466667pt;}
.x53_c00099{left:426.400000pt;}
.xb3_c00099{left:428.400000pt;}
.x89_c00099{left:431.200000pt;}
.xf8_c00099{left:432.666667pt;}
.x7e_c00099{left:434.400000pt;}
.xcf_c00099{left:435.866667pt;}
.xc1_c00099{left:438.666667pt;}
.xdc_c00099{left:440.400000pt;}
.xf_c00099{left:441.333333pt;}
.x11d_c00099{left:442.400000pt;}
.xc9_c00099{left:444.000000pt;}
.x113_c00099{left:445.066667pt;}
.x13f_c00099{left:446.133333pt;}
.x135_c00099{left:449.466667pt;}
.x106_c00099{left:452.933333pt;}
.x36_c00099{left:454.266667pt;}
.x60_c00099{left:455.466667pt;}
.x6b_c00099{left:457.466667pt;}
.x138_c00099{left:459.600000pt;}
.xa9_c00099{left:462.533333pt;}
.xf0_c00099{left:464.800000pt;}
.x74_c00099{left:467.866667pt;}
.x43_c00099{left:468.800000pt;}
.x7f_c00099{left:470.266667pt;}
.xe1_c00099{left:471.466667pt;}
.x114_c00099{left:473.600000pt;}
.xff_c00099{left:475.333333pt;}
.xe9_c00099{left:477.200000pt;}
.x92_c00099{left:480.533333pt;}
.x2a_c00099{left:482.000000pt;}
.x6c_c00099{left:483.733333pt;}
.xe2_c00099{left:485.200000pt;}
.x1e_c00099{left:486.133333pt;}
.xaa_c00099{left:487.866667pt;}
.x9f_c00099{left:489.733333pt;}
.x54_c00099{left:491.733333pt;}
.x128_c00099{left:493.466667pt;}
.xc2_c00099{left:494.666667pt;}
.xf9_c00099{left:496.666667pt;}
.x44_c00099{left:498.933333pt;}
.x10_c00099{left:501.200000pt;}
.x75_c00099{left:503.066667pt;}
.x80_c00099{left:504.133333pt;}
.x55_c00099{left:505.200000pt;}
.x8a_c00099{left:506.133333pt;}
.xb9_c00099{left:507.733333pt;}
.xb4_c00099{left:508.666667pt;}
.x1f_c00099{left:510.800000pt;}
.x129_c00099{left:512.666667pt;}
.xc3_c00099{left:513.600000pt;}
.xa0_c00099{left:515.600000pt;}
.x136_c00099{left:517.333333pt;}
.x76_c00099{left:519.066667pt;}
.x11_c00099{left:521.333333pt;}
.x8b_c00099{left:523.733333pt;}
.xf1_c00099{left:525.333333pt;}
.x93_c00099{left:528.533333pt;}
.x45_c00099{left:531.600000pt;}
.xe3_c00099{left:532.933333pt;}
.x2b_c00099{left:533.866667pt;}
.xd0_c00099{left:535.333333pt;}
.x139_c00099{left:536.400000pt;}
.x81_c00099{left:537.466667pt;}
.x56_c00099{left:539.066667pt;}
.x144_c00099{left:540.266667pt;}
.x37_c00099{left:541.333333pt;}
.x77_c00099{left:542.800000pt;}
.x119_c00099{left:544.533333pt;}
.xf2_c00099{left:546.400000pt;}
.x12_c00099{left:548.266667pt;}
.xab_c00099{left:552.133333pt;}
.x46_c00099{left:553.733333pt;}
.x6d_c00099{left:555.733333pt;}
.x10e_c00099{left:556.933333pt;}
.x2c_c00099{left:559.466667pt;}
.x13d_c00099{left:562.933333pt;}
.x82_c00099{left:564.400000pt;}
.x38_c00099{left:566.933333pt;}
.x11e_c00099{left:567.866667pt;}
.x20_c00099{left:569.066667pt;}
.xf5_c00099{left:570.000000pt;}
.x65_c00099{left:571.600000pt;}
.x13_c00099{left:573.200000pt;}
.x61_c00099{left:575.466667pt;}
.xc4_c00099{left:576.533333pt;}
.xa1_c00099{left:577.733333pt;}
.xea_c00099{left:579.600000pt;}
.xb5_c00099{left:580.933333pt;}
.xba_c00099{left:582.400000pt;}
.x122_c00099{left:585.200000pt;}
.x12a_c00099{left:586.533333pt;}
.x140_c00099{left:587.866667pt;}
.xac_c00099{left:590.000000pt;}
.x66_c00099{left:591.066667pt;}
.x8c_c00099{left:593.200000pt;}
.x14_c00099{left:594.266667pt;}
.xa2_c00099{left:596.000000pt;}
.x78_c00099{left:597.466667pt;}
.x94_c00099{left:599.600000pt;}
.x6e_c00099{left:602.800000pt;}
.x11f_c00099{left:605.333333pt;}
.x39_c00099{left:607.200000pt;}
.x12b_c00099{left:609.200000pt;}
.x47_c00099{left:611.600000pt;}
.x11a_c00099{left:612.933333pt;}
.xbb_c00099{left:614.133333pt;}
.xd1_c00099{left:615.866667pt;}
.x2d_c00099{left:617.733333pt;}
.x116_c00099{left:618.800000pt;}
.x57_c00099{left:620.400000pt;}
.x107_c00099{left:622.533333pt;}
.x21_c00099{left:623.733333pt;}
.xa3_c00099{left:626.666667pt;}
.xfa_c00099{left:628.133333pt;}
.x95_c00099{left:629.733333pt;}
.x11b_c00099{left:635.066667pt;}
.x100_c00099{left:636.000000pt;}
.x48_c00099{left:637.200000pt;}
.x58_c00099{left:639.600000pt;}
.xd2_c00099{left:641.466667pt;}
.x96_c00099{left:642.800000pt;}
.xb6_c00099{left:645.600000pt;}
.x145_c00099{left:647.200000pt;}
.x120_c00099{left:649.466667pt;}
.xad_c00099{left:651.466667pt;}
.x22_c00099{left:656.000000pt;}
.x13a_c00099{left:658.000000pt;}
.x62_c00099{left:659.200000pt;}
.x123_c00099{left:660.400000pt;}
.x49_c00099{left:662.533333pt;}
.x108_c00099{left:663.466667pt;}
.x131_c00099{left:664.400000pt;}
.xae_c00099{left:667.733333pt;}
.x137_c00099{left:668.666667pt;}
.xc5_c00099{left:670.666667pt;}
.xa4_c00099{left:672.400000pt;}
.x15_c00099{left:674.266667pt;}
.x3a_c00099{left:676.000000pt;}
.xe4_c00099{left:677.733333pt;}
.x4_c00099{left:679.333333pt;}
.xfb_c00099{left:681.200000pt;}
.x2e_c00099{left:682.666667pt;}
.xca_c00099{left:689.733333pt;}
}





/* 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_c00100 {
    display:none;
  }
  .loading-indicator_c00100.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00100 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_c00100 { 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_c00100" -> "#page-container .classname_c00100")
 */
.pf_c00100 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00100 { /* 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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00100 { /* 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_c00100 { /* 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_c00100 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00100 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00100 {overflow:visible;}
  }
}
.c_c00100 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00100 { /* 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_c00100:after { /* webkit #35443 */
  content: '';
}
.t_c00100:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00100 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 */
}
.__c00100 { /* 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_c00100 { /* info for Javascript */
  display:none;
}
.l_c00100 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00100 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00100 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00100: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_c00100 {
    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_c00100.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00100.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_c00100 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00100{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00100;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.000000;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;}
.mc_c00100{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m80_c00100{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00100{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00100{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00100{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00100{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00100{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m29_c00100{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m20_c00100{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.me_c00100{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00100{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m64_c00100{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m63_c00100{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00100{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m78_c00100{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00100{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00100{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00100{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m85_c00100{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m56_c00100{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00100{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m95_c00100{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00100{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m68_c00100{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m69_c00100{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00100{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m89_c00100{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00100{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5_c00100{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m46_c00100{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00100{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m19_c00100{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00100{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3_c00100{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00100{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00100{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m24_c00100{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m22_c00100{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00100{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00100{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m97_c00100{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m84_c00100{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m15_c00100{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m73_c00100{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00100{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m61_c00100{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m51_c00100{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00100{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m35_c00100{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00100{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m98_c00100{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00100{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m31_c00100{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m90_c00100{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00100{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m43_c00100{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m87_c00100{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00100{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m12_c00100{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00100{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m59_c00100{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00100{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m32_c00100{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m45_c00100{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00100{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf_c00100{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m70_c00100{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m42_c00100{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00100{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m26_c00100{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m53_c00100{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m58_c00100{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00100{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m48_c00100{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma_c00100{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00100{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m57_c00100{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00100{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00100{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m99_c00100{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m71_c00100{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m60_c00100{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7_c00100{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m81_c00100{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m72_c00100{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m67_c00100{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m82_c00100{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb_c00100{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00100{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m39_c00100{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00100{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m88_c00100{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00100{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m52_c00100{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00100{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m21_c00100{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00100{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00100{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00100{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00100{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m38_c00100{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m96_c00100{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m16_c00100{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m49_c00100{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00100{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m41_c00100{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m76_c00100{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9_c00100{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m27_c00100{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00100{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m75_c00100{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m13_c00100{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00100{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m65_c00100{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m66_c00100{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m91_c00100{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6_c00100{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m74_c00100{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m54_c00100{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m18_c00100{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m93_c00100{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m14_c00100{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00100{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00100{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00100{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00100{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m62_c00100{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m83_c00100{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);}
.m3b_c00100{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m92_c00100{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10_c00100{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00100{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00100{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m40_c00100{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8_c00100{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m17_c00100{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00100{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00100{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00100{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00100{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m86_c00100{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00100{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00100{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m30_c00100{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00100{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m50_c00100{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00100{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00100{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00100{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00100{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00100{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m36_c00100{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m55_c00100{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m79_c00100{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00100{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00100{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m47_c00100{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00100{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00100{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00100{vertical-align:0.000000px;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{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__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00100{word-spacing:-5.454545px;}
.ws1_c00100{word-spacing:-4.895833px;}
.ws9_c00100{word-spacing:0.000000px;}
.ws4_c00100{word-spacing:0.277778px;}
.ws2_c00100{word-spacing:1.666667px;}
.ws3_c00100{word-spacing:8.333333px;}
.ws7_c00100{word-spacing:10.000000px;}
.ws6_c00100{word-spacing:11.666667px;}
.ws5_c00100{word-spacing:12.272727px;}
.ws0_c00100{word-spacing:15.882353px;}
.fc0_c00100{color:transparent;}
.fs0_c00100{font-size:54.000000px;}
.fs1_c00100{font-size:60.000000px;}
.y0_c00100{bottom:0.000000px;}
.y2b_c00100{bottom:191.550000px;}
.y2a_c00100{bottom:211.650000px;}
.y29_c00100{bottom:231.450000px;}
.y28_c00100{bottom:251.250000px;}
.y27_c00100{bottom:271.050000px;}
.y26_c00100{bottom:291.000000px;}
.y25_c00100{bottom:310.800000px;}
.y24_c00100{bottom:330.900000px;}
.y23_c00100{bottom:350.400000px;}
.y22_c00100{bottom:370.500000px;}
.y21_c00100{bottom:390.300000px;}
.y20_c00100{bottom:410.100000px;}
.y1f_c00100{bottom:430.200000px;}
.y1e_c00100{bottom:450.000000px;}
.y1d_c00100{bottom:469.800000px;}
.y1c_c00100{bottom:489.600000px;}
.y1b_c00100{bottom:509.400000px;}
.y1a_c00100{bottom:529.500000px;}
.y19_c00100{bottom:549.600000px;}
.y18_c00100{bottom:569.400000px;}
.y17_c00100{bottom:588.900000px;}
.y16_c00100{bottom:609.300000px;}
.y15_c00100{bottom:629.100000px;}
.y14_c00100{bottom:648.900000px;}
.y13_c00100{bottom:669.000000px;}
.y12_c00100{bottom:688.800000px;}
.y11_c00100{bottom:708.600000px;}
.y10_c00100{bottom:728.400000px;}
.yf_c00100{bottom:748.200000px;}
.ye_c00100{bottom:768.300000px;}
.yd_c00100{bottom:788.400000px;}
.yc_c00100{bottom:807.900000px;}
.yb_c00100{bottom:828.000000px;}
.ya_c00100{bottom:847.800000px;}
.y9_c00100{bottom:867.600000px;}
.y8_c00100{bottom:887.400000px;}
.y7_c00100{bottom:907.200000px;}
.y6_c00100{bottom:927.000000px;}
.y5_c00100{bottom:946.800000px;}
.y4_c00100{bottom:966.600000px;}
.y3_c00100{bottom:986.700000px;}
.y2_c00100{bottom:1006.500000px;}
.y1_c00100{bottom:1045.050000px;}
.h2_c00100{height:54.000000px;}
.h3_c00100{height:60.000000px;}
.h1_c00100{height:1167.750000px;}
.h0_c00100{height:1167.839997px;}
.w1_c00100{width:920.250000px;}
.w0_c00100{width:920.519990px;}
.x0_c00100{left:0.000000px;}
.x136_c00100{left:144.450000px;}
.x11d_c00100{left:145.800000px;}
.xc5_c00100{left:147.000000px;}
.x95_c00100{left:148.350000px;}
.x4_c00100{left:149.700000px;}
.x1_c00100{left:151.500000px;}
.x13b_c00100{left:156.750000px;}
.xdb_c00100{left:163.650000px;}
.x5d_c00100{left:167.100000px;}
.x25_c00100{left:168.300000px;}
.x3c_c00100{left:170.400000px;}
.x96_c00100{left:171.750000px;}
.xeb_c00100{left:173.100000px;}
.x31_c00100{left:174.900000px;}
.x130_c00100{left:176.400000px;}
.x65_c00100{left:179.700000px;}
.x7c_c00100{left:180.900000px;}
.xf6_c00100{left:183.000000px;}
.xb0_c00100{left:186.000000px;}
.x12a_c00100{left:188.850000px;}
.x26_c00100{left:193.500000px;}
.xba_c00100{left:194.700000px;}
.x71_c00100{left:195.900000px;}
.xb1_c00100{left:197.100000px;}
.xc6_c00100{left:198.750000px;}
.x113_c00100{left:201.150000px;}
.xfd_c00100{left:202.950000px;}
.x16_c00100{left:205.800000px;}
.x5_c00100{left:207.000000px;}
.x10e_c00100{left:208.800000px;}
.x13f_c00100{left:214.650000px;}
.x103_c00100{left:216.450000px;}
.xdc_c00100{left:218.400000px;}
.x9d_c00100{left:219.450000px;}
.xc7_c00100{left:221.100000px;}
.x3d_c00100{left:222.600000px;}
.xa7_c00100{left:225.900000px;}
.x114_c00100{left:227.400000px;}
.x7d_c00100{left:228.450000px;}
.x4f_c00100{left:230.850000px;}
.x124_c00100{left:232.050000px;}
.x97_c00100{left:234.450000px;}
.xc8_c00100{left:235.800000px;}
.x6_c00100{left:237.300000px;}
.x10b_c00100{left:238.350000px;}
.x3e_c00100{left:240.600000px;}
.xe2_c00100{left:243.150000px;}
.x27_c00100{left:246.750000px;}
.x50_c00100{left:247.800000px;}
.x66_c00100{left:248.850000px;}
.x17_c00100{left:252.300000px;}
.x127_c00100{left:253.350000px;}
.x11a_c00100{left:254.550000px;}
.x3f_c00100{left:256.050000px;}
.x140_c00100{left:257.100000px;}
.x7_c00100{left:258.150000px;}
.xf4_c00100{left:259.650000px;}
.x7e_c00100{left:262.350000px;}
.xe5_c00100{left:263.850000px;}
.x72_c00100{left:266.100000px;}
.x28_c00100{left:268.350000px;}
.xc9_c00100{left:272.100000px;}
.x10f_c00100{left:273.300000px;}
.x18_c00100{left:276.000000px;}
.x11e_c00100{left:277.950000px;}
.xf7_c00100{left:279.000000px;}
.x40_c00100{left:280.200000px;}
.xfe_c00100{left:281.400000px;}
.x131_c00100{left:282.600000px;}
.x51_c00100{left:284.550000px;}
.xe3_c00100{left:286.350000px;}
.x107_c00100{left:288.450000px;}
.x11b_c00100{left:289.500000px;}
.xe6_c00100{left:291.150000px;}
.x29_c00100{left:293.850000px;}
.x7f_c00100{left:296.250000px;}
.x67_c00100{left:297.750000px;}
.x52_c00100{left:299.700000px;}
.x73_c00100{left:301.350000px;}
.x19_c00100{left:304.500000px;}
.xb2_c00100{left:305.700000px;}
.xf8_c00100{left:307.800000px;}
.x5e_c00100{left:308.850000px;}
.x115_c00100{left:312.750000px;}
.x80_c00100{left:314.550000px;}
.x74_c00100{left:316.500000px;}
.x8_c00100{left:317.850000px;}
.xa8_c00100{left:318.900000px;}
.x98_c00100{left:320.550000px;}
.xbb_c00100{left:322.800000px;}
.xe4_c00100{left:326.250000px;}
.x68_c00100{left:328.350000px;}
.x41_c00100{left:329.850000px;}
.x1a_c00100{left:332.250000px;}
.xdd_c00100{left:333.300000px;}
.x12b_c00100{left:337.200000px;}
.x5f_c00100{left:338.400000px;}
.x9e_c00100{left:342.300000px;}
.x75_c00100{left:343.500000px;}
.xbc_c00100{left:345.150000px;}
.x9_c00100{left:347.400000px;}
.xa9_c00100{left:349.800000px;}
.x42_c00100{left:351.150000px;}
.x137_c00100{left:354.150000px;}
.xb3_c00100{left:356.400000px;}
.x81_c00100{left:358.050000px;}
.x141_c00100{left:361.500000px;}
.x32_c00100{left:362.850000px;}
.xec_c00100{left:364.500000px;}
.x10c_c00100{left:366.900000px;}
.xe7_c00100{left:368.100000px;}
.x69_c00100{left:369.450000px;}
.x9f_c00100{left:371.100000px;}
.x132_c00100{left:373.050000px;}
.x53_c00100{left:374.100000px;}
.xd3_c00100{left:375.150000px;}
.x43_c00100{left:377.100000px;}
.x1b_c00100{left:379.350000px;}
.xb4_c00100{left:381.900000px;}
.x82_c00100{left:384.000000px;}
.xbd_c00100{left:388.650000px;}
.x11f_c00100{left:394.200000px;}
.x2_c00100{left:395.250000px;}
.xed_c00100{left:396.900000px;}
.x110_c00100{left:401.100000px;}
.xa_c00100{left:402.900000px;}
.x12c_c00100{left:404.550000px;}
.xd1_c00100{left:405.900000px;}
.x116_c00100{left:407.100000px;}
.x8a_c00100{left:408.150000px;}
.x54_c00100{left:409.350000px;}
.x76_c00100{left:414.750000px;}
.xd4_c00100{left:417.600000px;}
.xca_c00100{left:418.800000px;}
.x2a_c00100{left:420.150000px;}
.x120_c00100{left:423.750000px;}
.x125_c00100{left:425.100000px;}
.x138_c00100{left:426.150000px;}
.x60_c00100{left:428.100000px;}
.x55_c00100{left:430.650000px;}
.x6a_c00100{left:432.000000px;}
.xf9_c00100{left:434.550000px;}
.xaa_c00100{left:436.950000px;}
.x83_c00100{left:438.300000px;}
.x108_c00100{left:440.100000px;}
.xb5_c00100{left:443.400000px;}
.x2b_c00100{left:445.350000px;}
.x44_c00100{left:447.300000px;}
.xa0_c00100{left:448.500000px;}
.x33_c00100{left:450.300000px;}
.x84_c00100{left:455.250000px;}
.x56_c00100{left:456.600000px;}
.x77_c00100{left:457.950000px;}
.xb_c00100{left:460.800000px;}
.x133_c00100{left:462.000000px;}
.x104_c00100{left:463.650000px;}
.xab_c00100{left:466.050000px;}
.x117_c00100{left:467.550000px;}
.x1c_c00100{left:469.350000px;}
.xee_c00100{left:470.400000px;}
.x6b_c00100{left:472.350000px;}
.x13c_c00100{left:476.250000px;}
.x99_c00100{left:478.650000px;}
.x85_c00100{left:481.200000px;}
.x134_c00100{left:482.850000px;}
.xa1_c00100{left:485.250000px;}
.x8b_c00100{left:487.350000px;}
.xc_c00100{left:488.850000px;}
.x45_c00100{left:490.500000px;}
.x34_c00100{left:492.000000px;}
.x3_c00100{left:494.250000px;}
.x2c_c00100{left:497.250000px;}
.x57_c00100{left:500.850000px;}
.x13d_c00100{left:504.300000px;}
.xfa_c00100{left:506.250000px;}
.x8c_c00100{left:507.450000px;}
.xbe_c00100{left:509.850000px;}
.xef_c00100{left:511.800000px;}
.xb6_c00100{left:512.850000px;}
.x35_c00100{left:514.650000px;}
.x1d_c00100{left:516.150000px;}
.x61_c00100{left:517.350000px;}
.x46_c00100{left:519.000000px;}
.xac_c00100{left:520.050000px;}
.x139_c00100{left:521.550000px;}
.x121_c00100{left:523.800000px;}
.xd5_c00100{left:525.300000px;}
.xff_c00100{left:528.600000px;}
.xa2_c00100{left:530.550000px;}
.x6c_c00100{left:532.500000px;}
.xe8_c00100{left:533.700000px;}
.x78_c00100{left:535.050000px;}
.x36_c00100{left:536.550000px;}
.xf0_c00100{left:538.800000px;}
.xd_c00100{left:540.750000px;}
.xd6_c00100{left:543.000000px;}
.xde_c00100{left:547.650000px;}
.xfb_c00100{left:549.150000px;}
.xe_c00100{left:552.300000px;}
.x79_c00100{left:553.800000px;}
.xbf_c00100{left:555.600000px;}
.x58_c00100{left:556.950000px;}
.xcb_c00100{left:558.750000px;}
.x11c_c00100{left:559.800000px;}
.x9a_c00100{left:561.450000px;}
.x1e_c00100{left:563.700000px;}
.xb7_c00100{left:565.350000px;}
.xdf_c00100{left:569.250000px;}
.x37_c00100{left:570.750000px;}
.xd7_c00100{left:571.800000px;}
.x47_c00100{left:573.000000px;}
.xc0_c00100{left:576.450000px;}
.x2d_c00100{left:577.800000px;}
.x8d_c00100{left:579.750000px;}
.x9b_c00100{left:581.250000px;}
.xf_c00100{left:584.700000px;}
.x12e_c00100{left:585.750000px;}
.x59_c00100{left:587.250000px;}
.x62_c00100{left:588.600000px;}
.xcc_c00100{left:589.650000px;}
.x128_c00100{left:590.850000px;}
.x48_c00100{left:593.100000px;}
.x38_c00100{left:595.200000px;}
.x86_c00100{left:596.400000px;}
.xa3_c00100{left:597.750000px;}
.xc1_c00100{left:599.550000px;}
.x1f_c00100{left:601.800000px;}
.x122_c00100{left:604.350000px;}
.x10_c00100{left:608.850000px;}
.x5a_c00100{left:609.900000px;}
.x8e_c00100{left:611.100000px;}
.xf1_c00100{left:614.100000px;}
.x6d_c00100{left:616.350000px;}
.x12f_c00100{left:617.850000px;}
.xc2_c00100{left:620.400000px;}
.xcd_c00100{left:622.350000px;}
.x109_c00100{left:623.700000px;}
.x8f_c00100{left:631.200000px;}
.x49_c00100{left:632.400000px;}
.x111_c00100{left:635.100000px;}
.x135_c00100{left:636.300000px;}
.x7a_c00100{left:637.350000px;}
.xce_c00100{left:638.850000px;}
.x2e_c00100{left:640.500000px;}
.x11_c00100{left:643.350000px;}
.x87_c00100{left:645.750000px;}
.x20_c00100{left:647.550000px;}
.x142_c00100{left:648.750000px;}
.xd2_c00100{left:651.600000px;}
.x4a_c00100{left:653.250000px;}
.xf2_c00100{left:656.550000px;}
.xf5_c00100{left:659.700000px;}
.x100_c00100{left:660.750000px;}
.xa4_c00100{left:662.250000px;}
.x7b_c00100{left:663.600000px;}
.x105_c00100{left:665.550000px;}
.x6e_c00100{left:667.500000px;}
.x13a_c00100{left:669.000000px;}
.x12_c00100{left:671.400000px;}
.x90_c00100{left:672.600000px;}
.xad_c00100{left:676.650000px;}
.x4b_c00100{left:678.750000px;}
.xb8_c00100{left:682.050000px;}
.xc3_c00100{left:683.700000px;}
.x101_c00100{left:685.950000px;}
.x126_c00100{left:687.450000px;}
.xcf_c00100{left:689.250000px;}
.x88_c00100{left:691.050000px;}
.x5b_c00100{left:692.700000px;}
.x10a_c00100{left:693.900000px;}
.x21_c00100{left:696.150000px;}
.xe0_c00100{left:699.600000px;}
.x91_c00100{left:701.400000px;}
.x39_c00100{left:702.900000px;}
.xae_c00100{left:705.450000px;}
.x106_c00100{left:707.700000px;}
.x118_c00100{left:709.350000px;}
.x22_c00100{left:711.300000px;}
.xfc_c00100{left:712.650000px;}
.xb9_c00100{left:715.200000px;}
.xe9_c00100{left:717.000000px;}
.x4c_c00100{left:719.100000px;}
.x2f_c00100{left:723.600000px;}
.x13_c00100{left:725.700000px;}
.xd8_c00100{left:727.050000px;}
.x123_c00100{left:728.250000px;}
.xf3_c00100{left:730.350000px;}
.x9c_c00100{left:731.850000px;}
.x112_c00100{left:733.950000px;}
.x3a_c00100{left:737.100000px;}
.x63_c00100{left:738.750000px;}
.x6f_c00100{left:739.800000px;}
.x23_c00100{left:743.700000px;}
.xd9_c00100{left:746.550000px;}
.xa5_c00100{left:748.650000px;}
.x92_c00100{left:750.000000px;}
.x89_c00100{left:751.800000px;}
.x30_c00100{left:753.150000px;}
.x13e_c00100{left:754.200000px;}
.x129_c00100{left:755.700000px;}
.x102_c00100{left:759.750000px;}
.x10d_c00100{left:761.100000px;}
.xaf_c00100{left:764.100000px;}
.xc4_c00100{left:766.200000px;}
.x64_c00100{left:767.850000px;}
.x14_c00100{left:769.650000px;}
.xda_c00100{left:770.700000px;}
.x24_c00100{left:772.500000px;}
.x4d_c00100{left:774.900000px;}
.x93_c00100{left:777.300000px;}
.x5c_c00100{left:778.350000px;}
.x143_c00100{left:781.650000px;}
.x3b_c00100{left:783.900000px;}
.x70_c00100{left:786.600000px;}
.xd0_c00100{left:788.550000px;}
.xa6_c00100{left:789.750000px;}
.x119_c00100{left:792.150000px;}
.x12d_c00100{left:794.100000px;}
.xe1_c00100{left:796.800000px;}
.xea_c00100{left:801.300000px;}
.x15_c00100{left:802.350000px;}
.x4e_c00100{left:805.800000px;}
.x94_c00100{left:810.750000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws8_c00100{word-spacing:-4.848485pt;}
.ws1_c00100{word-spacing:-4.351852pt;}
.ws9_c00100{word-spacing:0.000000pt;}
.ws4_c00100{word-spacing:0.246914pt;}
.ws2_c00100{word-spacing:1.481481pt;}
.ws3_c00100{word-spacing:7.407407pt;}
.ws7_c00100{word-spacing:8.888889pt;}
.ws6_c00100{word-spacing:10.370370pt;}
.ws5_c00100{word-spacing:10.909091pt;}
.ws0_c00100{word-spacing:14.117647pt;}
.fs0_c00100{font-size:48.000000pt;}
.fs1_c00100{font-size:53.333333pt;}
.y0_c00100{bottom:0.000000pt;}
.y2b_c00100{bottom:170.266667pt;}
.y2a_c00100{bottom:188.133333pt;}
.y29_c00100{bottom:205.733333pt;}
.y28_c00100{bottom:223.333333pt;}
.y27_c00100{bottom:240.933333pt;}
.y26_c00100{bottom:258.666667pt;}
.y25_c00100{bottom:276.266667pt;}
.y24_c00100{bottom:294.133333pt;}
.y23_c00100{bottom:311.466667pt;}
.y22_c00100{bottom:329.333333pt;}
.y21_c00100{bottom:346.933333pt;}
.y20_c00100{bottom:364.533333pt;}
.y1f_c00100{bottom:382.400000pt;}
.y1e_c00100{bottom:400.000000pt;}
.y1d_c00100{bottom:417.600000pt;}
.y1c_c00100{bottom:435.200000pt;}
.y1b_c00100{bottom:452.800000pt;}
.y1a_c00100{bottom:470.666667pt;}
.y19_c00100{bottom:488.533333pt;}
.y18_c00100{bottom:506.133333pt;}
.y17_c00100{bottom:523.466667pt;}
.y16_c00100{bottom:541.600000pt;}
.y15_c00100{bottom:559.200000pt;}
.y14_c00100{bottom:576.800000pt;}
.y13_c00100{bottom:594.666667pt;}
.y12_c00100{bottom:612.266667pt;}
.y11_c00100{bottom:629.866667pt;}
.y10_c00100{bottom:647.466667pt;}
.yf_c00100{bottom:665.066667pt;}
.ye_c00100{bottom:682.933333pt;}
.yd_c00100{bottom:700.800000pt;}
.yc_c00100{bottom:718.133333pt;}
.yb_c00100{bottom:736.000000pt;}
.ya_c00100{bottom:753.600000pt;}
.y9_c00100{bottom:771.200000pt;}
.y8_c00100{bottom:788.800000pt;}
.y7_c00100{bottom:806.400000pt;}
.y6_c00100{bottom:824.000000pt;}
.y5_c00100{bottom:841.600000pt;}
.y4_c00100{bottom:859.200000pt;}
.y3_c00100{bottom:877.066667pt;}
.y2_c00100{bottom:894.666667pt;}
.y1_c00100{bottom:928.933333pt;}
.h2_c00100{height:48.000000pt;}
.h3_c00100{height:53.333333pt;}
.h1_c00100{height:1038.000000pt;}
.h0_c00100{height:1038.079997pt;}
.w1_c00100{width:818.000000pt;}
.w0_c00100{width:818.239991pt;}
.x0_c00100{left:0.000000pt;}
.x136_c00100{left:128.400000pt;}
.x11d_c00100{left:129.600000pt;}
.xc5_c00100{left:130.666667pt;}
.x95_c00100{left:131.866667pt;}
.x4_c00100{left:133.066667pt;}
.x1_c00100{left:134.666667pt;}
.x13b_c00100{left:139.333333pt;}
.xdb_c00100{left:145.466667pt;}
.x5d_c00100{left:148.533333pt;}
.x25_c00100{left:149.600000pt;}
.x3c_c00100{left:151.466667pt;}
.x96_c00100{left:152.666667pt;}
.xeb_c00100{left:153.866667pt;}
.x31_c00100{left:155.466667pt;}
.x130_c00100{left:156.800000pt;}
.x65_c00100{left:159.733333pt;}
.x7c_c00100{left:160.800000pt;}
.xf6_c00100{left:162.666667pt;}
.xb0_c00100{left:165.333333pt;}
.x12a_c00100{left:167.866667pt;}
.x26_c00100{left:172.000000pt;}
.xba_c00100{left:173.066667pt;}
.x71_c00100{left:174.133333pt;}
.xb1_c00100{left:175.200000pt;}
.xc6_c00100{left:176.666667pt;}
.x113_c00100{left:178.800000pt;}
.xfd_c00100{left:180.400000pt;}
.x16_c00100{left:182.933333pt;}
.x5_c00100{left:184.000000pt;}
.x10e_c00100{left:185.600000pt;}
.x13f_c00100{left:190.800000pt;}
.x103_c00100{left:192.400000pt;}
.xdc_c00100{left:194.133333pt;}
.x9d_c00100{left:195.066667pt;}
.xc7_c00100{left:196.533333pt;}
.x3d_c00100{left:197.866667pt;}
.xa7_c00100{left:200.800000pt;}
.x114_c00100{left:202.133333pt;}
.x7d_c00100{left:203.066667pt;}
.x4f_c00100{left:205.200000pt;}
.x124_c00100{left:206.266667pt;}
.x97_c00100{left:208.400000pt;}
.xc8_c00100{left:209.600000pt;}
.x6_c00100{left:210.933333pt;}
.x10b_c00100{left:211.866667pt;}
.x3e_c00100{left:213.866667pt;}
.xe2_c00100{left:216.133333pt;}
.x27_c00100{left:219.333333pt;}
.x50_c00100{left:220.266667pt;}
.x66_c00100{left:221.200000pt;}
.x17_c00100{left:224.266667pt;}
.x127_c00100{left:225.200000pt;}
.x11a_c00100{left:226.266667pt;}
.x3f_c00100{left:227.600000pt;}
.x140_c00100{left:228.533333pt;}
.x7_c00100{left:229.466667pt;}
.xf4_c00100{left:230.800000pt;}
.x7e_c00100{left:233.200000pt;}
.xe5_c00100{left:234.533333pt;}
.x72_c00100{left:236.533333pt;}
.x28_c00100{left:238.533333pt;}
.xc9_c00100{left:241.866667pt;}
.x10f_c00100{left:242.933333pt;}
.x18_c00100{left:245.333333pt;}
.x11e_c00100{left:247.066667pt;}
.xf7_c00100{left:248.000000pt;}
.x40_c00100{left:249.066667pt;}
.xfe_c00100{left:250.133333pt;}
.x131_c00100{left:251.200000pt;}
.x51_c00100{left:252.933333pt;}
.xe3_c00100{left:254.533333pt;}
.x107_c00100{left:256.400000pt;}
.x11b_c00100{left:257.333333pt;}
.xe6_c00100{left:258.800000pt;}
.x29_c00100{left:261.200000pt;}
.x7f_c00100{left:263.333333pt;}
.x67_c00100{left:264.666667pt;}
.x52_c00100{left:266.400000pt;}
.x73_c00100{left:267.866667pt;}
.x19_c00100{left:270.666667pt;}
.xb2_c00100{left:271.733333pt;}
.xf8_c00100{left:273.600000pt;}
.x5e_c00100{left:274.533333pt;}
.x115_c00100{left:278.000000pt;}
.x80_c00100{left:279.600000pt;}
.x74_c00100{left:281.333333pt;}
.x8_c00100{left:282.533333pt;}
.xa8_c00100{left:283.466667pt;}
.x98_c00100{left:284.933333pt;}
.xbb_c00100{left:286.933333pt;}
.xe4_c00100{left:290.000000pt;}
.x68_c00100{left:291.866667pt;}
.x41_c00100{left:293.200000pt;}
.x1a_c00100{left:295.333333pt;}
.xdd_c00100{left:296.266667pt;}
.x12b_c00100{left:299.733333pt;}
.x5f_c00100{left:300.800000pt;}
.x9e_c00100{left:304.266667pt;}
.x75_c00100{left:305.333333pt;}
.xbc_c00100{left:306.800000pt;}
.x9_c00100{left:308.800000pt;}
.xa9_c00100{left:310.933333pt;}
.x42_c00100{left:312.133333pt;}
.x137_c00100{left:314.800000pt;}
.xb3_c00100{left:316.800000pt;}
.x81_c00100{left:318.266667pt;}
.x141_c00100{left:321.333333pt;}
.x32_c00100{left:322.533333pt;}
.xec_c00100{left:324.000000pt;}
.x10c_c00100{left:326.133333pt;}
.xe7_c00100{left:327.200000pt;}
.x69_c00100{left:328.400000pt;}
.x9f_c00100{left:329.866667pt;}
.x132_c00100{left:331.600000pt;}
.x53_c00100{left:332.533333pt;}
.xd3_c00100{left:333.466667pt;}
.x43_c00100{left:335.200000pt;}
.x1b_c00100{left:337.200000pt;}
.xb4_c00100{left:339.466667pt;}
.x82_c00100{left:341.333333pt;}
.xbd_c00100{left:345.466667pt;}
.x11f_c00100{left:350.400000pt;}
.x2_c00100{left:351.333333pt;}
.xed_c00100{left:352.800000pt;}
.x110_c00100{left:356.533333pt;}
.xa_c00100{left:358.133333pt;}
.x12c_c00100{left:359.600000pt;}
.xd1_c00100{left:360.800000pt;}
.x116_c00100{left:361.866667pt;}
.x8a_c00100{left:362.800000pt;}
.x54_c00100{left:363.866667pt;}
.x76_c00100{left:368.666667pt;}
.xd4_c00100{left:371.200000pt;}
.xca_c00100{left:372.266667pt;}
.x2a_c00100{left:373.466667pt;}
.x120_c00100{left:376.666667pt;}
.x125_c00100{left:377.866667pt;}
.x138_c00100{left:378.800000pt;}
.x60_c00100{left:380.533333pt;}
.x55_c00100{left:382.800000pt;}
.x6a_c00100{left:384.000000pt;}
.xf9_c00100{left:386.266667pt;}
.xaa_c00100{left:388.400000pt;}
.x83_c00100{left:389.600000pt;}
.x108_c00100{left:391.200000pt;}
.xb5_c00100{left:394.133333pt;}
.x2b_c00100{left:395.866667pt;}
.x44_c00100{left:397.600000pt;}
.xa0_c00100{left:398.666667pt;}
.x33_c00100{left:400.266667pt;}
.x84_c00100{left:404.666667pt;}
.x56_c00100{left:405.866667pt;}
.x77_c00100{left:407.066667pt;}
.xb_c00100{left:409.600000pt;}
.x133_c00100{left:410.666667pt;}
.x104_c00100{left:412.133333pt;}
.xab_c00100{left:414.266667pt;}
.x117_c00100{left:415.600000pt;}
.x1c_c00100{left:417.200000pt;}
.xee_c00100{left:418.133333pt;}
.x6b_c00100{left:419.866667pt;}
.x13c_c00100{left:423.333333pt;}
.x99_c00100{left:425.466667pt;}
.x85_c00100{left:427.733333pt;}
.x134_c00100{left:429.200000pt;}
.xa1_c00100{left:431.333333pt;}
.x8b_c00100{left:433.200000pt;}
.xc_c00100{left:434.533333pt;}
.x45_c00100{left:436.000000pt;}
.x34_c00100{left:437.333333pt;}
.x3_c00100{left:439.333333pt;}
.x2c_c00100{left:442.000000pt;}
.x57_c00100{left:445.200000pt;}
.x13d_c00100{left:448.266667pt;}
.xfa_c00100{left:450.000000pt;}
.x8c_c00100{left:451.066667pt;}
.xbe_c00100{left:453.200000pt;}
.xef_c00100{left:454.933333pt;}
.xb6_c00100{left:455.866667pt;}
.x35_c00100{left:457.466667pt;}
.x1d_c00100{left:458.800000pt;}
.x61_c00100{left:459.866667pt;}
.x46_c00100{left:461.333333pt;}
.xac_c00100{left:462.266667pt;}
.x139_c00100{left:463.600000pt;}
.x121_c00100{left:465.600000pt;}
.xd5_c00100{left:466.933333pt;}
.xff_c00100{left:469.866667pt;}
.xa2_c00100{left:471.600000pt;}
.x6c_c00100{left:473.333333pt;}
.xe8_c00100{left:474.400000pt;}
.x78_c00100{left:475.600000pt;}
.x36_c00100{left:476.933333pt;}
.xf0_c00100{left:478.933333pt;}
.xd_c00100{left:480.666667pt;}
.xd6_c00100{left:482.666667pt;}
.xde_c00100{left:486.800000pt;}
.xfb_c00100{left:488.133333pt;}
.xe_c00100{left:490.933333pt;}
.x79_c00100{left:492.266667pt;}
.xbf_c00100{left:493.866667pt;}
.x58_c00100{left:495.066667pt;}
.xcb_c00100{left:496.666667pt;}
.x11c_c00100{left:497.600000pt;}
.x9a_c00100{left:499.066667pt;}
.x1e_c00100{left:501.066667pt;}
.xb7_c00100{left:502.533333pt;}
.xdf_c00100{left:506.000000pt;}
.x37_c00100{left:507.333333pt;}
.xd7_c00100{left:508.266667pt;}
.x47_c00100{left:509.333333pt;}
.xc0_c00100{left:512.400000pt;}
.x2d_c00100{left:513.600000pt;}
.x8d_c00100{left:515.333333pt;}
.x9b_c00100{left:516.666667pt;}
.xf_c00100{left:519.733333pt;}
.x12e_c00100{left:520.666667pt;}
.x59_c00100{left:522.000000pt;}
.x62_c00100{left:523.200000pt;}
.xcc_c00100{left:524.133333pt;}
.x128_c00100{left:525.200000pt;}
.x48_c00100{left:527.200000pt;}
.x38_c00100{left:529.066667pt;}
.x86_c00100{left:530.133333pt;}
.xa3_c00100{left:531.333333pt;}
.xc1_c00100{left:532.933333pt;}
.x1f_c00100{left:534.933333pt;}
.x122_c00100{left:537.200000pt;}
.x10_c00100{left:541.200000pt;}
.x5a_c00100{left:542.133333pt;}
.x8e_c00100{left:543.200000pt;}
.xf1_c00100{left:545.866667pt;}
.x6d_c00100{left:547.866667pt;}
.x12f_c00100{left:549.200000pt;}
.xc2_c00100{left:551.466667pt;}
.xcd_c00100{left:553.200000pt;}
.x109_c00100{left:554.400000pt;}
.x8f_c00100{left:561.066667pt;}
.x49_c00100{left:562.133333pt;}
.x111_c00100{left:564.533333pt;}
.x135_c00100{left:565.600000pt;}
.x7a_c00100{left:566.533333pt;}
.xce_c00100{left:567.866667pt;}
.x2e_c00100{left:569.333333pt;}
.x11_c00100{left:571.866667pt;}
.x87_c00100{left:574.000000pt;}
.x20_c00100{left:575.600000pt;}
.x142_c00100{left:576.666667pt;}
.xd2_c00100{left:579.200000pt;}
.x4a_c00100{left:580.666667pt;}
.xf2_c00100{left:583.600000pt;}
.xf5_c00100{left:586.400000pt;}
.x100_c00100{left:587.333333pt;}
.xa4_c00100{left:588.666667pt;}
.x7b_c00100{left:589.866667pt;}
.x105_c00100{left:591.600000pt;}
.x6e_c00100{left:593.333333pt;}
.x13a_c00100{left:594.666667pt;}
.x12_c00100{left:596.800000pt;}
.x90_c00100{left:597.866667pt;}
.xad_c00100{left:601.466667pt;}
.x4b_c00100{left:603.333333pt;}
.xb8_c00100{left:606.266667pt;}
.xc3_c00100{left:607.733333pt;}
.x101_c00100{left:609.733333pt;}
.x126_c00100{left:611.066667pt;}
.xcf_c00100{left:612.666667pt;}
.x88_c00100{left:614.266667pt;}
.x5b_c00100{left:615.733333pt;}
.x10a_c00100{left:616.800000pt;}
.x21_c00100{left:618.800000pt;}
.xe0_c00100{left:621.866667pt;}
.x91_c00100{left:623.466667pt;}
.x39_c00100{left:624.800000pt;}
.xae_c00100{left:627.066667pt;}
.x106_c00100{left:629.066667pt;}
.x118_c00100{left:630.533333pt;}
.x22_c00100{left:632.266667pt;}
.xfc_c00100{left:633.466667pt;}
.xb9_c00100{left:635.733333pt;}
.xe9_c00100{left:637.333333pt;}
.x4c_c00100{left:639.200000pt;}
.x2f_c00100{left:643.200000pt;}
.x13_c00100{left:645.066667pt;}
.xd8_c00100{left:646.266667pt;}
.x123_c00100{left:647.333333pt;}
.xf3_c00100{left:649.200000pt;}
.x9c_c00100{left:650.533333pt;}
.x112_c00100{left:652.400000pt;}
.x3a_c00100{left:655.200000pt;}
.x63_c00100{left:656.666667pt;}
.x6f_c00100{left:657.600000pt;}
.x23_c00100{left:661.066667pt;}
.xd9_c00100{left:663.600000pt;}
.xa5_c00100{left:665.466667pt;}
.x92_c00100{left:666.666667pt;}
.x89_c00100{left:668.266667pt;}
.x30_c00100{left:669.466667pt;}
.x13e_c00100{left:670.400000pt;}
.x129_c00100{left:671.733333pt;}
.x102_c00100{left:675.333333pt;}
.x10d_c00100{left:676.533333pt;}
.xaf_c00100{left:679.200000pt;}
.xc4_c00100{left:681.066667pt;}
.x64_c00100{left:682.533333pt;}
.x14_c00100{left:684.133333pt;}
.xda_c00100{left:685.066667pt;}
.x24_c00100{left:686.666667pt;}
.x4d_c00100{left:688.800000pt;}
.x93_c00100{left:690.933333pt;}
.x5c_c00100{left:691.866667pt;}
.x143_c00100{left:694.800000pt;}
.x3b_c00100{left:696.800000pt;}
.x70_c00100{left:699.200000pt;}
.xd0_c00100{left:700.933333pt;}
.xa6_c00100{left:702.000000pt;}
.x119_c00100{left:704.133333pt;}
.x12d_c00100{left:705.866667pt;}
.xe1_c00100{left:708.266667pt;}
.xea_c00100{left:712.266667pt;}
.x15_c00100{left:713.200000pt;}
.x4e_c00100{left:716.266667pt;}
.x94_c00100{left:720.666667pt;}
}





/* 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_c00101 {
    display:none;
  }
  .loading-indicator_c00101.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00101 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_c00101 { 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_c00101" -> "#page-container .classname_c00101")
 */
.pf_c00101 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00101 { /* 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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00101 { /* 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_c00101 { /* 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_c00101 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00101 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00101 {overflow:visible;}
  }
}
.c_c00101 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00101 { /* 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_c00101:after { /* webkit #35443 */
  content: '';
}
.t_c00101:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00101 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 */
}
.__c00101 { /* 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_c00101 { /* info for Javascript */
  display:none;
}
.l_c00101 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00101 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00101 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00101: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_c00101 {
    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_c00101.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00101.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_c00101 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00101{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00101;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.000000;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;}
.m8f_c00101{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m24_c00101{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m74_c00101{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m33_c00101{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m41_c00101{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m83_c00101{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m32_c00101{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m46_c00101{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00101{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m79_c00101{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m87_c00101{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m84_c00101{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00101{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m63_c00101{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00101{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00101{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00101{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00101{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00101{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00101{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00101{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00101{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m78_c00101{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00101{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m42_c00101{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m64_c00101{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00101{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00101{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00101{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf_c00101{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m67_c00101{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m58_c00101{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m35_c00101{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00101{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m75_c00101{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00101{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m59_c00101{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m17_c00101{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00101{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00101{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00101{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00101{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00101{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00101{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00101{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m28_c00101{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m54_c00101{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb_c00101{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m13_c00101{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m62_c00101{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m36_c00101{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00101{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00101{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00101{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00101{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m66_c00101{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m38_c00101{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m70_c00101{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m82_c00101{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00101{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m60_c00101{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00101{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m72_c00101{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m34_c00101{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m44_c00101{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m57_c00101{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m51_c00101{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m73_c00101{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m11_c00101{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00101{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00101{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m80_c00101{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m39_c00101{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12_c00101{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma_c00101{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00101{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30_c00101{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00101{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00101{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m23_c00101{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00101{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00101{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m25_c00101{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00101{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00101{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00101{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m21_c00101{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00101{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00101{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m18_c00101{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00101{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00101{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00101{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m77_c00101{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9_c00101{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00101{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m19_c00101{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m88_c00101{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m20_c00101{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00101{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m50_c00101{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m26_c00101{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me_c00101{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00101{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m47_c00101{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8_c00101{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m22_c00101{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m86_c00101{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m29_c00101{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc_c00101{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m37_c00101{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00101{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m68_c00101{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00101{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00101{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00101{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m48_c00101{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m76_c00101{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m15_c00101{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00101{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m85_c00101{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00101{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7_c00101{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00101{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00101{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m69_c00101{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m52_c00101{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m71_c00101{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m16_c00101{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m10_c00101{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00101{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m56_c00101{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m49_c00101{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m53_c00101{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m55_c00101{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00101{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m61_c00101{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m3_c00101{transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492750,0.000000,0.000000,0.250000,0,0);}
.v0_c00101{vertical-align:0.000000px;}
.ls0_c00101{letter-spacing:0.000000px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{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__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00101{word-spacing:-10.138889px;}
.ws3_c00101{word-spacing:-5.441176px;}
.ws4_c00101{word-spacing:-0.465116px;}
.ws9_c00101{word-spacing:0.000000px;}
.ws7_c00101{word-spacing:0.147059px;}
.ws0_c00101{word-spacing:0.531915px;}
.ws1_c00101{word-spacing:3.125000px;}
.ws5_c00101{word-spacing:13.611111px;}
.ws2_c00101{word-spacing:16.176471px;}
.ws8_c00101{word-spacing:36.851852px;}
.fc0_c00101{color:transparent;}
.fs1_c00101{font-size:48.000000px;}
.fs0_c00101{font-size:60.000000px;}
.y0_c00101{bottom:0.000000px;}
.y25_c00101{bottom:148.500000px;}
.y24_c00101{bottom:168.600000px;}
.y23_c00101{bottom:188.400000px;}
.y22_c00101{bottom:208.200000px;}
.y21_c00101{bottom:228.300000px;}
.y20_c00101{bottom:248.100000px;}
.y1f_c00101{bottom:267.900000px;}
.y1e_c00101{bottom:288.000000px;}
.y1d_c00101{bottom:307.800000px;}
.y1c_c00101{bottom:327.600000px;}
.y1b_c00101{bottom:347.700000px;}
.y1a_c00101{bottom:367.500000px;}
.y19_c00101{bottom:387.600000px;}
.y18_c00101{bottom:407.100000px;}
.y17_c00101{bottom:427.350000px;}
.y16_c00101{bottom:447.150000px;}
.y15_c00101{bottom:466.200000px;}
.y14_c00101{bottom:486.750000px;}
.y13_c00101{bottom:506.550000px;}
.y12_c00101{bottom:526.500000px;}
.y11_c00101{bottom:546.600000px;}
.y10_c00101{bottom:566.400000px;}
.yf_c00101{bottom:586.500000px;}
.ye_c00101{bottom:606.000000px;}
.yd_c00101{bottom:626.100000px;}
.yc_c00101{bottom:646.200000px;}
.yb_c00101{bottom:665.700000px;}
.ya_c00101{bottom:685.500000px;}
.y9_c00101{bottom:705.300000px;}
.y8_c00101{bottom:725.100000px;}
.y7_c00101{bottom:745.200000px;}
.y6_c00101{bottom:765.000000px;}
.y5_c00101{bottom:784.800000px;}
.y4_c00101{bottom:804.900000px;}
.y3_c00101{bottom:838.500000px;}
.y2_c00101{bottom:871.950000px;}
.y1_c00101{bottom:1047.600000px;}
.h3_c00101{height:48.000000px;}
.h2_c00101{height:60.000000px;}
.h1_c00101{height:1167.750000px;}
.h0_c00101{height:1167.839997px;}
.w1_c00101{width:920.250000px;}
.w0_c00101{width:920.519990px;}
.x0_c00101{left:0.000000px;}
.x9c_c00101{left:117.450000px;}
.x9_c00101{left:118.500000px;}
.xf6_c00101{left:119.550000px;}
.xad_c00101{left:134.550000px;}
.x47_c00101{left:136.050000px;}
.x37_c00101{left:140.400000px;}
.xa4_c00101{left:144.750000px;}
.x103_c00101{left:146.550000px;}
.x92_c00101{left:148.350000px;}
.x60_c00101{left:150.150000px;}
.x106_c00101{left:152.700000px;}
.x8d_c00101{left:154.650000px;}
.xfd_c00101{left:155.700000px;}
.x53_c00101{left:157.200000px;}
.x6e_c00101{left:159.300000px;}
.x18_c00101{left:160.350000px;}
.x11a_c00101{left:165.300000px;}
.xea_c00101{left:166.350000px;}
.x79_c00101{left:167.550000px;}
.xb0_c00101{left:168.750000px;}
.x8e_c00101{left:172.650000px;}
.x9d_c00101{left:175.350000px;}
.xfe_c00101{left:176.550000px;}
.x19_c00101{left:180.900000px;}
.x93_c00101{left:182.250000px;}
.x38_c00101{left:184.650000px;}
.x54_c00101{left:186.750000px;}
.xa_c00101{left:188.400000px;}
.x10f_c00101{left:192.300000px;}
.xeb_c00101{left:195.150000px;}
.x27_c00101{left:197.400000px;}
.xae_c00101{left:198.600000px;}
.xb1_c00101{left:199.650000px;}
.xdc_c00101{left:201.600000px;}
.x1a_c00101{left:204.000000px;}
.xcb_c00101{left:205.500000px;}
.x39_c00101{left:206.550000px;}
.x8f_c00101{left:210.150000px;}
.x61_c00101{left:212.850000px;}
.xa5_c00101{left:214.500000px;}
.xaf_c00101{left:215.850000px;}
.x28_c00101{left:217.500000px;}
.xbb_c00101{left:219.450000px;}
.x110_c00101{left:221.850000px;}
.x48_c00101{left:223.200000px;}
.xc4_c00101{left:224.250000px;}
.xb_c00101{left:225.900000px;}
.xe3_c00101{left:228.450000px;}
.x94_c00101{left:231.150000px;}
.xec_c00101{left:232.650000px;}
.x7a_c00101{left:235.350000px;}
.x3a_c00101{left:236.400000px;}
.x90_c00101{left:238.200000px;}
.x9e_c00101{left:240.150000px;}
.xdd_c00101{left:242.250000px;}
.x6f_c00101{left:244.200000px;}
.x29_c00101{left:246.300000px;}
.xa6_c00101{left:249.000000px;}
.xd1_c00101{left:250.650000px;}
.xcc_c00101{left:252.000000px;}
.x115_c00101{left:253.050000px;}
.xc_c00101{left:254.400000px;}
.x1b_c00101{left:255.450000px;}
.x49_c00101{left:257.400000px;}
.xbc_c00101{left:260.100000px;}
.x9f_c00101{left:261.450000px;}
.xe4_c00101{left:264.150000px;}
.x3b_c00101{left:266.250000px;}
.x120_c00101{left:268.650000px;}
.x62_c00101{left:270.750000px;}
.x4_c00101{left:271.800000px;}
.xff_c00101{left:273.750000px;}
.xd2_c00101{left:276.600000px;}
.x91_c00101{left:277.800000px;}
.xc2_c00101{left:282.450000px;}
.xb2_c00101{left:283.950000px;}
.xee_c00101{left:285.150000px;}
.x107_c00101{left:288.150000px;}
.x2a_c00101{left:289.200000px;}
.xa0_c00101{left:290.550000px;}
.x3c_c00101{left:291.750000px;}
.x55_c00101{left:292.950000px;}
.x63_c00101{left:296.250000px;}
.x116_c00101{left:297.750000px;}
.xde_c00101{left:299.550000px;}
.xc3_c00101{left:302.550000px;}
.x10b_c00101{left:307.650000px;}
.x7b_c00101{left:310.950000px;}
.xb3_c00101{left:312.450000px;}
.x84_c00101{left:316.050000px;}
.xcd_c00101{left:318.900000px;}
.xe5_c00101{left:320.550000px;}
.xed_c00101{left:322.200000px;}
.x56_c00101{left:323.250000px;}
.xd_c00101{left:326.400000px;}
.x100_c00101{left:328.800000px;}
.x70_c00101{left:330.300000px;}
.xd3_c00101{left:334.950000px;}
.x1c_c00101{left:336.450000px;}
.x3d_c00101{left:339.300000px;}
.x2b_c00101{left:341.700000px;}
.x7c_c00101{left:345.450000px;}
.xc5_c00101{left:347.400000px;}
.xbd_c00101{left:348.600000px;}
.xb4_c00101{left:351.000000px;}
.xef_c00101{left:352.050000px;}
.x2c_c00101{left:353.250000px;}
.x3e_c00101{left:359.400000px;}
.x57_c00101{left:363.900000px;}
.x1d_c00101{left:366.000000px;}
.xf0_c00101{left:369.750000px;}
.x64_c00101{left:371.550000px;}
.xd4_c00101{left:372.750000px;}
.x5_c00101{left:374.100000px;}
.x85_c00101{left:375.900000px;}
.x71_c00101{left:377.100000px;}
.x2d_c00101{left:383.850000px;}
.x58_c00101{left:385.500000px;}
.xd5_c00101{left:387.900000px;}
.x65_c00101{left:389.250000px;}
.xe_c00101{left:390.450000px;}
.xce_c00101{left:391.950000px;}
.xf1_c00101{left:393.450000px;}
.x101_c00101{left:395.100000px;}
.x72_c00101{left:396.600000px;}
.x2_c00101{left:398.100000px;}
.x95_c00101{left:399.600000px;}
.x10c_c00101{left:400.950000px;}
.x4a_c00101{left:403.800000px;}
.x66_c00101{left:407.250000px;}
.xe6_c00101{left:410.100000px;}
.x2e_c00101{left:412.350000px;}
.x3f_c00101{left:414.150000px;}
.x11b_c00101{left:416.850000px;}
.xbe_c00101{left:421.650000px;}
.xb5_c00101{left:424.800000px;}
.x86_c00101{left:426.600000px;}
.xf_c00101{left:428.550000px;}
.x73_c00101{left:434.400000px;}
.x1e_c00101{left:436.500000px;}
.xc6_c00101{left:438.900000px;}
.xe7_c00101{left:440.700000px;}
.x1_c00101{left:443.100000px;}
.x7d_c00101{left:444.750000px;}
.x108_c00101{left:445.800000px;}
.x59_c00101{left:448.200000px;}
.x11c_c00101{left:450.750000px;}
.xd6_c00101{left:453.900000px;}
.x1f_c00101{left:456.300000px;}
.xbf_c00101{left:457.650000px;}
.x67_c00101{left:459.450000px;}
.x10_c00101{left:460.950000px;}
.x2f_c00101{left:462.000000px;}
.x4b_c00101{left:463.950000px;}
.x5a_c00101{left:468.750000px;}
.xb6_c00101{left:471.300000px;}
.x6_c00101{left:473.100000px;}
.x7e_c00101{left:474.600000px;}
.x109_c00101{left:479.250000px;}
.x117_c00101{left:481.650000px;}
.x3_c00101{left:483.000000px;}
.xf2_c00101{left:484.650000px;}
.x102_c00101{left:486.300000px;}
.x30_c00101{left:487.500000px;}
.x20_c00101{left:489.000000px;}
.x87_c00101{left:492.900000px;}
.xa1_c00101{left:494.250000px;}
.x68_c00101{left:495.450000px;}
.x111_c00101{left:496.950000px;}
.x7_c00101{left:503.400000px;}
.xf7_c00101{left:506.100000px;}
.x5b_c00101{left:511.200000px;}
.xf3_c00101{left:512.700000px;}
.x96_c00101{left:514.500000px;}
.x4c_c00101{left:517.200000px;}
.xd7_c00101{left:519.450000px;}
.xdf_c00101{left:521.700000px;}
.x40_c00101{left:523.950000px;}
.x104_c00101{left:525.000000px;}
.x11_c00101{left:526.500000px;}
.x69_c00101{left:528.900000px;}
.x21_c00101{left:530.100000px;}
.x7f_c00101{left:531.150000px;}
.xb7_c00101{left:532.800000px;}
.x31_c00101{left:534.000000px;}
.xa7_c00101{left:539.550000px;}
.xf8_c00101{left:542.100000px;}
.x41_c00101{left:545.550000px;}
.x10d_c00101{left:546.750000px;}
.x97_c00101{left:549.450000px;}
.xc0_c00101{left:550.950000px;}
.x118_c00101{left:552.600000px;}
.xb8_c00101{left:553.650000px;}
.x12_c00101{left:555.000000px;}
.x88_c00101{left:556.200000px;}
.x8_c00101{left:558.450000px;}
.x74_c00101{left:559.650000px;}
.x4d_c00101{left:562.500000px;}
.x80_c00101{left:565.050000px;}
.x10e_c00101{left:566.550000px;}
.xc1_c00101{left:568.200000px;}
.x6a_c00101{left:570.000000px;}
.x98_c00101{left:572.100000px;}
.xd8_c00101{left:576.000000px;}
.x119_c00101{left:578.550000px;}
.x4e_c00101{left:582.600000px;}
.xa8_c00101{left:584.850000px;}
.x11d_c00101{left:586.050000px;}
.x75_c00101{left:588.150000px;}
.xe0_c00101{left:590.400000px;}
.xc7_c00101{left:592.950000px;}
.x112_c00101{left:595.650000px;}
.x32_c00101{left:596.700000px;}
.x89_c00101{left:599.100000px;}
.xe8_c00101{left:600.450000px;}
.x6b_c00101{left:603.900000px;}
.xf9_c00101{left:605.400000px;}
.xd9_c00101{left:607.350000px;}
.x22_c00101{left:609.300000px;}
.x99_c00101{left:613.500000px;}
.x42_c00101{left:614.700000px;}
.x13_c00101{left:616.200000px;}
.x5c_c00101{left:617.700000px;}
.xa9_c00101{left:619.800000px;}
.xa2_c00101{left:621.750000px;}
.x6c_c00101{left:624.000000px;}
.xc8_c00101{left:626.100000px;}
.xe9_c00101{left:629.250000px;}
.x23_c00101{left:630.600000px;}
.x8a_c00101{left:633.000000px;}
.xfa_c00101{left:634.200000px;}
.x43_c00101{left:636.300000px;}
.x5d_c00101{left:639.000000px;}
.x10a_c00101{left:641.250000px;}
.x11e_c00101{left:644.100000px;}
.x76_c00101{left:645.750000px;}
.x113_c00101{left:647.100000px;}
.xaa_c00101{left:648.300000px;}
.x6d_c00101{left:650.250000px;}
.xfb_c00101{left:651.450000px;}
.x105_c00101{left:654.300000px;}
.x4f_c00101{left:656.100000px;}
.x33_c00101{left:657.600000px;}
.x44_c00101{left:659.400000px;}
.xb9_c00101{left:663.000000px;}
.x11f_c00101{left:664.650000px;}
.xc9_c00101{left:666.750000px;}
.xcf_c00101{left:670.500000px;}
.x5e_c00101{left:677.550000px;}
.x14_c00101{left:679.200000px;}
.x24_c00101{left:680.250000px;}
.x9a_c00101{left:681.900000px;}
.xab_c00101{left:683.250000px;}
.x50_c00101{left:684.600000px;}
.x77_c00101{left:685.650000px;}
.x114_c00101{left:686.700000px;}
.x34_c00101{left:688.950000px;}
.xd0_c00101{left:690.000000px;}
.x81_c00101{left:693.150000px;}
.x8b_c00101{left:697.500000px;}
.xda_c00101{left:702.750000px;}
.xf4_c00101{left:705.600000px;}
.x35_c00101{left:710.250000px;}
.x15_c00101{left:711.600000px;}
.xba_c00101{left:715.500000px;}
.x8c_c00101{left:718.350000px;}
.x9b_c00101{left:721.200000px;}
.x51_c00101{left:723.150000px;}
.x45_c00101{left:725.700000px;}
.x82_c00101{left:728.400000px;}
.xfc_c00101{left:729.600000px;}
.xa3_c00101{left:731.550000px;}
.x16_c00101{left:733.200000px;}
.xac_c00101{left:735.750000px;}
.x25_c00101{left:737.100000px;}
.x36_c00101{left:741.600000px;}
.x78_c00101{left:742.800000px;}
.xe1_c00101{left:743.850000px;}
.xf5_c00101{left:746.700000px;}
.x83_c00101{left:753.900000px;}
.x26_c00101{left:755.400000px;}
.xdb_c00101{left:758.850000px;}
.x52_c00101{left:761.250000px;}
.x5f_c00101{left:763.200000px;}
.xe2_c00101{left:770.100000px;}
.xca_c00101{left:772.950000px;}
.x46_c00101{left:775.050000px;}
.x17_c00101{left:777.450000px;}
.x121_c00101{left:782.100000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws6_c00101{word-spacing:-9.012346pt;}
.ws3_c00101{word-spacing:-4.836601pt;}
.ws4_c00101{word-spacing:-0.413437pt;}
.ws9_c00101{word-spacing:0.000000pt;}
.ws7_c00101{word-spacing:0.130719pt;}
.ws0_c00101{word-spacing:0.472813pt;}
.ws1_c00101{word-spacing:2.777778pt;}
.ws5_c00101{word-spacing:12.098765pt;}
.ws2_c00101{word-spacing:14.379085pt;}
.ws8_c00101{word-spacing:32.757202pt;}
.fs1_c00101{font-size:42.666667pt;}
.fs0_c00101{font-size:53.333333pt;}
.y0_c00101{bottom:0.000000pt;}
.y25_c00101{bottom:132.000000pt;}
.y24_c00101{bottom:149.866667pt;}
.y23_c00101{bottom:167.466667pt;}
.y22_c00101{bottom:185.066667pt;}
.y21_c00101{bottom:202.933333pt;}
.y20_c00101{bottom:220.533333pt;}
.y1f_c00101{bottom:238.133333pt;}
.y1e_c00101{bottom:256.000000pt;}
.y1d_c00101{bottom:273.600000pt;}
.y1c_c00101{bottom:291.200000pt;}
.y1b_c00101{bottom:309.066667pt;}
.y1a_c00101{bottom:326.666667pt;}
.y19_c00101{bottom:344.533333pt;}
.y18_c00101{bottom:361.866667pt;}
.y17_c00101{bottom:379.866667pt;}
.y16_c00101{bottom:397.466667pt;}
.y15_c00101{bottom:414.400000pt;}
.y14_c00101{bottom:432.666667pt;}
.y13_c00101{bottom:450.266667pt;}
.y12_c00101{bottom:468.000000pt;}
.y11_c00101{bottom:485.866667pt;}
.y10_c00101{bottom:503.466667pt;}
.yf_c00101{bottom:521.333333pt;}
.ye_c00101{bottom:538.666667pt;}
.yd_c00101{bottom:556.533333pt;}
.yc_c00101{bottom:574.400000pt;}
.yb_c00101{bottom:591.733333pt;}
.ya_c00101{bottom:609.333333pt;}
.y9_c00101{bottom:626.933333pt;}
.y8_c00101{bottom:644.533333pt;}
.y7_c00101{bottom:662.400000pt;}
.y6_c00101{bottom:680.000000pt;}
.y5_c00101{bottom:697.600000pt;}
.y4_c00101{bottom:715.466667pt;}
.y3_c00101{bottom:745.333333pt;}
.y2_c00101{bottom:775.066667pt;}
.y1_c00101{bottom:931.200000pt;}
.h3_c00101{height:42.666667pt;}
.h2_c00101{height:53.333333pt;}
.h1_c00101{height:1038.000000pt;}
.h0_c00101{height:1038.079997pt;}
.w1_c00101{width:818.000000pt;}
.w0_c00101{width:818.239991pt;}
.x0_c00101{left:0.000000pt;}
.x9c_c00101{left:104.400000pt;}
.x9_c00101{left:105.333333pt;}
.xf6_c00101{left:106.266667pt;}
.xad_c00101{left:119.600000pt;}
.x47_c00101{left:120.933333pt;}
.x37_c00101{left:124.800000pt;}
.xa4_c00101{left:128.666667pt;}
.x103_c00101{left:130.266667pt;}
.x92_c00101{left:131.866667pt;}
.x60_c00101{left:133.466667pt;}
.x106_c00101{left:135.733333pt;}
.x8d_c00101{left:137.466667pt;}
.xfd_c00101{left:138.400000pt;}
.x53_c00101{left:139.733333pt;}
.x6e_c00101{left:141.600000pt;}
.x18_c00101{left:142.533333pt;}
.x11a_c00101{left:146.933333pt;}
.xea_c00101{left:147.866667pt;}
.x79_c00101{left:148.933333pt;}
.xb0_c00101{left:150.000000pt;}
.x8e_c00101{left:153.466667pt;}
.x9d_c00101{left:155.866667pt;}
.xfe_c00101{left:156.933333pt;}
.x19_c00101{left:160.800000pt;}
.x93_c00101{left:162.000000pt;}
.x38_c00101{left:164.133333pt;}
.x54_c00101{left:166.000000pt;}
.xa_c00101{left:167.466667pt;}
.x10f_c00101{left:170.933333pt;}
.xeb_c00101{left:173.466667pt;}
.x27_c00101{left:175.466667pt;}
.xae_c00101{left:176.533333pt;}
.xb1_c00101{left:177.466667pt;}
.xdc_c00101{left:179.200000pt;}
.x1a_c00101{left:181.333333pt;}
.xcb_c00101{left:182.666667pt;}
.x39_c00101{left:183.600000pt;}
.x8f_c00101{left:186.800000pt;}
.x61_c00101{left:189.200000pt;}
.xa5_c00101{left:190.666667pt;}
.xaf_c00101{left:191.866667pt;}
.x28_c00101{left:193.333333pt;}
.xbb_c00101{left:195.066667pt;}
.x110_c00101{left:197.200000pt;}
.x48_c00101{left:198.400000pt;}
.xc4_c00101{left:199.333333pt;}
.xb_c00101{left:200.800000pt;}
.xe3_c00101{left:203.066667pt;}
.x94_c00101{left:205.466667pt;}
.xec_c00101{left:206.800000pt;}
.x7a_c00101{left:209.200000pt;}
.x3a_c00101{left:210.133333pt;}
.x90_c00101{left:211.733333pt;}
.x9e_c00101{left:213.466667pt;}
.xdd_c00101{left:215.333333pt;}
.x6f_c00101{left:217.066667pt;}
.x29_c00101{left:218.933333pt;}
.xa6_c00101{left:221.333333pt;}
.xd1_c00101{left:222.800000pt;}
.xcc_c00101{left:224.000000pt;}
.x115_c00101{left:224.933333pt;}
.xc_c00101{left:226.133333pt;}
.x1b_c00101{left:227.066667pt;}
.x49_c00101{left:228.800000pt;}
.xbc_c00101{left:231.200000pt;}
.x9f_c00101{left:232.400000pt;}
.xe4_c00101{left:234.800000pt;}
.x3b_c00101{left:236.666667pt;}
.x120_c00101{left:238.800000pt;}
.x62_c00101{left:240.666667pt;}
.x4_c00101{left:241.600000pt;}
.xff_c00101{left:243.333333pt;}
.xd2_c00101{left:245.866667pt;}
.x91_c00101{left:246.933333pt;}
.xc2_c00101{left:251.066667pt;}
.xb2_c00101{left:252.400000pt;}
.xee_c00101{left:253.466667pt;}
.x107_c00101{left:256.133333pt;}
.x2a_c00101{left:257.066667pt;}
.xa0_c00101{left:258.266667pt;}
.x3c_c00101{left:259.333333pt;}
.x55_c00101{left:260.400000pt;}
.x63_c00101{left:263.333333pt;}
.x116_c00101{left:264.666667pt;}
.xde_c00101{left:266.266667pt;}
.xc3_c00101{left:268.933333pt;}
.x10b_c00101{left:273.466667pt;}
.x7b_c00101{left:276.400000pt;}
.xb3_c00101{left:277.733333pt;}
.x84_c00101{left:280.933333pt;}
.xcd_c00101{left:283.466667pt;}
.xe5_c00101{left:284.933333pt;}
.xed_c00101{left:286.400000pt;}
.x56_c00101{left:287.333333pt;}
.xd_c00101{left:290.133333pt;}
.x100_c00101{left:292.266667pt;}
.x70_c00101{left:293.600000pt;}
.xd3_c00101{left:297.733333pt;}
.x1c_c00101{left:299.066667pt;}
.x3d_c00101{left:301.600000pt;}
.x2b_c00101{left:303.733333pt;}
.x7c_c00101{left:307.066667pt;}
.xc5_c00101{left:308.800000pt;}
.xbd_c00101{left:309.866667pt;}
.xb4_c00101{left:312.000000pt;}
.xef_c00101{left:312.933333pt;}
.x2c_c00101{left:314.000000pt;}
.x3e_c00101{left:319.466667pt;}
.x57_c00101{left:323.466667pt;}
.x1d_c00101{left:325.333333pt;}
.xf0_c00101{left:328.666667pt;}
.x64_c00101{left:330.266667pt;}
.xd4_c00101{left:331.333333pt;}
.x5_c00101{left:332.533333pt;}
.x85_c00101{left:334.133333pt;}
.x71_c00101{left:335.200000pt;}
.x2d_c00101{left:341.200000pt;}
.x58_c00101{left:342.666667pt;}
.xd5_c00101{left:344.800000pt;}
.x65_c00101{left:346.000000pt;}
.xe_c00101{left:347.066667pt;}
.xce_c00101{left:348.400000pt;}
.xf1_c00101{left:349.733333pt;}
.x101_c00101{left:351.200000pt;}
.x72_c00101{left:352.533333pt;}
.x2_c00101{left:353.866667pt;}
.x95_c00101{left:355.200000pt;}
.x10c_c00101{left:356.400000pt;}
.x4a_c00101{left:358.933333pt;}
.x66_c00101{left:362.000000pt;}
.xe6_c00101{left:364.533333pt;}
.x2e_c00101{left:366.533333pt;}
.x3f_c00101{left:368.133333pt;}
.x11b_c00101{left:370.533333pt;}
.xbe_c00101{left:374.800000pt;}
.xb5_c00101{left:377.600000pt;}
.x86_c00101{left:379.200000pt;}
.xf_c00101{left:380.933333pt;}
.x73_c00101{left:386.133333pt;}
.x1e_c00101{left:388.000000pt;}
.xc6_c00101{left:390.133333pt;}
.xe7_c00101{left:391.733333pt;}
.x1_c00101{left:393.866667pt;}
.x7d_c00101{left:395.333333pt;}
.x108_c00101{left:396.266667pt;}
.x59_c00101{left:398.400000pt;}
.x11c_c00101{left:400.666667pt;}
.xd6_c00101{left:403.466667pt;}
.x1f_c00101{left:405.600000pt;}
.xbf_c00101{left:406.800000pt;}
.x67_c00101{left:408.400000pt;}
.x10_c00101{left:409.733333pt;}
.x2f_c00101{left:410.666667pt;}
.x4b_c00101{left:412.400000pt;}
.x5a_c00101{left:416.666667pt;}
.xb6_c00101{left:418.933333pt;}
.x6_c00101{left:420.533333pt;}
.x7e_c00101{left:421.866667pt;}
.x109_c00101{left:426.000000pt;}
.x117_c00101{left:428.133333pt;}
.x3_c00101{left:429.333333pt;}
.xf2_c00101{left:430.800000pt;}
.x102_c00101{left:432.266667pt;}
.x30_c00101{left:433.333333pt;}
.x20_c00101{left:434.666667pt;}
.x87_c00101{left:438.133333pt;}
.xa1_c00101{left:439.333333pt;}
.x68_c00101{left:440.400000pt;}
.x111_c00101{left:441.733333pt;}
.x7_c00101{left:447.466667pt;}
.xf7_c00101{left:449.866667pt;}
.x5b_c00101{left:454.400000pt;}
.xf3_c00101{left:455.733333pt;}
.x96_c00101{left:457.333333pt;}
.x4c_c00101{left:459.733333pt;}
.xd7_c00101{left:461.733333pt;}
.xdf_c00101{left:463.733333pt;}
.x40_c00101{left:465.733333pt;}
.x104_c00101{left:466.666667pt;}
.x11_c00101{left:468.000000pt;}
.x69_c00101{left:470.133333pt;}
.x21_c00101{left:471.200000pt;}
.x7f_c00101{left:472.133333pt;}
.xb7_c00101{left:473.600000pt;}
.x31_c00101{left:474.666667pt;}
.xa7_c00101{left:479.600000pt;}
.xf8_c00101{left:481.866667pt;}
.x41_c00101{left:484.933333pt;}
.x10d_c00101{left:486.000000pt;}
.x97_c00101{left:488.400000pt;}
.xc0_c00101{left:489.733333pt;}
.x118_c00101{left:491.200000pt;}
.xb8_c00101{left:492.133333pt;}
.x12_c00101{left:493.333333pt;}
.x88_c00101{left:494.400000pt;}
.x8_c00101{left:496.400000pt;}
.x74_c00101{left:497.466667pt;}
.x4d_c00101{left:500.000000pt;}
.x80_c00101{left:502.266667pt;}
.x10e_c00101{left:503.600000pt;}
.xc1_c00101{left:505.066667pt;}
.x6a_c00101{left:506.666667pt;}
.x98_c00101{left:508.533333pt;}
.xd8_c00101{left:512.000000pt;}
.x119_c00101{left:514.266667pt;}
.x4e_c00101{left:517.866667pt;}
.xa8_c00101{left:519.866667pt;}
.x11d_c00101{left:520.933333pt;}
.x75_c00101{left:522.800000pt;}
.xe0_c00101{left:524.800000pt;}
.xc7_c00101{left:527.066667pt;}
.x112_c00101{left:529.466667pt;}
.x32_c00101{left:530.400000pt;}
.x89_c00101{left:532.533333pt;}
.xe8_c00101{left:533.733333pt;}
.x6b_c00101{left:536.800000pt;}
.xf9_c00101{left:538.133333pt;}
.xd9_c00101{left:539.866667pt;}
.x22_c00101{left:541.600000pt;}
.x99_c00101{left:545.333333pt;}
.x42_c00101{left:546.400000pt;}
.x13_c00101{left:547.733333pt;}
.x5c_c00101{left:549.066667pt;}
.xa9_c00101{left:550.933333pt;}
.xa2_c00101{left:552.666667pt;}
.x6c_c00101{left:554.666667pt;}
.xc8_c00101{left:556.533333pt;}
.xe9_c00101{left:559.333333pt;}
.x23_c00101{left:560.533333pt;}
.x8a_c00101{left:562.666667pt;}
.xfa_c00101{left:563.733333pt;}
.x43_c00101{left:565.600000pt;}
.x5d_c00101{left:568.000000pt;}
.x10a_c00101{left:570.000000pt;}
.x11e_c00101{left:572.533333pt;}
.x76_c00101{left:574.000000pt;}
.x113_c00101{left:575.200000pt;}
.xaa_c00101{left:576.266667pt;}
.x6d_c00101{left:578.000000pt;}
.xfb_c00101{left:579.066667pt;}
.x105_c00101{left:581.600000pt;}
.x4f_c00101{left:583.200000pt;}
.x33_c00101{left:584.533333pt;}
.x44_c00101{left:586.133333pt;}
.xb9_c00101{left:589.333333pt;}
.x11f_c00101{left:590.800000pt;}
.xc9_c00101{left:592.666667pt;}
.xcf_c00101{left:596.000000pt;}
.x5e_c00101{left:602.266667pt;}
.x14_c00101{left:603.733333pt;}
.x24_c00101{left:604.666667pt;}
.x9a_c00101{left:606.133333pt;}
.xab_c00101{left:607.333333pt;}
.x50_c00101{left:608.533333pt;}
.x77_c00101{left:609.466667pt;}
.x114_c00101{left:610.400000pt;}
.x34_c00101{left:612.400000pt;}
.xd0_c00101{left:613.333333pt;}
.x81_c00101{left:616.133333pt;}
.x8b_c00101{left:620.000000pt;}
.xda_c00101{left:624.666667pt;}
.xf4_c00101{left:627.200000pt;}
.x35_c00101{left:631.333333pt;}
.x15_c00101{left:632.533333pt;}
.xba_c00101{left:636.000000pt;}
.x8c_c00101{left:638.533333pt;}
.x9b_c00101{left:641.066667pt;}
.x51_c00101{left:642.800000pt;}
.x45_c00101{left:645.066667pt;}
.x82_c00101{left:647.466667pt;}
.xfc_c00101{left:648.533333pt;}
.xa3_c00101{left:650.266667pt;}
.x16_c00101{left:651.733333pt;}
.xac_c00101{left:654.000000pt;}
.x25_c00101{left:655.200000pt;}
.x36_c00101{left:659.200000pt;}
.x78_c00101{left:660.266667pt;}
.xe1_c00101{left:661.200000pt;}
.xf5_c00101{left:663.733333pt;}
.x83_c00101{left:670.133333pt;}
.x26_c00101{left:671.466667pt;}
.xdb_c00101{left:674.533333pt;}
.x52_c00101{left:676.666667pt;}
.x5f_c00101{left:678.400000pt;}
.xe2_c00101{left:684.533333pt;}
.xca_c00101{left:687.066667pt;}
.x46_c00101{left:688.933333pt;}
.x17_c00101{left:691.066667pt;}
.x121_c00101{left:695.200000pt;}
}





/* 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_c00102 {
    display:none;
  }
  .loading-indicator_c00102.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00102 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_c00102 { 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_c00102" -> "#page-container .classname_c00102")
 */
.pf_c00102 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00102 { /* 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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00102 { /* 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_c00102 { /* 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_c00102 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00102 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00102 {overflow:visible;}
  }
}
.c_c00102 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00102 { /* 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_c00102:after { /* webkit #35443 */
  content: '';
}
.t_c00102:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00102 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 */
}
.__c00102 { /* 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_c00102 { /* info for Javascript */
  display:none;
}
.l_c00102 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00102 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00102 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00102: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_c00102 {
    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_c00102.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00102.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_c00102 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00102{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00102;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.000000;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;}
.mf_c00102{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m89_c00102{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m52_c00102{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m64_c00102{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00102{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00102{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00102{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.md_c00102{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m93_c00102{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00102{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.maf_c00102{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00102{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00102{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00102{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m43_c00102{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00102{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m73_c00102{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m25_c00102{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00102{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m14_c00102{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00102{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m53_c00102{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00102{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00102{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m75_c00102{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00102{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00102{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00102{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00102{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m32_c00102{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m86_c00102{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m27_c00102{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00102{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m28_c00102{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00102{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00102{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m40_c00102{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00102{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00102{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb_c00102{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00102{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00102{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc_c00102{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00102{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00102{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m69_c00102{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m51_c00102{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00102{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m65_c00102{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00102{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m48_c00102{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m66_c00102{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00102{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00102{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00102{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00102{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00102{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m21_c00102{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00102{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m19_c00102{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m56_c00102{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m16_c00102{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00102{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00102{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00102{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00102{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00102{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00102{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00102{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m41_c00102{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00102{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00102{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m59_c00102{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m85_c00102{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m39_c00102{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00102{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m96_c00102{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m58_c00102{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m33_c00102{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00102{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mad_c00102{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00102{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00102{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m83_c00102{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00102{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00102{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m37_c00102{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m57_c00102{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m60_c00102{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m45_c00102{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2_c00102{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mae_c00102{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.me_c00102{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6_c00102{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m70_c00102{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00102{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00102{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m13_c00102{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m84_c00102{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m61_c00102{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7_c00102{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mab_c00102{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00102{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00102{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00102{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00102{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29_c00102{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00102{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m18_c00102{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m87_c00102{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m55_c00102{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m88_c00102{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00102{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00102{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m11_c00102{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m82_c00102{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m31_c00102{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m12_c00102{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m54_c00102{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m68_c00102{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m42_c00102{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m97_c00102{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m17_c00102{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mac_c00102{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m22_c00102{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00102{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00102{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0_c00102{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00102{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00102{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m63_c00102{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3_c00102{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m91_c00102{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00102{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m71_c00102{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5_c00102{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00102{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4_c00102{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00102{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m80_c00102{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m72_c00102{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00102{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m78_c00102{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10_c00102{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00102{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00102{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m94_c00102{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00102{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m38_c00102{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00102{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.maa_c00102{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m49_c00102{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00102{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m35_c00102{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00102{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m26_c00102{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m67_c00102{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m90_c00102{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00102{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m44_c00102{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m92_c00102{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00102{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m81_c00102{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00102{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m23_c00102{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m47_c00102{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00102{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m9_c00102{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m36_c00102{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m46_c00102{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00102{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c00102{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00102{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m98_c00102{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00102{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m95_c00102{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00102{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0_c00102{vertical-align:0.000000px;}
.ls0_c00102{letter-spacing:0.000000px;}
.sc__c00102{text-shadow:none;}
.sc0_c00102{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__c00102{-webkit-text-stroke:0px transparent;}
.sc0_c00102{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00102{word-spacing:-4.722222px;}
.ws3_c00102{word-spacing:-4.285714px;}
.ws7_c00102{word-spacing:0.000000px;}
.ws1_c00102{word-spacing:3.676471px;}
.ws4_c00102{word-spacing:4.523810px;}
.ws5_c00102{word-spacing:4.605263px;}
.ws0_c00102{word-spacing:4.830508px;}
.ws6_c00102{word-spacing:38.666667px;}
.fc0_c00102{color:transparent;}
.fs1_c00102{font-size:48.000000px;}
.fs2_c00102{font-size:60.000000px;}
.fs0_c00102{font-size:66.000000px;}
.y0_c00102{bottom:0.000000px;}
.y2c_c00102{bottom:155.550000px;}
.y2a_c00102{bottom:184.350000px;}
.y2b_c00102{bottom:190.050000px;}
.y29_c00102{bottom:196.200000px;}
.y28_c00102{bottom:228.600000px;}
.y23_c00102{bottom:266.100000px;}
.y27_c00102{bottom:266.700000px;}
.y22_c00102{bottom:304.200000px;}
.y26_c00102{bottom:304.950000px;}
.y25_c00102{bottom:341.700000px;}
.y21_c00102{bottom:342.750000px;}
.y20_c00102{bottom:380.850000px;}
.y1f_c00102{bottom:419.400000px;}
.y24_c00102{bottom:423.000000px;}
.y1e_c00102{bottom:431.250000px;}
.y1d_c00102{bottom:486.150000px;}
.y1c_c00102{bottom:506.250000px;}
.y1b_c00102{bottom:526.050000px;}
.y1a_c00102{bottom:546.150000px;}
.y19_c00102{bottom:565.950000px;}
.y18_c00102{bottom:585.450000px;}
.y17_c00102{bottom:605.550000px;}
.y16_c00102{bottom:625.500000px;}
.y15_c00102{bottom:645.600000px;}
.y14_c00102{bottom:665.700000px;}
.y13_c00102{bottom:685.500000px;}
.y12_c00102{bottom:705.300000px;}
.y11_c00102{bottom:725.550000px;}
.y10_c00102{bottom:745.350000px;}
.yf_c00102{bottom:765.450000px;}
.ye_c00102{bottom:785.250000px;}
.yd_c00102{bottom:805.350000px;}
.yc_c00102{bottom:825.150000px;}
.yb_c00102{bottom:845.250000px;}
.ya_c00102{bottom:864.750000px;}
.y9_c00102{bottom:885.300000px;}
.y8_c00102{bottom:905.100000px;}
.y7_c00102{bottom:925.200000px;}
.y6_c00102{bottom:945.000000px;}
.y5_c00102{bottom:965.100000px;}
.y4_c00102{bottom:984.900000px;}
.y3_c00102{bottom:1004.700000px;}
.y1_c00102{bottom:1041.900000px;}
.y2_c00102{bottom:1042.950000px;}
.h3_c00102{height:48.000000px;}
.h4_c00102{height:60.000000px;}
.h2_c00102{height:66.000000px;}
.h1_c00102{height:1167.750000px;}
.h0_c00102{height:1167.839997px;}
.w1_c00102{width:920.250000px;}
.w0_c00102{width:920.519990px;}
.x0_c00102{left:0.000000px;}
.xe6_c00102{left:140.250000px;}
.x41_c00102{left:141.450000px;}
.x3_c00102{left:142.500000px;}
.x1_c00102{left:143.700000px;}
.x9c_c00102{left:153.450000px;}
.x4_c00102{left:157.650000px;}
.x110_c00102{left:159.150000px;}
.x7a_c00102{left:160.800000px;}
.x14_c00102{left:162.750000px;}
.x22_c00102{left:169.950000px;}
.x32_c00102{left:171.750000px;}
.x5a_c00102{left:173.400000px;}
.xcd_c00102{left:176.100000px;}
.x104_c00102{left:177.300000px;}
.xb5_c00102{left:180.750000px;}
.xa6_c00102{left:183.000000px;}
.x82_c00102{left:185.400000px;}
.x7b_c00102{left:186.750000px;}
.x33_c00102{left:189.450000px;}
.xaf_c00102{left:190.950000px;}
.x9d_c00102{left:192.000000px;}
.x68_c00102{left:194.400000px;}
.x15_c00102{left:196.200000px;}
.xbe_c00102{left:197.700000px;}
.x5_c00102{left:203.400000px;}
.x83_c00102{left:205.950000px;}
.x9e_c00102{left:207.150000px;}
.xd7_c00102{left:209.100000px;}
.xa7_c00102{left:213.300000px;}
.xb0_c00102{left:215.850000px;}
.xf5_c00102{left:218.100000px;}
.x69_c00102{left:219.600000px;}
.x7c_c00102{left:223.050000px;}
.x16_c00102{left:224.700000px;}
.x106_c00102{left:226.050000px;}
.x84_c00102{left:227.250000px;}
.xc5_c00102{left:228.300000px;}
.x105_c00102{left:229.350000px;}
.x42_c00102{left:230.400000px;}
.x9f_c00102{left:233.400000px;}
.xd8_c00102{left:234.600000px;}
.x107_c00102{left:237.150000px;}
.x34_c00102{left:238.350000px;}
.x7d_c00102{left:240.300000px;}
.xb6_c00102{left:241.650000px;}
.x6_c00102{left:243.000000px;}
.xa0_c00102{left:245.700000px;}
.xa8_c00102{left:247.200000px;}
.x6a_c00102{left:250.200000px;}
.x43_c00102{left:251.250000px;}
.x85_c00102{left:252.750000px;}
.xe7_c00102{left:254.700000px;}
.xb7_c00102{left:256.800000px;}
.x4f_c00102{left:258.150000px;}
.x108_c00102{left:262.050000px;}
.xbf_c00102{left:263.850000px;}
.x7e_c00102{left:265.500000px;}
.x23_c00102{left:267.900000px;}
.x17_c00102{left:270.750000px;}
.xf6_c00102{left:272.400000px;}
.x5b_c00102{left:275.250000px;}
.xfc_c00102{left:278.100000px;}
.xc6_c00102{left:282.000000px;}
.xd9_c00102{left:285.000000px;}
.xed_c00102{left:287.550000px;}
.x7_c00102{left:289.800000px;}
.x6b_c00102{left:292.350000px;}
.xe8_c00102{left:295.050000px;}
.x5c_c00102{left:297.150000px;}
.x24_c00102{left:300.600000px;}
.xb8_c00102{left:301.800000px;}
.xf7_c00102{left:303.300000px;}
.x44_c00102{left:306.000000px;}
.xda_c00102{left:308.100000px;}
.x18_c00102{left:310.650000px;}
.x10a_c00102{left:311.700000px;}
.x86_c00102{left:315.750000px;}
.x6c_c00102{left:319.050000px;}
.xc0_c00102{left:320.100000px;}
.x7f_c00102{left:324.600000px;}
.x45_c00102{left:326.100000px;}
.x35_c00102{left:328.350000px;}
.xc7_c00102{left:330.300000px;}
.x87_c00102{left:332.700000px;}
.x25_c00102{left:337.650000px;}
.x50_c00102{left:342.000000px;}
.xa9_c00102{left:345.450000px;}
.x8_c00102{left:346.650000px;}
.x36_c00102{left:350.250000px;}
.x90_c00102{left:351.450000px;}
.x5d_c00102{left:352.950000px;}
.x10b_c00102{left:356.850000px;}
.xff_c00102{left:358.500000px;}
.x26_c00102{left:360.300000px;}
.xaa_c00102{left:363.450000px;}
.xce_c00102{left:365.400000px;}
.x19_c00102{left:368.250000px;}
.x10c_c00102{left:369.450000px;}
.xc1_c00102{left:371.550000px;}
.x5e_c00102{left:372.750000px;}
.x37_c00102{left:374.400000px;}
.x9_c00102{left:376.200000px;}
.x6d_c00102{left:379.200000px;}
.xe2_c00102{left:382.650000px;}
.xb9_c00102{left:383.850000px;}
.xcf_c00102{left:385.200000px;}
.xc2_c00102{left:390.300000px;}
.x91_c00102{left:393.900000px;}
.x88_c00102{left:396.000000px;}
.x5f_c00102{left:399.000000px;}
.x46_c00102{left:401.400000px;}
.x80_c00102{left:403.800000px;}
.xdb_c00102{left:407.550000px;}
.x51_c00102{left:409.350000px;}
.x111_c00102{left:411.000000px;}
.xa1_c00102{left:412.050000px;}
.x89_c00102{left:413.250000px;}
.x27_c00102{left:414.300000px;}
.x38_c00102{left:415.500000px;}
.x10e_c00102{left:416.700000px;}
.xba_c00102{left:418.050000px;}
.x52_c00102{left:422.700000px;}
.x6e_c00102{left:425.250000px;}
.xee_c00102{left:426.600000px;}
.xa_c00102{left:429.450000px;}
.x60_c00102{left:432.900000px;}
.x28_c00102{left:434.850000px;}
.x47_c00102{left:437.400000px;}
.x2_c00102{left:439.950000px;}
.xb1_c00102{left:443.850000px;}
.xdc_c00102{left:445.050000px;}
.x53_c00102{left:447.600000px;}
.x6f_c00102{left:451.950000px;}
.x92_c00102{left:453.000000px;}
.xa2_c00102{left:454.950000px;}
.x8a_c00102{left:461.550000px;}
.xdd_c00102{left:464.100000px;}
.xb_c00102{left:465.150000px;}
.x61_c00102{left:466.350000px;}
.xef_c00102{left:467.700000px;}
.x70_c00102{left:469.200000px;}
.x39_c00102{left:471.000000px;}
.xd0_c00102{left:472.650000px;}
.x48_c00102{left:473.700000px;}
.xc8_c00102{left:476.400000px;}
.x8b_c00102{left:478.500000px;}
.x54_c00102{left:480.300000px;}
.x109_c00102{left:485.700000px;}
.x112_c00102{left:487.650000px;}
.x81_c00102{left:489.150000px;}
.x1a_c00102{left:490.650000px;}
.xde_c00102{left:491.850000px;}
.xc9_c00102{left:495.150000px;}
.xc_c00102{left:497.550000px;}
.x93_c00102{left:498.750000px;}
.x29_c00102{left:501.750000px;}
.x49_c00102{left:503.550000px;}
.x3a_c00102{left:506.250000px;}
.x62_c00102{left:509.550000px;}
.xb2_c00102{left:512.250000px;}
.x94_c00102{left:516.750000px;}
.xa3_c00102{left:518.250000px;}
.xca_c00102{left:519.300000px;}
.x2a_c00102{left:521.550000px;}
.x71_c00102{left:523.500000px;}
.x1b_c00102{left:524.550000px;}
.xab_c00102{left:525.750000px;}
.x3b_c00102{left:527.850000px;}
.xdf_c00102{left:531.150000px;}
.x55_c00102{left:534.600000px;}
.xf8_c00102{left:537.300000px;}
.x113_c00102{left:538.800000px;}
.x4a_c00102{left:541.050000px;}
.x95_c00102{left:544.050000px;}
.x72_c00102{left:545.100000px;}
.x2b_c00102{left:547.050000px;}
.xd_c00102{left:548.250000px;}
.x63_c00102{left:550.950000px;}
.x1c_c00102{left:552.300000px;}
.x10f_c00102{left:554.250000px;}
.xc3_c00102{left:558.750000px;}
.x56_c00102{left:561.900000px;}
.xb3_c00102{left:564.750000px;}
.x8c_c00102{left:567.450000px;}
.xe_c00102{left:570.150000px;}
.x3c_c00102{left:572.100000px;}
.xf0_c00102{left:573.600000px;}
.xe3_c00102{left:577.350000px;}
.x2c_c00102{left:581.550000px;}
.xbb_c00102{left:582.600000px;}
.x96_c00102{left:586.500000px;}
.xe0_c00102{left:588.750000px;}
.xcb_c00102{left:591.300000px;}
.xf_c00102{left:593.550000px;}
.x57_c00102{left:595.800000px;}
.xbc_c00102{left:599.850000px;}
.x2d_c00102{left:601.650000px;}
.x1d_c00102{left:603.000000px;}
.xe9_c00102{left:605.400000px;}
.x64_c00102{left:606.450000px;}
.xd1_c00102{left:607.650000px;}
.x8d_c00102{left:608.850000px;}
.x10d_c00102{left:610.950000px;}
.xac_c00102{left:613.650000px;}
.x73_c00102{left:614.850000px;}
.x97_c00102{left:617.850000px;}
.x4b_c00102{left:619.650000px;}
.xf9_c00102{left:622.650000px;}
.xbd_c00102{left:625.350000px;}
.xd2_c00102{left:627.450000px;}
.xa4_c00102{left:629.400000px;}
.xea_c00102{left:630.900000px;}
.x74_c00102{left:632.100000px;}
.x100_c00102{left:633.450000px;}
.x98_c00102{left:634.800000px;}
.x3d_c00102{left:636.150000px;}
.xfd_c00102{left:637.800000px;}
.x2e_c00102{left:640.200000px;}
.x65_c00102{left:643.500000px;}
.x58_c00102{left:644.700000px;}
.x1e_c00102{left:649.050000px;}
.xf1_c00102{left:651.000000px;}
.x101_c00102{left:653.550000px;}
.xd3_c00102{left:655.200000px;}
.xcc_c00102{left:656.400000px;}
.x99_c00102{left:658.500000px;}
.xc4_c00102{left:665.400000px;}
.x3e_c00102{left:667.050000px;}
.x75_c00102{left:668.850000px;}
.x1f_c00102{left:672.150000px;}
.x10_c00102{left:673.500000px;}
.x114_c00102{left:674.850000px;}
.x4c_c00102{left:677.250000px;}
.x2f_c00102{left:684.450000px;}
.xf2_c00102{left:686.250000px;}
.x11_c00102{left:688.650000px;}
.x76_c00102{left:689.700000px;}
.xe4_c00102{left:691.800000px;}
.xeb_c00102{left:693.900000px;}
.x102_c00102{left:694.950000px;}
.xd4_c00102{left:696.900000px;}
.x8e_c00102{left:698.250000px;}
.x9a_c00102{left:699.900000px;}
.x59_c00102{left:704.850000px;}
.x66_c00102{left:707.250000px;}
.x20_c00102{left:710.250000px;}
.x30_c00102{left:712.500000px;}
.xa5_c00102{left:717.600000px;}
.xad_c00102{left:723.450000px;}
.xe1_c00102{left:725.100000px;}
.x8f_c00102{left:727.050000px;}
.x77_c00102{left:728.550000px;}
.x12_c00102{left:730.350000px;}
.xb4_c00102{left:732.600000px;}
.xec_c00102{left:735.000000px;}
.x4d_c00102{left:741.300000px;}
.x31_c00102{left:745.950000px;}
.xd5_c00102{left:749.850000px;}
.xae_c00102{left:753.300000px;}
.xfe_c00102{left:754.800000px;}
.x3f_c00102{left:756.300000px;}
.x67_c00102{left:761.250000px;}
.x9b_c00102{left:762.600000px;}
.x4e_c00102{left:765.000000px;}
.xfa_c00102{left:766.650000px;}
.xe5_c00102{left:769.950000px;}
.x78_c00102{left:771.450000px;}
.xf3_c00102{left:775.500000px;}
.xd6_c00102{left:777.600000px;}
.x103_c00102{left:778.800000px;}
.x13_c00102{left:781.500000px;}
.x21_c00102{left:785.550000px;}
.xfb_c00102{left:787.950000px;}
.x79_c00102{left:791.250000px;}
.xf4_c00102{left:793.800000px;}
.x40_c00102{left:796.650000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws2_c00102{word-spacing:-4.197531pt;}
.ws3_c00102{word-spacing:-3.809524pt;}
.ws7_c00102{word-spacing:0.000000pt;}
.ws1_c00102{word-spacing:3.267974pt;}
.ws4_c00102{word-spacing:4.021164pt;}
.ws5_c00102{word-spacing:4.093567pt;}
.ws0_c00102{word-spacing:4.293785pt;}
.ws6_c00102{word-spacing:34.370370pt;}
.fs1_c00102{font-size:42.666667pt;}
.fs2_c00102{font-size:53.333333pt;}
.fs0_c00102{font-size:58.666667pt;}
.y0_c00102{bottom:0.000000pt;}
.y2c_c00102{bottom:138.266667pt;}
.y2a_c00102{bottom:163.866667pt;}
.y2b_c00102{bottom:168.933333pt;}
.y29_c00102{bottom:174.400000pt;}
.y28_c00102{bottom:203.200000pt;}
.y23_c00102{bottom:236.533333pt;}
.y27_c00102{bottom:237.066667pt;}
.y22_c00102{bottom:270.400000pt;}
.y26_c00102{bottom:271.066667pt;}
.y25_c00102{bottom:303.733333pt;}
.y21_c00102{bottom:304.666667pt;}
.y20_c00102{bottom:338.533333pt;}
.y1f_c00102{bottom:372.800000pt;}
.y24_c00102{bottom:376.000000pt;}
.y1e_c00102{bottom:383.333333pt;}
.y1d_c00102{bottom:432.133333pt;}
.y1c_c00102{bottom:450.000000pt;}
.y1b_c00102{bottom:467.600000pt;}
.y1a_c00102{bottom:485.466667pt;}
.y19_c00102{bottom:503.066667pt;}
.y18_c00102{bottom:520.400000pt;}
.y17_c00102{bottom:538.266667pt;}
.y16_c00102{bottom:556.000000pt;}
.y15_c00102{bottom:573.866667pt;}
.y14_c00102{bottom:591.733333pt;}
.y13_c00102{bottom:609.333333pt;}
.y12_c00102{bottom:626.933333pt;}
.y11_c00102{bottom:644.933333pt;}
.y10_c00102{bottom:662.533333pt;}
.yf_c00102{bottom:680.400000pt;}
.ye_c00102{bottom:698.000000pt;}
.yd_c00102{bottom:715.866667pt;}
.yc_c00102{bottom:733.466667pt;}
.yb_c00102{bottom:751.333333pt;}
.ya_c00102{bottom:768.666667pt;}
.y9_c00102{bottom:786.933333pt;}
.y8_c00102{bottom:804.533333pt;}
.y7_c00102{bottom:822.400000pt;}
.y6_c00102{bottom:840.000000pt;}
.y5_c00102{bottom:857.866667pt;}
.y4_c00102{bottom:875.466667pt;}
.y3_c00102{bottom:893.066667pt;}
.y1_c00102{bottom:926.133333pt;}
.y2_c00102{bottom:927.066667pt;}
.h3_c00102{height:42.666667pt;}
.h4_c00102{height:53.333333pt;}
.h2_c00102{height:58.666667pt;}
.h1_c00102{height:1038.000000pt;}
.h0_c00102{height:1038.079997pt;}
.w1_c00102{width:818.000000pt;}
.w0_c00102{width:818.239991pt;}
.x0_c00102{left:0.000000pt;}
.xe6_c00102{left:124.666667pt;}
.x41_c00102{left:125.733333pt;}
.x3_c00102{left:126.666667pt;}
.x1_c00102{left:127.733333pt;}
.x9c_c00102{left:136.400000pt;}
.x4_c00102{left:140.133333pt;}
.x110_c00102{left:141.466667pt;}
.x7a_c00102{left:142.933333pt;}
.x14_c00102{left:144.666667pt;}
.x22_c00102{left:151.066667pt;}
.x32_c00102{left:152.666667pt;}
.x5a_c00102{left:154.133333pt;}
.xcd_c00102{left:156.533333pt;}
.x104_c00102{left:157.600000pt;}
.xb5_c00102{left:160.666667pt;}
.xa6_c00102{left:162.666667pt;}
.x82_c00102{left:164.800000pt;}
.x7b_c00102{left:166.000000pt;}
.x33_c00102{left:168.400000pt;}
.xaf_c00102{left:169.733333pt;}
.x9d_c00102{left:170.666667pt;}
.x68_c00102{left:172.800000pt;}
.x15_c00102{left:174.400000pt;}
.xbe_c00102{left:175.733333pt;}
.x5_c00102{left:180.800000pt;}
.x83_c00102{left:183.066667pt;}
.x9e_c00102{left:184.133333pt;}
.xd7_c00102{left:185.866667pt;}
.xa7_c00102{left:189.600000pt;}
.xb0_c00102{left:191.866667pt;}
.xf5_c00102{left:193.866667pt;}
.x69_c00102{left:195.200000pt;}
.x7c_c00102{left:198.266667pt;}
.x16_c00102{left:199.733333pt;}
.x106_c00102{left:200.933333pt;}
.x84_c00102{left:202.000000pt;}
.xc5_c00102{left:202.933333pt;}
.x105_c00102{left:203.866667pt;}
.x42_c00102{left:204.800000pt;}
.x9f_c00102{left:207.466667pt;}
.xd8_c00102{left:208.533333pt;}
.x107_c00102{left:210.800000pt;}
.x34_c00102{left:211.866667pt;}
.x7d_c00102{left:213.600000pt;}
.xb6_c00102{left:214.800000pt;}
.x6_c00102{left:216.000000pt;}
.xa0_c00102{left:218.400000pt;}
.xa8_c00102{left:219.733333pt;}
.x6a_c00102{left:222.400000pt;}
.x43_c00102{left:223.333333pt;}
.x85_c00102{left:224.666667pt;}
.xe7_c00102{left:226.400000pt;}
.xb7_c00102{left:228.266667pt;}
.x4f_c00102{left:229.466667pt;}
.x108_c00102{left:232.933333pt;}
.xbf_c00102{left:234.533333pt;}
.x7e_c00102{left:236.000000pt;}
.x23_c00102{left:238.133333pt;}
.x17_c00102{left:240.666667pt;}
.xf6_c00102{left:242.133333pt;}
.x5b_c00102{left:244.666667pt;}
.xfc_c00102{left:247.200000pt;}
.xc6_c00102{left:250.666667pt;}
.xd9_c00102{left:253.333333pt;}
.xed_c00102{left:255.600000pt;}
.x7_c00102{left:257.600000pt;}
.x6b_c00102{left:259.866667pt;}
.xe8_c00102{left:262.266667pt;}
.x5c_c00102{left:264.133333pt;}
.x24_c00102{left:267.200000pt;}
.xb8_c00102{left:268.266667pt;}
.xf7_c00102{left:269.600000pt;}
.x44_c00102{left:272.000000pt;}
.xda_c00102{left:273.866667pt;}
.x18_c00102{left:276.133333pt;}
.x10a_c00102{left:277.066667pt;}
.x86_c00102{left:280.666667pt;}
.x6c_c00102{left:283.600000pt;}
.xc0_c00102{left:284.533333pt;}
.x7f_c00102{left:288.533333pt;}
.x45_c00102{left:289.866667pt;}
.x35_c00102{left:291.866667pt;}
.xc7_c00102{left:293.600000pt;}
.x87_c00102{left:295.733333pt;}
.x25_c00102{left:300.133333pt;}
.x50_c00102{left:304.000000pt;}
.xa9_c00102{left:307.066667pt;}
.x8_c00102{left:308.133333pt;}
.x36_c00102{left:311.333333pt;}
.x90_c00102{left:312.400000pt;}
.x5d_c00102{left:313.733333pt;}
.x10b_c00102{left:317.200000pt;}
.xff_c00102{left:318.666667pt;}
.x26_c00102{left:320.266667pt;}
.xaa_c00102{left:323.066667pt;}
.xce_c00102{left:324.800000pt;}
.x19_c00102{left:327.333333pt;}
.x10c_c00102{left:328.400000pt;}
.xc1_c00102{left:330.266667pt;}
.x5e_c00102{left:331.333333pt;}
.x37_c00102{left:332.800000pt;}
.x9_c00102{left:334.400000pt;}
.x6d_c00102{left:337.066667pt;}
.xe2_c00102{left:340.133333pt;}
.xb9_c00102{left:341.200000pt;}
.xcf_c00102{left:342.400000pt;}
.xc2_c00102{left:346.933333pt;}
.x91_c00102{left:350.133333pt;}
.x88_c00102{left:352.000000pt;}
.x5f_c00102{left:354.666667pt;}
.x46_c00102{left:356.800000pt;}
.x80_c00102{left:358.933333pt;}
.xdb_c00102{left:362.266667pt;}
.x51_c00102{left:363.866667pt;}
.x111_c00102{left:365.333333pt;}
.xa1_c00102{left:366.266667pt;}
.x89_c00102{left:367.333333pt;}
.x27_c00102{left:368.266667pt;}
.x38_c00102{left:369.333333pt;}
.x10e_c00102{left:370.400000pt;}
.xba_c00102{left:371.600000pt;}
.x52_c00102{left:375.733333pt;}
.x6e_c00102{left:378.000000pt;}
.xee_c00102{left:379.200000pt;}
.xa_c00102{left:381.733333pt;}
.x60_c00102{left:384.800000pt;}
.x28_c00102{left:386.533333pt;}
.x47_c00102{left:388.800000pt;}
.x2_c00102{left:391.066667pt;}
.xb1_c00102{left:394.533333pt;}
.xdc_c00102{left:395.600000pt;}
.x53_c00102{left:397.866667pt;}
.x6f_c00102{left:401.733333pt;}
.x92_c00102{left:402.666667pt;}
.xa2_c00102{left:404.400000pt;}
.x8a_c00102{left:410.266667pt;}
.xdd_c00102{left:412.533333pt;}
.xb_c00102{left:413.466667pt;}
.x61_c00102{left:414.533333pt;}
.xef_c00102{left:415.733333pt;}
.x70_c00102{left:417.066667pt;}
.x39_c00102{left:418.666667pt;}
.xd0_c00102{left:420.133333pt;}
.x48_c00102{left:421.066667pt;}
.xc8_c00102{left:423.466667pt;}
.x8b_c00102{left:425.333333pt;}
.x54_c00102{left:426.933333pt;}
.x109_c00102{left:431.733333pt;}
.x112_c00102{left:433.466667pt;}
.x81_c00102{left:434.800000pt;}
.x1a_c00102{left:436.133333pt;}
.xde_c00102{left:437.200000pt;}
.xc9_c00102{left:440.133333pt;}
.xc_c00102{left:442.266667pt;}
.x93_c00102{left:443.333333pt;}
.x29_c00102{left:446.000000pt;}
.x49_c00102{left:447.600000pt;}
.x3a_c00102{left:450.000000pt;}
.x62_c00102{left:452.933333pt;}
.xb2_c00102{left:455.333333pt;}
.x94_c00102{left:459.333333pt;}
.xa3_c00102{left:460.666667pt;}
.xca_c00102{left:461.600000pt;}
.x2a_c00102{left:463.600000pt;}
.x71_c00102{left:465.333333pt;}
.x1b_c00102{left:466.266667pt;}
.xab_c00102{left:467.333333pt;}
.x3b_c00102{left:469.200000pt;}
.xdf_c00102{left:472.133333pt;}
.x55_c00102{left:475.200000pt;}
.xf8_c00102{left:477.600000pt;}
.x113_c00102{left:478.933333pt;}
.x4a_c00102{left:480.933333pt;}
.x95_c00102{left:483.600000pt;}
.x72_c00102{left:484.533333pt;}
.x2b_c00102{left:486.266667pt;}
.xd_c00102{left:487.333333pt;}
.x63_c00102{left:489.733333pt;}
.x1c_c00102{left:490.933333pt;}
.x10f_c00102{left:492.666667pt;}
.xc3_c00102{left:496.666667pt;}
.x56_c00102{left:499.466667pt;}
.xb3_c00102{left:502.000000pt;}
.x8c_c00102{left:504.400000pt;}
.xe_c00102{left:506.800000pt;}
.x3c_c00102{left:508.533333pt;}
.xf0_c00102{left:509.866667pt;}
.xe3_c00102{left:513.200000pt;}
.x2c_c00102{left:516.933333pt;}
.xbb_c00102{left:517.866667pt;}
.x96_c00102{left:521.333333pt;}
.xe0_c00102{left:523.333333pt;}
.xcb_c00102{left:525.600000pt;}
.xf_c00102{left:527.600000pt;}
.x57_c00102{left:529.600000pt;}
.xbc_c00102{left:533.200000pt;}
.x2d_c00102{left:534.800000pt;}
.x1d_c00102{left:536.000000pt;}
.xe9_c00102{left:538.133333pt;}
.x64_c00102{left:539.066667pt;}
.xd1_c00102{left:540.133333pt;}
.x8d_c00102{left:541.200000pt;}
.x10d_c00102{left:543.066667pt;}
.xac_c00102{left:545.466667pt;}
.x73_c00102{left:546.533333pt;}
.x97_c00102{left:549.200000pt;}
.x4b_c00102{left:550.800000pt;}
.xf9_c00102{left:553.466667pt;}
.xbd_c00102{left:555.866667pt;}
.xd2_c00102{left:557.733333pt;}
.xa4_c00102{left:559.466667pt;}
.xea_c00102{left:560.800000pt;}
.x74_c00102{left:561.866667pt;}
.x100_c00102{left:563.066667pt;}
.x98_c00102{left:564.266667pt;}
.x3d_c00102{left:565.466667pt;}
.xfd_c00102{left:566.933333pt;}
.x2e_c00102{left:569.066667pt;}
.x65_c00102{left:572.000000pt;}
.x58_c00102{left:573.066667pt;}
.x1e_c00102{left:576.933333pt;}
.xf1_c00102{left:578.666667pt;}
.x101_c00102{left:580.933333pt;}
.xd3_c00102{left:582.400000pt;}
.xcc_c00102{left:583.466667pt;}
.x99_c00102{left:585.333333pt;}
.xc4_c00102{left:591.466667pt;}
.x3e_c00102{left:592.933333pt;}
.x75_c00102{left:594.533333pt;}
.x1f_c00102{left:597.466667pt;}
.x10_c00102{left:598.666667pt;}
.x114_c00102{left:599.866667pt;}
.x4c_c00102{left:602.000000pt;}
.x2f_c00102{left:608.400000pt;}
.xf2_c00102{left:610.000000pt;}
.x11_c00102{left:612.133333pt;}
.x76_c00102{left:613.066667pt;}
.xe4_c00102{left:614.933333pt;}
.xeb_c00102{left:616.800000pt;}
.x102_c00102{left:617.733333pt;}
.xd4_c00102{left:619.466667pt;}
.x8e_c00102{left:620.666667pt;}
.x9a_c00102{left:622.133333pt;}
.x59_c00102{left:626.533333pt;}
.x66_c00102{left:628.666667pt;}
.x20_c00102{left:631.333333pt;}
.x30_c00102{left:633.333333pt;}
.xa5_c00102{left:637.866667pt;}
.xad_c00102{left:643.066667pt;}
.xe1_c00102{left:644.533333pt;}
.x8f_c00102{left:646.266667pt;}
.x77_c00102{left:647.600000pt;}
.x12_c00102{left:649.200000pt;}
.xb4_c00102{left:651.200000pt;}
.xec_c00102{left:653.333333pt;}
.x4d_c00102{left:658.933333pt;}
.x31_c00102{left:663.066667pt;}
.xd5_c00102{left:666.533333pt;}
.xae_c00102{left:669.600000pt;}
.xfe_c00102{left:670.933333pt;}
.x3f_c00102{left:672.266667pt;}
.x67_c00102{left:676.666667pt;}
.x9b_c00102{left:677.866667pt;}
.x4e_c00102{left:680.000000pt;}
.xfa_c00102{left:681.466667pt;}
.xe5_c00102{left:684.400000pt;}
.x78_c00102{left:685.733333pt;}
.xf3_c00102{left:689.333333pt;}
.xd6_c00102{left:691.200000pt;}
.x103_c00102{left:692.266667pt;}
.x13_c00102{left:694.666667pt;}
.x21_c00102{left:698.266667pt;}
.xfb_c00102{left:700.400000pt;}
.x79_c00102{left:703.333333pt;}
.xf4_c00102{left:705.600000pt;}
.x40_c00102{left:708.133333pt;}
}





/* 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_c00103 {
    display:none;
  }
  .loading-indicator_c00103.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00103 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_c00103 { 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_c00103" -> "#page-container .classname_c00103")
 */
.pf_c00103 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00103 { /* 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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00103 { /* 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_c00103 { /* 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_c00103 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00103 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00103 {overflow:visible;}
  }
}
.c_c00103 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00103 { /* 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_c00103:after { /* webkit #35443 */
  content: '';
}
.t_c00103:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00103 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 */
}
.__c00103 { /* 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_c00103 { /* info for Javascript */
  display:none;
}
.l_c00103 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00103 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00103 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00103: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_c00103 {
    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_c00103.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00103.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_c00103 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00103{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00103;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.000000;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;}
.m67_c00103{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00103{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.maf_c00103{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m22_c00103{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m21_c00103{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m49_c00103{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00103{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m3_c00103{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m63_c00103{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00103{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00103{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m28_c00103{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m35_c00103{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mae_c00103{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00103{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m70_c00103{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00103{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m37_c00103{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00103{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00103{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00103{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mac_c00103{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m95_c00103{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m51_c00103{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00103{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00103{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00103{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00103{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m30_c00103{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m88_c00103{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m61_c00103{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m97_c00103{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m20_c00103{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00103{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m33_c00103{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m57_c00103{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00103{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m69_c00103{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00103{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m62_c00103{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00103{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00103{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma_c00103{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m96_c00103{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00103{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00103{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m79_c00103{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00103{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00103{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00103{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m93_c00103{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m64_c00103{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m26_c00103{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m56_c00103{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00103{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m81_c00103{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00103{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m68_c00103{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m27_c00103{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m60_c00103{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m58_c00103{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m89_c00103{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00103{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00103{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m31_c00103{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00103{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00103{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00103{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m40_c00103{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m86_c00103{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00103{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m15_c00103{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00103{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m11_c00103{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf_c00103{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me_c00103{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m8_c00103{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m65_c00103{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00103{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00103{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m25_c00103{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m17_c00103{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00103{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m85_c00103{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m55_c00103{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m24_c00103{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00103{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00103{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m73_c00103{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m46_c00103{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00103{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m18_c00103{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00103{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m47_c00103{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00103{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00103{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00103{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m84_c00103{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4_c00103{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00103{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00103{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m80_c00103{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00103{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m82_c00103{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00103{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m45_c00103{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00103{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00103{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m23_c00103{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m76_c00103{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00103{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mad_c00103{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00103{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m66_c00103{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m71_c00103{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00103{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00103{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m94_c00103{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb_c00103{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m36_c00103{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9_c00103{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42_c00103{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00103{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m38_c00103{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00103{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m78_c00103{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00103{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00103{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m32_c00103{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.md_c00103{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00103{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.maa_c00103{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m74_c00103{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00103{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00103{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16_c00103{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00103{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00103{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m14_c00103{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m48_c00103{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m87_c00103{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00103{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5_c00103{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00103{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);}
.m59_c00103{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m72_c00103{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00103{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mab_c00103{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m77_c00103{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00103{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00103{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00103{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00103{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00103{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m19_c00103{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m83_c00103{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m50_c00103{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00103{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m52_c00103{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m54_c00103{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00103{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m75_c00103{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00103{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m99_c00103{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m39_c00103{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m91_c00103{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00103{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00103{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00103{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00103{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00103{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m13_c00103{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m29_c00103{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00103{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m98_c00103{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00103{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m41_c00103{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m44_c00103{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00103{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{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__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00103{word-spacing:-10.138889px;}
.ws9_c00103{word-spacing:-6.853448px;}
.ws2_c00103{word-spacing:-3.333333px;}
.wsc_c00103{word-spacing:0.000000px;}
.ws3_c00103{word-spacing:2.439024px;}
.ws4_c00103{word-spacing:7.432432px;}
.ws5_c00103{word-spacing:7.631579px;}
.wsb_c00103{word-spacing:8.663793px;}
.ws6_c00103{word-spacing:8.970588px;}
.ws1_c00103{word-spacing:10.000000px;}
.ws0_c00103{word-spacing:15.138889px;}
.ws7_c00103{word-spacing:21.111111px;}
.wsa_c00103{word-spacing:33.529412px;}
.fc0_c00103{color:transparent;}
.fs0_c00103{font-size:54.000000px;}
.fs1_c00103{font-size:60.000000px;}
.y0_c00103{bottom:0.000000px;}
.y2c_c00103{bottom:140.400000px;}
.y2b_c00103{bottom:180.900000px;}
.y2a_c00103{bottom:201.000000px;}
.y29_c00103{bottom:220.500000px;}
.y28_c00103{bottom:240.300000px;}
.y27_c00103{bottom:260.400000px;}
.y26_c00103{bottom:280.200000px;}
.y25_c00103{bottom:300.000000px;}
.y24_c00103{bottom:320.100000px;}
.y23_c00103{bottom:339.900000px;}
.y22_c00103{bottom:359.700000px;}
.y21_c00103{bottom:380.100000px;}
.y20_c00103{bottom:400.200000px;}
.y1f_c00103{bottom:420.000000px;}
.y1e_c00103{bottom:440.100000px;}
.y1d_c00103{bottom:459.900000px;}
.y1c_c00103{bottom:479.700000px;}
.y1b_c00103{bottom:499.800000px;}
.y1a_c00103{bottom:519.600000px;}
.y19_c00103{bottom:539.400000px;}
.y18_c00103{bottom:559.500000px;}
.y17_c00103{bottom:579.300000px;}
.y16_c00103{bottom:599.850000px;}
.y15_c00103{bottom:619.950000px;}
.y14_c00103{bottom:639.750000px;}
.y13_c00103{bottom:659.400000px;}
.y12_c00103{bottom:679.500000px;}
.y11_c00103{bottom:699.300000px;}
.y10_c00103{bottom:719.400000px;}
.yf_c00103{bottom:739.500000px;}
.ye_c00103{bottom:759.300000px;}
.yd_c00103{bottom:779.100000px;}
.yc_c00103{bottom:798.900000px;}
.yb_c00103{bottom:819.450000px;}
.ya_c00103{bottom:839.250000px;}
.y9_c00103{bottom:859.050000px;}
.y8_c00103{bottom:879.150000px;}
.y7_c00103{bottom:898.950000px;}
.y6_c00103{bottom:918.450000px;}
.y5_c00103{bottom:938.550000px;}
.y4_c00103{bottom:958.650000px;}
.y3_c00103{bottom:978.450000px;}
.y2_c00103{bottom:998.250000px;}
.y1_c00103{bottom:1036.800000px;}
.h2_c00103{height:54.000000px;}
.h3_c00103{height:60.000000px;}
.h1_c00103{height:1167.750000px;}
.h0_c00103{height:1167.839997px;}
.w1_c00103{width:920.250000px;}
.w0_c00103{width:920.519990px;}
.x0_c00103{left:0.000000px;}
.x14_c00103{left:109.800000px;}
.x79_c00103{left:111.450000px;}
.xae_c00103{left:112.950000px;}
.x10c_c00103{left:114.000000px;}
.xaf_c00103{left:133.050000px;}
.x81_c00103{left:136.950000px;}
.x69_c00103{left:138.750000px;}
.x11c_c00103{left:139.800000px;}
.x3_c00103{left:141.150000px;}
.x94_c00103{left:142.800000px;}
.x101_c00103{left:144.750000px;}
.x5a_c00103{left:146.250000px;}
.x110_c00103{left:147.450000px;}
.xc0_c00103{left:149.700000px;}
.x15_c00103{left:151.500000px;}
.xf2_c00103{left:152.550000px;}
.x114_c00103{left:154.200000px;}
.xb7_c00103{left:156.150000px;}
.xb0_c00103{left:158.550000px;}
.x82_c00103{left:163.200000px;}
.xe9_c00103{left:164.550000px;}
.x42_c00103{left:167.550000px;}
.x5b_c00103{left:171.150000px;}
.x102_c00103{left:174.300000px;}
.x4_c00103{left:177.150000px;}
.xcd_c00103{left:179.550000px;}
.x23_c00103{left:181.200000px;}
.xa7_c00103{left:183.600000px;}
.x43_c00103{left:184.800000px;}
.x7a_c00103{left:187.350000px;}
.xc1_c00103{left:190.050000px;}
.xb8_c00103{left:192.900000px;}
.x34_c00103{left:194.550000px;}
.x5_c00103{left:196.650000px;}
.xfc_c00103{left:197.850000px;}
.xf3_c00103{left:199.050000px;}
.xed_c00103{left:202.350000px;}
.xa8_c00103{left:203.400000px;}
.x72_c00103{left:204.750000px;}
.xce_c00103{left:207.600000px;}
.xb1_c00103{left:209.700000px;}
.x44_c00103{left:210.750000px;}
.x5c_c00103{left:212.250000px;}
.x24_c00103{left:213.600000px;}
.xd2_c00103{left:215.250000px;}
.xa1_c00103{left:218.550000px;}
.xb9_c00103{left:221.400000px;}
.x95_c00103{left:224.100000px;}
.x8a_c00103{left:225.450000px;}
.x6_c00103{left:226.500000px;}
.x16_c00103{left:230.700000px;}
.x5d_c00103{left:233.550000px;}
.x25_c00103{left:237.000000px;}
.x4d_c00103{left:238.500000px;}
.x6a_c00103{left:241.800000px;}
.x96_c00103{left:243.150000px;}
.xa2_c00103{left:245.850000px;}
.x35_c00103{left:249.000000px;}
.x7b_c00103{left:253.650000px;}
.x73_c00103{left:256.200000px;}
.xe4_c00103{left:257.700000px;}
.xc4_c00103{left:260.250000px;}
.x26_c00103{left:262.950000px;}
.xc2_c00103{left:264.150000px;}
.x12d_c00103{left:265.350000px;}
.xd7_c00103{left:267.000000px;}
.x12b_c00103{left:268.200000px;}
.x8b_c00103{left:269.700000px;}
.x6b_c00103{left:270.900000px;}
.x83_c00103{left:271.950000px;}
.x4e_c00103{left:274.200000px;}
.x7_c00103{left:276.900000px;}
.x17_c00103{left:278.250000px;}
.x45_c00103{left:280.950000px;}
.x103_c00103{left:284.550000px;}
.x10d_c00103{left:286.500000px;}
.xea_c00103{left:288.450000px;}
.x128_c00103{left:290.250000px;}
.x4f_c00103{left:291.450000px;}
.xcf_c00103{left:293.700000px;}
.xd8_c00103{left:294.750000px;}
.x7c_c00103{left:295.800000px;}
.x111_c00103{left:296.850000px;}
.x84_c00103{left:298.200000px;}
.xcb_c00103{left:299.850000px;}
.x97_c00103{left:303.600000px;}
.x74_c00103{left:305.250000px;}
.x6c_c00103{left:308.400000px;}
.xba_c00103{left:310.350000px;}
.x5e_c00103{left:314.550000px;}
.x7d_c00103{left:317.100000px;}
.xf7_c00103{left:320.250000px;}
.x27_c00103{left:321.600000px;}
.x8_c00103{left:324.000000px;}
.x18_c00103{left:326.850000px;}
.xd0_c00103{left:328.950000px;}
.x36_c00103{left:332.100000px;}
.xee_c00103{left:333.750000px;}
.xc3_c00103{left:336.900000px;}
.xbb_c00103{left:338.850000px;}
.xd3_c00103{left:340.500000px;}
.x12e_c00103{left:342.000000px;}
.xdc_c00103{left:344.700000px;}
.x8c_c00103{left:347.100000px;}
.xeb_c00103{left:348.600000px;}
.x19_c00103{left:350.550000px;}
.xfd_c00103{left:352.650000px;}
.x75_c00103{left:353.850000px;}
.x9_c00103{left:355.350000px;}
.x98_c00103{left:359.400000px;}
.xe5_c00103{left:360.750000px;}
.x8d_c00103{left:365.100000px;}
.xec_c00103{left:368.400000px;}
.x6d_c00103{left:370.350000px;}
.xe6_c00103{left:371.550000px;}
.x50_c00103{left:373.500000px;}
.x115_c00103{left:374.850000px;}
.x104_c00103{left:375.900000px;}
.x37_c00103{left:377.400000px;}
.xc5_c00103{left:378.750000px;}
.x11d_c00103{left:382.350000px;}
.x1_c00103{left:384.450000px;}
.xb2_c00103{left:387.600000px;}
.x5f_c00103{left:390.150000px;}
.x28_c00103{left:391.500000px;}
.xa3_c00103{left:392.700000px;}
.x109_c00103{left:394.500000px;}
.xef_c00103{left:396.450000px;}
.xdd_c00103{left:399.450000px;}
.x51_c00103{left:401.250000px;}
.x1a_c00103{left:403.050000px;}
.xa_c00103{left:404.250000px;}
.x76_c00103{left:406.800000px;}
.xb3_c00103{left:408.150000px;}
.x38_c00103{left:409.500000px;}
.x8e_c00103{left:410.850000px;}
.x12f_c00103{left:411.900000px;}
.x6e_c00103{left:413.850000px;}
.x124_c00103{left:415.050000px;}
.xbc_c00103{left:416.550000px;}
.x99_c00103{left:418.050000px;}
.x52_c00103{left:419.250000px;}
.x85_c00103{left:420.300000px;}
.x60_c00103{left:421.500000px;}
.x46_c00103{left:422.850000px;}
.x11e_c00103{left:424.500000px;}
.x29_c00103{left:426.450000px;}
.x10e_c00103{left:430.800000px;}
.xc6_c00103{left:433.800000px;}
.xf4_c00103{left:437.100000px;}
.x116_c00103{left:438.150000px;}
.x1b_c00103{left:440.850000px;}
.x53_c00103{left:442.350000px;}
.x47_c00103{left:443.400000px;}
.x125_c00103{left:445.950000px;}
.xf8_c00103{left:447.750000px;}
.xb_c00103{left:450.750000px;}
.x9a_c00103{left:452.250000px;}
.x105_c00103{left:455.100000px;}
.xe0_c00103{left:456.300000px;}
.x6f_c00103{left:458.100000px;}
.x12c_c00103{left:461.550000px;}
.x1c_c00103{left:462.750000px;}
.x2a_c00103{left:466.050000px;}
.xfe_c00103{left:467.850000px;}
.x7e_c00103{left:469.500000px;}
.xc_c00103{left:471.600000px;}
.x77_c00103{left:473.100000px;}
.xa9_c00103{left:474.300000px;}
.x39_c00103{left:476.400000px;}
.xb4_c00103{left:478.950000px;}
.xbd_c00103{left:481.050000px;}
.x48_c00103{left:482.250000px;}
.xff_c00103{left:484.050000px;}
.x61_c00103{left:486.300000px;}
.x9b_c00103{left:487.500000px;}
.x2b_c00103{left:488.700000px;}
.xd9_c00103{left:490.650000px;}
.xf0_c00103{left:492.300000px;}
.x117_c00103{left:493.650000px;}
.xa4_c00103{left:496.050000px;}
.x106_c00103{left:500.100000px;}
.x62_c00103{left:504.000000px;}
.xd_c00103{left:507.300000px;}
.x2c_c00103{left:508.500000px;}
.x8f_c00103{left:510.600000px;}
.xb5_c00103{left:512.100000px;}
.x118_c00103{left:513.150000px;}
.x54_c00103{left:514.650000px;}
.x126_c00103{left:516.750000px;}
.x1d_c00103{left:518.850000px;}
.x9c_c00103{left:519.900000px;}
.x3a_c00103{left:522.150000px;}
.x10f_c00103{left:523.650000px;}
.xbe_c00103{left:525.000000px;}
.x7f_c00103{left:527.850000px;}
.x2d_c00103{left:532.950000px;}
.xaa_c00103{left:535.200000px;}
.xde_c00103{left:537.000000px;}
.x63_c00103{left:538.500000px;}
.x90_c00103{left:541.950000px;}
.x55_c00103{left:547.350000px;}
.x112_c00103{left:549.600000px;}
.xab_c00103{left:552.450000px;}
.x2e_c00103{left:553.500000px;}
.xe1_c00103{left:555.000000px;}
.xa5_c00103{left:557.250000px;}
.x64_c00103{left:558.600000px;}
.x129_c00103{left:560.250000px;}
.x1e_c00103{left:561.300000px;}
.xd4_c00103{left:566.100000px;}
.x86_c00103{left:567.150000px;}
.x127_c00103{left:569.700000px;}
.x56_c00103{left:570.750000px;}
.x91_c00103{left:572.850000px;}
.x70_c00103{left:575.700000px;}
.xda_c00103{left:577.350000px;}
.xe_c00103{left:578.550000px;}
.xac_c00103{left:580.200000px;}
.xe2_c00103{left:584.100000px;}
.x9d_c00103{left:585.450000px;}
.x3b_c00103{left:586.950000px;}
.xc7_c00103{left:589.200000px;}
.x113_c00103{left:592.500000px;}
.xd5_c00103{left:594.150000px;}
.x2f_c00103{left:597.000000px;}
.x10a_c00103{left:598.650000px;}
.xf5_c00103{left:601.950000px;}
.x49_c00103{left:603.300000px;}
.x1f_c00103{left:606.300000px;}
.x3c_c00103{left:607.500000px;}
.xc8_c00103{left:609.000000px;}
.xe3_c00103{left:612.150000px;}
.xf9_c00103{left:613.350000px;}
.xf_c00103{left:616.650000px;}
.x12a_c00103{left:617.850000px;}
.x30_c00103{left:620.400000px;}
.xe7_c00103{left:622.200000px;}
.xad_c00103{left:623.700000px;}
.x78_c00103{left:625.800000px;}
.x100_c00103{left:629.850000px;}
.x4a_c00103{left:631.350000px;}
.x3d_c00103{left:632.700000px;}
.x57_c00103{left:633.750000px;}
.xf6_c00103{left:637.950000px;}
.xfa_c00103{left:641.400000px;}
.x10_c00103{left:645.750000px;}
.x9e_c00103{left:646.950000px;}
.x11f_c00103{left:648.150000px;}
.x31_c00103{left:649.200000px;}
.xb6_c00103{left:653.550000px;}
.x20_c00103{left:654.600000px;}
.xe8_c00103{left:656.700000px;}
.xd6_c00103{left:657.900000px;}
.x3e_c00103{left:663.000000px;}
.xc9_c00103{left:665.100000px;}
.xdb_c00103{left:667.050000px;}
.x80_c00103{left:669.000000px;}
.x71_c00103{left:670.800000px;}
.x58_c00103{left:672.300000px;}
.x65_c00103{left:676.350000px;}
.x107_c00103{left:677.550000px;}
.x87_c00103{left:679.500000px;}
.x3f_c00103{left:681.000000px;}
.x4b_c00103{left:682.500000px;}
.x119_c00103{left:684.900000px;}
.x21_c00103{left:687.300000px;}
.xdf_c00103{left:690.000000px;}
.xf1_c00103{left:692.700000px;}
.xa6_c00103{left:694.500000px;}
.x66_c00103{left:696.150000px;}
.x92_c00103{left:697.950000px;}
.x11_c00103{left:701.250000px;}
.xcc_c00103{left:705.150000px;}
.x9f_c00103{left:706.350000px;}
.x40_c00103{left:708.300000px;}
.x120_c00103{left:709.650000px;}
.x10b_c00103{left:710.700000px;}
.xca_c00103{left:711.900000px;}
.x11a_c00103{left:713.400000px;}
.xd1_c00103{left:715.950000px;}
.x4c_c00103{left:719.250000px;}
.x67_c00103{left:721.650000px;}
.x88_c00103{left:723.750000px;}
.xbf_c00103{left:724.950000px;}
.x93_c00103{left:726.450000px;}
.x32_c00103{left:729.150000px;}
.x22_c00103{left:732.000000px;}
.x12_c00103{left:736.200000px;}
.x121_c00103{left:741.300000px;}
.x123_c00103{left:742.650000px;}
.x108_c00103{left:747.750000px;}
.x59_c00103{left:750.300000px;}
.x68_c00103{left:753.000000px;}
.x11b_c00103{left:754.800000px;}
.x13_c00103{left:756.750000px;}
.x89_c00103{left:757.950000px;}
.x2_c00103{left:759.150000px;}
.xfb_c00103{left:760.950000px;}
.x41_c00103{left:762.000000px;}
.xa0_c00103{left:766.800000px;}
.x122_c00103{left:769.050000px;}
.x33_c00103{left:770.550000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws8_c00103{word-spacing:-9.012346pt;}
.ws9_c00103{word-spacing:-6.091954pt;}
.ws2_c00103{word-spacing:-2.962963pt;}
.wsc_c00103{word-spacing:0.000000pt;}
.ws3_c00103{word-spacing:2.168022pt;}
.ws4_c00103{word-spacing:6.606607pt;}
.ws5_c00103{word-spacing:6.783626pt;}
.wsb_c00103{word-spacing:7.701149pt;}
.ws6_c00103{word-spacing:7.973856pt;}
.ws1_c00103{word-spacing:8.888889pt;}
.ws0_c00103{word-spacing:13.456790pt;}
.ws7_c00103{word-spacing:18.765432pt;}
.wsa_c00103{word-spacing:29.803922pt;}
.fs0_c00103{font-size:48.000000pt;}
.fs1_c00103{font-size:53.333333pt;}
.y0_c00103{bottom:0.000000pt;}
.y2c_c00103{bottom:124.800000pt;}
.y2b_c00103{bottom:160.800000pt;}
.y2a_c00103{bottom:178.666667pt;}
.y29_c00103{bottom:196.000000pt;}
.y28_c00103{bottom:213.600000pt;}
.y27_c00103{bottom:231.466667pt;}
.y26_c00103{bottom:249.066667pt;}
.y25_c00103{bottom:266.666667pt;}
.y24_c00103{bottom:284.533333pt;}
.y23_c00103{bottom:302.133333pt;}
.y22_c00103{bottom:319.733333pt;}
.y21_c00103{bottom:337.866667pt;}
.y20_c00103{bottom:355.733333pt;}
.y1f_c00103{bottom:373.333333pt;}
.y1e_c00103{bottom:391.200000pt;}
.y1d_c00103{bottom:408.800000pt;}
.y1c_c00103{bottom:426.400000pt;}
.y1b_c00103{bottom:444.266667pt;}
.y1a_c00103{bottom:461.866667pt;}
.y19_c00103{bottom:479.466667pt;}
.y18_c00103{bottom:497.333333pt;}
.y17_c00103{bottom:514.933333pt;}
.y16_c00103{bottom:533.200000pt;}
.y15_c00103{bottom:551.066667pt;}
.y14_c00103{bottom:568.666667pt;}
.y13_c00103{bottom:586.133333pt;}
.y12_c00103{bottom:604.000000pt;}
.y11_c00103{bottom:621.600000pt;}
.y10_c00103{bottom:639.466667pt;}
.yf_c00103{bottom:657.333333pt;}
.ye_c00103{bottom:674.933333pt;}
.yd_c00103{bottom:692.533333pt;}
.yc_c00103{bottom:710.133333pt;}
.yb_c00103{bottom:728.400000pt;}
.ya_c00103{bottom:746.000000pt;}
.y9_c00103{bottom:763.600000pt;}
.y8_c00103{bottom:781.466667pt;}
.y7_c00103{bottom:799.066667pt;}
.y6_c00103{bottom:816.400000pt;}
.y5_c00103{bottom:834.266667pt;}
.y4_c00103{bottom:852.133333pt;}
.y3_c00103{bottom:869.733333pt;}
.y2_c00103{bottom:887.333333pt;}
.y1_c00103{bottom:921.600000pt;}
.h2_c00103{height:48.000000pt;}
.h3_c00103{height:53.333333pt;}
.h1_c00103{height:1038.000000pt;}
.h0_c00103{height:1038.079997pt;}
.w1_c00103{width:818.000000pt;}
.w0_c00103{width:818.239991pt;}
.x0_c00103{left:0.000000pt;}
.x14_c00103{left:97.600000pt;}
.x79_c00103{left:99.066667pt;}
.xae_c00103{left:100.400000pt;}
.x10c_c00103{left:101.333333pt;}
.xaf_c00103{left:118.266667pt;}
.x81_c00103{left:121.733333pt;}
.x69_c00103{left:123.333333pt;}
.x11c_c00103{left:124.266667pt;}
.x3_c00103{left:125.466667pt;}
.x94_c00103{left:126.933333pt;}
.x101_c00103{left:128.666667pt;}
.x5a_c00103{left:130.000000pt;}
.x110_c00103{left:131.066667pt;}
.xc0_c00103{left:133.066667pt;}
.x15_c00103{left:134.666667pt;}
.xf2_c00103{left:135.600000pt;}
.x114_c00103{left:137.066667pt;}
.xb7_c00103{left:138.800000pt;}
.xb0_c00103{left:140.933333pt;}
.x82_c00103{left:145.066667pt;}
.xe9_c00103{left:146.266667pt;}
.x42_c00103{left:148.933333pt;}
.x5b_c00103{left:152.133333pt;}
.x102_c00103{left:154.933333pt;}
.x4_c00103{left:157.466667pt;}
.xcd_c00103{left:159.600000pt;}
.x23_c00103{left:161.066667pt;}
.xa7_c00103{left:163.200000pt;}
.x43_c00103{left:164.266667pt;}
.x7a_c00103{left:166.533333pt;}
.xc1_c00103{left:168.933333pt;}
.xb8_c00103{left:171.466667pt;}
.x34_c00103{left:172.933333pt;}
.x5_c00103{left:174.800000pt;}
.xfc_c00103{left:175.866667pt;}
.xf3_c00103{left:176.933333pt;}
.xed_c00103{left:179.866667pt;}
.xa8_c00103{left:180.800000pt;}
.x72_c00103{left:182.000000pt;}
.xce_c00103{left:184.533333pt;}
.xb1_c00103{left:186.400000pt;}
.x44_c00103{left:187.333333pt;}
.x5c_c00103{left:188.666667pt;}
.x24_c00103{left:189.866667pt;}
.xd2_c00103{left:191.333333pt;}
.xa1_c00103{left:194.266667pt;}
.xb9_c00103{left:196.800000pt;}
.x95_c00103{left:199.200000pt;}
.x8a_c00103{left:200.400000pt;}
.x6_c00103{left:201.333333pt;}
.x16_c00103{left:205.066667pt;}
.x5d_c00103{left:207.600000pt;}
.x25_c00103{left:210.666667pt;}
.x4d_c00103{left:212.000000pt;}
.x6a_c00103{left:214.933333pt;}
.x96_c00103{left:216.133333pt;}
.xa2_c00103{left:218.533333pt;}
.x35_c00103{left:221.333333pt;}
.x7b_c00103{left:225.466667pt;}
.x73_c00103{left:227.733333pt;}
.xe4_c00103{left:229.066667pt;}
.xc4_c00103{left:231.333333pt;}
.x26_c00103{left:233.733333pt;}
.xc2_c00103{left:234.800000pt;}
.x12d_c00103{left:235.866667pt;}
.xd7_c00103{left:237.333333pt;}
.x12b_c00103{left:238.400000pt;}
.x8b_c00103{left:239.733333pt;}
.x6b_c00103{left:240.800000pt;}
.x83_c00103{left:241.733333pt;}
.x4e_c00103{left:243.733333pt;}
.x7_c00103{left:246.133333pt;}
.x17_c00103{left:247.333333pt;}
.x45_c00103{left:249.733333pt;}
.x103_c00103{left:252.933333pt;}
.x10d_c00103{left:254.666667pt;}
.xea_c00103{left:256.400000pt;}
.x128_c00103{left:258.000000pt;}
.x4f_c00103{left:259.066667pt;}
.xcf_c00103{left:261.066667pt;}
.xd8_c00103{left:262.000000pt;}
.x7c_c00103{left:262.933333pt;}
.x111_c00103{left:263.866667pt;}
.x84_c00103{left:265.066667pt;}
.xcb_c00103{left:266.533333pt;}
.x97_c00103{left:269.866667pt;}
.x74_c00103{left:271.333333pt;}
.x6c_c00103{left:274.133333pt;}
.xba_c00103{left:275.866667pt;}
.x5e_c00103{left:279.600000pt;}
.x7d_c00103{left:281.866667pt;}
.xf7_c00103{left:284.666667pt;}
.x27_c00103{left:285.866667pt;}
.x8_c00103{left:288.000000pt;}
.x18_c00103{left:290.533333pt;}
.xd0_c00103{left:292.400000pt;}
.x36_c00103{left:295.200000pt;}
.xee_c00103{left:296.666667pt;}
.xc3_c00103{left:299.466667pt;}
.xbb_c00103{left:301.200000pt;}
.xd3_c00103{left:302.666667pt;}
.x12e_c00103{left:304.000000pt;}
.xdc_c00103{left:306.400000pt;}
.x8c_c00103{left:308.533333pt;}
.xeb_c00103{left:309.866667pt;}
.x19_c00103{left:311.600000pt;}
.xfd_c00103{left:313.466667pt;}
.x75_c00103{left:314.533333pt;}
.x9_c00103{left:315.866667pt;}
.x98_c00103{left:319.466667pt;}
.xe5_c00103{left:320.666667pt;}
.x8d_c00103{left:324.533333pt;}
.xec_c00103{left:327.466667pt;}
.x6d_c00103{left:329.200000pt;}
.xe6_c00103{left:330.266667pt;}
.x50_c00103{left:332.000000pt;}
.x115_c00103{left:333.200000pt;}
.x104_c00103{left:334.133333pt;}
.x37_c00103{left:335.466667pt;}
.xc5_c00103{left:336.666667pt;}
.x11d_c00103{left:339.866667pt;}
.x1_c00103{left:341.733333pt;}
.xb2_c00103{left:344.533333pt;}
.x5f_c00103{left:346.800000pt;}
.x28_c00103{left:348.000000pt;}
.xa3_c00103{left:349.066667pt;}
.x109_c00103{left:350.666667pt;}
.xef_c00103{left:352.400000pt;}
.xdd_c00103{left:355.066667pt;}
.x51_c00103{left:356.666667pt;}
.x1a_c00103{left:358.266667pt;}
.xa_c00103{left:359.333333pt;}
.x76_c00103{left:361.600000pt;}
.xb3_c00103{left:362.800000pt;}
.x38_c00103{left:364.000000pt;}
.x8e_c00103{left:365.200000pt;}
.x12f_c00103{left:366.133333pt;}
.x6e_c00103{left:367.866667pt;}
.x124_c00103{left:368.933333pt;}
.xbc_c00103{left:370.266667pt;}
.x99_c00103{left:371.600000pt;}
.x52_c00103{left:372.666667pt;}
.x85_c00103{left:373.600000pt;}
.x60_c00103{left:374.666667pt;}
.x46_c00103{left:375.866667pt;}
.x11e_c00103{left:377.333333pt;}
.x29_c00103{left:379.066667pt;}
.x10e_c00103{left:382.933333pt;}
.xc6_c00103{left:385.600000pt;}
.xf4_c00103{left:388.533333pt;}
.x116_c00103{left:389.466667pt;}
.x1b_c00103{left:391.866667pt;}
.x53_c00103{left:393.200000pt;}
.x47_c00103{left:394.133333pt;}
.x125_c00103{left:396.400000pt;}
.xf8_c00103{left:398.000000pt;}
.xb_c00103{left:400.666667pt;}
.x9a_c00103{left:402.000000pt;}
.x105_c00103{left:404.533333pt;}
.xe0_c00103{left:405.600000pt;}
.x6f_c00103{left:407.200000pt;}
.x12c_c00103{left:410.266667pt;}
.x1c_c00103{left:411.333333pt;}
.x2a_c00103{left:414.266667pt;}
.xfe_c00103{left:415.866667pt;}
.x7e_c00103{left:417.333333pt;}
.xc_c00103{left:419.200000pt;}
.x77_c00103{left:420.533333pt;}
.xa9_c00103{left:421.600000pt;}
.x39_c00103{left:423.466667pt;}
.xb4_c00103{left:425.733333pt;}
.xbd_c00103{left:427.600000pt;}
.x48_c00103{left:428.666667pt;}
.xff_c00103{left:430.266667pt;}
.x61_c00103{left:432.266667pt;}
.x9b_c00103{left:433.333333pt;}
.x2b_c00103{left:434.400000pt;}
.xd9_c00103{left:436.133333pt;}
.xf0_c00103{left:437.600000pt;}
.x117_c00103{left:438.800000pt;}
.xa4_c00103{left:440.933333pt;}
.x106_c00103{left:444.533333pt;}
.x62_c00103{left:448.000000pt;}
.xd_c00103{left:450.933333pt;}
.x2c_c00103{left:452.000000pt;}
.x8f_c00103{left:453.866667pt;}
.xb5_c00103{left:455.200000pt;}
.x118_c00103{left:456.133333pt;}
.x54_c00103{left:457.466667pt;}
.x126_c00103{left:459.333333pt;}
.x1d_c00103{left:461.200000pt;}
.x9c_c00103{left:462.133333pt;}
.x3a_c00103{left:464.133333pt;}
.x10f_c00103{left:465.466667pt;}
.xbe_c00103{left:466.666667pt;}
.x7f_c00103{left:469.200000pt;}
.x2d_c00103{left:473.733333pt;}
.xaa_c00103{left:475.733333pt;}
.xde_c00103{left:477.333333pt;}
.x63_c00103{left:478.666667pt;}
.x90_c00103{left:481.733333pt;}
.x55_c00103{left:486.533333pt;}
.x112_c00103{left:488.533333pt;}
.xab_c00103{left:491.066667pt;}
.x2e_c00103{left:492.000000pt;}
.xe1_c00103{left:493.333333pt;}
.xa5_c00103{left:495.333333pt;}
.x64_c00103{left:496.533333pt;}
.x129_c00103{left:498.000000pt;}
.x1e_c00103{left:498.933333pt;}
.xd4_c00103{left:503.200000pt;}
.x86_c00103{left:504.133333pt;}
.x127_c00103{left:506.400000pt;}
.x56_c00103{left:507.333333pt;}
.x91_c00103{left:509.200000pt;}
.x70_c00103{left:511.733333pt;}
.xda_c00103{left:513.200000pt;}
.xe_c00103{left:514.266667pt;}
.xac_c00103{left:515.733333pt;}
.xe2_c00103{left:519.200000pt;}
.x9d_c00103{left:520.400000pt;}
.x3b_c00103{left:521.733333pt;}
.xc7_c00103{left:523.733333pt;}
.x113_c00103{left:526.666667pt;}
.xd5_c00103{left:528.133333pt;}
.x2f_c00103{left:530.666667pt;}
.x10a_c00103{left:532.133333pt;}
.xf5_c00103{left:535.066667pt;}
.x49_c00103{left:536.266667pt;}
.x1f_c00103{left:538.933333pt;}
.x3c_c00103{left:540.000000pt;}
.xc8_c00103{left:541.333333pt;}
.xe3_c00103{left:544.133333pt;}
.xf9_c00103{left:545.200000pt;}
.xf_c00103{left:548.133333pt;}
.x12a_c00103{left:549.200000pt;}
.x30_c00103{left:551.466667pt;}
.xe7_c00103{left:553.066667pt;}
.xad_c00103{left:554.400000pt;}
.x78_c00103{left:556.266667pt;}
.x100_c00103{left:559.866667pt;}
.x4a_c00103{left:561.200000pt;}
.x3d_c00103{left:562.400000pt;}
.x57_c00103{left:563.333333pt;}
.xf6_c00103{left:567.066667pt;}
.xfa_c00103{left:570.133333pt;}
.x10_c00103{left:574.000000pt;}
.x9e_c00103{left:575.066667pt;}
.x11f_c00103{left:576.133333pt;}
.x31_c00103{left:577.066667pt;}
.xb6_c00103{left:580.933333pt;}
.x20_c00103{left:581.866667pt;}
.xe8_c00103{left:583.733333pt;}
.xd6_c00103{left:584.800000pt;}
.x3e_c00103{left:589.333333pt;}
.xc9_c00103{left:591.200000pt;}
.xdb_c00103{left:592.933333pt;}
.x80_c00103{left:594.666667pt;}
.x71_c00103{left:596.266667pt;}
.x58_c00103{left:597.600000pt;}
.x65_c00103{left:601.200000pt;}
.x107_c00103{left:602.266667pt;}
.x87_c00103{left:604.000000pt;}
.x3f_c00103{left:605.333333pt;}
.x4b_c00103{left:606.666667pt;}
.x119_c00103{left:608.800000pt;}
.x21_c00103{left:610.933333pt;}
.xdf_c00103{left:613.333333pt;}
.xf1_c00103{left:615.733333pt;}
.xa6_c00103{left:617.333333pt;}
.x66_c00103{left:618.800000pt;}
.x92_c00103{left:620.400000pt;}
.x11_c00103{left:623.333333pt;}
.xcc_c00103{left:626.800000pt;}
.x9f_c00103{left:627.866667pt;}
.x40_c00103{left:629.600000pt;}
.x120_c00103{left:630.800000pt;}
.x10b_c00103{left:631.733333pt;}
.xca_c00103{left:632.800000pt;}
.x11a_c00103{left:634.133333pt;}
.xd1_c00103{left:636.400000pt;}
.x4c_c00103{left:639.333333pt;}
.x67_c00103{left:641.466667pt;}
.x88_c00103{left:643.333333pt;}
.xbf_c00103{left:644.400000pt;}
.x93_c00103{left:645.733333pt;}
.x32_c00103{left:648.133333pt;}
.x22_c00103{left:650.666667pt;}
.x12_c00103{left:654.400000pt;}
.x121_c00103{left:658.933333pt;}
.x123_c00103{left:660.133333pt;}
.x108_c00103{left:664.666667pt;}
.x59_c00103{left:666.933333pt;}
.x68_c00103{left:669.333333pt;}
.x11b_c00103{left:670.933333pt;}
.x13_c00103{left:672.666667pt;}
.x89_c00103{left:673.733333pt;}
.x2_c00103{left:674.800000pt;}
.xfb_c00103{left:676.400000pt;}
.x41_c00103{left:677.333333pt;}
.xa0_c00103{left:681.600000pt;}
.x122_c00103{left:683.600000pt;}
.x33_c00103{left:684.933333pt;}
}





/* 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_c00104 {
    display:none;
  }
  .loading-indicator_c00104.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00104 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_c00104 { 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_c00104" -> "#page-container .classname_c00104")
 */
.pf_c00104 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00104 { /* 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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00104 { /* 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_c00104 { /* 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_c00104 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00104 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00104 {overflow:visible;}
  }
}
.c_c00104 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00104 { /* 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_c00104:after { /* webkit #35443 */
  content: '';
}
.t_c00104:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00104 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 */
}
.__c00104 { /* 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_c00104 { /* info for Javascript */
  display:none;
}
.l_c00104 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00104 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00104 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00104: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_c00104 {
    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_c00104.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00104.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_c00104 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00104{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00104;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.000000;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;}
.m1d_c00104{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m52_c00104{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00104{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m16_c00104{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m43_c00104{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m61_c00104{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m20_c00104{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.me_c00104{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m45_c00104{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m62_c00104{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m65_c00104{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m91_c00104{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m56_c00104{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00104{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00104{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00104{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m53_c00104{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m80_c00104{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00104{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m99_c00104{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m72_c00104{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m21_c00104{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m25_c00104{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00104{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m26_c00104{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00104{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m63_c00104{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m64_c00104{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m97_c00104{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9_c00104{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00104{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00104{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m28_c00104{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md_c00104{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m36_c00104{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m32_c00104{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00104{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00104{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00104{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m50_c00104{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10_c00104{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m58_c00104{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00104{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb_c00104{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11_c00104{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m22_c00104{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00104{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00104{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00104{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00104{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m33_c00104{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00104{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00104{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m95_c00104{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00104{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m38_c00104{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m82_c00104{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m59_c00104{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m42_c00104{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00104{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf_c00104{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00104{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00104{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m51_c00104{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m77_c00104{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00104{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00104{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m81_c00104{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00104{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m84_c00104{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00104{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00104{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c00104{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00104{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m76_c00104{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m15_c00104{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00104{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00104{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m75_c00104{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00104{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00104{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00104{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m48_c00104{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m34_c00104{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2_c00104{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00104{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m30_c00104{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m90_c00104{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00104{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00104{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00104{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6_c00104{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00104{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m94_c00104{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00104{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m67_c00104{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5_c00104{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c00104{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00104{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m54_c00104{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m49_c00104{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00104{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m27_c00104{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00104{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00104{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00104{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m69_c00104{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00104{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m66_c00104{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00104{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39_c00104{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00104{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m55_c00104{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m46_c00104{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00104{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00104{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m19_c00104{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m37_c00104{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m78_c00104{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m71_c00104{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14_c00104{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00104{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m47_c00104{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00104{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m31_c00104{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00104{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00104{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);}
.m85_c00104{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00104{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m98_c00104{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m70_c00104{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00104{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m44_c00104{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00104{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00104{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m35_c00104{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m29_c00104{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00104{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m41_c00104{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00104{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m24_c00104{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m17_c00104{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m73_c00104{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m79_c00104{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m13_c00104{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00104{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m87_c00104{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m60_c00104{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00104{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00104{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00104{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00104{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00104{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m74_c00104{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00104{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00104{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00104{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m92_c00104{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00104{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00104{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00104{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m86_c00104{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m57_c00104{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m93_c00104{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00104{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m89_c00104{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00104{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m12_c00104{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m68_c00104{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00104{vertical-align:0.000000px;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{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__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00104{word-spacing:-7.926829px;}
.ws4_c00104{word-spacing:-3.194444px;}
.ws9_c00104{word-spacing:0.000000px;}
.ws0_c00104{word-spacing:0.277778px;}
.ws8_c00104{word-spacing:1.764706px;}
.ws3_c00104{word-spacing:5.128205px;}
.ws5_c00104{word-spacing:6.527778px;}
.ws7_c00104{word-spacing:7.500000px;}
.ws1_c00104{word-spacing:10.294118px;}
.ws6_c00104{word-spacing:14.861111px;}
.fc0_c00104{color:transparent;}
.fs0_c00104{font-size:60.000000px;}
.y0_c00104{bottom:0.000000px;}
.y2d_c00104{bottom:137.100000px;}
.y2c_c00104{bottom:157.950000px;}
.y2b_c00104{bottom:177.750000px;}
.y2a_c00104{bottom:197.550000px;}
.y29_c00104{bottom:217.350000px;}
.y28_c00104{bottom:237.150000px;}
.y27_c00104{bottom:256.950000px;}
.y26_c00104{bottom:277.050000px;}
.y25_c00104{bottom:296.850000px;}
.y24_c00104{bottom:316.950000px;}
.y23_c00104{bottom:337.050000px;}
.y22_c00104{bottom:356.850000px;}
.y21_c00104{bottom:376.650000px;}
.y20_c00104{bottom:396.750000px;}
.y1f_c00104{bottom:416.850000px;}
.y1e_c00104{bottom:436.350000px;}
.y1d_c00104{bottom:456.900000px;}
.y1c_c00104{bottom:476.700000px;}
.y1b_c00104{bottom:496.500000px;}
.y1a_c00104{bottom:516.300000px;}
.y19_c00104{bottom:536.400000px;}
.y18_c00104{bottom:556.200000px;}
.y17_c00104{bottom:576.000000px;}
.y16_c00104{bottom:596.100000px;}
.y15_c00104{bottom:616.350000px;}
.y14_c00104{bottom:636.150000px;}
.y13_c00104{bottom:656.250000px;}
.y12_c00104{bottom:676.050000px;}
.y11_c00104{bottom:696.150000px;}
.y10_c00104{bottom:716.250000px;}
.yf_c00104{bottom:736.350000px;}
.ye_c00104{bottom:756.150000px;}
.yd_c00104{bottom:775.950000px;}
.yc_c00104{bottom:795.750000px;}
.yb_c00104{bottom:815.850000px;}
.ya_c00104{bottom:835.650000px;}
.y9_c00104{bottom:855.750000px;}
.y8_c00104{bottom:875.550000px;}
.y7_c00104{bottom:895.350000px;}
.y6_c00104{bottom:915.900000px;}
.y5_c00104{bottom:935.700000px;}
.y4_c00104{bottom:955.500000px;}
.y3_c00104{bottom:975.600000px;}
.y2_c00104{bottom:995.700000px;}
.y1_c00104{bottom:1034.250000px;}
.h2_c00104{height:60.000000px;}
.h1_c00104{height:1167.750000px;}
.h0_c00104{height:1167.839997px;}
.w1_c00104{width:920.250000px;}
.w0_c00104{width:920.519990px;}
.x0_c00104{left:0.000000px;}
.xcc_c00104{left:148.050000px;}
.x62_c00104{left:152.250000px;}
.x1_c00104{left:153.300000px;}
.x47_c00104{left:173.100000px;}
.xdf_c00104{left:175.500000px;}
.x3_c00104{left:180.000000px;}
.x32_c00104{left:182.250000px;}
.x3a_c00104{left:183.900000px;}
.x55_c00104{left:185.250000px;}
.x10e_c00104{left:187.200000px;}
.x6e_c00104{left:188.550000px;}
.x11_c00104{left:189.750000px;}
.xf3_c00104{left:192.600000px;}
.x106_c00104{left:194.850000px;}
.xed_c00104{left:197.850000px;}
.x129_c00104{left:198.900000px;}
.xbc_c00104{left:202.800000px;}
.x112_c00104{left:204.300000px;}
.x23_c00104{left:206.400000px;}
.x137_c00104{left:207.750000px;}
.x12_c00104{left:210.300000px;}
.xab_c00104{left:211.350000px;}
.xc0_c00104{left:214.950000px;}
.x135_c00104{left:216.600000px;}
.x3b_c00104{left:218.400000px;}
.x8b_c00104{left:221.250000px;}
.xbd_c00104{left:222.900000px;}
.xe0_c00104{left:225.450000px;}
.x48_c00104{left:227.100000px;}
.x24_c00104{left:228.750000px;}
.x78_c00104{left:231.300000px;}
.x11f_c00104{left:232.650000px;}
.x13_c00104{left:233.700000px;}
.xd9_c00104{left:235.500000px;}
.xac_c00104{left:236.850000px;}
.x121_c00104{left:239.100000px;}
.x33_c00104{left:240.150000px;}
.x4_c00104{left:241.500000px;}
.x49_c00104{left:242.550000px;}
.x3c_c00104{left:243.600000px;}
.xc1_c00104{left:244.800000px;}
.x6f_c00104{left:246.450000px;}
.xfc_c00104{left:249.750000px;}
.xb6_c00104{left:252.000000px;}
.xd3_c00104{left:255.600000px;}
.x100_c00104{left:256.950000px;}
.xcd_c00104{left:258.150000px;}
.xee_c00104{left:259.350000px;}
.x14_c00104{left:260.700000px;}
.x3d_c00104{left:261.900000px;}
.x10f_c00104{left:264.300000px;}
.x34_c00104{left:267.450000px;}
.x97_c00104{left:269.250000px;}
.xe1_c00104{left:273.300000px;}
.x8c_c00104{left:274.500000px;}
.xad_c00104{left:275.700000px;}
.xd4_c00104{left:276.900000px;}
.x15_c00104{left:277.950000px;}
.x118_c00104{left:280.800000px;}
.xda_c00104{left:282.000000px;}
.x130_c00104{left:284.850000px;}
.x11a_c00104{left:286.500000px;}
.x56_c00104{left:288.600000px;}
.x79_c00104{left:289.650000px;}
.x25_c00104{left:291.450000px;}
.x3e_c00104{left:294.300000px;}
.x12a_c00104{left:298.200000px;}
.x4a_c00104{left:299.400000px;}
.xa2_c00104{left:302.100000px;}
.xd5_c00104{left:303.150000px;}
.x26_c00104{left:306.150000px;}
.xce_c00104{left:308.100000px;}
.x8d_c00104{left:309.450000px;}
.x10a_c00104{left:310.650000px;}
.x35_c00104{left:315.300000px;}
.xf4_c00104{left:316.500000px;}
.x63_c00104{left:320.400000px;}
.x7a_c00104{left:322.800000px;}
.x5_c00104{left:324.000000px;}
.xc2_c00104{left:325.050000px;}
.xfd_c00104{left:326.400000px;}
.x12d_c00104{left:327.600000px;}
.x4b_c00104{left:329.250000px;}
.x36_c00104{left:330.450000px;}
.xe5_c00104{left:333.000000px;}
.x16_c00104{left:334.800000px;}
.xcf_c00104{left:336.600000px;}
.x64_c00104{left:337.650000px;}
.xb7_c00104{left:339.000000px;}
.xc3_c00104{left:340.200000px;}
.x57_c00104{left:342.600000px;}
.x131_c00104{left:344.250000px;}
.x17_c00104{left:348.150000px;}
.x113_c00104{left:349.800000px;}
.x4c_c00104{left:351.150000px;}
.x3f_c00104{left:353.700000px;}
.x12e_c00104{left:355.650000px;}
.x7b_c00104{left:360.600000px;}
.x85_c00104{left:362.850000px;}
.xa3_c00104{left:365.100000px;}
.x37_c00104{left:369.300000px;}
.x58_c00104{left:371.100000px;}
.x114_c00104{left:372.150000px;}
.x8e_c00104{left:373.500000px;}
.x98_c00104{left:376.200000px;}
.x27_c00104{left:378.150000px;}
.x6_c00104{left:381.300000px;}
.xae_c00104{left:382.950000px;}
.xfe_c00104{left:384.300000px;}
.x18_c00104{left:386.700000px;}
.x7c_c00104{left:388.650000px;}
.x38_c00104{left:389.850000px;}
.xbe_c00104{left:391.350000px;}
.x99_c00104{left:392.400000px;}
.x86_c00104{left:393.450000px;}
.x10b_c00104{left:394.500000px;}
.x28_c00104{left:395.850000px;}
.x70_c00104{left:397.650000px;}
.x8f_c00104{left:400.200000px;}
.x9a_c00104{left:403.950000px;}
.x65_c00104{left:405.000000px;}
.x7_c00104{left:407.550000px;}
.xe6_c00104{left:408.600000px;}
.x59_c00104{left:409.950000px;}
.xef_c00104{left:412.650000px;}
.x4d_c00104{left:414.600000px;}
.xdb_c00104{left:415.650000px;}
.x40_c00104{left:417.450000px;}
.x101_c00104{left:418.650000px;}
.xf5_c00104{left:420.150000px;}
.x29_c00104{left:423.900000px;}
.x136_c00104{left:425.250000px;}
.xc4_c00104{left:426.900000px;}
.x12b_c00104{left:428.850000px;}
.x39_c00104{left:431.550000px;}
.x90_c00104{left:434.100000px;}
.x9b_c00104{left:435.300000px;}
.x19_c00104{left:436.350000px;}
.x7d_c00104{left:438.300000px;}
.xf6_c00104{left:439.950000px;}
.x122_c00104{left:442.950000px;}
.xaf_c00104{left:444.900000px;}
.xe7_c00104{left:446.400000px;}
.xdc_c00104{left:448.050000px;}
.x2_c00104{left:450.300000px;}
.x4e_c00104{left:452.100000px;}
.x71_c00104{left:453.450000px;}
.x110_c00104{left:454.800000px;}
.xc5_c00104{left:457.800000px;}
.xa4_c00104{left:459.750000px;}
.x91_c00104{left:460.800000px;}
.x138_c00104{left:463.800000px;}
.x5a_c00104{left:465.000000px;}
.xf7_c00104{left:466.650000px;}
.x9c_c00104{left:469.200000px;}
.x66_c00104{left:471.900000px;}
.xb8_c00104{left:472.950000px;}
.x111_c00104{left:476.700000px;}
.x1a_c00104{left:477.750000px;}
.xb0_c00104{left:480.900000px;}
.x4f_c00104{left:483.000000px;}
.x5b_c00104{left:484.050000px;}
.xf8_c00104{left:486.450000px;}
.xa5_c00104{left:488.250000px;}
.x2a_c00104{left:489.750000px;}
.x12c_c00104{left:490.800000px;}
.x12f_c00104{left:492.750000px;}
.x8_c00104{left:495.000000px;}
.xd0_c00104{left:497.100000px;}
.xb1_c00104{left:500.400000px;}
.x87_c00104{left:503.250000px;}
.x7e_c00104{left:505.200000px;}
.x9d_c00104{left:507.000000px;}
.x1b_c00104{left:510.150000px;}
.x50_c00104{left:511.800000px;}
.x72_c00104{left:513.600000px;}
.x92_c00104{left:515.100000px;}
.xe8_c00104{left:517.650000px;}
.x67_c00104{left:518.700000px;}
.xc6_c00104{left:520.800000px;}
.xbf_c00104{left:522.300000px;}
.xa6_c00104{left:525.000000px;}
.x102_c00104{left:529.650000px;}
.xd1_c00104{left:531.300000px;}
.x73_c00104{left:533.400000px;}
.x2b_c00104{left:535.800000px;}
.x68_c00104{left:538.500000px;}
.x11b_c00104{left:540.900000px;}
.x1c_c00104{left:543.300000px;}
.x41_c00104{left:545.550000px;}
.xe2_c00104{left:547.050000px;}
.x132_c00104{left:548.400000px;}
.x107_c00104{left:551.250000px;}
.x103_c00104{left:552.300000px;}
.x74_c00104{left:554.700000px;}
.x5c_c00104{left:556.650000px;}
.x51_c00104{left:557.850000px;}
.x123_c00104{left:560.700000px;}
.xf9_c00104{left:563.100000px;}
.x7f_c00104{left:564.600000px;}
.x10c_c00104{left:567.300000px;}
.xf0_c00104{left:570.000000px;}
.x75_c00104{left:574.800000px;}
.x1d_c00104{left:577.200000px;}
.x108_c00104{left:579.300000px;}
.x9_c00104{left:581.400000px;}
.x69_c00104{left:583.200000px;}
.x104_c00104{left:584.400000px;}
.x88_c00104{left:586.350000px;}
.xe3_c00104{left:588.150000px;}
.xe9_c00104{left:590.250000px;}
.x80_c00104{left:592.350000px;}
.xb9_c00104{left:595.950000px;}
.x5d_c00104{left:598.350000px;}
.x124_c00104{left:600.000000px;}
.xa_c00104{left:602.700000px;}
.xfa_c00104{left:604.200000px;}
.x42_c00104{left:605.700000px;}
.x2c_c00104{left:607.050000px;}
.xb2_c00104{left:609.150000px;}
.xd6_c00104{left:611.550000px;}
.xea_c00104{left:612.600000px;}
.x126_c00104{left:613.800000px;}
.xb_c00104{left:617.850000px;}
.x133_c00104{left:619.050000px;}
.x89_c00104{left:620.550000px;}
.xfb_c00104{left:624.000000px;}
.xa7_c00104{left:625.350000px;}
.x2d_c00104{left:626.850000px;}
.xff_c00104{left:630.600000px;}
.x6a_c00104{left:634.650000px;}
.x93_c00104{left:637.500000px;}
.xc7_c00104{left:639.600000px;}
.x1e_c00104{left:640.950000px;}
.xb3_c00104{left:644.100000px;}
.xdd_c00104{left:646.050000px;}
.x9e_c00104{left:648.450000px;}
.xeb_c00104{left:650.700000px;}
.x5e_c00104{left:652.050000px;}
.x10d_c00104{left:653.700000px;}
.xc_c00104{left:658.500000px;}
.x11c_c00104{left:660.450000px;}
.x8a_c00104{left:662.250000px;}
.x81_c00104{left:663.600000px;}
.x115_c00104{left:665.100000px;}
.x109_c00104{left:666.450000px;}
.x1f_c00104{left:669.750000px;}
.xb4_c00104{left:672.600000px;}
.xc8_c00104{left:675.300000px;}
.x6b_c00104{left:677.100000px;}
.x94_c00104{left:681.000000px;}
.x5f_c00104{left:682.950000px;}
.xd2_c00104{left:684.750000px;}
.xd_c00104{left:687.000000px;}
.xa8_c00104{left:690.450000px;}
.x43_c00104{left:697.200000px;}
.x52_c00104{left:700.050000px;}
.x119_c00104{left:701.250000px;}
.x116_c00104{left:702.900000px;}
.x127_c00104{left:704.250000px;}
.x20_c00104{left:707.250000px;}
.x2e_c00104{left:708.900000px;}
.x76_c00104{left:714.000000px;}
.x44_c00104{left:715.950000px;}
.x134_c00104{left:717.300000px;}
.x11d_c00104{left:718.350000px;}
.x53_c00104{left:720.150000px;}
.xc9_c00104{left:721.800000px;}
.x6c_c00104{left:723.600000px;}
.x82_c00104{left:725.550000px;}
.xb5_c00104{left:726.600000px;}
.xde_c00104{left:728.550000px;}
.x2f_c00104{left:729.750000px;}
.xa9_c00104{left:732.300000px;}
.x9f_c00104{left:735.900000px;}
.x83_c00104{left:737.100000px;}
.xe_c00104{left:738.150000px;}
.xca_c00104{left:739.500000px;}
.x95_c00104{left:741.150000px;}
.x45_c00104{left:744.750000px;}
.xd7_c00104{left:747.300000px;}
.x54_c00104{left:748.650000px;}
.xf1_c00104{left:750.000000px;}
.xba_c00104{left:751.500000px;}
.xa0_c00104{left:756.450000px;}
.x60_c00104{left:757.800000px;}
.x11e_c00104{left:759.000000px;}
.xf_c00104{left:762.600000px;}
.x84_c00104{left:765.150000px;}
.xe4_c00104{left:767.400000px;}
.x96_c00104{left:768.900000px;}
.xaa_c00104{left:771.150000px;}
.x30_c00104{left:772.950000px;}
.x46_c00104{left:774.300000px;}
.x139_c00104{left:775.500000px;}
.x105_c00104{left:776.700000px;}
.x21_c00104{left:778.950000px;}
.x6d_c00104{left:780.450000px;}
.x120_c00104{left:784.200000px;}
.xa1_c00104{left:785.250000px;}
.xcb_c00104{left:787.350000px;}
.x61_c00104{left:789.150000px;}
.xd8_c00104{left:792.300000px;}
.x125_c00104{left:793.950000px;}
.x31_c00104{left:795.300000px;}
.x128_c00104{left:797.550000px;}
.x22_c00104{left:799.050000px;}
.x117_c00104{left:804.750000px;}
.x77_c00104{left:805.800000px;}
.x10_c00104{left:806.850000px;}
.xbb_c00104{left:811.650000px;}
.xec_c00104{left:812.700000px;}
.xf2_c00104{left:814.350000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws2_c00104{word-spacing:-7.046070pt;}
.ws4_c00104{word-spacing:-2.839506pt;}
.ws9_c00104{word-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.246914pt;}
.ws8_c00104{word-spacing:1.568627pt;}
.ws3_c00104{word-spacing:4.558405pt;}
.ws5_c00104{word-spacing:5.802469pt;}
.ws7_c00104{word-spacing:6.666667pt;}
.ws1_c00104{word-spacing:9.150327pt;}
.ws6_c00104{word-spacing:13.209877pt;}
.fs0_c00104{font-size:53.333333pt;}
.y0_c00104{bottom:0.000000pt;}
.y2d_c00104{bottom:121.866667pt;}
.y2c_c00104{bottom:140.400000pt;}
.y2b_c00104{bottom:158.000000pt;}
.y2a_c00104{bottom:175.600000pt;}
.y29_c00104{bottom:193.200000pt;}
.y28_c00104{bottom:210.800000pt;}
.y27_c00104{bottom:228.400000pt;}
.y26_c00104{bottom:246.266667pt;}
.y25_c00104{bottom:263.866667pt;}
.y24_c00104{bottom:281.733333pt;}
.y23_c00104{bottom:299.600000pt;}
.y22_c00104{bottom:317.200000pt;}
.y21_c00104{bottom:334.800000pt;}
.y20_c00104{bottom:352.666667pt;}
.y1f_c00104{bottom:370.533333pt;}
.y1e_c00104{bottom:387.866667pt;}
.y1d_c00104{bottom:406.133333pt;}
.y1c_c00104{bottom:423.733333pt;}
.y1b_c00104{bottom:441.333333pt;}
.y1a_c00104{bottom:458.933333pt;}
.y19_c00104{bottom:476.800000pt;}
.y18_c00104{bottom:494.400000pt;}
.y17_c00104{bottom:512.000000pt;}
.y16_c00104{bottom:529.866667pt;}
.y15_c00104{bottom:547.866667pt;}
.y14_c00104{bottom:565.466667pt;}
.y13_c00104{bottom:583.333333pt;}
.y12_c00104{bottom:600.933333pt;}
.y11_c00104{bottom:618.800000pt;}
.y10_c00104{bottom:636.666667pt;}
.yf_c00104{bottom:654.533333pt;}
.ye_c00104{bottom:672.133333pt;}
.yd_c00104{bottom:689.733333pt;}
.yc_c00104{bottom:707.333333pt;}
.yb_c00104{bottom:725.200000pt;}
.ya_c00104{bottom:742.800000pt;}
.y9_c00104{bottom:760.666667pt;}
.y8_c00104{bottom:778.266667pt;}
.y7_c00104{bottom:795.866667pt;}
.y6_c00104{bottom:814.133333pt;}
.y5_c00104{bottom:831.733333pt;}
.y4_c00104{bottom:849.333333pt;}
.y3_c00104{bottom:867.200000pt;}
.y2_c00104{bottom:885.066667pt;}
.y1_c00104{bottom:919.333333pt;}
.h2_c00104{height:53.333333pt;}
.h1_c00104{height:1038.000000pt;}
.h0_c00104{height:1038.079997pt;}
.w1_c00104{width:818.000000pt;}
.w0_c00104{width:818.239991pt;}
.x0_c00104{left:0.000000pt;}
.xcc_c00104{left:131.600000pt;}
.x62_c00104{left:135.333333pt;}
.x1_c00104{left:136.266667pt;}
.x47_c00104{left:153.866667pt;}
.xdf_c00104{left:156.000000pt;}
.x3_c00104{left:160.000000pt;}
.x32_c00104{left:162.000000pt;}
.x3a_c00104{left:163.466667pt;}
.x55_c00104{left:164.666667pt;}
.x10e_c00104{left:166.400000pt;}
.x6e_c00104{left:167.600000pt;}
.x11_c00104{left:168.666667pt;}
.xf3_c00104{left:171.200000pt;}
.x106_c00104{left:173.200000pt;}
.xed_c00104{left:175.866667pt;}
.x129_c00104{left:176.800000pt;}
.xbc_c00104{left:180.266667pt;}
.x112_c00104{left:181.600000pt;}
.x23_c00104{left:183.466667pt;}
.x137_c00104{left:184.666667pt;}
.x12_c00104{left:186.933333pt;}
.xab_c00104{left:187.866667pt;}
.xc0_c00104{left:191.066667pt;}
.x135_c00104{left:192.533333pt;}
.x3b_c00104{left:194.133333pt;}
.x8b_c00104{left:196.666667pt;}
.xbd_c00104{left:198.133333pt;}
.xe0_c00104{left:200.400000pt;}
.x48_c00104{left:201.866667pt;}
.x24_c00104{left:203.333333pt;}
.x78_c00104{left:205.600000pt;}
.x11f_c00104{left:206.800000pt;}
.x13_c00104{left:207.733333pt;}
.xd9_c00104{left:209.333333pt;}
.xac_c00104{left:210.533333pt;}
.x121_c00104{left:212.533333pt;}
.x33_c00104{left:213.466667pt;}
.x4_c00104{left:214.666667pt;}
.x49_c00104{left:215.600000pt;}
.x3c_c00104{left:216.533333pt;}
.xc1_c00104{left:217.600000pt;}
.x6f_c00104{left:219.066667pt;}
.xfc_c00104{left:222.000000pt;}
.xb6_c00104{left:224.000000pt;}
.xd3_c00104{left:227.200000pt;}
.x100_c00104{left:228.400000pt;}
.xcd_c00104{left:229.466667pt;}
.xee_c00104{left:230.533333pt;}
.x14_c00104{left:231.733333pt;}
.x3d_c00104{left:232.800000pt;}
.x10f_c00104{left:234.933333pt;}
.x34_c00104{left:237.733333pt;}
.x97_c00104{left:239.333333pt;}
.xe1_c00104{left:242.933333pt;}
.x8c_c00104{left:244.000000pt;}
.xad_c00104{left:245.066667pt;}
.xd4_c00104{left:246.133333pt;}
.x15_c00104{left:247.066667pt;}
.x118_c00104{left:249.600000pt;}
.xda_c00104{left:250.666667pt;}
.x130_c00104{left:253.200000pt;}
.x11a_c00104{left:254.666667pt;}
.x56_c00104{left:256.533333pt;}
.x79_c00104{left:257.466667pt;}
.x25_c00104{left:259.066667pt;}
.x3e_c00104{left:261.600000pt;}
.x12a_c00104{left:265.066667pt;}
.x4a_c00104{left:266.133333pt;}
.xa2_c00104{left:268.533333pt;}
.xd5_c00104{left:269.466667pt;}
.x26_c00104{left:272.133333pt;}
.xce_c00104{left:273.866667pt;}
.x8d_c00104{left:275.066667pt;}
.x10a_c00104{left:276.133333pt;}
.x35_c00104{left:280.266667pt;}
.xf4_c00104{left:281.333333pt;}
.x63_c00104{left:284.800000pt;}
.x7a_c00104{left:286.933333pt;}
.x5_c00104{left:288.000000pt;}
.xc2_c00104{left:288.933333pt;}
.xfd_c00104{left:290.133333pt;}
.x12d_c00104{left:291.200000pt;}
.x4b_c00104{left:292.666667pt;}
.x36_c00104{left:293.733333pt;}
.xe5_c00104{left:296.000000pt;}
.x16_c00104{left:297.600000pt;}
.xcf_c00104{left:299.200000pt;}
.x64_c00104{left:300.133333pt;}
.xb7_c00104{left:301.333333pt;}
.xc3_c00104{left:302.400000pt;}
.x57_c00104{left:304.533333pt;}
.x131_c00104{left:306.000000pt;}
.x17_c00104{left:309.466667pt;}
.x113_c00104{left:310.933333pt;}
.x4c_c00104{left:312.133333pt;}
.x3f_c00104{left:314.400000pt;}
.x12e_c00104{left:316.133333pt;}
.x7b_c00104{left:320.533333pt;}
.x85_c00104{left:322.533333pt;}
.xa3_c00104{left:324.533333pt;}
.x37_c00104{left:328.266667pt;}
.x58_c00104{left:329.866667pt;}
.x114_c00104{left:330.800000pt;}
.x8e_c00104{left:332.000000pt;}
.x98_c00104{left:334.400000pt;}
.x27_c00104{left:336.133333pt;}
.x6_c00104{left:338.933333pt;}
.xae_c00104{left:340.400000pt;}
.xfe_c00104{left:341.600000pt;}
.x18_c00104{left:343.733333pt;}
.x7c_c00104{left:345.466667pt;}
.x38_c00104{left:346.533333pt;}
.xbe_c00104{left:347.866667pt;}
.x99_c00104{left:348.800000pt;}
.x86_c00104{left:349.733333pt;}
.x10b_c00104{left:350.666667pt;}
.x28_c00104{left:351.866667pt;}
.x70_c00104{left:353.466667pt;}
.x8f_c00104{left:355.733333pt;}
.x9a_c00104{left:359.066667pt;}
.x65_c00104{left:360.000000pt;}
.x7_c00104{left:362.266667pt;}
.xe6_c00104{left:363.200000pt;}
.x59_c00104{left:364.400000pt;}
.xef_c00104{left:366.800000pt;}
.x4d_c00104{left:368.533333pt;}
.xdb_c00104{left:369.466667pt;}
.x40_c00104{left:371.066667pt;}
.x101_c00104{left:372.133333pt;}
.xf5_c00104{left:373.466667pt;}
.x29_c00104{left:376.800000pt;}
.x136_c00104{left:378.000000pt;}
.xc4_c00104{left:379.466667pt;}
.x12b_c00104{left:381.200000pt;}
.x39_c00104{left:383.600000pt;}
.x90_c00104{left:385.866667pt;}
.x9b_c00104{left:386.933333pt;}
.x19_c00104{left:387.866667pt;}
.x7d_c00104{left:389.600000pt;}
.xf6_c00104{left:391.066667pt;}
.x122_c00104{left:393.733333pt;}
.xaf_c00104{left:395.466667pt;}
.xe7_c00104{left:396.800000pt;}
.xdc_c00104{left:398.266667pt;}
.x2_c00104{left:400.266667pt;}
.x4e_c00104{left:401.866667pt;}
.x71_c00104{left:403.066667pt;}
.x110_c00104{left:404.266667pt;}
.xc5_c00104{left:406.933333pt;}
.xa4_c00104{left:408.666667pt;}
.x91_c00104{left:409.600000pt;}
.x138_c00104{left:412.266667pt;}
.x5a_c00104{left:413.333333pt;}
.xf7_c00104{left:414.800000pt;}
.x9c_c00104{left:417.066667pt;}
.x66_c00104{left:419.466667pt;}
.xb8_c00104{left:420.400000pt;}
.x111_c00104{left:423.733333pt;}
.x1a_c00104{left:424.666667pt;}
.xb0_c00104{left:427.466667pt;}
.x4f_c00104{left:429.333333pt;}
.x5b_c00104{left:430.266667pt;}
.xf8_c00104{left:432.400000pt;}
.xa5_c00104{left:434.000000pt;}
.x2a_c00104{left:435.333333pt;}
.x12c_c00104{left:436.266667pt;}
.x12f_c00104{left:438.000000pt;}
.x8_c00104{left:440.000000pt;}
.xd0_c00104{left:441.866667pt;}
.xb1_c00104{left:444.800000pt;}
.x87_c00104{left:447.333333pt;}
.x7e_c00104{left:449.066667pt;}
.x9d_c00104{left:450.666667pt;}
.x1b_c00104{left:453.466667pt;}
.x50_c00104{left:454.933333pt;}
.x72_c00104{left:456.533333pt;}
.x92_c00104{left:457.866667pt;}
.xe8_c00104{left:460.133333pt;}
.x67_c00104{left:461.066667pt;}
.xc6_c00104{left:462.933333pt;}
.xbf_c00104{left:464.266667pt;}
.xa6_c00104{left:466.666667pt;}
.x102_c00104{left:470.800000pt;}
.xd1_c00104{left:472.266667pt;}
.x73_c00104{left:474.133333pt;}
.x2b_c00104{left:476.266667pt;}
.x68_c00104{left:478.666667pt;}
.x11b_c00104{left:480.800000pt;}
.x1c_c00104{left:482.933333pt;}
.x41_c00104{left:484.933333pt;}
.xe2_c00104{left:486.266667pt;}
.x132_c00104{left:487.466667pt;}
.x107_c00104{left:490.000000pt;}
.x103_c00104{left:490.933333pt;}
.x74_c00104{left:493.066667pt;}
.x5c_c00104{left:494.800000pt;}
.x51_c00104{left:495.866667pt;}
.x123_c00104{left:498.400000pt;}
.xf9_c00104{left:500.533333pt;}
.x7f_c00104{left:501.866667pt;}
.x10c_c00104{left:504.266667pt;}
.xf0_c00104{left:506.666667pt;}
.x75_c00104{left:510.933333pt;}
.x1d_c00104{left:513.066667pt;}
.x108_c00104{left:514.933333pt;}
.x9_c00104{left:516.800000pt;}
.x69_c00104{left:518.400000pt;}
.x104_c00104{left:519.466667pt;}
.x88_c00104{left:521.200000pt;}
.xe3_c00104{left:522.800000pt;}
.xe9_c00104{left:524.666667pt;}
.x80_c00104{left:526.533333pt;}
.xb9_c00104{left:529.733333pt;}
.x5d_c00104{left:531.866667pt;}
.x124_c00104{left:533.333333pt;}
.xa_c00104{left:535.733333pt;}
.xfa_c00104{left:537.066667pt;}
.x42_c00104{left:538.400000pt;}
.x2c_c00104{left:539.600000pt;}
.xb2_c00104{left:541.466667pt;}
.xd6_c00104{left:543.600000pt;}
.xea_c00104{left:544.533333pt;}
.x126_c00104{left:545.600000pt;}
.xb_c00104{left:549.200000pt;}
.x133_c00104{left:550.266667pt;}
.x89_c00104{left:551.600000pt;}
.xfb_c00104{left:554.666667pt;}
.xa7_c00104{left:555.866667pt;}
.x2d_c00104{left:557.200000pt;}
.xff_c00104{left:560.533333pt;}
.x6a_c00104{left:564.133333pt;}
.x93_c00104{left:566.666667pt;}
.xc7_c00104{left:568.533333pt;}
.x1e_c00104{left:569.733333pt;}
.xb3_c00104{left:572.533333pt;}
.xdd_c00104{left:574.266667pt;}
.x9e_c00104{left:576.400000pt;}
.xeb_c00104{left:578.400000pt;}
.x5e_c00104{left:579.600000pt;}
.x10d_c00104{left:581.066667pt;}
.xc_c00104{left:585.333333pt;}
.x11c_c00104{left:587.066667pt;}
.x8a_c00104{left:588.666667pt;}
.x81_c00104{left:589.866667pt;}
.x115_c00104{left:591.200000pt;}
.x109_c00104{left:592.400000pt;}
.x1f_c00104{left:595.333333pt;}
.xb4_c00104{left:597.866667pt;}
.xc8_c00104{left:600.266667pt;}
.x6b_c00104{left:601.866667pt;}
.x94_c00104{left:605.333333pt;}
.x5f_c00104{left:607.066667pt;}
.xd2_c00104{left:608.666667pt;}
.xd_c00104{left:610.666667pt;}
.xa8_c00104{left:613.733333pt;}
.x43_c00104{left:619.733333pt;}
.x52_c00104{left:622.266667pt;}
.x119_c00104{left:623.333333pt;}
.x116_c00104{left:624.800000pt;}
.x127_c00104{left:626.000000pt;}
.x20_c00104{left:628.666667pt;}
.x2e_c00104{left:630.133333pt;}
.x76_c00104{left:634.666667pt;}
.x44_c00104{left:636.400000pt;}
.x134_c00104{left:637.600000pt;}
.x11d_c00104{left:638.533333pt;}
.x53_c00104{left:640.133333pt;}
.xc9_c00104{left:641.600000pt;}
.x6c_c00104{left:643.200000pt;}
.x82_c00104{left:644.933333pt;}
.xb5_c00104{left:645.866667pt;}
.xde_c00104{left:647.600000pt;}
.x2f_c00104{left:648.666667pt;}
.xa9_c00104{left:650.933333pt;}
.x9f_c00104{left:654.133333pt;}
.x83_c00104{left:655.200000pt;}
.xe_c00104{left:656.133333pt;}
.xca_c00104{left:657.333333pt;}
.x95_c00104{left:658.800000pt;}
.x45_c00104{left:662.000000pt;}
.xd7_c00104{left:664.266667pt;}
.x54_c00104{left:665.466667pt;}
.xf1_c00104{left:666.666667pt;}
.xba_c00104{left:668.000000pt;}
.xa0_c00104{left:672.400000pt;}
.x60_c00104{left:673.600000pt;}
.x11e_c00104{left:674.666667pt;}
.xf_c00104{left:677.866667pt;}
.x84_c00104{left:680.133333pt;}
.xe4_c00104{left:682.133333pt;}
.x96_c00104{left:683.466667pt;}
.xaa_c00104{left:685.466667pt;}
.x30_c00104{left:687.066667pt;}
.x46_c00104{left:688.266667pt;}
.x139_c00104{left:689.333333pt;}
.x105_c00104{left:690.400000pt;}
.x21_c00104{left:692.400000pt;}
.x6d_c00104{left:693.733333pt;}
.x120_c00104{left:697.066667pt;}
.xa1_c00104{left:698.000000pt;}
.xcb_c00104{left:699.866667pt;}
.x61_c00104{left:701.466667pt;}
.xd8_c00104{left:704.266667pt;}
.x125_c00104{left:705.733333pt;}
.x31_c00104{left:706.933333pt;}
.x128_c00104{left:708.933333pt;}
.x22_c00104{left:710.266667pt;}
.x117_c00104{left:715.333333pt;}
.x77_c00104{left:716.266667pt;}
.x10_c00104{left:717.200000pt;}
.xbb_c00104{left:721.466667pt;}
.xec_c00104{left:722.400000pt;}
.xf2_c00104{left:723.866667pt;}
}





/* 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_c00105 {
    display:none;
  }
  .loading-indicator_c00105.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00105 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_c00105 { 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_c00105" -> "#page-container .classname_c00105")
 */
.pf_c00105 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00105 { /* 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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00105 { /* 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_c00105 { /* 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_c00105 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00105 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00105 {overflow:visible;}
  }
}
.c_c00105 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00105 { /* 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_c00105:after { /* webkit #35443 */
  content: '';
}
.t_c00105:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00105 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 */
}
.__c00105 { /* 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_c00105 { /* info for Javascript */
  display:none;
}
.l_c00105 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00105 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00105 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00105: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_c00105 {
    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_c00105.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00105.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_c00105 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00105{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.000000;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;}
.m37_c00105{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m66_c00105{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m96_c00105{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00105{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m43_c00105{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00105{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00105{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m32_c00105{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc_c00105{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00105{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m98_c00105{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00105{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m85_c00105{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00105{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m56_c00105{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00105{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00105{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00105{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00105{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mac_c00105{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m30_c00105{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00105{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m95_c00105{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00105{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m15_c00105{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00105{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00105{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m29_c00105{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00105{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m58_c00105{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m63_c00105{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00105{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m83_c00105{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m62_c00105{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8_c00105{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m64_c00105{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m71_c00105{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m77_c00105{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00105{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m78_c00105{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00105{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00105{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00105{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00105{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m31_c00105{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00105{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.maa_c00105{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m92_c00105{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m52_c00105{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00105{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10_c00105{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00105{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00105{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m82_c00105{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00105{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00105{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m80_c00105{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00105{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m48_c00105{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m79_c00105{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m49_c00105{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m67_c00105{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m91_c00105{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m23_c00105{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma_c00105{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m61_c00105{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00105{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m97_c00105{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m73_c00105{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00105{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m17_c00105{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00105{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00105{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00105{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m41_c00105{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00105{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00105{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00105{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00105{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00105{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m51_c00105{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00105{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m81_c00105{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00105{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m35_c00105{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00105{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00105{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00105{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00105{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m65_c00105{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m18_c00105{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00105{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11_c00105{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00105{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m42_c00105{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m86_c00105{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m87_c00105{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m44_c00105{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00105{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m75_c00105{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00105{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m26_c00105{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m12_c00105{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00105{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m59_c00105{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00105{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m14_c00105{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00105{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m34_c00105{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00105{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00105{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00105{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m16_c00105{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m89_c00105{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00105{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00105{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00105{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m28_c00105{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m39_c00105{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m33_c00105{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00105{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m60_c00105{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m93_c00105{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m88_c00105{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20_c00105{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00105{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00105{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00105{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);}
.m54_c00105{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf_c00105{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mab_c00105{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m36_c00105{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m69_c00105{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m70_c00105{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m38_c00105{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00105{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m47_c00105{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00105{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00105{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m55_c00105{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m72_c00105{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m21_c00105{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00105{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00105{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00105{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m68_c00105{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m40_c00105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00105{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00105{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m46_c00105{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m24_c00105{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00105{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00105{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m90_c00105{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00105{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00105{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m94_c00105{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00105{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00105{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m84_c00105{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m0_c00105{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m57_c00105{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m22_c00105{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m50_c00105{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{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__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00105{word-spacing:-10.138889px;}
.ws0_c00105{word-spacing:-6.962025px;}
.ws5_c00105{word-spacing:0.000000px;}
.ws4_c00105{word-spacing:5.540541px;}
.ws3_c00105{word-spacing:8.611111px;}
.ws2_c00105{word-spacing:9.736842px;}
.fc0_c00105{color:transparent;}
.fs0_c00105{font-size:54.000000px;}
.fs1_c00105{font-size:60.000000px;}
.y0_c00105{bottom:0.000000px;}
.y2b_c00105{bottom:206.100000px;}
.y2a_c00105{bottom:225.900000px;}
.y29_c00105{bottom:245.700000px;}
.y28_c00105{bottom:265.800000px;}
.y27_c00105{bottom:285.900000px;}
.y26_c00105{bottom:305.700000px;}
.y25_c00105{bottom:325.500000px;}
.y24_c00105{bottom:345.300000px;}
.y23_c00105{bottom:365.400000px;}
.y22_c00105{bottom:385.200000px;}
.y21_c00105{bottom:405.000000px;}
.y20_c00105{bottom:425.100000px;}
.y1f_c00105{bottom:444.900000px;}
.y1e_c00105{bottom:464.850000px;}
.y1d_c00105{bottom:484.950000px;}
.y1c_c00105{bottom:504.750000px;}
.y1b_c00105{bottom:524.550000px;}
.y1a_c00105{bottom:544.350000px;}
.y19_c00105{bottom:564.450000px;}
.y18_c00105{bottom:584.250000px;}
.y17_c00105{bottom:604.350000px;}
.y16_c00105{bottom:623.850000px;}
.y15_c00105{bottom:643.650000px;}
.y14_c00105{bottom:663.600000px;}
.y13_c00105{bottom:683.700000px;}
.y12_c00105{bottom:703.500000px;}
.y11_c00105{bottom:723.600000px;}
.y10_c00105{bottom:743.700000px;}
.yf_c00105{bottom:763.500000px;}
.ye_c00105{bottom:783.300000px;}
.yd_c00105{bottom:803.400000px;}
.yc_c00105{bottom:823.200000px;}
.yb_c00105{bottom:843.300000px;}
.ya_c00105{bottom:863.400000px;}
.y9_c00105{bottom:883.200000px;}
.y8_c00105{bottom:903.300000px;}
.y7_c00105{bottom:923.100000px;}
.y6_c00105{bottom:942.900000px;}
.y5_c00105{bottom:962.700000px;}
.y4_c00105{bottom:982.500000px;}
.y3_c00105{bottom:1002.600000px;}
.y2_c00105{bottom:1022.100000px;}
.y1_c00105{bottom:1061.250000px;}
.h2_c00105{height:54.000000px;}
.h3_c00105{height:60.000000px;}
.h1_c00105{height:1167.750000px;}
.h0_c00105{height:1167.839997px;}
.w1_c00105{width:920.250000px;}
.w0_c00105{width:920.519990px;}
.x0_c00105{left:0.000000px;}
.x116_c00105{left:108.900000px;}
.x81_c00105{left:110.400000px;}
.x17_c00105{left:111.900000px;}
.x9d_c00105{left:123.600000px;}
.x124_c00105{left:125.700000px;}
.xc0_c00105{left:130.500000px;}
.xd6_c00105{left:133.200000px;}
.x33_c00105{left:134.550000px;}
.x4d_c00105{left:136.950000px;}
.xcb_c00105{left:141.150000px;}
.xa5_c00105{left:142.200000px;}
.x4_c00105{left:143.700000px;}
.x3d_c00105{left:145.500000px;}
.x104_c00105{left:150.450000px;}
.xf5_c00105{left:153.150000px;}
.x65_c00105{left:158.850000px;}
.x78_c00105{left:160.050000px;}
.xfb_c00105{left:161.100000px;}
.x5_c00105{left:162.450000px;}
.xaf_c00105{left:163.500000px;}
.xda_c00105{left:165.600000px;}
.x9e_c00105{left:166.800000px;}
.x5a_c00105{left:174.150000px;}
.x82_c00105{left:175.500000px;}
.x94_c00105{left:176.550000px;}
.x26_c00105{left:178.500000px;}
.xb0_c00105{left:180.450000px;}
.x3e_c00105{left:183.000000px;}
.xc8_c00105{left:184.800000px;}
.x6_c00105{left:186.150000px;}
.x12f_c00105{left:187.500000px;}
.xd0_c00105{left:188.850000px;}
.x79_c00105{left:190.950000px;}
.xe9_c00105{left:192.150000px;}
.x12c_c00105{left:194.400000px;}
.x129_c00105{left:195.900000px;}
.xc1_c00105{left:197.100000px;}
.x117_c00105{left:198.150000px;}
.xd7_c00105{left:199.800000px;}
.xdb_c00105{left:203.700000px;}
.x8f_c00105{left:204.900000px;}
.x3f_c00105{left:206.700000px;}
.x130_c00105{left:208.800000px;}
.x5b_c00105{left:211.950000px;}
.x18_c00105{left:213.750000px;}
.x73_c00105{left:214.950000px;}
.xd8_c00105{left:217.500000px;}
.xcc_c00105{left:219.150000px;}
.x11f_c00105{left:220.200000px;}
.xd1_c00105{left:221.250000px;}
.x4e_c00105{left:223.350000px;}
.x7_c00105{left:225.000000px;}
.x105_c00105{left:226.800000px;}
.x66_c00105{left:228.750000px;}
.x9f_c00105{left:230.250000px;}
.x40_c00105{left:232.200000px;}
.x19_c00105{left:234.600000px;}
.xf2_c00105{left:237.000000px;}
.x120_c00105{left:239.700000px;}
.x131_c00105{left:241.200000px;}
.x4f_c00105{left:242.850000px;}
.xb8_c00105{left:244.050000px;}
.xd9_c00105{left:245.550000px;}
.x67_c00105{left:246.750000px;}
.x95_c00105{left:248.550000px;}
.xfe_c00105{left:249.750000px;}
.x34_c00105{left:252.000000px;}
.x111_c00105{left:253.050000px;}
.x8_c00105{left:260.700000px;}
.xa6_c00105{left:263.250000px;}
.x5c_c00105{left:265.200000px;}
.x68_c00105{left:267.300000px;}
.x132_c00105{left:269.250000px;}
.x50_c00105{left:270.600000px;}
.x118_c00105{left:271.650000px;}
.xdc_c00105{left:274.350000px;}
.x7a_c00105{left:277.050000px;}
.xc9_c00105{left:279.150000px;}
.x113_c00105{left:281.400000px;}
.xb9_c00105{left:284.400000px;}
.x83_c00105{left:290.100000px;}
.xb1_c00105{left:291.300000px;}
.x9_c00105{left:293.400000px;}
.x27_c00105{left:294.750000px;}
.x1a_c00105{left:298.650000px;}
.x41_c00105{left:302.100000px;}
.xea_c00105{left:305.850000px;}
.x96_c00105{left:308.250000px;}
.x119_c00105{left:309.450000px;}
.x51_c00105{left:311.700000px;}
.xa_c00105{left:315.300000px;}
.xe5_c00105{left:316.500000px;}
.xd2_c00105{left:318.900000px;}
.x1b_c00105{left:320.250000px;}
.xf6_c00105{left:323.250000px;}
.x28_c00105{left:325.050000px;}
.xb2_c00105{left:327.000000px;}
.x5d_c00105{left:328.950000px;}
.x42_c00105{left:331.950000px;}
.xff_c00105{left:333.600000px;}
.xca_c00105{left:336.000000px;}
.x69_c00105{left:337.800000px;}
.xeb_c00105{left:341.100000px;}
.xa0_c00105{left:343.050000px;}
.xb_c00105{left:345.150000px;}
.xa7_c00105{left:347.100000px;}
.xc2_c00105{left:349.650000px;}
.x10a_c00105{left:351.000000px;}
.xe6_c00105{left:352.800000px;}
.x35_c00105{left:354.000000px;}
.xdd_c00105{left:355.350000px;}
.xcd_c00105{left:357.750000px;}
.x90_c00105{left:358.800000px;}
.x43_c00105{left:361.800000px;}
.x5e_c00105{left:362.850000px;}
.x7b_c00105{left:365.250000px;}
.x1c_c00105{left:367.050000px;}
.xb3_c00105{left:368.400000px;}
.x112_c00105{left:370.500000px;}
.x1_c00105{left:371.550000px;}
.x106_c00105{left:374.700000px;}
.xf7_c00105{left:375.750000px;}
.xa1_c00105{left:378.000000px;}
.x6a_c00105{left:379.200000px;}
.x29_c00105{left:382.650000px;}
.x52_c00105{left:388.050000px;}
.x5f_c00105{left:391.350000px;}
.x74_c00105{left:392.400000px;}
.xc_c00105{left:394.050000px;}
.x84_c00105{left:396.000000px;}
.x1d_c00105{left:397.950000px;}
.xa8_c00105{left:399.000000px;}
.xa2_c00105{left:403.950000px;}
.x11a_c00105{left:405.150000px;}
.x7c_c00105{left:407.700000px;}
.x121_c00105{left:408.900000px;}
.xd_c00105{left:413.850000px;}
.x44_c00105{left:415.500000px;}
.xde_c00105{left:416.550000px;}
.xa9_c00105{left:418.500000px;}
.x12d_c00105{left:420.150000px;}
.x53_c00105{left:421.950000px;}
.x36_c00105{left:423.900000px;}
.x2a_c00105{left:426.150000px;}
.xce_c00105{left:428.250000px;}
.x114_c00105{left:430.950000px;}
.x85_c00105{left:432.750000px;}
.x2_c00105{left:434.250000px;}
.x6b_c00105{left:435.300000px;}
.x122_c00105{left:436.650000px;}
.x97_c00105{left:437.700000px;}
.x136_c00105{left:439.350000px;}
.x12a_c00105{left:441.450000px;}
.x125_c00105{left:442.500000px;}
.xd3_c00105{left:443.850000px;}
.x54_c00105{left:447.150000px;}
.x86_c00105{left:449.700000px;}
.x75_c00105{left:451.800000px;}
.xb4_c00105{left:453.000000px;}
.x10b_c00105{left:454.350000px;}
.xec_c00105{left:457.650000px;}
.x60_c00105{left:460.050000px;}
.x45_c00105{left:461.550000px;}
.x2b_c00105{left:463.200000px;}
.xfc_c00105{left:465.450000px;}
.xe_c00105{left:470.400000px;}
.x101_c00105{left:471.600000px;}
.x55_c00105{left:473.400000px;}
.x123_c00105{left:474.750000px;}
.x98_c00105{left:475.800000px;}
.x1e_c00105{left:477.900000px;}
.xc3_c00105{left:479.700000px;}
.xa3_c00105{left:481.650000px;}
.xed_c00105{left:483.150000px;}
.xdf_c00105{left:484.950000px;}
.x87_c00105{left:487.200000px;}
.xf_c00105{left:488.400000px;}
.x37_c00105{left:489.450000px;}
.x100_c00105{left:491.550000px;}
.x2c_c00105{left:493.800000px;}
.x61_c00105{left:496.050000px;}
.xc4_c00105{left:499.500000px;}
.x1f_c00105{left:500.550000px;}
.xba_c00105{left:501.750000px;}
.x10c_c00105{left:505.200000px;}
.xa4_c00105{left:506.850000px;}
.xaa_c00105{left:508.500000px;}
.x2d_c00105{left:510.750000px;}
.x76_c00105{left:511.950000px;}
.x6c_c00105{left:514.800000px;}
.x88_c00105{left:517.050000px;}
.x7d_c00105{left:518.250000px;}
.xbb_c00105{left:520.800000px;}
.x10_c00105{left:521.850000px;}
.x20_c00105{left:523.950000px;}
.x46_c00105{left:526.350000px;}
.x77_c00105{left:529.950000px;}
.x102_c00105{left:532.050000px;}
.xe0_c00105{left:533.250000px;}
.xe7_c00105{left:535.050000px;}
.xf3_c00105{left:538.050000px;}
.x91_c00105{left:540.300000px;}
.x89_c00105{left:542.550000px;}
.x56_c00105{left:544.650000px;}
.x6d_c00105{left:545.700000px;}
.x47_c00105{left:547.200000px;}
.x99_c00105{left:549.900000px;}
.x134_c00105{left:552.600000px;}
.x21_c00105{left:554.550000px;}
.x137_c00105{left:555.900000px;}
.xd4_c00105{left:558.300000px;}
.x11_c00105{left:559.650000px;}
.x10d_c00105{left:560.700000px;}
.x2e_c00105{left:562.650000px;}
.x107_c00105{left:563.700000px;}
.x62_c00105{left:565.200000px;}
.x6e_c00105{left:568.050000px;}
.x8a_c00105{left:570.300000px;}
.x57_c00105{left:571.650000px;}
.xee_c00105{left:572.850000px;}
.xfd_c00105{left:573.900000px;}
.x9a_c00105{left:575.400000px;}
.x38_c00105{left:577.350000px;}
.x115_c00105{left:579.450000px;}
.x12_c00105{left:580.950000px;}
.x2f_c00105{left:585.000000px;}
.x92_c00105{left:588.150000px;}
.x138_c00105{left:589.350000px;}
.xab_c00105{left:593.100000px;}
.x11b_c00105{left:595.200000px;}
.x48_c00105{left:596.850000px;}
.x126_c00105{left:598.050000px;}
.xe8_c00105{left:600.900000px;}
.xf8_c00105{left:603.900000px;}
.x22_c00105{left:604.950000px;}
.xc5_c00105{left:606.450000px;}
.x49_c00105{left:607.950000px;}
.x30_c00105{left:609.900000px;}
.x8b_c00105{left:610.950000px;}
.x93_c00105{left:613.650000px;}
.x10e_c00105{left:614.700000px;}
.xe1_c00105{left:616.350000px;}
.x12e_c00105{left:619.200000px;}
.x13_c00105{left:621.600000px;}
.x103_c00105{left:623.100000px;}
.xbc_c00105{left:627.000000px;}
.x127_c00105{left:628.950000px;}
.x6f_c00105{left:630.750000px;}
.xac_c00105{left:632.700000px;}
.x31_c00105{left:635.400000px;}
.x4a_c00105{left:638.850000px;}
.x7e_c00105{left:642.150000px;}
.x14_c00105{left:643.200000px;}
.x8c_c00105{left:645.450000px;}
.xe2_c00105{left:647.250000px;}
.x70_c00105{left:648.450000px;}
.x10f_c00105{left:651.750000px;}
.x135_c00105{left:653.700000px;}
.xbd_c00105{left:657.900000px;}
.x39_c00105{left:660.900000px;}
.x11c_c00105{left:662.550000px;}
.xef_c00105{left:666.900000px;}
.xb5_c00105{left:670.200000px;}
.x9b_c00105{left:671.850000px;}
.x63_c00105{left:674.250000px;}
.x71_c00105{left:676.500000px;}
.x3a_c00105{left:678.150000px;}
.x58_c00105{left:679.350000px;}
.x108_c00105{left:681.750000px;}
.xe3_c00105{left:683.550000px;}
.xbe_c00105{left:688.200000px;}
.x23_c00105{left:690.600000px;}
.xf0_c00105{left:692.850000px;}
.x11d_c00105{left:696.000000px;}
.x64_c00105{left:700.200000px;}
.x109_c00105{left:701.850000px;}
.x110_c00105{left:702.900000px;}
.x59_c00105{left:704.850000px;}
.x4b_c00105{left:706.950000px;}
.xcf_c00105{left:708.450000px;}
.xe4_c00105{left:710.550000px;}
.x3b_c00105{left:712.050000px;}
.x8d_c00105{left:713.850000px;}
.x24_c00105{left:716.100000px;}
.x128_c00105{left:717.450000px;}
.x72_c00105{left:718.650000px;}
.xc6_c00105{left:719.700000px;}
.x15_c00105{left:721.650000px;}
.x12b_c00105{left:724.200000px;}
.x7f_c00105{left:726.450000px;}
.x32_c00105{left:727.500000px;}
.xbf_c00105{left:728.850000px;}
.xb6_c00105{left:730.350000px;}
.xf9_c00105{left:732.150000px;}
.xad_c00105{left:737.400000px;}
.xf1_c00105{left:738.450000px;}
.x80_c00105{left:741.150000px;}
.x8e_c00105{left:742.350000px;}
.xd5_c00105{left:743.700000px;}
.x25_c00105{left:745.200000px;}
.xc7_c00105{left:746.400000px;}
.x133_c00105{left:747.450000px;}
.x3c_c00105{left:749.550000px;}
.x9c_c00105{left:753.300000px;}
.x11e_c00105{left:754.350000px;}
.xae_c00105{left:756.900000px;}
.x16_c00105{left:759.150000px;}
.x3_c00105{left:761.100000px;}
.x4c_c00105{left:766.350000px;}
.xb7_c00105{left:767.400000px;}
.xf4_c00105{left:768.750000px;}
.xfa_c00105{left:772.050000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws1_c00105{word-spacing:-9.012346pt;}
.ws0_c00105{word-spacing:-6.188467pt;}
.ws5_c00105{word-spacing:0.000000pt;}
.ws4_c00105{word-spacing:4.924925pt;}
.ws3_c00105{word-spacing:7.654321pt;}
.ws2_c00105{word-spacing:8.654971pt;}
.fs0_c00105{font-size:48.000000pt;}
.fs1_c00105{font-size:53.333333pt;}
.y0_c00105{bottom:0.000000pt;}
.y2b_c00105{bottom:183.200000pt;}
.y2a_c00105{bottom:200.800000pt;}
.y29_c00105{bottom:218.400000pt;}
.y28_c00105{bottom:236.266667pt;}
.y27_c00105{bottom:254.133333pt;}
.y26_c00105{bottom:271.733333pt;}
.y25_c00105{bottom:289.333333pt;}
.y24_c00105{bottom:306.933333pt;}
.y23_c00105{bottom:324.800000pt;}
.y22_c00105{bottom:342.400000pt;}
.y21_c00105{bottom:360.000000pt;}
.y20_c00105{bottom:377.866667pt;}
.y1f_c00105{bottom:395.466667pt;}
.y1e_c00105{bottom:413.200000pt;}
.y1d_c00105{bottom:431.066667pt;}
.y1c_c00105{bottom:448.666667pt;}
.y1b_c00105{bottom:466.266667pt;}
.y1a_c00105{bottom:483.866667pt;}
.y19_c00105{bottom:501.733333pt;}
.y18_c00105{bottom:519.333333pt;}
.y17_c00105{bottom:537.200000pt;}
.y16_c00105{bottom:554.533333pt;}
.y15_c00105{bottom:572.133333pt;}
.y14_c00105{bottom:589.866667pt;}
.y13_c00105{bottom:607.733333pt;}
.y12_c00105{bottom:625.333333pt;}
.y11_c00105{bottom:643.200000pt;}
.y10_c00105{bottom:661.066667pt;}
.yf_c00105{bottom:678.666667pt;}
.ye_c00105{bottom:696.266667pt;}
.yd_c00105{bottom:714.133333pt;}
.yc_c00105{bottom:731.733333pt;}
.yb_c00105{bottom:749.600000pt;}
.ya_c00105{bottom:767.466667pt;}
.y9_c00105{bottom:785.066667pt;}
.y8_c00105{bottom:802.933333pt;}
.y7_c00105{bottom:820.533333pt;}
.y6_c00105{bottom:838.133333pt;}
.y5_c00105{bottom:855.733333pt;}
.y4_c00105{bottom:873.333333pt;}
.y3_c00105{bottom:891.200000pt;}
.y2_c00105{bottom:908.533333pt;}
.y1_c00105{bottom:943.333333pt;}
.h2_c00105{height:48.000000pt;}
.h3_c00105{height:53.333333pt;}
.h1_c00105{height:1038.000000pt;}
.h0_c00105{height:1038.079997pt;}
.w1_c00105{width:818.000000pt;}
.w0_c00105{width:818.239991pt;}
.x0_c00105{left:0.000000pt;}
.x116_c00105{left:96.800000pt;}
.x81_c00105{left:98.133333pt;}
.x17_c00105{left:99.466667pt;}
.x9d_c00105{left:109.866667pt;}
.x124_c00105{left:111.733333pt;}
.xc0_c00105{left:116.000000pt;}
.xd6_c00105{left:118.400000pt;}
.x33_c00105{left:119.600000pt;}
.x4d_c00105{left:121.733333pt;}
.xcb_c00105{left:125.466667pt;}
.xa5_c00105{left:126.400000pt;}
.x4_c00105{left:127.733333pt;}
.x3d_c00105{left:129.333333pt;}
.x104_c00105{left:133.733333pt;}
.xf5_c00105{left:136.133333pt;}
.x65_c00105{left:141.200000pt;}
.x78_c00105{left:142.266667pt;}
.xfb_c00105{left:143.200000pt;}
.x5_c00105{left:144.400000pt;}
.xaf_c00105{left:145.333333pt;}
.xda_c00105{left:147.200000pt;}
.x9e_c00105{left:148.266667pt;}
.x5a_c00105{left:154.800000pt;}
.x82_c00105{left:156.000000pt;}
.x94_c00105{left:156.933333pt;}
.x26_c00105{left:158.666667pt;}
.xb0_c00105{left:160.400000pt;}
.x3e_c00105{left:162.666667pt;}
.xc8_c00105{left:164.266667pt;}
.x6_c00105{left:165.466667pt;}
.x12f_c00105{left:166.666667pt;}
.xd0_c00105{left:167.866667pt;}
.x79_c00105{left:169.733333pt;}
.xe9_c00105{left:170.800000pt;}
.x12c_c00105{left:172.800000pt;}
.x129_c00105{left:174.133333pt;}
.xc1_c00105{left:175.200000pt;}
.x117_c00105{left:176.133333pt;}
.xd7_c00105{left:177.600000pt;}
.xdb_c00105{left:181.066667pt;}
.x8f_c00105{left:182.133333pt;}
.x3f_c00105{left:183.733333pt;}
.x130_c00105{left:185.600000pt;}
.x5b_c00105{left:188.400000pt;}
.x18_c00105{left:190.000000pt;}
.x73_c00105{left:191.066667pt;}
.xd8_c00105{left:193.333333pt;}
.xcc_c00105{left:194.800000pt;}
.x11f_c00105{left:195.733333pt;}
.xd1_c00105{left:196.666667pt;}
.x4e_c00105{left:198.533333pt;}
.x7_c00105{left:200.000000pt;}
.x105_c00105{left:201.600000pt;}
.x66_c00105{left:203.333333pt;}
.x9f_c00105{left:204.666667pt;}
.x40_c00105{left:206.400000pt;}
.x19_c00105{left:208.533333pt;}
.xf2_c00105{left:210.666667pt;}
.x120_c00105{left:213.066667pt;}
.x131_c00105{left:214.400000pt;}
.x4f_c00105{left:215.866667pt;}
.xb8_c00105{left:216.933333pt;}
.xd9_c00105{left:218.266667pt;}
.x67_c00105{left:219.333333pt;}
.x95_c00105{left:220.933333pt;}
.xfe_c00105{left:222.000000pt;}
.x34_c00105{left:224.000000pt;}
.x111_c00105{left:224.933333pt;}
.x8_c00105{left:231.733333pt;}
.xa6_c00105{left:234.000000pt;}
.x5c_c00105{left:235.733333pt;}
.x68_c00105{left:237.600000pt;}
.x132_c00105{left:239.333333pt;}
.x50_c00105{left:240.533333pt;}
.x118_c00105{left:241.466667pt;}
.xdc_c00105{left:243.866667pt;}
.x7a_c00105{left:246.266667pt;}
.xc9_c00105{left:248.133333pt;}
.x113_c00105{left:250.133333pt;}
.xb9_c00105{left:252.800000pt;}
.x83_c00105{left:257.866667pt;}
.xb1_c00105{left:258.933333pt;}
.x9_c00105{left:260.800000pt;}
.x27_c00105{left:262.000000pt;}
.x1a_c00105{left:265.466667pt;}
.x41_c00105{left:268.533333pt;}
.xea_c00105{left:271.866667pt;}
.x96_c00105{left:274.000000pt;}
.x119_c00105{left:275.066667pt;}
.x51_c00105{left:277.066667pt;}
.xa_c00105{left:280.266667pt;}
.xe5_c00105{left:281.333333pt;}
.xd2_c00105{left:283.466667pt;}
.x1b_c00105{left:284.666667pt;}
.xf6_c00105{left:287.333333pt;}
.x28_c00105{left:288.933333pt;}
.xb2_c00105{left:290.666667pt;}
.x5d_c00105{left:292.400000pt;}
.x42_c00105{left:295.066667pt;}
.xff_c00105{left:296.533333pt;}
.xca_c00105{left:298.666667pt;}
.x69_c00105{left:300.266667pt;}
.xeb_c00105{left:303.200000pt;}
.xa0_c00105{left:304.933333pt;}
.xb_c00105{left:306.800000pt;}
.xa7_c00105{left:308.533333pt;}
.xc2_c00105{left:310.800000pt;}
.x10a_c00105{left:312.000000pt;}
.xe6_c00105{left:313.600000pt;}
.x35_c00105{left:314.666667pt;}
.xdd_c00105{left:315.866667pt;}
.xcd_c00105{left:318.000000pt;}
.x90_c00105{left:318.933333pt;}
.x43_c00105{left:321.600000pt;}
.x5e_c00105{left:322.533333pt;}
.x7b_c00105{left:324.666667pt;}
.x1c_c00105{left:326.266667pt;}
.xb3_c00105{left:327.466667pt;}
.x112_c00105{left:329.333333pt;}
.x1_c00105{left:330.266667pt;}
.x106_c00105{left:333.066667pt;}
.xf7_c00105{left:334.000000pt;}
.xa1_c00105{left:336.000000pt;}
.x6a_c00105{left:337.066667pt;}
.x29_c00105{left:340.133333pt;}
.x52_c00105{left:344.933333pt;}
.x5f_c00105{left:347.866667pt;}
.x74_c00105{left:348.800000pt;}
.xc_c00105{left:350.266667pt;}
.x84_c00105{left:352.000000pt;}
.x1d_c00105{left:353.733333pt;}
.xa8_c00105{left:354.666667pt;}
.xa2_c00105{left:359.066667pt;}
.x11a_c00105{left:360.133333pt;}
.x7c_c00105{left:362.400000pt;}
.x121_c00105{left:363.466667pt;}
.xd_c00105{left:367.866667pt;}
.x44_c00105{left:369.333333pt;}
.xde_c00105{left:370.266667pt;}
.xa9_c00105{left:372.000000pt;}
.x12d_c00105{left:373.466667pt;}
.x53_c00105{left:375.066667pt;}
.x36_c00105{left:376.800000pt;}
.x2a_c00105{left:378.800000pt;}
.xce_c00105{left:380.666667pt;}
.x114_c00105{left:383.066667pt;}
.x85_c00105{left:384.666667pt;}
.x2_c00105{left:386.000000pt;}
.x6b_c00105{left:386.933333pt;}
.x122_c00105{left:388.133333pt;}
.x97_c00105{left:389.066667pt;}
.x136_c00105{left:390.533333pt;}
.x12a_c00105{left:392.400000pt;}
.x125_c00105{left:393.333333pt;}
.xd3_c00105{left:394.533333pt;}
.x54_c00105{left:397.466667pt;}
.x86_c00105{left:399.733333pt;}
.x75_c00105{left:401.600000pt;}
.xb4_c00105{left:402.666667pt;}
.x10b_c00105{left:403.866667pt;}
.xec_c00105{left:406.800000pt;}
.x60_c00105{left:408.933333pt;}
.x45_c00105{left:410.266667pt;}
.x2b_c00105{left:411.733333pt;}
.xfc_c00105{left:413.733333pt;}
.xe_c00105{left:418.133333pt;}
.x101_c00105{left:419.200000pt;}
.x55_c00105{left:420.800000pt;}
.x123_c00105{left:422.000000pt;}
.x98_c00105{left:422.933333pt;}
.x1e_c00105{left:424.800000pt;}
.xc3_c00105{left:426.400000pt;}
.xa3_c00105{left:428.133333pt;}
.xed_c00105{left:429.466667pt;}
.xdf_c00105{left:431.066667pt;}
.x87_c00105{left:433.066667pt;}
.xf_c00105{left:434.133333pt;}
.x37_c00105{left:435.066667pt;}
.x100_c00105{left:436.933333pt;}
.x2c_c00105{left:438.933333pt;}
.x61_c00105{left:440.933333pt;}
.xc4_c00105{left:444.000000pt;}
.x1f_c00105{left:444.933333pt;}
.xba_c00105{left:446.000000pt;}
.x10c_c00105{left:449.066667pt;}
.xa4_c00105{left:450.533333pt;}
.xaa_c00105{left:452.000000pt;}
.x2d_c00105{left:454.000000pt;}
.x76_c00105{left:455.066667pt;}
.x6c_c00105{left:457.600000pt;}
.x88_c00105{left:459.600000pt;}
.x7d_c00105{left:460.666667pt;}
.xbb_c00105{left:462.933333pt;}
.x10_c00105{left:463.866667pt;}
.x20_c00105{left:465.733333pt;}
.x46_c00105{left:467.866667pt;}
.x77_c00105{left:471.066667pt;}
.x102_c00105{left:472.933333pt;}
.xe0_c00105{left:474.000000pt;}
.xe7_c00105{left:475.600000pt;}
.xf3_c00105{left:478.266667pt;}
.x91_c00105{left:480.266667pt;}
.x89_c00105{left:482.266667pt;}
.x56_c00105{left:484.133333pt;}
.x6d_c00105{left:485.066667pt;}
.x47_c00105{left:486.400000pt;}
.x99_c00105{left:488.800000pt;}
.x134_c00105{left:491.200000pt;}
.x21_c00105{left:492.933333pt;}
.x137_c00105{left:494.133333pt;}
.xd4_c00105{left:496.266667pt;}
.x11_c00105{left:497.466667pt;}
.x10d_c00105{left:498.400000pt;}
.x2e_c00105{left:500.133333pt;}
.x107_c00105{left:501.066667pt;}
.x62_c00105{left:502.400000pt;}
.x6e_c00105{left:504.933333pt;}
.x8a_c00105{left:506.933333pt;}
.x57_c00105{left:508.133333pt;}
.xee_c00105{left:509.200000pt;}
.xfd_c00105{left:510.133333pt;}
.x9a_c00105{left:511.466667pt;}
.x38_c00105{left:513.200000pt;}
.x115_c00105{left:515.066667pt;}
.x12_c00105{left:516.400000pt;}
.x2f_c00105{left:520.000000pt;}
.x92_c00105{left:522.800000pt;}
.x138_c00105{left:523.866667pt;}
.xab_c00105{left:527.200000pt;}
.x11b_c00105{left:529.066667pt;}
.x48_c00105{left:530.533333pt;}
.x126_c00105{left:531.600000pt;}
.xe8_c00105{left:534.133333pt;}
.xf8_c00105{left:536.800000pt;}
.x22_c00105{left:537.733333pt;}
.xc5_c00105{left:539.066667pt;}
.x49_c00105{left:540.400000pt;}
.x30_c00105{left:542.133333pt;}
.x8b_c00105{left:543.066667pt;}
.x93_c00105{left:545.466667pt;}
.x10e_c00105{left:546.400000pt;}
.xe1_c00105{left:547.866667pt;}
.x12e_c00105{left:550.400000pt;}
.x13_c00105{left:552.533333pt;}
.x103_c00105{left:553.866667pt;}
.xbc_c00105{left:557.333333pt;}
.x127_c00105{left:559.066667pt;}
.x6f_c00105{left:560.666667pt;}
.xac_c00105{left:562.400000pt;}
.x31_c00105{left:564.800000pt;}
.x4a_c00105{left:567.866667pt;}
.x7e_c00105{left:570.800000pt;}
.x14_c00105{left:571.733333pt;}
.x8c_c00105{left:573.733333pt;}
.xe2_c00105{left:575.333333pt;}
.x70_c00105{left:576.400000pt;}
.x10f_c00105{left:579.333333pt;}
.x135_c00105{left:581.066667pt;}
.xbd_c00105{left:584.800000pt;}
.x39_c00105{left:587.466667pt;}
.x11c_c00105{left:588.933333pt;}
.xef_c00105{left:592.800000pt;}
.xb5_c00105{left:595.733333pt;}
.x9b_c00105{left:597.200000pt;}
.x63_c00105{left:599.333333pt;}
.x71_c00105{left:601.333333pt;}
.x3a_c00105{left:602.800000pt;}
.x58_c00105{left:603.866667pt;}
.x108_c00105{left:606.000000pt;}
.xe3_c00105{left:607.600000pt;}
.xbe_c00105{left:611.733333pt;}
.x23_c00105{left:613.866667pt;}
.xf0_c00105{left:615.866667pt;}
.x11d_c00105{left:618.666667pt;}
.x64_c00105{left:622.400000pt;}
.x109_c00105{left:623.866667pt;}
.x110_c00105{left:624.800000pt;}
.x59_c00105{left:626.533333pt;}
.x4b_c00105{left:628.400000pt;}
.xcf_c00105{left:629.733333pt;}
.xe4_c00105{left:631.600000pt;}
.x3b_c00105{left:632.933333pt;}
.x8d_c00105{left:634.533333pt;}
.x24_c00105{left:636.533333pt;}
.x128_c00105{left:637.733333pt;}
.x72_c00105{left:638.800000pt;}
.xc6_c00105{left:639.733333pt;}
.x15_c00105{left:641.466667pt;}
.x12b_c00105{left:643.733333pt;}
.x7f_c00105{left:645.733333pt;}
.x32_c00105{left:646.666667pt;}
.xbf_c00105{left:647.866667pt;}
.xb6_c00105{left:649.200000pt;}
.xf9_c00105{left:650.800000pt;}
.xad_c00105{left:655.466667pt;}
.xf1_c00105{left:656.400000pt;}
.x80_c00105{left:658.800000pt;}
.x8e_c00105{left:659.866667pt;}
.xd5_c00105{left:661.066667pt;}
.x25_c00105{left:662.400000pt;}
.xc7_c00105{left:663.466667pt;}
.x133_c00105{left:664.400000pt;}
.x3c_c00105{left:666.266667pt;}
.x9c_c00105{left:669.600000pt;}
.x11e_c00105{left:670.533333pt;}
.xae_c00105{left:672.800000pt;}
.x16_c00105{left:674.800000pt;}
.x3_c00105{left:676.533333pt;}
.x4c_c00105{left:681.200000pt;}
.xb7_c00105{left:682.133333pt;}
.xf4_c00105{left:683.333333pt;}
.xfa_c00105{left:686.266667pt;}
}





/* 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_c00106 {
    display:none;
  }
  .loading-indicator_c00106.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00106 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_c00106 { 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_c00106" -> "#page-container .classname_c00106")
 */
.pf_c00106 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00106 { /* 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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00106 { /* 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_c00106 { /* 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_c00106 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00106 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00106 {overflow:visible;}
  }
}
.c_c00106 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00106 { /* 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_c00106:after { /* webkit #35443 */
  content: '';
}
.t_c00106:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00106 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 */
}
.__c00106 { /* 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_c00106 { /* info for Javascript */
  display:none;
}
.l_c00106 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00106 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00106 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00106: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_c00106 {
    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_c00106.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00106.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_c00106 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00106{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.000000;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;}
.m67_c00106{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m46_c00106{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m64_c00106{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m0_c00106{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00106{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m90_c00106{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00106{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00106{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00106{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m98_c00106{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00106{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00106{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00106{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00106{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00106{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m36_c00106{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00106{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00106{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m74_c00106{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m16_c00106{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00106{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m48_c00106{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00106{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00106{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m61_c00106{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m99_c00106{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m65_c00106{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00106{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m94_c00106{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00106{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00106{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m85_c00106{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m55_c00106{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m71_c00106{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00106{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00106{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m96_c00106{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00106{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m69_c00106{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00106{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.me_c00106{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m82_c00106{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m97_c00106{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00106{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m31_c00106{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m41_c00106{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00106{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m83_c00106{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00106{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00106{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00106{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m81_c00106{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m10_c00106{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00106{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m56_c00106{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m75_c00106{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00106{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m80_c00106{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m29_c00106{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m37_c00106{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m70_c00106{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m40_c00106{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00106{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00106{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m54_c00106{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.mb_c00106{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m62_c00106{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00106{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m43_c00106{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m35_c00106{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00106{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m24_c00106{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00106{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00106{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00106{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.mf_c00106{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m50_c00106{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m21_c00106{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00106{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00106{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m30_c00106{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m86_c00106{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m25_c00106{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m27_c00106{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00106{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m78_c00106{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m19_c00106{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m63_c00106{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00106{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18_c00106{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00106{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00106{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);}
.m49_c00106{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m72_c00106{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m34_c00106{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00106{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00106{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38_c00106{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m84_c00106{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m73_c00106{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m12_c00106{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00106{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m77_c00106{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m93_c00106{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m39_c00106{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m89_c00106{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00106{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m68_c00106{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m66_c00106{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m47_c00106{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m76_c00106{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m60_c00106{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m87_c00106{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00106{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00106{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m59_c00106{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c00106{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m51_c00106{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00106{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m45_c00106{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00106{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00106{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00106{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m23_c00106{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00106{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m11_c00106{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m15_c00106{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m13_c00106{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m79_c00106{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m32_c00106{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00106{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00106{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m57_c00106{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00106{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00106{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m28_c00106{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00106{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00106{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m95_c00106{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m33_c00106{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00106{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00106{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m58_c00106{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00106{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00106{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00106{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m91_c00106{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m92_c00106{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m26_c00106{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00106{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m44_c00106{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m20_c00106{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00106{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m52_c00106{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00106{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m22_c00106{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.md_c00106{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m4_c00106{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m88_c00106{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8_c00106{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m1_c00106{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);}
.m17_c00106{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{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__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00106{word-spacing:-4.500000px;}
.ws4_c00106{word-spacing:-1.375000px;}
.ws2_c00106{word-spacing:-0.507777px;}
.ws5_c00106{word-spacing:0.000000px;}
.ws0_c00106{word-spacing:2.891738px;}
.ws3_c00106{word-spacing:7.643881px;}
._0_c00106{width:27.250000px;}
.fc0_c00106{color:transparent;}
.fs1_c00106{font-size:42.000000px;}
.fs0_c00106{font-size:54.000000px;}
.y0_c00106{bottom:0.000000px;}
.y26_c00106{bottom:161.250000px;}
.y25_c00106{bottom:176.700000px;}
.y24_c00106{bottom:192.300000px;}
.y23_c00106{bottom:207.750000px;}
.y22_c00106{bottom:239.100000px;}
.y21_c00106{bottom:259.200000px;}
.y20_c00106{bottom:279.000000px;}
.y1f_c00106{bottom:298.800000px;}
.y1e_c00106{bottom:319.350000px;}
.y1d_c00106{bottom:339.150000px;}
.y1c_c00106{bottom:358.950000px;}
.y1b_c00106{bottom:378.750000px;}
.y1a_c00106{bottom:399.300000px;}
.y19_c00106{bottom:419.100000px;}
.y18_c00106{bottom:438.900000px;}
.y17_c00106{bottom:459.000000px;}
.y16_c00106{bottom:478.200000px;}
.y15_c00106{bottom:498.750000px;}
.y14_c00106{bottom:518.550000px;}
.y13_c00106{bottom:538.350000px;}
.y12_c00106{bottom:558.450000px;}
.y11_c00106{bottom:578.250000px;}
.y10_c00106{bottom:597.750000px;}
.yf_c00106{bottom:617.550000px;}
.ye_c00106{bottom:637.350000px;}
.yd_c00106{bottom:657.450000px;}
.yc_c00106{bottom:677.250000px;}
.yb_c00106{bottom:697.350000px;}
.ya_c00106{bottom:717.150000px;}
.y9_c00106{bottom:736.950000px;}
.y8_c00106{bottom:756.750000px;}
.y7_c00106{bottom:776.550000px;}
.y6_c00106{bottom:796.800000px;}
.y5_c00106{bottom:816.900000px;}
.y4_c00106{bottom:836.700000px;}
.y3_c00106{bottom:870.450000px;}
.y2_c00106{bottom:898.950000px;}
.y1_c00106{bottom:1058.700000px;}
.h3_c00106{height:42.000000px;}
.h2_c00106{height:54.000000px;}
.h1_c00106{height:1167.750000px;}
.h0_c00106{height:1167.839997px;}
.w1_c00106{width:920.250000px;}
.w0_c00106{width:920.519990px;}
.x0_c00106{left:0.000000px;}
.xb_c00106{left:140.400000px;}
.xfb_c00106{left:141.750000px;}
.x6c_c00106{left:157.650000px;}
.xba_c00106{left:159.450000px;}
.x50_c00106{left:160.800000px;}
.x2f_c00106{left:163.500000px;}
.x2a_c00106{left:171.300000px;}
.x7a_c00106{left:172.350000px;}
.x90_c00106{left:173.700000px;}
.xc_c00106{left:175.650000px;}
.x11d_c00106{left:176.700000px;}
.x84_c00106{left:178.050000px;}
.x5d_c00106{left:180.600000px;}
.xd7_c00106{left:182.400000px;}
.x2b_c00106{left:186.000000px;}
.x51_c00106{left:188.550000px;}
.x5e_c00106{left:191.700000px;}
.x45_c00106{left:193.200000px;}
.xe4_c00106{left:194.550000px;}
.xbb_c00106{left:198.300000px;}
.xdd_c00106{left:202.500000px;}
.xc6_c00106{left:203.700000px;}
.x101_c00106{left:205.350000px;}
.x9b_c00106{left:209.850000px;}
.x6d_c00106{left:210.900000px;}
.x108_c00106{left:212.100000px;}
.xa5_c00106{left:213.900000px;}
.xd_c00106{left:215.250000px;}
.x117_c00106{left:216.450000px;}
.x85_c00106{left:219.150000px;}
.x3d_c00106{left:221.700000px;}
.x1e_c00106{left:223.200000px;}
.xc7_c00106{left:224.250000px;}
.xd8_c00106{left:225.600000px;}
.x106_c00106{left:229.200000px;}
.xed_c00106{left:230.700000px;}
.xa6_c00106{left:232.650000px;}
.x7b_c00106{left:233.850000px;}
.xe_c00106{left:235.350000px;}
.x86_c00106{left:236.850000px;}
.x11e_c00106{left:238.650000px;}
.x91_c00106{left:241.350000px;}
.xb1_c00106{left:243.300000px;}
.x10b_c00106{left:244.500000px;}
.x2c_c00106{left:246.450000px;}
.x46_c00106{left:249.750000px;}
.x112_c00106{left:253.950000px;}
.x1f_c00106{left:255.600000px;}
.xd2_c00106{left:257.100000px;}
.xde_c00106{left:258.750000px;}
.xbc_c00106{left:261.600000px;}
.x7c_c00106{left:266.250000px;}
.x30_c00106{left:268.200000px;}
.xfc_c00106{left:270.600000px;}
.x47_c00106{left:272.850000px;}
.x2d_c00106{left:274.500000px;}
.xf_c00106{left:275.700000px;}
.x109_c00106{left:277.200000px;}
.xa7_c00106{left:283.050000px;}
.xe5_c00106{left:285.600000px;}
.x102_c00106{left:287.100000px;}
.x5f_c00106{left:288.900000px;}
.x6e_c00106{left:290.400000px;}
.x107_c00106{left:292.200000px;}
.x3e_c00106{left:296.250000px;}
.x87_c00106{left:297.300000px;}
.x10_c00106{left:298.800000px;}
.x92_c00106{left:301.050000px;}
.xa8_c00106{left:302.100000px;}
.xd3_c00106{left:303.900000px;}
.xe6_c00106{left:306.150000px;}
.xbd_c00106{left:308.100000px;}
.x52_c00106{left:310.200000px;}
.x10a_c00106{left:311.400000px;}
.x4_c00106{left:313.950000px;}
.x60_c00106{left:315.600000px;}
.x88_c00106{left:317.850000px;}
.xcc_c00106{left:321.000000px;}
.x113_c00106{left:324.150000px;}
.x31_c00106{left:326.850000px;}
.x53_c00106{left:328.200000px;}
.x20_c00106{left:330.900000px;}
.x3f_c00106{left:333.300000px;}
.xf4_c00106{left:335.850000px;}
.x118_c00106{left:337.800000px;}
.x9c_c00106{left:339.450000px;}
.x61_c00106{left:340.800000px;}
.x114_c00106{left:343.200000px;}
.xcd_c00106{left:346.950000px;}
.x7d_c00106{left:348.600000px;}
.x6f_c00106{left:350.100000px;}
.x2e_c00106{left:352.200000px;}
.x11_c00106{left:354.300000px;}
.xf5_c00106{left:355.350000px;}
.x62_c00106{left:360.600000px;}
.x21_c00106{left:362.250000px;}
.xbe_c00106{left:364.200000px;}
.xb2_c00106{left:365.700000px;}
.x54_c00106{left:369.300000px;}
.x40_c00106{left:371.400000px;}
.xee_c00106{left:373.050000px;}
.x12_c00106{left:375.900000px;}
.x103_c00106{left:378.900000px;}
.xf6_c00106{left:380.850000px;}
.xbf_c00106{left:384.750000px;}
.x48_c00106{left:386.250000px;}
.x70_c00106{left:387.900000px;}
.x7e_c00106{left:389.250000px;}
.xa9_c00106{left:391.350000px;}
.xdf_c00106{left:396.300000px;}
.xb3_c00106{left:397.350000px;}
.x32_c00106{left:398.850000px;}
.x63_c00106{left:399.900000px;}
.x89_c00106{left:401.400000px;}
.x5_c00106{left:403.200000px;}
.x10c_c00106{left:404.550000px;}
.x71_c00106{left:405.900000px;}
.xd4_c00106{left:407.550000px;}
.x49_c00106{left:409.950000px;}
.x55_c00106{left:412.800000px;}
.x13_c00106{left:414.000000px;}
.xe0_c00106{left:415.800000px;}
.x2_c00106{left:417.300000px;}
.xc8_c00106{left:422.250000px;}
.x6_c00106{left:423.300000px;}
.x33_c00106{left:424.350000px;}
.x9d_c00106{left:426.150000px;}
.x93_c00106{left:433.500000px;}
.x14_c00106{left:434.550000px;}
.x22_c00106{left:439.350000px;}
.x4a_c00106{left:440.550000px;}
.xef_c00106{left:442.200000px;}
.x64_c00106{left:443.400000px;}
.xaa_c00106{left:444.600000px;}
.x8a_c00106{left:449.550000px;}
.x119_c00106{left:451.500000px;}
.x7f_c00106{left:453.300000px;}
.xc0_c00106{left:454.950000px;}
.xb4_c00106{left:457.050000px;}
.x41_c00106{left:458.550000px;}
.xd5_c00106{left:459.750000px;}
.xf0_c00106{left:461.700000px;}
.x94_c00106{left:463.350000px;}
.x15_c00106{left:464.850000px;}
.x1_c00106{left:467.700000px;}
.x34_c00106{left:469.050000px;}
.x7_c00106{left:470.100000px;}
.x23_c00106{left:472.050000px;}
.x56_c00106{left:474.750000px;}
.xb5_c00106{left:477.150000px;}
.xc9_c00106{left:479.550000px;}
.x9e_c00106{left:481.950000px;}
.x10d_c00106{left:483.450000px;}
.xf7_c00106{left:485.400000px;}
.x35_c00106{left:487.350000px;}
.x72_c00106{left:489.450000px;}
.xab_c00106{left:490.650000px;}
.x8b_c00106{left:493.500000px;}
.x65_c00106{left:498.450000px;}
.x3_c00106{left:501.600000px;}
.x42_c00106{left:505.050000px;}
.xe7_c00106{left:506.250000px;}
.x9f_c00106{left:508.650000px;}
.x16_c00106{left:510.600000px;}
.x8_c00106{left:514.050000px;}
.xf8_c00106{left:515.700000px;}
.x8c_c00106{left:518.400000px;}
.x66_c00106{left:521.550000px;}
.x36_c00106{left:523.350000px;}
.x43_c00106{left:525.150000px;}
.x57_c00106{left:526.950000px;}
.x95_c00106{left:528.450000px;}
.xfd_c00106{left:530.250000px;}
.xca_c00106{left:531.750000px;}
.x17_c00106{left:534.300000px;}
.xac_c00106{left:536.400000px;}
.xe1_c00106{left:537.750000px;}
.x24_c00106{left:539.700000px;}
.xe8_c00106{left:541.500000px;}
.x9_c00106{left:543.600000px;}
.x96_c00106{left:546.150000px;}
.x44_c00106{left:548.250000px;}
.xfe_c00106{left:552.150000px;}
.x11a_c00106{left:554.850000px;}
.xe9_c00106{left:555.900000px;}
.x8d_c00106{left:558.000000px;}
.x73_c00106{left:559.350000px;}
.x115_c00106{left:561.150000px;}
.x67_c00106{left:563.250000px;}
.x10e_c00106{left:565.500000px;}
.xd9_c00106{left:566.550000px;}
.xb6_c00106{left:567.600000px;}
.x11b_c00106{left:572.550000px;}
.x25_c00106{left:574.200000px;}
.xa0_c00106{left:576.000000px;}
.xcb_c00106{left:577.500000px;}
.x80_c00106{left:582.600000px;}
.xd6_c00106{left:584.100000px;}
.x37_c00106{left:586.650000px;}
.x97_c00106{left:588.300000px;}
.xa_c00106{left:589.650000px;}
.x74_c00106{left:590.700000px;}
.x11f_c00106{left:592.200000px;}
.xf9_c00106{left:593.850000px;}
.x104_c00106{left:594.900000px;}
.x81_c00106{left:596.250000px;}
.xad_c00106{left:598.350000px;}
.xce_c00106{left:600.600000px;}
.xa1_c00106{left:601.950000px;}
.x26_c00106{left:603.750000px;}
.x18_c00106{left:610.950000px;}
.xf1_c00106{left:614.400000px;}
.xcf_c00106{left:618.600000px;}
.x75_c00106{left:622.050000px;}
.x10f_c00106{left:623.850000px;}
.x38_c00106{left:625.200000px;}
.x4b_c00106{left:627.750000px;}
.xa2_c00106{left:629.700000px;}
.x58_c00106{left:636.750000px;}
.x19_c00106{left:639.000000px;}
.xc1_c00106{left:643.350000px;}
.xae_c00106{left:644.850000px;}
.x11c_c00106{left:646.650000px;}
.x98_c00106{left:649.800000px;}
.x76_c00106{left:651.900000px;}
.x39_c00106{left:653.700000px;}
.x68_c00106{left:655.350000px;}
.x59_c00106{left:657.300000px;}
.xff_c00106{left:659.100000px;}
.x1a_c00106{left:661.650000px;}
.xb7_c00106{left:664.800000px;}
.xe2_c00106{left:666.600000px;}
.x105_c00106{left:670.050000px;}
.xa3_c00106{left:672.150000px;}
.x82_c00106{left:673.350000px;}
.xc2_c00106{left:676.050000px;}
.x69_c00106{left:677.250000px;}
.x8e_c00106{left:678.300000px;}
.x1b_c00106{left:680.400000px;}
.x110_c00106{left:682.200000px;}
.x4c_c00106{left:685.050000px;}
.xda_c00106{left:686.400000px;}
.x116_c00106{left:688.500000px;}
.xd0_c00106{left:691.650000px;}
.xaf_c00106{left:692.700000px;}
.x5a_c00106{left:696.900000px;}
.xf2_c00106{left:703.050000px;}
.x27_c00106{left:704.850000px;}
.xe3_c00106{left:705.900000px;}
.xdb_c00106{left:707.700000px;}
.x1c_c00106{left:709.200000px;}
.x77_c00106{left:712.050000px;}
.xea_c00106{left:715.200000px;}
.x5b_c00106{left:718.800000px;}
.x3a_c00106{left:720.600000px;}
.x4d_c00106{left:721.800000px;}
.xc3_c00106{left:724.650000px;}
.x83_c00106{left:727.800000px;}
.x28_c00106{left:729.750000px;}
.x6a_c00106{left:733.350000px;}
.x78_c00106{left:736.200000px;}
.x8f_c00106{left:737.700000px;}
.x100_c00106{left:739.800000px;}
.xfa_c00106{left:741.150000px;}
.x3b_c00106{left:742.950000px;}
.xa4_c00106{left:745.950000px;}
.xc4_c00106{left:747.000000px;}
.xd1_c00106{left:749.250000px;}
.x6b_c00106{left:753.150000px;}
.xb0_c00106{left:754.650000px;}
.x4e_c00106{left:756.300000px;}
.x99_c00106{left:757.500000px;}
.xeb_c00106{left:759.450000px;}
.x79_c00106{left:762.150000px;}
.x111_c00106{left:763.950000px;}
.xb8_c00106{left:767.850000px;}
.x29_c00106{left:770.100000px;}
.xec_c00106{left:773.100000px;}
.xc5_c00106{left:775.050000px;}
.x4f_c00106{left:777.900000px;}
.x1d_c00106{left:785.850000px;}
.x5c_c00106{left:786.900000px;}
.xb9_c00106{left:789.450000px;}
.x9a_c00106{left:791.700000px;}
.xf3_c00106{left:796.350000px;}
.xdc_c00106{left:798.000000px;}
.x3c_c00106{left:799.800000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws1_c00106{word-spacing:-4.000000pt;}
.ws4_c00106{word-spacing:-1.222222pt;}
.ws2_c00106{word-spacing:-0.451357pt;}
.ws5_c00106{word-spacing:0.000000pt;}
.ws0_c00106{word-spacing:2.570434pt;}
.ws3_c00106{word-spacing:6.794561pt;}
._0_c00106{width:24.222222pt;}
.fs1_c00106{font-size:37.333333pt;}
.fs0_c00106{font-size:48.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y26_c00106{bottom:143.333333pt;}
.y25_c00106{bottom:157.066667pt;}
.y24_c00106{bottom:170.933333pt;}
.y23_c00106{bottom:184.666667pt;}
.y22_c00106{bottom:212.533333pt;}
.y21_c00106{bottom:230.400000pt;}
.y20_c00106{bottom:248.000000pt;}
.y1f_c00106{bottom:265.600000pt;}
.y1e_c00106{bottom:283.866667pt;}
.y1d_c00106{bottom:301.466667pt;}
.y1c_c00106{bottom:319.066667pt;}
.y1b_c00106{bottom:336.666667pt;}
.y1a_c00106{bottom:354.933333pt;}
.y19_c00106{bottom:372.533333pt;}
.y18_c00106{bottom:390.133333pt;}
.y17_c00106{bottom:408.000000pt;}
.y16_c00106{bottom:425.066667pt;}
.y15_c00106{bottom:443.333333pt;}
.y14_c00106{bottom:460.933333pt;}
.y13_c00106{bottom:478.533333pt;}
.y12_c00106{bottom:496.400000pt;}
.y11_c00106{bottom:514.000000pt;}
.y10_c00106{bottom:531.333333pt;}
.yf_c00106{bottom:548.933333pt;}
.ye_c00106{bottom:566.533333pt;}
.yd_c00106{bottom:584.400000pt;}
.yc_c00106{bottom:602.000000pt;}
.yb_c00106{bottom:619.866667pt;}
.ya_c00106{bottom:637.466667pt;}
.y9_c00106{bottom:655.066667pt;}
.y8_c00106{bottom:672.666667pt;}
.y7_c00106{bottom:690.266667pt;}
.y6_c00106{bottom:708.266667pt;}
.y5_c00106{bottom:726.133333pt;}
.y4_c00106{bottom:743.733333pt;}
.y3_c00106{bottom:773.733333pt;}
.y2_c00106{bottom:799.066667pt;}
.y1_c00106{bottom:941.066667pt;}
.h3_c00106{height:37.333333pt;}
.h2_c00106{height:48.000000pt;}
.h1_c00106{height:1038.000000pt;}
.h0_c00106{height:1038.079997pt;}
.w1_c00106{width:818.000000pt;}
.w0_c00106{width:818.239991pt;}
.x0_c00106{left:0.000000pt;}
.xb_c00106{left:124.800000pt;}
.xfb_c00106{left:126.000000pt;}
.x6c_c00106{left:140.133333pt;}
.xba_c00106{left:141.733333pt;}
.x50_c00106{left:142.933333pt;}
.x2f_c00106{left:145.333333pt;}
.x2a_c00106{left:152.266667pt;}
.x7a_c00106{left:153.200000pt;}
.x90_c00106{left:154.400000pt;}
.xc_c00106{left:156.133333pt;}
.x11d_c00106{left:157.066667pt;}
.x84_c00106{left:158.266667pt;}
.x5d_c00106{left:160.533333pt;}
.xd7_c00106{left:162.133333pt;}
.x2b_c00106{left:165.333333pt;}
.x51_c00106{left:167.600000pt;}
.x5e_c00106{left:170.400000pt;}
.x45_c00106{left:171.733333pt;}
.xe4_c00106{left:172.933333pt;}
.xbb_c00106{left:176.266667pt;}
.xdd_c00106{left:180.000000pt;}
.xc6_c00106{left:181.066667pt;}
.x101_c00106{left:182.533333pt;}
.x9b_c00106{left:186.533333pt;}
.x6d_c00106{left:187.466667pt;}
.x108_c00106{left:188.533333pt;}
.xa5_c00106{left:190.133333pt;}
.xd_c00106{left:191.333333pt;}
.x117_c00106{left:192.400000pt;}
.x85_c00106{left:194.800000pt;}
.x3d_c00106{left:197.066667pt;}
.x1e_c00106{left:198.400000pt;}
.xc7_c00106{left:199.333333pt;}
.xd8_c00106{left:200.533333pt;}
.x106_c00106{left:203.733333pt;}
.xed_c00106{left:205.066667pt;}
.xa6_c00106{left:206.800000pt;}
.x7b_c00106{left:207.866667pt;}
.xe_c00106{left:209.200000pt;}
.x86_c00106{left:210.533333pt;}
.x11e_c00106{left:212.133333pt;}
.x91_c00106{left:214.533333pt;}
.xb1_c00106{left:216.266667pt;}
.x10b_c00106{left:217.333333pt;}
.x2c_c00106{left:219.066667pt;}
.x46_c00106{left:222.000000pt;}
.x112_c00106{left:225.733333pt;}
.x1f_c00106{left:227.200000pt;}
.xd2_c00106{left:228.533333pt;}
.xde_c00106{left:230.000000pt;}
.xbc_c00106{left:232.533333pt;}
.x7c_c00106{left:236.666667pt;}
.x30_c00106{left:238.400000pt;}
.xfc_c00106{left:240.533333pt;}
.x47_c00106{left:242.533333pt;}
.x2d_c00106{left:244.000000pt;}
.xf_c00106{left:245.066667pt;}
.x109_c00106{left:246.400000pt;}
.xa7_c00106{left:251.600000pt;}
.xe5_c00106{left:253.866667pt;}
.x102_c00106{left:255.200000pt;}
.x5f_c00106{left:256.800000pt;}
.x6e_c00106{left:258.133333pt;}
.x107_c00106{left:259.733333pt;}
.x3e_c00106{left:263.333333pt;}
.x87_c00106{left:264.266667pt;}
.x10_c00106{left:265.600000pt;}
.x92_c00106{left:267.600000pt;}
.xa8_c00106{left:268.533333pt;}
.xd3_c00106{left:270.133333pt;}
.xe6_c00106{left:272.133333pt;}
.xbd_c00106{left:273.866667pt;}
.x52_c00106{left:275.733333pt;}
.x10a_c00106{left:276.800000pt;}
.x4_c00106{left:279.066667pt;}
.x60_c00106{left:280.533333pt;}
.x88_c00106{left:282.533333pt;}
.xcc_c00106{left:285.333333pt;}
.x113_c00106{left:288.133333pt;}
.x31_c00106{left:290.533333pt;}
.x53_c00106{left:291.733333pt;}
.x20_c00106{left:294.133333pt;}
.x3f_c00106{left:296.266667pt;}
.xf4_c00106{left:298.533333pt;}
.x118_c00106{left:300.266667pt;}
.x9c_c00106{left:301.733333pt;}
.x61_c00106{left:302.933333pt;}
.x114_c00106{left:305.066667pt;}
.xcd_c00106{left:308.400000pt;}
.x7d_c00106{left:309.866667pt;}
.x6f_c00106{left:311.200000pt;}
.x2e_c00106{left:313.066667pt;}
.x11_c00106{left:314.933333pt;}
.xf5_c00106{left:315.866667pt;}
.x62_c00106{left:320.533333pt;}
.x21_c00106{left:322.000000pt;}
.xbe_c00106{left:323.733333pt;}
.xb2_c00106{left:325.066667pt;}
.x54_c00106{left:328.266667pt;}
.x40_c00106{left:330.133333pt;}
.xee_c00106{left:331.600000pt;}
.x12_c00106{left:334.133333pt;}
.x103_c00106{left:336.800000pt;}
.xf6_c00106{left:338.533333pt;}
.xbf_c00106{left:342.000000pt;}
.x48_c00106{left:343.333333pt;}
.x70_c00106{left:344.800000pt;}
.x7e_c00106{left:346.000000pt;}
.xa9_c00106{left:347.866667pt;}
.xdf_c00106{left:352.266667pt;}
.xb3_c00106{left:353.200000pt;}
.x32_c00106{left:354.533333pt;}
.x63_c00106{left:355.466667pt;}
.x89_c00106{left:356.800000pt;}
.x5_c00106{left:358.400000pt;}
.x10c_c00106{left:359.600000pt;}
.x71_c00106{left:360.800000pt;}
.xd4_c00106{left:362.266667pt;}
.x49_c00106{left:364.400000pt;}
.x55_c00106{left:366.933333pt;}
.x13_c00106{left:368.000000pt;}
.xe0_c00106{left:369.600000pt;}
.x2_c00106{left:370.933333pt;}
.xc8_c00106{left:375.333333pt;}
.x6_c00106{left:376.266667pt;}
.x33_c00106{left:377.200000pt;}
.x9d_c00106{left:378.800000pt;}
.x93_c00106{left:385.333333pt;}
.x14_c00106{left:386.266667pt;}
.x22_c00106{left:390.533333pt;}
.x4a_c00106{left:391.600000pt;}
.xef_c00106{left:393.066667pt;}
.x64_c00106{left:394.133333pt;}
.xaa_c00106{left:395.200000pt;}
.x8a_c00106{left:399.600000pt;}
.x119_c00106{left:401.333333pt;}
.x7f_c00106{left:402.933333pt;}
.xc0_c00106{left:404.400000pt;}
.xb4_c00106{left:406.266667pt;}
.x41_c00106{left:407.600000pt;}
.xd5_c00106{left:408.666667pt;}
.xf0_c00106{left:410.400000pt;}
.x94_c00106{left:411.866667pt;}
.x15_c00106{left:413.200000pt;}
.x1_c00106{left:415.733333pt;}
.x34_c00106{left:416.933333pt;}
.x7_c00106{left:417.866667pt;}
.x23_c00106{left:419.600000pt;}
.x56_c00106{left:422.000000pt;}
.xb5_c00106{left:424.133333pt;}
.xc9_c00106{left:426.266667pt;}
.x9e_c00106{left:428.400000pt;}
.x10d_c00106{left:429.733333pt;}
.xf7_c00106{left:431.466667pt;}
.x35_c00106{left:433.200000pt;}
.x72_c00106{left:435.066667pt;}
.xab_c00106{left:436.133333pt;}
.x8b_c00106{left:438.666667pt;}
.x65_c00106{left:443.066667pt;}
.x3_c00106{left:445.866667pt;}
.x42_c00106{left:448.933333pt;}
.xe7_c00106{left:450.000000pt;}
.x9f_c00106{left:452.133333pt;}
.x16_c00106{left:453.866667pt;}
.x8_c00106{left:456.933333pt;}
.xf8_c00106{left:458.400000pt;}
.x8c_c00106{left:460.800000pt;}
.x66_c00106{left:463.600000pt;}
.x36_c00106{left:465.200000pt;}
.x43_c00106{left:466.800000pt;}
.x57_c00106{left:468.400000pt;}
.x95_c00106{left:469.733333pt;}
.xfd_c00106{left:471.333333pt;}
.xca_c00106{left:472.666667pt;}
.x17_c00106{left:474.933333pt;}
.xac_c00106{left:476.800000pt;}
.xe1_c00106{left:478.000000pt;}
.x24_c00106{left:479.733333pt;}
.xe8_c00106{left:481.333333pt;}
.x9_c00106{left:483.200000pt;}
.x96_c00106{left:485.466667pt;}
.x44_c00106{left:487.333333pt;}
.xfe_c00106{left:490.800000pt;}
.x11a_c00106{left:493.200000pt;}
.xe9_c00106{left:494.133333pt;}
.x8d_c00106{left:496.000000pt;}
.x73_c00106{left:497.200000pt;}
.x115_c00106{left:498.800000pt;}
.x67_c00106{left:500.666667pt;}
.x10e_c00106{left:502.666667pt;}
.xd9_c00106{left:503.600000pt;}
.xb6_c00106{left:504.533333pt;}
.x11b_c00106{left:508.933333pt;}
.x25_c00106{left:510.400000pt;}
.xa0_c00106{left:512.000000pt;}
.xcb_c00106{left:513.333333pt;}
.x80_c00106{left:517.866667pt;}
.xd6_c00106{left:519.200000pt;}
.x37_c00106{left:521.466667pt;}
.x97_c00106{left:522.933333pt;}
.xa_c00106{left:524.133333pt;}
.x74_c00106{left:525.066667pt;}
.x11f_c00106{left:526.400000pt;}
.xf9_c00106{left:527.866667pt;}
.x104_c00106{left:528.800000pt;}
.x81_c00106{left:530.000000pt;}
.xad_c00106{left:531.866667pt;}
.xce_c00106{left:533.866667pt;}
.xa1_c00106{left:535.066667pt;}
.x26_c00106{left:536.666667pt;}
.x18_c00106{left:543.066667pt;}
.xf1_c00106{left:546.133333pt;}
.xcf_c00106{left:549.866667pt;}
.x75_c00106{left:552.933333pt;}
.x10f_c00106{left:554.533333pt;}
.x38_c00106{left:555.733333pt;}
.x4b_c00106{left:558.000000pt;}
.xa2_c00106{left:559.733333pt;}
.x58_c00106{left:566.000000pt;}
.x19_c00106{left:568.000000pt;}
.xc1_c00106{left:571.866667pt;}
.xae_c00106{left:573.200000pt;}
.x11c_c00106{left:574.800000pt;}
.x98_c00106{left:577.600000pt;}
.x76_c00106{left:579.466667pt;}
.x39_c00106{left:581.066667pt;}
.x68_c00106{left:582.533333pt;}
.x59_c00106{left:584.266667pt;}
.xff_c00106{left:585.866667pt;}
.x1a_c00106{left:588.133333pt;}
.xb7_c00106{left:590.933333pt;}
.xe2_c00106{left:592.533333pt;}
.x105_c00106{left:595.600000pt;}
.xa3_c00106{left:597.466667pt;}
.x82_c00106{left:598.533333pt;}
.xc2_c00106{left:600.933333pt;}
.x69_c00106{left:602.000000pt;}
.x8e_c00106{left:602.933333pt;}
.x1b_c00106{left:604.800000pt;}
.x110_c00106{left:606.400000pt;}
.x4c_c00106{left:608.933333pt;}
.xda_c00106{left:610.133333pt;}
.x116_c00106{left:612.000000pt;}
.xd0_c00106{left:614.800000pt;}
.xaf_c00106{left:615.733333pt;}
.x5a_c00106{left:619.466667pt;}
.xf2_c00106{left:624.933333pt;}
.x27_c00106{left:626.533333pt;}
.xe3_c00106{left:627.466667pt;}
.xdb_c00106{left:629.066667pt;}
.x1c_c00106{left:630.400000pt;}
.x77_c00106{left:632.933333pt;}
.xea_c00106{left:635.733333pt;}
.x5b_c00106{left:638.933333pt;}
.x3a_c00106{left:640.533333pt;}
.x4d_c00106{left:641.600000pt;}
.xc3_c00106{left:644.133333pt;}
.x83_c00106{left:646.933333pt;}
.x28_c00106{left:648.666667pt;}
.x6a_c00106{left:651.866667pt;}
.x78_c00106{left:654.400000pt;}
.x8f_c00106{left:655.733333pt;}
.x100_c00106{left:657.600000pt;}
.xfa_c00106{left:658.800000pt;}
.x3b_c00106{left:660.400000pt;}
.xa4_c00106{left:663.066667pt;}
.xc4_c00106{left:664.000000pt;}
.xd1_c00106{left:666.000000pt;}
.x6b_c00106{left:669.466667pt;}
.xb0_c00106{left:670.800000pt;}
.x4e_c00106{left:672.266667pt;}
.x99_c00106{left:673.333333pt;}
.xeb_c00106{left:675.066667pt;}
.x79_c00106{left:677.466667pt;}
.x111_c00106{left:679.066667pt;}
.xb8_c00106{left:682.533333pt;}
.x29_c00106{left:684.533333pt;}
.xec_c00106{left:687.200000pt;}
.xc5_c00106{left:688.933333pt;}
.x4f_c00106{left:691.466667pt;}
.x1d_c00106{left:698.533333pt;}
.x5c_c00106{left:699.466667pt;}
.xb9_c00106{left:701.733333pt;}
.x9a_c00106{left:703.733333pt;}
.xf3_c00106{left:707.866667pt;}
.xdc_c00106{left:709.333333pt;}
.x3c_c00106{left:710.933333pt;}
}





/* 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_c00107 {
    display:none;
  }
  .loading-indicator_c00107.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00107 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_c00107 { 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_c00107" -> "#page-container .classname_c00107")
 */
.pf_c00107 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00107 { /* 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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00107 { /* 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_c00107 { /* 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_c00107 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00107 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00107 {overflow:visible;}
  }
}
.c_c00107 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00107 { /* 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_c00107:after { /* webkit #35443 */
  content: '';
}
.t_c00107:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00107 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 */
}
.__c00107 { /* 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_c00107 { /* info for Javascript */
  display:none;
}
.l_c00107 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00107 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00107 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00107: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_c00107 {
    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_c00107.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00107.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_c00107 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00107{font-family:sans-serif;visibility:hidden;}
.sc__c00107{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
}
.y0_c00107{bottom:0.000000px;}
.h1_c00107{height:1167.750000px;}
.h0_c00107{height:1167.839997px;}
.w1_c00107{width:920.250000px;}
.w0_c00107{width:920.519990px;}
.x0_c00107{left:0.000000px;}
@media print{
.y0_c00107{bottom:0.000000pt;}
.h1_c00107{height:1038.000000pt;}
.h0_c00107{height:1038.079997pt;}
.w1_c00107{width:818.000000pt;}
.w0_c00107{width:818.239991pt;}
.x0_c00107{left:0.000000pt;}
}





/* 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_c00108 {
    display:none;
  }
  .loading-indicator_c00108.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00108 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_c00108 { 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_c00108" -> "#page-container .classname_c00108")
 */
.pf_c00108 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00108 { /* 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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00108 { /* 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_c00108 { /* 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_c00108 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00108 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00108 {overflow:visible;}
  }
}
.c_c00108 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00108 { /* 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_c00108:after { /* webkit #35443 */
  content: '';
}
.t_c00108:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00108 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 */
}
.__c00108 { /* 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_c00108 { /* info for Javascript */
  display:none;
}
.l_c00108 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00108 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00108 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00108: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_c00108 {
    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_c00108.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00108.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_c00108 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00108{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00108;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.000000;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;}
.m1d_c00108{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00108{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00108{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m10_c00108{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m18_c00108{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m24_c00108{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m21_c00108{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00108{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00108{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m22_c00108{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m20_c00108{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m25_c00108{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2_c00108{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.md_c00108{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6_c00108{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4_c00108{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1_c00108{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m0_c00108{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00108{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00108{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);}
.m29_c00108{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00108{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00108{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mc_c00108{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00108{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m7_c00108{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m26_c00108{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m27_c00108{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m28_c00108{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00108{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m16_c00108{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m12_c00108{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m5_c00108{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m11_c00108{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00108{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m14_c00108{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m23_c00108{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00108{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m19_c00108{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.me_c00108{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_c00108{transform:matrix(0.485500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485500,0.000000,0.000000,0.250000,0,0);}
.m9_c00108{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.ma_c00108{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{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__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00108{word-spacing:0.000000px;}
.ws3_c00108{word-spacing:114.620690px;}
.ws0_c00108{word-spacing:138.324511px;}
.ws1_c00108{word-spacing:1827.500000px;}
.ws2_c00108{word-spacing:1902.500000px;}
._0_c00108{width:1982.500000px;}
.fc0_c00108{color:transparent;}
.fs7_c00108{font-size:24.000000px;}
.fs8_c00108{font-size:30.000000px;}
.fs1_c00108{font-size:36.000000px;}
.fs0_c00108{font-size:42.000000px;}
.fs5_c00108{font-size:48.000000px;}
.fs3_c00108{font-size:54.000000px;}
.fs6_c00108{font-size:60.000000px;}
.fs4_c00108{font-size:66.000000px;}
.fs2_c00108{font-size:96.000000px;}
.y0_c00108{bottom:0.000000px;}
.yc_c00108{bottom:21.300000px;}
.y9_c00108{bottom:22.650000px;}
.y8_c00108{bottom:34.950000px;}
.y7_c00108{bottom:60.150000px;}
.yb_c00108{bottom:83.100000px;}
.y6_c00108{bottom:84.600000px;}
.ya_c00108{bottom:101.550000px;}
.y5_c00108{bottom:131.400000px;}
.y4_c00108{bottom:161.250000px;}
.y3_c00108{bottom:191.550000px;}
.y2_c00108{bottom:1100.850000px;}
.y1_c00108{bottom:1102.350000px;}
.h9_c00108{height:24.000000px;}
.ha_c00108{height:30.000000px;}
.h3_c00108{height:36.000000px;}
.h2_c00108{height:42.000000px;}
.h7_c00108{height:48.000000px;}
.h5_c00108{height:54.000000px;}
.h8_c00108{height:60.000000px;}
.h6_c00108{height:66.000000px;}
.h4_c00108{height:96.000000px;}
.h1_c00108{height:1167.750000px;}
.h0_c00108{height:1167.839997px;}
.w1_c00108{width:920.250000px;}
.w0_c00108{width:920.519990px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:92.100000px;}
.x2_c00108{left:141.750000px;}
.x1d_c00108{left:147.300000px;}
.x13_c00108{left:150.900000px;}
.x3_c00108{left:187.500000px;}
.x10_c00108{left:208.800000px;}
.x14_c00108{left:220.050000px;}
.x20_c00108{left:235.800000px;}
.x17_c00108{left:237.300000px;}
.x1b_c00108{left:251.700000px;}
.x18_c00108{left:252.750000px;}
.x15_c00108{left:256.050000px;}
.x4_c00108{left:284.100000px;}
.x1e_c00108{left:289.800000px;}
.x11_c00108{left:296.700000px;}
.x19_c00108{left:302.100000px;}
.x1c_c00108{left:303.150000px;}
.x12_c00108{left:328.800000px;}
.x5_c00108{left:332.400000px;}
.x1f_c00108{left:337.650000px;}
.x1a_c00108{left:340.950000px;}
.x16_c00108{left:364.800000px;}
.x6_c00108{left:379.950000px;}
.x7_c00108{left:426.000000px;}
.x21_c00108{left:427.650000px;}
.x8_c00108{left:474.300000px;}
.x9_c00108{left:520.350000px;}
.x26_c00108{left:522.000000px;}
.xa_c00108{left:568.200000px;}
.xb_c00108{left:614.700000px;}
.xc_c00108{left:662.550000px;}
.x24_c00108{left:666.000000px;}
.x25_c00108{left:672.150000px;}
.xd_c00108{left:709.050000px;}
.x27_c00108{left:710.250000px;}
.x22_c00108{left:750.300000px;}
.x28_c00108{left:757.350000px;}
.x23_c00108{left:773.700000px;}
.x29_c00108{left:803.850000px;}
.xe_c00108{left:806.400000px;}
.xf_c00108{left:853.950000px;}
.x2a_c00108{left:855.000000px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws4_c00108{word-spacing:0.000000pt;}
.ws3_c00108{word-spacing:101.885057pt;}
.ws0_c00108{word-spacing:122.955121pt;}
.ws1_c00108{word-spacing:1624.444444pt;}
.ws2_c00108{word-spacing:1691.111111pt;}
._0_c00108{width:1762.222222pt;}
.fs7_c00108{font-size:21.333333pt;}
.fs8_c00108{font-size:26.666667pt;}
.fs1_c00108{font-size:32.000000pt;}
.fs0_c00108{font-size:37.333333pt;}
.fs5_c00108{font-size:42.666667pt;}
.fs3_c00108{font-size:48.000000pt;}
.fs6_c00108{font-size:53.333333pt;}
.fs4_c00108{font-size:58.666667pt;}
.fs2_c00108{font-size:85.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.yc_c00108{bottom:18.933333pt;}
.y9_c00108{bottom:20.133333pt;}
.y8_c00108{bottom:31.066667pt;}
.y7_c00108{bottom:53.466667pt;}
.yb_c00108{bottom:73.866667pt;}
.y6_c00108{bottom:75.200000pt;}
.ya_c00108{bottom:90.266667pt;}
.y5_c00108{bottom:116.800000pt;}
.y4_c00108{bottom:143.333333pt;}
.y3_c00108{bottom:170.266667pt;}
.y2_c00108{bottom:978.533333pt;}
.y1_c00108{bottom:979.866667pt;}
.h9_c00108{height:21.333333pt;}
.ha_c00108{height:26.666667pt;}
.h3_c00108{height:32.000000pt;}
.h2_c00108{height:37.333333pt;}
.h7_c00108{height:42.666667pt;}
.h5_c00108{height:48.000000pt;}
.h8_c00108{height:53.333333pt;}
.h6_c00108{height:58.666667pt;}
.h4_c00108{height:85.333333pt;}
.h1_c00108{height:1038.000000pt;}
.h0_c00108{height:1038.079997pt;}
.w1_c00108{width:818.000000pt;}
.w0_c00108{width:818.239991pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:81.866667pt;}
.x2_c00108{left:126.000000pt;}
.x1d_c00108{left:130.933333pt;}
.x13_c00108{left:134.133333pt;}
.x3_c00108{left:166.666667pt;}
.x10_c00108{left:185.600000pt;}
.x14_c00108{left:195.600000pt;}
.x20_c00108{left:209.600000pt;}
.x17_c00108{left:210.933333pt;}
.x1b_c00108{left:223.733333pt;}
.x18_c00108{left:224.666667pt;}
.x15_c00108{left:227.600000pt;}
.x4_c00108{left:252.533333pt;}
.x1e_c00108{left:257.600000pt;}
.x11_c00108{left:263.733333pt;}
.x19_c00108{left:268.533333pt;}
.x1c_c00108{left:269.466667pt;}
.x12_c00108{left:292.266667pt;}
.x5_c00108{left:295.466667pt;}
.x1f_c00108{left:300.133333pt;}
.x1a_c00108{left:303.066667pt;}
.x16_c00108{left:324.266667pt;}
.x6_c00108{left:337.733333pt;}
.x7_c00108{left:378.666667pt;}
.x21_c00108{left:380.133333pt;}
.x8_c00108{left:421.600000pt;}
.x9_c00108{left:462.533333pt;}
.x26_c00108{left:464.000000pt;}
.xa_c00108{left:505.066667pt;}
.xb_c00108{left:546.400000pt;}
.xc_c00108{left:588.933333pt;}
.x24_c00108{left:592.000000pt;}
.x25_c00108{left:597.466667pt;}
.xd_c00108{left:630.266667pt;}
.x27_c00108{left:631.333333pt;}
.x22_c00108{left:666.933333pt;}
.x28_c00108{left:673.200000pt;}
.x23_c00108{left:687.733333pt;}
.x29_c00108{left:714.533333pt;}
.xe_c00108{left:716.800000pt;}
.xf_c00108{left:759.066667pt;}
.x2a_c00108{left:760.000000pt;}
}





/* 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_c00109 {
    display:none;
  }
  .loading-indicator_c00109.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00109 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_c00109 { 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_c00109" -> "#page-container .classname_c00109")
 */
.pf_c00109 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00109 { /* 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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00109 { /* 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_c00109 { /* 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_c00109 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00109 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00109 {overflow:visible;}
  }
}
.c_c00109 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00109 { /* 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_c00109:after { /* webkit #35443 */
  content: '';
}
.t_c00109:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00109 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 */
}
.__c00109 { /* 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_c00109 { /* info for Javascript */
  display:none;
}
.l_c00109 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00109 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00109 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00109: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_c00109 {
    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_c00109.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00109.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_c00109 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00109{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00109;src:url('chunks/assets/font_8d220fc6cb305cca524a3af1.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.000000;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;}
.m13_c00109{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m10_c00109{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.md_c00109{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m7_c00109{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00109{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00109{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11_c00109{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf_c00109{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00109{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00109{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00109{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00109{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma_c00109{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c00109{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c00109{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.v0_c00109{vertical-align:0.000000px;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{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__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00109{word-spacing:0.000000px;}
.ws0_c00109{word-spacing:102.000000px;}
.ws2_c00109{word-spacing:106.759131px;}
.ws1_c00109{word-spacing:113.586207px;}
.fc0_c00109{color:transparent;}
.fs5_c00109{font-size:30.000000px;}
.fs0_c00109{font-size:36.000000px;}
.fs3_c00109{font-size:42.000000px;}
.fs2_c00109{font-size:48.000000px;}
.fs4_c00109{font-size:54.000000px;}
.fs1_c00109{font-size:60.000000px;}
.y0_c00109{bottom:0.000000px;}
.y8_c00109{bottom:3.300000px;}
.y7_c00109{bottom:18.300000px;}
.y6_c00109{bottom:19.050000px;}
.y5_c00109{bottom:82.500000px;}
.y3_c00109{bottom:125.250000px;}
.y2_c00109{bottom:125.700000px;}
.y4_c00109{bottom:126.000000px;}
.y1_c00109{bottom:1097.700000px;}
.h7_c00109{height:30.000000px;}
.h2_c00109{height:36.000000px;}
.h5_c00109{height:42.000000px;}
.h4_c00109{height:48.000000px;}
.h6_c00109{height:54.000000px;}
.h3_c00109{height:60.000000px;}
.h1_c00109{height:1167.750000px;}
.h0_c00109{height:1167.839997px;}
.w1_c00109{width:920.250000px;}
.w0_c00109{width:920.519990px;}
.x0_c00109{left:0.000000px;}
.x15_c00109{left:102.300000px;}
.xf_c00109{left:125.700000px;}
.x16_c00109{left:147.300000px;}
.x10_c00109{left:168.150000px;}
.x1_c00109{left:195.450000px;}
.x11_c00109{left:221.400000px;}
.x17_c00109{left:241.950000px;}
.x2_c00109{left:243.000000px;}
.x12_c00109{left:267.900000px;}
.x3_c00109{left:290.550000px;}
.x18_c00109{left:336.300000px;}
.x4_c00109{left:338.100000px;}
.x5_c00109{left:382.800000px;}
.x13_c00109{left:403.950000px;}
.x6_c00109{left:431.100000px;}
.x7_c00109{left:479.400000px;}
.x8_c00109{left:528.000000px;}
.x9_c00109{left:574.800000px;}
.x19_c00109{left:576.300000px;}
.xa_c00109{left:622.650000px;}
.xb_c00109{left:670.950000px;}
.xc_c00109{left:716.250000px;}
.xd_c00109{left:764.100000px;}
.x1a_c00109{left:779.100000px;}
.xe_c00109{left:810.900000px;}
.x1b_c00109{left:823.050000px;}
.x1c_c00109{left:826.650000px;}
.x14_c00109{left:861.900000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws3_c00109{word-spacing:0.000000pt;}
.ws0_c00109{word-spacing:90.666667pt;}
.ws2_c00109{word-spacing:94.897006pt;}
.ws1_c00109{word-spacing:100.965517pt;}
.fs5_c00109{font-size:26.666667pt;}
.fs0_c00109{font-size:32.000000pt;}
.fs3_c00109{font-size:37.333333pt;}
.fs2_c00109{font-size:42.666667pt;}
.fs4_c00109{font-size:48.000000pt;}
.fs1_c00109{font-size:53.333333pt;}
.y0_c00109{bottom:0.000000pt;}
.y8_c00109{bottom:2.933333pt;}
.y7_c00109{bottom:16.266667pt;}
.y6_c00109{bottom:16.933333pt;}
.y5_c00109{bottom:73.333333pt;}
.y3_c00109{bottom:111.333333pt;}
.y2_c00109{bottom:111.733333pt;}
.y4_c00109{bottom:112.000000pt;}
.y1_c00109{bottom:975.733333pt;}
.h7_c00109{height:26.666667pt;}
.h2_c00109{height:32.000000pt;}
.h5_c00109{height:37.333333pt;}
.h4_c00109{height:42.666667pt;}
.h6_c00109{height:48.000000pt;}
.h3_c00109{height:53.333333pt;}
.h1_c00109{height:1038.000000pt;}
.h0_c00109{height:1038.079997pt;}
.w1_c00109{width:818.000000pt;}
.w0_c00109{width:818.239991pt;}
.x0_c00109{left:0.000000pt;}
.x15_c00109{left:90.933333pt;}
.xf_c00109{left:111.733333pt;}
.x16_c00109{left:130.933333pt;}
.x10_c00109{left:149.466667pt;}
.x1_c00109{left:173.733333pt;}
.x11_c00109{left:196.800000pt;}
.x17_c00109{left:215.066667pt;}
.x2_c00109{left:216.000000pt;}
.x12_c00109{left:238.133333pt;}
.x3_c00109{left:258.266667pt;}
.x18_c00109{left:298.933333pt;}
.x4_c00109{left:300.533333pt;}
.x5_c00109{left:340.266667pt;}
.x13_c00109{left:359.066667pt;}
.x6_c00109{left:383.200000pt;}
.x7_c00109{left:426.133333pt;}
.x8_c00109{left:469.333333pt;}
.x9_c00109{left:510.933333pt;}
.x19_c00109{left:512.266667pt;}
.xa_c00109{left:553.466667pt;}
.xb_c00109{left:596.400000pt;}
.xc_c00109{left:636.666667pt;}
.xd_c00109{left:679.200000pt;}
.x1a_c00109{left:692.533333pt;}
.xe_c00109{left:720.800000pt;}
.x1b_c00109{left:731.600000pt;}
.x1c_c00109{left:734.800000pt;}
.x14_c00109{left:766.133333pt;}
}





/* 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_c00110 {
    display:none;
  }
  .loading-indicator_c00110.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00110 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_c00110 { 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_c00110" -> "#page-container .classname_c00110")
 */
.pf_c00110 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00110 { /* 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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00110 { /* 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_c00110 { /* 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_c00110 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00110 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00110 {overflow:visible;}
  }
}
.c_c00110 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00110 { /* 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_c00110:after { /* webkit #35443 */
  content: '';
}
.t_c00110:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00110 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 */
}
.__c00110 { /* 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_c00110 { /* info for Javascript */
  display:none;
}
.l_c00110 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00110 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00110 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00110: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_c00110 {
    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_c00110.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00110.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_c00110 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00110{font-family:sans-serif;visibility:hidden;}
.sc__c00110{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
}
.y0_c00110{bottom:0.000000px;}
.h1_c00110{height:1167.750000px;}
.h0_c00110{height:1167.839997px;}
.w1_c00110{width:920.250000px;}
.w0_c00110{width:920.519990px;}
.x0_c00110{left:0.000000px;}
@media print{
.y0_c00110{bottom:0.000000pt;}
.h1_c00110{height:1038.000000pt;}
.h0_c00110{height:1038.079997pt;}
.w1_c00110{width:818.000000pt;}
.w0_c00110{width:818.239991pt;}
.x0_c00110{left:0.000000pt;}
}





/* 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_c00111 {
    display:none;
  }
  .loading-indicator_c00111.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00111 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_c00111 { 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_c00111" -> "#page-container .classname_c00111")
 */
.pf_c00111 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00111 { /* 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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00111 { /* 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_c00111 { /* 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_c00111 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00111 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00111 {overflow:visible;}
  }
}
.c_c00111 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00111 { /* 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_c00111:after { /* webkit #35443 */
  content: '';
}
.t_c00111:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00111 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 */
}
.__c00111 { /* 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_c00111 { /* info for Javascript */
  display:none;
}
.l_c00111 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00111 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00111 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00111: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_c00111 {
    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_c00111.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00111.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_c00111 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00111{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00111;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.000000;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;}
.m80_c00111{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m21_c00111{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mba_c00111{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00111{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00111{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00111{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00111{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00111{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00111{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.mca_c00111{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00111{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00111{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00111{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00111{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00111{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00111{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m71_c00111{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maa_c00111{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mad_c00111{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00111{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00111{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00111{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00111{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00111{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m74_c00111{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00111{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00111{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00111{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00111{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m34_c00111{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00111{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m95_c00111{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m96_c00111{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00111{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00111{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00111{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00111{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00111{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00111{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00111{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00111{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00111{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00111{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m72_c00111{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00111{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00111{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m61_c00111{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8_c00111{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00111{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m97_c00111{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00111{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00111{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mab_c00111{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m38_c00111{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m85_c00111{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00111{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m62_c00111{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m47_c00111{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mae_c00111{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.maf_c00111{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m67_c00111{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m78_c00111{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m49_c00111{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m94_c00111{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00111{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m23_c00111{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00111{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m57_c00111{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m83_c00111{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00111{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00111{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00111{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00111{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00111{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m65_c00111{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00111{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m53_c00111{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m31_c00111{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mf_c00111{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00111{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00111{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00111{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00111{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mc_c00111{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m48_c00111{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00111{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00111{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m75_c00111{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m27_c00111{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00111{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m35_c00111{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00111{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00111{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m43_c00111{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m26_c00111{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m40_c00111{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m60_c00111{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00111{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00111{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m86_c00111{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00111{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00111{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m92_c00111{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m93_c00111{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m25_c00111{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00111{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00111{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00111{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m54_c00111{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m87_c00111{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00111{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00111{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m32_c00111{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00111{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m73_c00111{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m52_c00111{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4_c00111{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00111{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m50_c00111{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00111{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00111{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma_c00111{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17_c00111{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00111{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m28_c00111{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m82_c00111{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m89_c00111{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00111{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00111{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m45_c00111{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m24_c00111{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m37_c00111{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m56_c00111{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00111{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00111{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00111{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m19_c00111{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m42_c00111{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m58_c00111{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5_c00111{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00111{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00111{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00111{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mb_c00111{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00111{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00111{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.md_c00111{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00111{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00111{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m29_c00111{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m76_c00111{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00111{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c00111{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00111{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m39_c00111{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00111{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m79_c00111{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m10_c00111{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00111{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00111{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00111{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m41_c00111{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m66_c00111{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m12_c00111{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m55_c00111{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m70_c00111{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00111{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00111{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00111{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00111{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00111{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m22_c00111{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m14_c00111{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m59_c00111{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m3_c00111{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m77_c00111{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00111{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00111{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m9_c00111{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m98_c00111{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m15_c00111{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00111{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m36_c00111{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m20_c00111{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00111{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m64_c00111{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00111{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m2_c00111{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00111{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m16_c00111{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00111{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1_c00111{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m91_c00111{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00111{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.me_c00111{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00111{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m30_c00111{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00111{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m69_c00111{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.m51_c00111{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00111{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m99_c00111{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m81_c00111{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m84_c00111{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00111{vertical-align:0.000000px;}
.ls0_c00111{letter-spacing:0.000000px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{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__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00111{word-spacing:-9.000000px;}
.ws2_c00111{word-spacing:-5.590361px;}
.ws9_c00111{word-spacing:-3.750000px;}
.wsa_c00111{word-spacing:0.000000px;}
.ws4_c00111{word-spacing:0.433735px;}
.ws5_c00111{word-spacing:1.500000px;}
.ws0_c00111{word-spacing:6.000000px;}
.ws3_c00111{word-spacing:9.630252px;}
.ws6_c00111{word-spacing:14.544517px;}
.ws1_c00111{word-spacing:30.666667px;}
.ws7_c00111{word-spacing:44.116466px;}
.fc0_c00111{color:transparent;}
.fs1_c00111{font-size:48.000000px;}
.fs0_c00111{font-size:54.000000px;}
.y0_c00111{bottom:0.000000px;}
.y2f_c00111{bottom:124.500000px;}
.y2e_c00111{bottom:143.250000px;}
.y2d_c00111{bottom:159.450000px;}
.y2c_c00111{bottom:174.900000px;}
.y2b_c00111{bottom:190.050000px;}
.y2a_c00111{bottom:206.250000px;}
.y29_c00111{bottom:221.700000px;}
.y28_c00111{bottom:237.600000px;}
.y27_c00111{bottom:253.050000px;}
.y26_c00111{bottom:268.500000px;}
.y25_c00111{bottom:284.400000px;}
.y24_c00111{bottom:325.050000px;}
.y23_c00111{bottom:345.150000px;}
.y22_c00111{bottom:364.950000px;}
.y21_c00111{bottom:385.050000px;}
.y20_c00111{bottom:405.150000px;}
.y1f_c00111{bottom:424.950000px;}
.y1e_c00111{bottom:444.750000px;}
.y1d_c00111{bottom:464.850000px;}
.y1c_c00111{bottom:484.650000px;}
.y1b_c00111{bottom:505.200000px;}
.y1a_c00111{bottom:525.000000px;}
.y19_c00111{bottom:544.800000px;}
.y18_c00111{bottom:564.900000px;}
.y17_c00111{bottom:585.000000px;}
.y16_c00111{bottom:605.100000px;}
.y15_c00111{bottom:624.900000px;}
.y14_c00111{bottom:644.700000px;}
.y13_c00111{bottom:664.200000px;}
.y12_c00111{bottom:684.300000px;}
.y11_c00111{bottom:704.100000px;}
.y10_c00111{bottom:724.650000px;}
.yf_c00111{bottom:744.450000px;}
.ye_c00111{bottom:764.250000px;}
.yd_c00111{bottom:784.350000px;}
.yc_c00111{bottom:804.900000px;}
.yb_c00111{bottom:825.000000px;}
.ya_c00111{bottom:844.800000px;}
.y9_c00111{bottom:864.600000px;}
.y8_c00111{bottom:884.700000px;}
.y7_c00111{bottom:904.800000px;}
.y6_c00111{bottom:924.600000px;}
.y5_c00111{bottom:944.700000px;}
.y4_c00111{bottom:964.500000px;}
.y3_c00111{bottom:984.600000px;}
.y2_c00111{bottom:1004.400000px;}
.y1_c00111{bottom:1042.950000px;}
.h3_c00111{height:48.000000px;}
.h2_c00111{height:54.000000px;}
.h1_c00111{height:1167.750000px;}
.h0_c00111{height:1167.839997px;}
.w1_c00111{width:920.250000px;}
.w0_c00111{width:920.519990px;}
.x0_c00111{left:0.000000px;}
.x14_c00111{left:97.200000px;}
.x92_c00111{left:98.850000px;}
.x10b_c00111{left:99.900000px;}
.x7b_c00111{left:116.400000px;}
.x2f_c00111{left:118.050000px;}
.xdf_c00111{left:124.950000px;}
.xb4_c00111{left:127.650000px;}
.x5_c00111{left:128.850000px;}
.x3c_c00111{left:130.650000px;}
.x11e_c00111{left:131.700000px;}
.x9c_c00111{left:132.750000px;}
.xe8_c00111{left:135.450000px;}
.x15_c00111{left:137.850000px;}
.xbd_c00111{left:139.650000px;}
.x21_c00111{left:141.300000px;}
.x30_c00111{left:143.250000px;}
.x7c_c00111{left:145.500000px;}
.x6f_c00111{left:146.550000px;}
.x134_c00111{left:149.850000px;}
.xd4_c00111{left:153.300000px;}
.x58_c00111{left:156.600000px;}
.x3d_c00111{left:159.750000px;}
.x124_c00111{left:161.550000px;}
.x4a_c00111{left:163.050000px;}
.x93_c00111{left:164.400000px;}
.x9d_c00111{left:166.200000px;}
.xe0_c00111{left:167.400000px;}
.xfd_c00111{left:169.200000px;}
.x132_c00111{left:171.000000px;}
.x84_c00111{left:172.350000px;}
.xad_c00111{left:173.850000px;}
.xee_c00111{left:175.800000px;}
.x70_c00111{left:176.850000px;}
.x10c_c00111{left:181.650000px;}
.x6_c00111{left:182.850000px;}
.xa3_c00111{left:184.050000px;}
.xcb_c00111{left:185.550000px;}
.x116_c00111{left:186.900000px;}
.xfe_c00111{left:189.000000px;}
.x59_c00111{left:190.800000px;}
.x9e_c00111{left:193.200000px;}
.x22_c00111{left:195.300000px;}
.x63_c00111{left:196.350000px;}
.x10d_c00111{left:198.150000px;}
.xc4_c00111{left:202.800000px;}
.x8c_c00111{left:204.750000px;}
.xbe_c00111{left:206.700000px;}
.x7d_c00111{left:207.750000px;}
.xae_c00111{left:209.550000px;}
.x7_c00111{left:210.900000px;}
.xa4_c00111{left:212.850000px;}
.x12e_c00111{left:216.750000px;}
.xd0_c00111{left:217.800000px;}
.x4b_c00111{left:219.600000px;}
.xd5_c00111{left:221.700000px;}
.x31_c00111{left:223.050000px;}
.x23_c00111{left:224.850000px;}
.x8d_c00111{left:227.850000px;}
.x64_c00111{left:230.250000px;}
.x16_c00111{left:232.200000px;}
.xaf_c00111{left:234.750000px;}
.x129_c00111{left:236.850000px;}
.x85_c00111{left:239.250000px;}
.x94_c00111{left:241.200000px;}
.x125_c00111{left:245.850000px;}
.x8_c00111{left:247.200000px;}
.xa5_c00111{left:249.900000px;}
.x4c_c00111{left:252.300000px;}
.x5a_c00111{left:253.500000px;}
.x32_c00111{left:254.700000px;}
.x3e_c00111{left:256.200000px;}
.x65_c00111{left:258.000000px;}
.xe9_c00111{left:259.650000px;}
.xe1_c00111{left:261.750000px;}
.x71_c00111{left:264.750000px;}
.x9_c00111{left:266.700000px;}
.xd6_c00111{left:268.050000px;}
.x13b_c00111{left:269.250000px;}
.x11f_c00111{left:273.600000px;}
.x3f_c00111{left:276.300000px;}
.xef_c00111{left:279.150000px;}
.xb0_c00111{left:284.400000px;}
.x72_c00111{left:286.350000px;}
.xea_c00111{left:288.150000px;}
.x120_c00111{left:290.100000px;}
.xd1_c00111{left:291.150000px;}
.x17_c00111{left:292.650000px;}
.xff_c00111{left:294.150000px;}
.xe2_c00111{left:295.650000px;}
.x4d_c00111{left:297.300000px;}
.x11c_c00111{left:299.400000px;}
.x66_c00111{left:300.900000px;}
.x7e_c00111{left:302.100000px;}
.xd7_c00111{left:303.750000px;}
.x118_c00111{left:305.850000px;}
.xf3_c00111{left:307.350000px;}
.x86_c00111{left:308.400000px;}
.x24_c00111{left:310.500000px;}
.xf0_c00111{left:311.850000px;}
.x73_c00111{left:313.350000px;}
.x121_c00111{left:315.600000px;}
.x95_c00111{left:317.550000px;}
.xc5_c00111{left:319.350000px;}
.x67_c00111{left:320.400000px;}
.x10e_c00111{left:323.100000px;}
.x33_c00111{left:324.150000px;}
.x18_c00111{left:325.800000px;}
.xf1_c00111{left:328.350000px;}
.x105_c00111{left:332.400000px;}
.x5b_c00111{left:334.200000px;}
.xa_c00111{left:335.400000px;}
.xb5_c00111{left:337.050000px;}
.xc6_c00111{left:342.750000px;}
.x138_c00111{left:344.700000px;}
.x87_c00111{left:346.200000px;}
.x8e_c00111{left:347.250000px;}
.x40_c00111{left:348.300000px;}
.x1_c00111{left:350.700000px;}
.x19_c00111{left:352.800000px;}
.x96_c00111{left:354.600000px;}
.x34_c00111{left:356.250000px;}
.x74_c00111{left:359.100000px;}
.xf4_c00111{left:361.650000px;}
.x130_c00111{left:363.150000px;}
.x4e_c00111{left:364.950000px;}
.x119_c00111{left:366.300000px;}
.x10f_c00111{left:368.400000px;}
.xa6_c00111{left:369.900000px;}
.x133_c00111{left:371.250000px;}
.x5c_c00111{left:373.050000px;}
.x9f_c00111{left:375.300000px;}
.xbf_c00111{left:378.300000px;}
.xe3_c00111{left:381.300000px;}
.x100_c00111{left:383.550000px;}
.x25_c00111{left:384.900000px;}
.xb_c00111{left:386.850000px;}
.x75_c00111{left:388.950000px;}
.xcc_c00111{left:390.000000px;}
.x8f_c00111{left:391.950000px;}
.xf5_c00111{left:393.000000px;}
.x88_c00111{left:395.100000px;}
.x1a_c00111{left:396.750000px;}
.x4f_c00111{left:398.850000px;}
.xa7_c00111{left:400.200000px;}
.x68_c00111{left:403.200000px;}
.x12a_c00111{left:405.600000px;}
.x122_c00111{left:409.950000px;}
.xd2_c00111{left:411.450000px;}
.x139_c00111{left:412.650000px;}
.x5d_c00111{left:414.450000px;}
.xc_c00111{left:417.750000px;}
.xe4_c00111{left:419.400000px;}
.xa0_c00111{left:421.500000px;}
.x50_c00111{left:423.750000px;}
.x101_c00111{left:427.050000px;}
.xb6_c00111{left:428.550000px;}
.xcd_c00111{left:432.150000px;}
.x41_c00111{left:434.700000px;}
.x102_c00111{left:438.600000px;}
.x7f_c00111{left:440.850000px;}
.x110_c00111{left:442.650000px;}
.x97_c00111{left:443.850000px;}
.xeb_c00111{left:445.050000px;}
.xc0_c00111{left:446.400000px;}
.x76_c00111{left:447.600000px;}
.xa8_c00111{left:449.850000px;}
.x2_c00111{left:453.000000px;}
.x5e_c00111{left:454.050000px;}
.x11a_c00111{left:456.300000px;}
.x42_c00111{left:457.350000px;}
.x111_c00111{left:460.950000px;}
.xf6_c00111{left:462.450000px;}
.xc7_c00111{left:464.100000px;}
.x35_c00111{left:465.750000px;}
.x1b_c00111{left:467.700000px;}
.x98_c00111{left:469.050000px;}
.xd_c00111{left:471.000000px;}
.xd8_c00111{left:472.650000px;}
.x103_c00111{left:474.600000px;}
.x3_c00111{left:476.100000px;}
.xd9_c00111{left:477.750000px;}
.x26_c00111{left:479.250000px;}
.x89_c00111{left:481.500000px;}
.xb7_c00111{left:485.100000px;}
.x51_c00111{left:490.050000px;}
.x12f_c00111{left:493.050000px;}
.x43_c00111{left:494.850000px;}
.x12b_c00111{left:495.900000px;}
.xb1_c00111{left:498.300000px;}
.xec_c00111{left:499.350000px;}
.x112_c00111{left:501.600000px;}
.xb8_c00111{left:503.850000px;}
.x36_c00111{left:507.150000px;}
.xc1_c00111{left:509.850000px;}
.x52_c00111{left:512.700000px;}
.x135_c00111{left:514.500000px;}
.x27_c00111{left:518.100000px;}
.x80_c00111{left:519.600000px;}
.x99_c00111{left:520.650000px;}
.x77_c00111{left:522.150000px;}
.xda_c00111{left:523.500000px;}
.x37_c00111{left:524.850000px;}
.xfa_c00111{left:527.550000px;}
.xc2_c00111{left:530.400000px;}
.x44_c00111{left:531.900000px;}
.xd3_c00111{left:533.100000px;}
.x13a_c00111{left:534.300000px;}
.x1c_c00111{left:536.400000px;}
.xdb_c00111{left:538.200000px;}
.x69_c00111{left:540.300000px;}
.x8a_c00111{left:542.400000px;}
.x5f_c00111{left:545.850000px;}
.x78_c00111{left:547.350000px;}
.xe_c00111{left:550.500000px;}
.xdc_c00111{left:553.650000px;}
.x28_c00111{left:554.850000px;}
.x90_c00111{left:557.100000px;}
.xf7_c00111{left:558.900000px;}
.xfb_c00111{left:560.250000px;}
.x126_c00111{left:561.300000px;}
.x13c_c00111{left:564.150000px;}
.x53_c00111{left:565.200000px;}
.x1d_c00111{left:566.700000px;}
.x29_c00111{left:568.950000px;}
.x113_c00111{left:570.450000px;}
.x60_c00111{left:571.800000px;}
.x104_c00111{left:572.850000px;}
.x38_c00111{left:574.200000px;}
.x6a_c00111{left:575.550000px;}
.x45_c00111{left:576.900000px;}
.xb2_c00111{left:579.300000px;}
.xf2_c00111{left:582.000000px;}
.xf_c00111{left:583.200000px;}
.xdd_c00111{left:586.800000px;}
.xf8_c00111{left:588.000000px;}
.x81_c00111{left:589.050000px;}
.xa1_c00111{left:590.100000px;}
.x106_c00111{left:592.650000px;}
.x54_c00111{left:594.750000px;}
.x46_c00111{left:598.200000px;}
.xed_c00111{left:600.150000px;}
.x2a_c00111{left:601.350000px;}
.xa9_c00111{left:602.550000px;}
.x107_c00111{left:605.250000px;}
.xb3_c00111{left:606.300000px;}
.xe5_c00111{left:607.350000px;}
.xc3_c00111{left:610.650000px;}
.x61_c00111{left:616.050000px;}
.x39_c00111{left:618.450000px;}
.x131_c00111{left:619.950000px;}
.x11d_c00111{left:621.600000px;}
.xb9_c00111{left:624.450000px;}
.x114_c00111{left:625.650000px;}
.x47_c00111{left:626.700000px;}
.x9a_c00111{left:627.900000px;}
.x2b_c00111{left:630.450000px;}
.xfc_c00111{left:631.800000px;}
.x1e_c00111{left:634.800000px;}
.xaa_c00111{left:636.450000px;}
.x55_c00111{left:639.000000px;}
.x79_c00111{left:643.500000px;}
.x10_c00111{left:646.950000px;}
.xde_c00111{left:648.000000px;}
.x6b_c00111{left:649.650000px;}
.x136_c00111{left:651.600000px;}
.xe6_c00111{left:653.100000px;}
.x82_c00111{left:654.600000px;}
.x62_c00111{left:656.250000px;}
.x11b_c00111{left:657.300000px;}
.x56_c00111{left:658.500000px;}
.x108_c00111{left:662.850000px;}
.xba_c00111{left:665.100000px;}
.x1f_c00111{left:666.150000px;}
.xc8_c00111{left:668.100000px;}
.x11_c00111{left:670.050000px;}
.xce_c00111{left:673.800000px;}
.x2c_c00111{left:675.750000px;}
.x6c_c00111{left:678.750000px;}
.x8b_c00111{left:679.950000px;}
.x109_c00111{left:682.350000px;}
.xcf_c00111{left:684.900000px;}
.x12c_c00111{left:686.400000px;}
.xc9_c00111{left:687.600000px;}
.xab_c00111{left:689.400000px;}
.x9b_c00111{left:691.950000px;}
.x3a_c00111{left:693.000000px;}
.x127_c00111{left:694.500000px;}
.x12_c00111{left:696.300000px;}
.x6d_c00111{left:699.300000px;}
.x57_c00111{left:700.950000px;}
.x12d_c00111{left:704.100000px;}
.xbb_c00111{left:706.500000px;}
.x20_c00111{left:707.550000px;}
.x7a_c00111{left:709.350000px;}
.x83_c00111{left:712.200000px;}
.x2d_c00111{left:713.550000px;}
.x115_c00111{left:716.100000px;}
.xe7_c00111{left:717.150000px;}
.x137_c00111{left:718.650000px;}
.xac_c00111{left:720.000000px;}
.x13_c00111{left:721.800000px;}
.x123_c00111{left:724.200000px;}
.x48_c00111{left:726.450000px;}
.x91_c00111{left:728.100000px;}
.xa2_c00111{left:732.300000px;}
.x2e_c00111{left:735.450000px;}
.x3b_c00111{left:738.000000px;}
.x10a_c00111{left:741.000000px;}
.x117_c00111{left:742.050000px;}
.x49_c00111{left:743.400000px;}
.x6e_c00111{left:744.600000px;}
.x4_c00111{left:747.150000px;}
.x128_c00111{left:748.500000px;}
.xf9_c00111{left:750.300000px;}
.xca_c00111{left:754.200000px;}
.xbc_c00111{left:757.650000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws8_c00111{word-spacing:-8.000000pt;}
.ws2_c00111{word-spacing:-4.969210pt;}
.ws9_c00111{word-spacing:-3.333333pt;}
.wsa_c00111{word-spacing:0.000000pt;}
.ws4_c00111{word-spacing:0.385542pt;}
.ws5_c00111{word-spacing:1.333333pt;}
.ws0_c00111{word-spacing:5.333333pt;}
.ws3_c00111{word-spacing:8.560224pt;}
.ws6_c00111{word-spacing:12.928460pt;}
.ws1_c00111{word-spacing:27.259259pt;}
.ws7_c00111{word-spacing:39.214636pt;}
.fs1_c00111{font-size:42.666667pt;}
.fs0_c00111{font-size:48.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y2f_c00111{bottom:110.666667pt;}
.y2e_c00111{bottom:127.333333pt;}
.y2d_c00111{bottom:141.733333pt;}
.y2c_c00111{bottom:155.466667pt;}
.y2b_c00111{bottom:168.933333pt;}
.y2a_c00111{bottom:183.333333pt;}
.y29_c00111{bottom:197.066667pt;}
.y28_c00111{bottom:211.200000pt;}
.y27_c00111{bottom:224.933333pt;}
.y26_c00111{bottom:238.666667pt;}
.y25_c00111{bottom:252.800000pt;}
.y24_c00111{bottom:288.933333pt;}
.y23_c00111{bottom:306.800000pt;}
.y22_c00111{bottom:324.400000pt;}
.y21_c00111{bottom:342.266667pt;}
.y20_c00111{bottom:360.133333pt;}
.y1f_c00111{bottom:377.733333pt;}
.y1e_c00111{bottom:395.333333pt;}
.y1d_c00111{bottom:413.200000pt;}
.y1c_c00111{bottom:430.800000pt;}
.y1b_c00111{bottom:449.066667pt;}
.y1a_c00111{bottom:466.666667pt;}
.y19_c00111{bottom:484.266667pt;}
.y18_c00111{bottom:502.133333pt;}
.y17_c00111{bottom:520.000000pt;}
.y16_c00111{bottom:537.866667pt;}
.y15_c00111{bottom:555.466667pt;}
.y14_c00111{bottom:573.066667pt;}
.y13_c00111{bottom:590.400000pt;}
.y12_c00111{bottom:608.266667pt;}
.y11_c00111{bottom:625.866667pt;}
.y10_c00111{bottom:644.133333pt;}
.yf_c00111{bottom:661.733333pt;}
.ye_c00111{bottom:679.333333pt;}
.yd_c00111{bottom:697.200000pt;}
.yc_c00111{bottom:715.466667pt;}
.yb_c00111{bottom:733.333333pt;}
.ya_c00111{bottom:750.933333pt;}
.y9_c00111{bottom:768.533333pt;}
.y8_c00111{bottom:786.400000pt;}
.y7_c00111{bottom:804.266667pt;}
.y6_c00111{bottom:821.866667pt;}
.y5_c00111{bottom:839.733333pt;}
.y4_c00111{bottom:857.333333pt;}
.y3_c00111{bottom:875.200000pt;}
.y2_c00111{bottom:892.800000pt;}
.y1_c00111{bottom:927.066667pt;}
.h3_c00111{height:42.666667pt;}
.h2_c00111{height:48.000000pt;}
.h1_c00111{height:1038.000000pt;}
.h0_c00111{height:1038.079997pt;}
.w1_c00111{width:818.000000pt;}
.w0_c00111{width:818.239991pt;}
.x0_c00111{left:0.000000pt;}
.x14_c00111{left:86.400000pt;}
.x92_c00111{left:87.866667pt;}
.x10b_c00111{left:88.800000pt;}
.x7b_c00111{left:103.466667pt;}
.x2f_c00111{left:104.933333pt;}
.xdf_c00111{left:111.066667pt;}
.xb4_c00111{left:113.466667pt;}
.x5_c00111{left:114.533333pt;}
.x3c_c00111{left:116.133333pt;}
.x11e_c00111{left:117.066667pt;}
.x9c_c00111{left:118.000000pt;}
.xe8_c00111{left:120.400000pt;}
.x15_c00111{left:122.533333pt;}
.xbd_c00111{left:124.133333pt;}
.x21_c00111{left:125.600000pt;}
.x30_c00111{left:127.333333pt;}
.x7c_c00111{left:129.333333pt;}
.x6f_c00111{left:130.266667pt;}
.x134_c00111{left:133.200000pt;}
.xd4_c00111{left:136.266667pt;}
.x58_c00111{left:139.200000pt;}
.x3d_c00111{left:142.000000pt;}
.x124_c00111{left:143.600000pt;}
.x4a_c00111{left:144.933333pt;}
.x93_c00111{left:146.133333pt;}
.x9d_c00111{left:147.733333pt;}
.xe0_c00111{left:148.800000pt;}
.xfd_c00111{left:150.400000pt;}
.x132_c00111{left:152.000000pt;}
.x84_c00111{left:153.200000pt;}
.xad_c00111{left:154.533333pt;}
.xee_c00111{left:156.266667pt;}
.x70_c00111{left:157.200000pt;}
.x10c_c00111{left:161.466667pt;}
.x6_c00111{left:162.533333pt;}
.xa3_c00111{left:163.600000pt;}
.xcb_c00111{left:164.933333pt;}
.x116_c00111{left:166.133333pt;}
.xfe_c00111{left:168.000000pt;}
.x59_c00111{left:169.600000pt;}
.x9e_c00111{left:171.733333pt;}
.x22_c00111{left:173.600000pt;}
.x63_c00111{left:174.533333pt;}
.x10d_c00111{left:176.133333pt;}
.xc4_c00111{left:180.266667pt;}
.x8c_c00111{left:182.000000pt;}
.xbe_c00111{left:183.733333pt;}
.x7d_c00111{left:184.666667pt;}
.xae_c00111{left:186.266667pt;}
.x7_c00111{left:187.466667pt;}
.xa4_c00111{left:189.200000pt;}
.x12e_c00111{left:192.666667pt;}
.xd0_c00111{left:193.600000pt;}
.x4b_c00111{left:195.200000pt;}
.xd5_c00111{left:197.066667pt;}
.x31_c00111{left:198.266667pt;}
.x23_c00111{left:199.866667pt;}
.x8d_c00111{left:202.533333pt;}
.x64_c00111{left:204.666667pt;}
.x16_c00111{left:206.400000pt;}
.xaf_c00111{left:208.666667pt;}
.x129_c00111{left:210.533333pt;}
.x85_c00111{left:212.666667pt;}
.x94_c00111{left:214.400000pt;}
.x125_c00111{left:218.533333pt;}
.x8_c00111{left:219.733333pt;}
.xa5_c00111{left:222.133333pt;}
.x4c_c00111{left:224.266667pt;}
.x5a_c00111{left:225.333333pt;}
.x32_c00111{left:226.400000pt;}
.x3e_c00111{left:227.733333pt;}
.x65_c00111{left:229.333333pt;}
.xe9_c00111{left:230.800000pt;}
.xe1_c00111{left:232.666667pt;}
.x71_c00111{left:235.333333pt;}
.x9_c00111{left:237.066667pt;}
.xd6_c00111{left:238.266667pt;}
.x13b_c00111{left:239.333333pt;}
.x11f_c00111{left:243.200000pt;}
.x3f_c00111{left:245.600000pt;}
.xef_c00111{left:248.133333pt;}
.xb0_c00111{left:252.800000pt;}
.x72_c00111{left:254.533333pt;}
.xea_c00111{left:256.133333pt;}
.x120_c00111{left:257.866667pt;}
.xd1_c00111{left:258.800000pt;}
.x17_c00111{left:260.133333pt;}
.xff_c00111{left:261.466667pt;}
.xe2_c00111{left:262.800000pt;}
.x4d_c00111{left:264.266667pt;}
.x11c_c00111{left:266.133333pt;}
.x66_c00111{left:267.466667pt;}
.x7e_c00111{left:268.533333pt;}
.xd7_c00111{left:270.000000pt;}
.x118_c00111{left:271.866667pt;}
.xf3_c00111{left:273.200000pt;}
.x86_c00111{left:274.133333pt;}
.x24_c00111{left:276.000000pt;}
.xf0_c00111{left:277.200000pt;}
.x73_c00111{left:278.533333pt;}
.x121_c00111{left:280.533333pt;}
.x95_c00111{left:282.266667pt;}
.xc5_c00111{left:283.866667pt;}
.x67_c00111{left:284.800000pt;}
.x10e_c00111{left:287.200000pt;}
.x33_c00111{left:288.133333pt;}
.x18_c00111{left:289.600000pt;}
.xf1_c00111{left:291.866667pt;}
.x105_c00111{left:295.466667pt;}
.x5b_c00111{left:297.066667pt;}
.xa_c00111{left:298.133333pt;}
.xb5_c00111{left:299.600000pt;}
.xc6_c00111{left:304.666667pt;}
.x138_c00111{left:306.400000pt;}
.x87_c00111{left:307.733333pt;}
.x8e_c00111{left:308.666667pt;}
.x40_c00111{left:309.600000pt;}
.x1_c00111{left:311.733333pt;}
.x19_c00111{left:313.600000pt;}
.x96_c00111{left:315.200000pt;}
.x34_c00111{left:316.666667pt;}
.x74_c00111{left:319.200000pt;}
.xf4_c00111{left:321.466667pt;}
.x130_c00111{left:322.800000pt;}
.x4e_c00111{left:324.400000pt;}
.x119_c00111{left:325.600000pt;}
.x10f_c00111{left:327.466667pt;}
.xa6_c00111{left:328.800000pt;}
.x133_c00111{left:330.000000pt;}
.x5c_c00111{left:331.600000pt;}
.x9f_c00111{left:333.600000pt;}
.xbf_c00111{left:336.266667pt;}
.xe3_c00111{left:338.933333pt;}
.x100_c00111{left:340.933333pt;}
.x25_c00111{left:342.133333pt;}
.xb_c00111{left:343.866667pt;}
.x75_c00111{left:345.733333pt;}
.xcc_c00111{left:346.666667pt;}
.x8f_c00111{left:348.400000pt;}
.xf5_c00111{left:349.333333pt;}
.x88_c00111{left:351.200000pt;}
.x1a_c00111{left:352.666667pt;}
.x4f_c00111{left:354.533333pt;}
.xa7_c00111{left:355.733333pt;}
.x68_c00111{left:358.400000pt;}
.x12a_c00111{left:360.533333pt;}
.x122_c00111{left:364.400000pt;}
.xd2_c00111{left:365.733333pt;}
.x139_c00111{left:366.800000pt;}
.x5d_c00111{left:368.400000pt;}
.xc_c00111{left:371.333333pt;}
.xe4_c00111{left:372.800000pt;}
.xa0_c00111{left:374.666667pt;}
.x50_c00111{left:376.666667pt;}
.x101_c00111{left:379.600000pt;}
.xb6_c00111{left:380.933333pt;}
.xcd_c00111{left:384.133333pt;}
.x41_c00111{left:386.400000pt;}
.x102_c00111{left:389.866667pt;}
.x7f_c00111{left:391.866667pt;}
.x110_c00111{left:393.466667pt;}
.x97_c00111{left:394.533333pt;}
.xeb_c00111{left:395.600000pt;}
.xc0_c00111{left:396.800000pt;}
.x76_c00111{left:397.866667pt;}
.xa8_c00111{left:399.866667pt;}
.x2_c00111{left:402.666667pt;}
.x5e_c00111{left:403.600000pt;}
.x11a_c00111{left:405.600000pt;}
.x42_c00111{left:406.533333pt;}
.x111_c00111{left:409.733333pt;}
.xf6_c00111{left:411.066667pt;}
.xc7_c00111{left:412.533333pt;}
.x35_c00111{left:414.000000pt;}
.x1b_c00111{left:415.733333pt;}
.x98_c00111{left:416.933333pt;}
.xd_c00111{left:418.666667pt;}
.xd8_c00111{left:420.133333pt;}
.x103_c00111{left:421.866667pt;}
.x3_c00111{left:423.200000pt;}
.xd9_c00111{left:424.666667pt;}
.x26_c00111{left:426.000000pt;}
.x89_c00111{left:428.000000pt;}
.xb7_c00111{left:431.200000pt;}
.x51_c00111{left:435.600000pt;}
.x12f_c00111{left:438.266667pt;}
.x43_c00111{left:439.866667pt;}
.x12b_c00111{left:440.800000pt;}
.xb1_c00111{left:442.933333pt;}
.xec_c00111{left:443.866667pt;}
.x112_c00111{left:445.866667pt;}
.xb8_c00111{left:447.866667pt;}
.x36_c00111{left:450.800000pt;}
.xc1_c00111{left:453.200000pt;}
.x52_c00111{left:455.733333pt;}
.x135_c00111{left:457.333333pt;}
.x27_c00111{left:460.533333pt;}
.x80_c00111{left:461.866667pt;}
.x99_c00111{left:462.800000pt;}
.x77_c00111{left:464.133333pt;}
.xda_c00111{left:465.333333pt;}
.x37_c00111{left:466.533333pt;}
.xfa_c00111{left:468.933333pt;}
.xc2_c00111{left:471.466667pt;}
.x44_c00111{left:472.800000pt;}
.xd3_c00111{left:473.866667pt;}
.x13a_c00111{left:474.933333pt;}
.x1c_c00111{left:476.800000pt;}
.xdb_c00111{left:478.400000pt;}
.x69_c00111{left:480.266667pt;}
.x8a_c00111{left:482.133333pt;}
.x5f_c00111{left:485.200000pt;}
.x78_c00111{left:486.533333pt;}
.xe_c00111{left:489.333333pt;}
.xdc_c00111{left:492.133333pt;}
.x28_c00111{left:493.200000pt;}
.x90_c00111{left:495.200000pt;}
.xf7_c00111{left:496.800000pt;}
.xfb_c00111{left:498.000000pt;}
.x126_c00111{left:498.933333pt;}
.x13c_c00111{left:501.466667pt;}
.x53_c00111{left:502.400000pt;}
.x1d_c00111{left:503.733333pt;}
.x29_c00111{left:505.733333pt;}
.x113_c00111{left:507.066667pt;}
.x60_c00111{left:508.266667pt;}
.x104_c00111{left:509.200000pt;}
.x38_c00111{left:510.400000pt;}
.x6a_c00111{left:511.600000pt;}
.x45_c00111{left:512.800000pt;}
.xb2_c00111{left:514.933333pt;}
.xf2_c00111{left:517.333333pt;}
.xf_c00111{left:518.400000pt;}
.xdd_c00111{left:521.600000pt;}
.xf8_c00111{left:522.666667pt;}
.x81_c00111{left:523.600000pt;}
.xa1_c00111{left:524.533333pt;}
.x106_c00111{left:526.800000pt;}
.x54_c00111{left:528.666667pt;}
.x46_c00111{left:531.733333pt;}
.xed_c00111{left:533.466667pt;}
.x2a_c00111{left:534.533333pt;}
.xa9_c00111{left:535.600000pt;}
.x107_c00111{left:538.000000pt;}
.xb3_c00111{left:538.933333pt;}
.xe5_c00111{left:539.866667pt;}
.xc3_c00111{left:542.800000pt;}
.x61_c00111{left:547.600000pt;}
.x39_c00111{left:549.733333pt;}
.x131_c00111{left:551.066667pt;}
.x11d_c00111{left:552.533333pt;}
.xb9_c00111{left:555.066667pt;}
.x114_c00111{left:556.133333pt;}
.x47_c00111{left:557.066667pt;}
.x9a_c00111{left:558.133333pt;}
.x2b_c00111{left:560.400000pt;}
.xfc_c00111{left:561.600000pt;}
.x1e_c00111{left:564.266667pt;}
.xaa_c00111{left:565.733333pt;}
.x55_c00111{left:568.000000pt;}
.x79_c00111{left:572.000000pt;}
.x10_c00111{left:575.066667pt;}
.xde_c00111{left:576.000000pt;}
.x6b_c00111{left:577.466667pt;}
.x136_c00111{left:579.200000pt;}
.xe6_c00111{left:580.533333pt;}
.x82_c00111{left:581.866667pt;}
.x62_c00111{left:583.333333pt;}
.x11b_c00111{left:584.266667pt;}
.x56_c00111{left:585.333333pt;}
.x108_c00111{left:589.200000pt;}
.xba_c00111{left:591.200000pt;}
.x1f_c00111{left:592.133333pt;}
.xc8_c00111{left:593.866667pt;}
.x11_c00111{left:595.600000pt;}
.xce_c00111{left:598.933333pt;}
.x2c_c00111{left:600.666667pt;}
.x6c_c00111{left:603.333333pt;}
.x8b_c00111{left:604.400000pt;}
.x109_c00111{left:606.533333pt;}
.xcf_c00111{left:608.800000pt;}
.x12c_c00111{left:610.133333pt;}
.xc9_c00111{left:611.200000pt;}
.xab_c00111{left:612.800000pt;}
.x9b_c00111{left:615.066667pt;}
.x3a_c00111{left:616.000000pt;}
.x127_c00111{left:617.333333pt;}
.x12_c00111{left:618.933333pt;}
.x6d_c00111{left:621.600000pt;}
.x57_c00111{left:623.066667pt;}
.x12d_c00111{left:625.866667pt;}
.xbb_c00111{left:628.000000pt;}
.x20_c00111{left:628.933333pt;}
.x7a_c00111{left:630.533333pt;}
.x83_c00111{left:633.066667pt;}
.x2d_c00111{left:634.266667pt;}
.x115_c00111{left:636.533333pt;}
.xe7_c00111{left:637.466667pt;}
.x137_c00111{left:638.800000pt;}
.xac_c00111{left:640.000000pt;}
.x13_c00111{left:641.600000pt;}
.x123_c00111{left:643.733333pt;}
.x48_c00111{left:645.733333pt;}
.x91_c00111{left:647.200000pt;}
.xa2_c00111{left:650.933333pt;}
.x2e_c00111{left:653.733333pt;}
.x3b_c00111{left:656.000000pt;}
.x10a_c00111{left:658.666667pt;}
.x117_c00111{left:659.600000pt;}
.x49_c00111{left:660.800000pt;}
.x6e_c00111{left:661.866667pt;}
.x4_c00111{left:664.133333pt;}
.x128_c00111{left:665.333333pt;}
.xf9_c00111{left:666.933333pt;}
.xca_c00111{left:670.400000pt;}
.xbc_c00111{left:673.466667pt;}
}





/* 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_c00112 {
    display:none;
  }
  .loading-indicator_c00112.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00112 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_c00112 { 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_c00112" -> "#page-container .classname_c00112")
 */
.pf_c00112 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00112 { /* 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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00112 { /* 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_c00112 { /* 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_c00112 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00112 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00112 {overflow:visible;}
  }
}
.c_c00112 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00112 { /* 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_c00112:after { /* webkit #35443 */
  content: '';
}
.t_c00112:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00112 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 */
}
.__c00112 { /* 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_c00112 { /* info for Javascript */
  display:none;
}
.l_c00112 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00112 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00112 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00112: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_c00112 {
    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_c00112.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00112.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_c00112 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00112{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.000000;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;}
.m31_c00112{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00112{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00112{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mad_c00112{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m15_c00112{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00112{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00112{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m53_c00112{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00112{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00112{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00112{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00112{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00112{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00112{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m65_c00112{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maa_c00112{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mac_c00112{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00112{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m28_c00112{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m91_c00112{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12_c00112{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00112{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00112{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mab_c00112{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m93_c00112{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m54_c00112{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m11_c00112{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00112{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00112{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00112{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m48_c00112{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00112{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m74_c00112{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m26_c00112{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m69_c00112{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00112{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m96_c00112{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00112{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9_c00112{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m82_c00112{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m73_c00112{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00112{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00112{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00112{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m60_c00112{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00112{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m99_c00112{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00112{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00112{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00112{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m58_c00112{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00112{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m97_c00112{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me_c00112{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m90_c00112{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m66_c00112{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00112{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00112{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m18_c00112{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m81_c00112{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00112{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00112{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00112{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m30_c00112{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m67_c00112{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00112{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00112{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m76_c00112{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mc_c00112{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00112{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00112{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8_c00112{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m14_c00112{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m80_c00112{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m85_c00112{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00112{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m49_c00112{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m17_c00112{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m68_c00112{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00112{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00112{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00112{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m24_c00112{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00112{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m16_c00112{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m50_c00112{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf_c00112{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m47_c00112{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m88_c00112{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2_c00112{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00112{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00112{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m71_c00112{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m37_c00112{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m41_c00112{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m45_c00112{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7_c00112{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00112{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m70_c00112{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00112{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m51_c00112{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m42_c00112{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m98_c00112{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m84_c00112{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m52_c00112{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00112{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00112{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00112{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m43_c00112{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m22_c00112{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m57_c00112{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00112{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m95_c00112{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10_c00112{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m29_c00112{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m21_c00112{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00112{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m44_c00112{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00112{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5_c00112{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00112{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00112{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00112{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00112{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00112{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m77_c00112{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00112{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3_c00112{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m92_c00112{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m55_c00112{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00112{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m62_c00112{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m38_c00112{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m35_c00112{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00112{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6_c00112{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md_c00112{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m59_c00112{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00112{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma_c00112{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m83_c00112{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00112{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m78_c00112{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m79_c00112{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4_c00112{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00112{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m61_c00112{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00112{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00112{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00112{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00112{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m34_c00112{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m25_c00112{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m87_c00112{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m56_c00112{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m39_c00112{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m86_c00112{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m63_c00112{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m27_c00112{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m33_c00112{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00112{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00112{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m0_c00112{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00112{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m36_c00112{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m1_c00112{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m72_c00112{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00112{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m89_c00112{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00112{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00112{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00112{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00112{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m32_c00112{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00112{vertical-align:0.000000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{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__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00112{word-spacing:-3.055556px;}
.ws4_c00112{word-spacing:-0.468750px;}
.wsa_c00112{word-spacing:0.000000px;}
.ws2_c00112{word-spacing:0.277778px;}
.ws8_c00112{word-spacing:4.324324px;}
.ws1_c00112{word-spacing:6.388889px;}
.ws6_c00112{word-spacing:8.055556px;}
.ws7_c00112{word-spacing:11.052632px;}
.ws3_c00112{word-spacing:11.527778px;}
.ws0_c00112{word-spacing:16.282051px;}
.ws9_c00112{word-spacing:17.948718px;}
.fc0_c00112{color:transparent;}
.fs0_c00112{font-size:60.000000px;}
.y0_c00112{bottom:0.000000px;}
.y2c_c00112{bottom:147.600000px;}
.y2b_c00112{bottom:188.250000px;}
.y2a_c00112{bottom:208.050000px;}
.y29_c00112{bottom:227.850000px;}
.y28_c00112{bottom:247.950000px;}
.y27_c00112{bottom:267.450000px;}
.y26_c00112{bottom:285.900000px;}
.y25_c00112{bottom:307.500000px;}
.y24_c00112{bottom:327.600000px;}
.y23_c00112{bottom:347.100000px;}
.y22_c00112{bottom:367.200000px;}
.y21_c00112{bottom:387.000000px;}
.y20_c00112{bottom:407.100000px;}
.y1f_c00112{bottom:427.050000px;}
.y1e_c00112{bottom:447.150000px;}
.y1d_c00112{bottom:467.250000px;}
.y1c_c00112{bottom:486.750000px;}
.y1b_c00112{bottom:507.300000px;}
.y1a_c00112{bottom:527.100000px;}
.y19_c00112{bottom:547.200000px;}
.y18_c00112{bottom:567.300000px;}
.y17_c00112{bottom:587.100000px;}
.y16_c00112{bottom:607.200000px;}
.y15_c00112{bottom:626.700000px;}
.y14_c00112{bottom:647.100000px;}
.y13_c00112{bottom:667.200000px;}
.y12_c00112{bottom:687.300000px;}
.y11_c00112{bottom:707.100000px;}
.y10_c00112{bottom:726.900000px;}
.yf_c00112{bottom:746.700000px;}
.ye_c00112{bottom:766.800000px;}
.yd_c00112{bottom:787.350000px;}
.yc_c00112{bottom:807.150000px;}
.yb_c00112{bottom:826.950000px;}
.ya_c00112{bottom:847.050000px;}
.y9_c00112{bottom:866.850000px;}
.y8_c00112{bottom:886.650000px;}
.y7_c00112{bottom:906.450000px;}
.y6_c00112{bottom:925.950000px;}
.y5_c00112{bottom:946.200000px;}
.y4_c00112{bottom:966.300000px;}
.y3_c00112{bottom:986.400000px;}
.y2_c00112{bottom:1006.200000px;}
.y1_c00112{bottom:1044.300000px;}
.h2_c00112{height:60.000000px;}
.h1_c00112{height:1167.750000px;}
.h0_c00112{height:1167.839997px;}
.w1_c00112{width:920.250000px;}
.w0_c00112{width:920.519990px;}
.x0_c00112{left:0.000000px;}
.x111_c00112{left:134.550000px;}
.xc8_c00112{left:135.600000px;}
.x1_c00112{left:136.800000px;}
.xeb_c00112{left:152.550000px;}
.xfc_c00112{left:156.300000px;}
.xd1_c00112{left:158.550000px;}
.xb8_c00112{left:163.500000px;}
.x3_c00112{left:165.300000px;}
.x108_c00112{left:166.650000px;}
.x29_c00112{left:168.150000px;}
.x79_c00112{left:172.200000px;}
.x43_c00112{left:173.700000px;}
.x116_c00112{left:174.900000px;}
.x37_c00112{left:177.300000px;}
.xe2_c00112{left:180.300000px;}
.x9a_c00112{left:182.100000px;}
.x85_c00112{left:183.450000px;}
.x12c_c00112{left:185.250000px;}
.x12_c00112{left:187.200000px;}
.x1e_c00112{left:188.700000px;}
.x5a_c00112{left:192.900000px;}
.x109_c00112{left:194.700000px;}
.x90_c00112{left:196.650000px;}
.x6d_c00112{left:198.000000px;}
.x7a_c00112{left:199.950000px;}
.x105_c00112{left:202.200000px;}
.x44_c00112{left:204.600000px;}
.xc9_c00112{left:205.800000px;}
.xb0_c00112{left:208.050000px;}
.x45_c00112{left:209.250000px;}
.x2a_c00112{left:210.600000px;}
.x86_c00112{left:212.250000px;}
.x38_c00112{left:215.850000px;}
.x9b_c00112{left:218.550000px;}
.x5b_c00112{left:220.200000px;}
.x10d_c00112{left:221.550000px;}
.x132_c00112{left:223.500000px;}
.x52_c00112{left:225.450000px;}
.x46_c00112{left:227.550000px;}
.xfd_c00112{left:229.800000px;}
.x2b_c00112{left:231.150000px;}
.x4_c00112{left:232.200000px;}
.x123_c00112{left:233.250000px;}
.xca_c00112{left:234.900000px;}
.x91_c00112{left:235.950000px;}
.x87_c00112{left:237.450000px;}
.x47_c00112{left:239.100000px;}
.x1f_c00112{left:241.650000px;}
.x53_c00112{left:246.750000px;}
.x13_c00112{left:249.150000px;}
.x11a_c00112{left:250.500000px;}
.x6e_c00112{left:253.050000px;}
.xa7_c00112{left:254.850000px;}
.x39_c00112{left:257.550000px;}
.x2c_c00112{left:260.250000px;}
.x9c_c00112{left:261.450000px;}
.x5_c00112{left:263.100000px;}
.x68_c00112{left:264.750000px;}
.xc3_c00112{left:266.250000px;}
.x48_c00112{left:267.900000px;}
.x6f_c00112{left:271.050000px;}
.xf6_c00112{left:272.250000px;}
.xcb_c00112{left:273.750000px;}
.xd4_c00112{left:274.800000px;}
.xb9_c00112{left:277.650000px;}
.x10e_c00112{left:278.850000px;}
.x133_c00112{left:281.550000px;}
.xe3_c00112{left:282.900000px;}
.xb1_c00112{left:284.400000px;}
.x88_c00112{left:286.050000px;}
.xf0_c00112{left:287.250000px;}
.x12d_c00112{left:288.600000px;}
.x6_c00112{left:291.600000px;}
.x110_c00112{left:293.250000px;}
.x69_c00112{left:295.350000px;}
.xdb_c00112{left:296.700000px;}
.xc4_c00112{left:298.350000px;}
.xc1_c00112{left:300.900000px;}
.xb2_c00112{left:302.100000px;}
.x89_c00112{left:304.050000px;}
.xcc_c00112{left:305.850000px;}
.xba_c00112{left:309.000000px;}
.x11f_c00112{left:310.350000px;}
.x14_c00112{left:312.450000px;}
.x5c_c00112{left:316.350000px;}
.x2d_c00112{left:319.650000px;}
.x49_c00112{left:323.700000px;}
.xa8_c00112{left:325.050000px;}
.x11b_c00112{left:326.850000px;}
.xfe_c00112{left:328.500000px;}
.x20_c00112{left:330.300000px;}
.x54_c00112{left:332.850000px;}
.x7b_c00112{left:338.250000px;}
.xcd_c00112{left:339.300000px;}
.x3a_c00112{left:341.700000px;}
.xff_c00112{left:342.900000px;}
.xc2_c00112{left:344.100000px;}
.x8a_c00112{left:345.450000px;}
.x5d_c00112{left:346.950000px;}
.xbb_c00112{left:348.300000px;}
.x7_c00112{left:350.250000px;}
.x92_c00112{left:353.100000px;}
.x127_c00112{left:354.450000px;}
.x70_c00112{left:357.450000px;}
.xc5_c00112{left:361.800000px;}
.x21_c00112{left:363.450000px;}
.x7c_c00112{left:366.300000px;}
.x2e_c00112{left:370.050000px;}
.x128_c00112{left:371.700000px;}
.x71_c00112{left:374.700000px;}
.xce_c00112{left:376.050000px;}
.xe4_c00112{left:378.000000px;}
.xf1_c00112{left:379.350000px;}
.xd5_c00112{left:381.000000px;}
.x10a_c00112{left:382.350000px;}
.x93_c00112{left:384.000000px;}
.x15_c00112{left:387.000000px;}
.x9d_c00112{left:389.250000px;}
.x6a_c00112{left:392.250000px;}
.x12e_c00112{left:393.300000px;}
.x2f_c00112{left:396.300000px;}
.x11c_c00112{left:397.350000px;}
.x72_c00112{left:400.200000px;}
.x134_c00112{left:404.250000px;}
.x55_c00112{left:405.600000px;}
.x16_c00112{left:406.800000px;}
.x5e_c00112{left:408.900000px;}
.x129_c00112{left:410.550000px;}
.x8b_c00112{left:411.750000px;}
.xf7_c00112{left:415.500000px;}
.x9e_c00112{left:416.550000px;}
.xf2_c00112{left:417.900000px;}
.x8_c00112{left:418.950000px;}
.x100_c00112{left:420.000000px;}
.xe5_c00112{left:422.550000px;}
.x94_c00112{left:425.400000px;}
.xb3_c00112{left:427.050000px;}
.x4a_c00112{left:429.900000px;}
.x22_c00112{left:432.450000px;}
.x2_c00112{left:434.850000px;}
.x3b_c00112{left:436.500000px;}
.x5f_c00112{left:438.000000px;}
.x17_c00112{left:440.250000px;}
.xbc_c00112{left:441.900000px;}
.xf3_c00112{left:446.700000px;}
.x9_c00112{left:447.750000px;}
.x73_c00112{left:448.800000px;}
.xa9_c00112{left:450.600000px;}
.xdc_c00112{left:451.800000px;}
.x135_c00112{left:454.650000px;}
.x118_c00112{left:455.850000px;}
.x10b_c00112{left:456.900000px;}
.x6b_c00112{left:459.600000px;}
.x9f_c00112{left:461.550000px;}
.xb4_c00112{left:463.350000px;}
.x30_c00112{left:465.000000px;}
.x18_c00112{left:466.200000px;}
.x56_c00112{left:467.550000px;}
.xaa_c00112{left:468.600000px;}
.xbd_c00112{left:469.650000px;}
.x3c_c00112{left:472.800000px;}
.x117_c00112{left:476.100000px;}
.xa_c00112{left:477.600000px;}
.x11d_c00112{left:479.400000px;}
.x60_c00112{left:480.900000px;}
.xe6_c00112{left:482.700000px;}
.xec_c00112{left:485.400000px;}
.x6c_c00112{left:488.100000px;}
.x106_c00112{left:489.150000px;}
.x23_c00112{left:491.100000px;}
.xd6_c00112{left:492.900000px;}
.x7d_c00112{left:495.900000px;}
.x10c_c00112{left:497.550000px;}
.x3d_c00112{left:499.500000px;}
.x8c_c00112{left:500.700000px;}
.x95_c00112{left:501.750000px;}
.xdd_c00112{left:505.500000px;}
.x112_c00112{left:508.950000px;}
.x19_c00112{left:511.950000px;}
.x12a_c00112{left:513.750000px;}
.x57_c00112{left:517.650000px;}
.x61_c00112{left:522.000000px;}
.xf4_c00112{left:523.050000px;}
.xb_c00112{left:524.700000px;}
.x4b_c00112{left:528.150000px;}
.xa0_c00112{left:530.700000px;}
.x119_c00112{left:532.200000px;}
.x120_c00112{left:533.250000px;}
.xf8_c00112{left:534.600000px;}
.x24_c00112{left:537.150000px;}
.x124_c00112{left:538.350000px;}
.xde_c00112{left:539.400000px;}
.x3e_c00112{left:540.600000px;}
.xbe_c00112{left:543.000000px;}
.x96_c00112{left:545.250000px;}
.xd7_c00112{left:547.200000px;}
.x4c_c00112{left:548.250000px;}
.x58_c00112{left:551.550000px;}
.xe7_c00112{left:554.700000px;}
.xab_c00112{left:556.500000px;}
.x31_c00112{left:557.850000px;}
.x74_c00112{left:560.700000px;}
.x101_c00112{left:562.650000px;}
.x3f_c00112{left:564.000000px;}
.x121_c00112{left:565.650000px;}
.xed_c00112{left:566.700000px;}
.x4d_c00112{left:568.050000px;}
.x12f_c00112{left:570.450000px;}
.xc_c00112{left:571.800000px;}
.x25_c00112{left:575.250000px;}
.x7e_c00112{left:577.200000px;}
.xa1_c00112{left:580.350000px;}
.xe8_c00112{left:583.500000px;}
.x113_c00112{left:584.550000px;}
.xee_c00112{left:585.750000px;}
.x7f_c00112{left:588.750000px;}
.x40_c00112{left:593.850000px;}
.xbf_c00112{left:597.750000px;}
.xa2_c00112{left:599.400000px;}
.xcf_c00112{left:604.200000px;}
.x62_c00112{left:606.600000px;}
.xf5_c00112{left:608.400000px;}
.xd_c00112{left:609.600000px;}
.x75_c00112{left:610.800000px;}
.x125_c00112{left:611.850000px;}
.x1a_c00112{left:613.050000px;}
.xb5_c00112{left:615.300000px;}
.x80_c00112{left:617.250000px;}
.xc6_c00112{left:618.450000px;}
.x4e_c00112{left:620.700000px;}
.xe9_c00112{left:622.800000px;}
.x10f_c00112{left:624.450000px;}
.xa3_c00112{left:626.700000px;}
.x32_c00112{left:628.350000px;}
.x8d_c00112{left:630.000000px;}
.x81_c00112{left:631.950000px;}
.xb6_c00112{left:635.850000px;}
.x12b_c00112{left:637.350000px;}
.xac_c00112{left:638.550000px;}
.x63_c00112{left:640.500000px;}
.xdf_c00112{left:643.200000px;}
.xd2_c00112{left:644.400000px;}
.x97_c00112{left:645.750000px;}
.x126_c00112{left:647.850000px;}
.x26_c00112{left:650.550000px;}
.x41_c00112{left:656.100000px;}
.x64_c00112{left:661.050000px;}
.xea_c00112{left:662.400000px;}
.x130_c00112{left:663.750000px;}
.x107_c00112{left:664.800000px;}
.xad_c00112{left:666.600000px;}
.x114_c00112{left:667.650000px;}
.x11e_c00112{left:668.850000px;}
.x1b_c00112{left:670.350000px;}
.x33_c00112{left:674.850000px;}
.xe_c00112{left:678.750000px;}
.xc0_c00112{left:680.250000px;}
.x98_c00112{left:683.550000px;}
.x59_c00112{left:685.050000px;}
.x4f_c00112{left:688.050000px;}
.x1c_c00112{left:691.200000px;}
.xf9_c00112{left:693.300000px;}
.xa4_c00112{left:694.350000px;}
.x8e_c00112{left:696.600000px;}
.x82_c00112{left:698.550000px;}
.x65_c00112{left:699.900000px;}
.xd8_c00112{left:702.000000px;}
.x102_c00112{left:704.550000px;}
.x76_c00112{left:708.750000px;}
.x122_c00112{left:712.050000px;}
.x50_c00112{left:713.550000px;}
.x34_c00112{left:715.500000px;}
.xf_c00112{left:716.850000px;}
.xe0_c00112{left:720.900000px;}
.xa5_c00112{left:724.200000px;}
.xfa_c00112{left:725.700000px;}
.x66_c00112{left:727.200000px;}
.x103_c00112{left:731.550000px;}
.x83_c00112{left:733.800000px;}
.x115_c00112{left:735.750000px;}
.x77_c00112{left:737.850000px;}
.xc7_c00112{left:739.350000px;}
.x35_c00112{left:741.000000px;}
.xb7_c00112{left:742.050000px;}
.x27_c00112{left:744.150000px;}
.x99_c00112{left:747.600000px;}
.xd3_c00112{left:748.800000px;}
.xd9_c00112{left:751.350000px;}
.x67_c00112{left:755.700000px;}
.x10_c00112{left:756.750000px;}
.x8f_c00112{left:758.250000px;}
.x42_c00112{left:759.750000px;}
.x51_c00112{left:762.900000px;}
.xa6_c00112{left:765.300000px;}
.xae_c00112{left:766.950000px;}
.xda_c00112{left:770.850000px;}
.xfb_c00112{left:772.500000px;}
.x28_c00112{left:773.700000px;}
.xe1_c00112{left:775.500000px;}
.x11_c00112{left:776.550000px;}
.x78_c00112{left:780.300000px;}
.x104_c00112{left:782.250000px;}
.x84_c00112{left:783.450000px;}
.x131_c00112{left:785.400000px;}
.xaf_c00112{left:787.050000px;}
.x36_c00112{left:791.700000px;}
.xef_c00112{left:792.900000px;}
.xd0_c00112{left:793.950000px;}
.x1d_c00112{left:797.100000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws5_c00112{word-spacing:-2.716049pt;}
.ws4_c00112{word-spacing:-0.416667pt;}
.wsa_c00112{word-spacing:0.000000pt;}
.ws2_c00112{word-spacing:0.246914pt;}
.ws8_c00112{word-spacing:3.843844pt;}
.ws1_c00112{word-spacing:5.679012pt;}
.ws6_c00112{word-spacing:7.160494pt;}
.ws7_c00112{word-spacing:9.824561pt;}
.ws3_c00112{word-spacing:10.246914pt;}
.ws0_c00112{word-spacing:14.472934pt;}
.ws9_c00112{word-spacing:15.954416pt;}
.fs0_c00112{font-size:53.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y2c_c00112{bottom:131.200000pt;}
.y2b_c00112{bottom:167.333333pt;}
.y2a_c00112{bottom:184.933333pt;}
.y29_c00112{bottom:202.533333pt;}
.y28_c00112{bottom:220.400000pt;}
.y27_c00112{bottom:237.733333pt;}
.y26_c00112{bottom:254.133333pt;}
.y25_c00112{bottom:273.333333pt;}
.y24_c00112{bottom:291.200000pt;}
.y23_c00112{bottom:308.533333pt;}
.y22_c00112{bottom:326.400000pt;}
.y21_c00112{bottom:344.000000pt;}
.y20_c00112{bottom:361.866667pt;}
.y1f_c00112{bottom:379.600000pt;}
.y1e_c00112{bottom:397.466667pt;}
.y1d_c00112{bottom:415.333333pt;}
.y1c_c00112{bottom:432.666667pt;}
.y1b_c00112{bottom:450.933333pt;}
.y1a_c00112{bottom:468.533333pt;}
.y19_c00112{bottom:486.400000pt;}
.y18_c00112{bottom:504.266667pt;}
.y17_c00112{bottom:521.866667pt;}
.y16_c00112{bottom:539.733333pt;}
.y15_c00112{bottom:557.066667pt;}
.y14_c00112{bottom:575.200000pt;}
.y13_c00112{bottom:593.066667pt;}
.y12_c00112{bottom:610.933333pt;}
.y11_c00112{bottom:628.533333pt;}
.y10_c00112{bottom:646.133333pt;}
.yf_c00112{bottom:663.733333pt;}
.ye_c00112{bottom:681.600000pt;}
.yd_c00112{bottom:699.866667pt;}
.yc_c00112{bottom:717.466667pt;}
.yb_c00112{bottom:735.066667pt;}
.ya_c00112{bottom:752.933333pt;}
.y9_c00112{bottom:770.533333pt;}
.y8_c00112{bottom:788.133333pt;}
.y7_c00112{bottom:805.733333pt;}
.y6_c00112{bottom:823.066667pt;}
.y5_c00112{bottom:841.066667pt;}
.y4_c00112{bottom:858.933333pt;}
.y3_c00112{bottom:876.800000pt;}
.y2_c00112{bottom:894.400000pt;}
.y1_c00112{bottom:928.266667pt;}
.h2_c00112{height:53.333333pt;}
.h1_c00112{height:1038.000000pt;}
.h0_c00112{height:1038.079997pt;}
.w1_c00112{width:818.000000pt;}
.w0_c00112{width:818.239991pt;}
.x0_c00112{left:0.000000pt;}
.x111_c00112{left:119.600000pt;}
.xc8_c00112{left:120.533333pt;}
.x1_c00112{left:121.600000pt;}
.xeb_c00112{left:135.600000pt;}
.xfc_c00112{left:138.933333pt;}
.xd1_c00112{left:140.933333pt;}
.xb8_c00112{left:145.333333pt;}
.x3_c00112{left:146.933333pt;}
.x108_c00112{left:148.133333pt;}
.x29_c00112{left:149.466667pt;}
.x79_c00112{left:153.066667pt;}
.x43_c00112{left:154.400000pt;}
.x116_c00112{left:155.466667pt;}
.x37_c00112{left:157.600000pt;}
.xe2_c00112{left:160.266667pt;}
.x9a_c00112{left:161.866667pt;}
.x85_c00112{left:163.066667pt;}
.x12c_c00112{left:164.666667pt;}
.x12_c00112{left:166.400000pt;}
.x1e_c00112{left:167.733333pt;}
.x5a_c00112{left:171.466667pt;}
.x109_c00112{left:173.066667pt;}
.x90_c00112{left:174.800000pt;}
.x6d_c00112{left:176.000000pt;}
.x7a_c00112{left:177.733333pt;}
.x105_c00112{left:179.733333pt;}
.x44_c00112{left:181.866667pt;}
.xc9_c00112{left:182.933333pt;}
.xb0_c00112{left:184.933333pt;}
.x45_c00112{left:186.000000pt;}
.x2a_c00112{left:187.200000pt;}
.x86_c00112{left:188.666667pt;}
.x38_c00112{left:191.866667pt;}
.x9b_c00112{left:194.266667pt;}
.x5b_c00112{left:195.733333pt;}
.x10d_c00112{left:196.933333pt;}
.x132_c00112{left:198.666667pt;}
.x52_c00112{left:200.400000pt;}
.x46_c00112{left:202.266667pt;}
.xfd_c00112{left:204.266667pt;}
.x2b_c00112{left:205.466667pt;}
.x4_c00112{left:206.400000pt;}
.x123_c00112{left:207.333333pt;}
.xca_c00112{left:208.800000pt;}
.x91_c00112{left:209.733333pt;}
.x87_c00112{left:211.066667pt;}
.x47_c00112{left:212.533333pt;}
.x1f_c00112{left:214.800000pt;}
.x53_c00112{left:219.333333pt;}
.x13_c00112{left:221.466667pt;}
.x11a_c00112{left:222.666667pt;}
.x6e_c00112{left:224.933333pt;}
.xa7_c00112{left:226.533333pt;}
.x39_c00112{left:228.933333pt;}
.x2c_c00112{left:231.333333pt;}
.x9c_c00112{left:232.400000pt;}
.x5_c00112{left:233.866667pt;}
.x68_c00112{left:235.333333pt;}
.xc3_c00112{left:236.666667pt;}
.x48_c00112{left:238.133333pt;}
.x6f_c00112{left:240.933333pt;}
.xf6_c00112{left:242.000000pt;}
.xcb_c00112{left:243.333333pt;}
.xd4_c00112{left:244.266667pt;}
.xb9_c00112{left:246.800000pt;}
.x10e_c00112{left:247.866667pt;}
.x133_c00112{left:250.266667pt;}
.xe3_c00112{left:251.466667pt;}
.xb1_c00112{left:252.800000pt;}
.x88_c00112{left:254.266667pt;}
.xf0_c00112{left:255.333333pt;}
.x12d_c00112{left:256.533333pt;}
.x6_c00112{left:259.200000pt;}
.x110_c00112{left:260.666667pt;}
.x69_c00112{left:262.533333pt;}
.xdb_c00112{left:263.733333pt;}
.xc4_c00112{left:265.200000pt;}
.xc1_c00112{left:267.466667pt;}
.xb2_c00112{left:268.533333pt;}
.x89_c00112{left:270.266667pt;}
.xcc_c00112{left:271.866667pt;}
.xba_c00112{left:274.666667pt;}
.x11f_c00112{left:275.866667pt;}
.x14_c00112{left:277.733333pt;}
.x5c_c00112{left:281.200000pt;}
.x2d_c00112{left:284.133333pt;}
.x49_c00112{left:287.733333pt;}
.xa8_c00112{left:288.933333pt;}
.x11b_c00112{left:290.533333pt;}
.xfe_c00112{left:292.000000pt;}
.x20_c00112{left:293.600000pt;}
.x54_c00112{left:295.866667pt;}
.x7b_c00112{left:300.666667pt;}
.xcd_c00112{left:301.600000pt;}
.x3a_c00112{left:303.733333pt;}
.xff_c00112{left:304.800000pt;}
.xc2_c00112{left:305.866667pt;}
.x8a_c00112{left:307.066667pt;}
.x5d_c00112{left:308.400000pt;}
.xbb_c00112{left:309.600000pt;}
.x7_c00112{left:311.333333pt;}
.x92_c00112{left:313.866667pt;}
.x127_c00112{left:315.066667pt;}
.x70_c00112{left:317.733333pt;}
.xc5_c00112{left:321.600000pt;}
.x21_c00112{left:323.066667pt;}
.x7c_c00112{left:325.600000pt;}
.x2e_c00112{left:328.933333pt;}
.x128_c00112{left:330.400000pt;}
.x71_c00112{left:333.066667pt;}
.xce_c00112{left:334.266667pt;}
.xe4_c00112{left:336.000000pt;}
.xf1_c00112{left:337.200000pt;}
.xd5_c00112{left:338.666667pt;}
.x10a_c00112{left:339.866667pt;}
.x93_c00112{left:341.333333pt;}
.x15_c00112{left:344.000000pt;}
.x9d_c00112{left:346.000000pt;}
.x6a_c00112{left:348.666667pt;}
.x12e_c00112{left:349.600000pt;}
.x2f_c00112{left:352.266667pt;}
.x11c_c00112{left:353.200000pt;}
.x72_c00112{left:355.733333pt;}
.x134_c00112{left:359.333333pt;}
.x55_c00112{left:360.533333pt;}
.x16_c00112{left:361.600000pt;}
.x5e_c00112{left:363.466667pt;}
.x129_c00112{left:364.933333pt;}
.x8b_c00112{left:366.000000pt;}
.xf7_c00112{left:369.333333pt;}
.x9e_c00112{left:370.266667pt;}
.xf2_c00112{left:371.466667pt;}
.x8_c00112{left:372.400000pt;}
.x100_c00112{left:373.333333pt;}
.xe5_c00112{left:375.600000pt;}
.x94_c00112{left:378.133333pt;}
.xb3_c00112{left:379.600000pt;}
.x4a_c00112{left:382.133333pt;}
.x22_c00112{left:384.400000pt;}
.x2_c00112{left:386.533333pt;}
.x3b_c00112{left:388.000000pt;}
.x5f_c00112{left:389.333333pt;}
.x17_c00112{left:391.333333pt;}
.xbc_c00112{left:392.800000pt;}
.xf3_c00112{left:397.066667pt;}
.x9_c00112{left:398.000000pt;}
.x73_c00112{left:398.933333pt;}
.xa9_c00112{left:400.533333pt;}
.xdc_c00112{left:401.600000pt;}
.x135_c00112{left:404.133333pt;}
.x118_c00112{left:405.200000pt;}
.x10b_c00112{left:406.133333pt;}
.x6b_c00112{left:408.533333pt;}
.x9f_c00112{left:410.266667pt;}
.xb4_c00112{left:411.866667pt;}
.x30_c00112{left:413.333333pt;}
.x18_c00112{left:414.400000pt;}
.x56_c00112{left:415.600000pt;}
.xaa_c00112{left:416.533333pt;}
.xbd_c00112{left:417.466667pt;}
.x3c_c00112{left:420.266667pt;}
.x117_c00112{left:423.200000pt;}
.xa_c00112{left:424.533333pt;}
.x11d_c00112{left:426.133333pt;}
.x60_c00112{left:427.466667pt;}
.xe6_c00112{left:429.066667pt;}
.xec_c00112{left:431.466667pt;}
.x6c_c00112{left:433.866667pt;}
.x106_c00112{left:434.800000pt;}
.x23_c00112{left:436.533333pt;}
.xd6_c00112{left:438.133333pt;}
.x7d_c00112{left:440.800000pt;}
.x10c_c00112{left:442.266667pt;}
.x3d_c00112{left:444.000000pt;}
.x8c_c00112{left:445.066667pt;}
.x95_c00112{left:446.000000pt;}
.xdd_c00112{left:449.333333pt;}
.x112_c00112{left:452.400000pt;}
.x19_c00112{left:455.066667pt;}
.x12a_c00112{left:456.666667pt;}
.x57_c00112{left:460.133333pt;}
.x61_c00112{left:464.000000pt;}
.xf4_c00112{left:464.933333pt;}
.xb_c00112{left:466.400000pt;}
.x4b_c00112{left:469.466667pt;}
.xa0_c00112{left:471.733333pt;}
.x119_c00112{left:473.066667pt;}
.x120_c00112{left:474.000000pt;}
.xf8_c00112{left:475.200000pt;}
.x24_c00112{left:477.466667pt;}
.x124_c00112{left:478.533333pt;}
.xde_c00112{left:479.466667pt;}
.x3e_c00112{left:480.533333pt;}
.xbe_c00112{left:482.666667pt;}
.x96_c00112{left:484.666667pt;}
.xd7_c00112{left:486.400000pt;}
.x4c_c00112{left:487.333333pt;}
.x58_c00112{left:490.266667pt;}
.xe7_c00112{left:493.066667pt;}
.xab_c00112{left:494.666667pt;}
.x31_c00112{left:495.866667pt;}
.x74_c00112{left:498.400000pt;}
.x101_c00112{left:500.133333pt;}
.x3f_c00112{left:501.333333pt;}
.x121_c00112{left:502.800000pt;}
.xed_c00112{left:503.733333pt;}
.x4d_c00112{left:504.933333pt;}
.x12f_c00112{left:507.066667pt;}
.xc_c00112{left:508.266667pt;}
.x25_c00112{left:511.333333pt;}
.x7e_c00112{left:513.066667pt;}
.xa1_c00112{left:515.866667pt;}
.xe8_c00112{left:518.666667pt;}
.x113_c00112{left:519.600000pt;}
.xee_c00112{left:520.666667pt;}
.x7f_c00112{left:523.333333pt;}
.x40_c00112{left:527.866667pt;}
.xbf_c00112{left:531.333333pt;}
.xa2_c00112{left:532.800000pt;}
.xcf_c00112{left:537.066667pt;}
.x62_c00112{left:539.200000pt;}
.xf5_c00112{left:540.800000pt;}
.xd_c00112{left:541.866667pt;}
.x75_c00112{left:542.933333pt;}
.x125_c00112{left:543.866667pt;}
.x1a_c00112{left:544.933333pt;}
.xb5_c00112{left:546.933333pt;}
.x80_c00112{left:548.666667pt;}
.xc6_c00112{left:549.733333pt;}
.x4e_c00112{left:551.733333pt;}
.xe9_c00112{left:553.600000pt;}
.x10f_c00112{left:555.066667pt;}
.xa3_c00112{left:557.066667pt;}
.x32_c00112{left:558.533333pt;}
.x8d_c00112{left:560.000000pt;}
.x81_c00112{left:561.733333pt;}
.xb6_c00112{left:565.200000pt;}
.x12b_c00112{left:566.533333pt;}
.xac_c00112{left:567.600000pt;}
.x63_c00112{left:569.333333pt;}
.xdf_c00112{left:571.733333pt;}
.xd2_c00112{left:572.800000pt;}
.x97_c00112{left:574.000000pt;}
.x126_c00112{left:575.866667pt;}
.x26_c00112{left:578.266667pt;}
.x41_c00112{left:583.200000pt;}
.x64_c00112{left:587.600000pt;}
.xea_c00112{left:588.800000pt;}
.x130_c00112{left:590.000000pt;}
.x107_c00112{left:590.933333pt;}
.xad_c00112{left:592.533333pt;}
.x114_c00112{left:593.466667pt;}
.x11e_c00112{left:594.533333pt;}
.x1b_c00112{left:595.866667pt;}
.x33_c00112{left:599.866667pt;}
.xe_c00112{left:603.333333pt;}
.xc0_c00112{left:604.666667pt;}
.x98_c00112{left:607.600000pt;}
.x59_c00112{left:608.933333pt;}
.x4f_c00112{left:611.600000pt;}
.x1c_c00112{left:614.400000pt;}
.xf9_c00112{left:616.266667pt;}
.xa4_c00112{left:617.200000pt;}
.x8e_c00112{left:619.200000pt;}
.x82_c00112{left:620.933333pt;}
.x65_c00112{left:622.133333pt;}
.xd8_c00112{left:624.000000pt;}
.x102_c00112{left:626.266667pt;}
.x76_c00112{left:630.000000pt;}
.x122_c00112{left:632.933333pt;}
.x50_c00112{left:634.266667pt;}
.x34_c00112{left:636.000000pt;}
.xf_c00112{left:637.200000pt;}
.xe0_c00112{left:640.800000pt;}
.xa5_c00112{left:643.733333pt;}
.xfa_c00112{left:645.066667pt;}
.x66_c00112{left:646.400000pt;}
.x103_c00112{left:650.266667pt;}
.x83_c00112{left:652.266667pt;}
.x115_c00112{left:654.000000pt;}
.x77_c00112{left:655.866667pt;}
.xc7_c00112{left:657.200000pt;}
.x35_c00112{left:658.666667pt;}
.xb7_c00112{left:659.600000pt;}
.x27_c00112{left:661.466667pt;}
.x99_c00112{left:664.533333pt;}
.xd3_c00112{left:665.600000pt;}
.xd9_c00112{left:667.866667pt;}
.x67_c00112{left:671.733333pt;}
.x10_c00112{left:672.666667pt;}
.x8f_c00112{left:674.000000pt;}
.x42_c00112{left:675.333333pt;}
.x51_c00112{left:678.133333pt;}
.xa6_c00112{left:680.266667pt;}
.xae_c00112{left:681.733333pt;}
.xda_c00112{left:685.200000pt;}
.xfb_c00112{left:686.666667pt;}
.x28_c00112{left:687.733333pt;}
.xe1_c00112{left:689.333333pt;}
.x11_c00112{left:690.266667pt;}
.x78_c00112{left:693.600000pt;}
.x104_c00112{left:695.333333pt;}
.x84_c00112{left:696.400000pt;}
.x131_c00112{left:698.133333pt;}
.xaf_c00112{left:699.600000pt;}
.x36_c00112{left:703.733333pt;}
.xef_c00112{left:704.800000pt;}
.xd0_c00112{left:705.733333pt;}
.x1d_c00112{left:708.533333pt;}
}





/* 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_c00113 {
    display:none;
  }
  .loading-indicator_c00113.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00113 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_c00113 { 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_c00113" -> "#page-container .classname_c00113")
 */
.pf_c00113 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00113 { /* 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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00113 { /* 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_c00113 { /* 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_c00113 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00113 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00113 {overflow:visible;}
  }
}
.c_c00113 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00113 { /* 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_c00113:after { /* webkit #35443 */
  content: '';
}
.t_c00113:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00113 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 */
}
.__c00113 { /* 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_c00113 { /* info for Javascript */
  display:none;
}
.l_c00113 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00113 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00113 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00113: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_c00113 {
    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_c00113.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00113.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_c00113 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00113{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00113;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.000000;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;}
.m9b_c00113{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00113{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.mae_c00113{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m70_c00113{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m50_c00113{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00113{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00113{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00113{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m86_c00113{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00113{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00113{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m77_c00113{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m74_c00113{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00113{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m76_c00113{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m56_c00113{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00113{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00113{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m40_c00113{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00113{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m52_c00113{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8_c00113{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00113{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00113{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00113{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m14_c00113{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m44_c00113{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m63_c00113{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00113{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m64_c00113{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m33_c00113{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m51_c00113{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mf_c00113{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00113{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00113{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00113{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m35_c00113{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00113{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00113{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m26_c00113{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m92_c00113{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m62_c00113{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m55_c00113{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m65_c00113{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m24_c00113{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m27_c00113{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00113{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00113{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10_c00113{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m43_c00113{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00113{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m53_c00113{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00113{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m21_c00113{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00113{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m68_c00113{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00113{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00113{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00113{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00113{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00113{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00113{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m66_c00113{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00113{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m18_c00113{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00113{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00113{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m19_c00113{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m49_c00113{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00113{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c00113{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m99_c00113{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00113{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m29_c00113{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00113{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00113{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m23_c00113{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00113{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md_c00113{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.maf_c00113{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00113{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00113{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.ma_c00113{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m97_c00113{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mad_c00113{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m37_c00113{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m17_c00113{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mb_c00113{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m94_c00113{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6_c00113{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00113{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00113{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m73_c00113{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00113{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00113{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m41_c00113{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mac_c00113{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m36_c00113{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m32_c00113{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00113{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m60_c00113{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00113{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m67_c00113{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00113{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00113{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m93_c00113{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00113{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00113{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mab_c00113{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m25_c00113{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.maa_c00113{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m57_c00113{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00113{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00113{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00113{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00113{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m91_c00113{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m46_c00113{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00113{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m81_c00113{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m20_c00113{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00113{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00113{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m42_c00113{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00113{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00113{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00113{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m87_c00113{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12_c00113{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00113{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m48_c00113{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m83_c00113{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00113{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mba_c00113{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m78_c00113{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);}
.ma0_c00113{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00113{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7_c00113{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00113{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00113{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m90_c00113{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m31_c00113{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9_c00113{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m72_c00113{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m75_c00113{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m69_c00113{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m28_c00113{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00113{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m47_c00113{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00113{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m11_c00113{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00113{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m98_c00113{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00113{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m16_c00113{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m80_c00113{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m58_c00113{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m79_c00113{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00113{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m30_c00113{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00113{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m95_c00113{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m89_c00113{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00113{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m84_c00113{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00113{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3_c00113{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00113{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00113{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00113{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m45_c00113{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m96_c00113{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m54_c00113{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00113{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00113{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00113{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m34_c00113{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00113{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00113{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00113{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m82_c00113{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00113{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m88_c00113{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00113{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00113{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m59_c00113{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00113{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00113{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00113{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00113{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00113{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00113{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00113{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m38_c00113{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m61_c00113{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00113{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m71_c00113{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00113{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00113{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00113{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m2_c00113{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00113{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls0_c00113{letter-spacing:0.000000px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{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__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00113{word-spacing:-3.333333px;}
.wsc_c00113{word-spacing:0.000000px;}
.ws5_c00113{word-spacing:0.571429px;}
.ws9_c00113{word-spacing:2.076923px;}
.ws1_c00113{word-spacing:3.125000px;}
.ws7_c00113{word-spacing:6.125000px;}
.ws3_c00113{word-spacing:7.750000px;}
.wsb_c00113{word-spacing:9.333333px;}
.wsa_c00113{word-spacing:11.478261px;}
.ws2_c00113{word-spacing:12.666667px;}
.ws8_c00113{word-spacing:12.903226px;}
.ws0_c00113{word-spacing:13.750000px;}
.ws4_c00113{word-spacing:29.666667px;}
.fc0_c00113{color:transparent;}
.fs0_c00113{font-size:48.000000px;}
.fs1_c00113{font-size:60.000000px;}
.y0_c00113{bottom:0.000000px;}
.y33_c00113{bottom:140.850000px;}
.y44_c00113{bottom:141.000000px;}
.y32_c00113{bottom:156.750000px;}
.y43_c00113{bottom:156.900000px;}
.y42_c00113{bottom:172.350000px;}
.y31_c00113{bottom:172.650000px;}
.y30_c00113{bottom:188.100000px;}
.y41_c00113{bottom:188.250000px;}
.y2f_c00113{bottom:204.000000px;}
.y40_c00113{bottom:204.150000px;}
.y2e_c00113{bottom:219.150000px;}
.y3f_c00113{bottom:219.600000px;}
.y2d_c00113{bottom:235.050000px;}
.y2c_c00113{bottom:250.950000px;}
.y2b_c00113{bottom:266.850000px;}
.y2a_c00113{bottom:282.300000px;}
.y3e_c00113{bottom:297.750000px;}
.y29_c00113{bottom:298.200000px;}
.y3d_c00113{bottom:313.350000px;}
.y28_c00113{bottom:313.650000px;}
.y27_c00113{bottom:329.100000px;}
.y3c_c00113{bottom:329.250000px;}
.y26_c00113{bottom:344.250000px;}
.y3b_c00113{bottom:345.150000px;}
.y25_c00113{bottom:360.450000px;}
.y3a_c00113{bottom:360.600000px;}
.y24_c00113{bottom:376.350000px;}
.y39_c00113{bottom:376.500000px;}
.y23_c00113{bottom:391.500000px;}
.y38_c00113{bottom:392.400000px;}
.y22_c00113{bottom:407.400000px;}
.y37_c00113{bottom:407.850000px;}
.y21_c00113{bottom:422.850000px;}
.y36_c00113{bottom:423.300000px;}
.y20_c00113{bottom:438.750000px;}
.y1f_c00113{bottom:454.200000px;}
.y1e_c00113{bottom:469.650000px;}
.y35_c00113{bottom:470.100000px;}
.y1d_c00113{bottom:485.550000px;}
.y1c_c00113{bottom:501.000000px;}
.y1b_c00113{bottom:516.900000px;}
.y34_c00113{bottom:532.350000px;}
.y1a_c00113{bottom:532.800000px;}
.y19_c00113{bottom:548.250000px;}
.y18_c00113{bottom:563.700000px;}
.y17_c00113{bottom:604.500000px;}
.y16_c00113{bottom:624.600000px;}
.y15_c00113{bottom:644.700000px;}
.y14_c00113{bottom:664.500000px;}
.y13_c00113{bottom:684.900000px;}
.y12_c00113{bottom:705.000000px;}
.y11_c00113{bottom:724.800000px;}
.y10_c00113{bottom:744.900000px;}
.yf_c00113{bottom:764.700000px;}
.ye_c00113{bottom:784.500000px;}
.yd_c00113{bottom:804.300000px;}
.yc_c00113{bottom:824.700000px;}
.yb_c00113{bottom:844.800000px;}
.ya_c00113{bottom:864.600000px;}
.y9_c00113{bottom:884.700000px;}
.y8_c00113{bottom:904.500000px;}
.y7_c00113{bottom:924.300000px;}
.y6_c00113{bottom:944.400000px;}
.y5_c00113{bottom:964.200000px;}
.y4_c00113{bottom:984.300000px;}
.y3_c00113{bottom:1004.100000px;}
.y2_c00113{bottom:1042.200000px;}
.y1_c00113{bottom:1043.250000px;}
.h2_c00113{height:48.000000px;}
.h3_c00113{height:60.000000px;}
.h1_c00113{height:1167.750000px;}
.h0_c00113{height:1167.839997px;}
.w1_c00113{width:920.250000px;}
.w0_c00113{width:920.519990px;}
.x0_c00113{left:0.000000px;}
.x33_c00113{left:124.950000px;}
.x5_c00113{left:126.000000px;}
.xf6_c00113{left:127.350000px;}
.xe8_c00113{left:144.000000px;}
.xf3_c00113{left:145.050000px;}
.x41_c00113{left:146.400000px;}
.x115_c00113{left:147.900000px;}
.xfd_c00113{left:150.000000px;}
.xd2_c00113{left:151.950000px;}
.x109_c00113{left:153.300000px;}
.xc4_c00113{left:156.000000px;}
.x7d_c00113{left:157.950000px;}
.xca_c00113{left:159.150000px;}
.x5c_c00113{left:162.000000px;}
.x17_c00113{left:163.500000px;}
.x10a_c00113{left:166.650000px;}
.x72_c00113{left:168.750000px;}
.xa8_c00113{left:170.100000px;}
.x10e_c00113{left:172.200000px;}
.xb4_c00113{left:173.850000px;}
.xa1_c00113{left:175.800000px;}
.xe1_c00113{left:178.650000px;}
.x4e_c00113{left:180.900000px;}
.xd3_c00113{left:182.550000px;}
.x116_c00113{left:185.700000px;}
.x5d_c00113{left:186.900000px;}
.xf0_c00113{left:188.400000px;}
.x6_c00113{left:190.050000px;}
.xda_c00113{left:191.400000px;}
.xfa_c00113{left:192.750000px;}
.x18_c00113{left:194.100000px;}
.x34_c00113{left:195.450000px;}
.xe9_c00113{left:196.950000px;}
.xa9_c00113{left:198.600000px;}
.x4f_c00113{left:201.000000px;}
.xf7_c00113{left:202.650000px;}
.xa2_c00113{left:205.650000px;}
.xbb_c00113{left:206.700000px;}
.x7_c00113{left:208.350000px;}
.xf1_c00113{left:210.300000px;}
.x26_c00113{left:211.350000px;}
.xe4_c00113{left:212.550000px;}
.xee_c00113{left:214.050000px;}
.xf4_c00113{left:215.700000px;}
.x19_c00113{left:219.600000px;}
.x7e_c00113{left:221.250000px;}
.x10b_c00113{left:223.200000px;}
.x10f_c00113{left:225.150000px;}
.xe2_c00113{left:226.200000px;}
.x50_c00113{left:229.050000px;}
.x85_c00113{left:232.200000px;}
.xbc_c00113{left:233.250000px;}
.x27_c00113{left:234.450000px;}
.x9a_c00113{left:238.200000px;}
.x73_c00113{left:240.000000px;}
.x42_c00113{left:241.500000px;}
.x8_c00113{left:244.350000px;}
.x107_c00113{left:246.600000px;}
.x100_c00113{left:248.100000px;}
.xaa_c00113{left:249.300000px;}
.xa3_c00113{left:250.950000px;}
.x117_c00113{left:252.600000px;}
.x68_c00113{left:254.100000px;}
.x35_c00113{left:255.300000px;}
.x74_c00113{left:256.950000px;}
.x7f_c00113{left:259.050000px;}
.xf5_c00113{left:260.250000px;}
.x86_c00113{left:262.800000px;}
.xea_c00113{left:264.000000px;}
.x28_c00113{left:265.050000px;}
.x90_c00113{left:267.150000px;}
.x104_c00113{left:268.800000px;}
.x1a_c00113{left:270.000000px;}
.xbd_c00113{left:271.050000px;}
.x51_c00113{left:273.300000px;}
.x9_c00113{left:275.250000px;}
.xef_c00113{left:276.900000px;}
.xdf_c00113{left:278.850000px;}
.x75_c00113{left:282.150000px;}
.x36_c00113{left:284.400000px;}
.x9b_c00113{left:285.750000px;}
.xf8_c00113{left:287.550000px;}
.x101_c00113{left:289.500000px;}
.x1b_c00113{left:290.550000px;}
.x5e_c00113{left:291.600000px;}
.x52_c00113{left:293.100000px;}
.x80_c00113{left:294.750000px;}
.x43_c00113{left:296.550000px;}
.x87_c00113{left:299.100000px;}
.x112_c00113{left:300.750000px;}
.x91_c00113{left:302.400000px;}
.x29_c00113{left:303.600000px;}
.xa_c00113{left:304.800000px;}
.xd8_c00113{left:305.850000px;}
.x102_c00113{left:310.350000px;}
.xbe_c00113{left:311.400000px;}
.xab_c00113{left:314.100000px;}
.xe5_c00113{left:315.150000px;}
.xdb_c00113{left:317.400000px;}
.x69_c00113{left:318.600000px;}
.xc5_c00113{left:321.000000px;}
.xeb_c00113{left:322.050000px;}
.xfe_c00113{left:323.100000px;}
.x118_c00113{left:325.500000px;}
.x10c_c00113{left:327.600000px;}
.x44_c00113{left:328.950000px;}
.x5f_c00113{left:331.950000px;}
.x105_c00113{left:334.200000px;}
.x110_c00113{left:335.250000px;}
.x37_c00113{left:337.350000px;}
.x2a_c00113{left:339.600000px;}
.xdc_c00113{left:344.400000px;}
.x88_c00113{left:346.350000px;}
.x6a_c00113{left:348.900000px;}
.x81_c00113{left:350.550000px;}
.xb_c00113{left:352.350000px;}
.xe3_c00113{left:354.750000px;}
.x53_c00113{left:359.700000px;}
.xf2_c00113{left:362.550000px;}
.xcb_c00113{left:363.600000px;}
.xfb_c00113{left:365.250000px;}
.x114_c00113{left:366.450000px;}
.x45_c00113{left:367.500000px;}
.xd4_c00113{left:369.000000px;}
.x92_c00113{left:371.850000px;}
.x60_c00113{left:374.850000px;}
.xa4_c00113{left:376.200000px;}
.x1_c00113{left:377.700000px;}
.x82_c00113{left:379.350000px;}
.x1c_c00113{left:380.550000px;}
.xec_c00113{left:381.750000px;}
.x76_c00113{left:383.250000px;}
.x113_c00113{left:384.600000px;}
.xe6_c00113{left:386.100000px;}
.xd5_c00113{left:390.300000px;}
.xe0_c00113{left:391.500000px;}
.x108_c00113{left:393.000000px;}
.x46_c00113{left:395.550000px;}
.xed_c00113{left:396.900000px;}
.xc_c00113{left:398.400000px;}
.x77_c00113{left:400.200000px;}
.x9c_c00113{left:401.700000px;}
.x54_c00113{left:406.050000px;}
.x38_c00113{left:408.300000px;}
.xdd_c00113{left:409.650000px;}
.xac_c00113{left:411.600000px;}
.x103_c00113{left:412.650000px;}
.x2b_c00113{left:413.700000px;}
.x47_c00113{left:415.650000px;}
.x1d_c00113{left:417.600000px;}
.x106_c00113{left:418.800000px;}
.xe7_c00113{left:420.000000px;}
.xbf_c00113{left:421.950000px;}
.xfc_c00113{left:423.600000px;}
.xff_c00113{left:424.800000px;}
.xde_c00113{left:425.850000px;}
.x6b_c00113{left:427.050000px;}
.x9d_c00113{left:430.200000px;}
.x10d_c00113{left:431.850000px;}
.x2c_c00113{left:434.250000px;}
.x1e_c00113{left:437.400000px;}
.xd9_c00113{left:439.050000px;}
.x83_c00113{left:440.850000px;}
.x111_c00113{left:442.200000px;}
.x48_c00113{left:444.750000px;}
.xf9_c00113{left:446.700000px;}
.xd_c00113{left:448.500000px;}
.xb5_c00113{left:450.600000px;}
.x55_c00113{left:452.100000px;}
.x61_c00113{left:453.600000px;}
.xd6_c00113{left:456.900000px;}
.xc0_c00113{left:459.450000px;}
.x39_c00113{left:461.550000px;}
.x78_c00113{left:463.650000px;}
.xcc_c00113{left:466.650000px;}
.x12e_c00113{left:468.150000px;}
.x2d_c00113{left:469.200000px;}
.xad_c00113{left:470.700000px;}
.x6c_c00113{left:473.550000px;}
.xe_c00113{left:476.550000px;}
.x2_c00113{left:480.600000px;}
.xb6_c00113{left:481.950000px;}
.x56_c00113{left:483.450000px;}
.x93_c00113{left:485.550000px;}
.xa5_c00113{left:487.800000px;}
.x119_c00113{left:490.350000px;}
.x3a_c00113{left:493.200000px;}
.x149_c00113{left:495.600000px;}
.x89_c00113{left:497.850000px;}
.x62_c00113{left:498.900000px;}
.x146_c00113{left:499.950000px;}
.x13b_c00113{left:502.050000px;}
.x3_c00113{left:503.250000px;}
.xae_c00113{left:504.600000px;}
.x14b_c00113{left:505.950000px;}
.x84_c00113{left:507.750000px;}
.x137_c00113{left:509.700000px;}
.x49_c00113{left:512.100000px;}
.x1f_c00113{left:513.750000px;}
.x8a_c00113{left:515.850000px;}
.x11f_c00113{left:517.650000px;}
.x11a_c00113{left:520.650000px;}
.xf_c00113{left:522.600000px;}
.xc6_c00113{left:524.550000px;}
.x13c_c00113{left:525.750000px;}
.xc1_c00113{left:528.600000px;}
.x13d_c00113{left:529.650000px;}
.x94_c00113{left:530.850000px;}
.xaf_c00113{left:532.350000px;}
.x145_c00113{left:534.000000px;}
.xcd_c00113{left:535.800000px;}
.x10_c00113{left:539.550000px;}
.xb7_c00113{left:541.350000px;}
.x20_c00113{left:542.550000px;}
.x2e_c00113{left:543.750000px;}
.x120_c00113{left:544.950000px;}
.x140_c00113{left:548.250000px;}
.x12f_c00113{left:549.600000px;}
.x130_c00113{left:552.300000px;}
.x79_c00113{left:553.350000px;}
.x6d_c00113{left:555.000000px;}
.xce_c00113{left:556.350000px;}
.x3b_c00113{left:557.700000px;}
.x142_c00113{left:559.950000px;}
.x63_c00113{left:562.200000px;}
.x11b_c00113{left:564.900000px;}
.x8b_c00113{left:565.950000px;}
.x57_c00113{left:567.300000px;}
.xcf_c00113{left:571.050000px;}
.x9e_c00113{left:575.400000px;}
.x95_c00113{left:577.350000px;}
.x131_c00113{left:579.900000px;}
.x123_c00113{left:580.950000px;}
.xb0_c00113{left:582.000000px;}
.x2f_c00113{left:583.350000px;}
.x13e_c00113{left:585.750000px;}
.xa6_c00113{left:587.550000px;}
.x138_c00113{left:588.900000px;}
.x11_c00113{left:593.850000px;}
.x133_c00113{left:597.600000px;}
.x96_c00113{left:598.650000px;}
.x12a_c00113{left:600.600000px;}
.x64_c00113{left:602.100000px;}
.x4a_c00113{left:604.500000px;}
.x21_c00113{left:606.600000px;}
.x8c_c00113{left:608.100000px;}
.x12b_c00113{left:610.650000px;}
.x134_c00113{left:613.050000px;}
.x11c_c00113{left:615.600000px;}
.x58_c00113{left:616.650000px;}
.xa7_c00113{left:618.150000px;}
.x6e_c00113{left:623.700000px;}
.x139_c00113{left:625.200000px;}
.x8d_c00113{left:628.200000px;}
.x30_c00113{left:631.200000px;}
.x4b_c00113{left:632.250000px;}
.x3c_c00113{left:634.050000px;}
.x59_c00113{left:636.450000px;}
.xc7_c00113{left:637.650000px;}
.xb8_c00113{left:640.650000px;}
.x12_c00113{left:642.450000px;}
.x6f_c00113{left:643.500000px;}
.x143_c00113{left:646.050000px;}
.x127_c00113{left:648.450000px;}
.x14c_c00113{left:650.700000px;}
.x9f_c00113{left:654.900000px;}
.x8e_c00113{left:656.250000px;}
.xd7_c00113{left:659.100000px;}
.x22_c00113{left:660.600000px;}
.x5a_c00113{left:661.950000px;}
.x7a_c00113{left:664.350000px;}
.x97_c00113{left:667.050000px;}
.x4c_c00113{left:669.750000px;}
.xb9_c00113{left:671.550000px;}
.x147_c00113{left:672.900000px;}
.x65_c00113{left:675.150000px;}
.x132_c00113{left:676.200000px;}
.x148_c00113{left:679.500000px;}
.x13_c00113{left:680.550000px;}
.x126_c00113{left:682.500000px;}
.xd0_c00113{left:684.750000px;}
.x23_c00113{left:686.550000px;}
.x14e_c00113{left:688.650000px;}
.x3d_c00113{left:689.850000px;}
.xc8_c00113{left:691.650000px;}
.x7b_c00113{left:692.850000px;}
.x31_c00113{left:694.500000px;}
.x66_c00113{left:698.250000px;}
.x98_c00113{left:699.450000px;}
.x70_c00113{left:700.800000px;}
.x5b_c00113{left:704.100000px;}
.x14_c00113{left:706.050000px;}
.x13a_c00113{left:707.700000px;}
.x14d_c00113{left:709.650000px;}
.x3e_c00113{left:711.150000px;}
.xc2_c00113{left:712.650000px;}
.x4d_c00113{left:714.750000px;}
.x14f_c00113{left:715.950000px;}
.x13f_c00113{left:717.150000px;}
.x124_c00113{left:719.250000px;}
.x8f_c00113{left:721.050000px;}
.x32_c00113{left:723.300000px;}
.x14a_c00113{left:726.000000px;}
.x67_c00113{left:727.050000px;}
.x71_c00113{left:728.850000px;}
.x128_c00113{left:730.500000px;}
.x24_c00113{left:731.550000px;}
.x11d_c00113{left:732.900000px;}
.x99_c00113{left:733.950000px;}
.x121_c00113{left:735.000000px;}
.x3f_c00113{left:736.050000px;}
.x12c_c00113{left:737.850000px;}
.xba_c00113{left:739.950000px;}
.xb1_c00113{left:742.350000px;}
.x135_c00113{left:743.400000px;}
.xa0_c00113{left:747.150000px;}
.x125_c00113{left:749.100000px;}
.xc9_c00113{left:750.300000px;}
.x15_c00113{left:751.350000px;}
.x12d_c00113{left:752.550000px;}
.x141_c00113{left:755.250000px;}
.xd1_c00113{left:757.050000px;}
.x122_c00113{left:759.150000px;}
.x25_c00113{left:760.350000px;}
.x11e_c00113{left:761.400000px;}
.x129_c00113{left:762.600000px;}
.x136_c00113{left:765.300000px;}
.x7c_c00113{left:766.950000px;}
.xb2_c00113{left:768.300000px;}
.xc3_c00113{left:770.550000px;}
.x16_c00113{left:772.650000px;}
.x4_c00113{left:775.800000px;}
.x40_c00113{left:780.000000px;}
.x144_c00113{left:782.850000px;}
.xb3_c00113{left:787.350000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws6_c00113{word-spacing:-2.962963pt;}
.wsc_c00113{word-spacing:0.000000pt;}
.ws5_c00113{word-spacing:0.507937pt;}
.ws9_c00113{word-spacing:1.846154pt;}
.ws1_c00113{word-spacing:2.777778pt;}
.ws7_c00113{word-spacing:5.444444pt;}
.ws3_c00113{word-spacing:6.888889pt;}
.wsb_c00113{word-spacing:8.296296pt;}
.wsa_c00113{word-spacing:10.202899pt;}
.ws2_c00113{word-spacing:11.259259pt;}
.ws8_c00113{word-spacing:11.469534pt;}
.ws0_c00113{word-spacing:12.222222pt;}
.ws4_c00113{word-spacing:26.370370pt;}
.fs0_c00113{font-size:42.666667pt;}
.fs1_c00113{font-size:53.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y33_c00113{bottom:125.200000pt;}
.y44_c00113{bottom:125.333333pt;}
.y32_c00113{bottom:139.333333pt;}
.y43_c00113{bottom:139.466667pt;}
.y42_c00113{bottom:153.200000pt;}
.y31_c00113{bottom:153.466667pt;}
.y30_c00113{bottom:167.200000pt;}
.y41_c00113{bottom:167.333333pt;}
.y2f_c00113{bottom:181.333333pt;}
.y40_c00113{bottom:181.466667pt;}
.y2e_c00113{bottom:194.800000pt;}
.y3f_c00113{bottom:195.200000pt;}
.y2d_c00113{bottom:208.933333pt;}
.y2c_c00113{bottom:223.066667pt;}
.y2b_c00113{bottom:237.200000pt;}
.y2a_c00113{bottom:250.933333pt;}
.y3e_c00113{bottom:264.666667pt;}
.y29_c00113{bottom:265.066667pt;}
.y3d_c00113{bottom:278.533333pt;}
.y28_c00113{bottom:278.800000pt;}
.y27_c00113{bottom:292.533333pt;}
.y3c_c00113{bottom:292.666667pt;}
.y26_c00113{bottom:306.000000pt;}
.y3b_c00113{bottom:306.800000pt;}
.y25_c00113{bottom:320.400000pt;}
.y3a_c00113{bottom:320.533333pt;}
.y24_c00113{bottom:334.533333pt;}
.y39_c00113{bottom:334.666667pt;}
.y23_c00113{bottom:348.000000pt;}
.y38_c00113{bottom:348.800000pt;}
.y22_c00113{bottom:362.133333pt;}
.y37_c00113{bottom:362.533333pt;}
.y21_c00113{bottom:375.866667pt;}
.y36_c00113{bottom:376.266667pt;}
.y20_c00113{bottom:390.000000pt;}
.y1f_c00113{bottom:403.733333pt;}
.y1e_c00113{bottom:417.466667pt;}
.y35_c00113{bottom:417.866667pt;}
.y1d_c00113{bottom:431.600000pt;}
.y1c_c00113{bottom:445.333333pt;}
.y1b_c00113{bottom:459.466667pt;}
.y34_c00113{bottom:473.200000pt;}
.y1a_c00113{bottom:473.600000pt;}
.y19_c00113{bottom:487.333333pt;}
.y18_c00113{bottom:501.066667pt;}
.y17_c00113{bottom:537.333333pt;}
.y16_c00113{bottom:555.200000pt;}
.y15_c00113{bottom:573.066667pt;}
.y14_c00113{bottom:590.666667pt;}
.y13_c00113{bottom:608.800000pt;}
.y12_c00113{bottom:626.666667pt;}
.y11_c00113{bottom:644.266667pt;}
.y10_c00113{bottom:662.133333pt;}
.yf_c00113{bottom:679.733333pt;}
.ye_c00113{bottom:697.333333pt;}
.yd_c00113{bottom:714.933333pt;}
.yc_c00113{bottom:733.066667pt;}
.yb_c00113{bottom:750.933333pt;}
.ya_c00113{bottom:768.533333pt;}
.y9_c00113{bottom:786.400000pt;}
.y8_c00113{bottom:804.000000pt;}
.y7_c00113{bottom:821.600000pt;}
.y6_c00113{bottom:839.466667pt;}
.y5_c00113{bottom:857.066667pt;}
.y4_c00113{bottom:874.933333pt;}
.y3_c00113{bottom:892.533333pt;}
.y2_c00113{bottom:926.400000pt;}
.y1_c00113{bottom:927.333333pt;}
.h2_c00113{height:42.666667pt;}
.h3_c00113{height:53.333333pt;}
.h1_c00113{height:1038.000000pt;}
.h0_c00113{height:1038.079997pt;}
.w1_c00113{width:818.000000pt;}
.w0_c00113{width:818.239991pt;}
.x0_c00113{left:0.000000pt;}
.x33_c00113{left:111.066667pt;}
.x5_c00113{left:112.000000pt;}
.xf6_c00113{left:113.200000pt;}
.xe8_c00113{left:128.000000pt;}
.xf3_c00113{left:128.933333pt;}
.x41_c00113{left:130.133333pt;}
.x115_c00113{left:131.466667pt;}
.xfd_c00113{left:133.333333pt;}
.xd2_c00113{left:135.066667pt;}
.x109_c00113{left:136.266667pt;}
.xc4_c00113{left:138.666667pt;}
.x7d_c00113{left:140.400000pt;}
.xca_c00113{left:141.466667pt;}
.x5c_c00113{left:144.000000pt;}
.x17_c00113{left:145.333333pt;}
.x10a_c00113{left:148.133333pt;}
.x72_c00113{left:150.000000pt;}
.xa8_c00113{left:151.200000pt;}
.x10e_c00113{left:153.066667pt;}
.xb4_c00113{left:154.533333pt;}
.xa1_c00113{left:156.266667pt;}
.xe1_c00113{left:158.800000pt;}
.x4e_c00113{left:160.800000pt;}
.xd3_c00113{left:162.266667pt;}
.x116_c00113{left:165.066667pt;}
.x5d_c00113{left:166.133333pt;}
.xf0_c00113{left:167.466667pt;}
.x6_c00113{left:168.933333pt;}
.xda_c00113{left:170.133333pt;}
.xfa_c00113{left:171.333333pt;}
.x18_c00113{left:172.533333pt;}
.x34_c00113{left:173.733333pt;}
.xe9_c00113{left:175.066667pt;}
.xa9_c00113{left:176.533333pt;}
.x4f_c00113{left:178.666667pt;}
.xf7_c00113{left:180.133333pt;}
.xa2_c00113{left:182.800000pt;}
.xbb_c00113{left:183.733333pt;}
.x7_c00113{left:185.200000pt;}
.xf1_c00113{left:186.933333pt;}
.x26_c00113{left:187.866667pt;}
.xe4_c00113{left:188.933333pt;}
.xee_c00113{left:190.266667pt;}
.xf4_c00113{left:191.733333pt;}
.x19_c00113{left:195.200000pt;}
.x7e_c00113{left:196.666667pt;}
.x10b_c00113{left:198.400000pt;}
.x10f_c00113{left:200.133333pt;}
.xe2_c00113{left:201.066667pt;}
.x50_c00113{left:203.600000pt;}
.x85_c00113{left:206.400000pt;}
.xbc_c00113{left:207.333333pt;}
.x27_c00113{left:208.400000pt;}
.x9a_c00113{left:211.733333pt;}
.x73_c00113{left:213.333333pt;}
.x42_c00113{left:214.666667pt;}
.x8_c00113{left:217.200000pt;}
.x107_c00113{left:219.200000pt;}
.x100_c00113{left:220.533333pt;}
.xaa_c00113{left:221.600000pt;}
.xa3_c00113{left:223.066667pt;}
.x117_c00113{left:224.533333pt;}
.x68_c00113{left:225.866667pt;}
.x35_c00113{left:226.933333pt;}
.x74_c00113{left:228.400000pt;}
.x7f_c00113{left:230.266667pt;}
.xf5_c00113{left:231.333333pt;}
.x86_c00113{left:233.600000pt;}
.xea_c00113{left:234.666667pt;}
.x28_c00113{left:235.600000pt;}
.x90_c00113{left:237.466667pt;}
.x104_c00113{left:238.933333pt;}
.x1a_c00113{left:240.000000pt;}
.xbd_c00113{left:240.933333pt;}
.x51_c00113{left:242.933333pt;}
.x9_c00113{left:244.666667pt;}
.xef_c00113{left:246.133333pt;}
.xdf_c00113{left:247.866667pt;}
.x75_c00113{left:250.800000pt;}
.x36_c00113{left:252.800000pt;}
.x9b_c00113{left:254.000000pt;}
.xf8_c00113{left:255.600000pt;}
.x101_c00113{left:257.333333pt;}
.x1b_c00113{left:258.266667pt;}
.x5e_c00113{left:259.200000pt;}
.x52_c00113{left:260.533333pt;}
.x80_c00113{left:262.000000pt;}
.x43_c00113{left:263.600000pt;}
.x87_c00113{left:265.866667pt;}
.x112_c00113{left:267.333333pt;}
.x91_c00113{left:268.800000pt;}
.x29_c00113{left:269.866667pt;}
.xa_c00113{left:270.933333pt;}
.xd8_c00113{left:271.866667pt;}
.x102_c00113{left:275.866667pt;}
.xbe_c00113{left:276.800000pt;}
.xab_c00113{left:279.200000pt;}
.xe5_c00113{left:280.133333pt;}
.xdb_c00113{left:282.133333pt;}
.x69_c00113{left:283.200000pt;}
.xc5_c00113{left:285.333333pt;}
.xeb_c00113{left:286.266667pt;}
.xfe_c00113{left:287.200000pt;}
.x118_c00113{left:289.333333pt;}
.x10c_c00113{left:291.200000pt;}
.x44_c00113{left:292.400000pt;}
.x5f_c00113{left:295.066667pt;}
.x105_c00113{left:297.066667pt;}
.x110_c00113{left:298.000000pt;}
.x37_c00113{left:299.866667pt;}
.x2a_c00113{left:301.866667pt;}
.xdc_c00113{left:306.133333pt;}
.x88_c00113{left:307.866667pt;}
.x6a_c00113{left:310.133333pt;}
.x81_c00113{left:311.600000pt;}
.xb_c00113{left:313.200000pt;}
.xe3_c00113{left:315.333333pt;}
.x53_c00113{left:319.733333pt;}
.xf2_c00113{left:322.266667pt;}
.xcb_c00113{left:323.200000pt;}
.xfb_c00113{left:324.666667pt;}
.x114_c00113{left:325.733333pt;}
.x45_c00113{left:326.666667pt;}
.xd4_c00113{left:328.000000pt;}
.x92_c00113{left:330.533333pt;}
.x60_c00113{left:333.200000pt;}
.xa4_c00113{left:334.400000pt;}
.x1_c00113{left:335.733333pt;}
.x82_c00113{left:337.200000pt;}
.x1c_c00113{left:338.266667pt;}
.xec_c00113{left:339.333333pt;}
.x76_c00113{left:340.666667pt;}
.x113_c00113{left:341.866667pt;}
.xe6_c00113{left:343.200000pt;}
.xd5_c00113{left:346.933333pt;}
.xe0_c00113{left:348.000000pt;}
.x108_c00113{left:349.333333pt;}
.x46_c00113{left:351.600000pt;}
.xed_c00113{left:352.800000pt;}
.xc_c00113{left:354.133333pt;}
.x77_c00113{left:355.733333pt;}
.x9c_c00113{left:357.066667pt;}
.x54_c00113{left:360.933333pt;}
.x38_c00113{left:362.933333pt;}
.xdd_c00113{left:364.133333pt;}
.xac_c00113{left:365.866667pt;}
.x103_c00113{left:366.800000pt;}
.x2b_c00113{left:367.733333pt;}
.x47_c00113{left:369.466667pt;}
.x1d_c00113{left:371.200000pt;}
.x106_c00113{left:372.266667pt;}
.xe7_c00113{left:373.333333pt;}
.xbf_c00113{left:375.066667pt;}
.xfc_c00113{left:376.533333pt;}
.xff_c00113{left:377.600000pt;}
.xde_c00113{left:378.533333pt;}
.x6b_c00113{left:379.600000pt;}
.x9d_c00113{left:382.400000pt;}
.x10d_c00113{left:383.866667pt;}
.x2c_c00113{left:386.000000pt;}
.x1e_c00113{left:388.800000pt;}
.xd9_c00113{left:390.266667pt;}
.x83_c00113{left:391.866667pt;}
.x111_c00113{left:393.066667pt;}
.x48_c00113{left:395.333333pt;}
.xf9_c00113{left:397.066667pt;}
.xd_c00113{left:398.666667pt;}
.xb5_c00113{left:400.533333pt;}
.x55_c00113{left:401.866667pt;}
.x61_c00113{left:403.200000pt;}
.xd6_c00113{left:406.133333pt;}
.xc0_c00113{left:408.400000pt;}
.x39_c00113{left:410.266667pt;}
.x78_c00113{left:412.133333pt;}
.xcc_c00113{left:414.800000pt;}
.x12e_c00113{left:416.133333pt;}
.x2d_c00113{left:417.066667pt;}
.xad_c00113{left:418.400000pt;}
.x6c_c00113{left:420.933333pt;}
.xe_c00113{left:423.600000pt;}
.x2_c00113{left:427.200000pt;}
.xb6_c00113{left:428.400000pt;}
.x56_c00113{left:429.733333pt;}
.x93_c00113{left:431.600000pt;}
.xa5_c00113{left:433.600000pt;}
.x119_c00113{left:435.866667pt;}
.x3a_c00113{left:438.400000pt;}
.x149_c00113{left:440.533333pt;}
.x89_c00113{left:442.533333pt;}
.x62_c00113{left:443.466667pt;}
.x146_c00113{left:444.400000pt;}
.x13b_c00113{left:446.266667pt;}
.x3_c00113{left:447.333333pt;}
.xae_c00113{left:448.533333pt;}
.x14b_c00113{left:449.733333pt;}
.x84_c00113{left:451.333333pt;}
.x137_c00113{left:453.066667pt;}
.x49_c00113{left:455.200000pt;}
.x1f_c00113{left:456.666667pt;}
.x8a_c00113{left:458.533333pt;}
.x11f_c00113{left:460.133333pt;}
.x11a_c00113{left:462.800000pt;}
.xf_c00113{left:464.533333pt;}
.xc6_c00113{left:466.266667pt;}
.x13c_c00113{left:467.333333pt;}
.xc1_c00113{left:469.866667pt;}
.x13d_c00113{left:470.800000pt;}
.x94_c00113{left:471.866667pt;}
.xaf_c00113{left:473.200000pt;}
.x145_c00113{left:474.666667pt;}
.xcd_c00113{left:476.266667pt;}
.x10_c00113{left:479.600000pt;}
.xb7_c00113{left:481.200000pt;}
.x20_c00113{left:482.266667pt;}
.x2e_c00113{left:483.333333pt;}
.x120_c00113{left:484.400000pt;}
.x140_c00113{left:487.333333pt;}
.x12f_c00113{left:488.533333pt;}
.x130_c00113{left:490.933333pt;}
.x79_c00113{left:491.866667pt;}
.x6d_c00113{left:493.333333pt;}
.xce_c00113{left:494.533333pt;}
.x3b_c00113{left:495.733333pt;}
.x142_c00113{left:497.733333pt;}
.x63_c00113{left:499.733333pt;}
.x11b_c00113{left:502.133333pt;}
.x8b_c00113{left:503.066667pt;}
.x57_c00113{left:504.266667pt;}
.xcf_c00113{left:507.600000pt;}
.x9e_c00113{left:511.466667pt;}
.x95_c00113{left:513.200000pt;}
.x131_c00113{left:515.466667pt;}
.x123_c00113{left:516.400000pt;}
.xb0_c00113{left:517.333333pt;}
.x2f_c00113{left:518.533333pt;}
.x13e_c00113{left:520.666667pt;}
.xa6_c00113{left:522.266667pt;}
.x138_c00113{left:523.466667pt;}
.x11_c00113{left:527.866667pt;}
.x133_c00113{left:531.200000pt;}
.x96_c00113{left:532.133333pt;}
.x12a_c00113{left:533.866667pt;}
.x64_c00113{left:535.200000pt;}
.x4a_c00113{left:537.333333pt;}
.x21_c00113{left:539.200000pt;}
.x8c_c00113{left:540.533333pt;}
.x12b_c00113{left:542.800000pt;}
.x134_c00113{left:544.933333pt;}
.x11c_c00113{left:547.200000pt;}
.x58_c00113{left:548.133333pt;}
.xa7_c00113{left:549.466667pt;}
.x6e_c00113{left:554.400000pt;}
.x139_c00113{left:555.733333pt;}
.x8d_c00113{left:558.400000pt;}
.x30_c00113{left:561.066667pt;}
.x4b_c00113{left:562.000000pt;}
.x3c_c00113{left:563.600000pt;}
.x59_c00113{left:565.733333pt;}
.xc7_c00113{left:566.800000pt;}
.xb8_c00113{left:569.466667pt;}
.x12_c00113{left:571.066667pt;}
.x6f_c00113{left:572.000000pt;}
.x143_c00113{left:574.266667pt;}
.x127_c00113{left:576.400000pt;}
.x14c_c00113{left:578.400000pt;}
.x9f_c00113{left:582.133333pt;}
.x8e_c00113{left:583.333333pt;}
.xd7_c00113{left:585.866667pt;}
.x22_c00113{left:587.200000pt;}
.x5a_c00113{left:588.400000pt;}
.x7a_c00113{left:590.533333pt;}
.x97_c00113{left:592.933333pt;}
.x4c_c00113{left:595.333333pt;}
.xb9_c00113{left:596.933333pt;}
.x147_c00113{left:598.133333pt;}
.x65_c00113{left:600.133333pt;}
.x132_c00113{left:601.066667pt;}
.x148_c00113{left:604.000000pt;}
.x13_c00113{left:604.933333pt;}
.x126_c00113{left:606.666667pt;}
.xd0_c00113{left:608.666667pt;}
.x23_c00113{left:610.266667pt;}
.x14e_c00113{left:612.133333pt;}
.x3d_c00113{left:613.200000pt;}
.xc8_c00113{left:614.800000pt;}
.x7b_c00113{left:615.866667pt;}
.x31_c00113{left:617.333333pt;}
.x66_c00113{left:620.666667pt;}
.x98_c00113{left:621.733333pt;}
.x70_c00113{left:622.933333pt;}
.x5b_c00113{left:625.866667pt;}
.x14_c00113{left:627.600000pt;}
.x13a_c00113{left:629.066667pt;}
.x14d_c00113{left:630.800000pt;}
.x3e_c00113{left:632.133333pt;}
.xc2_c00113{left:633.466667pt;}
.x4d_c00113{left:635.333333pt;}
.x14f_c00113{left:636.400000pt;}
.x13f_c00113{left:637.466667pt;}
.x124_c00113{left:639.333333pt;}
.x8f_c00113{left:640.933333pt;}
.x32_c00113{left:642.933333pt;}
.x14a_c00113{left:645.333333pt;}
.x67_c00113{left:646.266667pt;}
.x71_c00113{left:647.866667pt;}
.x128_c00113{left:649.333333pt;}
.x24_c00113{left:650.266667pt;}
.x11d_c00113{left:651.466667pt;}
.x99_c00113{left:652.400000pt;}
.x121_c00113{left:653.333333pt;}
.x3f_c00113{left:654.266667pt;}
.x12c_c00113{left:655.866667pt;}
.xba_c00113{left:657.733333pt;}
.xb1_c00113{left:659.866667pt;}
.x135_c00113{left:660.800000pt;}
.xa0_c00113{left:664.133333pt;}
.x125_c00113{left:665.866667pt;}
.xc9_c00113{left:666.933333pt;}
.x15_c00113{left:667.866667pt;}
.x12d_c00113{left:668.933333pt;}
.x141_c00113{left:671.333333pt;}
.xd1_c00113{left:672.933333pt;}
.x122_c00113{left:674.800000pt;}
.x25_c00113{left:675.866667pt;}
.x11e_c00113{left:676.800000pt;}
.x129_c00113{left:677.866667pt;}
.x136_c00113{left:680.266667pt;}
.x7c_c00113{left:681.733333pt;}
.xb2_c00113{left:682.933333pt;}
.xc3_c00113{left:684.933333pt;}
.x16_c00113{left:686.800000pt;}
.x4_c00113{left:689.600000pt;}
.x40_c00113{left:693.333333pt;}
.x144_c00113{left:695.866667pt;}
.xb3_c00113{left:699.866667pt;}
}





/* 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_c00114 {
    display:none;
  }
  .loading-indicator_c00114.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00114 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_c00114 { 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_c00114" -> "#page-container .classname_c00114")
 */
.pf_c00114 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00114 { /* 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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00114 { /* 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_c00114 { /* 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_c00114 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00114 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00114 {overflow:visible;}
  }
}
.c_c00114 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00114 { /* 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_c00114:after { /* webkit #35443 */
  content: '';
}
.t_c00114:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00114 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 */
}
.__c00114 { /* 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_c00114 { /* info for Javascript */
  display:none;
}
.l_c00114 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00114 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00114 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00114: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_c00114 {
    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_c00114.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00114.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_c00114 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00114{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00114;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.000000;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;}
.m60_c00114{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00114{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mac_c00114{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00114{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00114{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00114{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m18_c00114{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00114{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m61_c00114{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00114{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00114{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00114{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m79_c00114{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m87_c00114{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00114{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00114{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m53_c00114{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00114{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00114{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mab_c00114{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00114{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00114{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m97_c00114{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m52_c00114{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00114{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00114{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m94_c00114{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mad_c00114{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00114{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00114{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m43_c00114{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00114{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m75_c00114{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00114{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m38_c00114{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00114{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m13_c00114{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00114{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m77_c00114{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00114{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00114{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m32_c00114{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00114{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00114{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00114{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00114{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maa_c00114{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00114{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00114{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00114{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m29_c00114{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m99_c00114{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00114{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m45_c00114{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.me_c00114{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m69_c00114{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m19_c00114{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00114{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m27_c00114{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m14_c00114{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00114{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m56_c00114{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m11_c00114{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m31_c00114{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m89_c00114{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00114{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00114{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00114{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m50_c00114{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00114{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00114{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m15_c00114{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m83_c00114{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m86_c00114{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4_c00114{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00114{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00114{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m70_c00114{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00114{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m34_c00114{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00114{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00114{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m21_c00114{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00114{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00114{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m65_c00114{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00114{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00114{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m73_c00114{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m71_c00114{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb_c00114{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00114{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m48_c00114{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00114{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00114{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m88_c00114{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m46_c00114{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m49_c00114{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00114{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00114{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00114{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m47_c00114{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.md_c00114{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m78_c00114{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m20_c00114{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00114{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma_c00114{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m33_c00114{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00114{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m72_c00114{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m10_c00114{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00114{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m92_c00114{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m62_c00114{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m81_c00114{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3_c00114{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m57_c00114{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00114{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00114{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m76_c00114{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00114{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m54_c00114{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m39_c00114{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m91_c00114{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m35_c00114{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00114{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5_c00114{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00114{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23_c00114{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m40_c00114{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00114{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m64_c00114{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m96_c00114{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00114{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m82_c00114{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2_c00114{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m36_c00114{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00114{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m28_c00114{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m55_c00114{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00114{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00114{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m22_c00114{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m9_c00114{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00114{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m80_c00114{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6_c00114{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00114{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00114{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m85_c00114{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m66_c00114{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m42_c00114{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00114{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m44_c00114{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00114{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00114{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m59_c00114{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m90_c00114{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m63_c00114{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00114{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00114{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00114{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00114{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m95_c00114{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m93_c00114{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m16_c00114{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m98_c00114{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m12_c00114{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m84_c00114{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m51_c00114{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m67_c00114{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00114{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00114{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00114{vertical-align:0.000000px;}
.ls0_c00114{letter-spacing:0.000000px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{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__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00114{word-spacing:-16.250000px;}
.ws4_c00114{word-spacing:-6.666667px;}
.ws5_c00114{word-spacing:-2.857143px;}
.wsc_c00114{word-spacing:-1.805556px;}
.wsf_c00114{word-spacing:0.000000px;}
.wsa_c00114{word-spacing:0.277778px;}
.ws8_c00114{word-spacing:1.578947px;}
.wsb_c00114{word-spacing:1.666667px;}
.ws0_c00114{word-spacing:3.125000px;}
.ws3_c00114{word-spacing:6.527778px;}
.ws2_c00114{word-spacing:7.500000px;}
.ws7_c00114{word-spacing:11.515152px;}
.ws9_c00114{word-spacing:12.205882px;}
.ws6_c00114{word-spacing:14.629630px;}
.wse_c00114{word-spacing:15.833333px;}
.ws1_c00114{word-spacing:18.055556px;}
.fc0_c00114{color:transparent;}
.fs0_c00114{font-size:60.000000px;}
.y0_c00114{bottom:0.000000px;}
.y2d_c00114{bottom:153.000000px;}
.y2c_c00114{bottom:168.450000px;}
.y2b_c00114{bottom:184.650000px;}
.y2a_c00114{bottom:200.100000px;}
.y29_c00114{bottom:216.000000px;}
.y28_c00114{bottom:252.300000px;}
.y27_c00114{bottom:272.100000px;}
.y26_c00114{bottom:292.200000px;}
.y25_c00114{bottom:312.300000px;}
.y24_c00114{bottom:332.400000px;}
.y23_c00114{bottom:351.900000px;}
.y22_c00114{bottom:372.000000px;}
.y21_c00114{bottom:392.100000px;}
.y20_c00114{bottom:412.650000px;}
.y1f_c00114{bottom:432.750000px;}
.y1e_c00114{bottom:452.550000px;}
.y1d_c00114{bottom:472.350000px;}
.y1c_c00114{bottom:492.900000px;}
.y1b_c00114{bottom:512.700000px;}
.y1a_c00114{bottom:532.800000px;}
.y19_c00114{bottom:552.600000px;}
.y18_c00114{bottom:572.400000px;}
.y17_c00114{bottom:591.900000px;}
.y16_c00114{bottom:612.000000px;}
.y15_c00114{bottom:631.800000px;}
.y14_c00114{bottom:651.600000px;}
.y13_c00114{bottom:671.700000px;}
.y12_c00114{bottom:691.650000px;}
.y11_c00114{bottom:711.750000px;}
.y10_c00114{bottom:731.550000px;}
.yf_c00114{bottom:751.350000px;}
.ye_c00114{bottom:771.750000px;}
.yd_c00114{bottom:791.850000px;}
.yc_c00114{bottom:811.650000px;}
.yb_c00114{bottom:831.450000px;}
.ya_c00114{bottom:851.250000px;}
.y9_c00114{bottom:871.350000px;}
.y8_c00114{bottom:891.450000px;}
.y7_c00114{bottom:912.000000px;}
.y6_c00114{bottom:932.100000px;}
.y5_c00114{bottom:951.900000px;}
.y4_c00114{bottom:972.000000px;}
.y3_c00114{bottom:991.050000px;}
.y2_c00114{bottom:1011.900000px;}
.y1_c00114{bottom:1050.150000px;}
.h2_c00114{height:60.000000px;}
.h1_c00114{height:1167.750000px;}
.h0_c00114{height:1167.839997px;}
.w1_c00114{width:920.250000px;}
.w0_c00114{width:920.519990px;}
.x0_c00114{left:0.000000px;}
.x11e_c00114{left:132.750000px;}
.xf0_c00114{left:134.100000px;}
.xc9_c00114{left:135.150000px;}
.x54_c00114{left:136.200000px;}
.x22_c00114{left:137.250000px;}
.x1_c00114{left:138.600000px;}
.x141_c00114{left:150.150000px;}
.x13d_c00114{left:153.000000px;}
.x49_c00114{left:154.350000px;}
.xb7_c00114{left:156.450000px;}
.x62_c00114{left:158.550000px;}
.xa2_c00114{left:162.150000px;}
.xd1_c00114{left:163.350000px;}
.x142_c00114{left:164.850000px;}
.x82_c00114{left:166.050000px;}
.xae_c00114{left:167.400000px;}
.x14_c00114{left:168.900000px;}
.x32_c00114{left:172.200000px;}
.x55_c00114{left:173.250000px;}
.xf1_c00114{left:174.750000px;}
.x6b_c00114{left:176.100000px;}
.x10_c00114{left:177.150000px;}
.x137_c00114{left:181.800000px;}
.x130_c00114{left:182.850000px;}
.xaf_c00114{left:184.650000px;}
.x3_c00114{left:185.700000px;}
.x76_c00114{left:187.500000px;}
.x23_c00114{left:190.200000px;}
.x4a_c00114{left:191.400000px;}
.x56_c00114{left:194.100000px;}
.x15_c00114{left:195.600000px;}
.x11_c00114{left:196.950000px;}
.x14a_c00114{left:198.000000px;}
.xb0_c00114{left:200.100000px;}
.x3f_c00114{left:202.050000px;}
.x118_c00114{left:203.550000px;}
.x99_c00114{left:207.150000px;}
.x6c_c00114{left:209.250000px;}
.x57_c00114{left:211.350000px;}
.x24_c00114{left:212.550000px;}
.xe5_c00114{left:215.250000px;}
.xbf_c00114{left:217.200000px;}
.x8d_c00114{left:219.000000px;}
.x127_c00114{left:221.100000px;}
.x146_c00114{left:222.750000px;}
.x12_c00114{left:225.000000px;}
.xa3_c00114{left:226.200000px;}
.x16_c00114{left:227.250000px;}
.x33_c00114{left:228.300000px;}
.xad_c00114{left:229.350000px;}
.x83_c00114{left:230.400000px;}
.x138_c00114{left:231.450000px;}
.x40_c00114{left:233.400000px;}
.xd2_c00114{left:235.050000px;}
.x4_c00114{left:236.850000px;}
.x25_c00114{left:238.800000px;}
.x14d_c00114{left:240.150000px;}
.x112_c00114{left:241.800000px;}
.xb1_c00114{left:242.850000px;}
.x105_c00114{left:246.600000px;}
.xca_c00114{left:249.150000px;}
.x4b_c00114{left:253.200000px;}
.xb8_c00114{left:254.700000px;}
.x9a_c00114{left:257.850000px;}
.x131_c00114{left:258.900000px;}
.x8e_c00114{left:261.000000px;}
.x11f_c00114{left:262.050000px;}
.x41_c00114{left:263.700000px;}
.xe6_c00114{left:267.450000px;}
.x58_c00114{left:268.950000px;}
.xc0_c00114{left:270.150000px;}
.x34_c00114{left:271.200000px;}
.x84_c00114{left:273.300000px;}
.x143_c00114{left:277.350000px;}
.x17_c00114{left:279.450000px;}
.xe1_c00114{left:283.650000px;}
.xf2_c00114{left:285.300000px;}
.x5_c00114{left:286.500000px;}
.x8f_c00114{left:288.750000px;}
.x13_c00114{left:290.100000px;}
.xf8_c00114{left:291.750000px;}
.x10b_c00114{left:293.550000px;}
.xa4_c00114{left:294.600000px;}
.x26_c00114{left:297.900000px;}
.x42_c00114{left:298.950000px;}
.x59_c00114{left:301.350000px;}
.x128_c00114{left:302.400000px;}
.x120_c00114{left:304.500000px;}
.xcb_c00114{left:306.450000px;}
.xfe_c00114{left:308.100000px;}
.x6d_c00114{left:310.050000px;}
.xd9_c00114{left:311.700000px;}
.x144_c00114{left:313.050000px;}
.x10c_c00114{left:315.900000px;}
.xec_c00114{left:317.400000px;}
.x43_c00114{left:319.500000px;}
.x129_c00114{left:321.900000px;}
.xa5_c00114{left:323.400000px;}
.x27_c00114{left:324.900000px;}
.x113_c00114{left:326.400000px;}
.x9b_c00114{left:328.350000px;}
.x35_c00114{left:329.850000px;}
.xcc_c00114{left:330.900000px;}
.x77_c00114{left:334.350000px;}
.x63_c00114{left:338.850000px;}
.x90_c00114{left:341.250000px;}
.x4c_c00114{left:343.500000px;}
.x6_c00114{left:345.900000px;}
.xb9_c00114{left:347.250000px;}
.xff_c00114{left:348.450000px;}
.xe7_c00114{left:349.800000px;}
.x106_c00114{left:351.750000px;}
.xda_c00114{left:353.850000px;}
.x119_c00114{left:355.050000px;}
.xd3_c00114{left:356.700000px;}
.x36_c00114{left:358.350000px;}
.xb2_c00114{left:359.550000px;}
.x121_c00114{left:361.650000px;}
.x4d_c00114{left:363.600000px;}
.x139_c00114{left:365.250000px;}
.x9c_c00114{left:366.450000px;}
.xe2_c00114{left:367.500000px;}
.x12a_c00114{left:368.700000px;}
.x132_c00114{left:370.800000px;}
.x91_c00114{left:372.600000px;}
.xdb_c00114{left:373.650000px;}
.x100_c00114{left:375.450000px;}
.x5a_c00114{left:378.450000px;}
.x28_c00114{left:379.650000px;}
.xc1_c00114{left:381.000000px;}
.x7_c00114{left:384.450000px;}
.xf9_c00114{left:385.500000px;}
.x18_c00114{left:388.950000px;}
.x85_c00114{left:390.300000px;}
.x6e_c00114{left:391.500000px;}
.x4e_c00114{left:392.700000px;}
.x10d_c00114{left:394.350000px;}
.x9d_c00114{left:396.750000px;}
.xcd_c00114{left:399.600000px;}
.xba_c00114{left:401.250000px;}
.x122_c00114{left:404.100000px;}
.x8_c00114{left:407.100000px;}
.x14b_c00114{left:409.200000px;}
.x92_c00114{left:410.400000px;}
.x114_c00114{left:411.600000px;}
.x86_c00114{left:412.650000px;}
.xb3_c00114{left:414.600000px;}
.xfa_c00114{left:416.100000px;}
.x9e_c00114{left:418.050000px;}
.x29_c00114{left:420.300000px;}
.x44_c00114{left:422.850000px;}
.x78_c00114{left:424.350000px;}
.x64_c00114{left:426.000000px;}
.x19_c00114{left:427.500000px;}
.xb4_c00114{left:431.550000px;}
.x37_c00114{left:434.250000px;}
.x2_c00114{left:435.300000px;}
.x9_c00114{left:438.000000px;}
.xa6_c00114{left:439.500000px;}
.x45_c00114{left:441.150000px;}
.x6f_c00114{left:444.000000px;}
.x93_c00114{left:446.700000px;}
.x12b_c00114{left:450.750000px;}
.xd4_c00114{left:452.100000px;}
.xfb_c00114{left:454.950000px;}
.x133_c00114{left:457.800000px;}
.xdc_c00114{left:459.000000px;}
.xed_c00114{left:460.950000px;}
.xf3_c00114{left:462.000000px;}
.x5b_c00114{left:463.350000px;}
.x79_c00114{left:464.700000px;}
.x38_c00114{left:466.950000px;}
.x12c_c00114{left:470.550000px;}
.x70_c00114{left:472.800000px;}
.x11a_c00114{left:474.300000px;}
.xb5_c00114{left:475.500000px;}
.x145_c00114{left:477.600000px;}
.xe8_c00114{left:479.100000px;}
.xce_c00114{left:480.600000px;}
.xc2_c00114{left:481.800000px;}
.xdd_c00114{left:484.200000px;}
.x5c_c00114{left:486.750000px;}
.xa_c00114{left:488.100000px;}
.x2a_c00114{left:489.450000px;}
.x1a_c00114{left:493.350000px;}
.x10e_c00114{left:494.850000px;}
.x101_c00114{left:496.050000px;}
.x65_c00114{left:497.250000px;}
.xb6_c00114{left:498.900000px;}
.xc3_c00114{left:501.900000px;}
.x134_c00114{left:503.850000px;}
.x71_c00114{left:505.500000px;}
.x2b_c00114{left:507.750000px;}
.x147_c00114{left:509.550000px;}
.x1b_c00114{left:510.600000px;}
.x10f_c00114{left:512.550000px;}
.x11b_c00114{left:513.600000px;}
.x13a_c00114{left:514.950000px;}
.xd5_c00114{left:517.200000px;}
.xb_c00114{left:521.550000px;}
.x7a_c00114{left:525.600000px;}
.x46_c00114{left:527.550000px;}
.xc4_c00114{left:529.650000px;}
.x115_c00114{left:531.750000px;}
.x39_c00114{left:533.250000px;}
.x102_c00114{left:534.900000px;}
.xbb_c00114{left:536.550000px;}
.xde_c00114{left:538.650000px;}
.x1c_c00114{left:541.200000px;}
.x2c_c00114{left:544.050000px;}
.xf4_c00114{left:548.100000px;}
.xfc_c00114{left:549.300000px;}
.x94_c00114{left:550.650000px;}
.x4f_c00114{left:553.200000px;}
.xe9_c00114{left:554.700000px;}
.xdf_c00114{left:556.350000px;}
.x9f_c00114{left:559.950000px;}
.x7b_c00114{left:562.350000px;}
.x13e_c00114{left:564.600000px;}
.x87_c00114{left:567.150000px;}
.xcf_c00114{left:568.500000px;}
.xa7_c00114{left:571.200000px;}
.x3a_c00114{left:572.850000px;}
.x1d_c00114{left:575.400000px;}
.xbc_c00114{left:576.450000px;}
.x148_c00114{left:577.500000px;}
.xc_c00114{left:579.150000px;}
.x95_c00114{left:581.550000px;}
.x13b_c00114{left:582.600000px;}
.x107_c00114{left:583.800000px;}
.x50_c00114{left:584.850000px;}
.xa8_c00114{left:588.150000px;}
.x2d_c00114{left:589.350000px;}
.xfd_c00114{left:591.000000px;}
.x72_c00114{left:593.400000px;}
.xc5_c00114{left:595.650000px;}
.x66_c00114{left:597.300000px;}
.x116_c00114{left:598.350000px;}
.x5d_c00114{left:599.400000px;}
.x51_c00114{left:602.100000px;}
.x7c_c00114{left:607.650000px;}
.x12d_c00114{left:608.700000px;}
.x2e_c00114{left:610.650000px;}
.x110_c00114{left:614.700000px;}
.x123_c00114{left:617.400000px;}
.x47_c00114{left:618.750000px;}
.xa9_c00114{left:620.850000px;}
.xa0_c00114{left:621.900000px;}
.xc6_c00114{left:623.700000px;}
.x103_c00114{left:624.900000px;}
.x88_c00114{left:628.350000px;}
.xd6_c00114{left:629.850000px;}
.x5e_c00114{left:633.300000px;}
.x73_c00114{left:634.500000px;}
.xbd_c00114{left:636.450000px;}
.xe3_c00114{left:637.500000px;}
.x7d_c00114{left:641.550000px;}
.x3b_c00114{left:643.050000px;}
.xe0_c00114{left:645.000000px;}
.x67_c00114{left:646.950000px;}
.x1e_c00114{left:648.150000px;}
.x89_c00114{left:651.750000px;}
.x124_c00114{left:654.150000px;}
.xd_c00114{left:657.600000px;}
.x111_c00114{left:659.700000px;}
.x11c_c00114{left:660.900000px;}
.xaa_c00114{left:661.950000px;}
.x74_c00114{left:663.000000px;}
.xd7_c00114{left:666.600000px;}
.x13f_c00114{left:667.650000px;}
.x5f_c00114{left:669.000000px;}
.x108_c00114{left:670.200000px;}
.xc7_c00114{left:671.250000px;}
.xea_c00114{left:674.550000px;}
.x96_c00114{left:676.650000px;}
.x2f_c00114{left:678.300000px;}
.x1f_c00114{left:680.850000px;}
.x8a_c00114{left:682.350000px;}
.x13c_c00114{left:683.850000px;}
.xbe_c00114{left:686.100000px;}
.xf5_c00114{left:689.250000px;}
.xc8_c00114{left:691.350000px;}
.x109_c00114{left:692.550000px;}
.xab_c00114{left:693.600000px;}
.x125_c00114{left:694.800000px;}
.x68_c00114{left:696.300000px;}
.x30_c00114{left:698.100000px;}
.x3c_c00114{left:702.150000px;}
.x117_c00114{left:704.100000px;}
.xa1_c00114{left:705.450000px;}
.x75_c00114{left:706.500000px;}
.xe_c00114{left:708.000000px;}
.x7e_c00114{left:711.000000px;}
.x52_c00114{left:712.200000px;}
.x12e_c00114{left:714.900000px;}
.x149_c00114{left:716.100000px;}
.xee_c00114{left:717.600000px;}
.x140_c00114{left:718.800000px;}
.x10a_c00114{left:720.300000px;}
.x97_c00114{left:721.650000px;}
.x11d_c00114{left:726.450000px;}
.x3d_c00114{left:728.100000px;}
.xf6_c00114{left:729.600000px;}
.x104_c00114{left:731.100000px;}
.x12f_c00114{left:732.600000px;}
.x48_c00114{left:733.950000px;}
.x31_c00114{left:735.600000px;}
.xd0_c00114{left:737.250000px;}
.x60_c00114{left:739.200000px;}
.x7f_c00114{left:741.300000px;}
.x14c_c00114{left:743.400000px;}
.x3e_c00114{left:747.150000px;}
.x20_c00114{left:750.750000px;}
.x69_c00114{left:752.100000px;}
.x8b_c00114{left:755.100000px;}
.xf7_c00114{left:756.600000px;}
.x126_c00114{left:759.300000px;}
.x135_c00114{left:760.350000px;}
.xeb_c00114{left:762.000000px;}
.x80_c00114{left:763.650000px;}
.x98_c00114{left:764.850000px;}
.x61_c00114{left:767.250000px;}
.x6a_c00114{left:771.900000px;}
.xef_c00114{left:774.150000px;}
.x136_c00114{left:775.800000px;}
.xf_c00114{left:777.150000px;}
.x8c_c00114{left:778.500000px;}
.xe4_c00114{left:779.700000px;}
.x53_c00114{left:781.350000px;}
.xd8_c00114{left:783.150000px;}
.x21_c00114{left:784.200000px;}
.xac_c00114{left:790.800000px;}
.x81_c00114{left:792.450000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.wsd_c00114{word-spacing:-14.444444pt;}
.ws4_c00114{word-spacing:-5.925926pt;}
.ws5_c00114{word-spacing:-2.539683pt;}
.wsc_c00114{word-spacing:-1.604938pt;}
.wsf_c00114{word-spacing:0.000000pt;}
.wsa_c00114{word-spacing:0.246914pt;}
.ws8_c00114{word-spacing:1.403509pt;}
.wsb_c00114{word-spacing:1.481481pt;}
.ws0_c00114{word-spacing:2.777778pt;}
.ws3_c00114{word-spacing:5.802469pt;}
.ws2_c00114{word-spacing:6.666667pt;}
.ws7_c00114{word-spacing:10.235690pt;}
.ws9_c00114{word-spacing:10.849673pt;}
.ws6_c00114{word-spacing:13.004115pt;}
.wse_c00114{word-spacing:14.074074pt;}
.ws1_c00114{word-spacing:16.049383pt;}
.fs0_c00114{font-size:53.333333pt;}
.y0_c00114{bottom:0.000000pt;}
.y2d_c00114{bottom:136.000000pt;}
.y2c_c00114{bottom:149.733333pt;}
.y2b_c00114{bottom:164.133333pt;}
.y2a_c00114{bottom:177.866667pt;}
.y29_c00114{bottom:192.000000pt;}
.y28_c00114{bottom:224.266667pt;}
.y27_c00114{bottom:241.866667pt;}
.y26_c00114{bottom:259.733333pt;}
.y25_c00114{bottom:277.600000pt;}
.y24_c00114{bottom:295.466667pt;}
.y23_c00114{bottom:312.800000pt;}
.y22_c00114{bottom:330.666667pt;}
.y21_c00114{bottom:348.533333pt;}
.y20_c00114{bottom:366.800000pt;}
.y1f_c00114{bottom:384.666667pt;}
.y1e_c00114{bottom:402.266667pt;}
.y1d_c00114{bottom:419.866667pt;}
.y1c_c00114{bottom:438.133333pt;}
.y1b_c00114{bottom:455.733333pt;}
.y1a_c00114{bottom:473.600000pt;}
.y19_c00114{bottom:491.200000pt;}
.y18_c00114{bottom:508.800000pt;}
.y17_c00114{bottom:526.133333pt;}
.y16_c00114{bottom:544.000000pt;}
.y15_c00114{bottom:561.600000pt;}
.y14_c00114{bottom:579.200000pt;}
.y13_c00114{bottom:597.066667pt;}
.y12_c00114{bottom:614.800000pt;}
.y11_c00114{bottom:632.666667pt;}
.y10_c00114{bottom:650.266667pt;}
.yf_c00114{bottom:667.866667pt;}
.ye_c00114{bottom:686.000000pt;}
.yd_c00114{bottom:703.866667pt;}
.yc_c00114{bottom:721.466667pt;}
.yb_c00114{bottom:739.066667pt;}
.ya_c00114{bottom:756.666667pt;}
.y9_c00114{bottom:774.533333pt;}
.y8_c00114{bottom:792.400000pt;}
.y7_c00114{bottom:810.666667pt;}
.y6_c00114{bottom:828.533333pt;}
.y5_c00114{bottom:846.133333pt;}
.y4_c00114{bottom:864.000000pt;}
.y3_c00114{bottom:880.933333pt;}
.y2_c00114{bottom:899.466667pt;}
.y1_c00114{bottom:933.466667pt;}
.h2_c00114{height:53.333333pt;}
.h1_c00114{height:1038.000000pt;}
.h0_c00114{height:1038.079997pt;}
.w1_c00114{width:818.000000pt;}
.w0_c00114{width:818.239991pt;}
.x0_c00114{left:0.000000pt;}
.x11e_c00114{left:118.000000pt;}
.xf0_c00114{left:119.200000pt;}
.xc9_c00114{left:120.133333pt;}
.x54_c00114{left:121.066667pt;}
.x22_c00114{left:122.000000pt;}
.x1_c00114{left:123.200000pt;}
.x141_c00114{left:133.466667pt;}
.x13d_c00114{left:136.000000pt;}
.x49_c00114{left:137.200000pt;}
.xb7_c00114{left:139.066667pt;}
.x62_c00114{left:140.933333pt;}
.xa2_c00114{left:144.133333pt;}
.xd1_c00114{left:145.200000pt;}
.x142_c00114{left:146.533333pt;}
.x82_c00114{left:147.600000pt;}
.xae_c00114{left:148.800000pt;}
.x14_c00114{left:150.133333pt;}
.x32_c00114{left:153.066667pt;}
.x55_c00114{left:154.000000pt;}
.xf1_c00114{left:155.333333pt;}
.x6b_c00114{left:156.533333pt;}
.x10_c00114{left:157.466667pt;}
.x137_c00114{left:161.600000pt;}
.x130_c00114{left:162.533333pt;}
.xaf_c00114{left:164.133333pt;}
.x3_c00114{left:165.066667pt;}
.x76_c00114{left:166.666667pt;}
.x23_c00114{left:169.066667pt;}
.x4a_c00114{left:170.133333pt;}
.x56_c00114{left:172.533333pt;}
.x15_c00114{left:173.866667pt;}
.x11_c00114{left:175.066667pt;}
.x14a_c00114{left:176.000000pt;}
.xb0_c00114{left:177.866667pt;}
.x3f_c00114{left:179.600000pt;}
.x118_c00114{left:180.933333pt;}
.x99_c00114{left:184.133333pt;}
.x6c_c00114{left:186.000000pt;}
.x57_c00114{left:187.866667pt;}
.x24_c00114{left:188.933333pt;}
.xe5_c00114{left:191.333333pt;}
.xbf_c00114{left:193.066667pt;}
.x8d_c00114{left:194.666667pt;}
.x127_c00114{left:196.533333pt;}
.x146_c00114{left:198.000000pt;}
.x12_c00114{left:200.000000pt;}
.xa3_c00114{left:201.066667pt;}
.x16_c00114{left:202.000000pt;}
.x33_c00114{left:202.933333pt;}
.xad_c00114{left:203.866667pt;}
.x83_c00114{left:204.800000pt;}
.x138_c00114{left:205.733333pt;}
.x40_c00114{left:207.466667pt;}
.xd2_c00114{left:208.933333pt;}
.x4_c00114{left:210.533333pt;}
.x25_c00114{left:212.266667pt;}
.x14d_c00114{left:213.466667pt;}
.x112_c00114{left:214.933333pt;}
.xb1_c00114{left:215.866667pt;}
.x105_c00114{left:219.200000pt;}
.xca_c00114{left:221.466667pt;}
.x4b_c00114{left:225.066667pt;}
.xb8_c00114{left:226.400000pt;}
.x9a_c00114{left:229.200000pt;}
.x131_c00114{left:230.133333pt;}
.x8e_c00114{left:232.000000pt;}
.x11f_c00114{left:232.933333pt;}
.x41_c00114{left:234.400000pt;}
.xe6_c00114{left:237.733333pt;}
.x58_c00114{left:239.066667pt;}
.xc0_c00114{left:240.133333pt;}
.x34_c00114{left:241.066667pt;}
.x84_c00114{left:242.933333pt;}
.x143_c00114{left:246.533333pt;}
.x17_c00114{left:248.400000pt;}
.xe1_c00114{left:252.133333pt;}
.xf2_c00114{left:253.600000pt;}
.x5_c00114{left:254.666667pt;}
.x8f_c00114{left:256.666667pt;}
.x13_c00114{left:257.866667pt;}
.xf8_c00114{left:259.333333pt;}
.x10b_c00114{left:260.933333pt;}
.xa4_c00114{left:261.866667pt;}
.x26_c00114{left:264.800000pt;}
.x42_c00114{left:265.733333pt;}
.x59_c00114{left:267.866667pt;}
.x128_c00114{left:268.800000pt;}
.x120_c00114{left:270.666667pt;}
.xcb_c00114{left:272.400000pt;}
.xfe_c00114{left:273.866667pt;}
.x6d_c00114{left:275.600000pt;}
.xd9_c00114{left:277.066667pt;}
.x144_c00114{left:278.266667pt;}
.x10c_c00114{left:280.800000pt;}
.xec_c00114{left:282.133333pt;}
.x43_c00114{left:284.000000pt;}
.x129_c00114{left:286.133333pt;}
.xa5_c00114{left:287.466667pt;}
.x27_c00114{left:288.800000pt;}
.x113_c00114{left:290.133333pt;}
.x9b_c00114{left:291.866667pt;}
.x35_c00114{left:293.200000pt;}
.xcc_c00114{left:294.133333pt;}
.x77_c00114{left:297.200000pt;}
.x63_c00114{left:301.200000pt;}
.x90_c00114{left:303.333333pt;}
.x4c_c00114{left:305.333333pt;}
.x6_c00114{left:307.466667pt;}
.xb9_c00114{left:308.666667pt;}
.xff_c00114{left:309.733333pt;}
.xe7_c00114{left:310.933333pt;}
.x106_c00114{left:312.666667pt;}
.xda_c00114{left:314.533333pt;}
.x119_c00114{left:315.600000pt;}
.xd3_c00114{left:317.066667pt;}
.x36_c00114{left:318.533333pt;}
.xb2_c00114{left:319.600000pt;}
.x121_c00114{left:321.466667pt;}
.x4d_c00114{left:323.200000pt;}
.x139_c00114{left:324.666667pt;}
.x9c_c00114{left:325.733333pt;}
.xe2_c00114{left:326.666667pt;}
.x12a_c00114{left:327.733333pt;}
.x132_c00114{left:329.600000pt;}
.x91_c00114{left:331.200000pt;}
.xdb_c00114{left:332.133333pt;}
.x100_c00114{left:333.733333pt;}
.x5a_c00114{left:336.400000pt;}
.x28_c00114{left:337.466667pt;}
.xc1_c00114{left:338.666667pt;}
.x7_c00114{left:341.733333pt;}
.xf9_c00114{left:342.666667pt;}
.x18_c00114{left:345.733333pt;}
.x85_c00114{left:346.933333pt;}
.x6e_c00114{left:348.000000pt;}
.x4e_c00114{left:349.066667pt;}
.x10d_c00114{left:350.533333pt;}
.x9d_c00114{left:352.666667pt;}
.xcd_c00114{left:355.200000pt;}
.xba_c00114{left:356.666667pt;}
.x122_c00114{left:359.200000pt;}
.x8_c00114{left:361.866667pt;}
.x14b_c00114{left:363.733333pt;}
.x92_c00114{left:364.800000pt;}
.x114_c00114{left:365.866667pt;}
.x86_c00114{left:366.800000pt;}
.xb3_c00114{left:368.533333pt;}
.xfa_c00114{left:369.866667pt;}
.x9e_c00114{left:371.600000pt;}
.x29_c00114{left:373.600000pt;}
.x44_c00114{left:375.866667pt;}
.x78_c00114{left:377.200000pt;}
.x64_c00114{left:378.666667pt;}
.x19_c00114{left:380.000000pt;}
.xb4_c00114{left:383.600000pt;}
.x37_c00114{left:386.000000pt;}
.x2_c00114{left:386.933333pt;}
.x9_c00114{left:389.333333pt;}
.xa6_c00114{left:390.666667pt;}
.x45_c00114{left:392.133333pt;}
.x6f_c00114{left:394.666667pt;}
.x93_c00114{left:397.066667pt;}
.x12b_c00114{left:400.666667pt;}
.xd4_c00114{left:401.866667pt;}
.xfb_c00114{left:404.400000pt;}
.x133_c00114{left:406.933333pt;}
.xdc_c00114{left:408.000000pt;}
.xed_c00114{left:409.733333pt;}
.xf3_c00114{left:410.666667pt;}
.x5b_c00114{left:411.866667pt;}
.x79_c00114{left:413.066667pt;}
.x38_c00114{left:415.066667pt;}
.x12c_c00114{left:418.266667pt;}
.x70_c00114{left:420.266667pt;}
.x11a_c00114{left:421.600000pt;}
.xb5_c00114{left:422.666667pt;}
.x145_c00114{left:424.533333pt;}
.xe8_c00114{left:425.866667pt;}
.xce_c00114{left:427.200000pt;}
.xc2_c00114{left:428.266667pt;}
.xdd_c00114{left:430.400000pt;}
.x5c_c00114{left:432.666667pt;}
.xa_c00114{left:433.866667pt;}
.x2a_c00114{left:435.066667pt;}
.x1a_c00114{left:438.533333pt;}
.x10e_c00114{left:439.866667pt;}
.x101_c00114{left:440.933333pt;}
.x65_c00114{left:442.000000pt;}
.xb6_c00114{left:443.466667pt;}
.xc3_c00114{left:446.133333pt;}
.x134_c00114{left:447.866667pt;}
.x71_c00114{left:449.333333pt;}
.x2b_c00114{left:451.333333pt;}
.x147_c00114{left:452.933333pt;}
.x1b_c00114{left:453.866667pt;}
.x10f_c00114{left:455.600000pt;}
.x11b_c00114{left:456.533333pt;}
.x13a_c00114{left:457.733333pt;}
.xd5_c00114{left:459.733333pt;}
.xb_c00114{left:463.600000pt;}
.x7a_c00114{left:467.200000pt;}
.x46_c00114{left:468.933333pt;}
.xc4_c00114{left:470.800000pt;}
.x115_c00114{left:472.666667pt;}
.x39_c00114{left:474.000000pt;}
.x102_c00114{left:475.466667pt;}
.xbb_c00114{left:476.933333pt;}
.xde_c00114{left:478.800000pt;}
.x1c_c00114{left:481.066667pt;}
.x2c_c00114{left:483.600000pt;}
.xf4_c00114{left:487.200000pt;}
.xfc_c00114{left:488.266667pt;}
.x94_c00114{left:489.466667pt;}
.x4f_c00114{left:491.733333pt;}
.xe9_c00114{left:493.066667pt;}
.xdf_c00114{left:494.533333pt;}
.x9f_c00114{left:497.733333pt;}
.x7b_c00114{left:499.866667pt;}
.x13e_c00114{left:501.866667pt;}
.x87_c00114{left:504.133333pt;}
.xcf_c00114{left:505.333333pt;}
.xa7_c00114{left:507.733333pt;}
.x3a_c00114{left:509.200000pt;}
.x1d_c00114{left:511.466667pt;}
.xbc_c00114{left:512.400000pt;}
.x148_c00114{left:513.333333pt;}
.xc_c00114{left:514.800000pt;}
.x95_c00114{left:516.933333pt;}
.x13b_c00114{left:517.866667pt;}
.x107_c00114{left:518.933333pt;}
.x50_c00114{left:519.866667pt;}
.xa8_c00114{left:522.800000pt;}
.x2d_c00114{left:523.866667pt;}
.xfd_c00114{left:525.333333pt;}
.x72_c00114{left:527.466667pt;}
.xc5_c00114{left:529.466667pt;}
.x66_c00114{left:530.933333pt;}
.x116_c00114{left:531.866667pt;}
.x5d_c00114{left:532.800000pt;}
.x51_c00114{left:535.200000pt;}
.x7c_c00114{left:540.133333pt;}
.x12d_c00114{left:541.066667pt;}
.x2e_c00114{left:542.800000pt;}
.x110_c00114{left:546.400000pt;}
.x123_c00114{left:548.800000pt;}
.x47_c00114{left:550.000000pt;}
.xa9_c00114{left:551.866667pt;}
.xa0_c00114{left:552.800000pt;}
.xc6_c00114{left:554.400000pt;}
.x103_c00114{left:555.466667pt;}
.x88_c00114{left:558.533333pt;}
.xd6_c00114{left:559.866667pt;}
.x5e_c00114{left:562.933333pt;}
.x73_c00114{left:564.000000pt;}
.xbd_c00114{left:565.733333pt;}
.xe3_c00114{left:566.666667pt;}
.x7d_c00114{left:570.266667pt;}
.x3b_c00114{left:571.600000pt;}
.xe0_c00114{left:573.333333pt;}
.x67_c00114{left:575.066667pt;}
.x1e_c00114{left:576.133333pt;}
.x89_c00114{left:579.333333pt;}
.x124_c00114{left:581.466667pt;}
.xd_c00114{left:584.533333pt;}
.x111_c00114{left:586.400000pt;}
.x11c_c00114{left:587.466667pt;}
.xaa_c00114{left:588.400000pt;}
.x74_c00114{left:589.333333pt;}
.xd7_c00114{left:592.533333pt;}
.x13f_c00114{left:593.466667pt;}
.x5f_c00114{left:594.666667pt;}
.x108_c00114{left:595.733333pt;}
.xc7_c00114{left:596.666667pt;}
.xea_c00114{left:599.600000pt;}
.x96_c00114{left:601.466667pt;}
.x2f_c00114{left:602.933333pt;}
.x1f_c00114{left:605.200000pt;}
.x8a_c00114{left:606.533333pt;}
.x13c_c00114{left:607.866667pt;}
.xbe_c00114{left:609.866667pt;}
.xf5_c00114{left:612.666667pt;}
.xc8_c00114{left:614.533333pt;}
.x109_c00114{left:615.600000pt;}
.xab_c00114{left:616.533333pt;}
.x125_c00114{left:617.600000pt;}
.x68_c00114{left:618.933333pt;}
.x30_c00114{left:620.533333pt;}
.x3c_c00114{left:624.133333pt;}
.x117_c00114{left:625.866667pt;}
.xa1_c00114{left:627.066667pt;}
.x75_c00114{left:628.000000pt;}
.xe_c00114{left:629.333333pt;}
.x7e_c00114{left:632.000000pt;}
.x52_c00114{left:633.066667pt;}
.x12e_c00114{left:635.466667pt;}
.x149_c00114{left:636.533333pt;}
.xee_c00114{left:637.866667pt;}
.x140_c00114{left:638.933333pt;}
.x10a_c00114{left:640.266667pt;}
.x97_c00114{left:641.466667pt;}
.x11d_c00114{left:645.733333pt;}
.x3d_c00114{left:647.200000pt;}
.xf6_c00114{left:648.533333pt;}
.x104_c00114{left:649.866667pt;}
.x12f_c00114{left:651.200000pt;}
.x48_c00114{left:652.400000pt;}
.x31_c00114{left:653.866667pt;}
.xd0_c00114{left:655.333333pt;}
.x60_c00114{left:657.066667pt;}
.x7f_c00114{left:658.933333pt;}
.x14c_c00114{left:660.800000pt;}
.x3e_c00114{left:664.133333pt;}
.x20_c00114{left:667.333333pt;}
.x69_c00114{left:668.533333pt;}
.x8b_c00114{left:671.200000pt;}
.xf7_c00114{left:672.533333pt;}
.x126_c00114{left:674.933333pt;}
.x135_c00114{left:675.866667pt;}
.xeb_c00114{left:677.333333pt;}
.x80_c00114{left:678.800000pt;}
.x98_c00114{left:679.866667pt;}
.x61_c00114{left:682.000000pt;}
.x6a_c00114{left:686.133333pt;}
.xef_c00114{left:688.133333pt;}
.x136_c00114{left:689.600000pt;}
.xf_c00114{left:690.800000pt;}
.x8c_c00114{left:692.000000pt;}
.xe4_c00114{left:693.066667pt;}
.x53_c00114{left:694.533333pt;}
.xd8_c00114{left:696.133333pt;}
.x21_c00114{left:697.066667pt;}
.xac_c00114{left:702.933333pt;}
.x81_c00114{left:704.400000pt;}
}





/* 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_c00115 {
    display:none;
  }
  .loading-indicator_c00115.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00115 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_c00115 { 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_c00115" -> "#page-container .classname_c00115")
 */
.pf_c00115 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00115 { /* 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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00115 { /* 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_c00115 { /* 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_c00115 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00115 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00115 {overflow:visible;}
  }
}
.c_c00115 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00115 { /* 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_c00115:after { /* webkit #35443 */
  content: '';
}
.t_c00115:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00115 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 */
}
.__c00115 { /* 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_c00115 { /* info for Javascript */
  display:none;
}
.l_c00115 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00115 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00115 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00115: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_c00115 {
    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_c00115.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00115.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_c00115 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00115{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00115;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.000000;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;}
.m84_c00115{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00115{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00115{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.maa_c00115{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00115{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00115{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00115{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00115{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.maf_c00115{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00115{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00115{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00115{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m52_c00115{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00115{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m22_c00115{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00115{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mab_c00115{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00115{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m55_c00115{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00115{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00115{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mae_c00115{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00115{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m49_c00115{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m39_c00115{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m25_c00115{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9_c00115{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m83_c00115{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00115{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m72_c00115{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mac_c00115{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m42_c00115{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m99_c00115{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00115{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m37_c00115{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m68_c00115{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00115{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00115{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m43_c00115{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00115{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00115{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00115{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m92_c00115{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m48_c00115{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m65_c00115{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00115{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m87_c00115{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00115{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00115{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00115{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m90_c00115{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00115{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00115{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m94_c00115{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00115{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00115{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00115{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mad_c00115{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00115{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m32_c00115{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00115{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m82_c00115{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6_c00115{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m15_c00115{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m89_c00115{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m30_c00115{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m24_c00115{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m57_c00115{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma_c00115{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m96_c00115{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m23_c00115{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m74_c00115{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m20_c00115{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00115{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m63_c00115{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8_c00115{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00115{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00115{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m60_c00115{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31_c00115{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00115{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m16_c00115{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00115{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m46_c00115{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m71_c00115{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m64_c00115{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m10_c00115{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m12_c00115{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00115{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m70_c00115{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m93_c00115{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00115{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m47_c00115{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00115{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m81_c00115{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00115{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m77_c00115{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00115{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m98_c00115{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.md_c00115{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00115{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00115{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m35_c00115{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m91_c00115{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00115{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00115{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00115{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11_c00115{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m44_c00115{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00115{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m88_c00115{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m41_c00115{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00115{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m69_c00115{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m36_c00115{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m45_c00115{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m53_c00115{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m54_c00115{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00115{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m73_c00115{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00115{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m51_c00115{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m38_c00115{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00115{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00115{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00115{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00115{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m97_c00115{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m14_c00115{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00115{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00115{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00115{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21_c00115{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m19_c00115{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00115{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00115{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00115{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m28_c00115{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00115{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00115{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m80_c00115{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00115{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00115{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m75_c00115{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m76_c00115{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m29_c00115{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m79_c00115{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00115{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00115{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m18_c00115{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00115{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mf_c00115{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m33_c00115{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m26_c00115{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m56_c00115{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00115{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00115{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m40_c00115{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m59_c00115{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00115{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m78_c00115{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m95_c00115{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00115{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00115{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m66_c00115{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m34_c00115{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m50_c00115{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00115{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m85_c00115{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00115{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00115{vertical-align:0.000000px;}
.ls0_c00115{letter-spacing:0.000000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{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__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00115{word-spacing:-11.527778px;}
.ws6_c00115{word-spacing:-8.671875px;}
.ws2_c00115{word-spacing:-4.861111px;}
.ws3_c00115{word-spacing:-3.472222px;}
.ws5_c00115{word-spacing:-3.194444px;}
.ws4_c00115{word-spacing:-0.238095px;}
.wsc_c00115{word-spacing:0.000000px;}
.ws1_c00115{word-spacing:1.666667px;}
.wsa_c00115{word-spacing:2.109375px;}
.ws0_c00115{word-spacing:2.727273px;}
.ws9_c00115{word-spacing:3.125000px;}
.wsb_c00115{word-spacing:5.441176px;}
.ws7_c00115{word-spacing:10.735294px;}
.fc0_c00115{color:transparent;}
.fs0_c00115{font-size:54.000000px;}
.fs1_c00115{font-size:60.000000px;}
.y0_c00115{bottom:0.000000px;}
.y2b_c00115{bottom:163.500000px;}
.y2a_c00115{bottom:178.950000px;}
.y29_c00115{bottom:194.400000px;}
.y28_c00115{bottom:239.100000px;}
.y27_c00115{bottom:259.650000px;}
.y26_c00115{bottom:279.150000px;}
.y25_c00115{bottom:298.950000px;}
.y24_c00115{bottom:319.050000px;}
.y23_c00115{bottom:339.150000px;}
.y22_c00115{bottom:359.250000px;}
.y21_c00115{bottom:379.050000px;}
.y20_c00115{bottom:399.150000px;}
.y1f_c00115{bottom:419.250000px;}
.y1e_c00115{bottom:439.350000px;}
.y1d_c00115{bottom:459.150000px;}
.y1c_c00115{bottom:478.950000px;}
.y1b_c00115{bottom:498.750000px;}
.y1a_c00115{bottom:518.850000px;}
.y19_c00115{bottom:538.950000px;}
.y18_c00115{bottom:559.050000px;}
.y17_c00115{bottom:578.850000px;}
.y16_c00115{bottom:598.650000px;}
.y15_c00115{bottom:619.200000px;}
.y14_c00115{bottom:639.300000px;}
.y13_c00115{bottom:659.100000px;}
.y12_c00115{bottom:679.200000px;}
.y11_c00115{bottom:699.300000px;}
.y10_c00115{bottom:719.100000px;}
.yf_c00115{bottom:739.200000px;}
.ye_c00115{bottom:759.000000px;}
.yd_c00115{bottom:779.100000px;}
.yc_c00115{bottom:799.200000px;}
.yb_c00115{bottom:819.000000px;}
.ya_c00115{bottom:839.100000px;}
.y9_c00115{bottom:859.200000px;}
.y8_c00115{bottom:879.300000px;}
.y7_c00115{bottom:899.400000px;}
.y6_c00115{bottom:919.200000px;}
.y5_c00115{bottom:939.300000px;}
.y4_c00115{bottom:959.400000px;}
.y3_c00115{bottom:979.200000px;}
.y2_c00115{bottom:999.300000px;}
.y1_c00115{bottom:1038.300000px;}
.h2_c00115{height:54.000000px;}
.h3_c00115{height:60.000000px;}
.h1_c00115{height:1167.750000px;}
.h0_c00115{height:1167.839997px;}
.w1_c00115{width:920.250000px;}
.w0_c00115{width:920.519990px;}
.x0_c00115{left:0.000000px;}
.x5_c00115{left:108.750000px;}
.x23_c00115{left:109.800000px;}
.xfa_c00115{left:111.150000px;}
.xd2_c00115{left:127.500000px;}
.x131_c00115{left:128.850000px;}
.x24_c00115{left:130.650000px;}
.x4c_c00115{left:133.200000px;}
.x13_c00115{left:134.700000px;}
.x62_c00115{left:137.250000px;}
.xbd_c00115{left:139.500000px;}
.x3e_c00115{left:141.450000px;}
.xa4_c00115{left:142.500000px;}
.x114_c00115{left:143.550000px;}
.xae_c00115{left:144.900000px;}
.x135_c00115{left:147.300000px;}
.x86_c00115{left:148.950000px;}
.x6_c00115{left:151.200000px;}
.xb5_c00115{left:154.800000px;}
.x3f_c00115{left:156.900000px;}
.xbe_c00115{left:158.250000px;}
.x97_c00115{left:160.350000px;}
.x6b_c00115{left:161.700000px;}
.x32_c00115{left:163.650000px;}
.x103_c00115{left:164.850000px;}
.x87_c00115{left:168.450000px;}
.x25_c00115{left:172.350000px;}
.xd8_c00115{left:173.550000px;}
.xc6_c00115{left:175.200000px;}
.xaf_c00115{left:177.000000px;}
.x59_c00115{left:178.500000px;}
.x98_c00115{left:180.900000px;}
.x40_c00115{left:183.900000px;}
.x14_c00115{left:185.100000px;}
.xf7_c00115{left:186.300000px;}
.x8f_c00115{left:187.350000px;}
.xfd_c00115{left:190.350000px;}
.x63_c00115{left:192.000000px;}
.xc7_c00115{left:193.200000px;}
.x33_c00115{left:195.000000px;}
.xa5_c00115{left:199.050000px;}
.x6c_c00115{left:202.800000px;}
.x78_c00115{left:204.300000px;}
.xb6_c00115{left:207.300000px;}
.x13b_c00115{left:209.400000px;}
.x15_c00115{left:213.150000px;}
.xe1_c00115{left:215.250000px;}
.xa6_c00115{left:216.750000px;}
.x41_c00115{left:218.400000px;}
.xf8_c00115{left:220.500000px;}
.x79_c00115{left:221.550000px;}
.xfe_c00115{left:222.750000px;}
.x111_c00115{left:223.950000px;}
.xbf_c00115{left:225.300000px;}
.x108_c00115{left:227.100000px;}
.xf0_c00115{left:230.700000px;}
.x136_c00115{left:231.900000px;}
.xd3_c00115{left:233.100000px;}
.x12f_c00115{left:234.150000px;}
.x64_c00115{left:235.500000px;}
.x7a_c00115{left:237.450000px;}
.x4d_c00115{left:238.650000px;}
.x118_c00115{left:241.200000px;}
.x7_c00115{left:244.500000px;}
.x99_c00115{left:245.700000px;}
.x26_c00115{left:249.450000px;}
.x5a_c00115{left:250.950000px;}
.x104_c00115{left:252.000000px;}
.xe2_c00115{left:257.700000px;}
.xfb_c00115{left:259.800000px;}
.x6d_c00115{left:261.150000px;}
.x8_c00115{left:263.550000px;}
.xea_c00115{left:266.400000px;}
.x16_c00115{left:269.700000px;}
.x42_c00115{left:270.900000px;}
.x4e_c00115{left:272.550000px;}
.x5b_c00115{left:279.000000px;}
.x9a_c00115{left:280.200000px;}
.xc8_c00115{left:282.150000px;}
.x90_c00115{left:286.050000px;}
.x7b_c00115{left:287.850000px;}
.x9_c00115{left:291.600000px;}
.x105_c00115{left:292.650000px;}
.x88_c00115{left:294.150000px;}
.x34_c00115{left:297.900000px;}
.xa7_c00115{left:299.100000px;}
.x4f_c00115{left:300.300000px;}
.xc9_c00115{left:302.700000px;}
.x109_c00115{left:306.000000px;}
.xd9_c00115{left:308.850000px;}
.x137_c00115{left:310.800000px;}
.xe3_c00115{left:313.500000px;}
.x27_c00115{left:315.450000px;}
.x9b_c00115{left:316.950000px;}
.x65_c00115{left:319.350000px;}
.xf1_c00115{left:321.900000px;}
.x17_c00115{left:323.400000px;}
.xb7_c00115{left:324.600000px;}
.x6e_c00115{left:325.950000px;}
.xa_c00115{left:327.900000px;}
.x7c_c00115{left:331.350000px;}
.x128_c00115{left:332.400000px;}
.x28_c00115{left:333.450000px;}
.x115_c00115{left:335.550000px;}
.x5c_c00115{left:336.900000px;}
.xb0_c00115{left:340.050000px;}
.x123_c00115{left:344.400000px;}
.x7d_c00115{left:346.500000px;}
.xeb_c00115{left:347.850000px;}
.x66_c00115{left:349.950000px;}
.xff_c00115{left:351.900000px;}
.x50_c00115{left:354.000000px;}
.x91_c00115{left:355.500000px;}
.xda_c00115{left:356.700000px;}
.x18_c00115{left:358.350000px;}
.x132_c00115{left:359.400000px;}
.x1_c00115{left:363.900000px;}
.x35_c00115{left:365.250000px;}
.x7e_c00115{left:370.950000px;}
.x138_c00115{left:372.000000px;}
.x51_c00115{left:374.100000px;}
.xb8_c00115{left:377.100000px;}
.x10d_c00115{left:379.650000px;}
.xf2_c00115{left:381.600000px;}
.xe4_c00115{left:383.100000px;}
.x11e_c00115{left:384.300000px;}
.x19_c00115{left:386.400000px;}
.xb1_c00115{left:387.900000px;}
.x67_c00115{left:390.600000px;}
.x29_c00115{left:392.100000px;}
.x139_c00115{left:393.300000px;}
.x6f_c00115{left:394.350000px;}
.x129_c00115{left:396.150000px;}
.xb_c00115{left:397.350000px;}
.x9c_c00115{left:399.750000px;}
.x11f_c00115{left:403.350000px;}
.xe5_c00115{left:404.700000px;}
.xdb_c00115{left:405.750000px;}
.x89_c00115{left:407.550000px;}
.xb9_c00115{left:409.500000px;}
.xca_c00115{left:412.200000px;}
.x36_c00115{left:413.850000px;}
.xb2_c00115{left:414.900000px;}
.x52_c00115{left:417.000000px;}
.x70_c00115{left:419.550000px;}
.xec_c00115{left:422.700000px;}
.xc0_c00115{left:423.750000px;}
.x5d_c00115{left:426.900000px;}
.x1a_c00115{left:428.850000px;}
.x2a_c00115{left:431.400000px;}
.x119_c00115{left:432.600000px;}
.xba_c00115{left:435.450000px;}
.xc1_c00115{left:441.000000px;}
.xcb_c00115{left:443.100000px;}
.x43_c00115{left:449.100000px;}
.x11a_c00115{left:450.900000px;}
.x124_c00115{left:452.100000px;}
.xc_c00115{left:453.450000px;}
.xa8_c00115{left:455.100000px;}
.x9d_c00115{left:457.650000px;}
.x2b_c00115{left:458.700000px;}
.xf3_c00115{left:460.500000px;}
.xd4_c00115{left:461.850000px;}
.x11b_c00115{left:464.250000px;}
.x2_c00115{left:466.500000px;}
.xb3_c00115{left:468.900000px;}
.x8a_c00115{left:471.300000px;}
.x92_c00115{left:472.500000px;}
.x7f_c00115{left:475.650000px;}
.x53_c00115{left:476.700000px;}
.x1b_c00115{left:478.200000px;}
.x71_c00115{left:479.250000px;}
.xd_c00115{left:481.950000px;}
.x112_c00115{left:484.950000px;}
.x133_c00115{left:486.150000px;}
.xdc_c00115{left:487.500000px;}
.xa9_c00115{left:488.550000px;}
.x3_c00115{left:489.600000px;}
.x44_c00115{left:492.300000px;}
.x80_c00115{left:493.650000px;}
.x127_c00115{left:496.050000px;}
.x1c_c00115{left:498.000000px;}
.xcc_c00115{left:499.650000px;}
.x2c_c00115{left:504.750000px;}
.x93_c00115{left:507.450000px;}
.x72_c00115{left:510.150000px;}
.x5e_c00115{left:511.800000px;}
.x45_c00115{left:512.850000px;}
.xbb_c00115{left:513.900000px;}
.xc2_c00115{left:515.550000px;}
.xcd_c00115{left:516.600000px;}
.x37_c00115{left:518.700000px;}
.x13c_c00115{left:520.500000px;}
.x134_c00115{left:521.850000px;}
.x1d_c00115{left:522.900000px;}
.x68_c00115{left:524.700000px;}
.x100_c00115{left:525.750000px;}
.xed_c00115{left:528.300000px;}
.x120_c00115{left:529.350000px;}
.xd5_c00115{left:530.550000px;}
.x8b_c00115{left:531.750000px;}
.x94_c00115{left:534.750000px;}
.x2d_c00115{left:537.450000px;}
.xf4_c00115{left:538.950000px;}
.x46_c00115{left:540.900000px;}
.xce_c00115{left:542.100000px;}
.xc3_c00115{left:545.850000px;}
.xaa_c00115{left:547.950000px;}
.x101_c00115{left:549.150000px;}
.x12a_c00115{left:550.650000px;}
.x9e_c00115{left:553.050000px;}
.x10e_c00115{left:554.250000px;}
.xe_c00115{left:557.250000px;}
.x1e_c00115{left:561.750000px;}
.x121_c00115{left:564.300000px;}
.x95_c00115{left:566.100000px;}
.xe6_c00115{left:567.750000px;}
.x54_c00115{left:568.800000px;}
.x73_c00115{left:569.850000px;}
.x69_c00115{left:571.800000px;}
.x81_c00115{left:574.200000px;}
.xf_c00115{left:575.250000px;}
.x13d_c00115{left:576.750000px;}
.x2e_c00115{left:577.800000px;}
.xdd_c00115{left:579.000000px;}
.x9f_c00115{left:580.050000px;}
.x38_c00115{left:582.000000px;}
.x5f_c00115{left:583.500000px;}
.xcf_c00115{left:587.100000px;}
.x125_c00115{left:588.150000px;}
.x47_c00115{left:590.250000px;}
.xc4_c00115{left:591.900000px;}
.x116_c00115{left:593.550000px;}
.x74_c00115{left:594.750000px;}
.xa0_c00115{left:597.000000px;}
.x6a_c00115{left:600.600000px;}
.x1f_c00115{left:604.200000px;}
.x39_c00115{left:605.400000px;}
.x82_c00115{left:606.900000px;}
.x12b_c00115{left:607.950000px;}
.x10f_c00115{left:609.300000px;}
.x10a_c00115{left:610.950000px;}
.x11c_c00115{left:615.000000px;}
.xf5_c00115{left:616.050000px;}
.xb4_c00115{left:618.000000px;}
.x106_c00115{left:619.950000px;}
.x60_c00115{left:621.000000px;}
.xc5_c00115{left:622.800000px;}
.x48_c00115{left:625.500000px;}
.xde_c00115{left:632.550000px;}
.x8c_c00115{left:634.350000px;}
.x117_c00115{left:635.700000px;}
.xbc_c00115{left:636.750000px;}
.x3a_c00115{left:638.850000px;}
.xa1_c00115{left:640.500000px;}
.x75_c00115{left:643.350000px;}
.xee_c00115{left:645.300000px;}
.xe7_c00115{left:647.250000px;}
.xdf_c00115{left:649.500000px;}
.x10b_c00115{left:650.550000px;}
.xd0_c00115{left:653.400000px;}
.x20_c00115{left:655.350000px;}
.x12c_c00115{left:659.400000px;}
.x55_c00115{left:660.600000px;}
.x113_c00115{left:662.700000px;}
.x2f_c00115{left:664.200000px;}
.x83_c00115{left:668.850000px;}
.x8d_c00115{left:670.050000px;}
.x107_c00115{left:672.450000px;}
.xd6_c00115{left:675.600000px;}
.x10_c00115{left:676.800000px;}
.xe8_c00115{left:678.600000px;}
.x3b_c00115{left:679.950000px;}
.xa2_c00115{left:681.600000px;}
.x21_c00115{left:683.400000px;}
.xab_c00115{left:686.100000px;}
.x61_c00115{left:687.300000px;}
.xef_c00115{left:690.300000px;}
.xf6_c00115{left:692.700000px;}
.x49_c00115{left:693.900000px;}
.xf9_c00115{left:695.550000px;}
.x56_c00115{left:697.350000px;}
.x126_c00115{left:700.350000px;}
.x8e_c00115{left:701.700000px;}
.x110_c00115{left:703.500000px;}
.x84_c00115{left:705.150000px;}
.x11_c00115{left:708.900000px;}
.x12d_c00115{left:710.100000px;}
.x130_c00115{left:711.300000px;}
.x102_c00115{left:712.350000px;}
.x30_c00115{left:714.900000px;}
.x10c_c00115{left:716.100000px;}
.xe9_c00115{left:717.900000px;}
.x3c_c00115{left:722.400000px;}
.x96_c00115{left:724.500000px;}
.x4a_c00115{left:725.550000px;}
.x85_c00115{left:726.750000px;}
.x11d_c00115{left:729.150000px;}
.x13a_c00115{left:731.700000px;}
.x76_c00115{left:733.350000px;}
.x57_c00115{left:735.450000px;}
.xd7_c00115{left:736.500000px;}
.x22_c00115{left:737.700000px;}
.xd1_c00115{left:740.550000px;}
.xac_c00115{left:743.250000px;}
.x31_c00115{left:745.500000px;}
.x12_c00115{left:750.000000px;}
.xe0_c00115{left:751.050000px;}
.xa3_c00115{left:753.150000px;}
.x58_c00115{left:755.250000px;}
.x77_c00115{left:756.450000px;}
.x122_c00115{left:757.950000px;}
.x4_c00115{left:759.300000px;}
.xad_c00115{left:760.950000px;}
.x4b_c00115{left:762.600000px;}
.xfc_c00115{left:764.250000px;}
.x3d_c00115{left:772.500000px;}
.x12e_c00115{left:775.200000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws8_c00115{word-spacing:-10.246914pt;}
.ws6_c00115{word-spacing:-7.708333pt;}
.ws2_c00115{word-spacing:-4.320988pt;}
.ws3_c00115{word-spacing:-3.086420pt;}
.ws5_c00115{word-spacing:-2.839506pt;}
.ws4_c00115{word-spacing:-0.211640pt;}
.wsc_c00115{word-spacing:0.000000pt;}
.ws1_c00115{word-spacing:1.481481pt;}
.wsa_c00115{word-spacing:1.875000pt;}
.ws0_c00115{word-spacing:2.424242pt;}
.ws9_c00115{word-spacing:2.777778pt;}
.wsb_c00115{word-spacing:4.836601pt;}
.ws7_c00115{word-spacing:9.542484pt;}
.fs0_c00115{font-size:48.000000pt;}
.fs1_c00115{font-size:53.333333pt;}
.y0_c00115{bottom:0.000000pt;}
.y2b_c00115{bottom:145.333333pt;}
.y2a_c00115{bottom:159.066667pt;}
.y29_c00115{bottom:172.800000pt;}
.y28_c00115{bottom:212.533333pt;}
.y27_c00115{bottom:230.800000pt;}
.y26_c00115{bottom:248.133333pt;}
.y25_c00115{bottom:265.733333pt;}
.y24_c00115{bottom:283.600000pt;}
.y23_c00115{bottom:301.466667pt;}
.y22_c00115{bottom:319.333333pt;}
.y21_c00115{bottom:336.933333pt;}
.y20_c00115{bottom:354.800000pt;}
.y1f_c00115{bottom:372.666667pt;}
.y1e_c00115{bottom:390.533333pt;}
.y1d_c00115{bottom:408.133333pt;}
.y1c_c00115{bottom:425.733333pt;}
.y1b_c00115{bottom:443.333333pt;}
.y1a_c00115{bottom:461.200000pt;}
.y19_c00115{bottom:479.066667pt;}
.y18_c00115{bottom:496.933333pt;}
.y17_c00115{bottom:514.533333pt;}
.y16_c00115{bottom:532.133333pt;}
.y15_c00115{bottom:550.400000pt;}
.y14_c00115{bottom:568.266667pt;}
.y13_c00115{bottom:585.866667pt;}
.y12_c00115{bottom:603.733333pt;}
.y11_c00115{bottom:621.600000pt;}
.y10_c00115{bottom:639.200000pt;}
.yf_c00115{bottom:657.066667pt;}
.ye_c00115{bottom:674.666667pt;}
.yd_c00115{bottom:692.533333pt;}
.yc_c00115{bottom:710.400000pt;}
.yb_c00115{bottom:728.000000pt;}
.ya_c00115{bottom:745.866667pt;}
.y9_c00115{bottom:763.733333pt;}
.y8_c00115{bottom:781.600000pt;}
.y7_c00115{bottom:799.466667pt;}
.y6_c00115{bottom:817.066667pt;}
.y5_c00115{bottom:834.933333pt;}
.y4_c00115{bottom:852.800000pt;}
.y3_c00115{bottom:870.400000pt;}
.y2_c00115{bottom:888.266667pt;}
.y1_c00115{bottom:922.933333pt;}
.h2_c00115{height:48.000000pt;}
.h3_c00115{height:53.333333pt;}
.h1_c00115{height:1038.000000pt;}
.h0_c00115{height:1038.079997pt;}
.w1_c00115{width:818.000000pt;}
.w0_c00115{width:818.239991pt;}
.x0_c00115{left:0.000000pt;}
.x5_c00115{left:96.666667pt;}
.x23_c00115{left:97.600000pt;}
.xfa_c00115{left:98.800000pt;}
.xd2_c00115{left:113.333333pt;}
.x131_c00115{left:114.533333pt;}
.x24_c00115{left:116.133333pt;}
.x4c_c00115{left:118.400000pt;}
.x13_c00115{left:119.733333pt;}
.x62_c00115{left:122.000000pt;}
.xbd_c00115{left:124.000000pt;}
.x3e_c00115{left:125.733333pt;}
.xa4_c00115{left:126.666667pt;}
.x114_c00115{left:127.600000pt;}
.xae_c00115{left:128.800000pt;}
.x135_c00115{left:130.933333pt;}
.x86_c00115{left:132.400000pt;}
.x6_c00115{left:134.400000pt;}
.xb5_c00115{left:137.600000pt;}
.x3f_c00115{left:139.466667pt;}
.xbe_c00115{left:140.666667pt;}
.x97_c00115{left:142.533333pt;}
.x6b_c00115{left:143.733333pt;}
.x32_c00115{left:145.466667pt;}
.x103_c00115{left:146.533333pt;}
.x87_c00115{left:149.733333pt;}
.x25_c00115{left:153.200000pt;}
.xd8_c00115{left:154.266667pt;}
.xc6_c00115{left:155.733333pt;}
.xaf_c00115{left:157.333333pt;}
.x59_c00115{left:158.666667pt;}
.x98_c00115{left:160.800000pt;}
.x40_c00115{left:163.466667pt;}
.x14_c00115{left:164.533333pt;}
.xf7_c00115{left:165.600000pt;}
.x8f_c00115{left:166.533333pt;}
.xfd_c00115{left:169.200000pt;}
.x63_c00115{left:170.666667pt;}
.xc7_c00115{left:171.733333pt;}
.x33_c00115{left:173.333333pt;}
.xa5_c00115{left:176.933333pt;}
.x6c_c00115{left:180.266667pt;}
.x78_c00115{left:181.600000pt;}
.xb6_c00115{left:184.266667pt;}
.x13b_c00115{left:186.133333pt;}
.x15_c00115{left:189.466667pt;}
.xe1_c00115{left:191.333333pt;}
.xa6_c00115{left:192.666667pt;}
.x41_c00115{left:194.133333pt;}
.xf8_c00115{left:196.000000pt;}
.x79_c00115{left:196.933333pt;}
.xfe_c00115{left:198.000000pt;}
.x111_c00115{left:199.066667pt;}
.xbf_c00115{left:200.266667pt;}
.x108_c00115{left:201.866667pt;}
.xf0_c00115{left:205.066667pt;}
.x136_c00115{left:206.133333pt;}
.xd3_c00115{left:207.200000pt;}
.x12f_c00115{left:208.133333pt;}
.x64_c00115{left:209.333333pt;}
.x7a_c00115{left:211.066667pt;}
.x4d_c00115{left:212.133333pt;}
.x118_c00115{left:214.400000pt;}
.x7_c00115{left:217.333333pt;}
.x99_c00115{left:218.400000pt;}
.x26_c00115{left:221.733333pt;}
.x5a_c00115{left:223.066667pt;}
.x104_c00115{left:224.000000pt;}
.xe2_c00115{left:229.066667pt;}
.xfb_c00115{left:230.933333pt;}
.x6d_c00115{left:232.133333pt;}
.x8_c00115{left:234.266667pt;}
.xea_c00115{left:236.800000pt;}
.x16_c00115{left:239.733333pt;}
.x42_c00115{left:240.800000pt;}
.x4e_c00115{left:242.266667pt;}
.x5b_c00115{left:248.000000pt;}
.x9a_c00115{left:249.066667pt;}
.xc8_c00115{left:250.800000pt;}
.x90_c00115{left:254.266667pt;}
.x7b_c00115{left:255.866667pt;}
.x9_c00115{left:259.200000pt;}
.x105_c00115{left:260.133333pt;}
.x88_c00115{left:261.466667pt;}
.x34_c00115{left:264.800000pt;}
.xa7_c00115{left:265.866667pt;}
.x4f_c00115{left:266.933333pt;}
.xc9_c00115{left:269.066667pt;}
.x109_c00115{left:272.000000pt;}
.xd9_c00115{left:274.533333pt;}
.x137_c00115{left:276.266667pt;}
.xe3_c00115{left:278.666667pt;}
.x27_c00115{left:280.400000pt;}
.x9b_c00115{left:281.733333pt;}
.x65_c00115{left:283.866667pt;}
.xf1_c00115{left:286.133333pt;}
.x17_c00115{left:287.466667pt;}
.xb7_c00115{left:288.533333pt;}
.x6e_c00115{left:289.733333pt;}
.xa_c00115{left:291.466667pt;}
.x7c_c00115{left:294.533333pt;}
.x128_c00115{left:295.466667pt;}
.x28_c00115{left:296.400000pt;}
.x115_c00115{left:298.266667pt;}
.x5c_c00115{left:299.466667pt;}
.xb0_c00115{left:302.266667pt;}
.x123_c00115{left:306.133333pt;}
.x7d_c00115{left:308.000000pt;}
.xeb_c00115{left:309.200000pt;}
.x66_c00115{left:311.066667pt;}
.xff_c00115{left:312.800000pt;}
.x50_c00115{left:314.666667pt;}
.x91_c00115{left:316.000000pt;}
.xda_c00115{left:317.066667pt;}
.x18_c00115{left:318.533333pt;}
.x132_c00115{left:319.466667pt;}
.x1_c00115{left:323.466667pt;}
.x35_c00115{left:324.666667pt;}
.x7e_c00115{left:329.733333pt;}
.x138_c00115{left:330.666667pt;}
.x51_c00115{left:332.533333pt;}
.xb8_c00115{left:335.200000pt;}
.x10d_c00115{left:337.466667pt;}
.xf2_c00115{left:339.200000pt;}
.xe4_c00115{left:340.533333pt;}
.x11e_c00115{left:341.600000pt;}
.x19_c00115{left:343.466667pt;}
.xb1_c00115{left:344.800000pt;}
.x67_c00115{left:347.200000pt;}
.x29_c00115{left:348.533333pt;}
.x139_c00115{left:349.600000pt;}
.x6f_c00115{left:350.533333pt;}
.x129_c00115{left:352.133333pt;}
.xb_c00115{left:353.200000pt;}
.x9c_c00115{left:355.333333pt;}
.x11f_c00115{left:358.533333pt;}
.xe5_c00115{left:359.733333pt;}
.xdb_c00115{left:360.666667pt;}
.x89_c00115{left:362.266667pt;}
.xb9_c00115{left:364.000000pt;}
.xca_c00115{left:366.400000pt;}
.x36_c00115{left:367.866667pt;}
.xb2_c00115{left:368.800000pt;}
.x52_c00115{left:370.666667pt;}
.x70_c00115{left:372.933333pt;}
.xec_c00115{left:375.733333pt;}
.xc0_c00115{left:376.666667pt;}
.x5d_c00115{left:379.466667pt;}
.x1a_c00115{left:381.200000pt;}
.x2a_c00115{left:383.466667pt;}
.x119_c00115{left:384.533333pt;}
.xba_c00115{left:387.066667pt;}
.xc1_c00115{left:392.000000pt;}
.xcb_c00115{left:393.866667pt;}
.x43_c00115{left:399.200000pt;}
.x11a_c00115{left:400.800000pt;}
.x124_c00115{left:401.866667pt;}
.xc_c00115{left:403.066667pt;}
.xa8_c00115{left:404.533333pt;}
.x9d_c00115{left:406.800000pt;}
.x2b_c00115{left:407.733333pt;}
.xf3_c00115{left:409.333333pt;}
.xd4_c00115{left:410.533333pt;}
.x11b_c00115{left:412.666667pt;}
.x2_c00115{left:414.666667pt;}
.xb3_c00115{left:416.800000pt;}
.x8a_c00115{left:418.933333pt;}
.x92_c00115{left:420.000000pt;}
.x7f_c00115{left:422.800000pt;}
.x53_c00115{left:423.733333pt;}
.x1b_c00115{left:425.066667pt;}
.x71_c00115{left:426.000000pt;}
.xd_c00115{left:428.400000pt;}
.x112_c00115{left:431.066667pt;}
.x133_c00115{left:432.133333pt;}
.xdc_c00115{left:433.333333pt;}
.xa9_c00115{left:434.266667pt;}
.x3_c00115{left:435.200000pt;}
.x44_c00115{left:437.600000pt;}
.x80_c00115{left:438.800000pt;}
.x127_c00115{left:440.933333pt;}
.x1c_c00115{left:442.666667pt;}
.xcc_c00115{left:444.133333pt;}
.x2c_c00115{left:448.666667pt;}
.x93_c00115{left:451.066667pt;}
.x72_c00115{left:453.466667pt;}
.x5e_c00115{left:454.933333pt;}
.x45_c00115{left:455.866667pt;}
.xbb_c00115{left:456.800000pt;}
.xc2_c00115{left:458.266667pt;}
.xcd_c00115{left:459.200000pt;}
.x37_c00115{left:461.066667pt;}
.x13c_c00115{left:462.666667pt;}
.x134_c00115{left:463.866667pt;}
.x1d_c00115{left:464.800000pt;}
.x68_c00115{left:466.400000pt;}
.x100_c00115{left:467.333333pt;}
.xed_c00115{left:469.600000pt;}
.x120_c00115{left:470.533333pt;}
.xd5_c00115{left:471.600000pt;}
.x8b_c00115{left:472.666667pt;}
.x94_c00115{left:475.333333pt;}
.x2d_c00115{left:477.733333pt;}
.xf4_c00115{left:479.066667pt;}
.x46_c00115{left:480.800000pt;}
.xce_c00115{left:481.866667pt;}
.xc3_c00115{left:485.200000pt;}
.xaa_c00115{left:487.066667pt;}
.x101_c00115{left:488.133333pt;}
.x12a_c00115{left:489.466667pt;}
.x9e_c00115{left:491.600000pt;}
.x10e_c00115{left:492.666667pt;}
.xe_c00115{left:495.333333pt;}
.x1e_c00115{left:499.333333pt;}
.x121_c00115{left:501.600000pt;}
.x95_c00115{left:503.200000pt;}
.xe6_c00115{left:504.666667pt;}
.x54_c00115{left:505.600000pt;}
.x73_c00115{left:506.533333pt;}
.x69_c00115{left:508.266667pt;}
.x81_c00115{left:510.400000pt;}
.xf_c00115{left:511.333333pt;}
.x13d_c00115{left:512.666667pt;}
.x2e_c00115{left:513.600000pt;}
.xdd_c00115{left:514.666667pt;}
.x9f_c00115{left:515.600000pt;}
.x38_c00115{left:517.333333pt;}
.x5f_c00115{left:518.666667pt;}
.xcf_c00115{left:521.866667pt;}
.x125_c00115{left:522.800000pt;}
.x47_c00115{left:524.666667pt;}
.xc4_c00115{left:526.133333pt;}
.x116_c00115{left:527.600000pt;}
.x74_c00115{left:528.666667pt;}
.xa0_c00115{left:530.666667pt;}
.x6a_c00115{left:533.866667pt;}
.x1f_c00115{left:537.066667pt;}
.x39_c00115{left:538.133333pt;}
.x82_c00115{left:539.466667pt;}
.x12b_c00115{left:540.400000pt;}
.x10f_c00115{left:541.600000pt;}
.x10a_c00115{left:543.066667pt;}
.x11c_c00115{left:546.666667pt;}
.xf5_c00115{left:547.600000pt;}
.xb4_c00115{left:549.333333pt;}
.x106_c00115{left:551.066667pt;}
.x60_c00115{left:552.000000pt;}
.xc5_c00115{left:553.600000pt;}
.x48_c00115{left:556.000000pt;}
.xde_c00115{left:562.266667pt;}
.x8c_c00115{left:563.866667pt;}
.x117_c00115{left:565.066667pt;}
.xbc_c00115{left:566.000000pt;}
.x3a_c00115{left:567.866667pt;}
.xa1_c00115{left:569.333333pt;}
.x75_c00115{left:571.866667pt;}
.xee_c00115{left:573.600000pt;}
.xe7_c00115{left:575.333333pt;}
.xdf_c00115{left:577.333333pt;}
.x10b_c00115{left:578.266667pt;}
.xd0_c00115{left:580.800000pt;}
.x20_c00115{left:582.533333pt;}
.x12c_c00115{left:586.133333pt;}
.x55_c00115{left:587.200000pt;}
.x113_c00115{left:589.066667pt;}
.x2f_c00115{left:590.400000pt;}
.x83_c00115{left:594.533333pt;}
.x8d_c00115{left:595.600000pt;}
.x107_c00115{left:597.733333pt;}
.xd6_c00115{left:600.533333pt;}
.x10_c00115{left:601.600000pt;}
.xe8_c00115{left:603.200000pt;}
.x3b_c00115{left:604.400000pt;}
.xa2_c00115{left:605.866667pt;}
.x21_c00115{left:607.466667pt;}
.xab_c00115{left:609.866667pt;}
.x61_c00115{left:610.933333pt;}
.xef_c00115{left:613.600000pt;}
.xf6_c00115{left:615.733333pt;}
.x49_c00115{left:616.800000pt;}
.xf9_c00115{left:618.266667pt;}
.x56_c00115{left:619.866667pt;}
.x126_c00115{left:622.533333pt;}
.x8e_c00115{left:623.733333pt;}
.x110_c00115{left:625.333333pt;}
.x84_c00115{left:626.800000pt;}
.x11_c00115{left:630.133333pt;}
.x12d_c00115{left:631.200000pt;}
.x130_c00115{left:632.266667pt;}
.x102_c00115{left:633.200000pt;}
.x30_c00115{left:635.466667pt;}
.x10c_c00115{left:636.533333pt;}
.xe9_c00115{left:638.133333pt;}
.x3c_c00115{left:642.133333pt;}
.x96_c00115{left:644.000000pt;}
.x4a_c00115{left:644.933333pt;}
.x85_c00115{left:646.000000pt;}
.x11d_c00115{left:648.133333pt;}
.x13a_c00115{left:650.400000pt;}
.x76_c00115{left:651.866667pt;}
.x57_c00115{left:653.733333pt;}
.xd7_c00115{left:654.666667pt;}
.x22_c00115{left:655.733333pt;}
.xd1_c00115{left:658.266667pt;}
.xac_c00115{left:660.666667pt;}
.x31_c00115{left:662.666667pt;}
.x12_c00115{left:666.666667pt;}
.xe0_c00115{left:667.600000pt;}
.xa3_c00115{left:669.466667pt;}
.x58_c00115{left:671.333333pt;}
.x77_c00115{left:672.400000pt;}
.x122_c00115{left:673.733333pt;}
.x4_c00115{left:674.933333pt;}
.xad_c00115{left:676.400000pt;}
.x4b_c00115{left:677.866667pt;}
.xfc_c00115{left:679.333333pt;}
.x3d_c00115{left:686.666667pt;}
.x12e_c00115{left:689.066667pt;}
}





/* 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_c00116 {
    display:none;
  }
  .loading-indicator_c00116.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00116 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_c00116 { 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_c00116" -> "#page-container .classname_c00116")
 */
.pf_c00116 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00116 { /* 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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00116 { /* 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_c00116 { /* 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_c00116 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00116 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00116 {overflow:visible;}
  }
}
.c_c00116 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00116 { /* 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_c00116:after { /* webkit #35443 */
  content: '';
}
.t_c00116:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00116 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 */
}
.__c00116 { /* 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_c00116 { /* info for Javascript */
  display:none;
}
.l_c00116 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00116 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00116 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00116: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_c00116 {
    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_c00116.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00116.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_c00116 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00116{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00116;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.000000;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;}
.m2d_c00116{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m97_c00116{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00116{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00116{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m98_c00116{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mac_c00116{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mab_c00116{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00116{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00116{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m10_c00116{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m31_c00116{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00116{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m78_c00116{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m62_c00116{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m18_c00116{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00116{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.maf_c00116{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00116{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.maa_c00116{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00116{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00116{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00116{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m47_c00116{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m13_c00116{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m59_c00116{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00116{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00116{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m27_c00116{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m77_c00116{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m85_c00116{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf_c00116{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00116{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m63_c00116{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m95_c00116{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00116{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m82_c00116{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mae_c00116{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00116{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00116{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00116{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m30_c00116{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m54_c00116{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00116{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00116{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m96_c00116{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m64_c00116{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00116{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m83_c00116{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00116{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00116{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m19_c00116{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00116{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m41_c00116{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00116{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00116{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00116{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m55_c00116{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00116{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m21_c00116{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00116{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00116{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00116{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00116{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m49_c00116{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m24_c00116{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00116{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m52_c00116{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m57_c00116{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m79_c00116{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m80_c00116{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m68_c00116{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m17_c00116{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00116{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m40_c00116{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00116{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m67_c00116{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00116{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00116{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00116{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00116{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00116{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00116{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00116{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m33_c00116{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m71_c00116{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m58_c00116{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m76_c00116{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00116{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m92_c00116{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mad_c00116{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00116{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m70_c00116{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00116{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00116{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00116{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00116{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00116{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m50_c00116{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m15_c00116{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00116{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00116{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m51_c00116{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00116{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m35_c00116{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00116{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m72_c00116{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb_c00116{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00116{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00116{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m45_c00116{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00116{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m20_c00116{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m99_c00116{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00116{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00116{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc_c00116{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m88_c00116{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7_c00116{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m16_c00116{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m65_c00116{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m75_c00116{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m23_c00116{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m53_c00116{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m90_c00116{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00116{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00116{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00116{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m22_c00116{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m34_c00116{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m32_c00116{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m42_c00116{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00116{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00116{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00116{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00116{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26_c00116{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m25_c00116{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m60_c00116{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00116{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29_c00116{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m94_c00116{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m36_c00116{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00116{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00116{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00116{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00116{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00116{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m56_c00116{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m38_c00116{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00116{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m28_c00116{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m87_c00116{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m73_c00116{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00116{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m44_c00116{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00116{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00116{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m93_c00116{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00116{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m11_c00116{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m81_c00116{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m89_c00116{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m66_c00116{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m12_c00116{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.me_c00116{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m46_c00116{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m69_c00116{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c00116{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m39_c00116{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m61_c00116{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00116{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00116{vertical-align:0.000000px;}
.ls0_c00116{letter-spacing:0.000000px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{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__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00116{word-spacing:-7.051282px;}
.ws8_c00116{word-spacing:-5.277778px;}
.ws0_c00116{word-spacing:-3.472222px;}
.ws3_c00116{word-spacing:-2.878788px;}
.ws1_c00116{word-spacing:0.000000px;}
.wsa_c00116{word-spacing:0.178571px;}
.ws4_c00116{word-spacing:2.127660px;}
.ws2_c00116{word-spacing:2.307692px;}
.wsb_c00116{word-spacing:2.560976px;}
.ws6_c00116{word-spacing:4.473684px;}
.ws5_c00116{word-spacing:8.194444px;}
.ws7_c00116{word-spacing:10.145577px;}
.fc0_c00116{color:transparent;}
.fs0_c00116{font-size:60.000000px;}
.y0_c00116{bottom:0.000000px;}
.y2c_c00116{bottom:162.000000px;}
.y2b_c00116{bottom:177.900000px;}
.y2a_c00116{bottom:209.850000px;}
.y29_c00116{bottom:229.050000px;}
.y28_c00116{bottom:249.900000px;}
.y27_c00116{bottom:270.000000px;}
.y26_c00116{bottom:289.800000px;}
.y25_c00116{bottom:309.900000px;}
.y24_c00116{bottom:330.450000px;}
.y23_c00116{bottom:350.550000px;}
.y22_c00116{bottom:370.650000px;}
.y21_c00116{bottom:390.750000px;}
.y20_c00116{bottom:410.550000px;}
.y1f_c00116{bottom:430.650000px;}
.y1e_c00116{bottom:450.750000px;}
.y1d_c00116{bottom:470.550000px;}
.y1c_c00116{bottom:490.650000px;}
.y1b_c00116{bottom:510.450000px;}
.y1a_c00116{bottom:530.550000px;}
.y19_c00116{bottom:550.650000px;}
.y18_c00116{bottom:570.450000px;}
.y17_c00116{bottom:590.250000px;}
.y16_c00116{bottom:610.050000px;}
.y15_c00116{bottom:630.150000px;}
.y14_c00116{bottom:649.950000px;}
.y13_c00116{bottom:670.050000px;}
.y12_c00116{bottom:689.850000px;}
.y11_c00116{bottom:709.950000px;}
.y10_c00116{bottom:730.050000px;}
.yf_c00116{bottom:749.850000px;}
.ye_c00116{bottom:769.650000px;}
.yd_c00116{bottom:789.900000px;}
.yc_c00116{bottom:809.700000px;}
.yb_c00116{bottom:829.800000px;}
.ya_c00116{bottom:849.600000px;}
.y9_c00116{bottom:869.700000px;}
.y8_c00116{bottom:889.800000px;}
.y7_c00116{bottom:909.900000px;}
.y6_c00116{bottom:930.000000px;}
.y5_c00116{bottom:950.100000px;}
.y4_c00116{bottom:970.200000px;}
.y3_c00116{bottom:990.000000px;}
.y2_c00116{bottom:1010.100000px;}
.y1_c00116{bottom:1048.350000px;}
.h2_c00116{height:60.000000px;}
.h1_c00116{height:1167.750000px;}
.h0_c00116{height:1167.839997px;}
.w1_c00116{width:920.250000px;}
.w0_c00116{width:920.519990px;}
.x0_c00116{left:0.000000px;}
.x3_c00116{left:149.700000px;}
.x1_c00116{left:151.200000px;}
.x9c_c00116{left:152.250000px;}
.xcb_c00116{left:153.300000px;}
.xe1_c00116{left:154.500000px;}
.xff_c00116{left:155.700000px;}
.x120_c00116{left:156.750000px;}
.x89_c00116{left:169.650000px;}
.xc2_c00116{left:172.200000px;}
.xf2_c00116{left:175.050000px;}
.x6d_c00116{left:177.750000px;}
.x103_c00116{left:180.600000px;}
.x5f_c00116{left:182.550000px;}
.x50_c00116{left:184.200000px;}
.x121_c00116{left:185.850000px;}
.x7f_c00116{left:187.950000px;}
.x4_c00116{left:189.300000px;}
.x15_c00116{left:192.450000px;}
.x25_c00116{left:193.500000px;}
.xeb_c00116{left:195.150000px;}
.x9d_c00116{left:198.300000px;}
.x41_c00116{left:200.100000px;}
.x12a_c00116{left:202.650000px;}
.x10c_c00116{left:204.450000px;}
.x122_c00116{left:205.650000px;}
.x59_c00116{left:206.850000px;}
.xb9_c00116{left:207.900000px;}
.xd3_c00116{left:210.450000px;}
.x16_c00116{left:212.250000px;}
.x118_c00116{left:213.750000px;}
.x60_c00116{left:214.950000px;}
.x80_c00116{left:217.500000px;}
.xcc_c00116{left:218.850000px;}
.x9e_c00116{left:220.650000px;}
.x51_c00116{left:222.750000px;}
.x10d_c00116{left:224.550000px;}
.x5_c00116{left:227.100000px;}
.xd4_c00116{left:228.450000px;}
.x123_c00116{left:229.800000px;}
.x8a_c00116{left:231.150000px;}
.x17_c00116{left:234.150000px;}
.xec_c00116{left:236.250000px;}
.x6e_c00116{left:237.450000px;}
.x94_c00116{left:238.500000px;}
.xde_c00116{left:241.200000px;}
.x126_c00116{left:244.950000px;}
.x42_c00116{left:246.600000px;}
.xc3_c00116{left:248.250000px;}
.x31_c00116{left:249.600000px;}
.x26_c00116{left:251.100000px;}
.x130_c00116{left:252.900000px;}
.x81_c00116{left:255.300000px;}
.x6f_c00116{left:256.950000px;}
.x18_c00116{left:259.650000px;}
.x9f_c00116{left:261.300000px;}
.xfa_c00116{left:262.800000px;}
.xa8_c00116{left:263.850000px;}
.x61_c00116{left:267.450000px;}
.x8b_c00116{left:268.650000px;}
.xb1_c00116{left:271.500000px;}
.x5a_c00116{left:273.450000px;}
.x27_c00116{left:276.600000px;}
.x32_c00116{left:278.700000px;}
.xdf_c00116{left:280.050000px;}
.x43_c00116{left:281.850000px;}
.xa9_c00116{left:283.350000px;}
.x6_c00116{left:286.200000px;}
.x12d_c00116{left:289.650000px;}
.x11b_c00116{left:290.700000px;}
.xa0_c00116{left:291.900000px;}
.x5b_c00116{left:294.000000px;}
.xc4_c00116{left:296.550000px;}
.x44_c00116{left:299.850000px;}
.x8c_c00116{left:302.850000px;}
.x19_c00116{left:304.650000px;}
.x95_c00116{left:306.150000px;}
.xba_c00116{left:308.100000px;}
.xe2_c00116{left:309.450000px;}
.x11c_c00116{left:311.250000px;}
.x62_c00116{left:312.750000px;}
.x33_c00116{left:316.200000px;}
.x79_c00116{left:318.000000px;}
.x104_c00116{left:319.650000px;}
.x108_c00116{left:321.450000px;}
.x8d_c00116{left:322.650000px;}
.xcd_c00116{left:324.000000px;}
.x7_c00116{left:325.050000px;}
.x5c_c00116{left:326.100000px;}
.x45_c00116{left:327.900000px;}
.xd5_c00116{left:330.600000px;}
.x63_c00116{left:335.100000px;}
.x1a_c00116{left:337.050000px;}
.xb2_c00116{left:341.100000px;}
.x52_c00116{left:344.400000px;}
.x96_c00116{left:345.750000px;}
.x8_c00116{left:346.950000px;}
.xe3_c00116{left:348.750000px;}
.x8e_c00116{left:350.700000px;}
.x109_c00116{left:352.350000px;}
.x70_c00116{left:353.400000px;}
.x34_c00116{left:355.500000px;}
.xc5_c00116{left:358.500000px;}
.x82_c00116{left:360.750000px;}
.x12e_c00116{left:362.700000px;}
.xce_c00116{left:366.450000px;}
.xe0_c00116{left:367.950000px;}
.x7a_c00116{left:369.150000px;}
.xaa_c00116{left:371.250000px;}
.x105_c00116{left:372.900000px;}
.x28_c00116{left:374.100000px;}
.x35_c00116{left:376.350000px;}
.x83_c00116{left:378.450000px;}
.xda_c00116{left:380.550000px;}
.x5d_c00116{left:382.200000px;}
.x124_c00116{left:385.050000px;}
.xf3_c00116{left:386.400000px;}
.xe4_c00116{left:392.700000px;}
.x8f_c00116{left:394.200000px;}
.x7b_c00116{left:397.650000px;}
.x11d_c00116{left:400.500000px;}
.x97_c00116{left:402.300000px;}
.x131_c00116{left:403.500000px;}
.xb3_c00116{left:407.400000px;}
.xf4_c00116{left:410.100000px;}
.x5e_c00116{left:411.300000px;}
.x1b_c00116{left:412.350000px;}
.x71_c00116{left:413.850000px;}
.xfb_c00116{left:416.550000px;}
.x9_c00116{left:418.200000px;}
.x36_c00116{left:421.050000px;}
.x134_c00116{left:422.250000px;}
.x37_c00116{left:424.350000px;}
.x12b_c00116{left:426.600000px;}
.x138_c00116{left:428.400000px;}
.xdb_c00116{left:429.450000px;}
.x72_c00116{left:430.800000px;}
.x98_c00116{left:433.650000px;}
.xe5_c00116{left:435.900000px;}
.x90_c00116{left:437.400000px;}
.x100_c00116{left:439.500000px;}
.x38_c00116{left:440.850000px;}
.x84_c00116{left:445.800000px;}
.x46_c00116{left:447.150000px;}
.x2_c00116{left:448.500000px;}
.xcf_c00116{left:449.550000px;}
.x132_c00116{left:450.750000px;}
.x39_c00116{left:451.950000px;}
.xe6_c00116{left:453.900000px;}
.xa_c00116{left:454.950000px;}
.x91_c00116{left:457.200000px;}
.xc6_c00116{left:459.600000px;}
.x85_c00116{left:463.500000px;}
.x10e_c00116{left:466.050000px;}
.x64_c00116{left:469.050000px;}
.x7c_c00116{left:470.400000px;}
.xb4_c00116{left:472.500000px;}
.x112_c00116{left:476.700000px;}
.x12c_c00116{left:478.200000px;}
.xb_c00116{left:480.450000px;}
.xe7_c00116{left:482.400000px;}
.x1c_c00116{left:484.350000px;}
.x53_c00116{left:487.050000px;}
.x7d_c00116{left:488.700000px;}
.xdc_c00116{left:489.900000px;}
.xab_c00116{left:491.400000px;}
.x135_c00116{left:492.750000px;}
.x65_c00116{left:494.550000px;}
.x3a_c00116{left:496.200000px;}
.x106_c00116{left:498.150000px;}
.x99_c00116{left:499.500000px;}
.xbe_c00116{left:503.400000px;}
.xed_c00116{left:505.500000px;}
.xd6_c00116{left:507.000000px;}
.xb5_c00116{left:508.200000px;}
.xc7_c00116{left:509.700000px;}
.x1d_c00116{left:511.350000px;}
.x47_c00116{left:513.000000px;}
.x101_c00116{left:514.800000px;}
.xa1_c00116{left:516.600000px;}
.xac_c00116{left:519.450000px;}
.x66_c00116{left:521.850000px;}
.xfc_c00116{left:523.350000px;}
.x86_c00116{left:525.450000px;}
.xbb_c00116{left:527.700000px;}
.x54_c00116{left:529.500000px;}
.xc_c00116{left:533.700000px;}
.x1e_c00116{left:535.050000px;}
.x139_c00116{left:537.450000px;}
.x119_c00116{left:538.800000px;}
.x29_c00116{left:540.000000px;}
.x136_c00116{left:541.650000px;}
.x92_c00116{left:543.150000px;}
.xdd_c00116{left:544.650000px;}
.x3b_c00116{left:547.650000px;}
.xb6_c00116{left:549.000000px;}
.xee_c00116{left:550.500000px;}
.x48_c00116{left:551.850000px;}
.xd7_c00116{left:554.550000px;}
.xfd_c00116{left:556.050000px;}
.x73_c00116{left:557.550000px;}
.xad_c00116{left:558.750000px;}
.xbf_c00116{left:561.000000px;}
.xb7_c00116{left:563.100000px;}
.x3c_c00116{left:564.900000px;}
.xf5_c00116{left:567.750000px;}
.x11a_c00116{left:569.400000px;}
.xd_c00116{left:570.450000px;}
.x7e_c00116{left:571.800000px;}
.xc8_c00116{left:575.550000px;}
.x55_c00116{left:576.600000px;}
.x3d_c00116{left:579.600000px;}
.x113_c00116{left:580.800000px;}
.xa2_c00116{left:585.000000px;}
.x93_c00116{left:586.650000px;}
.xbc_c00116{left:588.450000px;}
.xf6_c00116{left:590.100000px;}
.x2a_c00116{left:591.150000px;}
.x114_c00116{left:595.950000px;}
.x67_c00116{left:597.150000px;}
.x1f_c00116{left:598.350000px;}
.x87_c00116{left:601.800000px;}
.xe_c00116{left:603.600000px;}
.x11e_c00116{left:606.750000px;}
.x49_c00116{left:608.400000px;}
.xc0_c00116{left:610.650000px;}
.x107_c00116{left:614.400000px;}
.x20_c00116{left:615.600000px;}
.x68_c00116{left:616.650000px;}
.x2b_c00116{left:618.150000px;}
.xd0_c00116{left:619.500000px;}
.x137_c00116{left:620.550000px;}
.x74_c00116{left:629.850000px;}
.xef_c00116{left:631.500000px;}
.xf_c00116{left:632.700000px;}
.x4a_c00116{left:634.650000px;}
.x2c_c00116{left:638.250000px;}
.xf7_c00116{left:640.500000px;}
.x21_c00116{left:643.650000px;}
.x10_c00116{left:647.400000px;}
.xd8_c00116{left:649.500000px;}
.x3e_c00116{left:652.350000px;}
.x69_c00116{left:660.150000px;}
.xb8_c00116{left:661.800000px;}
.x2d_c00116{left:663.750000px;}
.x115_c00116{left:667.200000px;}
.x4b_c00116{left:668.850000px;}
.xe8_c00116{left:671.100000px;}
.x9a_c00116{left:672.450000px;}
.xa3_c00116{left:677.550000px;}
.xae_c00116{left:678.600000px;}
.x3f_c00116{left:680.100000px;}
.x10f_c00116{left:682.350000px;}
.x12f_c00116{left:683.850000px;}
.xd1_c00116{left:686.550000px;}
.x56_c00116{left:688.800000px;}
.x75_c00116{left:690.000000px;}
.x22_c00116{left:691.500000px;}
.x127_c00116{left:692.700000px;}
.x6a_c00116{left:694.650000px;}
.x88_c00116{left:695.700000px;}
.x4c_c00116{left:696.900000px;}
.x102_c00116{left:699.600000px;}
.xa4_c00116{left:701.250000px;}
.x2e_c00116{left:704.400000px;}
.xe9_c00116{left:706.350000px;}
.x11_c00116{left:707.850000px;}
.xd9_c00116{left:712.200000px;}
.x23_c00116{left:713.400000px;}
.x76_c00116{left:715.500000px;}
.xf0_c00116{left:719.700000px;}
.x40_c00116{left:722.550000px;}
.xfe_c00116{left:723.750000px;}
.x2f_c00116{left:724.950000px;}
.xea_c00116{left:726.450000px;}
.xf8_c00116{left:727.650000px;}
.xa5_c00116{left:729.000000px;}
.x57_c00116{left:731.700000px;}
.x4d_c00116{left:735.750000px;}
.x125_c00116{left:737.100000px;}
.x6b_c00116{left:738.900000px;}
.x12_c00116{left:741.300000px;}
.xc9_c00116{left:744.000000px;}
.xaf_c00116{left:746.400000px;}
.x110_c00116{left:748.950000px;}
.xbd_c00116{left:750.450000px;}
.x128_c00116{left:752.100000px;}
.x30_c00116{left:753.450000px;}
.xd2_c00116{left:755.250000px;}
.xf1_c00116{left:757.500000px;}
.x13_c00116{left:759.000000px;}
.x11f_c00116{left:760.050000px;}
.x116_c00116{left:762.300000px;}
.xf9_c00116{left:766.500000px;}
.x24_c00116{left:768.000000px;}
.x10a_c00116{left:769.350000px;}
.xa6_c00116{left:770.400000px;}
.x9b_c00116{left:772.200000px;}
.xc1_c00116{left:774.450000px;}
.x4e_c00116{left:778.650000px;}
.x111_c00116{left:779.850000px;}
.x77_c00116{left:784.950000px;}
.x10b_c00116{left:786.300000px;}
.x129_c00116{left:788.400000px;}
.xca_c00116{left:790.500000px;}
.x58_c00116{left:791.850000px;}
.xa7_c00116{left:793.500000px;}
.x133_c00116{left:795.300000px;}
.x4f_c00116{left:796.650000px;}
.x6c_c00116{left:798.000000px;}
.x14_c00116{left:799.650000px;}
.x78_c00116{left:802.200000px;}
.x117_c00116{left:803.400000px;}
.xb0_c00116{left:806.850000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws9_c00116{word-spacing:-6.267806pt;}
.ws8_c00116{word-spacing:-4.691358pt;}
.ws0_c00116{word-spacing:-3.086420pt;}
.ws3_c00116{word-spacing:-2.558923pt;}
.ws1_c00116{word-spacing:0.000000pt;}
.wsa_c00116{word-spacing:0.158730pt;}
.ws4_c00116{word-spacing:1.891253pt;}
.ws2_c00116{word-spacing:2.051282pt;}
.wsb_c00116{word-spacing:2.276423pt;}
.ws6_c00116{word-spacing:3.976608pt;}
.ws5_c00116{word-spacing:7.283951pt;}
.ws7_c00116{word-spacing:9.018290pt;}
.fs0_c00116{font-size:53.333333pt;}
.y0_c00116{bottom:0.000000pt;}
.y2c_c00116{bottom:144.000000pt;}
.y2b_c00116{bottom:158.133333pt;}
.y2a_c00116{bottom:186.533333pt;}
.y29_c00116{bottom:203.600000pt;}
.y28_c00116{bottom:222.133333pt;}
.y27_c00116{bottom:240.000000pt;}
.y26_c00116{bottom:257.600000pt;}
.y25_c00116{bottom:275.466667pt;}
.y24_c00116{bottom:293.733333pt;}
.y23_c00116{bottom:311.600000pt;}
.y22_c00116{bottom:329.466667pt;}
.y21_c00116{bottom:347.333333pt;}
.y20_c00116{bottom:364.933333pt;}
.y1f_c00116{bottom:382.800000pt;}
.y1e_c00116{bottom:400.666667pt;}
.y1d_c00116{bottom:418.266667pt;}
.y1c_c00116{bottom:436.133333pt;}
.y1b_c00116{bottom:453.733333pt;}
.y1a_c00116{bottom:471.600000pt;}
.y19_c00116{bottom:489.466667pt;}
.y18_c00116{bottom:507.066667pt;}
.y17_c00116{bottom:524.666667pt;}
.y16_c00116{bottom:542.266667pt;}
.y15_c00116{bottom:560.133333pt;}
.y14_c00116{bottom:577.733333pt;}
.y13_c00116{bottom:595.600000pt;}
.y12_c00116{bottom:613.200000pt;}
.y11_c00116{bottom:631.066667pt;}
.y10_c00116{bottom:648.933333pt;}
.yf_c00116{bottom:666.533333pt;}
.ye_c00116{bottom:684.133333pt;}
.yd_c00116{bottom:702.133333pt;}
.yc_c00116{bottom:719.733333pt;}
.yb_c00116{bottom:737.600000pt;}
.ya_c00116{bottom:755.200000pt;}
.y9_c00116{bottom:773.066667pt;}
.y8_c00116{bottom:790.933333pt;}
.y7_c00116{bottom:808.800000pt;}
.y6_c00116{bottom:826.666667pt;}
.y5_c00116{bottom:844.533333pt;}
.y4_c00116{bottom:862.400000pt;}
.y3_c00116{bottom:880.000000pt;}
.y2_c00116{bottom:897.866667pt;}
.y1_c00116{bottom:931.866667pt;}
.h2_c00116{height:53.333333pt;}
.h1_c00116{height:1038.000000pt;}
.h0_c00116{height:1038.079997pt;}
.w1_c00116{width:818.000000pt;}
.w0_c00116{width:818.239991pt;}
.x0_c00116{left:0.000000pt;}
.x3_c00116{left:133.066667pt;}
.x1_c00116{left:134.400000pt;}
.x9c_c00116{left:135.333333pt;}
.xcb_c00116{left:136.266667pt;}
.xe1_c00116{left:137.333333pt;}
.xff_c00116{left:138.400000pt;}
.x120_c00116{left:139.333333pt;}
.x89_c00116{left:150.800000pt;}
.xc2_c00116{left:153.066667pt;}
.xf2_c00116{left:155.600000pt;}
.x6d_c00116{left:158.000000pt;}
.x103_c00116{left:160.533333pt;}
.x5f_c00116{left:162.266667pt;}
.x50_c00116{left:163.733333pt;}
.x121_c00116{left:165.200000pt;}
.x7f_c00116{left:167.066667pt;}
.x4_c00116{left:168.266667pt;}
.x15_c00116{left:171.066667pt;}
.x25_c00116{left:172.000000pt;}
.xeb_c00116{left:173.466667pt;}
.x9d_c00116{left:176.266667pt;}
.x41_c00116{left:177.866667pt;}
.x12a_c00116{left:180.133333pt;}
.x10c_c00116{left:181.733333pt;}
.x122_c00116{left:182.800000pt;}
.x59_c00116{left:183.866667pt;}
.xb9_c00116{left:184.800000pt;}
.xd3_c00116{left:187.066667pt;}
.x16_c00116{left:188.666667pt;}
.x118_c00116{left:190.000000pt;}
.x60_c00116{left:191.066667pt;}
.x80_c00116{left:193.333333pt;}
.xcc_c00116{left:194.533333pt;}
.x9e_c00116{left:196.133333pt;}
.x51_c00116{left:198.000000pt;}
.x10d_c00116{left:199.600000pt;}
.x5_c00116{left:201.866667pt;}
.xd4_c00116{left:203.066667pt;}
.x123_c00116{left:204.266667pt;}
.x8a_c00116{left:205.466667pt;}
.x17_c00116{left:208.133333pt;}
.xec_c00116{left:210.000000pt;}
.x6e_c00116{left:211.066667pt;}
.x94_c00116{left:212.000000pt;}
.xde_c00116{left:214.400000pt;}
.x126_c00116{left:217.733333pt;}
.x42_c00116{left:219.200000pt;}
.xc3_c00116{left:220.666667pt;}
.x31_c00116{left:221.866667pt;}
.x26_c00116{left:223.200000pt;}
.x130_c00116{left:224.800000pt;}
.x81_c00116{left:226.933333pt;}
.x6f_c00116{left:228.400000pt;}
.x18_c00116{left:230.800000pt;}
.x9f_c00116{left:232.266667pt;}
.xfa_c00116{left:233.600000pt;}
.xa8_c00116{left:234.533333pt;}
.x61_c00116{left:237.733333pt;}
.x8b_c00116{left:238.800000pt;}
.xb1_c00116{left:241.333333pt;}
.x5a_c00116{left:243.066667pt;}
.x27_c00116{left:245.866667pt;}
.x32_c00116{left:247.733333pt;}
.xdf_c00116{left:248.933333pt;}
.x43_c00116{left:250.533333pt;}
.xa9_c00116{left:251.866667pt;}
.x6_c00116{left:254.400000pt;}
.x12d_c00116{left:257.466667pt;}
.x11b_c00116{left:258.400000pt;}
.xa0_c00116{left:259.466667pt;}
.x5b_c00116{left:261.333333pt;}
.xc4_c00116{left:263.600000pt;}
.x44_c00116{left:266.533333pt;}
.x8c_c00116{left:269.200000pt;}
.x19_c00116{left:270.800000pt;}
.x95_c00116{left:272.133333pt;}
.xba_c00116{left:273.866667pt;}
.xe2_c00116{left:275.066667pt;}
.x11c_c00116{left:276.666667pt;}
.x62_c00116{left:278.000000pt;}
.x33_c00116{left:281.066667pt;}
.x79_c00116{left:282.666667pt;}
.x104_c00116{left:284.133333pt;}
.x108_c00116{left:285.733333pt;}
.x8d_c00116{left:286.800000pt;}
.xcd_c00116{left:288.000000pt;}
.x7_c00116{left:288.933333pt;}
.x5c_c00116{left:289.866667pt;}
.x45_c00116{left:291.466667pt;}
.xd5_c00116{left:293.866667pt;}
.x63_c00116{left:297.866667pt;}
.x1a_c00116{left:299.600000pt;}
.xb2_c00116{left:303.200000pt;}
.x52_c00116{left:306.133333pt;}
.x96_c00116{left:307.333333pt;}
.x8_c00116{left:308.400000pt;}
.xe3_c00116{left:310.000000pt;}
.x8e_c00116{left:311.733333pt;}
.x109_c00116{left:313.200000pt;}
.x70_c00116{left:314.133333pt;}
.x34_c00116{left:316.000000pt;}
.xc5_c00116{left:318.666667pt;}
.x82_c00116{left:320.666667pt;}
.x12e_c00116{left:322.400000pt;}
.xce_c00116{left:325.733333pt;}
.xe0_c00116{left:327.066667pt;}
.x7a_c00116{left:328.133333pt;}
.xaa_c00116{left:330.000000pt;}
.x105_c00116{left:331.466667pt;}
.x28_c00116{left:332.533333pt;}
.x35_c00116{left:334.533333pt;}
.x83_c00116{left:336.400000pt;}
.xda_c00116{left:338.266667pt;}
.x5d_c00116{left:339.733333pt;}
.x124_c00116{left:342.266667pt;}
.xf3_c00116{left:343.466667pt;}
.xe4_c00116{left:349.066667pt;}
.x8f_c00116{left:350.400000pt;}
.x7b_c00116{left:353.466667pt;}
.x11d_c00116{left:356.000000pt;}
.x97_c00116{left:357.600000pt;}
.x131_c00116{left:358.666667pt;}
.xb3_c00116{left:362.133333pt;}
.xf4_c00116{left:364.533333pt;}
.x5e_c00116{left:365.600000pt;}
.x1b_c00116{left:366.533333pt;}
.x71_c00116{left:367.866667pt;}
.xfb_c00116{left:370.266667pt;}
.x9_c00116{left:371.733333pt;}
.x36_c00116{left:374.266667pt;}
.x134_c00116{left:375.333333pt;}
.x37_c00116{left:377.200000pt;}
.x12b_c00116{left:379.200000pt;}
.x138_c00116{left:380.800000pt;}
.xdb_c00116{left:381.733333pt;}
.x72_c00116{left:382.933333pt;}
.x98_c00116{left:385.466667pt;}
.xe5_c00116{left:387.466667pt;}
.x90_c00116{left:388.800000pt;}
.x100_c00116{left:390.666667pt;}
.x38_c00116{left:391.866667pt;}
.x84_c00116{left:396.266667pt;}
.x46_c00116{left:397.466667pt;}
.x2_c00116{left:398.666667pt;}
.xcf_c00116{left:399.600000pt;}
.x132_c00116{left:400.666667pt;}
.x39_c00116{left:401.733333pt;}
.xe6_c00116{left:403.466667pt;}
.xa_c00116{left:404.400000pt;}
.x91_c00116{left:406.400000pt;}
.xc6_c00116{left:408.533333pt;}
.x85_c00116{left:412.000000pt;}
.x10e_c00116{left:414.266667pt;}
.x64_c00116{left:416.933333pt;}
.x7c_c00116{left:418.133333pt;}
.xb4_c00116{left:420.000000pt;}
.x112_c00116{left:423.733333pt;}
.x12c_c00116{left:425.066667pt;}
.xb_c00116{left:427.066667pt;}
.xe7_c00116{left:428.800000pt;}
.x1c_c00116{left:430.533333pt;}
.x53_c00116{left:432.933333pt;}
.x7d_c00116{left:434.400000pt;}
.xdc_c00116{left:435.466667pt;}
.xab_c00116{left:436.800000pt;}
.x135_c00116{left:438.000000pt;}
.x65_c00116{left:439.600000pt;}
.x3a_c00116{left:441.066667pt;}
.x106_c00116{left:442.800000pt;}
.x99_c00116{left:444.000000pt;}
.xbe_c00116{left:447.466667pt;}
.xed_c00116{left:449.333333pt;}
.xd6_c00116{left:450.666667pt;}
.xb5_c00116{left:451.733333pt;}
.xc7_c00116{left:453.066667pt;}
.x1d_c00116{left:454.533333pt;}
.x47_c00116{left:456.000000pt;}
.x101_c00116{left:457.600000pt;}
.xa1_c00116{left:459.200000pt;}
.xac_c00116{left:461.733333pt;}
.x66_c00116{left:463.866667pt;}
.xfc_c00116{left:465.200000pt;}
.x86_c00116{left:467.066667pt;}
.xbb_c00116{left:469.066667pt;}
.x54_c00116{left:470.666667pt;}
.xc_c00116{left:474.400000pt;}
.x1e_c00116{left:475.600000pt;}
.x139_c00116{left:477.733333pt;}
.x119_c00116{left:478.933333pt;}
.x29_c00116{left:480.000000pt;}
.x136_c00116{left:481.466667pt;}
.x92_c00116{left:482.800000pt;}
.xdd_c00116{left:484.133333pt;}
.x3b_c00116{left:486.800000pt;}
.xb6_c00116{left:488.000000pt;}
.xee_c00116{left:489.333333pt;}
.x48_c00116{left:490.533333pt;}
.xd7_c00116{left:492.933333pt;}
.xfd_c00116{left:494.266667pt;}
.x73_c00116{left:495.600000pt;}
.xad_c00116{left:496.666667pt;}
.xbf_c00116{left:498.666667pt;}
.xb7_c00116{left:500.533333pt;}
.x3c_c00116{left:502.133333pt;}
.xf5_c00116{left:504.666667pt;}
.x11a_c00116{left:506.133333pt;}
.xd_c00116{left:507.066667pt;}
.x7e_c00116{left:508.266667pt;}
.xc8_c00116{left:511.600000pt;}
.x55_c00116{left:512.533333pt;}
.x3d_c00116{left:515.200000pt;}
.x113_c00116{left:516.266667pt;}
.xa2_c00116{left:520.000000pt;}
.x93_c00116{left:521.466667pt;}
.xbc_c00116{left:523.066667pt;}
.xf6_c00116{left:524.533333pt;}
.x2a_c00116{left:525.466667pt;}
.x114_c00116{left:529.733333pt;}
.x67_c00116{left:530.800000pt;}
.x1f_c00116{left:531.866667pt;}
.x87_c00116{left:534.933333pt;}
.xe_c00116{left:536.533333pt;}
.x11e_c00116{left:539.333333pt;}
.x49_c00116{left:540.800000pt;}
.xc0_c00116{left:542.800000pt;}
.x107_c00116{left:546.133333pt;}
.x20_c00116{left:547.200000pt;}
.x68_c00116{left:548.133333pt;}
.x2b_c00116{left:549.466667pt;}
.xd0_c00116{left:550.666667pt;}
.x137_c00116{left:551.600000pt;}
.x74_c00116{left:559.866667pt;}
.xef_c00116{left:561.333333pt;}
.xf_c00116{left:562.400000pt;}
.x4a_c00116{left:564.133333pt;}
.x2c_c00116{left:567.333333pt;}
.xf7_c00116{left:569.333333pt;}
.x21_c00116{left:572.133333pt;}
.x10_c00116{left:575.466667pt;}
.xd8_c00116{left:577.333333pt;}
.x3e_c00116{left:579.866667pt;}
.x69_c00116{left:586.800000pt;}
.xb8_c00116{left:588.266667pt;}
.x2d_c00116{left:590.000000pt;}
.x115_c00116{left:593.066667pt;}
.x4b_c00116{left:594.533333pt;}
.xe8_c00116{left:596.533333pt;}
.x9a_c00116{left:597.733333pt;}
.xa3_c00116{left:602.266667pt;}
.xae_c00116{left:603.200000pt;}
.x3f_c00116{left:604.533333pt;}
.x10f_c00116{left:606.533333pt;}
.x12f_c00116{left:607.866667pt;}
.xd1_c00116{left:610.266667pt;}
.x56_c00116{left:612.266667pt;}
.x75_c00116{left:613.333333pt;}
.x22_c00116{left:614.666667pt;}
.x127_c00116{left:615.733333pt;}
.x6a_c00116{left:617.466667pt;}
.x88_c00116{left:618.400000pt;}
.x4c_c00116{left:619.466667pt;}
.x102_c00116{left:621.866667pt;}
.xa4_c00116{left:623.333333pt;}
.x2e_c00116{left:626.133333pt;}
.xe9_c00116{left:627.866667pt;}
.x11_c00116{left:629.200000pt;}
.xd9_c00116{left:633.066667pt;}
.x23_c00116{left:634.133333pt;}
.x76_c00116{left:636.000000pt;}
.xf0_c00116{left:639.733333pt;}
.x40_c00116{left:642.266667pt;}
.xfe_c00116{left:643.333333pt;}
.x2f_c00116{left:644.400000pt;}
.xea_c00116{left:645.733333pt;}
.xf8_c00116{left:646.800000pt;}
.xa5_c00116{left:648.000000pt;}
.x57_c00116{left:650.400000pt;}
.x4d_c00116{left:654.000000pt;}
.x125_c00116{left:655.200000pt;}
.x6b_c00116{left:656.800000pt;}
.x12_c00116{left:658.933333pt;}
.xc9_c00116{left:661.333333pt;}
.xaf_c00116{left:663.466667pt;}
.x110_c00116{left:665.733333pt;}
.xbd_c00116{left:667.066667pt;}
.x128_c00116{left:668.533333pt;}
.x30_c00116{left:669.733333pt;}
.xd2_c00116{left:671.333333pt;}
.xf1_c00116{left:673.333333pt;}
.x13_c00116{left:674.666667pt;}
.x11f_c00116{left:675.600000pt;}
.x116_c00116{left:677.600000pt;}
.xf9_c00116{left:681.333333pt;}
.x24_c00116{left:682.666667pt;}
.x10a_c00116{left:683.866667pt;}
.xa6_c00116{left:684.800000pt;}
.x9b_c00116{left:686.400000pt;}
.xc1_c00116{left:688.400000pt;}
.x4e_c00116{left:692.133333pt;}
.x111_c00116{left:693.200000pt;}
.x77_c00116{left:697.733333pt;}
.x10b_c00116{left:698.933333pt;}
.x129_c00116{left:700.800000pt;}
.xca_c00116{left:702.666667pt;}
.x58_c00116{left:703.866667pt;}
.xa7_c00116{left:705.333333pt;}
.x133_c00116{left:706.933333pt;}
.x4f_c00116{left:708.133333pt;}
.x6c_c00116{left:709.333333pt;}
.x14_c00116{left:710.800000pt;}
.x78_c00116{left:713.066667pt;}
.x117_c00116{left:714.133333pt;}
.xb0_c00116{left:717.200000pt;}
}





/* 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_c00117 {
    display:none;
  }
  .loading-indicator_c00117.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00117 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_c00117 { 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_c00117" -> "#page-container .classname_c00117")
 */
.pf_c00117 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00117 { /* 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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00117 { /* 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_c00117 { /* 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_c00117 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00117 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00117 {overflow:visible;}
  }
}
.c_c00117 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00117 { /* 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_c00117:after { /* webkit #35443 */
  content: '';
}
.t_c00117:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00117 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 */
}
.__c00117 { /* 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_c00117 { /* info for Javascript */
  display:none;
}
.l_c00117 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00117 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00117 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00117: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_c00117 {
    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_c00117.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00117.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_c00117 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00117{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.000000;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;}
.m46_c00117{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00117{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00117{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maa_c00117{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m91_c00117{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00117{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00117{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m32_c00117{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m17_c00117{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.mab_c00117{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m78_c00117{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m67_c00117{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00117{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00117{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m52_c00117{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.me_c00117{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m86_c00117{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mac_c00117{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00117{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00117{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00117{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00117{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m70_c00117{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m81_c00117{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00117{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m23_c00117{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00117{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00117{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13_c00117{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00117{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m37_c00117{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m57_c00117{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m63_c00117{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m72_c00117{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m27_c00117{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00117{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m98_c00117{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00117{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m51_c00117{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m36_c00117{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00117{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00117{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00117{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m25_c00117{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m31_c00117{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00117{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00117{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00117{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m49_c00117{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m75_c00117{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m66_c00117{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m54_c00117{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m97_c00117{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m74_c00117{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m18_c00117{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m80_c00117{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m77_c00117{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m55_c00117{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m20_c00117{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00117{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00117{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m85_c00117{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00117{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m15_c00117{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m95_c00117{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m61_c00117{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00117{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00117{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m35_c00117{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m41_c00117{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00117{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m48_c00117{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00117{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00117{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00117{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00117{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m47_c00117{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m89_c00117{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00117{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00117{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m11_c00117{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00117{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00117{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m99_c00117{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mb_c00117{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m39_c00117{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00117{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m88_c00117{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m87_c00117{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00117{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00117{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m50_c00117{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9_c00117{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m22_c00117{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00117{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00117{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc_c00117{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00117{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00117{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m33_c00117{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m73_c00117{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00117{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m93_c00117{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m30_c00117{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m34_c00117{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m59_c00117{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00117{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m83_c00117{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m24_c00117{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00117{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m29_c00117{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m64_c00117{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m43_c00117{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00117{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00117{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00117{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00117{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m62_c00117{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m28_c00117{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00117{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m12_c00117{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m96_c00117{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6_c00117{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4_c00117{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00117{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00117{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m53_c00117{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m56_c00117{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m26_c00117{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00117{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00117{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);}
.m76_c00117{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10_c00117{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00117{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00117{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m84_c00117{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00117{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00117{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m19_c00117{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00117{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m68_c00117{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m60_c00117{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00117{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00117{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00117{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m21_c00117{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00117{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m71_c00117{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m16_c00117{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m69_c00117{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00117{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m45_c00117{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c00117{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00117{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00117{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m90_c00117{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m38_c00117{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m79_c00117{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m92_c00117{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00117{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m82_c00117{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00117{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m94_c00117{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00117{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf_c00117{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m58_c00117{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00117{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{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__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00117{word-spacing:-10.789474px;}
.ws5_c00117{word-spacing:-9.574468px;}
.ws4_c00117{word-spacing:-8.157895px;}
.ws8_c00117{word-spacing:-6.250000px;}
.ws6_c00117{word-spacing:-5.138889px;}
.ws0_c00117{word-spacing:-4.285714px;}
.ws1_c00117{word-spacing:-3.194444px;}
.wsa_c00117{word-spacing:0.000000px;}
.ws2_c00117{word-spacing:3.918919px;}
.ws3_c00117{word-spacing:6.805556px;}
.ws9_c00117{word-spacing:21.527778px;}
.fc0_c00117{color:transparent;}
.fs0_c00117{font-size:54.000000px;}
.fs1_c00117{font-size:60.000000px;}
.y0_c00117{bottom:0.000000px;}
.y2c_c00117{bottom:165.600000px;}
.y2b_c00117{bottom:181.050000px;}
.y2a_c00117{bottom:196.500000px;}
.y29_c00117{bottom:212.100000px;}
.y28_c00117{bottom:227.550000px;}
.y27_c00117{bottom:264.000000px;}
.y26_c00117{bottom:284.100000px;}
.y25_c00117{bottom:303.900000px;}
.y24_c00117{bottom:324.000000px;}
.y23_c00117{bottom:343.500000px;}
.y22_c00117{bottom:364.200000px;}
.y21_c00117{bottom:384.000000px;}
.y20_c00117{bottom:404.100000px;}
.y1f_c00117{bottom:424.200000px;}
.y1e_c00117{bottom:444.300000px;}
.y1d_c00117{bottom:464.100000px;}
.y1c_c00117{bottom:483.600000px;}
.y1b_c00117{bottom:503.400000px;}
.y1a_c00117{bottom:523.500000px;}
.y19_c00117{bottom:543.300000px;}
.y18_c00117{bottom:563.100000px;}
.y17_c00117{bottom:582.900000px;}
.y16_c00117{bottom:603.000000px;}
.y15_c00117{bottom:622.800000px;}
.y14_c00117{bottom:642.600000px;}
.y13_c00117{bottom:662.400000px;}
.y12_c00117{bottom:682.500000px;}
.y11_c00117{bottom:702.300000px;}
.y10_c00117{bottom:722.100000px;}
.yf_c00117{bottom:742.650000px;}
.ye_c00117{bottom:762.450000px;}
.yd_c00117{bottom:782.550000px;}
.yc_c00117{bottom:802.350000px;}
.yb_c00117{bottom:822.450000px;}
.ya_c00117{bottom:842.550000px;}
.y9_c00117{bottom:862.350000px;}
.y8_c00117{bottom:882.450000px;}
.y7_c00117{bottom:902.250000px;}
.y6_c00117{bottom:922.050000px;}
.y5_c00117{bottom:942.600000px;}
.y4_c00117{bottom:962.400000px;}
.y3_c00117{bottom:982.200000px;}
.y2_c00117{bottom:1002.300000px;}
.y1_c00117{bottom:1040.400000px;}
.h2_c00117{height:54.000000px;}
.h3_c00117{height:60.000000px;}
.h1_c00117{height:1167.750000px;}
.h0_c00117{height:1167.839997px;}
.w1_c00117{width:920.250000px;}
.w0_c00117{width:920.519990px;}
.x0_c00117{left:0.000000px;}
.x11d_c00117{left:104.700000px;}
.x102_c00117{left:105.750000px;}
.x5_c00117{left:106.950000px;}
.x126_c00117{left:123.900000px;}
.x12d_c00117{left:125.250000px;}
.x6_c00117{left:126.750000px;}
.x41_c00117{left:132.750000px;}
.xfd_c00117{left:136.950000px;}
.xac_c00117{left:138.300000px;}
.xc3_c00117{left:139.950000px;}
.xaa_c00117{left:141.600000px;}
.x7_c00117{left:144.000000px;}
.x17_c00117{left:145.500000px;}
.x34_c00117{left:148.350000px;}
.xea_c00117{left:153.900000px;}
.x8d_c00117{left:155.400000px;}
.xda_c00117{left:157.500000px;}
.x65_c00117{left:159.900000px;}
.x104_c00117{left:162.900000px;}
.x4d_c00117{left:164.700000px;}
.x26_c00117{left:166.500000px;}
.xca_c00117{left:168.600000px;}
.x42_c00117{left:171.600000px;}
.x98_c00117{left:172.800000px;}
.x57_c00117{left:174.600000px;}
.xc4_c00117{left:175.950000px;}
.xdb_c00117{left:178.050000px;}
.xad_c00117{left:180.450000px;}
.x72_c00117{left:182.250000px;}
.x11e_c00117{left:185.100000px;}
.xf5_c00117{left:187.050000px;}
.x43_c00117{left:188.550000px;}
.x58_c00117{left:192.300000px;}
.x105_c00117{left:196.350000px;}
.x10c_c00117{left:198.150000px;}
.x111_c00117{left:199.350000px;}
.x8_c00117{left:200.550000px;}
.x82_c00117{left:201.900000px;}
.x99_c00117{left:204.150000px;}
.x117_c00117{left:206.250000px;}
.x18_c00117{left:207.750000px;}
.x124_c00117{left:209.100000px;}
.x35_c00117{left:210.300000px;}
.xf6_c00117{left:211.950000px;}
.x66_c00117{left:214.200000px;}
.x112_c00117{left:216.300000px;}
.x59_c00117{left:217.500000px;}
.xc5_c00117{left:222.000000px;}
.x12e_c00117{left:224.700000px;}
.x8e_c00117{left:227.400000px;}
.x9_c00117{left:228.600000px;}
.xd1_c00117{left:229.650000px;}
.x27_c00117{left:232.800000px;}
.xa0_c00117{left:234.600000px;}
.xcb_c00117{left:237.000000px;}
.x36_c00117{left:240.150000px;}
.x9a_c00117{left:241.200000px;}
.xba_c00117{left:243.450000px;}
.xdc_c00117{left:244.650000px;}
.x4e_c00117{left:246.750000px;}
.x8f_c00117{left:247.950000px;}
.xb2_c00117{left:249.450000px;}
.xc6_c00117{left:250.500000px;}
.x11f_c00117{left:252.750000px;}
.xe3_c00117{left:255.150000px;}
.x83_c00117{left:258.450000px;}
.x28_c00117{left:259.800000px;}
.x12f_c00117{left:262.200000px;}
.x19_c00117{left:263.250000px;}
.x67_c00117{left:264.600000px;}
.x5a_c00117{left:266.100000px;}
.xbb_c00117{left:267.900000px;}
.x106_c00117{left:269.850000px;}
.x119_c00117{left:270.900000px;}
.x37_c00117{left:274.650000px;}
.xf7_c00117{left:276.000000px;}
.xb3_c00117{left:277.500000px;}
.x7a_c00117{left:279.000000px;}
.xd2_c00117{left:281.100000px;}
.x1a_c00117{left:284.100000px;}
.x5b_c00117{left:285.600000px;}
.xa_c00117{left:289.050000px;}
.x90_c00117{left:293.250000px;}
.x73_c00117{left:294.900000px;}
.xae_c00117{left:296.400000px;}
.x44_c00117{left:297.900000px;}
.xa1_c00117{left:299.400000px;}
.x84_c00117{left:301.950000px;}
.xeb_c00117{left:303.300000px;}
.x9b_c00117{left:306.300000px;}
.x29_c00117{left:307.350000px;}
.x120_c00117{left:312.450000px;}
.x125_c00117{left:314.250000px;}
.x107_c00117{left:315.900000px;}
.xce_c00117{left:316.950000px;}
.x4f_c00117{left:319.050000px;}
.x85_c00117{left:321.750000px;}
.xdd_c00117{left:323.100000px;}
.x5c_c00117{left:324.450000px;}
.x12b_c00117{left:326.550000px;}
.x127_c00117{left:328.500000px;}
.x2a_c00117{left:329.700000px;}
.x91_c00117{left:330.750000px;}
.x1b_c00117{left:333.000000px;}
.x10d_c00117{left:335.400000px;}
.x108_c00117{left:336.750000px;}
.xcc_c00117{left:337.800000px;}
.xfe_c00117{left:340.800000px;}
.xb_c00117{left:342.750000px;}
.x38_c00117{left:344.100000px;}
.x7b_c00117{left:345.900000px;}
.x68_c00117{left:349.950000px;}
.xd3_c00117{left:354.900000px;}
.x45_c00117{left:356.250000px;}
.x2b_c00117{left:359.250000px;}
.x1_c00117{left:361.050000px;}
.xaf_c00117{left:363.000000px;}
.x92_c00117{left:364.650000px;}
.xd4_c00117{left:365.700000px;}
.xa2_c00117{left:366.750000px;}
.x113_c00117{left:367.800000px;}
.x109_c00117{left:369.150000px;}
.x128_c00117{left:370.650000px;}
.xb4_c00117{left:371.850000px;}
.xab_c00117{left:374.550000px;}
.x7c_c00117{left:375.750000px;}
.xc_c00117{left:376.950000px;}
.xe4_c00117{left:378.150000px;}
.x103_c00117{left:385.050000px;}
.x50_c00117{left:386.100000px;}
.x69_c00117{left:387.450000px;}
.x46_c00117{left:389.700000px;}
.xec_c00117{left:391.500000px;}
.x74_c00117{left:392.850000px;}
.x7d_c00117{left:394.500000px;}
.x5d_c00117{left:396.450000px;}
.x1c_c00117{left:400.350000px;}
.xbc_c00117{left:402.150000px;}
.x93_c00117{left:403.200000px;}
.xd_c00117{left:405.000000px;}
.x114_c00117{left:410.250000px;}
.x39_c00117{left:412.500000px;}
.xf0_c00117{left:413.700000px;}
.x121_c00117{left:415.050000px;}
.x9c_c00117{left:416.700000px;}
.x1d_c00117{left:420.450000px;}
.xde_c00117{left:423.150000px;}
.x51_c00117{left:424.950000px;}
.x5e_c00117{left:427.800000px;}
.xc1_c00117{left:431.400000px;}
.x10e_c00117{left:434.100000px;}
.xcf_c00117{left:435.300000px;}
.x2c_c00117{left:436.350000px;}
.x11a_c00117{left:439.650000px;}
.xff_c00117{left:441.600000px;}
.x86_c00117{left:442.650000px;}
.xe5_c00117{left:444.750000px;}
.x52_c00117{left:446.850000px;}
.xf8_c00117{left:450.300000px;}
.x1e_c00117{left:451.800000px;}
.xa3_c00117{left:456.750000px;}
.xb5_c00117{left:458.250000px;}
.xe_c00117{left:461.550000px;}
.x2_c00117{left:463.350000px;}
.xd5_c00117{left:465.450000px;}
.x1f_c00117{left:471.300000px;}
.xed_c00117{left:475.050000px;}
.x53_c00117{left:476.400000px;}
.x47_c00117{left:478.650000px;}
.xf1_c00117{left:480.750000px;}
.x3a_c00117{left:485.550000px;}
.x3_c00117{left:486.750000px;}
.x118_c00117{left:487.950000px;}
.x87_c00117{left:490.950000px;}
.xf9_c00117{left:496.050000px;}
.x2d_c00117{left:497.850000px;}
.x20_c00117{left:499.350000px;}
.x5f_c00117{left:501.600000px;}
.x12c_c00117{left:503.250000px;}
.xa4_c00117{left:504.300000px;}
.x6a_c00117{left:505.800000px;}
.x7e_c00117{left:509.700000px;}
.x54_c00117{left:511.650000px;}
.xd6_c00117{left:513.600000px;}
.xbd_c00117{left:515.100000px;}
.xdf_c00117{left:518.400000px;}
.x75_c00117{left:520.950000px;}
.xf_c00117{left:522.000000px;}
.xb6_c00117{left:523.800000px;}
.x7f_c00117{left:525.150000px;}
.x2e_c00117{left:527.700000px;}
.x88_c00117{left:529.800000px;}
.xee_c00117{left:530.850000px;}
.xfa_c00117{left:533.850000px;}
.xe6_c00117{left:536.250000px;}
.xb0_c00117{left:537.900000px;}
.x129_c00117{left:538.950000px;}
.x3b_c00117{left:542.400000px;}
.x10_c00117{left:545.700000px;}
.x6b_c00117{left:549.750000px;}
.x60_c00117{left:551.700000px;}
.x94_c00117{left:553.350000px;}
.x55_c00117{left:554.850000px;}
.x9d_c00117{left:556.350000px;}
.x76_c00117{left:561.300000px;}
.xe0_c00117{left:562.650000px;}
.x6c_c00117{left:563.850000px;}
.x48_c00117{left:565.350000px;}
.x21_c00117{left:568.500000px;}
.x11_c00117{left:570.900000px;}
.x122_c00117{left:571.950000px;}
.x9e_c00117{left:576.450000px;}
.x11b_c00117{left:577.800000px;}
.xb7_c00117{left:578.850000px;}
.x89_c00117{left:580.950000px;}
.xe1_c00117{left:582.450000px;}
.xef_c00117{left:583.800000px;}
.xc7_c00117{left:585.450000px;}
.x95_c00117{left:589.650000px;}
.x6d_c00117{left:591.900000px;}
.xa5_c00117{left:594.300000px;}
.x123_c00117{left:595.350000px;}
.x49_c00117{left:600.600000px;}
.xd7_c00117{left:605.100000px;}
.x12_c00117{left:606.150000px;}
.x2f_c00117{left:607.950000px;}
.xe2_c00117{left:609.450000px;}
.x61_c00117{left:611.100000px;}
.x8a_c00117{left:613.350000px;}
.xbe_c00117{left:615.600000px;}
.x100_c00117{left:616.650000px;}
.x22_c00117{left:619.650000px;}
.x6e_c00117{left:624.750000px;}
.x77_c00117{left:627.900000px;}
.x115_c00117{left:629.550000px;}
.x130_c00117{left:632.550000px;}
.xa6_c00117{left:634.950000px;}
.x3c_c00117{left:636.000000px;}
.x62_c00117{left:639.150000px;}
.xf2_c00117{left:640.500000px;}
.x80_c00117{left:642.150000px;}
.xbf_c00117{left:643.650000px;}
.x78_c00117{left:645.150000px;}
.x56_c00117{left:646.650000px;}
.xe7_c00117{left:647.850000px;}
.xcd_c00117{left:652.800000px;}
.x96_c00117{left:655.500000px;}
.x13_c00117{left:656.550000px;}
.xb1_c00117{left:657.750000px;}
.x23_c00117{left:658.950000px;}
.x12a_c00117{left:661.650000px;}
.x3d_c00117{left:662.700000px;}
.x30_c00117{left:664.050000px;}
.x8b_c00117{left:668.400000px;}
.x10a_c00117{left:670.500000px;}
.x9f_c00117{left:673.050000px;}
.xfb_c00117{left:674.400000px;}
.xd8_c00117{left:676.650000px;}
.x6f_c00117{left:679.350000px;}
.x4a_c00117{left:682.650000px;}
.xc8_c00117{left:684.900000px;}
.xa7_c00117{left:687.600000px;}
.x116_c00117{left:688.650000px;}
.x8c_c00117{left:690.000000px;}
.x81_c00117{left:691.800000px;}
.xe8_c00117{left:692.850000px;}
.xb8_c00117{left:694.050000px;}
.x3e_c00117{left:695.850000px;}
.x31_c00117{left:697.950000px;}
.xc2_c00117{left:699.750000px;}
.x10f_c00117{left:700.800000px;}
.xc0_c00117{left:702.000000px;}
.x14_c00117{left:704.850000px;}
.x11c_c00117{left:706.950000px;}
.xa8_c00117{left:709.200000px;}
.x24_c00117{left:710.850000px;}
.xd9_c00117{left:711.900000px;}
.x70_c00117{left:713.550000px;}
.x10b_c00117{left:714.750000px;}
.x63_c00117{left:716.100000px;}
.x32_c00117{left:719.250000px;}
.xfc_c00117{left:722.700000px;}
.x3f_c00117{left:723.900000px;}
.xf3_c00117{left:727.650000px;}
.x97_c00117{left:730.350000px;}
.xd0_c00117{left:731.550000px;}
.x15_c00117{left:732.600000px;}
.x101_c00117{left:735.450000px;}
.xb9_c00117{left:737.250000px;}
.xe9_c00117{left:738.900000px;}
.x25_c00117{left:740.400000px;}
.x4b_c00117{left:742.050000px;}
.xa9_c00117{left:743.100000px;}
.x64_c00117{left:744.900000px;}
.x33_c00117{left:748.050000px;}
.x79_c00117{left:749.550000px;}
.x110_c00117{left:751.200000px;}
.x16_c00117{left:752.400000px;}
.x71_c00117{left:753.900000px;}
.xc9_c00117{left:755.100000px;}
.x4_c00117{left:757.050000px;}
.xf4_c00117{left:759.750000px;}
.x4c_c00117{left:760.800000px;}
.x40_c00117{left:762.450000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws7_c00117{word-spacing:-9.590643pt;}
.ws5_c00117{word-spacing:-8.510638pt;}
.ws4_c00117{word-spacing:-7.251462pt;}
.ws8_c00117{word-spacing:-5.555556pt;}
.ws6_c00117{word-spacing:-4.567901pt;}
.ws0_c00117{word-spacing:-3.809524pt;}
.ws1_c00117{word-spacing:-2.839506pt;}
.wsa_c00117{word-spacing:0.000000pt;}
.ws2_c00117{word-spacing:3.483483pt;}
.ws3_c00117{word-spacing:6.049383pt;}
.ws9_c00117{word-spacing:19.135802pt;}
.fs0_c00117{font-size:48.000000pt;}
.fs1_c00117{font-size:53.333333pt;}
.y0_c00117{bottom:0.000000pt;}
.y2c_c00117{bottom:147.200000pt;}
.y2b_c00117{bottom:160.933333pt;}
.y2a_c00117{bottom:174.666667pt;}
.y29_c00117{bottom:188.533333pt;}
.y28_c00117{bottom:202.266667pt;}
.y27_c00117{bottom:234.666667pt;}
.y26_c00117{bottom:252.533333pt;}
.y25_c00117{bottom:270.133333pt;}
.y24_c00117{bottom:288.000000pt;}
.y23_c00117{bottom:305.333333pt;}
.y22_c00117{bottom:323.733333pt;}
.y21_c00117{bottom:341.333333pt;}
.y20_c00117{bottom:359.200000pt;}
.y1f_c00117{bottom:377.066667pt;}
.y1e_c00117{bottom:394.933333pt;}
.y1d_c00117{bottom:412.533333pt;}
.y1c_c00117{bottom:429.866667pt;}
.y1b_c00117{bottom:447.466667pt;}
.y1a_c00117{bottom:465.333333pt;}
.y19_c00117{bottom:482.933333pt;}
.y18_c00117{bottom:500.533333pt;}
.y17_c00117{bottom:518.133333pt;}
.y16_c00117{bottom:536.000000pt;}
.y15_c00117{bottom:553.600000pt;}
.y14_c00117{bottom:571.200000pt;}
.y13_c00117{bottom:588.800000pt;}
.y12_c00117{bottom:606.666667pt;}
.y11_c00117{bottom:624.266667pt;}
.y10_c00117{bottom:641.866667pt;}
.yf_c00117{bottom:660.133333pt;}
.ye_c00117{bottom:677.733333pt;}
.yd_c00117{bottom:695.600000pt;}
.yc_c00117{bottom:713.200000pt;}
.yb_c00117{bottom:731.066667pt;}
.ya_c00117{bottom:748.933333pt;}
.y9_c00117{bottom:766.533333pt;}
.y8_c00117{bottom:784.400000pt;}
.y7_c00117{bottom:802.000000pt;}
.y6_c00117{bottom:819.600000pt;}
.y5_c00117{bottom:837.866667pt;}
.y4_c00117{bottom:855.466667pt;}
.y3_c00117{bottom:873.066667pt;}
.y2_c00117{bottom:890.933333pt;}
.y1_c00117{bottom:924.800000pt;}
.h2_c00117{height:48.000000pt;}
.h3_c00117{height:53.333333pt;}
.h1_c00117{height:1038.000000pt;}
.h0_c00117{height:1038.079997pt;}
.w1_c00117{width:818.000000pt;}
.w0_c00117{width:818.239991pt;}
.x0_c00117{left:0.000000pt;}
.x11d_c00117{left:93.066667pt;}
.x102_c00117{left:94.000000pt;}
.x5_c00117{left:95.066667pt;}
.x126_c00117{left:110.133333pt;}
.x12d_c00117{left:111.333333pt;}
.x6_c00117{left:112.666667pt;}
.x41_c00117{left:118.000000pt;}
.xfd_c00117{left:121.733333pt;}
.xac_c00117{left:122.933333pt;}
.xc3_c00117{left:124.400000pt;}
.xaa_c00117{left:125.866667pt;}
.x7_c00117{left:128.000000pt;}
.x17_c00117{left:129.333333pt;}
.x34_c00117{left:131.866667pt;}
.xea_c00117{left:136.800000pt;}
.x8d_c00117{left:138.133333pt;}
.xda_c00117{left:140.000000pt;}
.x65_c00117{left:142.133333pt;}
.x104_c00117{left:144.800000pt;}
.x4d_c00117{left:146.400000pt;}
.x26_c00117{left:148.000000pt;}
.xca_c00117{left:149.866667pt;}
.x42_c00117{left:152.533333pt;}
.x98_c00117{left:153.600000pt;}
.x57_c00117{left:155.200000pt;}
.xc4_c00117{left:156.400000pt;}
.xdb_c00117{left:158.266667pt;}
.xad_c00117{left:160.400000pt;}
.x72_c00117{left:162.000000pt;}
.x11e_c00117{left:164.533333pt;}
.xf5_c00117{left:166.266667pt;}
.x43_c00117{left:167.600000pt;}
.x58_c00117{left:170.933333pt;}
.x105_c00117{left:174.533333pt;}
.x10c_c00117{left:176.133333pt;}
.x111_c00117{left:177.200000pt;}
.x8_c00117{left:178.266667pt;}
.x82_c00117{left:179.466667pt;}
.x99_c00117{left:181.466667pt;}
.x117_c00117{left:183.333333pt;}
.x18_c00117{left:184.666667pt;}
.x124_c00117{left:185.866667pt;}
.x35_c00117{left:186.933333pt;}
.xf6_c00117{left:188.400000pt;}
.x66_c00117{left:190.400000pt;}
.x112_c00117{left:192.266667pt;}
.x59_c00117{left:193.333333pt;}
.xc5_c00117{left:197.333333pt;}
.x12e_c00117{left:199.733333pt;}
.x8e_c00117{left:202.133333pt;}
.x9_c00117{left:203.200000pt;}
.xd1_c00117{left:204.133333pt;}
.x27_c00117{left:206.933333pt;}
.xa0_c00117{left:208.533333pt;}
.xcb_c00117{left:210.666667pt;}
.x36_c00117{left:213.466667pt;}
.x9a_c00117{left:214.400000pt;}
.xba_c00117{left:216.400000pt;}
.xdc_c00117{left:217.466667pt;}
.x4e_c00117{left:219.333333pt;}
.x8f_c00117{left:220.400000pt;}
.xb2_c00117{left:221.733333pt;}
.xc6_c00117{left:222.666667pt;}
.x11f_c00117{left:224.666667pt;}
.xe3_c00117{left:226.800000pt;}
.x83_c00117{left:229.733333pt;}
.x28_c00117{left:230.933333pt;}
.x12f_c00117{left:233.066667pt;}
.x19_c00117{left:234.000000pt;}
.x67_c00117{left:235.200000pt;}
.x5a_c00117{left:236.533333pt;}
.xbb_c00117{left:238.133333pt;}
.x106_c00117{left:239.866667pt;}
.x119_c00117{left:240.800000pt;}
.x37_c00117{left:244.133333pt;}
.xf7_c00117{left:245.333333pt;}
.xb3_c00117{left:246.666667pt;}
.x7a_c00117{left:248.000000pt;}
.xd2_c00117{left:249.866667pt;}
.x1a_c00117{left:252.533333pt;}
.x5b_c00117{left:253.866667pt;}
.xa_c00117{left:256.933333pt;}
.x90_c00117{left:260.666667pt;}
.x73_c00117{left:262.133333pt;}
.xae_c00117{left:263.466667pt;}
.x44_c00117{left:264.800000pt;}
.xa1_c00117{left:266.133333pt;}
.x84_c00117{left:268.400000pt;}
.xeb_c00117{left:269.600000pt;}
.x9b_c00117{left:272.266667pt;}
.x29_c00117{left:273.200000pt;}
.x120_c00117{left:277.733333pt;}
.x125_c00117{left:279.333333pt;}
.x107_c00117{left:280.800000pt;}
.xce_c00117{left:281.733333pt;}
.x4f_c00117{left:283.600000pt;}
.x85_c00117{left:286.000000pt;}
.xdd_c00117{left:287.200000pt;}
.x5c_c00117{left:288.400000pt;}
.x12b_c00117{left:290.266667pt;}
.x127_c00117{left:292.000000pt;}
.x2a_c00117{left:293.066667pt;}
.x91_c00117{left:294.000000pt;}
.x1b_c00117{left:296.000000pt;}
.x10d_c00117{left:298.133333pt;}
.x108_c00117{left:299.333333pt;}
.xcc_c00117{left:300.266667pt;}
.xfe_c00117{left:302.933333pt;}
.xb_c00117{left:304.666667pt;}
.x38_c00117{left:305.866667pt;}
.x7b_c00117{left:307.466667pt;}
.x68_c00117{left:311.066667pt;}
.xd3_c00117{left:315.466667pt;}
.x45_c00117{left:316.666667pt;}
.x2b_c00117{left:319.333333pt;}
.x1_c00117{left:320.933333pt;}
.xaf_c00117{left:322.666667pt;}
.x92_c00117{left:324.133333pt;}
.xd4_c00117{left:325.066667pt;}
.xa2_c00117{left:326.000000pt;}
.x113_c00117{left:326.933333pt;}
.x109_c00117{left:328.133333pt;}
.x128_c00117{left:329.466667pt;}
.xb4_c00117{left:330.533333pt;}
.xab_c00117{left:332.933333pt;}
.x7c_c00117{left:334.000000pt;}
.xc_c00117{left:335.066667pt;}
.xe4_c00117{left:336.133333pt;}
.x103_c00117{left:342.266667pt;}
.x50_c00117{left:343.200000pt;}
.x69_c00117{left:344.400000pt;}
.x46_c00117{left:346.400000pt;}
.xec_c00117{left:348.000000pt;}
.x74_c00117{left:349.200000pt;}
.x7d_c00117{left:350.666667pt;}
.x5d_c00117{left:352.400000pt;}
.x1c_c00117{left:355.866667pt;}
.xbc_c00117{left:357.466667pt;}
.x93_c00117{left:358.400000pt;}
.xd_c00117{left:360.000000pt;}
.x114_c00117{left:364.666667pt;}
.x39_c00117{left:366.666667pt;}
.xf0_c00117{left:367.733333pt;}
.x121_c00117{left:368.933333pt;}
.x9c_c00117{left:370.400000pt;}
.x1d_c00117{left:373.733333pt;}
.xde_c00117{left:376.133333pt;}
.x51_c00117{left:377.733333pt;}
.x5e_c00117{left:380.266667pt;}
.xc1_c00117{left:383.466667pt;}
.x10e_c00117{left:385.866667pt;}
.xcf_c00117{left:386.933333pt;}
.x2c_c00117{left:387.866667pt;}
.x11a_c00117{left:390.800000pt;}
.xff_c00117{left:392.533333pt;}
.x86_c00117{left:393.466667pt;}
.xe5_c00117{left:395.333333pt;}
.x52_c00117{left:397.200000pt;}
.xf8_c00117{left:400.266667pt;}
.x1e_c00117{left:401.600000pt;}
.xa3_c00117{left:406.000000pt;}
.xb5_c00117{left:407.333333pt;}
.xe_c00117{left:410.266667pt;}
.x2_c00117{left:411.866667pt;}
.xd5_c00117{left:413.733333pt;}
.x1f_c00117{left:418.933333pt;}
.xed_c00117{left:422.266667pt;}
.x53_c00117{left:423.466667pt;}
.x47_c00117{left:425.466667pt;}
.xf1_c00117{left:427.333333pt;}
.x3a_c00117{left:431.600000pt;}
.x3_c00117{left:432.666667pt;}
.x118_c00117{left:433.733333pt;}
.x87_c00117{left:436.400000pt;}
.xf9_c00117{left:440.933333pt;}
.x2d_c00117{left:442.533333pt;}
.x20_c00117{left:443.866667pt;}
.x5f_c00117{left:445.866667pt;}
.x12c_c00117{left:447.333333pt;}
.xa4_c00117{left:448.266667pt;}
.x6a_c00117{left:449.600000pt;}
.x7e_c00117{left:453.066667pt;}
.x54_c00117{left:454.800000pt;}
.xd6_c00117{left:456.533333pt;}
.xbd_c00117{left:457.866667pt;}
.xdf_c00117{left:460.800000pt;}
.x75_c00117{left:463.066667pt;}
.xf_c00117{left:464.000000pt;}
.xb6_c00117{left:465.600000pt;}
.x7f_c00117{left:466.800000pt;}
.x2e_c00117{left:469.066667pt;}
.x88_c00117{left:470.933333pt;}
.xee_c00117{left:471.866667pt;}
.xfa_c00117{left:474.533333pt;}
.xe6_c00117{left:476.666667pt;}
.xb0_c00117{left:478.133333pt;}
.x129_c00117{left:479.066667pt;}
.x3b_c00117{left:482.133333pt;}
.x10_c00117{left:485.066667pt;}
.x6b_c00117{left:488.666667pt;}
.x60_c00117{left:490.400000pt;}
.x94_c00117{left:491.866667pt;}
.x55_c00117{left:493.200000pt;}
.x9d_c00117{left:494.533333pt;}
.x76_c00117{left:498.933333pt;}
.xe0_c00117{left:500.133333pt;}
.x6c_c00117{left:501.200000pt;}
.x48_c00117{left:502.533333pt;}
.x21_c00117{left:505.333333pt;}
.x11_c00117{left:507.466667pt;}
.x122_c00117{left:508.400000pt;}
.x9e_c00117{left:512.400000pt;}
.x11b_c00117{left:513.600000pt;}
.xb7_c00117{left:514.533333pt;}
.x89_c00117{left:516.400000pt;}
.xe1_c00117{left:517.733333pt;}
.xef_c00117{left:518.933333pt;}
.xc7_c00117{left:520.400000pt;}
.x95_c00117{left:524.133333pt;}
.x6d_c00117{left:526.133333pt;}
.xa5_c00117{left:528.266667pt;}
.x123_c00117{left:529.200000pt;}
.x49_c00117{left:533.866667pt;}
.xd7_c00117{left:537.866667pt;}
.x12_c00117{left:538.800000pt;}
.x2f_c00117{left:540.400000pt;}
.xe2_c00117{left:541.733333pt;}
.x61_c00117{left:543.200000pt;}
.x8a_c00117{left:545.200000pt;}
.xbe_c00117{left:547.200000pt;}
.x100_c00117{left:548.133333pt;}
.x22_c00117{left:550.800000pt;}
.x6e_c00117{left:555.333333pt;}
.x77_c00117{left:558.133333pt;}
.x115_c00117{left:559.600000pt;}
.x130_c00117{left:562.266667pt;}
.xa6_c00117{left:564.400000pt;}
.x3c_c00117{left:565.333333pt;}
.x62_c00117{left:568.133333pt;}
.xf2_c00117{left:569.333333pt;}
.x80_c00117{left:570.800000pt;}
.xbf_c00117{left:572.133333pt;}
.x78_c00117{left:573.466667pt;}
.x56_c00117{left:574.800000pt;}
.xe7_c00117{left:575.866667pt;}
.xcd_c00117{left:580.266667pt;}
.x96_c00117{left:582.666667pt;}
.x13_c00117{left:583.600000pt;}
.xb1_c00117{left:584.666667pt;}
.x23_c00117{left:585.733333pt;}
.x12a_c00117{left:588.133333pt;}
.x3d_c00117{left:589.066667pt;}
.x30_c00117{left:590.266667pt;}
.x8b_c00117{left:594.133333pt;}
.x10a_c00117{left:596.000000pt;}
.x9f_c00117{left:598.266667pt;}
.xfb_c00117{left:599.466667pt;}
.xd8_c00117{left:601.466667pt;}
.x6f_c00117{left:603.866667pt;}
.x4a_c00117{left:606.800000pt;}
.xc8_c00117{left:608.800000pt;}
.xa7_c00117{left:611.200000pt;}
.x116_c00117{left:612.133333pt;}
.x8c_c00117{left:613.333333pt;}
.x81_c00117{left:614.933333pt;}
.xe8_c00117{left:615.866667pt;}
.xb8_c00117{left:616.933333pt;}
.x3e_c00117{left:618.533333pt;}
.x31_c00117{left:620.400000pt;}
.xc2_c00117{left:622.000000pt;}
.x10f_c00117{left:622.933333pt;}
.xc0_c00117{left:624.000000pt;}
.x14_c00117{left:626.533333pt;}
.x11c_c00117{left:628.400000pt;}
.xa8_c00117{left:630.400000pt;}
.x24_c00117{left:631.866667pt;}
.xd9_c00117{left:632.800000pt;}
.x70_c00117{left:634.266667pt;}
.x10b_c00117{left:635.333333pt;}
.x63_c00117{left:636.533333pt;}
.x32_c00117{left:639.333333pt;}
.xfc_c00117{left:642.400000pt;}
.x3f_c00117{left:643.466667pt;}
.xf3_c00117{left:646.800000pt;}
.x97_c00117{left:649.200000pt;}
.xd0_c00117{left:650.266667pt;}
.x15_c00117{left:651.200000pt;}
.x101_c00117{left:653.733333pt;}
.xb9_c00117{left:655.333333pt;}
.xe9_c00117{left:656.800000pt;}
.x25_c00117{left:658.133333pt;}
.x4b_c00117{left:659.600000pt;}
.xa9_c00117{left:660.533333pt;}
.x64_c00117{left:662.133333pt;}
.x33_c00117{left:664.933333pt;}
.x79_c00117{left:666.266667pt;}
.x110_c00117{left:667.733333pt;}
.x16_c00117{left:668.800000pt;}
.x71_c00117{left:670.133333pt;}
.xc9_c00117{left:671.200000pt;}
.x4_c00117{left:672.933333pt;}
.xf4_c00117{left:675.333333pt;}
.x4c_c00117{left:676.266667pt;}
.x40_c00117{left:677.733333pt;}
}





/* 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_c00118 {
    display:none;
  }
  .loading-indicator_c00118.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00118 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_c00118 { 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_c00118" -> "#page-container .classname_c00118")
 */
.pf_c00118 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00118 { /* 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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00118 { /* 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_c00118 { /* 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_c00118 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00118 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00118 {overflow:visible;}
  }
}
.c_c00118 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00118 { /* 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_c00118:after { /* webkit #35443 */
  content: '';
}
.t_c00118:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00118 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 */
}
.__c00118 { /* 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_c00118 { /* info for Javascript */
  display:none;
}
.l_c00118 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00118 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00118 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00118: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_c00118 {
    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_c00118.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00118.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_c00118 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00118{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.000000;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;}
.m2d_c00118{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00118{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00118{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00118{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00118{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m63_c00118{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00118{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m74_c00118{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4_c00118{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mab_c00118{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m83_c00118{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00118{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00118{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m97_c00118{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.maa_c00118{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00118{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m59_c00118{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00118{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m41_c00118{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m46_c00118{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m76_c00118{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00118{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00118{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00118{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m28_c00118{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00118{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00118{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00118{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m81_c00118{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00118{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m88_c00118{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00118{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m78_c00118{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00118{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m52_c00118{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00118{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00118{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00118{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00118{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00118{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m73_c00118{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m84_c00118{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00118{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m90_c00118{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00118{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m89_c00118{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00118{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m15_c00118{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00118{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00118{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m98_c00118{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m43_c00118{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00118{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m60_c00118{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m95_c00118{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m49_c00118{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m77_c00118{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00118{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00118{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00118{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m65_c00118{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m47_c00118{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00118{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m54_c00118{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m75_c00118{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m94_c00118{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00118{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m36_c00118{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00118{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m30_c00118{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m87_c00118{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m96_c00118{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00118{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m56_c00118{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m12_c00118{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m72_c00118{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m85_c00118{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00118{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00118{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m86_c00118{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m79_c00118{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m31_c00118{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00118{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00118{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m58_c00118{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00118{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m62_c00118{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m93_c00118{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00118{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00118{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00118{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00118{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m18_c00118{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m27_c00118{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m53_c00118{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m57_c00118{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00118{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m48_c00118{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m40_c00118{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m91_c00118{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m66_c00118{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m92_c00118{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);}
.m17_c00118{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma_c00118{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m61_c00118{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00118{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00118{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00118{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m33_c00118{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m42_c00118{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m68_c00118{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00118{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00118{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00118{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m32_c00118{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00118{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m50_c00118{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m64_c00118{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m67_c00118{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00118{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m82_c00118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00118{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00118{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m51_c00118{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m70_c00118{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00118{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00118{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m99_c00118{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00118{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00118{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c00118{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00118{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00118{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00118{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m44_c00118{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00118{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m3_c00118{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{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__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00118{word-spacing:-7.432432px;}
.ws4_c00118{word-spacing:0.000000px;}
.ws3_c00118{word-spacing:0.178571px;}
.ws0_c00118{word-spacing:6.666667px;}
.ws2_c00118{word-spacing:13.928571px;}
.fc0_c00118{color:transparent;}
.fs0_c00118{font-size:60.000000px;}
.y0_c00118{bottom:0.000000px;}
.y2a_c00118{bottom:179.250000px;}
.y29_c00118{bottom:229.200000px;}
.y28_c00118{bottom:249.300000px;}
.y27_c00118{bottom:269.100000px;}
.y26_c00118{bottom:288.900000px;}
.y25_c00118{bottom:309.000000px;}
.y24_c00118{bottom:329.100000px;}
.y23_c00118{bottom:349.200000px;}
.y22_c00118{bottom:369.300000px;}
.y21_c00118{bottom:389.100000px;}
.y20_c00118{bottom:409.200000px;}
.y1f_c00118{bottom:429.000000px;}
.y1e_c00118{bottom:449.100000px;}
.y1d_c00118{bottom:469.200000px;}
.y1c_c00118{bottom:489.000000px;}
.y1b_c00118{bottom:509.100000px;}
.y1a_c00118{bottom:529.200000px;}
.y19_c00118{bottom:549.000000px;}
.y18_c00118{bottom:568.800000px;}
.y17_c00118{bottom:588.900000px;}
.y16_c00118{bottom:609.000000px;}
.y15_c00118{bottom:629.100000px;}
.y14_c00118{bottom:648.900000px;}
.y13_c00118{bottom:669.000000px;}
.y12_c00118{bottom:688.800000px;}
.y11_c00118{bottom:708.900000px;}
.y10_c00118{bottom:728.400000px;}
.yf_c00118{bottom:748.500000px;}
.ye_c00118{bottom:768.600000px;}
.yd_c00118{bottom:788.700000px;}
.yc_c00118{bottom:809.250000px;}
.yb_c00118{bottom:829.800000px;}
.ya_c00118{bottom:849.600000px;}
.y9_c00118{bottom:869.400000px;}
.y8_c00118{bottom:889.500000px;}
.y7_c00118{bottom:909.300000px;}
.y6_c00118{bottom:929.400000px;}
.y5_c00118{bottom:949.500000px;}
.y4_c00118{bottom:969.300000px;}
.y3_c00118{bottom:989.400000px;}
.y2_c00118{bottom:1009.500000px;}
.y1_c00118{bottom:1047.900000px;}
.h2_c00118{height:60.000000px;}
.h1_c00118{height:1167.750000px;}
.h0_c00118{height:1167.839997px;}
.w1_c00118{width:920.250000px;}
.w0_c00118{width:920.519990px;}
.x0_c00118{left:0.000000px;}
.xfd_c00118{left:145.800000px;}
.x52_c00118{left:146.850000px;}
.x11_c00118{left:148.050000px;}
.x1_c00118{left:149.400000px;}
.x120_c00118{left:162.600000px;}
.x2b_c00118{left:166.950000px;}
.x60_c00118{left:170.250000px;}
.xde_c00118{left:173.550000px;}
.x53_c00118{left:174.900000px;}
.x79_c00118{left:177.450000px;}
.xb6_c00118{left:180.000000px;}
.xf2_c00118{left:183.300000px;}
.xad_c00118{left:184.500000px;}
.x47_c00118{left:187.350000px;}
.xcc_c00118{left:192.750000px;}
.x20_c00118{left:194.250000px;}
.x9f_c00118{left:196.050000px;}
.xda_c00118{left:199.350000px;}
.x116_c00118{left:204.750000px;}
.xea_c00118{left:206.550000px;}
.x3_c00118{left:207.750000px;}
.xae_c00118{left:213.000000px;}
.x103_c00118{left:214.500000px;}
.xdf_c00118{left:217.500000px;}
.xa0_c00118{left:219.750000px;}
.x69_c00118{left:222.300000px;}
.x3b_c00118{left:225.600000px;}
.x4_c00118{left:227.250000px;}
.xf3_c00118{left:231.900000px;}
.x2c_c00118{left:233.550000px;}
.x7a_c00118{left:236.100000px;}
.xd0_c00118{left:238.950000px;}
.x10d_c00118{left:240.450000px;}
.x12_c00118{left:241.950000px;}
.xc0_c00118{left:244.200000px;}
.x8e_c00118{left:245.550000px;}
.x54_c00118{left:247.950000px;}
.xeb_c00118{left:250.500000px;}
.x5_c00118{left:251.700000px;}
.x21_c00118{left:256.200000px;}
.x13_c00118{left:259.200000px;}
.x117_c00118{left:260.250000px;}
.xaf_c00118{left:263.700000px;}
.x6a_c00118{left:264.750000px;}
.xd1_c00118{left:266.250000px;}
.xb7_c00118{left:268.200000px;}
.xa1_c00118{left:271.200000px;}
.xc1_c00118{left:273.000000px;}
.x10e_c00118{left:274.350000px;}
.xf4_c00118{left:275.400000px;}
.x8f_c00118{left:276.900000px;}
.x83_c00118{left:277.950000px;}
.x6_c00118{left:281.250000px;}
.xa2_c00118{left:282.300000px;}
.xbb_c00118{left:283.500000px;}
.xb8_c00118{left:285.900000px;}
.x2d_c00118{left:287.250000px;}
.x121_c00118{left:288.900000px;}
.x118_c00118{left:291.600000px;}
.x123_c00118{left:294.300000px;}
.x73_c00118{left:296.700000px;}
.x48_c00118{left:298.200000px;}
.xa3_c00118{left:299.250000px;}
.xe4_c00118{left:301.350000px;}
.xd6_c00118{left:302.550000px;}
.x22_c00118{left:303.750000px;}
.xd2_c00118{left:307.950000px;}
.x84_c00118{left:310.650000px;}
.x90_c00118{left:311.850000px;}
.x2e_c00118{left:316.050000px;}
.x23_c00118{left:318.150000px;}
.x7_c00118{left:319.350000px;}
.x55_c00118{left:322.800000px;}
.xa4_c00118{left:324.750000px;}
.x7b_c00118{left:325.800000px;}
.xc2_c00118{left:327.000000px;}
.x6b_c00118{left:328.800000px;}
.x14_c00118{left:331.500000px;}
.xec_c00118{left:333.300000px;}
.xd7_c00118{left:334.950000px;}
.x8_c00118{left:339.900000px;}
.x2f_c00118{left:342.300000px;}
.xdb_c00118{left:344.100000px;}
.x24_c00118{left:346.200000px;}
.xcd_c00118{left:349.350000px;}
.x85_c00118{left:350.700000px;}
.x74_c00118{left:352.500000px;}
.x122_c00118{left:353.700000px;}
.x6c_c00118{left:355.050000px;}
.x119_c00118{left:356.700000px;}
.x98_c00118{left:361.950000px;}
.x127_c00118{left:363.600000px;}
.x3c_c00118{left:364.950000px;}
.x15_c00118{left:367.800000px;}
.x56_c00118{left:368.850000px;}
.x7c_c00118{left:370.050000px;}
.x86_c00118{left:371.550000px;}
.xbc_c00118{left:374.250000px;}
.xb0_c00118{left:375.750000px;}
.x75_c00118{left:377.400000px;}
.x49_c00118{left:378.450000px;}
.x9_c00118{left:380.250000px;}
.xc8_c00118{left:383.700000px;}
.x10f_c00118{left:385.950000px;}
.xf9_c00118{left:387.300000px;}
.x104_c00118{left:389.250000px;}
.xa5_c00118{left:394.200000px;}
.x91_c00118{left:396.150000px;}
.x7d_c00118{left:398.550000px;}
.x128_c00118{left:400.350000px;}
.x11a_c00118{left:401.700000px;}
.x57_c00118{left:404.100000px;}
.x25_c00118{left:407.400000px;}
.xa_c00118{left:408.750000px;}
.x76_c00118{left:409.800000px;}
.xa6_c00118{left:411.150000px;}
.x6d_c00118{left:412.650000px;}
.x30_c00118{left:414.600000px;}
.xc3_c00118{left:418.050000px;}
.xf5_c00118{left:419.400000px;}
.x7e_c00118{left:421.200000px;}
.x3d_c00118{left:422.550000px;}
.x4a_c00118{left:424.200000px;}
.x108_c00118{left:426.450000px;}
.x92_c00118{left:427.500000px;}
.xe5_c00118{left:430.050000px;}
.xed_c00118{left:431.550000px;}
.x58_c00118{left:432.600000px;}
.x16_c00118{left:433.650000px;}
.x99_c00118{left:435.000000px;}
.xbd_c00118{left:437.250000px;}
.x87_c00118{left:443.550000px;}
.x31_c00118{left:444.900000px;}
.x2_c00118{left:446.100000px;}
.xfe_c00118{left:447.900000px;}
.xee_c00118{left:449.550000px;}
.xc4_c00118{left:452.550000px;}
.x3e_c00118{left:453.900000px;}
.x17_c00118{left:455.550000px;}
.xa7_c00118{left:456.900000px;}
.xf6_c00118{left:461.100000px;}
.x129_c00118{left:464.100000px;}
.xbe_c00118{left:465.300000px;}
.x61_c00118{left:469.500000px;}
.xdc_c00118{left:473.700000px;}
.x32_c00118{left:475.800000px;}
.x59_c00118{left:479.100000px;}
.x88_c00118{left:480.300000px;}
.x18_c00118{left:481.500000px;}
.xfa_c00118{left:483.000000px;}
.xa8_c00118{left:484.950000px;}
.x6e_c00118{left:487.200000px;}
.xb1_c00118{left:489.600000px;}
.xb_c00118{left:491.550000px;}
.x109_c00118{left:493.350000px;}
.x11b_c00118{left:494.700000px;}
.x33_c00118{left:497.400000px;}
.xe0_c00118{left:499.650000px;}
.x26_c00118{left:501.300000px;}
.x9a_c00118{left:502.650000px;}
.x6f_c00118{left:505.200000px;}
.x3f_c00118{left:506.400000px;}
.x93_c00118{left:508.500000px;}
.xc9_c00118{left:509.850000px;}
.x4b_c00118{left:511.950000px;}
.xe6_c00118{left:514.350000px;}
.x89_c00118{left:515.550000px;}
.xce_c00118{left:519.300000px;}
.x19_c00118{left:521.850000px;}
.xf7_c00118{left:524.100000px;}
.x34_c00118{left:526.200000px;}
.x27_c00118{left:529.350000px;}
.xd3_c00118{left:531.900000px;}
.x77_c00118{left:533.250000px;}
.x40_c00118{left:534.900000px;}
.x11c_c00118{left:536.100000px;}
.x9b_c00118{left:537.150000px;}
.x70_c00118{left:541.200000px;}
.x8a_c00118{left:545.400000px;}
.xb2_c00118{left:546.900000px;}
.xc_c00118{left:549.900000px;}
.x94_c00118{left:550.950000px;}
.x62_c00118{left:553.050000px;}
.x4c_c00118{left:555.450000px;}
.x12a_c00118{left:557.250000px;}
.xef_c00118{left:559.350000px;}
.x5a_c00118{left:562.950000px;}
.x10a_c00118{left:565.350000px;}
.xe1_c00118{left:567.300000px;}
.xb3_c00118{left:569.550000px;}
.x7f_c00118{left:572.100000px;}
.x63_c00118{left:574.950000px;}
.x41_c00118{left:576.000000px;}
.x35_c00118{left:577.350000px;}
.xd_c00118{left:579.450000px;}
.xff_c00118{left:580.800000px;}
.xa9_c00118{left:582.150000px;}
.x105_c00118{left:585.150000px;}
.x95_c00118{left:586.950000px;}
.xbf_c00118{left:589.200000px;}
.x1a_c00118{left:593.100000px;}
.x5b_c00118{left:594.300000px;}
.x124_c00118{left:597.300000px;}
.x80_c00118{left:599.100000px;}
.x8b_c00118{left:603.000000px;}
.xcf_c00118{left:604.650000px;}
.xb4_c00118{left:606.300000px;}
.xaa_c00118{left:607.350000px;}
.x4d_c00118{left:612.300000px;}
.xfb_c00118{left:613.950000px;}
.x1b_c00118{left:615.750000px;}
.x100_c00118{left:618.300000px;}
.xe_c00118{left:619.350000px;}
.xd8_c00118{left:621.750000px;}
.x9c_c00118{left:622.950000px;}
.x106_c00118{left:624.450000px;}
.x5c_c00118{left:626.700000px;}
.xc5_c00118{left:628.350000px;}
.x113_c00118{left:630.300000px;}
.x78_c00118{left:631.500000px;}
.x1c_c00118{left:632.700000px;}
.x28_c00118{left:634.500000px;}
.x42_c00118{left:636.900000px;}
.xe7_c00118{left:638.400000px;}
.x96_c00118{left:640.200000px;}
.x64_c00118{left:645.150000px;}
.xc6_c00118{left:647.850000px;}
.xb9_c00118{left:649.050000px;}
.x36_c00118{left:654.450000px;}
.x29_c00118{left:656.850000px;}
.x10b_c00118{left:658.200000px;}
.x5d_c00118{left:659.400000px;}
.xdd_c00118{left:660.750000px;}
.x81_c00118{left:661.800000px;}
.xfc_c00118{left:665.700000px;}
.xba_c00118{left:667.350000px;}
.x43_c00118{left:669.300000px;}
.x37_c00118{left:671.700000px;}
.x65_c00118{left:673.650000px;}
.x71_c00118{left:674.700000px;}
.xd4_c00118{left:676.200000px;}
.x107_c00118{left:679.200000px;}
.x11d_c00118{left:680.400000px;}
.x110_c00118{left:681.600000px;}
.xe2_c00118{left:683.100000px;}
.xf_c00118{left:685.200000px;}
.x125_c00118{left:687.600000px;}
.x8c_c00118{left:690.150000px;}
.xab_c00118{left:691.650000px;}
.x9d_c00118{left:692.850000px;}
.x1d_c00118{left:696.000000px;}
.xd5_c00118{left:701.400000px;}
.xf8_c00118{left:703.050000px;}
.x5e_c00118{left:705.150000px;}
.xca_c00118{left:707.100000px;}
.x44_c00118{left:708.600000px;}
.x4e_c00118{left:710.250000px;}
.x82_c00118{left:712.500000px;}
.x66_c00118{left:715.050000px;}
.x10c_c00118{left:716.100000px;}
.xe8_c00118{left:717.300000px;}
.x1e_c00118{left:718.350000px;}
.x10_c00118{left:720.450000px;}
.xf0_c00118{left:721.800000px;}
.x97_c00118{left:723.750000px;}
.x111_c00118{left:725.850000px;}
.xe3_c00118{left:727.800000px;}
.x38_c00118{left:732.900000px;}
.xb5_c00118{left:734.100000px;}
.x11e_c00118{left:735.150000px;}
.x45_c00118{left:737.400000px;}
.xd9_c00118{left:739.800000px;}
.xcb_c00118{left:741.000000px;}
.x114_c00118{left:742.950000px;}
.xf1_c00118{left:745.200000px;}
.xac_c00118{left:747.450000px;}
.x4f_c00118{left:750.150000px;}
.x2a_c00118{left:752.250000px;}
.x72_c00118{left:757.500000px;}
.x126_c00118{left:759.600000px;}
.x11f_c00118{left:760.650000px;}
.x5f_c00118{left:762.750000px;}
.x9e_c00118{left:764.100000px;}
.x101_c00118{left:766.350000px;}
.x50_c00118{left:771.000000px;}
.x8d_c00118{left:772.200000px;}
.x67_c00118{left:777.300000px;}
.x112_c00118{left:779.100000px;}
.x39_c00118{left:782.250000px;}
.x46_c00118{left:784.950000px;}
.x102_c00118{left:786.150000px;}
.xc7_c00118{left:789.300000px;}
.x1f_c00118{left:790.350000px;}
.x115_c00118{left:791.550000px;}
.x3a_c00118{left:793.350000px;}
.x68_c00118{left:797.850000px;}
.xe9_c00118{left:800.100000px;}
.x51_c00118{left:801.300000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws1_c00118{word-spacing:-6.606607pt;}
.ws4_c00118{word-spacing:0.000000pt;}
.ws3_c00118{word-spacing:0.158730pt;}
.ws0_c00118{word-spacing:5.925926pt;}
.ws2_c00118{word-spacing:12.380952pt;}
.fs0_c00118{font-size:53.333333pt;}
.y0_c00118{bottom:0.000000pt;}
.y2a_c00118{bottom:159.333333pt;}
.y29_c00118{bottom:203.733333pt;}
.y28_c00118{bottom:221.600000pt;}
.y27_c00118{bottom:239.200000pt;}
.y26_c00118{bottom:256.800000pt;}
.y25_c00118{bottom:274.666667pt;}
.y24_c00118{bottom:292.533333pt;}
.y23_c00118{bottom:310.400000pt;}
.y22_c00118{bottom:328.266667pt;}
.y21_c00118{bottom:345.866667pt;}
.y20_c00118{bottom:363.733333pt;}
.y1f_c00118{bottom:381.333333pt;}
.y1e_c00118{bottom:399.200000pt;}
.y1d_c00118{bottom:417.066667pt;}
.y1c_c00118{bottom:434.666667pt;}
.y1b_c00118{bottom:452.533333pt;}
.y1a_c00118{bottom:470.400000pt;}
.y19_c00118{bottom:488.000000pt;}
.y18_c00118{bottom:505.600000pt;}
.y17_c00118{bottom:523.466667pt;}
.y16_c00118{bottom:541.333333pt;}
.y15_c00118{bottom:559.200000pt;}
.y14_c00118{bottom:576.800000pt;}
.y13_c00118{bottom:594.666667pt;}
.y12_c00118{bottom:612.266667pt;}
.y11_c00118{bottom:630.133333pt;}
.y10_c00118{bottom:647.466667pt;}
.yf_c00118{bottom:665.333333pt;}
.ye_c00118{bottom:683.200000pt;}
.yd_c00118{bottom:701.066667pt;}
.yc_c00118{bottom:719.333333pt;}
.yb_c00118{bottom:737.600000pt;}
.ya_c00118{bottom:755.200000pt;}
.y9_c00118{bottom:772.800000pt;}
.y8_c00118{bottom:790.666667pt;}
.y7_c00118{bottom:808.266667pt;}
.y6_c00118{bottom:826.133333pt;}
.y5_c00118{bottom:844.000000pt;}
.y4_c00118{bottom:861.600000pt;}
.y3_c00118{bottom:879.466667pt;}
.y2_c00118{bottom:897.333333pt;}
.y1_c00118{bottom:931.466667pt;}
.h2_c00118{height:53.333333pt;}
.h1_c00118{height:1038.000000pt;}
.h0_c00118{height:1038.079997pt;}
.w1_c00118{width:818.000000pt;}
.w0_c00118{width:818.239991pt;}
.x0_c00118{left:0.000000pt;}
.xfd_c00118{left:129.600000pt;}
.x52_c00118{left:130.533333pt;}
.x11_c00118{left:131.600000pt;}
.x1_c00118{left:132.800000pt;}
.x120_c00118{left:144.533333pt;}
.x2b_c00118{left:148.400000pt;}
.x60_c00118{left:151.333333pt;}
.xde_c00118{left:154.266667pt;}
.x53_c00118{left:155.466667pt;}
.x79_c00118{left:157.733333pt;}
.xb6_c00118{left:160.000000pt;}
.xf2_c00118{left:162.933333pt;}
.xad_c00118{left:164.000000pt;}
.x47_c00118{left:166.533333pt;}
.xcc_c00118{left:171.333333pt;}
.x20_c00118{left:172.666667pt;}
.x9f_c00118{left:174.266667pt;}
.xda_c00118{left:177.200000pt;}
.x116_c00118{left:182.000000pt;}
.xea_c00118{left:183.600000pt;}
.x3_c00118{left:184.666667pt;}
.xae_c00118{left:189.333333pt;}
.x103_c00118{left:190.666667pt;}
.xdf_c00118{left:193.333333pt;}
.xa0_c00118{left:195.333333pt;}
.x69_c00118{left:197.600000pt;}
.x3b_c00118{left:200.533333pt;}
.x4_c00118{left:202.000000pt;}
.xf3_c00118{left:206.133333pt;}
.x2c_c00118{left:207.600000pt;}
.x7a_c00118{left:209.866667pt;}
.xd0_c00118{left:212.400000pt;}
.x10d_c00118{left:213.733333pt;}
.x12_c00118{left:215.066667pt;}
.xc0_c00118{left:217.066667pt;}
.x8e_c00118{left:218.266667pt;}
.x54_c00118{left:220.400000pt;}
.xeb_c00118{left:222.666667pt;}
.x5_c00118{left:223.733333pt;}
.x21_c00118{left:227.733333pt;}
.x13_c00118{left:230.400000pt;}
.x117_c00118{left:231.333333pt;}
.xaf_c00118{left:234.400000pt;}
.x6a_c00118{left:235.333333pt;}
.xd1_c00118{left:236.666667pt;}
.xb7_c00118{left:238.400000pt;}
.xa1_c00118{left:241.066667pt;}
.xc1_c00118{left:242.666667pt;}
.x10e_c00118{left:243.866667pt;}
.xf4_c00118{left:244.800000pt;}
.x8f_c00118{left:246.133333pt;}
.x83_c00118{left:247.066667pt;}
.x6_c00118{left:250.000000pt;}
.xa2_c00118{left:250.933333pt;}
.xbb_c00118{left:252.000000pt;}
.xb8_c00118{left:254.133333pt;}
.x2d_c00118{left:255.333333pt;}
.x121_c00118{left:256.800000pt;}
.x118_c00118{left:259.200000pt;}
.x123_c00118{left:261.600000pt;}
.x73_c00118{left:263.733333pt;}
.x48_c00118{left:265.066667pt;}
.xa3_c00118{left:266.000000pt;}
.xe4_c00118{left:267.866667pt;}
.xd6_c00118{left:268.933333pt;}
.x22_c00118{left:270.000000pt;}
.xd2_c00118{left:273.733333pt;}
.x84_c00118{left:276.133333pt;}
.x90_c00118{left:277.200000pt;}
.x2e_c00118{left:280.933333pt;}
.x23_c00118{left:282.800000pt;}
.x7_c00118{left:283.866667pt;}
.x55_c00118{left:286.933333pt;}
.xa4_c00118{left:288.666667pt;}
.x7b_c00118{left:289.600000pt;}
.xc2_c00118{left:290.666667pt;}
.x6b_c00118{left:292.266667pt;}
.x14_c00118{left:294.666667pt;}
.xec_c00118{left:296.266667pt;}
.xd7_c00118{left:297.733333pt;}
.x8_c00118{left:302.133333pt;}
.x2f_c00118{left:304.266667pt;}
.xdb_c00118{left:305.866667pt;}
.x24_c00118{left:307.733333pt;}
.xcd_c00118{left:310.533333pt;}
.x85_c00118{left:311.733333pt;}
.x74_c00118{left:313.333333pt;}
.x122_c00118{left:314.400000pt;}
.x6c_c00118{left:315.600000pt;}
.x119_c00118{left:317.066667pt;}
.x98_c00118{left:321.733333pt;}
.x127_c00118{left:323.200000pt;}
.x3c_c00118{left:324.400000pt;}
.x15_c00118{left:326.933333pt;}
.x56_c00118{left:327.866667pt;}
.x7c_c00118{left:328.933333pt;}
.x86_c00118{left:330.266667pt;}
.xbc_c00118{left:332.666667pt;}
.xb0_c00118{left:334.000000pt;}
.x75_c00118{left:335.466667pt;}
.x49_c00118{left:336.400000pt;}
.x9_c00118{left:338.000000pt;}
.xc8_c00118{left:341.066667pt;}
.x10f_c00118{left:343.066667pt;}
.xf9_c00118{left:344.266667pt;}
.x104_c00118{left:346.000000pt;}
.xa5_c00118{left:350.400000pt;}
.x91_c00118{left:352.133333pt;}
.x7d_c00118{left:354.266667pt;}
.x128_c00118{left:355.866667pt;}
.x11a_c00118{left:357.066667pt;}
.x57_c00118{left:359.200000pt;}
.x25_c00118{left:362.133333pt;}
.xa_c00118{left:363.333333pt;}
.x76_c00118{left:364.266667pt;}
.xa6_c00118{left:365.466667pt;}
.x6d_c00118{left:366.800000pt;}
.x30_c00118{left:368.533333pt;}
.xc3_c00118{left:371.600000pt;}
.xf5_c00118{left:372.800000pt;}
.x7e_c00118{left:374.400000pt;}
.x3d_c00118{left:375.600000pt;}
.x4a_c00118{left:377.066667pt;}
.x108_c00118{left:379.066667pt;}
.x92_c00118{left:380.000000pt;}
.xe5_c00118{left:382.266667pt;}
.xed_c00118{left:383.600000pt;}
.x58_c00118{left:384.533333pt;}
.x16_c00118{left:385.466667pt;}
.x99_c00118{left:386.666667pt;}
.xbd_c00118{left:388.666667pt;}
.x87_c00118{left:394.266667pt;}
.x31_c00118{left:395.466667pt;}
.x2_c00118{left:396.533333pt;}
.xfe_c00118{left:398.133333pt;}
.xee_c00118{left:399.600000pt;}
.xc4_c00118{left:402.266667pt;}
.x3e_c00118{left:403.466667pt;}
.x17_c00118{left:404.933333pt;}
.xa7_c00118{left:406.133333pt;}
.xf6_c00118{left:409.866667pt;}
.x129_c00118{left:412.533333pt;}
.xbe_c00118{left:413.600000pt;}
.x61_c00118{left:417.333333pt;}
.xdc_c00118{left:421.066667pt;}
.x32_c00118{left:422.933333pt;}
.x59_c00118{left:425.866667pt;}
.x88_c00118{left:426.933333pt;}
.x18_c00118{left:428.000000pt;}
.xfa_c00118{left:429.333333pt;}
.xa8_c00118{left:431.066667pt;}
.x6e_c00118{left:433.066667pt;}
.xb1_c00118{left:435.200000pt;}
.xb_c00118{left:436.933333pt;}
.x109_c00118{left:438.533333pt;}
.x11b_c00118{left:439.733333pt;}
.x33_c00118{left:442.133333pt;}
.xe0_c00118{left:444.133333pt;}
.x26_c00118{left:445.600000pt;}
.x9a_c00118{left:446.800000pt;}
.x6f_c00118{left:449.066667pt;}
.x3f_c00118{left:450.133333pt;}
.x93_c00118{left:452.000000pt;}
.xc9_c00118{left:453.200000pt;}
.x4b_c00118{left:455.066667pt;}
.xe6_c00118{left:457.200000pt;}
.x89_c00118{left:458.266667pt;}
.xce_c00118{left:461.600000pt;}
.x19_c00118{left:463.866667pt;}
.xf7_c00118{left:465.866667pt;}
.x34_c00118{left:467.733333pt;}
.x27_c00118{left:470.533333pt;}
.xd3_c00118{left:472.800000pt;}
.x77_c00118{left:474.000000pt;}
.x40_c00118{left:475.466667pt;}
.x11c_c00118{left:476.533333pt;}
.x9b_c00118{left:477.466667pt;}
.x70_c00118{left:481.066667pt;}
.x8a_c00118{left:484.800000pt;}
.xb2_c00118{left:486.133333pt;}
.xc_c00118{left:488.800000pt;}
.x94_c00118{left:489.733333pt;}
.x62_c00118{left:491.600000pt;}
.x4c_c00118{left:493.733333pt;}
.x12a_c00118{left:495.333333pt;}
.xef_c00118{left:497.200000pt;}
.x5a_c00118{left:500.400000pt;}
.x10a_c00118{left:502.533333pt;}
.xe1_c00118{left:504.266667pt;}
.xb3_c00118{left:506.266667pt;}
.x7f_c00118{left:508.533333pt;}
.x63_c00118{left:511.066667pt;}
.x41_c00118{left:512.000000pt;}
.x35_c00118{left:513.200000pt;}
.xd_c00118{left:515.066667pt;}
.xff_c00118{left:516.266667pt;}
.xa9_c00118{left:517.466667pt;}
.x105_c00118{left:520.133333pt;}
.x95_c00118{left:521.733333pt;}
.xbf_c00118{left:523.733333pt;}
.x1a_c00118{left:527.200000pt;}
.x5b_c00118{left:528.266667pt;}
.x124_c00118{left:530.933333pt;}
.x80_c00118{left:532.533333pt;}
.x8b_c00118{left:536.000000pt;}
.xcf_c00118{left:537.466667pt;}
.xb4_c00118{left:538.933333pt;}
.xaa_c00118{left:539.866667pt;}
.x4d_c00118{left:544.266667pt;}
.xfb_c00118{left:545.733333pt;}
.x1b_c00118{left:547.333333pt;}
.x100_c00118{left:549.600000pt;}
.xe_c00118{left:550.533333pt;}
.xd8_c00118{left:552.666667pt;}
.x9c_c00118{left:553.733333pt;}
.x106_c00118{left:555.066667pt;}
.x5c_c00118{left:557.066667pt;}
.xc5_c00118{left:558.533333pt;}
.x113_c00118{left:560.266667pt;}
.x78_c00118{left:561.333333pt;}
.x1c_c00118{left:562.400000pt;}
.x28_c00118{left:564.000000pt;}
.x42_c00118{left:566.133333pt;}
.xe7_c00118{left:567.466667pt;}
.x96_c00118{left:569.066667pt;}
.x64_c00118{left:573.466667pt;}
.xc6_c00118{left:575.866667pt;}
.xb9_c00118{left:576.933333pt;}
.x36_c00118{left:581.733333pt;}
.x29_c00118{left:583.866667pt;}
.x10b_c00118{left:585.066667pt;}
.x5d_c00118{left:586.133333pt;}
.xdd_c00118{left:587.333333pt;}
.x81_c00118{left:588.266667pt;}
.xfc_c00118{left:591.733333pt;}
.xba_c00118{left:593.200000pt;}
.x43_c00118{left:594.933333pt;}
.x37_c00118{left:597.066667pt;}
.x65_c00118{left:598.800000pt;}
.x71_c00118{left:599.733333pt;}
.xd4_c00118{left:601.066667pt;}
.x107_c00118{left:603.733333pt;}
.x11d_c00118{left:604.800000pt;}
.x110_c00118{left:605.866667pt;}
.xe2_c00118{left:607.200000pt;}
.xf_c00118{left:609.066667pt;}
.x125_c00118{left:611.200000pt;}
.x8c_c00118{left:613.466667pt;}
.xab_c00118{left:614.800000pt;}
.x9d_c00118{left:615.866667pt;}
.x1d_c00118{left:618.666667pt;}
.xd5_c00118{left:623.466667pt;}
.xf8_c00118{left:624.933333pt;}
.x5e_c00118{left:626.800000pt;}
.xca_c00118{left:628.533333pt;}
.x44_c00118{left:629.866667pt;}
.x4e_c00118{left:631.333333pt;}
.x82_c00118{left:633.333333pt;}
.x66_c00118{left:635.600000pt;}
.x10c_c00118{left:636.533333pt;}
.xe8_c00118{left:637.600000pt;}
.x1e_c00118{left:638.533333pt;}
.x10_c00118{left:640.400000pt;}
.xf0_c00118{left:641.600000pt;}
.x97_c00118{left:643.333333pt;}
.x111_c00118{left:645.200000pt;}
.xe3_c00118{left:646.933333pt;}
.x38_c00118{left:651.466667pt;}
.xb5_c00118{left:652.533333pt;}
.x11e_c00118{left:653.466667pt;}
.x45_c00118{left:655.466667pt;}
.xd9_c00118{left:657.600000pt;}
.xcb_c00118{left:658.666667pt;}
.x114_c00118{left:660.400000pt;}
.xf1_c00118{left:662.400000pt;}
.xac_c00118{left:664.400000pt;}
.x4f_c00118{left:666.800000pt;}
.x2a_c00118{left:668.666667pt;}
.x72_c00118{left:673.333333pt;}
.x126_c00118{left:675.200000pt;}
.x11f_c00118{left:676.133333pt;}
.x5f_c00118{left:678.000000pt;}
.x9e_c00118{left:679.200000pt;}
.x101_c00118{left:681.200000pt;}
.x50_c00118{left:685.333333pt;}
.x8d_c00118{left:686.400000pt;}
.x67_c00118{left:690.933333pt;}
.x112_c00118{left:692.533333pt;}
.x39_c00118{left:695.333333pt;}
.x46_c00118{left:697.733333pt;}
.x102_c00118{left:698.800000pt;}
.xc7_c00118{left:701.600000pt;}
.x1f_c00118{left:702.533333pt;}
.x115_c00118{left:703.600000pt;}
.x3a_c00118{left:705.200000pt;}
.x68_c00118{left:709.200000pt;}
.xe9_c00118{left:711.200000pt;}
.x51_c00118{left:712.266667pt;}
}





/* 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_c00119 {
    display:none;
  }
  .loading-indicator_c00119.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00119 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_c00119 { 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_c00119" -> "#page-container .classname_c00119")
 */
.pf_c00119 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00119 { /* 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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00119 { /* 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_c00119 { /* 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_c00119 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00119 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00119 {overflow:visible;}
  }
}
.c_c00119 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00119 { /* 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_c00119:after { /* webkit #35443 */
  content: '';
}
.t_c00119:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00119 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 */
}
.__c00119 { /* 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_c00119 { /* info for Javascript */
  display:none;
}
.l_c00119 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00119 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00119 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00119: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_c00119 {
    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_c00119.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00119.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_c00119 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00119{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00119;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.000000;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;}
.m34_c00119{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m42_c00119{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m47_c00119{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12_c00119{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma_c00119{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m30_c00119{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m36_c00119{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.md_c00119{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8_c00119{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m28_c00119{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9_c00119{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00119{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27_c00119{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00119{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m14_c00119{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00119{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf_c00119{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m41_c00119{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m23_c00119{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m25_c00119{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me_c00119{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00119{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m13_c00119{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00119{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m17_c00119{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00119{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.v0_c00119{vertical-align:0.000000px;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{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__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:-5.500000px;}
.ws4_c00119{word-spacing:0.000000px;}
.ws2_c00119{word-spacing:1.500000px;}
.ws1_c00119{word-spacing:1.515571px;}
.ws3_c00119{word-spacing:7.625000px;}
._0_c00119{width:788.500000px;}
.fc0_c00119{color:transparent;}
.fs0_c00119{font-size:54.000000px;}
.y0_c00119{bottom:0.000000px;}
.ya_c00119{bottom:831.900000px;}
.y9_c00119{bottom:868.200000px;}
.y8_c00119{bottom:888.300000px;}
.y7_c00119{bottom:908.400000px;}
.y6_c00119{bottom:928.200000px;}
.y5_c00119{bottom:948.300000px;}
.y4_c00119{bottom:968.400000px;}
.y3_c00119{bottom:988.200000px;}
.y2_c00119{bottom:1008.000000px;}
.y1_c00119{bottom:1046.550000px;}
.h2_c00119{height:54.000000px;}
.h1_c00119{height:1167.750000px;}
.h0_c00119{height:1167.839997px;}
.w1_c00119{width:920.250000px;}
.w0_c00119{width:920.519990px;}
.x0_c00119{left:0.000000px;}
.x3_c00119{left:102.600000px;}
.x5f_c00119{left:104.400000px;}
.x4f_c00119{left:122.700000px;}
.x40_c00119{left:129.300000px;}
.x4_c00119{left:131.400000px;}
.x50_c00119{left:145.350000px;}
.x35_c00119{left:146.850000px;}
.x11_c00119{left:153.000000px;}
.x29_c00119{left:166.050000px;}
.x1f_c00119{left:176.550000px;}
.x51_c00119{left:181.050000px;}
.x2a_c00119{left:192.000000px;}
.x41_c00119{left:205.950000px;}
.x20_c00119{left:211.500000px;}
.x36_c00119{left:213.150000px;}
.x42_c00119{left:217.500000px;}
.x52_c00119{left:218.850000px;}
.x5_c00119{left:223.500000px;}
.x2b_c00119{left:228.300000px;}
.x43_c00119{left:229.800000px;}
.x60_c00119{left:238.350000px;}
.x44_c00119{left:240.900000px;}
.x53_c00119{left:241.950000px;}
.x21_c00119{left:245.700000px;}
.x6_c00119{left:254.850000px;}
.x12_c00119{left:256.050000px;}
.x61_c00119{left:258.450000px;}
.x2c_c00119{left:259.650000px;}
.x22_c00119{left:273.750000px;}
.x7_c00119{left:276.750000px;}
.x54_c00119{left:288.450000px;}
.x37_c00119{left:290.550000px;}
.x45_c00119{left:292.800000px;}
.x2d_c00119{left:297.450000px;}
.x23_c00119{left:302.550000px;}
.x38_c00119{left:308.850000px;}
.x46_c00119{left:318.300000px;}
.x13_c00119{left:324.750000px;}
.x14_c00119{left:341.700000px;}
.x8_c00119{left:352.350000px;}
.x65_c00119{left:355.650000px;}
.x1_c00119{left:360.000000px;}
.x55_c00119{left:365.100000px;}
.x66_c00119{left:371.100000px;}
.x47_c00119{left:373.350000px;}
.x15_c00119{left:374.850000px;}
.x39_c00119{left:377.550000px;}
.x67_c00119{left:380.400000px;}
.x62_c00119{left:392.550000px;}
.x56_c00119{left:396.750000px;}
.x9_c00119{left:401.700000px;}
.x16_c00119{left:403.350000px;}
.x48_c00119{left:406.800000px;}
.x24_c00119{left:412.650000px;}
.x2e_c00119{left:414.150000px;}
.x63_c00119{left:425.700000px;}
.xa_c00119{left:430.200000px;}
.x17_c00119{left:431.850000px;}
.x3a_c00119{left:442.350000px;}
.x2f_c00119{left:451.950000px;}
.x57_c00119{left:456.900000px;}
.x2_c00119{left:461.550000px;}
.x68_c00119{left:473.250000px;}
.x30_c00119{left:488.700000px;}
.x18_c00119{left:492.300000px;}
.x25_c00119{left:496.500000px;}
.x58_c00119{left:499.800000px;}
.x3b_c00119{left:502.800000px;}
.xb_c00119{left:505.800000px;}
.x64_c00119{left:507.150000px;}
.x69_c00119{left:508.950000px;}
.x49_c00119{left:521.250000px;}
.x59_c00119{left:528.900000px;}
.xc_c00119{left:533.850000px;}
.x19_c00119{left:540.150000px;}
.x6a_c00119{left:541.350000px;}
.x6b_c00119{left:555.450000px;}
.x31_c00119{left:559.950000px;}
.xd_c00119{left:565.200000px;}
.x4a_c00119{left:569.100000px;}
.x26_c00119{left:570.300000px;}
.x3c_c00119{left:573.750000px;}
.x5a_c00119{left:575.700000px;}
.x1a_c00119{left:578.250000px;}
.xe_c00119{left:585.750000px;}
.x27_c00119{left:595.500000px;}
.x5b_c00119{left:597.600000px;}
.x32_c00119{left:599.250000px;}
.x4b_c00119{left:606.600000px;}
.x1b_c00119{left:609.150000px;}
.x5c_c00119{left:627.150000px;}
.x33_c00119{left:628.800000px;}
.x1c_c00119{left:634.650000px;}
.x28_c00119{left:645.150000px;}
.x4c_c00119{left:647.700000px;}
.xf_c00119{left:662.850000px;}
.x3d_c00119{left:667.350000px;}
.x4d_c00119{left:686.550000px;}
.x10_c00119{left:694.500000px;}
.x1d_c00119{left:706.350000px;}
.x34_c00119{left:713.100000px;}
.x3e_c00119{left:716.700000px;}
.x1e_c00119{left:723.300000px;}
.x5d_c00119{left:734.100000px;}
.x4e_c00119{left:746.250000px;}
.x3f_c00119{left:748.050000px;}
.x5e_c00119{left:756.750000px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:-4.888889pt;}
.ws4_c00119{word-spacing:0.000000pt;}
.ws2_c00119{word-spacing:1.333333pt;}
.ws1_c00119{word-spacing:1.347174pt;}
.ws3_c00119{word-spacing:6.777778pt;}
._0_c00119{width:700.888889pt;}
.fs0_c00119{font-size:48.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.ya_c00119{bottom:739.466667pt;}
.y9_c00119{bottom:771.733333pt;}
.y8_c00119{bottom:789.600000pt;}
.y7_c00119{bottom:807.466667pt;}
.y6_c00119{bottom:825.066667pt;}
.y5_c00119{bottom:842.933333pt;}
.y4_c00119{bottom:860.800000pt;}
.y3_c00119{bottom:878.400000pt;}
.y2_c00119{bottom:896.000000pt;}
.y1_c00119{bottom:930.266667pt;}
.h2_c00119{height:48.000000pt;}
.h1_c00119{height:1038.000000pt;}
.h0_c00119{height:1038.079997pt;}
.w1_c00119{width:818.000000pt;}
.w0_c00119{width:818.239991pt;}
.x0_c00119{left:0.000000pt;}
.x3_c00119{left:91.200000pt;}
.x5f_c00119{left:92.800000pt;}
.x4f_c00119{left:109.066667pt;}
.x40_c00119{left:114.933333pt;}
.x4_c00119{left:116.800000pt;}
.x50_c00119{left:129.200000pt;}
.x35_c00119{left:130.533333pt;}
.x11_c00119{left:136.000000pt;}
.x29_c00119{left:147.600000pt;}
.x1f_c00119{left:156.933333pt;}
.x51_c00119{left:160.933333pt;}
.x2a_c00119{left:170.666667pt;}
.x41_c00119{left:183.066667pt;}
.x20_c00119{left:188.000000pt;}
.x36_c00119{left:189.466667pt;}
.x42_c00119{left:193.333333pt;}
.x52_c00119{left:194.533333pt;}
.x5_c00119{left:198.666667pt;}
.x2b_c00119{left:202.933333pt;}
.x43_c00119{left:204.266667pt;}
.x60_c00119{left:211.866667pt;}
.x44_c00119{left:214.133333pt;}
.x53_c00119{left:215.066667pt;}
.x21_c00119{left:218.400000pt;}
.x6_c00119{left:226.533333pt;}
.x12_c00119{left:227.600000pt;}
.x61_c00119{left:229.733333pt;}
.x2c_c00119{left:230.800000pt;}
.x22_c00119{left:243.333333pt;}
.x7_c00119{left:246.000000pt;}
.x54_c00119{left:256.400000pt;}
.x37_c00119{left:258.266667pt;}
.x45_c00119{left:260.266667pt;}
.x2d_c00119{left:264.400000pt;}
.x23_c00119{left:268.933333pt;}
.x38_c00119{left:274.533333pt;}
.x46_c00119{left:282.933333pt;}
.x13_c00119{left:288.666667pt;}
.x14_c00119{left:303.733333pt;}
.x8_c00119{left:313.200000pt;}
.x65_c00119{left:316.133333pt;}
.x1_c00119{left:320.000000pt;}
.x55_c00119{left:324.533333pt;}
.x66_c00119{left:329.866667pt;}
.x47_c00119{left:331.866667pt;}
.x15_c00119{left:333.200000pt;}
.x39_c00119{left:335.600000pt;}
.x67_c00119{left:338.133333pt;}
.x62_c00119{left:348.933333pt;}
.x56_c00119{left:352.666667pt;}
.x9_c00119{left:357.066667pt;}
.x16_c00119{left:358.533333pt;}
.x48_c00119{left:361.600000pt;}
.x24_c00119{left:366.800000pt;}
.x2e_c00119{left:368.133333pt;}
.x63_c00119{left:378.400000pt;}
.xa_c00119{left:382.400000pt;}
.x17_c00119{left:383.866667pt;}
.x3a_c00119{left:393.200000pt;}
.x2f_c00119{left:401.733333pt;}
.x57_c00119{left:406.133333pt;}
.x2_c00119{left:410.266667pt;}
.x68_c00119{left:420.666667pt;}
.x30_c00119{left:434.400000pt;}
.x18_c00119{left:437.600000pt;}
.x25_c00119{left:441.333333pt;}
.x58_c00119{left:444.266667pt;}
.x3b_c00119{left:446.933333pt;}
.xb_c00119{left:449.600000pt;}
.x64_c00119{left:450.800000pt;}
.x69_c00119{left:452.400000pt;}
.x49_c00119{left:463.333333pt;}
.x59_c00119{left:470.133333pt;}
.xc_c00119{left:474.533333pt;}
.x19_c00119{left:480.133333pt;}
.x6a_c00119{left:481.200000pt;}
.x6b_c00119{left:493.733333pt;}
.x31_c00119{left:497.733333pt;}
.xd_c00119{left:502.400000pt;}
.x4a_c00119{left:505.866667pt;}
.x26_c00119{left:506.933333pt;}
.x3c_c00119{left:510.000000pt;}
.x5a_c00119{left:511.733333pt;}
.x1a_c00119{left:514.000000pt;}
.xe_c00119{left:520.666667pt;}
.x27_c00119{left:529.333333pt;}
.x5b_c00119{left:531.200000pt;}
.x32_c00119{left:532.666667pt;}
.x4b_c00119{left:539.200000pt;}
.x1b_c00119{left:541.466667pt;}
.x5c_c00119{left:557.466667pt;}
.x33_c00119{left:558.933333pt;}
.x1c_c00119{left:564.133333pt;}
.x28_c00119{left:573.466667pt;}
.x4c_c00119{left:575.733333pt;}
.xf_c00119{left:589.200000pt;}
.x3d_c00119{left:593.200000pt;}
.x4d_c00119{left:610.266667pt;}
.x10_c00119{left:617.333333pt;}
.x1d_c00119{left:627.866667pt;}
.x34_c00119{left:633.866667pt;}
.x3e_c00119{left:637.066667pt;}
.x1e_c00119{left:642.933333pt;}
.x5d_c00119{left:652.533333pt;}
.x4e_c00119{left:663.333333pt;}
.x3f_c00119{left:664.933333pt;}
.x5e_c00119{left:672.666667pt;}
}





/* 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_c00120 {
    display:none;
  }
  .loading-indicator_c00120.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00120 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_c00120 { 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_c00120" -> "#page-container .classname_c00120")
 */
.pf_c00120 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00120 { /* 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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00120 { /* 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_c00120 { /* 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_c00120 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00120 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00120 {overflow:visible;}
  }
}
.c_c00120 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00120 { /* 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_c00120:after { /* webkit #35443 */
  content: '';
}
.t_c00120:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00120 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 */
}
.__c00120 { /* 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_c00120 { /* info for Javascript */
  display:none;
}
.l_c00120 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00120 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00120 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00120: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_c00120 {
    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_c00120.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00120.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_c00120 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00120{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00120;src:url('chunks/assets/font_5ee62836daa9b4c1c6cfc156.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.000000;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;}
.m97_c00120{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00120{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m45_c00120{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m41_c00120{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m78_c00120{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.maa_c00120{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00120{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf_c00120{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00120{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00120{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00120{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00120{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m99_c00120{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00120{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m79_c00120{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m55_c00120{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m74_c00120{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m75_c00120{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00120{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00120{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00120{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00120{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m27_c00120{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00120{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m76_c00120{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00120{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m71_c00120{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m34_c00120{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00120{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00120{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m80_c00120{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00120{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mad_c00120{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m72_c00120{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m92_c00120{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00120{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m90_c00120{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00120{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m66_c00120{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00120{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m96_c00120{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m98_c00120{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m70_c00120{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00120{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00120{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m33_c00120{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00120{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m81_c00120{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m28_c00120{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m22_c00120{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m77_c00120{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00120{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00120{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00120{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00120{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me_c00120{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00120{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00120{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00120{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m53_c00120{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m42_c00120{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m59_c00120{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00120{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13_c00120{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m65_c00120{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00120{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m82_c00120{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{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);}
.m3e_c00120{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00120{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m60_c00120{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00120{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00120{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mb_c00120{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m11_c00120{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m16_c00120{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m48_c00120{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00120{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m10_c00120{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00120{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m58_c00120{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m21_c00120{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m63_c00120{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00120{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00120{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m25_c00120{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m50_c00120{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00120{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.md_c00120{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m44_c00120{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00120{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{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__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00120{word-spacing:-18.830012px;}
.ws9_c00120{word-spacing:-5.303634px;}
.ws0_c00120{word-spacing:-4.961538px;}
.ws1_c00120{word-spacing:-3.000000px;}
.ws7_c00120{word-spacing:-1.500000px;}
.ws2_c00120{word-spacing:-0.025305px;}
.ws6_c00120{word-spacing:0.000000px;}
.ws4_c00120{word-spacing:2.608696px;}
.wsa_c00120{word-spacing:4.284730px;}
.ws5_c00120{word-spacing:7.500000px;}
.ws3_c00120{word-spacing:50.250000px;}
._0_c00120{width:28.500000px;}
.fc0_c00120{color:transparent;}
.fs1_c00120{font-size:54.000000px;}
.fs0_c00120{font-size:66.000000px;}
.y0_c00120{bottom:0.000000px;}
.y26_c00120{bottom:148.050000px;}
.y25_c00120{bottom:163.500000px;}
.y24_c00120{bottom:178.950000px;}
.y23_c00120{bottom:195.150000px;}
.y22_c00120{bottom:210.600000px;}
.y21_c00120{bottom:226.500000px;}
.y20_c00120{bottom:241.950000px;}
.y1f_c00120{bottom:257.400000px;}
.y1e_c00120{bottom:273.300000px;}
.y1d_c00120{bottom:288.750000px;}
.y1c_c00120{bottom:304.500000px;}
.y1b_c00120{bottom:320.400000px;}
.y1a_c00120{bottom:336.300000px;}
.y19_c00120{bottom:351.750000px;}
.y18_c00120{bottom:367.200000px;}
.y17_c00120{bottom:383.100000px;}
.y16_c00120{bottom:398.550000px;}
.y15_c00120{bottom:414.300000px;}
.y14_c00120{bottom:429.900000px;}
.y13_c00120{bottom:445.350000px;}
.y12_c00120{bottom:490.350000px;}
.y11_c00120{bottom:510.150000px;}
.y10_c00120{bottom:530.250000px;}
.yf_c00120{bottom:550.050000px;}
.ye_c00120{bottom:570.150000px;}
.yd_c00120{bottom:589.950000px;}
.yc_c00120{bottom:609.750000px;}
.yb_c00120{bottom:629.550000px;}
.ya_c00120{bottom:649.650000px;}
.y9_c00120{bottom:669.750000px;}
.y8_c00120{bottom:689.850000px;}
.y7_c00120{bottom:709.650000px;}
.y6_c00120{bottom:729.750000px;}
.y5_c00120{bottom:749.850000px;}
.y4_c00120{bottom:782.700000px;}
.y3_c00120{bottom:803.250000px;}
.y2_c00120{bottom:836.700000px;}
.y1_c00120{bottom:1044.000000px;}
.h3_c00120{height:54.000000px;}
.h2_c00120{height:66.000000px;}
.h1_c00120{height:1167.750000px;}
.h0_c00120{height:1167.839997px;}
.w1_c00120{width:920.250000px;}
.w0_c00120{width:920.519990px;}
.x0_c00120{left:0.000000px;}
.x123_c00120{left:151.650000px;}
.xf5_c00120{left:152.700000px;}
.xc5_c00120{left:153.750000px;}
.x13_c00120{left:155.850000px;}
.xc6_c00120{left:164.250000px;}
.x101_c00120{left:168.450000px;}
.x10f_c00120{left:172.050000px;}
.xbd_c00120{left:173.100000px;}
.xa3_c00120{left:175.800000px;}
.x32_c00120{left:177.000000px;}
.xf6_c00120{left:178.950000px;}
.x7b_c00120{left:182.250000px;}
.x4c_c00120{left:184.350000px;}
.xbe_c00120{left:186.000000px;}
.xb4_c00120{left:187.350000px;}
.xdb_c00120{left:189.150000px;}
.x4_c00120{left:192.600000px;}
.x69_c00120{left:193.950000px;}
.xe3_c00120{left:195.150000px;}
.xa9_c00120{left:197.250000px;}
.x42_c00120{left:198.450000px;}
.x22_c00120{left:200.250000px;}
.x90_c00120{left:202.350000px;}
.x14_c00120{left:204.750000px;}
.x9a_c00120{left:206.850000px;}
.x109_c00120{left:208.200000px;}
.xc7_c00120{left:210.000000px;}
.x110_c00120{left:211.650000px;}
.x7c_c00120{left:215.700000px;}
.x23_c00120{left:217.950000px;}
.x86_c00120{left:219.300000px;}
.x5a_c00120{left:222.300000px;}
.xb5_c00120{left:223.650000px;}
.xc8_c00120{left:224.700000px;}
.x6a_c00120{left:229.200000px;}
.xa4_c00120{left:230.850000px;}
.x15_c00120{left:234.600000px;}
.xfd_c00120{left:235.650000px;}
.x5b_c00120{left:239.250000px;}
.x120_c00120{left:243.450000px;}
.x9b_c00120{left:244.650000px;}
.x10a_c00120{left:246.300000px;}
.x6b_c00120{left:247.500000px;}
.x4d_c00120{left:249.150000px;}
.x24_c00120{left:252.900000px;}
.x7d_c00120{left:254.550000px;}
.xe4_c00120{left:256.050000px;}
.x91_c00120{left:257.100000px;}
.x43_c00120{left:258.150000px;}
.x9c_c00120{left:261.600000px;}
.x111_c00120{left:263.100000px;}
.x5c_c00120{left:264.450000px;}
.x4e_c00120{left:266.850000px;}
.xd0_c00120{left:268.950000px;}
.xaa_c00120{left:271.500000px;}
.x33_c00120{left:273.600000px;}
.x92_c00120{left:274.800000px;}
.x112_c00120{left:277.800000px;}
.x87_c00120{left:279.150000px;}
.x5_c00120{left:281.100000px;}
.x25_c00120{left:283.200000px;}
.xd5_c00120{left:284.850000px;}
.xb6_c00120{left:286.650000px;}
.xbf_c00120{left:287.850000px;}
.x16_c00120{left:290.100000px;}
.x4f_c00120{left:292.050000px;}
.x119_c00120{left:293.850000px;}
.x44_c00120{left:298.800000px;}
.x6_c00120{left:300.900000px;}
.x9d_c00120{left:304.050000px;}
.xf1_c00120{left:305.850000px;}
.xc0_c00120{left:310.200000px;}
.xdc_c00120{left:311.850000px;}
.xe7_c00120{left:316.050000px;}
.x113_c00120{left:318.450000px;}
.x26_c00120{left:319.500000px;}
.x9e_c00120{left:322.050000px;}
.xab_c00120{left:323.100000px;}
.xc1_c00120{left:326.700000px;}
.x93_c00120{left:328.050000px;}
.x50_c00120{left:329.850000px;}
.x7_c00120{left:332.550000px;}
.x5d_c00120{left:336.150000px;}
.xc9_c00120{left:338.400000px;}
.xf2_c00120{left:343.950000px;}
.x9f_c00120{left:345.750000px;}
.x27_c00120{left:347.250000px;}
.x34_c00120{left:348.900000px;}
.x88_c00120{left:351.450000px;}
.x5e_c00120{left:353.400000px;}
.xb7_c00120{left:356.100000px;}
.x6c_c00120{left:357.900000px;}
.xac_c00120{left:359.100000px;}
.x17_c00120{left:364.950000px;}
.x11d_c00120{left:367.500000px;}
.xca_c00120{left:370.050000px;}
.x35_c00120{left:374.100000px;}
.x6d_c00120{left:375.150000px;}
.xe8_c00120{left:376.950000px;}
.xf7_c00120{left:378.450000px;}
.x18_c00120{left:382.200000px;}
.xcb_c00120{left:384.750000px;}
.x11a_c00120{left:386.250000px;}
.x45_c00120{left:391.050000px;}
.x5f_c00120{left:393.000000px;}
.x89_c00120{left:394.350000px;}
.x51_c00120{left:396.450000px;}
.xdd_c00120{left:400.050000px;}
.x124_c00120{left:401.700000px;}
.x94_c00120{left:403.950000px;}
.x114_c00120{left:405.150000px;}
.x8a_c00120{left:407.250000px;}
.x8_c00120{left:408.450000px;}
.xf3_c00120{left:412.350000px;}
.x7e_c00120{left:414.750000px;}
.xd6_c00120{left:417.750000px;}
.x60_c00120{left:421.800000px;}
.xad_c00120{left:422.850000px;}
.x6e_c00120{left:424.800000px;}
.x11e_c00120{left:426.900000px;}
.x2_c00120{left:429.150000px;}
.x10b_c00120{left:430.650000px;}
.x6f_c00120{left:431.700000px;}
.xa5_c00120{left:434.700000px;}
.x28_c00120{left:437.550000px;}
.xc2_c00120{left:439.350000px;}
.x11b_c00120{left:442.350000px;}
.x9_c00120{left:443.400000px;}
.x46_c00120{left:445.800000px;}
.x115_c00120{left:446.850000px;}
.x11_c00120{left:448.200000px;}
.x36_c00120{left:451.500000px;}
.x61_c00120{left:457.800000px;}
.x102_c00120{left:460.800000px;}
.x47_c00120{left:462.750000px;}
.x52_c00120{left:465.900000px;}
.xde_c00120{left:468.750000px;}
.xb8_c00120{left:471.750000px;}
.x37_c00120{left:473.100000px;}
.x70_c00120{left:475.650000px;}
.x62_c00120{left:477.600000px;}
.x1_c00120{left:483.150000px;}
.x29_c00120{left:486.150000px;}
.xa6_c00120{left:489.000000px;}
.xc3_c00120{left:494.100000px;}
.x12_c00120{left:495.300000px;}
.x121_c00120{left:496.950000px;}
.x71_c00120{left:498.750000px;}
.x38_c00120{left:500.400000px;}
.x63_c00120{left:503.100000px;}
.x19_c00120{left:506.850000px;}
.xa_c00120{left:511.800000px;}
.xae_c00120{left:513.600000px;}
.x10c_c00120{left:514.950000px;}
.x3_c00120{left:516.300000px;}
.x2a_c00120{left:517.500000px;}
.xb9_c00120{left:521.100000px;}
.x7f_c00120{left:522.300000px;}
.x72_c00120{left:523.950000px;}
.xe5_c00120{left:529.500000px;}
.x39_c00120{left:533.550000px;}
.xe9_c00120{left:536.400000px;}
.x80_c00120{left:537.450000px;}
.x1a_c00120{left:540.750000px;}
.x2b_c00120{left:542.700000px;}
.x122_c00120{left:543.750000px;}
.x95_c00120{left:546.000000px;}
.xcc_c00120{left:548.100000px;}
.xaf_c00120{left:549.300000px;}
.x53_c00120{left:551.250000px;}
.x103_c00120{left:554.850000px;}
.x1b_c00120{left:559.500000px;}
.x3a_c00120{left:562.050000px;}
.xb_c00120{left:565.800000px;}
.x106_c00120{left:567.900000px;}
.x54_c00120{left:571.800000px;}
.x3b_c00120{left:575.400000px;}
.x10d_c00120{left:576.450000px;}
.xa0_c00120{left:579.750000px;}
.xd7_c00120{left:580.800000px;}
.x2c_c00120{left:582.300000px;}
.x73_c00120{left:583.650000px;}
.xd1_c00120{left:587.550000px;}
.x8b_c00120{left:591.000000px;}
.x104_c00120{left:593.400000px;}
.xb0_c00120{left:594.600000px;}
.x48_c00120{left:597.300000px;}
.x3c_c00120{left:599.100000px;}
.xea_c00120{left:600.150000px;}
.x81_c00120{left:603.000000px;}
.xc_c00120{left:605.100000px;}
.xfe_c00120{left:606.750000px;}
.xf8_c00120{left:609.900000px;}
.x10e_c00120{left:610.950000px;}
.x1c_c00120{left:612.000000px;}
.xf4_c00120{left:613.650000px;}
.xa7_c00120{left:615.150000px;}
.xba_c00120{left:616.200000px;}
.x2d_c00120{left:617.250000px;}
.x3d_c00120{left:618.900000px;}
.x64_c00120{left:621.900000px;}
.xe6_c00120{left:624.600000px;}
.x96_c00120{left:625.950000px;}
.x55_c00120{left:627.300000px;}
.x11f_c00120{left:630.750000px;}
.x8c_c00120{left:632.100000px;}
.xcd_c00120{left:635.250000px;}
.xd_c00120{left:636.450000px;}
.x116_c00120{left:638.700000px;}
.x74_c00120{left:642.000000px;}
.xdf_c00120{left:643.050000px;}
.x56_c00120{left:644.550000px;}
.x65_c00120{left:650.400000px;}
.xa1_c00120{left:652.050000px;}
.x2e_c00120{left:653.550000px;}
.x107_c00120{left:655.050000px;}
.x97_c00120{left:656.250000px;}
.x8d_c00120{left:658.350000px;}
.xff_c00120{left:660.750000px;}
.x1d_c00120{left:662.100000px;}
.xd8_c00120{left:663.600000px;}
.x66_c00120{left:667.350000px;}
.x57_c00120{left:670.050000px;}
.x3e_c00120{left:673.200000px;}
.xb1_c00120{left:675.900000px;}
.x108_c00120{left:676.950000px;}
.x75_c00120{left:678.300000px;}
.xf9_c00120{left:679.350000px;}
.x117_c00120{left:681.150000px;}
.xce_c00120{left:682.350000px;}
.x8e_c00120{left:686.400000px;}
.xd9_c00120{left:687.750000px;}
.x82_c00120{left:689.400000px;}
.x2f_c00120{left:691.350000px;}
.x67_c00120{left:692.550000px;}
.x76_c00120{left:694.800000px;}
.xd2_c00120{left:696.600000px;}
.xe_c00120{left:697.650000px;}
.xee_c00120{left:703.350000px;}
.xa8_c00120{left:705.150000px;}
.xfa_c00120{left:706.650000px;}
.x1e_c00120{left:708.900000px;}
.x30_c00120{left:710.850000px;}
.x58_c00120{left:712.950000px;}
.xe0_c00120{left:714.300000px;}
.xf_c00120{left:718.200000px;}
.xa2_c00120{left:722.250000px;}
.x118_c00120{left:724.650000px;}
.x83_c00120{left:725.700000px;}
.xb2_c00120{left:728.100000px;}
.xef_c00120{left:730.350000px;}
.x77_c00120{left:732.600000px;}
.x3f_c00120{left:734.100000px;}
.x98_c00120{left:735.450000px;}
.x49_c00120{left:737.700000px;}
.xfb_c00120{left:740.100000px;}
.xd3_c00120{left:743.400000px;}
.xbb_c00120{left:745.350000px;}
.xe1_c00120{left:746.700000px;}
.x78_c00120{left:748.800000px;}
.x31_c00120{left:750.750000px;}
.x1f_c00120{left:752.850000px;}
.x99_c00120{left:754.500000px;}
.x4a_c00120{left:756.450000px;}
.xc4_c00120{left:757.500000px;}
.x68_c00120{left:758.850000px;}
.xeb_c00120{left:760.650000px;}
.x10_c00120{left:761.700000px;}
.x100_c00120{left:762.900000px;}
.xf0_c00120{left:764.850000px;}
.x40_c00120{left:766.800000px;}
.xfc_c00120{left:770.400000px;}
.x20_c00120{left:772.350000px;}
.xbc_c00120{left:773.400000px;}
.xec_c00120{left:775.050000px;}
.xda_c00120{left:776.700000px;}
.x84_c00120{left:780.150000px;}
.x59_c00120{left:781.800000px;}
.x11c_c00120{left:785.100000px;}
.xd4_c00120{left:786.600000px;}
.xcf_c00120{left:788.850000px;}
.x4b_c00120{left:792.750000px;}
.x21_c00120{left:793.950000px;}
.xe2_c00120{left:796.050000px;}
.xb3_c00120{left:799.350000px;}
.x41_c00120{left:803.550000px;}
.xed_c00120{left:807.750000px;}
.x85_c00120{left:810.450000px;}
.x79_c00120{left:811.800000px;}
.x8f_c00120{left:812.850000px;}
.x7a_c00120{left:816.150000px;}
.x105_c00120{left:819.150000px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws8_c00120{word-spacing:-16.737788pt;}
.ws9_c00120{word-spacing:-4.714342pt;}
.ws0_c00120{word-spacing:-4.410256pt;}
.ws1_c00120{word-spacing:-2.666667pt;}
.ws7_c00120{word-spacing:-1.333333pt;}
.ws2_c00120{word-spacing:-0.022493pt;}
.ws6_c00120{word-spacing:0.000000pt;}
.ws4_c00120{word-spacing:2.318841pt;}
.wsa_c00120{word-spacing:3.808649pt;}
.ws5_c00120{word-spacing:6.666667pt;}
.ws3_c00120{word-spacing:44.666667pt;}
._0_c00120{width:25.333333pt;}
.fs1_c00120{font-size:48.000000pt;}
.fs0_c00120{font-size:58.666667pt;}
.y0_c00120{bottom:0.000000pt;}
.y26_c00120{bottom:131.600000pt;}
.y25_c00120{bottom:145.333333pt;}
.y24_c00120{bottom:159.066667pt;}
.y23_c00120{bottom:173.466667pt;}
.y22_c00120{bottom:187.200000pt;}
.y21_c00120{bottom:201.333333pt;}
.y20_c00120{bottom:215.066667pt;}
.y1f_c00120{bottom:228.800000pt;}
.y1e_c00120{bottom:242.933333pt;}
.y1d_c00120{bottom:256.666667pt;}
.y1c_c00120{bottom:270.666667pt;}
.y1b_c00120{bottom:284.800000pt;}
.y1a_c00120{bottom:298.933333pt;}
.y19_c00120{bottom:312.666667pt;}
.y18_c00120{bottom:326.400000pt;}
.y17_c00120{bottom:340.533333pt;}
.y16_c00120{bottom:354.266667pt;}
.y15_c00120{bottom:368.266667pt;}
.y14_c00120{bottom:382.133333pt;}
.y13_c00120{bottom:395.866667pt;}
.y12_c00120{bottom:435.866667pt;}
.y11_c00120{bottom:453.466667pt;}
.y10_c00120{bottom:471.333333pt;}
.yf_c00120{bottom:488.933333pt;}
.ye_c00120{bottom:506.800000pt;}
.yd_c00120{bottom:524.400000pt;}
.yc_c00120{bottom:542.000000pt;}
.yb_c00120{bottom:559.600000pt;}
.ya_c00120{bottom:577.466667pt;}
.y9_c00120{bottom:595.333333pt;}
.y8_c00120{bottom:613.200000pt;}
.y7_c00120{bottom:630.800000pt;}
.y6_c00120{bottom:648.666667pt;}
.y5_c00120{bottom:666.533333pt;}
.y4_c00120{bottom:695.733333pt;}
.y3_c00120{bottom:714.000000pt;}
.y2_c00120{bottom:743.733333pt;}
.y1_c00120{bottom:928.000000pt;}
.h3_c00120{height:48.000000pt;}
.h2_c00120{height:58.666667pt;}
.h1_c00120{height:1038.000000pt;}
.h0_c00120{height:1038.079997pt;}
.w1_c00120{width:818.000000pt;}
.w0_c00120{width:818.239991pt;}
.x0_c00120{left:0.000000pt;}
.x123_c00120{left:134.800000pt;}
.xf5_c00120{left:135.733333pt;}
.xc5_c00120{left:136.666667pt;}
.x13_c00120{left:138.533333pt;}
.xc6_c00120{left:146.000000pt;}
.x101_c00120{left:149.733333pt;}
.x10f_c00120{left:152.933333pt;}
.xbd_c00120{left:153.866667pt;}
.xa3_c00120{left:156.266667pt;}
.x32_c00120{left:157.333333pt;}
.xf6_c00120{left:159.066667pt;}
.x7b_c00120{left:162.000000pt;}
.x4c_c00120{left:163.866667pt;}
.xbe_c00120{left:165.333333pt;}
.xb4_c00120{left:166.533333pt;}
.xdb_c00120{left:168.133333pt;}
.x4_c00120{left:171.200000pt;}
.x69_c00120{left:172.400000pt;}
.xe3_c00120{left:173.466667pt;}
.xa9_c00120{left:175.333333pt;}
.x42_c00120{left:176.400000pt;}
.x22_c00120{left:178.000000pt;}
.x90_c00120{left:179.866667pt;}
.x14_c00120{left:182.000000pt;}
.x9a_c00120{left:183.866667pt;}
.x109_c00120{left:185.066667pt;}
.xc7_c00120{left:186.666667pt;}
.x110_c00120{left:188.133333pt;}
.x7c_c00120{left:191.733333pt;}
.x23_c00120{left:193.733333pt;}
.x86_c00120{left:194.933333pt;}
.x5a_c00120{left:197.600000pt;}
.xb5_c00120{left:198.800000pt;}
.xc8_c00120{left:199.733333pt;}
.x6a_c00120{left:203.733333pt;}
.xa4_c00120{left:205.200000pt;}
.x15_c00120{left:208.533333pt;}
.xfd_c00120{left:209.466667pt;}
.x5b_c00120{left:212.666667pt;}
.x120_c00120{left:216.400000pt;}
.x9b_c00120{left:217.466667pt;}
.x10a_c00120{left:218.933333pt;}
.x6b_c00120{left:220.000000pt;}
.x4d_c00120{left:221.466667pt;}
.x24_c00120{left:224.800000pt;}
.x7d_c00120{left:226.266667pt;}
.xe4_c00120{left:227.600000pt;}
.x91_c00120{left:228.533333pt;}
.x43_c00120{left:229.466667pt;}
.x9c_c00120{left:232.533333pt;}
.x111_c00120{left:233.866667pt;}
.x5c_c00120{left:235.066667pt;}
.x4e_c00120{left:237.200000pt;}
.xd0_c00120{left:239.066667pt;}
.xaa_c00120{left:241.333333pt;}
.x33_c00120{left:243.200000pt;}
.x92_c00120{left:244.266667pt;}
.x112_c00120{left:246.933333pt;}
.x87_c00120{left:248.133333pt;}
.x5_c00120{left:249.866667pt;}
.x25_c00120{left:251.733333pt;}
.xd5_c00120{left:253.200000pt;}
.xb6_c00120{left:254.800000pt;}
.xbf_c00120{left:255.866667pt;}
.x16_c00120{left:257.866667pt;}
.x4f_c00120{left:259.600000pt;}
.x119_c00120{left:261.200000pt;}
.x44_c00120{left:265.600000pt;}
.x6_c00120{left:267.466667pt;}
.x9d_c00120{left:270.266667pt;}
.xf1_c00120{left:271.866667pt;}
.xc0_c00120{left:275.733333pt;}
.xdc_c00120{left:277.200000pt;}
.xe7_c00120{left:280.933333pt;}
.x113_c00120{left:283.066667pt;}
.x26_c00120{left:284.000000pt;}
.x9e_c00120{left:286.266667pt;}
.xab_c00120{left:287.200000pt;}
.xc1_c00120{left:290.400000pt;}
.x93_c00120{left:291.600000pt;}
.x50_c00120{left:293.200000pt;}
.x7_c00120{left:295.600000pt;}
.x5d_c00120{left:298.800000pt;}
.xc9_c00120{left:300.800000pt;}
.xf2_c00120{left:305.733333pt;}
.x9f_c00120{left:307.333333pt;}
.x27_c00120{left:308.666667pt;}
.x34_c00120{left:310.133333pt;}
.x88_c00120{left:312.400000pt;}
.x5e_c00120{left:314.133333pt;}
.xb7_c00120{left:316.533333pt;}
.x6c_c00120{left:318.133333pt;}
.xac_c00120{left:319.200000pt;}
.x17_c00120{left:324.400000pt;}
.x11d_c00120{left:326.666667pt;}
.xca_c00120{left:328.933333pt;}
.x35_c00120{left:332.533333pt;}
.x6d_c00120{left:333.466667pt;}
.xe8_c00120{left:335.066667pt;}
.xf7_c00120{left:336.400000pt;}
.x18_c00120{left:339.733333pt;}
.xcb_c00120{left:342.000000pt;}
.x11a_c00120{left:343.333333pt;}
.x45_c00120{left:347.600000pt;}
.x5f_c00120{left:349.333333pt;}
.x89_c00120{left:350.533333pt;}
.x51_c00120{left:352.400000pt;}
.xdd_c00120{left:355.600000pt;}
.x124_c00120{left:357.066667pt;}
.x94_c00120{left:359.066667pt;}
.x114_c00120{left:360.133333pt;}
.x8a_c00120{left:362.000000pt;}
.x8_c00120{left:363.066667pt;}
.xf3_c00120{left:366.533333pt;}
.x7e_c00120{left:368.666667pt;}
.xd6_c00120{left:371.333333pt;}
.x60_c00120{left:374.933333pt;}
.xad_c00120{left:375.866667pt;}
.x6e_c00120{left:377.600000pt;}
.x11e_c00120{left:379.466667pt;}
.x2_c00120{left:381.466667pt;}
.x10b_c00120{left:382.800000pt;}
.x6f_c00120{left:383.733333pt;}
.xa5_c00120{left:386.400000pt;}
.x28_c00120{left:388.933333pt;}
.xc2_c00120{left:390.533333pt;}
.x11b_c00120{left:393.200000pt;}
.x9_c00120{left:394.133333pt;}
.x46_c00120{left:396.266667pt;}
.x115_c00120{left:397.200000pt;}
.x11_c00120{left:398.400000pt;}
.x36_c00120{left:401.333333pt;}
.x61_c00120{left:406.933333pt;}
.x102_c00120{left:409.600000pt;}
.x47_c00120{left:411.333333pt;}
.x52_c00120{left:414.133333pt;}
.xde_c00120{left:416.666667pt;}
.xb8_c00120{left:419.333333pt;}
.x37_c00120{left:420.533333pt;}
.x70_c00120{left:422.800000pt;}
.x62_c00120{left:424.533333pt;}
.x1_c00120{left:429.466667pt;}
.x29_c00120{left:432.133333pt;}
.xa6_c00120{left:434.666667pt;}
.xc3_c00120{left:439.200000pt;}
.x12_c00120{left:440.266667pt;}
.x121_c00120{left:441.733333pt;}
.x71_c00120{left:443.333333pt;}
.x38_c00120{left:444.800000pt;}
.x63_c00120{left:447.200000pt;}
.x19_c00120{left:450.533333pt;}
.xa_c00120{left:454.933333pt;}
.xae_c00120{left:456.533333pt;}
.x10c_c00120{left:457.733333pt;}
.x3_c00120{left:458.933333pt;}
.x2a_c00120{left:460.000000pt;}
.xb9_c00120{left:463.200000pt;}
.x7f_c00120{left:464.266667pt;}
.x72_c00120{left:465.733333pt;}
.xe5_c00120{left:470.666667pt;}
.x39_c00120{left:474.266667pt;}
.xe9_c00120{left:476.800000pt;}
.x80_c00120{left:477.733333pt;}
.x1a_c00120{left:480.666667pt;}
.x2b_c00120{left:482.400000pt;}
.x122_c00120{left:483.333333pt;}
.x95_c00120{left:485.333333pt;}
.xcc_c00120{left:487.200000pt;}
.xaf_c00120{left:488.266667pt;}
.x53_c00120{left:490.000000pt;}
.x103_c00120{left:493.200000pt;}
.x1b_c00120{left:497.333333pt;}
.x3a_c00120{left:499.600000pt;}
.xb_c00120{left:502.933333pt;}
.x106_c00120{left:504.800000pt;}
.x54_c00120{left:508.266667pt;}
.x3b_c00120{left:511.466667pt;}
.x10d_c00120{left:512.400000pt;}
.xa0_c00120{left:515.333333pt;}
.xd7_c00120{left:516.266667pt;}
.x2c_c00120{left:517.600000pt;}
.x73_c00120{left:518.800000pt;}
.xd1_c00120{left:522.266667pt;}
.x8b_c00120{left:525.333333pt;}
.x104_c00120{left:527.466667pt;}
.xb0_c00120{left:528.533333pt;}
.x48_c00120{left:530.933333pt;}
.x3c_c00120{left:532.533333pt;}
.xea_c00120{left:533.466667pt;}
.x81_c00120{left:536.000000pt;}
.xc_c00120{left:537.866667pt;}
.xfe_c00120{left:539.333333pt;}
.xf8_c00120{left:542.133333pt;}
.x10e_c00120{left:543.066667pt;}
.x1c_c00120{left:544.000000pt;}
.xf4_c00120{left:545.466667pt;}
.xa7_c00120{left:546.800000pt;}
.xba_c00120{left:547.733333pt;}
.x2d_c00120{left:548.666667pt;}
.x3d_c00120{left:550.133333pt;}
.x64_c00120{left:552.800000pt;}
.xe6_c00120{left:555.200000pt;}
.x96_c00120{left:556.400000pt;}
.x55_c00120{left:557.600000pt;}
.x11f_c00120{left:560.666667pt;}
.x8c_c00120{left:561.866667pt;}
.xcd_c00120{left:564.666667pt;}
.xd_c00120{left:565.733333pt;}
.x116_c00120{left:567.733333pt;}
.x74_c00120{left:570.666667pt;}
.xdf_c00120{left:571.600000pt;}
.x56_c00120{left:572.933333pt;}
.x65_c00120{left:578.133333pt;}
.xa1_c00120{left:579.600000pt;}
.x2e_c00120{left:580.933333pt;}
.x107_c00120{left:582.266667pt;}
.x97_c00120{left:583.333333pt;}
.x8d_c00120{left:585.200000pt;}
.xff_c00120{left:587.333333pt;}
.x1d_c00120{left:588.533333pt;}
.xd8_c00120{left:589.866667pt;}
.x66_c00120{left:593.200000pt;}
.x57_c00120{left:595.600000pt;}
.x3e_c00120{left:598.400000pt;}
.xb1_c00120{left:600.800000pt;}
.x108_c00120{left:601.733333pt;}
.x75_c00120{left:602.933333pt;}
.xf9_c00120{left:603.866667pt;}
.x117_c00120{left:605.466667pt;}
.xce_c00120{left:606.533333pt;}
.x8e_c00120{left:610.133333pt;}
.xd9_c00120{left:611.333333pt;}
.x82_c00120{left:612.800000pt;}
.x2f_c00120{left:614.533333pt;}
.x67_c00120{left:615.600000pt;}
.x76_c00120{left:617.600000pt;}
.xd2_c00120{left:619.200000pt;}
.xe_c00120{left:620.133333pt;}
.xee_c00120{left:625.200000pt;}
.xa8_c00120{left:626.800000pt;}
.xfa_c00120{left:628.133333pt;}
.x1e_c00120{left:630.133333pt;}
.x30_c00120{left:631.866667pt;}
.x58_c00120{left:633.733333pt;}
.xe0_c00120{left:634.933333pt;}
.xf_c00120{left:638.400000pt;}
.xa2_c00120{left:642.000000pt;}
.x118_c00120{left:644.133333pt;}
.x83_c00120{left:645.066667pt;}
.xb2_c00120{left:647.200000pt;}
.xef_c00120{left:649.200000pt;}
.x77_c00120{left:651.200000pt;}
.x3f_c00120{left:652.533333pt;}
.x98_c00120{left:653.733333pt;}
.x49_c00120{left:655.733333pt;}
.xfb_c00120{left:657.866667pt;}
.xd3_c00120{left:660.800000pt;}
.xbb_c00120{left:662.533333pt;}
.xe1_c00120{left:663.733333pt;}
.x78_c00120{left:665.600000pt;}
.x31_c00120{left:667.333333pt;}
.x1f_c00120{left:669.200000pt;}
.x99_c00120{left:670.666667pt;}
.x4a_c00120{left:672.400000pt;}
.xc4_c00120{left:673.333333pt;}
.x68_c00120{left:674.533333pt;}
.xeb_c00120{left:676.133333pt;}
.x10_c00120{left:677.066667pt;}
.x100_c00120{left:678.133333pt;}
.xf0_c00120{left:679.866667pt;}
.x40_c00120{left:681.600000pt;}
.xfc_c00120{left:684.800000pt;}
.x20_c00120{left:686.533333pt;}
.xbc_c00120{left:687.466667pt;}
.xec_c00120{left:688.933333pt;}
.xda_c00120{left:690.400000pt;}
.x84_c00120{left:693.466667pt;}
.x59_c00120{left:694.933333pt;}
.x11c_c00120{left:697.866667pt;}
.xd4_c00120{left:699.200000pt;}
.xcf_c00120{left:701.200000pt;}
.x4b_c00120{left:704.666667pt;}
.x21_c00120{left:705.733333pt;}
.xe2_c00120{left:707.600000pt;}
.xb3_c00120{left:710.533333pt;}
.x41_c00120{left:714.266667pt;}
.xed_c00120{left:718.000000pt;}
.x85_c00120{left:720.400000pt;}
.x79_c00120{left:721.600000pt;}
.x8f_c00120{left:722.533333pt;}
.x7a_c00120{left:725.466667pt;}
.x105_c00120{left:728.133333pt;}
}





/* 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_c00121 {
    display:none;
  }
  .loading-indicator_c00121.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00121 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_c00121 { 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_c00121" -> "#page-container .classname_c00121")
 */
.pf_c00121 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00121 { /* 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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00121 { /* 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_c00121 { /* 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_c00121 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00121 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00121 {overflow:visible;}
  }
}
.c_c00121 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00121 { /* 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_c00121:after { /* webkit #35443 */
  content: '';
}
.t_c00121:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00121 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 */
}
.__c00121 { /* 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_c00121 { /* info for Javascript */
  display:none;
}
.l_c00121 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00121 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00121 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00121: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_c00121 {
    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_c00121.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00121.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_c00121 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00121{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.000000;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;}
.mc3_c00121{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m96_c00121{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m84_c00121{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m4_c00121{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00121{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m83_c00121{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00121{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00121{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m87_c00121{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00121{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mba_c00121{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m77_c00121{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m86_c00121{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m92_c00121{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m78_c00121{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00121{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00121{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00121{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00121{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00121{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m95_c00121{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00121{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mae_c00121{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00121{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00121{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00121{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00121{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00121{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00121{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00121{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00121{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m80_c00121{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00121{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00121{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m89_c00121{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00121{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00121{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00121{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00121{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m63_c00121{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00121{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00121{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00121{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00121{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m59_c00121{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00121{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00121{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00121{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m73_c00121{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m70_c00121{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m91_c00121{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00121{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mad_c00121{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m50_c00121{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m41_c00121{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00121{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m76_c00121{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m55_c00121{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m90_c00121{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m60_c00121{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m75_c00121{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00121{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00121{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mab_c00121{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00121{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m79_c00121{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m74_c00121{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00121{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00121{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m61_c00121{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m49_c00121{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m72_c00121{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m62_c00121{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00121{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m64_c00121{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00121{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00121{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m13_c00121{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11_c00121{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00121{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m34_c00121{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00121{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{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);}
.m53_c00121{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m93_c00121{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m85_c00121{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00121{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m65_c00121{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00121{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00121{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m39_c00121{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m69_c00121{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m52_c00121{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00121{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00121{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00121{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00121{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m99_c00121{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m81_c00121{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.maf_c00121{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00121{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m97_c00121{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00121{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00121{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00121{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00121{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00121{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00121{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00121{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00121{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00121{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00121{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00121{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00121{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m46_c00121{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00121{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m3_c00121{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m33_c00121{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00121{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mac_c00121{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m24_c00121{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00121{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00121{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m35_c00121{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m48_c00121{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m7_c00121{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00121{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00121{transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c00121{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00121{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.maa_c00121{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00121{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{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__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00121{word-spacing:-4.666667px;}
.ws7_c00121{word-spacing:-4.085106px;}
.wsf_c00121{word-spacing:-1.846154px;}
.ws6_c00121{word-spacing:-1.375000px;}
.ws8_c00121{word-spacing:-0.222222px;}
.wsa_c00121{word-spacing:0.000000px;}
.wsc_c00121{word-spacing:0.111111px;}
.ws0_c00121{word-spacing:3.000000px;}
.ws4_c00121{word-spacing:3.333333px;}
.wsd_c00121{word-spacing:4.500000px;}
.ws2_c00121{word-spacing:4.666667px;}
.wse_c00121{word-spacing:5.161290px;}
.ws9_c00121{word-spacing:6.666667px;}
.ws3_c00121{word-spacing:7.500000px;}
.ws10_c00121{word-spacing:9.333333px;}
.ws5_c00121{word-spacing:11.333333px;}
.wsb_c00121{word-spacing:13.818182px;}
._0_c00121{width:38.666667px;}
.fc0_c00121{color:transparent;}
.fs0_c00121{font-size:48.000000px;}
.fs1_c00121{font-size:66.000000px;}
.y0_c00121{bottom:0.000000px;}
.y36_c00121{bottom:136.350000px;}
.y35_c00121{bottom:152.550000px;}
.y5e_c00121{bottom:152.850000px;}
.y34_c00121{bottom:168.450000px;}
.y5d_c00121{bottom:169.050000px;}
.y33_c00121{bottom:184.950000px;}
.y5c_c00121{bottom:185.250000px;}
.y32_c00121{bottom:200.100000px;}
.y5b_c00121{bottom:200.700000px;}
.y31_c00121{bottom:215.550000px;}
.y5a_c00121{bottom:216.150000px;}
.y30_c00121{bottom:231.450000px;}
.y59_c00121{bottom:232.050000px;}
.y58_c00121{bottom:247.500000px;}
.y2f_c00121{bottom:247.650000px;}
.y2e_c00121{bottom:263.100000px;}
.y57_c00121{bottom:263.400000px;}
.y56_c00121{bottom:278.850000px;}
.y2d_c00121{bottom:279.000000px;}
.y55_c00121{bottom:294.300000px;}
.y2c_c00121{bottom:294.450000px;}
.y54_c00121{bottom:310.200000px;}
.y2b_c00121{bottom:310.350000px;}
.y2a_c00121{bottom:325.800000px;}
.y53_c00121{bottom:326.100000px;}
.y29_c00121{bottom:341.250000px;}
.y52_c00121{bottom:342.000000px;}
.y28_c00121{bottom:357.150000px;}
.y51_c00121{bottom:357.450000px;}
.y27_c00121{bottom:372.600000px;}
.y50_c00121{bottom:372.900000px;}
.y26_c00121{bottom:388.050000px;}
.y4f_c00121{bottom:388.800000px;}
.y25_c00121{bottom:403.800000px;}
.y4e_c00121{bottom:404.700000px;}
.y24_c00121{bottom:419.250000px;}
.y23_c00121{bottom:435.150000px;}
.y22_c00121{bottom:450.600000px;}
.y4d_c00121{bottom:451.050000px;}
.y21_c00121{bottom:466.500000px;}
.y4c_c00121{bottom:466.950000px;}
.y20_c00121{bottom:481.650000px;}
.y4b_c00121{bottom:482.400000px;}
.y1f_c00121{bottom:497.100000px;}
.y4a_c00121{bottom:497.700000px;}
.y1e_c00121{bottom:513.300000px;}
.y49_c00121{bottom:513.600000px;}
.y1d_c00121{bottom:528.750000px;}
.y48_c00121{bottom:529.500000px;}
.y1c_c00121{bottom:544.200000px;}
.y47_c00121{bottom:545.400000px;}
.y1b_c00121{bottom:560.100000px;}
.y46_c00121{bottom:560.850000px;}
.y1a_c00121{bottom:575.550000px;}
.y45_c00121{bottom:576.300000px;}
.y19_c00121{bottom:591.450000px;}
.y44_c00121{bottom:592.200000px;}
.y18_c00121{bottom:606.600000px;}
.y43_c00121{bottom:607.650000px;}
.y17_c00121{bottom:622.350000px;}
.y42_c00121{bottom:623.550000px;}
.y16_c00121{bottom:637.800000px;}
.y41_c00121{bottom:639.000000px;}
.y15_c00121{bottom:653.700000px;}
.y40_c00121{bottom:655.050000px;}
.y14_c00121{bottom:669.600000px;}
.y3f_c00121{bottom:670.500000px;}
.y13_c00121{bottom:685.050000px;}
.y3e_c00121{bottom:685.950000px;}
.y12_c00121{bottom:700.500000px;}
.y3d_c00121{bottom:701.850000px;}
.y11_c00121{bottom:716.400000px;}
.y3c_c00121{bottom:716.550000px;}
.y10_c00121{bottom:732.000000px;}
.yf_c00121{bottom:747.900000px;}
.y3b_c00121{bottom:748.200000px;}
.y3a_c00121{bottom:763.650000px;}
.ye_c00121{bottom:763.800000px;}
.y39_c00121{bottom:779.100000px;}
.yd_c00121{bottom:779.700000px;}
.y38_c00121{bottom:794.850000px;}
.yc_c00121{bottom:795.150000px;}
.yb_c00121{bottom:810.300000px;}
.y37_c00121{bottom:810.750000px;}
.ya_c00121{bottom:860.250000px;}
.y9_c00121{bottom:880.050000px;}
.y8_c00121{bottom:900.150000px;}
.y7_c00121{bottom:919.950000px;}
.y6_c00121{bottom:939.750000px;}
.y5_c00121{bottom:959.850000px;}
.y4_c00121{bottom:979.650000px;}
.y3_c00121{bottom:999.750000px;}
.y2_c00121{bottom:1038.600000px;}
.y1_c00121{bottom:1038.900000px;}
.h2_c00121{height:48.000000px;}
.h3_c00121{height:66.000000px;}
.h1_c00121{height:1167.750000px;}
.h0_c00121{height:1167.839997px;}
.w1_c00121{width:920.250000px;}
.w0_c00121{width:920.519990px;}
.x0_c00121{left:0.000000px;}
.x6_c00121{left:100.500000px;}
.x89_c00121{left:101.550000px;}
.x6e_c00121{left:113.700000px;}
.x55_c00121{left:115.800000px;}
.xd0_c00121{left:119.250000px;}
.x31_c00121{left:120.600000px;}
.xc3_c00121{left:122.250000px;}
.x6f_c00121{left:123.450000px;}
.x7d_c00121{left:125.850000px;}
.xb3_c00121{left:129.750000px;}
.x8e_c00121{left:130.800000px;}
.xd8_c00121{left:134.400000px;}
.xab_c00121{left:135.600000px;}
.x64_c00121{left:136.800000px;}
.x8a_c00121{left:139.050000px;}
.x24_c00121{left:140.850000px;}
.x9f_c00121{left:141.900000px;}
.x98_c00121{left:143.100000px;}
.xa8_c00121{left:147.150000px;}
.x70_c00121{left:148.350000px;}
.x94_c00121{left:152.400000px;}
.x7_c00121{left:153.450000px;}
.x81_c00121{left:156.300000px;}
.x8f_c00121{left:157.500000px;}
.xa3_c00121{left:158.700000px;}
.x32_c00121{left:160.200000px;}
.xdc_c00121{left:161.550000px;}
.x86_c00121{left:163.050000px;}
.xb0_c00121{left:164.250000px;}
.x56_c00121{left:167.250000px;}
.x25_c00121{left:168.900000px;}
.xce_c00121{left:171.150000px;}
.x99_c00121{left:172.950000px;}
.xa0_c00121{left:174.600000px;}
.x75_c00121{left:177.300000px;}
.x4c_c00121{left:179.250000px;}
.xc6_c00121{left:183.600000px;}
.x7e_c00121{left:184.950000px;}
.x16_c00121{left:186.900000px;}
.xbb_c00121{left:188.400000px;}
.xbc_c00121{left:191.100000px;}
.xb4_c00121{left:193.200000px;}
.xd5_c00121{left:194.550000px;}
.x82_c00121{left:195.900000px;}
.x8_c00121{left:197.400000px;}
.xc1_c00121{left:198.750000px;}
.xb7_c00121{left:201.300000px;}
.x71_c00121{left:202.650000px;}
.x90_c00121{left:205.050000px;}
.x9a_c00121{left:206.100000px;}
.x3e_c00121{left:207.450000px;}
.xc4_c00121{left:209.100000px;}
.x65_c00121{left:211.200000px;}
.x76_c00121{left:213.300000px;}
.xd1_c00121{left:214.650000px;}
.xac_c00121{left:216.900000px;}
.xa1_c00121{left:218.850000px;}
.x33_c00121{left:221.400000px;}
.xb1_c00121{left:226.650000px;}
.x9_c00121{left:229.050000px;}
.xd6_c00121{left:230.850000px;}
.x66_c00121{left:232.050000px;}
.x26_c00121{left:233.400000px;}
.x17_c00121{left:234.750000px;}
.x95_c00121{left:235.950000px;}
.xd2_c00121{left:237.750000px;}
.xb2_c00121{left:240.600000px;}
.x87_c00121{left:242.550000px;}
.xa4_c00121{left:245.100000px;}
.x8b_c00121{left:249.600000px;}
.x79_c00121{left:250.800000px;}
.x57_c00121{left:252.600000px;}
.x3f_c00121{left:254.550000px;}
.xd3_c00121{left:256.800000px;}
.xb8_c00121{left:258.300000px;}
.x91_c00121{left:259.350000px;}
.x18_c00121{left:260.700000px;}
.x8c_c00121{left:264.000000px;}
.x27_c00121{left:265.500000px;}
.xc7_c00121{left:268.500000px;}
.xd9_c00121{left:269.550000px;}
.xa9_c00121{left:270.600000px;}
.x9e_c00121{left:272.400000px;}
.x72_c00121{left:274.950000px;}
.xd4_c00121{left:276.900000px;}
.xa_c00121{left:278.400000px;}
.xb5_c00121{left:279.900000px;}
.x19_c00121{left:282.300000px;}
.x92_c00121{left:283.800000px;}
.x7f_c00121{left:285.450000px;}
.x9b_c00121{left:287.850000px;}
.xad_c00121{left:289.650000px;}
.x7a_c00121{left:290.700000px;}
.x40_c00121{left:292.650000px;}
.x34_c00121{left:295.200000px;}
.xc9_c00121{left:296.850000px;}
.xd7_c00121{left:298.500000px;}
.x83_c00121{left:300.750000px;}
.x96_c00121{left:301.800000px;}
.x73_c00121{left:304.050000px;}
.x67_c00121{left:305.550000px;}
.xcf_c00121{left:308.550000px;}
.x28_c00121{left:309.750000px;}
.xb_c00121{left:311.850000px;}
.xcc_c00121{left:313.200000px;}
.x35_c00121{left:315.000000px;}
.xae_c00121{left:316.650000px;}
.x58_c00121{left:318.150000px;}
.x9c_c00121{left:320.550000px;}
.x1a_c00121{left:324.000000px;}
.xbd_c00121{left:325.800000px;}
.xa2_c00121{left:327.150000px;}
.x7b_c00121{left:329.550000px;}
.xdb_c00121{left:333.600000px;}
.xb9_c00121{left:334.650000px;}
.x59_c00121{left:335.850000px;}
.xbf_c00121{left:337.050000px;}
.x77_c00121{left:338.250000px;}
.xc_c00121{left:340.650000px;}
.xcd_c00121{left:342.300000px;}
.x36_c00121{left:343.500000px;}
.x41_c00121{left:345.900000px;}
.x29_c00121{left:347.550000px;}
.x68_c00121{left:349.050000px;}
.x5a_c00121{left:351.000000px;}
.xc5_c00121{left:353.550000px;}
.xa5_c00121{left:354.600000px;}
.x1_c00121{left:356.100000px;}
.xda_c00121{left:358.050000px;}
.xbe_c00121{left:360.300000px;}
.x1b_c00121{left:361.500000px;}
.xc2_c00121{left:362.850000px;}
.x9d_c00121{left:365.850000px;}
.x42_c00121{left:367.800000px;}
.xcb_c00121{left:369.300000px;}
.x78_c00121{left:371.700000px;}
.xc0_c00121{left:373.050000px;}
.x37_c00121{left:374.400000px;}
.xd_c00121{left:375.600000px;}
.x69_c00121{left:377.550000px;}
.x84_c00121{left:379.350000px;}
.xa6_c00121{left:380.550000px;}
.x7c_c00121{left:383.550000px;}
.x97_c00121{left:386.850000px;}
.x74_c00121{left:388.650000px;}
.x8d_c00121{left:390.000000px;}
.xba_c00121{left:391.500000px;}
.xaa_c00121{left:393.000000px;}
.x2_c00121{left:394.200000px;}
.x93_c00121{left:396.150000px;}
.x43_c00121{left:397.350000px;}
.x80_c00121{left:401.100000px;}
.xc8_c00121{left:402.150000px;}
.xa7_c00121{left:404.250000px;}
.xca_c00121{left:406.650000px;}
.x88_c00121{left:408.600000px;}
.x85_c00121{left:410.250000px;}
.x38_c00121{left:413.250000px;}
.x1c_c00121{left:415.500000px;}
.xb6_c00121{left:416.550000px;}
.xaf_c00121{left:418.350000px;}
.x4d_c00121{left:424.350000px;}
.x5b_c00121{left:429.150000px;}
.x1d_c00121{left:434.250000px;}
.x44_c00121{left:436.200000px;}
.x12c_c00121{left:442.800000px;}
.xdd_c00121{left:443.850000px;}
.xf6_c00121{left:444.900000px;}
.x6a_c00121{left:446.250000px;}
.x3_c00121{left:448.500000px;}
.xe_c00121{left:456.150000px;}
.x5c_c00121{left:457.200000px;}
.x2a_c00121{left:458.400000px;}
.x1e_c00121{left:460.950000px;}
.x146_c00121{left:464.550000px;}
.xe2_c00121{left:465.600000px;}
.x6b_c00121{left:467.100000px;}
.x11d_c00121{left:468.900000px;}
.x4_c00121{left:471.900000px;}
.x39_c00121{left:473.400000px;}
.xf_c00121{left:475.950000px;}
.x142_c00121{left:477.000000px;}
.x2b_c00121{left:478.200000px;}
.x137_c00121{left:479.700000px;}
.x112_c00121{left:481.050000px;}
.xe3_c00121{left:482.850000px;}
.xde_c00121{left:485.250000px;}
.x4e_c00121{left:487.050000px;}
.x106_c00121{left:488.250000px;}
.xfd_c00121{left:489.600000px;}
.x131_c00121{left:490.800000px;}
.x105_c00121{left:492.300000px;}
.xf8_c00121{left:494.250000px;}
.x101_c00121{left:499.200000px;}
.xef_c00121{left:500.700000px;}
.xe9_c00121{left:504.000000px;}
.x2c_c00121{left:505.500000px;}
.x129_c00121{left:507.300000px;}
.xdf_c00121{left:508.350000px;}
.x119_c00121{left:509.850000px;}
.x147_c00121{left:511.200000px;}
.x13a_c00121{left:512.250000px;}
.x10_c00121{left:513.750000px;}
.xfe_c00121{left:515.100000px;}
.x121_c00121{left:517.050000px;}
.xea_c00121{left:518.400000px;}
.x12d_c00121{left:519.450000px;}
.x1f_c00121{left:522.450000px;}
.x4f_c00121{left:525.600000px;}
.x11e_c00121{left:526.800000px;}
.xf9_c00121{left:528.450000px;}
.x10d_c00121{left:530.700000px;}
.x45_c00121{left:532.350000px;}
.x113_c00121{left:534.300000px;}
.xe4_c00121{left:536.100000px;}
.x11_c00121{left:537.150000px;}
.x132_c00121{left:539.100000px;}
.x11a_c00121{left:540.750000px;}
.x126_c00121{left:542.700000px;}
.x50_c00121{left:543.900000px;}
.xf0_c00121{left:544.950000px;}
.x5d_c00121{left:546.900000px;}
.x114_c00121{left:551.250000px;}
.x3a_c00121{left:553.650000px;}
.x13b_c00121{left:555.150000px;}
.x12e_c00121{left:556.950000px;}
.xf7_c00121{left:558.600000px;}
.x12a_c00121{left:559.800000px;}
.x20_c00121{left:561.750000px;}
.x5e_c00121{left:564.150000px;}
.x148_c00121{left:565.950000px;}
.x102_c00121{left:568.050000px;}
.xeb_c00121{left:570.300000px;}
.xf1_c00121{left:571.950000px;}
.x107_c00121{left:573.300000px;}
.x2d_c00121{left:574.950000px;}
.xfa_c00121{left:576.000000px;}
.x51_c00121{left:577.050000px;}
.x13c_c00121{left:578.550000px;}
.x46_c00121{left:580.650000px;}
.x11b_c00121{left:583.200000px;}
.x3b_c00121{left:585.000000px;}
.x103_c00121{left:587.100000px;}
.x143_c00121{left:588.150000px;}
.xe5_c00121{left:590.100000px;}
.x12f_c00121{left:592.950000px;}
.x13f_c00121{left:594.000000px;}
.xff_c00121{left:596.700000px;}
.xec_c00121{left:600.600000px;}
.x5f_c00121{left:602.700000px;}
.xe0_c00121{left:603.750000px;}
.x108_c00121{left:605.400000px;}
.x12_c00121{left:606.600000px;}
.x47_c00121{left:607.950000px;}
.x134_c00121{left:609.900000px;}
.x10e_c00121{left:610.950000px;}
.x12b_c00121{left:612.000000px;}
.x104_c00121{left:613.350000px;}
.x52_c00121{left:615.600000px;}
.xe6_c00121{left:618.150000px;}
.x118_c00121{left:619.500000px;}
.x6c_c00121{left:621.600000px;}
.x48_c00121{left:624.900000px;}
.xf4_c00121{left:626.400000px;}
.x60_c00121{left:627.900000px;}
.x3c_c00121{left:630.000000px;}
.x144_c00121{left:631.050000px;}
.x115_c00121{left:634.050000px;}
.x53_c00121{left:637.200000px;}
.x10f_c00121{left:639.000000px;}
.x14c_c00121{left:641.250000px;}
.x127_c00121{left:642.600000px;}
.x122_c00121{left:645.600000px;}
.x11f_c00121{left:646.650000px;}
.xed_c00121{left:648.150000px;}
.x116_c00121{left:650.550000px;}
.x109_c00121{left:651.750000px;}
.x11c_c00121{left:653.400000px;}
.x21_c00121{left:654.600000px;}
.xe7_c00121{left:655.650000px;}
.x13_c00121{left:658.800000px;}
.x110_c00121{left:660.600000px;}
.x61_c00121{left:662.400000px;}
.xf2_c00121{left:665.850000px;}
.x135_c00121{left:667.950000px;}
.x2e_c00121{left:669.600000px;}
.x140_c00121{left:671.400000px;}
.x123_c00121{left:672.600000px;}
.x138_c00121{left:674.100000px;}
.x49_c00121{left:675.300000px;}
.x14_c00121{left:676.800000px;}
.xe8_c00121{left:678.000000px;}
.x133_c00121{left:679.200000px;}
.xfb_c00121{left:680.850000px;}
.x62_c00121{left:682.200000px;}
.xe1_c00121{left:683.250000px;}
.x111_c00121{left:685.050000px;}
.x10a_c00121{left:687.000000px;}
.x22_c00121{left:689.100000px;}
.x139_c00121{left:691.800000px;}
.x130_c00121{left:693.150000px;}
.x100_c00121{left:694.950000px;}
.x4a_c00121{left:696.600000px;}
.xf3_c00121{left:698.550000px;}
.xee_c00121{left:700.350000px;}
.x10b_c00121{left:701.700000px;}
.x145_c00121{left:703.800000px;}
.x15_c00121{left:705.900000px;}
.x14a_c00121{left:707.550000px;}
.x128_c00121{left:708.900000px;}
.x63_c00121{left:709.950000px;}
.x141_c00121{left:711.300000px;}
.x13d_c00121{left:713.550000px;}
.x2f_c00121{left:716.400000px;}
.x124_c00121{left:719.700000px;}
.x23_c00121{left:721.200000px;}
.x6d_c00121{left:723.900000px;}
.x14b_c00121{left:725.400000px;}
.x120_c00121{left:730.200000px;}
.x149_c00121{left:732.300000px;}
.xfc_c00121{left:733.350000px;}
.x54_c00121{left:735.750000px;}
.x125_c00121{left:736.950000px;}
.x136_c00121{left:738.750000px;}
.x30_c00121{left:741.600000px;}
.xf5_c00121{left:743.400000px;}
.x4b_c00121{left:745.200000px;}
.x3d_c00121{left:747.750000px;}
.x10c_c00121{left:749.550000px;}
.x117_c00121{left:751.350000px;}
.x5_c00121{left:752.400000px;}
.x13e_c00121{left:756.750000px;}
.x14d_c00121{left:759.600000px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws1_c00121{word-spacing:-4.148148pt;}
.ws7_c00121{word-spacing:-3.631206pt;}
.wsf_c00121{word-spacing:-1.641026pt;}
.ws6_c00121{word-spacing:-1.222222pt;}
.ws8_c00121{word-spacing:-0.197531pt;}
.wsa_c00121{word-spacing:0.000000pt;}
.wsc_c00121{word-spacing:0.098765pt;}
.ws0_c00121{word-spacing:2.666667pt;}
.ws4_c00121{word-spacing:2.962963pt;}
.wsd_c00121{word-spacing:4.000000pt;}
.ws2_c00121{word-spacing:4.148148pt;}
.wse_c00121{word-spacing:4.587814pt;}
.ws9_c00121{word-spacing:5.925926pt;}
.ws3_c00121{word-spacing:6.666667pt;}
.ws10_c00121{word-spacing:8.296296pt;}
.ws5_c00121{word-spacing:10.074074pt;}
.wsb_c00121{word-spacing:12.282828pt;}
._0_c00121{width:34.370370pt;}
.fs0_c00121{font-size:42.666667pt;}
.fs1_c00121{font-size:58.666667pt;}
.y0_c00121{bottom:0.000000pt;}
.y36_c00121{bottom:121.200000pt;}
.y35_c00121{bottom:135.600000pt;}
.y5e_c00121{bottom:135.866667pt;}
.y34_c00121{bottom:149.733333pt;}
.y5d_c00121{bottom:150.266667pt;}
.y33_c00121{bottom:164.400000pt;}
.y5c_c00121{bottom:164.666667pt;}
.y32_c00121{bottom:177.866667pt;}
.y5b_c00121{bottom:178.400000pt;}
.y31_c00121{bottom:191.600000pt;}
.y5a_c00121{bottom:192.133333pt;}
.y30_c00121{bottom:205.733333pt;}
.y59_c00121{bottom:206.266667pt;}
.y58_c00121{bottom:220.000000pt;}
.y2f_c00121{bottom:220.133333pt;}
.y2e_c00121{bottom:233.866667pt;}
.y57_c00121{bottom:234.133333pt;}
.y56_c00121{bottom:247.866667pt;}
.y2d_c00121{bottom:248.000000pt;}
.y55_c00121{bottom:261.600000pt;}
.y2c_c00121{bottom:261.733333pt;}
.y54_c00121{bottom:275.733333pt;}
.y2b_c00121{bottom:275.866667pt;}
.y2a_c00121{bottom:289.600000pt;}
.y53_c00121{bottom:289.866667pt;}
.y29_c00121{bottom:303.333333pt;}
.y52_c00121{bottom:304.000000pt;}
.y28_c00121{bottom:317.466667pt;}
.y51_c00121{bottom:317.733333pt;}
.y27_c00121{bottom:331.200000pt;}
.y50_c00121{bottom:331.466667pt;}
.y26_c00121{bottom:344.933333pt;}
.y4f_c00121{bottom:345.600000pt;}
.y25_c00121{bottom:358.933333pt;}
.y4e_c00121{bottom:359.733333pt;}
.y24_c00121{bottom:372.666667pt;}
.y23_c00121{bottom:386.800000pt;}
.y22_c00121{bottom:400.533333pt;}
.y4d_c00121{bottom:400.933333pt;}
.y21_c00121{bottom:414.666667pt;}
.y4c_c00121{bottom:415.066667pt;}
.y20_c00121{bottom:428.133333pt;}
.y4b_c00121{bottom:428.800000pt;}
.y1f_c00121{bottom:441.866667pt;}
.y4a_c00121{bottom:442.400000pt;}
.y1e_c00121{bottom:456.266667pt;}
.y49_c00121{bottom:456.533333pt;}
.y1d_c00121{bottom:470.000000pt;}
.y48_c00121{bottom:470.666667pt;}
.y1c_c00121{bottom:483.733333pt;}
.y47_c00121{bottom:484.800000pt;}
.y1b_c00121{bottom:497.866667pt;}
.y46_c00121{bottom:498.533333pt;}
.y1a_c00121{bottom:511.600000pt;}
.y45_c00121{bottom:512.266667pt;}
.y19_c00121{bottom:525.733333pt;}
.y44_c00121{bottom:526.400000pt;}
.y18_c00121{bottom:539.200000pt;}
.y43_c00121{bottom:540.133333pt;}
.y17_c00121{bottom:553.200000pt;}
.y42_c00121{bottom:554.266667pt;}
.y16_c00121{bottom:566.933333pt;}
.y41_c00121{bottom:568.000000pt;}
.y15_c00121{bottom:581.066667pt;}
.y40_c00121{bottom:582.266667pt;}
.y14_c00121{bottom:595.200000pt;}
.y3f_c00121{bottom:596.000000pt;}
.y13_c00121{bottom:608.933333pt;}
.y3e_c00121{bottom:609.733333pt;}
.y12_c00121{bottom:622.666667pt;}
.y3d_c00121{bottom:623.866667pt;}
.y11_c00121{bottom:636.800000pt;}
.y3c_c00121{bottom:636.933333pt;}
.y10_c00121{bottom:650.666667pt;}
.yf_c00121{bottom:664.800000pt;}
.y3b_c00121{bottom:665.066667pt;}
.y3a_c00121{bottom:678.800000pt;}
.ye_c00121{bottom:678.933333pt;}
.y39_c00121{bottom:692.533333pt;}
.yd_c00121{bottom:693.066667pt;}
.y38_c00121{bottom:706.533333pt;}
.yc_c00121{bottom:706.800000pt;}
.yb_c00121{bottom:720.266667pt;}
.y37_c00121{bottom:720.666667pt;}
.ya_c00121{bottom:764.666667pt;}
.y9_c00121{bottom:782.266667pt;}
.y8_c00121{bottom:800.133333pt;}
.y7_c00121{bottom:817.733333pt;}
.y6_c00121{bottom:835.333333pt;}
.y5_c00121{bottom:853.200000pt;}
.y4_c00121{bottom:870.800000pt;}
.y3_c00121{bottom:888.666667pt;}
.y2_c00121{bottom:923.200000pt;}
.y1_c00121{bottom:923.466667pt;}
.h2_c00121{height:42.666667pt;}
.h3_c00121{height:58.666667pt;}
.h1_c00121{height:1038.000000pt;}
.h0_c00121{height:1038.079997pt;}
.w1_c00121{width:818.000000pt;}
.w0_c00121{width:818.239991pt;}
.x0_c00121{left:0.000000pt;}
.x6_c00121{left:89.333333pt;}
.x89_c00121{left:90.266667pt;}
.x6e_c00121{left:101.066667pt;}
.x55_c00121{left:102.933333pt;}
.xd0_c00121{left:106.000000pt;}
.x31_c00121{left:107.200000pt;}
.xc3_c00121{left:108.666667pt;}
.x6f_c00121{left:109.733333pt;}
.x7d_c00121{left:111.866667pt;}
.xb3_c00121{left:115.333333pt;}
.x8e_c00121{left:116.266667pt;}
.xd8_c00121{left:119.466667pt;}
.xab_c00121{left:120.533333pt;}
.x64_c00121{left:121.600000pt;}
.x8a_c00121{left:123.600000pt;}
.x24_c00121{left:125.200000pt;}
.x9f_c00121{left:126.133333pt;}
.x98_c00121{left:127.200000pt;}
.xa8_c00121{left:130.800000pt;}
.x70_c00121{left:131.866667pt;}
.x94_c00121{left:135.466667pt;}
.x7_c00121{left:136.400000pt;}
.x81_c00121{left:138.933333pt;}
.x8f_c00121{left:140.000000pt;}
.xa3_c00121{left:141.066667pt;}
.x32_c00121{left:142.400000pt;}
.xdc_c00121{left:143.600000pt;}
.x86_c00121{left:144.933333pt;}
.xb0_c00121{left:146.000000pt;}
.x56_c00121{left:148.666667pt;}
.x25_c00121{left:150.133333pt;}
.xce_c00121{left:152.133333pt;}
.x99_c00121{left:153.733333pt;}
.xa0_c00121{left:155.200000pt;}
.x75_c00121{left:157.600000pt;}
.x4c_c00121{left:159.333333pt;}
.xc6_c00121{left:163.200000pt;}
.x7e_c00121{left:164.400000pt;}
.x16_c00121{left:166.133333pt;}
.xbb_c00121{left:167.466667pt;}
.xbc_c00121{left:169.866667pt;}
.xb4_c00121{left:171.733333pt;}
.xd5_c00121{left:172.933333pt;}
.x82_c00121{left:174.133333pt;}
.x8_c00121{left:175.466667pt;}
.xc1_c00121{left:176.666667pt;}
.xb7_c00121{left:178.933333pt;}
.x71_c00121{left:180.133333pt;}
.x90_c00121{left:182.266667pt;}
.x9a_c00121{left:183.200000pt;}
.x3e_c00121{left:184.400000pt;}
.xc4_c00121{left:185.866667pt;}
.x65_c00121{left:187.733333pt;}
.x76_c00121{left:189.600000pt;}
.xd1_c00121{left:190.800000pt;}
.xac_c00121{left:192.800000pt;}
.xa1_c00121{left:194.533333pt;}
.x33_c00121{left:196.800000pt;}
.xb1_c00121{left:201.466667pt;}
.x9_c00121{left:203.600000pt;}
.xd6_c00121{left:205.200000pt;}
.x66_c00121{left:206.266667pt;}
.x26_c00121{left:207.466667pt;}
.x17_c00121{left:208.666667pt;}
.x95_c00121{left:209.733333pt;}
.xd2_c00121{left:211.333333pt;}
.xb2_c00121{left:213.866667pt;}
.x87_c00121{left:215.600000pt;}
.xa4_c00121{left:217.866667pt;}
.x8b_c00121{left:221.866667pt;}
.x79_c00121{left:222.933333pt;}
.x57_c00121{left:224.533333pt;}
.x3f_c00121{left:226.266667pt;}
.xd3_c00121{left:228.266667pt;}
.xb8_c00121{left:229.600000pt;}
.x91_c00121{left:230.533333pt;}
.x18_c00121{left:231.733333pt;}
.x8c_c00121{left:234.666667pt;}
.x27_c00121{left:236.000000pt;}
.xc7_c00121{left:238.666667pt;}
.xd9_c00121{left:239.600000pt;}
.xa9_c00121{left:240.533333pt;}
.x9e_c00121{left:242.133333pt;}
.x72_c00121{left:244.400000pt;}
.xd4_c00121{left:246.133333pt;}
.xa_c00121{left:247.466667pt;}
.xb5_c00121{left:248.800000pt;}
.x19_c00121{left:250.933333pt;}
.x92_c00121{left:252.266667pt;}
.x7f_c00121{left:253.733333pt;}
.x9b_c00121{left:255.866667pt;}
.xad_c00121{left:257.466667pt;}
.x7a_c00121{left:258.400000pt;}
.x40_c00121{left:260.133333pt;}
.x34_c00121{left:262.400000pt;}
.xc9_c00121{left:263.866667pt;}
.xd7_c00121{left:265.333333pt;}
.x83_c00121{left:267.333333pt;}
.x96_c00121{left:268.266667pt;}
.x73_c00121{left:270.266667pt;}
.x67_c00121{left:271.600000pt;}
.xcf_c00121{left:274.266667pt;}
.x28_c00121{left:275.333333pt;}
.xb_c00121{left:277.200000pt;}
.xcc_c00121{left:278.400000pt;}
.x35_c00121{left:280.000000pt;}
.xae_c00121{left:281.466667pt;}
.x58_c00121{left:282.800000pt;}
.x9c_c00121{left:284.933333pt;}
.x1a_c00121{left:288.000000pt;}
.xbd_c00121{left:289.600000pt;}
.xa2_c00121{left:290.800000pt;}
.x7b_c00121{left:292.933333pt;}
.xdb_c00121{left:296.533333pt;}
.xb9_c00121{left:297.466667pt;}
.x59_c00121{left:298.533333pt;}
.xbf_c00121{left:299.600000pt;}
.x77_c00121{left:300.666667pt;}
.xc_c00121{left:302.800000pt;}
.xcd_c00121{left:304.266667pt;}
.x36_c00121{left:305.333333pt;}
.x41_c00121{left:307.466667pt;}
.x29_c00121{left:308.933333pt;}
.x68_c00121{left:310.266667pt;}
.x5a_c00121{left:312.000000pt;}
.xc5_c00121{left:314.266667pt;}
.xa5_c00121{left:315.200000pt;}
.x1_c00121{left:316.533333pt;}
.xda_c00121{left:318.266667pt;}
.xbe_c00121{left:320.266667pt;}
.x1b_c00121{left:321.333333pt;}
.xc2_c00121{left:322.533333pt;}
.x9d_c00121{left:325.200000pt;}
.x42_c00121{left:326.933333pt;}
.xcb_c00121{left:328.266667pt;}
.x78_c00121{left:330.400000pt;}
.xc0_c00121{left:331.600000pt;}
.x37_c00121{left:332.800000pt;}
.xd_c00121{left:333.866667pt;}
.x69_c00121{left:335.600000pt;}
.x84_c00121{left:337.200000pt;}
.xa6_c00121{left:338.266667pt;}
.x7c_c00121{left:340.933333pt;}
.x97_c00121{left:343.866667pt;}
.x74_c00121{left:345.466667pt;}
.x8d_c00121{left:346.666667pt;}
.xba_c00121{left:348.000000pt;}
.xaa_c00121{left:349.333333pt;}
.x2_c00121{left:350.400000pt;}
.x93_c00121{left:352.133333pt;}
.x43_c00121{left:353.200000pt;}
.x80_c00121{left:356.533333pt;}
.xc8_c00121{left:357.466667pt;}
.xa7_c00121{left:359.333333pt;}
.xca_c00121{left:361.466667pt;}
.x88_c00121{left:363.200000pt;}
.x85_c00121{left:364.666667pt;}
.x38_c00121{left:367.333333pt;}
.x1c_c00121{left:369.333333pt;}
.xb6_c00121{left:370.266667pt;}
.xaf_c00121{left:371.866667pt;}
.x4d_c00121{left:377.200000pt;}
.x5b_c00121{left:381.466667pt;}
.x1d_c00121{left:386.000000pt;}
.x44_c00121{left:387.733333pt;}
.x12c_c00121{left:393.600000pt;}
.xdd_c00121{left:394.533333pt;}
.xf6_c00121{left:395.466667pt;}
.x6a_c00121{left:396.666667pt;}
.x3_c00121{left:398.666667pt;}
.xe_c00121{left:405.466667pt;}
.x5c_c00121{left:406.400000pt;}
.x2a_c00121{left:407.466667pt;}
.x1e_c00121{left:409.733333pt;}
.x146_c00121{left:412.933333pt;}
.xe2_c00121{left:413.866667pt;}
.x6b_c00121{left:415.200000pt;}
.x11d_c00121{left:416.800000pt;}
.x4_c00121{left:419.466667pt;}
.x39_c00121{left:420.800000pt;}
.xf_c00121{left:423.066667pt;}
.x142_c00121{left:424.000000pt;}
.x2b_c00121{left:425.066667pt;}
.x137_c00121{left:426.400000pt;}
.x112_c00121{left:427.600000pt;}
.xe3_c00121{left:429.200000pt;}
.xde_c00121{left:431.333333pt;}
.x4e_c00121{left:432.933333pt;}
.x106_c00121{left:434.000000pt;}
.xfd_c00121{left:435.200000pt;}
.x131_c00121{left:436.266667pt;}
.x105_c00121{left:437.600000pt;}
.xf8_c00121{left:439.333333pt;}
.x101_c00121{left:443.733333pt;}
.xef_c00121{left:445.066667pt;}
.xe9_c00121{left:448.000000pt;}
.x2c_c00121{left:449.333333pt;}
.x129_c00121{left:450.933333pt;}
.xdf_c00121{left:451.866667pt;}
.x119_c00121{left:453.200000pt;}
.x147_c00121{left:454.400000pt;}
.x13a_c00121{left:455.333333pt;}
.x10_c00121{left:456.666667pt;}
.xfe_c00121{left:457.866667pt;}
.x121_c00121{left:459.600000pt;}
.xea_c00121{left:460.800000pt;}
.x12d_c00121{left:461.733333pt;}
.x1f_c00121{left:464.400000pt;}
.x4f_c00121{left:467.200000pt;}
.x11e_c00121{left:468.266667pt;}
.xf9_c00121{left:469.733333pt;}
.x10d_c00121{left:471.733333pt;}
.x45_c00121{left:473.200000pt;}
.x113_c00121{left:474.933333pt;}
.xe4_c00121{left:476.533333pt;}
.x11_c00121{left:477.466667pt;}
.x132_c00121{left:479.200000pt;}
.x11a_c00121{left:480.666667pt;}
.x126_c00121{left:482.400000pt;}
.x50_c00121{left:483.466667pt;}
.xf0_c00121{left:484.400000pt;}
.x5d_c00121{left:486.133333pt;}
.x114_c00121{left:490.000000pt;}
.x3a_c00121{left:492.133333pt;}
.x13b_c00121{left:493.466667pt;}
.x12e_c00121{left:495.066667pt;}
.xf7_c00121{left:496.533333pt;}
.x12a_c00121{left:497.600000pt;}
.x20_c00121{left:499.333333pt;}
.x5e_c00121{left:501.466667pt;}
.x148_c00121{left:503.066667pt;}
.x102_c00121{left:504.933333pt;}
.xeb_c00121{left:506.933333pt;}
.xf1_c00121{left:508.400000pt;}
.x107_c00121{left:509.600000pt;}
.x2d_c00121{left:511.066667pt;}
.xfa_c00121{left:512.000000pt;}
.x51_c00121{left:512.933333pt;}
.x13c_c00121{left:514.266667pt;}
.x46_c00121{left:516.133333pt;}
.x11b_c00121{left:518.400000pt;}
.x3b_c00121{left:520.000000pt;}
.x103_c00121{left:521.866667pt;}
.x143_c00121{left:522.800000pt;}
.xe5_c00121{left:524.533333pt;}
.x12f_c00121{left:527.066667pt;}
.x13f_c00121{left:528.000000pt;}
.xff_c00121{left:530.400000pt;}
.xec_c00121{left:533.866667pt;}
.x5f_c00121{left:535.733333pt;}
.xe0_c00121{left:536.666667pt;}
.x108_c00121{left:538.133333pt;}
.x12_c00121{left:539.200000pt;}
.x47_c00121{left:540.400000pt;}
.x134_c00121{left:542.133333pt;}
.x10e_c00121{left:543.066667pt;}
.x12b_c00121{left:544.000000pt;}
.x104_c00121{left:545.200000pt;}
.x52_c00121{left:547.200000pt;}
.xe6_c00121{left:549.466667pt;}
.x118_c00121{left:550.666667pt;}
.x6c_c00121{left:552.533333pt;}
.x48_c00121{left:555.466667pt;}
.xf4_c00121{left:556.800000pt;}
.x60_c00121{left:558.133333pt;}
.x3c_c00121{left:560.000000pt;}
.x144_c00121{left:560.933333pt;}
.x115_c00121{left:563.600000pt;}
.x53_c00121{left:566.400000pt;}
.x10f_c00121{left:568.000000pt;}
.x14c_c00121{left:570.000000pt;}
.x127_c00121{left:571.200000pt;}
.x122_c00121{left:573.866667pt;}
.x11f_c00121{left:574.800000pt;}
.xed_c00121{left:576.133333pt;}
.x116_c00121{left:578.266667pt;}
.x109_c00121{left:579.333333pt;}
.x11c_c00121{left:580.800000pt;}
.x21_c00121{left:581.866667pt;}
.xe7_c00121{left:582.800000pt;}
.x13_c00121{left:585.600000pt;}
.x110_c00121{left:587.200000pt;}
.x61_c00121{left:588.800000pt;}
.xf2_c00121{left:591.866667pt;}
.x135_c00121{left:593.733333pt;}
.x2e_c00121{left:595.200000pt;}
.x140_c00121{left:596.800000pt;}
.x123_c00121{left:597.866667pt;}
.x138_c00121{left:599.200000pt;}
.x49_c00121{left:600.266667pt;}
.x14_c00121{left:601.600000pt;}
.xe8_c00121{left:602.666667pt;}
.x133_c00121{left:603.733333pt;}
.xfb_c00121{left:605.200000pt;}
.x62_c00121{left:606.400000pt;}
.xe1_c00121{left:607.333333pt;}
.x111_c00121{left:608.933333pt;}
.x10a_c00121{left:610.666667pt;}
.x22_c00121{left:612.533333pt;}
.x139_c00121{left:614.933333pt;}
.x130_c00121{left:616.133333pt;}
.x100_c00121{left:617.733333pt;}
.x4a_c00121{left:619.200000pt;}
.xf3_c00121{left:620.933333pt;}
.xee_c00121{left:622.533333pt;}
.x10b_c00121{left:623.733333pt;}
.x145_c00121{left:625.600000pt;}
.x15_c00121{left:627.466667pt;}
.x14a_c00121{left:628.933333pt;}
.x128_c00121{left:630.133333pt;}
.x63_c00121{left:631.066667pt;}
.x141_c00121{left:632.266667pt;}
.x13d_c00121{left:634.266667pt;}
.x2f_c00121{left:636.800000pt;}
.x124_c00121{left:639.733333pt;}
.x23_c00121{left:641.066667pt;}
.x6d_c00121{left:643.466667pt;}
.x14b_c00121{left:644.800000pt;}
.x120_c00121{left:649.066667pt;}
.x149_c00121{left:650.933333pt;}
.xfc_c00121{left:651.866667pt;}
.x54_c00121{left:654.000000pt;}
.x125_c00121{left:655.066667pt;}
.x136_c00121{left:656.666667pt;}
.x30_c00121{left:659.200000pt;}
.xf5_c00121{left:660.800000pt;}
.x4b_c00121{left:662.400000pt;}
.x3d_c00121{left:664.666667pt;}
.x10c_c00121{left:666.266667pt;}
.x117_c00121{left:667.866667pt;}
.x5_c00121{left:668.800000pt;}
.x13e_c00121{left:672.666667pt;}
.x14d_c00121{left:675.200000pt;}
}





/* 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_c00122 {
    display:none;
  }
  .loading-indicator_c00122.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00122 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_c00122 { 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_c00122" -> "#page-container .classname_c00122")
 */
.pf_c00122 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00122 { /* 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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00122 { /* 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_c00122 { /* 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_c00122 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00122 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00122 {overflow:visible;}
  }
}
.c_c00122 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00122 { /* 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_c00122:after { /* webkit #35443 */
  content: '';
}
.t_c00122:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00122 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 */
}
.__c00122 { /* 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_c00122 { /* info for Javascript */
  display:none;
}
.l_c00122 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00122 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00122 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00122: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_c00122 {
    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_c00122.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00122.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_c00122 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00122{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00122;src:url('chunks/assets/font_b5065777eba167c21df3ce02.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.000000;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;}
.m12_c00122{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00122{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00122{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00122{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m64_c00122{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00122{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m59_c00122{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m92_c00122{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00122{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m83_c00122{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00122{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00122{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00122{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00122{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m82_c00122{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m99_c00122{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00122{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mba_c00122{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m97_c00122{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m52_c00122{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00122{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m62_c00122{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m81_c00122{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m66_c00122{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00122{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00122{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m70_c00122{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m89_c00122{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00122{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m8_c00122{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m90_c00122{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m79_c00122{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m4_c00122{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m57_c00122{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m87_c00122{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m55_c00122{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00122{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00122{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00122{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m43_c00122{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38_c00122{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00122{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00122{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.maf_c00122{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m36_c00122{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m3_c00122{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00122{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00122{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00122{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00122{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m39_c00122{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00122{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00122{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.me_c00122{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00122{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10_c00122{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00122{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m48_c00122{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00122{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m72_c00122{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m2_c00122{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m94_c00122{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m30_c00122{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m74_c00122{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m16_c00122{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m49_c00122{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00122{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m75_c00122{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00122{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m71_c00122{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00122{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00122{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00122{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00122{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m35_c00122{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m96_c00122{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00122{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m58_c00122{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.maa_c00122{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00122{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00122{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m76_c00122{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m42_c00122{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m28_c00122{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m69_c00122{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00122{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00122{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m40_c00122{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m44_c00122{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m86_c00122{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m20_c00122{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m50_c00122{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m95_c00122{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m25_c00122{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00122{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00122{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mab_c00122{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00122{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00122{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m45_c00122{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m29_c00122{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00122{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m73_c00122{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00122{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00122{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mad_c00122{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m19_c00122{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m65_c00122{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m54_c00122{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m85_c00122{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m68_c00122{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m51_c00122{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00122{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m88_c00122{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mac_c00122{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m53_c00122{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m56_c00122{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00122{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00122{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.mae_c00122{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m78_c00122{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00122{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m93_c00122{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m60_c00122{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m0_c00122{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00122{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00122{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00122{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00122{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m77_c00122{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00122{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m91_c00122{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00122{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00122{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00122{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m98_c00122{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00122{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00122{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m34_c00122{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m63_c00122{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00122{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.ls0_c00122{letter-spacing:0.000000px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{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__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00122{word-spacing:-5.454545px;}
.ws2_c00122{word-spacing:-1.764706px;}
.ws6_c00122{word-spacing:-1.666667px;}
.ws4_c00122{word-spacing:-0.294118px;}
.ws9_c00122{word-spacing:0.000000px;}
.ws8_c00122{word-spacing:1.032258px;}
.ws0_c00122{word-spacing:1.190476px;}
.ws1_c00122{word-spacing:1.666667px;}
.ws3_c00122{word-spacing:1.911765px;}
.ws5_c00122{word-spacing:4.473684px;}
._0_c00122{width:39.722222px;}
.fc0_c00122{color:transparent;}
.fs1_c00122{font-size:48.000000px;}
.fs0_c00122{font-size:60.000000px;}
.y0_c00122{bottom:0.000000px;}
.y2d_c00122{bottom:137.550000px;}
.y2c_c00122{bottom:153.300000px;}
.y2b_c00122{bottom:169.200000px;}
.y2a_c00122{bottom:185.400000px;}
.y29_c00122{bottom:200.850000px;}
.y28_c00122{bottom:240.900000px;}
.y27_c00122{bottom:261.000000px;}
.y26_c00122{bottom:281.100000px;}
.y25_c00122{bottom:300.900000px;}
.y24_c00122{bottom:320.700000px;}
.y23_c00122{bottom:341.100000px;}
.y22_c00122{bottom:361.200000px;}
.y21_c00122{bottom:381.300000px;}
.y20_c00122{bottom:401.400000px;}
.y1f_c00122{bottom:421.500000px;}
.y1e_c00122{bottom:441.300000px;}
.y1d_c00122{bottom:461.100000px;}
.y1c_c00122{bottom:480.900000px;}
.y1b_c00122{bottom:501.000000px;}
.y1a_c00122{bottom:521.100000px;}
.y19_c00122{bottom:540.900000px;}
.y18_c00122{bottom:561.000000px;}
.y17_c00122{bottom:580.800000px;}
.y16_c00122{bottom:600.300000px;}
.y15_c00122{bottom:620.400000px;}
.y14_c00122{bottom:640.500000px;}
.y13_c00122{bottom:660.300000px;}
.y12_c00122{bottom:680.850000px;}
.y11_c00122{bottom:703.500000px;}
.y10_c00122{bottom:720.750000px;}
.yf_c00122{bottom:740.850000px;}
.ye_c00122{bottom:760.950000px;}
.yd_c00122{bottom:780.750000px;}
.yc_c00122{bottom:801.300000px;}
.yb_c00122{bottom:821.100000px;}
.ya_c00122{bottom:841.200000px;}
.y9_c00122{bottom:861.000000px;}
.y8_c00122{bottom:881.100000px;}
.y7_c00122{bottom:901.200000px;}
.y6_c00122{bottom:921.000000px;}
.y5_c00122{bottom:940.800000px;}
.y4_c00122{bottom:960.600000px;}
.y3_c00122{bottom:980.700000px;}
.y2_c00122{bottom:1000.500000px;}
.y1_c00122{bottom:1038.600000px;}
.h3_c00122{height:48.000000px;}
.h2_c00122{height:60.000000px;}
.h1_c00122{height:1167.750000px;}
.h0_c00122{height:1167.839997px;}
.w1_c00122{width:920.250000px;}
.w0_c00122{width:920.519990px;}
.x0_c00122{left:0.000000px;}
.x117_c00122{left:150.150000px;}
.x3_c00122{left:151.200000px;}
.x1_c00122{left:153.000000px;}
.x145_c00122{left:164.250000px;}
.xd0_c00122{left:169.350000px;}
.x99_c00122{left:170.700000px;}
.x5f_c00122{left:173.250000px;}
.x3f_c00122{left:174.600000px;}
.xc4_c00122{left:175.650000px;}
.x118_c00122{left:179.250000px;}
.x122_c00122{left:182.550000px;}
.x25_c00122{left:184.500000px;}
.x4_c00122{left:186.150000px;}
.xae_c00122{left:189.450000px;}
.x77_c00122{left:190.800000px;}
.x31_c00122{left:193.650000px;}
.xbb_c00122{left:195.750000px;}
.x14_c00122{left:196.800000px;}
.x11e_c00122{left:199.800000px;}
.x60_c00122{left:201.000000px;}
.x103_c00122{left:202.200000px;}
.x52_c00122{left:203.850000px;}
.x40_c00122{left:205.500000px;}
.xa4_c00122{left:206.550000px;}
.x15_c00122{left:207.900000px;}
.x12b_c00122{left:209.250000px;}
.x83_c00122{left:211.350000px;}
.x48_c00122{left:212.700000px;}
.xd6_c00122{left:214.200000px;}
.x13e_c00122{left:215.700000px;}
.xfa_c00122{left:217.500000px;}
.x5_c00122{left:220.050000px;}
.xbc_c00122{left:222.750000px;}
.xf4_c00122{left:223.800000px;}
.x41_c00122{left:225.600000px;}
.x32_c00122{left:227.850000px;}
.x10d_c00122{left:229.650000px;}
.x9a_c00122{left:234.000000px;}
.xaf_c00122{left:235.500000px;}
.x128_c00122{left:238.050000px;}
.xdf_c00122{left:239.400000px;}
.x16_c00122{left:243.900000px;}
.xf5_c00122{left:246.150000px;}
.xef_c00122{left:249.900000px;}
.x6c_c00122{left:250.950000px;}
.xa5_c00122{left:253.050000px;}
.x26_c00122{left:256.800000px;}
.x6_c00122{left:258.150000px;}
.xe0_c00122{left:261.300000px;}
.x13f_c00122{left:262.500000px;}
.xb0_c00122{left:264.300000px;}
.x11f_c00122{left:266.100000px;}
.xd1_c00122{left:269.550000px;}
.x49_c00122{left:270.600000px;}
.x6d_c00122{left:271.800000px;}
.x78_c00122{left:273.600000px;}
.x61_c00122{left:277.350000px;}
.x17_c00122{left:279.150000px;}
.x125_c00122{left:280.200000px;}
.xa6_c00122{left:281.850000px;}
.x132_c00122{left:283.500000px;}
.x84_c00122{left:285.450000px;}
.x12c_c00122{left:286.650000px;}
.x53_c00122{left:288.150000px;}
.x104_c00122{left:289.350000px;}
.x9b_c00122{left:291.600000px;}
.x8f_c00122{left:293.550000px;}
.xc5_c00122{left:296.400000px;}
.xd7_c00122{left:300.150000px;}
.x4a_c00122{left:301.950000px;}
.x85_c00122{left:305.550000px;}
.xbd_c00122{left:307.050000px;}
.x126_c00122{left:308.250000px;}
.x33_c00122{left:311.850000px;}
.x42_c00122{left:314.550000px;}
.xe8_c00122{left:318.450000px;}
.x18_c00122{left:319.800000px;}
.x7_c00122{left:322.200000px;}
.x146_c00122{left:323.850000px;}
.xd8_c00122{left:325.350000px;}
.xfe_c00122{left:326.400000px;}
.x62_c00122{left:327.450000px;}
.x90_c00122{left:328.800000px;}
.xc6_c00122{left:332.400000px;}
.x34_c00122{left:335.250000px;}
.x6e_c00122{left:337.350000px;}
.x19_c00122{left:340.650000px;}
.x110_c00122{left:342.900000px;}
.x54_c00122{left:343.950000px;}
.x10e_c00122{left:345.450000px;}
.x63_c00122{left:347.250000px;}
.xe9_c00122{left:349.350000px;}
.x9c_c00122{left:351.300000px;}
.x86_c00122{left:352.350000px;}
.x79_c00122{left:355.200000px;}
.x1a_c00122{left:356.850000px;}
.x140_c00122{left:358.200000px;}
.x43_c00122{left:360.600000px;}
.x143_c00122{left:361.800000px;}
.x35_c00122{left:363.750000px;}
.x133_c00122{left:365.550000px;}
.xc7_c00122{left:366.600000px;}
.x119_c00122{left:367.800000px;}
.x8_c00122{left:369.300000px;}
.x27_c00122{left:370.500000px;}
.xb1_c00122{left:372.600000px;}
.x64_c00122{left:375.300000px;}
.xd9_c00122{left:377.850000px;}
.xe5_c00122{left:378.900000px;}
.x111_c00122{left:382.200000px;}
.x7a_c00122{left:384.300000px;}
.x87_c00122{left:386.250000px;}
.x55_c00122{left:387.900000px;}
.xe1_c00122{left:389.400000px;}
.x134_c00122{left:391.050000px;}
.xb2_c00122{left:392.700000px;}
.x9d_c00122{left:395.550000px;}
.x105_c00122{left:396.600000px;}
.x91_c00122{left:398.250000px;}
.x9_c00122{left:399.900000px;}
.xf0_c00122{left:402.150000px;}
.x112_c00122{left:404.100000px;}
.x12d_c00122{left:407.250000px;}
.x28_c00122{left:408.300000px;}
.x4b_c00122{left:411.450000px;}
.x147_c00122{left:412.500000px;}
.xbe_c00122{left:415.350000px;}
.x88_c00122{left:417.150000px;}
.xd2_c00122{left:418.650000px;}
.xf6_c00122{left:420.300000px;}
.xea_c00122{left:422.700000px;}
.x1b_c00122{left:425.250000px;}
.xb3_c00122{left:428.400000px;}
.x29_c00122{left:429.900000px;}
.x120_c00122{left:432.150000px;}
.x36_c00122{left:433.650000px;}
.x6f_c00122{left:435.300000px;}
.x11a_c00122{left:437.250000px;}
.x129_c00122{left:439.800000px;}
.x107_c00122{left:441.300000px;}
.x44_c00122{left:442.350000px;}
.xfb_c00122{left:444.000000px;}
.x1c_c00122{left:445.050000px;}
.x65_c00122{left:447.000000px;}
.x56_c00122{left:448.350000px;}
.x2_c00122{left:450.300000px;}
.x141_c00122{left:451.500000px;}
.x37_c00122{left:453.450000px;}
.xc8_c00122{left:455.100000px;}
.xff_c00122{left:456.300000px;}
.x92_c00122{left:459.750000px;}
.xa7_c00122{left:461.850000px;}
.xe2_c00122{left:464.550000px;}
.x7b_c00122{left:466.800000px;}
.x4c_c00122{left:468.000000px;}
.x135_c00122{left:469.800000px;}
.x70_c00122{left:472.050000px;}
.x1d_c00122{left:473.550000px;}
.xeb_c00122{left:475.350000px;}
.xc9_c00122{left:476.400000px;}
.xda_c00122{left:477.900000px;}
.xa_c00122{left:480.600000px;}
.x38_c00122{left:481.950000px;}
.xe6_c00122{left:484.650000px;}
.x123_c00122{left:487.050000px;}
.x11b_c00122{left:488.400000px;}
.x71_c00122{left:491.850000px;}
.xca_c00122{left:494.100000px;}
.x142_c00122{left:495.750000px;}
.xa8_c00122{left:496.800000px;}
.x93_c00122{left:498.300000px;}
.xf1_c00122{left:499.350000px;}
.xbf_c00122{left:500.400000px;}
.x4d_c00122{left:502.500000px;}
.x7c_c00122{left:504.900000px;}
.xf7_c00122{left:506.400000px;}
.x57_c00122{left:508.050000px;}
.x2a_c00122{left:509.100000px;}
.xb4_c00122{left:512.250000px;}
.x89_c00122{left:514.350000px;}
.x12a_c00122{left:515.400000px;}
.xb_c00122{left:518.400000px;}
.x72_c00122{left:519.900000px;}
.x12e_c00122{left:522.000000px;}
.x39_c00122{left:525.150000px;}
.xdb_c00122{left:527.250000px;}
.x11c_c00122{left:529.800000px;}
.x13d_c00122{left:531.150000px;}
.xc_c00122{left:533.100000px;}
.xf8_c00122{left:534.150000px;}
.x115_c00122{left:535.200000px;}
.x108_c00122{left:536.400000px;}
.x8a_c00122{left:537.750000px;}
.xfc_c00122{left:538.800000px;}
.xd3_c00122{left:540.600000px;}
.xec_c00122{left:541.950000px;}
.x9e_c00122{left:543.000000px;}
.xe7_c00122{left:545.400000px;}
.xb5_c00122{left:549.000000px;}
.x106_c00122{left:550.650000px;}
.x2b_c00122{left:552.000000px;}
.xf2_c00122{left:553.350000px;}
.xed_c00122{left:557.100000px;}
.xcb_c00122{left:558.900000px;}
.xa9_c00122{left:560.400000px;}
.x7d_c00122{left:561.750000px;}
.x66_c00122{left:564.000000px;}
.x58_c00122{left:566.700000px;}
.xf3_c00122{left:567.750000px;}
.x1e_c00122{left:568.950000px;}
.x3a_c00122{left:570.900000px;}
.x9f_c00122{left:573.900000px;}
.xc0_c00122{left:577.500000px;}
.xcc_c00122{left:579.450000px;}
.x4e_c00122{left:580.950000px;}
.xd_c00122{left:582.000000px;}
.x11d_c00122{left:584.250000px;}
.xb6_c00122{left:586.050000px;}
.x12f_c00122{left:588.150000px;}
.x59_c00122{left:589.800000px;}
.x1f_c00122{left:592.050000px;}
.x3b_c00122{left:593.250000px;}
.x138_c00122{left:594.450000px;}
.xdc_c00122{left:596.400000px;}
.x2c_c00122{left:598.050000px;}
.xcd_c00122{left:600.750000px;}
.x4f_c00122{left:604.050000px;}
.xb7_c00122{left:605.100000px;}
.x45_c00122{left:606.900000px;}
.x7e_c00122{left:608.250000px;}
.x8b_c00122{left:610.800000px;}
.x67_c00122{left:613.350000px;}
.x100_c00122{left:614.700000px;}
.x136_c00122{left:617.100000px;}
.x5a_c00122{left:618.300000px;}
.x121_c00122{left:621.600000px;}
.xa0_c00122{left:626.100000px;}
.x94_c00122{left:629.700000px;}
.x20_c00122{left:630.900000px;}
.xe_c00122{left:632.700000px;}
.xaa_c00122{left:634.200000px;}
.x144_c00122{left:635.400000px;}
.x3c_c00122{left:638.550000px;}
.x130_c00122{left:640.350000px;}
.xb8_c00122{left:642.150000px;}
.xe3_c00122{left:644.550000px;}
.xa1_c00122{left:646.200000px;}
.x73_c00122{left:648.150000px;}
.xf_c00122{left:649.950000px;}
.x5b_c00122{left:653.550000px;}
.x109_c00122{left:654.600000px;}
.x2d_c00122{left:655.650000px;}
.x68_c00122{left:659.850000px;}
.xce_c00122{left:662.550000px;}
.x95_c00122{left:663.600000px;}
.x139_c00122{left:665.700000px;}
.x21_c00122{left:668.700000px;}
.x113_c00122{left:670.050000px;}
.xb9_c00122{left:671.700000px;}
.xa2_c00122{left:673.950000px;}
.x124_c00122{left:675.000000px;}
.x7f_c00122{left:676.350000px;}
.x13a_c00122{left:678.000000px;}
.x46_c00122{left:679.650000px;}
.x96_c00122{left:682.350000px;}
.xf9_c00122{left:684.150000px;}
.x10a_c00122{left:685.950000px;}
.x10_c00122{left:688.500000px;}
.xdd_c00122{left:689.550000px;}
.x69_c00122{left:691.200000px;}
.x50_c00122{left:692.550000px;}
.xba_c00122{left:696.900000px;}
.x114_c00122{left:698.550000px;}
.x80_c00122{left:700.200000px;}
.x8c_c00122{left:701.550000px;}
.x101_c00122{left:702.600000px;}
.x22_c00122{left:704.700000px;}
.x5c_c00122{left:706.050000px;}
.x11_c00122{left:708.300000px;}
.xab_c00122{left:710.100000px;}
.xfd_c00122{left:712.650000px;}
.x74_c00122{left:713.700000px;}
.x3d_c00122{left:715.650000px;}
.x97_c00122{left:720.450000px;}
.xa3_c00122{left:722.550000px;}
.x2e_c00122{left:724.050000px;}
.x6a_c00122{left:725.100000px;}
.x102_c00122{left:726.300000px;}
.x75_c00122{left:728.400000px;}
.x81_c00122{left:730.500000px;}
.x13b_c00122{left:731.700000px;}
.x127_c00122{left:732.900000px;}
.x5d_c00122{left:734.100000px;}
.x12_c00122{left:736.350000px;}
.xde_c00122{left:737.700000px;}
.x8d_c00122{left:739.050000px;}
.x23_c00122{left:742.800000px;}
.x2f_c00122{left:743.850000px;}
.xc1_c00122{left:745.500000px;}
.x10f_c00122{left:749.400000px;}
.xd4_c00122{left:750.900000px;}
.xe4_c00122{left:752.100000px;}
.x13c_c00122{left:754.050000px;}
.xcf_c00122{left:755.100000px;}
.xac_c00122{left:759.000000px;}
.x76_c00122{left:760.500000px;}
.x10b_c00122{left:761.850000px;}
.xc2_c00122{left:765.600000px;}
.x8e_c00122{left:767.550000px;}
.x30_c00122{left:771.900000px;}
.x24_c00122{left:774.150000px;}
.x116_c00122{left:775.500000px;}
.x13_c00122{left:777.750000px;}
.x82_c00122{left:779.100000px;}
.x6b_c00122{left:780.150000px;}
.x3e_c00122{left:786.600000px;}
.x98_c00122{left:788.100000px;}
.xc3_c00122{left:789.750000px;}
.x131_c00122{left:790.800000px;}
.x5e_c00122{left:792.000000px;}
.xad_c00122{left:794.700000px;}
.xee_c00122{left:796.500000px;}
.x47_c00122{left:800.550000px;}
.xd5_c00122{left:805.350000px;}
.x10c_c00122{left:807.150000px;}
.x137_c00122{left:811.500000px;}
.x51_c00122{left:812.550000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ws7_c00122{word-spacing:-4.848485pt;}
.ws2_c00122{word-spacing:-1.568627pt;}
.ws6_c00122{word-spacing:-1.481481pt;}
.ws4_c00122{word-spacing:-0.261438pt;}
.ws9_c00122{word-spacing:0.000000pt;}
.ws8_c00122{word-spacing:0.917563pt;}
.ws0_c00122{word-spacing:1.058201pt;}
.ws1_c00122{word-spacing:1.481481pt;}
.ws3_c00122{word-spacing:1.699346pt;}
.ws5_c00122{word-spacing:3.976608pt;}
._0_c00122{width:35.308642pt;}
.fs1_c00122{font-size:42.666667pt;}
.fs0_c00122{font-size:53.333333pt;}
.y0_c00122{bottom:0.000000pt;}
.y2d_c00122{bottom:122.266667pt;}
.y2c_c00122{bottom:136.266667pt;}
.y2b_c00122{bottom:150.400000pt;}
.y2a_c00122{bottom:164.800000pt;}
.y29_c00122{bottom:178.533333pt;}
.y28_c00122{bottom:214.133333pt;}
.y27_c00122{bottom:232.000000pt;}
.y26_c00122{bottom:249.866667pt;}
.y25_c00122{bottom:267.466667pt;}
.y24_c00122{bottom:285.066667pt;}
.y23_c00122{bottom:303.200000pt;}
.y22_c00122{bottom:321.066667pt;}
.y21_c00122{bottom:338.933333pt;}
.y20_c00122{bottom:356.800000pt;}
.y1f_c00122{bottom:374.666667pt;}
.y1e_c00122{bottom:392.266667pt;}
.y1d_c00122{bottom:409.866667pt;}
.y1c_c00122{bottom:427.466667pt;}
.y1b_c00122{bottom:445.333333pt;}
.y1a_c00122{bottom:463.200000pt;}
.y19_c00122{bottom:480.800000pt;}
.y18_c00122{bottom:498.666667pt;}
.y17_c00122{bottom:516.266667pt;}
.y16_c00122{bottom:533.600000pt;}
.y15_c00122{bottom:551.466667pt;}
.y14_c00122{bottom:569.333333pt;}
.y13_c00122{bottom:586.933333pt;}
.y12_c00122{bottom:605.200000pt;}
.y11_c00122{bottom:625.333333pt;}
.y10_c00122{bottom:640.666667pt;}
.yf_c00122{bottom:658.533333pt;}
.ye_c00122{bottom:676.400000pt;}
.yd_c00122{bottom:694.000000pt;}
.yc_c00122{bottom:712.266667pt;}
.yb_c00122{bottom:729.866667pt;}
.ya_c00122{bottom:747.733333pt;}
.y9_c00122{bottom:765.333333pt;}
.y8_c00122{bottom:783.200000pt;}
.y7_c00122{bottom:801.066667pt;}
.y6_c00122{bottom:818.666667pt;}
.y5_c00122{bottom:836.266667pt;}
.y4_c00122{bottom:853.866667pt;}
.y3_c00122{bottom:871.733333pt;}
.y2_c00122{bottom:889.333333pt;}
.y1_c00122{bottom:923.200000pt;}
.h3_c00122{height:42.666667pt;}
.h2_c00122{height:53.333333pt;}
.h1_c00122{height:1038.000000pt;}
.h0_c00122{height:1038.079997pt;}
.w1_c00122{width:818.000000pt;}
.w0_c00122{width:818.239991pt;}
.x0_c00122{left:0.000000pt;}
.x117_c00122{left:133.466667pt;}
.x3_c00122{left:134.400000pt;}
.x1_c00122{left:136.000000pt;}
.x145_c00122{left:146.000000pt;}
.xd0_c00122{left:150.533333pt;}
.x99_c00122{left:151.733333pt;}
.x5f_c00122{left:154.000000pt;}
.x3f_c00122{left:155.200000pt;}
.xc4_c00122{left:156.133333pt;}
.x118_c00122{left:159.333333pt;}
.x122_c00122{left:162.266667pt;}
.x25_c00122{left:164.000000pt;}
.x4_c00122{left:165.466667pt;}
.xae_c00122{left:168.400000pt;}
.x77_c00122{left:169.600000pt;}
.x31_c00122{left:172.133333pt;}
.xbb_c00122{left:174.000000pt;}
.x14_c00122{left:174.933333pt;}
.x11e_c00122{left:177.600000pt;}
.x60_c00122{left:178.666667pt;}
.x103_c00122{left:179.733333pt;}
.x52_c00122{left:181.200000pt;}
.x40_c00122{left:182.666667pt;}
.xa4_c00122{left:183.600000pt;}
.x15_c00122{left:184.800000pt;}
.x12b_c00122{left:186.000000pt;}
.x83_c00122{left:187.866667pt;}
.x48_c00122{left:189.066667pt;}
.xd6_c00122{left:190.400000pt;}
.x13e_c00122{left:191.733333pt;}
.xfa_c00122{left:193.333333pt;}
.x5_c00122{left:195.600000pt;}
.xbc_c00122{left:198.000000pt;}
.xf4_c00122{left:198.933333pt;}
.x41_c00122{left:200.533333pt;}
.x32_c00122{left:202.533333pt;}
.x10d_c00122{left:204.133333pt;}
.x9a_c00122{left:208.000000pt;}
.xaf_c00122{left:209.333333pt;}
.x128_c00122{left:211.600000pt;}
.xdf_c00122{left:212.800000pt;}
.x16_c00122{left:216.800000pt;}
.xf5_c00122{left:218.800000pt;}
.xef_c00122{left:222.133333pt;}
.x6c_c00122{left:223.066667pt;}
.xa5_c00122{left:224.933333pt;}
.x26_c00122{left:228.266667pt;}
.x6_c00122{left:229.466667pt;}
.xe0_c00122{left:232.266667pt;}
.x13f_c00122{left:233.333333pt;}
.xb0_c00122{left:234.933333pt;}
.x11f_c00122{left:236.533333pt;}
.xd1_c00122{left:239.600000pt;}
.x49_c00122{left:240.533333pt;}
.x6d_c00122{left:241.600000pt;}
.x78_c00122{left:243.200000pt;}
.x61_c00122{left:246.533333pt;}
.x17_c00122{left:248.133333pt;}
.x125_c00122{left:249.066667pt;}
.xa6_c00122{left:250.533333pt;}
.x132_c00122{left:252.000000pt;}
.x84_c00122{left:253.733333pt;}
.x12c_c00122{left:254.800000pt;}
.x53_c00122{left:256.133333pt;}
.x104_c00122{left:257.200000pt;}
.x9b_c00122{left:259.200000pt;}
.x8f_c00122{left:260.933333pt;}
.xc5_c00122{left:263.466667pt;}
.xd7_c00122{left:266.800000pt;}
.x4a_c00122{left:268.400000pt;}
.x85_c00122{left:271.600000pt;}
.xbd_c00122{left:272.933333pt;}
.x126_c00122{left:274.000000pt;}
.x33_c00122{left:277.200000pt;}
.x42_c00122{left:279.600000pt;}
.xe8_c00122{left:283.066667pt;}
.x18_c00122{left:284.266667pt;}
.x7_c00122{left:286.400000pt;}
.x146_c00122{left:287.866667pt;}
.xd8_c00122{left:289.200000pt;}
.xfe_c00122{left:290.133333pt;}
.x62_c00122{left:291.066667pt;}
.x90_c00122{left:292.266667pt;}
.xc6_c00122{left:295.466667pt;}
.x34_c00122{left:298.000000pt;}
.x6e_c00122{left:299.866667pt;}
.x19_c00122{left:302.800000pt;}
.x110_c00122{left:304.800000pt;}
.x54_c00122{left:305.733333pt;}
.x10e_c00122{left:307.066667pt;}
.x63_c00122{left:308.666667pt;}
.xe9_c00122{left:310.533333pt;}
.x9c_c00122{left:312.266667pt;}
.x86_c00122{left:313.200000pt;}
.x79_c00122{left:315.733333pt;}
.x1a_c00122{left:317.200000pt;}
.x140_c00122{left:318.400000pt;}
.x43_c00122{left:320.533333pt;}
.x143_c00122{left:321.600000pt;}
.x35_c00122{left:323.333333pt;}
.x133_c00122{left:324.933333pt;}
.xc7_c00122{left:325.866667pt;}
.x119_c00122{left:326.933333pt;}
.x8_c00122{left:328.266667pt;}
.x27_c00122{left:329.333333pt;}
.xb1_c00122{left:331.200000pt;}
.x64_c00122{left:333.600000pt;}
.xd9_c00122{left:335.866667pt;}
.xe5_c00122{left:336.800000pt;}
.x111_c00122{left:339.733333pt;}
.x7a_c00122{left:341.600000pt;}
.x87_c00122{left:343.333333pt;}
.x55_c00122{left:344.800000pt;}
.xe1_c00122{left:346.133333pt;}
.x134_c00122{left:347.600000pt;}
.xb2_c00122{left:349.066667pt;}
.x9d_c00122{left:351.600000pt;}
.x105_c00122{left:352.533333pt;}
.x91_c00122{left:354.000000pt;}
.x9_c00122{left:355.466667pt;}
.xf0_c00122{left:357.466667pt;}
.x112_c00122{left:359.200000pt;}
.x12d_c00122{left:362.000000pt;}
.x28_c00122{left:362.933333pt;}
.x4b_c00122{left:365.733333pt;}
.x147_c00122{left:366.666667pt;}
.xbe_c00122{left:369.200000pt;}
.x88_c00122{left:370.800000pt;}
.xd2_c00122{left:372.133333pt;}
.xf6_c00122{left:373.600000pt;}
.xea_c00122{left:375.733333pt;}
.x1b_c00122{left:378.000000pt;}
.xb3_c00122{left:380.800000pt;}
.x29_c00122{left:382.133333pt;}
.x120_c00122{left:384.133333pt;}
.x36_c00122{left:385.466667pt;}
.x6f_c00122{left:386.933333pt;}
.x11a_c00122{left:388.666667pt;}
.x129_c00122{left:390.933333pt;}
.x107_c00122{left:392.266667pt;}
.x44_c00122{left:393.200000pt;}
.xfb_c00122{left:394.666667pt;}
.x1c_c00122{left:395.600000pt;}
.x65_c00122{left:397.333333pt;}
.x56_c00122{left:398.533333pt;}
.x2_c00122{left:400.266667pt;}
.x141_c00122{left:401.333333pt;}
.x37_c00122{left:403.066667pt;}
.xc8_c00122{left:404.533333pt;}
.xff_c00122{left:405.600000pt;}
.x92_c00122{left:408.666667pt;}
.xa7_c00122{left:410.533333pt;}
.xe2_c00122{left:412.933333pt;}
.x7b_c00122{left:414.933333pt;}
.x4c_c00122{left:416.000000pt;}
.x135_c00122{left:417.600000pt;}
.x70_c00122{left:419.600000pt;}
.x1d_c00122{left:420.933333pt;}
.xeb_c00122{left:422.533333pt;}
.xc9_c00122{left:423.466667pt;}
.xda_c00122{left:424.800000pt;}
.xa_c00122{left:427.200000pt;}
.x38_c00122{left:428.400000pt;}
.xe6_c00122{left:430.800000pt;}
.x123_c00122{left:432.933333pt;}
.x11b_c00122{left:434.133333pt;}
.x71_c00122{left:437.200000pt;}
.xca_c00122{left:439.200000pt;}
.x142_c00122{left:440.666667pt;}
.xa8_c00122{left:441.600000pt;}
.x93_c00122{left:442.933333pt;}
.xf1_c00122{left:443.866667pt;}
.xbf_c00122{left:444.800000pt;}
.x4d_c00122{left:446.666667pt;}
.x7c_c00122{left:448.800000pt;}
.xf7_c00122{left:450.133333pt;}
.x57_c00122{left:451.600000pt;}
.x2a_c00122{left:452.533333pt;}
.xb4_c00122{left:455.333333pt;}
.x89_c00122{left:457.200000pt;}
.x12a_c00122{left:458.133333pt;}
.xb_c00122{left:460.800000pt;}
.x72_c00122{left:462.133333pt;}
.x12e_c00122{left:464.000000pt;}
.x39_c00122{left:466.800000pt;}
.xdb_c00122{left:468.666667pt;}
.x11c_c00122{left:470.933333pt;}
.x13d_c00122{left:472.133333pt;}
.xc_c00122{left:473.866667pt;}
.xf8_c00122{left:474.800000pt;}
.x115_c00122{left:475.733333pt;}
.x108_c00122{left:476.800000pt;}
.x8a_c00122{left:478.000000pt;}
.xfc_c00122{left:478.933333pt;}
.xd3_c00122{left:480.533333pt;}
.xec_c00122{left:481.733333pt;}
.x9e_c00122{left:482.666667pt;}
.xe7_c00122{left:484.800000pt;}
.xb5_c00122{left:488.000000pt;}
.x106_c00122{left:489.466667pt;}
.x2b_c00122{left:490.666667pt;}
.xf2_c00122{left:491.866667pt;}
.xed_c00122{left:495.200000pt;}
.xcb_c00122{left:496.800000pt;}
.xa9_c00122{left:498.133333pt;}
.x7d_c00122{left:499.333333pt;}
.x66_c00122{left:501.333333pt;}
.x58_c00122{left:503.733333pt;}
.xf3_c00122{left:504.666667pt;}
.x1e_c00122{left:505.733333pt;}
.x3a_c00122{left:507.466667pt;}
.x9f_c00122{left:510.133333pt;}
.xc0_c00122{left:513.333333pt;}
.xcc_c00122{left:515.066667pt;}
.x4e_c00122{left:516.400000pt;}
.xd_c00122{left:517.333333pt;}
.x11d_c00122{left:519.333333pt;}
.xb6_c00122{left:520.933333pt;}
.x12f_c00122{left:522.800000pt;}
.x59_c00122{left:524.266667pt;}
.x1f_c00122{left:526.266667pt;}
.x3b_c00122{left:527.333333pt;}
.x138_c00122{left:528.400000pt;}
.xdc_c00122{left:530.133333pt;}
.x2c_c00122{left:531.600000pt;}
.xcd_c00122{left:534.000000pt;}
.x4f_c00122{left:536.933333pt;}
.xb7_c00122{left:537.866667pt;}
.x45_c00122{left:539.466667pt;}
.x7e_c00122{left:540.666667pt;}
.x8b_c00122{left:542.933333pt;}
.x67_c00122{left:545.200000pt;}
.x100_c00122{left:546.400000pt;}
.x136_c00122{left:548.533333pt;}
.x5a_c00122{left:549.600000pt;}
.x121_c00122{left:552.533333pt;}
.xa0_c00122{left:556.533333pt;}
.x94_c00122{left:559.733333pt;}
.x20_c00122{left:560.800000pt;}
.xe_c00122{left:562.400000pt;}
.xaa_c00122{left:563.733333pt;}
.x144_c00122{left:564.800000pt;}
.x3c_c00122{left:567.600000pt;}
.x130_c00122{left:569.200000pt;}
.xb8_c00122{left:570.800000pt;}
.xe3_c00122{left:572.933333pt;}
.xa1_c00122{left:574.400000pt;}
.x73_c00122{left:576.133333pt;}
.xf_c00122{left:577.733333pt;}
.x5b_c00122{left:580.933333pt;}
.x109_c00122{left:581.866667pt;}
.x2d_c00122{left:582.800000pt;}
.x68_c00122{left:586.533333pt;}
.xce_c00122{left:588.933333pt;}
.x95_c00122{left:589.866667pt;}
.x139_c00122{left:591.733333pt;}
.x21_c00122{left:594.400000pt;}
.x113_c00122{left:595.600000pt;}
.xb9_c00122{left:597.066667pt;}
.xa2_c00122{left:599.066667pt;}
.x124_c00122{left:600.000000pt;}
.x7f_c00122{left:601.200000pt;}
.x13a_c00122{left:602.666667pt;}
.x46_c00122{left:604.133333pt;}
.x96_c00122{left:606.533333pt;}
.xf9_c00122{left:608.133333pt;}
.x10a_c00122{left:609.733333pt;}
.x10_c00122{left:612.000000pt;}
.xdd_c00122{left:612.933333pt;}
.x69_c00122{left:614.400000pt;}
.x50_c00122{left:615.600000pt;}
.xba_c00122{left:619.466667pt;}
.x114_c00122{left:620.933333pt;}
.x80_c00122{left:622.400000pt;}
.x8c_c00122{left:623.600000pt;}
.x101_c00122{left:624.533333pt;}
.x22_c00122{left:626.400000pt;}
.x5c_c00122{left:627.600000pt;}
.x11_c00122{left:629.600000pt;}
.xab_c00122{left:631.200000pt;}
.xfd_c00122{left:633.466667pt;}
.x74_c00122{left:634.400000pt;}
.x3d_c00122{left:636.133333pt;}
.x97_c00122{left:640.400000pt;}
.xa3_c00122{left:642.266667pt;}
.x2e_c00122{left:643.600000pt;}
.x6a_c00122{left:644.533333pt;}
.x102_c00122{left:645.600000pt;}
.x75_c00122{left:647.466667pt;}
.x81_c00122{left:649.333333pt;}
.x13b_c00122{left:650.400000pt;}
.x127_c00122{left:651.466667pt;}
.x5d_c00122{left:652.533333pt;}
.x12_c00122{left:654.533333pt;}
.xde_c00122{left:655.733333pt;}
.x8d_c00122{left:656.933333pt;}
.x23_c00122{left:660.266667pt;}
.x2f_c00122{left:661.200000pt;}
.xc1_c00122{left:662.666667pt;}
.x10f_c00122{left:666.133333pt;}
.xd4_c00122{left:667.466667pt;}
.xe4_c00122{left:668.533333pt;}
.x13c_c00122{left:670.266667pt;}
.xcf_c00122{left:671.200000pt;}
.xac_c00122{left:674.666667pt;}
.x76_c00122{left:676.000000pt;}
.x10b_c00122{left:677.200000pt;}
.xc2_c00122{left:680.533333pt;}
.x8e_c00122{left:682.266667pt;}
.x30_c00122{left:686.133333pt;}
.x24_c00122{left:688.133333pt;}
.x116_c00122{left:689.333333pt;}
.x13_c00122{left:691.333333pt;}
.x82_c00122{left:692.533333pt;}
.x6b_c00122{left:693.466667pt;}
.x3e_c00122{left:699.200000pt;}
.x98_c00122{left:700.533333pt;}
.xc3_c00122{left:702.000000pt;}
.x131_c00122{left:702.933333pt;}
.x5e_c00122{left:704.000000pt;}
.xad_c00122{left:706.400000pt;}
.xee_c00122{left:708.000000pt;}
.x47_c00122{left:711.600000pt;}
.xd5_c00122{left:715.866667pt;}
.x10c_c00122{left:717.466667pt;}
.x137_c00122{left:721.333333pt;}
.x51_c00122{left:722.266667pt;}
}





/* 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_c00123 {
    display:none;
  }
  .loading-indicator_c00123.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00123 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_c00123 { 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_c00123" -> "#page-container .classname_c00123")
 */
.pf_c00123 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00123 { /* 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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00123 { /* 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_c00123 { /* 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_c00123 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00123 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00123 {overflow:visible;}
  }
}
.c_c00123 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00123 { /* 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_c00123:after { /* webkit #35443 */
  content: '';
}
.t_c00123:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00123 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 */
}
.__c00123 { /* 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_c00123 { /* info for Javascript */
  display:none;
}
.l_c00123 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00123 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00123 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00123: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_c00123 {
    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_c00123.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00123.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_c00123 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00123{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00123;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.000000;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;}
.m6b_c00123{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m85_c00123{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mae_c00123{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m44_c00123{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00123{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m75_c00123{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00123{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00123{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m76_c00123{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m41_c00123{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00123{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00123{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00123{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00123{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m23_c00123{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m79_c00123{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00123{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00123{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00123{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00123{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m58_c00123{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00123{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mad_c00123{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m20_c00123{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m99_c00123{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00123{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m59_c00123{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00123{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m98_c00123{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m93_c00123{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00123{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00123{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m51_c00123{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00123{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m18_c00123{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00123{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m53_c00123{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00123{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m84_c00123{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00123{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00123{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m55_c00123{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00123{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00123{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m94_c00123{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m54_c00123{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m47_c00123{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m65_c00123{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00123{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00123{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00123{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m77_c00123{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m61_c00123{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m52_c00123{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00123{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00123{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m50_c00123{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m71_c00123{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00123{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00123{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00123{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m45_c00123{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m62_c00123{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m66_c00123{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m68_c00123{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m67_c00123{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00123{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m6_c00123{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00123{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00123{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m78_c00123{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00123{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00123{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m72_c00123{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m83_c00123{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00123{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m21_c00123{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00123{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m63_c00123{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00123{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me_c00123{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00123{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m81_c00123{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m86_c00123{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00123{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maa_c00123{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m91_c00123{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m70_c00123{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m73_c00123{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m28_c00123{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m69_c00123{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00123{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8_c00123{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00123{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00123{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00123{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m74_c00123{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00123{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m92_c00123{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22_c00123{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00123{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00123{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00123{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00123{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00123{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m60_c00123{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00123{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m89_c00123{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m95_c00123{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m56_c00123{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3_c00123{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m96_c00123{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00123{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00123{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00123{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00123{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00123{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m14_c00123{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00123{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00123{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m80_c00123{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00123{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mab_c00123{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m49_c00123{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m90_c00123{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00123{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m87_c00123{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m82_c00123{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00123{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00123{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m97_c00123{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.000000px;}
.sc__c00123{text-shadow:none;}
.sc0_c00123{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__c00123{-webkit-text-stroke:0px transparent;}
.sc0_c00123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00123{word-spacing:0.000000px;}
.ws2_c00123{word-spacing:1.666667px;}
.ws5_c00123{word-spacing:2.619048px;}
.ws0_c00123{word-spacing:2.872688px;}
.ws6_c00123{word-spacing:4.404762px;}
.ws8_c00123{word-spacing:12.500000px;}
.ws3_c00123{word-spacing:13.472222px;}
.ws4_c00123{word-spacing:20.298507px;}
.ws7_c00123{word-spacing:21.428571px;}
.ws1_c00123{word-spacing:25.000000px;}
.fc0_c00123{color:transparent;}
.fs0_c00123{font-size:54.000000px;}
.fs1_c00123{font-size:60.000000px;}
.y0_c00123{bottom:0.000000px;}
.y2d_c00123{bottom:142.650000px;}
.y2c_c00123{bottom:162.450000px;}
.y2b_c00123{bottom:182.250000px;}
.y2a_c00123{bottom:202.350000px;}
.y29_c00123{bottom:222.150000px;}
.y28_c00123{bottom:242.250000px;}
.y27_c00123{bottom:262.350000px;}
.y26_c00123{bottom:282.450000px;}
.y25_c00123{bottom:302.250000px;}
.y24_c00123{bottom:322.350000px;}
.y23_c00123{bottom:342.150000px;}
.y22_c00123{bottom:362.250000px;}
.y21_c00123{bottom:382.050000px;}
.y20_c00123{bottom:402.150000px;}
.y1f_c00123{bottom:421.950000px;}
.y1e_c00123{bottom:441.750000px;}
.y1d_c00123{bottom:461.700000px;}
.y1c_c00123{bottom:481.800000px;}
.y1b_c00123{bottom:501.900000px;}
.y1a_c00123{bottom:521.400000px;}
.y19_c00123{bottom:541.500000px;}
.y18_c00123{bottom:561.600000px;}
.y17_c00123{bottom:581.400000px;}
.y16_c00123{bottom:601.500000px;}
.y15_c00123{bottom:621.300000px;}
.y14_c00123{bottom:641.100000px;}
.y13_c00123{bottom:661.800000px;}
.y12_c00123{bottom:681.900000px;}
.y11_c00123{bottom:702.000000px;}
.y10_c00123{bottom:722.100000px;}
.yf_c00123{bottom:742.200000px;}
.ye_c00123{bottom:762.300000px;}
.yd_c00123{bottom:782.100000px;}
.yc_c00123{bottom:802.200000px;}
.yb_c00123{bottom:822.000000px;}
.ya_c00123{bottom:842.100000px;}
.y9_c00123{bottom:861.600000px;}
.y8_c00123{bottom:881.700000px;}
.y7_c00123{bottom:901.200000px;}
.y6_c00123{bottom:921.000000px;}
.y5_c00123{bottom:941.100000px;}
.y4_c00123{bottom:960.900000px;}
.y3_c00123{bottom:979.950000px;}
.y2_c00123{bottom:1000.800000px;}
.y1_c00123{bottom:1039.650000px;}
.h2_c00123{height:54.000000px;}
.h3_c00123{height:60.000000px;}
.h1_c00123{height:1167.750000px;}
.h0_c00123{height:1167.839997px;}
.w1_c00123{width:920.250000px;}
.w0_c00123{width:920.519990px;}
.x0_c00123{left:0.000000px;}
.x6_c00123{left:121.350000px;}
.xc7_c00123{left:122.700000px;}
.x12e_c00123{left:124.050000px;}
.x11a_c00123{left:138.150000px;}
.xdc_c00123{left:140.550000px;}
.xfc_c00123{left:142.650000px;}
.x11e_c00123{left:144.300000px;}
.x7f_c00123{left:147.000000px;}
.x36_c00123{left:148.500000px;}
.x18_c00123{left:153.300000px;}
.x8a_c00123{left:154.650000px;}
.x50_c00123{left:157.200000px;}
.x94_c00123{left:158.850000px;}
.x43_c00123{left:162.000000px;}
.x5a_c00123{left:163.200000px;}
.xfd_c00123{left:165.300000px;}
.x128_c00123{left:166.650000px;}
.x66_c00123{left:168.000000px;}
.x75_c00123{left:173.100000px;}
.x19_c00123{left:177.450000px;}
.x7_c00123{left:180.000000px;}
.xb6_c00123{left:183.000000px;}
.xbe_c00123{left:185.700000px;}
.x67_c00123{left:187.500000px;}
.x80_c00123{left:188.700000px;}
.xe7_c00123{left:189.750000px;}
.x44_c00123{left:191.550000px;}
.x8b_c00123{left:194.250000px;}
.xc8_c00123{left:195.750000px;}
.x101_c00123{left:199.950000px;}
.x26_c00123{left:201.600000px;}
.xad_c00123{left:202.650000px;}
.x8_c00123{left:205.200000px;}
.x81_c00123{left:208.200000px;}
.xe8_c00123{left:209.250000px;}
.x51_c00123{left:210.450000px;}
.xdf_c00123{left:213.000000px;}
.x37_c00123{left:215.100000px;}
.x111_c00123{left:216.900000px;}
.x68_c00123{left:219.900000px;}
.x10a_c00123{left:222.150000px;}
.x1a_c00123{left:225.300000px;}
.xed_c00123{left:227.550000px;}
.x9f_c00123{left:231.600000px;}
.xe9_c00123{left:232.650000px;}
.xf0_c00123{left:233.700000px;}
.xfe_c00123{left:235.050000px;}
.x95_c00123{left:236.250000px;}
.xa9_c00123{left:238.650000px;}
.x82_c00123{left:240.900000px;}
.x27_c00123{left:242.250000px;}
.x76_c00123{left:243.600000px;}
.xa5_c00123{left:250.050000px;}
.x1b_c00123{left:252.000000px;}
.x112_c00123{left:253.950000px;}
.x8c_c00123{left:255.150000px;}
.xcf_c00123{left:256.650000px;}
.xd2_c00123{left:259.950000px;}
.xbf_c00123{left:261.300000px;}
.x45_c00123{left:263.850000px;}
.x38_c00123{left:265.200000px;}
.xb7_c00123{left:267.300000px;}
.x5b_c00123{left:268.350000px;}
.x127_c00123{left:270.300000px;}
.x28_c00123{left:271.350000px;}
.x96_c00123{left:274.350000px;}
.x9_c00123{left:277.200000px;}
.xf1_c00123{left:279.750000px;}
.x83_c00123{left:281.250000px;}
.x69_c00123{left:285.000000px;}
.xb8_c00123{left:287.100000px;}
.x117_c00123{left:289.800000px;}
.x5c_c00123{left:291.450000px;}
.x8d_c00123{left:292.650000px;}
.x97_c00123{left:295.200000px;}
.xea_c00123{left:298.800000px;}
.xdd_c00123{left:300.000000px;}
.xf2_c00123{left:302.400000px;}
.xd3_c00123{left:303.450000px;}
.x52_c00123{left:306.600000px;}
.x121_c00123{left:309.300000px;}
.x77_c00123{left:310.950000px;}
.x29_c00123{left:312.750000px;}
.xb9_c00123{left:315.150000px;}
.x46_c00123{left:318.150000px;}
.xa_c00123{left:320.100000px;}
.x5d_c00123{left:322.050000px;}
.x129_c00123{left:323.850000px;}
.xc9_c00123{left:324.900000px;}
.xae_c00123{left:326.400000px;}
.x98_c00123{left:331.500000px;}
.xf3_c00123{left:333.000000px;}
.x12f_c00123{left:336.450000px;}
.x39_c00123{left:337.500000px;}
.xe2_c00123{left:338.550000px;}
.x8e_c00123{left:339.750000px;}
.x78_c00123{left:341.550000px;}
.x118_c00123{left:343.050000px;}
.xd4_c00123{left:346.650000px;}
.xee_c00123{left:347.850000px;}
.x84_c00123{left:349.950000px;}
.x113_c00123{left:352.350000px;}
.xb_c00123{left:353.550000px;}
.x6a_c00123{left:356.250000px;}
.x2a_c00123{left:357.750000px;}
.x122_c00123{left:358.950000px;}
.xf8_c00123{left:360.300000px;}
.x5e_c00123{left:361.950000px;}
.x1c_c00123{left:365.700000px;}
.x47_c00123{left:367.500000px;}
.x8f_c00123{left:369.600000px;}
.x11b_c00123{left:371.850000px;}
.xd5_c00123{left:373.350000px;}
.x1_c00123{left:375.900000px;}
.x6b_c00123{left:377.550000px;}
.x53_c00123{left:381.750000px;}
.x99_c00123{left:382.950000px;}
.xaf_c00123{left:384.750000px;}
.x1d_c00123{left:386.550000px;}
.x114_c00123{left:389.400000px;}
.x123_c00123{left:392.100000px;}
.x79_c00123{left:393.750000px;}
.x102_c00123{left:395.700000px;}
.x6c_c00123{left:397.050000px;}
.xba_c00123{left:398.700000px;}
.x48_c00123{left:402.750000px;}
.xd0_c00123{left:405.000000px;}
.x85_c00123{left:409.350000px;}
.xff_c00123{left:411.450000px;}
.xb0_c00123{left:412.800000px;}
.x2_c00123{left:414.000000px;}
.x1e_c00123{left:415.050000px;}
.x10b_c00123{left:417.600000px;}
.xbb_c00123{left:419.550000px;}
.x119_c00123{left:422.550000px;}
.x6d_c00123{left:425.550000px;}
.xc_c00123{left:427.650000px;}
.x90_c00123{left:429.300000px;}
.x3a_c00123{left:434.700000px;}
.x2b_c00123{left:435.900000px;}
.xeb_c00123{left:438.150000px;}
.xd6_c00123{left:440.550000px;}
.x100_c00123{left:442.050000px;}
.xd_c00123{left:443.850000px;}
.x86_c00123{left:446.400000px;}
.xa0_c00123{left:447.600000px;}
.xc0_c00123{left:449.250000px;}
.x91_c00123{left:452.700000px;}
.x49_c00123{left:454.200000px;}
.x1f_c00123{left:455.400000px;}
.x9a_c00123{left:457.050000px;}
.x5f_c00123{left:458.850000px;}
.xc1_c00123{left:461.550000px;}
.x12a_c00123{left:462.900000px;}
.xe0_c00123{left:465.000000px;}
.x3_c00123{left:467.700000px;}
.x54_c00123{left:469.200000px;}
.xca_c00123{left:470.400000px;}
.x9b_c00123{left:471.450000px;}
.xe_c00123{left:477.000000px;}
.x4a_c00123{left:478.650000px;}
.x6e_c00123{left:480.900000px;}
.x3b_c00123{left:483.000000px;}
.xd7_c00123{left:487.350000px;}
.xbc_c00123{left:489.000000px;}
.x4_c00123{left:490.800000px;}
.xc2_c00123{left:493.200000px;}
.xf6_c00123{left:494.250000px;}
.xec_c00123{left:496.800000px;}
.xef_c00123{left:502.050000px;}
.x20_c00123{left:505.050000px;}
.x6f_c00123{left:506.100000px;}
.xf_c00123{left:507.600000px;}
.x132_c00123{left:508.650000px;}
.x3c_c00123{left:510.300000px;}
.x9c_c00123{left:512.100000px;}
.xd8_c00123{left:516.150000px;}
.x103_c00123{left:517.350000px;}
.xaa_c00123{left:518.400000px;}
.x21_c00123{left:520.200000px;}
.xf9_c00123{left:522.000000px;}
.x2c_c00123{left:523.050000px;}
.xb1_c00123{left:524.100000px;}
.x7a_c00123{left:526.200000px;}
.xa1_c00123{left:527.550000px;}
.xbd_c00123{left:529.650000px;}
.x60_c00123{left:531.900000px;}
.x10c_c00123{left:535.050000px;}
.xc3_c00123{left:537.450000px;}
.x124_c00123{left:538.500000px;}
.xcb_c00123{left:539.550000px;}
.x55_c00123{left:541.200000px;}
.x2d_c00123{left:544.650000px;}
.xe3_c00123{left:545.850000px;}
.x10_c00123{left:547.950000px;}
.x70_c00123{left:549.600000px;}
.x3d_c00123{left:550.650000px;}
.xd9_c00123{left:552.150000px;}
.xa6_c00123{left:556.800000px;}
.x2e_c00123{left:559.800000px;}
.x11f_c00123{left:560.850000px;}
.xe1_c00123{left:562.950000px;}
.x61_c00123{left:565.350000px;}
.x7b_c00123{left:566.850000px;}
.xa2_c00123{left:567.900000px;}
.x104_c00123{left:569.550000px;}
.x11_c00123{left:570.600000px;}
.x9d_c00123{left:572.550000px;}
.xf4_c00123{left:574.350000px;}
.x3e_c00123{left:576.150000px;}
.x22_c00123{left:577.800000px;}
.x87_c00123{left:580.200000px;}
.x4b_c00123{left:583.050000px;}
.xab_c00123{left:587.100000px;}
.x105_c00123{left:589.350000px;}
.x92_c00123{left:590.850000px;}
.xde_c00123{left:592.500000px;}
.xc4_c00123{left:593.550000px;}
.xa7_c00123{left:594.600000px;}
.xe4_c00123{left:597.300000px;}
.x12_c00123{left:598.650000px;}
.x125_c00123{left:600.000000px;}
.x56_c00123{left:602.400000px;}
.xfa_c00123{left:604.500000px;}
.x4c_c00123{left:605.700000px;}
.x130_c00123{left:607.050000px;}
.x2f_c00123{left:610.200000px;}
.xb2_c00123{left:611.550000px;}
.x88_c00123{left:614.400000px;}
.x62_c00123{left:615.450000px;}
.x9e_c00123{left:618.600000px;}
.x106_c00123{left:619.950000px;}
.xda_c00123{left:621.900000px;}
.x10d_c00123{left:625.800000px;}
.x71_c00123{left:627.750000px;}
.xa3_c00123{left:629.100000px;}
.x12b_c00123{left:631.050000px;}
.x57_c00123{left:632.700000px;}
.x63_c00123{left:635.550000px;}
.x13_c00123{left:637.950000px;}
.xc5_c00123{left:639.600000px;}
.x30_c00123{left:641.850000px;}
.x3f_c00123{left:644.550000px;}
.xe5_c00123{left:645.600000px;}
.xf7_c00123{left:647.400000px;}
.x4d_c00123{left:649.200000px;}
.xb3_c00123{left:651.150000px;}
.x107_c00123{left:654.150000px;}
.x7c_c00123{left:655.500000px;}
.x31_c00123{left:656.550000px;}
.x115_c00123{left:659.850000px;}
.x14_c00123{left:661.350000px;}
.xc6_c00123{left:663.000000px;}
.x10e_c00123{left:664.350000px;}
.x40_c00123{left:667.200000px;}
.x120_c00123{left:670.350000px;}
.xa4_c00123{left:675.150000px;}
.x108_c00123{left:676.500000px;}
.xcc_c00123{left:678.150000px;}
.xdb_c00123{left:679.500000px;}
.x23_c00123{left:681.150000px;}
.x64_c00123{left:683.850000px;}
.x58_c00123{left:685.650000px;}
.x32_c00123{left:687.450000px;}
.xb4_c00123{left:689.700000px;}
.x10f_c00123{left:691.050000px;}
.x72_c00123{left:693.600000px;}
.x15_c00123{left:695.250000px;}
.xfb_c00123{left:697.350000px;}
.x41_c00123{left:702.150000px;}
.xd1_c00123{left:705.450000px;}
.x33_c00123{left:706.500000px;}
.x93_c00123{left:709.650000px;}
.x7d_c00123{left:712.350000px;}
.x73_c00123{left:713.700000px;}
.xa8_c00123{left:715.500000px;}
.x59_c00123{left:717.000000px;}
.xe6_c00123{left:719.700000px;}
.x11c_c00123{left:721.050000px;}
.xac_c00123{left:723.150000px;}
.x24_c00123{left:726.150000px;}
.x12c_c00123{left:728.400000px;}
.x89_c00123{left:729.600000px;}
.x16_c00123{left:731.550000px;}
.x109_c00123{left:733.350000px;}
.xcd_c00123{left:737.550000px;}
.x11d_c00123{left:739.350000px;}
.x34_c00123{left:740.700000px;}
.x7e_c00123{left:744.000000px;}
.x4e_c00123{left:746.100000px;}
.x74_c00123{left:747.600000px;}
.x110_c00123{left:749.700000px;}
.xb5_c00123{left:751.200000px;}
.x17_c00123{left:752.400000px;}
.x25_c00123{left:754.950000px;}
.x65_c00123{left:756.600000px;}
.x42_c00123{left:760.050000px;}
.x116_c00123{left:762.450000px;}
.xf5_c00123{left:764.250000px;}
.x4f_c00123{left:769.200000px;}
.x5_c00123{left:771.600000px;}
.x126_c00123{left:774.600000px;}
.x12d_c00123{left:776.700000px;}
.x35_c00123{left:777.750000px;}
.x131_c00123{left:779.100000px;}
.xce_c00123{left:786.450000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws9_c00123{word-spacing:0.000000pt;}
.ws2_c00123{word-spacing:1.481481pt;}
.ws5_c00123{word-spacing:2.328042pt;}
.ws0_c00123{word-spacing:2.553500pt;}
.ws6_c00123{word-spacing:3.915344pt;}
.ws8_c00123{word-spacing:11.111111pt;}
.ws3_c00123{word-spacing:11.975309pt;}
.ws4_c00123{word-spacing:18.043118pt;}
.ws7_c00123{word-spacing:19.047619pt;}
.ws1_c00123{word-spacing:22.222222pt;}
.fs0_c00123{font-size:48.000000pt;}
.fs1_c00123{font-size:53.333333pt;}
.y0_c00123{bottom:0.000000pt;}
.y2d_c00123{bottom:126.800000pt;}
.y2c_c00123{bottom:144.400000pt;}
.y2b_c00123{bottom:162.000000pt;}
.y2a_c00123{bottom:179.866667pt;}
.y29_c00123{bottom:197.466667pt;}
.y28_c00123{bottom:215.333333pt;}
.y27_c00123{bottom:233.200000pt;}
.y26_c00123{bottom:251.066667pt;}
.y25_c00123{bottom:268.666667pt;}
.y24_c00123{bottom:286.533333pt;}
.y23_c00123{bottom:304.133333pt;}
.y22_c00123{bottom:322.000000pt;}
.y21_c00123{bottom:339.600000pt;}
.y20_c00123{bottom:357.466667pt;}
.y1f_c00123{bottom:375.066667pt;}
.y1e_c00123{bottom:392.666667pt;}
.y1d_c00123{bottom:410.400000pt;}
.y1c_c00123{bottom:428.266667pt;}
.y1b_c00123{bottom:446.133333pt;}
.y1a_c00123{bottom:463.466667pt;}
.y19_c00123{bottom:481.333333pt;}
.y18_c00123{bottom:499.200000pt;}
.y17_c00123{bottom:516.800000pt;}
.y16_c00123{bottom:534.666667pt;}
.y15_c00123{bottom:552.266667pt;}
.y14_c00123{bottom:569.866667pt;}
.y13_c00123{bottom:588.266667pt;}
.y12_c00123{bottom:606.133333pt;}
.y11_c00123{bottom:624.000000pt;}
.y10_c00123{bottom:641.866667pt;}
.yf_c00123{bottom:659.733333pt;}
.ye_c00123{bottom:677.600000pt;}
.yd_c00123{bottom:695.200000pt;}
.yc_c00123{bottom:713.066667pt;}
.yb_c00123{bottom:730.666667pt;}
.ya_c00123{bottom:748.533333pt;}
.y9_c00123{bottom:765.866667pt;}
.y8_c00123{bottom:783.733333pt;}
.y7_c00123{bottom:801.066667pt;}
.y6_c00123{bottom:818.666667pt;}
.y5_c00123{bottom:836.533333pt;}
.y4_c00123{bottom:854.133333pt;}
.y3_c00123{bottom:871.066667pt;}
.y2_c00123{bottom:889.600000pt;}
.y1_c00123{bottom:924.133333pt;}
.h2_c00123{height:48.000000pt;}
.h3_c00123{height:53.333333pt;}
.h1_c00123{height:1038.000000pt;}
.h0_c00123{height:1038.079997pt;}
.w1_c00123{width:818.000000pt;}
.w0_c00123{width:818.239991pt;}
.x0_c00123{left:0.000000pt;}
.x6_c00123{left:107.866667pt;}
.xc7_c00123{left:109.066667pt;}
.x12e_c00123{left:110.266667pt;}
.x11a_c00123{left:122.800000pt;}
.xdc_c00123{left:124.933333pt;}
.xfc_c00123{left:126.800000pt;}
.x11e_c00123{left:128.266667pt;}
.x7f_c00123{left:130.666667pt;}
.x36_c00123{left:132.000000pt;}
.x18_c00123{left:136.266667pt;}
.x8a_c00123{left:137.466667pt;}
.x50_c00123{left:139.733333pt;}
.x94_c00123{left:141.200000pt;}
.x43_c00123{left:144.000000pt;}
.x5a_c00123{left:145.066667pt;}
.xfd_c00123{left:146.933333pt;}
.x128_c00123{left:148.133333pt;}
.x66_c00123{left:149.333333pt;}
.x75_c00123{left:153.866667pt;}
.x19_c00123{left:157.733333pt;}
.x7_c00123{left:160.000000pt;}
.xb6_c00123{left:162.666667pt;}
.xbe_c00123{left:165.066667pt;}
.x67_c00123{left:166.666667pt;}
.x80_c00123{left:167.733333pt;}
.xe7_c00123{left:168.666667pt;}
.x44_c00123{left:170.266667pt;}
.x8b_c00123{left:172.666667pt;}
.xc8_c00123{left:174.000000pt;}
.x101_c00123{left:177.733333pt;}
.x26_c00123{left:179.200000pt;}
.xad_c00123{left:180.133333pt;}
.x8_c00123{left:182.400000pt;}
.x81_c00123{left:185.066667pt;}
.xe8_c00123{left:186.000000pt;}
.x51_c00123{left:187.066667pt;}
.xdf_c00123{left:189.333333pt;}
.x37_c00123{left:191.200000pt;}
.x111_c00123{left:192.800000pt;}
.x68_c00123{left:195.466667pt;}
.x10a_c00123{left:197.466667pt;}
.x1a_c00123{left:200.266667pt;}
.xed_c00123{left:202.266667pt;}
.x9f_c00123{left:205.866667pt;}
.xe9_c00123{left:206.800000pt;}
.xf0_c00123{left:207.733333pt;}
.xfe_c00123{left:208.933333pt;}
.x95_c00123{left:210.000000pt;}
.xa9_c00123{left:212.133333pt;}
.x82_c00123{left:214.133333pt;}
.x27_c00123{left:215.333333pt;}
.x76_c00123{left:216.533333pt;}
.xa5_c00123{left:222.266667pt;}
.x1b_c00123{left:224.000000pt;}
.x112_c00123{left:225.733333pt;}
.x8c_c00123{left:226.800000pt;}
.xcf_c00123{left:228.133333pt;}
.xd2_c00123{left:231.066667pt;}
.xbf_c00123{left:232.266667pt;}
.x45_c00123{left:234.533333pt;}
.x38_c00123{left:235.733333pt;}
.xb7_c00123{left:237.600000pt;}
.x5b_c00123{left:238.533333pt;}
.x127_c00123{left:240.266667pt;}
.x28_c00123{left:241.200000pt;}
.x96_c00123{left:243.866667pt;}
.x9_c00123{left:246.400000pt;}
.xf1_c00123{left:248.666667pt;}
.x83_c00123{left:250.000000pt;}
.x69_c00123{left:253.333333pt;}
.xb8_c00123{left:255.200000pt;}
.x117_c00123{left:257.600000pt;}
.x5c_c00123{left:259.066667pt;}
.x8d_c00123{left:260.133333pt;}
.x97_c00123{left:262.400000pt;}
.xea_c00123{left:265.600000pt;}
.xdd_c00123{left:266.666667pt;}
.xf2_c00123{left:268.800000pt;}
.xd3_c00123{left:269.733333pt;}
.x52_c00123{left:272.533333pt;}
.x121_c00123{left:274.933333pt;}
.x77_c00123{left:276.400000pt;}
.x29_c00123{left:278.000000pt;}
.xb9_c00123{left:280.133333pt;}
.x46_c00123{left:282.800000pt;}
.xa_c00123{left:284.533333pt;}
.x5d_c00123{left:286.266667pt;}
.x129_c00123{left:287.866667pt;}
.xc9_c00123{left:288.800000pt;}
.xae_c00123{left:290.133333pt;}
.x98_c00123{left:294.666667pt;}
.xf3_c00123{left:296.000000pt;}
.x12f_c00123{left:299.066667pt;}
.x39_c00123{left:300.000000pt;}
.xe2_c00123{left:300.933333pt;}
.x8e_c00123{left:302.000000pt;}
.x78_c00123{left:303.600000pt;}
.x118_c00123{left:304.933333pt;}
.xd4_c00123{left:308.133333pt;}
.xee_c00123{left:309.200000pt;}
.x84_c00123{left:311.066667pt;}
.x113_c00123{left:313.200000pt;}
.xb_c00123{left:314.266667pt;}
.x6a_c00123{left:316.666667pt;}
.x2a_c00123{left:318.000000pt;}
.x122_c00123{left:319.066667pt;}
.xf8_c00123{left:320.266667pt;}
.x5e_c00123{left:321.733333pt;}
.x1c_c00123{left:325.066667pt;}
.x47_c00123{left:326.666667pt;}
.x8f_c00123{left:328.533333pt;}
.x11b_c00123{left:330.533333pt;}
.xd5_c00123{left:331.866667pt;}
.x1_c00123{left:334.133333pt;}
.x6b_c00123{left:335.600000pt;}
.x53_c00123{left:339.333333pt;}
.x99_c00123{left:340.400000pt;}
.xaf_c00123{left:342.000000pt;}
.x1d_c00123{left:343.600000pt;}
.x114_c00123{left:346.133333pt;}
.x123_c00123{left:348.533333pt;}
.x79_c00123{left:350.000000pt;}
.x102_c00123{left:351.733333pt;}
.x6c_c00123{left:352.933333pt;}
.xba_c00123{left:354.400000pt;}
.x48_c00123{left:358.000000pt;}
.xd0_c00123{left:360.000000pt;}
.x85_c00123{left:363.866667pt;}
.xff_c00123{left:365.733333pt;}
.xb0_c00123{left:366.933333pt;}
.x2_c00123{left:368.000000pt;}
.x1e_c00123{left:368.933333pt;}
.x10b_c00123{left:371.200000pt;}
.xbb_c00123{left:372.933333pt;}
.x119_c00123{left:375.600000pt;}
.x6d_c00123{left:378.266667pt;}
.xc_c00123{left:380.133333pt;}
.x90_c00123{left:381.600000pt;}
.x3a_c00123{left:386.400000pt;}
.x2b_c00123{left:387.466667pt;}
.xeb_c00123{left:389.466667pt;}
.xd6_c00123{left:391.600000pt;}
.x100_c00123{left:392.933333pt;}
.xd_c00123{left:394.533333pt;}
.x86_c00123{left:396.800000pt;}
.xa0_c00123{left:397.866667pt;}
.xc0_c00123{left:399.333333pt;}
.x91_c00123{left:402.400000pt;}
.x49_c00123{left:403.733333pt;}
.x1f_c00123{left:404.800000pt;}
.x9a_c00123{left:406.266667pt;}
.x5f_c00123{left:407.866667pt;}
.xc1_c00123{left:410.266667pt;}
.x12a_c00123{left:411.466667pt;}
.xe0_c00123{left:413.333333pt;}
.x3_c00123{left:415.733333pt;}
.x54_c00123{left:417.066667pt;}
.xca_c00123{left:418.133333pt;}
.x9b_c00123{left:419.066667pt;}
.xe_c00123{left:424.000000pt;}
.x4a_c00123{left:425.466667pt;}
.x6e_c00123{left:427.466667pt;}
.x3b_c00123{left:429.333333pt;}
.xd7_c00123{left:433.200000pt;}
.xbc_c00123{left:434.666667pt;}
.x4_c00123{left:436.266667pt;}
.xc2_c00123{left:438.400000pt;}
.xf6_c00123{left:439.333333pt;}
.xec_c00123{left:441.600000pt;}
.xef_c00123{left:446.266667pt;}
.x20_c00123{left:448.933333pt;}
.x6f_c00123{left:449.866667pt;}
.xf_c00123{left:451.200000pt;}
.x132_c00123{left:452.133333pt;}
.x3c_c00123{left:453.600000pt;}
.x9c_c00123{left:455.200000pt;}
.xd8_c00123{left:458.800000pt;}
.x103_c00123{left:459.866667pt;}
.xaa_c00123{left:460.800000pt;}
.x21_c00123{left:462.400000pt;}
.xf9_c00123{left:464.000000pt;}
.x2c_c00123{left:464.933333pt;}
.xb1_c00123{left:465.866667pt;}
.x7a_c00123{left:467.733333pt;}
.xa1_c00123{left:468.933333pt;}
.xbd_c00123{left:470.800000pt;}
.x60_c00123{left:472.800000pt;}
.x10c_c00123{left:475.600000pt;}
.xc3_c00123{left:477.733333pt;}
.x124_c00123{left:478.666667pt;}
.xcb_c00123{left:479.600000pt;}
.x55_c00123{left:481.066667pt;}
.x2d_c00123{left:484.133333pt;}
.xe3_c00123{left:485.200000pt;}
.x10_c00123{left:487.066667pt;}
.x70_c00123{left:488.533333pt;}
.x3d_c00123{left:489.466667pt;}
.xd9_c00123{left:490.800000pt;}
.xa6_c00123{left:494.933333pt;}
.x2e_c00123{left:497.600000pt;}
.x11f_c00123{left:498.533333pt;}
.xe1_c00123{left:500.400000pt;}
.x61_c00123{left:502.533333pt;}
.x7b_c00123{left:503.866667pt;}
.xa2_c00123{left:504.800000pt;}
.x104_c00123{left:506.266667pt;}
.x11_c00123{left:507.200000pt;}
.x9d_c00123{left:508.933333pt;}
.xf4_c00123{left:510.533333pt;}
.x3e_c00123{left:512.133333pt;}
.x22_c00123{left:513.600000pt;}
.x87_c00123{left:515.733333pt;}
.x4b_c00123{left:518.266667pt;}
.xab_c00123{left:521.866667pt;}
.x105_c00123{left:523.866667pt;}
.x92_c00123{left:525.200000pt;}
.xde_c00123{left:526.666667pt;}
.xc4_c00123{left:527.600000pt;}
.xa7_c00123{left:528.533333pt;}
.xe4_c00123{left:530.933333pt;}
.x12_c00123{left:532.133333pt;}
.x125_c00123{left:533.333333pt;}
.x56_c00123{left:535.466667pt;}
.xfa_c00123{left:537.333333pt;}
.x4c_c00123{left:538.400000pt;}
.x130_c00123{left:539.600000pt;}
.x2f_c00123{left:542.400000pt;}
.xb2_c00123{left:543.600000pt;}
.x88_c00123{left:546.133333pt;}
.x62_c00123{left:547.066667pt;}
.x9e_c00123{left:549.866667pt;}
.x106_c00123{left:551.066667pt;}
.xda_c00123{left:552.800000pt;}
.x10d_c00123{left:556.266667pt;}
.x71_c00123{left:558.000000pt;}
.xa3_c00123{left:559.200000pt;}
.x12b_c00123{left:560.933333pt;}
.x57_c00123{left:562.400000pt;}
.x63_c00123{left:564.933333pt;}
.x13_c00123{left:567.066667pt;}
.xc5_c00123{left:568.533333pt;}
.x30_c00123{left:570.533333pt;}
.x3f_c00123{left:572.933333pt;}
.xe5_c00123{left:573.866667pt;}
.xf7_c00123{left:575.466667pt;}
.x4d_c00123{left:577.066667pt;}
.xb3_c00123{left:578.800000pt;}
.x107_c00123{left:581.466667pt;}
.x7c_c00123{left:582.666667pt;}
.x31_c00123{left:583.600000pt;}
.x115_c00123{left:586.533333pt;}
.x14_c00123{left:587.866667pt;}
.xc6_c00123{left:589.333333pt;}
.x10e_c00123{left:590.533333pt;}
.x40_c00123{left:593.066667pt;}
.x120_c00123{left:595.866667pt;}
.xa4_c00123{left:600.133333pt;}
.x108_c00123{left:601.333333pt;}
.xcc_c00123{left:602.800000pt;}
.xdb_c00123{left:604.000000pt;}
.x23_c00123{left:605.466667pt;}
.x64_c00123{left:607.866667pt;}
.x58_c00123{left:609.466667pt;}
.x32_c00123{left:611.066667pt;}
.xb4_c00123{left:613.066667pt;}
.x10f_c00123{left:614.266667pt;}
.x72_c00123{left:616.533333pt;}
.x15_c00123{left:618.000000pt;}
.xfb_c00123{left:619.866667pt;}
.x41_c00123{left:624.133333pt;}
.xd1_c00123{left:627.066667pt;}
.x33_c00123{left:628.000000pt;}
.x93_c00123{left:630.800000pt;}
.x7d_c00123{left:633.200000pt;}
.x73_c00123{left:634.400000pt;}
.xa8_c00123{left:636.000000pt;}
.x59_c00123{left:637.333333pt;}
.xe6_c00123{left:639.733333pt;}
.x11c_c00123{left:640.933333pt;}
.xac_c00123{left:642.800000pt;}
.x24_c00123{left:645.466667pt;}
.x12c_c00123{left:647.466667pt;}
.x89_c00123{left:648.533333pt;}
.x16_c00123{left:650.266667pt;}
.x109_c00123{left:651.866667pt;}
.xcd_c00123{left:655.600000pt;}
.x11d_c00123{left:657.200000pt;}
.x34_c00123{left:658.400000pt;}
.x7e_c00123{left:661.333333pt;}
.x4e_c00123{left:663.200000pt;}
.x74_c00123{left:664.533333pt;}
.x110_c00123{left:666.400000pt;}
.xb5_c00123{left:667.733333pt;}
.x17_c00123{left:668.800000pt;}
.x25_c00123{left:671.066667pt;}
.x65_c00123{left:672.533333pt;}
.x42_c00123{left:675.600000pt;}
.x116_c00123{left:677.733333pt;}
.xf5_c00123{left:679.333333pt;}
.x4f_c00123{left:683.733333pt;}
.x5_c00123{left:685.866667pt;}
.x126_c00123{left:688.533333pt;}
.x12d_c00123{left:690.400000pt;}
.x35_c00123{left:691.333333pt;}
.x131_c00123{left:692.533333pt;}
.xce_c00123{left:699.066667pt;}
}





/* 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_c00124 {
    display:none;
  }
  .loading-indicator_c00124.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00124 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_c00124 { 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_c00124" -> "#page-container .classname_c00124")
 */
.pf_c00124 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00124 { /* 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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00124 { /* 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_c00124 { /* 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_c00124 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00124 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00124 {overflow:visible;}
  }
}
.c_c00124 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00124 { /* 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_c00124:after { /* webkit #35443 */
  content: '';
}
.t_c00124:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00124 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 */
}
.__c00124 { /* 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_c00124 { /* info for Javascript */
  display:none;
}
.l_c00124 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00124 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00124 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00124: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_c00124 {
    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_c00124.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00124.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_c00124 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00124{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00124;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.000000;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;}
.m93_c00124{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m35_c00124{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m57_c00124{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00124{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00124{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m80_c00124{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m89_c00124{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m25_c00124{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00124{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00124{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m75_c00124{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00124{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00124{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00124{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00124{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00124{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00124{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m85_c00124{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00124{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m77_c00124{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m74_c00124{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00124{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00124{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11_c00124{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00124{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m26_c00124{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00124{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00124{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m54_c00124{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m69_c00124{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00124{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00124{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00124{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m99_c00124{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m73_c00124{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00124{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00124{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00124{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00124{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00124{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00124{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00124{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m96_c00124{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m97_c00124{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00124{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00124{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m36_c00124{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m84_c00124{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00124{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m82_c00124{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m45_c00124{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00124{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m76_c00124{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00124{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m71_c00124{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m34_c00124{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00124{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00124{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m86_c00124{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m61_c00124{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m87_c00124{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00124{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00124{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m81_c00124{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00124{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m78_c00124{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00124{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00124{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m79_c00124{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m60_c00124{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7_c00124{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00124{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m90_c00124{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m98_c00124{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00124{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00124{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m24_c00124{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00124{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00124{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m37_c00124{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00124{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m83_c00124{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m70_c00124{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m67_c00124{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00124{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);}
.m94_c00124{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m59_c00124{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m30_c00124{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m92_c00124{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00124{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00124{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00124{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00124{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m62_c00124{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m68_c00124{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00124{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00124{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m0_c00124{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m95_c00124{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3_c00124{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m88_c00124{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m52_c00124{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00124{vertical-align:0.000000px;}
.ls0_c00124{letter-spacing:0.000000px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{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__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00124{word-spacing:0.000000px;}
.ws4_c00124{word-spacing:1.951220px;}
.ws2_c00124{word-spacing:4.861111px;}
.ws6_c00124{word-spacing:6.117137px;}
.ws7_c00124{word-spacing:6.786114px;}
.ws5_c00124{word-spacing:8.055556px;}
.ws8_c00124{word-spacing:8.571429px;}
.ws1_c00124{word-spacing:9.910714px;}
.ws0_c00124{word-spacing:17.794118px;}
.ws3_c00124{word-spacing:20.000000px;}
.fc0_c00124{color:transparent;}
.fs0_c00124{font-size:60.000000px;}
.y0_c00124{bottom:0.000000px;}
.y2c_c00124{bottom:146.550000px;}
.y2b_c00124{bottom:187.350000px;}
.y2a_c00124{bottom:207.450000px;}
.y29_c00124{bottom:227.250000px;}
.y28_c00124{bottom:247.350000px;}
.y27_c00124{bottom:267.600000px;}
.y26_c00124{bottom:287.400000px;}
.y25_c00124{bottom:307.500000px;}
.y24_c00124{bottom:327.300000px;}
.y23_c00124{bottom:347.100000px;}
.y22_c00124{bottom:367.200000px;}
.y21_c00124{bottom:387.000000px;}
.y20_c00124{bottom:407.100000px;}
.y1f_c00124{bottom:426.900000px;}
.y1e_c00124{bottom:447.000000px;}
.y1d_c00124{bottom:467.100000px;}
.y1c_c00124{bottom:486.900000px;}
.y1b_c00124{bottom:507.000000px;}
.y1a_c00124{bottom:527.100000px;}
.y19_c00124{bottom:546.900000px;}
.y18_c00124{bottom:566.700000px;}
.y17_c00124{bottom:586.200000px;}
.y16_c00124{bottom:606.300000px;}
.y15_c00124{bottom:626.100000px;}
.y14_c00124{bottom:646.200000px;}
.y13_c00124{bottom:666.300000px;}
.y12_c00124{bottom:686.100000px;}
.y11_c00124{bottom:706.200000px;}
.y10_c00124{bottom:726.300000px;}
.yf_c00124{bottom:746.100000px;}
.ye_c00124{bottom:766.200000px;}
.yd_c00124{bottom:786.300000px;}
.yc_c00124{bottom:806.100000px;}
.yb_c00124{bottom:825.900000px;}
.ya_c00124{bottom:846.000000px;}
.y9_c00124{bottom:866.100000px;}
.y8_c00124{bottom:886.200000px;}
.y7_c00124{bottom:906.000000px;}
.y6_c00124{bottom:926.100000px;}
.y5_c00124{bottom:946.200000px;}
.y4_c00124{bottom:966.000000px;}
.y3_c00124{bottom:985.800000px;}
.y2_c00124{bottom:1005.900000px;}
.y1_c00124{bottom:1044.000000px;}
.h2_c00124{height:60.000000px;}
.h1_c00124{height:1167.750000px;}
.h0_c00124{height:1167.839997px;}
.w1_c00124{width:920.250000px;}
.w0_c00124{width:920.519990px;}
.x0_c00124{left:0.000000px;}
.x9d_c00124{left:135.000000px;}
.x3_c00124{left:136.050000px;}
.x1_c00124{left:137.550000px;}
.x2c_c00124{left:153.300000px;}
.x4_c00124{left:156.150000px;}
.xf9_c00124{left:162.450000px;}
.x61_c00124{left:164.400000px;}
.x1e_c00124{left:165.900000px;}
.x120_c00124{left:167.400000px;}
.x55_c00124{left:169.050000px;}
.x11_c00124{left:170.250000px;}
.x116_c00124{left:171.300000px;}
.x125_c00124{left:172.800000px;}
.x91_c00124{left:175.500000px;}
.xa3_c00124{left:176.550000px;}
.x3c_c00124{left:179.250000px;}
.x121_c00124{left:180.300000px;}
.xc2_c00124{left:184.050000px;}
.xcd_c00124{left:185.250000px;}
.xf1_c00124{left:186.450000px;}
.x5_c00124{left:189.300000px;}
.x2d_c00124{left:194.400000px;}
.x10e_c00124{left:195.450000px;}
.xfa_c00124{left:198.750000px;}
.x1f_c00124{left:199.800000px;}
.xc3_c00124{left:203.850000px;}
.xfe_c00124{left:206.100000px;}
.xe9_c00124{left:208.050000px;}
.x56_c00124{left:209.400000px;}
.x6a_c00124{left:211.350000px;}
.x75_c00124{left:214.350000px;}
.x124_c00124{left:215.400000px;}
.x80_c00124{left:217.800000px;}
.x122_c00124{left:219.600000px;}
.x20_c00124{left:220.650000px;}
.x62_c00124{left:222.300000px;}
.x4a_c00124{left:224.550000px;}
.x92_c00124{left:227.400000px;}
.xdd_c00124{left:230.400000px;}
.x12_c00124{left:231.750000px;}
.xce_c00124{left:232.800000px;}
.x2e_c00124{left:234.750000px;}
.x6b_c00124{left:236.250000px;}
.xff_c00124{left:239.550000px;}
.x6_c00124{left:241.800000px;}
.x63_c00124{left:243.600000px;}
.xa4_c00124{left:245.700000px;}
.x11d_c00124{left:247.350000px;}
.x3d_c00124{left:252.750000px;}
.xac_c00124{left:255.750000px;}
.x76_c00124{left:258.300000px;}
.x4b_c00124{left:259.800000px;}
.x13_c00124{left:262.650000px;}
.x2f_c00124{left:265.050000px;}
.xf2_c00124{left:266.400000px;}
.x7_c00124{left:268.500000px;}
.x3e_c00124{left:270.450000px;}
.xde_c00124{left:272.550000px;}
.x6c_c00124{left:274.800000px;}
.x21_c00124{left:276.150000px;}
.x9e_c00124{left:277.950000px;}
.xe5_c00124{left:280.200000px;}
.xbb_c00124{left:281.250000px;}
.x30_c00124{left:282.300000px;}
.x93_c00124{left:285.000000px;}
.x10a_c00124{left:286.800000px;}
.xad_c00124{left:288.450000px;}
.x77_c00124{left:290.400000px;}
.x117_c00124{left:293.400000px;}
.xea_c00124{left:294.450000px;}
.xa5_c00124{left:296.400000px;}
.x4c_c00124{left:299.700000px;}
.x57_c00124{left:301.950000px;}
.xdf_c00124{left:304.200000px;}
.xcf_c00124{left:305.250000px;}
.xfb_c00124{left:307.800000px;}
.x6d_c00124{left:309.300000px;}
.x3f_c00124{left:310.350000px;}
.x11e_c00124{left:312.150000px;}
.x4d_c00124{left:313.350000px;}
.x114_c00124{left:314.850000px;}
.xda_c00124{left:316.050000px;}
.x14_c00124{left:317.400000px;}
.x81_c00124{left:320.100000px;}
.xe0_c00124{left:321.900000px;}
.x31_c00124{left:322.950000px;}
.x100_c00124{left:327.750000px;}
.x118_c00124{left:329.400000px;}
.x10f_c00124{left:330.750000px;}
.xa6_c00124{left:332.700000px;}
.xd0_c00124{left:333.750000px;}
.xb5_c00124{left:336.000000px;}
.x22_c00124{left:338.100000px;}
.x32_c00124{left:340.200000px;}
.x105_c00124{left:341.550000px;}
.x64_c00124{left:343.350000px;}
.x78_c00124{left:344.400000px;}
.x8_c00124{left:345.600000px;}
.x40_c00124{left:346.650000px;}
.xd5_c00124{left:348.150000px;}
.x15_c00124{left:354.900000px;}
.xb6_c00124{left:359.700000px;}
.x79_c00124{left:361.650000px;}
.xe1_c00124{left:363.600000px;}
.x33_c00124{left:365.400000px;}
.x10b_c00124{left:370.050000px;}
.x119_c00124{left:371.550000px;}
.x94_c00124{left:373.200000px;}
.xc7_c00124{left:374.250000px;}
.x16_c00124{left:375.450000px;}
.xe6_c00124{left:376.650000px;}
.xa7_c00124{left:378.450000px;}
.xae_c00124{left:379.500000px;}
.x8a_c00124{left:381.600000px;}
.xc4_c00124{left:382.950000px;}
.x123_c00124{left:384.150000px;}
.x4e_c00124{left:386.100000px;}
.x58_c00124{left:387.300000px;}
.xfc_c00124{left:388.800000px;}
.x23_c00124{left:390.000000px;}
.x129_c00124{left:391.350000px;}
.x41_c00124{left:393.450000px;}
.x82_c00124{left:395.700000px;}
.xeb_c00124{left:397.500000px;}
.x11a_c00124{left:401.400000px;}
.x9_c00124{left:402.900000px;}
.x106_c00124{left:406.350000px;}
.x11f_c00124{left:408.750000px;}
.x59_c00124{left:409.950000px;}
.x6e_c00124{left:411.000000px;}
.xd1_c00124{left:414.150000px;}
.xaf_c00124{left:415.500000px;}
.x2_c00124{left:416.850000px;}
.xec_c00124{left:418.050000px;}
.x17_c00124{left:419.700000px;}
.x95_c00124{left:421.050000px;}
.x24_c00124{left:422.700000px;}
.x115_c00124{left:423.900000px;}
.xf3_c00124{left:425.400000px;}
.x103_c00124{left:427.200000px;}
.x110_c00124{left:430.950000px;}
.xbc_c00124{left:433.200000px;}
.x12a_c00124{left:435.300000px;}
.xb7_c00124{left:439.650000px;}
.x65_c00124{left:441.300000px;}
.x9f_c00124{left:444.000000px;}
.x18_c00124{left:446.400000px;}
.x10c_c00124{left:449.250000px;}
.xb0_c00124{left:452.550000px;}
.xc5_c00124{left:454.350000px;}
.xf4_c00124{left:457.500000px;}
.x96_c00124{left:459.900000px;}
.x19_c00124{left:461.850000px;}
.xbd_c00124{left:464.100000px;}
.x7a_c00124{left:466.050000px;}
.x101_c00124{left:467.100000px;}
.x5a_c00124{left:469.350000px;}
.xa_c00124{left:471.000000px;}
.x34_c00124{left:473.400000px;}
.x66_c00124{left:476.250000px;}
.xdb_c00124{left:477.750000px;}
.x107_c00124{left:479.850000px;}
.x7b_c00124{left:481.950000px;}
.xd6_c00124{left:483.450000px;}
.xb1_c00124{left:485.700000px;}
.x83_c00124{left:489.600000px;}
.x25_c00124{left:492.450000px;}
.x97_c00124{left:495.600000px;}
.xa8_c00124{left:497.250000px;}
.xe2_c00124{left:499.800000px;}
.xed_c00124{left:500.850000px;}
.xf5_c00124{left:502.200000px;}
.xd7_c00124{left:504.300000px;}
.x7c_c00124{left:506.100000px;}
.x35_c00124{left:507.600000px;}
.x6f_c00124{left:508.950000px;}
.xc8_c00124{left:510.300000px;}
.x84_c00124{left:515.100000px;}
.x8b_c00124{left:518.100000px;}
.xd2_c00124{left:520.050000px;}
.x1a_c00124{left:521.250000px;}
.xb8_c00124{left:524.550000px;}
.xe3_c00124{left:528.300000px;}
.x4f_c00124{left:532.200000px;}
.x67_c00124{left:533.850000px;}
.xb2_c00124{left:537.150000px;}
.xe7_c00124{left:540.450000px;}
.x104_c00124{left:542.100000px;}
.x26_c00124{left:543.600000px;}
.x98_c00124{left:545.250000px;}
.xc9_c00124{left:546.600000px;}
.xa9_c00124{left:548.400000px;}
.x36_c00124{left:550.500000px;}
.x42_c00124{left:553.950000px;}
.xc6_c00124{left:555.450000px;}
.xbe_c00124{left:557.250000px;}
.xb_c00124{left:558.450000px;}
.x7d_c00124{left:560.400000px;}
.xd3_c00124{left:561.450000px;}
.x5b_c00124{left:562.500000px;}
.x27_c00124{left:564.150000px;}
.x99_c00124{left:566.850000px;}
.xf6_c00124{left:568.800000px;}
.x85_c00124{left:570.900000px;}
.x12b_c00124{left:573.150000px;}
.x7e_c00124{left:577.650000px;}
.x50_c00124{left:579.000000px;}
.x9a_c00124{left:580.500000px;}
.xe8_c00124{left:581.550000px;}
.x108_c00124{left:584.250000px;}
.x37_c00124{left:586.200000px;}
.xc_c00124{left:588.000000px;}
.xd8_c00124{left:589.350000px;}
.x70_c00124{left:591.300000px;}
.x43_c00124{left:593.250000px;}
.x51_c00124{left:594.900000px;}
.x9b_c00124{left:597.000000px;}
.xee_c00124{left:598.800000px;}
.x68_c00124{left:600.750000px;}
.x1b_c00124{left:604.350000px;}
.x5c_c00124{left:606.450000px;}
.xb3_c00124{left:608.100000px;}
.x44_c00124{left:611.550000px;}
.xd_c00124{left:613.950000px;}
.xb9_c00124{left:615.600000px;}
.x86_c00124{left:617.400000px;}
.xca_c00124{left:620.400000px;}
.x28_c00124{left:623.100000px;}
.x126_c00124{left:624.600000px;}
.x12c_c00124{left:626.100000px;}
.x8c_c00124{left:628.200000px;}
.x5d_c00124{left:630.900000px;}
.xa0_c00124{left:631.950000px;}
.xdc_c00124{left:633.300000px;}
.x69_c00124{left:634.950000px;}
.x45_c00124{left:638.850000px;}
.x71_c00124{left:640.200000px;}
.x10d_c00124{left:641.550000px;}
.x29_c00124{left:643.950000px;}
.x8d_c00124{left:647.700000px;}
.xe_c00124{left:649.650000px;}
.x12d_c00124{left:651.300000px;}
.x9c_c00124{left:654.600000px;}
.xcb_c00124{left:657.450000px;}
.x1c_c00124{left:659.100000px;}
.x5e_c00124{left:661.800000px;}
.xf7_c00124{left:664.200000px;}
.xef_c00124{left:667.200000px;}
.x46_c00124{left:670.200000px;}
.xbf_c00124{left:672.150000px;}
.x52_c00124{left:674.100000px;}
.x38_c00124{left:675.750000px;}
.x102_c00124{left:678.450000px;}
.x11b_c00124{left:679.650000px;}
.x109_c00124{left:681.150000px;}
.xba_c00124{left:682.500000px;}
.x127_c00124{left:684.300000px;}
.x8e_c00124{left:687.600000px;}
.x87_c00124{left:689.100000px;}
.x111_c00124{left:691.500000px;}
.x53_c00124{left:692.850000px;}
.xb4_c00124{left:695.850000px;}
.x11c_c00124{left:697.350000px;}
.x72_c00124{left:698.550000px;}
.x1d_c00124{left:701.550000px;}
.xc0_c00124{left:703.500000px;}
.x39_c00124{left:706.050000px;}
.x8f_c00124{left:708.450000px;}
.x88_c00124{left:710.400000px;}
.x47_c00124{left:715.950000px;}
.x2a_c00124{left:719.550000px;}
.xf_c00124{left:724.500000px;}
.x73_c00124{left:727.350000px;}
.x48_c00124{left:729.600000px;}
.x3a_c00124{left:731.550000px;}
.x54_c00124{left:733.950000px;}
.x2b_c00124{left:737.550000px;}
.xaa_c00124{left:738.900000px;}
.xd9_c00124{left:744.450000px;}
.xe4_c00124{left:745.950000px;}
.x128_c00124{left:747.300000px;}
.xa1_c00124{left:748.650000px;}
.x5f_c00124{left:750.450000px;}
.x10_c00124{left:751.800000px;}
.x74_c00124{left:753.300000px;}
.xcc_c00124{left:758.250000px;}
.x112_c00124{left:759.900000px;}
.xa2_c00124{left:762.300000px;}
.x7f_c00124{left:765.000000px;}
.x89_c00124{left:768.300000px;}
.xc1_c00124{left:769.800000px;}
.x3b_c00124{left:771.150000px;}
.xab_c00124{left:772.800000px;}
.xd4_c00124{left:774.750000px;}
.x90_c00124{left:776.100000px;}
.xf0_c00124{left:777.900000px;}
.x113_c00124{left:780.450000px;}
.x49_c00124{left:782.100000px;}
.xfd_c00124{left:783.450000px;}
.x60_c00124{left:787.500000px;}
.xf8_c00124{left:791.700000px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ws9_c00124{word-spacing:0.000000pt;}
.ws4_c00124{word-spacing:1.734417pt;}
.ws2_c00124{word-spacing:4.320988pt;}
.ws6_c00124{word-spacing:5.437455pt;}
.ws7_c00124{word-spacing:6.032102pt;}
.ws5_c00124{word-spacing:7.160494pt;}
.ws8_c00124{word-spacing:7.619048pt;}
.ws1_c00124{word-spacing:8.809524pt;}
.ws0_c00124{word-spacing:15.816993pt;}
.ws3_c00124{word-spacing:17.777778pt;}
.fs0_c00124{font-size:53.333333pt;}
.y0_c00124{bottom:0.000000pt;}
.y2c_c00124{bottom:130.266667pt;}
.y2b_c00124{bottom:166.533333pt;}
.y2a_c00124{bottom:184.400000pt;}
.y29_c00124{bottom:202.000000pt;}
.y28_c00124{bottom:219.866667pt;}
.y27_c00124{bottom:237.866667pt;}
.y26_c00124{bottom:255.466667pt;}
.y25_c00124{bottom:273.333333pt;}
.y24_c00124{bottom:290.933333pt;}
.y23_c00124{bottom:308.533333pt;}
.y22_c00124{bottom:326.400000pt;}
.y21_c00124{bottom:344.000000pt;}
.y20_c00124{bottom:361.866667pt;}
.y1f_c00124{bottom:379.466667pt;}
.y1e_c00124{bottom:397.333333pt;}
.y1d_c00124{bottom:415.200000pt;}
.y1c_c00124{bottom:432.800000pt;}
.y1b_c00124{bottom:450.666667pt;}
.y1a_c00124{bottom:468.533333pt;}
.y19_c00124{bottom:486.133333pt;}
.y18_c00124{bottom:503.733333pt;}
.y17_c00124{bottom:521.066667pt;}
.y16_c00124{bottom:538.933333pt;}
.y15_c00124{bottom:556.533333pt;}
.y14_c00124{bottom:574.400000pt;}
.y13_c00124{bottom:592.266667pt;}
.y12_c00124{bottom:609.866667pt;}
.y11_c00124{bottom:627.733333pt;}
.y10_c00124{bottom:645.600000pt;}
.yf_c00124{bottom:663.200000pt;}
.ye_c00124{bottom:681.066667pt;}
.yd_c00124{bottom:698.933333pt;}
.yc_c00124{bottom:716.533333pt;}
.yb_c00124{bottom:734.133333pt;}
.ya_c00124{bottom:752.000000pt;}
.y9_c00124{bottom:769.866667pt;}
.y8_c00124{bottom:787.733333pt;}
.y7_c00124{bottom:805.333333pt;}
.y6_c00124{bottom:823.200000pt;}
.y5_c00124{bottom:841.066667pt;}
.y4_c00124{bottom:858.666667pt;}
.y3_c00124{bottom:876.266667pt;}
.y2_c00124{bottom:894.133333pt;}
.y1_c00124{bottom:928.000000pt;}
.h2_c00124{height:53.333333pt;}
.h1_c00124{height:1038.000000pt;}
.h0_c00124{height:1038.079997pt;}
.w1_c00124{width:818.000000pt;}
.w0_c00124{width:818.239991pt;}
.x0_c00124{left:0.000000pt;}
.x9d_c00124{left:120.000000pt;}
.x3_c00124{left:120.933333pt;}
.x1_c00124{left:122.266667pt;}
.x2c_c00124{left:136.266667pt;}
.x4_c00124{left:138.800000pt;}
.xf9_c00124{left:144.400000pt;}
.x61_c00124{left:146.133333pt;}
.x1e_c00124{left:147.466667pt;}
.x120_c00124{left:148.800000pt;}
.x55_c00124{left:150.266667pt;}
.x11_c00124{left:151.333333pt;}
.x116_c00124{left:152.266667pt;}
.x125_c00124{left:153.600000pt;}
.x91_c00124{left:156.000000pt;}
.xa3_c00124{left:156.933333pt;}
.x3c_c00124{left:159.333333pt;}
.x121_c00124{left:160.266667pt;}
.xc2_c00124{left:163.600000pt;}
.xcd_c00124{left:164.666667pt;}
.xf1_c00124{left:165.733333pt;}
.x5_c00124{left:168.266667pt;}
.x2d_c00124{left:172.800000pt;}
.x10e_c00124{left:173.733333pt;}
.xfa_c00124{left:176.666667pt;}
.x1f_c00124{left:177.600000pt;}
.xc3_c00124{left:181.200000pt;}
.xfe_c00124{left:183.200000pt;}
.xe9_c00124{left:184.933333pt;}
.x56_c00124{left:186.133333pt;}
.x6a_c00124{left:187.866667pt;}
.x75_c00124{left:190.533333pt;}
.x124_c00124{left:191.466667pt;}
.x80_c00124{left:193.600000pt;}
.x122_c00124{left:195.200000pt;}
.x20_c00124{left:196.133333pt;}
.x62_c00124{left:197.600000pt;}
.x4a_c00124{left:199.600000pt;}
.x92_c00124{left:202.133333pt;}
.xdd_c00124{left:204.800000pt;}
.x12_c00124{left:206.000000pt;}
.xce_c00124{left:206.933333pt;}
.x2e_c00124{left:208.666667pt;}
.x6b_c00124{left:210.000000pt;}
.xff_c00124{left:212.933333pt;}
.x6_c00124{left:214.933333pt;}
.x63_c00124{left:216.533333pt;}
.xa4_c00124{left:218.400000pt;}
.x11d_c00124{left:219.866667pt;}
.x3d_c00124{left:224.666667pt;}
.xac_c00124{left:227.333333pt;}
.x76_c00124{left:229.600000pt;}
.x4b_c00124{left:230.933333pt;}
.x13_c00124{left:233.466667pt;}
.x2f_c00124{left:235.600000pt;}
.xf2_c00124{left:236.800000pt;}
.x7_c00124{left:238.666667pt;}
.x3e_c00124{left:240.400000pt;}
.xde_c00124{left:242.266667pt;}
.x6c_c00124{left:244.266667pt;}
.x21_c00124{left:245.466667pt;}
.x9e_c00124{left:247.066667pt;}
.xe5_c00124{left:249.066667pt;}
.xbb_c00124{left:250.000000pt;}
.x30_c00124{left:250.933333pt;}
.x93_c00124{left:253.333333pt;}
.x10a_c00124{left:254.933333pt;}
.xad_c00124{left:256.400000pt;}
.x77_c00124{left:258.133333pt;}
.x117_c00124{left:260.800000pt;}
.xea_c00124{left:261.733333pt;}
.xa5_c00124{left:263.466667pt;}
.x4c_c00124{left:266.400000pt;}
.x57_c00124{left:268.400000pt;}
.xdf_c00124{left:270.400000pt;}
.xcf_c00124{left:271.333333pt;}
.xfb_c00124{left:273.600000pt;}
.x6d_c00124{left:274.933333pt;}
.x3f_c00124{left:275.866667pt;}
.x11e_c00124{left:277.466667pt;}
.x4d_c00124{left:278.533333pt;}
.x114_c00124{left:279.866667pt;}
.xda_c00124{left:280.933333pt;}
.x14_c00124{left:282.133333pt;}
.x81_c00124{left:284.533333pt;}
.xe0_c00124{left:286.133333pt;}
.x31_c00124{left:287.066667pt;}
.x100_c00124{left:291.333333pt;}
.x118_c00124{left:292.800000pt;}
.x10f_c00124{left:294.000000pt;}
.xa6_c00124{left:295.733333pt;}
.xd0_c00124{left:296.666667pt;}
.xb5_c00124{left:298.666667pt;}
.x22_c00124{left:300.533333pt;}
.x32_c00124{left:302.400000pt;}
.x105_c00124{left:303.600000pt;}
.x64_c00124{left:305.200000pt;}
.x78_c00124{left:306.133333pt;}
.x8_c00124{left:307.200000pt;}
.x40_c00124{left:308.133333pt;}
.xd5_c00124{left:309.466667pt;}
.x15_c00124{left:315.466667pt;}
.xb6_c00124{left:319.733333pt;}
.x79_c00124{left:321.466667pt;}
.xe1_c00124{left:323.200000pt;}
.x33_c00124{left:324.800000pt;}
.x10b_c00124{left:328.933333pt;}
.x119_c00124{left:330.266667pt;}
.x94_c00124{left:331.733333pt;}
.xc7_c00124{left:332.666667pt;}
.x16_c00124{left:333.733333pt;}
.xe6_c00124{left:334.800000pt;}
.xa7_c00124{left:336.400000pt;}
.xae_c00124{left:337.333333pt;}
.x8a_c00124{left:339.200000pt;}
.xc4_c00124{left:340.400000pt;}
.x123_c00124{left:341.466667pt;}
.x4e_c00124{left:343.200000pt;}
.x58_c00124{left:344.266667pt;}
.xfc_c00124{left:345.600000pt;}
.x23_c00124{left:346.666667pt;}
.x129_c00124{left:347.866667pt;}
.x41_c00124{left:349.733333pt;}
.x82_c00124{left:351.733333pt;}
.xeb_c00124{left:353.333333pt;}
.x11a_c00124{left:356.800000pt;}
.x9_c00124{left:358.133333pt;}
.x106_c00124{left:361.200000pt;}
.x11f_c00124{left:363.333333pt;}
.x59_c00124{left:364.400000pt;}
.x6e_c00124{left:365.333333pt;}
.xd1_c00124{left:368.133333pt;}
.xaf_c00124{left:369.333333pt;}
.x2_c00124{left:370.533333pt;}
.xec_c00124{left:371.600000pt;}
.x17_c00124{left:373.066667pt;}
.x95_c00124{left:374.266667pt;}
.x24_c00124{left:375.733333pt;}
.x115_c00124{left:376.800000pt;}
.xf3_c00124{left:378.133333pt;}
.x103_c00124{left:379.733333pt;}
.x110_c00124{left:383.066667pt;}
.xbc_c00124{left:385.066667pt;}
.x12a_c00124{left:386.933333pt;}
.xb7_c00124{left:390.800000pt;}
.x65_c00124{left:392.266667pt;}
.x9f_c00124{left:394.666667pt;}
.x18_c00124{left:396.800000pt;}
.x10c_c00124{left:399.333333pt;}
.xb0_c00124{left:402.266667pt;}
.xc5_c00124{left:403.866667pt;}
.xf4_c00124{left:406.666667pt;}
.x96_c00124{left:408.800000pt;}
.x19_c00124{left:410.533333pt;}
.xbd_c00124{left:412.533333pt;}
.x7a_c00124{left:414.266667pt;}
.x101_c00124{left:415.200000pt;}
.x5a_c00124{left:417.200000pt;}
.xa_c00124{left:418.666667pt;}
.x34_c00124{left:420.800000pt;}
.x66_c00124{left:423.333333pt;}
.xdb_c00124{left:424.666667pt;}
.x107_c00124{left:426.533333pt;}
.x7b_c00124{left:428.400000pt;}
.xd6_c00124{left:429.733333pt;}
.xb1_c00124{left:431.733333pt;}
.x83_c00124{left:435.200000pt;}
.x25_c00124{left:437.733333pt;}
.x97_c00124{left:440.533333pt;}
.xa8_c00124{left:442.000000pt;}
.xe2_c00124{left:444.266667pt;}
.xed_c00124{left:445.200000pt;}
.xf5_c00124{left:446.400000pt;}
.xd7_c00124{left:448.266667pt;}
.x7c_c00124{left:449.866667pt;}
.x35_c00124{left:451.200000pt;}
.x6f_c00124{left:452.400000pt;}
.xc8_c00124{left:453.600000pt;}
.x84_c00124{left:457.866667pt;}
.x8b_c00124{left:460.533333pt;}
.xd2_c00124{left:462.266667pt;}
.x1a_c00124{left:463.333333pt;}
.xb8_c00124{left:466.266667pt;}
.xe3_c00124{left:469.600000pt;}
.x4f_c00124{left:473.066667pt;}
.x67_c00124{left:474.533333pt;}
.xb2_c00124{left:477.466667pt;}
.xe7_c00124{left:480.400000pt;}
.x104_c00124{left:481.866667pt;}
.x26_c00124{left:483.200000pt;}
.x98_c00124{left:484.666667pt;}
.xc9_c00124{left:485.866667pt;}
.xa9_c00124{left:487.466667pt;}
.x36_c00124{left:489.333333pt;}
.x42_c00124{left:492.400000pt;}
.xc6_c00124{left:493.733333pt;}
.xbe_c00124{left:495.333333pt;}
.xb_c00124{left:496.400000pt;}
.x7d_c00124{left:498.133333pt;}
.xd3_c00124{left:499.066667pt;}
.x5b_c00124{left:500.000000pt;}
.x27_c00124{left:501.466667pt;}
.x99_c00124{left:503.866667pt;}
.xf6_c00124{left:505.600000pt;}
.x85_c00124{left:507.466667pt;}
.x12b_c00124{left:509.466667pt;}
.x7e_c00124{left:513.466667pt;}
.x50_c00124{left:514.666667pt;}
.x9a_c00124{left:516.000000pt;}
.xe8_c00124{left:516.933333pt;}
.x108_c00124{left:519.333333pt;}
.x37_c00124{left:521.066667pt;}
.xc_c00124{left:522.666667pt;}
.xd8_c00124{left:523.866667pt;}
.x70_c00124{left:525.600000pt;}
.x43_c00124{left:527.333333pt;}
.x51_c00124{left:528.800000pt;}
.x9b_c00124{left:530.666667pt;}
.xee_c00124{left:532.266667pt;}
.x68_c00124{left:534.000000pt;}
.x1b_c00124{left:537.200000pt;}
.x5c_c00124{left:539.066667pt;}
.xb3_c00124{left:540.533333pt;}
.x44_c00124{left:543.600000pt;}
.xd_c00124{left:545.733333pt;}
.xb9_c00124{left:547.200000pt;}
.x86_c00124{left:548.800000pt;}
.xca_c00124{left:551.466667pt;}
.x28_c00124{left:553.866667pt;}
.x126_c00124{left:555.200000pt;}
.x12c_c00124{left:556.533333pt;}
.x8c_c00124{left:558.400000pt;}
.x5d_c00124{left:560.800000pt;}
.xa0_c00124{left:561.733333pt;}
.xdc_c00124{left:562.933333pt;}
.x69_c00124{left:564.400000pt;}
.x45_c00124{left:567.866667pt;}
.x71_c00124{left:569.066667pt;}
.x10d_c00124{left:570.266667pt;}
.x29_c00124{left:572.400000pt;}
.x8d_c00124{left:575.733333pt;}
.xe_c00124{left:577.466667pt;}
.x12d_c00124{left:578.933333pt;}
.x9c_c00124{left:581.866667pt;}
.xcb_c00124{left:584.400000pt;}
.x1c_c00124{left:585.866667pt;}
.x5e_c00124{left:588.266667pt;}
.xf7_c00124{left:590.400000pt;}
.xef_c00124{left:593.066667pt;}
.x46_c00124{left:595.733333pt;}
.xbf_c00124{left:597.466667pt;}
.x52_c00124{left:599.200000pt;}
.x38_c00124{left:600.666667pt;}
.x102_c00124{left:603.066667pt;}
.x11b_c00124{left:604.133333pt;}
.x109_c00124{left:605.466667pt;}
.xba_c00124{left:606.666667pt;}
.x127_c00124{left:608.266667pt;}
.x8e_c00124{left:611.200000pt;}
.x87_c00124{left:612.533333pt;}
.x111_c00124{left:614.666667pt;}
.x53_c00124{left:615.866667pt;}
.xb4_c00124{left:618.533333pt;}
.x11c_c00124{left:619.866667pt;}
.x72_c00124{left:620.933333pt;}
.x1d_c00124{left:623.600000pt;}
.xc0_c00124{left:625.333333pt;}
.x39_c00124{left:627.600000pt;}
.x8f_c00124{left:629.733333pt;}
.x88_c00124{left:631.466667pt;}
.x47_c00124{left:636.400000pt;}
.x2a_c00124{left:639.600000pt;}
.xf_c00124{left:644.000000pt;}
.x73_c00124{left:646.533333pt;}
.x48_c00124{left:648.533333pt;}
.x3a_c00124{left:650.266667pt;}
.x54_c00124{left:652.400000pt;}
.x2b_c00124{left:655.600000pt;}
.xaa_c00124{left:656.800000pt;}
.xd9_c00124{left:661.733333pt;}
.xe4_c00124{left:663.066667pt;}
.x128_c00124{left:664.266667pt;}
.xa1_c00124{left:665.466667pt;}
.x5f_c00124{left:667.066667pt;}
.x10_c00124{left:668.266667pt;}
.x74_c00124{left:669.600000pt;}
.xcc_c00124{left:674.000000pt;}
.x112_c00124{left:675.466667pt;}
.xa2_c00124{left:677.600000pt;}
.x7f_c00124{left:680.000000pt;}
.x89_c00124{left:682.933333pt;}
.xc1_c00124{left:684.266667pt;}
.x3b_c00124{left:685.466667pt;}
.xab_c00124{left:686.933333pt;}
.xd4_c00124{left:688.666667pt;}
.x90_c00124{left:689.866667pt;}
.xf0_c00124{left:691.466667pt;}
.x113_c00124{left:693.733333pt;}
.x49_c00124{left:695.200000pt;}
.xfd_c00124{left:696.400000pt;}
.x60_c00124{left:700.000000pt;}
.xf8_c00124{left:703.733333pt;}
}





/* 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_c00125 {
    display:none;
  }
  .loading-indicator_c00125.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00125 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_c00125 { 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_c00125" -> "#page-container .classname_c00125")
 */
.pf_c00125 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00125 { /* 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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00125 { /* 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_c00125 { /* 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_c00125 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00125 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00125 {overflow:visible;}
  }
}
.c_c00125 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00125 { /* 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_c00125:after { /* webkit #35443 */
  content: '';
}
.t_c00125:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00125 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 */
}
.__c00125 { /* 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_c00125 { /* info for Javascript */
  display:none;
}
.l_c00125 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00125 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00125 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00125: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_c00125 {
    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_c00125.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00125.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_c00125 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00125{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00125;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.000000;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;}
.m37_c00125{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00125{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00125{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00125{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00125{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m68_c00125{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m14_c00125{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m88_c00125{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00125{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m48_c00125{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00125{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00125{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.maf_c00125{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m45_c00125{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00125{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00125{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m58_c00125{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00125{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00125{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00125{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m95_c00125{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00125{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m82_c00125{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m69_c00125{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mae_c00125{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m98_c00125{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m89_c00125{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00125{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00125{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00125{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00125{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m55_c00125{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00125{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m86_c00125{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m72_c00125{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00125{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m35_c00125{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mad_c00125{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m30_c00125{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00125{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00125{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00125{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m76_c00125{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00125{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me_c00125{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m96_c00125{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00125{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00125{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00125{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00125{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00125{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma_c00125{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m99_c00125{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m91_c00125{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m60_c00125{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m31_c00125{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mab_c00125{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00125{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m75_c00125{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00125{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00125{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m80_c00125{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m79_c00125{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00125{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m67_c00125{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m53_c00125{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m56_c00125{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m90_c00125{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00125{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00125{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00125{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m28_c00125{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m33_c00125{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00125{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00125{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m34_c00125{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00125{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00125{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m65_c00125{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);}
.m51_c00125{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00125{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00125{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00125{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m43_c00125{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m97_c00125{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00125{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00125{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00125{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m57_c00125{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m24_c00125{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00125{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m22_c00125{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00125{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00125{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00125{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m93_c00125{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00125{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m13_c00125{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m83_c00125{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00125{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m66_c00125{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mac_c00125{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00125{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00125{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c00125{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m78_c00125{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m61_c00125{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00125{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m85_c00125{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m81_c00125{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00125{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00125{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00125{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m54_c00125{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m23_c00125{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00125{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m59_c00125{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m62_c00125{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.maa_c00125{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00125{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m36_c00125{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m44_c00125{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00125{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00125{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m73_c00125{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m92_c00125{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m74_c00125{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m63_c00125{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m64_c00125{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00125{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m71_c00125{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m46_c00125{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m38_c00125{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1_c00125{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00125{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00125{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00125{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00125{vertical-align:0.000000px;}
.ls0_c00125{letter-spacing:0.000000px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{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__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:-5.648547px;}
.ws6_c00125{word-spacing:-2.571429px;}
.ws9_c00125{word-spacing:0.000000px;}
.ws5_c00125{word-spacing:2.001172px;}
.ws1_c00125{word-spacing:2.962822px;}
.ws4_c00125{word-spacing:7.960486px;}
.ws2_c00125{word-spacing:8.183021px;}
.ws3_c00125{word-spacing:12.886439px;}
.ws8_c00125{word-spacing:20.824697px;}
.ws7_c00125{word-spacing:72.826495px;}
.fc0_c00125{color:transparent;}
.fs0_c00125{font-size:54.000000px;}
.y0_c00125{bottom:0.000000px;}
.y2c_c00125{bottom:149.400000px;}
.y2b_c00125{bottom:190.050000px;}
.y2a_c00125{bottom:209.850000px;}
.y29_c00125{bottom:229.950000px;}
.y28_c00125{bottom:249.450000px;}
.y27_c00125{bottom:268.950000px;}
.y26_c00125{bottom:289.800000px;}
.y25_c00125{bottom:309.900000px;}
.y24_c00125{bottom:329.700000px;}
.y23_c00125{bottom:349.500000px;}
.y22_c00125{bottom:369.300000px;}
.y21_c00125{bottom:389.100000px;}
.y20_c00125{bottom:408.900000px;}
.y1f_c00125{bottom:428.700000px;}
.y1e_c00125{bottom:448.650000px;}
.y1d_c00125{bottom:468.750000px;}
.y1c_c00125{bottom:488.550000px;}
.y1b_c00125{bottom:508.350000px;}
.y1a_c00125{bottom:529.200000px;}
.y19_c00125{bottom:549.300000px;}
.y18_c00125{bottom:569.400000px;}
.y17_c00125{bottom:589.500000px;}
.y16_c00125{bottom:609.300000px;}
.y15_c00125{bottom:629.400000px;}
.y14_c00125{bottom:649.200000px;}
.y13_c00125{bottom:669.300000px;}
.y12_c00125{bottom:689.400000px;}
.y11_c00125{bottom:709.200000px;}
.y10_c00125{bottom:729.300000px;}
.yf_c00125{bottom:748.800000px;}
.ye_c00125{bottom:769.350000px;}
.yd_c00125{bottom:789.150000px;}
.yc_c00125{bottom:809.250000px;}
.yb_c00125{bottom:829.350000px;}
.ya_c00125{bottom:849.150000px;}
.y9_c00125{bottom:869.250000px;}
.y8_c00125{bottom:889.350000px;}
.y7_c00125{bottom:909.150000px;}
.y6_c00125{bottom:928.950000px;}
.y5_c00125{bottom:949.050000px;}
.y4_c00125{bottom:968.850000px;}
.y3_c00125{bottom:988.950000px;}
.y2_c00125{bottom:1008.750000px;}
.y1_c00125{bottom:1047.600000px;}
.h2_c00125{height:54.000000px;}
.h1_c00125{height:1167.750000px;}
.h0_c00125{height:1167.839997px;}
.w1_c00125{width:920.250000px;}
.w0_c00125{width:920.519990px;}
.x0_c00125{left:0.000000px;}
.x132_c00125{left:115.050000px;}
.x120_c00125{left:116.250000px;}
.x108_c00125{left:117.450000px;}
.x80_c00125{left:118.500000px;}
.x56_c00125{left:120.300000px;}
.xa_c00125{left:121.350000px;}
.xc7_c00125{left:137.100000px;}
.x10f_c00125{left:143.400000px;}
.x75_c00125{left:144.900000px;}
.x133_c00125{left:146.850000px;}
.xf1_c00125{left:148.350000px;}
.x92_c00125{left:150.450000px;}
.x4b_c00125{left:152.100000px;}
.xb9_c00125{left:153.600000px;}
.xc1_c00125{left:156.000000px;}
.xa6_c00125{left:160.200000px;}
.xc8_c00125{left:164.850000px;}
.x13e_c00125{left:167.550000px;}
.x117_c00125{left:169.800000px;}
.x126_c00125{left:175.050000px;}
.x63_c00125{left:176.100000px;}
.x81_c00125{left:178.650000px;}
.x19_c00125{left:181.500000px;}
.x13a_c00125{left:182.700000px;}
.x33_c00125{left:183.900000px;}
.x28_c00125{left:186.150000px;}
.xba_c00125{left:187.800000px;}
.x6d_c00125{left:188.850000px;}
.x9c_c00125{left:190.350000px;}
.x57_c00125{left:192.600000px;}
.x3d_c00125{left:194.100000px;}
.xfa_c00125{left:195.450000px;}
.x93_c00125{left:197.550000px;}
.x134_c00125{left:198.750000px;}
.xe3_c00125{left:200.100000px;}
.xc9_c00125{left:201.150000px;}
.xb_c00125{left:202.350000px;}
.x6e_c00125{left:206.100000px;}
.x64_c00125{left:207.450000px;}
.x8c_c00125{left:211.350000px;}
.x1a_c00125{left:212.400000px;}
.x137_c00125{left:214.950000px;}
.x58_c00125{left:216.000000px;}
.x29_c00125{left:218.550000px;}
.xf8_c00125{left:222.450000px;}
.x6f_c00125{left:224.100000px;}
.x65_c00125{left:225.750000px;}
.xad_c00125{left:227.250000px;}
.xea_c00125{left:228.300000px;}
.xa7_c00125{left:229.650000px;}
.x94_c00125{left:231.000000px;}
.x1b_c00125{left:232.200000px;}
.x8d_c00125{left:234.000000px;}
.x11c_c00125{left:237.300000px;}
.x34_c00125{left:238.650000px;}
.xfb_c00125{left:241.200000px;}
.x82_c00125{left:242.400000px;}
.x13b_c00125{left:243.600000px;}
.x59_c00125{left:245.100000px;}
.x2a_c00125{left:247.050000px;}
.xca_c00125{left:249.000000px;}
.x110_c00125{left:252.150000px;}
.x70_c00125{left:255.000000px;}
.x76_c00125{left:257.700000px;}
.x3e_c00125{left:258.900000px;}
.xd3_c00125{left:260.700000px;}
.xeb_c00125{left:264.300000px;}
.xae_c00125{left:265.800000px;}
.xc_c00125{left:267.150000px;}
.x10b_c00125{left:268.650000px;}
.x11d_c00125{left:270.450000px;}
.xb6_c00125{left:273.150000px;}
.x1c_c00125{left:275.400000px;}
.xe4_c00125{left:277.800000px;}
.x1_c00125{left:280.500000px;}
.x66_c00125{left:281.850000px;}
.xa8_c00125{left:283.950000px;}
.xd_c00125{left:285.150000px;}
.x3f_c00125{left:287.700000px;}
.x5a_c00125{left:290.100000px;}
.x127_c00125{left:295.350000px;}
.xdb_c00125{left:297.600000px;}
.x9d_c00125{left:300.150000px;}
.xbb_c00125{left:302.400000px;}
.x8e_c00125{left:304.500000px;}
.x35_c00125{left:305.550000px;}
.x106_c00125{left:307.500000px;}
.xf2_c00125{left:308.550000px;}
.xe_c00125{left:310.050000px;}
.x77_c00125{left:312.450000px;}
.x138_c00125{left:315.450000px;}
.xf9_c00125{left:317.850000px;}
.xaf_c00125{left:319.500000px;}
.x4c_c00125{left:323.100000px;}
.x2_c00125{left:324.750000px;}
.xe5_c00125{left:326.100000px;}
.x12b_c00125{left:327.150000px;}
.xcb_c00125{left:328.500000px;}
.x40_c00125{left:329.850000px;}
.x4d_c00125{left:334.200000px;}
.x9e_c00125{left:336.450000px;}
.xbc_c00125{left:338.100000px;}
.x1d_c00125{left:340.950000px;}
.x36_c00125{left:343.350000px;}
.xfc_c00125{left:345.000000px;}
.x95_c00125{left:346.650000px;}
.xdc_c00125{left:350.100000px;}
.x67_c00125{left:352.350000px;}
.x12c_c00125{left:354.900000px;}
.x3_c00125{left:359.250000px;}
.x5b_c00125{left:360.300000px;}
.x1e_c00125{left:361.500000px;}
.xec_c00125{left:363.300000px;}
.xcc_c00125{left:364.800000px;}
.xf_c00125{left:365.850000px;}
.xb0_c00125{left:367.350000px;}
.x9f_c00125{left:369.600000px;}
.xfd_c00125{left:372.300000px;}
.x71_c00125{left:376.650000px;}
.x83_c00125{left:378.150000px;}
.x5c_c00125{left:380.400000px;}
.x121_c00125{left:381.600000px;}
.x2b_c00125{left:383.100000px;}
.x111_c00125{left:384.600000px;}
.x78_c00125{left:388.350000px;}
.x41_c00125{left:390.000000px;}
.x8f_c00125{left:391.950000px;}
.xd4_c00125{left:393.150000px;}
.xb7_c00125{left:394.500000px;}
.x4e_c00125{left:395.700000px;}
.x109_c00125{left:397.350000px;}
.xcd_c00125{left:401.850000px;}
.x112_c00125{left:402.900000px;}
.x2c_c00125{left:405.000000px;}
.x122_c00125{left:406.800000px;}
.x12d_c00125{left:407.850000px;}
.x84_c00125{left:409.050000px;}
.x68_c00125{left:417.150000px;}
.x10_c00125{left:420.150000px;}
.xa0_c00125{left:421.800000px;}
.xdd_c00125{left:422.850000px;}
.xa9_c00125{left:424.350000px;}
.xf3_c00125{left:426.150000px;}
.x113_c00125{left:428.100000px;}
.x4_c00125{left:429.150000px;}
.x37_c00125{left:431.850000px;}
.xb1_c00125{left:435.750000px;}
.x4f_c00125{left:438.150000px;}
.x1f_c00125{left:439.200000px;}
.xe6_c00125{left:440.250000px;}
.xfe_c00125{left:441.750000px;}
.x42_c00125{left:443.250000px;}
.xa1_c00125{left:444.900000px;}
.xed_c00125{left:447.150000px;}
.xff_c00125{left:448.950000px;}
.xaa_c00125{left:451.050000px;}
.x5_c00125{left:452.250000px;}
.x96_c00125{left:453.900000px;}
.x85_c00125{left:455.550000px;}
.x11_c00125{left:456.900000px;}
.xbd_c00125{left:457.950000px;}
.x79_c00125{left:460.650000px;}
.x38_c00125{left:463.950000px;}
.x100_c00125{left:466.650000px;}
.x90_c00125{left:468.600000px;}
.xd5_c00125{left:469.800000px;}
.x50_c00125{left:472.050000px;}
.x2d_c00125{left:473.400000px;}
.x97_c00125{left:474.750000px;}
.x69_c00125{left:475.800000px;}
.x135_c00125{left:477.450000px;}
.x43_c00125{left:481.350000px;}
.x86_c00125{left:482.850000px;}
.xce_c00125{left:485.700000px;}
.x91_c00125{left:488.100000px;}
.xd6_c00125{left:489.600000px;}
.x7a_c00125{left:492.000000px;}
.x5d_c00125{left:496.350000px;}
.xc2_c00125{left:497.700000px;}
.x12_c00125{left:499.050000px;}
.x20_c00125{left:500.100000px;}
.x13c_c00125{left:501.900000px;}
.x6_c00125{left:502.950000px;}
.xb2_c00125{left:505.200000px;}
.x2e_c00125{left:506.850000px;}
.xcf_c00125{left:508.800000px;}
.x118_c00125{left:510.750000px;}
.x10a_c00125{left:512.550000px;}
.xee_c00125{left:514.350000px;}
.x51_c00125{left:519.900000px;}
.x5e_c00125{left:525.150000px;}
.x114_c00125{left:528.150000px;}
.x21_c00125{left:529.200000px;}
.x119_c00125{left:530.850000px;}
.xde_c00125{left:532.350000px;}
.x13_c00125{left:533.550000px;}
.x72_c00125{left:536.550000px;}
.x7_c00125{left:537.900000px;}
.xef_c00125{left:542.400000px;}
.x6a_c00125{left:544.200000px;}
.x87_c00125{left:545.550000px;}
.x52_c00125{left:548.400000px;}
.x39_c00125{left:552.600000px;}
.x7b_c00125{left:553.950000px;}
.x44_c00125{left:556.200000px;}
.x5f_c00125{left:559.650000px;}
.xa2_c00125{left:560.850000px;}
.xf0_c00125{left:561.900000px;}
.xe7_c00125{left:564.900000px;}
.xd7_c00125{left:565.950000px;}
.x14_c00125{left:567.000000px;}
.x98_c00125{left:568.350000px;}
.x139_c00125{left:570.450000px;}
.x10c_c00125{left:571.800000px;}
.xc3_c00125{left:573.750000px;}
.x45_c00125{left:574.950000px;}
.x128_c00125{left:576.000000px;}
.x3a_c00125{left:577.050000px;}
.x101_c00125{left:578.850000px;}
.x123_c00125{left:581.400000px;}
.xdf_c00125{left:583.200000px;}
.xbe_c00125{left:584.250000px;}
.x88_c00125{left:585.450000px;}
.x15_c00125{left:587.550000px;}
.x11e_c00125{left:588.750000px;}
.x8_c00125{left:589.800000px;}
.x53_c00125{left:591.600000px;}
.xf4_c00125{left:592.800000px;}
.x115_c00125{left:595.050000px;}
.x99_c00125{left:596.850000px;}
.x2f_c00125{left:598.350000px;}
.xb3_c00125{left:601.350000px;}
.x46_c00125{left:602.700000px;}
.x22_c00125{left:604.500000px;}
.x10d_c00125{left:607.050000px;}
.x7c_c00125{left:608.250000px;}
.x73_c00125{left:611.850000px;}
.x124_c00125{left:616.650000px;}
.x129_c00125{left:618.900000px;}
.x54_c00125{left:620.400000px;}
.x23_c00125{left:622.200000px;}
.x107_c00125{left:623.250000px;}
.xd0_c00125{left:624.750000px;}
.x6b_c00125{left:626.250000px;}
.x3b_c00125{left:628.950000px;}
.x13d_c00125{left:631.950000px;}
.xbf_c00125{left:634.650000px;}
.xa3_c00125{left:636.450000px;}
.xc4_c00125{left:637.500000px;}
.x13f_c00125{left:639.900000px;}
.xab_c00125{left:643.350000px;}
.x12e_c00125{left:644.850000px;}
.xb4_c00125{left:646.050000px;}
.x125_c00125{left:647.550000px;}
.xe0_c00125{left:649.500000px;}
.x47_c00125{left:650.550000px;}
.x30_c00125{left:652.350000px;}
.xd8_c00125{left:653.400000px;}
.xa4_c00125{left:655.200000px;}
.x12a_c00125{left:657.150000px;}
.x6c_c00125{left:660.750000px;}
.xf5_c00125{left:663.000000px;}
.x24_c00125{left:664.350000px;}
.xb5_c00125{left:665.850000px;}
.x10e_c00125{left:667.200000px;}
.x89_c00125{left:668.250000px;}
.xe1_c00125{left:669.300000px;}
.x55_c00125{left:671.100000px;}
.xc0_c00125{left:672.150000px;}
.x16_c00125{left:673.200000px;}
.x102_c00125{left:674.550000px;}
.x7d_c00125{left:675.900000px;}
.x140_c00125{left:677.850000px;}
.x48_c00125{left:681.900000px;}
.xe8_c00125{left:688.350000px;}
.x8a_c00125{left:689.550000px;}
.xf6_c00125{left:691.050000px;}
.x9a_c00125{left:692.550000px;}
.x31_c00125{left:694.050000px;}
.x11a_c00125{left:695.250000px;}
.x12f_c00125{left:696.300000px;}
.x11f_c00125{left:700.200000px;}
.xd1_c00125{left:702.150000px;}
.x25_c00125{left:703.200000px;}
.x131_c00125{left:706.200000px;}
.x103_c00125{left:708.000000px;}
.xa5_c00125{left:709.200000px;}
.x116_c00125{left:714.150000px;}
.x60_c00125{left:716.550000px;}
.x8b_c00125{left:717.600000px;}
.xc5_c00125{left:719.850000px;}
.x7e_c00125{left:721.950000px;}
.x130_c00125{left:724.350000px;}
.xe9_c00125{left:726.150000px;}
.x61_c00125{left:728.100000px;}
.x49_c00125{left:730.200000px;}
.x136_c00125{left:731.550000px;}
.xac_c00125{left:734.100000px;}
.x3c_c00125{left:735.150000px;}
.xe2_c00125{left:736.950000px;}
.x26_c00125{left:738.150000px;}
.x32_c00125{left:740.550000px;}
.x17_c00125{left:741.600000px;}
.x11b_c00125{left:742.800000px;}
.xd9_c00125{left:744.600000px;}
.x104_c00125{left:745.800000px;}
.x4a_c00125{left:747.450000px;}
.x7f_c00125{left:751.050000px;}
.xb8_c00125{left:755.850000px;}
.xc6_c00125{left:756.900000px;}
.x27_c00125{left:758.250000px;}
.x9b_c00125{left:762.750000px;}
.xd2_c00125{left:766.650000px;}
.x105_c00125{left:768.450000px;}
.x9_c00125{left:770.550000px;}
.xf7_c00125{left:772.050000px;}
.x74_c00125{left:773.850000px;}
.x62_c00125{left:776.700000px;}
.x18_c00125{left:778.350000px;}
.xda_c00125{left:781.650000px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ws0_c00125{word-spacing:-5.020931pt;}
.ws6_c00125{word-spacing:-2.285714pt;}
.ws9_c00125{word-spacing:0.000000pt;}
.ws5_c00125{word-spacing:1.778820pt;}
.ws1_c00125{word-spacing:2.633619pt;}
.ws4_c00125{word-spacing:7.075988pt;}
.ws2_c00125{word-spacing:7.273796pt;}
.ws3_c00125{word-spacing:11.454612pt;}
.ws8_c00125{word-spacing:18.510842pt;}
.ws7_c00125{word-spacing:64.734662pt;}
.fs0_c00125{font-size:48.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y2c_c00125{bottom:132.800000pt;}
.y2b_c00125{bottom:168.933333pt;}
.y2a_c00125{bottom:186.533333pt;}
.y29_c00125{bottom:204.400000pt;}
.y28_c00125{bottom:221.733333pt;}
.y27_c00125{bottom:239.066667pt;}
.y26_c00125{bottom:257.600000pt;}
.y25_c00125{bottom:275.466667pt;}
.y24_c00125{bottom:293.066667pt;}
.y23_c00125{bottom:310.666667pt;}
.y22_c00125{bottom:328.266667pt;}
.y21_c00125{bottom:345.866667pt;}
.y20_c00125{bottom:363.466667pt;}
.y1f_c00125{bottom:381.066667pt;}
.y1e_c00125{bottom:398.800000pt;}
.y1d_c00125{bottom:416.666667pt;}
.y1c_c00125{bottom:434.266667pt;}
.y1b_c00125{bottom:451.866667pt;}
.y1a_c00125{bottom:470.400000pt;}
.y19_c00125{bottom:488.266667pt;}
.y18_c00125{bottom:506.133333pt;}
.y17_c00125{bottom:524.000000pt;}
.y16_c00125{bottom:541.600000pt;}
.y15_c00125{bottom:559.466667pt;}
.y14_c00125{bottom:577.066667pt;}
.y13_c00125{bottom:594.933333pt;}
.y12_c00125{bottom:612.800000pt;}
.y11_c00125{bottom:630.400000pt;}
.y10_c00125{bottom:648.266667pt;}
.yf_c00125{bottom:665.600000pt;}
.ye_c00125{bottom:683.866667pt;}
.yd_c00125{bottom:701.466667pt;}
.yc_c00125{bottom:719.333333pt;}
.yb_c00125{bottom:737.200000pt;}
.ya_c00125{bottom:754.800000pt;}
.y9_c00125{bottom:772.666667pt;}
.y8_c00125{bottom:790.533333pt;}
.y7_c00125{bottom:808.133333pt;}
.y6_c00125{bottom:825.733333pt;}
.y5_c00125{bottom:843.600000pt;}
.y4_c00125{bottom:861.200000pt;}
.y3_c00125{bottom:879.066667pt;}
.y2_c00125{bottom:896.666667pt;}
.y1_c00125{bottom:931.200000pt;}
.h2_c00125{height:48.000000pt;}
.h1_c00125{height:1038.000000pt;}
.h0_c00125{height:1038.079997pt;}
.w1_c00125{width:818.000000pt;}
.w0_c00125{width:818.239991pt;}
.x0_c00125{left:0.000000pt;}
.x132_c00125{left:102.266667pt;}
.x120_c00125{left:103.333333pt;}
.x108_c00125{left:104.400000pt;}
.x80_c00125{left:105.333333pt;}
.x56_c00125{left:106.933333pt;}
.xa_c00125{left:107.866667pt;}
.xc7_c00125{left:121.866667pt;}
.x10f_c00125{left:127.466667pt;}
.x75_c00125{left:128.800000pt;}
.x133_c00125{left:130.533333pt;}
.xf1_c00125{left:131.866667pt;}
.x92_c00125{left:133.733333pt;}
.x4b_c00125{left:135.200000pt;}
.xb9_c00125{left:136.533333pt;}
.xc1_c00125{left:138.666667pt;}
.xa6_c00125{left:142.400000pt;}
.xc8_c00125{left:146.533333pt;}
.x13e_c00125{left:148.933333pt;}
.x117_c00125{left:150.933333pt;}
.x126_c00125{left:155.600000pt;}
.x63_c00125{left:156.533333pt;}
.x81_c00125{left:158.800000pt;}
.x19_c00125{left:161.333333pt;}
.x13a_c00125{left:162.400000pt;}
.x33_c00125{left:163.466667pt;}
.x28_c00125{left:165.466667pt;}
.xba_c00125{left:166.933333pt;}
.x6d_c00125{left:167.866667pt;}
.x9c_c00125{left:169.200000pt;}
.x57_c00125{left:171.200000pt;}
.x3d_c00125{left:172.533333pt;}
.xfa_c00125{left:173.733333pt;}
.x93_c00125{left:175.600000pt;}
.x134_c00125{left:176.666667pt;}
.xe3_c00125{left:177.866667pt;}
.xc9_c00125{left:178.800000pt;}
.xb_c00125{left:179.866667pt;}
.x6e_c00125{left:183.200000pt;}
.x64_c00125{left:184.400000pt;}
.x8c_c00125{left:187.866667pt;}
.x1a_c00125{left:188.800000pt;}
.x137_c00125{left:191.066667pt;}
.x58_c00125{left:192.000000pt;}
.x29_c00125{left:194.266667pt;}
.xf8_c00125{left:197.733333pt;}
.x6f_c00125{left:199.200000pt;}
.x65_c00125{left:200.666667pt;}
.xad_c00125{left:202.000000pt;}
.xea_c00125{left:202.933333pt;}
.xa7_c00125{left:204.133333pt;}
.x94_c00125{left:205.333333pt;}
.x1b_c00125{left:206.400000pt;}
.x8d_c00125{left:208.000000pt;}
.x11c_c00125{left:210.933333pt;}
.x34_c00125{left:212.133333pt;}
.xfb_c00125{left:214.400000pt;}
.x82_c00125{left:215.466667pt;}
.x13b_c00125{left:216.533333pt;}
.x59_c00125{left:217.866667pt;}
.x2a_c00125{left:219.600000pt;}
.xca_c00125{left:221.333333pt;}
.x110_c00125{left:224.133333pt;}
.x70_c00125{left:226.666667pt;}
.x76_c00125{left:229.066667pt;}
.x3e_c00125{left:230.133333pt;}
.xd3_c00125{left:231.733333pt;}
.xeb_c00125{left:234.933333pt;}
.xae_c00125{left:236.266667pt;}
.xc_c00125{left:237.466667pt;}
.x10b_c00125{left:238.800000pt;}
.x11d_c00125{left:240.400000pt;}
.xb6_c00125{left:242.800000pt;}
.x1c_c00125{left:244.800000pt;}
.xe4_c00125{left:246.933333pt;}
.x1_c00125{left:249.333333pt;}
.x66_c00125{left:250.533333pt;}
.xa8_c00125{left:252.400000pt;}
.xd_c00125{left:253.466667pt;}
.x3f_c00125{left:255.733333pt;}
.x5a_c00125{left:257.866667pt;}
.x127_c00125{left:262.533333pt;}
.xdb_c00125{left:264.533333pt;}
.x9d_c00125{left:266.800000pt;}
.xbb_c00125{left:268.800000pt;}
.x8e_c00125{left:270.666667pt;}
.x35_c00125{left:271.600000pt;}
.x106_c00125{left:273.333333pt;}
.xf2_c00125{left:274.266667pt;}
.xe_c00125{left:275.600000pt;}
.x77_c00125{left:277.733333pt;}
.x138_c00125{left:280.400000pt;}
.xf9_c00125{left:282.533333pt;}
.xaf_c00125{left:284.000000pt;}
.x4c_c00125{left:287.200000pt;}
.x2_c00125{left:288.666667pt;}
.xe5_c00125{left:289.866667pt;}
.x12b_c00125{left:290.800000pt;}
.xcb_c00125{left:292.000000pt;}
.x40_c00125{left:293.200000pt;}
.x4d_c00125{left:297.066667pt;}
.x9e_c00125{left:299.066667pt;}
.xbc_c00125{left:300.533333pt;}
.x1d_c00125{left:303.066667pt;}
.x36_c00125{left:305.200000pt;}
.xfc_c00125{left:306.666667pt;}
.x95_c00125{left:308.133333pt;}
.xdc_c00125{left:311.200000pt;}
.x67_c00125{left:313.200000pt;}
.x12c_c00125{left:315.466667pt;}
.x3_c00125{left:319.333333pt;}
.x5b_c00125{left:320.266667pt;}
.x1e_c00125{left:321.333333pt;}
.xec_c00125{left:322.933333pt;}
.xcc_c00125{left:324.266667pt;}
.xf_c00125{left:325.200000pt;}
.xb0_c00125{left:326.533333pt;}
.x9f_c00125{left:328.533333pt;}
.xfd_c00125{left:330.933333pt;}
.x71_c00125{left:334.800000pt;}
.x83_c00125{left:336.133333pt;}
.x5c_c00125{left:338.133333pt;}
.x121_c00125{left:339.200000pt;}
.x2b_c00125{left:340.533333pt;}
.x111_c00125{left:341.866667pt;}
.x78_c00125{left:345.200000pt;}
.x41_c00125{left:346.666667pt;}
.x8f_c00125{left:348.400000pt;}
.xd4_c00125{left:349.466667pt;}
.xb7_c00125{left:350.666667pt;}
.x4e_c00125{left:351.733333pt;}
.x109_c00125{left:353.200000pt;}
.xcd_c00125{left:357.200000pt;}
.x112_c00125{left:358.133333pt;}
.x2c_c00125{left:360.000000pt;}
.x122_c00125{left:361.600000pt;}
.x12d_c00125{left:362.533333pt;}
.x84_c00125{left:363.600000pt;}
.x68_c00125{left:370.800000pt;}
.x10_c00125{left:373.466667pt;}
.xa0_c00125{left:374.933333pt;}
.xdd_c00125{left:375.866667pt;}
.xa9_c00125{left:377.200000pt;}
.xf3_c00125{left:378.800000pt;}
.x113_c00125{left:380.533333pt;}
.x4_c00125{left:381.466667pt;}
.x37_c00125{left:383.866667pt;}
.xb1_c00125{left:387.333333pt;}
.x4f_c00125{left:389.466667pt;}
.x1f_c00125{left:390.400000pt;}
.xe6_c00125{left:391.333333pt;}
.xfe_c00125{left:392.666667pt;}
.x42_c00125{left:394.000000pt;}
.xa1_c00125{left:395.466667pt;}
.xed_c00125{left:397.466667pt;}
.xff_c00125{left:399.066667pt;}
.xaa_c00125{left:400.933333pt;}
.x5_c00125{left:402.000000pt;}
.x96_c00125{left:403.466667pt;}
.x85_c00125{left:404.933333pt;}
.x11_c00125{left:406.133333pt;}
.xbd_c00125{left:407.066667pt;}
.x79_c00125{left:409.466667pt;}
.x38_c00125{left:412.400000pt;}
.x100_c00125{left:414.800000pt;}
.x90_c00125{left:416.533333pt;}
.xd5_c00125{left:417.600000pt;}
.x50_c00125{left:419.600000pt;}
.x2d_c00125{left:420.800000pt;}
.x97_c00125{left:422.000000pt;}
.x69_c00125{left:422.933333pt;}
.x135_c00125{left:424.400000pt;}
.x43_c00125{left:427.866667pt;}
.x86_c00125{left:429.200000pt;}
.xce_c00125{left:431.733333pt;}
.x91_c00125{left:433.866667pt;}
.xd6_c00125{left:435.200000pt;}
.x7a_c00125{left:437.333333pt;}
.x5d_c00125{left:441.200000pt;}
.xc2_c00125{left:442.400000pt;}
.x12_c00125{left:443.600000pt;}
.x20_c00125{left:444.533333pt;}
.x13c_c00125{left:446.133333pt;}
.x6_c00125{left:447.066667pt;}
.xb2_c00125{left:449.066667pt;}
.x2e_c00125{left:450.533333pt;}
.xcf_c00125{left:452.266667pt;}
.x118_c00125{left:454.000000pt;}
.x10a_c00125{left:455.600000pt;}
.xee_c00125{left:457.200000pt;}
.x51_c00125{left:462.133333pt;}
.x5e_c00125{left:466.800000pt;}
.x114_c00125{left:469.466667pt;}
.x21_c00125{left:470.400000pt;}
.x119_c00125{left:471.866667pt;}
.xde_c00125{left:473.200000pt;}
.x13_c00125{left:474.266667pt;}
.x72_c00125{left:476.933333pt;}
.x7_c00125{left:478.133333pt;}
.xef_c00125{left:482.133333pt;}
.x6a_c00125{left:483.733333pt;}
.x87_c00125{left:484.933333pt;}
.x52_c00125{left:487.466667pt;}
.x39_c00125{left:491.200000pt;}
.x7b_c00125{left:492.400000pt;}
.x44_c00125{left:494.400000pt;}
.x5f_c00125{left:497.466667pt;}
.xa2_c00125{left:498.533333pt;}
.xf0_c00125{left:499.466667pt;}
.xe7_c00125{left:502.133333pt;}
.xd7_c00125{left:503.066667pt;}
.x14_c00125{left:504.000000pt;}
.x98_c00125{left:505.200000pt;}
.x139_c00125{left:507.066667pt;}
.x10c_c00125{left:508.266667pt;}
.xc3_c00125{left:510.000000pt;}
.x45_c00125{left:511.066667pt;}
.x128_c00125{left:512.000000pt;}
.x3a_c00125{left:512.933333pt;}
.x101_c00125{left:514.533333pt;}
.x123_c00125{left:516.800000pt;}
.xdf_c00125{left:518.400000pt;}
.xbe_c00125{left:519.333333pt;}
.x88_c00125{left:520.400000pt;}
.x15_c00125{left:522.266667pt;}
.x11e_c00125{left:523.333333pt;}
.x8_c00125{left:524.266667pt;}
.x53_c00125{left:525.866667pt;}
.xf4_c00125{left:526.933333pt;}
.x115_c00125{left:528.933333pt;}
.x99_c00125{left:530.533333pt;}
.x2f_c00125{left:531.866667pt;}
.xb3_c00125{left:534.533333pt;}
.x46_c00125{left:535.733333pt;}
.x22_c00125{left:537.333333pt;}
.x10d_c00125{left:539.600000pt;}
.x7c_c00125{left:540.666667pt;}
.x73_c00125{left:543.866667pt;}
.x124_c00125{left:548.133333pt;}
.x129_c00125{left:550.133333pt;}
.x54_c00125{left:551.466667pt;}
.x23_c00125{left:553.066667pt;}
.x107_c00125{left:554.000000pt;}
.xd0_c00125{left:555.333333pt;}
.x6b_c00125{left:556.666667pt;}
.x3b_c00125{left:559.066667pt;}
.x13d_c00125{left:561.733333pt;}
.xbf_c00125{left:564.133333pt;}
.xa3_c00125{left:565.733333pt;}
.xc4_c00125{left:566.666667pt;}
.x13f_c00125{left:568.800000pt;}
.xab_c00125{left:571.866667pt;}
.x12e_c00125{left:573.200000pt;}
.xb4_c00125{left:574.266667pt;}
.x125_c00125{left:575.600000pt;}
.xe0_c00125{left:577.333333pt;}
.x47_c00125{left:578.266667pt;}
.x30_c00125{left:579.866667pt;}
.xd8_c00125{left:580.800000pt;}
.xa4_c00125{left:582.400000pt;}
.x12a_c00125{left:584.133333pt;}
.x6c_c00125{left:587.333333pt;}
.xf5_c00125{left:589.333333pt;}
.x24_c00125{left:590.533333pt;}
.xb5_c00125{left:591.866667pt;}
.x10e_c00125{left:593.066667pt;}
.x89_c00125{left:594.000000pt;}
.xe1_c00125{left:594.933333pt;}
.x55_c00125{left:596.533333pt;}
.xc0_c00125{left:597.466667pt;}
.x16_c00125{left:598.400000pt;}
.x102_c00125{left:599.600000pt;}
.x7d_c00125{left:600.800000pt;}
.x140_c00125{left:602.533333pt;}
.x48_c00125{left:606.133333pt;}
.xe8_c00125{left:611.866667pt;}
.x8a_c00125{left:612.933333pt;}
.xf6_c00125{left:614.266667pt;}
.x9a_c00125{left:615.600000pt;}
.x31_c00125{left:616.933333pt;}
.x11a_c00125{left:618.000000pt;}
.x12f_c00125{left:618.933333pt;}
.x11f_c00125{left:622.400000pt;}
.xd1_c00125{left:624.133333pt;}
.x25_c00125{left:625.066667pt;}
.x131_c00125{left:627.733333pt;}
.x103_c00125{left:629.333333pt;}
.xa5_c00125{left:630.400000pt;}
.x116_c00125{left:634.800000pt;}
.x60_c00125{left:636.933333pt;}
.x8b_c00125{left:637.866667pt;}
.xc5_c00125{left:639.866667pt;}
.x7e_c00125{left:641.733333pt;}
.x130_c00125{left:643.866667pt;}
.xe9_c00125{left:645.466667pt;}
.x61_c00125{left:647.200000pt;}
.x49_c00125{left:649.066667pt;}
.x136_c00125{left:650.266667pt;}
.xac_c00125{left:652.533333pt;}
.x3c_c00125{left:653.466667pt;}
.xe2_c00125{left:655.066667pt;}
.x26_c00125{left:656.133333pt;}
.x32_c00125{left:658.266667pt;}
.x17_c00125{left:659.200000pt;}
.x11b_c00125{left:660.266667pt;}
.xd9_c00125{left:661.866667pt;}
.x104_c00125{left:662.933333pt;}
.x4a_c00125{left:664.400000pt;}
.x7f_c00125{left:667.600000pt;}
.xb8_c00125{left:671.866667pt;}
.xc6_c00125{left:672.800000pt;}
.x27_c00125{left:674.000000pt;}
.x9b_c00125{left:678.000000pt;}
.xd2_c00125{left:681.466667pt;}
.x105_c00125{left:683.066667pt;}
.x9_c00125{left:684.933333pt;}
.xf7_c00125{left:686.266667pt;}
.x74_c00125{left:687.866667pt;}
.x62_c00125{left:690.400000pt;}
.x18_c00125{left:691.866667pt;}
.xda_c00125{left:694.800000pt;}
}





/* 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_c00126 {
    display:none;
  }
  .loading-indicator_c00126.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00126 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_c00126 { 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_c00126" -> "#page-container .classname_c00126")
 */
.pf_c00126 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00126 { /* 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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00126 { /* 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_c00126 { /* 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_c00126 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00126 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00126 {overflow:visible;}
  }
}
.c_c00126 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00126 { /* 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_c00126:after { /* webkit #35443 */
  content: '';
}
.t_c00126:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00126 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 */
}
.__c00126 { /* 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_c00126 { /* info for Javascript */
  display:none;
}
.l_c00126 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00126 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00126 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00126: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_c00126 {
    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_c00126.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00126.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_c00126 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00126{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00126;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.000000;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;}
.m65_c00126{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00126{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m38_c00126{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m39_c00126{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00126{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.maa_c00126{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m84_c00126{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m44_c00126{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00126{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m64_c00126{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m14_c00126{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00126{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m77_c00126{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00126{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m47_c00126{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00126{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m73_c00126{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m48_c00126{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m50_c00126{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00126{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m71_c00126{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10_c00126{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m79_c00126{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00126{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m88_c00126{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m29_c00126{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00126{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00126{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m76_c00126{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00126{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00126{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00126{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m98_c00126{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00126{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00126{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00126{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00126{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m69_c00126{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m89_c00126{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00126{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00126{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m43_c00126{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00126{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m70_c00126{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00126{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00126{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m55_c00126{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00126{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m63_c00126{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m26_c00126{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m56_c00126{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb_c00126{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00126{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00126{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m49_c00126{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00126{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00126{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m87_c00126{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf_c00126{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m41_c00126{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m24_c00126{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00126{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00126{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m75_c00126{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00126{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00126{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00126{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00126{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00126{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00126{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00126{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m25_c00126{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m85_c00126{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00126{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m78_c00126{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m92_c00126{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00126{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m46_c00126{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m34_c00126{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00126{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00126{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m97_c00126{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m54_c00126{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00126{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m82_c00126{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m62_c00126{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00126{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m60_c00126{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m72_c00126{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00126{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m23_c00126{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9_c00126{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m68_c00126{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m74_c00126{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00126{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00126{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00126{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00126{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m90_c00126{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m94_c00126{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m30_c00126{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00126{vertical-align:0.000000px;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{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__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00126{word-spacing:-11.527778px;}
.ws6_c00126{word-spacing:-9.342105px;}
.ws5_c00126{word-spacing:-6.250000px;}
.ws4_c00126{word-spacing:-5.000000px;}
.ws8_c00126{word-spacing:0.000000px;}
.ws2_c00126{word-spacing:2.469136px;}
.ws3_c00126{word-spacing:5.138889px;}
.ws0_c00126{word-spacing:10.735294px;}
.ws1_c00126{word-spacing:27.592593px;}
._0_c00126{width:36.527778px;}
._1_c00126{width:49.722222px;}
.fc0_c00126{color:transparent;}
.fs0_c00126{font-size:60.000000px;}
.y0_c00126{bottom:0.000000px;}
.y2d_c00126{bottom:151.200000px;}
.y2c_c00126{bottom:165.150000px;}
.y2b_c00126{bottom:182.100000px;}
.y2a_c00126{bottom:213.900000px;}
.y29_c00126{bottom:234.000000px;}
.y28_c00126{bottom:253.800000px;}
.y27_c00126{bottom:274.350000px;}
.y26_c00126{bottom:293.850000px;}
.y25_c00126{bottom:313.650000px;}
.y24_c00126{bottom:333.450000px;}
.y23_c00126{bottom:353.250000px;}
.y22_c00126{bottom:373.800000px;}
.y21_c00126{bottom:393.600000px;}
.y20_c00126{bottom:413.400000px;}
.y1f_c00126{bottom:433.200000px;}
.y1e_c00126{bottom:453.300000px;}
.y1d_c00126{bottom:473.100000px;}
.y1c_c00126{bottom:493.050000px;}
.y1b_c00126{bottom:513.150000px;}
.y1a_c00126{bottom:532.950000px;}
.y19_c00126{bottom:553.050000px;}
.y18_c00126{bottom:573.150000px;}
.y17_c00126{bottom:592.950000px;}
.y16_c00126{bottom:613.050000px;}
.y15_c00126{bottom:633.600000px;}
.y14_c00126{bottom:653.400000px;}
.y13_c00126{bottom:673.500000px;}
.y12_c00126{bottom:694.050000px;}
.y11_c00126{bottom:713.550000px;}
.y10_c00126{bottom:733.800000px;}
.yf_c00126{bottom:753.600000px;}
.ye_c00126{bottom:773.700000px;}
.yd_c00126{bottom:793.800000px;}
.yc_c00126{bottom:813.300000px;}
.yb_c00126{bottom:833.100000px;}
.ya_c00126{bottom:853.200000px;}
.y9_c00126{bottom:873.450000px;}
.y8_c00126{bottom:893.550000px;}
.y7_c00126{bottom:913.350000px;}
.y6_c00126{bottom:933.450000px;}
.y5_c00126{bottom:953.250000px;}
.y4_c00126{bottom:973.500000px;}
.y3_c00126{bottom:993.000000px;}
.y2_c00126{bottom:1013.100000px;}
.y1_c00126{bottom:1051.500000px;}
.h2_c00126{height:60.000000px;}
.h1_c00126{height:1167.750000px;}
.h0_c00126{height:1167.839997px;}
.w1_c00126{width:920.250000px;}
.w0_c00126{width:920.519990px;}
.x0_c00126{left:0.000000px;}
.x3_c00126{left:137.100000px;}
.x1_c00126{left:138.300000px;}
.x145_c00126{left:139.950000px;}
.x127_c00126{left:150.600000px;}
.xd3_c00126{left:155.550000px;}
.x114_c00126{left:157.200000px;}
.x141_c00126{left:158.700000px;}
.xdd_c00126{left:163.050000px;}
.x35_c00126{left:165.300000px;}
.x28_c00126{left:168.450000px;}
.xaf_c00126{left:171.450000px;}
.x9e_c00126{left:172.950000px;}
.x74_c00126{left:175.800000px;}
.x130_c00126{left:177.750000px;}
.x7f_c00126{left:179.250000px;}
.xb7_c00126{left:180.750000px;}
.x93_c00126{left:182.550000px;}
.x4_c00126{left:184.650000px;}
.x44_c00126{left:186.150000px;}
.xfb_c00126{left:188.550000px;}
.x13d_c00126{left:190.650000px;}
.x15_c00126{left:192.150000px;}
.xe5_c00126{left:194.400000px;}
.x5e_c00126{left:196.350000px;}
.x52_c00126{left:198.750000px;}
.x9f_c00126{left:199.950000px;}
.xa5_c00126{left:201.600000px;}
.x29_c00126{left:204.150000px;}
.xc3_c00126{left:206.700000px;}
.x5_c00126{left:208.050000px;}
.x8a_c00126{left:210.150000px;}
.xb8_c00126{left:213.450000px;}
.x67_c00126{left:214.500000px;}
.x80_c00126{left:217.050000px;}
.x45_c00126{left:218.850000px;}
.x13f_c00126{left:221.400000px;}
.xe6_c00126{left:223.950000px;}
.x24_c00126{left:225.450000px;}
.xde_c00126{left:226.800000px;}
.x131_c00126{left:228.150000px;}
.xb0_c00126{left:230.100000px;}
.x16_c00126{left:232.800000px;}
.x100_c00126{left:235.050000px;}
.x6_c00126{left:236.850000px;}
.x75_c00126{left:238.050000px;}
.x147_c00126{left:239.400000px;}
.xc4_c00126{left:240.600000px;}
.x68_c00126{left:241.800000px;}
.xfc_c00126{left:243.600000px;}
.x25_c00126{left:244.950000px;}
.x53_c00126{left:249.150000px;}
.xa8_c00126{left:250.500000px;}
.x94_c00126{left:251.700000px;}
.x132_c00126{left:254.100000px;}
.x5f_c00126{left:255.450000px;}
.xb9_c00126{left:256.650000px;}
.xea_c00126{left:257.850000px;}
.x11c_c00126{left:259.950000px;}
.xb1_c00126{left:261.750000px;}
.x8b_c00126{left:263.400000px;}
.x119_c00126{left:267.150000px;}
.x7_c00126{left:269.550000px;}
.x107_c00126{left:270.750000px;}
.xa6_c00126{left:272.250000px;}
.x26_c00126{left:273.750000px;}
.x76_c00126{left:276.600000px;}
.x46_c00126{left:277.950000px;}
.xc5_c00126{left:280.950000px;}
.xa7_c00126{left:284.850000px;}
.x10d_c00126{left:286.050000px;}
.x8_c00126{left:289.650000px;}
.xdf_c00126{left:291.600000px;}
.x54_c00126{left:293.400000px;}
.x2a_c00126{left:295.500000px;}
.x108_c00126{left:297.000000px;}
.x36_c00126{left:299.250000px;}
.xd4_c00126{left:300.600000px;}
.x134_c00126{left:302.250000px;}
.xf6_c00126{left:303.600000px;}
.x17_c00126{left:304.800000px;}
.xf2_c00126{left:305.850000px;}
.x101_c00126{left:308.100000px;}
.x69_c00126{left:309.450000px;}
.x125_c00126{left:310.650000px;}
.xa9_c00126{left:311.700000px;}
.x60_c00126{left:314.550000px;}
.xcd_c00126{left:317.100000px;}
.x47_c00126{left:319.350000px;}
.x11d_c00126{left:320.400000px;}
.x81_c00126{left:321.750000px;}
.x77_c00126{left:323.400000px;}
.x13e_c00126{left:325.200000px;}
.xc6_c00126{left:328.500000px;}
.xaa_c00126{left:330.000000px;}
.x37_c00126{left:331.350000px;}
.x27_c00126{left:333.900000px;}
.x18_c00126{left:336.450000px;}
.x95_c00126{left:338.850000px;}
.x78_c00126{left:340.350000px;}
.xce_c00126{left:341.550000px;}
.x10e_c00126{left:342.600000px;}
.x48_c00126{left:343.800000px;}
.x61_c00126{left:346.650000px;}
.x82_c00126{left:349.050000px;}
.x8c_c00126{left:350.850000px;}
.x148_c00126{left:352.800000px;}
.x6a_c00126{left:356.250000px;}
.x135_c00126{left:358.050000px;}
.x115_c00126{left:361.350000px;}
.x2b_c00126{left:363.600000px;}
.xba_c00126{left:365.250000px;}
.x38_c00126{left:366.300000px;}
.x96_c00126{left:367.650000px;}
.xf7_c00126{left:369.600000px;}
.xeb_c00126{left:370.800000px;}
.x19_c00126{left:373.200000px;}
.x62_c00126{left:375.150000px;}
.xa0_c00126{left:376.500000px;}
.x9_c00126{left:378.900000px;}
.x123_c00126{left:379.950000px;}
.x83_c00126{left:381.150000px;}
.x6b_c00126{left:382.500000px;}
.x109_c00126{left:384.000000px;}
.xe0_c00126{left:388.050000px;}
.x55_c00126{left:390.600000px;}
.xd5_c00126{left:392.400000px;}
.x136_c00126{left:393.750000px;}
.x39_c00126{left:395.400000px;}
.x11e_c00126{left:397.050000px;}
.x142_c00126{left:398.700000px;}
.xcf_c00126{left:400.650000px;}
.xf3_c00126{left:401.850000px;}
.x63_c00126{left:402.900000px;}
.xbb_c00126{left:404.850000px;}
.xb2_c00126{left:407.250000px;}
.xfd_c00126{left:408.450000px;}
.xc7_c00126{left:409.800000px;}
.x149_c00126{left:410.850000px;}
.x1a_c00126{left:412.500000px;}
.x2c_c00126{left:413.700000px;}
.x10a_c00126{left:414.900000px;}
.x143_c00126{left:416.400000px;}
.xf8_c00126{left:419.550000px;}
.x49_c00126{left:421.200000px;}
.x11a_c00126{left:423.300000px;}
.x84_c00126{left:426.150000px;}
.xec_c00126{left:427.350000px;}
.x79_c00126{left:430.350000px;}
.x133_c00126{left:431.850000px;}
.x3a_c00126{left:434.250000px;}
.xa_c00126{left:436.200000px;}
.xe1_c00126{left:437.700000px;}
.x8d_c00126{left:441.150000px;}
.xd6_c00126{left:442.500000px;}
.x64_c00126{left:444.300000px;}
.x137_c00126{left:446.700000px;}
.xc8_c00126{left:447.900000px;}
.xbc_c00126{left:449.100000px;}
.x6c_c00126{left:451.200000px;}
.x2_c00126{left:453.000000px;}
.x128_c00126{left:454.350000px;}
.xe2_c00126{left:455.400000px;}
.x12d_c00126{left:456.750000px;}
.x2d_c00126{left:457.950000px;}
.x1b_c00126{left:459.000000px;}
.xb3_c00126{left:460.200000px;}
.x126_c00126{left:462.300000px;}
.x56_c00126{left:463.350000px;}
.x4a_c00126{left:465.150000px;}
.x140_c00126{left:468.450000px;}
.x10b_c00126{left:472.800000px;}
.x3b_c00126{left:473.850000px;}
.x8e_c00126{left:476.100000px;}
.xa1_c00126{left:478.350000px;}
.x1c_c00126{left:479.850000px;}
.xf4_c00126{left:481.050000px;}
.xb_c00126{left:482.700000px;}
.x57_c00126{left:484.950000px;}
.x85_c00126{left:486.300000px;}
.xbd_c00126{left:487.950000px;}
.x116_c00126{left:489.750000px;}
.x129_c00126{left:493.200000px;}
.xb4_c00126{left:495.900000px;}
.x11f_c00126{left:497.400000px;}
.x4b_c00126{left:499.650000px;}
.x3c_c00126{left:503.400000px;}
.x2e_c00126{left:504.750000px;}
.x65_c00126{left:507.000000px;}
.xd7_c00126{left:510.150000px;}
.xc_c00126{left:513.600000px;}
.x6d_c00126{left:516.000000px;}
.xfe_c00126{left:517.950000px;}
.x10f_c00126{left:519.300000px;}
.xed_c00126{left:522.000000px;}
.xa2_c00126{left:523.050000px;}
.x102_c00126{left:524.250000px;}
.xb5_c00126{left:525.750000px;}
.xc9_c00126{left:527.550000px;}
.x117_c00126{left:529.050000px;}
.xab_c00126{left:530.100000px;}
.x3d_c00126{left:532.950000px;}
.x146_c00126{left:534.900000px;}
.xf9_c00126{left:535.950000px;}
.xee_c00126{left:537.450000px;}
.xd8_c00126{left:539.250000px;}
.x138_c00126{left:542.100000px;}
.x97_c00126{left:543.300000px;}
.x1d_c00126{left:545.400000px;}
.x4c_c00126{left:547.200000px;}
.xff_c00126{left:548.250000px;}
.x66_c00126{left:549.900000px;}
.x6e_c00126{left:550.950000px;}
.x110_c00126{left:553.200000px;}
.x3e_c00126{left:554.550000px;}
.x8f_c00126{left:555.600000px;}
.xbe_c00126{left:558.750000px;}
.x1e_c00126{left:560.550000px;}
.x98_c00126{left:563.400000px;}
.xd_c00126{left:564.750000px;}
.x7a_c00126{left:566.700000px;}
.xef_c00126{left:568.800000px;}
.x6f_c00126{left:570.750000px;}
.xca_c00126{left:572.250000px;}
.x2f_c00126{left:574.950000px;}
.x103_c00126{left:577.950000px;}
.x90_c00126{left:581.100000px;}
.x3f_c00126{left:582.600000px;}
.x58_c00126{left:584.250000px;}
.x99_c00126{left:586.500000px;}
.x4d_c00126{left:587.550000px;}
.x7b_c00126{left:589.050000px;}
.xe7_c00126{left:590.100000px;}
.x111_c00126{left:591.300000px;}
.xe_c00126{left:592.800000px;}
.xe3_c00126{left:594.300000px;}
.x120_c00126{left:596.400000px;}
.x104_c00126{left:598.050000px;}
.x12a_c00126{left:600.150000px;}
.xa3_c00126{left:601.500000px;}
.x86_c00126{left:602.550000px;}
.x139_c00126{left:603.600000px;}
.xd9_c00126{left:606.600000px;}
.xac_c00126{left:608.250000px;}
.xfa_c00126{left:609.600000px;}
.x10c_c00126{left:612.450000px;}
.x4e_c00126{left:613.500000px;}
.x124_c00126{left:615.900000px;}
.xbf_c00126{left:618.150000px;}
.xcb_c00126{left:619.350000px;}
.x40_c00126{left:620.400000px;}
.x30_c00126{left:622.500000px;}
.xe8_c00126{left:623.550000px;}
.x91_c00126{left:626.850000px;}
.x12e_c00126{left:628.200000px;}
.x9a_c00126{left:631.200000px;}
.x1f_c00126{left:633.600000px;}
.x41_c00126{left:635.100000px;}
.x105_c00126{left:636.900000px;}
.xf0_c00126{left:639.450000px;}
.x70_c00126{left:641.250000px;}
.xf_c00126{left:644.250000px;}
.x13a_c00126{left:645.750000px;}
.x12b_c00126{left:647.700000px;}
.x31_c00126{left:648.750000px;}
.xc0_c00126{left:650.850000px;}
.x92_c00126{left:652.350000px;}
.xf5_c00126{left:653.550000px;}
.x10_c00126{left:655.350000px;}
.x144_c00126{left:659.700000px;}
.xa4_c00126{left:660.900000px;}
.x71_c00126{left:662.550000px;}
.x4f_c00126{left:663.900000px;}
.x59_c00126{left:667.500000px;}
.x42_c00126{left:669.600000px;}
.x7c_c00126{left:672.150000px;}
.xe9_c00126{left:673.950000px;}
.x20_c00126{left:675.300000px;}
.x112_c00126{left:678.450000px;}
.xd0_c00126{left:684.900000px;}
.x11_c00126{left:687.450000px;}
.xda_c00126{left:689.700000px;}
.x5a_c00126{left:691.650000px;}
.xf1_c00126{left:693.150000px;}
.x13b_c00126{left:694.350000px;}
.xad_c00126{left:696.750000px;}
.x7d_c00126{left:699.450000px;}
.x87_c00126{left:700.500000px;}
.x12_c00126{left:701.550000px;}
.x43_c00126{left:703.050000px;}
.x32_c00126{left:706.050000px;}
.xb6_c00126{left:707.100000px;}
.xd1_c00126{left:710.400000px;}
.x121_c00126{left:712.800000px;}
.x11b_c00126{left:715.500000px;}
.x13c_c00126{left:717.000000px;}
.x9b_c00126{left:718.350000px;}
.x5b_c00126{left:719.700000px;}
.x118_c00126{left:721.500000px;}
.x21_c00126{left:722.850000px;}
.x50_c00126{left:724.050000px;}
.x72_c00126{left:726.600000px;}
.x33_c00126{left:727.650000px;}
.x88_c00126{left:729.600000px;}
.xd2_c00126{left:735.300000px;}
.x122_c00126{left:738.750000px;}
.xe4_c00126{left:740.100000px;}
.x9c_c00126{left:742.800000px;}
.x7e_c00126{left:745.500000px;}
.x22_c00126{left:746.550000px;}
.xcc_c00126{left:748.350000px;}
.x113_c00126{left:749.700000px;}
.xc1_c00126{left:752.400000px;}
.xdb_c00126{left:755.550000px;}
.x5c_c00126{left:757.500000px;}
.x13_c00126{left:758.850000px;}
.x12c_c00126{left:760.800000px;}
.x106_c00126{left:764.250000px;}
.x73_c00126{left:765.450000px;}
.x89_c00126{left:767.400000px;}
.x9d_c00126{left:769.500000px;}
.xae_c00126{left:770.550000px;}
.x23_c00126{left:775.050000px;}
.xc2_c00126{left:779.100000px;}
.x51_c00126{left:781.650000px;}
.x5d_c00126{left:782.700000px;}
.x14_c00126{left:784.350000px;}
.x34_c00126{left:786.750000px;}
.xdc_c00126{left:792.300000px;}
.x12f_c00126{left:793.350000px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws7_c00126{word-spacing:-10.246914pt;}
.ws6_c00126{word-spacing:-8.304094pt;}
.ws5_c00126{word-spacing:-5.555556pt;}
.ws4_c00126{word-spacing:-4.444444pt;}
.ws8_c00126{word-spacing:0.000000pt;}
.ws2_c00126{word-spacing:2.194787pt;}
.ws3_c00126{word-spacing:4.567901pt;}
.ws0_c00126{word-spacing:9.542484pt;}
.ws1_c00126{word-spacing:24.526749pt;}
._0_c00126{width:32.469136pt;}
._1_c00126{width:44.197531pt;}
.fs0_c00126{font-size:53.333333pt;}
.y0_c00126{bottom:0.000000pt;}
.y2d_c00126{bottom:134.400000pt;}
.y2c_c00126{bottom:146.800000pt;}
.y2b_c00126{bottom:161.866667pt;}
.y2a_c00126{bottom:190.133333pt;}
.y29_c00126{bottom:208.000000pt;}
.y28_c00126{bottom:225.600000pt;}
.y27_c00126{bottom:243.866667pt;}
.y26_c00126{bottom:261.200000pt;}
.y25_c00126{bottom:278.800000pt;}
.y24_c00126{bottom:296.400000pt;}
.y23_c00126{bottom:314.000000pt;}
.y22_c00126{bottom:332.266667pt;}
.y21_c00126{bottom:349.866667pt;}
.y20_c00126{bottom:367.466667pt;}
.y1f_c00126{bottom:385.066667pt;}
.y1e_c00126{bottom:402.933333pt;}
.y1d_c00126{bottom:420.533333pt;}
.y1c_c00126{bottom:438.266667pt;}
.y1b_c00126{bottom:456.133333pt;}
.y1a_c00126{bottom:473.733333pt;}
.y19_c00126{bottom:491.600000pt;}
.y18_c00126{bottom:509.466667pt;}
.y17_c00126{bottom:527.066667pt;}
.y16_c00126{bottom:544.933333pt;}
.y15_c00126{bottom:563.200000pt;}
.y14_c00126{bottom:580.800000pt;}
.y13_c00126{bottom:598.666667pt;}
.y12_c00126{bottom:616.933333pt;}
.y11_c00126{bottom:634.266667pt;}
.y10_c00126{bottom:652.266667pt;}
.yf_c00126{bottom:669.866667pt;}
.ye_c00126{bottom:687.733333pt;}
.yd_c00126{bottom:705.600000pt;}
.yc_c00126{bottom:722.933333pt;}
.yb_c00126{bottom:740.533333pt;}
.ya_c00126{bottom:758.400000pt;}
.y9_c00126{bottom:776.400000pt;}
.y8_c00126{bottom:794.266667pt;}
.y7_c00126{bottom:811.866667pt;}
.y6_c00126{bottom:829.733333pt;}
.y5_c00126{bottom:847.333333pt;}
.y4_c00126{bottom:865.333333pt;}
.y3_c00126{bottom:882.666667pt;}
.y2_c00126{bottom:900.533333pt;}
.y1_c00126{bottom:934.666667pt;}
.h2_c00126{height:53.333333pt;}
.h1_c00126{height:1038.000000pt;}
.h0_c00126{height:1038.079997pt;}
.w1_c00126{width:818.000000pt;}
.w0_c00126{width:818.239991pt;}
.x0_c00126{left:0.000000pt;}
.x3_c00126{left:121.866667pt;}
.x1_c00126{left:122.933333pt;}
.x145_c00126{left:124.400000pt;}
.x127_c00126{left:133.866667pt;}
.xd3_c00126{left:138.266667pt;}
.x114_c00126{left:139.733333pt;}
.x141_c00126{left:141.066667pt;}
.xdd_c00126{left:144.933333pt;}
.x35_c00126{left:146.933333pt;}
.x28_c00126{left:149.733333pt;}
.xaf_c00126{left:152.400000pt;}
.x9e_c00126{left:153.733333pt;}
.x74_c00126{left:156.266667pt;}
.x130_c00126{left:158.000000pt;}
.x7f_c00126{left:159.333333pt;}
.xb7_c00126{left:160.666667pt;}
.x93_c00126{left:162.266667pt;}
.x4_c00126{left:164.133333pt;}
.x44_c00126{left:165.466667pt;}
.xfb_c00126{left:167.600000pt;}
.x13d_c00126{left:169.466667pt;}
.x15_c00126{left:170.800000pt;}
.xe5_c00126{left:172.800000pt;}
.x5e_c00126{left:174.533333pt;}
.x52_c00126{left:176.666667pt;}
.x9f_c00126{left:177.733333pt;}
.xa5_c00126{left:179.200000pt;}
.x29_c00126{left:181.466667pt;}
.xc3_c00126{left:183.733333pt;}
.x5_c00126{left:184.933333pt;}
.x8a_c00126{left:186.800000pt;}
.xb8_c00126{left:189.733333pt;}
.x67_c00126{left:190.666667pt;}
.x80_c00126{left:192.933333pt;}
.x45_c00126{left:194.533333pt;}
.x13f_c00126{left:196.800000pt;}
.xe6_c00126{left:199.066667pt;}
.x24_c00126{left:200.400000pt;}
.xde_c00126{left:201.600000pt;}
.x131_c00126{left:202.800000pt;}
.xb0_c00126{left:204.533333pt;}
.x16_c00126{left:206.933333pt;}
.x100_c00126{left:208.933333pt;}
.x6_c00126{left:210.533333pt;}
.x75_c00126{left:211.600000pt;}
.x147_c00126{left:212.800000pt;}
.xc4_c00126{left:213.866667pt;}
.x68_c00126{left:214.933333pt;}
.xfc_c00126{left:216.533333pt;}
.x25_c00126{left:217.733333pt;}
.x53_c00126{left:221.466667pt;}
.xa8_c00126{left:222.666667pt;}
.x94_c00126{left:223.733333pt;}
.x132_c00126{left:225.866667pt;}
.x5f_c00126{left:227.066667pt;}
.xb9_c00126{left:228.133333pt;}
.xea_c00126{left:229.200000pt;}
.x11c_c00126{left:231.066667pt;}
.xb1_c00126{left:232.666667pt;}
.x8b_c00126{left:234.133333pt;}
.x119_c00126{left:237.466667pt;}
.x7_c00126{left:239.600000pt;}
.x107_c00126{left:240.666667pt;}
.xa6_c00126{left:242.000000pt;}
.x26_c00126{left:243.333333pt;}
.x76_c00126{left:245.866667pt;}
.x46_c00126{left:247.066667pt;}
.xc5_c00126{left:249.733333pt;}
.xa7_c00126{left:253.200000pt;}
.x10d_c00126{left:254.266667pt;}
.x8_c00126{left:257.466667pt;}
.xdf_c00126{left:259.200000pt;}
.x54_c00126{left:260.800000pt;}
.x2a_c00126{left:262.666667pt;}
.x108_c00126{left:264.000000pt;}
.x36_c00126{left:266.000000pt;}
.xd4_c00126{left:267.200000pt;}
.x134_c00126{left:268.666667pt;}
.xf6_c00126{left:269.866667pt;}
.x17_c00126{left:270.933333pt;}
.xf2_c00126{left:271.866667pt;}
.x101_c00126{left:273.866667pt;}
.x69_c00126{left:275.066667pt;}
.x125_c00126{left:276.133333pt;}
.xa9_c00126{left:277.066667pt;}
.x60_c00126{left:279.600000pt;}
.xcd_c00126{left:281.866667pt;}
.x47_c00126{left:283.866667pt;}
.x11d_c00126{left:284.800000pt;}
.x81_c00126{left:286.000000pt;}
.x77_c00126{left:287.466667pt;}
.x13e_c00126{left:289.066667pt;}
.xc6_c00126{left:292.000000pt;}
.xaa_c00126{left:293.333333pt;}
.x37_c00126{left:294.533333pt;}
.x27_c00126{left:296.800000pt;}
.x18_c00126{left:299.066667pt;}
.x95_c00126{left:301.200000pt;}
.x78_c00126{left:302.533333pt;}
.xce_c00126{left:303.600000pt;}
.x10e_c00126{left:304.533333pt;}
.x48_c00126{left:305.600000pt;}
.x61_c00126{left:308.133333pt;}
.x82_c00126{left:310.266667pt;}
.x8c_c00126{left:311.866667pt;}
.x148_c00126{left:313.600000pt;}
.x6a_c00126{left:316.666667pt;}
.x135_c00126{left:318.266667pt;}
.x115_c00126{left:321.200000pt;}
.x2b_c00126{left:323.200000pt;}
.xba_c00126{left:324.666667pt;}
.x38_c00126{left:325.600000pt;}
.x96_c00126{left:326.800000pt;}
.xf7_c00126{left:328.533333pt;}
.xeb_c00126{left:329.600000pt;}
.x19_c00126{left:331.733333pt;}
.x62_c00126{left:333.466667pt;}
.xa0_c00126{left:334.666667pt;}
.x9_c00126{left:336.800000pt;}
.x123_c00126{left:337.733333pt;}
.x83_c00126{left:338.800000pt;}
.x6b_c00126{left:340.000000pt;}
.x109_c00126{left:341.333333pt;}
.xe0_c00126{left:344.933333pt;}
.x55_c00126{left:347.200000pt;}
.xd5_c00126{left:348.800000pt;}
.x136_c00126{left:350.000000pt;}
.x39_c00126{left:351.466667pt;}
.x11e_c00126{left:352.933333pt;}
.x142_c00126{left:354.400000pt;}
.xcf_c00126{left:356.133333pt;}
.xf3_c00126{left:357.200000pt;}
.x63_c00126{left:358.133333pt;}
.xbb_c00126{left:359.866667pt;}
.xb2_c00126{left:362.000000pt;}
.xfd_c00126{left:363.066667pt;}
.xc7_c00126{left:364.266667pt;}
.x149_c00126{left:365.200000pt;}
.x1a_c00126{left:366.666667pt;}
.x2c_c00126{left:367.733333pt;}
.x10a_c00126{left:368.800000pt;}
.x143_c00126{left:370.133333pt;}
.xf8_c00126{left:372.933333pt;}
.x49_c00126{left:374.400000pt;}
.x11a_c00126{left:376.266667pt;}
.x84_c00126{left:378.800000pt;}
.xec_c00126{left:379.866667pt;}
.x79_c00126{left:382.533333pt;}
.x133_c00126{left:383.866667pt;}
.x3a_c00126{left:386.000000pt;}
.xa_c00126{left:387.733333pt;}
.xe1_c00126{left:389.066667pt;}
.x8d_c00126{left:392.133333pt;}
.xd6_c00126{left:393.333333pt;}
.x64_c00126{left:394.933333pt;}
.x137_c00126{left:397.066667pt;}
.xc8_c00126{left:398.133333pt;}
.xbc_c00126{left:399.200000pt;}
.x6c_c00126{left:401.066667pt;}
.x2_c00126{left:402.666667pt;}
.x128_c00126{left:403.866667pt;}
.xe2_c00126{left:404.800000pt;}
.x12d_c00126{left:406.000000pt;}
.x2d_c00126{left:407.066667pt;}
.x1b_c00126{left:408.000000pt;}
.xb3_c00126{left:409.066667pt;}
.x126_c00126{left:410.933333pt;}
.x56_c00126{left:411.866667pt;}
.x4a_c00126{left:413.466667pt;}
.x140_c00126{left:416.400000pt;}
.x10b_c00126{left:420.266667pt;}
.x3b_c00126{left:421.200000pt;}
.x8e_c00126{left:423.200000pt;}
.xa1_c00126{left:425.200000pt;}
.x1c_c00126{left:426.533333pt;}
.xf4_c00126{left:427.600000pt;}
.xb_c00126{left:429.066667pt;}
.x57_c00126{left:431.066667pt;}
.x85_c00126{left:432.266667pt;}
.xbd_c00126{left:433.733333pt;}
.x116_c00126{left:435.333333pt;}
.x129_c00126{left:438.400000pt;}
.xb4_c00126{left:440.800000pt;}
.x11f_c00126{left:442.133333pt;}
.x4b_c00126{left:444.133333pt;}
.x3c_c00126{left:447.466667pt;}
.x2e_c00126{left:448.666667pt;}
.x65_c00126{left:450.666667pt;}
.xd7_c00126{left:453.466667pt;}
.xc_c00126{left:456.533333pt;}
.x6d_c00126{left:458.666667pt;}
.xfe_c00126{left:460.400000pt;}
.x10f_c00126{left:461.600000pt;}
.xed_c00126{left:464.000000pt;}
.xa2_c00126{left:464.933333pt;}
.x102_c00126{left:466.000000pt;}
.xb5_c00126{left:467.333333pt;}
.xc9_c00126{left:468.933333pt;}
.x117_c00126{left:470.266667pt;}
.xab_c00126{left:471.200000pt;}
.x3d_c00126{left:473.733333pt;}
.x146_c00126{left:475.466667pt;}
.xf9_c00126{left:476.400000pt;}
.xee_c00126{left:477.733333pt;}
.xd8_c00126{left:479.333333pt;}
.x138_c00126{left:481.866667pt;}
.x97_c00126{left:482.933333pt;}
.x1d_c00126{left:484.800000pt;}
.x4c_c00126{left:486.400000pt;}
.xff_c00126{left:487.333333pt;}
.x66_c00126{left:488.800000pt;}
.x6e_c00126{left:489.733333pt;}
.x110_c00126{left:491.733333pt;}
.x3e_c00126{left:492.933333pt;}
.x8f_c00126{left:493.866667pt;}
.xbe_c00126{left:496.666667pt;}
.x1e_c00126{left:498.266667pt;}
.x98_c00126{left:500.800000pt;}
.xd_c00126{left:502.000000pt;}
.x7a_c00126{left:503.733333pt;}
.xef_c00126{left:505.600000pt;}
.x6f_c00126{left:507.333333pt;}
.xca_c00126{left:508.666667pt;}
.x2f_c00126{left:511.066667pt;}
.x103_c00126{left:513.733333pt;}
.x90_c00126{left:516.533333pt;}
.x3f_c00126{left:517.866667pt;}
.x58_c00126{left:519.333333pt;}
.x99_c00126{left:521.333333pt;}
.x4d_c00126{left:522.266667pt;}
.x7b_c00126{left:523.600000pt;}
.xe7_c00126{left:524.533333pt;}
.x111_c00126{left:525.600000pt;}
.xe_c00126{left:526.933333pt;}
.xe3_c00126{left:528.266667pt;}
.x120_c00126{left:530.133333pt;}
.x104_c00126{left:531.600000pt;}
.x12a_c00126{left:533.466667pt;}
.xa3_c00126{left:534.666667pt;}
.x86_c00126{left:535.600000pt;}
.x139_c00126{left:536.533333pt;}
.xd9_c00126{left:539.200000pt;}
.xac_c00126{left:540.666667pt;}
.xfa_c00126{left:541.866667pt;}
.x10c_c00126{left:544.400000pt;}
.x4e_c00126{left:545.333333pt;}
.x124_c00126{left:547.466667pt;}
.xbf_c00126{left:549.466667pt;}
.xcb_c00126{left:550.533333pt;}
.x40_c00126{left:551.466667pt;}
.x30_c00126{left:553.333333pt;}
.xe8_c00126{left:554.266667pt;}
.x91_c00126{left:557.200000pt;}
.x12e_c00126{left:558.400000pt;}
.x9a_c00126{left:561.066667pt;}
.x1f_c00126{left:563.200000pt;}
.x41_c00126{left:564.533333pt;}
.x105_c00126{left:566.133333pt;}
.xf0_c00126{left:568.400000pt;}
.x70_c00126{left:570.000000pt;}
.xf_c00126{left:572.666667pt;}
.x13a_c00126{left:574.000000pt;}
.x12b_c00126{left:575.733333pt;}
.x31_c00126{left:576.666667pt;}
.xc0_c00126{left:578.533333pt;}
.x92_c00126{left:579.866667pt;}
.xf5_c00126{left:580.933333pt;}
.x10_c00126{left:582.533333pt;}
.x144_c00126{left:586.400000pt;}
.xa4_c00126{left:587.466667pt;}
.x71_c00126{left:588.933333pt;}
.x4f_c00126{left:590.133333pt;}
.x59_c00126{left:593.333333pt;}
.x42_c00126{left:595.200000pt;}
.x7c_c00126{left:597.466667pt;}
.xe9_c00126{left:599.066667pt;}
.x20_c00126{left:600.266667pt;}
.x112_c00126{left:603.066667pt;}
.xd0_c00126{left:608.800000pt;}
.x11_c00126{left:611.066667pt;}
.xda_c00126{left:613.066667pt;}
.x5a_c00126{left:614.800000pt;}
.xf1_c00126{left:616.133333pt;}
.x13b_c00126{left:617.200000pt;}
.xad_c00126{left:619.333333pt;}
.x7d_c00126{left:621.733333pt;}
.x87_c00126{left:622.666667pt;}
.x12_c00126{left:623.600000pt;}
.x43_c00126{left:624.933333pt;}
.x32_c00126{left:627.600000pt;}
.xb6_c00126{left:628.533333pt;}
.xd1_c00126{left:631.466667pt;}
.x121_c00126{left:633.600000pt;}
.x11b_c00126{left:636.000000pt;}
.x13c_c00126{left:637.333333pt;}
.x9b_c00126{left:638.533333pt;}
.x5b_c00126{left:639.733333pt;}
.x118_c00126{left:641.333333pt;}
.x21_c00126{left:642.533333pt;}
.x50_c00126{left:643.600000pt;}
.x72_c00126{left:645.866667pt;}
.x33_c00126{left:646.800000pt;}
.x88_c00126{left:648.533333pt;}
.xd2_c00126{left:653.600000pt;}
.x122_c00126{left:656.666667pt;}
.xe4_c00126{left:657.866667pt;}
.x9c_c00126{left:660.266667pt;}
.x7e_c00126{left:662.666667pt;}
.x22_c00126{left:663.600000pt;}
.xcc_c00126{left:665.200000pt;}
.x113_c00126{left:666.400000pt;}
.xc1_c00126{left:668.800000pt;}
.xdb_c00126{left:671.600000pt;}
.x5c_c00126{left:673.333333pt;}
.x13_c00126{left:674.533333pt;}
.x12c_c00126{left:676.266667pt;}
.x106_c00126{left:679.333333pt;}
.x73_c00126{left:680.400000pt;}
.x89_c00126{left:682.133333pt;}
.x9d_c00126{left:684.000000pt;}
.xae_c00126{left:684.933333pt;}
.x23_c00126{left:688.933333pt;}
.xc2_c00126{left:692.533333pt;}
.x51_c00126{left:694.800000pt;}
.x5d_c00126{left:695.733333pt;}
.x14_c00126{left:697.200000pt;}
.x34_c00126{left:699.333333pt;}
.xdc_c00126{left:704.266667pt;}
.x12f_c00126{left:705.200000pt;}
}





/* 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_c00127 {
    display:none;
  }
  .loading-indicator_c00127.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00127 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_c00127 { 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_c00127" -> "#page-container .classname_c00127")
 */
.pf_c00127 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00127 { /* 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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00127 { /* 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_c00127 { /* 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_c00127 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00127 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00127 {overflow:visible;}
  }
}
.c_c00127 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00127 { /* 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_c00127:after { /* webkit #35443 */
  content: '';
}
.t_c00127:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00127 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 */
}
.__c00127 { /* 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_c00127 { /* info for Javascript */
  display:none;
}
.l_c00127 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00127 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00127 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00127: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_c00127 {
    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_c00127.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00127.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_c00127 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00127{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.000000;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_c00127{transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.016250,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{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__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:transparent;}
.fs0_c00127{font-size:36.000000px;}
.y0_c00127{bottom:0.000000px;}
.y1_c00127{bottom:1119.600000px;}
.h2_c00127{height:36.000000px;}
.h1_c00127{height:1167.750000px;}
.h0_c00127{height:1167.839997px;}
.w1_c00127{width:920.250000px;}
.w0_c00127{width:920.519990px;}
.x0_c00127{left:0.000000px;}
.x1_c00127{left:819.750000px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.000000pt;}
.fs0_c00127{font-size:32.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y1_c00127{bottom:995.200000pt;}
.h2_c00127{height:32.000000pt;}
.h1_c00127{height:1038.000000pt;}
.h0_c00127{height:1038.079997pt;}
.w1_c00127{width:818.000000pt;}
.w0_c00127{width:818.239991pt;}
.x0_c00127{left:0.000000pt;}
.x1_c00127{left:728.666667pt;}
}





/* 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_c00128 {
    display:none;
  }
  .loading-indicator_c00128.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00128 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_c00128 { 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_c00128" -> "#page-container .classname_c00128")
 */
.pf_c00128 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00128 { /* 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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00128 { /* 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_c00128 { /* 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_c00128 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00128 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00128 {overflow:visible;}
  }
}
.c_c00128 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00128 { /* 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_c00128:after { /* webkit #35443 */
  content: '';
}
.t_c00128:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00128 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 */
}
.__c00128 { /* 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_c00128 { /* info for Javascript */
  display:none;
}
.l_c00128 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00128 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00128 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00128: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_c00128 {
    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_c00128.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00128.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_c00128 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00128{font-family:sans-serif;visibility:hidden;}
.sc__c00128{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
}
.y0_c00128{bottom:0.000000px;}
.h1_c00128{height:1167.750000px;}
.h0_c00128{height:1167.839997px;}
.w1_c00128{width:920.250000px;}
.w0_c00128{width:920.519990px;}
.x0_c00128{left:0.000000px;}
@media print{
.y0_c00128{bottom:0.000000pt;}
.h1_c00128{height:1038.000000pt;}
.h0_c00128{height:1038.079997pt;}
.w1_c00128{width:818.000000pt;}
.w0_c00128{width:818.239991pt;}
.x0_c00128{left:0.000000pt;}
}





/* 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_c00129 {
    display:none;
  }
  .loading-indicator_c00129.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00129 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_c00129 { 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_c00129" -> "#page-container .classname_c00129")
 */
.pf_c00129 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00129 { /* 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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00129 { /* 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_c00129 { /* 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_c00129 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00129 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00129 {overflow:visible;}
  }
}
.c_c00129 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00129 { /* 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_c00129:after { /* webkit #35443 */
  content: '';
}
.t_c00129:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00129 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 */
}
.__c00129 { /* 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_c00129 { /* info for Javascript */
  display:none;
}
.l_c00129 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00129 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00129 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00129: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_c00129 {
    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_c00129.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00129.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_c00129 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00129{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00129;src:url('chunks/assets/font_5ee62836daa9b4c1c6cfc156.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.000000;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;}
.m59_c00129{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00129{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00129{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00129{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00129{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m65_c00129{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00129{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m95_c00129{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m94_c00129{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m34_c00129{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m89_c00129{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00129{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2_c00129{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00129{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m90_c00129{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m63_c00129{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00129{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00129{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc_c00129{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m19_c00129{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m61_c00129{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m81_c00129{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m78_c00129{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m16_c00129{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m86_c00129{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00129{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00129{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00129{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m39_c00129{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m48_c00129{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);}
.m27_c00129{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00129{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00129{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00129{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m70_c00129{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m47_c00129{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00129{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m93_c00129{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m52_c00129{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00129{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m88_c00129{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.md_c00129{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00129{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m80_c00129{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m68_c00129{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00129{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00129{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m6_c00129{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00129{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m15_c00129{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.me_c00129{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00129{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382000,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.v0_c00129{vertical-align:0.000000px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{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__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00129{word-spacing:0.000000px;}
.ws3_c00129{word-spacing:1.500000px;}
.ws1_c00129{word-spacing:9.250000px;}
.ws0_c00129{word-spacing:9.284454px;}
.ws2_c00129{word-spacing:15.891412px;}
.fc0_c00129{color:transparent;}
.fs1_c00129{font-size:42.000000px;}
.fs2_c00129{font-size:54.000000px;}
.fs0_c00129{font-size:66.000000px;}
.y0_c00129{bottom:0.000000px;}
.y24_c00129{bottom:141.750000px;}
.y23_c00129{bottom:157.650000px;}
.y22_c00129{bottom:173.550000px;}
.y21_c00129{bottom:188.700000px;}
.y20_c00129{bottom:204.450000px;}
.y1f_c00129{bottom:219.900000px;}
.y1e_c00129{bottom:253.050000px;}
.y1d_c00129{bottom:271.800000px;}
.y1c_c00129{bottom:291.600000px;}
.y1b_c00129{bottom:311.700000px;}
.y1a_c00129{bottom:331.500000px;}
.y19_c00129{bottom:351.300000px;}
.y18_c00129{bottom:371.400000px;}
.y17_c00129{bottom:391.500000px;}
.y16_c00129{bottom:411.300000px;}
.y15_c00129{bottom:431.400000px;}
.y14_c00129{bottom:451.200000px;}
.y13_c00129{bottom:471.300000px;}
.y12_c00129{bottom:491.100000px;}
.y11_c00129{bottom:510.900000px;}
.y10_c00129{bottom:531.000000px;}
.yf_c00129{bottom:550.800000px;}
.ye_c00129{bottom:570.900000px;}
.yd_c00129{bottom:590.700000px;}
.yc_c00129{bottom:611.250000px;}
.yb_c00129{bottom:631.050000px;}
.ya_c00129{bottom:651.150000px;}
.y9_c00129{bottom:671.250000px;}
.y8_c00129{bottom:690.750000px;}
.y7_c00129{bottom:710.550000px;}
.y6_c00129{bottom:730.350000px;}
.y5_c00129{bottom:750.900000px;}
.y4_c00129{bottom:770.700000px;}
.y3_c00129{bottom:803.850000px;}
.y2_c00129{bottom:837.300000px;}
.y1_c00129{bottom:1042.500000px;}
.h3_c00129{height:42.000000px;}
.h4_c00129{height:54.000000px;}
.h2_c00129{height:66.000000px;}
.h1_c00129{height:1167.750000px;}
.h0_c00129{height:1167.839997px;}
.w1_c00129{width:920.250000px;}
.w0_c00129{width:920.519990px;}
.x0_c00129{left:0.000000px;}
.xc1_c00129{left:106.650000px;}
.x8b_c00129{left:108.000000px;}
.x8_c00129{left:109.050000px;}
.x106_c00129{left:125.700000px;}
.x3f_c00129{left:127.650000px;}
.x7f_c00129{left:129.000000px;}
.xfc_c00129{left:131.400000px;}
.xe0_c00129{left:132.450000px;}
.x10b_c00129{left:134.700000px;}
.x30_c00129{left:137.100000px;}
.xac_c00129{left:138.900000px;}
.xcb_c00129{left:142.350000px;}
.x8c_c00129{left:144.000000px;}
.x9_c00129{left:146.850000px;}
.x40_c00129{left:150.000000px;}
.xe8_c00129{left:154.950000px;}
.x80_c00129{left:156.750000px;}
.x31_c00129{left:159.450000px;}
.x18_c00129{left:161.700000px;}
.xbb_c00129{left:162.900000px;}
.x24_c00129{left:165.000000px;}
.xe9_c00129{left:167.250000px;}
.xad_c00129{left:171.300000px;}
.x61_c00129{left:173.850000px;}
.xfd_c00129{left:177.900000px;}
.x96_c00129{left:179.250000px;}
.x8d_c00129{left:181.050000px;}
.x19_c00129{left:183.000000px;}
.xa_c00129{left:186.450000px;}
.x107_c00129{left:189.300000px;}
.xf3_c00129{left:191.250000px;}
.xd5_c00129{left:192.900000px;}
.x62_c00129{left:193.950000px;}
.x110_c00129{left:196.500000px;}
.x6b_c00129{left:197.850000px;}
.x25_c00129{left:200.250000px;}
.x97_c00129{left:202.650000px;}
.x8e_c00129{left:204.450000px;}
.xdb_c00129{left:207.000000px;}
.xbc_c00129{left:208.200000px;}
.x108_c00129{left:210.600000px;}
.xe1_c00129{left:211.950000px;}
.x57_c00129{left:216.000000px;}
.xb_c00129{left:220.350000px;}
.x4d_c00129{left:221.550000px;}
.xfe_c00129{left:222.600000px;}
.x10c_c00129{left:224.400000px;}
.x1a_c00129{left:226.950000px;}
.xa1_c00129{left:228.600000px;}
.xb6_c00129{left:229.650000px;}
.x32_c00129{left:234.300000px;}
.x77_c00129{left:236.400000px;}
.xf6_c00129{left:237.750000px;}
.xd6_c00129{left:239.700000px;}
.x8f_c00129{left:240.750000px;}
.x10d_c00129{left:242.700000px;}
.xe2_c00129{left:244.650000px;}
.xf0_c00129{left:248.850000px;}
.x90_c00129{left:251.850000px;}
.x33_c00129{left:253.050000px;}
.x98_c00129{left:255.600000px;}
.x78_c00129{left:257.700000px;}
.x41_c00129{left:259.950000px;}
.xd7_c00129{left:262.050000px;}
.x34_c00129{left:263.550000px;}
.xa2_c00129{left:267.150000px;}
.xc_c00129{left:271.500000px;}
.xea_c00129{left:274.200000px;}
.x63_c00129{left:276.450000px;}
.xcc_c00129{left:279.600000px;}
.x79_c00129{left:281.400000px;}
.x6c_c00129{left:284.250000px;}
.xf4_c00129{left:286.200000px;}
.x58_c00129{left:290.850000px;}
.xd_c00129{left:293.400000px;}
.xe3_c00129{left:295.350000px;}
.x42_c00129{left:296.700000px;}
.x1b_c00129{left:298.650000px;}
.x99_c00129{left:302.100000px;}
.x35_c00129{left:304.650000px;}
.xf7_c00129{left:305.850000px;}
.xae_c00129{left:307.050000px;}
.x7a_c00129{left:315.900000px;}
.x26_c00129{left:316.950000px;}
.x1c_c00129{left:319.950000px;}
.x64_c00129{left:321.750000px;}
.xe_c00129{left:324.300000px;}
.x81_c00129{left:326.250000px;}
.x43_c00129{left:331.950000px;}
.x6d_c00129{left:334.950000px;}
.x4_c00129{left:336.900000px;}
.x10e_c00129{left:339.000000px;}
.xa3_c00129{left:340.200000px;}
.x36_c00129{left:341.700000px;}
.x44_c00129{left:344.250000px;}
.xaf_c00129{left:345.900000px;}
.x6e_c00129{left:347.250000px;}
.x91_c00129{left:349.350000px;}
.x1d_c00129{left:351.300000px;}
.x37_c00129{left:356.100000px;}
.x82_c00129{left:358.650000px;}
.xb7_c00129{left:359.850000px;}
.x4e_c00129{left:363.000000px;}
.xd1_c00129{left:366.000000px;}
.xdc_c00129{left:369.000000px;}
.xeb_c00129{left:371.400000px;}
.x59_c00129{left:374.700000px;}
.x6f_c00129{left:376.050000px;}
.xa4_c00129{left:377.700000px;}
.x9a_c00129{left:379.050000px;}
.xbd_c00129{left:381.300000px;}
.xe4_c00129{left:383.100000px;}
.x27_c00129{left:388.950000px;}
.x2_c00129{left:390.900000px;}
.xb0_c00129{left:393.000000px;}
.xc6_c00129{left:395.400000px;}
.x1e_c00129{left:398.100000px;}
.xdd_c00129{left:399.600000px;}
.x45_c00129{left:401.100000px;}
.x4f_c00129{left:402.900000px;}
.xf_c00129{left:405.300000px;}
.xa5_c00129{left:406.500000px;}
.x9b_c00129{left:407.550000px;}
.x5_c00129{left:412.500000px;}
.x70_c00129{left:414.600000px;}
.x10f_c00129{left:416.700000px;}
.x5a_c00129{left:421.500000px;}
.x7b_c00129{left:423.150000px;}
.x28_c00129{left:425.250000px;}
.xf5_c00129{left:429.450000px;}
.x46_c00129{left:432.000000px;}
.x1_c00129{left:433.800000px;}
.x92_c00129{left:436.200000px;}
.xbe_c00129{left:437.850000px;}
.x5b_c00129{left:445.200000px;}
.x38_c00129{left:446.400000px;}
.xff_c00129{left:449.550000px;}
.x83_c00129{left:451.500000px;}
.xc7_c00129{left:453.300000px;}
.x29_c00129{left:455.850000px;}
.xde_c00129{left:456.900000px;}
.x50_c00129{left:460.800000px;}
.xc2_c00129{left:462.450000px;}
.xec_c00129{left:467.250000px;}
.x6_c00129{left:468.300000px;}
.x10_c00129{left:469.350000px;}
.x71_c00129{left:471.900000px;}
.xb8_c00129{left:474.750000px;}
.x3_c00129{left:476.250000px;}
.xc8_c00129{left:478.500000px;}
.x109_c00129{left:481.050000px;}
.xf8_c00129{left:482.250000px;}
.xdf_c00129{left:485.400000px;}
.x84_c00129{left:486.750000px;}
.x65_c00129{left:490.200000px;}
.x51_c00129{left:491.400000px;}
.x93_c00129{left:495.600000px;}
.xcd_c00129{left:497.700000px;}
.x7_c00129{left:498.900000px;}
.x9c_c00129{left:500.400000px;}
.x5c_c00129{left:502.800000px;}
.xbf_c00129{left:506.250000px;}
.x39_c00129{left:507.900000px;}
.x11_c00129{left:509.700000px;}
.xd2_c00129{left:512.100000px;}
.x85_c00129{left:514.050000px;}
.x47_c00129{left:517.350000px;}
.xd8_c00129{left:519.000000px;}
.x9d_c00129{left:520.200000px;}
.x7c_c00129{left:521.400000px;}
.x5d_c00129{left:523.650000px;}
.xa6_c00129{left:527.400000px;}
.xf9_c00129{left:530.100000px;}
.x2a_c00129{left:534.300000px;}
.xb1_c00129{left:535.950000px;}
.xc3_c00129{left:537.750000px;}
.x72_c00129{left:538.800000px;}
.xed_c00129{left:540.600000px;}
.x9e_c00129{left:542.850000px;}
.x12_c00129{left:545.400000px;}
.xa7_c00129{left:547.950000px;}
.x1f_c00129{left:550.350000px;}
.x100_c00129{left:553.200000px;}
.x5e_c00129{left:555.300000px;}
.xb9_c00129{left:559.050000px;}
.xc9_c00129{left:562.500000px;}
.x48_c00129{left:566.250000px;}
.xb2_c00129{left:567.300000px;}
.x103_c00129{left:568.650000px;}
.xd9_c00129{left:569.700000px;}
.x66_c00129{left:571.500000px;}
.x13_c00129{left:575.700000px;}
.x3a_c00129{left:578.400000px;}
.x73_c00129{left:581.700000px;}
.x49_c00129{left:583.500000px;}
.x94_c00129{left:585.300000px;}
.xce_c00129{left:586.350000px;}
.xa8_c00129{left:589.650000px;}
.x86_c00129{left:591.150000px;}
.x2b_c00129{left:597.000000px;}
.xfa_c00129{left:599.100000px;}
.xee_c00129{left:600.300000px;}
.xc4_c00129{left:601.350000px;}
.xcf_c00129{left:604.350000px;}
.xf1_c00129{left:607.350000px;}
.x87_c00129{left:609.150000px;}
.x74_c00129{left:610.200000px;}
.x3b_c00129{left:612.900000px;}
.x20_c00129{left:615.450000px;}
.xa9_c00129{left:617.400000px;}
.xe5_c00129{left:621.150000px;}
.x4a_c00129{left:622.800000px;}
.xf2_c00129{left:624.300000px;}
.x52_c00129{left:625.800000px;}
.xd3_c00129{left:627.300000px;}
.x14_c00129{left:629.400000px;}
.x95_c00129{left:632.100000px;}
.xb3_c00129{left:633.150000px;}
.x67_c00129{left:635.250000px;}
.x2c_c00129{left:636.300000px;}
.x88_c00129{left:637.650000px;}
.x3c_c00129{left:640.650000px;}
.xe6_c00129{left:641.700000px;}
.x21_c00129{left:647.100000px;}
.x53_c00129{left:649.200000px;}
.xef_c00129{left:651.000000px;}
.x10a_c00129{left:653.100000px;}
.xaa_c00129{left:654.900000px;}
.x9f_c00129{left:657.300000px;}
.xb4_c00129{left:661.950000px;}
.x75_c00129{left:663.450000px;}
.x68_c00129{left:665.850000px;}
.x104_c00129{left:667.200000px;}
.x2d_c00129{left:668.400000px;}
.xe7_c00129{left:669.750000px;}
.x89_c00129{left:671.850000px;}
.x15_c00129{left:673.350000px;}
.x5f_c00129{left:678.450000px;}
.x105_c00129{left:682.650000px;}
.xc5_c00129{left:686.400000px;}
.xd0_c00129{left:687.900000px;}
.x22_c00129{left:689.550000px;}
.xab_c00129{left:691.650000px;}
.x101_c00129{left:697.050000px;}
.x2e_c00129{left:699.000000px;}
.x16_c00129{left:702.450000px;}
.x7d_c00129{left:704.550000px;}
.x54_c00129{left:706.500000px;}
.x69_c00129{left:709.050000px;}
.x3d_c00129{left:711.600000px;}
.xc0_c00129{left:714.000000px;}
.x23_c00129{left:715.500000px;}
.x4b_c00129{left:716.850000px;}
.x60_c00129{left:721.650000px;}
.xa0_c00129{left:722.850000px;}
.xba_c00129{left:724.200000px;}
.x7e_c00129{left:725.850000px;}
.x55_c00129{left:727.050000px;}
.xca_c00129{left:729.450000px;}
.x3e_c00129{left:733.500000px;}
.x76_c00129{left:735.750000px;}
.xd4_c00129{left:737.550000px;}
.xfb_c00129{left:738.750000px;}
.xda_c00129{left:740.400000px;}
.x2f_c00129{left:741.450000px;}
.x4c_c00129{left:742.800000px;}
.x6a_c00129{left:746.550000px;}
.x17_c00129{left:754.950000px;}
.x8a_c00129{left:757.800000px;}
.xb5_c00129{left:758.850000px;}
.x56_c00129{left:761.250000px;}
.x102_c00129{left:762.450000px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws4_c00129{word-spacing:0.000000pt;}
.ws3_c00129{word-spacing:1.333333pt;}
.ws1_c00129{word-spacing:8.222222pt;}
.ws0_c00129{word-spacing:8.252848pt;}
.ws2_c00129{word-spacing:14.125699pt;}
.fs1_c00129{font-size:37.333333pt;}
.fs2_c00129{font-size:48.000000pt;}
.fs0_c00129{font-size:58.666667pt;}
.y0_c00129{bottom:0.000000pt;}
.y24_c00129{bottom:126.000000pt;}
.y23_c00129{bottom:140.133333pt;}
.y22_c00129{bottom:154.266667pt;}
.y21_c00129{bottom:167.733333pt;}
.y20_c00129{bottom:181.733333pt;}
.y1f_c00129{bottom:195.466667pt;}
.y1e_c00129{bottom:224.933333pt;}
.y1d_c00129{bottom:241.600000pt;}
.y1c_c00129{bottom:259.200000pt;}
.y1b_c00129{bottom:277.066667pt;}
.y1a_c00129{bottom:294.666667pt;}
.y19_c00129{bottom:312.266667pt;}
.y18_c00129{bottom:330.133333pt;}
.y17_c00129{bottom:348.000000pt;}
.y16_c00129{bottom:365.600000pt;}
.y15_c00129{bottom:383.466667pt;}
.y14_c00129{bottom:401.066667pt;}
.y13_c00129{bottom:418.933333pt;}
.y12_c00129{bottom:436.533333pt;}
.y11_c00129{bottom:454.133333pt;}
.y10_c00129{bottom:472.000000pt;}
.yf_c00129{bottom:489.600000pt;}
.ye_c00129{bottom:507.466667pt;}
.yd_c00129{bottom:525.066667pt;}
.yc_c00129{bottom:543.333333pt;}
.yb_c00129{bottom:560.933333pt;}
.ya_c00129{bottom:578.800000pt;}
.y9_c00129{bottom:596.666667pt;}
.y8_c00129{bottom:614.000000pt;}
.y7_c00129{bottom:631.600000pt;}
.y6_c00129{bottom:649.200000pt;}
.y5_c00129{bottom:667.466667pt;}
.y4_c00129{bottom:685.066667pt;}
.y3_c00129{bottom:714.533333pt;}
.y2_c00129{bottom:744.266667pt;}
.y1_c00129{bottom:926.666667pt;}
.h3_c00129{height:37.333333pt;}
.h4_c00129{height:48.000000pt;}
.h2_c00129{height:58.666667pt;}
.h1_c00129{height:1038.000000pt;}
.h0_c00129{height:1038.079997pt;}
.w1_c00129{width:818.000000pt;}
.w0_c00129{width:818.239991pt;}
.x0_c00129{left:0.000000pt;}
.xc1_c00129{left:94.800000pt;}
.x8b_c00129{left:96.000000pt;}
.x8_c00129{left:96.933333pt;}
.x106_c00129{left:111.733333pt;}
.x3f_c00129{left:113.466667pt;}
.x7f_c00129{left:114.666667pt;}
.xfc_c00129{left:116.800000pt;}
.xe0_c00129{left:117.733333pt;}
.x10b_c00129{left:119.733333pt;}
.x30_c00129{left:121.866667pt;}
.xac_c00129{left:123.466667pt;}
.xcb_c00129{left:126.533333pt;}
.x8c_c00129{left:128.000000pt;}
.x9_c00129{left:130.533333pt;}
.x40_c00129{left:133.333333pt;}
.xe8_c00129{left:137.733333pt;}
.x80_c00129{left:139.333333pt;}
.x31_c00129{left:141.733333pt;}
.x18_c00129{left:143.733333pt;}
.xbb_c00129{left:144.800000pt;}
.x24_c00129{left:146.666667pt;}
.xe9_c00129{left:148.666667pt;}
.xad_c00129{left:152.266667pt;}
.x61_c00129{left:154.533333pt;}
.xfd_c00129{left:158.133333pt;}
.x96_c00129{left:159.333333pt;}
.x8d_c00129{left:160.933333pt;}
.x19_c00129{left:162.666667pt;}
.xa_c00129{left:165.733333pt;}
.x107_c00129{left:168.266667pt;}
.xf3_c00129{left:170.000000pt;}
.xd5_c00129{left:171.466667pt;}
.x62_c00129{left:172.400000pt;}
.x110_c00129{left:174.666667pt;}
.x6b_c00129{left:175.866667pt;}
.x25_c00129{left:178.000000pt;}
.x97_c00129{left:180.133333pt;}
.x8e_c00129{left:181.733333pt;}
.xdb_c00129{left:184.000000pt;}
.xbc_c00129{left:185.066667pt;}
.x108_c00129{left:187.200000pt;}
.xe1_c00129{left:188.400000pt;}
.x57_c00129{left:192.000000pt;}
.xb_c00129{left:195.866667pt;}
.x4d_c00129{left:196.933333pt;}
.xfe_c00129{left:197.866667pt;}
.x10c_c00129{left:199.466667pt;}
.x1a_c00129{left:201.733333pt;}
.xa1_c00129{left:203.200000pt;}
.xb6_c00129{left:204.133333pt;}
.x32_c00129{left:208.266667pt;}
.x77_c00129{left:210.133333pt;}
.xf6_c00129{left:211.333333pt;}
.xd6_c00129{left:213.066667pt;}
.x8f_c00129{left:214.000000pt;}
.x10d_c00129{left:215.733333pt;}
.xe2_c00129{left:217.466667pt;}
.xf0_c00129{left:221.200000pt;}
.x90_c00129{left:223.866667pt;}
.x33_c00129{left:224.933333pt;}
.x98_c00129{left:227.200000pt;}
.x78_c00129{left:229.066667pt;}
.x41_c00129{left:231.066667pt;}
.xd7_c00129{left:232.933333pt;}
.x34_c00129{left:234.266667pt;}
.xa2_c00129{left:237.466667pt;}
.xc_c00129{left:241.333333pt;}
.xea_c00129{left:243.733333pt;}
.x63_c00129{left:245.733333pt;}
.xcc_c00129{left:248.533333pt;}
.x79_c00129{left:250.133333pt;}
.x6c_c00129{left:252.666667pt;}
.xf4_c00129{left:254.400000pt;}
.x58_c00129{left:258.533333pt;}
.xd_c00129{left:260.800000pt;}
.xe3_c00129{left:262.533333pt;}
.x42_c00129{left:263.733333pt;}
.x1b_c00129{left:265.466667pt;}
.x99_c00129{left:268.533333pt;}
.x35_c00129{left:270.800000pt;}
.xf7_c00129{left:271.866667pt;}
.xae_c00129{left:272.933333pt;}
.x7a_c00129{left:280.800000pt;}
.x26_c00129{left:281.733333pt;}
.x1c_c00129{left:284.400000pt;}
.x64_c00129{left:286.000000pt;}
.xe_c00129{left:288.266667pt;}
.x81_c00129{left:290.000000pt;}
.x43_c00129{left:295.066667pt;}
.x6d_c00129{left:297.733333pt;}
.x4_c00129{left:299.466667pt;}
.x10e_c00129{left:301.333333pt;}
.xa3_c00129{left:302.400000pt;}
.x36_c00129{left:303.733333pt;}
.x44_c00129{left:306.000000pt;}
.xaf_c00129{left:307.466667pt;}
.x6e_c00129{left:308.666667pt;}
.x91_c00129{left:310.533333pt;}
.x1d_c00129{left:312.266667pt;}
.x37_c00129{left:316.533333pt;}
.x82_c00129{left:318.800000pt;}
.xb7_c00129{left:319.866667pt;}
.x4e_c00129{left:322.666667pt;}
.xd1_c00129{left:325.333333pt;}
.xdc_c00129{left:328.000000pt;}
.xeb_c00129{left:330.133333pt;}
.x59_c00129{left:333.066667pt;}
.x6f_c00129{left:334.266667pt;}
.xa4_c00129{left:335.733333pt;}
.x9a_c00129{left:336.933333pt;}
.xbd_c00129{left:338.933333pt;}
.xe4_c00129{left:340.533333pt;}
.x27_c00129{left:345.733333pt;}
.x2_c00129{left:347.466667pt;}
.xb0_c00129{left:349.333333pt;}
.xc6_c00129{left:351.466667pt;}
.x1e_c00129{left:353.866667pt;}
.xdd_c00129{left:355.200000pt;}
.x45_c00129{left:356.533333pt;}
.x4f_c00129{left:358.133333pt;}
.xf_c00129{left:360.266667pt;}
.xa5_c00129{left:361.333333pt;}
.x9b_c00129{left:362.266667pt;}
.x5_c00129{left:366.666667pt;}
.x70_c00129{left:368.533333pt;}
.x10f_c00129{left:370.400000pt;}
.x5a_c00129{left:374.666667pt;}
.x7b_c00129{left:376.133333pt;}
.x28_c00129{left:378.000000pt;}
.xf5_c00129{left:381.733333pt;}
.x46_c00129{left:384.000000pt;}
.x1_c00129{left:385.600000pt;}
.x92_c00129{left:387.733333pt;}
.xbe_c00129{left:389.200000pt;}
.x5b_c00129{left:395.733333pt;}
.x38_c00129{left:396.800000pt;}
.xff_c00129{left:399.600000pt;}
.x83_c00129{left:401.333333pt;}
.xc7_c00129{left:402.933333pt;}
.x29_c00129{left:405.200000pt;}
.xde_c00129{left:406.133333pt;}
.x50_c00129{left:409.600000pt;}
.xc2_c00129{left:411.066667pt;}
.xec_c00129{left:415.333333pt;}
.x6_c00129{left:416.266667pt;}
.x10_c00129{left:417.200000pt;}
.x71_c00129{left:419.466667pt;}
.xb8_c00129{left:422.000000pt;}
.x3_c00129{left:423.333333pt;}
.xc8_c00129{left:425.333333pt;}
.x109_c00129{left:427.600000pt;}
.xf8_c00129{left:428.666667pt;}
.xdf_c00129{left:431.466667pt;}
.x84_c00129{left:432.666667pt;}
.x65_c00129{left:435.733333pt;}
.x51_c00129{left:436.800000pt;}
.x93_c00129{left:440.533333pt;}
.xcd_c00129{left:442.400000pt;}
.x7_c00129{left:443.466667pt;}
.x9c_c00129{left:444.800000pt;}
.x5c_c00129{left:446.933333pt;}
.xbf_c00129{left:450.000000pt;}
.x39_c00129{left:451.466667pt;}
.x11_c00129{left:453.066667pt;}
.xd2_c00129{left:455.200000pt;}
.x85_c00129{left:456.933333pt;}
.x47_c00129{left:459.866667pt;}
.xd8_c00129{left:461.333333pt;}
.x9d_c00129{left:462.400000pt;}
.x7c_c00129{left:463.466667pt;}
.x5d_c00129{left:465.466667pt;}
.xa6_c00129{left:468.800000pt;}
.xf9_c00129{left:471.200000pt;}
.x2a_c00129{left:474.933333pt;}
.xb1_c00129{left:476.400000pt;}
.xc3_c00129{left:478.000000pt;}
.x72_c00129{left:478.933333pt;}
.xed_c00129{left:480.533333pt;}
.x9e_c00129{left:482.533333pt;}
.x12_c00129{left:484.800000pt;}
.xa7_c00129{left:487.066667pt;}
.x1f_c00129{left:489.200000pt;}
.x100_c00129{left:491.733333pt;}
.x5e_c00129{left:493.600000pt;}
.xb9_c00129{left:496.933333pt;}
.xc9_c00129{left:500.000000pt;}
.x48_c00129{left:503.333333pt;}
.xb2_c00129{left:504.266667pt;}
.x103_c00129{left:505.466667pt;}
.xd9_c00129{left:506.400000pt;}
.x66_c00129{left:508.000000pt;}
.x13_c00129{left:511.733333pt;}
.x3a_c00129{left:514.133333pt;}
.x73_c00129{left:517.066667pt;}
.x49_c00129{left:518.666667pt;}
.x94_c00129{left:520.266667pt;}
.xce_c00129{left:521.200000pt;}
.xa8_c00129{left:524.133333pt;}
.x86_c00129{left:525.466667pt;}
.x2b_c00129{left:530.666667pt;}
.xfa_c00129{left:532.533333pt;}
.xee_c00129{left:533.600000pt;}
.xc4_c00129{left:534.533333pt;}
.xcf_c00129{left:537.200000pt;}
.xf1_c00129{left:539.866667pt;}
.x87_c00129{left:541.466667pt;}
.x74_c00129{left:542.400000pt;}
.x3b_c00129{left:544.800000pt;}
.x20_c00129{left:547.066667pt;}
.xa9_c00129{left:548.800000pt;}
.xe5_c00129{left:552.133333pt;}
.x4a_c00129{left:553.600000pt;}
.xf2_c00129{left:554.933333pt;}
.x52_c00129{left:556.266667pt;}
.xd3_c00129{left:557.600000pt;}
.x14_c00129{left:559.466667pt;}
.x95_c00129{left:561.866667pt;}
.xb3_c00129{left:562.800000pt;}
.x67_c00129{left:564.666667pt;}
.x2c_c00129{left:565.600000pt;}
.x88_c00129{left:566.800000pt;}
.x3c_c00129{left:569.466667pt;}
.xe6_c00129{left:570.400000pt;}
.x21_c00129{left:575.200000pt;}
.x53_c00129{left:577.066667pt;}
.xef_c00129{left:578.666667pt;}
.x10a_c00129{left:580.533333pt;}
.xaa_c00129{left:582.133333pt;}
.x9f_c00129{left:584.266667pt;}
.xb4_c00129{left:588.400000pt;}
.x75_c00129{left:589.733333pt;}
.x68_c00129{left:591.866667pt;}
.x104_c00129{left:593.066667pt;}
.x2d_c00129{left:594.133333pt;}
.xe7_c00129{left:595.333333pt;}
.x89_c00129{left:597.200000pt;}
.x15_c00129{left:598.533333pt;}
.x5f_c00129{left:603.066667pt;}
.x105_c00129{left:606.800000pt;}
.xc5_c00129{left:610.133333pt;}
.xd0_c00129{left:611.466667pt;}
.x22_c00129{left:612.933333pt;}
.xab_c00129{left:614.800000pt;}
.x101_c00129{left:619.600000pt;}
.x2e_c00129{left:621.333333pt;}
.x16_c00129{left:624.400000pt;}
.x7d_c00129{left:626.266667pt;}
.x54_c00129{left:628.000000pt;}
.x69_c00129{left:630.266667pt;}
.x3d_c00129{left:632.533333pt;}
.xc0_c00129{left:634.666667pt;}
.x23_c00129{left:636.000000pt;}
.x4b_c00129{left:637.200000pt;}
.x60_c00129{left:641.466667pt;}
.xa0_c00129{left:642.533333pt;}
.xba_c00129{left:643.733333pt;}
.x7e_c00129{left:645.200000pt;}
.x55_c00129{left:646.266667pt;}
.xca_c00129{left:648.400000pt;}
.x3e_c00129{left:652.000000pt;}
.x76_c00129{left:654.000000pt;}
.xd4_c00129{left:655.600000pt;}
.xfb_c00129{left:656.666667pt;}
.xda_c00129{left:658.133333pt;}
.x2f_c00129{left:659.066667pt;}
.x4c_c00129{left:660.266667pt;}
.x6a_c00129{left:663.600000pt;}
.x17_c00129{left:671.066667pt;}
.x8a_c00129{left:673.600000pt;}
.xb5_c00129{left:674.533333pt;}
.x56_c00129{left:676.666667pt;}
.x102_c00129{left:677.733333pt;}
}





/* 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_c00130 {
    display:none;
  }
  .loading-indicator_c00130.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00130 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_c00130 { 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_c00130" -> "#page-container .classname_c00130")
 */
.pf_c00130 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00130 { /* 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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00130 { /* 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_c00130 { /* 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_c00130 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00130 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00130 {overflow:visible;}
  }
}
.c_c00130 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00130 { /* 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_c00130:after { /* webkit #35443 */
  content: '';
}
.t_c00130:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00130 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 */
}
.__c00130 { /* 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_c00130 { /* info for Javascript */
  display:none;
}
.l_c00130 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00130 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00130 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00130: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_c00130 {
    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_c00130.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00130.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_c00130 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00130{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00130;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.000000;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;}
.ma6_c00130{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m39_c00130{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maf_c00130{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m86_c00130{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00130{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m83_c00130{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00130{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m80_c00130{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00130{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m87_c00130{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mac_c00130{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00130{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00130{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00130{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mad_c00130{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00130{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00130{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00130{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00130{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.maa_c00130{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m69_c00130{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m64_c00130{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m44_c00130{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00130{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00130{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00130{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m47_c00130{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6_c00130{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00130{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00130{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00130{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m55_c00130{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00130{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m50_c00130{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m42_c00130{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00130{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m48_c00130{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00130{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m96_c00130{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);}
.m91_c00130{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00130{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00130{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m45_c00130{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.me_c00130{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00130{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m8_c00130{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m12_c00130{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00130{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf_c00130{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m89_c00130{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00130{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m37_c00130{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00130{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m90_c00130{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m5_c00130{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9_c00130{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m65_c00130{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m95_c00130{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00130{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m75_c00130{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m82_c00130{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00130{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m63_c00130{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00130{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m28_c00130{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00130{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00130{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00130{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m35_c00130{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00130{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00130{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m78_c00130{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m81_c00130{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{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__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00130{word-spacing:-9.125000px;}
.ws1_c00130{word-spacing:-7.928571px;}
.wsd_c00130{word-spacing:-7.906279px;}
.wsc_c00130{word-spacing:-7.222222px;}
.ws6_c00130{word-spacing:-6.319693px;}
.ws2_c00130{word-spacing:-3.000000px;}
.ws12_c00130{word-spacing:-2.862231px;}
.ws10_c00130{word-spacing:-2.504823px;}
.ws13_c00130{word-spacing:0.000000px;}
.ws9_c00130{word-spacing:1.500000px;}
.ws7_c00130{word-spacing:2.750000px;}
.wsb_c00130{word-spacing:3.619632px;}
.ws11_c00130{word-spacing:5.875000px;}
.wsf_c00130{word-spacing:7.625000px;}
.ws3_c00130{word-spacing:7.750000px;}
.ws0_c00130{word-spacing:9.578831px;}
.ws4_c00130{word-spacing:10.951488px;}
.wse_c00130{word-spacing:11.073870px;}
.ws8_c00130{word-spacing:15.250000px;}
.wsa_c00130{word-spacing:22.750000px;}
.fc0_c00130{color:transparent;}
.fs0_c00130{font-size:54.000000px;}
.y0_c00130{bottom:0.000000px;}
.y2c_c00130{bottom:147.300000px;}
.y2b_c00130{bottom:186.750000px;}
.y2a_c00130{bottom:207.300000px;}
.y29_c00130{bottom:227.100000px;}
.y28_c00130{bottom:246.900000px;}
.y27_c00130{bottom:267.450000px;}
.y26_c00130{bottom:287.550000px;}
.y25_c00130{bottom:307.650000px;}
.y24_c00130{bottom:327.450000px;}
.y23_c00130{bottom:347.550000px;}
.y22_c00130{bottom:367.650000px;}
.y21_c00130{bottom:387.450000px;}
.y20_c00130{bottom:407.550000px;}
.y1f_c00130{bottom:427.650000px;}
.y1e_c00130{bottom:448.050000px;}
.y1d_c00130{bottom:468.150000px;}
.y1c_c00130{bottom:488.250000px;}
.y1b_c00130{bottom:508.350000px;}
.y1a_c00130{bottom:528.450000px;}
.y19_c00130{bottom:548.250000px;}
.y18_c00130{bottom:568.050000px;}
.y17_c00130{bottom:588.150000px;}
.y16_c00130{bottom:607.650000px;}
.y15_c00130{bottom:627.450000px;}
.y14_c00130{bottom:647.550000px;}
.y13_c00130{bottom:667.650000px;}
.y12_c00130{bottom:687.750000px;}
.y11_c00130{bottom:707.550000px;}
.y10_c00130{bottom:727.650000px;}
.yf_c00130{bottom:747.750000px;}
.ye_c00130{bottom:767.700000px;}
.yd_c00130{bottom:787.800000px;}
.yc_c00130{bottom:807.600000px;}
.yb_c00130{bottom:827.700000px;}
.ya_c00130{bottom:847.500000px;}
.y9_c00130{bottom:868.050000px;}
.y8_c00130{bottom:887.850000px;}
.y7_c00130{bottom:907.950000px;}
.y6_c00130{bottom:927.750000px;}
.y5_c00130{bottom:947.850000px;}
.y4_c00130{bottom:968.100000px;}
.y3_c00130{bottom:987.900000px;}
.y2_c00130{bottom:1007.700000px;}
.y1_c00130{bottom:1046.850000px;}
.h2_c00130{height:54.000000px;}
.h1_c00130{height:1167.750000px;}
.h0_c00130{height:1167.839997px;}
.w1_c00130{width:920.250000px;}
.w0_c00130{width:920.519990px;}
.x0_c00130{left:0.000000px;}
.x13e_c00130{left:139.500000px;}
.x119_c00130{left:141.150000px;}
.xfb_c00130{left:142.650000px;}
.xdc_c00130{left:143.700000px;}
.xa0_c00130{left:145.050000px;}
.x4a_c00130{left:146.400000px;}
.x14_c00130{left:147.450000px;}
.x1_c00130{left:148.650000px;}
.xe9_c00130{left:151.200000px;}
.x102_c00130{left:159.900000px;}
.x7a_c00130{left:164.400000px;}
.x4b_c00130{left:165.450000px;}
.x15_c00130{left:166.950000px;}
.x137_c00130{left:170.250000px;}
.xdd_c00130{left:172.800000px;}
.xb8_c00130{left:174.000000px;}
.xea_c00130{left:175.650000px;}
.x95_c00130{left:176.700000px;}
.x6f_c00130{left:177.900000px;}
.x4_c00130{left:178.950000px;}
.x103_c00130{left:180.750000px;}
.x23_c00130{left:182.550000px;}
.x3d_c00130{left:183.900000px;}
.x16_c00130{left:186.450000px;}
.x8f_c00130{left:188.100000px;}
.x4c_c00130{left:189.150000px;}
.xd3_c00130{left:190.650000px;}
.x138_c00130{left:193.350000px;}
.x123_c00130{left:195.000000px;}
.x5_c00130{left:196.200000px;}
.x63_c00130{left:198.150000px;}
.x58_c00130{left:199.350000px;}
.xa9_c00130{left:201.150000px;}
.xb9_c00130{left:202.500000px;}
.xcc_c00130{left:203.850000px;}
.x90_c00130{left:205.350000px;}
.x86_c00130{left:207.600000px;}
.x70_c00130{left:210.000000px;}
.x31_c00130{left:211.650000px;}
.xd4_c00130{left:213.300000px;}
.xba_c00130{left:214.350000px;}
.x12b_c00130{left:215.550000px;}
.x13f_c00130{left:221.100000px;}
.x17_c00130{left:222.750000px;}
.x3e_c00130{left:225.300000px;}
.x104_c00130{left:226.500000px;}
.x10e_c00130{left:227.700000px;}
.x7b_c00130{left:229.200000px;}
.x140_c00130{left:230.400000px;}
.xcd_c00130{left:231.900000px;}
.x59_c00130{left:233.250000px;}
.xc3_c00130{left:237.150000px;}
.x4d_c00130{left:239.850000px;}
.x13b_c00130{left:242.250000px;}
.x11e_c00130{left:243.450000px;}
.x7c_c00130{left:246.150000px;}
.x91_c00130{left:249.300000px;}
.x71_c00130{left:251.100000px;}
.x24_c00130{left:254.100000px;}
.x96_c00130{left:255.450000px;}
.x11f_c00130{left:257.100000px;}
.x4e_c00130{left:259.950000px;}
.xeb_c00130{left:261.000000px;}
.x6_c00130{left:263.550000px;}
.xc4_c00130{left:266.250000px;}
.xf5_c00130{left:268.500000px;}
.x3f_c00130{left:269.550000px;}
.x18_c00130{left:271.050000px;}
.x32_c00130{left:272.100000px;}
.x5a_c00130{left:273.150000px;}
.xce_c00130{left:275.400000px;}
.xb3_c00130{left:277.350000px;}
.x11a_c00130{left:278.700000px;}
.x64_c00130{left:282.000000px;}
.x12c_c00130{left:283.650000px;}
.xc5_c00130{left:286.050000px;}
.x126_c00130{left:287.250000px;}
.xf6_c00130{left:289.350000px;}
.x40_c00130{left:291.150000px;}
.xb4_c00130{left:292.500000px;}
.x65_c00130{left:294.300000px;}
.x97_c00130{left:296.850000px;}
.x7d_c00130{left:300.150000px;}
.xfc_c00130{left:305.100000px;}
.x112_c00130{left:306.750000px;}
.x7_c00130{left:308.550000px;}
.xa1_c00130{left:311.700000px;}
.x19_c00130{left:313.950000px;}
.x5b_c00130{left:316.050000px;}
.x41_c00130{left:318.900000px;}
.xe5_c00130{left:321.450000px;}
.xcf_c00130{left:323.400000px;}
.x66_c00130{left:325.200000px;}
.x92_c00130{left:326.700000px;}
.xaa_c00130{left:328.650000px;}
.x1a_c00130{left:331.200000px;}
.xfd_c00130{left:333.600000px;}
.x87_c00130{left:334.800000px;}
.x127_c00130{left:335.850000px;}
.x105_c00130{left:338.400000px;}
.x98_c00130{left:341.850000px;}
.x115_c00130{left:343.050000px;}
.x13c_c00130{left:347.100000px;}
.x8_c00130{left:349.200000px;}
.x72_c00130{left:350.850000px;}
.x12f_c00130{left:352.950000px;}
.x5c_c00130{left:355.650000px;}
.xd5_c00130{left:357.000000px;}
.x1b_c00130{left:359.700000px;}
.x10f_c00130{left:361.950000px;}
.x25_c00130{left:363.150000px;}
.xab_c00130{left:364.350000px;}
.x2_c00130{left:366.750000px;}
.x33_c00130{left:369.000000px;}
.x4f_c00130{left:370.950000px;}
.xbb_c00130{left:373.800000px;}
.x99_c00130{left:376.050000px;}
.xde_c00130{left:377.550000px;}
.x9_c00130{left:380.100000px;}
.x42_c00130{left:381.900000px;}
.x5d_c00130{left:384.150000px;}
.xc6_c00130{left:385.500000px;}
.x130_c00130{left:387.150000px;}
.x34_c00130{left:390.300000px;}
.x93_c00130{left:394.350000px;}
.x43_c00130{left:396.600000px;}
.x10c_c00130{left:398.850000px;}
.xbc_c00130{left:401.100000px;}
.x141_c00130{left:402.450000px;}
.x26_c00130{left:405.600000px;}
.xa2_c00130{left:407.100000px;}
.x88_c00130{left:409.200000px;}
.x5e_c00130{left:410.400000px;}
.x67_c00130{left:412.350000px;}
.xb5_c00130{left:414.150000px;}
.x9a_c00130{left:415.950000px;}
.x7e_c00130{left:417.150000px;}
.x73_c00130{left:418.800000px;}
.x50_c00130{left:419.850000px;}
.xa_c00130{left:421.200000px;}
.x116_c00130{left:424.350000px;}
.xf0_c00130{left:426.300000px;}
.xec_c00130{left:431.700000px;}
.x94_c00130{left:433.950000px;}
.xe6_c00130{left:435.900000px;}
.x68_c00130{left:437.550000px;}
.xa3_c00130{left:439.500000px;}
.xd6_c00130{left:441.900000px;}
.xf7_c00130{left:443.100000px;}
.x3_c00130{left:445.200000px;}
.x27_c00130{left:447.000000px;}
.x7f_c00130{left:448.500000px;}
.x35_c00130{left:451.500000px;}
.x51_c00130{left:453.750000px;}
.xb_c00130{left:456.450000px;}
.xac_c00130{left:457.650000px;}
.x89_c00130{left:459.600000px;}
.x9b_c00130{left:462.450000px;}
.x44_c00130{left:466.800000px;}
.xdf_c00130{left:469.350000px;}
.xc7_c00130{left:470.850000px;}
.x12d_c00130{left:472.650000px;}
.x28_c00130{left:473.700000px;}
.x1c_c00130{left:475.950000px;}
.x69_c00130{left:477.150000px;}
.x80_c00130{left:478.800000px;}
.x131_c00130{left:480.000000px;}
.xc_c00130{left:481.650000px;}
.x110_c00130{left:483.150000px;}
.x36_c00130{left:484.950000px;}
.xe0_c00130{left:487.050000px;}
.x29_c00130{left:488.400000px;}
.x120_c00130{left:490.050000px;}
.xfe_c00130{left:491.550000px;}
.x124_c00130{left:493.800000px;}
.x1d_c00130{left:495.000000px;}
.x6a_c00130{left:496.950000px;}
.x9c_c00130{left:498.150000px;}
.xa4_c00130{left:501.000000px;}
.x128_c00130{left:502.500000px;}
.x2a_c00130{left:503.550000px;}
.x132_c00130{left:505.200000px;}
.x142_c00130{left:508.350000px;}
.x52_c00130{left:512.850000px;}
.xbd_c00130{left:514.800000px;}
.xb6_c00130{left:517.500000px;}
.xed_c00130{left:519.150000px;}
.xf1_c00130{left:520.200000px;}
.x143_c00130{left:521.250000px;}
.xf8_c00130{left:523.500000px;}
.x37_c00130{left:524.850000px;}
.xd7_c00130{left:526.500000px;}
.x9d_c00130{left:529.500000px;}
.x74_c00130{left:531.450000px;}
.x53_c00130{left:532.950000px;}
.x106_c00130{left:534.450000px;}
.x11b_c00130{left:537.300000px;}
.xd_c00130{left:538.950000px;}
.x121_c00130{left:540.150000px;}
.x8a_c00130{left:542.850000px;}
.xa5_c00130{left:546.000000px;}
.xc8_c00130{left:550.050000px;}
.xbe_c00130{left:552.600000px;}
.x45_c00130{left:553.650000px;}
.x1e_c00130{left:556.200000px;}
.x113_c00130{left:558.450000px;}
.x117_c00130{left:560.400000px;}
.x2b_c00130{left:561.450000px;}
.xad_c00130{left:563.100000px;}
.xd0_c00130{left:565.350000px;}
.x133_c00130{left:566.400000px;}
.x12e_c00130{left:568.050000px;}
.xa6_c00130{left:569.400000px;}
.x9e_c00130{left:571.200000px;}
.xe_c00130{left:572.400000px;}
.xd8_c00130{left:574.350000px;}
.x129_c00130{left:576.300000px;}
.x54_c00130{left:577.650000px;}
.xbf_c00130{left:579.300000px;}
.x38_c00130{left:580.650000px;}
.x2c_c00130{left:583.050000px;}
.x11c_c00130{left:585.150000px;}
.x81_c00130{left:586.800000px;}
.xf_c00130{left:589.650000px;}
.xae_c00130{left:594.450000px;}
.x11d_c00130{left:598.800000px;}
.xc0_c00130{left:599.850000px;}
.xff_c00130{left:601.800000px;}
.xe1_c00130{left:604.050000px;}
.x75_c00130{left:605.250000px;}
.x107_c00130{left:607.950000px;}
.xe7_c00130{left:610.650000px;}
.x6b_c00130{left:612.150000px;}
.xf2_c00130{left:614.100000px;}
.x8b_c00130{left:615.150000px;}
.xd1_c00130{left:617.250000px;}
.xd9_c00130{left:618.300000px;}
.x122_c00130{left:620.100000px;}
.xe2_c00130{left:621.750000px;}
.x2d_c00130{left:624.750000px;}
.xee_c00130{left:627.000000px;}
.x1f_c00130{left:628.200000px;}
.xf3_c00130{left:629.550000px;}
.x13d_c00130{left:631.650000px;}
.x118_c00130{left:632.700000px;}
.x46_c00130{left:634.200000px;}
.x10_c00130{left:635.400000px;}
.x39_c00130{left:638.250000px;}
.xc9_c00130{left:639.750000px;}
.x2e_c00130{left:642.000000px;}
.xf9_c00130{left:643.050000px;}
.x6c_c00130{left:645.600000px;}
.x55_c00130{left:650.100000px;}
.xa7_c00130{left:651.450000px;}
.x144_c00130{left:652.950000px;}
.xaf_c00130{left:654.150000px;}
.x5f_c00130{left:655.650000px;}
.x47_c00130{left:657.900000px;}
.x2f_c00130{left:661.800000px;}
.xca_c00130{left:665.250000px;}
.xc1_c00130{left:667.800000px;}
.x134_c00130{left:670.650000px;}
.xe3_c00130{left:671.850000px;}
.x9f_c00130{left:674.250000px;}
.x3a_c00130{left:676.050000px;}
.x11_c00130{left:678.900000px;}
.x125_c00130{left:680.700000px;}
.xb0_c00130{left:681.900000px;}
.xef_c00130{left:683.250000px;}
.x82_c00130{left:684.450000px;}
.x100_c00130{left:685.650000px;}
.x8c_c00130{left:687.750000px;}
.xe4_c00130{left:689.100000px;}
.xa8_c00130{left:690.750000px;}
.x60_c00130{left:693.450000px;}
.x20_c00130{left:694.500000px;}
.x76_c00130{left:698.100000px;}
.x108_c00130{left:699.750000px;}
.x48_c00130{left:702.600000px;}
.x139_c00130{left:703.800000px;}
.x12a_c00130{left:706.650000px;}
.x12_c00130{left:708.000000px;}
.xf4_c00130{left:710.100000px;}
.x83_c00130{left:711.450000px;}
.x56_c00130{left:713.400000px;}
.xb1_c00130{left:716.850000px;}
.x77_c00130{left:718.950000px;}
.x30_c00130{left:724.800000px;}
.x114_c00130{left:725.850000px;}
.x61_c00130{left:726.900000px;}
.x84_c00130{left:729.150000px;}
.x6d_c00130{left:732.000000px;}
.x78_c00130{left:733.650000px;}
.x109_c00130{left:735.000000px;}
.xb2_c00130{left:736.350000px;}
.x13_c00130{left:742.200000px;}
.xd2_c00130{left:745.650000px;}
.xb7_c00130{left:747.150000px;}
.x21_c00130{left:749.550000px;}
.x111_c00130{left:752.850000px;}
.x3b_c00130{left:754.200000px;}
.x10a_c00130{left:755.550000px;}
.x57_c00130{left:757.350000px;}
.x6e_c00130{left:760.500000px;}
.x101_c00130{left:761.550000px;}
.xe8_c00130{left:763.200000px;}
.x135_c00130{left:764.250000px;}
.x8d_c00130{left:765.900000px;}
.x49_c00130{left:767.700000px;}
.xda_c00130{left:768.750000px;}
.xcb_c00130{left:770.400000px;}
.x13a_c00130{left:771.450000px;}
.xfa_c00130{left:772.650000px;}
.x85_c00130{left:777.450000px;}
.x3c_c00130{left:779.700000px;}
.x136_c00130{left:781.200000px;}
.x62_c00130{left:786.000000px;}
.x10d_c00130{left:787.950000px;}
.x79_c00130{left:790.200000px;}
.x8e_c00130{left:791.850000px;}
.x22_c00130{left:793.500000px;}
.x10b_c00130{left:796.950000px;}
.xdb_c00130{left:799.650000px;}
.xc2_c00130{left:807.450000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws5_c00130{word-spacing:-8.111111pt;}
.ws1_c00130{word-spacing:-7.047619pt;}
.wsd_c00130{word-spacing:-7.027804pt;}
.wsc_c00130{word-spacing:-6.419753pt;}
.ws6_c00130{word-spacing:-5.617505pt;}
.ws2_c00130{word-spacing:-2.666667pt;}
.ws12_c00130{word-spacing:-2.544205pt;}
.ws10_c00130{word-spacing:-2.226509pt;}
.ws13_c00130{word-spacing:0.000000pt;}
.ws9_c00130{word-spacing:1.333333pt;}
.ws7_c00130{word-spacing:2.444444pt;}
.wsb_c00130{word-spacing:3.217451pt;}
.ws11_c00130{word-spacing:5.222222pt;}
.wsf_c00130{word-spacing:6.777778pt;}
.ws3_c00130{word-spacing:6.888889pt;}
.ws0_c00130{word-spacing:8.514517pt;}
.ws4_c00130{word-spacing:9.734656pt;}
.wse_c00130{word-spacing:9.843440pt;}
.ws8_c00130{word-spacing:13.555556pt;}
.wsa_c00130{word-spacing:20.222222pt;}
.fs0_c00130{font-size:48.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y2c_c00130{bottom:130.933333pt;}
.y2b_c00130{bottom:166.000000pt;}
.y2a_c00130{bottom:184.266667pt;}
.y29_c00130{bottom:201.866667pt;}
.y28_c00130{bottom:219.466667pt;}
.y27_c00130{bottom:237.733333pt;}
.y26_c00130{bottom:255.600000pt;}
.y25_c00130{bottom:273.466667pt;}
.y24_c00130{bottom:291.066667pt;}
.y23_c00130{bottom:308.933333pt;}
.y22_c00130{bottom:326.800000pt;}
.y21_c00130{bottom:344.400000pt;}
.y20_c00130{bottom:362.266667pt;}
.y1f_c00130{bottom:380.133333pt;}
.y1e_c00130{bottom:398.266667pt;}
.y1d_c00130{bottom:416.133333pt;}
.y1c_c00130{bottom:434.000000pt;}
.y1b_c00130{bottom:451.866667pt;}
.y1a_c00130{bottom:469.733333pt;}
.y19_c00130{bottom:487.333333pt;}
.y18_c00130{bottom:504.933333pt;}
.y17_c00130{bottom:522.800000pt;}
.y16_c00130{bottom:540.133333pt;}
.y15_c00130{bottom:557.733333pt;}
.y14_c00130{bottom:575.600000pt;}
.y13_c00130{bottom:593.466667pt;}
.y12_c00130{bottom:611.333333pt;}
.y11_c00130{bottom:628.933333pt;}
.y10_c00130{bottom:646.800000pt;}
.yf_c00130{bottom:664.666667pt;}
.ye_c00130{bottom:682.400000pt;}
.yd_c00130{bottom:700.266667pt;}
.yc_c00130{bottom:717.866667pt;}
.yb_c00130{bottom:735.733333pt;}
.ya_c00130{bottom:753.333333pt;}
.y9_c00130{bottom:771.600000pt;}
.y8_c00130{bottom:789.200000pt;}
.y7_c00130{bottom:807.066667pt;}
.y6_c00130{bottom:824.666667pt;}
.y5_c00130{bottom:842.533333pt;}
.y4_c00130{bottom:860.533333pt;}
.y3_c00130{bottom:878.133333pt;}
.y2_c00130{bottom:895.733333pt;}
.y1_c00130{bottom:930.533333pt;}
.h2_c00130{height:48.000000pt;}
.h1_c00130{height:1038.000000pt;}
.h0_c00130{height:1038.079997pt;}
.w1_c00130{width:818.000000pt;}
.w0_c00130{width:818.239991pt;}
.x0_c00130{left:0.000000pt;}
.x13e_c00130{left:124.000000pt;}
.x119_c00130{left:125.466667pt;}
.xfb_c00130{left:126.800000pt;}
.xdc_c00130{left:127.733333pt;}
.xa0_c00130{left:128.933333pt;}
.x4a_c00130{left:130.133333pt;}
.x14_c00130{left:131.066667pt;}
.x1_c00130{left:132.133333pt;}
.xe9_c00130{left:134.400000pt;}
.x102_c00130{left:142.133333pt;}
.x7a_c00130{left:146.133333pt;}
.x4b_c00130{left:147.066667pt;}
.x15_c00130{left:148.400000pt;}
.x137_c00130{left:151.333333pt;}
.xdd_c00130{left:153.600000pt;}
.xb8_c00130{left:154.666667pt;}
.xea_c00130{left:156.133333pt;}
.x95_c00130{left:157.066667pt;}
.x6f_c00130{left:158.133333pt;}
.x4_c00130{left:159.066667pt;}
.x103_c00130{left:160.666667pt;}
.x23_c00130{left:162.266667pt;}
.x3d_c00130{left:163.466667pt;}
.x16_c00130{left:165.733333pt;}
.x8f_c00130{left:167.200000pt;}
.x4c_c00130{left:168.133333pt;}
.xd3_c00130{left:169.466667pt;}
.x138_c00130{left:171.866667pt;}
.x123_c00130{left:173.333333pt;}
.x5_c00130{left:174.400000pt;}
.x63_c00130{left:176.133333pt;}
.x58_c00130{left:177.200000pt;}
.xa9_c00130{left:178.800000pt;}
.xb9_c00130{left:180.000000pt;}
.xcc_c00130{left:181.200000pt;}
.x90_c00130{left:182.533333pt;}
.x86_c00130{left:184.533333pt;}
.x70_c00130{left:186.666667pt;}
.x31_c00130{left:188.133333pt;}
.xd4_c00130{left:189.600000pt;}
.xba_c00130{left:190.533333pt;}
.x12b_c00130{left:191.600000pt;}
.x13f_c00130{left:196.533333pt;}
.x17_c00130{left:198.000000pt;}
.x3e_c00130{left:200.266667pt;}
.x104_c00130{left:201.333333pt;}
.x10e_c00130{left:202.400000pt;}
.x7b_c00130{left:203.733333pt;}
.x140_c00130{left:204.800000pt;}
.xcd_c00130{left:206.133333pt;}
.x59_c00130{left:207.333333pt;}
.xc3_c00130{left:210.800000pt;}
.x4d_c00130{left:213.200000pt;}
.x13b_c00130{left:215.333333pt;}
.x11e_c00130{left:216.400000pt;}
.x7c_c00130{left:218.800000pt;}
.x91_c00130{left:221.600000pt;}
.x71_c00130{left:223.200000pt;}
.x24_c00130{left:225.866667pt;}
.x96_c00130{left:227.066667pt;}
.x11f_c00130{left:228.533333pt;}
.x4e_c00130{left:231.066667pt;}
.xeb_c00130{left:232.000000pt;}
.x6_c00130{left:234.266667pt;}
.xc4_c00130{left:236.666667pt;}
.xf5_c00130{left:238.666667pt;}
.x3f_c00130{left:239.600000pt;}
.x18_c00130{left:240.933333pt;}
.x32_c00130{left:241.866667pt;}
.x5a_c00130{left:242.800000pt;}
.xce_c00130{left:244.800000pt;}
.xb3_c00130{left:246.533333pt;}
.x11a_c00130{left:247.733333pt;}
.x64_c00130{left:250.666667pt;}
.x12c_c00130{left:252.133333pt;}
.xc5_c00130{left:254.266667pt;}
.x126_c00130{left:255.333333pt;}
.xf6_c00130{left:257.200000pt;}
.x40_c00130{left:258.800000pt;}
.xb4_c00130{left:260.000000pt;}
.x65_c00130{left:261.600000pt;}
.x97_c00130{left:263.866667pt;}
.x7d_c00130{left:266.800000pt;}
.xfc_c00130{left:271.200000pt;}
.x112_c00130{left:272.666667pt;}
.x7_c00130{left:274.266667pt;}
.xa1_c00130{left:277.066667pt;}
.x19_c00130{left:279.066667pt;}
.x5b_c00130{left:280.933333pt;}
.x41_c00130{left:283.466667pt;}
.xe5_c00130{left:285.733333pt;}
.xcf_c00130{left:287.466667pt;}
.x66_c00130{left:289.066667pt;}
.x92_c00130{left:290.400000pt;}
.xaa_c00130{left:292.133333pt;}
.x1a_c00130{left:294.400000pt;}
.xfd_c00130{left:296.533333pt;}
.x87_c00130{left:297.600000pt;}
.x127_c00130{left:298.533333pt;}
.x105_c00130{left:300.800000pt;}
.x98_c00130{left:303.866667pt;}
.x115_c00130{left:304.933333pt;}
.x13c_c00130{left:308.533333pt;}
.x8_c00130{left:310.400000pt;}
.x72_c00130{left:311.866667pt;}
.x12f_c00130{left:313.733333pt;}
.x5c_c00130{left:316.133333pt;}
.xd5_c00130{left:317.333333pt;}
.x1b_c00130{left:319.733333pt;}
.x10f_c00130{left:321.733333pt;}
.x25_c00130{left:322.800000pt;}
.xab_c00130{left:323.866667pt;}
.x2_c00130{left:326.000000pt;}
.x33_c00130{left:328.000000pt;}
.x4f_c00130{left:329.733333pt;}
.xbb_c00130{left:332.266667pt;}
.x99_c00130{left:334.266667pt;}
.xde_c00130{left:335.600000pt;}
.x9_c00130{left:337.866667pt;}
.x42_c00130{left:339.466667pt;}
.x5d_c00130{left:341.466667pt;}
.xc6_c00130{left:342.666667pt;}
.x130_c00130{left:344.133333pt;}
.x34_c00130{left:346.933333pt;}
.x93_c00130{left:350.533333pt;}
.x43_c00130{left:352.533333pt;}
.x10c_c00130{left:354.533333pt;}
.xbc_c00130{left:356.533333pt;}
.x141_c00130{left:357.733333pt;}
.x26_c00130{left:360.533333pt;}
.xa2_c00130{left:361.866667pt;}
.x88_c00130{left:363.733333pt;}
.x5e_c00130{left:364.800000pt;}
.x67_c00130{left:366.533333pt;}
.xb5_c00130{left:368.133333pt;}
.x9a_c00130{left:369.733333pt;}
.x7e_c00130{left:370.800000pt;}
.x73_c00130{left:372.266667pt;}
.x50_c00130{left:373.200000pt;}
.xa_c00130{left:374.400000pt;}
.x116_c00130{left:377.200000pt;}
.xf0_c00130{left:378.933333pt;}
.xec_c00130{left:383.733333pt;}
.x94_c00130{left:385.733333pt;}
.xe6_c00130{left:387.466667pt;}
.x68_c00130{left:388.933333pt;}
.xa3_c00130{left:390.666667pt;}
.xd6_c00130{left:392.800000pt;}
.xf7_c00130{left:393.866667pt;}
.x3_c00130{left:395.733333pt;}
.x27_c00130{left:397.333333pt;}
.x7f_c00130{left:398.666667pt;}
.x35_c00130{left:401.333333pt;}
.x51_c00130{left:403.333333pt;}
.xb_c00130{left:405.733333pt;}
.xac_c00130{left:406.800000pt;}
.x89_c00130{left:408.533333pt;}
.x9b_c00130{left:411.066667pt;}
.x44_c00130{left:414.933333pt;}
.xdf_c00130{left:417.200000pt;}
.xc7_c00130{left:418.533333pt;}
.x12d_c00130{left:420.133333pt;}
.x28_c00130{left:421.066667pt;}
.x1c_c00130{left:423.066667pt;}
.x69_c00130{left:424.133333pt;}
.x80_c00130{left:425.600000pt;}
.x131_c00130{left:426.666667pt;}
.xc_c00130{left:428.133333pt;}
.x110_c00130{left:429.466667pt;}
.x36_c00130{left:431.066667pt;}
.xe0_c00130{left:432.933333pt;}
.x29_c00130{left:434.133333pt;}
.x120_c00130{left:435.600000pt;}
.xfe_c00130{left:436.933333pt;}
.x124_c00130{left:438.933333pt;}
.x1d_c00130{left:440.000000pt;}
.x6a_c00130{left:441.733333pt;}
.x9c_c00130{left:442.800000pt;}
.xa4_c00130{left:445.333333pt;}
.x128_c00130{left:446.666667pt;}
.x2a_c00130{left:447.600000pt;}
.x132_c00130{left:449.066667pt;}
.x142_c00130{left:451.866667pt;}
.x52_c00130{left:455.866667pt;}
.xbd_c00130{left:457.600000pt;}
.xb6_c00130{left:460.000000pt;}
.xed_c00130{left:461.466667pt;}
.xf1_c00130{left:462.400000pt;}
.x143_c00130{left:463.333333pt;}
.xf8_c00130{left:465.333333pt;}
.x37_c00130{left:466.533333pt;}
.xd7_c00130{left:468.000000pt;}
.x9d_c00130{left:470.666667pt;}
.x74_c00130{left:472.400000pt;}
.x53_c00130{left:473.733333pt;}
.x106_c00130{left:475.066667pt;}
.x11b_c00130{left:477.600000pt;}
.xd_c00130{left:479.066667pt;}
.x121_c00130{left:480.133333pt;}
.x8a_c00130{left:482.533333pt;}
.xa5_c00130{left:485.333333pt;}
.xc8_c00130{left:488.933333pt;}
.xbe_c00130{left:491.200000pt;}
.x45_c00130{left:492.133333pt;}
.x1e_c00130{left:494.400000pt;}
.x113_c00130{left:496.400000pt;}
.x117_c00130{left:498.133333pt;}
.x2b_c00130{left:499.066667pt;}
.xad_c00130{left:500.533333pt;}
.xd0_c00130{left:502.533333pt;}
.x133_c00130{left:503.466667pt;}
.x12e_c00130{left:504.933333pt;}
.xa6_c00130{left:506.133333pt;}
.x9e_c00130{left:507.733333pt;}
.xe_c00130{left:508.800000pt;}
.xd8_c00130{left:510.533333pt;}
.x129_c00130{left:512.266667pt;}
.x54_c00130{left:513.466667pt;}
.xbf_c00130{left:514.933333pt;}
.x38_c00130{left:516.133333pt;}
.x2c_c00130{left:518.266667pt;}
.x11c_c00130{left:520.133333pt;}
.x81_c00130{left:521.600000pt;}
.xf_c00130{left:524.133333pt;}
.xae_c00130{left:528.400000pt;}
.x11d_c00130{left:532.266667pt;}
.xc0_c00130{left:533.200000pt;}
.xff_c00130{left:534.933333pt;}
.xe1_c00130{left:536.933333pt;}
.x75_c00130{left:538.000000pt;}
.x107_c00130{left:540.400000pt;}
.xe7_c00130{left:542.800000pt;}
.x6b_c00130{left:544.133333pt;}
.xf2_c00130{left:545.866667pt;}
.x8b_c00130{left:546.800000pt;}
.xd1_c00130{left:548.666667pt;}
.xd9_c00130{left:549.600000pt;}
.x122_c00130{left:551.200000pt;}
.xe2_c00130{left:552.666667pt;}
.x2d_c00130{left:555.333333pt;}
.xee_c00130{left:557.333333pt;}
.x1f_c00130{left:558.400000pt;}
.xf3_c00130{left:559.600000pt;}
.x13d_c00130{left:561.466667pt;}
.x118_c00130{left:562.400000pt;}
.x46_c00130{left:563.733333pt;}
.x10_c00130{left:564.800000pt;}
.x39_c00130{left:567.333333pt;}
.xc9_c00130{left:568.666667pt;}
.x2e_c00130{left:570.666667pt;}
.xf9_c00130{left:571.600000pt;}
.x6c_c00130{left:573.866667pt;}
.x55_c00130{left:577.866667pt;}
.xa7_c00130{left:579.066667pt;}
.x144_c00130{left:580.400000pt;}
.xaf_c00130{left:581.466667pt;}
.x5f_c00130{left:582.800000pt;}
.x47_c00130{left:584.800000pt;}
.x2f_c00130{left:588.266667pt;}
.xca_c00130{left:591.333333pt;}
.xc1_c00130{left:593.600000pt;}
.x134_c00130{left:596.133333pt;}
.xe3_c00130{left:597.200000pt;}
.x9f_c00130{left:599.333333pt;}
.x3a_c00130{left:600.933333pt;}
.x11_c00130{left:603.466667pt;}
.x125_c00130{left:605.066667pt;}
.xb0_c00130{left:606.133333pt;}
.xef_c00130{left:607.333333pt;}
.x82_c00130{left:608.400000pt;}
.x100_c00130{left:609.466667pt;}
.x8c_c00130{left:611.333333pt;}
.xe4_c00130{left:612.533333pt;}
.xa8_c00130{left:614.000000pt;}
.x60_c00130{left:616.400000pt;}
.x20_c00130{left:617.333333pt;}
.x76_c00130{left:620.533333pt;}
.x108_c00130{left:622.000000pt;}
.x48_c00130{left:624.533333pt;}
.x139_c00130{left:625.600000pt;}
.x12a_c00130{left:628.133333pt;}
.x12_c00130{left:629.333333pt;}
.xf4_c00130{left:631.200000pt;}
.x83_c00130{left:632.400000pt;}
.x56_c00130{left:634.133333pt;}
.xb1_c00130{left:637.200000pt;}
.x77_c00130{left:639.066667pt;}
.x30_c00130{left:644.266667pt;}
.x114_c00130{left:645.200000pt;}
.x61_c00130{left:646.133333pt;}
.x84_c00130{left:648.133333pt;}
.x6d_c00130{left:650.666667pt;}
.x78_c00130{left:652.133333pt;}
.x109_c00130{left:653.333333pt;}
.xb2_c00130{left:654.533333pt;}
.x13_c00130{left:659.733333pt;}
.xd2_c00130{left:662.800000pt;}
.xb7_c00130{left:664.133333pt;}
.x21_c00130{left:666.266667pt;}
.x111_c00130{left:669.200000pt;}
.x3b_c00130{left:670.400000pt;}
.x10a_c00130{left:671.600000pt;}
.x57_c00130{left:673.200000pt;}
.x6e_c00130{left:676.000000pt;}
.x101_c00130{left:676.933333pt;}
.xe8_c00130{left:678.400000pt;}
.x135_c00130{left:679.333333pt;}
.x8d_c00130{left:680.800000pt;}
.x49_c00130{left:682.400000pt;}
.xda_c00130{left:683.333333pt;}
.xcb_c00130{left:684.800000pt;}
.x13a_c00130{left:685.733333pt;}
.xfa_c00130{left:686.800000pt;}
.x85_c00130{left:691.066667pt;}
.x3c_c00130{left:693.066667pt;}
.x136_c00130{left:694.400000pt;}
.x62_c00130{left:698.666667pt;}
.x10d_c00130{left:700.400000pt;}
.x79_c00130{left:702.400000pt;}
.x8e_c00130{left:703.866667pt;}
.x22_c00130{left:705.333333pt;}
.x10b_c00130{left:708.400000pt;}
.xdb_c00130{left:710.800000pt;}
.xc2_c00130{left:717.733333pt;}
}





/* 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_c00131 {
    display:none;
  }
  .loading-indicator_c00131.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00131 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_c00131 { 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_c00131" -> "#page-container .classname_c00131")
 */
.pf_c00131 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00131 { /* 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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00131 { /* 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_c00131 { /* 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_c00131 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00131 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00131 {overflow:visible;}
  }
}
.c_c00131 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00131 { /* 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_c00131:after { /* webkit #35443 */
  content: '';
}
.t_c00131:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00131 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 */
}
.__c00131 { /* 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_c00131 { /* info for Javascript */
  display:none;
}
.l_c00131 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00131 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00131 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00131: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_c00131 {
    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_c00131.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00131.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_c00131 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00131{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00131;src:url('chunks/assets/font_5ee62836daa9b4c1c6cfc156.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.000000;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;}
.mad_c00131{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00131{transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086750,0.000000,0.000000,0.250000,0,0);}
.mab_c00131{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00131{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00131{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00131{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00131{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00131{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.maf_c00131{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m39_c00131{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00131{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mac_c00131{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00131{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00131{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00131{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00131{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00131{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5_c00131{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00131{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00131{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.maa_c00131{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m79_c00131{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mae_c00131{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00131{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m42_c00131{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m93_c00131{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m94_c00131{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m89_c00131{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m92_c00131{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.me_c00131{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00131{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00131{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00131{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00131{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m20_c00131{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00131{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00131{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m96_c00131{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00131{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00131{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m72_c00131{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m63_c00131{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m34_c00131{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00131{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m51_c00131{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00131{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00131{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00131{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m13_c00131{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00131{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00131{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{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);}
.m57_c00131{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m97_c00131{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00131{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m25_c00131{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00131{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00131{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m86_c00131{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00131{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m95_c00131{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00131{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m68_c00131{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m84_c00131{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00131{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00131{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m64_c00131{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00131{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mf_c00131{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m65_c00131{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00131{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00131{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00131{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00131{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00131{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m26_c00131{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m16_c00131{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00131{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m98_c00131{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m44_c00131{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00131{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00131{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00131{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00131{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m80_c00131{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m76_c00131{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00131{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m99_c00131{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00131{vertical-align:0.000000px;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{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__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00131{word-spacing:-9.125000px;}
.ws6_c00131{word-spacing:-3.249453px;}
.ws2_c00131{word-spacing:-3.125000px;}
.ws8_c00131{word-spacing:0.000000px;}
.ws4_c00131{word-spacing:4.537019px;}
.ws5_c00131{word-spacing:6.457831px;}
.ws1_c00131{word-spacing:7.375000px;}
.ws7_c00131{word-spacing:10.625000px;}
.ws0_c00131{word-spacing:19.750000px;}
.fc0_c00131{color:transparent;}
.fs0_c00131{font-size:54.000000px;}
.y0_c00131{bottom:0.000000px;}
.y2d_c00131{bottom:141.450000px;}
.y2c_c00131{bottom:157.350000px;}
.y2b_c00131{bottom:174.300000px;}
.y2a_c00131{bottom:189.000000px;}
.y29_c00131{bottom:205.500000px;}
.y28_c00131{bottom:240.750000px;}
.y27_c00131{bottom:261.300000px;}
.y26_c00131{bottom:281.400000px;}
.y25_c00131{bottom:301.500000px;}
.y24_c00131{bottom:321.300000px;}
.y23_c00131{bottom:341.400000px;}
.y22_c00131{bottom:361.500000px;}
.y21_c00131{bottom:381.300000px;}
.y20_c00131{bottom:401.400000px;}
.y1f_c00131{bottom:421.200000px;}
.y1e_c00131{bottom:441.300000px;}
.y1d_c00131{bottom:461.100000px;}
.y1c_c00131{bottom:481.800000px;}
.y1b_c00131{bottom:501.600000px;}
.y1a_c00131{bottom:521.700000px;}
.y19_c00131{bottom:541.800000px;}
.y18_c00131{bottom:561.600000px;}
.y17_c00131{bottom:581.400000px;}
.y16_c00131{bottom:601.650000px;}
.y15_c00131{bottom:621.750000px;}
.y14_c00131{bottom:641.850000px;}
.y13_c00131{bottom:661.650000px;}
.y12_c00131{bottom:681.750000px;}
.y11_c00131{bottom:701.850000px;}
.y10_c00131{bottom:721.950000px;}
.yf_c00131{bottom:742.050000px;}
.ye_c00131{bottom:762.150000px;}
.yd_c00131{bottom:782.250000px;}
.yc_c00131{bottom:802.050000px;}
.yb_c00131{bottom:822.300000px;}
.ya_c00131{bottom:842.400000px;}
.y9_c00131{bottom:862.200000px;}
.y8_c00131{bottom:882.450000px;}
.y7_c00131{bottom:902.250000px;}
.y6_c00131{bottom:922.800000px;}
.y5_c00131{bottom:942.900000px;}
.y4_c00131{bottom:962.700000px;}
.y3_c00131{bottom:982.800000px;}
.y2_c00131{bottom:1002.600000px;}
.y1_c00131{bottom:1041.150000px;}
.h2_c00131{height:54.000000px;}
.h1_c00131{height:1167.750000px;}
.h0_c00131{height:1167.839997px;}
.w1_c00131{width:920.250000px;}
.w0_c00131{width:920.519990px;}
.x0_c00131{left:0.000000px;}
.x12_c00131{left:119.850000px;}
.xec_c00131{left:121.500000px;}
.x125_c00131{left:122.850000px;}
.xe2_c00131{left:137.400000px;}
.xd5_c00131{left:138.450000px;}
.x100_c00131{left:141.150000px;}
.x77_c00131{left:143.400000px;}
.x51_c00131{left:145.650000px;}
.x83_c00131{left:148.650000px;}
.x13_c00131{left:149.700000px;}
.x3_c00131{left:151.200000px;}
.xda_c00131{left:152.850000px;}
.xa7_c00131{left:155.250000px;}
.x97_c00131{left:158.100000px;}
.xf4_c00131{left:159.300000px;}
.x6d_c00131{left:162.450000px;}
.x21_c00131{left:166.800000px;}
.x10e_c00131{left:168.900000px;}
.x98_c00131{left:170.700000px;}
.x4_c00131{left:171.750000px;}
.x78_c00131{left:173.250000px;}
.x14_c00131{left:176.700000px;}
.xf9_c00131{left:178.050000px;}
.x101_c00131{left:179.700000px;}
.x6e_c00131{left:181.200000px;}
.x5a_c00131{left:183.150000px;}
.x63_c00131{left:185.250000px;}
.x2d_c00131{left:186.900000px;}
.xdb_c00131{left:188.100000px;}
.x44_c00131{left:189.600000px;}
.xb1_c00131{left:193.950000px;}
.x106_c00131{left:196.050000px;}
.xed_c00131{left:199.650000px;}
.x10c_c00131{left:202.050000px;}
.x84_c00131{left:203.700000px;}
.x99_c00131{left:205.650000px;}
.x2e_c00131{left:209.550000px;}
.x45_c00131{left:210.900000px;}
.x8d_c00131{left:212.850000px;}
.x64_c00131{left:214.050000px;}
.xc1_c00131{left:216.600000px;}
.x15_c00131{left:218.100000px;}
.x38_c00131{left:219.750000px;}
.x85_c00131{left:220.950000px;}
.xd6_c00131{left:222.750000px;}
.xfa_c00131{left:226.650000px;}
.x5_c00131{left:228.300000px;}
.x9a_c00131{left:231.150000px;}
.x22_c00131{left:232.350000px;}
.x52_c00131{left:234.600000px;}
.x46_c00131{left:236.850000px;}
.xee_c00131{left:239.250000px;}
.xd1_c00131{left:242.850000px;}
.x79_c00131{left:244.950000px;}
.xe6_c00131{left:248.550000px;}
.x107_c00131{left:251.850000px;}
.xa8_c00131{left:253.050000px;}
.x6_c00131{left:255.000000px;}
.x39_c00131{left:257.250000px;}
.x114_c00131{left:260.550000px;}
.x8e_c00131{left:262.500000px;}
.xf5_c00131{left:264.450000px;}
.x122_c00131{left:266.100000px;}
.x3a_c00131{left:268.350000px;}
.xa0_c00131{left:270.000000px;}
.x7_c00131{left:272.250000px;}
.x123_c00131{left:275.400000px;}
.x7a_c00131{left:277.050000px;}
.x6f_c00131{left:279.150000px;}
.xbc_c00131{left:281.700000px;}
.x16_c00131{left:283.200000px;}
.x23_c00131{left:288.450000px;}
.x53_c00131{left:291.000000px;}
.xc2_c00131{left:292.200000px;}
.xd2_c00131{left:293.700000px;}
.x65_c00131{left:297.150000px;}
.x8_c00131{left:298.500000px;}
.x3b_c00131{left:301.800000px;}
.x2f_c00131{left:305.700000px;}
.x8f_c00131{left:306.750000px;}
.xb2_c00131{left:309.450000px;}
.x7b_c00131{left:311.250000px;}
.xf2_c00131{left:313.050000px;}
.x17_c00131{left:314.550000px;}
.xef_c00131{left:315.900000px;}
.xdc_c00131{left:316.950000px;}
.xc3_c00131{left:320.250000px;}
.x30_c00131{left:322.950000px;}
.xe7_c00131{left:324.600000px;}
.x70_c00131{left:325.950000px;}
.x18_c00131{left:328.950000px;}
.x54_c00131{left:332.400000px;}
.xbd_c00131{left:333.900000px;}
.x47_c00131{left:335.850000px;}
.xa9_c00131{left:336.900000px;}
.xfb_c00131{left:337.950000px;}
.xdd_c00131{left:342.150000px;}
.x7c_c00131{left:343.650000px;}
.x124_c00131{left:345.600000px;}
.x86_c00131{left:348.000000px;}
.x108_c00131{left:350.100000px;}
.x102_c00131{left:351.300000px;}
.x66_c00131{left:354.750000px;}
.x9b_c00131{left:356.400000px;}
.x5b_c00131{left:357.450000px;}
.x9_c00131{left:358.650000px;}
.x11d_c00131{left:360.450000px;}
.xb3_c00131{left:361.950000px;}
.x24_c00131{left:363.300000px;}
.xaa_c00131{left:364.950000px;}
.xe8_c00131{left:366.000000px;}
.xc4_c00131{left:368.850000px;}
.x87_c00131{left:373.500000px;}
.xfc_c00131{left:375.450000px;}
.x90_c00131{left:376.950000px;}
.x71_c00131{left:378.150000px;}
.x5c_c00131{left:379.800000px;}
.x10f_c00131{left:380.850000px;}
.x31_c00131{left:382.050000px;}
.x25_c00131{left:384.600000px;}
.x67_c00131{left:386.400000px;}
.x3c_c00131{left:388.500000px;}
.xb4_c00131{left:390.000000px;}
.xcc_c00131{left:391.500000px;}
.x48_c00131{left:394.200000px;}
.x72_c00131{left:396.150000px;}
.xe3_c00131{left:398.400000px;}
.xa1_c00131{left:400.350000px;}
.x9c_c00131{left:404.550000px;}
.x55_c00131{left:406.500000px;}
.x19_c00131{left:408.900000px;}
.xcd_c00131{left:413.400000px;}
.x3d_c00131{left:417.600000px;}
.x1_c00131{left:420.450000px;}
.x109_c00131{left:422.100000px;}
.x49_c00131{left:423.300000px;}
.xa_c00131{left:424.950000px;}
.x56_c00131{left:428.400000px;}
.xc5_c00131{left:429.600000px;}
.x103_c00131{left:431.100000px;}
.x110_c00131{left:432.750000px;}
.xd3_c00131{left:433.800000px;}
.xf3_c00131{left:437.550000px;}
.xab_c00131{left:439.200000px;}
.x10a_c00131{left:443.700000px;}
.xb_c00131{left:445.050000px;}
.x3e_c00131{left:446.100000px;}
.x26_c00131{left:448.650000px;}
.xbe_c00131{left:450.900000px;}
.x68_c00131{left:453.300000px;}
.x32_c00131{left:455.850000px;}
.x5d_c00131{left:457.950000px;}
.xf6_c00131{left:462.000000px;}
.xde_c00131{left:465.300000px;}
.x1a_c00131{left:466.500000px;}
.xac_c00131{left:467.700000px;}
.xb5_c00131{left:471.000000px;}
.x3f_c00131{left:473.850000px;}
.x73_c00131{left:476.100000px;}
.xce_c00131{left:477.150000px;}
.x10b_c00131{left:480.000000px;}
.x9d_c00131{left:481.200000px;}
.x11e_c00131{left:483.750000px;}
.xad_c00131{left:484.950000px;}
.x1b_c00131{left:486.300000px;}
.x91_c00131{left:489.000000px;}
.x33_c00131{left:490.350000px;}
.xc6_c00131{left:492.900000px;}
.x115_c00131{left:493.950000px;}
.xc_c00131{left:495.750000px;}
.x57_c00131{left:497.100000px;}
.x4a_c00131{left:502.500000px;}
.xa2_c00131{left:504.450000px;}
.x5e_c00131{left:508.650000px;}
.x40_c00131{left:510.900000px;}
.x34_c00131{left:513.750000px;}
.x7d_c00131{left:519.000000px;}
.x69_c00131{left:521.700000px;}
.x119_c00131{left:522.750000px;}
.xfd_c00131{left:525.600000px;}
.x27_c00131{left:528.450000px;}
.x5f_c00131{left:529.950000px;}
.x4b_c00131{left:531.300000px;}
.xb6_c00131{left:532.800000px;}
.xf7_c00131{left:534.000000px;}
.x104_c00131{left:535.950000px;}
.x92_c00131{left:537.300000px;}
.xa3_c00131{left:538.950000px;}
.x11a_c00131{left:543.300000px;}
.x10d_c00131{left:547.050000px;}
.x28_c00131{left:549.750000px;}
.x7e_c00131{left:551.400000px;}
.xd_c00131{left:552.600000px;}
.x11f_c00131{left:554.700000px;}
.x74_c00131{left:557.700000px;}
.xfe_c00131{left:559.050000px;}
.xe4_c00131{left:560.250000px;}
.x4c_c00131{left:562.650000px;}
.x126_c00131{left:565.650000px;}
.xa4_c00131{left:566.700000px;}
.xae_c00131{left:571.050000px;}
.xc7_c00131{left:572.850000px;}
.x1c_c00131{left:574.200000px;}
.x88_c00131{left:575.700000px;}
.x6a_c00131{left:576.750000px;}
.xb7_c00131{left:578.550000px;}
.x35_c00131{left:580.800000px;}
.xf0_c00131{left:582.300000px;}
.xe9_c00131{left:584.100000px;}
.x116_c00131{left:591.000000px;}
.x93_c00131{left:593.400000px;}
.x9e_c00131{left:595.050000px;}
.x41_c00131{left:597.000000px;}
.x60_c00131{left:598.050000px;}
.x58_c00131{left:600.000000px;}
.xc8_c00131{left:601.950000px;}
.xd7_c00131{left:603.600000px;}
.x4d_c00131{left:605.400000px;}
.x29_c00131{left:607.050000px;}
.x89_c00131{left:608.100000px;}
.x1d_c00131{left:609.900000px;}
.x120_c00131{left:611.250000px;}
.xd4_c00131{left:614.250000px;}
.xf1_c00131{left:616.200000px;}
.x59_c00131{left:617.700000px;}
.x9f_c00131{left:620.250000px;}
.xe_c00131{left:622.800000px;}
.xdf_c00131{left:624.900000px;}
.xbf_c00131{left:627.750000px;}
.x36_c00131{left:629.100000px;}
.x105_c00131{left:632.850000px;}
.xcf_c00131{left:636.750000px;}
.x7f_c00131{left:640.350000px;}
.x111_c00131{left:642.150000px;}
.xc9_c00131{left:643.650000px;}
.xf_c00131{left:645.900000px;}
.x61_c00131{left:648.150000px;}
.x2a_c00131{left:651.750000px;}
.x37_c00131{left:653.250000px;}
.x8a_c00131{left:654.600000px;}
.xb8_c00131{left:657.300000px;}
.x1e_c00131{left:659.250000px;}
.x94_c00131{left:661.050000px;}
.xca_c00131{left:663.450000px;}
.xa5_c00131{left:666.450000px;}
.x75_c00131{left:670.800000px;}
.x112_c00131{left:674.850000px;}
.xaf_c00131{left:676.050000px;}
.x80_c00131{left:680.250000px;}
.x1f_c00131{left:681.600000px;}
.xb9_c00131{left:682.800000px;}
.xc0_c00131{left:684.600000px;}
.x10_c00131{left:687.300000px;}
.xd8_c00131{left:688.500000px;}
.x4e_c00131{left:690.300000px;}
.x117_c00131{left:691.800000px;}
.xe5_c00131{left:696.000000px;}
.x8b_c00131{left:697.800000px;}
.x121_c00131{left:699.150000px;}
.xe0_c00131{left:701.550000px;}
.x81_c00131{left:703.350000px;}
.x42_c00131{left:705.450000px;}
.xd0_c00131{left:707.700000px;}
.x95_c00131{left:709.200000px;}
.xa6_c00131{left:711.750000px;}
.x118_c00131{left:714.900000px;}
.xea_c00131{left:716.850000px;}
.xb0_c00131{left:718.200000px;}
.xff_c00131{left:720.750000px;}
.x2b_c00131{left:723.300000px;}
.xcb_c00131{left:724.950000px;}
.x6b_c00131{left:726.150000px;}
.x11b_c00131{left:727.650000px;}
.x62_c00131{left:728.850000px;}
.xba_c00131{left:731.700000px;}
.x4f_c00131{left:733.800000px;}
.xf8_c00131{left:736.050000px;}
.x82_c00131{left:737.550000px;}
.x8c_c00131{left:740.700000px;}
.xeb_c00131{left:744.600000px;}
.x76_c00131{left:746.100000px;}
.xe1_c00131{left:748.350000px;}
.xd9_c00131{left:754.350000px;}
.x20_c00131{left:757.950000px;}
.x113_c00131{left:761.250000px;}
.x11_c00131{left:763.200000px;}
.x43_c00131{left:766.350000px;}
.x11c_c00131{left:767.550000px;}
.x2_c00131{left:768.900000px;}
.x127_c00131{left:770.100000px;}
.x2c_c00131{left:771.900000px;}
.xbb_c00131{left:773.400000px;}
.x96_c00131{left:774.750000px;}
.x50_c00131{left:776.700000px;}
.x6c_c00131{left:779.400000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws3_c00131{word-spacing:-8.111111pt;}
.ws6_c00131{word-spacing:-2.888403pt;}
.ws2_c00131{word-spacing:-2.777778pt;}
.ws8_c00131{word-spacing:0.000000pt;}
.ws4_c00131{word-spacing:4.032906pt;}
.ws5_c00131{word-spacing:5.740295pt;}
.ws1_c00131{word-spacing:6.555556pt;}
.ws7_c00131{word-spacing:9.444444pt;}
.ws0_c00131{word-spacing:17.555556pt;}
.fs0_c00131{font-size:48.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y2d_c00131{bottom:125.733333pt;}
.y2c_c00131{bottom:139.866667pt;}
.y2b_c00131{bottom:154.933333pt;}
.y2a_c00131{bottom:168.000000pt;}
.y29_c00131{bottom:182.666667pt;}
.y28_c00131{bottom:214.000000pt;}
.y27_c00131{bottom:232.266667pt;}
.y26_c00131{bottom:250.133333pt;}
.y25_c00131{bottom:268.000000pt;}
.y24_c00131{bottom:285.600000pt;}
.y23_c00131{bottom:303.466667pt;}
.y22_c00131{bottom:321.333333pt;}
.y21_c00131{bottom:338.933333pt;}
.y20_c00131{bottom:356.800000pt;}
.y1f_c00131{bottom:374.400000pt;}
.y1e_c00131{bottom:392.266667pt;}
.y1d_c00131{bottom:409.866667pt;}
.y1c_c00131{bottom:428.266667pt;}
.y1b_c00131{bottom:445.866667pt;}
.y1a_c00131{bottom:463.733333pt;}
.y19_c00131{bottom:481.600000pt;}
.y18_c00131{bottom:499.200000pt;}
.y17_c00131{bottom:516.800000pt;}
.y16_c00131{bottom:534.800000pt;}
.y15_c00131{bottom:552.666667pt;}
.y14_c00131{bottom:570.533333pt;}
.y13_c00131{bottom:588.133333pt;}
.y12_c00131{bottom:606.000000pt;}
.y11_c00131{bottom:623.866667pt;}
.y10_c00131{bottom:641.733333pt;}
.yf_c00131{bottom:659.600000pt;}
.ye_c00131{bottom:677.466667pt;}
.yd_c00131{bottom:695.333333pt;}
.yc_c00131{bottom:712.933333pt;}
.yb_c00131{bottom:730.933333pt;}
.ya_c00131{bottom:748.800000pt;}
.y9_c00131{bottom:766.400000pt;}
.y8_c00131{bottom:784.400000pt;}
.y7_c00131{bottom:802.000000pt;}
.y6_c00131{bottom:820.266667pt;}
.y5_c00131{bottom:838.133333pt;}
.y4_c00131{bottom:855.733333pt;}
.y3_c00131{bottom:873.600000pt;}
.y2_c00131{bottom:891.200000pt;}
.y1_c00131{bottom:925.466667pt;}
.h2_c00131{height:48.000000pt;}
.h1_c00131{height:1038.000000pt;}
.h0_c00131{height:1038.079997pt;}
.w1_c00131{width:818.000000pt;}
.w0_c00131{width:818.239991pt;}
.x0_c00131{left:0.000000pt;}
.x12_c00131{left:106.533333pt;}
.xec_c00131{left:108.000000pt;}
.x125_c00131{left:109.200000pt;}
.xe2_c00131{left:122.133333pt;}
.xd5_c00131{left:123.066667pt;}
.x100_c00131{left:125.466667pt;}
.x77_c00131{left:127.466667pt;}
.x51_c00131{left:129.466667pt;}
.x83_c00131{left:132.133333pt;}
.x13_c00131{left:133.066667pt;}
.x3_c00131{left:134.400000pt;}
.xda_c00131{left:135.866667pt;}
.xa7_c00131{left:138.000000pt;}
.x97_c00131{left:140.533333pt;}
.xf4_c00131{left:141.600000pt;}
.x6d_c00131{left:144.400000pt;}
.x21_c00131{left:148.266667pt;}
.x10e_c00131{left:150.133333pt;}
.x98_c00131{left:151.733333pt;}
.x4_c00131{left:152.666667pt;}
.x78_c00131{left:154.000000pt;}
.x14_c00131{left:157.066667pt;}
.xf9_c00131{left:158.266667pt;}
.x101_c00131{left:159.733333pt;}
.x6e_c00131{left:161.066667pt;}
.x5a_c00131{left:162.800000pt;}
.x63_c00131{left:164.666667pt;}
.x2d_c00131{left:166.133333pt;}
.xdb_c00131{left:167.200000pt;}
.x44_c00131{left:168.533333pt;}
.xb1_c00131{left:172.400000pt;}
.x106_c00131{left:174.266667pt;}
.xed_c00131{left:177.466667pt;}
.x10c_c00131{left:179.600000pt;}
.x84_c00131{left:181.066667pt;}
.x99_c00131{left:182.800000pt;}
.x2e_c00131{left:186.266667pt;}
.x45_c00131{left:187.466667pt;}
.x8d_c00131{left:189.200000pt;}
.x64_c00131{left:190.266667pt;}
.xc1_c00131{left:192.533333pt;}
.x15_c00131{left:193.866667pt;}
.x38_c00131{left:195.333333pt;}
.x85_c00131{left:196.400000pt;}
.xd6_c00131{left:198.000000pt;}
.xfa_c00131{left:201.466667pt;}
.x5_c00131{left:202.933333pt;}
.x9a_c00131{left:205.466667pt;}
.x22_c00131{left:206.533333pt;}
.x52_c00131{left:208.533333pt;}
.x46_c00131{left:210.533333pt;}
.xee_c00131{left:212.666667pt;}
.xd1_c00131{left:215.866667pt;}
.x79_c00131{left:217.733333pt;}
.xe6_c00131{left:220.933333pt;}
.x107_c00131{left:223.866667pt;}
.xa8_c00131{left:224.933333pt;}
.x6_c00131{left:226.666667pt;}
.x39_c00131{left:228.666667pt;}
.x114_c00131{left:231.600000pt;}
.x8e_c00131{left:233.333333pt;}
.xf5_c00131{left:235.066667pt;}
.x122_c00131{left:236.533333pt;}
.x3a_c00131{left:238.533333pt;}
.xa0_c00131{left:240.000000pt;}
.x7_c00131{left:242.000000pt;}
.x123_c00131{left:244.800000pt;}
.x7a_c00131{left:246.266667pt;}
.x6f_c00131{left:248.133333pt;}
.xbc_c00131{left:250.400000pt;}
.x16_c00131{left:251.733333pt;}
.x23_c00131{left:256.400000pt;}
.x53_c00131{left:258.666667pt;}
.xc2_c00131{left:259.733333pt;}
.xd2_c00131{left:261.066667pt;}
.x65_c00131{left:264.133333pt;}
.x8_c00131{left:265.333333pt;}
.x3b_c00131{left:268.266667pt;}
.x2f_c00131{left:271.733333pt;}
.x8f_c00131{left:272.666667pt;}
.xb2_c00131{left:275.066667pt;}
.x7b_c00131{left:276.666667pt;}
.xf2_c00131{left:278.266667pt;}
.x17_c00131{left:279.600000pt;}
.xef_c00131{left:280.800000pt;}
.xdc_c00131{left:281.733333pt;}
.xc3_c00131{left:284.666667pt;}
.x30_c00131{left:287.066667pt;}
.xe7_c00131{left:288.533333pt;}
.x70_c00131{left:289.733333pt;}
.x18_c00131{left:292.400000pt;}
.x54_c00131{left:295.466667pt;}
.xbd_c00131{left:296.800000pt;}
.x47_c00131{left:298.533333pt;}
.xa9_c00131{left:299.466667pt;}
.xfb_c00131{left:300.400000pt;}
.xdd_c00131{left:304.133333pt;}
.x7c_c00131{left:305.466667pt;}
.x124_c00131{left:307.200000pt;}
.x86_c00131{left:309.333333pt;}
.x108_c00131{left:311.200000pt;}
.x102_c00131{left:312.266667pt;}
.x66_c00131{left:315.333333pt;}
.x9b_c00131{left:316.800000pt;}
.x5b_c00131{left:317.733333pt;}
.x9_c00131{left:318.800000pt;}
.x11d_c00131{left:320.400000pt;}
.xb3_c00131{left:321.733333pt;}
.x24_c00131{left:322.933333pt;}
.xaa_c00131{left:324.400000pt;}
.xe8_c00131{left:325.333333pt;}
.xc4_c00131{left:327.866667pt;}
.x87_c00131{left:332.000000pt;}
.xfc_c00131{left:333.733333pt;}
.x90_c00131{left:335.066667pt;}
.x71_c00131{left:336.133333pt;}
.x5c_c00131{left:337.600000pt;}
.x10f_c00131{left:338.533333pt;}
.x31_c00131{left:339.600000pt;}
.x25_c00131{left:341.866667pt;}
.x67_c00131{left:343.466667pt;}
.x3c_c00131{left:345.333333pt;}
.xb4_c00131{left:346.666667pt;}
.xcc_c00131{left:348.000000pt;}
.x48_c00131{left:350.400000pt;}
.x72_c00131{left:352.133333pt;}
.xe3_c00131{left:354.133333pt;}
.xa1_c00131{left:355.866667pt;}
.x9c_c00131{left:359.600000pt;}
.x55_c00131{left:361.333333pt;}
.x19_c00131{left:363.466667pt;}
.xcd_c00131{left:367.466667pt;}
.x3d_c00131{left:371.200000pt;}
.x1_c00131{left:373.733333pt;}
.x109_c00131{left:375.200000pt;}
.x49_c00131{left:376.266667pt;}
.xa_c00131{left:377.733333pt;}
.x56_c00131{left:380.800000pt;}
.xc5_c00131{left:381.866667pt;}
.x103_c00131{left:383.200000pt;}
.x110_c00131{left:384.666667pt;}
.xd3_c00131{left:385.600000pt;}
.xf3_c00131{left:388.933333pt;}
.xab_c00131{left:390.400000pt;}
.x10a_c00131{left:394.400000pt;}
.xb_c00131{left:395.600000pt;}
.x3e_c00131{left:396.533333pt;}
.x26_c00131{left:398.800000pt;}
.xbe_c00131{left:400.800000pt;}
.x68_c00131{left:402.933333pt;}
.x32_c00131{left:405.200000pt;}
.x5d_c00131{left:407.066667pt;}
.xf6_c00131{left:410.666667pt;}
.xde_c00131{left:413.600000pt;}
.x1a_c00131{left:414.666667pt;}
.xac_c00131{left:415.733333pt;}
.xb5_c00131{left:418.666667pt;}
.x3f_c00131{left:421.200000pt;}
.x73_c00131{left:423.200000pt;}
.xce_c00131{left:424.133333pt;}
.x10b_c00131{left:426.666667pt;}
.x9d_c00131{left:427.733333pt;}
.x11e_c00131{left:430.000000pt;}
.xad_c00131{left:431.066667pt;}
.x1b_c00131{left:432.266667pt;}
.x91_c00131{left:434.666667pt;}
.x33_c00131{left:435.866667pt;}
.xc6_c00131{left:438.133333pt;}
.x115_c00131{left:439.066667pt;}
.xc_c00131{left:440.666667pt;}
.x57_c00131{left:441.866667pt;}
.x4a_c00131{left:446.666667pt;}
.xa2_c00131{left:448.400000pt;}
.x5e_c00131{left:452.133333pt;}
.x40_c00131{left:454.133333pt;}
.x34_c00131{left:456.666667pt;}
.x7d_c00131{left:461.333333pt;}
.x69_c00131{left:463.733333pt;}
.x119_c00131{left:464.666667pt;}
.xfd_c00131{left:467.200000pt;}
.x27_c00131{left:469.733333pt;}
.x5f_c00131{left:471.066667pt;}
.x4b_c00131{left:472.266667pt;}
.xb6_c00131{left:473.600000pt;}
.xf7_c00131{left:474.666667pt;}
.x104_c00131{left:476.400000pt;}
.x92_c00131{left:477.600000pt;}
.xa3_c00131{left:479.066667pt;}
.x11a_c00131{left:482.933333pt;}
.x10d_c00131{left:486.266667pt;}
.x28_c00131{left:488.666667pt;}
.x7e_c00131{left:490.133333pt;}
.xd_c00131{left:491.200000pt;}
.x11f_c00131{left:493.066667pt;}
.x74_c00131{left:495.733333pt;}
.xfe_c00131{left:496.933333pt;}
.xe4_c00131{left:498.000000pt;}
.x4c_c00131{left:500.133333pt;}
.x126_c00131{left:502.800000pt;}
.xa4_c00131{left:503.733333pt;}
.xae_c00131{left:507.600000pt;}
.xc7_c00131{left:509.200000pt;}
.x1c_c00131{left:510.400000pt;}
.x88_c00131{left:511.733333pt;}
.x6a_c00131{left:512.666667pt;}
.xb7_c00131{left:514.266667pt;}
.x35_c00131{left:516.266667pt;}
.xf0_c00131{left:517.600000pt;}
.xe9_c00131{left:519.200000pt;}
.x116_c00131{left:525.333333pt;}
.x93_c00131{left:527.466667pt;}
.x9e_c00131{left:528.933333pt;}
.x41_c00131{left:530.666667pt;}
.x60_c00131{left:531.600000pt;}
.x58_c00131{left:533.333333pt;}
.xc8_c00131{left:535.066667pt;}
.xd7_c00131{left:536.533333pt;}
.x4d_c00131{left:538.133333pt;}
.x29_c00131{left:539.600000pt;}
.x89_c00131{left:540.533333pt;}
.x1d_c00131{left:542.133333pt;}
.x120_c00131{left:543.333333pt;}
.xd4_c00131{left:546.000000pt;}
.xf1_c00131{left:547.733333pt;}
.x59_c00131{left:549.066667pt;}
.x9f_c00131{left:551.333333pt;}
.xe_c00131{left:553.600000pt;}
.xdf_c00131{left:555.466667pt;}
.xbf_c00131{left:558.000000pt;}
.x36_c00131{left:559.200000pt;}
.x105_c00131{left:562.533333pt;}
.xcf_c00131{left:566.000000pt;}
.x7f_c00131{left:569.200000pt;}
.x111_c00131{left:570.800000pt;}
.xc9_c00131{left:572.133333pt;}
.xf_c00131{left:574.133333pt;}
.x61_c00131{left:576.133333pt;}
.x2a_c00131{left:579.333333pt;}
.x37_c00131{left:580.666667pt;}
.x8a_c00131{left:581.866667pt;}
.xb8_c00131{left:584.266667pt;}
.x1e_c00131{left:586.000000pt;}
.x94_c00131{left:587.600000pt;}
.xca_c00131{left:589.733333pt;}
.xa5_c00131{left:592.400000pt;}
.x75_c00131{left:596.266667pt;}
.x112_c00131{left:599.866667pt;}
.xaf_c00131{left:600.933333pt;}
.x80_c00131{left:604.666667pt;}
.x1f_c00131{left:605.866667pt;}
.xb9_c00131{left:606.933333pt;}
.xc0_c00131{left:608.533333pt;}
.x10_c00131{left:610.933333pt;}
.xd8_c00131{left:612.000000pt;}
.x4e_c00131{left:613.600000pt;}
.x117_c00131{left:614.933333pt;}
.xe5_c00131{left:618.666667pt;}
.x8b_c00131{left:620.266667pt;}
.x121_c00131{left:621.466667pt;}
.xe0_c00131{left:623.600000pt;}
.x81_c00131{left:625.200000pt;}
.x42_c00131{left:627.066667pt;}
.xd0_c00131{left:629.066667pt;}
.x95_c00131{left:630.400000pt;}
.xa6_c00131{left:632.666667pt;}
.x118_c00131{left:635.466667pt;}
.xea_c00131{left:637.200000pt;}
.xb0_c00131{left:638.400000pt;}
.xff_c00131{left:640.666667pt;}
.x2b_c00131{left:642.933333pt;}
.xcb_c00131{left:644.400000pt;}
.x6b_c00131{left:645.466667pt;}
.x11b_c00131{left:646.800000pt;}
.x62_c00131{left:647.866667pt;}
.xba_c00131{left:650.400000pt;}
.x4f_c00131{left:652.266667pt;}
.xf8_c00131{left:654.266667pt;}
.x82_c00131{left:655.600000pt;}
.x8c_c00131{left:658.400000pt;}
.xeb_c00131{left:661.866667pt;}
.x76_c00131{left:663.200000pt;}
.xe1_c00131{left:665.200000pt;}
.xd9_c00131{left:670.533333pt;}
.x20_c00131{left:673.733333pt;}
.x113_c00131{left:676.666667pt;}
.x11_c00131{left:678.400000pt;}
.x43_c00131{left:681.200000pt;}
.x11c_c00131{left:682.266667pt;}
.x2_c00131{left:683.466667pt;}
.x127_c00131{left:684.533333pt;}
.x2c_c00131{left:686.133333pt;}
.xbb_c00131{left:687.466667pt;}
.x96_c00131{left:688.666667pt;}
.x50_c00131{left:690.400000pt;}
.x6c_c00131{left:692.800000pt;}
}





/* 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_c00132 {
    display:none;
  }
  .loading-indicator_c00132.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00132 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_c00132 { 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_c00132" -> "#page-container .classname_c00132")
 */
.pf_c00132 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00132 { /* 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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00132 { /* 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_c00132 { /* 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_c00132 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00132 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00132 {overflow:visible;}
  }
}
.c_c00132 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00132 { /* 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_c00132:after { /* webkit #35443 */
  content: '';
}
.t_c00132:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00132 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 */
}
.__c00132 { /* 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_c00132 { /* info for Javascript */
  display:none;
}
.l_c00132 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00132 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00132 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00132: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_c00132 {
    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_c00132.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00132.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_c00132 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00132{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00132;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.000000;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;}
.mbf_c00132{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00132{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00132{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00132{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mad_c00132{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00132{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00132{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00132{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00132{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00132{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00132{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00132{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m63_c00132{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00132{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00132{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m34_c00132{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maa_c00132{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00132{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00132{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m47_c00132{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00132{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m51_c00132{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m60_c00132{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00132{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00132{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m0_c00132{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mab_c00132{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00132{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00132{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mae_c00132{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m56_c00132{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00132{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00132{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00132{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00132{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00132{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00132{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m88_c00132{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00132{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mba_c00132{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00132{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00132{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m53_c00132{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00132{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m94_c00132{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00132{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m80_c00132{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00132{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m65_c00132{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m49_c00132{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m87_c00132{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m21_c00132{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m78_c00132{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mac_c00132{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00132{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m44_c00132{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00132{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m39_c00132{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00132{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m48_c00132{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00132{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m84_c00132{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00132{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m77_c00132{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m70_c00132{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00132{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m33_c00132{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00132{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m73_c00132{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00132{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00132{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00132{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m67_c00132{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00132{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00132{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m68_c00132{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m69_c00132{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m75_c00132{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00132{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00132{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m83_c00132{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00132{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00132{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m50_c00132{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m66_c00132{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00132{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00132{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m71_c00132{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00132{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00132{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m76_c00132{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m93_c00132{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);}
.m64_c00132{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m58_c00132{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00132{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m79_c00132{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00132{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m27_c00132{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00132{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m86_c00132{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00132{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00132{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00132{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00132{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m28_c00132{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3_c00132{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m91_c00132{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00132{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m98_c00132{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00132{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00132{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m90_c00132{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m36_c00132{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00132{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m42_c00132{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m31_c00132{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m54_c00132{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m92_c00132{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m40_c00132{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c00132{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00132{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m45_c00132{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m57_c00132{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m38_c00132{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00132{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00132{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m5_c00132{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m32_c00132{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m74_c00132{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m17_c00132{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m62_c00132{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m11_c00132{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00132{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me_c00132{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00132{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00132{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md_c00132{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m95_c00132{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00132{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00132{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00132{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m96_c00132{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m82_c00132{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00132{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2_c00132{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m72_c00132{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00132{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m59_c00132{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00132{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00132{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m99_c00132{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m81_c00132{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6_c00132{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00132{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00132{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m85_c00132{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m89_c00132{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00132{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00132{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m55_c00132{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m30_c00132{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m43_c00132{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m61_c00132{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00132{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m97_c00132{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00132{vertical-align:0.000000px;}
.ls0_c00132{letter-spacing:0.000000px;}
.sc__c00132{text-shadow:none;}
.sc0_c00132{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__c00132{-webkit-text-stroke:0px transparent;}
.sc0_c00132{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00132{word-spacing:-6.710434px;}
.ws0_c00132{word-spacing:-3.000000px;}
.ws5_c00132{word-spacing:0.000000px;}
.ws3_c00132{word-spacing:6.977726px;}
.ws2_c00132{word-spacing:7.625000px;}
.ws1_c00132{word-spacing:13.964719px;}
._0_c00132{width:22.290739px;}
.fc0_c00132{color:transparent;}
.fs0_c00132{font-size:54.000000px;}
.y0_c00132{bottom:0.000000px;}
.y2d_c00132{bottom:140.400000px;}
.y2c_c00132{bottom:157.350000px;}
.y2b_c00132{bottom:173.100000px;}
.y2a_c00132{bottom:188.700000px;}
.y29_c00132{bottom:204.150000px;}
.y28_c00132{bottom:219.900000px;}
.y27_c00132{bottom:264.900000px;}
.y26_c00132{bottom:283.950000px;}
.y25_c00132{bottom:305.250000px;}
.y24_c00132{bottom:325.350000px;}
.y23_c00132{bottom:345.450000px;}
.y22_c00132{bottom:365.250000px;}
.y21_c00132{bottom:385.050000px;}
.y20_c00132{bottom:405.150000px;}
.y1f_c00132{bottom:424.950000px;}
.y1e_c00132{bottom:445.050000px;}
.y1d_c00132{bottom:465.150000px;}
.y1c_c00132{bottom:484.950000px;}
.y1b_c00132{bottom:504.750000px;}
.y1a_c00132{bottom:524.850000px;}
.y19_c00132{bottom:544.650000px;}
.y18_c00132{bottom:564.450000px;}
.y17_c00132{bottom:584.250000px;}
.y16_c00132{bottom:604.800000px;}
.y15_c00132{bottom:624.900000px;}
.y14_c00132{bottom:645.000000px;}
.y13_c00132{bottom:665.100000px;}
.y12_c00132{bottom:684.900000px;}
.y11_c00132{bottom:705.000000px;}
.y10_c00132{bottom:724.800000px;}
.yf_c00132{bottom:744.900000px;}
.ye_c00132{bottom:764.700000px;}
.yd_c00132{bottom:785.700000px;}
.yc_c00132{bottom:805.200000px;}
.yb_c00132{bottom:825.000000px;}
.ya_c00132{bottom:845.100000px;}
.y9_c00132{bottom:864.900000px;}
.y8_c00132{bottom:885.000000px;}
.y7_c00132{bottom:905.100000px;}
.y6_c00132{bottom:924.900000px;}
.y5_c00132{bottom:945.000000px;}
.y4_c00132{bottom:964.800000px;}
.y3_c00132{bottom:984.900000px;}
.y2_c00132{bottom:1004.700000px;}
.y1_c00132{bottom:1043.250000px;}
.h2_c00132{height:54.000000px;}
.h1_c00132{height:1167.750000px;}
.h0_c00132{height:1167.839997px;}
.w1_c00132{width:920.250000px;}
.w0_c00132{width:920.519990px;}
.x0_c00132{left:0.000000px;}
.x140_c00132{left:132.450000px;}
.x119_c00132{left:133.650000px;}
.xfe_c00132{left:134.700000px;}
.xe2_c00132{left:135.750000px;}
.x9d_c00132{left:136.950000px;}
.x3c_c00132{left:138.000000px;}
.x13_c00132{left:139.050000px;}
.x1_c00132{left:140.700000px;}
.x141_c00132{left:148.350000px;}
.xff_c00132{left:150.900000px;}
.x12f_c00132{left:153.000000px;}
.x24_c00132{left:155.250000px;}
.xbb_c00132{left:160.200000px;}
.xe7_c00132{left:163.050000px;}
.xeb_c00132{left:164.400000px;}
.x139_c00132{left:166.350000px;}
.x14_c00132{left:167.550000px;}
.xd4_c00132{left:169.050000px;}
.x3_c00132{left:170.250000px;}
.x7c_c00132{left:171.600000px;}
.xa6_c00132{left:174.600000px;}
.xe3_c00132{left:175.650000px;}
.xfb_c00132{left:179.100000px;}
.x58_c00132{left:180.900000px;}
.x31_c00132{left:182.250000px;}
.xd5_c00132{left:183.450000px;}
.x130_c00132{left:186.150000px;}
.x49_c00132{left:187.350000px;}
.xbc_c00132{left:188.700000px;}
.xaf_c00132{left:190.800000px;}
.x9e_c00132{left:192.000000px;}
.x88_c00132{left:193.800000px;}
.xda_c00132{left:195.300000px;}
.x95_c00132{left:198.000000px;}
.x4_c00132{left:199.050000px;}
.x3d_c00132{left:200.250000px;}
.x92_c00132{left:203.100000px;}
.x63_c00132{left:204.600000px;}
.x4a_c00132{left:207.150000px;}
.xa7_c00132{left:208.500000px;}
.x6e_c00132{left:210.450000px;}
.xb0_c00132{left:212.100000px;}
.xc5_c00132{left:215.100000px;}
.x142_c00132{left:218.100000px;}
.xd6_c00132{left:219.150000px;}
.x148_c00132{left:221.400000px;}
.x9f_c00132{left:223.650000px;}
.x32_c00132{left:225.750000px;}
.x121_c00132{left:227.250000px;}
.x10c_c00132{left:228.300000px;}
.x15_c00132{left:229.500000px;}
.x25_c00132{left:230.550000px;}
.x93_c00132{left:231.600000px;}
.xbd_c00132{left:232.950000px;}
.xb1_c00132{left:234.000000px;}
.x4b_c00132{left:235.950000px;}
.x112_c00132{left:238.200000px;}
.x107_c00132{left:239.250000px;}
.x125_c00132{left:242.250000px;}
.x89_c00132{left:243.450000px;}
.xe4_c00132{left:244.800000px;}
.x6f_c00132{left:247.950000px;}
.x64_c00132{left:249.900000px;}
.x131_c00132{left:250.950000px;}
.x16_c00132{left:255.000000px;}
.x128_c00132{left:256.050000px;}
.x96_c00132{left:257.100000px;}
.x33_c00132{left:258.150000px;}
.x8a_c00132{left:259.350000px;}
.x5_c00132{left:261.300000px;}
.x26_c00132{left:262.950000px;}
.xb2_c00132{left:264.300000px;}
.xc6_c00132{left:266.250000px;}
.x113_c00132{left:267.300000px;}
.x3e_c00132{left:270.150000px;}
.x122_c00132{left:274.050000px;}
.xa0_c00132{left:275.550000px;}
.x59_c00132{left:280.350000px;}
.x94_c00132{left:282.300000px;}
.xdb_c00132{left:285.300000px;}
.x6_c00132{left:286.500000px;}
.x100_c00132{left:288.000000px;}
.x27_c00132{left:289.650000px;}
.xd7_c00132{left:290.850000px;}
.x4c_c00132{left:293.250000px;}
.x149_c00132{left:296.700000px;}
.x115_c00132{left:301.350000px;}
.x17_c00132{left:303.600000px;}
.x108_c00132{left:306.900000px;}
.x97_c00132{left:308.550000px;}
.x132_c00132{left:311.400000px;}
.x70_c00132{left:312.450000px;}
.xec_c00132{left:313.500000px;}
.x144_c00132{left:315.450000px;}
.xf5_c00132{left:316.950000px;}
.x11a_c00132{left:318.300000px;}
.x65_c00132{left:319.350000px;}
.xa1_c00132{left:320.550000px;}
.xb3_c00132{left:321.900000px;}
.x5a_c00132{left:324.600000px;}
.x34_c00132{left:330.150000px;}
.xa8_c00132{left:333.000000px;}
.x71_c00132{left:336.900000px;}
.x123_c00132{left:338.400000px;}
.x8b_c00132{left:339.600000px;}
.x126_c00132{left:343.050000px;}
.xd8_c00132{left:345.900000px;}
.x101_c00132{left:347.700000px;}
.x66_c00132{left:348.900000px;}
.x18_c00132{left:350.100000px;}
.x4d_c00132{left:352.350000px;}
.xb4_c00132{left:354.600000px;}
.x11b_c00132{left:356.400000px;}
.xcc_c00132{left:358.800000px;}
.xa9_c00132{left:360.750000px;}
.x7d_c00132{left:363.000000px;}
.x13a_c00132{left:364.500000px;}
.x7_c00132{left:366.450000px;}
.x35_c00132{left:368.250000px;}
.xed_c00132{left:369.300000px;}
.xf1_c00132{left:371.550000px;}
.x28_c00132{left:375.300000px;}
.x14a_c00132{left:376.650000px;}
.x133_c00132{left:378.000000px;}
.x4e_c00132{left:379.650000px;}
.x3f_c00132{left:381.750000px;}
.xaa_c00132{left:385.650000px;}
.x19_c00132{left:389.700000px;}
.xf2_c00132{left:396.750000px;}
.x72_c00132{left:397.800000px;}
.xf6_c00132{left:399.000000px;}
.xee_c00132{left:402.000000px;}
.x67_c00132{left:403.200000px;}
.x129_c00132{left:406.200000px;}
.x109_c00132{left:407.400000px;}
.xb5_c00132{left:408.600000px;}
.x40_c00132{left:412.350000px;}
.xe8_c00132{left:413.400000px;}
.x5b_c00132{left:415.650000px;}
.xc7_c00132{left:418.950000px;}
.x29_c00132{left:421.050000px;}
.x7e_c00132{left:423.450000px;}
.x1a_c00132{left:424.950000px;}
.x116_c00132{left:427.650000px;}
.x8_c00132{left:429.150000px;}
.x10d_c00132{left:433.800000px;}
.x4f_c00132{left:435.450000px;}
.x134_c00132{left:436.650000px;}
.x2_c00132{left:437.700000px;}
.x102_c00132{left:438.750000px;}
.x8c_c00132{left:439.950000px;}
.x124_c00132{left:441.000000px;}
.x73_c00132{left:442.050000px;}
.x41_c00132{left:443.250000px;}
.x7f_c00132{left:445.800000px;}
.x12a_c00132{left:447.300000px;}
.x5c_c00132{left:452.400000px;}
.x9_c00132{left:454.050000px;}
.x50_c00132{left:455.550000px;}
.xb6_c00132{left:457.200000px;}
.x36_c00132{left:461.250000px;}
.x1b_c00132{left:462.450000px;}
.x11c_c00132{left:465.750000px;}
.xdc_c00132{left:468.750000px;}
.x10e_c00132{left:469.800000px;}
.x2a_c00132{left:471.150000px;}
.x74_c00132{left:473.700000px;}
.xf3_c00132{left:474.900000px;}
.x80_c00132{left:476.700000px;}
.x117_c00132{left:477.750000px;}
.x8d_c00132{left:481.650000px;}
.x68_c00132{left:482.850000px;}
.xdd_c00132{left:486.450000px;}
.xcd_c00132{left:488.100000px;}
.xa2_c00132{left:490.200000px;}
.x10a_c00132{left:491.400000px;}
.x1c_c00132{left:493.350000px;}
.xbe_c00132{left:494.550000px;}
.xa_c00132{left:495.750000px;}
.x98_c00132{left:500.100000px;}
.x5d_c00132{left:501.300000px;}
.x13b_c00132{left:502.350000px;}
.x37_c00132{left:504.150000px;}
.x145_c00132{left:505.200000px;}
.xc8_c00132{left:507.900000px;}
.x42_c00132{left:509.100000px;}
.x69_c00132{left:510.150000px;}
.x135_c00132{left:511.500000px;}
.x1d_c00132{left:513.450000px;}
.x81_c00132{left:515.550000px;}
.x118_c00132{left:519.150000px;}
.xab_c00132{left:520.200000px;}
.x75_c00132{left:521.700000px;}
.x10f_c00132{left:523.050000px;}
.xce_c00132{left:524.850000px;}
.x51_c00132{left:526.500000px;}
.xb_c00132{left:529.650000px;}
.xbf_c00132{left:531.600000px;}
.x10b_c00132{left:533.550000px;}
.x146_c00132{left:535.800000px;}
.xa3_c00132{left:538.800000px;}
.xe5_c00132{left:540.000000px;}
.x5e_c00132{left:542.700000px;}
.x99_c00132{left:546.150000px;}
.xc_c00132{left:547.650000px;}
.x2b_c00132{left:548.850000px;}
.x76_c00132{left:550.200000px;}
.x43_c00132{left:552.000000px;}
.x11d_c00132{left:554.250000px;}
.x103_c00132{left:556.050000px;}
.x82_c00132{left:558.000000px;}
.x13c_c00132{left:559.200000px;}
.x1e_c00132{left:561.300000px;}
.x52_c00132{left:564.600000px;}
.x2c_c00132{left:566.550000px;}
.x38_c00132{left:567.900000px;}
.xf7_c00132{left:569.250000px;}
.x137_c00132{left:571.200000px;}
.x14b_c00132{left:572.550000px;}
.xc9_c00132{left:574.500000px;}
.xa4_c00132{left:575.550000px;}
.xc0_c00132{left:577.350000px;}
.xac_c00132{left:579.900000px;}
.x2d_c00132{left:581.700000px;}
.x83_c00132{left:583.950000px;}
.x5f_c00132{left:586.200000px;}
.xd_c00132{left:587.250000px;}
.x11e_c00132{left:588.450000px;}
.xde_c00132{left:589.800000px;}
.x44_c00132{left:590.850000px;}
.x104_c00132{left:593.100000px;}
.xb7_c00132{left:595.050000px;}
.xf8_c00132{left:597.300000px;}
.x8e_c00132{left:599.100000px;}
.x12b_c00132{left:602.100000px;}
.x9a_c00132{left:603.750000px;}
.x60_c00132{left:606.000000px;}
.x143_c00132{left:608.400000px;}
.x77_c00132{left:609.600000px;}
.x84_c00132{left:612.450000px;}
.xb8_c00132{left:615.600000px;}
.x45_c00132{left:616.800000px;}
.xcf_c00132{left:619.200000px;}
.xc1_c00132{left:621.900000px;}
.x53_c00132{left:626.850000px;}
.x1f_c00132{left:628.950000px;}
.x138_c00132{left:631.350000px;}
.xad_c00132{left:633.600000px;}
.x6a_c00132{left:635.100000px;}
.xe_c00132{left:636.900000px;}
.xd0_c00132{left:639.300000px;}
.x78_c00132{left:642.750000px;}
.x39_c00132{left:645.600000px;}
.xef_c00132{left:646.800000px;}
.x46_c00132{left:648.150000px;}
.x147_c00132{left:649.800000px;}
.xdf_c00132{left:651.300000px;}
.x110_c00132{left:652.650000px;}
.x2e_c00132{left:655.200000px;}
.x13d_c00132{left:657.150000px;}
.x8f_c00132{left:659.550000px;}
.x12c_c00132{left:661.500000px;}
.xf4_c00132{left:662.550000px;}
.xb9_c00132{left:664.500000px;}
.xf_c00132{left:665.700000px;}
.x47_c00132{left:667.950000px;}
.xa5_c00132{left:669.150000px;}
.x105_c00132{left:670.500000px;}
.x2f_c00132{left:672.450000px;}
.xca_c00132{left:673.500000px;}
.x54_c00132{left:674.700000px;}
.x9b_c00132{left:675.750000px;}
.x13e_c00132{left:679.500000px;}
.x85_c00132{left:680.550000px;}
.xf0_c00132{left:682.050000px;}
.x61_c00132{left:684.150000px;}
.x11f_c00132{left:685.650000px;}
.x6b_c00132{left:687.000000px;}
.x12d_c00132{left:689.550000px;}
.x55_c00132{left:690.900000px;}
.x20_c00132{left:692.250000px;}
.x111_c00132{left:693.300000px;}
.x79_c00132{left:695.700000px;}
.xd1_c00132{left:698.250000px;}
.xd9_c00132{left:699.600000px;}
.xc2_c00132{left:701.100000px;}
.xf9_c00132{left:706.500000px;}
.xfc_c00132{left:707.550000px;}
.x56_c00132{left:708.600000px;}
.x6c_c00132{left:709.650000px;}
.x30_c00132{left:711.750000px;}
.x86_c00132{left:714.000000px;}
.x7a_c00132{left:715.500000px;}
.x10_c00132{left:717.150000px;}
.xba_c00132{left:718.200000px;}
.xd2_c00132{left:720.600000px;}
.x90_c00132{left:722.550000px;}
.xe9_c00132{left:723.750000px;}
.x13f_c00132{left:726.300000px;}
.xcb_c00132{left:728.700000px;}
.xe0_c00132{left:729.750000px;}
.x21_c00132{left:731.550000px;}
.x136_c00132{left:733.050000px;}
.xc3_c00132{left:735.000000px;}
.xae_c00132{left:737.700000px;}
.xe6_c00132{left:740.550000px;}
.x22_c00132{left:743.850000px;}
.x11_c00132{left:745.650000px;}
.x120_c00132{left:747.600000px;}
.x62_c00132{left:750.750000px;}
.x127_c00132{left:756.750000px;}
.x57_c00132{left:757.950000px;}
.xd3_c00132{left:759.450000px;}
.x114_c00132{left:761.100000px;}
.x91_c00132{left:762.150000px;}
.x3a_c00132{left:765.900000px;}
.x6d_c00132{left:766.950000px;}
.x7b_c00132{left:768.000000px;}
.xfd_c00132{left:770.850000px;}
.x48_c00132{left:776.250000px;}
.x12e_c00132{left:777.450000px;}
.xe1_c00132{left:779.400000px;}
.x23_c00132{left:780.600000px;}
.xfa_c00132{left:782.100000px;}
.xc4_c00132{left:783.600000px;}
.x87_c00132{left:785.250000px;}
.x3b_c00132{left:786.750000px;}
.xea_c00132{left:790.050000px;}
.x9c_c00132{left:791.400000px;}
.x106_c00132{left:798.000000px;}
.x12_c00132{left:803.550000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws4_c00132{word-spacing:-5.964830pt;}
.ws0_c00132{word-spacing:-2.666667pt;}
.ws5_c00132{word-spacing:0.000000pt;}
.ws3_c00132{word-spacing:6.202423pt;}
.ws2_c00132{word-spacing:6.777778pt;}
.ws1_c00132{word-spacing:12.413083pt;}
._0_c00132{width:19.813990pt;}
.fs0_c00132{font-size:48.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y2d_c00132{bottom:124.800000pt;}
.y2c_c00132{bottom:139.866667pt;}
.y2b_c00132{bottom:153.866667pt;}
.y2a_c00132{bottom:167.733333pt;}
.y29_c00132{bottom:181.466667pt;}
.y28_c00132{bottom:195.466667pt;}
.y27_c00132{bottom:235.466667pt;}
.y26_c00132{bottom:252.400000pt;}
.y25_c00132{bottom:271.333333pt;}
.y24_c00132{bottom:289.200000pt;}
.y23_c00132{bottom:307.066667pt;}
.y22_c00132{bottom:324.666667pt;}
.y21_c00132{bottom:342.266667pt;}
.y20_c00132{bottom:360.133333pt;}
.y1f_c00132{bottom:377.733333pt;}
.y1e_c00132{bottom:395.600000pt;}
.y1d_c00132{bottom:413.466667pt;}
.y1c_c00132{bottom:431.066667pt;}
.y1b_c00132{bottom:448.666667pt;}
.y1a_c00132{bottom:466.533333pt;}
.y19_c00132{bottom:484.133333pt;}
.y18_c00132{bottom:501.733333pt;}
.y17_c00132{bottom:519.333333pt;}
.y16_c00132{bottom:537.600000pt;}
.y15_c00132{bottom:555.466667pt;}
.y14_c00132{bottom:573.333333pt;}
.y13_c00132{bottom:591.200000pt;}
.y12_c00132{bottom:608.800000pt;}
.y11_c00132{bottom:626.666667pt;}
.y10_c00132{bottom:644.266667pt;}
.yf_c00132{bottom:662.133333pt;}
.ye_c00132{bottom:679.733333pt;}
.yd_c00132{bottom:698.400000pt;}
.yc_c00132{bottom:715.733333pt;}
.yb_c00132{bottom:733.333333pt;}
.ya_c00132{bottom:751.200000pt;}
.y9_c00132{bottom:768.800000pt;}
.y8_c00132{bottom:786.666667pt;}
.y7_c00132{bottom:804.533333pt;}
.y6_c00132{bottom:822.133333pt;}
.y5_c00132{bottom:840.000000pt;}
.y4_c00132{bottom:857.600000pt;}
.y3_c00132{bottom:875.466667pt;}
.y2_c00132{bottom:893.066667pt;}
.y1_c00132{bottom:927.333333pt;}
.h2_c00132{height:48.000000pt;}
.h1_c00132{height:1038.000000pt;}
.h0_c00132{height:1038.079997pt;}
.w1_c00132{width:818.000000pt;}
.w0_c00132{width:818.239991pt;}
.x0_c00132{left:0.000000pt;}
.x140_c00132{left:117.733333pt;}
.x119_c00132{left:118.800000pt;}
.xfe_c00132{left:119.733333pt;}
.xe2_c00132{left:120.666667pt;}
.x9d_c00132{left:121.733333pt;}
.x3c_c00132{left:122.666667pt;}
.x13_c00132{left:123.600000pt;}
.x1_c00132{left:125.066667pt;}
.x141_c00132{left:131.866667pt;}
.xff_c00132{left:134.133333pt;}
.x12f_c00132{left:136.000000pt;}
.x24_c00132{left:138.000000pt;}
.xbb_c00132{left:142.400000pt;}
.xe7_c00132{left:144.933333pt;}
.xeb_c00132{left:146.133333pt;}
.x139_c00132{left:147.866667pt;}
.x14_c00132{left:148.933333pt;}
.xd4_c00132{left:150.266667pt;}
.x3_c00132{left:151.333333pt;}
.x7c_c00132{left:152.533333pt;}
.xa6_c00132{left:155.200000pt;}
.xe3_c00132{left:156.133333pt;}
.xfb_c00132{left:159.200000pt;}
.x58_c00132{left:160.800000pt;}
.x31_c00132{left:162.000000pt;}
.xd5_c00132{left:163.066667pt;}
.x130_c00132{left:165.466667pt;}
.x49_c00132{left:166.533333pt;}
.xbc_c00132{left:167.733333pt;}
.xaf_c00132{left:169.600000pt;}
.x9e_c00132{left:170.666667pt;}
.x88_c00132{left:172.266667pt;}
.xda_c00132{left:173.600000pt;}
.x95_c00132{left:176.000000pt;}
.x4_c00132{left:176.933333pt;}
.x3d_c00132{left:178.000000pt;}
.x92_c00132{left:180.533333pt;}
.x63_c00132{left:181.866667pt;}
.x4a_c00132{left:184.133333pt;}
.xa7_c00132{left:185.333333pt;}
.x6e_c00132{left:187.066667pt;}
.xb0_c00132{left:188.533333pt;}
.xc5_c00132{left:191.200000pt;}
.x142_c00132{left:193.866667pt;}
.xd6_c00132{left:194.800000pt;}
.x148_c00132{left:196.800000pt;}
.x9f_c00132{left:198.800000pt;}
.x32_c00132{left:200.666667pt;}
.x121_c00132{left:202.000000pt;}
.x10c_c00132{left:202.933333pt;}
.x15_c00132{left:204.000000pt;}
.x25_c00132{left:204.933333pt;}
.x93_c00132{left:205.866667pt;}
.xbd_c00132{left:207.066667pt;}
.xb1_c00132{left:208.000000pt;}
.x4b_c00132{left:209.733333pt;}
.x112_c00132{left:211.733333pt;}
.x107_c00132{left:212.666667pt;}
.x125_c00132{left:215.333333pt;}
.x89_c00132{left:216.400000pt;}
.xe4_c00132{left:217.600000pt;}
.x6f_c00132{left:220.400000pt;}
.x64_c00132{left:222.133333pt;}
.x131_c00132{left:223.066667pt;}
.x16_c00132{left:226.666667pt;}
.x128_c00132{left:227.600000pt;}
.x96_c00132{left:228.533333pt;}
.x33_c00132{left:229.466667pt;}
.x8a_c00132{left:230.533333pt;}
.x5_c00132{left:232.266667pt;}
.x26_c00132{left:233.733333pt;}
.xb2_c00132{left:234.933333pt;}
.xc6_c00132{left:236.666667pt;}
.x113_c00132{left:237.600000pt;}
.x3e_c00132{left:240.133333pt;}
.x122_c00132{left:243.600000pt;}
.xa0_c00132{left:244.933333pt;}
.x59_c00132{left:249.200000pt;}
.x94_c00132{left:250.933333pt;}
.xdb_c00132{left:253.600000pt;}
.x6_c00132{left:254.666667pt;}
.x100_c00132{left:256.000000pt;}
.x27_c00132{left:257.466667pt;}
.xd7_c00132{left:258.533333pt;}
.x4c_c00132{left:260.666667pt;}
.x149_c00132{left:263.733333pt;}
.x115_c00132{left:267.866667pt;}
.x17_c00132{left:269.866667pt;}
.x108_c00132{left:272.800000pt;}
.x97_c00132{left:274.266667pt;}
.x132_c00132{left:276.800000pt;}
.x70_c00132{left:277.733333pt;}
.xec_c00132{left:278.666667pt;}
.x144_c00132{left:280.400000pt;}
.xf5_c00132{left:281.733333pt;}
.x11a_c00132{left:282.933333pt;}
.x65_c00132{left:283.866667pt;}
.xa1_c00132{left:284.933333pt;}
.xb3_c00132{left:286.133333pt;}
.x5a_c00132{left:288.533333pt;}
.x34_c00132{left:293.466667pt;}
.xa8_c00132{left:296.000000pt;}
.x71_c00132{left:299.466667pt;}
.x123_c00132{left:300.800000pt;}
.x8b_c00132{left:301.866667pt;}
.x126_c00132{left:304.933333pt;}
.xd8_c00132{left:307.466667pt;}
.x101_c00132{left:309.066667pt;}
.x66_c00132{left:310.133333pt;}
.x18_c00132{left:311.200000pt;}
.x4d_c00132{left:313.200000pt;}
.xb4_c00132{left:315.200000pt;}
.x11b_c00132{left:316.800000pt;}
.xcc_c00132{left:318.933333pt;}
.xa9_c00132{left:320.666667pt;}
.x7d_c00132{left:322.666667pt;}
.x13a_c00132{left:324.000000pt;}
.x7_c00132{left:325.733333pt;}
.x35_c00132{left:327.333333pt;}
.xed_c00132{left:328.266667pt;}
.xf1_c00132{left:330.266667pt;}
.x28_c00132{left:333.600000pt;}
.x14a_c00132{left:334.800000pt;}
.x133_c00132{left:336.000000pt;}
.x4e_c00132{left:337.466667pt;}
.x3f_c00132{left:339.333333pt;}
.xaa_c00132{left:342.800000pt;}
.x19_c00132{left:346.400000pt;}
.xf2_c00132{left:352.666667pt;}
.x72_c00132{left:353.600000pt;}
.xf6_c00132{left:354.666667pt;}
.xee_c00132{left:357.333333pt;}
.x67_c00132{left:358.400000pt;}
.x129_c00132{left:361.066667pt;}
.x109_c00132{left:362.133333pt;}
.xb5_c00132{left:363.200000pt;}
.x40_c00132{left:366.533333pt;}
.xe8_c00132{left:367.466667pt;}
.x5b_c00132{left:369.466667pt;}
.xc7_c00132{left:372.400000pt;}
.x29_c00132{left:374.266667pt;}
.x7e_c00132{left:376.400000pt;}
.x1a_c00132{left:377.733333pt;}
.x116_c00132{left:380.133333pt;}
.x8_c00132{left:381.466667pt;}
.x10d_c00132{left:385.600000pt;}
.x4f_c00132{left:387.066667pt;}
.x134_c00132{left:388.133333pt;}
.x2_c00132{left:389.066667pt;}
.x102_c00132{left:390.000000pt;}
.x8c_c00132{left:391.066667pt;}
.x124_c00132{left:392.000000pt;}
.x73_c00132{left:392.933333pt;}
.x41_c00132{left:394.000000pt;}
.x7f_c00132{left:396.266667pt;}
.x12a_c00132{left:397.600000pt;}
.x5c_c00132{left:402.133333pt;}
.x9_c00132{left:403.600000pt;}
.x50_c00132{left:404.933333pt;}
.xb6_c00132{left:406.400000pt;}
.x36_c00132{left:410.000000pt;}
.x1b_c00132{left:411.066667pt;}
.x11c_c00132{left:414.000000pt;}
.xdc_c00132{left:416.666667pt;}
.x10e_c00132{left:417.600000pt;}
.x2a_c00132{left:418.800000pt;}
.x74_c00132{left:421.066667pt;}
.xf3_c00132{left:422.133333pt;}
.x80_c00132{left:423.733333pt;}
.x117_c00132{left:424.666667pt;}
.x8d_c00132{left:428.133333pt;}
.x68_c00132{left:429.200000pt;}
.xdd_c00132{left:432.400000pt;}
.xcd_c00132{left:433.866667pt;}
.xa2_c00132{left:435.733333pt;}
.x10a_c00132{left:436.800000pt;}
.x1c_c00132{left:438.533333pt;}
.xbe_c00132{left:439.600000pt;}
.xa_c00132{left:440.666667pt;}
.x98_c00132{left:444.533333pt;}
.x5d_c00132{left:445.600000pt;}
.x13b_c00132{left:446.533333pt;}
.x37_c00132{left:448.133333pt;}
.x145_c00132{left:449.066667pt;}
.xc8_c00132{left:451.466667pt;}
.x42_c00132{left:452.533333pt;}
.x69_c00132{left:453.466667pt;}
.x135_c00132{left:454.666667pt;}
.x1d_c00132{left:456.400000pt;}
.x81_c00132{left:458.266667pt;}
.x118_c00132{left:461.466667pt;}
.xab_c00132{left:462.400000pt;}
.x75_c00132{left:463.733333pt;}
.x10f_c00132{left:464.933333pt;}
.xce_c00132{left:466.533333pt;}
.x51_c00132{left:468.000000pt;}
.xb_c00132{left:470.800000pt;}
.xbf_c00132{left:472.533333pt;}
.x10b_c00132{left:474.266667pt;}
.x146_c00132{left:476.266667pt;}
.xa3_c00132{left:478.933333pt;}
.xe5_c00132{left:480.000000pt;}
.x5e_c00132{left:482.400000pt;}
.x99_c00132{left:485.466667pt;}
.xc_c00132{left:486.800000pt;}
.x2b_c00132{left:487.866667pt;}
.x76_c00132{left:489.066667pt;}
.x43_c00132{left:490.666667pt;}
.x11d_c00132{left:492.666667pt;}
.x103_c00132{left:494.266667pt;}
.x82_c00132{left:496.000000pt;}
.x13c_c00132{left:497.066667pt;}
.x1e_c00132{left:498.933333pt;}
.x52_c00132{left:501.866667pt;}
.x2c_c00132{left:503.600000pt;}
.x38_c00132{left:504.800000pt;}
.xf7_c00132{left:506.000000pt;}
.x137_c00132{left:507.733333pt;}
.x14b_c00132{left:508.933333pt;}
.xc9_c00132{left:510.666667pt;}
.xa4_c00132{left:511.600000pt;}
.xc0_c00132{left:513.200000pt;}
.xac_c00132{left:515.466667pt;}
.x2d_c00132{left:517.066667pt;}
.x83_c00132{left:519.066667pt;}
.x5f_c00132{left:521.066667pt;}
.xd_c00132{left:522.000000pt;}
.x11e_c00132{left:523.066667pt;}
.xde_c00132{left:524.266667pt;}
.x44_c00132{left:525.200000pt;}
.x104_c00132{left:527.200000pt;}
.xb7_c00132{left:528.933333pt;}
.xf8_c00132{left:530.933333pt;}
.x8e_c00132{left:532.533333pt;}
.x12b_c00132{left:535.200000pt;}
.x9a_c00132{left:536.666667pt;}
.x60_c00132{left:538.666667pt;}
.x143_c00132{left:540.800000pt;}
.x77_c00132{left:541.866667pt;}
.x84_c00132{left:544.400000pt;}
.xb8_c00132{left:547.200000pt;}
.x45_c00132{left:548.266667pt;}
.xcf_c00132{left:550.400000pt;}
.xc1_c00132{left:552.800000pt;}
.x53_c00132{left:557.200000pt;}
.x1f_c00132{left:559.066667pt;}
.x138_c00132{left:561.200000pt;}
.xad_c00132{left:563.200000pt;}
.x6a_c00132{left:564.533333pt;}
.xe_c00132{left:566.133333pt;}
.xd0_c00132{left:568.266667pt;}
.x78_c00132{left:571.333333pt;}
.x39_c00132{left:573.866667pt;}
.xef_c00132{left:574.933333pt;}
.x46_c00132{left:576.133333pt;}
.x147_c00132{left:577.600000pt;}
.xdf_c00132{left:578.933333pt;}
.x110_c00132{left:580.133333pt;}
.x2e_c00132{left:582.400000pt;}
.x13d_c00132{left:584.133333pt;}
.x8f_c00132{left:586.266667pt;}
.x12c_c00132{left:588.000000pt;}
.xf4_c00132{left:588.933333pt;}
.xb9_c00132{left:590.666667pt;}
.xf_c00132{left:591.733333pt;}
.x47_c00132{left:593.733333pt;}
.xa5_c00132{left:594.800000pt;}
.x105_c00132{left:596.000000pt;}
.x2f_c00132{left:597.733333pt;}
.xca_c00132{left:598.666667pt;}
.x54_c00132{left:599.733333pt;}
.x9b_c00132{left:600.666667pt;}
.x13e_c00132{left:604.000000pt;}
.x85_c00132{left:604.933333pt;}
.xf0_c00132{left:606.266667pt;}
.x61_c00132{left:608.133333pt;}
.x11f_c00132{left:609.466667pt;}
.x6b_c00132{left:610.666667pt;}
.x12d_c00132{left:612.933333pt;}
.x55_c00132{left:614.133333pt;}
.x20_c00132{left:615.333333pt;}
.x111_c00132{left:616.266667pt;}
.x79_c00132{left:618.400000pt;}
.xd1_c00132{left:620.666667pt;}
.xd9_c00132{left:621.866667pt;}
.xc2_c00132{left:623.200000pt;}
.xf9_c00132{left:628.000000pt;}
.xfc_c00132{left:628.933333pt;}
.x56_c00132{left:629.866667pt;}
.x6c_c00132{left:630.800000pt;}
.x30_c00132{left:632.666667pt;}
.x86_c00132{left:634.666667pt;}
.x7a_c00132{left:636.000000pt;}
.x10_c00132{left:637.466667pt;}
.xba_c00132{left:638.400000pt;}
.xd2_c00132{left:640.533333pt;}
.x90_c00132{left:642.266667pt;}
.xe9_c00132{left:643.333333pt;}
.x13f_c00132{left:645.600000pt;}
.xcb_c00132{left:647.733333pt;}
.xe0_c00132{left:648.666667pt;}
.x21_c00132{left:650.266667pt;}
.x136_c00132{left:651.600000pt;}
.xc3_c00132{left:653.333333pt;}
.xae_c00132{left:655.733333pt;}
.xe6_c00132{left:658.266667pt;}
.x22_c00132{left:661.200000pt;}
.x11_c00132{left:662.800000pt;}
.x120_c00132{left:664.533333pt;}
.x62_c00132{left:667.333333pt;}
.x127_c00132{left:672.666667pt;}
.x57_c00132{left:673.733333pt;}
.xd3_c00132{left:675.066667pt;}
.x114_c00132{left:676.533333pt;}
.x91_c00132{left:677.466667pt;}
.x3a_c00132{left:680.800000pt;}
.x6d_c00132{left:681.733333pt;}
.x7b_c00132{left:682.666667pt;}
.xfd_c00132{left:685.200000pt;}
.x48_c00132{left:690.000000pt;}
.x12e_c00132{left:691.066667pt;}
.xe1_c00132{left:692.800000pt;}
.x23_c00132{left:693.866667pt;}
.xfa_c00132{left:695.200000pt;}
.xc4_c00132{left:696.533333pt;}
.x87_c00132{left:698.000000pt;}
.x3b_c00132{left:699.333333pt;}
.xea_c00132{left:702.266667pt;}
.x9c_c00132{left:703.466667pt;}
.x106_c00132{left:709.333333pt;}
.x12_c00132{left:714.266667pt;}
}





/* 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_c00133 {
    display:none;
  }
  .loading-indicator_c00133.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00133 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_c00133 { 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_c00133" -> "#page-container .classname_c00133")
 */
.pf_c00133 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00133 { /* 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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00133 { /* 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_c00133 { /* 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_c00133 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00133 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00133 {overflow:visible;}
  }
}
.c_c00133 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00133 { /* 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_c00133:after { /* webkit #35443 */
  content: '';
}
.t_c00133:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00133 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 */
}
.__c00133 { /* 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_c00133 { /* info for Javascript */
  display:none;
}
.l_c00133 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00133 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00133 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00133: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_c00133 {
    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_c00133.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00133.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_c00133 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00133{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00133;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.000000;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;}
.m4_c00133{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);}
.m1_c00133{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m0_c00133{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.v0_c00133{vertical-align:0.000000px;}
.ls0_c00133{letter-spacing:0.000000px;}
.sc__c00133{text-shadow:none;}
.sc0_c00133{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__c00133{-webkit-text-stroke:0px transparent;}
.sc0_c00133{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00133{word-spacing:0.000000px;}
.fc0_c00133{color:transparent;}
.fs0_c00133{font-size:60.000000px;}
.y0_c00133{bottom:0.000000px;}
.y1_c00133{bottom:598.650000px;}
.h2_c00133{height:60.000000px;}
.h1_c00133{height:1167.750000px;}
.h0_c00133{height:1167.839997px;}
.w1_c00133{width:920.250000px;}
.w0_c00133{width:920.519990px;}
.x0_c00133{left:0.000000px;}
.x1_c00133{left:795.900000px;}
.x2_c00133{left:808.800000px;}
.x3_c00133{left:814.200000px;}
.x4_c00133{left:832.200000px;}
.x5_c00133{left:850.200000px;}
.x6_c00133{left:853.800000px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
.fs0_c00133{font-size:53.333333pt;}
.y0_c00133{bottom:0.000000pt;}
.y1_c00133{bottom:532.133333pt;}
.h2_c00133{height:53.333333pt;}
.h1_c00133{height:1038.000000pt;}
.h0_c00133{height:1038.079997pt;}
.w1_c00133{width:818.000000pt;}
.w0_c00133{width:818.239991pt;}
.x0_c00133{left:0.000000pt;}
.x1_c00133{left:707.466667pt;}
.x2_c00133{left:718.933333pt;}
.x3_c00133{left:723.733333pt;}
.x4_c00133{left:739.733333pt;}
.x5_c00133{left:755.733333pt;}
.x6_c00133{left:758.933333pt;}
}





/* 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_c00134 {
    display:none;
  }
  .loading-indicator_c00134.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00134 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_c00134 { 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_c00134" -> "#page-container .classname_c00134")
 */
.pf_c00134 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00134 { /* 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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00134 { /* 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_c00134 { /* 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_c00134 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00134 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00134 {overflow:visible;}
  }
}
.c_c00134 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00134 { /* 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_c00134:after { /* webkit #35443 */
  content: '';
}
.t_c00134:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00134 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 */
}
.__c00134 { /* 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_c00134 { /* info for Javascript */
  display:none;
}
.l_c00134 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00134 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00134 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00134: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_c00134 {
    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_c00134.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00134.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_c00134 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00134{font-family:sans-serif;visibility:hidden;}
.sc__c00134{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
}
.y0_c00134{bottom:0.000000px;}
.h1_c00134{height:1167.750000px;}
.h0_c00134{height:1167.839997px;}
.w1_c00134{width:920.250000px;}
.w0_c00134{width:920.519990px;}
.x0_c00134{left:0.000000px;}
@media print{
.y0_c00134{bottom:0.000000pt;}
.h1_c00134{height:1038.000000pt;}
.h0_c00134{height:1038.079997pt;}
.w1_c00134{width:818.000000pt;}
.w0_c00134{width:818.239991pt;}
.x0_c00134{left:0.000000pt;}
}





/* 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_c00135 {
    display:none;
  }
  .loading-indicator_c00135.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00135 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_c00135 { 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_c00135" -> "#page-container .classname_c00135")
 */
.pf_c00135 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00135 { /* 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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00135 { /* 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_c00135 { /* 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_c00135 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00135 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00135 {overflow:visible;}
  }
}
.c_c00135 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00135 { /* 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_c00135:after { /* webkit #35443 */
  content: '';
}
.t_c00135:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00135 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 */
}
.__c00135 { /* 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_c00135 { /* info for Javascript */
  display:none;
}
.l_c00135 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00135 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00135 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00135: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_c00135 {
    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_c00135.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00135.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_c00135 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00135{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00135;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.000000;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;}
.m92_c00135{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mab_c00135{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m46_c00135{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m52_c00135{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m64_c00135{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m88_c00135{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mae_c00135{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m13_c00135{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00135{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00135{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m69_c00135{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m8_c00135{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00135{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00135{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m38_c00135{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m65_c00135{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00135{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00135{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00135{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mac_c00135{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00135{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00135{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00135{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m62_c00135{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00135{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00135{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m84_c00135{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00135{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00135{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m77_c00135{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m82_c00135{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.maa_c00135{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maf_c00135{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00135{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00135{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m96_c00135{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m81_c00135{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m74_c00135{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m72_c00135{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11_c00135{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00135{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00135{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00135{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m53_c00135{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00135{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m71_c00135{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m22_c00135{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m32_c00135{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m83_c00135{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00135{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00135{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00135{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m10_c00135{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m61_c00135{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00135{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m57_c00135{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m67_c00135{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m99_c00135{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m12_c00135{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00135{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00135{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m68_c00135{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00135{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m85_c00135{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00135{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00135{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00135{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6_c00135{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00135{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{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);}
.m93_c00135{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m58_c00135{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m40_c00135{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00135{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00135{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00135{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00135{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m28_c00135{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00135{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00135{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00135{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.mad_c00135{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00135{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m37_c00135{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m21_c00135{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00135{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m95_c00135{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m45_c00135{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m87_c00135{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m59_c00135{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00135{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m51_c00135{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00135{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m24_c00135{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00135{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m35_c00135{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m89_c00135{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00135{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.md_c00135{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m27_c00135{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m76_c00135{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m80_c00135{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m70_c00135{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m91_c00135{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m42_c00135{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m97_c00135{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00135{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m56_c00135{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m20_c00135{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00135{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m54_c00135{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00135{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m75_c00135{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m48_c00135{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m63_c00135{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00135{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9_c00135{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00135{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m79_c00135{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m31_c00135{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma_c00135{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m66_c00135{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00135{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m98_c00135{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00135{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00135{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00135{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00135{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m1_c00135{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m55_c00135{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m78_c00135{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00135{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m7_c00135{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m90_c00135{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m26_c00135{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c00135{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m73_c00135{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00135{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m94_c00135{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m50_c00135{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m60_c00135{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.ls0_c00135{letter-spacing:0.000000px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{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__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00135{word-spacing:-4.071429px;}
.ws3_c00135{word-spacing:-2.862231px;}
.ws9_c00135{word-spacing:-1.667034px;}
.ws5_c00135{word-spacing:-1.617420px;}
.ws1_c00135{word-spacing:-0.575563px;}
.wsc_c00135{word-spacing:0.000000px;}
.ws4_c00135{word-spacing:5.151365px;}
.ws7_c00135{word-spacing:5.250000px;}
.wsb_c00135{word-spacing:5.581068px;}
.ws2_c00135{word-spacing:5.866732px;}
.ws6_c00135{word-spacing:7.375000px;}
.ws0_c00135{word-spacing:7.750000px;}
.ws8_c00135{word-spacing:9.628445px;}
.fc0_c00135{color:transparent;}
.fs0_c00135{font-size:54.000000px;}
.y0_c00135{bottom:0.000000px;}
.y2c_c00135{bottom:135.000000px;}
.y2b_c00135{bottom:150.900000px;}
.y2a_c00135{bottom:166.650000px;}
.y29_c00135{bottom:198.000000px;}
.y28_c00135{bottom:218.100000px;}
.y27_c00135{bottom:237.900000px;}
.y26_c00135{bottom:258.000000px;}
.y25_c00135{bottom:278.100000px;}
.y24_c00135{bottom:297.900000px;}
.y23_c00135{bottom:318.000000px;}
.y22_c00135{bottom:338.100000px;}
.y21_c00135{bottom:357.150000px;}
.y20_c00135{bottom:378.000000px;}
.y1f_c00135{bottom:397.800000px;}
.y1e_c00135{bottom:417.900000px;}
.y1d_c00135{bottom:437.700000px;}
.y1c_c00135{bottom:457.500000px;}
.y1b_c00135{bottom:478.050000px;}
.y1a_c00135{bottom:497.550000px;}
.y19_c00135{bottom:517.650000px;}
.y18_c00135{bottom:541.800000px;}
.y17_c00135{bottom:558.000000px;}
.y16_c00135{bottom:578.100000px;}
.y15_c00135{bottom:597.900000px;}
.y14_c00135{bottom:617.700000px;}
.y13_c00135{bottom:638.250000px;}
.y12_c00135{bottom:657.750000px;}
.y11_c00135{bottom:698.100000px;}
.y10_c00135{bottom:717.900000px;}
.yf_c00135{bottom:738.000000px;}
.ye_c00135{bottom:757.800000px;}
.yd_c00135{bottom:777.900000px;}
.yc_c00135{bottom:798.300000px;}
.yb_c00135{bottom:818.100000px;}
.ya_c00135{bottom:838.200000px;}
.y9_c00135{bottom:858.000000px;}
.y8_c00135{bottom:877.800000px;}
.y7_c00135{bottom:897.600000px;}
.y6_c00135{bottom:917.700000px;}
.y5_c00135{bottom:937.500000px;}
.y4_c00135{bottom:957.600000px;}
.y3_c00135{bottom:977.400000px;}
.y2_c00135{bottom:997.200000px;}
.y1_c00135{bottom:1035.000000px;}
.h2_c00135{height:54.000000px;}
.h1_c00135{height:1167.750000px;}
.h0_c00135{height:1167.839997px;}
.w1_c00135{width:920.250000px;}
.w0_c00135{width:920.519990px;}
.x0_c00135{left:0.000000px;}
.x12c_c00135{left:96.900000px;}
.x23_c00135{left:98.250000px;}
.x3_c00135{left:99.300000px;}
.xd4_c00135{left:117.150000px;}
.x10f_c00135{left:118.650000px;}
.x113_c00135{left:123.750000px;}
.xa4_c00135{left:126.900000px;}
.xad_c00135{left:128.400000px;}
.x92_c00135{left:129.600000px;}
.x12_c00135{left:130.950000px;}
.x65_c00135{left:132.450000px;}
.x7f_c00135{left:135.150000px;}
.xc9_c00135{left:139.650000px;}
.x104_c00135{left:141.450000px;}
.xd5_c00135{left:142.650000px;}
.xe2_c00135{left:144.900000px;}
.xea_c00135{left:145.950000px;}
.xf3_c00135{left:147.300000px;}
.x5b_c00135{left:151.050000px;}
.xa5_c00135{left:152.400000px;}
.x99_c00135{left:153.450000px;}
.x24_c00135{left:155.100000px;}
.xae_c00135{left:156.900000px;}
.x34_c00135{left:158.400000px;}
.x13_c00135{left:160.500000px;}
.x8b_c00135{left:162.450000px;}
.x110_c00135{left:165.750000px;}
.x42_c00135{left:167.400000px;}
.x4_c00135{left:169.800000px;}
.x12d_c00135{left:173.550000px;}
.x80_c00135{left:177.300000px;}
.x11f_c00135{left:179.100000px;}
.x114_c00135{left:180.150000px;}
.x9a_c00135{left:182.250000px;}
.xe3_c00135{left:184.200000px;}
.x124_c00135{left:185.400000px;}
.x14_c00135{left:186.750000px;}
.x35_c00135{left:189.750000px;}
.x25_c00135{left:191.850000px;}
.xf0_c00135{left:197.250000px;}
.x134_c00135{left:198.750000px;}
.x8c_c00135{left:200.550000px;}
.x5_c00135{left:202.500000px;}
.x5c_c00135{left:206.100000px;}
.x43_c00135{left:208.500000px;}
.xb6_c00135{left:209.550000px;}
.x4f_c00135{left:212.850000px;}
.x115_c00135{left:215.850000px;}
.x66_c00135{left:217.350000px;}
.xca_c00135{left:220.350000px;}
.x8d_c00135{left:222.150000px;}
.xf4_c00135{left:224.400000px;}
.x71_c00135{left:226.800000px;}
.x36_c00135{left:227.850000px;}
.x26_c00135{left:229.650000px;}
.xaf_c00135{left:230.700000px;}
.x15_c00135{left:231.750000px;}
.x105_c00135{left:232.800000px;}
.xeb_c00135{left:234.450000px;}
.xcb_c00135{left:235.800000px;}
.x9b_c00135{left:239.100000px;}
.xc3_c00135{left:240.450000px;}
.x50_c00135{left:242.400000px;}
.x81_c00135{left:244.650000px;}
.x27_c00135{left:246.900000px;}
.x6_c00135{left:250.350000px;}
.x16_c00135{left:251.850000px;}
.x5d_c00135{left:253.950000px;}
.x72_c00135{left:255.300000px;}
.xc4_c00135{left:258.150000px;}
.x9c_c00135{left:260.700000px;}
.xb7_c00135{left:261.750000px;}
.x117_c00135{left:265.650000px;}
.xdb_c00135{left:268.200000px;}
.x125_c00135{left:269.250000px;}
.x120_c00135{left:272.100000px;}
.xf5_c00135{left:273.300000px;}
.x128_c00135{left:275.850000px;}
.x51_c00135{left:277.350000px;}
.x12e_c00135{left:278.700000px;}
.xcc_c00135{left:280.500000px;}
.x67_c00135{left:283.650000px;}
.x17_c00135{left:286.050000px;}
.xd6_c00135{left:287.100000px;}
.x82_c00135{left:289.350000px;}
.x28_c00135{left:291.150000px;}
.x8e_c00135{left:293.100000px;}
.xb0_c00135{left:295.500000px;}
.x93_c00135{left:297.300000px;}
.x52_c00135{left:298.950000px;}
.x44_c00135{left:300.750000px;}
.x29_c00135{left:302.700000px;}
.xcd_c00135{left:306.450000px;}
.xa6_c00135{left:307.650000px;}
.x111_c00135{left:309.300000px;}
.x83_c00135{left:310.950000px;}
.x37_c00135{left:312.750000px;}
.x8f_c00135{left:315.450000px;}
.xec_c00135{left:317.850000px;}
.xdc_c00135{left:319.650000px;}
.x45_c00135{left:320.850000px;}
.x9d_c00135{left:323.700000px;}
.x7_c00135{left:324.900000px;}
.x73_c00135{left:328.350000px;}
.x121_c00135{left:330.750000px;}
.xb8_c00135{left:331.950000px;}
.x129_c00135{left:333.150000px;}
.x46_c00135{left:335.550000px;}
.xe4_c00135{left:337.500000px;}
.x94_c00135{left:341.250000px;}
.x68_c00135{left:343.350000px;}
.x18_c00135{left:344.700000px;}
.x9e_c00135{left:346.050000px;}
.x38_c00135{left:348.000000px;}
.x2a_c00135{left:350.250000px;}
.xb9_c00135{left:351.750000px;}
.x8_c00135{left:353.400000px;}
.xd7_c00135{left:354.450000px;}
.x109_c00135{left:356.550000px;}
.xed_c00135{left:358.950000px;}
.xbc_c00135{left:360.000000px;}
.x106_c00135{left:361.950000px;}
.x12a_c00135{left:363.750000px;}
.x69_c00135{left:366.450000px;}
.x126_c00135{left:369.750000px;}
.x19_c00135{left:370.950000px;}
.x131_c00135{left:373.950000px;}
.xb1_c00135{left:375.150000px;}
.x9f_c00135{left:378.150000px;}
.x53_c00135{left:379.650000px;}
.x2b_c00135{left:382.350000px;}
.x39_c00135{left:384.750000px;}
.xd8_c00135{left:386.100000px;}
.x84_c00135{left:387.600000px;}
.x118_c00135{left:389.400000px;}
.xce_c00135{left:391.350000px;}
.x90_c00135{left:393.150000px;}
.xc5_c00135{left:395.100000px;}
.xa0_c00135{left:396.450000px;}
.x47_c00135{left:397.500000px;}
.x74_c00135{left:398.550000px;}
.x1_c00135{left:399.900000px;}
.x9_c00135{left:402.000000px;}
.xb2_c00135{left:405.750000px;}
.x85_c00135{left:407.700000px;}
.x2c_c00135{left:410.100000px;}
.xfa_c00135{left:411.450000px;}
.x91_c00135{left:415.050000px;}
.xba_c00135{left:416.550000px;}
.x1a_c00135{left:418.050000px;}
.x10a_c00135{left:419.550000px;}
.x95_c00135{left:421.950000px;}
.xa7_c00135{left:423.450000px;}
.xbd_c00135{left:428.100000px;}
.xd9_c00135{left:430.050000px;}
.x75_c00135{left:433.050000px;}
.xbb_c00135{left:434.250000px;}
.x1b_c00135{left:436.050000px;}
.x6a_c00135{left:440.250000px;}
.x3a_c00135{left:441.600000px;}
.x86_c00135{left:442.650000px;}
.xfd_c00135{left:444.150000px;}
.x12b_c00135{left:446.850000px;}
.xb3_c00135{left:448.500000px;}
.xda_c00135{left:450.900000px;}
.xa_c00135{left:452.100000px;}
.x116_c00135{left:455.700000px;}
.x2d_c00135{left:457.950000px;}
.x48_c00135{left:459.750000px;}
.xdd_c00135{left:461.100000px;}
.x3b_c00135{left:462.150000px;}
.x107_c00135{left:465.150000px;}
.x76_c00135{left:466.500000px;}
.x5e_c00135{left:468.750000px;}
.xb_c00135{left:470.400000px;}
.xa8_c00135{left:472.050000px;}
.x135_c00135{left:473.550000px;}
.x54_c00135{left:475.050000px;}
.xf6_c00135{left:477.150000px;}
.x10b_c00135{left:478.200000px;}
.x1c_c00135{left:480.000000px;}
.xfe_c00135{left:481.650000px;}
.x6b_c00135{left:485.550000px;}
.x77_c00135{left:486.600000px;}
.x3c_c00135{left:487.650000px;}
.xbe_c00135{left:489.000000px;}
.x5f_c00135{left:490.050000px;}
.x1d_c00135{left:491.100000px;}
.xa9_c00135{left:492.150000px;}
.x136_c00135{left:493.350000px;}
.xcf_c00135{left:494.700000px;}
.xb4_c00135{left:497.550000px;}
.x87_c00135{left:499.500000px;}
.x122_c00135{left:502.050000px;}
.x55_c00135{left:503.850000px;}
.x6c_c00135{left:505.050000px;}
.x12f_c00135{left:506.550000px;}
.x2e_c00135{left:507.600000px;}
.xa1_c00135{left:510.600000px;}
.xf7_c00135{left:512.850000px;}
.x49_c00135{left:514.800000px;}
.x60_c00135{left:517.800000px;}
.x96_c00135{left:519.900000px;}
.xd0_c00135{left:520.950000px;}
.x1e_c00135{left:522.450000px;}
.x56_c00135{left:524.700000px;}
.xc_c00135{left:527.250000px;}
.x88_c00135{left:528.600000px;}
.xff_c00135{left:531.000000px;}
.x6d_c00135{left:533.100000px;}
.x2f_c00135{left:535.650000px;}
.x1f_c00135{left:539.700000px;}
.x10c_c00135{left:545.100000px;}
.x3d_c00135{left:548.850000px;}
.xde_c00135{left:550.650000px;}
.x97_c00135{left:552.600000px;}
.x11d_c00135{left:554.250000px;}
.xaa_c00135{left:555.600000px;}
.xfb_c00135{left:556.650000px;}
.x61_c00135{left:558.450000px;}
.xd_c00135{left:561.150000px;}
.x57_c00135{left:562.200000px;}
.xee_c00135{left:563.400000px;}
.xa2_c00135{left:565.050000px;}
.x20_c00135{left:568.200000px;}
.xdf_c00135{left:569.700000px;}
.x119_c00135{left:572.250000px;}
.x3e_c00135{left:574.050000px;}
.x10d_c00135{left:575.400000px;}
.xbf_c00135{left:576.450000px;}
.x78_c00135{left:580.200000px;}
.x6e_c00135{left:583.500000px;}
.x4a_c00135{left:586.500000px;}
.x132_c00135{left:588.450000px;}
.x11a_c00135{left:590.550000px;}
.xe_c00135{left:591.750000px;}
.xf1_c00135{left:592.950000px;}
.x30_c00135{left:596.550000px;}
.x89_c00135{left:597.750000px;}
.x79_c00135{left:600.300000px;}
.x62_c00135{left:604.500000px;}
.xe5_c00135{left:606.000000px;}
.x100_c00135{left:608.700000px;}
.xc6_c00135{left:610.800000px;}
.xf8_c00135{left:614.100000px;}
.x6f_c00135{left:615.900000px;}
.xc0_c00135{left:618.150000px;}
.xd1_c00135{left:619.950000px;}
.x11e_c00135{left:621.900000px;}
.x98_c00135{left:624.300000px;}
.x58_c00135{left:626.250000px;}
.xe6_c00135{left:629.100000px;}
.xe0_c00135{left:632.400000px;}
.x3f_c00135{left:633.750000px;}
.x7a_c00135{left:636.300000px;}
.xc7_c00135{left:637.500000px;}
.x63_c00135{left:640.500000px;}
.x4b_c00135{left:642.000000px;}
.x31_c00135{left:643.650000px;}
.xe7_c00135{left:645.600000px;}
.xf_c00135{left:648.300000px;}
.x127_c00135{left:651.150000px;}
.x108_c00135{left:652.800000px;}
.x21_c00135{left:653.850000px;}
.x133_c00135{left:656.100000px;}
.x101_c00135{left:659.100000px;}
.xd2_c00135{left:660.600000px;}
.x32_c00135{left:661.650000px;}
.xc8_c00135{left:663.750000px;}
.x7b_c00135{left:665.100000px;}
.x123_c00135{left:667.650000px;}
.x112_c00135{left:669.150000px;}
.x11b_c00135{left:671.550000px;}
.x4c_c00135{left:674.100000px;}
.xe8_c00135{left:676.950000px;}
.xf2_c00135{left:679.050000px;}
.xe1_c00135{left:682.050000px;}
.x137_c00135{left:684.300000px;}
.x10_c00135{left:685.350000px;}
.x64_c00135{left:687.600000px;}
.xc1_c00135{left:689.100000px;}
.xd3_c00135{left:692.700000px;}
.x59_c00135{left:694.350000px;}
.x7c_c00135{left:697.500000px;}
.x102_c00135{left:698.700000px;}
.xfc_c00135{left:699.900000px;}
.x8a_c00135{left:703.950000px;}
.xb5_c00135{left:706.050000px;}
.x11_c00135{left:707.700000px;}
.xab_c00135{left:709.800000px;}
.x40_c00135{left:713.550000px;}
.x33_c00135{left:715.650000px;}
.x7d_c00135{left:717.600000px;}
.x4d_c00135{left:719.850000px;}
.x5a_c00135{left:721.650000px;}
.x10e_c00135{left:722.700000px;}
.x70_c00135{left:723.900000px;}
.x41_c00135{left:725.850000px;}
.xac_c00135{left:727.050000px;}
.x11c_c00135{left:731.250000px;}
.xa3_c00135{left:733.800000px;}
.x4e_c00135{left:735.000000px;}
.xef_c00135{left:736.200000px;}
.x103_c00135{left:737.250000px;}
.x7e_c00135{left:741.000000px;}
.xe9_c00135{left:742.800000px;}
.x22_c00135{left:745.200000px;}
.xf9_c00135{left:746.700000px;}
.x2_c00135{left:748.800000px;}
.x130_c00135{left:753.900000px;}
.x138_c00135{left:755.550000px;}
.xc2_c00135{left:758.850000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.wsa_c00135{word-spacing:-3.619048pt;}
.ws3_c00135{word-spacing:-2.544205pt;}
.ws9_c00135{word-spacing:-1.481808pt;}
.ws5_c00135{word-spacing:-1.437707pt;}
.ws1_c00135{word-spacing:-0.511611pt;}
.wsc_c00135{word-spacing:0.000000pt;}
.ws4_c00135{word-spacing:4.578991pt;}
.ws7_c00135{word-spacing:4.666667pt;}
.wsb_c00135{word-spacing:4.960950pt;}
.ws2_c00135{word-spacing:5.214873pt;}
.ws6_c00135{word-spacing:6.555556pt;}
.ws0_c00135{word-spacing:6.888889pt;}
.ws8_c00135{word-spacing:8.558618pt;}
.fs0_c00135{font-size:48.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y2c_c00135{bottom:120.000000pt;}
.y2b_c00135{bottom:134.133333pt;}
.y2a_c00135{bottom:148.133333pt;}
.y29_c00135{bottom:176.000000pt;}
.y28_c00135{bottom:193.866667pt;}
.y27_c00135{bottom:211.466667pt;}
.y26_c00135{bottom:229.333333pt;}
.y25_c00135{bottom:247.200000pt;}
.y24_c00135{bottom:264.800000pt;}
.y23_c00135{bottom:282.666667pt;}
.y22_c00135{bottom:300.533333pt;}
.y21_c00135{bottom:317.466667pt;}
.y20_c00135{bottom:336.000000pt;}
.y1f_c00135{bottom:353.600000pt;}
.y1e_c00135{bottom:371.466667pt;}
.y1d_c00135{bottom:389.066667pt;}
.y1c_c00135{bottom:406.666667pt;}
.y1b_c00135{bottom:424.933333pt;}
.y1a_c00135{bottom:442.266667pt;}
.y19_c00135{bottom:460.133333pt;}
.y18_c00135{bottom:481.600000pt;}
.y17_c00135{bottom:496.000000pt;}
.y16_c00135{bottom:513.866667pt;}
.y15_c00135{bottom:531.466667pt;}
.y14_c00135{bottom:549.066667pt;}
.y13_c00135{bottom:567.333333pt;}
.y12_c00135{bottom:584.666667pt;}
.y11_c00135{bottom:620.533333pt;}
.y10_c00135{bottom:638.133333pt;}
.yf_c00135{bottom:656.000000pt;}
.ye_c00135{bottom:673.600000pt;}
.yd_c00135{bottom:691.466667pt;}
.yc_c00135{bottom:709.600000pt;}
.yb_c00135{bottom:727.200000pt;}
.ya_c00135{bottom:745.066667pt;}
.y9_c00135{bottom:762.666667pt;}
.y8_c00135{bottom:780.266667pt;}
.y7_c00135{bottom:797.866667pt;}
.y6_c00135{bottom:815.733333pt;}
.y5_c00135{bottom:833.333333pt;}
.y4_c00135{bottom:851.200000pt;}
.y3_c00135{bottom:868.800000pt;}
.y2_c00135{bottom:886.400000pt;}
.y1_c00135{bottom:920.000000pt;}
.h2_c00135{height:48.000000pt;}
.h1_c00135{height:1038.000000pt;}
.h0_c00135{height:1038.079997pt;}
.w1_c00135{width:818.000000pt;}
.w0_c00135{width:818.239991pt;}
.x0_c00135{left:0.000000pt;}
.x12c_c00135{left:86.133333pt;}
.x23_c00135{left:87.333333pt;}
.x3_c00135{left:88.266667pt;}
.xd4_c00135{left:104.133333pt;}
.x10f_c00135{left:105.466667pt;}
.x113_c00135{left:110.000000pt;}
.xa4_c00135{left:112.800000pt;}
.xad_c00135{left:114.133333pt;}
.x92_c00135{left:115.200000pt;}
.x12_c00135{left:116.400000pt;}
.x65_c00135{left:117.733333pt;}
.x7f_c00135{left:120.133333pt;}
.xc9_c00135{left:124.133333pt;}
.x104_c00135{left:125.733333pt;}
.xd5_c00135{left:126.800000pt;}
.xe2_c00135{left:128.800000pt;}
.xea_c00135{left:129.733333pt;}
.xf3_c00135{left:130.933333pt;}
.x5b_c00135{left:134.266667pt;}
.xa5_c00135{left:135.466667pt;}
.x99_c00135{left:136.400000pt;}
.x24_c00135{left:137.866667pt;}
.xae_c00135{left:139.466667pt;}
.x34_c00135{left:140.800000pt;}
.x13_c00135{left:142.666667pt;}
.x8b_c00135{left:144.400000pt;}
.x110_c00135{left:147.333333pt;}
.x42_c00135{left:148.800000pt;}
.x4_c00135{left:150.933333pt;}
.x12d_c00135{left:154.266667pt;}
.x80_c00135{left:157.600000pt;}
.x11f_c00135{left:159.200000pt;}
.x114_c00135{left:160.133333pt;}
.x9a_c00135{left:162.000000pt;}
.xe3_c00135{left:163.733333pt;}
.x124_c00135{left:164.800000pt;}
.x14_c00135{left:166.000000pt;}
.x35_c00135{left:168.666667pt;}
.x25_c00135{left:170.533333pt;}
.xf0_c00135{left:175.333333pt;}
.x134_c00135{left:176.666667pt;}
.x8c_c00135{left:178.266667pt;}
.x5_c00135{left:180.000000pt;}
.x5c_c00135{left:183.200000pt;}
.x43_c00135{left:185.333333pt;}
.xb6_c00135{left:186.266667pt;}
.x4f_c00135{left:189.200000pt;}
.x115_c00135{left:191.866667pt;}
.x66_c00135{left:193.200000pt;}
.xca_c00135{left:195.866667pt;}
.x8d_c00135{left:197.466667pt;}
.xf4_c00135{left:199.466667pt;}
.x71_c00135{left:201.600000pt;}
.x36_c00135{left:202.533333pt;}
.x26_c00135{left:204.133333pt;}
.xaf_c00135{left:205.066667pt;}
.x15_c00135{left:206.000000pt;}
.x105_c00135{left:206.933333pt;}
.xeb_c00135{left:208.400000pt;}
.xcb_c00135{left:209.600000pt;}
.x9b_c00135{left:212.533333pt;}
.xc3_c00135{left:213.733333pt;}
.x50_c00135{left:215.466667pt;}
.x81_c00135{left:217.466667pt;}
.x27_c00135{left:219.466667pt;}
.x6_c00135{left:222.533333pt;}
.x16_c00135{left:223.866667pt;}
.x5d_c00135{left:225.733333pt;}
.x72_c00135{left:226.933333pt;}
.xc4_c00135{left:229.466667pt;}
.x9c_c00135{left:231.733333pt;}
.xb7_c00135{left:232.666667pt;}
.x117_c00135{left:236.133333pt;}
.xdb_c00135{left:238.400000pt;}
.x125_c00135{left:239.333333pt;}
.x120_c00135{left:241.866667pt;}
.xf5_c00135{left:242.933333pt;}
.x128_c00135{left:245.200000pt;}
.x51_c00135{left:246.533333pt;}
.x12e_c00135{left:247.733333pt;}
.xcc_c00135{left:249.333333pt;}
.x67_c00135{left:252.133333pt;}
.x17_c00135{left:254.266667pt;}
.xd6_c00135{left:255.200000pt;}
.x82_c00135{left:257.200000pt;}
.x28_c00135{left:258.800000pt;}
.x8e_c00135{left:260.533333pt;}
.xb0_c00135{left:262.666667pt;}
.x93_c00135{left:264.266667pt;}
.x52_c00135{left:265.733333pt;}
.x44_c00135{left:267.333333pt;}
.x29_c00135{left:269.066667pt;}
.xcd_c00135{left:272.400000pt;}
.xa6_c00135{left:273.466667pt;}
.x111_c00135{left:274.933333pt;}
.x83_c00135{left:276.400000pt;}
.x37_c00135{left:278.000000pt;}
.x8f_c00135{left:280.400000pt;}
.xec_c00135{left:282.533333pt;}
.xdc_c00135{left:284.133333pt;}
.x45_c00135{left:285.200000pt;}
.x9d_c00135{left:287.733333pt;}
.x7_c00135{left:288.800000pt;}
.x73_c00135{left:291.866667pt;}
.x121_c00135{left:294.000000pt;}
.xb8_c00135{left:295.066667pt;}
.x129_c00135{left:296.133333pt;}
.x46_c00135{left:298.266667pt;}
.xe4_c00135{left:300.000000pt;}
.x94_c00135{left:303.333333pt;}
.x68_c00135{left:305.200000pt;}
.x18_c00135{left:306.400000pt;}
.x9e_c00135{left:307.600000pt;}
.x38_c00135{left:309.333333pt;}
.x2a_c00135{left:311.333333pt;}
.xb9_c00135{left:312.666667pt;}
.x8_c00135{left:314.133333pt;}
.xd7_c00135{left:315.066667pt;}
.x109_c00135{left:316.933333pt;}
.xed_c00135{left:319.066667pt;}
.xbc_c00135{left:320.000000pt;}
.x106_c00135{left:321.733333pt;}
.x12a_c00135{left:323.333333pt;}
.x69_c00135{left:325.733333pt;}
.x126_c00135{left:328.666667pt;}
.x19_c00135{left:329.733333pt;}
.x131_c00135{left:332.400000pt;}
.xb1_c00135{left:333.466667pt;}
.x9f_c00135{left:336.133333pt;}
.x53_c00135{left:337.466667pt;}
.x2b_c00135{left:339.866667pt;}
.x39_c00135{left:342.000000pt;}
.xd8_c00135{left:343.200000pt;}
.x84_c00135{left:344.533333pt;}
.x118_c00135{left:346.133333pt;}
.xce_c00135{left:347.866667pt;}
.x90_c00135{left:349.466667pt;}
.xc5_c00135{left:351.200000pt;}
.xa0_c00135{left:352.400000pt;}
.x47_c00135{left:353.333333pt;}
.x74_c00135{left:354.266667pt;}
.x1_c00135{left:355.466667pt;}
.x9_c00135{left:357.333333pt;}
.xb2_c00135{left:360.666667pt;}
.x85_c00135{left:362.400000pt;}
.x2c_c00135{left:364.533333pt;}
.xfa_c00135{left:365.733333pt;}
.x91_c00135{left:368.933333pt;}
.xba_c00135{left:370.266667pt;}
.x1a_c00135{left:371.600000pt;}
.x10a_c00135{left:372.933333pt;}
.x95_c00135{left:375.066667pt;}
.xa7_c00135{left:376.400000pt;}
.xbd_c00135{left:380.533333pt;}
.xd9_c00135{left:382.266667pt;}
.x75_c00135{left:384.933333pt;}
.xbb_c00135{left:386.000000pt;}
.x1b_c00135{left:387.600000pt;}
.x6a_c00135{left:391.333333pt;}
.x3a_c00135{left:392.533333pt;}
.x86_c00135{left:393.466667pt;}
.xfd_c00135{left:394.800000pt;}
.x12b_c00135{left:397.200000pt;}
.xb3_c00135{left:398.666667pt;}
.xda_c00135{left:400.800000pt;}
.xa_c00135{left:401.866667pt;}
.x116_c00135{left:405.066667pt;}
.x2d_c00135{left:407.066667pt;}
.x48_c00135{left:408.666667pt;}
.xdd_c00135{left:409.866667pt;}
.x3b_c00135{left:410.800000pt;}
.x107_c00135{left:413.466667pt;}
.x76_c00135{left:414.666667pt;}
.x5e_c00135{left:416.666667pt;}
.xb_c00135{left:418.133333pt;}
.xa8_c00135{left:419.600000pt;}
.x135_c00135{left:420.933333pt;}
.x54_c00135{left:422.266667pt;}
.xf6_c00135{left:424.133333pt;}
.x10b_c00135{left:425.066667pt;}
.x1c_c00135{left:426.666667pt;}
.xfe_c00135{left:428.133333pt;}
.x6b_c00135{left:431.600000pt;}
.x77_c00135{left:432.533333pt;}
.x3c_c00135{left:433.466667pt;}
.xbe_c00135{left:434.666667pt;}
.x5f_c00135{left:435.600000pt;}
.x1d_c00135{left:436.533333pt;}
.xa9_c00135{left:437.466667pt;}
.x136_c00135{left:438.533333pt;}
.xcf_c00135{left:439.733333pt;}
.xb4_c00135{left:442.266667pt;}
.x87_c00135{left:444.000000pt;}
.x122_c00135{left:446.266667pt;}
.x55_c00135{left:447.866667pt;}
.x6c_c00135{left:448.933333pt;}
.x12f_c00135{left:450.266667pt;}
.x2e_c00135{left:451.200000pt;}
.xa1_c00135{left:453.866667pt;}
.xf7_c00135{left:455.866667pt;}
.x49_c00135{left:457.600000pt;}
.x60_c00135{left:460.266667pt;}
.x96_c00135{left:462.133333pt;}
.xd0_c00135{left:463.066667pt;}
.x1e_c00135{left:464.400000pt;}
.x56_c00135{left:466.400000pt;}
.xc_c00135{left:468.666667pt;}
.x88_c00135{left:469.866667pt;}
.xff_c00135{left:472.000000pt;}
.x6d_c00135{left:473.866667pt;}
.x2f_c00135{left:476.133333pt;}
.x1f_c00135{left:479.733333pt;}
.x10c_c00135{left:484.533333pt;}
.x3d_c00135{left:487.866667pt;}
.xde_c00135{left:489.466667pt;}
.x97_c00135{left:491.200000pt;}
.x11d_c00135{left:492.666667pt;}
.xaa_c00135{left:493.866667pt;}
.xfb_c00135{left:494.800000pt;}
.x61_c00135{left:496.400000pt;}
.xd_c00135{left:498.800000pt;}
.x57_c00135{left:499.733333pt;}
.xee_c00135{left:500.800000pt;}
.xa2_c00135{left:502.266667pt;}
.x20_c00135{left:505.066667pt;}
.xdf_c00135{left:506.400000pt;}
.x119_c00135{left:508.666667pt;}
.x3e_c00135{left:510.266667pt;}
.x10d_c00135{left:511.466667pt;}
.xbf_c00135{left:512.400000pt;}
.x78_c00135{left:515.733333pt;}
.x6e_c00135{left:518.666667pt;}
.x4a_c00135{left:521.333333pt;}
.x132_c00135{left:523.066667pt;}
.x11a_c00135{left:524.933333pt;}
.xe_c00135{left:526.000000pt;}
.xf1_c00135{left:527.066667pt;}
.x30_c00135{left:530.266667pt;}
.x89_c00135{left:531.333333pt;}
.x79_c00135{left:533.600000pt;}
.x62_c00135{left:537.333333pt;}
.xe5_c00135{left:538.666667pt;}
.x100_c00135{left:541.066667pt;}
.xc6_c00135{left:542.933333pt;}
.xf8_c00135{left:545.866667pt;}
.x6f_c00135{left:547.466667pt;}
.xc0_c00135{left:549.466667pt;}
.xd1_c00135{left:551.066667pt;}
.x11e_c00135{left:552.800000pt;}
.x98_c00135{left:554.933333pt;}
.x58_c00135{left:556.666667pt;}
.xe6_c00135{left:559.200000pt;}
.xe0_c00135{left:562.133333pt;}
.x3f_c00135{left:563.333333pt;}
.x7a_c00135{left:565.600000pt;}
.xc7_c00135{left:566.666667pt;}
.x63_c00135{left:569.333333pt;}
.x4b_c00135{left:570.666667pt;}
.x31_c00135{left:572.133333pt;}
.xe7_c00135{left:573.866667pt;}
.xf_c00135{left:576.266667pt;}
.x127_c00135{left:578.800000pt;}
.x108_c00135{left:580.266667pt;}
.x21_c00135{left:581.200000pt;}
.x133_c00135{left:583.200000pt;}
.x101_c00135{left:585.866667pt;}
.xd2_c00135{left:587.200000pt;}
.x32_c00135{left:588.133333pt;}
.xc8_c00135{left:590.000000pt;}
.x7b_c00135{left:591.200000pt;}
.x123_c00135{left:593.466667pt;}
.x112_c00135{left:594.800000pt;}
.x11b_c00135{left:596.933333pt;}
.x4c_c00135{left:599.200000pt;}
.xe8_c00135{left:601.733333pt;}
.xf2_c00135{left:603.600000pt;}
.xe1_c00135{left:606.266667pt;}
.x137_c00135{left:608.266667pt;}
.x10_c00135{left:609.200000pt;}
.x64_c00135{left:611.200000pt;}
.xc1_c00135{left:612.533333pt;}
.xd3_c00135{left:615.733333pt;}
.x59_c00135{left:617.200000pt;}
.x7c_c00135{left:620.000000pt;}
.x102_c00135{left:621.066667pt;}
.xfc_c00135{left:622.133333pt;}
.x8a_c00135{left:625.733333pt;}
.xb5_c00135{left:627.600000pt;}
.x11_c00135{left:629.066667pt;}
.xab_c00135{left:630.933333pt;}
.x40_c00135{left:634.266667pt;}
.x33_c00135{left:636.133333pt;}
.x7d_c00135{left:637.866667pt;}
.x4d_c00135{left:639.866667pt;}
.x5a_c00135{left:641.466667pt;}
.x10e_c00135{left:642.400000pt;}
.x70_c00135{left:643.466667pt;}
.x41_c00135{left:645.200000pt;}
.xac_c00135{left:646.266667pt;}
.x11c_c00135{left:650.000000pt;}
.xa3_c00135{left:652.266667pt;}
.x4e_c00135{left:653.333333pt;}
.xef_c00135{left:654.400000pt;}
.x103_c00135{left:655.333333pt;}
.x7e_c00135{left:658.666667pt;}
.xe9_c00135{left:660.266667pt;}
.x22_c00135{left:662.400000pt;}
.xf9_c00135{left:663.733333pt;}
.x2_c00135{left:665.600000pt;}
.x130_c00135{left:670.133333pt;}
.x138_c00135{left:671.600000pt;}
.xc2_c00135{left:674.533333pt;}
}





/* 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_c00136 {
    display:none;
  }
  .loading-indicator_c00136.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00136 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_c00136 { 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_c00136" -> "#page-container .classname_c00136")
 */
.pf_c00136 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00136 { /* 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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00136 { /* 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_c00136 { /* 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_c00136 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00136 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00136 {overflow:visible;}
  }
}
.c_c00136 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00136 { /* 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_c00136:after { /* webkit #35443 */
  content: '';
}
.t_c00136:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00136 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 */
}
.__c00136 { /* 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_c00136 { /* info for Javascript */
  display:none;
}
.l_c00136 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00136 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00136 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00136: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_c00136 {
    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_c00136.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00136.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_c00136 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00136{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.000000;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;}
.m61_c00136{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00136{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00136{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00136{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m32_c00136{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m42_c00136{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m62_c00136{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00136{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00136{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m72_c00136{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00136{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8_c00136{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00136{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m86_c00136{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m36_c00136{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb_c00136{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m67_c00136{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9_c00136{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m10_c00136{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m74_c00136{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m22_c00136{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m25_c00136{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m80_c00136{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m77_c00136{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00136{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m33_c00136{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m37_c00136{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m31_c00136{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{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);}
.m6b_c00136{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m29_c00136{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00136{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m75_c00136{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m85_c00136{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m90_c00136{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m92_c00136{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.maf_c00136{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m50_c00136{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.me_c00136{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m96_c00136{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m52_c00136{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m40_c00136{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m94_c00136{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m26_c00136{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00136{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m44_c00136{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m13_c00136{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00136{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md_c00136{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00136{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00136{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00136{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00136{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00136{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00136{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mc_c00136{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00136{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00136{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00136{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00136{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00136{vertical-align:0.000000px;}
.ls0_c00136{letter-spacing:0.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{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__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00136{word-spacing:-9.125000px;}
.wsb_c00136{word-spacing:-7.250000px;}
.ws6_c00136{word-spacing:-5.142857px;}
.wsa_c00136{word-spacing:-3.705521px;}
.ws1_c00136{word-spacing:-3.357222px;}
.ws0_c00136{word-spacing:-2.750000px;}
.ws10_c00136{word-spacing:0.000000px;}
.ws9_c00136{word-spacing:0.691131px;}
.wsf_c00136{word-spacing:1.625000px;}
.ws8_c00136{word-spacing:6.000000px;}
.ws5_c00136{word-spacing:6.125000px;}
.wse_c00136{word-spacing:10.375000px;}
.ws2_c00136{word-spacing:10.909091px;}
.wsc_c00136{word-spacing:12.125000px;}
.ws7_c00136{word-spacing:13.964719px;}
.ws3_c00136{word-spacing:22.785467px;}
.ws4_c00136{word-spacing:24.833333px;}
._0_c00136{width:25.250000px;}
.fc0_c00136{color:transparent;}
.fs0_c00136{font-size:54.000000px;}
.y0_c00136{bottom:0.000000px;}
.y2b_c00136{bottom:142.950000px;}
.y2a_c00136{bottom:184.050000px;}
.y29_c00136{bottom:203.850000px;}
.y28_c00136{bottom:223.950000px;}
.y27_c00136{bottom:244.050000px;}
.y26_c00136{bottom:264.150000px;}
.y25_c00136{bottom:284.250000px;}
.y24_c00136{bottom:304.350000px;}
.y23_c00136{bottom:324.150000px;}
.y22_c00136{bottom:344.250000px;}
.y21_c00136{bottom:364.350000px;}
.y20_c00136{bottom:384.450000px;}
.y1f_c00136{bottom:404.550000px;}
.y1e_c00136{bottom:424.350000px;}
.y1d_c00136{bottom:444.450000px;}
.y1c_c00136{bottom:464.550000px;}
.y1b_c00136{bottom:484.650000px;}
.y1a_c00136{bottom:504.750000px;}
.y19_c00136{bottom:524.850000px;}
.y18_c00136{bottom:544.800000px;}
.y17_c00136{bottom:564.900000px;}
.y16_c00136{bottom:584.700000px;}
.y15_c00136{bottom:604.500000px;}
.y14_c00136{bottom:624.600000px;}
.y13_c00136{bottom:644.700000px;}
.y12_c00136{bottom:664.200000px;}
.y11_c00136{bottom:684.750000px;}
.y10_c00136{bottom:704.550000px;}
.yf_c00136{bottom:724.350000px;}
.ye_c00136{bottom:744.450000px;}
.yd_c00136{bottom:765.000000px;}
.yc_c00136{bottom:784.800000px;}
.yb_c00136{bottom:805.050000px;}
.ya_c00136{bottom:825.150000px;}
.y9_c00136{bottom:844.950000px;}
.y8_c00136{bottom:865.500000px;}
.y7_c00136{bottom:905.550000px;}
.y6_c00136{bottom:925.650000px;}
.y5_c00136{bottom:945.750000px;}
.y4_c00136{bottom:965.550000px;}
.y3_c00136{bottom:985.800000px;}
.y2_c00136{bottom:1005.900000px;}
.y1_c00136{bottom:1044.000000px;}
.h2_c00136{height:54.000000px;}
.h1_c00136{height:1167.750000px;}
.h0_c00136{height:1167.839997px;}
.w1_c00136{width:920.250000px;}
.w0_c00136{width:920.519990px;}
.x0_c00136{left:0.000000px;}
.xc8_c00136{left:142.650000px;}
.x9a_c00136{left:144.150000px;}
.x63_c00136{left:145.200000px;}
.x3_c00136{left:146.550000px;}
.x1_c00136{left:148.650000px;}
.xc9_c00136{left:158.100000px;}
.xad_c00136{left:159.150000px;}
.xf7_c00136{left:161.100000px;}
.x48_c00136{left:163.050000px;}
.x87_c00136{left:168.450000px;}
.xb5_c00136{left:169.500000px;}
.xa2_c00136{left:173.700000px;}
.xe1_c00136{left:175.350000px;}
.x52_c00136{left:176.700000px;}
.x20_c00136{left:177.900000px;}
.xfc_c00136{left:179.400000px;}
.x64_c00136{left:181.950000px;}
.x115_c00136{left:183.000000px;}
.x81_c00136{left:185.700000px;}
.x39_c00136{left:188.850000px;}
.x110_c00136{left:191.550000px;}
.xcf_c00136{left:194.850000px;}
.x2c_c00136{left:200.400000px;}
.x21_c00136{left:201.600000px;}
.xd4_c00136{left:203.100000px;}
.x59_c00136{left:204.150000px;}
.x4_c00136{left:205.950000px;}
.x14_c00136{left:208.950000px;}
.x10b_c00136{left:211.200000px;}
.xa3_c00136{left:213.000000px;}
.x125_c00136{left:214.650000px;}
.xb6_c00136{left:217.800000px;}
.x65_c00136{left:220.050000px;}
.x116_c00136{left:222.600000px;}
.x5_c00136{left:225.000000px;}
.x15_c00136{left:226.950000px;}
.xef_c00136{left:228.900000px;}
.x76_c00136{left:230.400000px;}
.x104_c00136{left:231.750000px;}
.x132_c00136{left:233.250000px;}
.xa4_c00136{left:234.300000px;}
.xd0_c00136{left:235.500000px;}
.x71_c00136{left:237.750000px;}
.xca_c00136{left:240.150000px;}
.xc1_c00136{left:241.800000px;}
.x9b_c00136{left:243.150000px;}
.x77_c00136{left:246.300000px;}
.x22_c00136{left:247.650000px;}
.x66_c00136{left:249.600000px;}
.xe2_c00136{left:251.250000px;}
.xb7_c00136{left:254.100000px;}
.x117_c00136{left:256.050000px;}
.x88_c00136{left:258.450000px;}
.x2d_c00136{left:262.050000px;}
.xe9_c00136{left:263.250000px;}
.x53_c00136{left:265.650000px;}
.xe3_c00136{left:268.200000px;}
.x16_c00136{left:269.400000px;}
.x100_c00136{left:271.200000px;}
.xae_c00136{left:273.300000px;}
.x126_c00136{left:274.350000px;}
.x23_c00136{left:277.200000px;}
.xa5_c00136{left:281.100000px;}
.x3a_c00136{left:282.900000px;}
.x6_c00136{left:285.900000px;}
.xf0_c00136{left:287.550000px;}
.x5a_c00136{left:289.800000px;}
.xb8_c00136{left:291.300000px;}
.x105_c00136{left:292.500000px;}
.x11b_c00136{left:294.600000px;}
.x89_c00136{left:297.000000px;}
.x72_c00136{left:302.250000px;}
.x122_c00136{left:304.200000px;}
.xd5_c00136{left:305.250000px;}
.xe4_c00136{left:307.050000px;}
.xc2_c00136{left:308.400000px;}
.x90_c00136{left:309.900000px;}
.x5b_c00136{left:311.400000px;}
.x127_c00136{left:312.900000px;}
.x12a_c00136{left:313.950000px;}
.xcb_c00136{left:315.750000px;}
.x8a_c00136{left:317.100000px;}
.x17_c00136{left:319.050000px;}
.x10c_c00136{left:324.150000px;}
.x78_c00136{left:326.850000px;}
.x7_c00136{left:330.900000px;}
.x2e_c00136{left:333.000000px;}
.xf8_c00136{left:334.650000px;}
.xa6_c00136{left:335.850000px;}
.xb9_c00136{left:337.800000px;}
.x49_c00136{left:339.300000px;}
.xaf_c00136{left:342.750000px;}
.xdf_c00136{left:344.400000px;}
.x12e_c00136{left:346.350000px;}
.x73_c00136{left:348.300000px;}
.x123_c00136{left:349.950000px;}
.x24_c00136{left:351.000000px;}
.xea_c00136{left:352.650000px;}
.x4a_c00136{left:354.000000px;}
.x8_c00136{left:358.200000px;}
.x67_c00136{left:360.600000px;}
.xe5_c00136{left:361.800000px;}
.xd6_c00136{left:362.850000px;}
.x9c_c00136{left:364.500000px;}
.x3b_c00136{left:367.800000px;}
.x18_c00136{left:369.150000px;}
.x91_c00136{left:372.150000px;}
.x54_c00136{left:373.350000px;}
.x111_c00136{left:374.400000px;}
.x2f_c00136{left:376.200000px;}
.xe6_c00136{left:379.800000px;}
.x19_c00136{left:381.450000px;}
.xd7_c00136{left:383.400000px;}
.x9d_c00136{left:386.100000px;}
.xcc_c00136{left:388.500000px;}
.x79_c00136{left:392.400000px;}
.x118_c00136{left:395.100000px;}
.x10d_c00136{left:396.150000px;}
.x5c_c00136{left:397.200000px;}
.x9_c00136{left:399.300000px;}
.x120_c00136{left:400.650000px;}
.x128_c00136{left:402.150000px;}
.x11c_c00136{left:405.150000px;}
.x3c_c00136{left:408.150000px;}
.x106_c00136{left:409.350000px;}
.xf1_c00136{left:410.700000px;}
.x68_c00136{left:412.200000px;}
.x30_c00136{left:414.300000px;}
.x112_c00136{left:416.850000px;}
.x25_c00136{left:417.900000px;}
.x12c_c00136{left:419.100000px;}
.x82_c00136{left:420.450000px;}
.x3d_c00136{left:423.600000px;}
.x4b_c00136{left:425.550000px;}
.x7a_c00136{left:426.900000px;}
.xb0_c00136{left:428.850000px;}
.xd1_c00136{left:432.000000px;}
.x1a_c00136{left:433.650000px;}
.xeb_c00136{left:435.150000px;}
.x101_c00136{left:437.850000px;}
.x74_c00136{left:439.050000px;}
.x69_c00136{left:440.700000px;}
.x12f_c00136{left:444.150000px;}
.x2_c00136{left:446.400000px;}
.xa_c00136{left:450.450000px;}
.x107_c00136{left:452.250000px;}
.xd8_c00136{left:454.650000px;}
.x31_c00136{left:455.700000px;}
.xba_c00136{left:457.050000px;}
.x1b_c00136{left:459.600000px;}
.x3e_c00136{left:464.250000px;}
.xec_c00136{left:466.500000px;}
.x108_c00136{left:469.200000px;}
.xb_c00136{left:471.300000px;}
.x92_c00136{left:474.750000px;}
.xc3_c00136{left:477.600000px;}
.x4c_c00136{left:480.600000px;}
.xd9_c00136{left:481.950000px;}
.xf2_c00136{left:484.200000px;}
.xb1_c00136{left:486.150000px;}
.x6a_c00136{left:489.000000px;}
.x3f_c00136{left:490.500000px;}
.x75_c00136{left:492.750000px;}
.xf9_c00136{left:494.850000px;}
.xbb_c00136{left:495.900000px;}
.x113_c00136{left:497.250000px;}
.x4d_c00136{left:498.300000px;}
.x130_c00136{left:500.400000px;}
.x32_c00136{left:502.800000px;}
.xc4_c00136{left:504.900000px;}
.xda_c00136{left:509.250000px;}
.x6b_c00136{left:512.100000px;}
.x5d_c00136{left:514.500000px;}
.x11d_c00136{left:517.050000px;}
.xc_c00136{left:518.100000px;}
.x26_c00136{left:519.450000px;}
.x1c_c00136{left:520.500000px;}
.xb2_c00136{left:522.900000px;}
.x7b_c00136{left:524.100000px;}
.x40_c00136{left:526.200000px;}
.xfd_c00136{left:528.900000px;}
.x93_c00136{left:530.550000px;}
.x83_c00136{left:532.500000px;}
.xd2_c00136{left:534.600000px;}
.xf3_c00136{left:537.450000px;}
.xe7_c00136{left:539.250000px;}
.x109_c00136{left:540.450000px;}
.x4e_c00136{left:541.500000px;}
.x5e_c00136{left:544.350000px;}
.x8b_c00136{left:546.450000px;}
.x9e_c00136{left:548.400000px;}
.x55_c00136{left:549.450000px;}
.x133_c00136{left:552.150000px;}
.x33_c00136{left:554.250000px;}
.x10a_c00136{left:557.700000px;}
.x27_c00136{left:559.050000px;}
.xf4_c00136{left:560.550000px;}
.x12b_c00136{left:561.600000px;}
.x41_c00136{left:562.950000px;}
.x10e_c00136{left:564.000000px;}
.xdb_c00136{left:566.100000px;}
.x94_c00136{left:567.300000px;}
.xd_c00136{left:568.500000px;}
.x8c_c00136{left:570.150000px;}
.x4f_c00136{left:571.500000px;}
.xe0_c00136{left:574.050000px;}
.xa7_c00136{left:576.300000px;}
.x1d_c00136{left:577.350000px;}
.x34_c00136{left:579.750000px;}
.x6c_c00136{left:581.250000px;}
.xfa_c00136{left:586.800000px;}
.x42_c00136{left:589.200000px;}
.xa8_c00136{left:591.750000px;}
.xdc_c00136{left:594.600000px;}
.x7c_c00136{left:596.850000px;}
.xf5_c00136{left:598.650000px;}
.xbc_c00136{left:601.650000px;}
.x5f_c00136{left:602.700000px;}
.x11e_c00136{left:606.000000px;}
.x9f_c00136{left:607.800000px;}
.xe_c00136{left:609.150000px;}
.x6d_c00136{left:613.650000px;}
.xc5_c00136{left:615.450000px;}
.x35_c00136{left:616.500000px;}
.x7d_c00136{left:619.500000px;}
.x50_c00136{left:620.850000px;}
.xcd_c00136{left:622.500000px;}
.x43_c00136{left:624.150000px;}
.x102_c00136{left:626.400000px;}
.x95_c00136{left:627.450000px;}
.xf_c00136{left:630.000000px;}
.xdd_c00136{left:632.700000px;}
.x60_c00136{left:634.050000px;}
.xa0_c00136{left:637.350000px;}
.x103_c00136{left:639.000000px;}
.x28_c00136{left:640.050000px;}
.x96_c00136{left:642.900000px;}
.x134_c00136{left:643.950000px;}
.xfe_c00136{left:646.200000px;}
.xb3_c00136{left:648.450000px;}
.x8d_c00136{left:649.800000px;}
.x6e_c00136{left:651.450000px;}
.xbd_c00136{left:654.600000px;}
.xa9_c00136{left:658.350000px;}
.x1e_c00136{left:660.150000px;}
.x10f_c00136{left:661.800000px;}
.x61_c00136{left:663.600000px;}
.x44_c00136{left:665.550000px;}
.x97_c00136{left:669.150000px;}
.xb4_c00136{left:670.350000px;}
.x10_c00136{left:672.150000px;}
.x56_c00136{left:673.200000px;}
.x1f_c00136{left:678.450000px;}
.x129_c00136{left:679.800000px;}
.xaa_c00136{left:681.450000px;}
.x84_c00136{left:687.300000px;}
.xe8_c00136{left:688.350000px;}
.x36_c00136{left:690.300000px;}
.x119_c00136{left:692.400000px;}
.xed_c00136{left:694.350000px;}
.x29_c00136{left:697.650000px;}
.x51_c00136{left:699.750000px;}
.x57_c00136{left:701.250000px;}
.x124_c00136{left:703.800000px;}
.x6f_c00136{left:705.150000px;}
.x98_c00136{left:706.950000px;}
.xbe_c00136{left:708.300000px;}
.xab_c00136{left:709.950000px;}
.x7e_c00136{left:712.050000px;}
.x45_c00136{left:713.100000px;}
.x8e_c00136{left:722.550000px;}
.x11_c00136{left:725.100000px;}
.xd3_c00136{left:728.400000px;}
.x46_c00136{left:730.800000px;}
.x85_c00136{left:734.100000px;}
.xce_c00136{left:735.150000px;}
.x131_c00136{left:737.850000px;}
.xa1_c00136{left:741.750000px;}
.xc6_c00136{left:744.600000px;}
.xbf_c00136{left:745.800000px;}
.x114_c00136{left:747.900000px;}
.x11a_c00136{left:749.700000px;}
.x37_c00136{left:752.250000px;}
.x2a_c00136{left:753.750000px;}
.x47_c00136{left:756.300000px;}
.x12_c00136{left:757.500000px;}
.x8f_c00136{left:760.650000px;}
.xee_c00136{left:761.700000px;}
.xde_c00136{left:765.150000px;}
.x7f_c00136{left:767.100000px;}
.x70_c00136{left:768.900000px;}
.x12d_c00136{left:770.400000px;}
.xff_c00136{left:772.650000px;}
.x11f_c00136{left:773.850000px;}
.xf6_c00136{left:774.900000px;}
.x86_c00136{left:777.600000px;}
.xc0_c00136{left:780.000000px;}
.x99_c00136{left:781.050000px;}
.xac_c00136{left:782.250000px;}
.xfb_c00136{left:783.450000px;}
.x80_c00136{left:786.900000px;}
.x13_c00136{left:789.600000px;}
.x2b_c00136{left:790.800000px;}
.x62_c00136{left:792.900000px;}
.x121_c00136{left:797.700000px;}
.xc7_c00136{left:799.350000px;}
.x38_c00136{left:800.850000px;}
.x58_c00136{left:802.800000px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.wsd_c00136{word-spacing:-8.111111pt;}
.wsb_c00136{word-spacing:-6.444444pt;}
.ws6_c00136{word-spacing:-4.571429pt;}
.wsa_c00136{word-spacing:-3.293797pt;}
.ws1_c00136{word-spacing:-2.984197pt;}
.ws0_c00136{word-spacing:-2.444444pt;}
.ws10_c00136{word-spacing:0.000000pt;}
.ws9_c00136{word-spacing:0.614339pt;}
.wsf_c00136{word-spacing:1.444444pt;}
.ws8_c00136{word-spacing:5.333333pt;}
.ws5_c00136{word-spacing:5.444444pt;}
.wse_c00136{word-spacing:9.222222pt;}
.ws2_c00136{word-spacing:9.696970pt;}
.wsc_c00136{word-spacing:10.777778pt;}
.ws7_c00136{word-spacing:12.413083pt;}
.ws3_c00136{word-spacing:20.253749pt;}
.ws4_c00136{word-spacing:22.074074pt;}
._0_c00136{width:22.444444pt;}
.fs0_c00136{font-size:48.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y2b_c00136{bottom:127.066667pt;}
.y2a_c00136{bottom:163.600000pt;}
.y29_c00136{bottom:181.200000pt;}
.y28_c00136{bottom:199.066667pt;}
.y27_c00136{bottom:216.933333pt;}
.y26_c00136{bottom:234.800000pt;}
.y25_c00136{bottom:252.666667pt;}
.y24_c00136{bottom:270.533333pt;}
.y23_c00136{bottom:288.133333pt;}
.y22_c00136{bottom:306.000000pt;}
.y21_c00136{bottom:323.866667pt;}
.y20_c00136{bottom:341.733333pt;}
.y1f_c00136{bottom:359.600000pt;}
.y1e_c00136{bottom:377.200000pt;}
.y1d_c00136{bottom:395.066667pt;}
.y1c_c00136{bottom:412.933333pt;}
.y1b_c00136{bottom:430.800000pt;}
.y1a_c00136{bottom:448.666667pt;}
.y19_c00136{bottom:466.533333pt;}
.y18_c00136{bottom:484.266667pt;}
.y17_c00136{bottom:502.133333pt;}
.y16_c00136{bottom:519.733333pt;}
.y15_c00136{bottom:537.333333pt;}
.y14_c00136{bottom:555.200000pt;}
.y13_c00136{bottom:573.066667pt;}
.y12_c00136{bottom:590.400000pt;}
.y11_c00136{bottom:608.666667pt;}
.y10_c00136{bottom:626.266667pt;}
.yf_c00136{bottom:643.866667pt;}
.ye_c00136{bottom:661.733333pt;}
.yd_c00136{bottom:680.000000pt;}
.yc_c00136{bottom:697.600000pt;}
.yb_c00136{bottom:715.600000pt;}
.ya_c00136{bottom:733.466667pt;}
.y9_c00136{bottom:751.066667pt;}
.y8_c00136{bottom:769.333333pt;}
.y7_c00136{bottom:804.933333pt;}
.y6_c00136{bottom:822.800000pt;}
.y5_c00136{bottom:840.666667pt;}
.y4_c00136{bottom:858.266667pt;}
.y3_c00136{bottom:876.266667pt;}
.y2_c00136{bottom:894.133333pt;}
.y1_c00136{bottom:928.000000pt;}
.h2_c00136{height:48.000000pt;}
.h1_c00136{height:1038.000000pt;}
.h0_c00136{height:1038.079997pt;}
.w1_c00136{width:818.000000pt;}
.w0_c00136{width:818.239991pt;}
.x0_c00136{left:0.000000pt;}
.xc8_c00136{left:126.800000pt;}
.x9a_c00136{left:128.133333pt;}
.x63_c00136{left:129.066667pt;}
.x3_c00136{left:130.266667pt;}
.x1_c00136{left:132.133333pt;}
.xc9_c00136{left:140.533333pt;}
.xad_c00136{left:141.466667pt;}
.xf7_c00136{left:143.200000pt;}
.x48_c00136{left:144.933333pt;}
.x87_c00136{left:149.733333pt;}
.xb5_c00136{left:150.666667pt;}
.xa2_c00136{left:154.400000pt;}
.xe1_c00136{left:155.866667pt;}
.x52_c00136{left:157.066667pt;}
.x20_c00136{left:158.133333pt;}
.xfc_c00136{left:159.466667pt;}
.x64_c00136{left:161.733333pt;}
.x115_c00136{left:162.666667pt;}
.x81_c00136{left:165.066667pt;}
.x39_c00136{left:167.866667pt;}
.x110_c00136{left:170.266667pt;}
.xcf_c00136{left:173.200000pt;}
.x2c_c00136{left:178.133333pt;}
.x21_c00136{left:179.200000pt;}
.xd4_c00136{left:180.533333pt;}
.x59_c00136{left:181.466667pt;}
.x4_c00136{left:183.066667pt;}
.x14_c00136{left:185.733333pt;}
.x10b_c00136{left:187.733333pt;}
.xa3_c00136{left:189.333333pt;}
.x125_c00136{left:190.800000pt;}
.xb6_c00136{left:193.600000pt;}
.x65_c00136{left:195.600000pt;}
.x116_c00136{left:197.866667pt;}
.x5_c00136{left:200.000000pt;}
.x15_c00136{left:201.733333pt;}
.xef_c00136{left:203.466667pt;}
.x76_c00136{left:204.800000pt;}
.x104_c00136{left:206.000000pt;}
.x132_c00136{left:207.333333pt;}
.xa4_c00136{left:208.266667pt;}
.xd0_c00136{left:209.333333pt;}
.x71_c00136{left:211.333333pt;}
.xca_c00136{left:213.466667pt;}
.xc1_c00136{left:214.933333pt;}
.x9b_c00136{left:216.133333pt;}
.x77_c00136{left:218.933333pt;}
.x22_c00136{left:220.133333pt;}
.x66_c00136{left:221.866667pt;}
.xe2_c00136{left:223.333333pt;}
.xb7_c00136{left:225.866667pt;}
.x117_c00136{left:227.600000pt;}
.x88_c00136{left:229.733333pt;}
.x2d_c00136{left:232.933333pt;}
.xe9_c00136{left:234.000000pt;}
.x53_c00136{left:236.133333pt;}
.xe3_c00136{left:238.400000pt;}
.x16_c00136{left:239.466667pt;}
.x100_c00136{left:241.066667pt;}
.xae_c00136{left:242.933333pt;}
.x126_c00136{left:243.866667pt;}
.x23_c00136{left:246.400000pt;}
.xa5_c00136{left:249.866667pt;}
.x3a_c00136{left:251.466667pt;}
.x6_c00136{left:254.133333pt;}
.xf0_c00136{left:255.600000pt;}
.x5a_c00136{left:257.600000pt;}
.xb8_c00136{left:258.933333pt;}
.x105_c00136{left:260.000000pt;}
.x11b_c00136{left:261.866667pt;}
.x89_c00136{left:264.000000pt;}
.x72_c00136{left:268.666667pt;}
.x122_c00136{left:270.400000pt;}
.xd5_c00136{left:271.333333pt;}
.xe4_c00136{left:272.933333pt;}
.xc2_c00136{left:274.133333pt;}
.x90_c00136{left:275.466667pt;}
.x5b_c00136{left:276.800000pt;}
.x127_c00136{left:278.133333pt;}
.x12a_c00136{left:279.066667pt;}
.xcb_c00136{left:280.666667pt;}
.x8a_c00136{left:281.866667pt;}
.x17_c00136{left:283.600000pt;}
.x10c_c00136{left:288.133333pt;}
.x78_c00136{left:290.533333pt;}
.x7_c00136{left:294.133333pt;}
.x2e_c00136{left:296.000000pt;}
.xf8_c00136{left:297.466667pt;}
.xa6_c00136{left:298.533333pt;}
.xb9_c00136{left:300.266667pt;}
.x49_c00136{left:301.600000pt;}
.xaf_c00136{left:304.666667pt;}
.xdf_c00136{left:306.133333pt;}
.x12e_c00136{left:307.866667pt;}
.x73_c00136{left:309.600000pt;}
.x123_c00136{left:311.066667pt;}
.x24_c00136{left:312.000000pt;}
.xea_c00136{left:313.466667pt;}
.x4a_c00136{left:314.666667pt;}
.x8_c00136{left:318.400000pt;}
.x67_c00136{left:320.533333pt;}
.xe5_c00136{left:321.600000pt;}
.xd6_c00136{left:322.533333pt;}
.x9c_c00136{left:324.000000pt;}
.x3b_c00136{left:326.933333pt;}
.x18_c00136{left:328.133333pt;}
.x91_c00136{left:330.800000pt;}
.x54_c00136{left:331.866667pt;}
.x111_c00136{left:332.800000pt;}
.x2f_c00136{left:334.400000pt;}
.xe6_c00136{left:337.600000pt;}
.x19_c00136{left:339.066667pt;}
.xd7_c00136{left:340.800000pt;}
.x9d_c00136{left:343.200000pt;}
.xcc_c00136{left:345.333333pt;}
.x79_c00136{left:348.800000pt;}
.x118_c00136{left:351.200000pt;}
.x10d_c00136{left:352.133333pt;}
.x5c_c00136{left:353.066667pt;}
.x9_c00136{left:354.933333pt;}
.x120_c00136{left:356.133333pt;}
.x128_c00136{left:357.466667pt;}
.x11c_c00136{left:360.133333pt;}
.x3c_c00136{left:362.800000pt;}
.x106_c00136{left:363.866667pt;}
.xf1_c00136{left:365.066667pt;}
.x68_c00136{left:366.400000pt;}
.x30_c00136{left:368.266667pt;}
.x112_c00136{left:370.533333pt;}
.x25_c00136{left:371.466667pt;}
.x12c_c00136{left:372.533333pt;}
.x82_c00136{left:373.733333pt;}
.x3d_c00136{left:376.533333pt;}
.x4b_c00136{left:378.266667pt;}
.x7a_c00136{left:379.466667pt;}
.xb0_c00136{left:381.200000pt;}
.xd1_c00136{left:384.000000pt;}
.x1a_c00136{left:385.466667pt;}
.xeb_c00136{left:386.800000pt;}
.x101_c00136{left:389.200000pt;}
.x74_c00136{left:390.266667pt;}
.x69_c00136{left:391.733333pt;}
.x12f_c00136{left:394.800000pt;}
.x2_c00136{left:396.800000pt;}
.xa_c00136{left:400.400000pt;}
.x107_c00136{left:402.000000pt;}
.xd8_c00136{left:404.133333pt;}
.x31_c00136{left:405.066667pt;}
.xba_c00136{left:406.266667pt;}
.x1b_c00136{left:408.533333pt;}
.x3e_c00136{left:412.666667pt;}
.xec_c00136{left:414.666667pt;}
.x108_c00136{left:417.066667pt;}
.xb_c00136{left:418.933333pt;}
.x92_c00136{left:422.000000pt;}
.xc3_c00136{left:424.533333pt;}
.x4c_c00136{left:427.200000pt;}
.xd9_c00136{left:428.400000pt;}
.xf2_c00136{left:430.400000pt;}
.xb1_c00136{left:432.133333pt;}
.x6a_c00136{left:434.666667pt;}
.x3f_c00136{left:436.000000pt;}
.x75_c00136{left:438.000000pt;}
.xf9_c00136{left:439.866667pt;}
.xbb_c00136{left:440.800000pt;}
.x113_c00136{left:442.000000pt;}
.x4d_c00136{left:442.933333pt;}
.x130_c00136{left:444.800000pt;}
.x32_c00136{left:446.933333pt;}
.xc4_c00136{left:448.800000pt;}
.xda_c00136{left:452.666667pt;}
.x6b_c00136{left:455.200000pt;}
.x5d_c00136{left:457.333333pt;}
.x11d_c00136{left:459.600000pt;}
.xc_c00136{left:460.533333pt;}
.x26_c00136{left:461.733333pt;}
.x1c_c00136{left:462.666667pt;}
.xb2_c00136{left:464.800000pt;}
.x7b_c00136{left:465.866667pt;}
.x40_c00136{left:467.733333pt;}
.xfd_c00136{left:470.133333pt;}
.x93_c00136{left:471.600000pt;}
.x83_c00136{left:473.333333pt;}
.xd2_c00136{left:475.200000pt;}
.xf3_c00136{left:477.733333pt;}
.xe7_c00136{left:479.333333pt;}
.x109_c00136{left:480.400000pt;}
.x4e_c00136{left:481.333333pt;}
.x5e_c00136{left:483.866667pt;}
.x8b_c00136{left:485.733333pt;}
.x9e_c00136{left:487.466667pt;}
.x55_c00136{left:488.400000pt;}
.x133_c00136{left:490.800000pt;}
.x33_c00136{left:492.666667pt;}
.x10a_c00136{left:495.733333pt;}
.x27_c00136{left:496.933333pt;}
.xf4_c00136{left:498.266667pt;}
.x12b_c00136{left:499.200000pt;}
.x41_c00136{left:500.400000pt;}
.x10e_c00136{left:501.333333pt;}
.xdb_c00136{left:503.200000pt;}
.x94_c00136{left:504.266667pt;}
.xd_c00136{left:505.333333pt;}
.x8c_c00136{left:506.800000pt;}
.x4f_c00136{left:508.000000pt;}
.xe0_c00136{left:510.266667pt;}
.xa7_c00136{left:512.266667pt;}
.x1d_c00136{left:513.200000pt;}
.x34_c00136{left:515.333333pt;}
.x6c_c00136{left:516.666667pt;}
.xfa_c00136{left:521.600000pt;}
.x42_c00136{left:523.733333pt;}
.xa8_c00136{left:526.000000pt;}
.xdc_c00136{left:528.533333pt;}
.x7c_c00136{left:530.533333pt;}
.xf5_c00136{left:532.133333pt;}
.xbc_c00136{left:534.800000pt;}
.x5f_c00136{left:535.733333pt;}
.x11e_c00136{left:538.666667pt;}
.x9f_c00136{left:540.266667pt;}
.xe_c00136{left:541.466667pt;}
.x6d_c00136{left:545.466667pt;}
.xc5_c00136{left:547.066667pt;}
.x35_c00136{left:548.000000pt;}
.x7d_c00136{left:550.666667pt;}
.x50_c00136{left:551.866667pt;}
.xcd_c00136{left:553.333333pt;}
.x43_c00136{left:554.800000pt;}
.x102_c00136{left:556.800000pt;}
.x95_c00136{left:557.733333pt;}
.xf_c00136{left:560.000000pt;}
.xdd_c00136{left:562.400000pt;}
.x60_c00136{left:563.600000pt;}
.xa0_c00136{left:566.533333pt;}
.x103_c00136{left:568.000000pt;}
.x28_c00136{left:568.933333pt;}
.x96_c00136{left:571.466667pt;}
.x134_c00136{left:572.400000pt;}
.xfe_c00136{left:574.400000pt;}
.xb3_c00136{left:576.400000pt;}
.x8d_c00136{left:577.600000pt;}
.x6e_c00136{left:579.066667pt;}
.xbd_c00136{left:581.866667pt;}
.xa9_c00136{left:585.200000pt;}
.x1e_c00136{left:586.800000pt;}
.x10f_c00136{left:588.266667pt;}
.x61_c00136{left:589.866667pt;}
.x44_c00136{left:591.600000pt;}
.x97_c00136{left:594.800000pt;}
.xb4_c00136{left:595.866667pt;}
.x10_c00136{left:597.466667pt;}
.x56_c00136{left:598.400000pt;}
.x1f_c00136{left:603.066667pt;}
.x129_c00136{left:604.266667pt;}
.xaa_c00136{left:605.733333pt;}
.x84_c00136{left:610.933333pt;}
.xe8_c00136{left:611.866667pt;}
.x36_c00136{left:613.600000pt;}
.x119_c00136{left:615.466667pt;}
.xed_c00136{left:617.200000pt;}
.x29_c00136{left:620.133333pt;}
.x51_c00136{left:622.000000pt;}
.x57_c00136{left:623.333333pt;}
.x124_c00136{left:625.600000pt;}
.x6f_c00136{left:626.800000pt;}
.x98_c00136{left:628.400000pt;}
.xbe_c00136{left:629.600000pt;}
.xab_c00136{left:631.066667pt;}
.x7e_c00136{left:632.933333pt;}
.x45_c00136{left:633.866667pt;}
.x8e_c00136{left:642.266667pt;}
.x11_c00136{left:644.533333pt;}
.xd3_c00136{left:647.466667pt;}
.x46_c00136{left:649.600000pt;}
.x85_c00136{left:652.533333pt;}
.xce_c00136{left:653.466667pt;}
.x131_c00136{left:655.866667pt;}
.xa1_c00136{left:659.333333pt;}
.xc6_c00136{left:661.866667pt;}
.xbf_c00136{left:662.933333pt;}
.x114_c00136{left:664.800000pt;}
.x11a_c00136{left:666.400000pt;}
.x37_c00136{left:668.666667pt;}
.x2a_c00136{left:670.000000pt;}
.x47_c00136{left:672.266667pt;}
.x12_c00136{left:673.333333pt;}
.x8f_c00136{left:676.133333pt;}
.xee_c00136{left:677.066667pt;}
.xde_c00136{left:680.133333pt;}
.x7f_c00136{left:681.866667pt;}
.x70_c00136{left:683.466667pt;}
.x12d_c00136{left:684.800000pt;}
.xff_c00136{left:686.800000pt;}
.x11f_c00136{left:687.866667pt;}
.xf6_c00136{left:688.800000pt;}
.x86_c00136{left:691.200000pt;}
.xc0_c00136{left:693.333333pt;}
.x99_c00136{left:694.266667pt;}
.xac_c00136{left:695.333333pt;}
.xfb_c00136{left:696.400000pt;}
.x80_c00136{left:699.466667pt;}
.x13_c00136{left:701.866667pt;}
.x2b_c00136{left:702.933333pt;}
.x62_c00136{left:704.800000pt;}
.x121_c00136{left:709.066667pt;}
.xc7_c00136{left:710.533333pt;}
.x38_c00136{left:711.866667pt;}
.x58_c00136{left:713.600000pt;}
}





/* 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_c00137 {
    display:none;
  }
  .loading-indicator_c00137.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00137 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_c00137 { 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_c00137" -> "#page-container .classname_c00137")
 */
.pf_c00137 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00137 { /* 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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00137 { /* 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_c00137 { /* 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_c00137 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00137 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00137 {overflow:visible;}
  }
}
.c_c00137 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00137 { /* 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_c00137:after { /* webkit #35443 */
  content: '';
}
.t_c00137:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00137 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 */
}
.__c00137 { /* 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_c00137 { /* info for Javascript */
  display:none;
}
.l_c00137 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00137 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00137 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00137: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_c00137 {
    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_c00137.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00137.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_c00137 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00137{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00137;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.000000;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;}
.mae_c00137{transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00137{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m90_c00137{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00137{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00137{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m20_c00137{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00137{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00137{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mad_c00137{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m85_c00137{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00137{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00137{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00137{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.maf_c00137{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00137{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00137{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m84_c00137{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m11_c00137{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00137{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00137{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maa_c00137{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00137{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m91_c00137{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00137{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m70_c00137{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00137{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m92_c00137{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00137{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00137{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m54_c00137{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00137{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00137{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00137{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m73_c00137{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00137{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m39_c00137{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00137{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00137{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m79_c00137{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00137{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00137{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mac_c00137{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m87_c00137{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00137{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m34_c00137{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00137{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m67_c00137{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m60_c00137{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00137{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m23_c00137{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m93_c00137{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m78_c00137{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00137{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m69_c00137{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00137{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mab_c00137{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00137{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00137{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m89_c00137{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m37_c00137{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17_c00137{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);}
.m2b_c00137{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00137{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me_c00137{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m96_c00137{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00137{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00137{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m55_c00137{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m19_c00137{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00137{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00137{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m61_c00137{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m97_c00137{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m72_c00137{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m51_c00137{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00137{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00137{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m71_c00137{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.ma_c00137{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00137{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m68_c00137{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m81_c00137{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00137{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00137{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6_c00137{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00137{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m15_c00137{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m75_c00137{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00137{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m99_c00137{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m25_c00137{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00137{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m80_c00137{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m40_c00137{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m21_c00137{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00137{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m59_c00137{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00137{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00137{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00137{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m38_c00137{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m27_c00137{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m66_c00137{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m0_c00137{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m82_c00137{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m98_c00137{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1_c00137{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00137{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00137{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m77_c00137{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00137{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00137{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m76_c00137{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m86_c00137{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m94_c00137{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00137{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00137{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00137{vertical-align:0.000000px;}
.ls0_c00137{letter-spacing:0.000000px;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{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__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00137{word-spacing:-6.428571px;}
.wsa_c00137{word-spacing:-4.071429px;}
.ws9_c00137{word-spacing:-3.125000px;}
.ws4_c00137{word-spacing:-2.875000px;}
.wsb_c00137{word-spacing:-0.109027px;}
.wsc_c00137{word-spacing:0.000000px;}
.ws7_c00137{word-spacing:4.375000px;}
.ws5_c00137{word-spacing:7.375000px;}
.ws1_c00137{word-spacing:7.594267px;}
.ws6_c00137{word-spacing:8.063830px;}
.ws0_c00137{word-spacing:8.902765px;}
.ws2_c00137{word-spacing:21.401384px;}
.ws3_c00137{word-spacing:21.954545px;}
._0_c00137{width:25.500000px;}
.fc0_c00137{color:transparent;}
.fs0_c00137{font-size:54.000000px;}
.y0_c00137{bottom:0.000000px;}
.y2c_c00137{bottom:153.000000px;}
.y2b_c00137{bottom:191.700000px;}
.y2a_c00137{bottom:211.800000px;}
.y29_c00137{bottom:231.900000px;}
.y28_c00137{bottom:251.700000px;}
.y27_c00137{bottom:271.500000px;}
.y26_c00137{bottom:291.300000px;}
.y25_c00137{bottom:311.400000px;}
.y24_c00137{bottom:331.950000px;}
.y23_c00137{bottom:351.750000px;}
.y22_c00137{bottom:371.550000px;}
.y21_c00137{bottom:391.650000px;}
.y20_c00137{bottom:411.450000px;}
.y1f_c00137{bottom:431.550000px;}
.y1e_c00137{bottom:451.650000px;}
.y1d_c00137{bottom:474.300000px;}
.y1c_c00137{bottom:491.550000px;}
.y1b_c00137{bottom:511.650000px;}
.y1a_c00137{bottom:531.450000px;}
.y19_c00137{bottom:551.250000px;}
.y18_c00137{bottom:571.350000px;}
.y17_c00137{bottom:591.450000px;}
.y16_c00137{bottom:611.250000px;}
.y15_c00137{bottom:631.200000px;}
.y14_c00137{bottom:651.300000px;}
.y13_c00137{bottom:671.100000px;}
.y12_c00137{bottom:691.200000px;}
.y11_c00137{bottom:711.000000px;}
.y10_c00137{bottom:730.800000px;}
.yf_c00137{bottom:750.600000px;}
.ye_c00137{bottom:771.300000px;}
.yd_c00137{bottom:791.100000px;}
.yc_c00137{bottom:811.200000px;}
.yb_c00137{bottom:831.000000px;}
.ya_c00137{bottom:851.100000px;}
.y9_c00137{bottom:871.200000px;}
.y8_c00137{bottom:891.000000px;}
.y7_c00137{bottom:911.550000px;}
.y6_c00137{bottom:930.900000px;}
.y5_c00137{bottom:950.700000px;}
.y4_c00137{bottom:971.250000px;}
.y3_c00137{bottom:990.750000px;}
.y2_c00137{bottom:1010.850000px;}
.y1_c00137{bottom:1049.700000px;}
.h2_c00137{height:54.000000px;}
.h1_c00137{height:1167.750000px;}
.h0_c00137{height:1167.839997px;}
.w1_c00137{width:920.250000px;}
.w0_c00137{width:920.519990px;}
.x0_c00137{left:0.000000px;}
.x11b_c00137{left:105.450000px;}
.xdd_c00137{left:106.500000px;}
.x3_c00137{left:107.700000px;}
.xf3_c00137{left:126.600000px;}
.xde_c00137{left:132.000000px;}
.x66_c00137{left:136.350000px;}
.x12_c00137{left:137.700000px;}
.x70_c00137{left:139.650000px;}
.xe7_c00137{left:141.000000px;}
.xb1_c00137{left:142.350000px;}
.x5b_c00137{left:145.500000px;}
.xb9_c00137{left:146.550000px;}
.x4c_c00137{left:148.650000px;}
.x23_c00137{left:150.750000px;}
.x30_c00137{left:153.000000px;}
.x10f_c00137{left:155.100000px;}
.x122_c00137{left:156.450000px;}
.x4_c00137{left:160.650000px;}
.xed_c00137{left:166.950000px;}
.x14_c00137{left:168.900000px;}
.x31_c00137{left:170.250000px;}
.xcd_c00137{left:172.500000px;}
.x67_c00137{left:174.450000px;}
.xfd_c00137{left:176.850000px;}
.xcb_c00137{left:177.900000px;}
.x106_c00137{left:180.600000px;}
.x24_c00137{left:183.450000px;}
.x68_c00137{left:185.550000px;}
.xb2_c00137{left:187.650000px;}
.x87_c00137{left:190.800000px;}
.x7c_c00137{left:193.050000px;}
.x5c_c00137{left:195.600000px;}
.xcc_c00137{left:197.700000px;}
.x5_c00137{left:200.550000px;}
.x115_c00137{left:202.050000px;}
.x128_c00137{left:203.550000px;}
.x32_c00137{left:204.750000px;}
.x107_c00137{left:206.100000px;}
.x71_c00137{left:207.450000px;}
.x13_c00137{left:209.250000px;}
.x4d_c00137{left:211.350000px;}
.x90_c00137{left:213.000000px;}
.xc1_c00137{left:214.350000px;}
.x15_c00137{left:216.000000px;}
.x3f_c00137{left:218.550000px;}
.x98_c00137{left:221.400000px;}
.x25_c00137{left:222.750000px;}
.xa8_c00137{left:224.250000px;}
.xf0_c00137{left:225.450000px;}
.xce_c00137{left:227.550000px;}
.x12e_c00137{left:229.950000px;}
.x5d_c00137{left:233.100000px;}
.x116_c00137{left:234.450000px;}
.x7d_c00137{left:236.250000px;}
.x6_c00137{left:238.050000px;}
.x4e_c00137{left:240.450000px;}
.x33_c00137{left:242.850000px;}
.xd6_c00137{left:244.800000px;}
.x88_c00137{left:246.900000px;}
.x108_c00137{left:250.800000px;}
.x91_c00137{left:253.350000px;}
.xe3_c00137{left:255.150000px;}
.xcf_c00137{left:257.400000px;}
.x129_c00137{left:259.050000px;}
.x34_c00137{left:260.100000px;}
.x11c_c00137{left:262.050000px;}
.x26_c00137{left:264.150000px;}
.xc2_c00137{left:265.800000px;}
.xa9_c00137{left:267.450000px;}
.xb3_c00137{left:269.700000px;}
.xa1_c00137{left:271.200000px;}
.xdf_c00137{left:273.450000px;}
.xfe_c00137{left:275.100000px;}
.x121_c00137{left:276.900000px;}
.x99_c00137{left:277.950000px;}
.x69_c00137{left:279.150000px;}
.x4f_c00137{left:281.550000px;}
.x16_c00137{left:282.600000px;}
.x40_c00137{left:283.650000px;}
.x35_c00137{left:286.050000px;}
.x12a_c00137{left:289.950000px;}
.xf4_c00137{left:291.000000px;}
.x89_c00137{left:294.750000px;}
.x92_c00137{left:298.650000px;}
.xd0_c00137{left:299.850000px;}
.xf1_c00137{left:301.350000px;}
.x10d_c00137{left:302.400000px;}
.xba_c00137{left:304.950000px;}
.x7_c00137{left:307.500000px;}
.x50_c00137{left:309.300000px;}
.x7e_c00137{left:310.800000px;}
.x5e_c00137{left:313.050000px;}
.x117_c00137{left:315.450000px;}
.x6a_c00137{left:316.950000px;}
.x133_c00137{left:318.150000px;}
.x93_c00137{left:320.550000px;}
.x72_c00137{left:324.000000px;}
.x11d_c00137{left:325.350000px;}
.xff_c00137{left:327.300000px;}
.x12f_c00137{left:330.000000px;}
.x109_c00137{left:333.150000px;}
.x36_c00137{left:334.350000px;}
.x17_c00137{left:336.600000px;}
.x41_c00137{left:337.950000px;}
.x9a_c00137{left:340.200000px;}
.x7f_c00137{left:342.900000px;}
.x27_c00137{left:344.100000px;}
.xbb_c00137{left:346.350000px;}
.xaa_c00137{left:347.400000px;}
.x8a_c00137{left:349.500000px;}
.x37_c00137{left:351.300000px;}
.x8_c00137{left:352.800000px;}
.x73_c00137{left:357.900000px;}
.xc3_c00137{left:360.150000px;}
.x51_c00137{left:363.000000px;}
.x42_c00137{left:365.250000px;}
.x28_c00137{left:368.250000px;}
.x8b_c00137{left:369.300000px;}
.x5f_c00137{left:370.650000px;}
.x9b_c00137{left:373.350000px;}
.x9_c00137{left:375.450000px;}
.xe8_c00137{left:377.550000px;}
.x110_c00137{left:378.900000px;}
.x123_c00137{left:382.500000px;}
.xd1_c00137{left:383.700000px;}
.x100_c00137{left:388.500000px;}
.xc4_c00137{left:389.700000px;}
.x9c_c00137{left:391.650000px;}
.x43_c00137{left:393.000000px;}
.x80_c00137{left:394.800000px;}
.x18_c00137{left:396.300000px;}
.x38_c00137{left:398.100000px;}
.x130_c00137{left:399.450000px;}
.x60_c00137{left:400.500000px;}
.x52_c00137{left:402.600000px;}
.xd7_c00137{left:404.250000px;}
.xf8_c00137{left:405.300000px;}
.x1_c00137{left:407.100000px;}
.x124_c00137{left:408.750000px;}
.xc5_c00137{left:411.000000px;}
.x81_c00137{left:412.500000px;}
.xa_c00137{left:413.550000px;}
.x118_c00137{left:414.750000px;}
.x19_c00137{left:416.100000px;}
.xe0_c00137{left:417.900000px;}
.x10a_c00137{left:420.600000px;}
.x74_c00137{left:422.250000px;}
.xd2_c00137{left:426.600000px;}
.xab_c00137{left:428.400000px;}
.xb_c00137{left:429.750000px;}
.xe9_c00137{left:430.800000px;}
.x53_c00137{left:433.200000px;}
.xe4_c00137{left:434.850000px;}
.x101_c00137{left:437.850000px;}
.xb4_c00137{left:438.900000px;}
.x11e_c00137{left:441.600000px;}
.x1a_c00137{left:443.400000px;}
.xc6_c00137{left:444.450000px;}
.x12b_c00137{left:445.800000px;}
.xa2_c00137{left:448.350000px;}
.x10b_c00137{left:450.450000px;}
.x29_c00137{left:452.850000px;}
.xbc_c00137{left:454.050000px;}
.xd8_c00137{left:456.450000px;}
.xee_c00137{left:459.300000px;}
.x39_c00137{left:460.800000px;}
.x82_c00137{left:463.650000px;}
.x75_c00137{left:465.150000px;}
.x94_c00137{left:466.800000px;}
.x44_c00137{left:471.900000px;}
.x54_c00137{left:473.850000px;}
.xc_c00137{left:475.050000px;}
.xd9_c00137{left:477.300000px;}
.x6b_c00137{left:478.950000px;}
.x2a_c00137{left:481.650000px;}
.x83_c00137{left:484.950000px;}
.x61_c00137{left:488.400000px;}
.x134_c00137{left:489.750000px;}
.x1b_c00137{left:492.750000px;}
.x76_c00137{left:495.000000px;}
.x95_c00137{left:496.350000px;}
.x8c_c00137{left:497.550000px;}
.xd3_c00137{left:499.950000px;}
.xea_c00137{left:501.000000px;}
.xa3_c00137{left:502.650000px;}
.xc7_c00137{left:503.850000px;}
.xac_c00137{left:505.050000px;}
.xbd_c00137{left:506.250000px;}
.x3a_c00137{left:509.400000px;}
.x45_c00137{left:512.550000px;}
.x84_c00137{left:513.750000px;}
.x135_c00137{left:514.950000px;}
.xef_c00137{left:516.900000px;}
.x9d_c00137{left:518.400000px;}
.x1c_c00137{left:519.450000px;}
.x137_c00137{left:522.900000px;}
.x55_c00137{left:526.350000px;}
.x125_c00137{left:527.550000px;}
.x62_c00137{left:529.500000px;}
.x119_c00137{left:532.050000px;}
.xc8_c00137{left:534.150000px;}
.x46_c00137{left:535.650000px;}
.xd_c00137{left:538.050000px;}
.x3b_c00137{left:539.700000px;}
.xf5_c00137{left:541.350000px;}
.x10e_c00137{left:545.250000px;}
.x2b_c00137{left:547.500000px;}
.x11f_c00137{left:549.000000px;}
.x56_c00137{left:551.850000px;}
.x6c_c00137{left:553.500000px;}
.x8d_c00137{left:554.700000px;}
.x47_c00137{left:556.500000px;}
.x131_c00137{left:557.850000px;}
.x63_c00137{left:559.050000px;}
.x1d_c00137{left:561.150000px;}
.xe1_c00137{left:562.500000px;}
.xb5_c00137{left:565.650000px;}
.xa4_c00137{left:568.200000px;}
.xf9_c00137{left:570.600000px;}
.xad_c00137{left:572.700000px;}
.x11a_c00137{left:575.550000px;}
.xc9_c00137{left:577.350000px;}
.x1e_c00137{left:579.150000px;}
.x113_c00137{left:581.550000px;}
.x64_c00137{left:583.500000px;}
.xda_c00137{left:584.550000px;}
.x126_c00137{left:587.250000px;}
.x102_c00137{left:588.300000px;}
.xae_c00137{left:592.500000px;}
.x2c_c00137{left:594.300000px;}
.x9e_c00137{left:598.650000px;}
.x57_c00137{left:600.150000px;}
.xa5_c00137{left:602.700000px;}
.x12c_c00137{left:603.900000px;}
.x132_c00137{left:604.950000px;}
.x8e_c00137{left:607.650000px;}
.x3c_c00137{left:609.600000px;}
.xe2_c00137{left:611.400000px;}
.x48_c00137{left:613.350000px;}
.xfa_c00137{left:615.300000px;}
.x77_c00137{left:617.400000px;}
.xdb_c00137{left:618.450000px;}
.xe_c00137{left:620.850000px;}
.x6d_c00137{left:622.500000px;}
.x2d_c00137{left:623.850000px;}
.xd4_c00137{left:625.200000px;}
.x3d_c00137{left:626.850000px;}
.xeb_c00137{left:628.050000px;}
.xa6_c00137{left:631.500000px;}
.x103_c00137{left:633.600000px;}
.x6e_c00137{left:634.800000px;}
.xfb_c00137{left:635.850000px;}
.x58_c00137{left:637.950000px;}
.x49_c00137{left:639.300000px;}
.x85_c00137{left:642.300000px;}
.x78_c00137{left:643.650000px;}
.x1f_c00137{left:646.500000px;}
.xb6_c00137{left:647.700000px;}
.xf_c00137{left:650.700000px;}
.x3e_c00137{left:652.350000px;}
.x9f_c00137{left:654.450000px;}
.x79_c00137{left:657.750000px;}
.xaf_c00137{left:659.100000px;}
.xf2_c00137{left:663.000000px;}
.x20_c00137{left:664.800000px;}
.xbe_c00137{left:665.850000px;}
.x114_c00137{left:667.500000px;}
.xa7_c00137{left:670.350000px;}
.xb7_c00137{left:673.200000px;}
.x10c_c00137{left:674.250000px;}
.x4a_c00137{left:675.300000px;}
.xd5_c00137{left:677.700000px;}
.x96_c00137{left:682.500000px;}
.x65_c00137{left:683.850000px;}
.x7a_c00137{left:686.250000px;}
.x111_c00137{left:687.750000px;}
.x2e_c00137{left:688.950000px;}
.xe5_c00137{left:691.650000px;}
.x104_c00137{left:693.300000px;}
.x10_c00137{left:695.700000px;}
.xf6_c00137{left:697.350000px;}
.x6f_c00137{left:700.650000px;}
.x4b_c00137{left:703.050000px;}
.x59_c00137{left:705.750000px;}
.x112_c00137{left:708.600000px;}
.xec_c00137{left:711.300000px;}
.x136_c00137{left:714.750000px;}
.x21_c00137{left:717.000000px;}
.x127_c00137{left:718.050000px;}
.xbf_c00137{left:720.600000px;}
.x105_c00137{left:723.900000px;}
.x120_c00137{left:726.150000px;}
.xa0_c00137{left:727.200000px;}
.xdc_c00137{left:729.300000px;}
.x12d_c00137{left:730.500000px;}
.xf7_c00137{left:731.550000px;}
.xb0_c00137{left:733.200000px;}
.xe6_c00137{left:734.550000px;}
.x97_c00137{left:736.500000px;}
.x7b_c00137{left:738.450000px;}
.x22_c00137{left:743.700000px;}
.x11_c00137{left:746.100000px;}
.x86_c00137{left:748.200000px;}
.x5a_c00137{left:751.050000px;}
.x2f_c00137{left:754.500000px;}
.x2_c00137{left:756.300000px;}
.x8f_c00137{left:758.850000px;}
.xca_c00137{left:761.400000px;}
.xfc_c00137{left:762.900000px;}
.xc0_c00137{left:764.100000px;}
.xb8_c00137{left:770.400000px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws8_c00137{word-spacing:-5.714286pt;}
.wsa_c00137{word-spacing:-3.619048pt;}
.ws9_c00137{word-spacing:-2.777778pt;}
.ws4_c00137{word-spacing:-2.555556pt;}
.wsb_c00137{word-spacing:-0.096913pt;}
.wsc_c00137{word-spacing:0.000000pt;}
.ws7_c00137{word-spacing:3.888889pt;}
.ws5_c00137{word-spacing:6.555556pt;}
.ws1_c00137{word-spacing:6.750459pt;}
.ws6_c00137{word-spacing:7.167849pt;}
.ws0_c00137{word-spacing:7.913568pt;}
.ws2_c00137{word-spacing:19.023453pt;}
.ws3_c00137{word-spacing:19.515152pt;}
._0_c00137{width:22.666667pt;}
.fs0_c00137{font-size:48.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y2c_c00137{bottom:136.000000pt;}
.y2b_c00137{bottom:170.400000pt;}
.y2a_c00137{bottom:188.266667pt;}
.y29_c00137{bottom:206.133333pt;}
.y28_c00137{bottom:223.733333pt;}
.y27_c00137{bottom:241.333333pt;}
.y26_c00137{bottom:258.933333pt;}
.y25_c00137{bottom:276.800000pt;}
.y24_c00137{bottom:295.066667pt;}
.y23_c00137{bottom:312.666667pt;}
.y22_c00137{bottom:330.266667pt;}
.y21_c00137{bottom:348.133333pt;}
.y20_c00137{bottom:365.733333pt;}
.y1f_c00137{bottom:383.600000pt;}
.y1e_c00137{bottom:401.466667pt;}
.y1d_c00137{bottom:421.600000pt;}
.y1c_c00137{bottom:436.933333pt;}
.y1b_c00137{bottom:454.800000pt;}
.y1a_c00137{bottom:472.400000pt;}
.y19_c00137{bottom:490.000000pt;}
.y18_c00137{bottom:507.866667pt;}
.y17_c00137{bottom:525.733333pt;}
.y16_c00137{bottom:543.333333pt;}
.y15_c00137{bottom:561.066667pt;}
.y14_c00137{bottom:578.933333pt;}
.y13_c00137{bottom:596.533333pt;}
.y12_c00137{bottom:614.400000pt;}
.y11_c00137{bottom:632.000000pt;}
.y10_c00137{bottom:649.600000pt;}
.yf_c00137{bottom:667.200000pt;}
.ye_c00137{bottom:685.600000pt;}
.yd_c00137{bottom:703.200000pt;}
.yc_c00137{bottom:721.066667pt;}
.yb_c00137{bottom:738.666667pt;}
.ya_c00137{bottom:756.533333pt;}
.y9_c00137{bottom:774.400000pt;}
.y8_c00137{bottom:792.000000pt;}
.y7_c00137{bottom:810.266667pt;}
.y6_c00137{bottom:827.466667pt;}
.y5_c00137{bottom:845.066667pt;}
.y4_c00137{bottom:863.333333pt;}
.y3_c00137{bottom:880.666667pt;}
.y2_c00137{bottom:898.533333pt;}
.y1_c00137{bottom:933.066667pt;}
.h2_c00137{height:48.000000pt;}
.h1_c00137{height:1038.000000pt;}
.h0_c00137{height:1038.079997pt;}
.w1_c00137{width:818.000000pt;}
.w0_c00137{width:818.239991pt;}
.x0_c00137{left:0.000000pt;}
.x11b_c00137{left:93.733333pt;}
.xdd_c00137{left:94.666667pt;}
.x3_c00137{left:95.733333pt;}
.xf3_c00137{left:112.533333pt;}
.xde_c00137{left:117.333333pt;}
.x66_c00137{left:121.200000pt;}
.x12_c00137{left:122.400000pt;}
.x70_c00137{left:124.133333pt;}
.xe7_c00137{left:125.333333pt;}
.xb1_c00137{left:126.533333pt;}
.x5b_c00137{left:129.333333pt;}
.xb9_c00137{left:130.266667pt;}
.x4c_c00137{left:132.133333pt;}
.x23_c00137{left:134.000000pt;}
.x30_c00137{left:136.000000pt;}
.x10f_c00137{left:137.866667pt;}
.x122_c00137{left:139.066667pt;}
.x4_c00137{left:142.800000pt;}
.xed_c00137{left:148.400000pt;}
.x14_c00137{left:150.133333pt;}
.x31_c00137{left:151.333333pt;}
.xcd_c00137{left:153.333333pt;}
.x67_c00137{left:155.066667pt;}
.xfd_c00137{left:157.200000pt;}
.xcb_c00137{left:158.133333pt;}
.x106_c00137{left:160.533333pt;}
.x24_c00137{left:163.066667pt;}
.x68_c00137{left:164.933333pt;}
.xb2_c00137{left:166.800000pt;}
.x87_c00137{left:169.600000pt;}
.x7c_c00137{left:171.600000pt;}
.x5c_c00137{left:173.866667pt;}
.xcc_c00137{left:175.733333pt;}
.x5_c00137{left:178.266667pt;}
.x115_c00137{left:179.600000pt;}
.x128_c00137{left:180.933333pt;}
.x32_c00137{left:182.000000pt;}
.x107_c00137{left:183.200000pt;}
.x71_c00137{left:184.400000pt;}
.x13_c00137{left:186.000000pt;}
.x4d_c00137{left:187.866667pt;}
.x90_c00137{left:189.333333pt;}
.xc1_c00137{left:190.533333pt;}
.x15_c00137{left:192.000000pt;}
.x3f_c00137{left:194.266667pt;}
.x98_c00137{left:196.800000pt;}
.x25_c00137{left:198.000000pt;}
.xa8_c00137{left:199.333333pt;}
.xf0_c00137{left:200.400000pt;}
.xce_c00137{left:202.266667pt;}
.x12e_c00137{left:204.400000pt;}
.x5d_c00137{left:207.200000pt;}
.x116_c00137{left:208.400000pt;}
.x7d_c00137{left:210.000000pt;}
.x6_c00137{left:211.600000pt;}
.x4e_c00137{left:213.733333pt;}
.x33_c00137{left:215.866667pt;}
.xd6_c00137{left:217.600000pt;}
.x88_c00137{left:219.466667pt;}
.x108_c00137{left:222.933333pt;}
.x91_c00137{left:225.200000pt;}
.xe3_c00137{left:226.800000pt;}
.xcf_c00137{left:228.800000pt;}
.x129_c00137{left:230.266667pt;}
.x34_c00137{left:231.200000pt;}
.x11c_c00137{left:232.933333pt;}
.x26_c00137{left:234.800000pt;}
.xc2_c00137{left:236.266667pt;}
.xa9_c00137{left:237.733333pt;}
.xb3_c00137{left:239.733333pt;}
.xa1_c00137{left:241.066667pt;}
.xdf_c00137{left:243.066667pt;}
.xfe_c00137{left:244.533333pt;}
.x121_c00137{left:246.133333pt;}
.x99_c00137{left:247.066667pt;}
.x69_c00137{left:248.133333pt;}
.x4f_c00137{left:250.266667pt;}
.x16_c00137{left:251.200000pt;}
.x40_c00137{left:252.133333pt;}
.x35_c00137{left:254.266667pt;}
.x12a_c00137{left:257.733333pt;}
.xf4_c00137{left:258.666667pt;}
.x89_c00137{left:262.000000pt;}
.x92_c00137{left:265.466667pt;}
.xd0_c00137{left:266.533333pt;}
.xf1_c00137{left:267.866667pt;}
.x10d_c00137{left:268.800000pt;}
.xba_c00137{left:271.066667pt;}
.x7_c00137{left:273.333333pt;}
.x50_c00137{left:274.933333pt;}
.x7e_c00137{left:276.266667pt;}
.x5e_c00137{left:278.266667pt;}
.x117_c00137{left:280.400000pt;}
.x6a_c00137{left:281.733333pt;}
.x133_c00137{left:282.800000pt;}
.x93_c00137{left:284.933333pt;}
.x72_c00137{left:288.000000pt;}
.x11d_c00137{left:289.200000pt;}
.xff_c00137{left:290.933333pt;}
.x12f_c00137{left:293.333333pt;}
.x109_c00137{left:296.133333pt;}
.x36_c00137{left:297.200000pt;}
.x17_c00137{left:299.200000pt;}
.x41_c00137{left:300.400000pt;}
.x9a_c00137{left:302.400000pt;}
.x7f_c00137{left:304.800000pt;}
.x27_c00137{left:305.866667pt;}
.xbb_c00137{left:307.866667pt;}
.xaa_c00137{left:308.800000pt;}
.x8a_c00137{left:310.666667pt;}
.x37_c00137{left:312.266667pt;}
.x8_c00137{left:313.600000pt;}
.x73_c00137{left:318.133333pt;}
.xc3_c00137{left:320.133333pt;}
.x51_c00137{left:322.666667pt;}
.x42_c00137{left:324.666667pt;}
.x28_c00137{left:327.333333pt;}
.x8b_c00137{left:328.266667pt;}
.x5f_c00137{left:329.466667pt;}
.x9b_c00137{left:331.866667pt;}
.x9_c00137{left:333.733333pt;}
.xe8_c00137{left:335.600000pt;}
.x110_c00137{left:336.800000pt;}
.x123_c00137{left:340.000000pt;}
.xd1_c00137{left:341.066667pt;}
.x100_c00137{left:345.333333pt;}
.xc4_c00137{left:346.400000pt;}
.x9c_c00137{left:348.133333pt;}
.x43_c00137{left:349.333333pt;}
.x80_c00137{left:350.933333pt;}
.x18_c00137{left:352.266667pt;}
.x38_c00137{left:353.866667pt;}
.x130_c00137{left:355.066667pt;}
.x60_c00137{left:356.000000pt;}
.x52_c00137{left:357.866667pt;}
.xd7_c00137{left:359.333333pt;}
.xf8_c00137{left:360.266667pt;}
.x1_c00137{left:361.866667pt;}
.x124_c00137{left:363.333333pt;}
.xc5_c00137{left:365.333333pt;}
.x81_c00137{left:366.666667pt;}
.xa_c00137{left:367.600000pt;}
.x118_c00137{left:368.666667pt;}
.x19_c00137{left:369.866667pt;}
.xe0_c00137{left:371.466667pt;}
.x10a_c00137{left:373.866667pt;}
.x74_c00137{left:375.333333pt;}
.xd2_c00137{left:379.200000pt;}
.xab_c00137{left:380.800000pt;}
.xb_c00137{left:382.000000pt;}
.xe9_c00137{left:382.933333pt;}
.x53_c00137{left:385.066667pt;}
.xe4_c00137{left:386.533333pt;}
.x101_c00137{left:389.200000pt;}
.xb4_c00137{left:390.133333pt;}
.x11e_c00137{left:392.533333pt;}
.x1a_c00137{left:394.133333pt;}
.xc6_c00137{left:395.066667pt;}
.x12b_c00137{left:396.266667pt;}
.xa2_c00137{left:398.533333pt;}
.x10b_c00137{left:400.400000pt;}
.x29_c00137{left:402.533333pt;}
.xbc_c00137{left:403.600000pt;}
.xd8_c00137{left:405.733333pt;}
.xee_c00137{left:408.266667pt;}
.x39_c00137{left:409.600000pt;}
.x82_c00137{left:412.133333pt;}
.x75_c00137{left:413.466667pt;}
.x94_c00137{left:414.933333pt;}
.x44_c00137{left:419.466667pt;}
.x54_c00137{left:421.200000pt;}
.xc_c00137{left:422.266667pt;}
.xd9_c00137{left:424.266667pt;}
.x6b_c00137{left:425.733333pt;}
.x2a_c00137{left:428.133333pt;}
.x83_c00137{left:431.066667pt;}
.x61_c00137{left:434.133333pt;}
.x134_c00137{left:435.333333pt;}
.x1b_c00137{left:438.000000pt;}
.x76_c00137{left:440.000000pt;}
.x95_c00137{left:441.200000pt;}
.x8c_c00137{left:442.266667pt;}
.xd3_c00137{left:444.400000pt;}
.xea_c00137{left:445.333333pt;}
.xa3_c00137{left:446.800000pt;}
.xc7_c00137{left:447.866667pt;}
.xac_c00137{left:448.933333pt;}
.xbd_c00137{left:450.000000pt;}
.x3a_c00137{left:452.800000pt;}
.x45_c00137{left:455.600000pt;}
.x84_c00137{left:456.666667pt;}
.x135_c00137{left:457.733333pt;}
.xef_c00137{left:459.466667pt;}
.x9d_c00137{left:460.800000pt;}
.x1c_c00137{left:461.733333pt;}
.x137_c00137{left:464.800000pt;}
.x55_c00137{left:467.866667pt;}
.x125_c00137{left:468.933333pt;}
.x62_c00137{left:470.666667pt;}
.x119_c00137{left:472.933333pt;}
.xc8_c00137{left:474.800000pt;}
.x46_c00137{left:476.133333pt;}
.xd_c00137{left:478.266667pt;}
.x3b_c00137{left:479.733333pt;}
.xf5_c00137{left:481.200000pt;}
.x10e_c00137{left:484.666667pt;}
.x2b_c00137{left:486.666667pt;}
.x11f_c00137{left:488.000000pt;}
.x56_c00137{left:490.533333pt;}
.x6c_c00137{left:492.000000pt;}
.x8d_c00137{left:493.066667pt;}
.x47_c00137{left:494.666667pt;}
.x131_c00137{left:495.866667pt;}
.x63_c00137{left:496.933333pt;}
.x1d_c00137{left:498.800000pt;}
.xe1_c00137{left:500.000000pt;}
.xb5_c00137{left:502.800000pt;}
.xa4_c00137{left:505.066667pt;}
.xf9_c00137{left:507.200000pt;}
.xad_c00137{left:509.066667pt;}
.x11a_c00137{left:511.600000pt;}
.xc9_c00137{left:513.200000pt;}
.x1e_c00137{left:514.800000pt;}
.x113_c00137{left:516.933333pt;}
.x64_c00137{left:518.666667pt;}
.xda_c00137{left:519.600000pt;}
.x126_c00137{left:522.000000pt;}
.x102_c00137{left:522.933333pt;}
.xae_c00137{left:526.666667pt;}
.x2c_c00137{left:528.266667pt;}
.x9e_c00137{left:532.133333pt;}
.x57_c00137{left:533.466667pt;}
.xa5_c00137{left:535.733333pt;}
.x12c_c00137{left:536.800000pt;}
.x132_c00137{left:537.733333pt;}
.x8e_c00137{left:540.133333pt;}
.x3c_c00137{left:541.866667pt;}
.xe2_c00137{left:543.466667pt;}
.x48_c00137{left:545.200000pt;}
.xfa_c00137{left:546.933333pt;}
.x77_c00137{left:548.800000pt;}
.xdb_c00137{left:549.733333pt;}
.xe_c00137{left:551.866667pt;}
.x6d_c00137{left:553.333333pt;}
.x2d_c00137{left:554.533333pt;}
.xd4_c00137{left:555.733333pt;}
.x3d_c00137{left:557.200000pt;}
.xeb_c00137{left:558.266667pt;}
.xa6_c00137{left:561.333333pt;}
.x103_c00137{left:563.200000pt;}
.x6e_c00137{left:564.266667pt;}
.xfb_c00137{left:565.200000pt;}
.x58_c00137{left:567.066667pt;}
.x49_c00137{left:568.266667pt;}
.x85_c00137{left:570.933333pt;}
.x78_c00137{left:572.133333pt;}
.x1f_c00137{left:574.666667pt;}
.xb6_c00137{left:575.733333pt;}
.xf_c00137{left:578.400000pt;}
.x3e_c00137{left:579.866667pt;}
.x9f_c00137{left:581.733333pt;}
.x79_c00137{left:584.666667pt;}
.xaf_c00137{left:585.866667pt;}
.xf2_c00137{left:589.333333pt;}
.x20_c00137{left:590.933333pt;}
.xbe_c00137{left:591.866667pt;}
.x114_c00137{left:593.333333pt;}
.xa7_c00137{left:595.866667pt;}
.xb7_c00137{left:598.400000pt;}
.x10c_c00137{left:599.333333pt;}
.x4a_c00137{left:600.266667pt;}
.xd5_c00137{left:602.400000pt;}
.x96_c00137{left:606.666667pt;}
.x65_c00137{left:607.866667pt;}
.x7a_c00137{left:610.000000pt;}
.x111_c00137{left:611.333333pt;}
.x2e_c00137{left:612.400000pt;}
.xe5_c00137{left:614.800000pt;}
.x104_c00137{left:616.266667pt;}
.x10_c00137{left:618.400000pt;}
.xf6_c00137{left:619.866667pt;}
.x6f_c00137{left:622.800000pt;}
.x4b_c00137{left:624.933333pt;}
.x59_c00137{left:627.333333pt;}
.x112_c00137{left:629.866667pt;}
.xec_c00137{left:632.266667pt;}
.x136_c00137{left:635.333333pt;}
.x21_c00137{left:637.333333pt;}
.x127_c00137{left:638.266667pt;}
.xbf_c00137{left:640.533333pt;}
.x105_c00137{left:643.466667pt;}
.x120_c00137{left:645.466667pt;}
.xa0_c00137{left:646.400000pt;}
.xdc_c00137{left:648.266667pt;}
.x12d_c00137{left:649.333333pt;}
.xf7_c00137{left:650.266667pt;}
.xb0_c00137{left:651.733333pt;}
.xe6_c00137{left:652.933333pt;}
.x97_c00137{left:654.666667pt;}
.x7b_c00137{left:656.400000pt;}
.x22_c00137{left:661.066667pt;}
.x11_c00137{left:663.200000pt;}
.x86_c00137{left:665.066667pt;}
.x5a_c00137{left:667.600000pt;}
.x2f_c00137{left:670.666667pt;}
.x2_c00137{left:672.266667pt;}
.x8f_c00137{left:674.533333pt;}
.xca_c00137{left:676.800000pt;}
.xfc_c00137{left:678.133333pt;}
.xc0_c00137{left:679.200000pt;}
.xb8_c00137{left:684.800000pt;}
}





/* 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_c00138 {
    display:none;
  }
  .loading-indicator_c00138.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00138 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_c00138 { 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_c00138" -> "#page-container .classname_c00138")
 */
.pf_c00138 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00138 { /* 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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00138 { /* 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_c00138 { /* 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_c00138 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00138 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00138 {overflow:visible;}
  }
}
.c_c00138 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00138 { /* 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_c00138:after { /* webkit #35443 */
  content: '';
}
.t_c00138:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00138 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 */
}
.__c00138 { /* 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_c00138 { /* info for Javascript */
  display:none;
}
.l_c00138 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00138 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00138 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00138: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_c00138 {
    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_c00138.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00138.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_c00138 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00138{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00138;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.000000;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;}
.m8a_c00138{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00138{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00138{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00138{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m59_c00138{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00138{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00138{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00138{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m89_c00138{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00138{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00138{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00138{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m87_c00138{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m94_c00138{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00138{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00138{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00138{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m58_c00138{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m92_c00138{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m98_c00138{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m54_c00138{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00138{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m55_c00138{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00138{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m24_c00138{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m62_c00138{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m21_c00138{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00138{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m68_c00138{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00138{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m60_c00138{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m65_c00138{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00138{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00138{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00138{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00138{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m81_c00138{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00138{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m99_c00138{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00138{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00138{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00138{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00138{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00138{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m79_c00138{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00138{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m93_c00138{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m86_c00138{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00138{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00138{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00138{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m28_c00138{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m83_c00138{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00138{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m69_c00138{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m26_c00138{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m76_c00138{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00138{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00138{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00138{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m46_c00138{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00138{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m90_c00138{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{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);}
.m34_c00138{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00138{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m41_c00138{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00138{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00138{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m53_c00138{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md_c00138{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m49_c00138{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00138{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00138{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m71_c00138{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00138{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00138{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m37_c00138{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m80_c00138{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m56_c00138{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00138{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00138{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00138{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m88_c00138{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m66_c00138{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m70_c00138{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m84_c00138{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m78_c00138{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00138{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m32_c00138{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m52_c00138{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m96_c00138{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00138{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m61_c00138{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00138{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m12_c00138{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m50_c00138{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00138{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m63_c00138{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m27_c00138{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m77_c00138{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00138{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m38_c00138{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5_c00138{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00138{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m82_c00138{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m36_c00138{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m73_c00138{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m85_c00138{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00138{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00138{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00138{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m72_c00138{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00138{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00138{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m74_c00138{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m16_c00138{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m91_c00138{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00138{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m75_c00138{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m57_c00138{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00138{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00138{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{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__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00138{word-spacing:-2.253012px;}
.ws5_c00138{word-spacing:0.000000px;}
.ws3_c00138{word-spacing:4.537019px;}
.ws2_c00138{word-spacing:9.000000px;}
.ws0_c00138{word-spacing:16.500000px;}
.ws1_c00138{word-spacing:17.875000px;}
.fc0_c00138{color:transparent;}
.fs0_c00138{font-size:54.000000px;}
.y0_c00138{bottom:0.000000px;}
.y2c_c00138{bottom:151.200000px;}
.y2b_c00138{bottom:167.100000px;}
.y2a_c00138{bottom:212.100000px;}
.y29_c00138{bottom:232.500000px;}
.y28_c00138{bottom:252.600000px;}
.y27_c00138{bottom:272.700000px;}
.y26_c00138{bottom:292.800000px;}
.y25_c00138{bottom:312.300000px;}
.y24_c00138{bottom:332.400000px;}
.y23_c00138{bottom:352.200000px;}
.y22_c00138{bottom:372.000000px;}
.y21_c00138{bottom:392.100000px;}
.y20_c00138{bottom:412.200000px;}
.y1f_c00138{bottom:432.300000px;}
.y1e_c00138{bottom:452.100000px;}
.y1d_c00138{bottom:472.200000px;}
.y1c_c00138{bottom:492.000000px;}
.y1b_c00138{bottom:511.800000px;}
.y1a_c00138{bottom:531.900000px;}
.y19_c00138{bottom:552.000000px;}
.y18_c00138{bottom:571.800000px;}
.y17_c00138{bottom:591.900000px;}
.y16_c00138{bottom:612.000000px;}
.y15_c00138{bottom:632.100000px;}
.y14_c00138{bottom:652.200000px;}
.y13_c00138{bottom:672.300000px;}
.y12_c00138{bottom:692.400000px;}
.y11_c00138{bottom:712.200000px;}
.y10_c00138{bottom:732.300000px;}
.yf_c00138{bottom:752.100000px;}
.ye_c00138{bottom:772.650000px;}
.yd_c00138{bottom:792.450000px;}
.yc_c00138{bottom:812.250000px;}
.yb_c00138{bottom:832.350000px;}
.ya_c00138{bottom:852.450000px;}
.y9_c00138{bottom:872.550000px;}
.y8_c00138{bottom:892.350000px;}
.y7_c00138{bottom:912.450000px;}
.y6_c00138{bottom:932.550000px;}
.y5_c00138{bottom:952.350000px;}
.y4_c00138{bottom:973.200000px;}
.y3_c00138{bottom:993.000000px;}
.y2_c00138{bottom:1013.100000px;}
.y1_c00138{bottom:1051.500000px;}
.h2_c00138{height:54.000000px;}
.h1_c00138{height:1167.750000px;}
.h0_c00138{height:1167.839997px;}
.w1_c00138{width:920.250000px;}
.w0_c00138{width:920.519990px;}
.x0_c00138{left:0.000000px;}
.x14_c00138{left:150.600000px;}
.x3_c00138{left:152.250000px;}
.x1_c00138{left:153.300000px;}
.x81_c00138{left:164.100000px;}
.xd2_c00138{left:169.050000px;}
.xee_c00138{left:171.450000px;}
.xcc_c00138{left:172.650000px;}
.xea_c00138{left:173.850000px;}
.x126_c00138{left:175.350000px;}
.xb9_c00138{left:176.700000px;}
.xe6_c00138{left:178.650000px;}
.x41_c00138{left:180.150000px;}
.x12b_c00138{left:181.200000px;}
.x59_c00138{left:182.250000px;}
.x36_c00138{left:183.600000px;}
.x113_c00138{left:185.400000px;}
.x26_c00138{left:188.250000px;}
.x4e_c00138{left:189.900000px;}
.x101_c00138{left:190.950000px;}
.x4_c00138{left:192.150000px;}
.xb1_c00138{left:194.400000px;}
.x11f_c00138{left:196.500000px;}
.x67_c00138{left:199.500000px;}
.x15_c00138{left:209.700000px;}
.x5_c00138{left:211.950000px;}
.x89_c00138{left:213.450000px;}
.xb2_c00138{left:214.500000px;}
.x134_c00138{left:216.000000px;}
.xbd_c00138{left:217.350000px;}
.xeb_c00138{left:220.350000px;}
.x127_c00138{left:222.150000px;}
.xa1_c00138{left:223.800000px;}
.x42_c00138{left:225.450000px;}
.x27_c00138{left:227.100000px;}
.x8a_c00138{left:228.600000px;}
.x71_c00138{left:232.200000px;}
.x105_c00138{left:233.850000px;}
.x13b_c00138{left:236.850000px;}
.x6_c00138{left:239.250000px;}
.xec_c00138{left:240.450000px;}
.x7a_c00138{left:241.950000px;}
.x137_c00138{left:244.200000px;}
.x4f_c00138{left:246.450000px;}
.x10a_c00138{left:247.500000px;}
.xc5_c00138{left:249.450000px;}
.x5a_c00138{left:252.450000px;}
.xa2_c00138{left:254.100000px;}
.x16_c00138{left:256.200000px;}
.x7b_c00138{left:257.850000px;}
.xef_c00138{left:259.950000px;}
.x8b_c00138{left:262.800000px;}
.x28_c00138{left:264.900000px;}
.x122_c00138{left:267.600000px;}
.xf6_c00138{left:269.250000px;}
.x5b_c00138{left:272.250000px;}
.x43_c00138{left:275.550000px;}
.xbe_c00138{left:276.750000px;}
.x17_c00138{left:279.300000px;}
.x98_c00138{left:280.500000px;}
.x37_c00138{left:283.350000px;}
.x90_c00138{left:284.400000px;}
.x123_c00138{left:287.100000px;}
.xf7_c00138{left:289.050000px;}
.x82_c00138{left:291.150000px;}
.x72_c00138{left:293.400000px;}
.x50_c00138{left:294.750000px;}
.x44_c00138{left:296.100000px;}
.x7_c00138{left:300.750000px;}
.x29_c00138{left:302.400000px;}
.x114_c00138{left:304.200000px;}
.x18_c00138{left:308.400000px;}
.x91_c00138{left:309.600000px;}
.xd7_c00138{left:310.800000px;}
.x12c_c00138{left:311.850000px;}
.x99_c00138{left:312.900000px;}
.xa3_c00138{left:314.250000px;}
.x38_c00138{left:316.500000px;}
.x68_c00138{left:318.300000px;}
.xb3_c00138{left:319.650000px;}
.x83_c00138{left:320.700000px;}
.x11b_c00138{left:322.200000px;}
.xbf_c00138{left:323.550000px;}
.x45_c00138{left:325.950000px;}
.xa9_c00138{left:328.800000px;}
.x73_c00138{left:335.100000px;}
.x39_c00138{left:337.350000px;}
.xf0_c00138{left:338.700000px;}
.x8_c00138{left:341.100000px;}
.xc6_c00138{left:346.350000px;}
.x9a_c00138{left:348.150000px;}
.x69_c00138{left:349.950000px;}
.x8c_c00138{left:351.750000px;}
.x11c_c00138{left:352.800000px;}
.xb4_c00138{left:355.350000px;}
.x102_c00138{left:356.400000px;}
.x12d_c00138{left:358.350000px;}
.x9_c00138{left:359.400000px;}
.x19_c00138{left:362.100000px;}
.x74_c00138{left:363.150000px;}
.x118_c00138{left:365.550000px;}
.xd8_c00138{left:366.600000px;}
.x5c_c00138{left:368.100000px;}
.x2a_c00138{left:372.600000px;}
.xaa_c00138{left:373.800000px;}
.xb5_c00138{left:375.450000px;}
.x135_c00138{left:376.950000px;}
.xc0_c00138{left:378.300000px;}
.xcd_c00138{left:379.950000px;}
.x10b_c00138{left:381.450000px;}
.xe7_c00138{left:384.600000px;}
.xf8_c00138{left:386.250000px;}
.x9b_c00138{left:387.750000px;}
.x1a_c00138{left:390.900000px;}
.xdf_c00138{left:392.550000px;}
.x92_c00138{left:396.750000px;}
.x115_c00138{left:398.100000px;}
.x84_c00138{left:401.700000px;}
.x51_c00138{left:403.350000px;}
.x3a_c00138{left:405.450000px;}
.xc1_c00138{left:406.800000px;}
.x7c_c00138{left:409.500000px;}
.x13c_c00138{left:411.150000px;}
.x8d_c00138{left:412.200000px;}
.x46_c00138{left:414.150000px;}
.xa_c00138{left:415.200000px;}
.x2b_c00138{left:417.900000px;}
.x128_c00138{left:419.100000px;}
.x124_c00138{left:421.050000px;}
.xa4_c00138{left:422.550000px;}
.x1b_c00138{left:425.100000px;}
.xce_c00138{left:426.300000px;}
.x10c_c00138{left:427.800000px;}
.xab_c00138{left:428.850000px;}
.xd9_c00138{left:430.650000px;}
.xb_c00138{left:432.450000px;}
.x9c_c00138{left:434.550000px;}
.x12e_c00138{left:435.750000px;}
.x5d_c00138{left:437.250000px;}
.xc7_c00138{left:438.450000px;}
.xb6_c00138{left:441.000000px;}
.x116_c00138{left:443.400000px;}
.x1c_c00138{left:445.200000px;}
.x6a_c00138{left:446.850000px;}
.xa5_c00138{left:448.050000px;}
.x2_c00138{left:450.600000px;}
.x47_c00138{left:451.950000px;}
.xc2_c00138{left:457.200000px;}
.x136_c00138{left:459.000000px;}
.x2c_c00138{left:462.600000px;}
.x52_c00138{left:463.800000px;}
.x129_c00138{left:465.600000px;}
.x3b_c00138{left:467.250000px;}
.x93_c00138{left:470.850000px;}
.xd3_c00138{left:472.500000px;}
.xc8_c00138{left:474.150000px;}
.x85_c00138{left:475.500000px;}
.xe0_c00138{left:476.850000px;}
.x75_c00138{left:479.400000px;}
.x5e_c00138{left:480.450000px;}
.xc_c00138{left:482.850000px;}
.xf1_c00138{left:485.100000px;}
.xda_c00138{left:486.750000px;}
.x1d_c00138{left:489.150000px;}
.x2d_c00138{left:490.350000px;}
.xcf_c00138{left:491.700000px;}
.xe1_c00138{left:494.100000px;}
.x13d_c00138{left:495.150000px;}
.x6b_c00138{left:498.000000px;}
.x8e_c00138{left:500.400000px;}
.xa6_c00138{left:503.850000px;}
.x12f_c00138{left:505.950000px;}
.x9d_c00138{left:512.400000px;}
.x53_c00138{left:513.450000px;}
.x10d_c00138{left:514.500000px;}
.x117_c00138{left:516.150000px;}
.xd0_c00138{left:517.200000px;}
.x48_c00138{left:519.300000px;}
.x7d_c00138{left:521.100000px;}
.x5f_c00138{left:522.900000px;}
.xd_c00138{left:524.550000px;}
.x2e_c00138{left:526.050000px;}
.x138_c00138{left:528.150000px;}
.xb7_c00138{left:529.500000px;}
.x120_c00138{left:530.550000px;}
.x76_c00138{left:533.100000px;}
.xfd_c00138{left:534.450000px;}
.xe2_c00138{left:537.000000px;}
.xdb_c00138{left:538.500000px;}
.x60_c00138{left:540.150000px;}
.x94_c00138{left:544.200000px;}
.xe_c00138{left:546.450000px;}
.xac_c00138{left:547.950000px;}
.xc9_c00138{left:549.600000px;}
.x49_c00138{left:552.750000px;}
.xfe_c00138{left:554.250000px;}
.x3c_c00138{left:556.500000px;}
.x6c_c00138{left:558.150000px;}
.x12a_c00138{left:559.500000px;}
.x1e_c00138{left:561.450000px;}
.xc3_c00138{left:563.700000px;}
.xe3_c00138{left:564.750000px;}
.xed_c00138{left:566.550000px;}
.x7e_c00138{left:568.650000px;}
.x2f_c00138{left:571.800000px;}
.xf9_c00138{left:572.850000px;}
.x61_c00138{left:576.450000px;}
.xe8_c00138{left:578.550000px;}
.xca_c00138{left:579.900000px;}
.x4a_c00138{left:583.050000px;}
.xad_c00138{left:584.250000px;}
.xf_c00138{left:585.750000px;}
.x106_c00138{left:586.950000px;}
.xb8_c00138{left:588.150000px;}
.x6d_c00138{left:590.250000px;}
.x10e_c00138{left:593.250000px;}
.xff_c00138{left:594.600000px;}
.x7f_c00138{left:595.950000px;}
.x62_c00138{left:597.300000px;}
.x1f_c00138{left:599.250000px;}
.x54_c00138{left:601.650000px;}
.x30_c00138{left:602.700000px;}
.x139_c00138{left:604.200000px;}
.xe9_c00138{left:607.050000px;}
.x6e_c00138{left:609.750000px;}
.xf2_c00138{left:611.100000px;}
.x9e_c00138{left:613.200000px;}
.x130_c00138{left:615.750000px;}
.x121_c00138{left:616.950000px;}
.xba_c00138{left:618.450000px;}
.x107_c00138{left:620.850000px;}
.x80_c00138{left:621.900000px;}
.x31_c00138{left:625.350000px;}
.x86_c00138{left:628.350000px;}
.xae_c00138{left:629.550000px;}
.x3d_c00138{left:630.600000px;}
.xa7_c00138{left:632.700000px;}
.xcb_c00138{left:633.900000px;}
.xfa_c00138{left:635.100000px;}
.x63_c00138{left:636.600000px;}
.xf3_c00138{left:637.800000px;}
.x6f_c00138{left:639.300000px;}
.x125_c00138{left:642.150000px;}
.x20_c00138{left:643.500000px;}
.x77_c00138{left:645.900000px;}
.x131_c00138{left:647.400000px;}
.x10_c00138{left:648.450000px;}
.x103_c00138{left:650.850000px;}
.x55_c00138{left:653.850000px;}
.x100_c00138{left:656.550000px;}
.xf4_c00138{left:657.900000px;}
.x11d_c00138{left:659.250000px;}
.x21_c00138{left:660.450000px;}
.x132_c00138{left:662.100000px;}
.x10f_c00138{left:663.900000px;}
.x78_c00138{left:667.200000px;}
.xe4_c00138{left:669.750000px;}
.x22_c00138{left:671.550000px;}
.x108_c00138{left:673.050000px;}
.xfb_c00138{left:674.400000px;}
.xd4_c00138{left:676.650000px;}
.x13a_c00138{left:677.700000px;}
.x64_c00138{left:680.550000px;}
.x4b_c00138{left:683.100000px;}
.x56_c00138{left:685.500000px;}
.x11_c00138{left:687.000000px;}
.x32_c00138{left:691.200000px;}
.xfc_c00138{left:694.200000px;}
.x95_c00138{left:695.400000px;}
.x3e_c00138{left:697.200000px;}
.xf5_c00138{left:698.550000px;}
.x23_c00138{left:700.650000px;}
.x110_c00138{left:703.650000px;}
.xaf_c00138{left:706.650000px;}
.x65_c00138{left:709.050000px;}
.x87_c00138{left:710.550000px;}
.xa8_c00138{left:712.500000px;}
.x96_c00138{left:714.150000px;}
.x33_c00138{left:716.700000px;}
.x24_c00138{left:720.750000px;}
.x119_c00138{left:724.350000px;}
.x70_c00138{left:726.150000px;}
.x4c_c00138{left:727.800000px;}
.x104_c00138{left:729.000000px;}
.x3f_c00138{left:734.250000px;}
.xb0_c00138{left:736.200000px;}
.x57_c00138{left:738.750000px;}
.xdc_c00138{left:740.850000px;}
.xbb_c00138{left:742.650000px;}
.x8f_c00138{left:748.800000px;}
.xe5_c00138{left:750.750000px;}
.x88_c00138{left:752.250000px;}
.x133_c00138{left:754.650000px;}
.x25_c00138{left:755.700000px;}
.x66_c00138{left:757.650000px;}
.x111_c00138{left:759.150000px;}
.x109_c00138{left:760.500000px;}
.x34_c00138{left:763.200000px;}
.x9f_c00138{left:764.550000px;}
.xd5_c00138{left:767.700000px;}
.x12_c00138{left:769.500000px;}
.x40_c00138{left:771.300000px;}
.x97_c00138{left:775.350000px;}
.x4d_c00138{left:776.700000px;}
.x11e_c00138{left:779.250000px;}
.x35_c00138{left:780.900000px;}
.xd1_c00138{left:782.550000px;}
.x79_c00138{left:784.800000px;}
.xdd_c00138{left:787.950000px;}
.x112_c00138{left:793.050000px;}
.x58_c00138{left:794.550000px;}
.xa0_c00138{left:797.250000px;}
.xd6_c00138{left:799.050000px;}
.x13_c00138{left:800.400000px;}
.xc4_c00138{left:804.900000px;}
.x11a_c00138{left:807.150000px;}
.xbc_c00138{left:808.500000px;}
.xde_c00138{left:811.650000px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws4_c00138{word-spacing:-2.002677pt;}
.ws5_c00138{word-spacing:0.000000pt;}
.ws3_c00138{word-spacing:4.032906pt;}
.ws2_c00138{word-spacing:8.000000pt;}
.ws0_c00138{word-spacing:14.666667pt;}
.ws1_c00138{word-spacing:15.888889pt;}
.fs0_c00138{font-size:48.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y2c_c00138{bottom:134.400000pt;}
.y2b_c00138{bottom:148.533333pt;}
.y2a_c00138{bottom:188.533333pt;}
.y29_c00138{bottom:206.666667pt;}
.y28_c00138{bottom:224.533333pt;}
.y27_c00138{bottom:242.400000pt;}
.y26_c00138{bottom:260.266667pt;}
.y25_c00138{bottom:277.600000pt;}
.y24_c00138{bottom:295.466667pt;}
.y23_c00138{bottom:313.066667pt;}
.y22_c00138{bottom:330.666667pt;}
.y21_c00138{bottom:348.533333pt;}
.y20_c00138{bottom:366.400000pt;}
.y1f_c00138{bottom:384.266667pt;}
.y1e_c00138{bottom:401.866667pt;}
.y1d_c00138{bottom:419.733333pt;}
.y1c_c00138{bottom:437.333333pt;}
.y1b_c00138{bottom:454.933333pt;}
.y1a_c00138{bottom:472.800000pt;}
.y19_c00138{bottom:490.666667pt;}
.y18_c00138{bottom:508.266667pt;}
.y17_c00138{bottom:526.133333pt;}
.y16_c00138{bottom:544.000000pt;}
.y15_c00138{bottom:561.866667pt;}
.y14_c00138{bottom:579.733333pt;}
.y13_c00138{bottom:597.600000pt;}
.y12_c00138{bottom:615.466667pt;}
.y11_c00138{bottom:633.066667pt;}
.y10_c00138{bottom:650.933333pt;}
.yf_c00138{bottom:668.533333pt;}
.ye_c00138{bottom:686.800000pt;}
.yd_c00138{bottom:704.400000pt;}
.yc_c00138{bottom:722.000000pt;}
.yb_c00138{bottom:739.866667pt;}
.ya_c00138{bottom:757.733333pt;}
.y9_c00138{bottom:775.600000pt;}
.y8_c00138{bottom:793.200000pt;}
.y7_c00138{bottom:811.066667pt;}
.y6_c00138{bottom:828.933333pt;}
.y5_c00138{bottom:846.533333pt;}
.y4_c00138{bottom:865.066667pt;}
.y3_c00138{bottom:882.666667pt;}
.y2_c00138{bottom:900.533333pt;}
.y1_c00138{bottom:934.666667pt;}
.h2_c00138{height:48.000000pt;}
.h1_c00138{height:1038.000000pt;}
.h0_c00138{height:1038.079997pt;}
.w1_c00138{width:818.000000pt;}
.w0_c00138{width:818.239991pt;}
.x0_c00138{left:0.000000pt;}
.x14_c00138{left:133.866667pt;}
.x3_c00138{left:135.333333pt;}
.x1_c00138{left:136.266667pt;}
.x81_c00138{left:145.866667pt;}
.xd2_c00138{left:150.266667pt;}
.xee_c00138{left:152.400000pt;}
.xcc_c00138{left:153.466667pt;}
.xea_c00138{left:154.533333pt;}
.x126_c00138{left:155.866667pt;}
.xb9_c00138{left:157.066667pt;}
.xe6_c00138{left:158.800000pt;}
.x41_c00138{left:160.133333pt;}
.x12b_c00138{left:161.066667pt;}
.x59_c00138{left:162.000000pt;}
.x36_c00138{left:163.200000pt;}
.x113_c00138{left:164.800000pt;}
.x26_c00138{left:167.333333pt;}
.x4e_c00138{left:168.800000pt;}
.x101_c00138{left:169.733333pt;}
.x4_c00138{left:170.800000pt;}
.xb1_c00138{left:172.800000pt;}
.x11f_c00138{left:174.666667pt;}
.x67_c00138{left:177.333333pt;}
.x15_c00138{left:186.400000pt;}
.x5_c00138{left:188.400000pt;}
.x89_c00138{left:189.733333pt;}
.xb2_c00138{left:190.666667pt;}
.x134_c00138{left:192.000000pt;}
.xbd_c00138{left:193.200000pt;}
.xeb_c00138{left:195.866667pt;}
.x127_c00138{left:197.466667pt;}
.xa1_c00138{left:198.933333pt;}
.x42_c00138{left:200.400000pt;}
.x27_c00138{left:201.866667pt;}
.x8a_c00138{left:203.200000pt;}
.x71_c00138{left:206.400000pt;}
.x105_c00138{left:207.866667pt;}
.x13b_c00138{left:210.533333pt;}
.x6_c00138{left:212.666667pt;}
.xec_c00138{left:213.733333pt;}
.x7a_c00138{left:215.066667pt;}
.x137_c00138{left:217.066667pt;}
.x4f_c00138{left:219.066667pt;}
.x10a_c00138{left:220.000000pt;}
.xc5_c00138{left:221.733333pt;}
.x5a_c00138{left:224.400000pt;}
.xa2_c00138{left:225.866667pt;}
.x16_c00138{left:227.733333pt;}
.x7b_c00138{left:229.200000pt;}
.xef_c00138{left:231.066667pt;}
.x8b_c00138{left:233.600000pt;}
.x28_c00138{left:235.466667pt;}
.x122_c00138{left:237.866667pt;}
.xf6_c00138{left:239.333333pt;}
.x5b_c00138{left:242.000000pt;}
.x43_c00138{left:244.933333pt;}
.xbe_c00138{left:246.000000pt;}
.x17_c00138{left:248.266667pt;}
.x98_c00138{left:249.333333pt;}
.x37_c00138{left:251.866667pt;}
.x90_c00138{left:252.800000pt;}
.x123_c00138{left:255.200000pt;}
.xf7_c00138{left:256.933333pt;}
.x82_c00138{left:258.800000pt;}
.x72_c00138{left:260.800000pt;}
.x50_c00138{left:262.000000pt;}
.x44_c00138{left:263.200000pt;}
.x7_c00138{left:267.333333pt;}
.x29_c00138{left:268.800000pt;}
.x114_c00138{left:270.400000pt;}
.x18_c00138{left:274.133333pt;}
.x91_c00138{left:275.200000pt;}
.xd7_c00138{left:276.266667pt;}
.x12c_c00138{left:277.200000pt;}
.x99_c00138{left:278.133333pt;}
.xa3_c00138{left:279.333333pt;}
.x38_c00138{left:281.333333pt;}
.x68_c00138{left:282.933333pt;}
.xb3_c00138{left:284.133333pt;}
.x83_c00138{left:285.066667pt;}
.x11b_c00138{left:286.400000pt;}
.xbf_c00138{left:287.600000pt;}
.x45_c00138{left:289.733333pt;}
.xa9_c00138{left:292.266667pt;}
.x73_c00138{left:297.866667pt;}
.x39_c00138{left:299.866667pt;}
.xf0_c00138{left:301.066667pt;}
.x8_c00138{left:303.200000pt;}
.xc6_c00138{left:307.866667pt;}
.x9a_c00138{left:309.466667pt;}
.x69_c00138{left:311.066667pt;}
.x8c_c00138{left:312.666667pt;}
.x11c_c00138{left:313.600000pt;}
.xb4_c00138{left:315.866667pt;}
.x102_c00138{left:316.800000pt;}
.x12d_c00138{left:318.533333pt;}
.x9_c00138{left:319.466667pt;}
.x19_c00138{left:321.866667pt;}
.x74_c00138{left:322.800000pt;}
.x118_c00138{left:324.933333pt;}
.xd8_c00138{left:325.866667pt;}
.x5c_c00138{left:327.200000pt;}
.x2a_c00138{left:331.200000pt;}
.xaa_c00138{left:332.266667pt;}
.xb5_c00138{left:333.733333pt;}
.x135_c00138{left:335.066667pt;}
.xc0_c00138{left:336.266667pt;}
.xcd_c00138{left:337.733333pt;}
.x10b_c00138{left:339.066667pt;}
.xe7_c00138{left:341.866667pt;}
.xf8_c00138{left:343.333333pt;}
.x9b_c00138{left:344.666667pt;}
.x1a_c00138{left:347.466667pt;}
.xdf_c00138{left:348.933333pt;}
.x92_c00138{left:352.666667pt;}
.x115_c00138{left:353.866667pt;}
.x84_c00138{left:357.066667pt;}
.x51_c00138{left:358.533333pt;}
.x3a_c00138{left:360.400000pt;}
.xc1_c00138{left:361.600000pt;}
.x7c_c00138{left:364.000000pt;}
.x13c_c00138{left:365.466667pt;}
.x8d_c00138{left:366.400000pt;}
.x46_c00138{left:368.133333pt;}
.xa_c00138{left:369.066667pt;}
.x2b_c00138{left:371.466667pt;}
.x128_c00138{left:372.533333pt;}
.x124_c00138{left:374.266667pt;}
.xa4_c00138{left:375.600000pt;}
.x1b_c00138{left:377.866667pt;}
.xce_c00138{left:378.933333pt;}
.x10c_c00138{left:380.266667pt;}
.xab_c00138{left:381.200000pt;}
.xd9_c00138{left:382.800000pt;}
.xb_c00138{left:384.400000pt;}
.x9c_c00138{left:386.266667pt;}
.x12e_c00138{left:387.333333pt;}
.x5d_c00138{left:388.666667pt;}
.xc7_c00138{left:389.733333pt;}
.xb6_c00138{left:392.000000pt;}
.x116_c00138{left:394.133333pt;}
.x1c_c00138{left:395.733333pt;}
.x6a_c00138{left:397.200000pt;}
.xa5_c00138{left:398.266667pt;}
.x2_c00138{left:400.533333pt;}
.x47_c00138{left:401.733333pt;}
.xc2_c00138{left:406.400000pt;}
.x136_c00138{left:408.000000pt;}
.x2c_c00138{left:411.200000pt;}
.x52_c00138{left:412.266667pt;}
.x129_c00138{left:413.866667pt;}
.x3b_c00138{left:415.333333pt;}
.x93_c00138{left:418.533333pt;}
.xd3_c00138{left:420.000000pt;}
.xc8_c00138{left:421.466667pt;}
.x85_c00138{left:422.666667pt;}
.xe0_c00138{left:423.866667pt;}
.x75_c00138{left:426.133333pt;}
.x5e_c00138{left:427.066667pt;}
.xc_c00138{left:429.200000pt;}
.xf1_c00138{left:431.200000pt;}
.xda_c00138{left:432.666667pt;}
.x1d_c00138{left:434.800000pt;}
.x2d_c00138{left:435.866667pt;}
.xcf_c00138{left:437.066667pt;}
.xe1_c00138{left:439.200000pt;}
.x13d_c00138{left:440.133333pt;}
.x6b_c00138{left:442.666667pt;}
.x8e_c00138{left:444.800000pt;}
.xa6_c00138{left:447.866667pt;}
.x12f_c00138{left:449.733333pt;}
.x9d_c00138{left:455.466667pt;}
.x53_c00138{left:456.400000pt;}
.x10d_c00138{left:457.333333pt;}
.x117_c00138{left:458.800000pt;}
.xd0_c00138{left:459.733333pt;}
.x48_c00138{left:461.600000pt;}
.x7d_c00138{left:463.200000pt;}
.x5f_c00138{left:464.800000pt;}
.xd_c00138{left:466.266667pt;}
.x2e_c00138{left:467.600000pt;}
.x138_c00138{left:469.466667pt;}
.xb7_c00138{left:470.666667pt;}
.x120_c00138{left:471.600000pt;}
.x76_c00138{left:473.866667pt;}
.xfd_c00138{left:475.066667pt;}
.xe2_c00138{left:477.333333pt;}
.xdb_c00138{left:478.666667pt;}
.x60_c00138{left:480.133333pt;}
.x94_c00138{left:483.733333pt;}
.xe_c00138{left:485.733333pt;}
.xac_c00138{left:487.066667pt;}
.xc9_c00138{left:488.533333pt;}
.x49_c00138{left:491.333333pt;}
.xfe_c00138{left:492.666667pt;}
.x3c_c00138{left:494.666667pt;}
.x6c_c00138{left:496.133333pt;}
.x12a_c00138{left:497.333333pt;}
.x1e_c00138{left:499.066667pt;}
.xc3_c00138{left:501.066667pt;}
.xe3_c00138{left:502.000000pt;}
.xed_c00138{left:503.600000pt;}
.x7e_c00138{left:505.466667pt;}
.x2f_c00138{left:508.266667pt;}
.xf9_c00138{left:509.200000pt;}
.x61_c00138{left:512.400000pt;}
.xe8_c00138{left:514.266667pt;}
.xca_c00138{left:515.466667pt;}
.x4a_c00138{left:518.266667pt;}
.xad_c00138{left:519.333333pt;}
.xf_c00138{left:520.666667pt;}
.x106_c00138{left:521.733333pt;}
.xb8_c00138{left:522.800000pt;}
.x6d_c00138{left:524.666667pt;}
.x10e_c00138{left:527.333333pt;}
.xff_c00138{left:528.533333pt;}
.x7f_c00138{left:529.733333pt;}
.x62_c00138{left:530.933333pt;}
.x1f_c00138{left:532.666667pt;}
.x54_c00138{left:534.800000pt;}
.x30_c00138{left:535.733333pt;}
.x139_c00138{left:537.066667pt;}
.xe9_c00138{left:539.600000pt;}
.x6e_c00138{left:542.000000pt;}
.xf2_c00138{left:543.200000pt;}
.x9e_c00138{left:545.066667pt;}
.x130_c00138{left:547.333333pt;}
.x121_c00138{left:548.400000pt;}
.xba_c00138{left:549.733333pt;}
.x107_c00138{left:551.866667pt;}
.x80_c00138{left:552.800000pt;}
.x31_c00138{left:555.866667pt;}
.x86_c00138{left:558.533333pt;}
.xae_c00138{left:559.600000pt;}
.x3d_c00138{left:560.533333pt;}
.xa7_c00138{left:562.400000pt;}
.xcb_c00138{left:563.466667pt;}
.xfa_c00138{left:564.533333pt;}
.x63_c00138{left:565.866667pt;}
.xf3_c00138{left:566.933333pt;}
.x6f_c00138{left:568.266667pt;}
.x125_c00138{left:570.800000pt;}
.x20_c00138{left:572.000000pt;}
.x77_c00138{left:574.133333pt;}
.x131_c00138{left:575.466667pt;}
.x10_c00138{left:576.400000pt;}
.x103_c00138{left:578.533333pt;}
.x55_c00138{left:581.200000pt;}
.x100_c00138{left:583.600000pt;}
.xf4_c00138{left:584.800000pt;}
.x11d_c00138{left:586.000000pt;}
.x21_c00138{left:587.066667pt;}
.x132_c00138{left:588.533333pt;}
.x10f_c00138{left:590.133333pt;}
.x78_c00138{left:593.066667pt;}
.xe4_c00138{left:595.333333pt;}
.x22_c00138{left:596.933333pt;}
.x108_c00138{left:598.266667pt;}
.xfb_c00138{left:599.466667pt;}
.xd4_c00138{left:601.466667pt;}
.x13a_c00138{left:602.400000pt;}
.x64_c00138{left:604.933333pt;}
.x4b_c00138{left:607.200000pt;}
.x56_c00138{left:609.333333pt;}
.x11_c00138{left:610.666667pt;}
.x32_c00138{left:614.400000pt;}
.xfc_c00138{left:617.066667pt;}
.x95_c00138{left:618.133333pt;}
.x3e_c00138{left:619.733333pt;}
.xf5_c00138{left:620.933333pt;}
.x23_c00138{left:622.800000pt;}
.x110_c00138{left:625.466667pt;}
.xaf_c00138{left:628.133333pt;}
.x65_c00138{left:630.266667pt;}
.x87_c00138{left:631.600000pt;}
.xa8_c00138{left:633.333333pt;}
.x96_c00138{left:634.800000pt;}
.x33_c00138{left:637.066667pt;}
.x24_c00138{left:640.666667pt;}
.x119_c00138{left:643.866667pt;}
.x70_c00138{left:645.466667pt;}
.x4c_c00138{left:646.933333pt;}
.x104_c00138{left:648.000000pt;}
.x3f_c00138{left:652.666667pt;}
.xb0_c00138{left:654.400000pt;}
.x57_c00138{left:656.666667pt;}
.xdc_c00138{left:658.533333pt;}
.xbb_c00138{left:660.133333pt;}
.x8f_c00138{left:665.600000pt;}
.xe5_c00138{left:667.333333pt;}
.x88_c00138{left:668.666667pt;}
.x133_c00138{left:670.800000pt;}
.x25_c00138{left:671.733333pt;}
.x66_c00138{left:673.466667pt;}
.x111_c00138{left:674.800000pt;}
.x109_c00138{left:676.000000pt;}
.x34_c00138{left:678.400000pt;}
.x9f_c00138{left:679.600000pt;}
.xd5_c00138{left:682.400000pt;}
.x12_c00138{left:684.000000pt;}
.x40_c00138{left:685.600000pt;}
.x97_c00138{left:689.200000pt;}
.x4d_c00138{left:690.400000pt;}
.x11e_c00138{left:692.666667pt;}
.x35_c00138{left:694.133333pt;}
.xd1_c00138{left:695.600000pt;}
.x79_c00138{left:697.600000pt;}
.xdd_c00138{left:700.400000pt;}
.x112_c00138{left:704.933333pt;}
.x58_c00138{left:706.266667pt;}
.xa0_c00138{left:708.666667pt;}
.xd6_c00138{left:710.266667pt;}
.x13_c00138{left:711.466667pt;}
.xc4_c00138{left:715.466667pt;}
.x11a_c00138{left:717.466667pt;}
.xbc_c00138{left:718.666667pt;}
.xde_c00138{left:721.466667pt;}
}





/* 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_c00139 {
    display:none;
  }
  .loading-indicator_c00139.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00139 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_c00139 { 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_c00139" -> "#page-container .classname_c00139")
 */
.pf_c00139 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00139 { /* 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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00139 { /* 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_c00139 { /* 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_c00139 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00139 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00139 {overflow:visible;}
  }
}
.c_c00139 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00139 { /* 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_c00139:after { /* webkit #35443 */
  content: '';
}
.t_c00139:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00139 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 */
}
.__c00139 { /* 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_c00139 { /* info for Javascript */
  display:none;
}
.l_c00139 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00139 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00139 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00139: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_c00139 {
    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_c00139.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00139.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_c00139 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00139{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00139;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.000000;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;}
.mf_c00139{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m14_c00139{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1_c00139{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m0_c00139{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5_c00139{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m17_c00139{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6_c00139{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m9_c00139{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.me_c00139{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00139{transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432750,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{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__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-21.000000px;}
.ws1_c00139{word-spacing:0.000000px;}
._0_c00139{margin-left:-53.323232px;}
.fc0_c00139{color:transparent;}
.fs0_c00139{font-size:30.000000px;}
.fs1_c00139{font-size:42.000000px;}
.fs2_c00139{font-size:54.000000px;}
.y0_c00139{bottom:0.000000px;}
.y1_c00139{bottom:28.500000px;}
.y2_c00139{bottom:600.450000px;}
.y3_c00139{bottom:669.600000px;}
.y4_c00139{bottom:687.900000px;}
.y5_c00139{bottom:707.100000px;}
.y6_c00139{bottom:734.400000px;}
.h2_c00139{height:30.000000px;}
.h3_c00139{height:42.000000px;}
.h4_c00139{height:54.000000px;}
.h1_c00139{height:1167.750000px;}
.h0_c00139{height:1167.839997px;}
.w1_c00139{width:920.250000px;}
.w0_c00139{width:920.519990px;}
.x0_c00139{left:0.000000px;}
.x15_c00139{left:76.050000px;}
.xe_c00139{left:87.750000px;}
.x14_c00139{left:114.600000px;}
.xa_c00139{left:129.450000px;}
.x11_c00139{left:130.800000px;}
.x13_c00139{left:134.700000px;}
.x9_c00139{left:141.300000px;}
.x10_c00139{left:147.300000px;}
.x8_c00139{left:152.400000px;}
.x7_c00139{left:163.500000px;}
.xd_c00139{left:165.900000px;}
.x6_c00139{left:175.350000px;}
.x12_c00139{left:188.250000px;}
.xc_c00139{left:192.900000px;}
.xf_c00139{left:195.150000px;}
.x5_c00139{left:197.250000px;}
.xb_c00139{left:218.850000px;}
.x4_c00139{left:793.500000px;}
.x3_c00139{left:806.100000px;}
.x2_c00139{left:811.800000px;}
.x1_c00139{left:847.800000px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:-18.666667pt;}
.ws1_c00139{word-spacing:0.000000pt;}
._0_c00139{margin-left:-47.398429pt;}
.fs0_c00139{font-size:26.666667pt;}
.fs1_c00139{font-size:37.333333pt;}
.fs2_c00139{font-size:48.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y1_c00139{bottom:25.333333pt;}
.y2_c00139{bottom:533.733333pt;}
.y3_c00139{bottom:595.200000pt;}
.y4_c00139{bottom:611.466667pt;}
.y5_c00139{bottom:628.533333pt;}
.y6_c00139{bottom:652.800000pt;}
.h2_c00139{height:26.666667pt;}
.h3_c00139{height:37.333333pt;}
.h4_c00139{height:48.000000pt;}
.h1_c00139{height:1038.000000pt;}
.h0_c00139{height:1038.079997pt;}
.w1_c00139{width:818.000000pt;}
.w0_c00139{width:818.239991pt;}
.x0_c00139{left:0.000000pt;}
.x15_c00139{left:67.600000pt;}
.xe_c00139{left:78.000000pt;}
.x14_c00139{left:101.866667pt;}
.xa_c00139{left:115.066667pt;}
.x11_c00139{left:116.266667pt;}
.x13_c00139{left:119.733333pt;}
.x9_c00139{left:125.600000pt;}
.x10_c00139{left:130.933333pt;}
.x8_c00139{left:135.466667pt;}
.x7_c00139{left:145.333333pt;}
.xd_c00139{left:147.466667pt;}
.x6_c00139{left:155.866667pt;}
.x12_c00139{left:167.333333pt;}
.xc_c00139{left:171.466667pt;}
.xf_c00139{left:173.466667pt;}
.x5_c00139{left:175.333333pt;}
.xb_c00139{left:194.533333pt;}
.x4_c00139{left:705.333333pt;}
.x3_c00139{left:716.533333pt;}
.x2_c00139{left:721.600000pt;}
.x1_c00139{left:753.600000pt;}
}





/* 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_c00140 {
    display:none;
  }
  .loading-indicator_c00140.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00140 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_c00140 { 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_c00140" -> "#page-container .classname_c00140")
 */
.pf_c00140 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00140 { /* 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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00140 { /* 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_c00140 { /* 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_c00140 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00140 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00140 {overflow:visible;}
  }
}
.c_c00140 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00140 { /* 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_c00140:after { /* webkit #35443 */
  content: '';
}
.t_c00140:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00140 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 */
}
.__c00140 { /* 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_c00140 { /* info for Javascript */
  display:none;
}
.l_c00140 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00140 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00140 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00140: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_c00140 {
    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_c00140.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00140.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_c00140 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00140{font-family:sans-serif;visibility:hidden;}
.sc__c00140{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
}
.y0_c00140{bottom:0.000000px;}
.h1_c00140{height:1167.750000px;}
.h0_c00140{height:1167.839997px;}
.w1_c00140{width:920.250000px;}
.w0_c00140{width:920.519990px;}
.x0_c00140{left:0.000000px;}
@media print{
.y0_c00140{bottom:0.000000pt;}
.h1_c00140{height:1038.000000pt;}
.h0_c00140{height:1038.079997pt;}
.w1_c00140{width:818.000000pt;}
.w0_c00140{width:818.239991pt;}
.x0_c00140{left:0.000000pt;}
}





/* 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_c00141 {
    display:none;
  }
  .loading-indicator_c00141.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00141 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_c00141 { 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_c00141" -> "#page-container .classname_c00141")
 */
.pf_c00141 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00141 { /* 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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00141 { /* 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_c00141 { /* 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_c00141 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00141 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00141 {overflow:visible;}
  }
}
.c_c00141 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00141 { /* 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_c00141:after { /* webkit #35443 */
  content: '';
}
.t_c00141:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00141 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 */
}
.__c00141 { /* 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_c00141 { /* info for Javascript */
  display:none;
}
.l_c00141 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00141 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00141 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00141: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_c00141 {
    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_c00141.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00141.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_c00141 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00141{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00141;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.000000;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;}
.m5d_c00141{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m12_c00141{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m23_c00141{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m61_c00141{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00141{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m31_c00141{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m66_c00141{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m65_c00141{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m11_c00141{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m68_c00141{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m62_c00141{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m16_c00141{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me_c00141{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m29_c00141{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39_c00141{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2_c00141{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m40_c00141{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m36_c00141{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma_c00141{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m38_c00141{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00141{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m35_c00141{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00141{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m18_c00141{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m67_c00141{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3_c00141{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10_c00141{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m58_c00141{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00141{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);}
.m33_c00141{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00141{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m49_c00141{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m34_c00141{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m37_c00141{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mb_c00141{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00141{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00141{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00141{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00141{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m15_c00141{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00141{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m1_c00141{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c00141{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m53_c00141{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m25_c00141{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00141{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m27_c00141{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00141{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00141{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m64_c00141{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m60_c00141{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00141{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00141{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00141{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m22_c00141{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m48_c00141{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m69_c00141{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m56_c00141{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{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__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00141{word-spacing:0.000000px;}
.ws3_c00141{word-spacing:2.786317px;}
.ws1_c00141{word-spacing:7.500000px;}
.ws0_c00141{word-spacing:7.750000px;}
.ws2_c00141{word-spacing:14.381477px;}
.fc0_c00141{color:transparent;}
.fs1_c00141{font-size:42.000000px;}
.fs0_c00141{font-size:54.000000px;}
.y0_c00141{bottom:0.000000px;}
.y13_c00141{bottom:137.850000px;}
.y12_c00141{bottom:691.650000px;}
.y11_c00141{bottom:711.750000px;}
.y10_c00141{bottom:731.850000px;}
.yf_c00141{bottom:751.650000px;}
.ye_c00141{bottom:771.450000px;}
.yd_c00141{bottom:791.250000px;}
.yc_c00141{bottom:810.900000px;}
.yb_c00141{bottom:831.000000px;}
.ya_c00141{bottom:850.800000px;}
.y9_c00141{bottom:870.600000px;}
.y8_c00141{bottom:890.700000px;}
.y7_c00141{bottom:910.500000px;}
.y6_c00141{bottom:930.600000px;}
.y5_c00141{bottom:950.400000px;}
.y4_c00141{bottom:970.500000px;}
.y3_c00141{bottom:990.600000px;}
.y2_c00141{bottom:1010.100000px;}
.y1_c00141{bottom:1047.600000px;}
.h3_c00141{height:42.000000px;}
.h2_c00141{height:54.000000px;}
.h1_c00141{height:1167.750000px;}
.h0_c00141{height:1167.839997px;}
.w1_c00141{width:920.250000px;}
.w0_c00141{width:920.519990px;}
.x0_c00141{left:0.000000px;}
.x3_c00141{left:95.400000px;}
.x90_c00141{left:96.450000px;}
.x12_c00141{left:112.050000px;}
.x6e_c00141{left:117.300000px;}
.x24_c00141{left:120.600000px;}
.x43_c00141{left:124.200000px;}
.x62_c00141{left:126.000000px;}
.xad_c00141{left:128.850000px;}
.x4_c00141{left:132.900000px;}
.x13_c00141{left:137.550000px;}
.x6f_c00141{left:140.400000px;}
.x52_c00141{left:146.700000px;}
.x36_c00141{left:148.350000px;}
.x9d_c00141{left:152.400000px;}
.x44_c00141{left:156.600000px;}
.x5c_c00141{left:159.000000px;}
.x25_c00141{left:166.650000px;}
.x37_c00141{left:168.150000px;}
.x9e_c00141{left:171.900000px;}
.x53_c00141{left:175.800000px;}
.x5_c00141{left:180.450000px;}
.x26_c00141{left:183.600000px;}
.x70_c00141{left:185.400000px;}
.x14_c00141{left:189.750000px;}
.x7a_c00141{left:192.150000px;}
.x84_c00141{left:195.000000px;}
.x89_c00141{left:196.950000px;}
.x63_c00141{left:200.550000px;}
.xa6_c00141{left:203.400000px;}
.x15_c00141{left:204.900000px;}
.x5d_c00141{left:210.900000px;}
.x8a_c00141{left:215.250000px;}
.x64_c00141{left:221.400000px;}
.x27_c00141{left:222.450000px;}
.x6_c00141{left:225.150000px;}
.x85_c00141{left:237.150000px;}
.x38_c00141{left:238.350000px;}
.x45_c00141{left:243.000000px;}
.x28_c00141{left:244.800000px;}
.xa7_c00141{left:247.650000px;}
.x16_c00141{left:249.150000px;}
.x91_c00141{left:252.000000px;}
.x39_c00141{left:256.350000px;}
.x46_c00141{left:262.500000px;}
.x17_c00141{left:265.650000px;}
.x3a_c00141{left:274.650000px;}
.x96_c00141{left:277.500000px;}
.xae_c00141{left:278.550000px;}
.x29_c00141{left:281.850000px;}
.xa8_c00141{left:286.500000px;}
.x8b_c00141{left:292.350000px;}
.x7_c00141{left:293.550000px;}
.x47_c00141{left:294.600000px;}
.x86_c00141{left:297.300000px;}
.x18_c00141{left:300.600000px;}
.x9f_c00141{left:301.800000px;}
.x3b_c00141{left:308.550000px;}
.x71_c00141{left:311.850000px;}
.x54_c00141{left:313.050000px;}
.x2a_c00141{left:319.650000px;}
.x97_c00141{left:321.000000px;}
.x87_c00141{left:325.350000px;}
.x19_c00141{left:335.100000px;}
.x2b_c00141{left:339.150000px;}
.x72_c00141{left:340.650000px;}
.x98_c00141{left:346.950000px;}
.xa9_c00141{left:351.300000px;}
.x48_c00141{left:353.250000px;}
.x7b_c00141{left:355.650000px;}
.x5e_c00141{left:356.850000px;}
.x3c_c00141{left:362.550000px;}
.x2c_c00141{left:367.200000px;}
.x65_c00141{left:368.700000px;}
.x88_c00141{left:373.200000px;}
.x55_c00141{left:375.300000px;}
.x1a_c00141{left:378.600000px;}
.xaa_c00141{left:382.200000px;}
.x1_c00141{left:384.150000px;}
.x66_c00141{left:385.650000px;}
.xaf_c00141{left:390.600000px;}
.x8_c00141{left:395.400000px;}
.xa0_c00141{left:399.750000px;}
.x92_c00141{left:401.400000px;}
.x3d_c00141{left:402.900000px;}
.x1b_c00141{left:404.550000px;}
.x49_c00141{left:408.000000px;}
.x67_c00141{left:411.600000px;}
.x2d_c00141{left:426.600000px;}
.x9_c00141{left:432.450000px;}
.x73_c00141{left:433.500000px;}
.xb0_c00141{left:438.750000px;}
.x56_c00141{left:444.000000px;}
.x4a_c00141{left:445.050000px;}
.x7c_c00141{left:447.150000px;}
.x3e_c00141{left:451.800000px;}
.x1c_c00141{left:461.850000px;}
.xa1_c00141{left:463.050000px;}
.x2e_c00141{left:464.100000px;}
.x7d_c00141{left:468.750000px;}
.x93_c00141{left:472.650000px;}
.xa_c00141{left:475.950000px;}
.x3f_c00141{left:480.600000px;}
.xa2_c00141{left:485.400000px;}
.x4b_c00141{left:489.000000px;}
.x1d_c00141{left:493.500000px;}
.x68_c00141{left:495.150000px;}
.x7e_c00141{left:497.250000px;}
.x99_c00141{left:499.350000px;}
.x8c_c00141{left:505.050000px;}
.x74_c00141{left:512.250000px;}
.xb_c00141{left:514.500000px;}
.x1e_c00141{left:518.700000px;}
.xa3_c00141{left:523.200000px;}
.x4c_c00141{left:525.750000px;}
.x69_c00141{left:527.550000px;}
.x57_c00141{left:529.650000px;}
.xab_c00141{left:533.850000px;}
.x2f_c00141{left:535.050000px;}
.x4d_c00141{left:548.100000px;}
.x75_c00141{left:550.350000px;}
.x30_c00141{left:556.950000px;}
.x5f_c00141{left:558.150000px;}
.x1f_c00141{left:562.650000px;}
.xc_c00141{left:565.950000px;}
.x7f_c00141{left:571.650000px;}
.x76_c00141{left:577.650000px;}
.x4e_c00141{left:578.700000px;}
.x6a_c00141{left:580.800000px;}
.x20_c00141{left:582.450000px;}
.x8d_c00141{left:587.850000px;}
.x31_c00141{left:590.100000px;}
.xa4_c00141{left:593.400000px;}
.x9a_c00141{left:594.450000px;}
.x77_c00141{left:597.450000px;}
.x94_c00141{left:600.150000px;}
.x80_c00141{left:603.750000px;}
.x58_c00141{left:606.000000px;}
.xd_c00141{left:608.400000px;}
.x21_c00141{left:616.350000px;}
.x95_c00141{left:621.000000px;}
.x9b_c00141{left:622.200000px;}
.x8e_c00141{left:623.850000px;}
.xe_c00141{left:628.200000px;}
.x4f_c00141{left:630.900000px;}
.x32_c00141{left:632.250000px;}
.x40_c00141{left:636.450000px;}
.x60_c00141{left:638.400000px;}
.x81_c00141{left:644.850000px;}
.x59_c00141{left:649.950000px;}
.x6b_c00141{left:653.850000px;}
.xf_c00141{left:655.950000px;}
.x78_c00141{left:663.750000px;}
.x61_c00141{left:665.700000px;}
.x22_c00141{left:667.800000px;}
.x33_c00141{left:671.100000px;}
.x41_c00141{left:673.200000px;}
.x50_c00141{left:675.600000px;}
.x9c_c00141{left:687.450000px;}
.x34_c00141{left:689.850000px;}
.x42_c00141{left:690.900000px;}
.x6c_c00141{left:699.150000px;}
.x8f_c00141{left:705.150000px;}
.x79_c00141{left:706.200000px;}
.x10_c00141{left:710.250000px;}
.x5a_c00141{left:716.250000px;}
.x82_c00141{left:718.200000px;}
.x51_c00141{left:719.850000px;}
.xac_c00141{left:728.250000px;}
.x11_c00141{left:729.750000px;}
.x23_c00141{left:733.350000px;}
.x83_c00141{left:738.000000px;}
.x6d_c00141{left:739.500000px;}
.x2_c00141{left:744.450000px;}
.x5b_c00141{left:745.800000px;}
.xa5_c00141{left:748.500000px;}
.x35_c00141{left:753.900000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws4_c00141{word-spacing:0.000000pt;}
.ws3_c00141{word-spacing:2.476726pt;}
.ws1_c00141{word-spacing:6.666667pt;}
.ws0_c00141{word-spacing:6.888889pt;}
.ws2_c00141{word-spacing:12.783535pt;}
.fs1_c00141{font-size:37.333333pt;}
.fs0_c00141{font-size:48.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y13_c00141{bottom:122.533333pt;}
.y12_c00141{bottom:614.800000pt;}
.y11_c00141{bottom:632.666667pt;}
.y10_c00141{bottom:650.533333pt;}
.yf_c00141{bottom:668.133333pt;}
.ye_c00141{bottom:685.733333pt;}
.yd_c00141{bottom:703.333333pt;}
.yc_c00141{bottom:720.800000pt;}
.yb_c00141{bottom:738.666667pt;}
.ya_c00141{bottom:756.266667pt;}
.y9_c00141{bottom:773.866667pt;}
.y8_c00141{bottom:791.733333pt;}
.y7_c00141{bottom:809.333333pt;}
.y6_c00141{bottom:827.200000pt;}
.y5_c00141{bottom:844.800000pt;}
.y4_c00141{bottom:862.666667pt;}
.y3_c00141{bottom:880.533333pt;}
.y2_c00141{bottom:897.866667pt;}
.y1_c00141{bottom:931.200000pt;}
.h3_c00141{height:37.333333pt;}
.h2_c00141{height:48.000000pt;}
.h1_c00141{height:1038.000000pt;}
.h0_c00141{height:1038.079997pt;}
.w1_c00141{width:818.000000pt;}
.w0_c00141{width:818.239991pt;}
.x0_c00141{left:0.000000pt;}
.x3_c00141{left:84.800000pt;}
.x90_c00141{left:85.733333pt;}
.x12_c00141{left:99.600000pt;}
.x6e_c00141{left:104.266667pt;}
.x24_c00141{left:107.200000pt;}
.x43_c00141{left:110.400000pt;}
.x62_c00141{left:112.000000pt;}
.xad_c00141{left:114.533333pt;}
.x4_c00141{left:118.133333pt;}
.x13_c00141{left:122.266667pt;}
.x6f_c00141{left:124.800000pt;}
.x52_c00141{left:130.400000pt;}
.x36_c00141{left:131.866667pt;}
.x9d_c00141{left:135.466667pt;}
.x44_c00141{left:139.200000pt;}
.x5c_c00141{left:141.333333pt;}
.x25_c00141{left:148.133333pt;}
.x37_c00141{left:149.466667pt;}
.x9e_c00141{left:152.800000pt;}
.x53_c00141{left:156.266667pt;}
.x5_c00141{left:160.400000pt;}
.x26_c00141{left:163.200000pt;}
.x70_c00141{left:164.800000pt;}
.x14_c00141{left:168.666667pt;}
.x7a_c00141{left:170.800000pt;}
.x84_c00141{left:173.333333pt;}
.x89_c00141{left:175.066667pt;}
.x63_c00141{left:178.266667pt;}
.xa6_c00141{left:180.800000pt;}
.x15_c00141{left:182.133333pt;}
.x5d_c00141{left:187.466667pt;}
.x8a_c00141{left:191.333333pt;}
.x64_c00141{left:196.800000pt;}
.x27_c00141{left:197.733333pt;}
.x6_c00141{left:200.133333pt;}
.x85_c00141{left:210.800000pt;}
.x38_c00141{left:211.866667pt;}
.x45_c00141{left:216.000000pt;}
.x28_c00141{left:217.600000pt;}
.xa7_c00141{left:220.133333pt;}
.x16_c00141{left:221.466667pt;}
.x91_c00141{left:224.000000pt;}
.x39_c00141{left:227.866667pt;}
.x46_c00141{left:233.333333pt;}
.x17_c00141{left:236.133333pt;}
.x3a_c00141{left:244.133333pt;}
.x96_c00141{left:246.666667pt;}
.xae_c00141{left:247.600000pt;}
.x29_c00141{left:250.533333pt;}
.xa8_c00141{left:254.666667pt;}
.x8b_c00141{left:259.866667pt;}
.x7_c00141{left:260.933333pt;}
.x47_c00141{left:261.866667pt;}
.x86_c00141{left:264.266667pt;}
.x18_c00141{left:267.200000pt;}
.x9f_c00141{left:268.266667pt;}
.x3b_c00141{left:274.266667pt;}
.x71_c00141{left:277.200000pt;}
.x54_c00141{left:278.266667pt;}
.x2a_c00141{left:284.133333pt;}
.x97_c00141{left:285.333333pt;}
.x87_c00141{left:289.200000pt;}
.x19_c00141{left:297.866667pt;}
.x2b_c00141{left:301.466667pt;}
.x72_c00141{left:302.800000pt;}
.x98_c00141{left:308.400000pt;}
.xa9_c00141{left:312.266667pt;}
.x48_c00141{left:314.000000pt;}
.x7b_c00141{left:316.133333pt;}
.x5e_c00141{left:317.200000pt;}
.x3c_c00141{left:322.266667pt;}
.x2c_c00141{left:326.400000pt;}
.x65_c00141{left:327.733333pt;}
.x88_c00141{left:331.733333pt;}
.x55_c00141{left:333.600000pt;}
.x1a_c00141{left:336.533333pt;}
.xaa_c00141{left:339.733333pt;}
.x1_c00141{left:341.466667pt;}
.x66_c00141{left:342.800000pt;}
.xaf_c00141{left:347.200000pt;}
.x8_c00141{left:351.466667pt;}
.xa0_c00141{left:355.333333pt;}
.x92_c00141{left:356.800000pt;}
.x3d_c00141{left:358.133333pt;}
.x1b_c00141{left:359.600000pt;}
.x49_c00141{left:362.666667pt;}
.x67_c00141{left:365.866667pt;}
.x2d_c00141{left:379.200000pt;}
.x9_c00141{left:384.400000pt;}
.x73_c00141{left:385.333333pt;}
.xb0_c00141{left:390.000000pt;}
.x56_c00141{left:394.666667pt;}
.x4a_c00141{left:395.600000pt;}
.x7c_c00141{left:397.466667pt;}
.x3e_c00141{left:401.600000pt;}
.x1c_c00141{left:410.533333pt;}
.xa1_c00141{left:411.600000pt;}
.x2e_c00141{left:412.533333pt;}
.x7d_c00141{left:416.666667pt;}
.x93_c00141{left:420.133333pt;}
.xa_c00141{left:423.066667pt;}
.x3f_c00141{left:427.200000pt;}
.xa2_c00141{left:431.466667pt;}
.x4b_c00141{left:434.666667pt;}
.x1d_c00141{left:438.666667pt;}
.x68_c00141{left:440.133333pt;}
.x7e_c00141{left:442.000000pt;}
.x99_c00141{left:443.866667pt;}
.x8c_c00141{left:448.933333pt;}
.x74_c00141{left:455.333333pt;}
.xb_c00141{left:457.333333pt;}
.x1e_c00141{left:461.066667pt;}
.xa3_c00141{left:465.066667pt;}
.x4c_c00141{left:467.333333pt;}
.x69_c00141{left:468.933333pt;}
.x57_c00141{left:470.800000pt;}
.xab_c00141{left:474.533333pt;}
.x2f_c00141{left:475.600000pt;}
.x4d_c00141{left:487.200000pt;}
.x75_c00141{left:489.200000pt;}
.x30_c00141{left:495.066667pt;}
.x5f_c00141{left:496.133333pt;}
.x1f_c00141{left:500.133333pt;}
.xc_c00141{left:503.066667pt;}
.x7f_c00141{left:508.133333pt;}
.x76_c00141{left:513.466667pt;}
.x4e_c00141{left:514.400000pt;}
.x6a_c00141{left:516.266667pt;}
.x20_c00141{left:517.733333pt;}
.x8d_c00141{left:522.533333pt;}
.x31_c00141{left:524.533333pt;}
.xa4_c00141{left:527.466667pt;}
.x9a_c00141{left:528.400000pt;}
.x77_c00141{left:531.066667pt;}
.x94_c00141{left:533.466667pt;}
.x80_c00141{left:536.666667pt;}
.x58_c00141{left:538.666667pt;}
.xd_c00141{left:540.800000pt;}
.x21_c00141{left:547.866667pt;}
.x95_c00141{left:552.000000pt;}
.x9b_c00141{left:553.066667pt;}
.x8e_c00141{left:554.533333pt;}
.xe_c00141{left:558.400000pt;}
.x4f_c00141{left:560.800000pt;}
.x32_c00141{left:562.000000pt;}
.x40_c00141{left:565.733333pt;}
.x60_c00141{left:567.466667pt;}
.x81_c00141{left:573.200000pt;}
.x59_c00141{left:577.733333pt;}
.x6b_c00141{left:581.200000pt;}
.xf_c00141{left:583.066667pt;}
.x78_c00141{left:590.000000pt;}
.x61_c00141{left:591.733333pt;}
.x22_c00141{left:593.600000pt;}
.x33_c00141{left:596.533333pt;}
.x41_c00141{left:598.400000pt;}
.x50_c00141{left:600.533333pt;}
.x9c_c00141{left:611.066667pt;}
.x34_c00141{left:613.200000pt;}
.x42_c00141{left:614.133333pt;}
.x6c_c00141{left:621.466667pt;}
.x8f_c00141{left:626.800000pt;}
.x79_c00141{left:627.733333pt;}
.x10_c00141{left:631.333333pt;}
.x5a_c00141{left:636.666667pt;}
.x82_c00141{left:638.400000pt;}
.x51_c00141{left:639.866667pt;}
.xac_c00141{left:647.333333pt;}
.x11_c00141{left:648.666667pt;}
.x23_c00141{left:651.866667pt;}
.x83_c00141{left:656.000000pt;}
.x6d_c00141{left:657.333333pt;}
.x2_c00141{left:661.733333pt;}
.x5b_c00141{left:662.933333pt;}
.xa5_c00141{left:665.333333pt;}
.x35_c00141{left:670.133333pt;}
}





/* 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_c00142 {
    display:none;
  }
  .loading-indicator_c00142.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00142 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_c00142 { 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_c00142" -> "#page-container .classname_c00142")
 */
.pf_c00142 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00142 { /* 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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00142 { /* 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_c00142 { /* 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_c00142 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00142 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00142 {overflow:visible;}
  }
}
.c_c00142 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00142 { /* 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_c00142:after { /* webkit #35443 */
  content: '';
}
.t_c00142:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00142 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 */
}
.__c00142 { /* 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_c00142 { /* info for Javascript */
  display:none;
}
.l_c00142 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00142 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00142 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00142: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_c00142 {
    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_c00142.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00142.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_c00142 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00142{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00142;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.000000;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;}
.m4d_c00142{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m64_c00142{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m51_c00142{transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);}
.m58_c00142{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m59_c00142{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00142{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00142{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m55_c00142{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m63_c00142{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00142{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m70_c00142{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m96_c00142{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m93_c00142{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m97_c00142{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m94_c00142{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00142{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00142{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m62_c00142{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m98_c00142{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m61_c00142{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00142{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00142{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m99_c00142{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m68_c00142{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00142{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m92_c00142{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m69_c00142{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m50_c00142{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m95_c00142{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00142{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00142{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m48_c00142{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m56_c00142{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11_c00142{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m54_c00142{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m53_c00142{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00142{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00142{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00142{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00142{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me_c00142{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m75_c00142{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m73_c00142{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00142{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00142{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m89_c00142{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m37_c00142{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m66_c00142{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00142{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m84_c00142{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m74_c00142{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mb_c00142{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m52_c00142{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m65_c00142{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00142{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00142{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.md_c00142{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00142{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m34_c00142{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m82_c00142{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00142{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9_c00142{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00142{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00142{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00142{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00142{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m25_c00142{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m22_c00142{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);}
.m2e_c00142{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00142{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00142{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m30_c00142{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m13_c00142{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m72_c00142{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m21_c00142{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m86_c00142{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00142{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m76_c00142{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m33_c00142{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00142{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00142{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00142{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m80_c00142{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00142{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m44_c00142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00142{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m71_c00142{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m78_c00142{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m60_c00142{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00142{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m90_c00142{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m77_c00142{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00142{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m83_c00142{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00142{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m85_c00142{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m87_c00142{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m81_c00142{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m0_c00142{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00142{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00142{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c00142{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m91_c00142{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00142{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m88_c00142{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m6_c00142{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m79_c00142{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m7_c00142{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00142{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00142{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:1.200000px;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{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__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00142{word-spacing:-5.532083px;}
.ws5_c00142{word-spacing:0.000000px;}
.ws0_c00142{word-spacing:1.082474px;}
.ws4_c00142{word-spacing:2.720569px;}
.ws1_c00142{word-spacing:12.840491px;}
.ws2_c00142{word-spacing:1665.000468px;}
._0_c00142{width:31.715395px;}
.fc0_c00142{color:transparent;}
.fs4_c00142{font-size:30.000000px;}
.fs1_c00142{font-size:42.000000px;}
.fs0_c00142{font-size:54.000000px;}
.fs3_c00142{font-size:60.000000px;}
.fs2_c00142{font-size:126.000000px;}
.y0_c00142{bottom:0.000000px;}
.y34_c00142{bottom:153.000000px;}
.y35_c00142{bottom:168.450000px;}
.y33_c00142{bottom:168.900000px;}
.y32_c00142{bottom:209.550000px;}
.y31_c00142{bottom:229.350000px;}
.y30_c00142{bottom:249.450000px;}
.y2f_c00142{bottom:269.250000px;}
.y2e_c00142{bottom:288.900000px;}
.y2d_c00142{bottom:308.700000px;}
.y2c_c00142{bottom:328.800000px;}
.y2b_c00142{bottom:348.900000px;}
.y2a_c00142{bottom:368.700000px;}
.y29_c00142{bottom:388.500000px;}
.y28_c00142{bottom:408.300000px;}
.y27_c00142{bottom:440.250000px;}
.y26_c00142{bottom:440.700000px;}
.y25_c00142{bottom:455.700000px;}
.y24_c00142{bottom:456.450000px;}
.y22_c00142{bottom:469.050000px;}
.y21_c00142{bottom:471.300000px;}
.y20_c00142{bottom:471.900000px;}
.y23_c00142{bottom:472.350000px;}
.y1d_c00142{bottom:484.950000px;}
.y1e_c00142{bottom:487.050000px;}
.y1f_c00142{bottom:488.100000px;}
.y1b_c00142{bottom:502.200000px;}
.y1a_c00142{bottom:503.250000px;}
.y1c_c00142{bottom:503.700000px;}
.y18_c00142{bottom:518.400000px;}
.y17_c00142{bottom:518.700000px;}
.y19_c00142{bottom:519.450000px;}
.y15_c00142{bottom:519.600000px;}
.y16_c00142{bottom:534.600000px;}
.y13_c00142{bottom:536.100000px;}
.y14_c00142{bottom:539.700000px;}
.yf_c00142{bottom:548.700000px;}
.y11_c00142{bottom:549.300000px;}
.y12_c00142{bottom:550.050000px;}
.ye_c00142{bottom:565.200000px;}
.y10_c00142{bottom:565.500000px;}
.yd_c00142{bottom:576.750000px;}
.yc_c00142{bottom:606.000000px;}
.yb_c00142{bottom:625.800000px;}
.ya_c00142{bottom:645.900000px;}
.y9_c00142{bottom:665.700000px;}
.y8_c00142{bottom:685.800000px;}
.y7_c00142{bottom:705.600000px;}
.y6_c00142{bottom:725.400000px;}
.y5_c00142{bottom:744.900000px;}
.y4_c00142{bottom:764.700000px;}
.y3_c00142{bottom:798.150000px;}
.y2_c00142{bottom:831.300000px;}
.y1_c00142{bottom:1046.100000px;}
.h7_c00142{height:30.000000px;}
.h3_c00142{height:42.000000px;}
.h4_c00142{height:43.200000px;}
.h2_c00142{height:54.000000px;}
.h6_c00142{height:60.000000px;}
.h5_c00142{height:126.000000px;}
.h1_c00142{height:1167.750000px;}
.h0_c00142{height:1167.839997px;}
.w1_c00142{width:920.250000px;}
.w0_c00142{width:920.519990px;}
.x0_c00142{left:0.000000px;}
.xb4_c00142{left:154.050000px;}
.x95_c00142{left:155.100000px;}
.x8_c00142{left:156.900000px;}
.xbe_c00142{left:171.900000px;}
.xd0_c00142{left:174.300000px;}
.x9d_c00142{left:176.100000px;}
.x51_c00142{left:177.150000px;}
.x96_c00142{left:181.050000px;}
.x17_c00142{left:186.300000px;}
.xd1_c00142{left:187.650000px;}
.x25_c00142{left:189.000000px;}
.x9_c00142{left:195.000000px;}
.x90_c00142{left:203.550000px;}
.x52_c00142{left:212.100000px;}
.x6d_c00142{left:213.750000px;}
.xb7_c00142{left:216.000000px;}
.x26_c00142{left:220.350000px;}
.x18_c00142{left:222.300000px;}
.x30_c00142{left:224.550000px;}
.x39_c00142{left:227.400000px;}
.x91_c00142{left:228.750000px;}
.x76_c00142{left:230.100000px;}
.x81_c00142{left:232.500000px;}
.x60_c00142{left:233.550000px;}
.xb5_c00142{left:234.750000px;}
.xd2_c00142{left:237.000000px;}
.x19_c00142{left:239.550000px;}
.x86_c00142{left:242.250000px;}
.xa5_c00142{left:245.700000px;}
.x83_c00142{left:249.450000px;}
.x46_c00142{left:250.950000px;}
.x9e_c00142{left:252.750000px;}
.xa_c00142{left:255.900000px;}
.x31_c00142{left:258.450000px;}
.x61_c00142{left:260.550000px;}
.x1a_c00142{left:265.050000px;}
.x53_c00142{left:267.150000px;}
.xbf_c00142{left:274.500000px;}
.xd3_c00142{left:275.550000px;}
.xc2_c00142{left:277.200000px;}
.x47_c00142{left:278.250000px;}
.x62_c00142{left:281.100000px;}
.xc6_c00142{left:282.150000px;}
.x3a_c00142{left:283.950000px;}
.xb8_c00142{left:285.150000px;}
.x32_c00142{left:288.300000px;}
.xb_c00142{left:289.350000px;}
.x97_c00142{left:295.200000px;}
.x1b_c00142{left:297.150000px;}
.xae_c00142{left:301.950000px;}
.x9f_c00142{left:304.200000px;}
.xb9_c00142{left:305.250000px;}
.x63_c00142{left:307.350000px;}
.x3b_c00142{left:316.050000px;}
.x98_c00142{left:320.400000px;}
.xc7_c00142{left:324.600000px;}
.xa0_c00142{left:325.800000px;}
.xa6_c00142{left:328.800000px;}
.xb6_c00142{left:332.700000px;}
.x48_c00142{left:336.600000px;}
.x75_c00142{left:338.100000px;}
.x33_c00142{left:341.550000px;}
.x3c_c00142{left:344.100000px;}
.x54_c00142{left:348.150000px;}
.x7a_c00142{left:349.500000px;}
.xd5_c00142{left:351.900000px;}
.x27_c00142{left:355.650000px;}
.x7b_c00142{left:356.700000px;}
.x1c_c00142{left:358.050000px;}
.x99_c00142{left:361.800000px;}
.x7c_c00142{left:362.850000px;}
.xa7_c00142{left:364.500000px;}
.xc_c00142{left:368.250000px;}
.x4_c00142{left:372.300000px;}
.x1d_c00142{left:378.600000px;}
.x6e_c00142{left:381.150000px;}
.x7d_c00142{left:383.700000px;}
.xba_c00142{left:386.550000px;}
.x28_c00142{left:388.050000px;}
.x64_c00142{left:391.200000px;}
.xd4_c00142{left:393.300000px;}
.x49_c00142{left:397.500000px;}
.x55_c00142{left:403.200000px;}
.x3d_c00142{left:411.750000px;}
.x7e_c00142{left:414.000000px;}
.xd_c00142{left:415.800000px;}
.x4a_c00142{left:417.600000px;}
.xc8_c00142{left:420.450000px;}
.x87_c00142{left:421.950000px;}
.xa8_c00142{left:426.750000px;}
.x1e_c00142{left:428.700000px;}
.xaf_c00142{left:430.050000px;}
.x92_c00142{left:433.050000px;}
.xe_c00142{left:438.150000px;}
.x56_c00142{left:439.950000px;}
.x2_c00142{left:441.300000px;}
.x4b_c00142{left:445.350000px;}
.xc3_c00142{left:450.600000px;}
.x5_c00142{left:456.900000px;}
.x88_c00142{left:459.450000px;}
.x3e_c00142{left:461.100000px;}
.x65_c00142{left:463.200000px;}
.x29_c00142{left:465.450000px;}
.x1f_c00142{left:466.500000px;}
.x34_c00142{left:472.950000px;}
.x6f_c00142{left:475.800000px;}
.x1_c00142{left:484.200000px;}
.x66_c00142{left:486.300000px;}
.xa9_c00142{left:490.800000px;}
.xf_c00142{left:492.450000px;}
.xc0_c00142{left:495.600000px;}
.x89_c00142{left:501.600000px;}
.x6_c00142{left:502.950000px;}
.xc9_c00142{left:504.000000px;}
.x57_c00142{left:510.150000px;}
.x10_c00142{left:511.200000px;}
.x4c_c00142{left:515.250000px;}
.xd6_c00142{left:516.600000px;}
.xa1_c00142{left:519.750000px;}
.x8a_c00142{left:522.150000px;}
.x7_c00142{left:523.500000px;}
.x3_c00142{left:525.900000px;}
.xbb_c00142{left:529.500000px;}
.x3f_c00142{left:533.850000px;}
.x4d_c00142{left:535.350000px;}
.xb0_c00142{left:538.800000px;}
.x70_c00142{left:542.100000px;}
.xca_c00142{left:547.200000px;}
.x2a_c00142{left:550.350000px;}
.x8b_c00142{left:552.000000px;}
.x35_c00142{left:557.250000px;}
.xa2_c00142{left:559.650000px;}
.xc4_c00142{left:561.000000px;}
.x58_c00142{left:564.600000px;}
.x67_c00142{left:565.800000px;}
.xbc_c00142{left:567.300000px;}
.x9a_c00142{left:568.800000px;}
.x71_c00142{left:570.600000px;}
.x11_c00142{left:573.150000px;}
.x40_c00142{left:574.950000px;}
.x79_c00142{left:576.000000px;}
.xc1_c00142{left:577.350000px;}
.x2b_c00142{left:582.000000px;}
.x59_c00142{left:584.400000px;}
.x84_c00142{left:588.300000px;}
.x68_c00142{left:589.950000px;}
.x72_c00142{left:591.450000px;}
.x12_c00142{left:594.750000px;}
.x9b_c00142{left:601.200000px;}
.x20_c00142{left:606.000000px;}
.x5a_c00142{left:608.550000px;}
.xcb_c00142{left:613.050000px;}
.x4e_c00142{left:616.350000px;}
.xa3_c00142{left:618.000000px;}
.xb1_c00142{left:620.250000px;}
.x69_c00142{left:621.600000px;}
.x13_c00142{left:624.600000px;}
.x93_c00142{left:626.700000px;}
.x41_c00142{left:628.200000px;}
.x8c_c00142{left:629.400000px;}
.xaa_c00142{left:631.950000px;}
.x73_c00142{left:634.350000px;}
.x74_c00142{left:639.000000px;}
.xbd_c00142{left:644.700000px;}
.x2c_c00142{left:645.750000px;}
.x42_c00142{left:648.300000px;}
.x36_c00142{left:649.350000px;}
.x94_c00142{left:652.200000px;}
.x5b_c00142{left:654.300000px;}
.x21_c00142{left:658.950000px;}
.xab_c00142{left:662.550000px;}
.xd7_c00142{left:667.200000px;}
.x6a_c00142{left:670.200000px;}
.x5c_c00142{left:675.600000px;}
.xcc_c00142{left:678.150000px;}
.xd8_c00142{left:681.600000px;}
.x14_c00142{left:682.950000px;}
.x22_c00142{left:687.000000px;}
.x77_c00142{left:690.150000px;}
.x80_c00142{left:698.400000px;}
.x7f_c00142{left:700.200000px;}
.x5d_c00142{left:701.850000px;}
.x4f_c00142{left:703.800000px;}
.x78_c00142{left:705.300000px;}
.xac_c00142{left:707.850000px;}
.xc5_c00142{left:710.100000px;}
.x2d_c00142{left:712.650000px;}
.x43_c00142{left:713.850000px;}
.x15_c00142{left:715.050000px;}
.xcd_c00142{left:718.800000px;}
.x6b_c00142{left:720.300000px;}
.x23_c00142{left:728.700000px;}
.x8d_c00142{left:732.750000px;}
.x9c_c00142{left:739.950000px;}
.x85_c00142{left:741.600000px;}
.x24_c00142{left:748.500000px;}
.xce_c00142{left:749.700000px;}
.x2e_c00142{left:753.750000px;}
.x44_c00142{left:757.050000px;}
.x50_c00142{left:761.100000px;}
.x82_c00142{left:762.150000px;}
.x8e_c00142{left:765.150000px;}
.x16_c00142{left:768.000000px;}
.xad_c00142{left:769.800000px;}
.x2f_c00142{left:775.650000px;}
.xa4_c00142{left:777.450000px;}
.x37_c00142{left:781.800000px;}
.x5e_c00142{left:783.600000px;}
.x45_c00142{left:787.650000px;}
.x8f_c00142{left:790.050000px;}
.xb2_c00142{left:793.350000px;}
.x38_c00142{left:795.450000px;}
.x6c_c00142{left:800.250000px;}
.x5f_c00142{left:803.700000px;}
.xcf_c00142{left:807.750000px;}
.xb3_c00142{left:814.950000px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:1.066667pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws3_c00142{word-spacing:-4.917407pt;}
.ws5_c00142{word-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.962199pt;}
.ws4_c00142{word-spacing:2.418284pt;}
.ws1_c00142{word-spacing:11.413770pt;}
.ws2_c00142{word-spacing:1480.000416pt;}
._0_c00142{width:28.191462pt;}
.fs4_c00142{font-size:26.666667pt;}
.fs1_c00142{font-size:37.333333pt;}
.fs0_c00142{font-size:48.000000pt;}
.fs3_c00142{font-size:53.333333pt;}
.fs2_c00142{font-size:112.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y34_c00142{bottom:136.000000pt;}
.y35_c00142{bottom:149.733333pt;}
.y33_c00142{bottom:150.133333pt;}
.y32_c00142{bottom:186.266667pt;}
.y31_c00142{bottom:203.866667pt;}
.y30_c00142{bottom:221.733333pt;}
.y2f_c00142{bottom:239.333333pt;}
.y2e_c00142{bottom:256.800000pt;}
.y2d_c00142{bottom:274.400000pt;}
.y2c_c00142{bottom:292.266667pt;}
.y2b_c00142{bottom:310.133333pt;}
.y2a_c00142{bottom:327.733333pt;}
.y29_c00142{bottom:345.333333pt;}
.y28_c00142{bottom:362.933333pt;}
.y27_c00142{bottom:391.333333pt;}
.y26_c00142{bottom:391.733333pt;}
.y25_c00142{bottom:405.066667pt;}
.y24_c00142{bottom:405.733333pt;}
.y22_c00142{bottom:416.933333pt;}
.y21_c00142{bottom:418.933333pt;}
.y20_c00142{bottom:419.466667pt;}
.y23_c00142{bottom:419.866667pt;}
.y1d_c00142{bottom:431.066667pt;}
.y1e_c00142{bottom:432.933333pt;}
.y1f_c00142{bottom:433.866667pt;}
.y1b_c00142{bottom:446.400000pt;}
.y1a_c00142{bottom:447.333333pt;}
.y1c_c00142{bottom:447.733333pt;}
.y18_c00142{bottom:460.800000pt;}
.y17_c00142{bottom:461.066667pt;}
.y19_c00142{bottom:461.733333pt;}
.y15_c00142{bottom:461.866667pt;}
.y16_c00142{bottom:475.200000pt;}
.y13_c00142{bottom:476.533333pt;}
.y14_c00142{bottom:479.733333pt;}
.yf_c00142{bottom:487.733333pt;}
.y11_c00142{bottom:488.266667pt;}
.y12_c00142{bottom:488.933333pt;}
.ye_c00142{bottom:502.400000pt;}
.y10_c00142{bottom:502.666667pt;}
.yd_c00142{bottom:512.666667pt;}
.yc_c00142{bottom:538.666667pt;}
.yb_c00142{bottom:556.266667pt;}
.ya_c00142{bottom:574.133333pt;}
.y9_c00142{bottom:591.733333pt;}
.y8_c00142{bottom:609.600000pt;}
.y7_c00142{bottom:627.200000pt;}
.y6_c00142{bottom:644.800000pt;}
.y5_c00142{bottom:662.133333pt;}
.y4_c00142{bottom:679.733333pt;}
.y3_c00142{bottom:709.466667pt;}
.y2_c00142{bottom:738.933333pt;}
.y1_c00142{bottom:929.866667pt;}
.h7_c00142{height:26.666667pt;}
.h3_c00142{height:37.333333pt;}
.h4_c00142{height:38.400000pt;}
.h2_c00142{height:48.000000pt;}
.h6_c00142{height:53.333333pt;}
.h5_c00142{height:112.000000pt;}
.h1_c00142{height:1038.000000pt;}
.h0_c00142{height:1038.079997pt;}
.w1_c00142{width:818.000000pt;}
.w0_c00142{width:818.239991pt;}
.x0_c00142{left:0.000000pt;}
.xb4_c00142{left:136.933333pt;}
.x95_c00142{left:137.866667pt;}
.x8_c00142{left:139.466667pt;}
.xbe_c00142{left:152.800000pt;}
.xd0_c00142{left:154.933333pt;}
.x9d_c00142{left:156.533333pt;}
.x51_c00142{left:157.466667pt;}
.x96_c00142{left:160.933333pt;}
.x17_c00142{left:165.600000pt;}
.xd1_c00142{left:166.800000pt;}
.x25_c00142{left:168.000000pt;}
.x9_c00142{left:173.333333pt;}
.x90_c00142{left:180.933333pt;}
.x52_c00142{left:188.533333pt;}
.x6d_c00142{left:190.000000pt;}
.xb7_c00142{left:192.000000pt;}
.x26_c00142{left:195.866667pt;}
.x18_c00142{left:197.600000pt;}
.x30_c00142{left:199.600000pt;}
.x39_c00142{left:202.133333pt;}
.x91_c00142{left:203.333333pt;}
.x76_c00142{left:204.533333pt;}
.x81_c00142{left:206.666667pt;}
.x60_c00142{left:207.600000pt;}
.xb5_c00142{left:208.666667pt;}
.xd2_c00142{left:210.666667pt;}
.x19_c00142{left:212.933333pt;}
.x86_c00142{left:215.333333pt;}
.xa5_c00142{left:218.400000pt;}
.x83_c00142{left:221.733333pt;}
.x46_c00142{left:223.066667pt;}
.x9e_c00142{left:224.666667pt;}
.xa_c00142{left:227.466667pt;}
.x31_c00142{left:229.733333pt;}
.x61_c00142{left:231.600000pt;}
.x1a_c00142{left:235.600000pt;}
.x53_c00142{left:237.466667pt;}
.xbf_c00142{left:244.000000pt;}
.xd3_c00142{left:244.933333pt;}
.xc2_c00142{left:246.400000pt;}
.x47_c00142{left:247.333333pt;}
.x62_c00142{left:249.866667pt;}
.xc6_c00142{left:250.800000pt;}
.x3a_c00142{left:252.400000pt;}
.xb8_c00142{left:253.466667pt;}
.x32_c00142{left:256.266667pt;}
.xb_c00142{left:257.200000pt;}
.x97_c00142{left:262.400000pt;}
.x1b_c00142{left:264.133333pt;}
.xae_c00142{left:268.400000pt;}
.x9f_c00142{left:270.400000pt;}
.xb9_c00142{left:271.333333pt;}
.x63_c00142{left:273.200000pt;}
.x3b_c00142{left:280.933333pt;}
.x98_c00142{left:284.800000pt;}
.xc7_c00142{left:288.533333pt;}
.xa0_c00142{left:289.600000pt;}
.xa6_c00142{left:292.266667pt;}
.xb6_c00142{left:295.733333pt;}
.x48_c00142{left:299.200000pt;}
.x75_c00142{left:300.533333pt;}
.x33_c00142{left:303.600000pt;}
.x3c_c00142{left:305.866667pt;}
.x54_c00142{left:309.466667pt;}
.x7a_c00142{left:310.666667pt;}
.xd5_c00142{left:312.800000pt;}
.x27_c00142{left:316.133333pt;}
.x7b_c00142{left:317.066667pt;}
.x1c_c00142{left:318.266667pt;}
.x99_c00142{left:321.600000pt;}
.x7c_c00142{left:322.533333pt;}
.xa7_c00142{left:324.000000pt;}
.xc_c00142{left:327.333333pt;}
.x4_c00142{left:330.933333pt;}
.x1d_c00142{left:336.533333pt;}
.x6e_c00142{left:338.800000pt;}
.x7d_c00142{left:341.066667pt;}
.xba_c00142{left:343.600000pt;}
.x28_c00142{left:344.933333pt;}
.x64_c00142{left:347.733333pt;}
.xd4_c00142{left:349.600000pt;}
.x49_c00142{left:353.333333pt;}
.x55_c00142{left:358.400000pt;}
.x3d_c00142{left:366.000000pt;}
.x7e_c00142{left:368.000000pt;}
.xd_c00142{left:369.600000pt;}
.x4a_c00142{left:371.200000pt;}
.xc8_c00142{left:373.733333pt;}
.x87_c00142{left:375.066667pt;}
.xa8_c00142{left:379.333333pt;}
.x1e_c00142{left:381.066667pt;}
.xaf_c00142{left:382.266667pt;}
.x92_c00142{left:384.933333pt;}
.xe_c00142{left:389.466667pt;}
.x56_c00142{left:391.066667pt;}
.x2_c00142{left:392.266667pt;}
.x4b_c00142{left:395.866667pt;}
.xc3_c00142{left:400.533333pt;}
.x5_c00142{left:406.133333pt;}
.x88_c00142{left:408.400000pt;}
.x3e_c00142{left:409.866667pt;}
.x65_c00142{left:411.733333pt;}
.x29_c00142{left:413.733333pt;}
.x1f_c00142{left:414.666667pt;}
.x34_c00142{left:420.400000pt;}
.x6f_c00142{left:422.933333pt;}
.x1_c00142{left:430.400000pt;}
.x66_c00142{left:432.266667pt;}
.xa9_c00142{left:436.266667pt;}
.xf_c00142{left:437.733333pt;}
.xc0_c00142{left:440.533333pt;}
.x89_c00142{left:445.866667pt;}
.x6_c00142{left:447.066667pt;}
.xc9_c00142{left:448.000000pt;}
.x57_c00142{left:453.466667pt;}
.x10_c00142{left:454.400000pt;}
.x4c_c00142{left:458.000000pt;}
.xd6_c00142{left:459.200000pt;}
.xa1_c00142{left:462.000000pt;}
.x8a_c00142{left:464.133333pt;}
.x7_c00142{left:465.333333pt;}
.x3_c00142{left:467.466667pt;}
.xbb_c00142{left:470.666667pt;}
.x3f_c00142{left:474.533333pt;}
.x4d_c00142{left:475.866667pt;}
.xb0_c00142{left:478.933333pt;}
.x70_c00142{left:481.866667pt;}
.xca_c00142{left:486.400000pt;}
.x2a_c00142{left:489.200000pt;}
.x8b_c00142{left:490.666667pt;}
.x35_c00142{left:495.333333pt;}
.xa2_c00142{left:497.466667pt;}
.xc4_c00142{left:498.666667pt;}
.x58_c00142{left:501.866667pt;}
.x67_c00142{left:502.933333pt;}
.xbc_c00142{left:504.266667pt;}
.x9a_c00142{left:505.600000pt;}
.x71_c00142{left:507.200000pt;}
.x11_c00142{left:509.466667pt;}
.x40_c00142{left:511.066667pt;}
.x79_c00142{left:512.000000pt;}
.xc1_c00142{left:513.200000pt;}
.x2b_c00142{left:517.333333pt;}
.x59_c00142{left:519.466667pt;}
.x84_c00142{left:522.933333pt;}
.x68_c00142{left:524.400000pt;}
.x72_c00142{left:525.733333pt;}
.x12_c00142{left:528.666667pt;}
.x9b_c00142{left:534.400000pt;}
.x20_c00142{left:538.666667pt;}
.x5a_c00142{left:540.933333pt;}
.xcb_c00142{left:544.933333pt;}
.x4e_c00142{left:547.866667pt;}
.xa3_c00142{left:549.333333pt;}
.xb1_c00142{left:551.333333pt;}
.x69_c00142{left:552.533333pt;}
.x13_c00142{left:555.200000pt;}
.x93_c00142{left:557.066667pt;}
.x41_c00142{left:558.400000pt;}
.x8c_c00142{left:559.466667pt;}
.xaa_c00142{left:561.733333pt;}
.x73_c00142{left:563.866667pt;}
.x74_c00142{left:568.000000pt;}
.xbd_c00142{left:573.066667pt;}
.x2c_c00142{left:574.000000pt;}
.x42_c00142{left:576.266667pt;}
.x36_c00142{left:577.200000pt;}
.x94_c00142{left:579.733333pt;}
.x5b_c00142{left:581.600000pt;}
.x21_c00142{left:585.733333pt;}
.xab_c00142{left:588.933333pt;}
.xd7_c00142{left:593.066667pt;}
.x6a_c00142{left:595.733333pt;}
.x5c_c00142{left:600.533333pt;}
.xcc_c00142{left:602.800000pt;}
.xd8_c00142{left:605.866667pt;}
.x14_c00142{left:607.066667pt;}
.x22_c00142{left:610.666667pt;}
.x77_c00142{left:613.466667pt;}
.x80_c00142{left:620.800000pt;}
.x7f_c00142{left:622.400000pt;}
.x5d_c00142{left:623.866667pt;}
.x4f_c00142{left:625.600000pt;}
.x78_c00142{left:626.933333pt;}
.xac_c00142{left:629.200000pt;}
.xc5_c00142{left:631.200000pt;}
.x2d_c00142{left:633.466667pt;}
.x43_c00142{left:634.533333pt;}
.x15_c00142{left:635.600000pt;}
.xcd_c00142{left:638.933333pt;}
.x6b_c00142{left:640.266667pt;}
.x23_c00142{left:647.733333pt;}
.x8d_c00142{left:651.333333pt;}
.x9c_c00142{left:657.733333pt;}
.x85_c00142{left:659.200000pt;}
.x24_c00142{left:665.333333pt;}
.xce_c00142{left:666.400000pt;}
.x2e_c00142{left:670.000000pt;}
.x44_c00142{left:672.933333pt;}
.x50_c00142{left:676.533333pt;}
.x82_c00142{left:677.466667pt;}
.x8e_c00142{left:680.133333pt;}
.x16_c00142{left:682.666667pt;}
.xad_c00142{left:684.266667pt;}
.x2f_c00142{left:689.466667pt;}
.xa4_c00142{left:691.066667pt;}
.x37_c00142{left:694.933333pt;}
.x5e_c00142{left:696.533333pt;}
.x45_c00142{left:700.133333pt;}
.x8f_c00142{left:702.266667pt;}
.xb2_c00142{left:705.200000pt;}
.x38_c00142{left:707.066667pt;}
.x6c_c00142{left:711.333333pt;}
.x5f_c00142{left:714.400000pt;}
.xcf_c00142{left:718.000000pt;}
.xb3_c00142{left:724.400000pt;}
}





/* 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_c00143 {
    display:none;
  }
  .loading-indicator_c00143.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00143 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_c00143 { 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_c00143" -> "#page-container .classname_c00143")
 */
.pf_c00143 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00143 { /* 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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00143 { /* 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_c00143 { /* 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_c00143 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00143 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00143 {overflow:visible;}
  }
}
.c_c00143 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00143 { /* 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_c00143:after { /* webkit #35443 */
  content: '';
}
.t_c00143:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00143 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 */
}
.__c00143 { /* 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_c00143 { /* info for Javascript */
  display:none;
}
.l_c00143 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00143 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00143 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00143: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_c00143 {
    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_c00143.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00143.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_c00143 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00143{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00143;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.000000;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;}
.m7f_c00143{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00143{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00143{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00143{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m59_c00143{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m87_c00143{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00143{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00143{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00143{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m80_c00143{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00143{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mf_c00143{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00143{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m24_c00143{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00143{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00143{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00143{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mab_c00143{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m66_c00143{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00143{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00143{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00143{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m39_c00143{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00143{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00143{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00143{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00143{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m26_c00143{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m19_c00143{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00143{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m6_c00143{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00143{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m83_c00143{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc_c00143{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m99_c00143{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00143{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00143{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00143{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m21_c00143{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00143{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m73_c00143{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m98_c00143{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m36_c00143{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00143{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m22_c00143{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00143{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m71_c00143{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m15_c00143{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m28_c00143{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m68_c00143{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m57_c00143{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00143{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m63_c00143{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00143{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m72_c00143{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m93_c00143{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m94_c00143{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m96_c00143{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.maf_c00143{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md_c00143{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mad_c00143{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00143{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m86_c00143{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m41_c00143{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00143{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00143{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00143{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00143{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m97_c00143{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m55_c00143{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00143{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m61_c00143{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00143{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m78_c00143{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00143{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00143{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00143{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m69_c00143{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00143{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00143{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14_c00143{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m50_c00143{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00143{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00143{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m75_c00143{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.maa_c00143{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00143{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);}
.m60_c00143{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00143{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00143{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00143{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m32_c00143{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00143{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3_c00143{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m29_c00143{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m62_c00143{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00143{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00143{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00143{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00143{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00143{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m33_c00143{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00143{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00143{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m47_c00143{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m25_c00143{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00143{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m34_c00143{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m38_c00143{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00143{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m67_c00143{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m76_c00143{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m52_c00143{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00143{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m81_c00143{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m58_c00143{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m65_c00143{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m23_c00143{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00143{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m92_c00143{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00143{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00143{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m37_c00143{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m20_c00143{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m40_c00143{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m64_c00143{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m12_c00143{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00143{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00143{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m54_c00143{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m82_c00143{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m13_c00143{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m46_c00143{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m44_c00143{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m79_c00143{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00143{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m89_c00143{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m16_c00143{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280250,0.000000,0.000000,0.250000,0,0);}
.m43_c00143{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m56_c00143{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m17_c00143{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00143{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma_c00143{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00143{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00143{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m49_c00143{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m77_c00143{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00143{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m90_c00143{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00143{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00143{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m84_c00143{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00143{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m48_c00143{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m53_c00143{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m42_c00143{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m70_c00143{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00143{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m85_c00143{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m74_c00143{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m95_c00143{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m30_c00143{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00143{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00143{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m27_c00143{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00143{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00143{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m35_c00143{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00143{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m45_c00143{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m88_c00143{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00143{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00143{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00143{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00143{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00143{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00143{vertical-align:0.000000px;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{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__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00143{word-spacing:-10.375000px;}
.ws4_c00143{word-spacing:-7.095151px;}
.ws7_c00143{word-spacing:-6.719268px;}
.ws8_c00143{word-spacing:0.000000px;}
.ws0_c00143{word-spacing:5.496933px;}
.ws1_c00143{word-spacing:5.875000px;}
.ws3_c00143{word-spacing:10.375000px;}
.ws5_c00143{word-spacing:22.896104px;}
.ws2_c00143{word-spacing:42.582139px;}
.fc0_c00143{color:transparent;}
.fs1_c00143{font-size:54.000000px;}
.fs0_c00143{font-size:66.000000px;}
.y0_c00143{bottom:0.000000px;}
.y2b_c00143{bottom:145.500000px;}
.y2a_c00143{bottom:160.950000px;}
.y29_c00143{bottom:176.700000px;}
.y28_c00143{bottom:227.400000px;}
.y27_c00143{bottom:247.200000px;}
.y26_c00143{bottom:267.000000px;}
.y25_c00143{bottom:286.800000px;}
.y24_c00143{bottom:306.600000px;}
.y23_c00143{bottom:326.400000px;}
.y22_c00143{bottom:346.200000px;}
.y21_c00143{bottom:366.000000px;}
.y20_c00143{bottom:385.800000px;}
.y1f_c00143{bottom:405.900000px;}
.y1e_c00143{bottom:425.700000px;}
.y1d_c00143{bottom:445.800000px;}
.y1c_c00143{bottom:465.900000px;}
.y1b_c00143{bottom:484.950000px;}
.y1a_c00143{bottom:525.300000px;}
.y19_c00143{bottom:545.100000px;}
.y18_c00143{bottom:564.900000px;}
.y17_c00143{bottom:584.700000px;}
.y16_c00143{bottom:604.800000px;}
.y15_c00143{bottom:624.600000px;}
.y14_c00143{bottom:644.400000px;}
.y13_c00143{bottom:664.500000px;}
.y12_c00143{bottom:684.300000px;}
.y11_c00143{bottom:704.400000px;}
.y10_c00143{bottom:724.200000px;}
.yf_c00143{bottom:744.300000px;}
.ye_c00143{bottom:764.100000px;}
.yd_c00143{bottom:783.900000px;}
.yc_c00143{bottom:804.000000px;}
.yb_c00143{bottom:823.800000px;}
.ya_c00143{bottom:843.900000px;}
.y9_c00143{bottom:863.700000px;}
.y8_c00143{bottom:883.500000px;}
.y7_c00143{bottom:903.600000px;}
.y6_c00143{bottom:923.700000px;}
.y5_c00143{bottom:943.200000px;}
.y4_c00143{bottom:963.300000px;}
.y3_c00143{bottom:983.100000px;}
.y2_c00143{bottom:1002.900000px;}
.y1_c00143{bottom:1041.150000px;}
.h3_c00143{height:54.000000px;}
.h2_c00143{height:66.000000px;}
.h1_c00143{height:1167.750000px;}
.h0_c00143{height:1167.839997px;}
.w1_c00143{width:920.250000px;}
.w0_c00143{width:920.519990px;}
.x0_c00143{left:0.000000px;}
.x12b_c00143{left:90.750000px;}
.x11f_c00143{left:92.250000px;}
.xba_c00143{left:93.450000px;}
.x17_c00143{left:94.500000px;}
.x6_c00143{left:95.700000px;}
.x119_c00143{left:105.000000px;}
.x10b_c00143{left:108.300000px;}
.xef_c00143{left:110.850000px;}
.xc4_c00143{left:113.850000px;}
.xd8_c00143{left:119.100000px;}
.xa6_c00143{left:120.750000px;}
.x59_c00143{left:121.800000px;}
.x13b_c00143{left:123.450000px;}
.xfc_c00143{left:124.500000px;}
.x3c_c00143{left:127.050000px;}
.x13c_c00143{left:129.150000px;}
.x18_c00143{left:130.200000px;}
.xd0_c00143{left:133.050000px;}
.x136_c00143{left:139.350000px;}
.x11c_c00143{left:141.150000px;}
.x67_c00143{left:142.200000px;}
.x8a_c00143{left:143.400000px;}
.x4a_c00143{left:144.750000px;}
.xc5_c00143{left:146.550000px;}
.x2c_c00143{left:148.950000px;}
.x70_c00143{left:152.400000px;}
.x102_c00143{left:154.650000px;}
.xb1_c00143{left:157.800000px;}
.x81_c00143{left:159.750000px;}
.x13d_c00143{left:161.550000px;}
.x7_c00143{left:163.050000px;}
.x120_c00143{left:165.300000px;}
.x3d_c00143{left:167.400000px;}
.xbb_c00143{left:171.150000px;}
.x10c_c00143{left:172.650000px;}
.x19_c00143{left:173.700000px;}
.xc6_c00143{left:176.100000px;}
.x4b_c00143{left:177.150000px;}
.xa7_c00143{left:179.100000px;}
.xf0_c00143{left:181.800000px;}
.x68_c00143{left:183.900000px;}
.x8_c00143{left:186.750000px;}
.x121_c00143{left:187.950000px;}
.xd9_c00143{left:189.600000px;}
.xe0_c00143{left:190.650000px;}
.x130_c00143{left:192.000000px;}
.x82_c00143{left:195.000000px;}
.xb2_c00143{left:198.900000px;}
.x3e_c00143{left:200.550000px;}
.x4c_c00143{left:202.050000px;}
.x137_c00143{left:205.500000px;}
.xcb_c00143{left:206.850000px;}
.xbc_c00143{left:207.900000px;}
.x12c_c00143{left:210.000000px;}
.x69_c00143{left:212.400000px;}
.x5a_c00143{left:213.900000px;}
.xfb_c00143{left:215.550000px;}
.x1a_c00143{left:217.200000px;}
.x96_c00143{left:220.650000px;}
.xd1_c00143{left:222.450000px;}
.x4d_c00143{left:223.650000px;}
.x115_c00143{left:224.700000px;}
.xa8_c00143{left:232.050000px;}
.x2d_c00143{left:233.550000px;}
.x11a_c00143{left:235.200000px;}
.x83_c00143{left:236.700000px;}
.x1b_c00143{left:237.750000px;}
.x9_c00143{left:240.750000px;}
.x5b_c00143{left:242.700000px;}
.xe8_c00143{left:246.150000px;}
.xbd_c00143{left:247.800000px;}
.x1c_c00143{left:250.050000px;}
.x116_c00143{left:252.000000px;}
.x107_c00143{left:253.800000px;}
.x78_c00143{left:256.050000px;}
.xa_c00143{left:258.000000px;}
.xa9_c00143{left:259.050000px;}
.xcc_c00143{left:260.550000px;}
.x2e_c00143{left:262.350000px;}
.x4e_c00143{left:264.300000px;}
.x71_c00143{left:265.950000px;}
.xbe_c00143{left:267.300000px;}
.xda_c00143{left:269.100000px;}
.x97_c00143{left:271.500000px;}
.xb3_c00143{left:273.000000px;}
.x3f_c00143{left:274.650000px;}
.xaa_c00143{left:276.750000px;}
.x122_c00143{left:279.300000px;}
.xe1_c00143{left:280.650000px;}
.xcd_c00143{left:281.850000px;}
.x2f_c00143{left:282.900000px;}
.x10d_c00143{left:284.250000px;}
.x4f_c00143{left:285.600000px;}
.x138_c00143{left:287.100000px;}
.x1d_c00143{left:288.900000px;}
.x40_c00143{left:292.650000px;}
.x9f_c00143{left:294.900000px;}
.x128_c00143{left:297.600000px;}
.xe2_c00143{left:301.950000px;}
.xab_c00143{left:303.750000px;}
.x8b_c00143{left:304.950000px;}
.x6a_c00143{left:306.750000px;}
.xb_c00143{left:308.400000px;}
.xbf_c00143{left:311.550000px;}
.x50_c00143{left:314.100000px;}
.x1e_c00143{left:316.950000px;}
.x1_c00143{left:318.900000px;}
.xfd_c00143{left:321.750000px;}
.x30_c00143{left:323.250000px;}
.x11d_c00143{left:324.450000px;}
.xf1_c00143{left:325.800000px;}
.xb4_c00143{left:328.500000px;}
.x79_c00143{left:330.600000px;}
.x103_c00143{left:333.150000px;}
.xc_c00143{left:336.900000px;}
.xac_c00143{left:340.500000px;}
.x8c_c00143{left:342.450000px;}
.x5c_c00143{left:345.300000px;}
.x98_c00143{left:346.800000px;}
.x108_c00143{left:349.650000px;}
.x31_c00143{left:354.600000px;}
.x8d_c00143{left:361.200000px;}
.xd_c00143{left:362.400000px;}
.x11b_c00143{left:364.500000px;}
.x51_c00143{left:365.550000px;}
.x99_c00143{left:367.350000px;}
.x129_c00143{left:369.900000px;}
.x1f_c00143{left:370.950000px;}
.x2_c00143{left:372.900000px;}
.x41_c00143{left:375.150000px;}
.x111_c00143{left:376.200000px;}
.x131_c00143{left:377.700000px;}
.xc7_c00143{left:379.650000px;}
.x72_c00143{left:380.700000px;}
.xf2_c00143{left:384.150000px;}
.x20_c00143{left:385.650000px;}
.x32_c00143{left:388.050000px;}
.x3_c00143{left:390.150000px;}
.xc0_c00143{left:391.200000px;}
.xe_c00143{left:393.300000px;}
.x132_c00143{left:394.950000px;}
.x8e_c00143{left:396.150000px;}
.x42_c00143{left:397.800000px;}
.xe3_c00143{left:399.600000px;}
.xe9_c00143{left:400.950000px;}
.x52_c00143{left:404.850000px;}
.x33_c00143{left:406.050000px;}
.xa0_c00143{left:407.250000px;}
.xd2_c00143{left:408.600000px;}
.x7a_c00143{left:409.800000px;}
.x112_c00143{left:411.450000px;}
.xf3_c00143{left:412.950000px;}
.x5d_c00143{left:417.600000px;}
.x104_c00143{left:418.800000px;}
.x21_c00143{left:419.850000px;}
.xb5_c00143{left:421.650000px;}
.xc8_c00143{left:423.900000px;}
.xf4_c00143{left:425.250000px;}
.xf_c00143{left:426.450000px;}
.x139_c00143{left:427.800000px;}
.x43_c00143{left:429.450000px;}
.x133_c00143{left:430.650000px;}
.xa1_c00143{left:432.750000px;}
.x8f_c00143{left:433.950000px;}
.x9a_c00143{left:435.750000px;}
.xfe_c00143{left:438.750000px;}
.xad_c00143{left:440.250000px;}
.x113_c00143{left:443.550000px;}
.xe4_c00143{left:446.100000px;}
.x34_c00143{left:447.150000px;}
.x9b_c00143{left:449.850000px;}
.x22_c00143{left:451.500000px;}
.x5e_c00143{left:452.550000px;}
.x53_c00143{left:453.750000px;}
.x90_c00143{left:455.250000px;}
.x105_c00143{left:456.900000px;}
.xb6_c00143{left:460.500000px;}
.x12d_c00143{left:462.750000px;}
.x10_c00143{left:464.250000px;}
.x7b_c00143{left:466.350000px;}
.x73_c00143{left:467.400000px;}
.xdb_c00143{left:469.650000px;}
.xf8_c00143{left:471.000000px;}
.xa2_c00143{left:473.100000px;}
.x6b_c00143{left:474.900000px;}
.xce_c00143{left:477.600000px;}
.x7c_c00143{left:480.450000px;}
.x11_c00143{left:482.250000px;}
.xea_c00143{left:485.550000px;}
.x5f_c00143{left:487.500000px;}
.x4_c00143{left:488.850000px;}
.xa3_c00143{left:492.150000px;}
.x12_c00143{left:494.550000px;}
.xd3_c00143{left:495.750000px;}
.x106_c00143{left:500.850000px;}
.x35_c00143{left:504.750000px;}
.x84_c00143{left:506.400000px;}
.xf5_c00143{left:508.350000px;}
.x6c_c00143{left:510.150000px;}
.x117_c00143{left:511.950000px;}
.x134_c00143{left:513.750000px;}
.xdc_c00143{left:514.950000px;}
.x109_c00143{left:516.000000px;}
.x7d_c00143{left:517.500000px;}
.x23_c00143{left:518.850000px;}
.x10e_c00143{left:519.900000px;}
.x44_c00143{left:521.250000px;}
.x91_c00143{left:523.350000px;}
.x9c_c00143{left:529.800000px;}
.xd4_c00143{left:532.500000px;}
.x74_c00143{left:534.000000px;}
.x12a_c00143{left:535.050000px;}
.xae_c00143{left:537.000000px;}
.x36_c00143{left:540.000000px;}
.x45_c00143{left:541.050000px;}
.x92_c00143{left:543.150000px;}
.xf9_c00143{left:545.550000px;}
.x24_c00143{left:547.650000px;}
.xc1_c00143{left:550.050000px;}
.x60_c00143{left:552.600000px;}
.x11e_c00143{left:554.700000px;}
.xb7_c00143{left:558.450000px;}
.x46_c00143{left:560.100000px;}
.x118_c00143{left:561.300000px;}
.x10a_c00143{left:563.850000px;}
.x75_c00143{left:565.350000px;}
.xe5_c00143{left:566.400000px;}
.x85_c00143{left:567.900000px;}
.x10f_c00143{left:570.000000px;}
.xdd_c00143{left:571.800000px;}
.x6d_c00143{left:573.150000px;}
.xcf_c00143{left:574.800000px;}
.xeb_c00143{left:576.150000px;}
.x123_c00143{left:577.500000px;}
.x25_c00143{left:582.150000px;}
.x54_c00143{left:584.400000px;}
.xff_c00143{left:585.600000px;}
.x61_c00143{left:587.100000px;}
.xf6_c00143{left:589.050000px;}
.x13_c00143{left:590.250000px;}
.x135_c00143{left:591.900000px;}
.x37_c00143{left:593.250000px;}
.xa4_c00143{left:595.800000px;}
.x47_c00143{left:597.900000px;}
.xc9_c00143{left:599.850000px;}
.x100_c00143{left:601.050000px;}
.x26_c00143{left:602.250000px;}
.x124_c00143{left:603.750000px;}
.x93_c00143{left:606.450000px;}
.xe6_c00143{left:608.100000px;}
.xde_c00143{left:610.650000px;}
.x62_c00143{left:613.050000px;}
.x13e_c00143{left:618.000000px;}
.x9d_c00143{left:619.050000px;}
.xc2_c00143{left:620.700000px;}
.x6e_c00143{left:623.100000px;}
.xec_c00143{left:626.250000px;}
.xb8_c00143{left:627.600000px;}
.x12e_c00143{left:630.150000px;}
.x86_c00143{left:631.950000px;}
.xf7_c00143{left:633.000000px;}
.x76_c00143{left:634.500000px;}
.x55_c00143{left:635.550000px;}
.xed_c00143{left:637.050000px;}
.x63_c00143{left:638.550000px;}
.x27_c00143{left:640.050000px;}
.x13a_c00143{left:641.100000px;}
.x7e_c00143{left:642.150000px;}
.x14_c00143{left:643.500000px;}
.xfa_c00143{left:644.850000px;}
.xd5_c00143{left:647.250000px;}
.xb9_c00143{left:650.700000px;}
.x28_c00143{left:654.450000px;}
.xe7_c00143{left:655.650000px;}
.x64_c00143{left:656.850000px;}
.x6f_c00143{left:658.050000px;}
.x87_c00143{left:659.250000px;}
.x48_c00143{left:661.200000px;}
.x94_c00143{left:662.250000px;}
.xee_c00143{left:663.750000px;}
.xa5_c00143{left:665.250000px;}
.xdf_c00143{left:667.800000px;}
.x38_c00143{left:670.650000px;}
.x7f_c00143{left:675.300000px;}
.x101_c00143{left:678.750000px;}
.x39_c00143{left:681.450000px;}
.x125_c00143{left:682.650000px;}
.xaf_c00143{left:684.900000px;}
.x12f_c00143{left:688.500000px;}
.xc3_c00143{left:689.550000px;}
.x56_c00143{left:692.100000px;}
.x29_c00143{left:693.300000px;}
.x80_c00143{left:695.850000px;}
.x95_c00143{left:697.950000px;}
.x57_c00143{left:699.300000px;}
.x126_c00143{left:700.650000px;}
.x88_c00143{left:705.000000px;}
.xca_c00143{left:708.600000px;}
.x3a_c00143{left:710.550000px;}
.xd6_c00143{left:712.050000px;}
.x15_c00143{left:714.750000px;}
.x58_c00143{left:716.550000px;}
.x77_c00143{left:721.200000px;}
.x65_c00143{left:722.700000px;}
.x89_c00143{left:724.050000px;}
.x110_c00143{left:726.000000px;}
.x2a_c00143{left:728.550000px;}
.x9e_c00143{left:729.600000px;}
.x49_c00143{left:732.150000px;}
.x127_c00143{left:734.550000px;}
.xb0_c00143{left:739.200000px;}
.x66_c00143{left:740.400000px;}
.x114_c00143{left:742.350000px;}
.x5_c00143{left:744.750000px;}
.x2b_c00143{left:746.250000px;}
.xd7_c00143{left:747.300000px;}
.x16_c00143{left:750.000000px;}
.x3b_c00143{left:751.200000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws6_c00143{word-spacing:-9.222222pt;}
.ws4_c00143{word-spacing:-6.306801pt;}
.ws7_c00143{word-spacing:-5.972682pt;}
.ws8_c00143{word-spacing:0.000000pt;}
.ws0_c00143{word-spacing:4.886162pt;}
.ws1_c00143{word-spacing:5.222222pt;}
.ws3_c00143{word-spacing:9.222222pt;}
.ws5_c00143{word-spacing:20.352092pt;}
.ws2_c00143{word-spacing:37.850790pt;}
.fs1_c00143{font-size:48.000000pt;}
.fs0_c00143{font-size:58.666667pt;}
.y0_c00143{bottom:0.000000pt;}
.y2b_c00143{bottom:129.333333pt;}
.y2a_c00143{bottom:143.066667pt;}
.y29_c00143{bottom:157.066667pt;}
.y28_c00143{bottom:202.133333pt;}
.y27_c00143{bottom:219.733333pt;}
.y26_c00143{bottom:237.333333pt;}
.y25_c00143{bottom:254.933333pt;}
.y24_c00143{bottom:272.533333pt;}
.y23_c00143{bottom:290.133333pt;}
.y22_c00143{bottom:307.733333pt;}
.y21_c00143{bottom:325.333333pt;}
.y20_c00143{bottom:342.933333pt;}
.y1f_c00143{bottom:360.800000pt;}
.y1e_c00143{bottom:378.400000pt;}
.y1d_c00143{bottom:396.266667pt;}
.y1c_c00143{bottom:414.133333pt;}
.y1b_c00143{bottom:431.066667pt;}
.y1a_c00143{bottom:466.933333pt;}
.y19_c00143{bottom:484.533333pt;}
.y18_c00143{bottom:502.133333pt;}
.y17_c00143{bottom:519.733333pt;}
.y16_c00143{bottom:537.600000pt;}
.y15_c00143{bottom:555.200000pt;}
.y14_c00143{bottom:572.800000pt;}
.y13_c00143{bottom:590.666667pt;}
.y12_c00143{bottom:608.266667pt;}
.y11_c00143{bottom:626.133333pt;}
.y10_c00143{bottom:643.733333pt;}
.yf_c00143{bottom:661.600000pt;}
.ye_c00143{bottom:679.200000pt;}
.yd_c00143{bottom:696.800000pt;}
.yc_c00143{bottom:714.666667pt;}
.yb_c00143{bottom:732.266667pt;}
.ya_c00143{bottom:750.133333pt;}
.y9_c00143{bottom:767.733333pt;}
.y8_c00143{bottom:785.333333pt;}
.y7_c00143{bottom:803.200000pt;}
.y6_c00143{bottom:821.066667pt;}
.y5_c00143{bottom:838.400000pt;}
.y4_c00143{bottom:856.266667pt;}
.y3_c00143{bottom:873.866667pt;}
.y2_c00143{bottom:891.466667pt;}
.y1_c00143{bottom:925.466667pt;}
.h3_c00143{height:48.000000pt;}
.h2_c00143{height:58.666667pt;}
.h1_c00143{height:1038.000000pt;}
.h0_c00143{height:1038.079997pt;}
.w1_c00143{width:818.000000pt;}
.w0_c00143{width:818.239991pt;}
.x0_c00143{left:0.000000pt;}
.x12b_c00143{left:80.666667pt;}
.x11f_c00143{left:82.000000pt;}
.xba_c00143{left:83.066667pt;}
.x17_c00143{left:84.000000pt;}
.x6_c00143{left:85.066667pt;}
.x119_c00143{left:93.333333pt;}
.x10b_c00143{left:96.266667pt;}
.xef_c00143{left:98.533333pt;}
.xc4_c00143{left:101.200000pt;}
.xd8_c00143{left:105.866667pt;}
.xa6_c00143{left:107.333333pt;}
.x59_c00143{left:108.266667pt;}
.x13b_c00143{left:109.733333pt;}
.xfc_c00143{left:110.666667pt;}
.x3c_c00143{left:112.933333pt;}
.x13c_c00143{left:114.800000pt;}
.x18_c00143{left:115.733333pt;}
.xd0_c00143{left:118.266667pt;}
.x136_c00143{left:123.866667pt;}
.x11c_c00143{left:125.466667pt;}
.x67_c00143{left:126.400000pt;}
.x8a_c00143{left:127.466667pt;}
.x4a_c00143{left:128.666667pt;}
.xc5_c00143{left:130.266667pt;}
.x2c_c00143{left:132.400000pt;}
.x70_c00143{left:135.466667pt;}
.x102_c00143{left:137.466667pt;}
.xb1_c00143{left:140.266667pt;}
.x81_c00143{left:142.000000pt;}
.x13d_c00143{left:143.600000pt;}
.x7_c00143{left:144.933333pt;}
.x120_c00143{left:146.933333pt;}
.x3d_c00143{left:148.800000pt;}
.xbb_c00143{left:152.133333pt;}
.x10c_c00143{left:153.466667pt;}
.x19_c00143{left:154.400000pt;}
.xc6_c00143{left:156.533333pt;}
.x4b_c00143{left:157.466667pt;}
.xa7_c00143{left:159.200000pt;}
.xf0_c00143{left:161.600000pt;}
.x68_c00143{left:163.466667pt;}
.x8_c00143{left:166.000000pt;}
.x121_c00143{left:167.066667pt;}
.xd9_c00143{left:168.533333pt;}
.xe0_c00143{left:169.466667pt;}
.x130_c00143{left:170.666667pt;}
.x82_c00143{left:173.333333pt;}
.xb2_c00143{left:176.800000pt;}
.x3e_c00143{left:178.266667pt;}
.x4c_c00143{left:179.600000pt;}
.x137_c00143{left:182.666667pt;}
.xcb_c00143{left:183.866667pt;}
.xbc_c00143{left:184.800000pt;}
.x12c_c00143{left:186.666667pt;}
.x69_c00143{left:188.800000pt;}
.x5a_c00143{left:190.133333pt;}
.xfb_c00143{left:191.600000pt;}
.x1a_c00143{left:193.066667pt;}
.x96_c00143{left:196.133333pt;}
.xd1_c00143{left:197.733333pt;}
.x4d_c00143{left:198.800000pt;}
.x115_c00143{left:199.733333pt;}
.xa8_c00143{left:206.266667pt;}
.x2d_c00143{left:207.600000pt;}
.x11a_c00143{left:209.066667pt;}
.x83_c00143{left:210.400000pt;}
.x1b_c00143{left:211.333333pt;}
.x9_c00143{left:214.000000pt;}
.x5b_c00143{left:215.733333pt;}
.xe8_c00143{left:218.800000pt;}
.xbd_c00143{left:220.266667pt;}
.x1c_c00143{left:222.266667pt;}
.x116_c00143{left:224.000000pt;}
.x107_c00143{left:225.600000pt;}
.x78_c00143{left:227.600000pt;}
.xa_c00143{left:229.333333pt;}
.xa9_c00143{left:230.266667pt;}
.xcc_c00143{left:231.600000pt;}
.x2e_c00143{left:233.200000pt;}
.x4e_c00143{left:234.933333pt;}
.x71_c00143{left:236.400000pt;}
.xbe_c00143{left:237.600000pt;}
.xda_c00143{left:239.200000pt;}
.x97_c00143{left:241.333333pt;}
.xb3_c00143{left:242.666667pt;}
.x3f_c00143{left:244.133333pt;}
.xaa_c00143{left:246.000000pt;}
.x122_c00143{left:248.266667pt;}
.xe1_c00143{left:249.466667pt;}
.xcd_c00143{left:250.533333pt;}
.x2f_c00143{left:251.466667pt;}
.x10d_c00143{left:252.666667pt;}
.x4f_c00143{left:253.866667pt;}
.x138_c00143{left:255.200000pt;}
.x1d_c00143{left:256.800000pt;}
.x40_c00143{left:260.133333pt;}
.x9f_c00143{left:262.133333pt;}
.x128_c00143{left:264.533333pt;}
.xe2_c00143{left:268.400000pt;}
.xab_c00143{left:270.000000pt;}
.x8b_c00143{left:271.066667pt;}
.x6a_c00143{left:272.666667pt;}
.xb_c00143{left:274.133333pt;}
.xbf_c00143{left:276.933333pt;}
.x50_c00143{left:279.200000pt;}
.x1e_c00143{left:281.733333pt;}
.x1_c00143{left:283.466667pt;}
.xfd_c00143{left:286.000000pt;}
.x30_c00143{left:287.333333pt;}
.x11d_c00143{left:288.400000pt;}
.xf1_c00143{left:289.600000pt;}
.xb4_c00143{left:292.000000pt;}
.x79_c00143{left:293.866667pt;}
.x103_c00143{left:296.133333pt;}
.xc_c00143{left:299.466667pt;}
.xac_c00143{left:302.666667pt;}
.x8c_c00143{left:304.400000pt;}
.x5c_c00143{left:306.933333pt;}
.x98_c00143{left:308.266667pt;}
.x108_c00143{left:310.800000pt;}
.x31_c00143{left:315.200000pt;}
.x8d_c00143{left:321.066667pt;}
.xd_c00143{left:322.133333pt;}
.x11b_c00143{left:324.000000pt;}
.x51_c00143{left:324.933333pt;}
.x99_c00143{left:326.533333pt;}
.x129_c00143{left:328.800000pt;}
.x1f_c00143{left:329.733333pt;}
.x2_c00143{left:331.466667pt;}
.x41_c00143{left:333.466667pt;}
.x111_c00143{left:334.400000pt;}
.x131_c00143{left:335.733333pt;}
.xc7_c00143{left:337.466667pt;}
.x72_c00143{left:338.400000pt;}
.xf2_c00143{left:341.466667pt;}
.x20_c00143{left:342.800000pt;}
.x32_c00143{left:344.933333pt;}
.x3_c00143{left:346.800000pt;}
.xc0_c00143{left:347.733333pt;}
.xe_c00143{left:349.600000pt;}
.x132_c00143{left:351.066667pt;}
.x8e_c00143{left:352.133333pt;}
.x42_c00143{left:353.600000pt;}
.xe3_c00143{left:355.200000pt;}
.xe9_c00143{left:356.400000pt;}
.x52_c00143{left:359.866667pt;}
.x33_c00143{left:360.933333pt;}
.xa0_c00143{left:362.000000pt;}
.xd2_c00143{left:363.200000pt;}
.x7a_c00143{left:364.266667pt;}
.x112_c00143{left:365.733333pt;}
.xf3_c00143{left:367.066667pt;}
.x5d_c00143{left:371.200000pt;}
.x104_c00143{left:372.266667pt;}
.x21_c00143{left:373.200000pt;}
.xb5_c00143{left:374.800000pt;}
.xc8_c00143{left:376.800000pt;}
.xf4_c00143{left:378.000000pt;}
.xf_c00143{left:379.066667pt;}
.x139_c00143{left:380.266667pt;}
.x43_c00143{left:381.733333pt;}
.x133_c00143{left:382.800000pt;}
.xa1_c00143{left:384.666667pt;}
.x8f_c00143{left:385.733333pt;}
.x9a_c00143{left:387.333333pt;}
.xfe_c00143{left:390.000000pt;}
.xad_c00143{left:391.333333pt;}
.x113_c00143{left:394.266667pt;}
.xe4_c00143{left:396.533333pt;}
.x34_c00143{left:397.466667pt;}
.x9b_c00143{left:399.866667pt;}
.x22_c00143{left:401.333333pt;}
.x5e_c00143{left:402.266667pt;}
.x53_c00143{left:403.333333pt;}
.x90_c00143{left:404.666667pt;}
.x105_c00143{left:406.133333pt;}
.xb6_c00143{left:409.333333pt;}
.x12d_c00143{left:411.333333pt;}
.x10_c00143{left:412.666667pt;}
.x7b_c00143{left:414.533333pt;}
.x73_c00143{left:415.466667pt;}
.xdb_c00143{left:417.466667pt;}
.xf8_c00143{left:418.666667pt;}
.xa2_c00143{left:420.533333pt;}
.x6b_c00143{left:422.133333pt;}
.xce_c00143{left:424.533333pt;}
.x7c_c00143{left:427.066667pt;}
.x11_c00143{left:428.666667pt;}
.xea_c00143{left:431.600000pt;}
.x5f_c00143{left:433.333333pt;}
.x4_c00143{left:434.533333pt;}
.xa3_c00143{left:437.466667pt;}
.x12_c00143{left:439.600000pt;}
.xd3_c00143{left:440.666667pt;}
.x106_c00143{left:445.200000pt;}
.x35_c00143{left:448.666667pt;}
.x84_c00143{left:450.133333pt;}
.xf5_c00143{left:451.866667pt;}
.x6c_c00143{left:453.466667pt;}
.x117_c00143{left:455.066667pt;}
.x134_c00143{left:456.666667pt;}
.xdc_c00143{left:457.733333pt;}
.x109_c00143{left:458.666667pt;}
.x7d_c00143{left:460.000000pt;}
.x23_c00143{left:461.200000pt;}
.x10e_c00143{left:462.133333pt;}
.x44_c00143{left:463.333333pt;}
.x91_c00143{left:465.200000pt;}
.x9c_c00143{left:470.933333pt;}
.xd4_c00143{left:473.333333pt;}
.x74_c00143{left:474.666667pt;}
.x12a_c00143{left:475.600000pt;}
.xae_c00143{left:477.333333pt;}
.x36_c00143{left:480.000000pt;}
.x45_c00143{left:480.933333pt;}
.x92_c00143{left:482.800000pt;}
.xf9_c00143{left:484.933333pt;}
.x24_c00143{left:486.800000pt;}
.xc1_c00143{left:488.933333pt;}
.x60_c00143{left:491.200000pt;}
.x11e_c00143{left:493.066667pt;}
.xb7_c00143{left:496.400000pt;}
.x46_c00143{left:497.866667pt;}
.x118_c00143{left:498.933333pt;}
.x10a_c00143{left:501.200000pt;}
.x75_c00143{left:502.533333pt;}
.xe5_c00143{left:503.466667pt;}
.x85_c00143{left:504.800000pt;}
.x10f_c00143{left:506.666667pt;}
.xdd_c00143{left:508.266667pt;}
.x6d_c00143{left:509.466667pt;}
.xcf_c00143{left:510.933333pt;}
.xeb_c00143{left:512.133333pt;}
.x123_c00143{left:513.333333pt;}
.x25_c00143{left:517.466667pt;}
.x54_c00143{left:519.466667pt;}
.xff_c00143{left:520.533333pt;}
.x61_c00143{left:521.866667pt;}
.xf6_c00143{left:523.600000pt;}
.x13_c00143{left:524.666667pt;}
.x135_c00143{left:526.133333pt;}
.x37_c00143{left:527.333333pt;}
.xa4_c00143{left:529.600000pt;}
.x47_c00143{left:531.466667pt;}
.xc9_c00143{left:533.200000pt;}
.x100_c00143{left:534.266667pt;}
.x26_c00143{left:535.333333pt;}
.x124_c00143{left:536.666667pt;}
.x93_c00143{left:539.066667pt;}
.xe6_c00143{left:540.533333pt;}
.xde_c00143{left:542.800000pt;}
.x62_c00143{left:544.933333pt;}
.x13e_c00143{left:549.333333pt;}
.x9d_c00143{left:550.266667pt;}
.xc2_c00143{left:551.733333pt;}
.x6e_c00143{left:553.866667pt;}
.xec_c00143{left:556.666667pt;}
.xb8_c00143{left:557.866667pt;}
.x12e_c00143{left:560.133333pt;}
.x86_c00143{left:561.733333pt;}
.xf7_c00143{left:562.666667pt;}
.x76_c00143{left:564.000000pt;}
.x55_c00143{left:564.933333pt;}
.xed_c00143{left:566.266667pt;}
.x63_c00143{left:567.600000pt;}
.x27_c00143{left:568.933333pt;}
.x13a_c00143{left:569.866667pt;}
.x7e_c00143{left:570.800000pt;}
.x14_c00143{left:572.000000pt;}
.xfa_c00143{left:573.200000pt;}
.xd5_c00143{left:575.333333pt;}
.xb9_c00143{left:578.400000pt;}
.x28_c00143{left:581.733333pt;}
.xe7_c00143{left:582.800000pt;}
.x64_c00143{left:583.866667pt;}
.x6f_c00143{left:584.933333pt;}
.x87_c00143{left:586.000000pt;}
.x48_c00143{left:587.733333pt;}
.x94_c00143{left:588.666667pt;}
.xee_c00143{left:590.000000pt;}
.xa5_c00143{left:591.333333pt;}
.xdf_c00143{left:593.600000pt;}
.x38_c00143{left:596.133333pt;}
.x7f_c00143{left:600.266667pt;}
.x101_c00143{left:603.333333pt;}
.x39_c00143{left:605.733333pt;}
.x125_c00143{left:606.800000pt;}
.xaf_c00143{left:608.800000pt;}
.x12f_c00143{left:612.000000pt;}
.xc3_c00143{left:612.933333pt;}
.x56_c00143{left:615.200000pt;}
.x29_c00143{left:616.266667pt;}
.x80_c00143{left:618.533333pt;}
.x95_c00143{left:620.400000pt;}
.x57_c00143{left:621.600000pt;}
.x126_c00143{left:622.800000pt;}
.x88_c00143{left:626.666667pt;}
.xca_c00143{left:629.866667pt;}
.x3a_c00143{left:631.600000pt;}
.xd6_c00143{left:632.933333pt;}
.x15_c00143{left:635.333333pt;}
.x58_c00143{left:636.933333pt;}
.x77_c00143{left:641.066667pt;}
.x65_c00143{left:642.400000pt;}
.x89_c00143{left:643.600000pt;}
.x110_c00143{left:645.333333pt;}
.x2a_c00143{left:647.600000pt;}
.x9e_c00143{left:648.533333pt;}
.x49_c00143{left:650.800000pt;}
.x127_c00143{left:652.933333pt;}
.xb0_c00143{left:657.066667pt;}
.x66_c00143{left:658.133333pt;}
.x114_c00143{left:659.866667pt;}
.x5_c00143{left:662.000000pt;}
.x2b_c00143{left:663.333333pt;}
.xd7_c00143{left:664.266667pt;}
.x16_c00143{left:666.666667pt;}
.x3b_c00143{left:667.733333pt;}
}





/* 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_c00144 {
    display:none;
  }
  .loading-indicator_c00144.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00144 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_c00144 { 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_c00144" -> "#page-container .classname_c00144")
 */
.pf_c00144 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00144 { /* 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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00144 { /* 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_c00144 { /* 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_c00144 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00144 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00144 {overflow:visible;}
  }
}
.c_c00144 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00144 { /* 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_c00144:after { /* webkit #35443 */
  content: '';
}
.t_c00144:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00144 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 */
}
.__c00144 { /* 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_c00144 { /* info for Javascript */
  display:none;
}
.l_c00144 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00144 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00144 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00144: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_c00144 {
    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_c00144.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00144.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_c00144 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00144{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00144;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.000000;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;}
.m57_c00144{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00144{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m46_c00144{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00144{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00144{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00144{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00144{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m63_c00144{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m68_c00144{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m65_c00144{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00144{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00144{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00144{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00144{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m54_c00144{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m36_c00144{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3_c00144{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m49_c00144{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00144{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00144{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m21_c00144{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{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);}
.m3e_c00144{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma_c00144{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m59_c00144{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00144{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m11_c00144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00144{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m4_c00144{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m24_c00144{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00144{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{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__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:-10.375000px;}
.ws1_c00144{word-spacing:-0.250000px;}
.ws2_c00144{word-spacing:0.000000px;}
.fc0_c00144{color:transparent;}
.fs0_c00144{font-size:54.000000px;}
.y0_c00144{bottom:0.000000px;}
.y10_c00144{bottom:695.850000px;}
.yf_c00144{bottom:711.750000px;}
.ye_c00144{bottom:747.450000px;}
.yd_c00144{bottom:767.250000px;}
.yc_c00144{bottom:787.050000px;}
.yb_c00144{bottom:806.850000px;}
.ya_c00144{bottom:826.650000px;}
.y9_c00144{bottom:846.750000px;}
.y8_c00144{bottom:866.550000px;}
.y7_c00144{bottom:905.850000px;}
.y6_c00144{bottom:925.950000px;}
.y5_c00144{bottom:946.050000px;}
.y4_c00144{bottom:965.850000px;}
.y3_c00144{bottom:985.650000px;}
.y2_c00144{bottom:1005.450000px;}
.y1_c00144{bottom:1044.000000px;}
.h2_c00144{height:54.000000px;}
.h1_c00144{height:1167.750000px;}
.h0_c00144{height:1167.839997px;}
.w1_c00144{width:920.250000px;}
.w0_c00144{width:920.519990px;}
.x0_c00144{left:0.000000px;}
.x95_c00144{left:167.400000px;}
.x1_c00144{left:168.900000px;}
.x6a_c00144{left:183.900000px;}
.x8a_c00144{left:188.250000px;}
.x4d_c00144{left:200.100000px;}
.x3a_c00144{left:201.600000px;}
.x46_c00144{left:203.400000px;}
.x13_c00144{left:206.550000px;}
.x3_c00144{left:210.900000px;}
.x62_c00144{left:212.100000px;}
.x86_c00144{left:219.000000px;}
.x47_c00144{left:222.450000px;}
.x2a_c00144{left:226.350000px;}
.x55_c00144{left:227.700000px;}
.x3b_c00144{left:229.350000px;}
.x4_c00144{left:230.700000px;}
.x7d_c00144{left:236.100000px;}
.x14_c00144{left:247.650000px;}
.x3c_c00144{left:248.850000px;}
.x87_c00144{left:256.050000px;}
.x5_c00144{left:262.350000px;}
.x7e_c00144{left:264.150000px;}
.x96_c00144{left:271.050000px;}
.x1e_c00144{left:274.350000px;}
.x78_c00144{left:276.900000px;}
.x2b_c00144{left:278.850000px;}
.x97_c00144{left:285.750000px;}
.x15_c00144{left:287.250000px;}
.x6b_c00144{left:291.150000px;}
.x88_c00144{left:294.150000px;}
.x8b_c00144{left:300.450000px;}
.x56_c00144{left:303.600000px;}
.x48_c00144{left:307.350000px;}
.x2c_c00144{left:309.450000px;}
.x7f_c00144{left:312.750000px;}
.x4e_c00144{left:321.750000px;}
.x6_c00144{left:323.250000px;}
.x49_c00144{left:330.000000px;}
.x63_c00144{left:332.400000px;}
.x1f_c00144{left:346.050000px;}
.x98_c00144{left:347.250000px;}
.x4f_c00144{left:351.600000px;}
.x3d_c00144{left:353.250000px;}
.x99_c00144{left:355.200000px;}
.x4a_c00144{left:356.700000px;}
.x16_c00144{left:362.850000px;}
.x6c_c00144{left:368.250000px;}
.x57_c00144{left:369.450000px;}
.x8c_c00144{left:371.400000px;}
.x2d_c00144{left:375.000000px;}
.x20_c00144{left:377.400000px;}
.x80_c00144{left:381.150000px;}
.x7_c00144{left:382.650000px;}
.x89_c00144{left:386.700000px;}
.x8d_c00144{left:398.400000px;}
.x4b_c00144{left:400.650000px;}
.x2e_c00144{left:402.300000px;}
.x50_c00144{left:403.800000px;}
.x21_c00144{left:408.750000px;}
.x58_c00144{left:410.850000px;}
.x17_c00144{left:416.100000px;}
.x8_c00144{left:417.150000px;}
.x81_c00144{left:419.250000px;}
.x3e_c00144{left:422.700000px;}
.x79_c00144{left:424.950000px;}
.x8e_c00144{left:426.450000px;}
.x2f_c00144{left:432.150000px;}
.x22_c00144{left:436.050000px;}
.x64_c00144{left:437.550000px;}
.x18_c00144{left:446.700000px;}
.x6d_c00144{left:447.750000px;}
.x4c_c00144{left:448.950000px;}
.x7a_c00144{left:450.150000px;}
.x9_c00144{left:456.000000px;}
.x30_c00144{left:461.700000px;}
.x2_c00144{left:465.150000px;}
.x23_c00144{left:468.150000px;}
.x9a_c00144{left:472.050000px;}
.xa_c00144{left:475.800000px;}
.x6e_c00144{left:480.900000px;}
.x31_c00144{left:483.300000px;}
.x3f_c00144{left:493.200000px;}
.x24_c00144{left:499.800000px;}
.x6f_c00144{left:502.800000px;}
.x59_c00144{left:506.550000px;}
.x8f_c00144{left:510.150000px;}
.x25_c00144{left:513.900000px;}
.x5a_c00144{left:521.250000px;}
.x40_c00144{left:522.750000px;}
.x19_c00144{left:526.650000px;}
.xb_c00144{left:531.900000px;}
.x82_c00144{left:539.550000px;}
.x41_c00144{left:542.550000px;}
.x32_c00144{left:553.500000px;}
.x90_c00144{left:555.150000px;}
.xc_c00144{left:559.650000px;}
.x70_c00144{left:561.750000px;}
.x91_c00144{left:563.400000px;}
.x33_c00144{left:573.300000px;}
.x5b_c00144{left:574.950000px;}
.x7b_c00144{left:577.500000px;}
.x65_c00144{left:579.150000px;}
.x9b_c00144{left:582.000000px;}
.x66_c00144{left:595.350000px;}
.x71_c00144{left:597.750000px;}
.x42_c00144{left:599.100000px;}
.xd_c00144{left:600.300000px;}
.x92_c00144{left:601.500000px;}
.x26_c00144{left:603.900000px;}
.x1a_c00144{left:611.250000px;}
.x51_c00144{left:615.450000px;}
.x5c_c00144{left:618.450000px;}
.x34_c00144{left:621.600000px;}
.x72_c00144{left:622.950000px;}
.x9c_c00144{left:625.200000px;}
.x52_c00144{left:636.000000px;}
.xe_c00144{left:637.350000px;}
.x43_c00144{left:638.700000px;}
.x35_c00144{left:640.350000px;}
.x67_c00144{left:643.950000px;}
.x5d_c00144{left:650.850000px;}
.xf_c00144{left:652.050000px;}
.x27_c00144{left:656.400000px;}
.x5e_c00144{left:661.950000px;}
.x36_c00144{left:663.000000px;}
.x83_c00144{left:664.650000px;}
.x1b_c00144{left:666.300000px;}
.x68_c00144{left:672.450000px;}
.x53_c00144{left:677.700000px;}
.x73_c00144{left:691.350000px;}
.x7c_c00144{left:693.150000px;}
.x93_c00144{left:698.700000px;}
.x44_c00144{left:706.050000px;}
.x74_c00144{left:710.400000px;}
.x54_c00144{left:718.800000px;}
.x84_c00144{left:721.650000px;}
.x10_c00144{left:725.550000px;}
.x1c_c00144{left:728.550000px;}
.x37_c00144{left:735.750000px;}
.x75_c00144{left:738.150000px;}
.x28_c00144{left:739.950000px;}
.x11_c00144{left:745.350000px;}
.x5f_c00144{left:746.850000px;}
.x1d_c00144{left:751.650000px;}
.x38_c00144{left:755.250000px;}
.x76_c00144{left:760.050000px;}
.x60_c00144{left:763.800000px;}
.x85_c00144{left:765.150000px;}
.x39_c00144{left:780.750000px;}
.x12_c00144{left:783.900000px;}
.x29_c00144{left:795.450000px;}
.x77_c00144{left:802.500000px;}
.x45_c00144{left:804.300000px;}
.x94_c00144{left:806.700000px;}
.x69_c00144{left:812.100000px;}
.x61_c00144{left:813.450000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:-9.222222pt;}
.ws1_c00144{word-spacing:-0.222222pt;}
.ws2_c00144{word-spacing:0.000000pt;}
.fs0_c00144{font-size:48.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y10_c00144{bottom:618.533333pt;}
.yf_c00144{bottom:632.666667pt;}
.ye_c00144{bottom:664.400000pt;}
.yd_c00144{bottom:682.000000pt;}
.yc_c00144{bottom:699.600000pt;}
.yb_c00144{bottom:717.200000pt;}
.ya_c00144{bottom:734.800000pt;}
.y9_c00144{bottom:752.666667pt;}
.y8_c00144{bottom:770.266667pt;}
.y7_c00144{bottom:805.200000pt;}
.y6_c00144{bottom:823.066667pt;}
.y5_c00144{bottom:840.933333pt;}
.y4_c00144{bottom:858.533333pt;}
.y3_c00144{bottom:876.133333pt;}
.y2_c00144{bottom:893.733333pt;}
.y1_c00144{bottom:928.000000pt;}
.h2_c00144{height:48.000000pt;}
.h1_c00144{height:1038.000000pt;}
.h0_c00144{height:1038.079997pt;}
.w1_c00144{width:818.000000pt;}
.w0_c00144{width:818.239991pt;}
.x0_c00144{left:0.000000pt;}
.x95_c00144{left:148.800000pt;}
.x1_c00144{left:150.133333pt;}
.x6a_c00144{left:163.466667pt;}
.x8a_c00144{left:167.333333pt;}
.x4d_c00144{left:177.866667pt;}
.x3a_c00144{left:179.200000pt;}
.x46_c00144{left:180.800000pt;}
.x13_c00144{left:183.600000pt;}
.x3_c00144{left:187.466667pt;}
.x62_c00144{left:188.533333pt;}
.x86_c00144{left:194.666667pt;}
.x47_c00144{left:197.733333pt;}
.x2a_c00144{left:201.200000pt;}
.x55_c00144{left:202.400000pt;}
.x3b_c00144{left:203.866667pt;}
.x4_c00144{left:205.066667pt;}
.x7d_c00144{left:209.866667pt;}
.x14_c00144{left:220.133333pt;}
.x3c_c00144{left:221.200000pt;}
.x87_c00144{left:227.600000pt;}
.x5_c00144{left:233.200000pt;}
.x7e_c00144{left:234.800000pt;}
.x96_c00144{left:240.933333pt;}
.x1e_c00144{left:243.866667pt;}
.x78_c00144{left:246.133333pt;}
.x2b_c00144{left:247.866667pt;}
.x97_c00144{left:254.000000pt;}
.x15_c00144{left:255.333333pt;}
.x6b_c00144{left:258.800000pt;}
.x88_c00144{left:261.466667pt;}
.x8b_c00144{left:267.066667pt;}
.x56_c00144{left:269.866667pt;}
.x48_c00144{left:273.200000pt;}
.x2c_c00144{left:275.066667pt;}
.x7f_c00144{left:278.000000pt;}
.x4e_c00144{left:286.000000pt;}
.x6_c00144{left:287.333333pt;}
.x49_c00144{left:293.333333pt;}
.x63_c00144{left:295.466667pt;}
.x1f_c00144{left:307.600000pt;}
.x98_c00144{left:308.666667pt;}
.x4f_c00144{left:312.533333pt;}
.x3d_c00144{left:314.000000pt;}
.x99_c00144{left:315.733333pt;}
.x4a_c00144{left:317.066667pt;}
.x16_c00144{left:322.533333pt;}
.x6c_c00144{left:327.333333pt;}
.x57_c00144{left:328.400000pt;}
.x8c_c00144{left:330.133333pt;}
.x2d_c00144{left:333.333333pt;}
.x20_c00144{left:335.466667pt;}
.x80_c00144{left:338.800000pt;}
.x7_c00144{left:340.133333pt;}
.x89_c00144{left:343.733333pt;}
.x8d_c00144{left:354.133333pt;}
.x4b_c00144{left:356.133333pt;}
.x2e_c00144{left:357.600000pt;}
.x50_c00144{left:358.933333pt;}
.x21_c00144{left:363.333333pt;}
.x58_c00144{left:365.200000pt;}
.x17_c00144{left:369.866667pt;}
.x8_c00144{left:370.800000pt;}
.x81_c00144{left:372.666667pt;}
.x3e_c00144{left:375.733333pt;}
.x79_c00144{left:377.733333pt;}
.x8e_c00144{left:379.066667pt;}
.x2f_c00144{left:384.133333pt;}
.x22_c00144{left:387.600000pt;}
.x64_c00144{left:388.933333pt;}
.x18_c00144{left:397.066667pt;}
.x6d_c00144{left:398.000000pt;}
.x4c_c00144{left:399.066667pt;}
.x7a_c00144{left:400.133333pt;}
.x9_c00144{left:405.333333pt;}
.x30_c00144{left:410.400000pt;}
.x2_c00144{left:413.466667pt;}
.x23_c00144{left:416.133333pt;}
.x9a_c00144{left:419.600000pt;}
.xa_c00144{left:422.933333pt;}
.x6e_c00144{left:427.466667pt;}
.x31_c00144{left:429.600000pt;}
.x3f_c00144{left:438.400000pt;}
.x24_c00144{left:444.266667pt;}
.x6f_c00144{left:446.933333pt;}
.x59_c00144{left:450.266667pt;}
.x8f_c00144{left:453.466667pt;}
.x25_c00144{left:456.800000pt;}
.x5a_c00144{left:463.333333pt;}
.x40_c00144{left:464.666667pt;}
.x19_c00144{left:468.133333pt;}
.xb_c00144{left:472.800000pt;}
.x82_c00144{left:479.600000pt;}
.x41_c00144{left:482.266667pt;}
.x32_c00144{left:492.000000pt;}
.x90_c00144{left:493.466667pt;}
.xc_c00144{left:497.466667pt;}
.x70_c00144{left:499.333333pt;}
.x91_c00144{left:500.800000pt;}
.x33_c00144{left:509.600000pt;}
.x5b_c00144{left:511.066667pt;}
.x7b_c00144{left:513.333333pt;}
.x65_c00144{left:514.800000pt;}
.x9b_c00144{left:517.333333pt;}
.x66_c00144{left:529.200000pt;}
.x71_c00144{left:531.333333pt;}
.x42_c00144{left:532.533333pt;}
.xd_c00144{left:533.600000pt;}
.x92_c00144{left:534.666667pt;}
.x26_c00144{left:536.800000pt;}
.x1a_c00144{left:543.333333pt;}
.x51_c00144{left:547.066667pt;}
.x5c_c00144{left:549.733333pt;}
.x34_c00144{left:552.533333pt;}
.x72_c00144{left:553.733333pt;}
.x9c_c00144{left:555.733333pt;}
.x52_c00144{left:565.333333pt;}
.xe_c00144{left:566.533333pt;}
.x43_c00144{left:567.733333pt;}
.x35_c00144{left:569.200000pt;}
.x67_c00144{left:572.400000pt;}
.x5d_c00144{left:578.533333pt;}
.xf_c00144{left:579.600000pt;}
.x27_c00144{left:583.466667pt;}
.x5e_c00144{left:588.400000pt;}
.x36_c00144{left:589.333333pt;}
.x83_c00144{left:590.800000pt;}
.x1b_c00144{left:592.266667pt;}
.x68_c00144{left:597.733333pt;}
.x53_c00144{left:602.400000pt;}
.x73_c00144{left:614.533333pt;}
.x7c_c00144{left:616.133333pt;}
.x93_c00144{left:621.066667pt;}
.x44_c00144{left:627.600000pt;}
.x74_c00144{left:631.466667pt;}
.x54_c00144{left:638.933333pt;}
.x84_c00144{left:641.466667pt;}
.x10_c00144{left:644.933333pt;}
.x1c_c00144{left:647.600000pt;}
.x37_c00144{left:654.000000pt;}
.x75_c00144{left:656.133333pt;}
.x28_c00144{left:657.733333pt;}
.x11_c00144{left:662.533333pt;}
.x5f_c00144{left:663.866667pt;}
.x1d_c00144{left:668.133333pt;}
.x38_c00144{left:671.333333pt;}
.x76_c00144{left:675.600000pt;}
.x60_c00144{left:678.933333pt;}
.x85_c00144{left:680.133333pt;}
.x39_c00144{left:694.000000pt;}
.x12_c00144{left:696.800000pt;}
.x29_c00144{left:707.066667pt;}
.x77_c00144{left:713.333333pt;}
.x45_c00144{left:714.933333pt;}
.x94_c00144{left:717.066667pt;}
.x69_c00144{left:721.866667pt;}
.x61_c00144{left:723.066667pt;}
}





/* 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_c00145 {
    display:none;
  }
  .loading-indicator_c00145.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00145 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_c00145 { 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_c00145" -> "#page-container .classname_c00145")
 */
.pf_c00145 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00145 { /* 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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00145 { /* 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_c00145 { /* 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_c00145 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00145 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00145 {overflow:visible;}
  }
}
.c_c00145 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00145 { /* 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_c00145:after { /* webkit #35443 */
  content: '';
}
.t_c00145:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00145 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 */
}
.__c00145 { /* 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_c00145 { /* info for Javascript */
  display:none;
}
.l_c00145 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00145 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00145 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00145: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_c00145 {
    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_c00145.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00145.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_c00145 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00145{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00145;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.000000;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;}
.md_c00145{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00145{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m63_c00145{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00145{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00145{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m48_c00145{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00145{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m44_c00145{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m67_c00145{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00145{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m43_c00145{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00145{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00145{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m37_c00145{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m76_c00145{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00145{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m64_c00145{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m72_c00145{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00145{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00145{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m91_c00145{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m49_c00145{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00145{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m23_c00145{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m47_c00145{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00145{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00145{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m68_c00145{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00145{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00145{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.maa_c00145{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00145{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m60_c00145{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00145{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00145{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m81_c00145{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00145{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m99_c00145{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m94_c00145{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m59_c00145{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00145{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00145{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m85_c00145{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00145{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m36_c00145{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00145{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m87_c00145{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m18_c00145{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00145{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00145{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m40_c00145{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00145{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m31_c00145{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00145{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m35_c00145{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mab_c00145{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m33_c00145{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00145{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00145{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m66_c00145{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);}
.m2a_c00145{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m90_c00145{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00145{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00145{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m24_c00145{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m82_c00145{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m80_c00145{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00145{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m77_c00145{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m45_c00145{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00145{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m78_c00145{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m88_c00145{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00145{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m73_c00145{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m69_c00145{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m97_c00145{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m65_c00145{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00145{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00145{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m89_c00145{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00145{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00145{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m34_c00145{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m83_c00145{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m62_c00145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00145{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m57_c00145{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00145{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00145{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m71_c00145{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m93_c00145{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m95_c00145{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m74_c00145{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m79_c00145{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00145{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m16_c00145{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00145{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m86_c00145{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00145{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m61_c00145{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m84_c00145{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00145{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m70_c00145{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00145{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m42_c00145{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00145{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00145{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m92_c00145{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m58_c00145{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m96_c00145{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m55_c00145{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00145{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m3_c00145{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m5_c00145{transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);}
.mc_c00145{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m6_c00145{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00145{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m1_c00145{transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00145{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.v0_c00145{vertical-align:0.000000px;}
.ls0_c00145{letter-spacing:0.000000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{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__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00145{word-spacing:-5.555556px;}
.ws7_c00145{word-spacing:-1.617420px;}
.wsa_c00145{word-spacing:0.000000px;}
.ws6_c00145{word-spacing:1.500000px;}
.ws9_c00145{word-spacing:3.125000px;}
.ws5_c00145{word-spacing:9.000000px;}
.ws1_c00145{word-spacing:9.456177px;}
.ws4_c00145{word-spacing:10.674699px;}
.ws3_c00145{word-spacing:13.166667px;}
.ws0_c00145{word-spacing:15.250000px;}
.ws2_c00145{word-spacing:43.166667px;}
.fc0_c00145{color:transparent;}
.fs2_c00145{font-size:42.000000px;}
.fs1_c00145{font-size:54.000000px;}
.fs0_c00145{font-size:78.000000px;}
.y0_c00145{bottom:0.000000px;}
.y25_c00145{bottom:161.400000px;}
.y24_c00145{bottom:181.200000px;}
.y23_c00145{bottom:201.300000px;}
.y22_c00145{bottom:221.100000px;}
.y21_c00145{bottom:240.900000px;}
.y20_c00145{bottom:260.700000px;}
.y1f_c00145{bottom:280.800000px;}
.y1e_c00145{bottom:300.600000px;}
.y1d_c00145{bottom:320.100000px;}
.y1c_c00145{bottom:339.900000px;}
.y1b_c00145{bottom:360.000000px;}
.y1a_c00145{bottom:379.800000px;}
.y19_c00145{bottom:399.900000px;}
.y18_c00145{bottom:420.000000px;}
.y17_c00145{bottom:440.100000px;}
.y16_c00145{bottom:459.600000px;}
.y15_c00145{bottom:479.400000px;}
.y14_c00145{bottom:499.200000px;}
.y13_c00145{bottom:519.300000px;}
.y12_c00145{bottom:539.100000px;}
.y11_c00145{bottom:559.200000px;}
.y10_c00145{bottom:579.300000px;}
.yf_c00145{bottom:598.500000px;}
.ye_c00145{bottom:619.050000px;}
.yd_c00145{bottom:639.150000px;}
.yc_c00145{bottom:658.650000px;}
.yb_c00145{bottom:678.450000px;}
.ya_c00145{bottom:698.550000px;}
.y9_c00145{bottom:718.350000px;}
.y8_c00145{bottom:738.150000px;}
.y7_c00145{bottom:757.950000px;}
.y6_c00145{bottom:778.050000px;}
.y5_c00145{bottom:798.150000px;}
.y4_c00145{bottom:830.550000px;}
.y3_c00145{bottom:851.100000px;}
.y2_c00145{bottom:883.500000px;}
.y1_c00145{bottom:1051.500000px;}
.h4_c00145{height:42.000000px;}
.h3_c00145{height:54.000000px;}
.h2_c00145{height:78.000000px;}
.h1_c00145{height:1167.750000px;}
.h0_c00145{height:1167.839997px;}
.w1_c00145{width:920.250000px;}
.w0_c00145{width:920.519990px;}
.x0_c00145{left:0.000000px;}
.x13_c00145{left:121.350000px;}
.x65_c00145{left:122.550000px;}
.x91_c00145{left:123.900000px;}
.xaf_c00145{left:125.550000px;}
.x92_c00145{left:140.850000px;}
.x42_c00145{left:142.650000px;}
.x59_c00145{left:144.450000px;}
.x78_c00145{left:148.500000px;}
.x4_c00145{left:151.950000px;}
.x83_c00145{left:154.500000px;}
.x103_c00145{left:156.450000px;}
.x14_c00145{left:159.450000px;}
.x29_c00145{left:160.650000px;}
.x1f_c00145{left:163.950000px;}
.x93_c00145{left:165.750000px;}
.xcf_c00145{left:167.400000px;}
.x10f_c00145{left:168.750000px;}
.xa0_c00145{left:171.000000px;}
.x5a_c00145{left:173.250000px;}
.x66_c00145{left:181.200000px;}
.x2a_c00145{left:184.050000px;}
.x4d_c00145{left:189.300000px;}
.xd0_c00145{left:192.300000px;}
.xc5_c00145{left:193.650000px;}
.xfa_c00145{left:196.350000px;}
.x36_c00145{left:199.350000px;}
.x5b_c00145{left:202.050000px;}
.x72_c00145{left:203.550000px;}
.x115_c00145{left:205.950000px;}
.xa1_c00145{left:207.300000px;}
.xe1_c00145{left:212.100000px;}
.x43_c00145{left:214.200000px;}
.x104_c00145{left:216.600000px;}
.x94_c00145{left:217.950000px;}
.xcb_c00145{left:219.600000px;}
.x37_c00145{left:221.700000px;}
.xe7_c00145{left:224.850000px;}
.x84_c00145{left:226.500000px;}
.x119_c00145{left:227.550000px;}
.x4e_c00145{left:232.500000px;}
.x10a_c00145{left:235.650000px;}
.xdc_c00145{left:237.000000px;}
.x44_c00145{left:238.350000px;}
.x5_c00145{left:239.850000px;}
.xb0_c00145{left:241.500000px;}
.x15_c00145{left:242.550000px;}
.x79_c00145{left:244.950000px;}
.x73_c00145{left:247.500000px;}
.x2b_c00145{left:250.350000px;}
.x38_c00145{left:252.600000px;}
.x95_c00145{left:253.950000px;}
.xed_c00145{left:256.200000px;}
.xb6_c00145{left:257.400000px;}
.xf2_c00145{left:259.950000px;}
.x85_c00145{left:262.200000px;}
.x45_c00145{left:266.100000px;}
.x74_c00145{left:268.800000px;}
.xd5_c00145{left:270.600000px;}
.x110_c00145{left:272.100000px;}
.x20_c00145{left:274.500000px;}
.x67_c00145{left:276.300000px;}
.x5c_c00145{left:277.350000px;}
.xa2_c00145{left:279.300000px;}
.x96_c00145{left:282.450000px;}
.xfb_c00145{left:285.300000px;}
.x2c_c00145{left:286.650000px;}
.x116_c00145{left:288.750000px;}
.x39_c00145{left:291.450000px;}
.x86_c00145{left:293.550000px;}
.x16_c00145{left:296.250000px;}
.xb7_c00145{left:298.500000px;}
.x4f_c00145{left:300.150000px;}
.x105_c00145{left:302.250000px;}
.x68_c00145{left:304.800000px;}
.xfc_c00145{left:306.150000px;}
.x11a_c00145{left:307.500000px;}
.xb1_c00145{left:310.650000px;}
.x3a_c00145{left:313.350000px;}
.x87_c00145{left:315.450000px;}
.xb8_c00145{left:319.350000px;}
.xcc_c00145{left:321.450000px;}
.x50_c00145{left:322.500000px;}
.x7a_c00145{left:323.850000px;}
.xbf_c00145{left:325.800000px;}
.x6_c00145{left:327.000000px;}
.xb9_c00145{left:330.450000px;}
.x5d_c00145{left:332.850000px;}
.x106_c00145{left:334.650000px;}
.xe_c00145{left:336.600000px;}
.xf3_c00145{left:337.650000px;}
.x46_c00145{left:339.150000px;}
.xa8_c00145{left:340.650000px;}
.x21_c00145{left:343.200000px;}
.x3b_c00145{left:344.700000px;}
.x75_c00145{left:347.250000px;}
.xf_c00145{left:350.700000px;}
.x17_c00145{left:351.750000px;}
.x51_c00145{left:353.100000px;}
.x69_c00145{left:354.900000px;}
.x2d_c00145{left:356.850000px;}
.x97_c00145{left:358.350000px;}
.x11b_c00145{left:360.450000px;}
.xee_c00145{left:361.950000px;}
.xe8_c00145{left:364.500000px;}
.xa3_c00145{left:366.450000px;}
.xb2_c00145{left:369.000000px;}
.x10_c00145{left:370.200000px;}
.xc6_c00145{left:372.900000px;}
.x98_c00145{left:375.600000px;}
.xfd_c00145{left:377.100000px;}
.x88_c00145{left:379.200000px;}
.x5e_c00145{left:382.200000px;}
.xdd_c00145{left:384.450000px;}
.x7_c00145{left:386.100000px;}
.x76_c00145{left:387.900000px;}
.x22_c00145{left:389.700000px;}
.x18_c00145{left:392.100000px;}
.x107_c00145{left:395.850000px;}
.xd6_c00145{left:397.350000px;}
.x89_c00145{left:398.700000px;}
.x2_c00145{left:400.650000px;}
.x11c_c00145{left:402.900000px;}
.x5f_c00145{left:404.550000px;}
.xa9_c00145{left:408.750000px;}
.x2e_c00145{left:411.600000px;}
.x7b_c00145{left:415.350000px;}
.x6a_c00145{left:419.700000px;}
.x3c_c00145{left:421.350000px;}
.xba_c00145{left:422.700000px;}
.xe2_c00145{left:424.200000px;}
.x19_c00145{left:426.000000px;}
.xe9_c00145{left:428.550000px;}
.xd1_c00145{left:429.600000px;}
.x2f_c00145{left:431.400000px;}
.x11_c00145{left:432.900000px;}
.x52_c00145{left:434.850000px;}
.x8_c00145{left:438.300000px;}
.x47_c00145{left:440.700000px;}
.x1_c00145{left:443.100000px;}
.xa4_c00145{left:446.700000px;}
.x108_c00145{left:447.750000px;}
.xd7_c00145{left:451.050000px;}
.xc0_c00145{left:453.300000px;}
.xd2_c00145{left:454.800000px;}
.xf4_c00145{left:456.450000px;}
.x53_c00145{left:457.500000px;}
.x99_c00145{left:459.600000px;}
.x3d_c00145{left:460.650000px;}
.x6b_c00145{left:462.900000px;}
.x1a_c00145{left:467.400000px;}
.x8a_c00145{left:471.000000px;}
.xd8_c00145{left:474.450000px;}
.x48_c00145{left:477.750000px;}
.x60_c00145{left:478.950000px;}
.x23_c00145{left:481.050000px;}
.xbb_c00145{left:482.850000px;}
.x3_c00145{left:485.250000px;}
.xcd_c00145{left:486.750000px;}
.x9_c00145{left:488.400000px;}
.xf5_c00145{left:490.350000px;}
.x3e_c00145{left:491.550000px;}
.xd9_c00145{left:493.200000px;}
.xde_c00145{left:497.850000px;}
.xd3_c00145{left:499.800000px;}
.x7c_c00145{left:501.450000px;}
.xa_c00145{left:503.850000px;}
.x12_c00145{left:505.200000px;}
.x8b_c00145{left:506.700000px;}
.xc7_c00145{left:507.900000px;}
.xa5_c00145{left:510.450000px;}
.x54_c00145{left:512.550000px;}
.xd4_c00145{left:516.750000px;}
.x117_c00145{left:518.100000px;}
.x111_c00145{left:519.600000px;}
.x109_c00145{left:520.800000px;}
.xea_c00145{left:522.150000px;}
.xc8_c00145{left:524.100000px;}
.xf6_c00145{left:526.350000px;}
.x61_c00145{left:527.550000px;}
.x49_c00145{left:532.050000px;}
.x112_c00145{left:533.700000px;}
.x30_c00145{left:535.050000px;}
.x24_c00145{left:538.650000px;}
.x10b_c00145{left:540.300000px;}
.xeb_c00145{left:541.650000px;}
.x55_c00145{left:543.900000px;}
.x9a_c00145{left:546.750000px;}
.xb3_c00145{left:548.400000px;}
.x7d_c00145{left:549.750000px;}
.xb_c00145{left:551.700000px;}
.x8c_c00145{left:556.050000px;}
.x6c_c00145{left:557.850000px;}
.x3f_c00145{left:559.200000px;}
.xc9_c00145{left:561.900000px;}
.xc1_c00145{left:563.100000px;}
.x9b_c00145{left:564.450000px;}
.x62_c00145{left:567.900000px;}
.xe3_c00145{left:570.300000px;}
.x4a_c00145{left:571.650000px;}
.x10c_c00145{left:572.700000px;}
.x1b_c00145{left:573.900000px;}
.x7e_c00145{left:575.250000px;}
.xfe_c00145{left:576.600000px;}
.x31_c00145{left:580.050000px;}
.xc_c00145{left:582.000000px;}
.x56_c00145{left:584.550000px;}
.x25_c00145{left:586.500000px;}
.xaa_c00145{left:589.800000px;}
.xf7_c00145{left:591.900000px;}
.xdf_c00145{left:593.550000px;}
.xff_c00145{left:595.650000px;}
.xef_c00145{left:598.500000px;}
.x63_c00145{left:600.600000px;}
.x1c_c00145{left:605.550000px;}
.xda_c00145{left:608.100000px;}
.xf8_c00145{left:612.450000px;}
.xe4_c00145{left:613.500000px;}
.xc2_c00145{left:614.550000px;}
.x40_c00145{left:616.500000px;}
.xab_c00145{left:619.350000px;}
.x7f_c00145{left:621.000000px;}
.xf0_c00145{left:623.700000px;}
.x10d_c00145{left:625.200000px;}
.x113_c00145{left:628.350000px;}
.x118_c00145{left:631.500000px;}
.x32_c00145{left:633.300000px;}
.x100_c00145{left:634.950000px;}
.xbc_c00145{left:637.200000px;}
.xca_c00145{left:640.350000px;}
.x57_c00145{left:641.850000px;}
.xa6_c00145{left:643.650000px;}
.xec_c00145{left:646.800000px;}
.x6d_c00145{left:649.650000px;}
.x8d_c00145{left:651.150000px;}
.x80_c00145{left:652.350000px;}
.x1d_c00145{left:654.150000px;}
.x26_c00145{left:655.650000px;}
.xb4_c00145{left:658.200000px;}
.x9c_c00145{left:660.900000px;}
.x114_c00145{left:663.600000px;}
.x6e_c00145{left:664.800000px;}
.x77_c00145{left:666.900000px;}
.x33_c00145{left:669.600000px;}
.x8e_c00145{left:670.650000px;}
.x4b_c00145{left:675.600000px;}
.xe5_c00145{left:677.100000px;}
.x27_c00145{left:678.750000px;}
.x81_c00145{left:680.100000px;}
.x101_c00145{left:681.750000px;}
.x9d_c00145{left:683.550000px;}
.xd_c00145{left:685.350000px;}
.x6f_c00145{left:688.500000px;}
.xbd_c00145{left:695.100000px;}
.xe0_c00145{left:696.300000px;}
.x8f_c00145{left:699.450000px;}
.x41_c00145{left:701.400000px;}
.x4c_c00145{left:705.150000px;}
.x9e_c00145{left:708.450000px;}
.x58_c00145{left:714.600000px;}
.xc3_c00145{left:715.650000px;}
.x70_c00145{left:717.600000px;}
.x90_c00145{left:719.250000px;}
.x10e_c00145{left:720.600000px;}
.xe6_c00145{left:721.650000px;}
.xf1_c00145{left:726.300000px;}
.x64_c00145{left:729.150000px;}
.xac_c00145{left:732.450000px;}
.x34_c00145{left:735.450000px;}
.xdb_c00145{left:738.450000px;}
.xf9_c00145{left:740.250000px;}
.xb5_c00145{left:742.050000px;}
.x82_c00145{left:745.650000px;}
.xc4_c00145{left:747.300000px;}
.x102_c00145{left:749.400000px;}
.xad_c00145{left:750.450000px;}
.xce_c00145{left:753.900000px;}
.x35_c00145{left:754.950000px;}
.x28_c00145{left:758.250000px;}
.x71_c00145{left:759.300000px;}
.xbe_c00145{left:760.950000px;}
.x1e_c00145{left:763.950000px;}
.xae_c00145{left:769.950000px;}
.xa7_c00145{left:774.300000px;}
.x9f_c00145{left:777.600000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws8_c00145{word-spacing:-4.938272pt;}
.ws7_c00145{word-spacing:-1.437707pt;}
.wsa_c00145{word-spacing:0.000000pt;}
.ws6_c00145{word-spacing:1.333333pt;}
.ws9_c00145{word-spacing:2.777778pt;}
.ws5_c00145{word-spacing:8.000000pt;}
.ws1_c00145{word-spacing:8.405491pt;}
.ws4_c00145{word-spacing:9.488621pt;}
.ws3_c00145{word-spacing:11.703704pt;}
.ws0_c00145{word-spacing:13.555556pt;}
.ws2_c00145{word-spacing:38.370370pt;}
.fs2_c00145{font-size:37.333333pt;}
.fs1_c00145{font-size:48.000000pt;}
.fs0_c00145{font-size:69.333333pt;}
.y0_c00145{bottom:0.000000pt;}
.y25_c00145{bottom:143.466667pt;}
.y24_c00145{bottom:161.066667pt;}
.y23_c00145{bottom:178.933333pt;}
.y22_c00145{bottom:196.533333pt;}
.y21_c00145{bottom:214.133333pt;}
.y20_c00145{bottom:231.733333pt;}
.y1f_c00145{bottom:249.600000pt;}
.y1e_c00145{bottom:267.200000pt;}
.y1d_c00145{bottom:284.533333pt;}
.y1c_c00145{bottom:302.133333pt;}
.y1b_c00145{bottom:320.000000pt;}
.y1a_c00145{bottom:337.600000pt;}
.y19_c00145{bottom:355.466667pt;}
.y18_c00145{bottom:373.333333pt;}
.y17_c00145{bottom:391.200000pt;}
.y16_c00145{bottom:408.533333pt;}
.y15_c00145{bottom:426.133333pt;}
.y14_c00145{bottom:443.733333pt;}
.y13_c00145{bottom:461.600000pt;}
.y12_c00145{bottom:479.200000pt;}
.y11_c00145{bottom:497.066667pt;}
.y10_c00145{bottom:514.933333pt;}
.yf_c00145{bottom:532.000000pt;}
.ye_c00145{bottom:550.266667pt;}
.yd_c00145{bottom:568.133333pt;}
.yc_c00145{bottom:585.466667pt;}
.yb_c00145{bottom:603.066667pt;}
.ya_c00145{bottom:620.933333pt;}
.y9_c00145{bottom:638.533333pt;}
.y8_c00145{bottom:656.133333pt;}
.y7_c00145{bottom:673.733333pt;}
.y6_c00145{bottom:691.600000pt;}
.y5_c00145{bottom:709.466667pt;}
.y4_c00145{bottom:738.266667pt;}
.y3_c00145{bottom:756.533333pt;}
.y2_c00145{bottom:785.333333pt;}
.y1_c00145{bottom:934.666667pt;}
.h4_c00145{height:37.333333pt;}
.h3_c00145{height:48.000000pt;}
.h2_c00145{height:69.333333pt;}
.h1_c00145{height:1038.000000pt;}
.h0_c00145{height:1038.079997pt;}
.w1_c00145{width:818.000000pt;}
.w0_c00145{width:818.239991pt;}
.x0_c00145{left:0.000000pt;}
.x13_c00145{left:107.866667pt;}
.x65_c00145{left:108.933333pt;}
.x91_c00145{left:110.133333pt;}
.xaf_c00145{left:111.600000pt;}
.x92_c00145{left:125.200000pt;}
.x42_c00145{left:126.800000pt;}
.x59_c00145{left:128.400000pt;}
.x78_c00145{left:132.000000pt;}
.x4_c00145{left:135.066667pt;}
.x83_c00145{left:137.333333pt;}
.x103_c00145{left:139.066667pt;}
.x14_c00145{left:141.733333pt;}
.x29_c00145{left:142.800000pt;}
.x1f_c00145{left:145.733333pt;}
.x93_c00145{left:147.333333pt;}
.xcf_c00145{left:148.800000pt;}
.x10f_c00145{left:150.000000pt;}
.xa0_c00145{left:152.000000pt;}
.x5a_c00145{left:154.000000pt;}
.x66_c00145{left:161.066667pt;}
.x2a_c00145{left:163.600000pt;}
.x4d_c00145{left:168.266667pt;}
.xd0_c00145{left:170.933333pt;}
.xc5_c00145{left:172.133333pt;}
.xfa_c00145{left:174.533333pt;}
.x36_c00145{left:177.200000pt;}
.x5b_c00145{left:179.600000pt;}
.x72_c00145{left:180.933333pt;}
.x115_c00145{left:183.066667pt;}
.xa1_c00145{left:184.266667pt;}
.xe1_c00145{left:188.533333pt;}
.x43_c00145{left:190.400000pt;}
.x104_c00145{left:192.533333pt;}
.x94_c00145{left:193.733333pt;}
.xcb_c00145{left:195.200000pt;}
.x37_c00145{left:197.066667pt;}
.xe7_c00145{left:199.866667pt;}
.x84_c00145{left:201.333333pt;}
.x119_c00145{left:202.266667pt;}
.x4e_c00145{left:206.666667pt;}
.x10a_c00145{left:209.466667pt;}
.xdc_c00145{left:210.666667pt;}
.x44_c00145{left:211.866667pt;}
.x5_c00145{left:213.200000pt;}
.xb0_c00145{left:214.666667pt;}
.x15_c00145{left:215.600000pt;}
.x79_c00145{left:217.733333pt;}
.x73_c00145{left:220.000000pt;}
.x2b_c00145{left:222.533333pt;}
.x38_c00145{left:224.533333pt;}
.x95_c00145{left:225.733333pt;}
.xed_c00145{left:227.733333pt;}
.xb6_c00145{left:228.800000pt;}
.xf2_c00145{left:231.066667pt;}
.x85_c00145{left:233.066667pt;}
.x45_c00145{left:236.533333pt;}
.x74_c00145{left:238.933333pt;}
.xd5_c00145{left:240.533333pt;}
.x110_c00145{left:241.866667pt;}
.x20_c00145{left:244.000000pt;}
.x67_c00145{left:245.600000pt;}
.x5c_c00145{left:246.533333pt;}
.xa2_c00145{left:248.266667pt;}
.x96_c00145{left:251.066667pt;}
.xfb_c00145{left:253.600000pt;}
.x2c_c00145{left:254.800000pt;}
.x116_c00145{left:256.666667pt;}
.x39_c00145{left:259.066667pt;}
.x86_c00145{left:260.933333pt;}
.x16_c00145{left:263.333333pt;}
.xb7_c00145{left:265.333333pt;}
.x4f_c00145{left:266.800000pt;}
.x105_c00145{left:268.666667pt;}
.x68_c00145{left:270.933333pt;}
.xfc_c00145{left:272.133333pt;}
.x11a_c00145{left:273.333333pt;}
.xb1_c00145{left:276.133333pt;}
.x3a_c00145{left:278.533333pt;}
.x87_c00145{left:280.400000pt;}
.xb8_c00145{left:283.866667pt;}
.xcc_c00145{left:285.733333pt;}
.x50_c00145{left:286.666667pt;}
.x7a_c00145{left:287.866667pt;}
.xbf_c00145{left:289.600000pt;}
.x6_c00145{left:290.666667pt;}
.xb9_c00145{left:293.733333pt;}
.x5d_c00145{left:295.866667pt;}
.x106_c00145{left:297.466667pt;}
.xe_c00145{left:299.200000pt;}
.xf3_c00145{left:300.133333pt;}
.x46_c00145{left:301.466667pt;}
.xa8_c00145{left:302.800000pt;}
.x21_c00145{left:305.066667pt;}
.x3b_c00145{left:306.400000pt;}
.x75_c00145{left:308.666667pt;}
.xf_c00145{left:311.733333pt;}
.x17_c00145{left:312.666667pt;}
.x51_c00145{left:313.866667pt;}
.x69_c00145{left:315.466667pt;}
.x2d_c00145{left:317.200000pt;}
.x97_c00145{left:318.533333pt;}
.x11b_c00145{left:320.400000pt;}
.xee_c00145{left:321.733333pt;}
.xe8_c00145{left:324.000000pt;}
.xa3_c00145{left:325.733333pt;}
.xb2_c00145{left:328.000000pt;}
.x10_c00145{left:329.066667pt;}
.xc6_c00145{left:331.466667pt;}
.x98_c00145{left:333.866667pt;}
.xfd_c00145{left:335.200000pt;}
.x88_c00145{left:337.066667pt;}
.x5e_c00145{left:339.733333pt;}
.xdd_c00145{left:341.733333pt;}
.x7_c00145{left:343.200000pt;}
.x76_c00145{left:344.800000pt;}
.x22_c00145{left:346.400000pt;}
.x18_c00145{left:348.533333pt;}
.x107_c00145{left:351.866667pt;}
.xd6_c00145{left:353.200000pt;}
.x89_c00145{left:354.400000pt;}
.x2_c00145{left:356.133333pt;}
.x11c_c00145{left:358.133333pt;}
.x5f_c00145{left:359.600000pt;}
.xa9_c00145{left:363.333333pt;}
.x2e_c00145{left:365.866667pt;}
.x7b_c00145{left:369.200000pt;}
.x6a_c00145{left:373.066667pt;}
.x3c_c00145{left:374.533333pt;}
.xba_c00145{left:375.733333pt;}
.xe2_c00145{left:377.066667pt;}
.x19_c00145{left:378.666667pt;}
.xe9_c00145{left:380.933333pt;}
.xd1_c00145{left:381.866667pt;}
.x2f_c00145{left:383.466667pt;}
.x11_c00145{left:384.800000pt;}
.x52_c00145{left:386.533333pt;}
.x8_c00145{left:389.600000pt;}
.x47_c00145{left:391.733333pt;}
.x1_c00145{left:393.866667pt;}
.xa4_c00145{left:397.066667pt;}
.x108_c00145{left:398.000000pt;}
.xd7_c00145{left:400.933333pt;}
.xc0_c00145{left:402.933333pt;}
.xd2_c00145{left:404.266667pt;}
.xf4_c00145{left:405.733333pt;}
.x53_c00145{left:406.666667pt;}
.x99_c00145{left:408.533333pt;}
.x3d_c00145{left:409.466667pt;}
.x6b_c00145{left:411.466667pt;}
.x1a_c00145{left:415.466667pt;}
.x8a_c00145{left:418.666667pt;}
.xd8_c00145{left:421.733333pt;}
.x48_c00145{left:424.666667pt;}
.x60_c00145{left:425.733333pt;}
.x23_c00145{left:427.600000pt;}
.xbb_c00145{left:429.200000pt;}
.x3_c00145{left:431.333333pt;}
.xcd_c00145{left:432.666667pt;}
.x9_c00145{left:434.133333pt;}
.xf5_c00145{left:435.866667pt;}
.x3e_c00145{left:436.933333pt;}
.xd9_c00145{left:438.400000pt;}
.xde_c00145{left:442.533333pt;}
.xd3_c00145{left:444.266667pt;}
.x7c_c00145{left:445.733333pt;}
.xa_c00145{left:447.866667pt;}
.x12_c00145{left:449.066667pt;}
.x8b_c00145{left:450.400000pt;}
.xc7_c00145{left:451.466667pt;}
.xa5_c00145{left:453.733333pt;}
.x54_c00145{left:455.600000pt;}
.xd4_c00145{left:459.333333pt;}
.x117_c00145{left:460.533333pt;}
.x111_c00145{left:461.866667pt;}
.x109_c00145{left:462.933333pt;}
.xea_c00145{left:464.133333pt;}
.xc8_c00145{left:465.866667pt;}
.xf6_c00145{left:467.866667pt;}
.x61_c00145{left:468.933333pt;}
.x49_c00145{left:472.933333pt;}
.x112_c00145{left:474.400000pt;}
.x30_c00145{left:475.600000pt;}
.x24_c00145{left:478.800000pt;}
.x10b_c00145{left:480.266667pt;}
.xeb_c00145{left:481.466667pt;}
.x55_c00145{left:483.466667pt;}
.x9a_c00145{left:486.000000pt;}
.xb3_c00145{left:487.466667pt;}
.x7d_c00145{left:488.666667pt;}
.xb_c00145{left:490.400000pt;}
.x8c_c00145{left:494.266667pt;}
.x6c_c00145{left:495.866667pt;}
.x3f_c00145{left:497.066667pt;}
.xc9_c00145{left:499.466667pt;}
.xc1_c00145{left:500.533333pt;}
.x9b_c00145{left:501.733333pt;}
.x62_c00145{left:504.800000pt;}
.xe3_c00145{left:506.933333pt;}
.x4a_c00145{left:508.133333pt;}
.x10c_c00145{left:509.066667pt;}
.x1b_c00145{left:510.133333pt;}
.x7e_c00145{left:511.333333pt;}
.xfe_c00145{left:512.533333pt;}
.x31_c00145{left:515.600000pt;}
.xc_c00145{left:517.333333pt;}
.x56_c00145{left:519.600000pt;}
.x25_c00145{left:521.333333pt;}
.xaa_c00145{left:524.266667pt;}
.xf7_c00145{left:526.133333pt;}
.xdf_c00145{left:527.600000pt;}
.xff_c00145{left:529.466667pt;}
.xef_c00145{left:532.000000pt;}
.x63_c00145{left:533.866667pt;}
.x1c_c00145{left:538.266667pt;}
.xda_c00145{left:540.533333pt;}
.xf8_c00145{left:544.400000pt;}
.xe4_c00145{left:545.333333pt;}
.xc2_c00145{left:546.266667pt;}
.x40_c00145{left:548.000000pt;}
.xab_c00145{left:550.533333pt;}
.x7f_c00145{left:552.000000pt;}
.xf0_c00145{left:554.400000pt;}
.x10d_c00145{left:555.733333pt;}
.x113_c00145{left:558.533333pt;}
.x118_c00145{left:561.333333pt;}
.x32_c00145{left:562.933333pt;}
.x100_c00145{left:564.400000pt;}
.xbc_c00145{left:566.400000pt;}
.xca_c00145{left:569.200000pt;}
.x57_c00145{left:570.533333pt;}
.xa6_c00145{left:572.133333pt;}
.xec_c00145{left:574.933333pt;}
.x6d_c00145{left:577.466667pt;}
.x8d_c00145{left:578.800000pt;}
.x80_c00145{left:579.866667pt;}
.x1d_c00145{left:581.466667pt;}
.x26_c00145{left:582.800000pt;}
.xb4_c00145{left:585.066667pt;}
.x9c_c00145{left:587.466667pt;}
.x114_c00145{left:589.866667pt;}
.x6e_c00145{left:590.933333pt;}
.x77_c00145{left:592.800000pt;}
.x33_c00145{left:595.200000pt;}
.x8e_c00145{left:596.133333pt;}
.x4b_c00145{left:600.533333pt;}
.xe5_c00145{left:601.866667pt;}
.x27_c00145{left:603.333333pt;}
.x81_c00145{left:604.533333pt;}
.x101_c00145{left:606.000000pt;}
.x9d_c00145{left:607.600000pt;}
.xd_c00145{left:609.200000pt;}
.x6f_c00145{left:612.000000pt;}
.xbd_c00145{left:617.866667pt;}
.xe0_c00145{left:618.933333pt;}
.x8f_c00145{left:621.733333pt;}
.x41_c00145{left:623.466667pt;}
.x4c_c00145{left:626.800000pt;}
.x9e_c00145{left:629.733333pt;}
.x58_c00145{left:635.200000pt;}
.xc3_c00145{left:636.133333pt;}
.x70_c00145{left:637.866667pt;}
.x90_c00145{left:639.333333pt;}
.x10e_c00145{left:640.533333pt;}
.xe6_c00145{left:641.466667pt;}
.xf1_c00145{left:645.600000pt;}
.x64_c00145{left:648.133333pt;}
.xac_c00145{left:651.066667pt;}
.x34_c00145{left:653.733333pt;}
.xdb_c00145{left:656.400000pt;}
.xf9_c00145{left:658.000000pt;}
.xb5_c00145{left:659.600000pt;}
.x82_c00145{left:662.800000pt;}
.xc4_c00145{left:664.266667pt;}
.x102_c00145{left:666.133333pt;}
.xad_c00145{left:667.066667pt;}
.xce_c00145{left:670.133333pt;}
.x35_c00145{left:671.066667pt;}
.x28_c00145{left:674.000000pt;}
.x71_c00145{left:674.933333pt;}
.xbe_c00145{left:676.400000pt;}
.x1e_c00145{left:679.066667pt;}
.xae_c00145{left:684.400000pt;}
.xa7_c00145{left:688.266667pt;}
.x9f_c00145{left:691.200000pt;}
}





/* 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_c00146 {
    display:none;
  }
  .loading-indicator_c00146.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00146 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_c00146 { 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_c00146" -> "#page-container .classname_c00146")
 */
.pf_c00146 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00146 { /* 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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00146 { /* 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_c00146 { /* 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_c00146 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00146 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00146 {overflow:visible;}
  }
}
.c_c00146 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00146 { /* 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_c00146:after { /* webkit #35443 */
  content: '';
}
.t_c00146:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00146 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 */
}
.__c00146 { /* 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_c00146 { /* info for Javascript */
  display:none;
}
.l_c00146 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00146 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00146 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00146: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_c00146 {
    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_c00146.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00146.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_c00146 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00146{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00146;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.000000;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;}
.m61_c00146{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m76_c00146{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m69_c00146{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00146{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m87_c00146{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00146{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m56_c00146{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00146{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00146{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m48_c00146{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m28_c00146{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m13_c00146{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m40_c00146{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m20_c00146{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m73_c00146{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00146{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m71_c00146{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m49_c00146{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m15_c00146{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00146{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.md_c00146{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00146{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m23_c00146{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m58_c00146{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m34_c00146{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00146{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00146{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00146{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m47_c00146{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m64_c00146{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m55_c00146{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m75_c00146{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m26_c00146{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m37_c00146{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m80_c00146{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m45_c00146{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m14_c00146{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m50_c00146{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00146{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00146{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{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);}
.m25_c00146{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00146{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m89_c00146{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00146{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m84_c00146{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m85_c00146{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00146{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00146{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00146{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00146{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m79_c00146{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.ls0_c00146{letter-spacing:0.000000px;}
.sc__c00146{text-shadow:none;}
.sc0_c00146{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__c00146{-webkit-text-stroke:0px transparent;}
.sc0_c00146{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00146{word-spacing:-7.023810px;}
.ws5_c00146{word-spacing:-3.611111px;}
.ws4_c00146{word-spacing:-2.409639px;}
.ws8_c00146{word-spacing:0.000000px;}
.ws1_c00146{word-spacing:2.469136px;}
.ws6_c00146{word-spacing:6.388889px;}
.ws0_c00146{word-spacing:6.527778px;}
.ws3_c00146{word-spacing:17.288136px;}
.ws2_c00146{word-spacing:21.428571px;}
.fc0_c00146{color:transparent;}
.fs0_c00146{font-size:60.000000px;}
.y0_c00146{bottom:0.000000px;}
.y2d_c00146{bottom:151.950000px;}
.y2c_c00146{bottom:171.750000px;}
.y2b_c00146{bottom:192.300000px;}
.y2a_c00146{bottom:211.800000px;}
.y29_c00146{bottom:231.600000px;}
.y28_c00146{bottom:251.400000px;}
.y27_c00146{bottom:271.200000px;}
.y26_c00146{bottom:291.000000px;}
.y25_c00146{bottom:310.800000px;}
.y24_c00146{bottom:330.900000px;}
.y23_c00146{bottom:350.700000px;}
.y22_c00146{bottom:370.500000px;}
.y21_c00146{bottom:390.600000px;}
.y20_c00146{bottom:410.400000px;}
.y1f_c00146{bottom:430.500000px;}
.y1e_c00146{bottom:450.150000px;}
.y1d_c00146{bottom:470.250000px;}
.y1c_c00146{bottom:490.050000px;}
.y1b_c00146{bottom:510.600000px;}
.y1a_c00146{bottom:530.400000px;}
.y19_c00146{bottom:550.200000px;}
.y18_c00146{bottom:570.000000px;}
.y17_c00146{bottom:590.100000px;}
.y16_c00146{bottom:609.900000px;}
.y15_c00146{bottom:630.000000px;}
.y14_c00146{bottom:649.800000px;}
.y13_c00146{bottom:669.600000px;}
.y12_c00146{bottom:689.400000px;}
.y11_c00146{bottom:709.500000px;}
.y10_c00146{bottom:729.600000px;}
.yf_c00146{bottom:749.700000px;}
.ye_c00146{bottom:769.800000px;}
.yd_c00146{bottom:789.900000px;}
.yc_c00146{bottom:809.700000px;}
.yb_c00146{bottom:829.200000px;}
.ya_c00146{bottom:849.300000px;}
.y9_c00146{bottom:869.100000px;}
.y8_c00146{bottom:889.200000px;}
.y7_c00146{bottom:909.000000px;}
.y6_c00146{bottom:928.800000px;}
.y5_c00146{bottom:948.600000px;}
.y4_c00146{bottom:968.400000px;}
.y3_c00146{bottom:988.500000px;}
.y2_c00146{bottom:1008.000000px;}
.y1_c00146{bottom:1046.850000px;}
.h2_c00146{height:60.000000px;}
.h1_c00146{height:1167.750000px;}
.h0_c00146{height:1167.839997px;}
.w1_c00146{width:920.250000px;}
.w0_c00146{width:920.519990px;}
.x0_c00146{left:0.000000px;}
.x110_c00146{left:132.600000px;}
.xff_c00146{left:134.100000px;}
.xce_c00146{left:135.900000px;}
.x8f_c00146{left:136.950000px;}
.x73_c00146{left:138.000000px;}
.x44_c00146{left:139.050000px;}
.x13_c00146{left:140.100000px;}
.x1_c00146{left:141.450000px;}
.x104_c00146{left:149.100000px;}
.x120_c00146{left:150.750000px;}
.xae_c00146{left:152.550000px;}
.x12b_c00146{left:154.050000px;}
.x51_c00146{left:159.600000px;}
.x134_c00146{left:164.100000px;}
.xa4_c00146{left:165.300000px;}
.x90_c00146{left:166.500000px;}
.x9b_c00146{left:168.150000px;}
.x74_c00146{left:169.200000px;}
.x38_c00146{left:170.700000px;}
.x3_c00146{left:171.750000px;}
.x10b_c00146{left:172.950000px;}
.xb5_c00146{left:175.050000px;}
.x45_c00146{left:176.550000px;}
.x14_c00146{left:177.600000px;}
.x121_c00146{left:178.800000px;}
.xde_c00146{left:179.850000px;}
.x7e_c00146{left:181.950000px;}
.x60_c00146{left:185.700000px;}
.x9c_c00146{left:187.950000px;}
.x75_c00146{left:189.750000px;}
.x4_c00146{left:191.250000px;}
.x39_c00146{left:194.100000px;}
.xe8_c00146{left:198.900000px;}
.xc8_c00146{left:202.950000px;}
.x52_c00146{left:204.600000px;}
.x76_c00146{left:207.750000px;}
.x2f_c00146{left:209.850000px;}
.x61_c00146{left:211.200000px;}
.x6a_c00146{left:213.750000px;}
.x111_c00146{left:215.100000px;}
.x105_c00146{left:216.300000px;}
.x20_c00146{left:218.250000px;}
.x77_c00146{left:222.450000px;}
.x3a_c00146{left:223.650000px;}
.xe9_c00146{left:228.450000px;}
.xcf_c00146{left:229.950000px;}
.x5_c00146{left:231.150000px;}
.x21_c00146{left:232.950000px;}
.x15_c00146{left:234.450000px;}
.x6b_c00146{left:237.150000px;}
.xd3_c00146{left:238.200000px;}
.x7f_c00146{left:239.850000px;}
.x9d_c00146{left:241.200000px;}
.xef_c00146{left:242.400000px;}
.x53_c00146{left:243.900000px;}
.xf4_c00146{left:245.700000px;}
.x106_c00146{left:248.700000px;}
.xd8_c00146{left:249.750000px;}
.xc9_c00146{left:252.300000px;}
.x30_c00146{left:253.350000px;}
.xa5_c00146{left:255.300000px;}
.x3b_c00146{left:257.100000px;}
.x128_c00146{left:258.600000px;}
.xf7_c00146{left:260.400000px;}
.x10d_c00146{left:261.450000px;}
.x16_c00146{left:263.550000px;}
.x6_c00146{left:266.400000px;}
.x22_c00146{left:267.900000px;}
.x46_c00146{left:270.150000px;}
.x112_c00146{left:271.950000px;}
.x130_c00146{left:274.800000px;}
.x78_c00146{left:276.450000px;}
.x91_c00146{left:278.100000px;}
.x80_c00146{left:279.750000px;}
.xdf_c00146{left:281.400000px;}
.x6c_c00146{left:282.900000px;}
.xb6_c00146{left:285.000000px;}
.x107_c00146{left:286.200000px;}
.x31_c00146{left:287.250000px;}
.xbf_c00146{left:290.400000px;}
.xa6_c00146{left:292.800000px;}
.x7_c00146{left:295.500000px;}
.x92_c00146{left:296.850000px;}
.xf5_c00146{left:300.450000px;}
.x23_c00146{left:302.100000px;}
.x54_c00146{left:305.850000px;}
.x47_c00146{left:306.900000px;}
.x88_c00146{left:308.100000px;}
.xb7_c00146{left:309.900000px;}
.x113_c00146{left:311.250000px;}
.xf8_c00146{left:312.900000px;}
.x8_c00146{left:317.850000px;}
.xa7_c00146{left:320.850000px;}
.xc0_c00146{left:324.300000px;}
.x11b_c00146{left:325.800000px;}
.xd9_c00146{left:327.600000px;}
.xf9_c00146{left:330.900000px;}
.xe1_c00146{left:333.450000px;}
.x48_c00146{left:336.000000px;}
.x131_c00146{left:337.050000px;}
.x17_c00146{left:338.100000px;}
.x129_c00146{left:340.350000px;}
.x24_c00146{left:341.700000px;}
.xf0_c00146{left:345.450000px;}
.x3c_c00146{left:347.550000px;}
.x118_c00146{left:349.050000px;}
.x9_c00146{left:353.100000px;}
.x79_c00146{left:356.400000px;}
.xa8_c00146{left:357.900000px;}
.xfa_c00146{left:358.950000px;}
.x55_c00146{left:360.600000px;}
.x62_c00146{left:361.950000px;}
.x100_c00146{left:363.450000px;}
.xe2_c00146{left:365.100000px;}
.x32_c00146{left:366.900000px;}
.x12a_c00146{left:370.200000px;}
.x93_c00146{left:371.400000px;}
.xa_c00146{left:372.600000px;}
.x10c_c00146{left:374.550000px;}
.x18_c00146{left:376.200000px;}
.xda_c00146{left:380.550000px;}
.x12c_c00146{left:382.200000px;}
.x56_c00146{left:383.250000px;}
.x49_c00146{left:386.400000px;}
.xaf_c00146{left:387.600000px;}
.x89_c00146{left:388.650000px;}
.x25_c00146{left:391.050000px;}
.xfb_c00146{left:392.400000px;}
.x7a_c00146{left:393.900000px;}
.xb8_c00146{left:395.850000px;}
.x81_c00146{left:398.550000px;}
.x6d_c00146{left:401.250000px;}
.xf6_c00146{left:402.600000px;}
.x94_c00146{left:405.300000px;}
.x101_c00146{left:411.000000px;}
.x26_c00146{left:412.650000px;}
.x63_c00146{left:417.000000px;}
.x114_c00146{left:418.500000px;}
.x8a_c00146{left:419.550000px;}
.x33_c00146{left:424.200000px;}
.x3d_c00146{left:426.750000px;}
.xfc_c00146{left:428.700000px;}
.xd4_c00146{left:429.750000px;}
.x95_c00146{left:430.800000px;}
.xd0_c00146{left:432.000000px;}
.x4a_c00146{left:436.050000px;}
.xe3_c00146{left:437.550000px;}
.x2_c00146{left:438.750000px;}
.x122_c00146{left:439.800000px;}
.xb9_c00146{left:441.150000px;}
.x3e_c00146{left:444.750000px;}
.x102_c00146{left:446.700000px;}
.x7b_c00146{left:449.700000px;}
.x133_c00146{left:452.700000px;}
.xfd_c00146{left:455.700000px;}
.x19_c00146{left:457.200000px;}
.xb_c00146{left:459.300000px;}
.x96_c00146{left:461.100000px;}
.xba_c00146{left:463.050000px;}
.x4b_c00146{left:464.550000px;}
.x82_c00146{left:469.050000px;}
.x57_c00146{left:470.700000px;}
.x64_c00146{left:472.800000px;}
.xd1_c00146{left:474.900000px;}
.x132_c00146{left:476.250000px;}
.x9e_c00146{left:480.900000px;}
.xc_c00146{left:483.450000px;}
.xb0_c00146{left:484.500000px;}
.xc1_c00146{left:485.850000px;}
.xea_c00146{left:488.400000px;}
.xa9_c00146{left:490.800000px;}
.x58_c00146{left:492.000000px;}
.x6e_c00146{left:493.800000px;}
.x34_c00146{left:496.200000px;}
.x11c_c00146{left:498.600000px;}
.x8b_c00146{left:500.550000px;}
.x83_c00146{left:505.050000px;}
.xf1_c00146{left:506.100000px;}
.xc2_c00146{left:507.450000px;}
.x10e_c00146{left:511.200000px;}
.x35_c00146{left:513.150000px;}
.x12d_c00146{left:514.500000px;}
.xaa_c00146{left:515.700000px;}
.x27_c00146{left:517.800000px;}
.x59_c00146{left:520.800000px;}
.xb1_c00146{left:522.000000px;}
.x115_c00146{left:523.500000px;}
.xd_c00146{left:526.350000px;}
.x1a_c00146{left:527.700000px;}
.x3f_c00146{left:529.650000px;}
.xca_c00146{left:531.000000px;}
.xc3_c00146{left:533.700000px;}
.x65_c00146{left:535.800000px;}
.xdb_c00146{left:539.700000px;}
.x4c_c00146{left:541.200000px;}
.xe0_c00146{left:542.400000px;}
.x123_c00146{left:547.050000px;}
.x6f_c00146{left:549.300000px;}
.x28_c00146{left:551.700000px;}
.xe_c00146{left:554.400000px;}
.xdc_c00146{left:556.950000px;}
.x8c_c00146{left:560.700000px;}
.x9f_c00146{left:561.900000px;}
.x5a_c00146{left:565.500000px;}
.x66_c00146{left:566.700000px;}
.x97_c00146{left:567.900000px;}
.xc4_c00146{left:571.500000px;}
.x10f_c00146{left:572.700000px;}
.xcb_c00146{left:573.900000px;}
.x84_c00146{left:576.000000px;}
.x4d_c00146{left:577.200000px;}
.x40_c00146{left:578.550000px;}
.xe4_c00146{left:583.350000px;}
.xb2_c00146{left:586.800000px;}
.x1b_c00146{left:588.600000px;}
.x29_c00146{left:590.550000px;}
.xa0_c00146{left:592.200000px;}
.xd2_c00146{left:593.700000px;}
.x126_c00146{left:594.750000px;}
.x70_c00146{left:597.900000px;}
.x67_c00146{left:600.600000px;}
.xf_c00146{left:604.800000px;}
.x36_c00146{left:609.300000px;}
.xa1_c00146{left:610.950000px;}
.xbb_c00146{left:613.950000px;}
.xd5_c00146{left:617.100000px;}
.x119_c00146{left:618.300000px;}
.xeb_c00146{left:620.100000px;}
.x5b_c00146{left:621.300000px;}
.xf2_c00146{left:623.850000px;}
.x7c_c00146{left:626.100000px;}
.xb3_c00146{left:627.900000px;}
.x1c_c00146{left:628.950000px;}
.x85_c00146{left:630.750000px;}
.xc5_c00146{left:633.300000px;}
.xa2_c00146{left:637.650000px;}
.x11d_c00146{left:638.700000px;}
.x5c_c00146{left:640.350000px;}
.xf3_c00146{left:643.350000px;}
.xbc_c00146{left:646.050000px;}
.x108_c00146{left:647.250000px;}
.xab_c00146{left:648.600000px;}
.x10_c00146{left:650.850000px;}
.x71_c00146{left:652.200000px;}
.x37_c00146{left:653.550000px;}
.x2a_c00146{left:655.350000px;}
.xb4_c00146{left:656.700000px;}
.xe5_c00146{left:658.650000px;}
.x11a_c00146{left:660.000000px;}
.x41_c00146{left:661.050000px;}
.xd6_c00146{left:663.600000px;}
.xcc_c00146{left:664.650000px;}
.x86_c00146{left:668.850000px;}
.x11_c00146{left:670.650000px;}
.x12e_c00146{left:672.150000px;}
.x68_c00146{left:673.350000px;}
.x2b_c00146{left:676.950000px;}
.xbd_c00146{left:678.450000px;}
.x4e_c00146{left:679.800000px;}
.x5d_c00146{left:682.500000px;}
.x1d_c00146{left:684.450000px;}
.x98_c00146{left:687.450000px;}
.x116_c00146{left:688.650000px;}
.xac_c00146{left:689.700000px;}
.x7d_c00146{left:690.900000px;}
.xcd_c00146{left:696.000000px;}
.x42_c00146{left:698.550000px;}
.x124_c00146{left:700.800000px;}
.xc6_c00146{left:702.000000px;}
.x11e_c00146{left:706.800000px;}
.x4f_c00146{left:709.650000px;}
.xec_c00146{left:711.900000px;}
.x135_c00146{left:715.200000px;}
.x1e_c00146{left:717.150000px;}
.x5e_c00146{left:718.200000px;}
.x117_c00146{left:719.550000px;}
.xe6_c00146{left:726.300000px;}
.x72_c00146{left:728.400000px;}
.x69_c00146{left:730.650000px;}
.x2c_c00146{left:732.450000px;}
.xfe_c00146{left:734.250000px;}
.xa3_c00146{left:736.350000px;}
.x99_c00146{left:739.350000px;}
.x109_c00146{left:742.050000px;}
.xd7_c00146{left:746.100000px;}
.x87_c00146{left:747.300000px;}
.x127_c00146{left:748.800000px;}
.x43_c00146{left:750.000000px;}
.x8d_c00146{left:751.950000px;}
.x12_c00146{left:753.150000px;}
.x11f_c00146{left:754.950000px;}
.x1f_c00146{left:757.800000px;}
.x12f_c00146{left:760.350000px;}
.x10a_c00146{left:761.550000px;}
.x2d_c00146{left:763.050000px;}
.xed_c00146{left:765.600000px;}
.xe7_c00146{left:766.650000px;}
.x50_c00146{left:768.000000px;}
.xad_c00146{left:769.200000px;}
.x5f_c00146{left:772.200000px;}
.xc7_c00146{left:773.250000px;}
.xdd_c00146{left:774.600000px;}
.x103_c00146{left:775.950000px;}
.x125_c00146{left:777.450000px;}
.x8e_c00146{left:779.250000px;}
.x9a_c00146{left:783.300000px;}
.x2e_c00146{left:785.400000px;}
.xbe_c00146{left:791.550000px;}
.xee_c00146{left:798.000000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws7_c00146{word-spacing:-6.243386pt;}
.ws5_c00146{word-spacing:-3.209877pt;}
.ws4_c00146{word-spacing:-2.141901pt;}
.ws8_c00146{word-spacing:0.000000pt;}
.ws1_c00146{word-spacing:2.194787pt;}
.ws6_c00146{word-spacing:5.679012pt;}
.ws0_c00146{word-spacing:5.802469pt;}
.ws3_c00146{word-spacing:15.367232pt;}
.ws2_c00146{word-spacing:19.047619pt;}
.fs0_c00146{font-size:53.333333pt;}
.y0_c00146{bottom:0.000000pt;}
.y2d_c00146{bottom:135.066667pt;}
.y2c_c00146{bottom:152.666667pt;}
.y2b_c00146{bottom:170.933333pt;}
.y2a_c00146{bottom:188.266667pt;}
.y29_c00146{bottom:205.866667pt;}
.y28_c00146{bottom:223.466667pt;}
.y27_c00146{bottom:241.066667pt;}
.y26_c00146{bottom:258.666667pt;}
.y25_c00146{bottom:276.266667pt;}
.y24_c00146{bottom:294.133333pt;}
.y23_c00146{bottom:311.733333pt;}
.y22_c00146{bottom:329.333333pt;}
.y21_c00146{bottom:347.200000pt;}
.y20_c00146{bottom:364.800000pt;}
.y1f_c00146{bottom:382.666667pt;}
.y1e_c00146{bottom:400.133333pt;}
.y1d_c00146{bottom:418.000000pt;}
.y1c_c00146{bottom:435.600000pt;}
.y1b_c00146{bottom:453.866667pt;}
.y1a_c00146{bottom:471.466667pt;}
.y19_c00146{bottom:489.066667pt;}
.y18_c00146{bottom:506.666667pt;}
.y17_c00146{bottom:524.533333pt;}
.y16_c00146{bottom:542.133333pt;}
.y15_c00146{bottom:560.000000pt;}
.y14_c00146{bottom:577.600000pt;}
.y13_c00146{bottom:595.200000pt;}
.y12_c00146{bottom:612.800000pt;}
.y11_c00146{bottom:630.666667pt;}
.y10_c00146{bottom:648.533333pt;}
.yf_c00146{bottom:666.400000pt;}
.ye_c00146{bottom:684.266667pt;}
.yd_c00146{bottom:702.133333pt;}
.yc_c00146{bottom:719.733333pt;}
.yb_c00146{bottom:737.066667pt;}
.ya_c00146{bottom:754.933333pt;}
.y9_c00146{bottom:772.533333pt;}
.y8_c00146{bottom:790.400000pt;}
.y7_c00146{bottom:808.000000pt;}
.y6_c00146{bottom:825.600000pt;}
.y5_c00146{bottom:843.200000pt;}
.y4_c00146{bottom:860.800000pt;}
.y3_c00146{bottom:878.666667pt;}
.y2_c00146{bottom:896.000000pt;}
.y1_c00146{bottom:930.533333pt;}
.h2_c00146{height:53.333333pt;}
.h1_c00146{height:1038.000000pt;}
.h0_c00146{height:1038.079997pt;}
.w1_c00146{width:818.000000pt;}
.w0_c00146{width:818.239991pt;}
.x0_c00146{left:0.000000pt;}
.x110_c00146{left:117.866667pt;}
.xff_c00146{left:119.200000pt;}
.xce_c00146{left:120.800000pt;}
.x8f_c00146{left:121.733333pt;}
.x73_c00146{left:122.666667pt;}
.x44_c00146{left:123.600000pt;}
.x13_c00146{left:124.533333pt;}
.x1_c00146{left:125.733333pt;}
.x104_c00146{left:132.533333pt;}
.x120_c00146{left:134.000000pt;}
.xae_c00146{left:135.600000pt;}
.x12b_c00146{left:136.933333pt;}
.x51_c00146{left:141.866667pt;}
.x134_c00146{left:145.866667pt;}
.xa4_c00146{left:146.933333pt;}
.x90_c00146{left:148.000000pt;}
.x9b_c00146{left:149.466667pt;}
.x74_c00146{left:150.400000pt;}
.x38_c00146{left:151.733333pt;}
.x3_c00146{left:152.666667pt;}
.x10b_c00146{left:153.733333pt;}
.xb5_c00146{left:155.600000pt;}
.x45_c00146{left:156.933333pt;}
.x14_c00146{left:157.866667pt;}
.x121_c00146{left:158.933333pt;}
.xde_c00146{left:159.866667pt;}
.x7e_c00146{left:161.733333pt;}
.x60_c00146{left:165.066667pt;}
.x9c_c00146{left:167.066667pt;}
.x75_c00146{left:168.666667pt;}
.x4_c00146{left:170.000000pt;}
.x39_c00146{left:172.533333pt;}
.xe8_c00146{left:176.800000pt;}
.xc8_c00146{left:180.400000pt;}
.x52_c00146{left:181.866667pt;}
.x76_c00146{left:184.666667pt;}
.x2f_c00146{left:186.533333pt;}
.x61_c00146{left:187.733333pt;}
.x6a_c00146{left:190.000000pt;}
.x111_c00146{left:191.200000pt;}
.x105_c00146{left:192.266667pt;}
.x20_c00146{left:194.000000pt;}
.x77_c00146{left:197.733333pt;}
.x3a_c00146{left:198.800000pt;}
.xe9_c00146{left:203.066667pt;}
.xcf_c00146{left:204.400000pt;}
.x5_c00146{left:205.466667pt;}
.x21_c00146{left:207.066667pt;}
.x15_c00146{left:208.400000pt;}
.x6b_c00146{left:210.800000pt;}
.xd3_c00146{left:211.733333pt;}
.x7f_c00146{left:213.200000pt;}
.x9d_c00146{left:214.400000pt;}
.xef_c00146{left:215.466667pt;}
.x53_c00146{left:216.800000pt;}
.xf4_c00146{left:218.400000pt;}
.x106_c00146{left:221.066667pt;}
.xd8_c00146{left:222.000000pt;}
.xc9_c00146{left:224.266667pt;}
.x30_c00146{left:225.200000pt;}
.xa5_c00146{left:226.933333pt;}
.x3b_c00146{left:228.533333pt;}
.x128_c00146{left:229.866667pt;}
.xf7_c00146{left:231.466667pt;}
.x10d_c00146{left:232.400000pt;}
.x16_c00146{left:234.266667pt;}
.x6_c00146{left:236.800000pt;}
.x22_c00146{left:238.133333pt;}
.x46_c00146{left:240.133333pt;}
.x112_c00146{left:241.733333pt;}
.x130_c00146{left:244.266667pt;}
.x78_c00146{left:245.733333pt;}
.x91_c00146{left:247.200000pt;}
.x80_c00146{left:248.666667pt;}
.xdf_c00146{left:250.133333pt;}
.x6c_c00146{left:251.466667pt;}
.xb6_c00146{left:253.333333pt;}
.x107_c00146{left:254.400000pt;}
.x31_c00146{left:255.333333pt;}
.xbf_c00146{left:258.133333pt;}
.xa6_c00146{left:260.266667pt;}
.x7_c00146{left:262.666667pt;}
.x92_c00146{left:263.866667pt;}
.xf5_c00146{left:267.066667pt;}
.x23_c00146{left:268.533333pt;}
.x54_c00146{left:271.866667pt;}
.x47_c00146{left:272.800000pt;}
.x88_c00146{left:273.866667pt;}
.xb7_c00146{left:275.466667pt;}
.x113_c00146{left:276.666667pt;}
.xf8_c00146{left:278.133333pt;}
.x8_c00146{left:282.533333pt;}
.xa7_c00146{left:285.200000pt;}
.xc0_c00146{left:288.266667pt;}
.x11b_c00146{left:289.600000pt;}
.xd9_c00146{left:291.200000pt;}
.xf9_c00146{left:294.133333pt;}
.xe1_c00146{left:296.400000pt;}
.x48_c00146{left:298.666667pt;}
.x131_c00146{left:299.600000pt;}
.x17_c00146{left:300.533333pt;}
.x129_c00146{left:302.533333pt;}
.x24_c00146{left:303.733333pt;}
.xf0_c00146{left:307.066667pt;}
.x3c_c00146{left:308.933333pt;}
.x118_c00146{left:310.266667pt;}
.x9_c00146{left:313.866667pt;}
.x79_c00146{left:316.800000pt;}
.xa8_c00146{left:318.133333pt;}
.xfa_c00146{left:319.066667pt;}
.x55_c00146{left:320.533333pt;}
.x62_c00146{left:321.733333pt;}
.x100_c00146{left:323.066667pt;}
.xe2_c00146{left:324.533333pt;}
.x32_c00146{left:326.133333pt;}
.x12a_c00146{left:329.066667pt;}
.x93_c00146{left:330.133333pt;}
.xa_c00146{left:331.200000pt;}
.x10c_c00146{left:332.933333pt;}
.x18_c00146{left:334.400000pt;}
.xda_c00146{left:338.266667pt;}
.x12c_c00146{left:339.733333pt;}
.x56_c00146{left:340.666667pt;}
.x49_c00146{left:343.466667pt;}
.xaf_c00146{left:344.533333pt;}
.x89_c00146{left:345.466667pt;}
.x25_c00146{left:347.600000pt;}
.xfb_c00146{left:348.800000pt;}
.x7a_c00146{left:350.133333pt;}
.xb8_c00146{left:351.866667pt;}
.x81_c00146{left:354.266667pt;}
.x6d_c00146{left:356.666667pt;}
.xf6_c00146{left:357.866667pt;}
.x94_c00146{left:360.266667pt;}
.x101_c00146{left:365.333333pt;}
.x26_c00146{left:366.800000pt;}
.x63_c00146{left:370.666667pt;}
.x114_c00146{left:372.000000pt;}
.x8a_c00146{left:372.933333pt;}
.x33_c00146{left:377.066667pt;}
.x3d_c00146{left:379.333333pt;}
.xfc_c00146{left:381.066667pt;}
.xd4_c00146{left:382.000000pt;}
.x95_c00146{left:382.933333pt;}
.xd0_c00146{left:384.000000pt;}
.x4a_c00146{left:387.600000pt;}
.xe3_c00146{left:388.933333pt;}
.x2_c00146{left:390.000000pt;}
.x122_c00146{left:390.933333pt;}
.xb9_c00146{left:392.133333pt;}
.x3e_c00146{left:395.333333pt;}
.x102_c00146{left:397.066667pt;}
.x7b_c00146{left:399.733333pt;}
.x133_c00146{left:402.400000pt;}
.xfd_c00146{left:405.066667pt;}
.x19_c00146{left:406.400000pt;}
.xb_c00146{left:408.266667pt;}
.x96_c00146{left:409.866667pt;}
.xba_c00146{left:411.600000pt;}
.x4b_c00146{left:412.933333pt;}
.x82_c00146{left:416.933333pt;}
.x57_c00146{left:418.400000pt;}
.x64_c00146{left:420.266667pt;}
.xd1_c00146{left:422.133333pt;}
.x132_c00146{left:423.333333pt;}
.x9e_c00146{left:427.466667pt;}
.xc_c00146{left:429.733333pt;}
.xb0_c00146{left:430.666667pt;}
.xc1_c00146{left:431.866667pt;}
.xea_c00146{left:434.133333pt;}
.xa9_c00146{left:436.266667pt;}
.x58_c00146{left:437.333333pt;}
.x6e_c00146{left:438.933333pt;}
.x34_c00146{left:441.066667pt;}
.x11c_c00146{left:443.200000pt;}
.x8b_c00146{left:444.933333pt;}
.x83_c00146{left:448.933333pt;}
.xf1_c00146{left:449.866667pt;}
.xc2_c00146{left:451.066667pt;}
.x10e_c00146{left:454.400000pt;}
.x35_c00146{left:456.133333pt;}
.x12d_c00146{left:457.333333pt;}
.xaa_c00146{left:458.400000pt;}
.x27_c00146{left:460.266667pt;}
.x59_c00146{left:462.933333pt;}
.xb1_c00146{left:464.000000pt;}
.x115_c00146{left:465.333333pt;}
.xd_c00146{left:467.866667pt;}
.x1a_c00146{left:469.066667pt;}
.x3f_c00146{left:470.800000pt;}
.xca_c00146{left:472.000000pt;}
.xc3_c00146{left:474.400000pt;}
.x65_c00146{left:476.266667pt;}
.xdb_c00146{left:479.733333pt;}
.x4c_c00146{left:481.066667pt;}
.xe0_c00146{left:482.133333pt;}
.x123_c00146{left:486.266667pt;}
.x6f_c00146{left:488.266667pt;}
.x28_c00146{left:490.400000pt;}
.xe_c00146{left:492.800000pt;}
.xdc_c00146{left:495.066667pt;}
.x8c_c00146{left:498.400000pt;}
.x9f_c00146{left:499.466667pt;}
.x5a_c00146{left:502.666667pt;}
.x66_c00146{left:503.733333pt;}
.x97_c00146{left:504.800000pt;}
.xc4_c00146{left:508.000000pt;}
.x10f_c00146{left:509.066667pt;}
.xcb_c00146{left:510.133333pt;}
.x84_c00146{left:512.000000pt;}
.x4d_c00146{left:513.066667pt;}
.x40_c00146{left:514.266667pt;}
.xe4_c00146{left:518.533333pt;}
.xb2_c00146{left:521.600000pt;}
.x1b_c00146{left:523.200000pt;}
.x29_c00146{left:524.933333pt;}
.xa0_c00146{left:526.400000pt;}
.xd2_c00146{left:527.733333pt;}
.x126_c00146{left:528.666667pt;}
.x70_c00146{left:531.466667pt;}
.x67_c00146{left:533.866667pt;}
.xf_c00146{left:537.600000pt;}
.x36_c00146{left:541.600000pt;}
.xa1_c00146{left:543.066667pt;}
.xbb_c00146{left:545.733333pt;}
.xd5_c00146{left:548.533333pt;}
.x119_c00146{left:549.600000pt;}
.xeb_c00146{left:551.200000pt;}
.x5b_c00146{left:552.266667pt;}
.xf2_c00146{left:554.533333pt;}
.x7c_c00146{left:556.533333pt;}
.xb3_c00146{left:558.133333pt;}
.x1c_c00146{left:559.066667pt;}
.x85_c00146{left:560.666667pt;}
.xc5_c00146{left:562.933333pt;}
.xa2_c00146{left:566.800000pt;}
.x11d_c00146{left:567.733333pt;}
.x5c_c00146{left:569.200000pt;}
.xf3_c00146{left:571.866667pt;}
.xbc_c00146{left:574.266667pt;}
.x108_c00146{left:575.333333pt;}
.xab_c00146{left:576.533333pt;}
.x10_c00146{left:578.533333pt;}
.x71_c00146{left:579.733333pt;}
.x37_c00146{left:580.933333pt;}
.x2a_c00146{left:582.533333pt;}
.xb4_c00146{left:583.733333pt;}
.xe5_c00146{left:585.466667pt;}
.x11a_c00146{left:586.666667pt;}
.x41_c00146{left:587.600000pt;}
.xd6_c00146{left:589.866667pt;}
.xcc_c00146{left:590.800000pt;}
.x86_c00146{left:594.533333pt;}
.x11_c00146{left:596.133333pt;}
.x12e_c00146{left:597.466667pt;}
.x68_c00146{left:598.533333pt;}
.x2b_c00146{left:601.733333pt;}
.xbd_c00146{left:603.066667pt;}
.x4e_c00146{left:604.266667pt;}
.x5d_c00146{left:606.666667pt;}
.x1d_c00146{left:608.400000pt;}
.x98_c00146{left:611.066667pt;}
.x116_c00146{left:612.133333pt;}
.xac_c00146{left:613.066667pt;}
.x7d_c00146{left:614.133333pt;}
.xcd_c00146{left:618.666667pt;}
.x42_c00146{left:620.933333pt;}
.x124_c00146{left:622.933333pt;}
.xc6_c00146{left:624.000000pt;}
.x11e_c00146{left:628.266667pt;}
.x4f_c00146{left:630.800000pt;}
.xec_c00146{left:632.800000pt;}
.x135_c00146{left:635.733333pt;}
.x1e_c00146{left:637.466667pt;}
.x5e_c00146{left:638.400000pt;}
.x117_c00146{left:639.600000pt;}
.xe6_c00146{left:645.600000pt;}
.x72_c00146{left:647.466667pt;}
.x69_c00146{left:649.466667pt;}
.x2c_c00146{left:651.066667pt;}
.xfe_c00146{left:652.666667pt;}
.xa3_c00146{left:654.533333pt;}
.x99_c00146{left:657.200000pt;}
.x109_c00146{left:659.600000pt;}
.xd7_c00146{left:663.200000pt;}
.x87_c00146{left:664.266667pt;}
.x127_c00146{left:665.600000pt;}
.x43_c00146{left:666.666667pt;}
.x8d_c00146{left:668.400000pt;}
.x12_c00146{left:669.466667pt;}
.x11f_c00146{left:671.066667pt;}
.x1f_c00146{left:673.600000pt;}
.x12f_c00146{left:675.866667pt;}
.x10a_c00146{left:676.933333pt;}
.x2d_c00146{left:678.266667pt;}
.xed_c00146{left:680.533333pt;}
.xe7_c00146{left:681.466667pt;}
.x50_c00146{left:682.666667pt;}
.xad_c00146{left:683.733333pt;}
.x5f_c00146{left:686.400000pt;}
.xc7_c00146{left:687.333333pt;}
.xdd_c00146{left:688.533333pt;}
.x103_c00146{left:689.733333pt;}
.x125_c00146{left:691.066667pt;}
.x8e_c00146{left:692.666667pt;}
.x9a_c00146{left:696.266667pt;}
.x2e_c00146{left:698.133333pt;}
.xbe_c00146{left:703.600000pt;}
.xee_c00146{left:709.333333pt;}
}





/* 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_c00147 {
    display:none;
  }
  .loading-indicator_c00147.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00147 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_c00147 { 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_c00147" -> "#page-container .classname_c00147")
 */
.pf_c00147 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00147 { /* 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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00147 { /* 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_c00147 { /* 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_c00147 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00147 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00147 {overflow:visible;}
  }
}
.c_c00147 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00147 { /* 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_c00147:after { /* webkit #35443 */
  content: '';
}
.t_c00147:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00147 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 */
}
.__c00147 { /* 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_c00147 { /* info for Javascript */
  display:none;
}
.l_c00147 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00147 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00147 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00147: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_c00147 {
    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_c00147.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00147.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_c00147 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00147{font-family:sans-serif;visibility:hidden;}
.sc__c00147{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
}
.y0_c00147{bottom:0.000000px;}
.h1_c00147{height:1167.750000px;}
.h0_c00147{height:1167.839997px;}
.w1_c00147{width:920.250000px;}
.w0_c00147{width:920.519990px;}
.x0_c00147{left:0.000000px;}
@media print{
.y0_c00147{bottom:0.000000pt;}
.h1_c00147{height:1038.000000pt;}
.h0_c00147{height:1038.079997pt;}
.w1_c00147{width:818.000000pt;}
.w0_c00147{width:818.239991pt;}
.x0_c00147{left:0.000000pt;}
}





/* 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_c00148 {
    display:none;
  }
  .loading-indicator_c00148.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00148 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_c00148 { 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_c00148" -> "#page-container .classname_c00148")
 */
.pf_c00148 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00148 { /* 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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00148 { /* 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_c00148 { /* 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_c00148 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00148 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00148 {overflow:visible;}
  }
}
.c_c00148 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00148 { /* 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_c00148:after { /* webkit #35443 */
  content: '';
}
.t_c00148:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00148 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 */
}
.__c00148 { /* 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_c00148 { /* info for Javascript */
  display:none;
}
.l_c00148 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00148 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00148 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00148: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_c00148 {
    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_c00148.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00148.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_c00148 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00148{font-family:sans-serif;visibility:hidden;}
.sc__c00148{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
}
.y0_c00148{bottom:0.000000px;}
.h1_c00148{height:1167.750000px;}
.h0_c00148{height:1167.839997px;}
.w1_c00148{width:920.250000px;}
.w0_c00148{width:920.519990px;}
.x0_c00148{left:0.000000px;}
@media print{
.y0_c00148{bottom:0.000000pt;}
.h1_c00148{height:1038.000000pt;}
.h0_c00148{height:1038.079997pt;}
.w1_c00148{width:818.000000pt;}
.w0_c00148{width:818.239991pt;}
.x0_c00148{left:0.000000pt;}
}





/* 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_c00149 {
    display:none;
  }
  .loading-indicator_c00149.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00149 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_c00149 { 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_c00149" -> "#page-container .classname_c00149")
 */
.pf_c00149 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00149 { /* 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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00149 { /* 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_c00149 { /* 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_c00149 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00149 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00149 {overflow:visible;}
  }
}
.c_c00149 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00149 { /* 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_c00149:after { /* webkit #35443 */
  content: '';
}
.t_c00149:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00149 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 */
}
.__c00149 { /* 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_c00149 { /* info for Javascript */
  display:none;
}
.l_c00149 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00149 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00149 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00149: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_c00149 {
    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_c00149.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00149.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_c00149 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00149{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00149;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.000000;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;}
.m50_c00149{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00149{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00149{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00149{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m67_c00149{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m46_c00149{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m16_c00149{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00149{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00149{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00149{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00149{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00149{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m74_c00149{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m26_c00149{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m79_c00149{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc_c00149{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m94_c00149{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00149{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00149{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m75_c00149{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9_c00149{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m73_c00149{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m58_c00149{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m81_c00149{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00149{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m49_c00149{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m57_c00149{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00149{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m18_c00149{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m63_c00149{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00149{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m84_c00149{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.me_c00149{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{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);}
.m32_c00149{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m71_c00149{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m61_c00149{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00149{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m60_c00149{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00149{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m5_c00149{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m41_c00149{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m24_c00149{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00149{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m22_c00149{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m86_c00149{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00149{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m77_c00149{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00149{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m1_c00149{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00149{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m25_c00149{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m0_c00149{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m59_c00149{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m98_c00149{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00149{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m36_c00149{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m54_c00149{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00149{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00149{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls0_c00149{letter-spacing:0.000000px;}
.sc__c00149{text-shadow:none;}
.sc0_c00149{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__c00149{-webkit-text-stroke:0px transparent;}
.sc0_c00149{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00149{word-spacing:0.000000px;}
.ws8_c00149{word-spacing:0.093750px;}
.ws7_c00149{word-spacing:0.250000px;}
.ws4_c00149{word-spacing:3.888889px;}
.ws5_c00149{word-spacing:6.079597px;}
.ws3_c00149{word-spacing:7.500000px;}
.ws6_c00149{word-spacing:7.777778px;}
.ws2_c00149{word-spacing:8.750000px;}
.ws1_c00149{word-spacing:9.867720px;}
.ws0_c00149{word-spacing:17.333333px;}
.fc0_c00149{color:transparent;}
.fs0_c00149{font-size:54.000000px;}
.y0_c00149{bottom:0.000000px;}
.y2b_c00149{bottom:151.200000px;}
.y2a_c00149{bottom:192.000000px;}
.y29_c00149{bottom:211.500000px;}
.y28_c00149{bottom:231.600000px;}
.y27_c00149{bottom:251.100000px;}
.y26_c00149{bottom:271.200000px;}
.y25_c00149{bottom:291.000000px;}
.y24_c00149{bottom:310.800000px;}
.y23_c00149{bottom:330.600000px;}
.y22_c00149{bottom:350.700000px;}
.y21_c00149{bottom:370.500000px;}
.y20_c00149{bottom:390.300000px;}
.y1f_c00149{bottom:410.100000px;}
.y1e_c00149{bottom:430.200000px;}
.y1d_c00149{bottom:450.000000px;}
.y1c_c00149{bottom:470.100000px;}
.y1b_c00149{bottom:489.900000px;}
.y1a_c00149{bottom:509.850000px;}
.y19_c00149{bottom:529.650000px;}
.y18_c00149{bottom:549.450000px;}
.y17_c00149{bottom:569.250000px;}
.y16_c00149{bottom:589.050000px;}
.y15_c00149{bottom:609.600000px;}
.y14_c00149{bottom:629.400000px;}
.y13_c00149{bottom:649.500000px;}
.y12_c00149{bottom:669.300000px;}
.y11_c00149{bottom:689.100000px;}
.y10_c00149{bottom:708.900000px;}
.yf_c00149{bottom:729.000000px;}
.ye_c00149{bottom:748.800000px;}
.yd_c00149{bottom:768.600000px;}
.yc_c00149{bottom:788.700000px;}
.yb_c00149{bottom:808.950000px;}
.ya_c00149{bottom:828.750000px;}
.y9_c00149{bottom:848.550000px;}
.y8_c00149{bottom:868.650000px;}
.y7_c00149{bottom:888.450000px;}
.y6_c00149{bottom:908.250000px;}
.y5_c00149{bottom:928.050000px;}
.y4_c00149{bottom:948.600000px;}
.y3_c00149{bottom:988.200000px;}
.y2_c00149{bottom:1008.300000px;}
.y1_c00149{bottom:1046.850000px;}
.h2_c00149{height:54.000000px;}
.h1_c00149{height:1167.750000px;}
.h0_c00149{height:1167.839997px;}
.w1_c00149{width:920.250000px;}
.w0_c00149{width:920.519990px;}
.x0_c00149{left:0.000000px;}
.x125_c00149{left:106.650000px;}
.xde_c00149{left:107.700000px;}
.x95_c00149{left:109.050000px;}
.x2c_c00149{left:110.100000px;}
.x5_c00149{left:111.300000px;}
.xd4_c00149{left:120.600000px;}
.xfb_c00149{left:123.150000px;}
.x13d_c00149{left:124.200000px;}
.x88_c00149{left:127.200000px;}
.xbc_c00149{left:128.400000px;}
.x2d_c00149{left:130.650000px;}
.xe2_c00149{left:136.200000px;}
.x67_c00149{left:138.300000px;}
.xf5_c00149{left:139.350000px;}
.x7e_c00149{left:140.700000px;}
.x20_c00149{left:141.900000px;}
.x16_c00149{left:146.700000px;}
.xa0_c00149{left:147.900000px;}
.x89_c00149{left:151.650000px;}
.x6_c00149{left:155.250000px;}
.x139_c00149{left:158.850000px;}
.x73_c00149{left:161.550000px;}
.x8a_c00149{left:162.750000px;}
.x17_c00149{left:166.500000px;}
.x10a_c00149{left:168.450000px;}
.x4d_c00149{left:169.650000px;}
.xe3_c00149{left:170.700000px;}
.x103_c00149{left:172.950000px;}
.x127_c00149{left:174.900000px;}
.xbd_c00149{left:176.550000px;}
.x96_c00149{left:177.750000px;}
.x5d_c00149{left:179.550000px;}
.x74_c00149{left:180.600000px;}
.x13c_c00149{left:182.700000px;}
.x7_c00149{left:187.650000px;}
.x2e_c00149{left:189.750000px;}
.xa1_c00149{left:192.600000px;}
.x21_c00149{left:193.800000px;}
.x97_c00149{left:195.450000px;}
.x110_c00149{left:197.550000px;}
.xc5_c00149{left:199.800000px;}
.xfc_c00149{left:201.900000px;}
.xab_c00149{left:202.950000px;}
.x54_c00149{left:204.150000px;}
.x126_c00149{left:205.650000px;}
.x18_c00149{left:206.850000px;}
.xe4_c00149{left:208.800000px;}
.xf2_c00149{left:209.850000px;}
.x22_c00149{left:211.500000px;}
.x131_c00149{left:213.900000px;}
.x8b_c00149{left:216.000000px;}
.x3e_c00149{left:217.050000px;}
.x75_c00149{left:219.450000px;}
.x134_c00149{left:220.650000px;}
.xeb_c00149{left:223.800000px;}
.x121_c00149{left:225.150000px;}
.x4e_c00149{left:226.500000px;}
.xa2_c00149{left:227.850000px;}
.x8_c00149{left:229.800000px;}
.x12b_c00149{left:232.050000px;}
.x7f_c00149{left:237.900000px;}
.xa6_c00149{left:239.850000px;}
.xac_c00149{left:242.250000px;}
.xc6_c00149{left:244.500000px;}
.x68_c00149{left:248.100000px;}
.xcd_c00149{left:249.750000px;}
.x76_c00149{left:252.150000px;}
.x98_c00149{left:253.350000px;}
.x2f_c00149{left:255.300000px;}
.xf6_c00149{left:256.650000px;}
.xbe_c00149{left:258.300000px;}
.x115_c00149{left:260.400000px;}
.x23_c00149{left:262.200000px;}
.xd5_c00149{left:263.250000px;}
.x99_c00149{left:264.450000px;}
.x4f_c00149{left:265.800000px;}
.xa7_c00149{left:266.850000px;}
.x135_c00149{left:268.950000px;}
.xad_c00149{left:270.300000px;}
.x3f_c00149{left:271.800000px;}
.xfd_c00149{left:272.850000px;}
.x30_c00149{left:275.100000px;}
.x19_c00149{left:278.100000px;}
.x69_c00149{left:282.300000px;}
.xb3_c00149{left:283.500000px;}
.x104_c00149{left:285.000000px;}
.xe5_c00149{left:286.200000px;}
.xbf_c00149{left:287.850000px;}
.x9a_c00149{left:289.650000px;}
.x9_c00149{left:292.800000px;}
.x116_c00149{left:297.150000px;}
.x1a_c00149{left:298.950000px;}
.xec_c00149{left:302.700000px;}
.xce_c00149{left:304.500000px;}
.x24_c00149{left:305.700000px;}
.x31_c00149{left:307.200000px;}
.xd6_c00149{left:309.750000px;}
.x6a_c00149{left:310.800000px;}
.x80_c00149{left:312.450000px;}
.x111_c00149{left:313.950000px;}
.x10b_c00149{left:315.000000px;}
.x77_c00149{left:316.650000px;}
.x105_c00149{left:318.900000px;}
.x50_c00149{left:320.100000px;}
.x132_c00149{left:321.300000px;}
.x1b_c00149{left:323.100000px;}
.x117_c00149{left:325.650000px;}
.x40_c00149{left:326.850000px;}
.xb4_c00149{left:329.250000px;}
.xa_c00149{left:333.450000px;}
.x81_c00149{left:335.100000px;}
.xed_c00149{left:336.600000px;}
.xc7_c00149{left:337.800000px;}
.xfe_c00149{left:339.450000px;}
.x8c_c00149{left:340.500000px;}
.x5e_c00149{left:342.300000px;}
.xdf_c00149{left:344.550000px;}
.x55_c00149{left:346.350000px;}
.xf3_c00149{left:347.850000px;}
.x51_c00149{left:350.700000px;}
.xb_c00149{left:352.500000px;}
.x1_c00149{left:355.350000px;}
.x9b_c00149{left:357.300000px;}
.x32_c00149{left:360.150000px;}
.x1c_c00149{left:363.750000px;}
.x41_c00149{left:364.950000px;}
.xe6_c00149{left:367.200000px;}
.x82_c00149{left:369.300000px;}
.x108_c00149{left:370.350000px;}
.xc_c00149{left:373.800000px;}
.x11e_c00149{left:377.100000px;}
.x10c_c00149{left:380.400000px;}
.x52_c00149{left:381.600000px;}
.x56_c00149{left:384.450000px;}
.xcf_c00149{left:385.800000px;}
.xc8_c00149{left:387.900000px;}
.xee_c00149{left:389.850000px;}
.x8d_c00149{left:391.650000px;}
.x42_c00149{left:392.700000px;}
.x33_c00149{left:395.400000px;}
.x112_c00149{left:396.750000px;}
.x118_c00149{left:398.700000px;}
.x6b_c00149{left:403.800000px;}
.x57_c00149{left:406.050000px;}
.x34_c00149{left:408.000000px;}
.x8e_c00149{left:409.350000px;}
.x128_c00149{left:411.150000px;}
.x25_c00149{left:412.500000px;}
.xd0_c00149{left:414.300000px;}
.xf7_c00149{left:416.850000px;}
.x2_c00149{left:419.850000px;}
.x5f_c00149{left:422.250000px;}
.xc0_c00149{left:424.200000px;}
.xd_c00149{left:425.250000px;}
.x119_c00149{left:426.450000px;}
.x83_c00149{left:427.950000px;}
.x1d_c00149{left:430.050000px;}
.x6c_c00149{left:432.600000px;}
.x43_c00149{left:433.800000px;}
.x78_c00149{left:435.750000px;}
.x12c_c00149{left:437.250000px;}
.xb5_c00149{left:440.250000px;}
.xff_c00149{left:441.450000px;}
.x35_c00149{left:442.950000px;}
.x58_c00149{left:444.900000px;}
.xe_c00149{left:449.400000px;}
.x1e_c00149{left:450.600000px;}
.x84_c00149{left:451.650000px;}
.xd7_c00149{left:453.750000px;}
.x53_c00149{left:455.400000px;}
.xae_c00149{left:457.650000px;}
.x122_c00149{left:459.300000px;}
.x11a_c00149{left:463.200000px;}
.x36_c00149{left:465.300000px;}
.x9c_c00149{left:467.100000px;}
.x44_c00149{left:468.300000px;}
.xc9_c00149{left:469.650000px;}
.x79_c00149{left:471.450000px;}
.x11f_c00149{left:472.500000px;}
.x3_c00149{left:474.150000px;}
.xf8_c00149{left:476.250000px;}
.xc1_c00149{left:477.900000px;}
.x60_c00149{left:479.100000px;}
.xb6_c00149{left:480.150000px;}
.x13e_c00149{left:481.350000px;}
.x1f_c00149{left:484.500000px;}
.x26_c00149{left:487.800000px;}
.x6d_c00149{left:489.900000px;}
.x45_c00149{left:490.950000px;}
.xd1_c00149{left:492.450000px;}
.xa3_c00149{left:493.950000px;}
.x129_c00149{left:496.500000px;}
.xca_c00149{left:501.000000px;}
.x61_c00149{left:503.550000px;}
.xb7_c00149{left:505.050000px;}
.xe7_c00149{left:506.100000px;}
.xaf_c00149{left:507.300000px;}
.x46_c00149{left:508.650000px;}
.x120_c00149{left:510.000000px;}
.xf_c00149{left:512.400000px;}
.x6e_c00149{left:516.600000px;}
.x8f_c00149{left:517.950000px;}
.xf4_c00149{left:519.150000px;}
.x136_c00149{left:521.400000px;}
.x37_c00149{left:523.200000px;}
.x27_c00149{left:525.300000px;}
.x47_c00149{left:527.400000px;}
.xa4_c00149{left:528.900000px;}
.x7a_c00149{left:530.100000px;}
.x10_c00149{left:532.500000px;}
.xa8_c00149{left:534.600000px;}
.x59_c00149{left:535.950000px;}
.xd8_c00149{left:538.650000px;}
.xb0_c00149{left:539.700000px;}
.x137_c00149{left:541.950000px;}
.x12d_c00149{left:543.750000px;}
.x62_c00149{left:546.750000px;}
.x38_c00149{left:549.900000px;}
.xc2_c00149{left:550.950000px;}
.x85_c00149{left:552.450000px;}
.xf9_c00149{left:553.650000px;}
.x6f_c00149{left:556.950000px;}
.x100_c00149{left:558.150000px;}
.xa9_c00149{left:562.650000px;}
.x13f_c00149{left:563.850000px;}
.x90_c00149{left:568.350000px;}
.xcb_c00149{left:570.150000px;}
.x28_c00149{left:572.100000px;}
.xe0_c00149{left:573.750000px;}
.xd9_c00149{left:574.950000px;}
.x48_c00149{left:577.800000px;}
.xb8_c00149{left:580.350000px;}
.x106_c00149{left:583.050000px;}
.x13a_c00149{left:585.450000px;}
.x7b_c00149{left:587.700000px;}
.x91_c00149{left:589.200000px;}
.x113_c00149{left:590.250000px;}
.x140_c00149{left:593.400000px;}
.x9d_c00149{left:594.600000px;}
.xe8_c00149{left:595.650000px;}
.x49_c00149{left:597.300000px;}
.x5a_c00149{left:598.650000px;}
.xfa_c00149{left:600.450000px;}
.xc3_c00149{left:601.800000px;}
.x86_c00149{left:603.150000px;}
.xd2_c00149{left:604.650000px;}
.x70_c00149{left:605.850000px;}
.x11_c00149{left:608.100000px;}
.x39_c00149{left:609.600000px;}
.x10d_c00149{left:610.800000px;}
.x12e_c00149{left:613.200000px;}
.xda_c00149{left:614.550000px;}
.x92_c00149{left:619.800000px;}
.x107_c00149{left:620.850000px;}
.x123_c00149{left:621.900000px;}
.x7c_c00149{left:625.200000px;}
.xb9_c00149{left:627.450000px;}
.x3a_c00149{left:629.400000px;}
.x101_c00149{left:631.200000px;}
.x11b_c00149{left:632.700000px;}
.xe9_c00149{left:634.200000px;}
.x12_c00149{left:635.850000px;}
.xc4_c00149{left:639.600000px;}
.x4a_c00149{left:641.250000px;}
.xef_c00149{left:643.050000px;}
.xa5_c00149{left:644.400000px;}
.x5b_c00149{left:645.450000px;}
.x63_c00149{left:647.250000px;}
.xdb_c00149{left:648.750000px;}
.x109_c00149{left:649.950000px;}
.xb1_c00149{left:652.050000px;}
.x7d_c00149{left:653.250000px;}
.x12f_c00149{left:664.350000px;}
.xaa_c00149{left:665.550000px;}
.x124_c00149{left:667.200000px;}
.x29_c00149{left:668.250000px;}
.x11c_c00149{left:669.450000px;}
.x3b_c00149{left:671.100000px;}
.xf0_c00149{left:673.650000px;}
.x87_c00149{left:674.700000px;}
.x64_c00149{left:675.750000px;}
.x133_c00149{left:676.950000px;}
.x4b_c00149{left:678.300000px;}
.x93_c00149{left:682.200000px;}
.xba_c00149{left:683.550000px;}
.xea_c00149{left:684.600000px;}
.x10e_c00149{left:687.150000px;}
.xdc_c00149{left:690.150000px;}
.xb2_c00149{left:692.400000px;}
.x141_c00149{left:693.600000px;}
.x13_c00149{left:696.000000px;}
.xd3_c00149{left:699.600000px;}
.x9e_c00149{left:703.350000px;}
.x10f_c00149{left:705.450000px;}
.x5c_c00149{left:706.950000px;}
.x114_c00149{left:709.350000px;}
.x71_c00149{left:714.150000px;}
.x94_c00149{left:715.650000px;}
.x14_c00149{left:717.600000px;}
.x2a_c00149{left:718.950000px;}
.xf1_c00149{left:722.550000px;}
.x65_c00149{left:724.650000px;}
.x12a_c00149{left:726.300000px;}
.x4c_c00149{left:727.950000px;}
.x9f_c00149{left:730.650000px;}
.x13b_c00149{left:733.500000px;}
.x72_c00149{left:735.000000px;}
.x142_c00149{left:736.050000px;}
.x138_c00149{left:737.250000px;}
.x3c_c00149{left:738.450000px;}
.xe1_c00149{left:744.000000px;}
.x15_c00149{left:746.400000px;}
.x130_c00149{left:748.950000px;}
.xcc_c00149{left:751.650000px;}
.x11d_c00149{left:752.700000px;}
.xbb_c00149{left:754.200000px;}
.x3d_c00149{left:755.700000px;}
.x2b_c00149{left:757.050000px;}
.x4_c00149{left:759.600000px;}
.x102_c00149{left:761.250000px;}
.x66_c00149{left:763.500000px;}
.xdd_c00149{left:767.550000px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls0_c00149{letter-spacing:0.000000pt;}
.ws9_c00149{word-spacing:0.000000pt;}
.ws8_c00149{word-spacing:0.083333pt;}
.ws7_c00149{word-spacing:0.222222pt;}
.ws4_c00149{word-spacing:3.456790pt;}
.ws5_c00149{word-spacing:5.404087pt;}
.ws3_c00149{word-spacing:6.666667pt;}
.ws6_c00149{word-spacing:6.913580pt;}
.ws2_c00149{word-spacing:7.777778pt;}
.ws1_c00149{word-spacing:8.771306pt;}
.ws0_c00149{word-spacing:15.407407pt;}
.fs0_c00149{font-size:48.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y2b_c00149{bottom:134.400000pt;}
.y2a_c00149{bottom:170.666667pt;}
.y29_c00149{bottom:188.000000pt;}
.y28_c00149{bottom:205.866667pt;}
.y27_c00149{bottom:223.200000pt;}
.y26_c00149{bottom:241.066667pt;}
.y25_c00149{bottom:258.666667pt;}
.y24_c00149{bottom:276.266667pt;}
.y23_c00149{bottom:293.866667pt;}
.y22_c00149{bottom:311.733333pt;}
.y21_c00149{bottom:329.333333pt;}
.y20_c00149{bottom:346.933333pt;}
.y1f_c00149{bottom:364.533333pt;}
.y1e_c00149{bottom:382.400000pt;}
.y1d_c00149{bottom:400.000000pt;}
.y1c_c00149{bottom:417.866667pt;}
.y1b_c00149{bottom:435.466667pt;}
.y1a_c00149{bottom:453.200000pt;}
.y19_c00149{bottom:470.800000pt;}
.y18_c00149{bottom:488.400000pt;}
.y17_c00149{bottom:506.000000pt;}
.y16_c00149{bottom:523.600000pt;}
.y15_c00149{bottom:541.866667pt;}
.y14_c00149{bottom:559.466667pt;}
.y13_c00149{bottom:577.333333pt;}
.y12_c00149{bottom:594.933333pt;}
.y11_c00149{bottom:612.533333pt;}
.y10_c00149{bottom:630.133333pt;}
.yf_c00149{bottom:648.000000pt;}
.ye_c00149{bottom:665.600000pt;}
.yd_c00149{bottom:683.200000pt;}
.yc_c00149{bottom:701.066667pt;}
.yb_c00149{bottom:719.066667pt;}
.ya_c00149{bottom:736.666667pt;}
.y9_c00149{bottom:754.266667pt;}
.y8_c00149{bottom:772.133333pt;}
.y7_c00149{bottom:789.733333pt;}
.y6_c00149{bottom:807.333333pt;}
.y5_c00149{bottom:824.933333pt;}
.y4_c00149{bottom:843.200000pt;}
.y3_c00149{bottom:878.400000pt;}
.y2_c00149{bottom:896.266667pt;}
.y1_c00149{bottom:930.533333pt;}
.h2_c00149{height:48.000000pt;}
.h1_c00149{height:1038.000000pt;}
.h0_c00149{height:1038.079997pt;}
.w1_c00149{width:818.000000pt;}
.w0_c00149{width:818.239991pt;}
.x0_c00149{left:0.000000pt;}
.x125_c00149{left:94.800000pt;}
.xde_c00149{left:95.733333pt;}
.x95_c00149{left:96.933333pt;}
.x2c_c00149{left:97.866667pt;}
.x5_c00149{left:98.933333pt;}
.xd4_c00149{left:107.200000pt;}
.xfb_c00149{left:109.466667pt;}
.x13d_c00149{left:110.400000pt;}
.x88_c00149{left:113.066667pt;}
.xbc_c00149{left:114.133333pt;}
.x2d_c00149{left:116.133333pt;}
.xe2_c00149{left:121.066667pt;}
.x67_c00149{left:122.933333pt;}
.xf5_c00149{left:123.866667pt;}
.x7e_c00149{left:125.066667pt;}
.x20_c00149{left:126.133333pt;}
.x16_c00149{left:130.400000pt;}
.xa0_c00149{left:131.466667pt;}
.x89_c00149{left:134.800000pt;}
.x6_c00149{left:138.000000pt;}
.x139_c00149{left:141.200000pt;}
.x73_c00149{left:143.600000pt;}
.x8a_c00149{left:144.666667pt;}
.x17_c00149{left:148.000000pt;}
.x10a_c00149{left:149.733333pt;}
.x4d_c00149{left:150.800000pt;}
.xe3_c00149{left:151.733333pt;}
.x103_c00149{left:153.733333pt;}
.x127_c00149{left:155.466667pt;}
.xbd_c00149{left:156.933333pt;}
.x96_c00149{left:158.000000pt;}
.x5d_c00149{left:159.600000pt;}
.x74_c00149{left:160.533333pt;}
.x13c_c00149{left:162.400000pt;}
.x7_c00149{left:166.800000pt;}
.x2e_c00149{left:168.666667pt;}
.xa1_c00149{left:171.200000pt;}
.x21_c00149{left:172.266667pt;}
.x97_c00149{left:173.733333pt;}
.x110_c00149{left:175.600000pt;}
.xc5_c00149{left:177.600000pt;}
.xfc_c00149{left:179.466667pt;}
.xab_c00149{left:180.400000pt;}
.x54_c00149{left:181.466667pt;}
.x126_c00149{left:182.800000pt;}
.x18_c00149{left:183.866667pt;}
.xe4_c00149{left:185.600000pt;}
.xf2_c00149{left:186.533333pt;}
.x22_c00149{left:188.000000pt;}
.x131_c00149{left:190.133333pt;}
.x8b_c00149{left:192.000000pt;}
.x3e_c00149{left:192.933333pt;}
.x75_c00149{left:195.066667pt;}
.x134_c00149{left:196.133333pt;}
.xeb_c00149{left:198.933333pt;}
.x121_c00149{left:200.133333pt;}
.x4e_c00149{left:201.333333pt;}
.xa2_c00149{left:202.533333pt;}
.x8_c00149{left:204.266667pt;}
.x12b_c00149{left:206.266667pt;}
.x7f_c00149{left:211.466667pt;}
.xa6_c00149{left:213.200000pt;}
.xac_c00149{left:215.333333pt;}
.xc6_c00149{left:217.333333pt;}
.x68_c00149{left:220.533333pt;}
.xcd_c00149{left:222.000000pt;}
.x76_c00149{left:224.133333pt;}
.x98_c00149{left:225.200000pt;}
.x2f_c00149{left:226.933333pt;}
.xf6_c00149{left:228.133333pt;}
.xbe_c00149{left:229.600000pt;}
.x115_c00149{left:231.466667pt;}
.x23_c00149{left:233.066667pt;}
.xd5_c00149{left:234.000000pt;}
.x99_c00149{left:235.066667pt;}
.x4f_c00149{left:236.266667pt;}
.xa7_c00149{left:237.200000pt;}
.x135_c00149{left:239.066667pt;}
.xad_c00149{left:240.266667pt;}
.x3f_c00149{left:241.600000pt;}
.xfd_c00149{left:242.533333pt;}
.x30_c00149{left:244.533333pt;}
.x19_c00149{left:247.200000pt;}
.x69_c00149{left:250.933333pt;}
.xb3_c00149{left:252.000000pt;}
.x104_c00149{left:253.333333pt;}
.xe5_c00149{left:254.400000pt;}
.xbf_c00149{left:255.866667pt;}
.x9a_c00149{left:257.466667pt;}
.x9_c00149{left:260.266667pt;}
.x116_c00149{left:264.133333pt;}
.x1a_c00149{left:265.733333pt;}
.xec_c00149{left:269.066667pt;}
.xce_c00149{left:270.666667pt;}
.x24_c00149{left:271.733333pt;}
.x31_c00149{left:273.066667pt;}
.xd6_c00149{left:275.333333pt;}
.x6a_c00149{left:276.266667pt;}
.x80_c00149{left:277.733333pt;}
.x111_c00149{left:279.066667pt;}
.x10b_c00149{left:280.000000pt;}
.x77_c00149{left:281.466667pt;}
.x105_c00149{left:283.466667pt;}
.x50_c00149{left:284.533333pt;}
.x132_c00149{left:285.600000pt;}
.x1b_c00149{left:287.200000pt;}
.x117_c00149{left:289.466667pt;}
.x40_c00149{left:290.533333pt;}
.xb4_c00149{left:292.666667pt;}
.xa_c00149{left:296.400000pt;}
.x81_c00149{left:297.866667pt;}
.xed_c00149{left:299.200000pt;}
.xc7_c00149{left:300.266667pt;}
.xfe_c00149{left:301.733333pt;}
.x8c_c00149{left:302.666667pt;}
.x5e_c00149{left:304.266667pt;}
.xdf_c00149{left:306.266667pt;}
.x55_c00149{left:307.866667pt;}
.xf3_c00149{left:309.200000pt;}
.x51_c00149{left:311.733333pt;}
.xb_c00149{left:313.333333pt;}
.x1_c00149{left:315.866667pt;}
.x9b_c00149{left:317.600000pt;}
.x32_c00149{left:320.133333pt;}
.x1c_c00149{left:323.333333pt;}
.x41_c00149{left:324.400000pt;}
.xe6_c00149{left:326.400000pt;}
.x82_c00149{left:328.266667pt;}
.x108_c00149{left:329.200000pt;}
.xc_c00149{left:332.266667pt;}
.x11e_c00149{left:335.200000pt;}
.x10c_c00149{left:338.133333pt;}
.x52_c00149{left:339.200000pt;}
.x56_c00149{left:341.733333pt;}
.xcf_c00149{left:342.933333pt;}
.xc8_c00149{left:344.800000pt;}
.xee_c00149{left:346.533333pt;}
.x8d_c00149{left:348.133333pt;}
.x42_c00149{left:349.066667pt;}
.x33_c00149{left:351.466667pt;}
.x112_c00149{left:352.666667pt;}
.x118_c00149{left:354.400000pt;}
.x6b_c00149{left:358.933333pt;}
.x57_c00149{left:360.933333pt;}
.x34_c00149{left:362.666667pt;}
.x8e_c00149{left:363.866667pt;}
.x128_c00149{left:365.466667pt;}
.x25_c00149{left:366.666667pt;}
.xd0_c00149{left:368.266667pt;}
.xf7_c00149{left:370.533333pt;}
.x2_c00149{left:373.200000pt;}
.x5f_c00149{left:375.333333pt;}
.xc0_c00149{left:377.066667pt;}
.xd_c00149{left:378.000000pt;}
.x119_c00149{left:379.066667pt;}
.x83_c00149{left:380.400000pt;}
.x1d_c00149{left:382.266667pt;}
.x6c_c00149{left:384.533333pt;}
.x43_c00149{left:385.600000pt;}
.x78_c00149{left:387.333333pt;}
.x12c_c00149{left:388.666667pt;}
.xb5_c00149{left:391.333333pt;}
.xff_c00149{left:392.400000pt;}
.x35_c00149{left:393.733333pt;}
.x58_c00149{left:395.466667pt;}
.xe_c00149{left:399.466667pt;}
.x1e_c00149{left:400.533333pt;}
.x84_c00149{left:401.466667pt;}
.xd7_c00149{left:403.333333pt;}
.x53_c00149{left:404.800000pt;}
.xae_c00149{left:406.800000pt;}
.x122_c00149{left:408.266667pt;}
.x11a_c00149{left:411.733333pt;}
.x36_c00149{left:413.600000pt;}
.x9c_c00149{left:415.200000pt;}
.x44_c00149{left:416.266667pt;}
.xc9_c00149{left:417.466667pt;}
.x79_c00149{left:419.066667pt;}
.x11f_c00149{left:420.000000pt;}
.x3_c00149{left:421.466667pt;}
.xf8_c00149{left:423.333333pt;}
.xc1_c00149{left:424.800000pt;}
.x60_c00149{left:425.866667pt;}
.xb6_c00149{left:426.800000pt;}
.x13e_c00149{left:427.866667pt;}
.x1f_c00149{left:430.666667pt;}
.x26_c00149{left:433.600000pt;}
.x6d_c00149{left:435.466667pt;}
.x45_c00149{left:436.400000pt;}
.xd1_c00149{left:437.733333pt;}
.xa3_c00149{left:439.066667pt;}
.x129_c00149{left:441.333333pt;}
.xca_c00149{left:445.333333pt;}
.x61_c00149{left:447.600000pt;}
.xb7_c00149{left:448.933333pt;}
.xe7_c00149{left:449.866667pt;}
.xaf_c00149{left:450.933333pt;}
.x46_c00149{left:452.133333pt;}
.x120_c00149{left:453.333333pt;}
.xf_c00149{left:455.466667pt;}
.x6e_c00149{left:459.200000pt;}
.x8f_c00149{left:460.400000pt;}
.xf4_c00149{left:461.466667pt;}
.x136_c00149{left:463.466667pt;}
.x37_c00149{left:465.066667pt;}
.x27_c00149{left:466.933333pt;}
.x47_c00149{left:468.800000pt;}
.xa4_c00149{left:470.133333pt;}
.x7a_c00149{left:471.200000pt;}
.x10_c00149{left:473.333333pt;}
.xa8_c00149{left:475.200000pt;}
.x59_c00149{left:476.400000pt;}
.xd8_c00149{left:478.800000pt;}
.xb0_c00149{left:479.733333pt;}
.x137_c00149{left:481.733333pt;}
.x12d_c00149{left:483.333333pt;}
.x62_c00149{left:486.000000pt;}
.x38_c00149{left:488.800000pt;}
.xc2_c00149{left:489.733333pt;}
.x85_c00149{left:491.066667pt;}
.xf9_c00149{left:492.133333pt;}
.x6f_c00149{left:495.066667pt;}
.x100_c00149{left:496.133333pt;}
.xa9_c00149{left:500.133333pt;}
.x13f_c00149{left:501.200000pt;}
.x90_c00149{left:505.200000pt;}
.xcb_c00149{left:506.800000pt;}
.x28_c00149{left:508.533333pt;}
.xe0_c00149{left:510.000000pt;}
.xd9_c00149{left:511.066667pt;}
.x48_c00149{left:513.600000pt;}
.xb8_c00149{left:515.866667pt;}
.x106_c00149{left:518.266667pt;}
.x13a_c00149{left:520.400000pt;}
.x7b_c00149{left:522.400000pt;}
.x91_c00149{left:523.733333pt;}
.x113_c00149{left:524.666667pt;}
.x140_c00149{left:527.466667pt;}
.x9d_c00149{left:528.533333pt;}
.xe8_c00149{left:529.466667pt;}
.x49_c00149{left:530.933333pt;}
.x5a_c00149{left:532.133333pt;}
.xfa_c00149{left:533.733333pt;}
.xc3_c00149{left:534.933333pt;}
.x86_c00149{left:536.133333pt;}
.xd2_c00149{left:537.466667pt;}
.x70_c00149{left:538.533333pt;}
.x11_c00149{left:540.533333pt;}
.x39_c00149{left:541.866667pt;}
.x10d_c00149{left:542.933333pt;}
.x12e_c00149{left:545.066667pt;}
.xda_c00149{left:546.266667pt;}
.x92_c00149{left:550.933333pt;}
.x107_c00149{left:551.866667pt;}
.x123_c00149{left:552.800000pt;}
.x7c_c00149{left:555.733333pt;}
.xb9_c00149{left:557.733333pt;}
.x3a_c00149{left:559.466667pt;}
.x101_c00149{left:561.066667pt;}
.x11b_c00149{left:562.400000pt;}
.xe9_c00149{left:563.733333pt;}
.x12_c00149{left:565.200000pt;}
.xc4_c00149{left:568.533333pt;}
.x4a_c00149{left:570.000000pt;}
.xef_c00149{left:571.600000pt;}
.xa5_c00149{left:572.800000pt;}
.x5b_c00149{left:573.733333pt;}
.x63_c00149{left:575.333333pt;}
.xdb_c00149{left:576.666667pt;}
.x109_c00149{left:577.733333pt;}
.xb1_c00149{left:579.600000pt;}
.x7d_c00149{left:580.666667pt;}
.x12f_c00149{left:590.533333pt;}
.xaa_c00149{left:591.600000pt;}
.x124_c00149{left:593.066667pt;}
.x29_c00149{left:594.000000pt;}
.x11c_c00149{left:595.066667pt;}
.x3b_c00149{left:596.533333pt;}
.xf0_c00149{left:598.800000pt;}
.x87_c00149{left:599.733333pt;}
.x64_c00149{left:600.666667pt;}
.x133_c00149{left:601.733333pt;}
.x4b_c00149{left:602.933333pt;}
.x93_c00149{left:606.400000pt;}
.xba_c00149{left:607.600000pt;}
.xea_c00149{left:608.533333pt;}
.x10e_c00149{left:610.800000pt;}
.xdc_c00149{left:613.466667pt;}
.xb2_c00149{left:615.466667pt;}
.x141_c00149{left:616.533333pt;}
.x13_c00149{left:618.666667pt;}
.xd3_c00149{left:621.866667pt;}
.x9e_c00149{left:625.200000pt;}
.x10f_c00149{left:627.066667pt;}
.x5c_c00149{left:628.400000pt;}
.x114_c00149{left:630.533333pt;}
.x71_c00149{left:634.800000pt;}
.x94_c00149{left:636.133333pt;}
.x14_c00149{left:637.866667pt;}
.x2a_c00149{left:639.066667pt;}
.xf1_c00149{left:642.266667pt;}
.x65_c00149{left:644.133333pt;}
.x12a_c00149{left:645.600000pt;}
.x4c_c00149{left:647.066667pt;}
.x9f_c00149{left:649.466667pt;}
.x13b_c00149{left:652.000000pt;}
.x72_c00149{left:653.333333pt;}
.x142_c00149{left:654.266667pt;}
.x138_c00149{left:655.333333pt;}
.x3c_c00149{left:656.400000pt;}
.xe1_c00149{left:661.333333pt;}
.x15_c00149{left:663.466667pt;}
.x130_c00149{left:665.733333pt;}
.xcc_c00149{left:668.133333pt;}
.x11d_c00149{left:669.066667pt;}
.xbb_c00149{left:670.400000pt;}
.x3d_c00149{left:671.733333pt;}
.x2b_c00149{left:672.933333pt;}
.x4_c00149{left:675.200000pt;}
.x102_c00149{left:676.666667pt;}
.x66_c00149{left:678.666667pt;}
.xdd_c00149{left:682.266667pt;}
}





/* 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_c00150 {
    display:none;
  }
  .loading-indicator_c00150.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00150 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_c00150 { 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_c00150" -> "#page-container .classname_c00150")
 */
.pf_c00150 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00150 { /* 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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00150 { /* 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_c00150 { /* 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_c00150 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00150 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00150 {overflow:visible;}
  }
}
.c_c00150 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00150 { /* 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_c00150:after { /* webkit #35443 */
  content: '';
}
.t_c00150:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00150 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 */
}
.__c00150 { /* 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_c00150 { /* info for Javascript */
  display:none;
}
.l_c00150 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00150 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00150 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00150: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_c00150 {
    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_c00150.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00150.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_c00150 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00150{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00150;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.000000;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;}
.m2d_c00150{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00150{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00150{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m96_c00150{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m95_c00150{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m79_c00150{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m20_c00150{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00150{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00150{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00150{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00150{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m82_c00150{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m72_c00150{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00150{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00150{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m68_c00150{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m26_c00150{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00150{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00150{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00150{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00150{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00150{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00150{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00150{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m78_c00150{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00150{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m92_c00150{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00150{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m32_c00150{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m75_c00150{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m12_c00150{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00150{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m25_c00150{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00150{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m14_c00150{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m69_c00150{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m65_c00150{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00150{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m66_c00150{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m77_c00150{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m81_c00150{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m63_c00150{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m21_c00150{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m62_c00150{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00150{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m88_c00150{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00150{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m34_c00150{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m40_c00150{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);}
.m33_c00150{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m30_c00150{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00150{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m22_c00150{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m80_c00150{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00150{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00150{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00150{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00150{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m24_c00150{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00150{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m38_c00150{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m83_c00150{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m90_c00150{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m41_c00150{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m99_c00150{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00150{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m35_c00150{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m43_c00150{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m58_c00150{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5_c00150{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00150{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00150{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m10_c00150{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00150{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00150{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00150{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00150{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00150{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m74_c00150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00150{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m86_c00150{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00150{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m91_c00150{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m94_c00150{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m70_c00150{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m2_c00150{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00150{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m31_c00150{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m71_c00150{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.md_c00150{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m76_c00150{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00150{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m57_c00150{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m97_c00150{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00150{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m93_c00150{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00150{vertical-align:0.000000px;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{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__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:-8.156415px;}
.ws9_c00150{word-spacing:-6.125000px;}
.ws7_c00150{word-spacing:-4.625000px;}
.ws8_c00150{word-spacing:-3.250000px;}
.ws5_c00150{word-spacing:-0.049614px;}
.wsa_c00150{word-spacing:0.000000px;}
.ws1_c00150{word-spacing:1.638554px;}
.ws3_c00150{word-spacing:3.537969px;}
.ws2_c00150{word-spacing:5.875000px;}
.ws4_c00150{word-spacing:7.500000px;}
.ws6_c00150{word-spacing:15.891412px;}
._0_c00150{width:24.000000px;}
.fc0_c00150{color:transparent;}
.fs0_c00150{font-size:54.000000px;}
.y0_c00150{bottom:0.000000px;}
.y2c_c00150{bottom:156.300000px;}
.y2b_c00150{bottom:170.700000px;}
.y2a_c00150{bottom:185.700000px;}
.y29_c00150{bottom:200.850000px;}
.y28_c00150{bottom:253.500000px;}
.y27_c00150{bottom:273.300000px;}
.y26_c00150{bottom:293.100000px;}
.y25_c00150{bottom:312.900000px;}
.y24_c00150{bottom:333.000000px;}
.y23_c00150{bottom:352.800000px;}
.y22_c00150{bottom:372.900000px;}
.y21_c00150{bottom:392.550000px;}
.y20_c00150{bottom:412.650000px;}
.y1f_c00150{bottom:432.750000px;}
.y1e_c00150{bottom:452.850000px;}
.y1d_c00150{bottom:472.950000px;}
.y1c_c00150{bottom:493.050000px;}
.y1b_c00150{bottom:513.150000px;}
.y1a_c00150{bottom:532.650000px;}
.y19_c00150{bottom:552.450000px;}
.y18_c00150{bottom:572.250000px;}
.y17_c00150{bottom:592.050000px;}
.y16_c00150{bottom:612.150000px;}
.y15_c00150{bottom:631.950000px;}
.y14_c00150{bottom:652.050000px;}
.y13_c00150{bottom:671.850000px;}
.y12_c00150{bottom:691.650000px;}
.y11_c00150{bottom:711.750000px;}
.y10_c00150{bottom:731.550000px;}
.yf_c00150{bottom:751.350000px;}
.ye_c00150{bottom:771.450000px;}
.yd_c00150{bottom:791.250000px;}
.yc_c00150{bottom:811.050000px;}
.yb_c00150{bottom:830.850000px;}
.ya_c00150{bottom:850.950000px;}
.y9_c00150{bottom:870.750000px;}
.y8_c00150{bottom:890.850000px;}
.y7_c00150{bottom:910.950000px;}
.y6_c00150{bottom:931.050000px;}
.y5_c00150{bottom:950.850000px;}
.y4_c00150{bottom:970.950000px;}
.y3_c00150{bottom:990.750000px;}
.y2_c00150{bottom:1010.550000px;}
.y1_c00150{bottom:1048.650000px;}
.h2_c00150{height:54.000000px;}
.h1_c00150{height:1167.750000px;}
.h0_c00150{height:1167.839997px;}
.w1_c00150{width:920.250000px;}
.w0_c00150{width:920.519990px;}
.x0_c00150{left:0.000000px;}
.x23_c00150{left:145.050000px;}
.x1_c00150{left:146.100000px;}
.xa3_c00150{left:160.800000px;}
.xbb_c00150{left:162.000000px;}
.xd0_c00150{left:166.200000px;}
.x47_c00150{left:167.550000px;}
.xb4_c00150{left:169.050000px;}
.x12_c00150{left:171.000000px;}
.x7d_c00150{left:172.950000px;}
.x63_c00150{left:174.750000px;}
.x3_c00150{left:176.100000px;}
.x31_c00150{left:178.050000px;}
.xe9_c00150{left:180.600000px;}
.xdb_c00150{left:182.100000px;}
.x5b_c00150{left:184.500000px;}
.x53_c00150{left:188.550000px;}
.x118_c00150{left:189.900000px;}
.xa4_c00150{left:193.500000px;}
.x10b_c00150{left:196.050000px;}
.xe0_c00150{left:197.250000px;}
.xad_c00150{left:198.600000px;}
.x88_c00150{left:199.650000px;}
.x91_c00150{left:201.750000px;}
.x74_c00150{left:202.800000px;}
.x3c_c00150{left:205.050000px;}
.x48_c00150{left:206.400000px;}
.x24_c00150{left:210.600000px;}
.x13_c00150{left:213.450000px;}
.x4_c00150{left:214.950000px;}
.xbc_c00150{left:216.300000px;}
.xf0_c00150{left:218.100000px;}
.x7e_c00150{left:225.150000px;}
.x112_c00150{left:226.350000px;}
.x5c_c00150{left:227.400000px;}
.x10f_c00150{left:229.350000px;}
.x14_c00150{left:230.400000px;}
.x92_c00150{left:231.600000px;}
.x64_c00150{left:233.400000px;}
.xc3_c00150{left:234.900000px;}
.x75_c00150{left:235.950000px;}
.x67_c00150{left:237.300000px;}
.x102_c00150{left:241.200000px;}
.x32_c00150{left:243.600000px;}
.x119_c00150{left:245.100000px;}
.x25_c00150{left:246.300000px;}
.xb5_c00150{left:249.300000px;}
.xdc_c00150{left:251.550000px;}
.x11b_c00150{left:252.900000px;}
.x89_c00150{left:254.700000px;}
.x9c_c00150{left:257.250000px;}
.x114_c00150{left:258.900000px;}
.xfb_c00150{left:260.700000px;}
.x65_c00150{left:264.000000px;}
.x33_c00150{left:265.500000px;}
.x3d_c00150{left:266.550000px;}
.x5_c00150{left:271.500000px;}
.xa5_c00150{left:272.700000px;}
.xd1_c00150{left:274.200000px;}
.x107_c00150{left:277.350000px;}
.xae_c00150{left:278.850000px;}
.x66_c00150{left:283.500000px;}
.x11c_c00150{left:286.050000px;}
.x54_c00150{left:288.000000px;}
.x68_c00150{left:289.200000px;}
.x49_c00150{left:291.300000px;}
.x103_c00150{left:293.400000px;}
.xcb_c00150{left:294.750000px;}
.xb6_c00150{left:295.800000px;}
.xaf_c00150{left:299.700000px;}
.x8a_c00150{left:301.500000px;}
.x11d_c00150{left:303.300000px;}
.x3e_c00150{left:304.350000px;}
.x69_c00150{left:306.900000px;}
.x15_c00150{left:308.850000px;}
.xea_c00150{left:313.350000px;}
.x5d_c00150{left:314.550000px;}
.x4a_c00150{left:315.750000px;}
.xe1_c00150{left:317.250000px;}
.xb7_c00150{left:320.250000px;}
.x6_c00150{left:321.900000px;}
.xcc_c00150{left:323.250000px;}
.x6a_c00150{left:324.900000px;}
.x7f_c00150{left:326.700000px;}
.xa6_c00150{left:327.750000px;}
.x11a_c00150{left:330.300000px;}
.x55_c00150{left:332.700000px;}
.x93_c00150{left:334.200000px;}
.x26_c00150{left:337.050000px;}
.xbd_c00150{left:338.400000px;}
.x76_c00150{left:342.150000px;}
.x16_c00150{left:345.600000px;}
.x5e_c00150{left:349.800000px;}
.xeb_c00150{left:351.150000px;}
.x6b_c00150{left:353.400000px;}
.xd2_c00150{left:355.200000px;}
.x7_c00150{left:356.850000px;}
.x4b_c00150{left:359.250000px;}
.x115_c00150{left:360.750000px;}
.xb8_c00150{left:362.400000px;}
.x3f_c00150{left:364.050000px;}
.x77_c00150{left:365.550000px;}
.x94_c00150{left:369.150000px;}
.x56_c00150{left:372.600000px;}
.x17_c00150{left:373.650000px;}
.xf1_c00150{left:375.000000px;}
.xfc_c00150{left:376.650000px;}
.xcd_c00150{left:378.300000px;}
.xec_c00150{left:379.650000px;}
.xbe_c00150{left:380.850000px;}
.x104_c00150{left:382.050000px;}
.x34_c00150{left:384.000000px;}
.x27_c00150{left:385.350000px;}
.xd3_c00150{left:389.100000px;}
.x8b_c00150{left:394.350000px;}
.x80_c00150{left:396.600000px;}
.x116_c00150{left:398.550000px;}
.x110_c00150{left:400.050000px;}
.x10c_c00150{left:401.100000px;}
.x40_c00150{left:404.400000px;}
.xc4_c00150{left:405.450000px;}
.x28_c00150{left:406.950000px;}
.x18_c00150{left:408.900000px;}
.xf7_c00150{left:410.100000px;}
.xa7_c00150{left:411.300000px;}
.x113_c00150{left:414.300000px;}
.x4c_c00150{left:417.600000px;}
.x29_c00150{left:419.250000px;}
.xd4_c00150{left:420.750000px;}
.x6c_c00150{left:423.900000px;}
.xc5_c00150{left:424.950000px;}
.xf2_c00150{left:427.200000px;}
.x8_c00150{left:428.850000px;}
.xe2_c00150{left:429.900000px;}
.x95_c00150{left:431.100000px;}
.xfd_c00150{left:434.550000px;}
.x41_c00150{left:436.500000px;}
.x108_c00150{left:438.450000px;}
.x78_c00150{left:440.850000px;}
.x2_c00150{left:443.100000px;}
.x35_c00150{left:444.450000px;}
.x57_c00150{left:445.650000px;}
.xb9_c00150{left:446.700000px;}
.x9_c00150{left:448.650000px;}
.xd5_c00150{left:451.650000px;}
.x105_c00150{left:456.300000px;}
.xb0_c00150{left:459.300000px;}
.xfe_c00150{left:460.800000px;}
.x10d_c00150{left:462.300000px;}
.x42_c00150{left:465.000000px;}
.x96_c00150{left:466.050000px;}
.x81_c00150{left:469.350000px;}
.x19_c00150{left:470.850000px;}
.x9d_c00150{left:472.200000px;}
.x124_c00150{left:473.250000px;}
.x4d_c00150{left:477.000000px;}
.x117_c00150{left:480.300000px;}
.x6d_c00150{left:481.800000px;}
.xf3_c00150{left:484.050000px;}
.x123_c00150{left:486.300000px;}
.xe3_c00150{left:488.550000px;}
.xed_c00150{left:489.750000px;}
.x121_c00150{left:494.700000px;}
.xff_c00150{left:496.800000px;}
.xf4_c00150{left:499.950000px;}
.x1a_c00150{left:502.200000px;}
.x122_c00150{left:504.750000px;}
.x2a_c00150{left:505.950000px;}
.x6e_c00150{left:507.300000px;}
.xdd_c00150{left:510.300000px;}
.x79_c00150{left:512.400000px;}
.x36_c00150{left:513.600000px;}
.xc6_c00150{left:516.000000px;}
.x1b_c00150{left:517.350000px;}
.xee_c00150{left:518.550000px;}
.x4e_c00150{left:523.500000px;}
.xa_c00150{left:525.300000px;}
.x58_c00150{left:526.650000px;}
.x82_c00150{left:529.800000px;}
.x97_c00150{left:530.850000px;}
.x9e_c00150{left:531.900000px;}
.x8c_c00150{left:534.000000px;}
.xce_c00150{left:536.250000px;}
.x4f_c00150{left:537.900000px;}
.xf8_c00150{left:544.050000px;}
.x1c_c00150{left:545.850000px;}
.xe4_c00150{left:548.250000px;}
.x9f_c00150{left:549.900000px;}
.x11e_c00150{left:551.100000px;}
.xf5_c00150{left:552.450000px;}
.xb_c00150{left:553.800000px;}
.xb1_c00150{left:555.750000px;}
.x1d_c00150{left:557.700000px;}
.x37_c00150{left:559.650000px;}
.x125_c00150{left:561.450000px;}
.x100_c00150{left:563.700000px;}
.x2b_c00150{left:566.850000px;}
.xe5_c00150{left:568.350000px;}
.x43_c00150{left:569.700000px;}
.xba_c00150{left:574.050000px;}
.xd6_c00150{left:577.350000px;}
.x98_c00150{left:580.200000px;}
.xde_c00150{left:581.850000px;}
.x7a_c00150{left:583.350000px;}
.x83_c00150{left:587.400000px;}
.x6f_c00150{left:588.600000px;}
.xc_c00150{left:590.550000px;}
.x50_c00150{left:592.200000px;}
.xf9_c00150{left:595.200000px;}
.xbf_c00150{left:597.900000px;}
.x2c_c00150{left:600.000000px;}
.x5f_c00150{left:601.350000px;}
.x44_c00150{left:603.150000px;}
.x1e_c00150{left:606.000000px;}
.x8d_c00150{left:612.900000px;}
.xc7_c00150{left:615.300000px;}
.xf6_c00150{left:616.950000px;}
.xb2_c00150{left:620.550000px;}
.x38_c00150{left:621.900000px;}
.x51_c00150{left:623.550000px;}
.x45_c00150{left:626.250000px;}
.xa8_c00150{left:630.150000px;}
.x7b_c00150{left:631.200000px;}
.x2d_c00150{left:634.950000px;}
.xdf_c00150{left:636.150000px;}
.x59_c00150{left:639.600000px;}
.xa0_c00150{left:642.600000px;}
.xcf_c00150{left:644.700000px;}
.xd_c00150{left:648.900000px;}
.xc8_c00150{left:651.000000px;}
.xe6_c00150{left:652.650000px;}
.xa1_c00150{left:653.700000px;}
.xd7_c00150{left:654.750000px;}
.x70_c00150{left:657.300000px;}
.x84_c00150{left:659.400000px;}
.x1f_c00150{left:662.850000px;}
.xc0_c00150{left:664.500000px;}
.x60_c00150{left:666.450000px;}
.xef_c00150{left:668.850000px;}
.x2e_c00150{left:674.550000px;}
.xa9_c00150{left:675.900000px;}
.x109_c00150{left:677.700000px;}
.x20_c00150{left:679.350000px;}
.xd8_c00150{left:681.450000px;}
.xe_c00150{left:684.600000px;}
.xc1_c00150{left:685.800000px;}
.x39_c00150{left:687.450000px;}
.x99_c00150{left:688.500000px;}
.xc9_c00150{left:690.600000px;}
.x71_c00150{left:693.000000px;}
.xaa_c00150{left:694.950000px;}
.x8e_c00150{left:699.600000px;}
.x61_c00150{left:701.400000px;}
.x106_c00150{left:702.900000px;}
.x11f_c00150{left:705.150000px;}
.x85_c00150{left:706.950000px;}
.xfa_c00150{left:708.300000px;}
.x52_c00150{left:709.950000px;}
.xe7_c00150{left:712.500000px;}
.x72_c00150{left:716.100000px;}
.xf_c00150{left:718.500000px;}
.xab_c00150{left:719.850000px;}
.x9a_c00150{left:721.200000px;}
.xd9_c00150{left:722.550000px;}
.xc2_c00150{left:727.200000px;}
.x62_c00150{left:730.200000px;}
.x21_c00150{left:732.300000px;}
.x2f_c00150{left:733.650000px;}
.xa2_c00150{left:734.700000px;}
.xac_c00150{left:736.050000px;}
.x8f_c00150{left:737.100000px;}
.x86_c00150{left:743.250000px;}
.x73_c00150{left:744.600000px;}
.x10a_c00150{left:746.400000px;}
.xda_c00150{left:747.750000px;}
.x5a_c00150{left:750.900000px;}
.x10_c00150{left:752.400000px;}
.x120_c00150{left:754.500000px;}
.x10e_c00150{left:756.000000px;}
.x111_c00150{left:758.550000px;}
.x101_c00150{left:761.250000px;}
.x7c_c00150{left:762.900000px;}
.x9b_c00150{left:765.150000px;}
.xb3_c00150{left:766.350000px;}
.x3a_c00150{left:769.200000px;}
.x46_c00150{left:770.550000px;}
.xca_c00150{left:772.350000px;}
.x90_c00150{left:778.200000px;}
.x87_c00150{left:781.800000px;}
.xe8_c00150{left:784.200000px;}
.x22_c00150{left:788.400000px;}
.x3b_c00150{left:791.550000px;}
.x30_c00150{left:795.900000px;}
.x11_c00150{left:798.900000px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:-7.250146pt;}
.ws9_c00150{word-spacing:-5.444444pt;}
.ws7_c00150{word-spacing:-4.111111pt;}
.ws8_c00150{word-spacing:-2.888889pt;}
.ws5_c00150{word-spacing:-0.044101pt;}
.wsa_c00150{word-spacing:0.000000pt;}
.ws1_c00150{word-spacing:1.456493pt;}
.ws3_c00150{word-spacing:3.144861pt;}
.ws2_c00150{word-spacing:5.222222pt;}
.ws4_c00150{word-spacing:6.666667pt;}
.ws6_c00150{word-spacing:14.125699pt;}
._0_c00150{width:21.333333pt;}
.fs0_c00150{font-size:48.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y2c_c00150{bottom:138.933333pt;}
.y2b_c00150{bottom:151.733333pt;}
.y2a_c00150{bottom:165.066667pt;}
.y29_c00150{bottom:178.533333pt;}
.y28_c00150{bottom:225.333333pt;}
.y27_c00150{bottom:242.933333pt;}
.y26_c00150{bottom:260.533333pt;}
.y25_c00150{bottom:278.133333pt;}
.y24_c00150{bottom:296.000000pt;}
.y23_c00150{bottom:313.600000pt;}
.y22_c00150{bottom:331.466667pt;}
.y21_c00150{bottom:348.933333pt;}
.y20_c00150{bottom:366.800000pt;}
.y1f_c00150{bottom:384.666667pt;}
.y1e_c00150{bottom:402.533333pt;}
.y1d_c00150{bottom:420.400000pt;}
.y1c_c00150{bottom:438.266667pt;}
.y1b_c00150{bottom:456.133333pt;}
.y1a_c00150{bottom:473.466667pt;}
.y19_c00150{bottom:491.066667pt;}
.y18_c00150{bottom:508.666667pt;}
.y17_c00150{bottom:526.266667pt;}
.y16_c00150{bottom:544.133333pt;}
.y15_c00150{bottom:561.733333pt;}
.y14_c00150{bottom:579.600000pt;}
.y13_c00150{bottom:597.200000pt;}
.y12_c00150{bottom:614.800000pt;}
.y11_c00150{bottom:632.666667pt;}
.y10_c00150{bottom:650.266667pt;}
.yf_c00150{bottom:667.866667pt;}
.ye_c00150{bottom:685.733333pt;}
.yd_c00150{bottom:703.333333pt;}
.yc_c00150{bottom:720.933333pt;}
.yb_c00150{bottom:738.533333pt;}
.ya_c00150{bottom:756.400000pt;}
.y9_c00150{bottom:774.000000pt;}
.y8_c00150{bottom:791.866667pt;}
.y7_c00150{bottom:809.733333pt;}
.y6_c00150{bottom:827.600000pt;}
.y5_c00150{bottom:845.200000pt;}
.y4_c00150{bottom:863.066667pt;}
.y3_c00150{bottom:880.666667pt;}
.y2_c00150{bottom:898.266667pt;}
.y1_c00150{bottom:932.133333pt;}
.h2_c00150{height:48.000000pt;}
.h1_c00150{height:1038.000000pt;}
.h0_c00150{height:1038.079997pt;}
.w1_c00150{width:818.000000pt;}
.w0_c00150{width:818.239991pt;}
.x0_c00150{left:0.000000pt;}
.x23_c00150{left:128.933333pt;}
.x1_c00150{left:129.866667pt;}
.xa3_c00150{left:142.933333pt;}
.xbb_c00150{left:144.000000pt;}
.xd0_c00150{left:147.733333pt;}
.x47_c00150{left:148.933333pt;}
.xb4_c00150{left:150.266667pt;}
.x12_c00150{left:152.000000pt;}
.x7d_c00150{left:153.733333pt;}
.x63_c00150{left:155.333333pt;}
.x3_c00150{left:156.533333pt;}
.x31_c00150{left:158.266667pt;}
.xe9_c00150{left:160.533333pt;}
.xdb_c00150{left:161.866667pt;}
.x5b_c00150{left:164.000000pt;}
.x53_c00150{left:167.600000pt;}
.x118_c00150{left:168.800000pt;}
.xa4_c00150{left:172.000000pt;}
.x10b_c00150{left:174.266667pt;}
.xe0_c00150{left:175.333333pt;}
.xad_c00150{left:176.533333pt;}
.x88_c00150{left:177.466667pt;}
.x91_c00150{left:179.333333pt;}
.x74_c00150{left:180.266667pt;}
.x3c_c00150{left:182.266667pt;}
.x48_c00150{left:183.466667pt;}
.x24_c00150{left:187.200000pt;}
.x13_c00150{left:189.733333pt;}
.x4_c00150{left:191.066667pt;}
.xbc_c00150{left:192.266667pt;}
.xf0_c00150{left:193.866667pt;}
.x7e_c00150{left:200.133333pt;}
.x112_c00150{left:201.200000pt;}
.x5c_c00150{left:202.133333pt;}
.x10f_c00150{left:203.866667pt;}
.x14_c00150{left:204.800000pt;}
.x92_c00150{left:205.866667pt;}
.x64_c00150{left:207.466667pt;}
.xc3_c00150{left:208.800000pt;}
.x75_c00150{left:209.733333pt;}
.x67_c00150{left:210.933333pt;}
.x102_c00150{left:214.400000pt;}
.x32_c00150{left:216.533333pt;}
.x119_c00150{left:217.866667pt;}
.x25_c00150{left:218.933333pt;}
.xb5_c00150{left:221.600000pt;}
.xdc_c00150{left:223.600000pt;}
.x11b_c00150{left:224.800000pt;}
.x89_c00150{left:226.400000pt;}
.x9c_c00150{left:228.666667pt;}
.x114_c00150{left:230.133333pt;}
.xfb_c00150{left:231.733333pt;}
.x65_c00150{left:234.666667pt;}
.x33_c00150{left:236.000000pt;}
.x3d_c00150{left:236.933333pt;}
.x5_c00150{left:241.333333pt;}
.xa5_c00150{left:242.400000pt;}
.xd1_c00150{left:243.733333pt;}
.x107_c00150{left:246.533333pt;}
.xae_c00150{left:247.866667pt;}
.x66_c00150{left:252.000000pt;}
.x11c_c00150{left:254.266667pt;}
.x54_c00150{left:256.000000pt;}
.x68_c00150{left:257.066667pt;}
.x49_c00150{left:258.933333pt;}
.x103_c00150{left:260.800000pt;}
.xcb_c00150{left:262.000000pt;}
.xb6_c00150{left:262.933333pt;}
.xaf_c00150{left:266.400000pt;}
.x8a_c00150{left:268.000000pt;}
.x11d_c00150{left:269.600000pt;}
.x3e_c00150{left:270.533333pt;}
.x69_c00150{left:272.800000pt;}
.x15_c00150{left:274.533333pt;}
.xea_c00150{left:278.533333pt;}
.x5d_c00150{left:279.600000pt;}
.x4a_c00150{left:280.666667pt;}
.xe1_c00150{left:282.000000pt;}
.xb7_c00150{left:284.666667pt;}
.x6_c00150{left:286.133333pt;}
.xcc_c00150{left:287.333333pt;}
.x6a_c00150{left:288.800000pt;}
.x7f_c00150{left:290.400000pt;}
.xa6_c00150{left:291.333333pt;}
.x11a_c00150{left:293.600000pt;}
.x55_c00150{left:295.733333pt;}
.x93_c00150{left:297.066667pt;}
.x26_c00150{left:299.600000pt;}
.xbd_c00150{left:300.800000pt;}
.x76_c00150{left:304.133333pt;}
.x16_c00150{left:307.200000pt;}
.x5e_c00150{left:310.933333pt;}
.xeb_c00150{left:312.133333pt;}
.x6b_c00150{left:314.133333pt;}
.xd2_c00150{left:315.733333pt;}
.x7_c00150{left:317.200000pt;}
.x4b_c00150{left:319.333333pt;}
.x115_c00150{left:320.666667pt;}
.xb8_c00150{left:322.133333pt;}
.x3f_c00150{left:323.600000pt;}
.x77_c00150{left:324.933333pt;}
.x94_c00150{left:328.133333pt;}
.x56_c00150{left:331.200000pt;}
.x17_c00150{left:332.133333pt;}
.xf1_c00150{left:333.333333pt;}
.xfc_c00150{left:334.800000pt;}
.xcd_c00150{left:336.266667pt;}
.xec_c00150{left:337.466667pt;}
.xbe_c00150{left:338.533333pt;}
.x104_c00150{left:339.600000pt;}
.x34_c00150{left:341.333333pt;}
.x27_c00150{left:342.533333pt;}
.xd3_c00150{left:345.866667pt;}
.x8b_c00150{left:350.533333pt;}
.x80_c00150{left:352.533333pt;}
.x116_c00150{left:354.266667pt;}
.x110_c00150{left:355.600000pt;}
.x10c_c00150{left:356.533333pt;}
.x40_c00150{left:359.466667pt;}
.xc4_c00150{left:360.400000pt;}
.x28_c00150{left:361.733333pt;}
.x18_c00150{left:363.466667pt;}
.xf7_c00150{left:364.533333pt;}
.xa7_c00150{left:365.600000pt;}
.x113_c00150{left:368.266667pt;}
.x4c_c00150{left:371.200000pt;}
.x29_c00150{left:372.666667pt;}
.xd4_c00150{left:374.000000pt;}
.x6c_c00150{left:376.800000pt;}
.xc5_c00150{left:377.733333pt;}
.xf2_c00150{left:379.733333pt;}
.x8_c00150{left:381.200000pt;}
.xe2_c00150{left:382.133333pt;}
.x95_c00150{left:383.200000pt;}
.xfd_c00150{left:386.266667pt;}
.x41_c00150{left:388.000000pt;}
.x108_c00150{left:389.733333pt;}
.x78_c00150{left:391.866667pt;}
.x2_c00150{left:393.866667pt;}
.x35_c00150{left:395.066667pt;}
.x57_c00150{left:396.133333pt;}
.xb9_c00150{left:397.066667pt;}
.x9_c00150{left:398.800000pt;}
.xd5_c00150{left:401.466667pt;}
.x105_c00150{left:405.600000pt;}
.xb0_c00150{left:408.266667pt;}
.xfe_c00150{left:409.600000pt;}
.x10d_c00150{left:410.933333pt;}
.x42_c00150{left:413.333333pt;}
.x96_c00150{left:414.266667pt;}
.x81_c00150{left:417.200000pt;}
.x19_c00150{left:418.533333pt;}
.x9d_c00150{left:419.733333pt;}
.x124_c00150{left:420.666667pt;}
.x4d_c00150{left:424.000000pt;}
.x117_c00150{left:426.933333pt;}
.x6d_c00150{left:428.266667pt;}
.xf3_c00150{left:430.266667pt;}
.x123_c00150{left:432.266667pt;}
.xe3_c00150{left:434.266667pt;}
.xed_c00150{left:435.333333pt;}
.x121_c00150{left:439.733333pt;}
.xff_c00150{left:441.600000pt;}
.xf4_c00150{left:444.400000pt;}
.x1a_c00150{left:446.400000pt;}
.x122_c00150{left:448.666667pt;}
.x2a_c00150{left:449.733333pt;}
.x6e_c00150{left:450.933333pt;}
.xdd_c00150{left:453.600000pt;}
.x79_c00150{left:455.466667pt;}
.x36_c00150{left:456.533333pt;}
.xc6_c00150{left:458.666667pt;}
.x1b_c00150{left:459.866667pt;}
.xee_c00150{left:460.933333pt;}
.x4e_c00150{left:465.333333pt;}
.xa_c00150{left:466.933333pt;}
.x58_c00150{left:468.133333pt;}
.x82_c00150{left:470.933333pt;}
.x97_c00150{left:471.866667pt;}
.x9e_c00150{left:472.800000pt;}
.x8c_c00150{left:474.666667pt;}
.xce_c00150{left:476.666667pt;}
.x4f_c00150{left:478.133333pt;}
.xf8_c00150{left:483.600000pt;}
.x1c_c00150{left:485.200000pt;}
.xe4_c00150{left:487.333333pt;}
.x9f_c00150{left:488.800000pt;}
.x11e_c00150{left:489.866667pt;}
.xf5_c00150{left:491.066667pt;}
.xb_c00150{left:492.266667pt;}
.xb1_c00150{left:494.000000pt;}
.x1d_c00150{left:495.733333pt;}
.x37_c00150{left:497.466667pt;}
.x125_c00150{left:499.066667pt;}
.x100_c00150{left:501.066667pt;}
.x2b_c00150{left:503.866667pt;}
.xe5_c00150{left:505.200000pt;}
.x43_c00150{left:506.400000pt;}
.xba_c00150{left:510.266667pt;}
.xd6_c00150{left:513.200000pt;}
.x98_c00150{left:515.733333pt;}
.xde_c00150{left:517.200000pt;}
.x7a_c00150{left:518.533333pt;}
.x83_c00150{left:522.133333pt;}
.x6f_c00150{left:523.200000pt;}
.xc_c00150{left:524.933333pt;}
.x50_c00150{left:526.400000pt;}
.xf9_c00150{left:529.066667pt;}
.xbf_c00150{left:531.466667pt;}
.x2c_c00150{left:533.333333pt;}
.x5f_c00150{left:534.533333pt;}
.x44_c00150{left:536.133333pt;}
.x1e_c00150{left:538.666667pt;}
.x8d_c00150{left:544.800000pt;}
.xc7_c00150{left:546.933333pt;}
.xf6_c00150{left:548.400000pt;}
.xb2_c00150{left:551.600000pt;}
.x38_c00150{left:552.800000pt;}
.x51_c00150{left:554.266667pt;}
.x45_c00150{left:556.666667pt;}
.xa8_c00150{left:560.133333pt;}
.x7b_c00150{left:561.066667pt;}
.x2d_c00150{left:564.400000pt;}
.xdf_c00150{left:565.466667pt;}
.x59_c00150{left:568.533333pt;}
.xa0_c00150{left:571.200000pt;}
.xcf_c00150{left:573.066667pt;}
.xd_c00150{left:576.800000pt;}
.xc8_c00150{left:578.666667pt;}
.xe6_c00150{left:580.133333pt;}
.xa1_c00150{left:581.066667pt;}
.xd7_c00150{left:582.000000pt;}
.x70_c00150{left:584.266667pt;}
.x84_c00150{left:586.133333pt;}
.x1f_c00150{left:589.200000pt;}
.xc0_c00150{left:590.666667pt;}
.x60_c00150{left:592.400000pt;}
.xef_c00150{left:594.533333pt;}
.x2e_c00150{left:599.600000pt;}
.xa9_c00150{left:600.800000pt;}
.x109_c00150{left:602.400000pt;}
.x20_c00150{left:603.866667pt;}
.xd8_c00150{left:605.733333pt;}
.xe_c00150{left:608.533333pt;}
.xc1_c00150{left:609.600000pt;}
.x39_c00150{left:611.066667pt;}
.x99_c00150{left:612.000000pt;}
.xc9_c00150{left:613.866667pt;}
.x71_c00150{left:616.000000pt;}
.xaa_c00150{left:617.733333pt;}
.x8e_c00150{left:621.866667pt;}
.x61_c00150{left:623.466667pt;}
.x106_c00150{left:624.800000pt;}
.x11f_c00150{left:626.800000pt;}
.x85_c00150{left:628.400000pt;}
.xfa_c00150{left:629.600000pt;}
.x52_c00150{left:631.066667pt;}
.xe7_c00150{left:633.333333pt;}
.x72_c00150{left:636.533333pt;}
.xf_c00150{left:638.666667pt;}
.xab_c00150{left:639.866667pt;}
.x9a_c00150{left:641.066667pt;}
.xd9_c00150{left:642.266667pt;}
.xc2_c00150{left:646.400000pt;}
.x62_c00150{left:649.066667pt;}
.x21_c00150{left:650.933333pt;}
.x2f_c00150{left:652.133333pt;}
.xa2_c00150{left:653.066667pt;}
.xac_c00150{left:654.266667pt;}
.x8f_c00150{left:655.200000pt;}
.x86_c00150{left:660.666667pt;}
.x73_c00150{left:661.866667pt;}
.x10a_c00150{left:663.466667pt;}
.xda_c00150{left:664.666667pt;}
.x5a_c00150{left:667.466667pt;}
.x10_c00150{left:668.800000pt;}
.x120_c00150{left:670.666667pt;}
.x10e_c00150{left:672.000000pt;}
.x111_c00150{left:674.266667pt;}
.x101_c00150{left:676.666667pt;}
.x7c_c00150{left:678.133333pt;}
.x9b_c00150{left:680.133333pt;}
.xb3_c00150{left:681.200000pt;}
.x3a_c00150{left:683.733333pt;}
.x46_c00150{left:684.933333pt;}
.xca_c00150{left:686.533333pt;}
.x90_c00150{left:691.733333pt;}
.x87_c00150{left:694.933333pt;}
.xe8_c00150{left:697.066667pt;}
.x22_c00150{left:700.800000pt;}
.x3b_c00150{left:703.600000pt;}
.x30_c00150{left:707.466667pt;}
.x11_c00150{left:710.133333pt;}
}





/* 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_c00151 {
    display:none;
  }
  .loading-indicator_c00151.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00151 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_c00151 { 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_c00151" -> "#page-container .classname_c00151")
 */
.pf_c00151 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00151 { /* 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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00151 { /* 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_c00151 { /* 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_c00151 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00151 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00151 {overflow:visible;}
  }
}
.c_c00151 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00151 { /* 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_c00151:after { /* webkit #35443 */
  content: '';
}
.t_c00151:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00151 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 */
}
.__c00151 { /* 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_c00151 { /* info for Javascript */
  display:none;
}
.l_c00151 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00151 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00151 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00151: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_c00151 {
    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_c00151.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00151.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_c00151 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00151{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00151;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.000000;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;}
.m16_c00151{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00151{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.maf_c00151{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.maa_c00151{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m89_c00151{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m73_c00151{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00151{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m36_c00151{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mab_c00151{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00151{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00151{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00151{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mae_c00151{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m34_c00151{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00151{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m77_c00151{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m33_c00151{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m64_c00151{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m86_c00151{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00151{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5_c00151{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00151{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m47_c00151{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m68_c00151{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00151{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m97_c00151{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m70_c00151{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00151{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m95_c00151{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m59_c00151{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00151{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00151{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m87_c00151{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m29_c00151{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13_c00151{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00151{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m15_c00151{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m44_c00151{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m51_c00151{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00151{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26_c00151{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00151{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00151{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00151{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00151{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m41_c00151{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00151{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);}
.ma5_c00151{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00151{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00151{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md_c00151{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m45_c00151{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m84_c00151{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m50_c00151{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m83_c00151{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m79_c00151{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00151{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00151{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00151{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00151{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00151{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m80_c00151{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m1_c00151{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00151{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m30_c00151{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00151{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m65_c00151{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m46_c00151{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00151{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00151{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00151{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m72_c00151{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00151{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00151{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m28_c00151{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00151{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00151{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00151{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m69_c00151{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m0_c00151{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m94_c00151{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2_c00151{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m54_c00151{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m67_c00151{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00151{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m39_c00151{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00151{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00151{vertical-align:0.000000px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{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__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:-9.125000px;}
.ws2_c00151{word-spacing:-7.095151px;}
.ws1_c00151{word-spacing:-4.444444px;}
.ws7_c00151{word-spacing:-1.495039px;}
.wsa_c00151{word-spacing:0.000000px;}
.ws4_c00151{word-spacing:0.214286px;}
.ws8_c00151{word-spacing:0.250000px;}
.ws3_c00151{word-spacing:4.250000px;}
.ws5_c00151{word-spacing:4.625000px;}
.ws9_c00151{word-spacing:6.198456px;}
.ws6_c00151{word-spacing:6.906219px;}
.fc0_c00151{color:transparent;}
.fs1_c00151{font-size:48.000000px;}
.fs0_c00151{font-size:54.000000px;}
.y0_c00151{bottom:0.000000px;}
.y2c_c00151{bottom:139.350000px;}
.y2b_c00151{bottom:158.400000px;}
.y2a_c00151{bottom:173.850000px;}
.y29_c00151{bottom:214.050000px;}
.y28_c00151{bottom:233.850000px;}
.y27_c00151{bottom:253.650000px;}
.y26_c00151{bottom:273.450000px;}
.y25_c00151{bottom:293.550000px;}
.y24_c00151{bottom:313.050000px;}
.y23_c00151{bottom:332.850000px;}
.y22_c00151{bottom:352.650000px;}
.y21_c00151{bottom:372.150000px;}
.y20_c00151{bottom:391.950000px;}
.y1f_c00151{bottom:411.750000px;}
.y1e_c00151{bottom:431.250000px;}
.y1d_c00151{bottom:469.500000px;}
.y1c_c00151{bottom:489.300000px;}
.y1b_c00151{bottom:508.800000px;}
.y1a_c00151{bottom:528.900000px;}
.y19_c00151{bottom:548.700000px;}
.y18_c00151{bottom:568.500000px;}
.y17_c00151{bottom:588.300000px;}
.y16_c00151{bottom:608.100000px;}
.y15_c00151{bottom:627.900000px;}
.y14_c00151{bottom:648.000000px;}
.y13_c00151{bottom:668.100000px;}
.y12_c00151{bottom:687.900000px;}
.y11_c00151{bottom:707.700000px;}
.y10_c00151{bottom:727.200000px;}
.yf_c00151{bottom:747.300000px;}
.ye_c00151{bottom:766.800000px;}
.yd_c00151{bottom:786.600000px;}
.yc_c00151{bottom:806.700000px;}
.yb_c00151{bottom:826.500000px;}
.ya_c00151{bottom:846.300000px;}
.y9_c00151{bottom:866.100000px;}
.y8_c00151{bottom:886.200000px;}
.y7_c00151{bottom:905.700000px;}
.y6_c00151{bottom:925.800000px;}
.y5_c00151{bottom:946.350000px;}
.y4_c00151{bottom:965.850000px;}
.y3_c00151{bottom:985.650000px;}
.y2_c00151{bottom:1005.450000px;}
.y1_c00151{bottom:1042.950000px;}
.h3_c00151{height:48.000000px;}
.h2_c00151{height:54.000000px;}
.h1_c00151{height:1167.750000px;}
.h0_c00151{height:1167.839997px;}
.w1_c00151{width:920.250000px;}
.w0_c00151{width:920.519990px;}
.x0_c00151{left:0.000000px;}
.x4_c00151{left:86.700000px;}
.x6a_c00151{left:87.750000px;}
.xfb_c00151{left:88.950000px;}
.x83_c00151{left:99.300000px;}
.xa6_c00151{left:104.850000px;}
.x134_c00151{left:106.500000px;}
.xf2_c00151{left:107.550000px;}
.x8d_c00151{left:108.600000px;}
.x126_c00151{left:113.700000px;}
.x9e_c00151{left:116.400000px;}
.x49_c00151{left:118.050000px;}
.x135_c00151{left:120.900000px;}
.xc5_c00151{left:123.150000px;}
.x34_c00151{left:124.650000px;}
.x119_c00151{left:126.600000px;}
.x26_c00151{left:127.800000px;}
.x5f_c00151{left:130.200000px;}
.x105_c00151{left:135.000000px;}
.x9f_c00151{left:137.700000px;}
.xd2_c00151{left:139.050000px;}
.xee_c00151{left:141.150000px;}
.x4a_c00151{left:142.200000px;}
.xe5_c00151{left:144.300000px;}
.x110_c00151{left:145.350000px;}
.x5_c00151{left:146.850000px;}
.x27_c00151{left:148.650000px;}
.xf3_c00151{left:151.500000px;}
.x7d_c00151{left:153.450000px;}
.x84_c00151{left:155.100000px;}
.x42_c00151{left:156.450000px;}
.x60_c00151{left:159.750000px;}
.x8e_c00151{left:162.300000px;}
.x4b_c00151{left:163.800000px;}
.x17_c00151{left:165.600000px;}
.xbc_c00151{left:167.400000px;}
.xdb_c00151{left:170.550000px;}
.xb7_c00151{left:172.200000px;}
.xd3_c00151{left:175.800000px;}
.x28_c00151{left:177.150000px;}
.x73_c00151{left:178.500000px;}
.x6b_c00151{left:180.600000px;}
.xaf_c00151{left:182.550000px;}
.x58_c00151{left:183.900000px;}
.x18_c00151{left:185.100000px;}
.xa7_c00151{left:186.900000px;}
.x6_c00151{left:187.950000px;}
.x35_c00151{left:190.200000px;}
.x111_c00151{left:191.400000px;}
.xef_c00151{left:192.900000px;}
.x4c_c00151{left:194.700000px;}
.xbd_c00151{left:197.700000px;}
.x117_c00151{left:199.200000px;}
.x61_c00151{left:202.950000px;}
.x8f_c00151{left:204.750000px;}
.x7_c00151{left:207.750000px;}
.xa0_c00151{left:208.950000px;}
.x10a_c00151{left:210.150000px;}
.x29_c00151{left:213.150000px;}
.x36_c00151{left:214.650000px;}
.xc6_c00151{left:217.500000px;}
.x93_c00151{left:218.550000px;}
.x19_c00151{left:220.350000px;}
.x136_c00151{left:221.700000px;}
.x43_c00151{left:224.850000px;}
.x115_c00151{left:227.550000px;}
.x11c_c00151{left:228.600000px;}
.x90_c00151{left:229.650000px;}
.x137_c00151{left:230.700000px;}
.x12b_c00151{left:231.900000px;}
.x2a_c00151{left:232.950000px;}
.x8_c00151{left:235.800000px;}
.x74_c00151{left:237.600000px;}
.x62_c00151{left:239.250000px;}
.xa1_c00151{left:240.300000px;}
.x6c_c00151{left:241.800000px;}
.xfc_c00151{left:246.900000px;}
.x7e_c00151{left:248.100000px;}
.x4d_c00151{left:249.450000px;}
.x121_c00151{left:252.450000px;}
.xfd_c00151{left:253.500000px;}
.x1a_c00151{left:257.400000px;}
.xbe_c00151{left:260.400000px;}
.xf4_c00151{left:261.600000px;}
.x9_c00151{left:262.800000px;}
.x2b_c00151{left:264.600000px;}
.x85_c00151{left:266.400000px;}
.x1b_c00151{left:268.200000px;}
.x37_c00151{left:269.400000px;}
.x6d_c00151{left:270.900000px;}
.x130_c00151{left:271.950000px;}
.xe0_c00151{left:273.000000px;}
.x94_c00151{left:274.050000px;}
.x127_c00151{left:275.550000px;}
.x75_c00151{left:277.200000px;}
.xb0_c00151{left:280.050000px;}
.xa_c00151{left:282.300000px;}
.x4e_c00151{left:283.350000px;}
.x86_c00151{left:285.150000px;}
.x91_c00151{left:286.200000px;}
.xa8_c00151{left:289.500000px;}
.xc7_c00151{left:290.550000px;}
.x1c_c00151{left:291.900000px;}
.x59_c00151{left:292.950000px;}
.xe6_c00151{left:295.200000px;}
.x44_c00151{left:297.900000px;}
.xd4_c00151{left:300.000000px;}
.x4f_c00151{left:301.650000px;}
.x131_c00151{left:302.850000px;}
.xbf_c00151{left:306.750000px;}
.xb_c00151{left:310.350000px;}
.xc8_c00151{left:313.650000px;}
.xfe_c00151{left:314.700000px;}
.x2c_c00151{left:317.850000px;}
.xd5_c00151{left:319.800000px;}
.x38_c00151{left:321.300000px;}
.xa9_c00151{left:322.950000px;}
.x6e_c00151{left:324.900000px;}
.x12c_c00151{left:327.300000px;}
.x7f_c00151{left:328.800000px;}
.x95_c00151{left:330.900000px;}
.x10b_c00151{left:332.250000px;}
.x76_c00151{left:335.100000px;}
.xdc_c00151{left:338.700000px;}
.x63_c00151{left:342.600000px;}
.x1d_c00151{left:344.100000px;}
.xd6_c00151{left:345.750000px;}
.x96_c00151{left:347.850000px;}
.xe7_c00151{left:349.200000px;}
.xc9_c00151{left:351.150000px;}
.x45_c00151{left:352.950000px;}
.x128_c00151{left:354.750000px;}
.x11d_c00151{left:356.700000px;}
.x39_c00151{left:360.150000px;}
.x1_c00151{left:362.550000px;}
.x87_c00151{left:366.450000px;}
.x6f_c00151{left:368.100000px;}
.xa2_c00151{left:369.900000px;}
.xc_c00151{left:371.250000px;}
.xb1_c00151{left:372.600000px;}
.x2d_c00151{left:375.150000px;}
.x77_c00151{left:376.800000px;}
.xff_c00151{left:380.550000px;}
.x92_c00151{left:381.900000px;}
.x97_c00151{left:383.850000px;}
.x122_c00151{left:385.050000px;}
.x64_c00151{left:386.100000px;}
.xb8_c00151{left:387.150000px;}
.xe1_c00151{left:390.750000px;}
.xca_c00151{left:391.800000px;}
.xaa_c00151{left:392.850000px;}
.x12d_c00151{left:396.150000px;}
.x5a_c00151{left:397.350000px;}
.x1e_c00151{left:399.600000px;}
.xd_c00151{left:401.550000px;}
.xc0_c00151{left:402.750000px;}
.x50_c00151{left:404.700000px;}
.xf5_c00151{left:408.900000px;}
.x46_c00151{left:410.250000px;}
.xcb_c00151{left:411.300000px;}
.x11e_c00151{left:413.250000px;}
.x100_c00151{left:414.750000px;}
.x2_c00151{left:418.050000px;}
.x112_c00151{left:420.300000px;}
.x98_c00151{left:421.650000px;}
.xd7_c00151{left:423.150000px;}
.x70_c00151{left:424.950000px;}
.x3a_c00151{left:427.200000px;}
.x2e_c00151{left:429.900000px;}
.x1f_c00151{left:430.950000px;}
.xeb_c00151{left:435.600000px;}
.xb2_c00151{left:437.400000px;}
.xc1_c00151{left:438.450000px;}
.x106_c00151{left:439.650000px;}
.xe_c00151{left:440.850000px;}
.xe8_c00151{left:442.050000px;}
.xdd_c00151{left:443.700000px;}
.xf0_c00151{left:448.050000px;}
.xa3_c00151{left:449.850000px;}
.x51_c00151{left:451.200000px;}
.x47_c00151{left:456.000000px;}
.xb3_c00151{left:457.200000px;}
.xf_c00151{left:458.550000px;}
.xcc_c00151{left:460.650000px;}
.xb9_c00151{left:462.000000px;}
.xe9_c00151{left:464.400000px;}
.x10c_c00151{left:465.450000px;}
.xde_c00151{left:467.100000px;}
.x13c_c00151{left:468.300000px;}
.x138_c00151{left:469.500000px;}
.xd8_c00151{left:471.750000px;}
.x2f_c00151{left:474.150000px;}
.x78_c00151{left:475.200000px;}
.x88_c00151{left:477.000000px;}
.x101_c00151{left:478.500000px;}
.x20_c00151{left:479.550000px;}
.xf6_c00151{left:481.350000px;}
.xab_c00151{left:482.850000px;}
.x5b_c00151{left:484.200000px;}
.x10d_c00151{left:485.250000px;}
.x10_c00151{left:486.600000px;}
.xcd_c00151{left:488.700000px;}
.x113_c00151{left:490.050000px;}
.x71_c00151{left:492.300000px;}
.x30_c00151{left:493.950000px;}
.x99_c00151{left:498.750000px;}
.x132_c00151{left:501.300000px;}
.x11_c00151{left:504.300000px;}
.xe2_c00151{left:505.950000px;}
.x3b_c00151{left:507.150000px;}
.x72_c00151{left:509.250000px;}
.xac_c00151{left:511.350000px;}
.xdf_c00151{left:512.550000px;}
.x65_c00151{left:514.650000px;}
.x11f_c00151{left:515.850000px;}
.x102_c00151{left:519.600000px;}
.x79_c00151{left:520.950000px;}
.x52_c00151{left:523.950000px;}
.x21_c00151{left:527.400000px;}
.xec_c00151{left:528.750000px;}
.x5c_c00151{left:531.000000px;}
.x3c_c00151{left:535.950000px;}
.x48_c00151{left:537.300000px;}
.xb4_c00151{left:538.500000px;}
.x139_c00151{left:540.000000px;}
.x31_c00151{left:541.050000px;}
.xba_c00151{left:542.700000px;}
.x12_c00151{left:543.900000px;}
.x120_c00151{left:545.400000px;}
.x53_c00151{left:546.600000px;}
.x13a_c00151{left:548.700000px;}
.x103_c00151{left:550.950000px;}
.xf7_c00151{left:552.300000px;}
.x66_c00151{left:556.800000px;}
.x11a_c00151{left:557.850000px;}
.xce_c00151{left:558.900000px;}
.x129_c00151{left:559.950000px;}
.x89_c00151{left:562.350000px;}
.x9a_c00151{left:563.550000px;}
.x3d_c00151{left:565.800000px;}
.xd9_c00151{left:568.650000px;}
.x13_c00151{left:572.700000px;}
.x12e_c00151{left:574.650000px;}
.x13d_c00151{left:577.350000px;}
.x54_c00151{left:578.700000px;}
.x123_c00151{left:580.200000px;}
.x8a_c00151{left:582.450000px;}
.x12a_c00151{left:585.450000px;}
.x32_c00151{left:588.600000px;}
.x7a_c00151{left:591.900000px;}
.xad_c00151{left:593.400000px;}
.x10e_c00151{left:594.600000px;}
.x9b_c00151{left:597.750000px;}
.xc2_c00151{left:601.650000px;}
.x80_c00151{left:602.850000px;}
.x124_c00151{left:605.100000px;}
.xed_c00151{left:606.150000px;}
.xcf_c00151{left:611.100000px;}
.x114_c00151{left:613.200000px;}
.x67_c00151{left:614.400000px;}
.xf8_c00151{left:616.800000px;}
.x55_c00151{left:618.300000px;}
.x22_c00151{left:621.000000px;}
.x9c_c00151{left:623.700000px;}
.xd0_c00151{left:625.500000px;}
.x118_c00151{left:628.800000px;}
.xbb_c00151{left:630.150000px;}
.xb5_c00151{left:631.650000px;}
.x3e_c00151{left:633.450000px;}
.x14_c00151{left:634.650000px;}
.xae_c00151{left:635.850000px;}
.x5d_c00151{left:637.500000px;}
.x56_c00151{left:639.150000px;}
.xe3_c00151{left:640.950000px;}
.xa4_c00151{left:643.500000px;}
.x8b_c00151{left:647.250000px;}
.x104_c00151{left:649.200000px;}
.x133_c00151{left:650.700000px;}
.x3f_c00151{left:653.250000px;}
.xf9_c00151{left:654.900000px;}
.x7b_c00151{left:657.450000px;}
.x116_c00151{left:659.100000px;}
.x23_c00151{left:660.300000px;}
.x9d_c00151{left:662.250000px;}
.xd1_c00151{left:663.600000px;}
.x81_c00151{left:665.850000px;}
.xea_c00151{left:668.400000px;}
.xc3_c00151{left:671.100000px;}
.x11b_c00151{left:672.900000px;}
.x40_c00151{left:677.700000px;}
.x24_c00151{left:680.100000px;}
.x68_c00151{left:683.250000px;}
.x107_c00151{left:684.900000px;}
.x5e_c00151{left:687.150000px;}
.xda_c00151{left:688.350000px;}
.xb6_c00151{left:691.050000px;}
.x12f_c00151{left:692.100000px;}
.x8c_c00151{left:693.300000px;}
.x82_c00151{left:697.200000px;}
.x13b_c00151{left:698.850000px;}
.xf1_c00151{left:702.300000px;}
.x7c_c00151{left:703.500000px;}
.xa5_c00151{left:706.050000px;}
.x25_c00151{left:709.200000px;}
.x125_c00151{left:710.250000px;}
.x15_c00151{left:712.050000px;}
.x108_c00151{left:713.700000px;}
.x33_c00151{left:715.350000px;}
.x10f_c00151{left:717.450000px;}
.x57_c00151{left:720.600000px;}
.xc4_c00151{left:721.800000px;}
.x69_c00151{left:723.150000px;}
.x109_c00151{left:725.250000px;}
.xe4_c00151{left:727.050000px;}
.xfa_c00151{left:730.500000px;}
.x16_c00151{left:732.600000px;}
.x3_c00151{left:735.600000px;}
.x41_c00151{left:740.400000px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:-8.111111pt;}
.ws2_c00151{word-spacing:-6.306801pt;}
.ws1_c00151{word-spacing:-3.950617pt;}
.ws7_c00151{word-spacing:-1.328923pt;}
.wsa_c00151{word-spacing:0.000000pt;}
.ws4_c00151{word-spacing:0.190476pt;}
.ws8_c00151{word-spacing:0.222222pt;}
.ws3_c00151{word-spacing:3.777778pt;}
.ws5_c00151{word-spacing:4.111111pt;}
.ws9_c00151{word-spacing:5.509739pt;}
.ws6_c00151{word-spacing:6.138861pt;}
.fs1_c00151{font-size:42.666667pt;}
.fs0_c00151{font-size:48.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y2c_c00151{bottom:123.866667pt;}
.y2b_c00151{bottom:140.800000pt;}
.y2a_c00151{bottom:154.533333pt;}
.y29_c00151{bottom:190.266667pt;}
.y28_c00151{bottom:207.866667pt;}
.y27_c00151{bottom:225.466667pt;}
.y26_c00151{bottom:243.066667pt;}
.y25_c00151{bottom:260.933333pt;}
.y24_c00151{bottom:278.266667pt;}
.y23_c00151{bottom:295.866667pt;}
.y22_c00151{bottom:313.466667pt;}
.y21_c00151{bottom:330.800000pt;}
.y20_c00151{bottom:348.400000pt;}
.y1f_c00151{bottom:366.000000pt;}
.y1e_c00151{bottom:383.333333pt;}
.y1d_c00151{bottom:417.333333pt;}
.y1c_c00151{bottom:434.933333pt;}
.y1b_c00151{bottom:452.266667pt;}
.y1a_c00151{bottom:470.133333pt;}
.y19_c00151{bottom:487.733333pt;}
.y18_c00151{bottom:505.333333pt;}
.y17_c00151{bottom:522.933333pt;}
.y16_c00151{bottom:540.533333pt;}
.y15_c00151{bottom:558.133333pt;}
.y14_c00151{bottom:576.000000pt;}
.y13_c00151{bottom:593.866667pt;}
.y12_c00151{bottom:611.466667pt;}
.y11_c00151{bottom:629.066667pt;}
.y10_c00151{bottom:646.400000pt;}
.yf_c00151{bottom:664.266667pt;}
.ye_c00151{bottom:681.600000pt;}
.yd_c00151{bottom:699.200000pt;}
.yc_c00151{bottom:717.066667pt;}
.yb_c00151{bottom:734.666667pt;}
.ya_c00151{bottom:752.266667pt;}
.y9_c00151{bottom:769.866667pt;}
.y8_c00151{bottom:787.733333pt;}
.y7_c00151{bottom:805.066667pt;}
.y6_c00151{bottom:822.933333pt;}
.y5_c00151{bottom:841.200000pt;}
.y4_c00151{bottom:858.533333pt;}
.y3_c00151{bottom:876.133333pt;}
.y2_c00151{bottom:893.733333pt;}
.y1_c00151{bottom:927.066667pt;}
.h3_c00151{height:42.666667pt;}
.h2_c00151{height:48.000000pt;}
.h1_c00151{height:1038.000000pt;}
.h0_c00151{height:1038.079997pt;}
.w1_c00151{width:818.000000pt;}
.w0_c00151{width:818.239991pt;}
.x0_c00151{left:0.000000pt;}
.x4_c00151{left:77.066667pt;}
.x6a_c00151{left:78.000000pt;}
.xfb_c00151{left:79.066667pt;}
.x83_c00151{left:88.266667pt;}
.xa6_c00151{left:93.200000pt;}
.x134_c00151{left:94.666667pt;}
.xf2_c00151{left:95.600000pt;}
.x8d_c00151{left:96.533333pt;}
.x126_c00151{left:101.066667pt;}
.x9e_c00151{left:103.466667pt;}
.x49_c00151{left:104.933333pt;}
.x135_c00151{left:107.466667pt;}
.xc5_c00151{left:109.466667pt;}
.x34_c00151{left:110.800000pt;}
.x119_c00151{left:112.533333pt;}
.x26_c00151{left:113.600000pt;}
.x5f_c00151{left:115.733333pt;}
.x105_c00151{left:120.000000pt;}
.x9f_c00151{left:122.400000pt;}
.xd2_c00151{left:123.600000pt;}
.xee_c00151{left:125.466667pt;}
.x4a_c00151{left:126.400000pt;}
.xe5_c00151{left:128.266667pt;}
.x110_c00151{left:129.200000pt;}
.x5_c00151{left:130.533333pt;}
.x27_c00151{left:132.133333pt;}
.xf3_c00151{left:134.666667pt;}
.x7d_c00151{left:136.400000pt;}
.x84_c00151{left:137.866667pt;}
.x42_c00151{left:139.066667pt;}
.x60_c00151{left:142.000000pt;}
.x8e_c00151{left:144.266667pt;}
.x4b_c00151{left:145.600000pt;}
.x17_c00151{left:147.200000pt;}
.xbc_c00151{left:148.800000pt;}
.xdb_c00151{left:151.600000pt;}
.xb7_c00151{left:153.066667pt;}
.xd3_c00151{left:156.266667pt;}
.x28_c00151{left:157.466667pt;}
.x73_c00151{left:158.666667pt;}
.x6b_c00151{left:160.533333pt;}
.xaf_c00151{left:162.266667pt;}
.x58_c00151{left:163.466667pt;}
.x18_c00151{left:164.533333pt;}
.xa7_c00151{left:166.133333pt;}
.x6_c00151{left:167.066667pt;}
.x35_c00151{left:169.066667pt;}
.x111_c00151{left:170.133333pt;}
.xef_c00151{left:171.466667pt;}
.x4c_c00151{left:173.066667pt;}
.xbd_c00151{left:175.733333pt;}
.x117_c00151{left:177.066667pt;}
.x61_c00151{left:180.400000pt;}
.x8f_c00151{left:182.000000pt;}
.x7_c00151{left:184.666667pt;}
.xa0_c00151{left:185.733333pt;}
.x10a_c00151{left:186.800000pt;}
.x29_c00151{left:189.466667pt;}
.x36_c00151{left:190.800000pt;}
.xc6_c00151{left:193.333333pt;}
.x93_c00151{left:194.266667pt;}
.x19_c00151{left:195.866667pt;}
.x136_c00151{left:197.066667pt;}
.x43_c00151{left:199.866667pt;}
.x115_c00151{left:202.266667pt;}
.x11c_c00151{left:203.200000pt;}
.x90_c00151{left:204.133333pt;}
.x137_c00151{left:205.066667pt;}
.x12b_c00151{left:206.133333pt;}
.x2a_c00151{left:207.066667pt;}
.x8_c00151{left:209.600000pt;}
.x74_c00151{left:211.200000pt;}
.x62_c00151{left:212.666667pt;}
.xa1_c00151{left:213.600000pt;}
.x6c_c00151{left:214.933333pt;}
.xfc_c00151{left:219.466667pt;}
.x7e_c00151{left:220.533333pt;}
.x4d_c00151{left:221.733333pt;}
.x121_c00151{left:224.400000pt;}
.xfd_c00151{left:225.333333pt;}
.x1a_c00151{left:228.800000pt;}
.xbe_c00151{left:231.466667pt;}
.xf4_c00151{left:232.533333pt;}
.x9_c00151{left:233.600000pt;}
.x2b_c00151{left:235.200000pt;}
.x85_c00151{left:236.800000pt;}
.x1b_c00151{left:238.400000pt;}
.x37_c00151{left:239.466667pt;}
.x6d_c00151{left:240.800000pt;}
.x130_c00151{left:241.733333pt;}
.xe0_c00151{left:242.666667pt;}
.x94_c00151{left:243.600000pt;}
.x127_c00151{left:244.933333pt;}
.x75_c00151{left:246.400000pt;}
.xb0_c00151{left:248.933333pt;}
.xa_c00151{left:250.933333pt;}
.x4e_c00151{left:251.866667pt;}
.x86_c00151{left:253.466667pt;}
.x91_c00151{left:254.400000pt;}
.xa8_c00151{left:257.333333pt;}
.xc7_c00151{left:258.266667pt;}
.x1c_c00151{left:259.466667pt;}
.x59_c00151{left:260.400000pt;}
.xe6_c00151{left:262.400000pt;}
.x44_c00151{left:264.800000pt;}
.xd4_c00151{left:266.666667pt;}
.x4f_c00151{left:268.133333pt;}
.x131_c00151{left:269.200000pt;}
.xbf_c00151{left:272.666667pt;}
.xb_c00151{left:275.866667pt;}
.xc8_c00151{left:278.800000pt;}
.xfe_c00151{left:279.733333pt;}
.x2c_c00151{left:282.533333pt;}
.xd5_c00151{left:284.266667pt;}
.x38_c00151{left:285.600000pt;}
.xa9_c00151{left:287.066667pt;}
.x6e_c00151{left:288.800000pt;}
.x12c_c00151{left:290.933333pt;}
.x7f_c00151{left:292.266667pt;}
.x95_c00151{left:294.133333pt;}
.x10b_c00151{left:295.333333pt;}
.x76_c00151{left:297.866667pt;}
.xdc_c00151{left:301.066667pt;}
.x63_c00151{left:304.533333pt;}
.x1d_c00151{left:305.866667pt;}
.xd6_c00151{left:307.333333pt;}
.x96_c00151{left:309.200000pt;}
.xe7_c00151{left:310.400000pt;}
.xc9_c00151{left:312.133333pt;}
.x45_c00151{left:313.733333pt;}
.x128_c00151{left:315.333333pt;}
.x11d_c00151{left:317.066667pt;}
.x39_c00151{left:320.133333pt;}
.x1_c00151{left:322.266667pt;}
.x87_c00151{left:325.733333pt;}
.x6f_c00151{left:327.200000pt;}
.xa2_c00151{left:328.800000pt;}
.xc_c00151{left:330.000000pt;}
.xb1_c00151{left:331.200000pt;}
.x2d_c00151{left:333.466667pt;}
.x77_c00151{left:334.933333pt;}
.xff_c00151{left:338.266667pt;}
.x92_c00151{left:339.466667pt;}
.x97_c00151{left:341.200000pt;}
.x122_c00151{left:342.266667pt;}
.x64_c00151{left:343.200000pt;}
.xb8_c00151{left:344.133333pt;}
.xe1_c00151{left:347.333333pt;}
.xca_c00151{left:348.266667pt;}
.xaa_c00151{left:349.200000pt;}
.x12d_c00151{left:352.133333pt;}
.x5a_c00151{left:353.200000pt;}
.x1e_c00151{left:355.200000pt;}
.xd_c00151{left:356.933333pt;}
.xc0_c00151{left:358.000000pt;}
.x50_c00151{left:359.733333pt;}
.xf5_c00151{left:363.466667pt;}
.x46_c00151{left:364.666667pt;}
.xcb_c00151{left:365.600000pt;}
.x11e_c00151{left:367.333333pt;}
.x100_c00151{left:368.666667pt;}
.x2_c00151{left:371.600000pt;}
.x112_c00151{left:373.600000pt;}
.x98_c00151{left:374.800000pt;}
.xd7_c00151{left:376.133333pt;}
.x70_c00151{left:377.733333pt;}
.x3a_c00151{left:379.733333pt;}
.x2e_c00151{left:382.133333pt;}
.x1f_c00151{left:383.066667pt;}
.xeb_c00151{left:387.200000pt;}
.xb2_c00151{left:388.800000pt;}
.xc1_c00151{left:389.733333pt;}
.x106_c00151{left:390.800000pt;}
.xe_c00151{left:391.866667pt;}
.xe8_c00151{left:392.933333pt;}
.xdd_c00151{left:394.400000pt;}
.xf0_c00151{left:398.266667pt;}
.xa3_c00151{left:399.866667pt;}
.x51_c00151{left:401.066667pt;}
.x47_c00151{left:405.333333pt;}
.xb3_c00151{left:406.400000pt;}
.xf_c00151{left:407.600000pt;}
.xcc_c00151{left:409.466667pt;}
.xb9_c00151{left:410.666667pt;}
.xe9_c00151{left:412.800000pt;}
.x10c_c00151{left:413.733333pt;}
.xde_c00151{left:415.200000pt;}
.x13c_c00151{left:416.266667pt;}
.x138_c00151{left:417.333333pt;}
.xd8_c00151{left:419.333333pt;}
.x2f_c00151{left:421.466667pt;}
.x78_c00151{left:422.400000pt;}
.x88_c00151{left:424.000000pt;}
.x101_c00151{left:425.333333pt;}
.x20_c00151{left:426.266667pt;}
.xf6_c00151{left:427.866667pt;}
.xab_c00151{left:429.200000pt;}
.x5b_c00151{left:430.400000pt;}
.x10d_c00151{left:431.333333pt;}
.x10_c00151{left:432.533333pt;}
.xcd_c00151{left:434.400000pt;}
.x113_c00151{left:435.600000pt;}
.x71_c00151{left:437.600000pt;}
.x30_c00151{left:439.066667pt;}
.x99_c00151{left:443.333333pt;}
.x132_c00151{left:445.600000pt;}
.x11_c00151{left:448.266667pt;}
.xe2_c00151{left:449.733333pt;}
.x3b_c00151{left:450.800000pt;}
.x72_c00151{left:452.666667pt;}
.xac_c00151{left:454.533333pt;}
.xdf_c00151{left:455.600000pt;}
.x65_c00151{left:457.466667pt;}
.x11f_c00151{left:458.533333pt;}
.x102_c00151{left:461.866667pt;}
.x79_c00151{left:463.066667pt;}
.x52_c00151{left:465.733333pt;}
.x21_c00151{left:468.800000pt;}
.xec_c00151{left:470.000000pt;}
.x5c_c00151{left:472.000000pt;}
.x3c_c00151{left:476.400000pt;}
.x48_c00151{left:477.600000pt;}
.xb4_c00151{left:478.666667pt;}
.x139_c00151{left:480.000000pt;}
.x31_c00151{left:480.933333pt;}
.xba_c00151{left:482.400000pt;}
.x12_c00151{left:483.466667pt;}
.x120_c00151{left:484.800000pt;}
.x53_c00151{left:485.866667pt;}
.x13a_c00151{left:487.733333pt;}
.x103_c00151{left:489.733333pt;}
.xf7_c00151{left:490.933333pt;}
.x66_c00151{left:494.933333pt;}
.x11a_c00151{left:495.866667pt;}
.xce_c00151{left:496.800000pt;}
.x129_c00151{left:497.733333pt;}
.x89_c00151{left:499.866667pt;}
.x9a_c00151{left:500.933333pt;}
.x3d_c00151{left:502.933333pt;}
.xd9_c00151{left:505.466667pt;}
.x13_c00151{left:509.066667pt;}
.x12e_c00151{left:510.800000pt;}
.x13d_c00151{left:513.200000pt;}
.x54_c00151{left:514.400000pt;}
.x123_c00151{left:515.733333pt;}
.x8a_c00151{left:517.733333pt;}
.x12a_c00151{left:520.400000pt;}
.x32_c00151{left:523.200000pt;}
.x7a_c00151{left:526.133333pt;}
.xad_c00151{left:527.466667pt;}
.x10e_c00151{left:528.533333pt;}
.x9b_c00151{left:531.333333pt;}
.xc2_c00151{left:534.800000pt;}
.x80_c00151{left:535.866667pt;}
.x124_c00151{left:537.866667pt;}
.xed_c00151{left:538.800000pt;}
.xcf_c00151{left:543.200000pt;}
.x114_c00151{left:545.066667pt;}
.x67_c00151{left:546.133333pt;}
.xf8_c00151{left:548.266667pt;}
.x55_c00151{left:549.600000pt;}
.x22_c00151{left:552.000000pt;}
.x9c_c00151{left:554.400000pt;}
.xd0_c00151{left:556.000000pt;}
.x118_c00151{left:558.933333pt;}
.xbb_c00151{left:560.133333pt;}
.xb5_c00151{left:561.466667pt;}
.x3e_c00151{left:563.066667pt;}
.x14_c00151{left:564.133333pt;}
.xae_c00151{left:565.200000pt;}
.x5d_c00151{left:566.666667pt;}
.x56_c00151{left:568.133333pt;}
.xe3_c00151{left:569.733333pt;}
.xa4_c00151{left:572.000000pt;}
.x8b_c00151{left:575.333333pt;}
.x104_c00151{left:577.066667pt;}
.x133_c00151{left:578.400000pt;}
.x3f_c00151{left:580.666667pt;}
.xf9_c00151{left:582.133333pt;}
.x7b_c00151{left:584.400000pt;}
.x116_c00151{left:585.866667pt;}
.x23_c00151{left:586.933333pt;}
.x9d_c00151{left:588.666667pt;}
.xd1_c00151{left:589.866667pt;}
.x81_c00151{left:591.866667pt;}
.xea_c00151{left:594.133333pt;}
.xc3_c00151{left:596.533333pt;}
.x11b_c00151{left:598.133333pt;}
.x40_c00151{left:602.400000pt;}
.x24_c00151{left:604.533333pt;}
.x68_c00151{left:607.333333pt;}
.x107_c00151{left:608.800000pt;}
.x5e_c00151{left:610.800000pt;}
.xda_c00151{left:611.866667pt;}
.xb6_c00151{left:614.266667pt;}
.x12f_c00151{left:615.200000pt;}
.x8c_c00151{left:616.266667pt;}
.x82_c00151{left:619.733333pt;}
.x13b_c00151{left:621.200000pt;}
.xf1_c00151{left:624.266667pt;}
.x7c_c00151{left:625.333333pt;}
.xa5_c00151{left:627.600000pt;}
.x25_c00151{left:630.400000pt;}
.x125_c00151{left:631.333333pt;}
.x15_c00151{left:632.933333pt;}
.x108_c00151{left:634.400000pt;}
.x33_c00151{left:635.866667pt;}
.x10f_c00151{left:637.733333pt;}
.x57_c00151{left:640.533333pt;}
.xc4_c00151{left:641.600000pt;}
.x69_c00151{left:642.800000pt;}
.x109_c00151{left:644.666667pt;}
.xe4_c00151{left:646.266667pt;}
.xfa_c00151{left:649.333333pt;}
.x16_c00151{left:651.200000pt;}
.x3_c00151{left:653.866667pt;}
.x41_c00151{left:658.133333pt;}
}





/* 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_c00152 {
    display:none;
  }
  .loading-indicator_c00152.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00152 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_c00152 { 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_c00152" -> "#page-container .classname_c00152")
 */
.pf_c00152 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00152 { /* 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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00152 { /* 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_c00152 { /* 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_c00152 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00152 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00152 {overflow:visible;}
  }
}
.c_c00152 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00152 { /* 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_c00152:after { /* webkit #35443 */
  content: '';
}
.t_c00152:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00152 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 */
}
.__c00152 { /* 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_c00152 { /* info for Javascript */
  display:none;
}
.l_c00152 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00152 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00152 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00152: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_c00152 {
    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_c00152.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00152.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_c00152 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00152{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00152;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.000000;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;}
.m7d_c00152{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m7_c00152{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00152{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00152{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00152{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m48_c00152{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00152{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00152{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00152{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00152{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00152{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.md_c00152{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m87_c00152{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00152{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00152{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00152{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00152{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00152{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m76_c00152{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00152{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00152{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00152{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00152{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00152{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00152{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m27_c00152{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00152{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m17_c00152{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m81_c00152{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m86_c00152{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8_c00152{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m88_c00152{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{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);}
.m97_c00152{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m40_c00152{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00152{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m98_c00152{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m37_c00152{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00152{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mad_c00152{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m91_c00152{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00152{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m41_c00152{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me_c00152{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m89_c00152{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00152{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m39_c00152{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m14_c00152{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m24_c00152{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m47_c00152{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00152{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m73_c00152{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00152{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00152{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mc_c00152{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00152{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00152{vertical-align:0.000000px;}
.ls0_c00152{letter-spacing:0.000000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{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__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00152{word-spacing:-9.125000px;}
.ws0_c00152{word-spacing:-8.750000px;}
.ws4_c00152{word-spacing:-6.175303px;}
.ws1_c00152{word-spacing:-3.250000px;}
.ws5_c00152{word-spacing:0.000000px;}
.ws3_c00152{word-spacing:3.888889px;}
.fc0_c00152{color:transparent;}
.fs0_c00152{font-size:54.000000px;}
.y0_c00152{bottom:0.000000px;}
.y2d_c00152{bottom:145.050000px;}
.y2c_c00152{bottom:172.500000px;}
.y2b_c00152{bottom:192.300000px;}
.y2a_c00152{bottom:212.100000px;}
.y29_c00152{bottom:231.750000px;}
.y28_c00152{bottom:251.550000px;}
.y27_c00152{bottom:271.350000px;}
.y26_c00152{bottom:290.850000px;}
.y25_c00152{bottom:310.650000px;}
.y24_c00152{bottom:330.450000px;}
.y23_c00152{bottom:350.250000px;}
.y22_c00152{bottom:370.050000px;}
.y21_c00152{bottom:390.000000px;}
.y20_c00152{bottom:410.100000px;}
.y1f_c00152{bottom:429.900000px;}
.y1e_c00152{bottom:449.700000px;}
.y1d_c00152{bottom:469.200000px;}
.y1c_c00152{bottom:489.000000px;}
.y1b_c00152{bottom:508.800000px;}
.y1a_c00152{bottom:528.600000px;}
.y19_c00152{bottom:548.700000px;}
.y18_c00152{bottom:568.500000px;}
.y17_c00152{bottom:588.300000px;}
.y16_c00152{bottom:608.100000px;}
.y15_c00152{bottom:627.600000px;}
.y14_c00152{bottom:647.700000px;}
.y13_c00152{bottom:667.500000px;}
.y12_c00152{bottom:687.000000px;}
.y11_c00152{bottom:706.800000px;}
.y10_c00152{bottom:726.900000px;}
.yf_c00152{bottom:746.700000px;}
.ye_c00152{bottom:766.500000px;}
.yd_c00152{bottom:786.600000px;}
.yc_c00152{bottom:806.400000px;}
.yb_c00152{bottom:826.200000px;}
.ya_c00152{bottom:846.000000px;}
.y9_c00152{bottom:865.800000px;}
.y8_c00152{bottom:885.600000px;}
.y7_c00152{bottom:905.400000px;}
.y6_c00152{bottom:925.200000px;}
.y5_c00152{bottom:945.000000px;}
.y4_c00152{bottom:964.500000px;}
.y3_c00152{bottom:984.600000px;}
.y2_c00152{bottom:1004.400000px;}
.y1_c00152{bottom:1043.250000px;}
.h2_c00152{height:54.000000px;}
.h1_c00152{height:1167.750000px;}
.h0_c00152{height:1167.839997px;}
.w1_c00152{width:920.250000px;}
.w0_c00152{width:920.519990px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:162.300000px;}
.x7e_c00152{left:163.650000px;}
.xf2_c00152{left:165.000000px;}
.x24_c00152{left:180.300000px;}
.x9f_c00152{left:183.450000px;}
.xc2_c00152{left:184.650000px;}
.x121_c00152{left:186.300000px;}
.xd0_c00152{left:189.300000px;}
.xb9_c00152{left:191.850000px;}
.x3_c00152{left:193.650000px;}
.xd2_c00152{left:195.450000px;}
.x128_c00152{left:196.500000px;}
.xaa_c00152{left:199.200000px;}
.x15_c00152{left:204.300000px;}
.x102_c00152{left:207.750000px;}
.xc3_c00152{left:209.850000px;}
.x25_c00152{left:213.750000px;}
.x115_c00152{left:215.250000px;}
.x4_c00152{left:216.300000px;}
.x75_c00152{left:218.700000px;}
.x12d_c00152{left:220.050000px;}
.x129_c00152{left:221.700000px;}
.xca_c00152{left:222.750000px;}
.x27_c00152{left:224.250000px;}
.x26_c00152{left:226.050000px;}
.x7f_c00152{left:227.700000px;}
.xab_c00152{left:229.050000px;}
.x6e_c00152{left:231.300000px;}
.x96_c00152{left:233.850000px;}
.x16_c00152{left:235.950000px;}
.x34_c00152{left:238.050000px;}
.x12e_c00152{left:240.600000px;}
.xf3_c00152{left:242.100000px;}
.xba_c00152{left:243.300000px;}
.x5_c00152{left:244.350000px;}
.x80_c00152{left:245.700000px;}
.x60_c00152{left:248.550000px;}
.x122_c00152{left:251.400000px;}
.x8c_c00152{left:252.900000px;}
.x17_c00152{left:255.000000px;}
.xda_c00152{left:258.900000px;}
.x99_c00152{left:261.150000px;}
.x111_c00152{left:262.950000px;}
.x81_c00152{left:267.000000px;}
.x61_c00152{left:269.400000px;}
.xf4_c00152{left:270.600000px;}
.x12f_c00152{left:273.750000px;}
.xb6_c00152{left:278.850000px;}
.x35_c00152{left:280.800000px;}
.x3e_c00152{left:282.150000px;}
.xff_c00152{left:284.550000px;}
.xc4_c00152{left:286.200000px;}
.x76_c00152{left:289.950000px;}
.x28_c00152{left:292.350000px;}
.x6_c00152{left:296.550000px;}
.xf5_c00152{left:298.650000px;}
.x12a_c00152{left:299.850000px;}
.xac_c00152{left:301.050000px;}
.x116_c00152{left:304.800000px;}
.x18_c00152{left:306.150000px;}
.x123_c00152{left:307.200000px;}
.xd1_c00152{left:309.750000px;}
.xa0_c00152{left:310.800000px;}
.xb7_c00152{left:312.300000px;}
.x3f_c00152{left:313.800000px;}
.xc5_c00152{left:318.600000px;}
.x57_c00152{left:320.550000px;}
.x10c_c00152{left:321.750000px;}
.x7_c00152{left:324.300000px;}
.x8d_c00152{left:326.400000px;}
.xe6_c00152{left:329.250000px;}
.x29_c00152{left:331.200000px;}
.xad_c00152{left:333.150000px;}
.x82_c00152{left:334.650000px;}
.x4b_c00152{left:337.050000px;}
.x62_c00152{left:340.650000px;}
.xb8_c00152{left:342.900000px;}
.x77_c00152{left:343.950000px;}
.x106_c00152{left:345.300000px;}
.xdb_c00152{left:346.800000px;}
.x36_c00152{left:349.200000px;}
.x124_c00152{left:350.700000px;}
.x19_c00152{left:352.200000px;}
.x112_c00152{left:354.300000px;}
.x83_c00152{left:355.950000px;}
.x10d_c00152{left:358.350000px;}
.x6f_c00152{left:359.400000px;}
.x132_c00152{left:361.950000px;}
.x2a_c00152{left:363.300000px;}
.x63_c00152{left:364.800000px;}
.xd3_c00152{left:369.300000px;}
.xa1_c00152{left:370.950000px;}
.x40_c00152{left:372.450000px;}
.x11a_c00152{left:374.250000px;}
.x135_c00152{left:376.500000px;}
.x37_c00152{left:377.700000px;}
.x64_c00152{left:379.500000px;}
.x10e_c00152{left:382.800000px;}
.x8e_c00152{left:384.300000px;}
.x125_c00152{left:385.650000px;}
.x1a_c00152{left:386.700000px;}
.xbb_c00152{left:388.350000px;}
.x107_c00152{left:390.000000px;}
.xed_c00152{left:392.550000px;}
.x41_c00152{left:393.750000px;}
.xdc_c00152{left:397.200000px;}
.x4c_c00152{left:399.000000px;}
.x8_c00152{left:400.200000px;}
.xa2_c00152{left:401.850000px;}
.x8f_c00152{left:404.850000px;}
.xae_c00152{left:406.650000px;}
.xd4_c00152{left:408.150000px;}
.x38_c00152{left:409.350000px;}
.x84_c00152{left:411.750000px;}
.xcb_c00152{left:413.850000px;}
.x78_c00152{left:415.200000px;}
.x4d_c00152{left:419.550000px;}
.x65_c00152{left:421.650000px;}
.x58_c00152{left:422.850000px;}
.x1b_c00152{left:425.550000px;}
.x9a_c00152{left:427.050000px;}
.x103_c00152{left:428.100000px;}
.x117_c00152{left:430.200000px;}
.x108_c00152{left:433.500000px;}
.x39_c00152{left:434.550000px;}
.x9_c00152{left:436.200000px;}
.x42_c00152{left:439.500000px;}
.x66_c00152{left:441.450000px;}
.x12b_c00152{left:444.900000px;}
.x4e_c00152{left:447.600000px;}
.xd5_c00152{left:448.800000px;}
.x136_c00152{left:449.850000px;}
.xa_c00152{left:453.150000px;}
.x126_c00152{left:454.800000px;}
.xdd_c00152{left:455.850000px;}
.x85_c00152{left:457.050000px;}
.x2_c00152{left:459.300000px;}
.x79_c00152{left:463.050000px;}
.x10f_c00152{left:467.100000px;}
.x43_c00152{left:468.600000px;}
.xbc_c00152{left:471.150000px;}
.xaf_c00152{left:472.950000px;}
.x3a_c00152{left:474.900000px;}
.xb_c00152{left:478.650000px;}
.x133_c00152{left:480.900000px;}
.x86_c00152{left:483.300000px;}
.x70_c00152{left:484.350000px;}
.x9b_c00152{left:485.700000px;}
.xe1_c00152{left:489.450000px;}
.x2b_c00152{left:492.600000px;}
.xf6_c00152{left:494.400000px;}
.xf9_c00152{left:496.950000px;}
.x90_c00152{left:498.450000px;}
.xc6_c00152{left:499.800000px;}
.x1c_c00152{left:502.950000px;}
.x59_c00152{left:504.600000px;}
.xee_c00152{left:505.650000px;}
.x2c_c00152{left:509.850000px;}
.x4f_c00152{left:511.650000px;}
.xc_c00152{left:513.900000px;}
.x3b_c00152{left:515.700000px;}
.x67_c00152{left:517.050000px;}
.x50_c00152{left:519.900000px;}
.x87_c00152{left:521.850000px;}
.xd6_c00152{left:524.250000px;}
.xe7_c00152{left:526.650000px;}
.xbd_c00152{left:528.450000px;}
.x127_c00152{left:531.450000px;}
.xcc_c00152{left:534.450000px;}
.x91_c00152{left:536.250000px;}
.xd_c00152{left:540.150000px;}
.xfa_c00152{left:543.000000px;}
.x5a_c00152{left:546.000000px;}
.xb0_c00152{left:552.150000px;}
.x3c_c00152{left:554.250000px;}
.x44_c00152{left:556.050000px;}
.x11d_c00152{left:557.550000px;}
.x7a_c00152{left:559.950000px;}
.xd7_c00152{left:561.000000px;}
.xde_c00152{left:562.350000px;}
.xe2_c00152{left:563.700000px;}
.xe_c00152{left:565.050000px;}
.x9c_c00152{left:566.400000px;}
.x1d_c00152{left:567.750000px;}
.x51_c00152{left:570.600000px;}
.xa3_c00152{left:572.550000px;}
.xc7_c00152{left:574.350000px;}
.x11b_c00152{left:575.850000px;}
.x7b_c00152{left:577.950000px;}
.xe3_c00152{left:581.700000px;}
.x137_c00152{left:583.800000px;}
.x5b_c00152{left:585.900000px;}
.xb1_c00152{left:587.400000px;}
.x9d_c00152{left:589.050000px;}
.x113_c00152{left:592.050000px;}
.xa4_c00152{left:593.100000px;}
.x68_c00152{left:595.200000px;}
.x104_c00152{left:596.250000px;}
.xf_c00152{left:597.750000px;}
.x2d_c00152{left:599.850000px;}
.x1e_c00152{left:602.700000px;}
.xeb_c00152{left:604.350000px;}
.x3d_c00152{left:605.400000px;}
.x109_c00152{left:607.500000px;}
.x71_c00152{left:609.300000px;}
.xe8_c00152{left:611.550000px;}
.x45_c00152{left:613.650000px;}
.x5c_c00152{left:616.800000px;}
.x11e_c00152{left:618.750000px;}
.xbe_c00152{left:620.250000px;}
.x100_c00152{left:621.450000px;}
.x2e_c00152{left:622.500000px;}
.x130_c00152{left:623.550000px;}
.x69_c00152{left:625.500000px;}
.xa5_c00152{left:628.800000px;}
.x52_c00152{left:630.300000px;}
.xe9_c00152{left:631.650000px;}
.xc8_c00152{left:633.450000px;}
.x7c_c00152{left:635.550000px;}
.x46_c00152{left:636.750000px;}
.x10_c00152{left:638.100000px;}
.x88_c00152{left:639.600000px;}
.x118_c00152{left:641.850000px;}
.xa6_c00152{left:643.500000px;}
.x1f_c00152{left:644.850000px;}
.xcd_c00152{left:647.400000px;}
.xd8_c00152{left:652.050000px;}
.x10a_c00152{left:653.550000px;}
.x110_c00152{left:655.200000px;}
.x2f_c00152{left:656.400000px;}
.xf7_c00152{left:657.750000px;}
.x53_c00152{left:658.800000px;}
.x5d_c00152{left:660.300000px;}
.xfb_c00152{left:662.400000px;}
.x92_c00152{left:663.600000px;}
.x89_c00152{left:665.550000px;}
.xb2_c00152{left:666.600000px;}
.xc9_c00152{left:670.200000px;}
.x20_c00152{left:673.350000px;}
.xea_c00152{left:675.150000px;}
.x114_c00152{left:677.700000px;}
.x47_c00152{left:681.000000px;}
.x30_c00152{left:684.450000px;}
.xec_c00152{left:686.100000px;}
.x11_c00152{left:688.200000px;}
.x54_c00152{left:689.400000px;}
.xa7_c00152{left:693.600000px;}
.xb3_c00152{left:694.650000px;}
.xdf_c00152{left:697.800000px;}
.x6a_c00152{left:699.300000px;}
.xbf_c00152{left:700.950000px;}
.x93_c00152{left:702.150000px;}
.xef_c00152{left:703.200000px;}
.x105_c00152{left:706.350000px;}
.x7d_c00152{left:709.050000px;}
.x11c_c00152{left:710.850000px;}
.x48_c00152{left:712.350000px;}
.xf8_c00152{left:713.550000px;}
.xf0_c00152{left:715.500000px;}
.xfc_c00152{left:716.700000px;}
.x134_c00152{left:717.750000px;}
.x12_c00152{left:719.850000px;}
.xd9_c00152{left:721.500000px;}
.x72_c00152{left:724.050000px;}
.x5e_c00152{left:725.100000px;}
.xa8_c00152{left:727.050000px;}
.xe4_c00152{left:728.850000px;}
.x94_c00152{left:730.650000px;}
.x31_c00152{left:736.350000px;}
.x11f_c00152{left:737.550000px;}
.xc0_c00152{left:738.750000px;}
.x97_c00152{left:740.700000px;}
.x21_c00152{left:743.550000px;}
.x13_c00152{left:745.350000px;}
.x6b_c00152{left:746.850000px;}
.xb4_c00152{left:748.350000px;}
.x73_c00152{left:749.550000px;}
.x32_c00152{left:751.800000px;}
.xce_c00152{left:753.600000px;}
.xa9_c00152{left:754.800000px;}
.x49_c00152{left:755.850000px;}
.xe0_c00152{left:760.050000px;}
.xe5_c00152{left:762.300000px;}
.x33_c00152{left:763.650000px;}
.x6c_c00152{left:765.600000px;}
.xf1_c00152{left:766.950000px;}
.x8a_c00152{left:768.150000px;}
.xc1_c00152{left:770.400000px;}
.x98_c00152{left:771.600000px;}
.x55_c00152{left:774.300000px;}
.x120_c00152{left:775.650000px;}
.x12c_c00152{left:779.550000px;}
.x101_c00152{left:780.900000px;}
.x22_c00152{left:782.850000px;}
.x95_c00152{left:785.100000px;}
.xfd_c00152{left:786.900000px;}
.x119_c00152{left:788.250000px;}
.x10b_c00152{left:790.050000px;}
.x14_c00152{left:791.400000px;}
.x9e_c00152{left:792.600000px;}
.xb5_c00152{left:795.900000px;}
.x4a_c00152{left:798.300000px;}
.x23_c00152{left:800.100000px;}
.x8b_c00152{left:802.650000px;}
.x5f_c00152{left:805.350000px;}
.x56_c00152{left:808.200000px;}
.xfe_c00152{left:809.550000px;}
.x131_c00152{left:811.200000px;}
.xcf_c00152{left:813.300000px;}
.x74_c00152{left:815.100000px;}
.x6d_c00152{left:817.050000px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls0_c00152{letter-spacing:0.000000pt;}
.ws2_c00152{word-spacing:-8.111111pt;}
.ws0_c00152{word-spacing:-7.777778pt;}
.ws4_c00152{word-spacing:-5.489158pt;}
.ws1_c00152{word-spacing:-2.888889pt;}
.ws5_c00152{word-spacing:0.000000pt;}
.ws3_c00152{word-spacing:3.456790pt;}
.fs0_c00152{font-size:48.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y2d_c00152{bottom:128.933333pt;}
.y2c_c00152{bottom:153.333333pt;}
.y2b_c00152{bottom:170.933333pt;}
.y2a_c00152{bottom:188.533333pt;}
.y29_c00152{bottom:206.000000pt;}
.y28_c00152{bottom:223.600000pt;}
.y27_c00152{bottom:241.200000pt;}
.y26_c00152{bottom:258.533333pt;}
.y25_c00152{bottom:276.133333pt;}
.y24_c00152{bottom:293.733333pt;}
.y23_c00152{bottom:311.333333pt;}
.y22_c00152{bottom:328.933333pt;}
.y21_c00152{bottom:346.666667pt;}
.y20_c00152{bottom:364.533333pt;}
.y1f_c00152{bottom:382.133333pt;}
.y1e_c00152{bottom:399.733333pt;}
.y1d_c00152{bottom:417.066667pt;}
.y1c_c00152{bottom:434.666667pt;}
.y1b_c00152{bottom:452.266667pt;}
.y1a_c00152{bottom:469.866667pt;}
.y19_c00152{bottom:487.733333pt;}
.y18_c00152{bottom:505.333333pt;}
.y17_c00152{bottom:522.933333pt;}
.y16_c00152{bottom:540.533333pt;}
.y15_c00152{bottom:557.866667pt;}
.y14_c00152{bottom:575.733333pt;}
.y13_c00152{bottom:593.333333pt;}
.y12_c00152{bottom:610.666667pt;}
.y11_c00152{bottom:628.266667pt;}
.y10_c00152{bottom:646.133333pt;}
.yf_c00152{bottom:663.733333pt;}
.ye_c00152{bottom:681.333333pt;}
.yd_c00152{bottom:699.200000pt;}
.yc_c00152{bottom:716.800000pt;}
.yb_c00152{bottom:734.400000pt;}
.ya_c00152{bottom:752.000000pt;}
.y9_c00152{bottom:769.600000pt;}
.y8_c00152{bottom:787.200000pt;}
.y7_c00152{bottom:804.800000pt;}
.y6_c00152{bottom:822.400000pt;}
.y5_c00152{bottom:840.000000pt;}
.y4_c00152{bottom:857.333333pt;}
.y3_c00152{bottom:875.200000pt;}
.y2_c00152{bottom:892.800000pt;}
.y1_c00152{bottom:927.333333pt;}
.h2_c00152{height:48.000000pt;}
.h1_c00152{height:1038.000000pt;}
.h0_c00152{height:1038.079997pt;}
.w1_c00152{width:818.000000pt;}
.w0_c00152{width:818.239991pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:144.266667pt;}
.x7e_c00152{left:145.466667pt;}
.xf2_c00152{left:146.666667pt;}
.x24_c00152{left:160.266667pt;}
.x9f_c00152{left:163.066667pt;}
.xc2_c00152{left:164.133333pt;}
.x121_c00152{left:165.600000pt;}
.xd0_c00152{left:168.266667pt;}
.xb9_c00152{left:170.533333pt;}
.x3_c00152{left:172.133333pt;}
.xd2_c00152{left:173.733333pt;}
.x128_c00152{left:174.666667pt;}
.xaa_c00152{left:177.066667pt;}
.x15_c00152{left:181.600000pt;}
.x102_c00152{left:184.666667pt;}
.xc3_c00152{left:186.533333pt;}
.x25_c00152{left:190.000000pt;}
.x115_c00152{left:191.333333pt;}
.x4_c00152{left:192.266667pt;}
.x75_c00152{left:194.400000pt;}
.x12d_c00152{left:195.600000pt;}
.x129_c00152{left:197.066667pt;}
.xca_c00152{left:198.000000pt;}
.x27_c00152{left:199.333333pt;}
.x26_c00152{left:200.933333pt;}
.x7f_c00152{left:202.400000pt;}
.xab_c00152{left:203.600000pt;}
.x6e_c00152{left:205.600000pt;}
.x96_c00152{left:207.866667pt;}
.x16_c00152{left:209.733333pt;}
.x34_c00152{left:211.600000pt;}
.x12e_c00152{left:213.866667pt;}
.xf3_c00152{left:215.200000pt;}
.xba_c00152{left:216.266667pt;}
.x5_c00152{left:217.200000pt;}
.x80_c00152{left:218.400000pt;}
.x60_c00152{left:220.933333pt;}
.x122_c00152{left:223.466667pt;}
.x8c_c00152{left:224.800000pt;}
.x17_c00152{left:226.666667pt;}
.xda_c00152{left:230.133333pt;}
.x99_c00152{left:232.133333pt;}
.x111_c00152{left:233.733333pt;}
.x81_c00152{left:237.333333pt;}
.x61_c00152{left:239.466667pt;}
.xf4_c00152{left:240.533333pt;}
.x12f_c00152{left:243.333333pt;}
.xb6_c00152{left:247.866667pt;}
.x35_c00152{left:249.600000pt;}
.x3e_c00152{left:250.800000pt;}
.xff_c00152{left:252.933333pt;}
.xc4_c00152{left:254.400000pt;}
.x76_c00152{left:257.733333pt;}
.x28_c00152{left:259.866667pt;}
.x6_c00152{left:263.600000pt;}
.xf5_c00152{left:265.466667pt;}
.x12a_c00152{left:266.533333pt;}
.xac_c00152{left:267.600000pt;}
.x116_c00152{left:270.933333pt;}
.x18_c00152{left:272.133333pt;}
.x123_c00152{left:273.066667pt;}
.xd1_c00152{left:275.333333pt;}
.xa0_c00152{left:276.266667pt;}
.xb7_c00152{left:277.600000pt;}
.x3f_c00152{left:278.933333pt;}
.xc5_c00152{left:283.200000pt;}
.x57_c00152{left:284.933333pt;}
.x10c_c00152{left:286.000000pt;}
.x7_c00152{left:288.266667pt;}
.x8d_c00152{left:290.133333pt;}
.xe6_c00152{left:292.666667pt;}
.x29_c00152{left:294.400000pt;}
.xad_c00152{left:296.133333pt;}
.x82_c00152{left:297.466667pt;}
.x4b_c00152{left:299.600000pt;}
.x62_c00152{left:302.800000pt;}
.xb8_c00152{left:304.800000pt;}
.x77_c00152{left:305.733333pt;}
.x106_c00152{left:306.933333pt;}
.xdb_c00152{left:308.266667pt;}
.x36_c00152{left:310.400000pt;}
.x124_c00152{left:311.733333pt;}
.x19_c00152{left:313.066667pt;}
.x112_c00152{left:314.933333pt;}
.x83_c00152{left:316.400000pt;}
.x10d_c00152{left:318.533333pt;}
.x6f_c00152{left:319.466667pt;}
.x132_c00152{left:321.733333pt;}
.x2a_c00152{left:322.933333pt;}
.x63_c00152{left:324.266667pt;}
.xd3_c00152{left:328.266667pt;}
.xa1_c00152{left:329.733333pt;}
.x40_c00152{left:331.066667pt;}
.x11a_c00152{left:332.666667pt;}
.x135_c00152{left:334.666667pt;}
.x37_c00152{left:335.733333pt;}
.x64_c00152{left:337.333333pt;}
.x10e_c00152{left:340.266667pt;}
.x8e_c00152{left:341.600000pt;}
.x125_c00152{left:342.800000pt;}
.x1a_c00152{left:343.733333pt;}
.xbb_c00152{left:345.200000pt;}
.x107_c00152{left:346.666667pt;}
.xed_c00152{left:348.933333pt;}
.x41_c00152{left:350.000000pt;}
.xdc_c00152{left:353.066667pt;}
.x4c_c00152{left:354.666667pt;}
.x8_c00152{left:355.733333pt;}
.xa2_c00152{left:357.200000pt;}
.x8f_c00152{left:359.866667pt;}
.xae_c00152{left:361.466667pt;}
.xd4_c00152{left:362.800000pt;}
.x38_c00152{left:363.866667pt;}
.x84_c00152{left:366.000000pt;}
.xcb_c00152{left:367.866667pt;}
.x78_c00152{left:369.066667pt;}
.x4d_c00152{left:372.933333pt;}
.x65_c00152{left:374.800000pt;}
.x58_c00152{left:375.866667pt;}
.x1b_c00152{left:378.266667pt;}
.x9a_c00152{left:379.600000pt;}
.x103_c00152{left:380.533333pt;}
.x117_c00152{left:382.400000pt;}
.x108_c00152{left:385.333333pt;}
.x39_c00152{left:386.266667pt;}
.x9_c00152{left:387.733333pt;}
.x42_c00152{left:390.666667pt;}
.x66_c00152{left:392.400000pt;}
.x12b_c00152{left:395.466667pt;}
.x4e_c00152{left:397.866667pt;}
.xd5_c00152{left:398.933333pt;}
.x136_c00152{left:399.866667pt;}
.xa_c00152{left:402.800000pt;}
.x126_c00152{left:404.266667pt;}
.xdd_c00152{left:405.200000pt;}
.x85_c00152{left:406.266667pt;}
.x2_c00152{left:408.266667pt;}
.x79_c00152{left:411.600000pt;}
.x10f_c00152{left:415.200000pt;}
.x43_c00152{left:416.533333pt;}
.xbc_c00152{left:418.800000pt;}
.xaf_c00152{left:420.400000pt;}
.x3a_c00152{left:422.133333pt;}
.xb_c00152{left:425.466667pt;}
.x133_c00152{left:427.466667pt;}
.x86_c00152{left:429.600000pt;}
.x70_c00152{left:430.533333pt;}
.x9b_c00152{left:431.733333pt;}
.xe1_c00152{left:435.066667pt;}
.x2b_c00152{left:437.866667pt;}
.xf6_c00152{left:439.466667pt;}
.xf9_c00152{left:441.733333pt;}
.x90_c00152{left:443.066667pt;}
.xc6_c00152{left:444.266667pt;}
.x1c_c00152{left:447.066667pt;}
.x59_c00152{left:448.533333pt;}
.xee_c00152{left:449.466667pt;}
.x2c_c00152{left:453.200000pt;}
.x4f_c00152{left:454.800000pt;}
.xc_c00152{left:456.800000pt;}
.x3b_c00152{left:458.400000pt;}
.x67_c00152{left:459.600000pt;}
.x50_c00152{left:462.133333pt;}
.x87_c00152{left:463.866667pt;}
.xd6_c00152{left:466.000000pt;}
.xe7_c00152{left:468.133333pt;}
.xbd_c00152{left:469.733333pt;}
.x127_c00152{left:472.400000pt;}
.xcc_c00152{left:475.066667pt;}
.x91_c00152{left:476.666667pt;}
.xd_c00152{left:480.133333pt;}
.xfa_c00152{left:482.666667pt;}
.x5a_c00152{left:485.333333pt;}
.xb0_c00152{left:490.800000pt;}
.x3c_c00152{left:492.666667pt;}
.x44_c00152{left:494.266667pt;}
.x11d_c00152{left:495.600000pt;}
.x7a_c00152{left:497.733333pt;}
.xd7_c00152{left:498.666667pt;}
.xde_c00152{left:499.866667pt;}
.xe2_c00152{left:501.066667pt;}
.xe_c00152{left:502.266667pt;}
.x9c_c00152{left:503.466667pt;}
.x1d_c00152{left:504.666667pt;}
.x51_c00152{left:507.200000pt;}
.xa3_c00152{left:508.933333pt;}
.xc7_c00152{left:510.533333pt;}
.x11b_c00152{left:511.866667pt;}
.x7b_c00152{left:513.733333pt;}
.xe3_c00152{left:517.066667pt;}
.x137_c00152{left:518.933333pt;}
.x5b_c00152{left:520.800000pt;}
.xb1_c00152{left:522.133333pt;}
.x9d_c00152{left:523.600000pt;}
.x113_c00152{left:526.266667pt;}
.xa4_c00152{left:527.200000pt;}
.x68_c00152{left:529.066667pt;}
.x104_c00152{left:530.000000pt;}
.xf_c00152{left:531.333333pt;}
.x2d_c00152{left:533.200000pt;}
.x1e_c00152{left:535.733333pt;}
.xeb_c00152{left:537.200000pt;}
.x3d_c00152{left:538.133333pt;}
.x109_c00152{left:540.000000pt;}
.x71_c00152{left:541.600000pt;}
.xe8_c00152{left:543.600000pt;}
.x45_c00152{left:545.466667pt;}
.x5c_c00152{left:548.266667pt;}
.x11e_c00152{left:550.000000pt;}
.xbe_c00152{left:551.333333pt;}
.x100_c00152{left:552.400000pt;}
.x2e_c00152{left:553.333333pt;}
.x130_c00152{left:554.266667pt;}
.x69_c00152{left:556.000000pt;}
.xa5_c00152{left:558.933333pt;}
.x52_c00152{left:560.266667pt;}
.xe9_c00152{left:561.466667pt;}
.xc8_c00152{left:563.066667pt;}
.x7c_c00152{left:564.933333pt;}
.x46_c00152{left:566.000000pt;}
.x10_c00152{left:567.200000pt;}
.x88_c00152{left:568.533333pt;}
.x118_c00152{left:570.533333pt;}
.xa6_c00152{left:572.000000pt;}
.x1f_c00152{left:573.200000pt;}
.xcd_c00152{left:575.466667pt;}
.xd8_c00152{left:579.600000pt;}
.x10a_c00152{left:580.933333pt;}
.x110_c00152{left:582.400000pt;}
.x2f_c00152{left:583.466667pt;}
.xf7_c00152{left:584.666667pt;}
.x53_c00152{left:585.600000pt;}
.x5d_c00152{left:586.933333pt;}
.xfb_c00152{left:588.800000pt;}
.x92_c00152{left:589.866667pt;}
.x89_c00152{left:591.600000pt;}
.xb2_c00152{left:592.533333pt;}
.xc9_c00152{left:595.733333pt;}
.x20_c00152{left:598.533333pt;}
.xea_c00152{left:600.133333pt;}
.x114_c00152{left:602.400000pt;}
.x47_c00152{left:605.333333pt;}
.x30_c00152{left:608.400000pt;}
.xec_c00152{left:609.866667pt;}
.x11_c00152{left:611.733333pt;}
.x54_c00152{left:612.800000pt;}
.xa7_c00152{left:616.533333pt;}
.xb3_c00152{left:617.466667pt;}
.xdf_c00152{left:620.266667pt;}
.x6a_c00152{left:621.600000pt;}
.xbf_c00152{left:623.066667pt;}
.x93_c00152{left:624.133333pt;}
.xef_c00152{left:625.066667pt;}
.x105_c00152{left:627.866667pt;}
.x7d_c00152{left:630.266667pt;}
.x11c_c00152{left:631.866667pt;}
.x48_c00152{left:633.200000pt;}
.xf8_c00152{left:634.266667pt;}
.xf0_c00152{left:636.000000pt;}
.xfc_c00152{left:637.066667pt;}
.x134_c00152{left:638.000000pt;}
.x12_c00152{left:639.866667pt;}
.xd9_c00152{left:641.333333pt;}
.x72_c00152{left:643.600000pt;}
.x5e_c00152{left:644.533333pt;}
.xa8_c00152{left:646.266667pt;}
.xe4_c00152{left:647.866667pt;}
.x94_c00152{left:649.466667pt;}
.x31_c00152{left:654.533333pt;}
.x11f_c00152{left:655.600000pt;}
.xc0_c00152{left:656.666667pt;}
.x97_c00152{left:658.400000pt;}
.x21_c00152{left:660.933333pt;}
.x13_c00152{left:662.533333pt;}
.x6b_c00152{left:663.866667pt;}
.xb4_c00152{left:665.200000pt;}
.x73_c00152{left:666.266667pt;}
.x32_c00152{left:668.266667pt;}
.xce_c00152{left:669.866667pt;}
.xa9_c00152{left:670.933333pt;}
.x49_c00152{left:671.866667pt;}
.xe0_c00152{left:675.600000pt;}
.xe5_c00152{left:677.600000pt;}
.x33_c00152{left:678.800000pt;}
.x6c_c00152{left:680.533333pt;}
.xf1_c00152{left:681.733333pt;}
.x8a_c00152{left:682.800000pt;}
.xc1_c00152{left:684.800000pt;}
.x98_c00152{left:685.866667pt;}
.x55_c00152{left:688.266667pt;}
.x120_c00152{left:689.466667pt;}
.x12c_c00152{left:692.933333pt;}
.x101_c00152{left:694.133333pt;}
.x22_c00152{left:695.866667pt;}
.x95_c00152{left:697.866667pt;}
.xfd_c00152{left:699.466667pt;}
.x119_c00152{left:700.666667pt;}
.x10b_c00152{left:702.266667pt;}
.x14_c00152{left:703.466667pt;}
.x9e_c00152{left:704.533333pt;}
.xb5_c00152{left:707.466667pt;}
.x4a_c00152{left:709.600000pt;}
.x23_c00152{left:711.200000pt;}
.x8b_c00152{left:713.466667pt;}
.x5f_c00152{left:715.866667pt;}
.x56_c00152{left:718.400000pt;}
.xfe_c00152{left:719.600000pt;}
.x131_c00152{left:721.066667pt;}
.xcf_c00152{left:722.933333pt;}
.x74_c00152{left:724.533333pt;}
.x6d_c00152{left:726.266667pt;}
}





/* 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_c00153 {
    display:none;
  }
  .loading-indicator_c00153.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00153 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_c00153 { 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_c00153" -> "#page-container .classname_c00153")
 */
.pf_c00153 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00153 { /* 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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00153 { /* 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_c00153 { /* 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_c00153 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00153 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00153 {overflow:visible;}
  }
}
.c_c00153 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00153 { /* 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_c00153:after { /* webkit #35443 */
  content: '';
}
.t_c00153:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00153 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 */
}
.__c00153 { /* 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_c00153 { /* info for Javascript */
  display:none;
}
.l_c00153 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00153 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00153 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00153: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_c00153 {
    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_c00153.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00153.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_c00153 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.000000;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;}
.m8f_c00153{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00153{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m44_c00153{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00153{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00153{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00153{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00153{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m59_c00153{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00153{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00153{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mab_c00153{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00153{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mba_c00153{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00153{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00153{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00153{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00153{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m92_c00153{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00153{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00153{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00153{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00153{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00153{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00153{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m38_c00153{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00153{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00153{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00153{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m19_c00153{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m81_c00153{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m72_c00153{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00153{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m60_c00153{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m34_c00153{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00153{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00153{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00153{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m87_c00153{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00153{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m66_c00153{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00153{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9_c00153{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m13_c00153{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m96_c00153{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00153{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m76_c00153{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m15_c00153{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00153{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00153{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7_c00153{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00153{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00153{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00153{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00153{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m95_c00153{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00153{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00153{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m42_c00153{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00153{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m53_c00153{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m16_c00153{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00153{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m56_c00153{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m94_c00153{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00153{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00153{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m40_c00153{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6_c00153{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00153{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00153{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{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);}
.m63_c00153{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00153{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m93_c00153{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m71_c00153{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00153{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00153{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26_c00153{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m75_c00153{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m80_c00153{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m43_c00153{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mac_c00153{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m90_c00153{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m69_c00153{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m68_c00153{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00153{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00153{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m99_c00153{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.mae_c00153{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m67_c00153{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m91_c00153{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00153{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m54_c00153{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m10_c00153{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00153{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m45_c00153{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m84_c00153{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00153{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00153{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m61_c00153{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00153{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m28_c00153{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00153{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m78_c00153{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00153{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m70_c00153{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m48_c00153{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00153{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00153{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m88_c00153{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m37_c00153{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m62_c00153{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m85_c00153{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m77_c00153{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00153{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00153{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m79_c00153{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00153{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m86_c00153{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.md_c00153{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m89_c00153{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00153{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m98_c00153{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m97_c00153{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{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__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00153{word-spacing:-12.250000px;}
.ws4_c00153{word-spacing:-4.500000px;}
.ws5_c00153{word-spacing:-2.590909px;}
.ws9_c00153{word-spacing:-1.750000px;}
.wsa_c00153{word-spacing:0.000000px;}
.ws7_c00153{word-spacing:1.500000px;}
.ws3_c00153{word-spacing:3.945338px;}
.ws6_c00153{word-spacing:4.625000px;}
.ws0_c00153{word-spacing:6.148842px;}
.ws8_c00153{word-spacing:11.875000px;}
.ws1_c00153{word-spacing:13.375000px;}
._0_c00153{width:43.750000px;}
.fc0_c00153{color:transparent;}
.fs0_c00153{font-size:54.000000px;}
.y0_c00153{bottom:0.000000px;}
.y2c_c00153{bottom:158.400000px;}
.y2b_c00153{bottom:174.600000px;}
.y2a_c00153{bottom:216.150000px;}
.y29_c00153{bottom:235.950000px;}
.y28_c00153{bottom:255.750000px;}
.y27_c00153{bottom:275.850000px;}
.y26_c00153{bottom:295.950000px;}
.y25_c00153{bottom:315.750000px;}
.y24_c00153{bottom:335.550000px;}
.y23_c00153{bottom:355.650000px;}
.y22_c00153{bottom:375.450000px;}
.y21_c00153{bottom:395.700000px;}
.y20_c00153{bottom:415.800000px;}
.y1f_c00153{bottom:435.600000px;}
.y1e_c00153{bottom:455.700000px;}
.y1d_c00153{bottom:475.500000px;}
.y1c_c00153{bottom:496.050000px;}
.y1b_c00153{bottom:516.000000px;}
.y1a_c00153{bottom:535.800000px;}
.y19_c00153{bottom:555.600000px;}
.y18_c00153{bottom:575.700000px;}
.y17_c00153{bottom:595.500000px;}
.y16_c00153{bottom:615.300000px;}
.y15_c00153{bottom:635.100000px;}
.y14_c00153{bottom:655.200000px;}
.y13_c00153{bottom:675.300000px;}
.y12_c00153{bottom:695.100000px;}
.y11_c00153{bottom:714.600000px;}
.y10_c00153{bottom:734.700000px;}
.yf_c00153{bottom:754.500000px;}
.ye_c00153{bottom:774.600000px;}
.yd_c00153{bottom:794.400000px;}
.yc_c00153{bottom:814.200000px;}
.yb_c00153{bottom:834.300000px;}
.ya_c00153{bottom:854.100000px;}
.y9_c00153{bottom:873.900000px;}
.y8_c00153{bottom:894.000000px;}
.y7_c00153{bottom:913.800000px;}
.y6_c00153{bottom:933.600000px;}
.y5_c00153{bottom:953.700000px;}
.y4_c00153{bottom:973.500000px;}
.y3_c00153{bottom:993.300000px;}
.y2_c00153{bottom:1013.100000px;}
.y1_c00153{bottom:1050.900000px;}
.h2_c00153{height:54.000000px;}
.h1_c00153{height:1167.750000px;}
.h0_c00153{height:1167.839997px;}
.w1_c00153{width:920.250000px;}
.w0_c00153{width:920.519990px;}
.x0_c00153{left:0.000000px;}
.x146_c00153{left:97.350000px;}
.x133_c00153{left:98.400000px;}
.x12b_c00153{left:99.600000px;}
.x114_c00153{left:100.650000px;}
.xcd_c00153{left:101.850000px;}
.x86_c00153{left:103.350000px;}
.x3_c00153{left:104.700000px;}
.x13f_c00153{left:111.300000px;}
.x139_c00153{left:116.850000px;}
.x107_c00153{left:118.950000px;}
.x56_c00153{left:120.300000px;}
.xee_c00153{left:121.650000px;}
.x14a_c00153{left:124.200000px;}
.x11b_c00153{left:127.800000px;}
.xf5_c00153{left:129.750000px;}
.x92_c00153{left:131.250000px;}
.xfe_c00153{left:132.450000px;}
.x7a_c00153{left:133.650000px;}
.xd8_c00153{left:137.100000px;}
.x63_c00153{left:138.750000px;}
.x44_c00153{left:141.000000px;}
.x13a_c00153{left:142.350000px;}
.x12_c00153{left:144.000000px;}
.x57_c00153{left:145.800000px;}
.xea_c00153{left:147.000000px;}
.x148_c00153{left:148.650000px;}
.xff_c00153{left:149.700000px;}
.xa4_c00153{left:151.650000px;}
.xc1_c00153{left:152.850000px;}
.xac_c00153{left:154.200000px;}
.x115_c00153{left:155.700000px;}
.xce_c00153{left:157.350000px;}
.x11c_c00153{left:158.400000px;}
.xd9_c00153{left:161.550000px;}
.x14c_c00153{left:163.350000px;}
.x4b_c00153{left:164.700000px;}
.x87_c00153{left:166.050000px;}
.x13_c00153{left:167.100000px;}
.x58_c00153{left:173.550000px;}
.x4_c00153{left:174.900000px;}
.x116_c00153{left:176.550000px;}
.x2e_c00153{left:177.900000px;}
.x3a_c00153{left:179.100000px;}
.xbc_c00153{left:181.050000px;}
.x93_c00153{left:183.150000px;}
.x64_c00153{left:186.600000px;}
.x7b_c00153{left:187.950000px;}
.xad_c00153{left:190.500000px;}
.xb3_c00153{left:191.700000px;}
.x100_c00153{left:193.200000px;}
.x21_c00153{left:195.750000px;}
.x2f_c00153{left:198.450000px;}
.xa5_c00153{left:199.950000px;}
.x3b_c00153{left:203.250000px;}
.x7c_c00153{left:205.200000px;}
.xbd_c00153{left:206.550000px;}
.x88_c00153{left:209.850000px;}
.x14_c00153{left:211.050000px;}
.xcf_c00153{left:213.150000px;}
.x6f_c00153{left:214.500000px;}
.x65_c00153{left:215.700000px;}
.xf6_c00153{left:217.950000px;}
.xa6_c00153{left:219.750000px;}
.x4c_c00153{left:220.950000px;}
.x117_c00153{left:223.650000px;}
.xb4_c00153{left:225.150000px;}
.x30_c00153{left:226.950000px;}
.xda_c00153{left:228.450000px;}
.x59_c00153{left:229.650000px;}
.x89_c00153{left:232.200000px;}
.xf7_c00153{left:234.900000px;}
.x15_c00153{left:237.300000px;}
.x142_c00153{left:238.800000px;}
.x66_c00153{left:240.900000px;}
.xc7_c00153{left:243.450000px;}
.xeb_c00153{left:245.700000px;}
.x5_c00153{left:248.400000px;}
.x4d_c00153{left:250.050000px;}
.x94_c00153{left:251.250000px;}
.x122_c00153{left:252.600000px;}
.xb5_c00153{left:255.450000px;}
.x22_c00153{left:261.300000px;}
.x6_c00153{left:262.500000px;}
.xf8_c00153{left:264.450000px;}
.x31_c00153{left:265.800000px;}
.x11d_c00153{left:266.850000px;}
.xd0_c00153{left:269.250000px;}
.xc2_c00153{left:272.850000px;}
.x16_c00153{left:274.800000px;}
.xef_c00153{left:276.150000px;}
.x9c_c00153{left:277.500000px;}
.x67_c00153{left:279.450000px;}
.x70_c00153{left:280.650000px;}
.x14d_c00153{left:282.150000px;}
.x123_c00153{left:283.500000px;}
.x12c_c00153{left:285.000000px;}
.xdb_c00153{left:286.800000px;}
.x10e_c00153{left:289.650000px;}
.xe2_c00153{left:292.950000px;}
.x45_c00153{left:294.450000px;}
.x8a_c00153{left:296.700000px;}
.x118_c00153{left:298.200000px;}
.x108_c00153{left:300.150000px;}
.xb6_c00153{left:301.950000px;}
.x95_c00153{left:304.500000px;}
.x68_c00153{left:307.950000px;}
.x7_c00153{left:310.050000px;}
.x71_c00153{left:312.000000px;}
.x8b_c00153{left:317.550000px;}
.x23_c00153{left:319.200000px;}
.xe3_c00153{left:321.000000px;}
.x3c_c00153{left:322.350000px;}
.x14b_c00153{left:323.400000px;}
.x7d_c00153{left:327.450000px;}
.xbe_c00153{left:328.950000px;}
.x4e_c00153{left:330.300000px;}
.x101_c00153{left:331.650000px;}
.x147_c00153{left:333.300000px;}
.x10f_c00153{left:335.400000px;}
.x8_c00153{left:337.350000px;}
.x24_c00153{left:339.000000px;}
.x17_c00153{left:340.650000px;}
.xf9_c00153{left:342.150000px;}
.x8c_c00153{left:345.300000px;}
.xc8_c00153{left:346.800000px;}
.x5a_c00153{left:350.250000px;}
.x3d_c00153{left:351.450000px;}
.x4f_c00153{left:353.400000px;}
.xdc_c00153{left:355.200000px;}
.x46_c00153{left:359.250000px;}
.x12f_c00153{left:361.350000px;}
.x134_c00153{left:362.400000px;}
.x69_c00153{left:363.450000px;}
.xc3_c00153{left:365.100000px;}
.x96_c00153{left:369.600000px;}
.xe4_c00153{left:371.700000px;}
.x18_c00153{left:372.750000px;}
.x9d_c00153{left:373.950000px;}
.x25_c00153{left:377.550000px;}
.xb7_c00153{left:379.350000px;}
.x11e_c00153{left:381.600000px;}
.x72_c00153{left:385.050000px;}
.x7e_c00153{left:387.900000px;}
.xf0_c00153{left:388.950000px;}
.xd1_c00153{left:390.600000px;}
.x1_c00153{left:393.150000px;}
.xfa_c00153{left:394.950000px;}
.xdd_c00153{left:396.600000px;}
.x19_c00153{left:399.000000px;}
.x32_c00153{left:400.200000px;}
.x110_c00153{left:402.000000px;}
.x127_c00153{left:404.850000px;}
.x50_c00153{left:407.700000px;}
.xf1_c00153{left:408.750000px;}
.x102_c00153{left:409.800000px;}
.x9_c00153{left:413.700000px;}
.x97_c00153{left:417.150000px;}
.x26_c00153{left:420.450000px;}
.xd2_c00153{left:421.950000px;}
.x6a_c00153{left:423.600000px;}
.xfb_c00153{left:424.800000px;}
.x119_c00153{left:426.450000px;}
.xe5_c00153{left:427.800000px;}
.x8d_c00153{left:429.150000px;}
.x109_c00153{left:430.350000px;}
.xc4_c00153{left:432.450000px;}
.x33_c00153{left:436.200000px;}
.x5b_c00153{left:437.400000px;}
.xae_c00153{left:439.950000px;}
.xd3_c00153{left:441.000000px;}
.x9e_c00153{left:442.050000px;}
.x27_c00153{left:443.550000px;}
.xfc_c00153{left:444.600000px;}
.xa_c00153{left:447.600000px;}
.x7f_c00153{left:450.150000px;}
.x13b_c00153{left:453.300000px;}
.xbf_c00153{left:456.300000px;}
.x1a_c00153{left:457.350000px;}
.x98_c00153{left:458.550000px;}
.xb8_c00153{left:460.650000px;}
.x128_c00153{left:463.200000px;}
.xb_c00153{left:464.550000px;}
.xe6_c00153{left:466.350000px;}
.x9f_c00153{left:467.550000px;}
.x73_c00153{left:469.350000px;}
.x47_c00153{left:471.900000px;}
.x6b_c00153{left:475.050000px;}
.xde_c00153{left:476.100000px;}
.xa7_c00153{left:477.600000px;}
.x11a_c00153{left:481.050000px;}
.x135_c00153{left:482.250000px;}
.x51_c00153{left:487.200000px;}
.x124_c00153{left:489.450000px;}
.xc5_c00153{left:490.800000px;}
.x99_c00153{left:492.000000px;}
.x80_c00153{left:495.150000px;}
.x48_c00153{left:497.400000px;}
.x143_c00153{left:499.800000px;}
.x28_c00153{left:501.150000px;}
.xdf_c00153{left:503.850000px;}
.xc_c00153{left:508.500000px;}
.x11f_c00153{left:509.700000px;}
.x34_c00153{left:512.100000px;}
.x140_c00153{left:513.750000px;}
.x5c_c00153{left:515.550000px;}
.xaf_c00153{left:517.350000px;}
.x149_c00153{left:518.550000px;}
.xc0_c00153{left:520.050000px;}
.x125_c00153{left:521.550000px;}
.x8e_c00153{left:523.050000px;}
.xc9_c00153{left:526.350000px;}
.x130_c00153{left:527.850000px;}
.x81_c00153{left:529.650000px;}
.x3e_c00153{left:532.500000px;}
.xd4_c00153{left:533.550000px;}
.x74_c00153{left:535.650000px;}
.xd_c00153{left:537.000000px;}
.x35_c00153{left:539.100000px;}
.x10a_c00153{left:540.150000px;}
.x6c_c00153{left:541.350000px;}
.xb0_c00153{left:542.550000px;}
.x29_c00153{left:544.050000px;}
.x1b_c00153{left:545.850000px;}
.x3f_c00153{left:547.650000px;}
.x144_c00153{left:548.700000px;}
.xa8_c00153{left:550.650000px;}
.x9a_c00153{left:552.450000px;}
.xc6_c00153{left:553.800000px;}
.x82_c00153{left:554.850000px;}
.x52_c00153{left:555.900000px;}
.xe7_c00153{left:557.400000px;}
.xd5_c00153{left:559.050000px;}
.xb9_c00153{left:561.150000px;}
.xec_c00153{left:562.950000px;}
.x75_c00153{left:564.150000px;}
.x111_c00153{left:566.850000px;}
.x49_c00153{left:569.700000px;}
.xa9_c00153{left:570.750000px;}
.x10b_c00153{left:572.550000px;}
.x36_c00153{left:575.100000px;}
.x40_c00153{left:576.750000px;}
.xca_c00153{left:578.550000px;}
.x5d_c00153{left:580.350000px;}
.x103_c00153{left:581.700000px;}
.xa0_c00153{left:583.500000px;}
.xb1_c00153{left:585.000000px;}
.x53_c00153{left:587.250000px;}
.x131_c00153{left:588.300000px;}
.xf2_c00153{left:591.300000px;}
.xe8_c00153{left:592.650000px;}
.xe_c00153{left:594.300000px;}
.xe0_c00153{left:595.350000px;}
.x83_c00153{left:597.000000px;}
.xcb_c00153{left:600.150000px;}
.x54_c00153{left:601.950000px;}
.x120_c00153{left:604.350000px;}
.xd6_c00153{left:606.150000px;}
.x5e_c00153{left:608.850000px;}
.x136_c00153{left:611.850000px;}
.x8f_c00153{left:613.350000px;}
.x1c_c00153{left:614.550000px;}
.x129_c00153{left:617.250000px;}
.xf_c00153{left:618.450000px;}
.x2a_c00153{left:622.200000px;}
.x126_c00153{left:623.550000px;}
.x13c_c00153{left:624.600000px;}
.x104_c00153{left:627.450000px;}
.x76_c00153{left:628.650000px;}
.x84_c00153{left:630.150000px;}
.x137_c00153{left:631.950000px;}
.xed_c00153{left:634.200000px;}
.x41_c00153{left:635.850000px;}
.x37_c00153{left:637.050000px;}
.x55_c00153{left:639.000000px;}
.x5f_c00153{left:641.250000px;}
.x141_c00153{left:642.300000px;}
.x12d_c00153{left:643.800000px;}
.x1d_c00153{left:644.850000px;}
.x105_c00153{left:646.500000px;}
.x90_c00153{left:649.650000px;}
.x4a_c00153{left:651.750000px;}
.x10c_c00153{left:652.800000px;}
.x42_c00153{left:655.350000px;}
.x112_c00153{left:657.900000px;}
.x138_c00153{left:659.250000px;}
.x60_c00153{left:660.750000px;}
.x1e_c00153{left:662.100000px;}
.xaa_c00153{left:664.050000px;}
.x132_c00153{left:667.200000px;}
.x6d_c00153{left:669.150000px;}
.x145_c00153{left:672.000000px;}
.x13d_c00153{left:673.200000px;}
.x2b_c00153{left:674.700000px;}
.xfd_c00153{left:675.900000px;}
.xf3_c00153{left:676.950000px;}
.xb2_c00153{left:680.400000px;}
.x12e_c00153{left:681.900000px;}
.xa1_c00153{left:683.250000px;}
.x61_c00153{left:685.950000px;}
.x77_c00153{left:690.900000px;}
.xd7_c00153{left:695.100000px;}
.x121_c00153{left:697.500000px;}
.x9b_c00153{left:698.700000px;}
.x1f_c00153{left:699.900000px;}
.x10_c00153{left:701.250000px;}
.xe9_c00153{left:702.450000px;}
.x113_c00153{left:703.650000px;}
.x2c_c00153{left:705.600000px;}
.x6e_c00153{left:708.450000px;}
.x78_c00153{left:711.750000px;}
.xa2_c00153{left:712.800000px;}
.x85_c00153{left:714.000000px;}
.x106_c00153{left:717.000000px;}
.xba_c00153{left:718.200000px;}
.x38_c00153{left:720.600000px;}
.x43_c00153{left:721.650000px;}
.x12a_c00153{left:722.700000px;}
.x13e_c00153{left:724.350000px;}
.x20_c00153{left:725.400000px;}
.x11_c00153{left:729.000000px;}
.xbb_c00153{left:730.500000px;}
.xcc_c00153{left:731.850000px;}
.xe1_c00153{left:733.950000px;}
.x79_c00153{left:736.950000px;}
.x10d_c00153{left:739.200000px;}
.xf4_c00153{left:740.700000px;}
.x62_c00153{left:741.750000px;}
.x39_c00153{left:744.300000px;}
.xab_c00153{left:745.350000px;}
.xa3_c00153{left:748.500000px;}
.x2d_c00153{left:749.850000px;}
.x2_c00153{left:753.450000px;}
.x91_c00153{left:756.600000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws2_c00153{word-spacing:-10.888889pt;}
.ws4_c00153{word-spacing:-4.000000pt;}
.ws5_c00153{word-spacing:-2.303030pt;}
.ws9_c00153{word-spacing:-1.555556pt;}
.wsa_c00153{word-spacing:0.000000pt;}
.ws7_c00153{word-spacing:1.333333pt;}
.ws3_c00153{word-spacing:3.506967pt;}
.ws6_c00153{word-spacing:4.111111pt;}
.ws0_c00153{word-spacing:5.465638pt;}
.ws8_c00153{word-spacing:10.555556pt;}
.ws1_c00153{word-spacing:11.888889pt;}
._0_c00153{width:38.888889pt;}
.fs0_c00153{font-size:48.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y2c_c00153{bottom:140.800000pt;}
.y2b_c00153{bottom:155.200000pt;}
.y2a_c00153{bottom:192.133333pt;}
.y29_c00153{bottom:209.733333pt;}
.y28_c00153{bottom:227.333333pt;}
.y27_c00153{bottom:245.200000pt;}
.y26_c00153{bottom:263.066667pt;}
.y25_c00153{bottom:280.666667pt;}
.y24_c00153{bottom:298.266667pt;}
.y23_c00153{bottom:316.133333pt;}
.y22_c00153{bottom:333.733333pt;}
.y21_c00153{bottom:351.733333pt;}
.y20_c00153{bottom:369.600000pt;}
.y1f_c00153{bottom:387.200000pt;}
.y1e_c00153{bottom:405.066667pt;}
.y1d_c00153{bottom:422.666667pt;}
.y1c_c00153{bottom:440.933333pt;}
.y1b_c00153{bottom:458.666667pt;}
.y1a_c00153{bottom:476.266667pt;}
.y19_c00153{bottom:493.866667pt;}
.y18_c00153{bottom:511.733333pt;}
.y17_c00153{bottom:529.333333pt;}
.y16_c00153{bottom:546.933333pt;}
.y15_c00153{bottom:564.533333pt;}
.y14_c00153{bottom:582.400000pt;}
.y13_c00153{bottom:600.266667pt;}
.y12_c00153{bottom:617.866667pt;}
.y11_c00153{bottom:635.200000pt;}
.y10_c00153{bottom:653.066667pt;}
.yf_c00153{bottom:670.666667pt;}
.ye_c00153{bottom:688.533333pt;}
.yd_c00153{bottom:706.133333pt;}
.yc_c00153{bottom:723.733333pt;}
.yb_c00153{bottom:741.600000pt;}
.ya_c00153{bottom:759.200000pt;}
.y9_c00153{bottom:776.800000pt;}
.y8_c00153{bottom:794.666667pt;}
.y7_c00153{bottom:812.266667pt;}
.y6_c00153{bottom:829.866667pt;}
.y5_c00153{bottom:847.733333pt;}
.y4_c00153{bottom:865.333333pt;}
.y3_c00153{bottom:882.933333pt;}
.y2_c00153{bottom:900.533333pt;}
.y1_c00153{bottom:934.133333pt;}
.h2_c00153{height:48.000000pt;}
.h1_c00153{height:1038.000000pt;}
.h0_c00153{height:1038.079997pt;}
.w1_c00153{width:818.000000pt;}
.w0_c00153{width:818.239991pt;}
.x0_c00153{left:0.000000pt;}
.x146_c00153{left:86.533333pt;}
.x133_c00153{left:87.466667pt;}
.x12b_c00153{left:88.533333pt;}
.x114_c00153{left:89.466667pt;}
.xcd_c00153{left:90.533333pt;}
.x86_c00153{left:91.866667pt;}
.x3_c00153{left:93.066667pt;}
.x13f_c00153{left:98.933333pt;}
.x139_c00153{left:103.866667pt;}
.x107_c00153{left:105.733333pt;}
.x56_c00153{left:106.933333pt;}
.xee_c00153{left:108.133333pt;}
.x14a_c00153{left:110.400000pt;}
.x11b_c00153{left:113.600000pt;}
.xf5_c00153{left:115.333333pt;}
.x92_c00153{left:116.666667pt;}
.xfe_c00153{left:117.733333pt;}
.x7a_c00153{left:118.800000pt;}
.xd8_c00153{left:121.866667pt;}
.x63_c00153{left:123.333333pt;}
.x44_c00153{left:125.333333pt;}
.x13a_c00153{left:126.533333pt;}
.x12_c00153{left:128.000000pt;}
.x57_c00153{left:129.600000pt;}
.xea_c00153{left:130.666667pt;}
.x148_c00153{left:132.133333pt;}
.xff_c00153{left:133.066667pt;}
.xa4_c00153{left:134.800000pt;}
.xc1_c00153{left:135.866667pt;}
.xac_c00153{left:137.066667pt;}
.x115_c00153{left:138.400000pt;}
.xce_c00153{left:139.866667pt;}
.x11c_c00153{left:140.800000pt;}
.xd9_c00153{left:143.600000pt;}
.x14c_c00153{left:145.200000pt;}
.x4b_c00153{left:146.400000pt;}
.x87_c00153{left:147.600000pt;}
.x13_c00153{left:148.533333pt;}
.x58_c00153{left:154.266667pt;}
.x4_c00153{left:155.466667pt;}
.x116_c00153{left:156.933333pt;}
.x2e_c00153{left:158.133333pt;}
.x3a_c00153{left:159.200000pt;}
.xbc_c00153{left:160.933333pt;}
.x93_c00153{left:162.800000pt;}
.x64_c00153{left:165.866667pt;}
.x7b_c00153{left:167.066667pt;}
.xad_c00153{left:169.333333pt;}
.xb3_c00153{left:170.400000pt;}
.x100_c00153{left:171.733333pt;}
.x21_c00153{left:174.000000pt;}
.x2f_c00153{left:176.400000pt;}
.xa5_c00153{left:177.733333pt;}
.x3b_c00153{left:180.666667pt;}
.x7c_c00153{left:182.400000pt;}
.xbd_c00153{left:183.600000pt;}
.x88_c00153{left:186.533333pt;}
.x14_c00153{left:187.600000pt;}
.xcf_c00153{left:189.466667pt;}
.x6f_c00153{left:190.666667pt;}
.x65_c00153{left:191.733333pt;}
.xf6_c00153{left:193.733333pt;}
.xa6_c00153{left:195.333333pt;}
.x4c_c00153{left:196.400000pt;}
.x117_c00153{left:198.800000pt;}
.xb4_c00153{left:200.133333pt;}
.x30_c00153{left:201.733333pt;}
.xda_c00153{left:203.066667pt;}
.x59_c00153{left:204.133333pt;}
.x89_c00153{left:206.400000pt;}
.xf7_c00153{left:208.800000pt;}
.x15_c00153{left:210.933333pt;}
.x142_c00153{left:212.266667pt;}
.x66_c00153{left:214.133333pt;}
.xc7_c00153{left:216.400000pt;}
.xeb_c00153{left:218.400000pt;}
.x5_c00153{left:220.800000pt;}
.x4d_c00153{left:222.266667pt;}
.x94_c00153{left:223.333333pt;}
.x122_c00153{left:224.533333pt;}
.xb5_c00153{left:227.066667pt;}
.x22_c00153{left:232.266667pt;}
.x6_c00153{left:233.333333pt;}
.xf8_c00153{left:235.066667pt;}
.x31_c00153{left:236.266667pt;}
.x11d_c00153{left:237.200000pt;}
.xd0_c00153{left:239.333333pt;}
.xc2_c00153{left:242.533333pt;}
.x16_c00153{left:244.266667pt;}
.xef_c00153{left:245.466667pt;}
.x9c_c00153{left:246.666667pt;}
.x67_c00153{left:248.400000pt;}
.x70_c00153{left:249.466667pt;}
.x14d_c00153{left:250.800000pt;}
.x123_c00153{left:252.000000pt;}
.x12c_c00153{left:253.333333pt;}
.xdb_c00153{left:254.933333pt;}
.x10e_c00153{left:257.466667pt;}
.xe2_c00153{left:260.400000pt;}
.x45_c00153{left:261.733333pt;}
.x8a_c00153{left:263.733333pt;}
.x118_c00153{left:265.066667pt;}
.x108_c00153{left:266.800000pt;}
.xb6_c00153{left:268.400000pt;}
.x95_c00153{left:270.666667pt;}
.x68_c00153{left:273.733333pt;}
.x7_c00153{left:275.600000pt;}
.x71_c00153{left:277.333333pt;}
.x8b_c00153{left:282.266667pt;}
.x23_c00153{left:283.733333pt;}
.xe3_c00153{left:285.333333pt;}
.x3c_c00153{left:286.533333pt;}
.x14b_c00153{left:287.466667pt;}
.x7d_c00153{left:291.066667pt;}
.xbe_c00153{left:292.400000pt;}
.x4e_c00153{left:293.600000pt;}
.x101_c00153{left:294.800000pt;}
.x147_c00153{left:296.266667pt;}
.x10f_c00153{left:298.133333pt;}
.x8_c00153{left:299.866667pt;}
.x24_c00153{left:301.333333pt;}
.x17_c00153{left:302.800000pt;}
.xf9_c00153{left:304.133333pt;}
.x8c_c00153{left:306.933333pt;}
.xc8_c00153{left:308.266667pt;}
.x5a_c00153{left:311.333333pt;}
.x3d_c00153{left:312.400000pt;}
.x4f_c00153{left:314.133333pt;}
.xdc_c00153{left:315.733333pt;}
.x46_c00153{left:319.333333pt;}
.x12f_c00153{left:321.200000pt;}
.x134_c00153{left:322.133333pt;}
.x69_c00153{left:323.066667pt;}
.xc3_c00153{left:324.533333pt;}
.x96_c00153{left:328.533333pt;}
.xe4_c00153{left:330.400000pt;}
.x18_c00153{left:331.333333pt;}
.x9d_c00153{left:332.400000pt;}
.x25_c00153{left:335.600000pt;}
.xb7_c00153{left:337.200000pt;}
.x11e_c00153{left:339.200000pt;}
.x72_c00153{left:342.266667pt;}
.x7e_c00153{left:344.800000pt;}
.xf0_c00153{left:345.733333pt;}
.xd1_c00153{left:347.200000pt;}
.x1_c00153{left:349.466667pt;}
.xfa_c00153{left:351.066667pt;}
.xdd_c00153{left:352.533333pt;}
.x19_c00153{left:354.666667pt;}
.x32_c00153{left:355.733333pt;}
.x110_c00153{left:357.333333pt;}
.x127_c00153{left:359.866667pt;}
.x50_c00153{left:362.400000pt;}
.xf1_c00153{left:363.333333pt;}
.x102_c00153{left:364.266667pt;}
.x9_c00153{left:367.733333pt;}
.x97_c00153{left:370.800000pt;}
.x26_c00153{left:373.733333pt;}
.xd2_c00153{left:375.066667pt;}
.x6a_c00153{left:376.533333pt;}
.xfb_c00153{left:377.600000pt;}
.x119_c00153{left:379.066667pt;}
.xe5_c00153{left:380.266667pt;}
.x8d_c00153{left:381.466667pt;}
.x109_c00153{left:382.533333pt;}
.xc4_c00153{left:384.400000pt;}
.x33_c00153{left:387.733333pt;}
.x5b_c00153{left:388.800000pt;}
.xae_c00153{left:391.066667pt;}
.xd3_c00153{left:392.000000pt;}
.x9e_c00153{left:392.933333pt;}
.x27_c00153{left:394.266667pt;}
.xfc_c00153{left:395.200000pt;}
.xa_c00153{left:397.866667pt;}
.x7f_c00153{left:400.133333pt;}
.x13b_c00153{left:402.933333pt;}
.xbf_c00153{left:405.600000pt;}
.x1a_c00153{left:406.533333pt;}
.x98_c00153{left:407.600000pt;}
.xb8_c00153{left:409.466667pt;}
.x128_c00153{left:411.733333pt;}
.xb_c00153{left:412.933333pt;}
.xe6_c00153{left:414.533333pt;}
.x9f_c00153{left:415.600000pt;}
.x73_c00153{left:417.200000pt;}
.x47_c00153{left:419.466667pt;}
.x6b_c00153{left:422.266667pt;}
.xde_c00153{left:423.200000pt;}
.xa7_c00153{left:424.533333pt;}
.x11a_c00153{left:427.600000pt;}
.x135_c00153{left:428.666667pt;}
.x51_c00153{left:433.066667pt;}
.x124_c00153{left:435.066667pt;}
.xc5_c00153{left:436.266667pt;}
.x99_c00153{left:437.333333pt;}
.x80_c00153{left:440.133333pt;}
.x48_c00153{left:442.133333pt;}
.x143_c00153{left:444.266667pt;}
.x28_c00153{left:445.466667pt;}
.xdf_c00153{left:447.866667pt;}
.xc_c00153{left:452.000000pt;}
.x11f_c00153{left:453.066667pt;}
.x34_c00153{left:455.200000pt;}
.x140_c00153{left:456.666667pt;}
.x5c_c00153{left:458.266667pt;}
.xaf_c00153{left:459.866667pt;}
.x149_c00153{left:460.933333pt;}
.xc0_c00153{left:462.266667pt;}
.x125_c00153{left:463.600000pt;}
.x8e_c00153{left:464.933333pt;}
.xc9_c00153{left:467.866667pt;}
.x130_c00153{left:469.200000pt;}
.x81_c00153{left:470.800000pt;}
.x3e_c00153{left:473.333333pt;}
.xd4_c00153{left:474.266667pt;}
.x74_c00153{left:476.133333pt;}
.xd_c00153{left:477.333333pt;}
.x35_c00153{left:479.200000pt;}
.x10a_c00153{left:480.133333pt;}
.x6c_c00153{left:481.200000pt;}
.xb0_c00153{left:482.266667pt;}
.x29_c00153{left:483.600000pt;}
.x1b_c00153{left:485.200000pt;}
.x3f_c00153{left:486.800000pt;}
.x144_c00153{left:487.733333pt;}
.xa8_c00153{left:489.466667pt;}
.x9a_c00153{left:491.066667pt;}
.xc6_c00153{left:492.266667pt;}
.x82_c00153{left:493.200000pt;}
.x52_c00153{left:494.133333pt;}
.xe7_c00153{left:495.466667pt;}
.xd5_c00153{left:496.933333pt;}
.xb9_c00153{left:498.800000pt;}
.xec_c00153{left:500.400000pt;}
.x75_c00153{left:501.466667pt;}
.x111_c00153{left:503.866667pt;}
.x49_c00153{left:506.400000pt;}
.xa9_c00153{left:507.333333pt;}
.x10b_c00153{left:508.933333pt;}
.x36_c00153{left:511.200000pt;}
.x40_c00153{left:512.666667pt;}
.xca_c00153{left:514.266667pt;}
.x5d_c00153{left:515.866667pt;}
.x103_c00153{left:517.066667pt;}
.xa0_c00153{left:518.666667pt;}
.xb1_c00153{left:520.000000pt;}
.x53_c00153{left:522.000000pt;}
.x131_c00153{left:522.933333pt;}
.xf2_c00153{left:525.600000pt;}
.xe8_c00153{left:526.800000pt;}
.xe_c00153{left:528.266667pt;}
.xe0_c00153{left:529.200000pt;}
.x83_c00153{left:530.666667pt;}
.xcb_c00153{left:533.466667pt;}
.x54_c00153{left:535.066667pt;}
.x120_c00153{left:537.200000pt;}
.xd6_c00153{left:538.800000pt;}
.x5e_c00153{left:541.200000pt;}
.x136_c00153{left:543.866667pt;}
.x8f_c00153{left:545.200000pt;}
.x1c_c00153{left:546.266667pt;}
.x129_c00153{left:548.666667pt;}
.xf_c00153{left:549.733333pt;}
.x2a_c00153{left:553.066667pt;}
.x126_c00153{left:554.266667pt;}
.x13c_c00153{left:555.200000pt;}
.x104_c00153{left:557.733333pt;}
.x76_c00153{left:558.800000pt;}
.x84_c00153{left:560.133333pt;}
.x137_c00153{left:561.733333pt;}
.xed_c00153{left:563.733333pt;}
.x41_c00153{left:565.200000pt;}
.x37_c00153{left:566.266667pt;}
.x55_c00153{left:568.000000pt;}
.x5f_c00153{left:570.000000pt;}
.x141_c00153{left:570.933333pt;}
.x12d_c00153{left:572.266667pt;}
.x1d_c00153{left:573.200000pt;}
.x105_c00153{left:574.666667pt;}
.x90_c00153{left:577.466667pt;}
.x4a_c00153{left:579.333333pt;}
.x10c_c00153{left:580.266667pt;}
.x42_c00153{left:582.533333pt;}
.x112_c00153{left:584.800000pt;}
.x138_c00153{left:586.000000pt;}
.x60_c00153{left:587.333333pt;}
.x1e_c00153{left:588.533333pt;}
.xaa_c00153{left:590.266667pt;}
.x132_c00153{left:593.066667pt;}
.x6d_c00153{left:594.800000pt;}
.x145_c00153{left:597.333333pt;}
.x13d_c00153{left:598.400000pt;}
.x2b_c00153{left:599.733333pt;}
.xfd_c00153{left:600.800000pt;}
.xf3_c00153{left:601.733333pt;}
.xb2_c00153{left:604.800000pt;}
.x12e_c00153{left:606.133333pt;}
.xa1_c00153{left:607.333333pt;}
.x61_c00153{left:609.733333pt;}
.x77_c00153{left:614.133333pt;}
.xd7_c00153{left:617.866667pt;}
.x121_c00153{left:620.000000pt;}
.x9b_c00153{left:621.066667pt;}
.x1f_c00153{left:622.133333pt;}
.x10_c00153{left:623.333333pt;}
.xe9_c00153{left:624.400000pt;}
.x113_c00153{left:625.466667pt;}
.x2c_c00153{left:627.200000pt;}
.x6e_c00153{left:629.733333pt;}
.x78_c00153{left:632.666667pt;}
.xa2_c00153{left:633.600000pt;}
.x85_c00153{left:634.666667pt;}
.x106_c00153{left:637.333333pt;}
.xba_c00153{left:638.400000pt;}
.x38_c00153{left:640.533333pt;}
.x43_c00153{left:641.466667pt;}
.x12a_c00153{left:642.400000pt;}
.x13e_c00153{left:643.866667pt;}
.x20_c00153{left:644.800000pt;}
.x11_c00153{left:648.000000pt;}
.xbb_c00153{left:649.333333pt;}
.xcc_c00153{left:650.533333pt;}
.xe1_c00153{left:652.400000pt;}
.x79_c00153{left:655.066667pt;}
.x10d_c00153{left:657.066667pt;}
.xf4_c00153{left:658.400000pt;}
.x62_c00153{left:659.333333pt;}
.x39_c00153{left:661.600000pt;}
.xab_c00153{left:662.533333pt;}
.xa3_c00153{left:665.333333pt;}
.x2d_c00153{left:666.533333pt;}
.x2_c00153{left:669.733333pt;}
.x91_c00153{left:672.533333pt;}
}





/* 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_c00154 {
    display:none;
  }
  .loading-indicator_c00154.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00154 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_c00154 { 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_c00154" -> "#page-container .classname_c00154")
 */
.pf_c00154 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00154 { /* 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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00154 { /* 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_c00154 { /* 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_c00154 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00154 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00154 {overflow:visible;}
  }
}
.c_c00154 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00154 { /* 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_c00154:after { /* webkit #35443 */
  content: '';
}
.t_c00154:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00154 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 */
}
.__c00154 { /* 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_c00154 { /* info for Javascript */
  display:none;
}
.l_c00154 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00154 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00154 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00154: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_c00154 {
    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_c00154.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00154.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_c00154 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00154{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00154;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.000000;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;}
.m77_c00154{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00154{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00154{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m92_c00154{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m38_c00154{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m83_c00154{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m13_c00154{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00154{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00154{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m68_c00154{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.md_c00154{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m20_c00154{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00154{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m87_c00154{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00154{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00154{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00154{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m63_c00154{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m80_c00154{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m89_c00154{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00154{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m16_c00154{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m33_c00154{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00154{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m31_c00154{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00154{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00154{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00154{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mac_c00154{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00154{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00154{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8_c00154{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00154{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m32_c00154{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00154{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m52_c00154{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6_c00154{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00154{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m59_c00154{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m93_c00154{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m69_c00154{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m44_c00154{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00154{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m50_c00154{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m25_c00154{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00154{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m84_c00154{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m81_c00154{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00154{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00154{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00154{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00154{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m60_c00154{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m43_c00154{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00154{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3_c00154{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00154{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m71_c00154{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24_c00154{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00154{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{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);}
.m64_c00154{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00154{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00154{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m48_c00154{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00154{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m62_c00154{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m91_c00154{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00154{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00154{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00154{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m88_c00154{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.mad_c00154{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00154{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m49_c00154{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00154{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00154{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m19_c00154{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m42_c00154{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m74_c00154{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00154{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m54_c00154{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m94_c00154{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m26_c00154{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c00154{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00154{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00154{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00154{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m95_c00154{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00154{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00154{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00154{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m66_c00154{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00154{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m76_c00154{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m65_c00154{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m57_c00154{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.maa_c00154{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00154{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mab_c00154{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m29_c00154{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m85_c00154{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m97_c00154{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m37_c00154{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m40_c00154{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00154{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m96_c00154{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m86_c00154{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00154{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m98_c00154{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m45_c00154{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00154{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00154{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00154{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m61_c00154{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00154{vertical-align:0.000000px;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{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__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00154{word-spacing:-7.222222px;}
.ws3_c00154{word-spacing:-6.781631px;}
.ws5_c00154{word-spacing:-5.555556px;}
.ws8_c00154{word-spacing:-4.750000px;}
.ws4_c00154{word-spacing:-2.485531px;}
.ws9_c00154{word-spacing:0.000000px;}
.ws6_c00154{word-spacing:1.500000px;}
.ws2_c00154{word-spacing:2.750000px;}
.ws1_c00154{word-spacing:13.964719px;}
.ws0_c00154{word-spacing:21.164502px;}
.fc0_c00154{color:transparent;}
.fs0_c00154{font-size:54.000000px;}
.y0_c00154{bottom:0.000000px;}
.y2c_c00154{bottom:159.450000px;}
.y2b_c00154{bottom:195.450000px;}
.y2a_c00154{bottom:215.700000px;}
.y29_c00154{bottom:235.800000px;}
.y28_c00154{bottom:254.850000px;}
.y27_c00154{bottom:274.800000px;}
.y26_c00154{bottom:294.900000px;}
.y25_c00154{bottom:314.700000px;}
.y24_c00154{bottom:334.500000px;}
.y23_c00154{bottom:354.300000px;}
.y22_c00154{bottom:374.100000px;}
.y21_c00154{bottom:393.900000px;}
.y20_c00154{bottom:413.700000px;}
.y1f_c00154{bottom:433.800000px;}
.y1e_c00154{bottom:453.900000px;}
.y1d_c00154{bottom:473.700000px;}
.y1c_c00154{bottom:493.800000px;}
.y1b_c00154{bottom:513.300000px;}
.y1a_c00154{bottom:533.100000px;}
.y19_c00154{bottom:553.200000px;}
.y18_c00154{bottom:572.700000px;}
.y17_c00154{bottom:592.500000px;}
.y16_c00154{bottom:613.050000px;}
.y15_c00154{bottom:633.150000px;}
.y14_c00154{bottom:655.800000px;}
.y13_c00154{bottom:673.050000px;}
.y12_c00154{bottom:693.150000px;}
.y11_c00154{bottom:712.650000px;}
.y10_c00154{bottom:732.750000px;}
.yf_c00154{bottom:752.550000px;}
.ye_c00154{bottom:772.650000px;}
.yd_c00154{bottom:792.750000px;}
.yc_c00154{bottom:812.550000px;}
.yb_c00154{bottom:832.350000px;}
.ya_c00154{bottom:852.150000px;}
.y9_c00154{bottom:872.250000px;}
.y8_c00154{bottom:892.200000px;}
.y7_c00154{bottom:912.000000px;}
.y6_c00154{bottom:932.100000px;}
.y5_c00154{bottom:951.900000px;}
.y4_c00154{bottom:972.000000px;}
.y3_c00154{bottom:991.800000px;}
.y2_c00154{bottom:1011.900000px;}
.y1_c00154{bottom:1049.700000px;}
.h2_c00154{height:54.000000px;}
.h1_c00154{height:1167.750000px;}
.h0_c00154{height:1167.839997px;}
.w1_c00154{width:920.250000px;}
.w0_c00154{width:920.519990px;}
.x0_c00154{left:0.000000px;}
.x3_c00154{left:155.550000px;}
.x1_c00154{left:157.350000px;}
.x57_c00154{left:173.700000px;}
.x125_c00154{left:175.500000px;}
.x9a_c00154{left:179.250000px;}
.xae_c00154{left:181.350000px;}
.xe2_c00154{left:182.400000px;}
.x109_c00154{left:184.650000px;}
.x76_c00154{left:185.850000px;}
.x20_c00154{left:187.200000px;}
.x4_c00154{left:188.250000px;}
.x126_c00154{left:189.300000px;}
.x2e_c00154{left:192.750000px;}
.x6d_c00154{left:196.350000px;}
.x61_c00154{left:198.000000px;}
.xed_c00154{left:200.100000px;}
.x103_c00154{left:202.500000px;}
.x9b_c00154{left:210.150000px;}
.xec_c00154{left:213.450000px;}
.x58_c00154{left:214.800000px;}
.x14_c00154{left:216.750000px;}
.x5_c00154{left:218.850000px;}
.x62_c00154{left:219.900000px;}
.x6e_c00154{left:221.850000px;}
.xc5_c00154{left:222.900000px;}
.x89_c00154{left:223.950000px;}
.x81_c00154{left:226.800000px;}
.xee_c00154{left:229.950000px;}
.x15_c00154{left:231.900000px;}
.x114_c00154{left:232.950000px;}
.xa6_c00154{left:234.900000px;}
.xaf_c00154{left:237.150000px;}
.xca_c00154{left:239.700000px;}
.x77_c00154{left:241.650000px;}
.x3c_c00154{left:244.650000px;}
.x82_c00154{left:246.600000px;}
.x49_c00154{left:247.650000px;}
.x59_c00154{left:250.050000px;}
.x8a_c00154{left:252.450000px;}
.xa7_c00154{left:253.650000px;}
.x104_c00154{left:255.000000px;}
.x6_c00154{left:256.350000px;}
.xc2_c00154{left:257.400000px;}
.xcb_c00154{left:259.500000px;}
.x2f_c00154{left:261.900000px;}
.xf7_c00154{left:263.100000px;}
.xf6_c00154{left:264.300000px;}
.xbc_c00154{left:265.650000px;}
.x4a_c00154{left:267.450000px;}
.x3d_c00154{left:269.100000px;}
.x122_c00154{left:270.150000px;}
.x78_c00154{left:272.250000px;}
.x21_c00154{left:276.450000px;}
.x6f_c00154{left:282.000000px;}
.xc3_c00154{left:283.650000px;}
.xd1_c00154{left:284.850000px;}
.x3e_c00154{left:286.800000px;}
.xa8_c00154{left:289.350000px;}
.x95_c00154{left:290.550000px;}
.xef_c00154{left:292.650000px;}
.xbd_c00154{left:293.700000px;}
.x4b_c00154{left:295.950000px;}
.x83_c00154{left:299.550000px;}
.x16_c00154{left:301.800000px;}
.xd2_c00154{left:306.150000px;}
.x10e_c00154{left:307.800000px;}
.x79_c00154{left:310.050000px;}
.xfc_c00154{left:311.700000px;}
.xc4_c00154{left:314.550000px;}
.xfa_c00154{left:316.500000px;}
.x7_c00154{left:318.600000px;}
.x22_c00154{left:319.650000px;}
.x115_c00154{left:320.850000px;}
.x8b_c00154{left:322.950000px;}
.x5a_c00154{left:326.100000px;}
.x10f_c00154{left:327.900000px;}
.x63_c00154{left:329.250000px;}
.x3f_c00154{left:330.750000px;}
.xba_c00154{left:331.950000px;}
.xb0_c00154{left:334.800000px;}
.xc6_c00154{left:336.600000px;}
.x23_c00154{left:339.150000px;}
.xf0_c00154{left:340.200000px;}
.x17_c00154{left:343.200000px;}
.x8c_c00154{left:344.250000px;}
.x4c_c00154{left:346.650000px;}
.xb1_c00154{left:354.300000px;}
.x110_c00154{left:355.650000px;}
.xfd_c00154{left:357.450000px;}
.x116_c00154{left:358.650000px;}
.xf1_c00154{left:360.000000px;}
.x123_c00154{left:361.200000px;}
.x30_c00154{left:362.700000px;}
.x7a_c00154{left:365.250000px;}
.xe3_c00154{left:366.300000px;}
.x84_c00154{left:368.700000px;}
.xa0_c00154{left:369.750000px;}
.x8_c00154{left:371.550000px;}
.x40_c00154{left:375.450000px;}
.x8d_c00154{left:376.950000px;}
.x120_c00154{left:378.300000px;}
.x24_c00154{left:379.500000px;}
.xfe_c00154{left:380.550000px;}
.x127_c00154{left:384.150000px;}
.xf2_c00154{left:385.200000px;}
.x64_c00154{left:387.600000px;}
.x18_c00154{left:390.300000px;}
.x4d_c00154{left:391.350000px;}
.x41_c00154{left:394.950000px;}
.x31_c00154{left:397.200000px;}
.xd3_c00154{left:400.050000px;}
.x9_c00154{left:402.450000px;}
.xd9_c00154{left:403.800000px;}
.x96_c00154{left:405.600000px;}
.x19_c00154{left:408.300000px;}
.xb2_c00154{left:410.100000px;}
.x11d_c00154{left:411.450000px;}
.xa9_c00154{left:412.800000px;}
.xa1_c00154{left:418.950000px;}
.xff_c00154{left:420.450000px;}
.xda_c00154{left:421.800000px;}
.xa_c00154{left:423.300000px;}
.x42_c00154{left:425.550000px;}
.x8e_c00154{left:426.600000px;}
.xe4_c00154{left:428.250000px;}
.xd4_c00154{left:430.950000px;}
.x5b_c00154{left:434.100000px;}
.x4e_c00154{left:435.600000px;}
.x25_c00154{left:437.100000px;}
.xb3_c00154{left:438.600000px;}
.x7b_c00154{left:441.150000px;}
.xf8_c00154{left:443.100000px;}
.xbe_c00154{left:444.600000px;}
.x1a_c00154{left:445.800000px;}
.xf3_c00154{left:447.450000px;}
.x105_c00154{left:448.500000px;}
.x65_c00154{left:449.850000px;}
.x2_c00154{left:453.300000px;}
.xcc_c00154{left:455.100000px;}
.xb_c00154{left:457.950000px;}
.x4f_c00154{left:462.600000px;}
.x32_c00154{left:464.100000px;}
.x117_c00154{left:466.650000px;}
.xdd_c00154{left:469.950000px;}
.x85_c00154{left:472.800000px;}
.x66_c00154{left:475.800000px;}
.x70_c00154{left:477.900000px;}
.x7c_c00154{left:479.250000px;}
.xc7_c00154{left:480.600000px;}
.x43_c00154{left:482.100000px;}
.x8f_c00154{left:484.200000px;}
.xb4_c00154{left:485.400000px;}
.xa2_c00154{left:487.350000px;}
.x100_c00154{left:488.400000px;}
.xf9_c00154{left:489.600000px;}
.xaa_c00154{left:490.950000px;}
.x33_c00154{left:492.150000px;}
.x10a_c00154{left:493.350000px;}
.x1b_c00154{left:497.250000px;}
.x50_c00154{left:501.900000px;}
.x5c_c00154{left:505.050000px;}
.x7d_c00154{left:507.300000px;}
.x97_c00154{left:508.950000px;}
.x111_c00154{left:510.600000px;}
.xc_c00154{left:511.650000px;}
.x90_c00154{left:513.750000px;}
.x5d_c00154{left:516.150000px;}
.xbb_c00154{left:517.350000px;}
.x106_c00154{left:519.000000px;}
.x118_c00154{left:520.350000px;}
.x51_c00154{left:522.000000px;}
.x129_c00154{left:526.950000px;}
.x26_c00154{left:528.600000px;}
.xde_c00154{left:530.400000px;}
.x1c_c00154{left:531.450000px;}
.x91_c00154{left:533.850000px;}
.xb5_c00154{left:535.050000px;}
.x71_c00154{left:537.600000px;}
.x112_c00154{left:539.100000px;}
.x86_c00154{left:540.450000px;}
.x1d_c00154{left:543.750000px;}
.x67_c00154{left:547.050000px;}
.x27_c00154{left:548.400000px;}
.x52_c00154{left:549.750000px;}
.xd_c00154{left:552.300000px;}
.xfb_c00154{left:553.950000px;}
.x9c_c00154{left:556.650000px;}
.x34_c00154{left:557.700000px;}
.x107_c00154{left:559.350000px;}
.xdf_c00154{left:561.300000px;}
.x92_c00154{left:564.150000px;}
.xa3_c00154{left:566.850000px;}
.xe5_c00154{left:568.050000px;}
.xab_c00154{left:569.100000px;}
.x101_c00154{left:574.500000px;}
.x28_c00154{left:576.150000px;}
.x1e_c00154{left:577.950000px;}
.x119_c00154{left:581.100000px;}
.x113_c00154{left:583.350000px;}
.xc8_c00154{left:585.750000px;}
.x53_c00154{left:588.600000px;}
.x7e_c00154{left:590.850000px;}
.x11e_c00154{left:591.900000px;}
.x68_c00154{left:593.100000px;}
.x87_c00154{left:596.250000px;}
.xb6_c00154{left:598.800000px;}
.x72_c00154{left:599.850000px;}
.x35_c00154{left:604.200000px;}
.x9d_c00154{left:605.250000px;}
.x44_c00154{left:606.300000px;}
.xd5_c00154{left:610.050000px;}
.xe_c00154{left:617.400000px;}
.x128_c00154{left:619.650000px;}
.x54_c00154{left:621.000000px;}
.xa4_c00154{left:622.950000px;}
.x36_c00154{left:624.000000px;}
.x124_c00154{left:626.550000px;}
.xb7_c00154{left:627.600000px;}
.x1f_c00154{left:628.650000px;}
.x9e_c00154{left:633.000000px;}
.xcd_c00154{left:634.800000px;}
.x5e_c00154{left:638.850000px;}
.x29_c00154{left:643.500000px;}
.xa5_c00154{left:644.550000px;}
.x69_c00154{left:646.800000px;}
.x37_c00154{left:649.200000px;}
.x93_c00154{left:651.750000px;}
.xe6_c00154{left:654.900000px;}
.x45_c00154{left:655.950000px;}
.xdb_c00154{left:657.450000px;}
.x11a_c00154{left:658.800000px;}
.x73_c00154{left:660.750000px;}
.xf_c00154{left:663.150000px;}
.xe0_c00154{left:664.500000px;}
.xce_c00154{left:667.200000px;}
.x10b_c00154{left:668.850000px;}
.xd6_c00154{left:670.500000px;}
.x6a_c00154{left:672.000000px;}
.x2a_c00154{left:673.050000px;}
.xe7_c00154{left:674.700000px;}
.x11f_c00154{left:677.850000px;}
.xbf_c00154{left:681.450000px;}
.xdc_c00154{left:684.450000px;}
.x55_c00154{left:688.650000px;}
.x7f_c00154{left:691.650000px;}
.xb8_c00154{left:692.700000px;}
.x10_c00154{left:693.750000px;}
.x102_c00154{left:696.150000px;}
.xf4_c00154{left:697.350000px;}
.xe8_c00154{left:700.200000px;}
.xd7_c00154{left:702.600000px;}
.x46_c00154{left:704.550000px;}
.xac_c00154{left:705.600000px;}
.xc9_c00154{left:707.100000px;}
.x6b_c00154{left:708.300000px;}
.x38_c00154{left:711.900000px;}
.x98_c00154{left:714.600000px;}
.x10c_c00154{left:717.450000px;}
.xe9_c00154{left:721.500000px;}
.xc0_c00154{left:723.150000px;}
.x88_c00154{left:724.350000px;}
.x11c_c00154{left:726.150000px;}
.x47_c00154{left:727.950000px;}
.x121_c00154{left:729.600000px;}
.xb9_c00154{left:733.050000px;}
.x5f_c00154{left:734.550000px;}
.x74_c00154{left:737.400000px;}
.xc1_c00154{left:738.600000px;}
.x2b_c00154{left:739.950000px;}
.xcf_c00154{left:741.300000px;}
.x60_c00154{left:743.850000px;}
.x94_c00154{left:747.450000px;}
.x9f_c00154{left:750.000000px;}
.x11_c00154{left:751.650000px;}
.xd8_c00154{left:753.300000px;}
.x39_c00154{left:755.850000px;}
.xf5_c00154{left:758.550000px;}
.x108_c00154{left:759.600000px;}
.x48_c00154{left:763.200000px;}
.x12a_c00154{left:764.850000px;}
.x6c_c00154{left:766.200000px;}
.x56_c00154{left:768.150000px;}
.x12_c00154{left:771.450000px;}
.x99_c00154{left:774.300000px;}
.x3a_c00154{left:775.650000px;}
.xad_c00154{left:777.600000px;}
.x2c_c00154{left:781.650000px;}
.xd0_c00154{left:783.000000px;}
.x10d_c00154{left:785.550000px;}
.x13_c00154{left:788.700000px;}
.xe1_c00154{left:791.100000px;}
.xea_c00154{left:795.600000px;}
.x75_c00154{left:797.850000px;}
.x2d_c00154{left:801.150000px;}
.x11b_c00154{left:802.950000px;}
.x3b_c00154{left:808.800000px;}
.x80_c00154{left:811.050000px;}
.xeb_c00154{left:815.400000px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws7_c00154{word-spacing:-6.419753pt;}
.ws3_c00154{word-spacing:-6.028116pt;}
.ws5_c00154{word-spacing:-4.938272pt;}
.ws8_c00154{word-spacing:-4.222222pt;}
.ws4_c00154{word-spacing:-2.209360pt;}
.ws9_c00154{word-spacing:0.000000pt;}
.ws6_c00154{word-spacing:1.333333pt;}
.ws2_c00154{word-spacing:2.444444pt;}
.ws1_c00154{word-spacing:12.413083pt;}
.ws0_c00154{word-spacing:18.812891pt;}
.fs0_c00154{font-size:48.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y2c_c00154{bottom:141.733333pt;}
.y2b_c00154{bottom:173.733333pt;}
.y2a_c00154{bottom:191.733333pt;}
.y29_c00154{bottom:209.600000pt;}
.y28_c00154{bottom:226.533333pt;}
.y27_c00154{bottom:244.266667pt;}
.y26_c00154{bottom:262.133333pt;}
.y25_c00154{bottom:279.733333pt;}
.y24_c00154{bottom:297.333333pt;}
.y23_c00154{bottom:314.933333pt;}
.y22_c00154{bottom:332.533333pt;}
.y21_c00154{bottom:350.133333pt;}
.y20_c00154{bottom:367.733333pt;}
.y1f_c00154{bottom:385.600000pt;}
.y1e_c00154{bottom:403.466667pt;}
.y1d_c00154{bottom:421.066667pt;}
.y1c_c00154{bottom:438.933333pt;}
.y1b_c00154{bottom:456.266667pt;}
.y1a_c00154{bottom:473.866667pt;}
.y19_c00154{bottom:491.733333pt;}
.y18_c00154{bottom:509.066667pt;}
.y17_c00154{bottom:526.666667pt;}
.y16_c00154{bottom:544.933333pt;}
.y15_c00154{bottom:562.800000pt;}
.y14_c00154{bottom:582.933333pt;}
.y13_c00154{bottom:598.266667pt;}
.y12_c00154{bottom:616.133333pt;}
.y11_c00154{bottom:633.466667pt;}
.y10_c00154{bottom:651.333333pt;}
.yf_c00154{bottom:668.933333pt;}
.ye_c00154{bottom:686.800000pt;}
.yd_c00154{bottom:704.666667pt;}
.yc_c00154{bottom:722.266667pt;}
.yb_c00154{bottom:739.866667pt;}
.ya_c00154{bottom:757.466667pt;}
.y9_c00154{bottom:775.333333pt;}
.y8_c00154{bottom:793.066667pt;}
.y7_c00154{bottom:810.666667pt;}
.y6_c00154{bottom:828.533333pt;}
.y5_c00154{bottom:846.133333pt;}
.y4_c00154{bottom:864.000000pt;}
.y3_c00154{bottom:881.600000pt;}
.y2_c00154{bottom:899.466667pt;}
.y1_c00154{bottom:933.066667pt;}
.h2_c00154{height:48.000000pt;}
.h1_c00154{height:1038.000000pt;}
.h0_c00154{height:1038.079997pt;}
.w1_c00154{width:818.000000pt;}
.w0_c00154{width:818.239991pt;}
.x0_c00154{left:0.000000pt;}
.x3_c00154{left:138.266667pt;}
.x1_c00154{left:139.866667pt;}
.x57_c00154{left:154.400000pt;}
.x125_c00154{left:156.000000pt;}
.x9a_c00154{left:159.333333pt;}
.xae_c00154{left:161.200000pt;}
.xe2_c00154{left:162.133333pt;}
.x109_c00154{left:164.133333pt;}
.x76_c00154{left:165.200000pt;}
.x20_c00154{left:166.400000pt;}
.x4_c00154{left:167.333333pt;}
.x126_c00154{left:168.266667pt;}
.x2e_c00154{left:171.333333pt;}
.x6d_c00154{left:174.533333pt;}
.x61_c00154{left:176.000000pt;}
.xed_c00154{left:177.866667pt;}
.x103_c00154{left:180.000000pt;}
.x9b_c00154{left:186.800000pt;}
.xec_c00154{left:189.733333pt;}
.x58_c00154{left:190.933333pt;}
.x14_c00154{left:192.666667pt;}
.x5_c00154{left:194.533333pt;}
.x62_c00154{left:195.466667pt;}
.x6e_c00154{left:197.200000pt;}
.xc5_c00154{left:198.133333pt;}
.x89_c00154{left:199.066667pt;}
.x81_c00154{left:201.600000pt;}
.xee_c00154{left:204.400000pt;}
.x15_c00154{left:206.133333pt;}
.x114_c00154{left:207.066667pt;}
.xa6_c00154{left:208.800000pt;}
.xaf_c00154{left:210.800000pt;}
.xca_c00154{left:213.066667pt;}
.x77_c00154{left:214.800000pt;}
.x3c_c00154{left:217.466667pt;}
.x82_c00154{left:219.200000pt;}
.x49_c00154{left:220.133333pt;}
.x59_c00154{left:222.266667pt;}
.x8a_c00154{left:224.400000pt;}
.xa7_c00154{left:225.466667pt;}
.x104_c00154{left:226.666667pt;}
.x6_c00154{left:227.866667pt;}
.xc2_c00154{left:228.800000pt;}
.xcb_c00154{left:230.666667pt;}
.x2f_c00154{left:232.800000pt;}
.xf7_c00154{left:233.866667pt;}
.xf6_c00154{left:234.933333pt;}
.xbc_c00154{left:236.133333pt;}
.x4a_c00154{left:237.733333pt;}
.x3d_c00154{left:239.200000pt;}
.x122_c00154{left:240.133333pt;}
.x78_c00154{left:242.000000pt;}
.x21_c00154{left:245.733333pt;}
.x6f_c00154{left:250.666667pt;}
.xc3_c00154{left:252.133333pt;}
.xd1_c00154{left:253.200000pt;}
.x3e_c00154{left:254.933333pt;}
.xa8_c00154{left:257.200000pt;}
.x95_c00154{left:258.266667pt;}
.xef_c00154{left:260.133333pt;}
.xbd_c00154{left:261.066667pt;}
.x4b_c00154{left:263.066667pt;}
.x83_c00154{left:266.266667pt;}
.x16_c00154{left:268.266667pt;}
.xd2_c00154{left:272.133333pt;}
.x10e_c00154{left:273.600000pt;}
.x79_c00154{left:275.600000pt;}
.xfc_c00154{left:277.066667pt;}
.xc4_c00154{left:279.600000pt;}
.xfa_c00154{left:281.333333pt;}
.x7_c00154{left:283.200000pt;}
.x22_c00154{left:284.133333pt;}
.x115_c00154{left:285.200000pt;}
.x8b_c00154{left:287.066667pt;}
.x5a_c00154{left:289.866667pt;}
.x10f_c00154{left:291.466667pt;}
.x63_c00154{left:292.666667pt;}
.x3f_c00154{left:294.000000pt;}
.xba_c00154{left:295.066667pt;}
.xb0_c00154{left:297.600000pt;}
.xc6_c00154{left:299.200000pt;}
.x23_c00154{left:301.466667pt;}
.xf0_c00154{left:302.400000pt;}
.x17_c00154{left:305.066667pt;}
.x8c_c00154{left:306.000000pt;}
.x4c_c00154{left:308.133333pt;}
.xb1_c00154{left:314.933333pt;}
.x110_c00154{left:316.133333pt;}
.xfd_c00154{left:317.733333pt;}
.x116_c00154{left:318.800000pt;}
.xf1_c00154{left:320.000000pt;}
.x123_c00154{left:321.066667pt;}
.x30_c00154{left:322.400000pt;}
.x7a_c00154{left:324.666667pt;}
.xe3_c00154{left:325.600000pt;}
.x84_c00154{left:327.733333pt;}
.xa0_c00154{left:328.666667pt;}
.x8_c00154{left:330.266667pt;}
.x40_c00154{left:333.733333pt;}
.x8d_c00154{left:335.066667pt;}
.x120_c00154{left:336.266667pt;}
.x24_c00154{left:337.333333pt;}
.xfe_c00154{left:338.266667pt;}
.x127_c00154{left:341.466667pt;}
.xf2_c00154{left:342.400000pt;}
.x64_c00154{left:344.533333pt;}
.x18_c00154{left:346.933333pt;}
.x4d_c00154{left:347.866667pt;}
.x41_c00154{left:351.066667pt;}
.x31_c00154{left:353.066667pt;}
.xd3_c00154{left:355.600000pt;}
.x9_c00154{left:357.733333pt;}
.xd9_c00154{left:358.933333pt;}
.x96_c00154{left:360.533333pt;}
.x19_c00154{left:362.933333pt;}
.xb2_c00154{left:364.533333pt;}
.x11d_c00154{left:365.733333pt;}
.xa9_c00154{left:366.933333pt;}
.xa1_c00154{left:372.400000pt;}
.xff_c00154{left:373.733333pt;}
.xda_c00154{left:374.933333pt;}
.xa_c00154{left:376.266667pt;}
.x42_c00154{left:378.266667pt;}
.x8e_c00154{left:379.200000pt;}
.xe4_c00154{left:380.666667pt;}
.xd4_c00154{left:383.066667pt;}
.x5b_c00154{left:385.866667pt;}
.x4e_c00154{left:387.200000pt;}
.x25_c00154{left:388.533333pt;}
.xb3_c00154{left:389.866667pt;}
.x7b_c00154{left:392.133333pt;}
.xf8_c00154{left:393.866667pt;}
.xbe_c00154{left:395.200000pt;}
.x1a_c00154{left:396.266667pt;}
.xf3_c00154{left:397.733333pt;}
.x105_c00154{left:398.666667pt;}
.x65_c00154{left:399.866667pt;}
.x2_c00154{left:402.933333pt;}
.xcc_c00154{left:404.533333pt;}
.xb_c00154{left:407.066667pt;}
.x4f_c00154{left:411.200000pt;}
.x32_c00154{left:412.533333pt;}
.x117_c00154{left:414.800000pt;}
.xdd_c00154{left:417.733333pt;}
.x85_c00154{left:420.266667pt;}
.x66_c00154{left:422.933333pt;}
.x70_c00154{left:424.800000pt;}
.x7c_c00154{left:426.000000pt;}
.xc7_c00154{left:427.200000pt;}
.x43_c00154{left:428.533333pt;}
.x8f_c00154{left:430.400000pt;}
.xb4_c00154{left:431.466667pt;}
.xa2_c00154{left:433.200000pt;}
.x100_c00154{left:434.133333pt;}
.xf9_c00154{left:435.200000pt;}
.xaa_c00154{left:436.400000pt;}
.x33_c00154{left:437.466667pt;}
.x10a_c00154{left:438.533333pt;}
.x1b_c00154{left:442.000000pt;}
.x50_c00154{left:446.133333pt;}
.x5c_c00154{left:448.933333pt;}
.x7d_c00154{left:450.933333pt;}
.x97_c00154{left:452.400000pt;}
.x111_c00154{left:453.866667pt;}
.xc_c00154{left:454.800000pt;}
.x90_c00154{left:456.666667pt;}
.x5d_c00154{left:458.800000pt;}
.xbb_c00154{left:459.866667pt;}
.x106_c00154{left:461.333333pt;}
.x118_c00154{left:462.533333pt;}
.x51_c00154{left:464.000000pt;}
.x129_c00154{left:468.400000pt;}
.x26_c00154{left:469.866667pt;}
.xde_c00154{left:471.466667pt;}
.x1c_c00154{left:472.400000pt;}
.x91_c00154{left:474.533333pt;}
.xb5_c00154{left:475.600000pt;}
.x71_c00154{left:477.866667pt;}
.x112_c00154{left:479.200000pt;}
.x86_c00154{left:480.400000pt;}
.x1d_c00154{left:483.333333pt;}
.x67_c00154{left:486.266667pt;}
.x27_c00154{left:487.466667pt;}
.x52_c00154{left:488.666667pt;}
.xd_c00154{left:490.933333pt;}
.xfb_c00154{left:492.400000pt;}
.x9c_c00154{left:494.800000pt;}
.x34_c00154{left:495.733333pt;}
.x107_c00154{left:497.200000pt;}
.xdf_c00154{left:498.933333pt;}
.x92_c00154{left:501.466667pt;}
.xa3_c00154{left:503.866667pt;}
.xe5_c00154{left:504.933333pt;}
.xab_c00154{left:505.866667pt;}
.x101_c00154{left:510.666667pt;}
.x28_c00154{left:512.133333pt;}
.x1e_c00154{left:513.733333pt;}
.x119_c00154{left:516.533333pt;}
.x113_c00154{left:518.533333pt;}
.xc8_c00154{left:520.666667pt;}
.x53_c00154{left:523.200000pt;}
.x7e_c00154{left:525.200000pt;}
.x11e_c00154{left:526.133333pt;}
.x68_c00154{left:527.200000pt;}
.x87_c00154{left:530.000000pt;}
.xb6_c00154{left:532.266667pt;}
.x72_c00154{left:533.200000pt;}
.x35_c00154{left:537.066667pt;}
.x9d_c00154{left:538.000000pt;}
.x44_c00154{left:538.933333pt;}
.xd5_c00154{left:542.266667pt;}
.xe_c00154{left:548.800000pt;}
.x128_c00154{left:550.800000pt;}
.x54_c00154{left:552.000000pt;}
.xa4_c00154{left:553.733333pt;}
.x36_c00154{left:554.666667pt;}
.x124_c00154{left:556.933333pt;}
.xb7_c00154{left:557.866667pt;}
.x1f_c00154{left:558.800000pt;}
.x9e_c00154{left:562.666667pt;}
.xcd_c00154{left:564.266667pt;}
.x5e_c00154{left:567.866667pt;}
.x29_c00154{left:572.000000pt;}
.xa5_c00154{left:572.933333pt;}
.x69_c00154{left:574.933333pt;}
.x37_c00154{left:577.066667pt;}
.x93_c00154{left:579.333333pt;}
.xe6_c00154{left:582.133333pt;}
.x45_c00154{left:583.066667pt;}
.xdb_c00154{left:584.400000pt;}
.x11a_c00154{left:585.600000pt;}
.x73_c00154{left:587.333333pt;}
.xf_c00154{left:589.466667pt;}
.xe0_c00154{left:590.666667pt;}
.xce_c00154{left:593.066667pt;}
.x10b_c00154{left:594.533333pt;}
.xd6_c00154{left:596.000000pt;}
.x6a_c00154{left:597.333333pt;}
.x2a_c00154{left:598.266667pt;}
.xe7_c00154{left:599.733333pt;}
.x11f_c00154{left:602.533333pt;}
.xbf_c00154{left:605.733333pt;}
.xdc_c00154{left:608.400000pt;}
.x55_c00154{left:612.133333pt;}
.x7f_c00154{left:614.800000pt;}
.xb8_c00154{left:615.733333pt;}
.x10_c00154{left:616.666667pt;}
.x102_c00154{left:618.800000pt;}
.xf4_c00154{left:619.866667pt;}
.xe8_c00154{left:622.400000pt;}
.xd7_c00154{left:624.533333pt;}
.x46_c00154{left:626.266667pt;}
.xac_c00154{left:627.200000pt;}
.xc9_c00154{left:628.533333pt;}
.x6b_c00154{left:629.600000pt;}
.x38_c00154{left:632.800000pt;}
.x98_c00154{left:635.200000pt;}
.x10c_c00154{left:637.733333pt;}
.xe9_c00154{left:641.333333pt;}
.xc0_c00154{left:642.800000pt;}
.x88_c00154{left:643.866667pt;}
.x11c_c00154{left:645.466667pt;}
.x47_c00154{left:647.066667pt;}
.x121_c00154{left:648.533333pt;}
.xb9_c00154{left:651.600000pt;}
.x5f_c00154{left:652.933333pt;}
.x74_c00154{left:655.466667pt;}
.xc1_c00154{left:656.533333pt;}
.x2b_c00154{left:657.733333pt;}
.xcf_c00154{left:658.933333pt;}
.x60_c00154{left:661.200000pt;}
.x94_c00154{left:664.400000pt;}
.x9f_c00154{left:666.666667pt;}
.x11_c00154{left:668.133333pt;}
.xd8_c00154{left:669.600000pt;}
.x39_c00154{left:671.866667pt;}
.xf5_c00154{left:674.266667pt;}
.x108_c00154{left:675.200000pt;}
.x48_c00154{left:678.400000pt;}
.x12a_c00154{left:679.866667pt;}
.x6c_c00154{left:681.066667pt;}
.x56_c00154{left:682.800000pt;}
.x12_c00154{left:685.733333pt;}
.x99_c00154{left:688.266667pt;}
.x3a_c00154{left:689.466667pt;}
.xad_c00154{left:691.200000pt;}
.x2c_c00154{left:694.800000pt;}
.xd0_c00154{left:696.000000pt;}
.x10d_c00154{left:698.266667pt;}
.x13_c00154{left:701.066667pt;}
.xe1_c00154{left:703.200000pt;}
.xea_c00154{left:707.200000pt;}
.x75_c00154{left:709.200000pt;}
.x2d_c00154{left:712.133333pt;}
.x11b_c00154{left:713.733333pt;}
.x3b_c00154{left:718.933333pt;}
.x80_c00154{left:720.933333pt;}
.xeb_c00154{left:724.800000pt;}
}





/* 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_c00155 {
    display:none;
  }
  .loading-indicator_c00155.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00155 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_c00155 { 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_c00155" -> "#page-container .classname_c00155")
 */
.pf_c00155 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00155 { /* 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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00155 { /* 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_c00155 { /* 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_c00155 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00155 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00155 {overflow:visible;}
  }
}
.c_c00155 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00155 { /* 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_c00155:after { /* webkit #35443 */
  content: '';
}
.t_c00155:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00155 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 */
}
.__c00155 { /* 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_c00155 { /* info for Javascript */
  display:none;
}
.l_c00155 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00155 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00155 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00155: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_c00155 {
    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_c00155.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00155.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_c00155 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00155{font-family:sans-serif;visibility:hidden;}
.sc__c00155{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
}
.y0_c00155{bottom:0.000000px;}
.h1_c00155{height:1167.750000px;}
.h0_c00155{height:1167.839997px;}
.w1_c00155{width:920.250000px;}
.w0_c00155{width:920.519990px;}
.x0_c00155{left:0.000000px;}
@media print{
.y0_c00155{bottom:0.000000pt;}
.h1_c00155{height:1038.000000pt;}
.h0_c00155{height:1038.079997pt;}
.w1_c00155{width:818.000000pt;}
.w0_c00155{width:818.239991pt;}
.x0_c00155{left:0.000000pt;}
}





/* 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_c00156 {
    display:none;
  }
  .loading-indicator_c00156.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00156 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_c00156 { 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_c00156" -> "#page-container .classname_c00156")
 */
.pf_c00156 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00156 { /* 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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00156 { /* 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_c00156 { /* 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_c00156 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00156 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00156 {overflow:visible;}
  }
}
.c_c00156 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00156 { /* 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_c00156:after { /* webkit #35443 */
  content: '';
}
.t_c00156:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00156 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 */
}
.__c00156 { /* 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_c00156 { /* info for Javascript */
  display:none;
}
.l_c00156 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00156 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00156 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00156: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_c00156 {
    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_c00156.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00156.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_c00156 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00156{font-family:sans-serif;visibility:hidden;}
.sc__c00156{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00156{-webkit-text-stroke:0px transparent;}
}
.y0_c00156{bottom:0.000000px;}
.h1_c00156{height:1167.750000px;}
.h0_c00156{height:1167.839997px;}
.w1_c00156{width:920.250000px;}
.w0_c00156{width:920.519990px;}
.x0_c00156{left:0.000000px;}
@media print{
.y0_c00156{bottom:0.000000pt;}
.h1_c00156{height:1038.000000pt;}
.h0_c00156{height:1038.079997pt;}
.w1_c00156{width:818.000000pt;}
.w0_c00156{width:818.239991pt;}
.x0_c00156{left:0.000000pt;}
}





/* 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_c00157 {
    display:none;
  }
  .loading-indicator_c00157.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00157 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_c00157 { 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_c00157" -> "#page-container .classname_c00157")
 */
.pf_c00157 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00157 { /* 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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00157 { /* 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_c00157 { /* 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_c00157 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00157 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00157 {overflow:visible;}
  }
}
.c_c00157 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00157 { /* 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_c00157:after { /* webkit #35443 */
  content: '';
}
.t_c00157:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00157 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 */
}
.__c00157 { /* 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_c00157 { /* info for Javascript */
  display:none;
}
.l_c00157 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00157 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00157 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00157: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_c00157 {
    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_c00157.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00157.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_c00157 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00157{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00157;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.000000;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;}
.m93_c00157{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m84_c00157{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00157{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00157{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00157{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00157{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m66_c00157{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m99_c00157{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00157{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m95_c00157{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00157{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m12_c00157{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00157{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m52_c00157{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m21_c00157{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00157{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m98_c00157{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m82_c00157{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m90_c00157{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m59_c00157{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00157{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m94_c00157{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00157{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m62_c00157{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00157{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m29_c00157{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00157{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m44_c00157{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m26_c00157{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m60_c00157{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m68_c00157{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19_c00157{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00157{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m54_c00157{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m41_c00157{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00157{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00157{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m56_c00157{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18_c00157{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m23_c00157{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);}
.m4a_c00157{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00157{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00157{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00157{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m70_c00157{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mb_c00157{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m61_c00157{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m65_c00157{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m73_c00157{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00157{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m40_c00157{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m57_c00157{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00157{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2_c00157{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00157{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00157{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00157{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m72_c00157{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m67_c00157{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00157{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m86_c00157{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00157{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00157{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m97_c00157{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m76_c00157{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m13_c00157{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00157{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m45_c00157{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00157{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00157{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m58_c00157{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m5_c00157{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00157{vertical-align:0.000000px;}
.ls0_c00157{letter-spacing:0.000000px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{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__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00157{word-spacing:-4.750000px;}
.ws5_c00157{word-spacing:-3.406836px;}
.ws4_c00157{word-spacing:-3.000000px;}
.ws0_c00157{word-spacing:-2.504823px;}
.ws9_c00157{word-spacing:0.000000px;}
.ws6_c00157{word-spacing:0.590119px;}
.ws1_c00157{word-spacing:6.125000px;}
.ws2_c00157{word-spacing:9.680851px;}
.ws3_c00157{word-spacing:16.625000px;}
.ws7_c00157{word-spacing:18.752221px;}
.fc0_c00157{color:transparent;}
.fs1_c00157{font-size:54.000000px;}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y23_c00157{bottom:149.400000px;}
.y22_c00157{bottom:185.100000px;}
.y21_c00157{bottom:204.900000px;}
.y20_c00157{bottom:225.000000px;}
.y1f_c00157{bottom:244.200000px;}
.y1e_c00157{bottom:265.500000px;}
.y1d_c00157{bottom:285.300000px;}
.y1c_c00157{bottom:305.400000px;}
.y1b_c00157{bottom:325.200000px;}
.y1a_c00157{bottom:345.300000px;}
.y19_c00157{bottom:365.100000px;}
.y18_c00157{bottom:384.900000px;}
.y17_c00157{bottom:404.250000px;}
.y16_c00157{bottom:424.800000px;}
.y15_c00157{bottom:444.900000px;}
.y14_c00157{bottom:465.000000px;}
.y13_c00157{bottom:485.100000px;}
.y12_c00157{bottom:504.900000px;}
.y11_c00157{bottom:524.700000px;}
.y10_c00157{bottom:544.800000px;}
.yf_c00157{bottom:564.600000px;}
.ye_c00157{bottom:584.400000px;}
.yd_c00157{bottom:604.500000px;}
.yc_c00157{bottom:624.600000px;}
.yb_c00157{bottom:644.400000px;}
.ya_c00157{bottom:663.150000px;}
.y9_c00157{bottom:684.000000px;}
.y8_c00157{bottom:703.500000px;}
.y7_c00157{bottom:723.300000px;}
.y6_c00157{bottom:743.100000px;}
.y5_c00157{bottom:763.200000px;}
.y4_c00157{bottom:783.300000px;}
.y3_c00157{bottom:816.900000px;}
.y2_c00157{bottom:849.600000px;}
.y1_c00157{bottom:1045.500000px;}
.h3_c00157{height:54.000000px;}
.h2_c00157{height:72.000000px;}
.h1_c00157{height:1167.750000px;}
.h0_c00157{height:1167.839997px;}
.w1_c00157{width:920.250000px;}
.w0_c00157{width:920.519990px;}
.x0_c00157{left:0.000000px;}
.xf_c00157{left:108.000000px;}
.xcc_c00157{left:109.050000px;}
.x7d_c00157{left:126.900000px;}
.x2f_c00157{left:128.400000px;}
.xad_c00157{left:130.050000px;}
.x1e_c00157{left:138.900000px;}
.xbb_c00157{left:140.400000px;}
.x76_c00157{left:143.850000px;}
.xf6_c00157{left:144.900000px;}
.x6b_c00157{left:147.900000px;}
.x4c_c00157{left:151.800000px;}
.x3f_c00157{left:154.350000px;}
.x7e_c00157{left:155.400000px;}
.x90_c00157{left:157.950000px;}
.xae_c00157{left:160.650000px;}
.xeb_c00157{left:166.950000px;}
.x30_c00157{left:169.050000px;}
.x40_c00157{left:171.600000px;}
.x4d_c00157{left:173.100000px;}
.xa7_c00157{left:174.600000px;}
.x10_c00157{left:177.450000px;}
.xd8_c00157{left:178.800000px;}
.x4_c00157{left:181.500000px;}
.x97_c00157{left:182.700000px;}
.xb8_c00157{left:185.100000px;}
.x7f_c00157{left:187.050000px;}
.x58_c00157{left:188.700000px;}
.x31_c00157{left:190.950000px;}
.xa2_c00157{left:196.800000px;}
.x1f_c00157{left:200.400000px;}
.x41_c00157{left:202.500000px;}
.xcd_c00157{left:204.450000px;}
.x6c_c00157{left:205.500000px;}
.xc0_c00157{left:209.250000px;}
.x87_c00157{left:212.400000px;}
.x80_c00157{left:215.100000px;}
.x59_c00157{left:216.750000px;}
.x20_c00157{left:220.200000px;}
.xf1_c00157{left:222.450000px;}
.xc1_c00157{left:226.950000px;}
.xec_c00157{left:228.450000px;}
.x11_c00157{left:229.950000px;}
.x98_c00157{left:231.000000px;}
.x32_c00157{left:232.050000px;}
.x91_c00157{left:235.950000px;}
.x77_c00157{left:237.450000px;}
.xe3_c00157{left:242.250000px;}
.xd9_c00157{left:243.900000px;}
.xc2_c00157{left:244.950000px;}
.x12_c00157{left:246.900000px;}
.xf2_c00157{left:248.400000px;}
.x6d_c00157{left:249.750000px;}
.xb9_c00157{left:250.950000px;}
.x99_c00157{left:252.600000px;}
.x100_c00157{left:254.550000px;}
.x5_c00157{left:255.600000px;}
.xaf_c00157{left:257.100000px;}
.xf3_c00157{left:258.150000px;}
.xd1_c00157{left:260.700000px;}
.x101_c00157{left:262.800000px;}
.x33_c00157{left:264.150000px;}
.x42_c00157{left:266.250000px;}
.xa8_c00157{left:267.900000px;}
.x21_c00157{left:270.300000px;}
.xc7_c00157{left:272.250000px;}
.x5a_c00157{left:275.100000px;}
.xe4_c00157{left:278.550000px;}
.x43_c00157{left:280.650000px;}
.x6e_c00157{left:284.250000px;}
.x34_c00157{left:285.750000px;}
.xbc_c00157{left:288.900000px;}
.xc3_c00157{left:291.750000px;}
.xb5_c00157{left:293.250000px;}
.x13_c00157{left:297.000000px;}
.x22_c00157{left:298.800000px;}
.x88_c00157{left:300.900000px;}
.xed_c00157{left:301.950000px;}
.x78_c00157{left:303.300000px;}
.x92_c00157{left:304.650000px;}
.x81_c00157{left:309.750000px;}
.x6_c00157{left:312.900000px;}
.x9a_c00157{left:316.650000px;}
.x102_c00157{left:320.400000px;}
.xda_c00157{left:323.100000px;}
.x23_c00157{left:324.300000px;}
.x35_c00157{left:326.850000px;}
.x7_c00157{left:328.350000px;}
.x5b_c00157{left:329.400000px;}
.x89_c00157{left:331.800000px;}
.xfd_c00157{left:333.900000px;}
.x6f_c00157{left:334.950000px;}
.x14_c00157{left:340.200000px;}
.xd2_c00157{left:341.400000px;}
.xbd_c00157{left:343.200000px;}
.xc8_c00157{left:345.600000px;}
.x9b_c00157{left:347.550000px;}
.xba_c00157{left:348.750000px;}
.x63_c00157{left:349.950000px;}
.xb6_c00157{left:352.350000px;}
.x44_c00157{left:354.450000px;}
.x79_c00157{left:355.500000px;}
.xce_c00157{left:358.350000px;}
.x5c_c00157{left:360.000000px;}
.xd3_c00157{left:362.700000px;}
.x4e_c00157{left:364.500000px;}
.xc9_c00157{left:367.200000px;}
.x36_c00157{left:369.300000px;}
.xfe_c00157{left:371.700000px;}
.xdb_c00157{left:382.800000px;}
.x15_c00157{left:384.150000px;}
.x2_c00157{left:386.250000px;}
.x8_c00157{left:389.550000px;}
.x37_c00157{left:391.200000px;}
.x8a_c00157{left:393.300000px;}
.x24_c00157{left:398.100000px;}
.x64_c00157{left:400.350000px;}
.x4f_c00157{left:405.150000px;}
.x45_c00157{left:407.700000px;}
.xf4_c00157{left:411.750000px;}
.xa3_c00157{left:412.800000px;}
.x25_c00157{left:415.050000px;}
.x70_c00157{left:419.100000px;}
.xbe_c00157{left:420.600000px;}
.xcf_c00157{left:421.650000px;}
.xa9_c00157{left:423.600000px;}
.x5d_c00157{left:425.850000px;}
.xd4_c00157{left:428.850000px;}
.x1_c00157{left:432.000000px;}
.xe5_c00157{left:433.350000px;}
.x50_c00157{left:436.050000px;}
.xf7_c00157{left:437.250000px;}
.x9_c00157{left:439.200000px;}
.x38_c00157{left:443.400000px;}
.xbf_c00157{left:446.550000px;}
.x82_c00157{left:449.100000px;}
.x5e_c00157{left:453.150000px;}
.x26_c00157{left:455.700000px;}
.xd0_c00157{left:456.900000px;}
.xc4_c00157{left:458.100000px;}
.x9c_c00157{left:459.150000px;}
.x51_c00157{left:463.800000px;}
.x16_c00157{left:465.150000px;}
.x3_c00157{left:470.850000px;}
.xb0_c00157{left:473.100000px;}
.xdc_c00157{left:474.600000px;}
.x39_c00157{left:476.850000px;}
.x65_c00157{left:478.050000px;}
.x103_c00157{left:479.100000px;}
.xe6_c00157{left:482.550000px;}
.xc5_c00157{left:483.600000px;}
.x8b_c00157{left:485.400000px;}
.xa_c00157{left:486.750000px;}
.xaa_c00157{left:490.200000px;}
.x9d_c00157{left:495.450000px;}
.xf8_c00157{left:497.400000px;}
.x52_c00157{left:499.050000px;}
.xee_c00157{left:500.400000px;}
.xd5_c00157{left:502.950000px;}
.xb_c00157{left:504.000000px;}
.x3a_c00157{left:506.700000px;}
.x17_c00157{left:509.400000px;}
.x71_c00157{left:513.150000px;}
.x66_c00157{left:514.350000px;}
.xe7_c00157{left:516.000000px;}
.x53_c00157{left:518.850000px;}
.x83_c00157{left:520.050000px;}
.x104_c00157{left:522.300000px;}
.x93_c00157{left:523.350000px;}
.x27_c00157{left:525.150000px;}
.xa4_c00157{left:528.000000px;}
.x7a_c00157{left:530.100000px;}
.x46_c00157{left:534.450000px;}
.x72_c00157{left:535.500000px;}
.x18_c00157{left:538.200000px;}
.x9e_c00157{left:539.700000px;}
.x28_c00157{left:542.850000px;}
.x5f_c00157{left:544.200000px;}
.xc_c00157{left:547.950000px;}
.xca_c00157{left:549.000000px;}
.xdd_c00157{left:550.950000px;}
.x47_c00157{left:552.150000px;}
.xb1_c00157{left:553.350000px;}
.x7b_c00157{left:555.300000px;}
.x3b_c00157{left:557.850000px;}
.x67_c00157{left:561.900000px;}
.x60_c00157{left:563.250000px;}
.x29_c00157{left:565.950000px;}
.xde_c00157{left:568.650000px;}
.xf9_c00157{left:570.450000px;}
.x9f_c00157{left:572.400000px;}
.xef_c00157{left:574.200000px;}
.x19_c00157{left:576.000000px;}
.x84_c00157{left:578.100000px;}
.x54_c00157{left:579.300000px;}
.xb2_c00157{left:581.850000px;}
.x68_c00157{left:584.550000px;}
.xe8_c00157{left:587.850000px;}
.xfa_c00157{left:591.000000px;}
.xdf_c00157{left:594.150000px;}
.x8c_c00157{left:595.200000px;}
.x1a_c00157{left:596.850000px;}
.x48_c00157{left:604.350000px;}
.x85_c00157{left:606.900000px;}
.x8d_c00157{left:615.300000px;}
.x7c_c00157{left:618.600000px;}
.xff_c00157{left:620.100000px;}
.x49_c00157{left:622.650000px;}
.xe9_c00157{left:623.850000px;}
.x1b_c00157{left:625.650000px;}
.x2a_c00157{left:627.450000px;}
.x61_c00157{left:631.650000px;}
.xe0_c00157{left:632.700000px;}
.xd6_c00157{left:633.750000px;}
.xd_c00157{left:636.900000px;}
.x73_c00157{left:638.100000px;}
.x3c_c00157{left:640.650000px;}
.x2b_c00157{left:645.450000px;}
.x69_c00157{left:646.500000px;}
.xab_c00157{left:650.700000px;}
.xe_c00157{left:656.400000px;}
.xa0_c00157{left:660.150000px;}
.x74_c00157{left:661.200000px;}
.x105_c00157{left:662.850000px;}
.x55_c00157{left:667.500000px;}
.xe1_c00157{left:670.200000px;}
.xa5_c00157{left:671.700000px;}
.xf0_c00157{left:672.750000px;}
.x86_c00157{left:675.000000px;}
.x3d_c00157{left:677.400000px;}
.xc6_c00157{left:682.650000px;}
.x8e_c00157{left:686.250000px;}
.x1c_c00157{left:688.650000px;}
.xa1_c00157{left:690.000000px;}
.x62_c00157{left:691.350000px;}
.x4a_c00157{left:692.550000px;}
.xfb_c00157{left:694.650000px;}
.x6a_c00157{left:696.150000px;}
.xb3_c00157{left:697.500000px;}
.x94_c00157{left:706.350000px;}
.x8f_c00157{left:708.600000px;}
.x56_c00157{left:710.400000px;}
.xe2_c00157{left:713.100000px;}
.x2c_c00157{left:716.700000px;}
.xcb_c00157{left:718.950000px;}
.xf5_c00157{left:720.600000px;}
.x3e_c00157{left:723.450000px;}
.xa6_c00157{left:726.150000px;}
.x95_c00157{left:729.000000px;}
.x57_c00157{left:730.200000px;}
.xac_c00157{left:732.750000px;}
.x2d_c00157{left:733.950000px;}
.xb7_c00157{left:735.900000px;}
.x75_c00157{left:737.550000px;}
.xea_c00157{left:740.850000px;}
.xfc_c00157{left:746.850000px;}
.x2e_c00157{left:749.400000px;}
.xb4_c00157{left:752.250000px;}
.x4b_c00157{left:755.550000px;}
.x96_c00157{left:763.200000px;}
.x1d_c00157{left:764.550000px;}
.xd7_c00157{left:766.200000px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls0_c00157{letter-spacing:0.000000pt;}
.ws8_c00157{word-spacing:-4.222222pt;}
.ws5_c00157{word-spacing:-3.028298pt;}
.ws4_c00157{word-spacing:-2.666667pt;}
.ws0_c00157{word-spacing:-2.226509pt;}
.ws9_c00157{word-spacing:0.000000pt;}
.ws6_c00157{word-spacing:0.524550pt;}
.ws1_c00157{word-spacing:5.444444pt;}
.ws2_c00157{word-spacing:8.605201pt;}
.ws3_c00157{word-spacing:14.777778pt;}
.ws7_c00157{word-spacing:16.668641pt;}
.fs1_c00157{font-size:48.000000pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y23_c00157{bottom:132.800000pt;}
.y22_c00157{bottom:164.533333pt;}
.y21_c00157{bottom:182.133333pt;}
.y20_c00157{bottom:200.000000pt;}
.y1f_c00157{bottom:217.066667pt;}
.y1e_c00157{bottom:236.000000pt;}
.y1d_c00157{bottom:253.600000pt;}
.y1c_c00157{bottom:271.466667pt;}
.y1b_c00157{bottom:289.066667pt;}
.y1a_c00157{bottom:306.933333pt;}
.y19_c00157{bottom:324.533333pt;}
.y18_c00157{bottom:342.133333pt;}
.y17_c00157{bottom:359.333333pt;}
.y16_c00157{bottom:377.600000pt;}
.y15_c00157{bottom:395.466667pt;}
.y14_c00157{bottom:413.333333pt;}
.y13_c00157{bottom:431.200000pt;}
.y12_c00157{bottom:448.800000pt;}
.y11_c00157{bottom:466.400000pt;}
.y10_c00157{bottom:484.266667pt;}
.yf_c00157{bottom:501.866667pt;}
.ye_c00157{bottom:519.466667pt;}
.yd_c00157{bottom:537.333333pt;}
.yc_c00157{bottom:555.200000pt;}
.yb_c00157{bottom:572.800000pt;}
.ya_c00157{bottom:589.466667pt;}
.y9_c00157{bottom:608.000000pt;}
.y8_c00157{bottom:625.333333pt;}
.y7_c00157{bottom:642.933333pt;}
.y6_c00157{bottom:660.533333pt;}
.y5_c00157{bottom:678.400000pt;}
.y4_c00157{bottom:696.266667pt;}
.y3_c00157{bottom:726.133333pt;}
.y2_c00157{bottom:755.200000pt;}
.y1_c00157{bottom:929.333333pt;}
.h3_c00157{height:48.000000pt;}
.h2_c00157{height:64.000000pt;}
.h1_c00157{height:1038.000000pt;}
.h0_c00157{height:1038.079997pt;}
.w1_c00157{width:818.000000pt;}
.w0_c00157{width:818.239991pt;}
.x0_c00157{left:0.000000pt;}
.xf_c00157{left:96.000000pt;}
.xcc_c00157{left:96.933333pt;}
.x7d_c00157{left:112.800000pt;}
.x2f_c00157{left:114.133333pt;}
.xad_c00157{left:115.600000pt;}
.x1e_c00157{left:123.466667pt;}
.xbb_c00157{left:124.800000pt;}
.x76_c00157{left:127.866667pt;}
.xf6_c00157{left:128.800000pt;}
.x6b_c00157{left:131.466667pt;}
.x4c_c00157{left:134.933333pt;}
.x3f_c00157{left:137.200000pt;}
.x7e_c00157{left:138.133333pt;}
.x90_c00157{left:140.400000pt;}
.xae_c00157{left:142.800000pt;}
.xeb_c00157{left:148.400000pt;}
.x30_c00157{left:150.266667pt;}
.x40_c00157{left:152.533333pt;}
.x4d_c00157{left:153.866667pt;}
.xa7_c00157{left:155.200000pt;}
.x10_c00157{left:157.733333pt;}
.xd8_c00157{left:158.933333pt;}
.x4_c00157{left:161.333333pt;}
.x97_c00157{left:162.400000pt;}
.xb8_c00157{left:164.533333pt;}
.x7f_c00157{left:166.266667pt;}
.x58_c00157{left:167.733333pt;}
.x31_c00157{left:169.733333pt;}
.xa2_c00157{left:174.933333pt;}
.x1f_c00157{left:178.133333pt;}
.x41_c00157{left:180.000000pt;}
.xcd_c00157{left:181.733333pt;}
.x6c_c00157{left:182.666667pt;}
.xc0_c00157{left:186.000000pt;}
.x87_c00157{left:188.800000pt;}
.x80_c00157{left:191.200000pt;}
.x59_c00157{left:192.666667pt;}
.x20_c00157{left:195.733333pt;}
.xf1_c00157{left:197.733333pt;}
.xc1_c00157{left:201.733333pt;}
.xec_c00157{left:203.066667pt;}
.x11_c00157{left:204.400000pt;}
.x98_c00157{left:205.333333pt;}
.x32_c00157{left:206.266667pt;}
.x91_c00157{left:209.733333pt;}
.x77_c00157{left:211.066667pt;}
.xe3_c00157{left:215.333333pt;}
.xd9_c00157{left:216.800000pt;}
.xc2_c00157{left:217.733333pt;}
.x12_c00157{left:219.466667pt;}
.xf2_c00157{left:220.800000pt;}
.x6d_c00157{left:222.000000pt;}
.xb9_c00157{left:223.066667pt;}
.x99_c00157{left:224.533333pt;}
.x100_c00157{left:226.266667pt;}
.x5_c00157{left:227.200000pt;}
.xaf_c00157{left:228.533333pt;}
.xf3_c00157{left:229.466667pt;}
.xd1_c00157{left:231.733333pt;}
.x101_c00157{left:233.600000pt;}
.x33_c00157{left:234.800000pt;}
.x42_c00157{left:236.666667pt;}
.xa8_c00157{left:238.133333pt;}
.x21_c00157{left:240.266667pt;}
.xc7_c00157{left:242.000000pt;}
.x5a_c00157{left:244.533333pt;}
.xe4_c00157{left:247.600000pt;}
.x43_c00157{left:249.466667pt;}
.x6e_c00157{left:252.666667pt;}
.x34_c00157{left:254.000000pt;}
.xbc_c00157{left:256.800000pt;}
.xc3_c00157{left:259.333333pt;}
.xb5_c00157{left:260.666667pt;}
.x13_c00157{left:264.000000pt;}
.x22_c00157{left:265.600000pt;}
.x88_c00157{left:267.466667pt;}
.xed_c00157{left:268.400000pt;}
.x78_c00157{left:269.600000pt;}
.x92_c00157{left:270.800000pt;}
.x81_c00157{left:275.333333pt;}
.x6_c00157{left:278.133333pt;}
.x9a_c00157{left:281.466667pt;}
.x102_c00157{left:284.800000pt;}
.xda_c00157{left:287.200000pt;}
.x23_c00157{left:288.266667pt;}
.x35_c00157{left:290.533333pt;}
.x7_c00157{left:291.866667pt;}
.x5b_c00157{left:292.800000pt;}
.x89_c00157{left:294.933333pt;}
.xfd_c00157{left:296.800000pt;}
.x6f_c00157{left:297.733333pt;}
.x14_c00157{left:302.400000pt;}
.xd2_c00157{left:303.466667pt;}
.xbd_c00157{left:305.066667pt;}
.xc8_c00157{left:307.200000pt;}
.x9b_c00157{left:308.933333pt;}
.xba_c00157{left:310.000000pt;}
.x63_c00157{left:311.066667pt;}
.xb6_c00157{left:313.200000pt;}
.x44_c00157{left:315.066667pt;}
.x79_c00157{left:316.000000pt;}
.xce_c00157{left:318.533333pt;}
.x5c_c00157{left:320.000000pt;}
.xd3_c00157{left:322.400000pt;}
.x4e_c00157{left:324.000000pt;}
.xc9_c00157{left:326.400000pt;}
.x36_c00157{left:328.266667pt;}
.xfe_c00157{left:330.400000pt;}
.xdb_c00157{left:340.266667pt;}
.x15_c00157{left:341.466667pt;}
.x2_c00157{left:343.333333pt;}
.x8_c00157{left:346.266667pt;}
.x37_c00157{left:347.733333pt;}
.x8a_c00157{left:349.600000pt;}
.x24_c00157{left:353.866667pt;}
.x64_c00157{left:355.866667pt;}
.x4f_c00157{left:360.133333pt;}
.x45_c00157{left:362.400000pt;}
.xf4_c00157{left:366.000000pt;}
.xa3_c00157{left:366.933333pt;}
.x25_c00157{left:368.933333pt;}
.x70_c00157{left:372.533333pt;}
.xbe_c00157{left:373.866667pt;}
.xcf_c00157{left:374.800000pt;}
.xa9_c00157{left:376.533333pt;}
.x5d_c00157{left:378.533333pt;}
.xd4_c00157{left:381.200000pt;}
.x1_c00157{left:384.000000pt;}
.xe5_c00157{left:385.200000pt;}
.x50_c00157{left:387.600000pt;}
.xf7_c00157{left:388.666667pt;}
.x9_c00157{left:390.400000pt;}
.x38_c00157{left:394.133333pt;}
.xbf_c00157{left:396.933333pt;}
.x82_c00157{left:399.200000pt;}
.x5e_c00157{left:402.800000pt;}
.x26_c00157{left:405.066667pt;}
.xd0_c00157{left:406.133333pt;}
.xc4_c00157{left:407.200000pt;}
.x9c_c00157{left:408.133333pt;}
.x51_c00157{left:412.266667pt;}
.x16_c00157{left:413.466667pt;}
.x3_c00157{left:418.533333pt;}
.xb0_c00157{left:420.533333pt;}
.xdc_c00157{left:421.866667pt;}
.x39_c00157{left:423.866667pt;}
.x65_c00157{left:424.933333pt;}
.x103_c00157{left:425.866667pt;}
.xe6_c00157{left:428.933333pt;}
.xc5_c00157{left:429.866667pt;}
.x8b_c00157{left:431.466667pt;}
.xa_c00157{left:432.666667pt;}
.xaa_c00157{left:435.733333pt;}
.x9d_c00157{left:440.400000pt;}
.xf8_c00157{left:442.133333pt;}
.x52_c00157{left:443.600000pt;}
.xee_c00157{left:444.800000pt;}
.xd5_c00157{left:447.066667pt;}
.xb_c00157{left:448.000000pt;}
.x3a_c00157{left:450.400000pt;}
.x17_c00157{left:452.800000pt;}
.x71_c00157{left:456.133333pt;}
.x66_c00157{left:457.200000pt;}
.xe7_c00157{left:458.666667pt;}
.x53_c00157{left:461.200000pt;}
.x83_c00157{left:462.266667pt;}
.x104_c00157{left:464.266667pt;}
.x93_c00157{left:465.200000pt;}
.x27_c00157{left:466.800000pt;}
.xa4_c00157{left:469.333333pt;}
.x7a_c00157{left:471.200000pt;}
.x46_c00157{left:475.066667pt;}
.x72_c00157{left:476.000000pt;}
.x18_c00157{left:478.400000pt;}
.x9e_c00157{left:479.733333pt;}
.x28_c00157{left:482.533333pt;}
.x5f_c00157{left:483.733333pt;}
.xc_c00157{left:487.066667pt;}
.xca_c00157{left:488.000000pt;}
.xdd_c00157{left:489.733333pt;}
.x47_c00157{left:490.800000pt;}
.xb1_c00157{left:491.866667pt;}
.x7b_c00157{left:493.600000pt;}
.x3b_c00157{left:495.866667pt;}
.x67_c00157{left:499.466667pt;}
.x60_c00157{left:500.666667pt;}
.x29_c00157{left:503.066667pt;}
.xde_c00157{left:505.466667pt;}
.xf9_c00157{left:507.066667pt;}
.x9f_c00157{left:508.800000pt;}
.xef_c00157{left:510.400000pt;}
.x19_c00157{left:512.000000pt;}
.x84_c00157{left:513.866667pt;}
.x54_c00157{left:514.933333pt;}
.xb2_c00157{left:517.200000pt;}
.x68_c00157{left:519.600000pt;}
.xe8_c00157{left:522.533333pt;}
.xfa_c00157{left:525.333333pt;}
.xdf_c00157{left:528.133333pt;}
.x8c_c00157{left:529.066667pt;}
.x1a_c00157{left:530.533333pt;}
.x48_c00157{left:537.200000pt;}
.x85_c00157{left:539.466667pt;}
.x8d_c00157{left:546.933333pt;}
.x7c_c00157{left:549.866667pt;}
.xff_c00157{left:551.200000pt;}
.x49_c00157{left:553.466667pt;}
.xe9_c00157{left:554.533333pt;}
.x1b_c00157{left:556.133333pt;}
.x2a_c00157{left:557.733333pt;}
.x61_c00157{left:561.466667pt;}
.xe0_c00157{left:562.400000pt;}
.xd6_c00157{left:563.333333pt;}
.xd_c00157{left:566.133333pt;}
.x73_c00157{left:567.200000pt;}
.x3c_c00157{left:569.466667pt;}
.x2b_c00157{left:573.733333pt;}
.x69_c00157{left:574.666667pt;}
.xab_c00157{left:578.400000pt;}
.xe_c00157{left:583.466667pt;}
.xa0_c00157{left:586.800000pt;}
.x74_c00157{left:587.733333pt;}
.x105_c00157{left:589.200000pt;}
.x55_c00157{left:593.333333pt;}
.xe1_c00157{left:595.733333pt;}
.xa5_c00157{left:597.066667pt;}
.xf0_c00157{left:598.000000pt;}
.x86_c00157{left:600.000000pt;}
.x3d_c00157{left:602.133333pt;}
.xc6_c00157{left:606.800000pt;}
.x8e_c00157{left:610.000000pt;}
.x1c_c00157{left:612.133333pt;}
.xa1_c00157{left:613.333333pt;}
.x62_c00157{left:614.533333pt;}
.x4a_c00157{left:615.600000pt;}
.xfb_c00157{left:617.466667pt;}
.x6a_c00157{left:618.800000pt;}
.xb3_c00157{left:620.000000pt;}
.x94_c00157{left:627.866667pt;}
.x8f_c00157{left:629.866667pt;}
.x56_c00157{left:631.466667pt;}
.xe2_c00157{left:633.866667pt;}
.x2c_c00157{left:637.066667pt;}
.xcb_c00157{left:639.066667pt;}
.xf5_c00157{left:640.533333pt;}
.x3e_c00157{left:643.066667pt;}
.xa6_c00157{left:645.466667pt;}
.x95_c00157{left:648.000000pt;}
.x57_c00157{left:649.066667pt;}
.xac_c00157{left:651.333333pt;}
.x2d_c00157{left:652.400000pt;}
.xb7_c00157{left:654.133333pt;}
.x75_c00157{left:655.600000pt;}
.xea_c00157{left:658.533333pt;}
.xfc_c00157{left:663.866667pt;}
.x2e_c00157{left:666.133333pt;}
.xb4_c00157{left:668.666667pt;}
.x4b_c00157{left:671.600000pt;}
.x96_c00157{left:678.400000pt;}
.x1d_c00157{left:679.600000pt;}
.xd7_c00157{left:681.066667pt;}
}





/* 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_c00158 {
    display:none;
  }
  .loading-indicator_c00158.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00158 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_c00158 { 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_c00158" -> "#page-container .classname_c00158")
 */
.pf_c00158 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00158 { /* 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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00158 { /* 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_c00158 { /* 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_c00158 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00158 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00158 {overflow:visible;}
  }
}
.c_c00158 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00158 { /* 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_c00158:after { /* webkit #35443 */
  content: '';
}
.t_c00158:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00158 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 */
}
.__c00158 { /* 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_c00158 { /* info for Javascript */
  display:none;
}
.l_c00158 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00158 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00158 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00158: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_c00158 {
    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_c00158.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00158.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_c00158 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00158{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00158;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.000000;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;}
.mc7_c00158{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00158{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00158{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m71_c00158{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00158{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maa_c00158{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m39_c00158{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mae_c00158{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m32_c00158{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00158{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00158{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m13_c00158{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00158{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00158{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mab_c00158{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m23_c00158{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00158{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mba_c00158{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m68_c00158{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00158{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m65_c00158{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m69_c00158{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00158{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00158{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00158{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00158{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00158{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00158{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00158{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mac_c00158{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00158{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00158{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.maf_c00158{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00158{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m96_c00158{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mad_c00158{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00158{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00158{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00158{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00158{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m87_c00158{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00158{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00158{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00158{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00158{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00158{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00158{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00158{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00158{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00158{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00158{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00158{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00158{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00158{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m93_c00158{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m78_c00158{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00158{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00158{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00158{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00158{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m35_c00158{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00158{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m80_c00158{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00158{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m85_c00158{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m88_c00158{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m33_c00158{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m76_c00158{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00158{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m41_c00158{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00158{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m62_c00158{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m60_c00158{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m50_c00158{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00158{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m61_c00158{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00158{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m73_c00158{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m25_c00158{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00158{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00158{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00158{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00158{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m24_c00158{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m91_c00158{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00158{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m12_c00158{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2_c00158{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m66_c00158{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00158{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00158{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00158{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m90_c00158{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00158{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m79_c00158{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00158{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m26_c00158{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m55_c00158{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m49_c00158{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m51_c00158{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me_c00158{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00158{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{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);}
.m9e_c00158{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00158{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00158{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00158{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00158{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m53_c00158{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00158{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00158{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00158{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m74_c00158{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00158{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m98_c00158{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m82_c00158{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m29_c00158{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m83_c00158{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00158{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.md_c00158{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m36_c00158{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m64_c00158{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m63_c00158{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m95_c00158{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00158{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m99_c00158{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m28_c00158{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m86_c00158{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m17_c00158{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m31_c00158{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9_c00158{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m18_c00158{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m34_c00158{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5_c00158{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00158{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m38_c00158{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m44_c00158{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00158{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00158{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m72_c00158{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3_c00158{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m45_c00158{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c00158{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m92_c00158{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00158{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m75_c00158{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00158{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m59_c00158{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00158{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00158{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00158{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00158{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m67_c00158{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m89_c00158{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m94_c00158{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00158{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.m97_c00158{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m42_c00158{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00158{vertical-align:0.000000px;}
.ls0_c00158{letter-spacing:0.000000px;}
.sc__c00158{text-shadow:none;}
.sc0_c00158{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__c00158{-webkit-text-stroke:0px transparent;}
.sc0_c00158{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00158{word-spacing:-8.156415px;}
.ws8_c00158{word-spacing:-6.981243px;}
.ws6_c00158{word-spacing:-6.906854px;}
.ws2_c00158{word-spacing:-5.878578px;}
.wsa_c00158{word-spacing:-5.000000px;}
.ws0_c00158{word-spacing:-2.524116px;}
.wsb_c00158{word-spacing:-0.109027px;}
.wsc_c00158{word-spacing:0.000000px;}
.ws1_c00158{word-spacing:0.250000px;}
.ws7_c00158{word-spacing:2.890849px;}
.ws3_c00158{word-spacing:9.125000px;}
.ws5_c00158{word-spacing:13.417351px;}
.ws9_c00158{word-spacing:64.500000px;}
.fc0_c00158{color:transparent;}
.fs0_c00158{font-size:54.000000px;}
.y0_c00158{bottom:0.000000px;}
.y2e_c00158{bottom:154.800000px;}
.y2d_c00158{bottom:170.250000px;}
.y2c_c00158{bottom:185.700000px;}
.y2b_c00158{bottom:204.900000px;}
.y2a_c00158{bottom:217.050000px;}
.y29_c00158{bottom:232.950000px;}
.y28_c00158{bottom:248.400000px;}
.y27_c00158{bottom:263.850000px;}
.y26_c00158{bottom:279.750000px;}
.y25_c00158{bottom:312.900000px;}
.y24_c00158{bottom:332.700000px;}
.y23_c00158{bottom:352.800000px;}
.y22_c00158{bottom:372.600000px;}
.y21_c00158{bottom:392.400000px;}
.y20_c00158{bottom:412.500000px;}
.y1f_c00158{bottom:432.300000px;}
.y1e_c00158{bottom:452.100000px;}
.y1d_c00158{bottom:472.050000px;}
.y1c_c00158{bottom:492.150000px;}
.y1b_c00158{bottom:511.950000px;}
.y1a_c00158{bottom:531.750000px;}
.y19_c00158{bottom:552.000000px;}
.y18_c00158{bottom:571.800000px;}
.y17_c00158{bottom:591.600000px;}
.y16_c00158{bottom:611.700000px;}
.y15_c00158{bottom:631.500000px;}
.y14_c00158{bottom:651.300000px;}
.y13_c00158{bottom:671.400000px;}
.y12_c00158{bottom:691.200000px;}
.y11_c00158{bottom:711.300000px;}
.y10_c00158{bottom:731.250000px;}
.yf_c00158{bottom:751.350000px;}
.ye_c00158{bottom:771.150000px;}
.yd_c00158{bottom:791.100000px;}
.yc_c00158{bottom:811.200000px;}
.yb_c00158{bottom:831.000000px;}
.ya_c00158{bottom:851.100000px;}
.y9_c00158{bottom:870.900000px;}
.y8_c00158{bottom:891.000000px;}
.y7_c00158{bottom:910.500000px;}
.y6_c00158{bottom:930.600000px;}
.y5_c00158{bottom:950.100000px;}
.y4_c00158{bottom:970.200000px;}
.y3_c00158{bottom:990.000000px;}
.y2_c00158{bottom:1009.800000px;}
.y1_c00158{bottom:1047.900000px;}
.h2_c00158{height:54.000000px;}
.h1_c00158{height:1167.750000px;}
.h0_c00158{height:1167.839997px;}
.w1_c00158{width:920.250000px;}
.w0_c00158{width:920.519990px;}
.x0_c00158{left:0.000000px;}
.x3_c00158{left:140.700000px;}
.x1_c00158{left:142.200000px;}
.x3b_c00158{left:160.800000px;}
.xc3_c00158{left:163.050000px;}
.x109_c00158{left:166.650000px;}
.x120_c00158{left:168.150000px;}
.x30_c00158{left:172.050000px;}
.x69_c00158{left:178.200000px;}
.xee_c00158{left:179.700000px;}
.xb3_c00158{left:183.150000px;}
.x78_c00158{left:184.200000px;}
.x56_c00158{left:187.650000px;}
.x3c_c00158{left:189.300000px;}
.x81_c00158{left:192.450000px;}
.x48_c00158{left:194.550000px;}
.xdb_c00158{left:195.750000px;}
.x22_c00158{left:197.100000px;}
.x102_c00158{left:199.350000px;}
.x4_c00158{left:200.850000px;}
.x12e_c00158{left:202.350000px;}
.x13_c00158{left:204.600000px;}
.x9d_c00158{left:206.250000px;}
.x31_c00158{left:208.350000px;}
.x7b_c00158{left:210.600000px;}
.x82_c00158{left:211.950000px;}
.x110_c00158{left:213.300000px;}
.x57_c00158{left:214.350000px;}
.x23_c00158{left:216.900000px;}
.x5e_c00158{left:222.000000px;}
.x49_c00158{left:224.850000px;}
.x32_c00158{left:226.050000px;}
.x6a_c00158{left:227.550000px;}
.xa8_c00158{left:229.050000px;}
.x24_c00158{left:231.300000px;}
.xe2_c00158{left:232.500000px;}
.x5_c00158{left:234.750000px;}
.x79_c00158{left:237.450000px;}
.xd3_c00158{left:238.650000px;}
.x8b_c00158{left:241.350000px;}
.x3d_c00158{left:242.550000px;}
.xbb_c00158{left:243.900000px;}
.x116_c00158{left:245.850000px;}
.x103_c00158{left:248.250000px;}
.x5f_c00158{left:250.050000px;}
.x72_c00158{left:251.400000px;}
.x2f_c00158{left:252.600000px;}
.x14_c00158{left:255.300000px;}
.x6b_c00158{left:257.100000px;}
.x93_c00158{left:258.900000px;}
.x8c_c00158{left:261.450000px;}
.x7c_c00158{left:262.500000px;}
.x132_c00158{left:263.550000px;}
.xa9_c00158{left:264.750000px;}
.xe8_c00158{left:265.800000px;}
.xef_c00158{left:268.650000px;}
.x15_c00158{left:270.450000px;}
.x4a_c00158{left:271.950000px;}
.x25_c00158{left:273.000000px;}
.x83_c00158{left:274.950000px;}
.x10a_c00158{left:276.150000px;}
.xd8_c00158{left:278.550000px;}
.x33_c00158{left:281.550000px;}
.x133_c00158{left:282.600000px;}
.xc4_c00158{left:285.450000px;}
.xaa_c00158{left:287.850000px;}
.x84_c00158{left:290.100000px;}
.x6_c00158{left:291.600000px;}
.xdc_c00158{left:293.400000px;}
.x60_c00158{left:295.050000px;}
.xf0_c00158{left:297.450000px;}
.x16_c00158{left:298.950000px;}
.xb4_c00158{left:300.150000px;}
.x6c_c00158{left:302.100000px;}
.x9e_c00158{left:304.950000px;}
.xfc_c00158{left:306.000000px;}
.x11d_c00158{left:309.450000px;}
.x117_c00158{left:312.450000px;}
.x17_c00158{left:313.650000px;}
.xc5_c00158{left:315.000000px;}
.x7a_c00158{left:317.700000px;}
.x26_c00158{left:320.850000px;}
.x6d_c00158{left:322.200000px;}
.x104_c00158{left:323.850000px;}
.x8d_c00158{left:325.050000px;}
.x127_c00158{left:327.600000px;}
.x7_c00158{left:330.150000px;}
.xd9_c00158{left:334.650000px;}
.x7d_c00158{left:335.850000px;}
.x3e_c00158{left:337.650000px;}
.x94_c00158{left:341.250000px;}
.x134_c00158{left:342.300000px;}
.x61_c00158{left:343.350000px;}
.xbc_c00158{left:345.000000px;}
.x121_c00158{left:346.500000px;}
.xf1_c00158{left:348.900000px;}
.x118_c00158{left:351.000000px;}
.x4b_c00158{left:354.750000px;}
.xd4_c00158{left:357.150000px;}
.x8_c00158{left:358.200000px;}
.xdd_c00158{left:359.250000px;}
.x111_c00158{left:360.450000px;}
.x58_c00158{left:362.250000px;}
.x122_c00158{left:364.200000px;}
.x18_c00158{left:365.550000px;}
.x4c_c00158{left:366.600000px;}
.xca_c00158{left:368.400000px;}
.xb5_c00158{left:371.100000px;}
.x34_c00158{left:374.400000px;}
.x12f_c00158{left:378.450000px;}
.x27_c00158{left:379.950000px;}
.x112_c00158{left:381.300000px;}
.xf2_c00158{left:382.800000px;}
.xbd_c00158{left:384.600000px;}
.x73_c00158{left:386.100000px;}
.x85_c00158{left:387.600000px;}
.x9f_c00158{left:390.300000px;}
.xde_c00158{left:391.650000px;}
.xeb_c00158{left:392.700000px;}
.xfd_c00158{left:394.200000px;}
.xc6_c00158{left:395.400000px;}
.x119_c00158{left:397.500000px;}
.x3f_c00158{left:398.550000px;}
.xe3_c00158{left:399.600000px;}
.x135_c00158{left:400.650000px;}
.xbe_c00158{left:401.850000px;}
.x62_c00158{left:403.200000px;}
.x8e_c00158{left:404.850000px;}
.x4d_c00158{left:406.500000px;}
.x59_c00158{left:408.000000px;}
.x6e_c00158{left:409.950000px;}
.x12d_c00158{left:411.750000px;}
.xdf_c00158{left:418.650000px;}
.x9_c00158{left:420.900000px;}
.x74_c00158{left:422.850000px;}
.xa0_c00158{left:426.000000px;}
.x40_c00158{left:427.050000px;}
.x128_c00158{left:432.000000px;}
.x19_c00158{left:434.250000px;}
.x2_c00158{left:438.900000px;}
.x4e_c00158{left:440.700000px;}
.x11a_c00158{left:444.000000px;}
.x7e_c00158{left:446.100000px;}
.xab_c00158{left:448.200000px;}
.xc7_c00158{left:449.700000px;}
.x28_c00158{left:451.350000px;}
.x86_c00158{left:452.400000px;}
.xa1_c00158{left:454.050000px;}
.xd5_c00158{left:455.100000px;}
.xcb_c00158{left:456.300000px;}
.x63_c00158{left:457.950000px;}
.x12b_c00158{left:459.600000px;}
.x1a_c00158{left:461.550000px;}
.x95_c00158{left:463.350000px;}
.x105_c00158{left:465.450000px;}
.xac_c00158{left:469.050000px;}
.x4f_c00158{left:472.800000px;}
.xcc_c00158{left:475.800000px;}
.x35_c00158{left:477.750000px;}
.xa_c00158{left:480.600000px;}
.x11e_c00158{left:483.300000px;}
.x8f_c00158{left:484.650000px;}
.x106_c00158{left:486.000000px;}
.xe4_c00158{left:488.550000px;}
.x41_c00158{left:490.050000px;}
.x50_c00158{left:493.350000px;}
.xbf_c00158{left:495.450000px;}
.xf3_c00158{left:496.500000px;}
.xf7_c00158{left:499.950000px;}
.x11b_c00158{left:501.600000px;}
.x96_c00158{left:504.000000px;}
.xd6_c00158{left:509.400000px;}
.x1b_c00158{left:510.900000px;}
.xb_c00158{left:515.550000px;}
.x6f_c00158{left:517.950000px;}
.xb6_c00158{left:520.500000px;}
.x10b_c00158{left:524.100000px;}
.xa2_c00158{left:525.300000px;}
.xc0_c00158{left:528.150000px;}
.xf4_c00158{left:529.200000px;}
.x42_c00158{left:532.950000px;}
.xc_c00158{left:535.050000px;}
.x97_c00158{left:536.100000px;}
.x5a_c00158{left:538.050000px;}
.x36_c00158{left:539.400000px;}
.x1c_c00158{left:540.750000px;}
.xf8_c00158{left:542.100000px;}
.x11f_c00158{left:544.500000px;}
.x29_c00158{left:546.450000px;}
.x113_c00158{left:550.050000px;}
.xda_c00158{left:551.250000px;}
.x64_c00158{left:552.300000px;}
.xe5_c00158{left:553.350000px;}
.xf5_c00158{left:554.400000px;}
.xad_c00158{left:557.550000px;}
.x1d_c00158{left:559.500000px;}
.x87_c00158{left:560.700000px;}
.xe9_c00158{left:563.100000px;}
.x98_c00158{left:564.150000px;}
.xd_c00158{left:567.150000px;}
.x51_c00158{left:568.200000px;}
.xb7_c00158{left:569.400000px;}
.xc1_c00158{left:570.750000px;}
.x2a_c00158{left:576.000000px;}
.x37_c00158{left:578.700000px;}
.x43_c00158{left:580.800000px;}
.x7f_c00158{left:583.200000px;}
.x1e_c00158{left:586.800000px;}
.xa3_c00158{left:588.000000px;}
.xf9_c00158{left:589.200000px;}
.x65_c00158{left:590.400000px;}
.xe6_c00158{left:592.650000px;}
.x2b_c00158{left:594.000000px;}
.xe_c00158{left:596.250000px;}
.xb8_c00158{left:598.200000px;}
.xcd_c00158{left:599.700000px;}
.xc2_c00158{left:602.100000px;}
.x1f_c00158{left:604.800000px;}
.x138_c00158{left:606.150000px;}
.xf6_c00158{left:609.450000px;}
.x99_c00158{left:610.650000px;}
.x12c_c00158{left:611.700000px;}
.x75_c00158{left:612.900000px;}
.xae_c00158{left:614.850000px;}
.x5b_c00158{left:616.500000px;}
.x130_c00158{left:618.750000px;}
.xb9_c00158{left:619.800000px;}
.xc8_c00158{left:622.650000px;}
.x88_c00158{left:624.450000px;}
.x11c_c00158{left:625.800000px;}
.x2c_c00158{left:627.900000px;}
.x107_c00158{left:630.300000px;}
.x10c_c00158{left:633.150000px;}
.x9a_c00158{left:634.800000px;}
.x136_c00158{left:636.000000px;}
.xaf_c00158{left:637.200000px;}
.xec_c00158{left:639.750000px;}
.x44_c00158{left:643.050000px;}
.xc9_c00158{left:644.550000px;}
.x76_c00158{left:645.600000px;}
.x90_c00158{left:647.700000px;}
.xfe_c00158{left:651.150000px;}
.x52_c00158{left:652.800000px;}
.x114_c00158{left:654.450000px;}
.x5c_c00158{left:655.800000px;}
.xce_c00158{left:657.300000px;}
.x131_c00158{left:660.150000px;}
.xf_c00158{left:662.100000px;}
.xea_c00158{left:663.300000px;}
.x137_c00158{left:666.600000px;}
.xa4_c00158{left:668.400000px;}
.x123_c00158{left:669.450000px;}
.x53_c00158{left:671.100000px;}
.x45_c00158{left:672.600000px;}
.x10d_c00158{left:674.550000px;}
.xb0_c00158{left:676.050000px;}
.x20_c00158{left:677.100000px;}
.xfa_c00158{left:678.150000px;}
.x66_c00158{left:680.700000px;}
.x129_c00158{left:681.750000px;}
.xe0_c00158{left:683.100000px;}
.x80_c00158{left:684.300000px;}
.xd7_c00158{left:686.700000px;}
.x9b_c00158{left:689.850000px;}
.xe7_c00158{left:691.050000px;}
.x5d_c00158{left:692.850000px;}
.x38_c00158{left:693.900000px;}
.x115_c00158{left:698.700000px;}
.x2d_c00158{left:705.600000px;}
.x70_c00158{left:709.050000px;}
.x89_c00158{left:710.100000px;}
.x91_c00158{left:712.200000px;}
.xcf_c00158{left:713.400000px;}
.x77_c00158{left:714.450000px;}
.xa5_c00158{left:717.450000px;}
.x10_c00158{left:719.700000px;}
.x10e_c00158{left:721.650000px;}
.x124_c00158{left:724.500000px;}
.xb1_c00158{left:726.150000px;}
.x92_c00158{left:727.350000px;}
.x67_c00158{left:729.000000px;}
.x8a_c00158{left:730.200000px;}
.xba_c00158{left:732.450000px;}
.x125_c00158{left:733.800000px;}
.xed_c00158{left:735.600000px;}
.xd0_c00158{left:738.300000px;}
.xa6_c00158{left:740.550000px;}
.x54_c00158{left:742.050000px;}
.x9c_c00158{left:744.150000px;}
.xb2_c00158{left:746.700000px;}
.xff_c00158{left:748.650000px;}
.x46_c00158{left:750.000000px;}
.x39_c00158{left:752.700000px;}
.xd1_c00158{left:753.750000px;}
.x21_c00158{left:756.300000px;}
.xfb_c00158{left:758.550000px;}
.x55_c00158{left:759.750000px;}
.x108_c00158{left:761.400000px;}
.x11_c00158{left:764.400000px;}
.x2e_c00158{left:767.100000px;}
.x100_c00158{left:769.200000px;}
.x3a_c00158{left:771.000000px;}
.x71_c00158{left:772.350000px;}
.x68_c00158{left:774.300000px;}
.x10f_c00158{left:775.950000px;}
.x47_c00158{left:779.100000px;}
.xa7_c00158{left:781.650000px;}
.xe1_c00158{left:784.050000px;}
.x101_c00158{left:785.400000px;}
.x12_c00158{left:787.500000px;}
.x126_c00158{left:789.900000px;}
.xd2_c00158{left:795.150000px;}
.x12a_c00158{left:801.600000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws4_c00158{word-spacing:-7.250146pt;}
.ws8_c00158{word-spacing:-6.205549pt;}
.ws6_c00158{word-spacing:-6.139426pt;}
.ws2_c00158{word-spacing:-5.225403pt;}
.wsa_c00158{word-spacing:-4.444444pt;}
.ws0_c00158{word-spacing:-2.243658pt;}
.wsb_c00158{word-spacing:-0.096913pt;}
.wsc_c00158{word-spacing:0.000000pt;}
.ws1_c00158{word-spacing:0.222222pt;}
.ws7_c00158{word-spacing:2.569644pt;}
.ws3_c00158{word-spacing:8.111111pt;}
.ws5_c00158{word-spacing:11.926534pt;}
.ws9_c00158{word-spacing:57.333333pt;}
.fs0_c00158{font-size:48.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y2e_c00158{bottom:137.600000pt;}
.y2d_c00158{bottom:151.333333pt;}
.y2c_c00158{bottom:165.066667pt;}
.y2b_c00158{bottom:182.133333pt;}
.y2a_c00158{bottom:192.933333pt;}
.y29_c00158{bottom:207.066667pt;}
.y28_c00158{bottom:220.800000pt;}
.y27_c00158{bottom:234.533333pt;}
.y26_c00158{bottom:248.666667pt;}
.y25_c00158{bottom:278.133333pt;}
.y24_c00158{bottom:295.733333pt;}
.y23_c00158{bottom:313.600000pt;}
.y22_c00158{bottom:331.200000pt;}
.y21_c00158{bottom:348.800000pt;}
.y20_c00158{bottom:366.666667pt;}
.y1f_c00158{bottom:384.266667pt;}
.y1e_c00158{bottom:401.866667pt;}
.y1d_c00158{bottom:419.600000pt;}
.y1c_c00158{bottom:437.466667pt;}
.y1b_c00158{bottom:455.066667pt;}
.y1a_c00158{bottom:472.666667pt;}
.y19_c00158{bottom:490.666667pt;}
.y18_c00158{bottom:508.266667pt;}
.y17_c00158{bottom:525.866667pt;}
.y16_c00158{bottom:543.733333pt;}
.y15_c00158{bottom:561.333333pt;}
.y14_c00158{bottom:578.933333pt;}
.y13_c00158{bottom:596.800000pt;}
.y12_c00158{bottom:614.400000pt;}
.y11_c00158{bottom:632.266667pt;}
.y10_c00158{bottom:650.000000pt;}
.yf_c00158{bottom:667.866667pt;}
.ye_c00158{bottom:685.466667pt;}
.yd_c00158{bottom:703.200000pt;}
.yc_c00158{bottom:721.066667pt;}
.yb_c00158{bottom:738.666667pt;}
.ya_c00158{bottom:756.533333pt;}
.y9_c00158{bottom:774.133333pt;}
.y8_c00158{bottom:792.000000pt;}
.y7_c00158{bottom:809.333333pt;}
.y6_c00158{bottom:827.200000pt;}
.y5_c00158{bottom:844.533333pt;}
.y4_c00158{bottom:862.400000pt;}
.y3_c00158{bottom:880.000000pt;}
.y2_c00158{bottom:897.600000pt;}
.y1_c00158{bottom:931.466667pt;}
.h2_c00158{height:48.000000pt;}
.h1_c00158{height:1038.000000pt;}
.h0_c00158{height:1038.079997pt;}
.w1_c00158{width:818.000000pt;}
.w0_c00158{width:818.239991pt;}
.x0_c00158{left:0.000000pt;}
.x3_c00158{left:125.066667pt;}
.x1_c00158{left:126.400000pt;}
.x3b_c00158{left:142.933333pt;}
.xc3_c00158{left:144.933333pt;}
.x109_c00158{left:148.133333pt;}
.x120_c00158{left:149.466667pt;}
.x30_c00158{left:152.933333pt;}
.x69_c00158{left:158.400000pt;}
.xee_c00158{left:159.733333pt;}
.xb3_c00158{left:162.800000pt;}
.x78_c00158{left:163.733333pt;}
.x56_c00158{left:166.800000pt;}
.x3c_c00158{left:168.266667pt;}
.x81_c00158{left:171.066667pt;}
.x48_c00158{left:172.933333pt;}
.xdb_c00158{left:174.000000pt;}
.x22_c00158{left:175.200000pt;}
.x102_c00158{left:177.200000pt;}
.x4_c00158{left:178.533333pt;}
.x12e_c00158{left:179.866667pt;}
.x13_c00158{left:181.866667pt;}
.x9d_c00158{left:183.333333pt;}
.x31_c00158{left:185.200000pt;}
.x7b_c00158{left:187.200000pt;}
.x82_c00158{left:188.400000pt;}
.x110_c00158{left:189.600000pt;}
.x57_c00158{left:190.533333pt;}
.x23_c00158{left:192.800000pt;}
.x5e_c00158{left:197.333333pt;}
.x49_c00158{left:199.866667pt;}
.x32_c00158{left:200.933333pt;}
.x6a_c00158{left:202.266667pt;}
.xa8_c00158{left:203.600000pt;}
.x24_c00158{left:205.600000pt;}
.xe2_c00158{left:206.666667pt;}
.x5_c00158{left:208.666667pt;}
.x79_c00158{left:211.066667pt;}
.xd3_c00158{left:212.133333pt;}
.x8b_c00158{left:214.533333pt;}
.x3d_c00158{left:215.600000pt;}
.xbb_c00158{left:216.800000pt;}
.x116_c00158{left:218.533333pt;}
.x103_c00158{left:220.666667pt;}
.x5f_c00158{left:222.266667pt;}
.x72_c00158{left:223.466667pt;}
.x2f_c00158{left:224.533333pt;}
.x14_c00158{left:226.933333pt;}
.x6b_c00158{left:228.533333pt;}
.x93_c00158{left:230.133333pt;}
.x8c_c00158{left:232.400000pt;}
.x7c_c00158{left:233.333333pt;}
.x132_c00158{left:234.266667pt;}
.xa9_c00158{left:235.333333pt;}
.xe8_c00158{left:236.266667pt;}
.xef_c00158{left:238.800000pt;}
.x15_c00158{left:240.400000pt;}
.x4a_c00158{left:241.733333pt;}
.x25_c00158{left:242.666667pt;}
.x83_c00158{left:244.400000pt;}
.x10a_c00158{left:245.466667pt;}
.xd8_c00158{left:247.600000pt;}
.x33_c00158{left:250.266667pt;}
.x133_c00158{left:251.200000pt;}
.xc4_c00158{left:253.733333pt;}
.xaa_c00158{left:255.866667pt;}
.x84_c00158{left:257.866667pt;}
.x6_c00158{left:259.200000pt;}
.xdc_c00158{left:260.800000pt;}
.x60_c00158{left:262.266667pt;}
.xf0_c00158{left:264.400000pt;}
.x16_c00158{left:265.733333pt;}
.xb4_c00158{left:266.800000pt;}
.x6c_c00158{left:268.533333pt;}
.x9e_c00158{left:271.066667pt;}
.xfc_c00158{left:272.000000pt;}
.x11d_c00158{left:275.066667pt;}
.x117_c00158{left:277.733333pt;}
.x17_c00158{left:278.800000pt;}
.xc5_c00158{left:280.000000pt;}
.x7a_c00158{left:282.400000pt;}
.x26_c00158{left:285.200000pt;}
.x6d_c00158{left:286.400000pt;}
.x104_c00158{left:287.866667pt;}
.x8d_c00158{left:288.933333pt;}
.x127_c00158{left:291.200000pt;}
.x7_c00158{left:293.466667pt;}
.xd9_c00158{left:297.466667pt;}
.x7d_c00158{left:298.533333pt;}
.x3e_c00158{left:300.133333pt;}
.x94_c00158{left:303.333333pt;}
.x134_c00158{left:304.266667pt;}
.x61_c00158{left:305.200000pt;}
.xbc_c00158{left:306.666667pt;}
.x121_c00158{left:308.000000pt;}
.xf1_c00158{left:310.133333pt;}
.x118_c00158{left:312.000000pt;}
.x4b_c00158{left:315.333333pt;}
.xd4_c00158{left:317.466667pt;}
.x8_c00158{left:318.400000pt;}
.xdd_c00158{left:319.333333pt;}
.x111_c00158{left:320.400000pt;}
.x58_c00158{left:322.000000pt;}
.x122_c00158{left:323.733333pt;}
.x18_c00158{left:324.933333pt;}
.x4c_c00158{left:325.866667pt;}
.xca_c00158{left:327.466667pt;}
.xb5_c00158{left:329.866667pt;}
.x34_c00158{left:332.800000pt;}
.x12f_c00158{left:336.400000pt;}
.x27_c00158{left:337.733333pt;}
.x112_c00158{left:338.933333pt;}
.xf2_c00158{left:340.266667pt;}
.xbd_c00158{left:341.866667pt;}
.x73_c00158{left:343.200000pt;}
.x85_c00158{left:344.533333pt;}
.x9f_c00158{left:346.933333pt;}
.xde_c00158{left:348.133333pt;}
.xeb_c00158{left:349.066667pt;}
.xfd_c00158{left:350.400000pt;}
.xc6_c00158{left:351.466667pt;}
.x119_c00158{left:353.333333pt;}
.x3f_c00158{left:354.266667pt;}
.xe3_c00158{left:355.200000pt;}
.x135_c00158{left:356.133333pt;}
.xbe_c00158{left:357.200000pt;}
.x62_c00158{left:358.400000pt;}
.x8e_c00158{left:359.866667pt;}
.x4d_c00158{left:361.333333pt;}
.x59_c00158{left:362.666667pt;}
.x6e_c00158{left:364.400000pt;}
.x12d_c00158{left:366.000000pt;}
.xdf_c00158{left:372.133333pt;}
.x9_c00158{left:374.133333pt;}
.x74_c00158{left:375.866667pt;}
.xa0_c00158{left:378.666667pt;}
.x40_c00158{left:379.600000pt;}
.x128_c00158{left:384.000000pt;}
.x19_c00158{left:386.000000pt;}
.x2_c00158{left:390.133333pt;}
.x4e_c00158{left:391.733333pt;}
.x11a_c00158{left:394.666667pt;}
.x7e_c00158{left:396.533333pt;}
.xab_c00158{left:398.400000pt;}
.xc7_c00158{left:399.733333pt;}
.x28_c00158{left:401.200000pt;}
.x86_c00158{left:402.133333pt;}
.xa1_c00158{left:403.600000pt;}
.xd5_c00158{left:404.533333pt;}
.xcb_c00158{left:405.600000pt;}
.x63_c00158{left:407.066667pt;}
.x12b_c00158{left:408.533333pt;}
.x1a_c00158{left:410.266667pt;}
.x95_c00158{left:411.866667pt;}
.x105_c00158{left:413.733333pt;}
.xac_c00158{left:416.933333pt;}
.x4f_c00158{left:420.266667pt;}
.xcc_c00158{left:422.933333pt;}
.x35_c00158{left:424.666667pt;}
.xa_c00158{left:427.200000pt;}
.x11e_c00158{left:429.600000pt;}
.x8f_c00158{left:430.800000pt;}
.x106_c00158{left:432.000000pt;}
.xe4_c00158{left:434.266667pt;}
.x41_c00158{left:435.600000pt;}
.x50_c00158{left:438.533333pt;}
.xbf_c00158{left:440.400000pt;}
.xf3_c00158{left:441.333333pt;}
.xf7_c00158{left:444.400000pt;}
.x11b_c00158{left:445.866667pt;}
.x96_c00158{left:448.000000pt;}
.xd6_c00158{left:452.800000pt;}
.x1b_c00158{left:454.133333pt;}
.xb_c00158{left:458.266667pt;}
.x6f_c00158{left:460.400000pt;}
.xb6_c00158{left:462.666667pt;}
.x10b_c00158{left:465.866667pt;}
.xa2_c00158{left:466.933333pt;}
.xc0_c00158{left:469.466667pt;}
.xf4_c00158{left:470.400000pt;}
.x42_c00158{left:473.733333pt;}
.xc_c00158{left:475.600000pt;}
.x97_c00158{left:476.533333pt;}
.x5a_c00158{left:478.266667pt;}
.x36_c00158{left:479.466667pt;}
.x1c_c00158{left:480.666667pt;}
.xf8_c00158{left:481.866667pt;}
.x11f_c00158{left:484.000000pt;}
.x29_c00158{left:485.733333pt;}
.x113_c00158{left:488.933333pt;}
.xda_c00158{left:490.000000pt;}
.x64_c00158{left:490.933333pt;}
.xe5_c00158{left:491.866667pt;}
.xf5_c00158{left:492.800000pt;}
.xad_c00158{left:495.600000pt;}
.x1d_c00158{left:497.333333pt;}
.x87_c00158{left:498.400000pt;}
.xe9_c00158{left:500.533333pt;}
.x98_c00158{left:501.466667pt;}
.xd_c00158{left:504.133333pt;}
.x51_c00158{left:505.066667pt;}
.xb7_c00158{left:506.133333pt;}
.xc1_c00158{left:507.333333pt;}
.x2a_c00158{left:512.000000pt;}
.x37_c00158{left:514.400000pt;}
.x43_c00158{left:516.266667pt;}
.x7f_c00158{left:518.400000pt;}
.x1e_c00158{left:521.600000pt;}
.xa3_c00158{left:522.666667pt;}
.xf9_c00158{left:523.733333pt;}
.x65_c00158{left:524.800000pt;}
.xe6_c00158{left:526.800000pt;}
.x2b_c00158{left:528.000000pt;}
.xe_c00158{left:530.000000pt;}
.xb8_c00158{left:531.733333pt;}
.xcd_c00158{left:533.066667pt;}
.xc2_c00158{left:535.200000pt;}
.x1f_c00158{left:537.600000pt;}
.x138_c00158{left:538.800000pt;}
.xf6_c00158{left:541.733333pt;}
.x99_c00158{left:542.800000pt;}
.x12c_c00158{left:543.733333pt;}
.x75_c00158{left:544.800000pt;}
.xae_c00158{left:546.533333pt;}
.x5b_c00158{left:548.000000pt;}
.x130_c00158{left:550.000000pt;}
.xb9_c00158{left:550.933333pt;}
.xc8_c00158{left:553.466667pt;}
.x88_c00158{left:555.066667pt;}
.x11c_c00158{left:556.266667pt;}
.x2c_c00158{left:558.133333pt;}
.x107_c00158{left:560.266667pt;}
.x10c_c00158{left:562.800000pt;}
.x9a_c00158{left:564.266667pt;}
.x136_c00158{left:565.333333pt;}
.xaf_c00158{left:566.400000pt;}
.xec_c00158{left:568.666667pt;}
.x44_c00158{left:571.600000pt;}
.xc9_c00158{left:572.933333pt;}
.x76_c00158{left:573.866667pt;}
.x90_c00158{left:575.733333pt;}
.xfe_c00158{left:578.800000pt;}
.x52_c00158{left:580.266667pt;}
.x114_c00158{left:581.733333pt;}
.x5c_c00158{left:582.933333pt;}
.xce_c00158{left:584.266667pt;}
.x131_c00158{left:586.800000pt;}
.xf_c00158{left:588.533333pt;}
.xea_c00158{left:589.600000pt;}
.x137_c00158{left:592.533333pt;}
.xa4_c00158{left:594.133333pt;}
.x123_c00158{left:595.066667pt;}
.x53_c00158{left:596.533333pt;}
.x45_c00158{left:597.866667pt;}
.x10d_c00158{left:599.600000pt;}
.xb0_c00158{left:600.933333pt;}
.x20_c00158{left:601.866667pt;}
.xfa_c00158{left:602.800000pt;}
.x66_c00158{left:605.066667pt;}
.x129_c00158{left:606.000000pt;}
.xe0_c00158{left:607.200000pt;}
.x80_c00158{left:608.266667pt;}
.xd7_c00158{left:610.400000pt;}
.x9b_c00158{left:613.200000pt;}
.xe7_c00158{left:614.266667pt;}
.x5d_c00158{left:615.866667pt;}
.x38_c00158{left:616.800000pt;}
.x115_c00158{left:621.066667pt;}
.x2d_c00158{left:627.200000pt;}
.x70_c00158{left:630.266667pt;}
.x89_c00158{left:631.200000pt;}
.x91_c00158{left:633.066667pt;}
.xcf_c00158{left:634.133333pt;}
.x77_c00158{left:635.066667pt;}
.xa5_c00158{left:637.733333pt;}
.x10_c00158{left:639.733333pt;}
.x10e_c00158{left:641.466667pt;}
.x124_c00158{left:644.000000pt;}
.xb1_c00158{left:645.466667pt;}
.x92_c00158{left:646.533333pt;}
.x67_c00158{left:648.000000pt;}
.x8a_c00158{left:649.066667pt;}
.xba_c00158{left:651.066667pt;}
.x125_c00158{left:652.266667pt;}
.xed_c00158{left:653.866667pt;}
.xd0_c00158{left:656.266667pt;}
.xa6_c00158{left:658.266667pt;}
.x54_c00158{left:659.600000pt;}
.x9c_c00158{left:661.466667pt;}
.xb2_c00158{left:663.733333pt;}
.xff_c00158{left:665.466667pt;}
.x46_c00158{left:666.666667pt;}
.x39_c00158{left:669.066667pt;}
.xd1_c00158{left:670.000000pt;}
.x21_c00158{left:672.266667pt;}
.xfb_c00158{left:674.266667pt;}
.x55_c00158{left:675.333333pt;}
.x108_c00158{left:676.800000pt;}
.x11_c00158{left:679.466667pt;}
.x2e_c00158{left:681.866667pt;}
.x100_c00158{left:683.733333pt;}
.x3a_c00158{left:685.333333pt;}
.x71_c00158{left:686.533333pt;}
.x68_c00158{left:688.266667pt;}
.x10f_c00158{left:689.733333pt;}
.x47_c00158{left:692.533333pt;}
.xa7_c00158{left:694.800000pt;}
.xe1_c00158{left:696.933333pt;}
.x101_c00158{left:698.133333pt;}
.x12_c00158{left:700.000000pt;}
.x126_c00158{left:702.133333pt;}
.xd2_c00158{left:706.800000pt;}
.x12a_c00158{left:712.533333pt;}
}





/* 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_c00159 {
    display:none;
  }
  .loading-indicator_c00159.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00159 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_c00159 { 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_c00159" -> "#page-container .classname_c00159")
 */
.pf_c00159 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00159 { /* 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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00159 { /* 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_c00159 { /* 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_c00159 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00159 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00159 {overflow:visible;}
  }
}
.c_c00159 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00159 { /* 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_c00159:after { /* webkit #35443 */
  content: '';
}
.t_c00159:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00159 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 */
}
.__c00159 { /* 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_c00159 { /* info for Javascript */
  display:none;
}
.l_c00159 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00159 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00159 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00159: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_c00159 {
    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_c00159.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00159.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_c00159 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00159{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.000000;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;}
.m9_c00159{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m15_c00159{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00159{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00159{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m25_c00159{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00159{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00159{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m74_c00159{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00159{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00159{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m87_c00159{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00159{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00159{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mac_c00159{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m62_c00159{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00159{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maf_c00159{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00159{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00159{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00159{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00159{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00159{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00159{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m35_c00159{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00159{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m82_c00159{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m90_c00159{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mae_c00159{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00159{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mab_c00159{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00159{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mba_c00159{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.maa_c00159{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00159{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00159{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m21_c00159{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00159{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m81_c00159{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00159{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00159{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00159{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m79_c00159{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00159{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m53_c00159{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m49_c00159{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00159{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m58_c00159{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7_c00159{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00159{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m71_c00159{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00159{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m40_c00159{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m68_c00159{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m88_c00159{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m46_c00159{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00159{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m75_c00159{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m38_c00159{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00159{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m86_c00159{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00159{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m91_c00159{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00159{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00159{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m36_c00159{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00159{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00159{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m37_c00159{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m30_c00159{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00159{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m96_c00159{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00159{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00159{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00159{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00159{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00159{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00159{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00159{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m43_c00159{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2_c00159{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00159{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m57_c00159{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m72_c00159{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00159{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m64_c00159{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m63_c00159{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);}
.m94_c00159{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00159{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m33_c00159{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m67_c00159{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26_c00159{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00159{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m84_c00159{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m24_c00159{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00159{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m77_c00159{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00159{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m97_c00159{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00159{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m23_c00159{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00159{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00159{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00159{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00159{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00159{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00159{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m95_c00159{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m11_c00159{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00159{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m51_c00159{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m92_c00159{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00159{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m59_c00159{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00159{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m76_c00159{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00159{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m65_c00159{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m50_c00159{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00159{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m41_c00159{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m69_c00159{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00159{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00159{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00159{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m78_c00159{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00159{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m73_c00159{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00159{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m61_c00159{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00159{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{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__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00159{word-spacing:-12.125000px;}
.ws2_c00159{word-spacing:-7.906279px;}
.ws4_c00159{word-spacing:-6.918065px;}
.ws9_c00159{word-spacing:-4.625000px;}
.ws3_c00159{word-spacing:-4.500000px;}
.wse_c00159{word-spacing:0.000000px;}
.wsd_c00159{word-spacing:1.500000px;}
.wsc_c00159{word-spacing:2.223700px;}
.ws8_c00159{word-spacing:2.464286px;}
.wsb_c00159{word-spacing:2.750000px;}
.ws0_c00159{word-spacing:3.749235px;}
.ws7_c00159{word-spacing:6.026461px;}
.ws5_c00159{word-spacing:7.643881px;}
.wsa_c00159{word-spacing:11.571429px;}
.ws6_c00159{word-spacing:28.956710px;}
.fc0_c00159{color:transparent;}
.fs0_c00159{font-size:54.000000px;}
.y0_c00159{bottom:0.000000px;}
.y2e_c00159{bottom:154.500000px;}
.y2d_c00159{bottom:169.650000px;}
.y2c_c00159{bottom:185.100000px;}
.y2b_c00159{bottom:200.850000px;}
.y2a_c00159{bottom:216.300000px;}
.y29_c00159{bottom:231.900000px;}
.y28_c00159{bottom:247.650000px;}
.y27_c00159{bottom:262.800000px;}
.y26_c00159{bottom:278.250000px;}
.y25_c00159{bottom:294.150000px;}
.y24_c00159{bottom:329.850000px;}
.y23_c00159{bottom:349.650000px;}
.y22_c00159{bottom:369.450000px;}
.y21_c00159{bottom:389.250000px;}
.y20_c00159{bottom:409.050000px;}
.y1f_c00159{bottom:428.850000px;}
.y1e_c00159{bottom:448.950000px;}
.y1d_c00159{bottom:468.750000px;}
.y1c_c00159{bottom:488.850000px;}
.y1b_c00159{bottom:508.350000px;}
.y1a_c00159{bottom:528.750000px;}
.y19_c00159{bottom:548.550000px;}
.y18_c00159{bottom:568.650000px;}
.y17_c00159{bottom:588.450000px;}
.y16_c00159{bottom:608.250000px;}
.y15_c00159{bottom:628.350000px;}
.y14_c00159{bottom:648.150000px;}
.y13_c00159{bottom:667.950000px;}
.y12_c00159{bottom:687.750000px;}
.y11_c00159{bottom:707.850000px;}
.y10_c00159{bottom:727.650000px;}
.yf_c00159{bottom:747.150000px;}
.ye_c00159{bottom:766.650000px;}
.yd_c00159{bottom:786.750000px;}
.yc_c00159{bottom:806.850000px;}
.yb_c00159{bottom:826.650000px;}
.ya_c00159{bottom:846.450000px;}
.y9_c00159{bottom:866.250000px;}
.y8_c00159{bottom:886.350000px;}
.y7_c00159{bottom:906.450000px;}
.y6_c00159{bottom:926.250000px;}
.y5_c00159{bottom:946.200000px;}
.y4_c00159{bottom:966.300000px;}
.y3_c00159{bottom:986.100000px;}
.y2_c00159{bottom:1006.200000px;}
.y1_c00159{bottom:1044.000000px;}
.h2_c00159{height:54.000000px;}
.h1_c00159{height:1167.750000px;}
.h0_c00159{height:1167.839997px;}
.w1_c00159{width:920.250000px;}
.w0_c00159{width:920.519990px;}
.x0_c00159{left:0.000000px;}
.x3_c00159{left:117.300000px;}
.x110_c00159{left:118.350000px;}
.x143_c00159{left:119.400000px;}
.x142_c00159{left:133.950000px;}
.x16_c00159{left:135.150000px;}
.x11a_c00159{left:137.400000px;}
.x4_c00159{left:142.800000px;}
.x60_c00159{left:145.050000px;}
.x45_c00159{left:147.900000px;}
.xec_c00159{left:149.100000px;}
.xd7_c00159{left:150.150000px;}
.xbc_c00159{left:152.400000px;}
.x12f_c00159{left:153.450000px;}
.xe9_c00159{left:155.250000px;}
.x53_c00159{left:156.750000px;}
.x124_c00159{left:158.400000px;}
.x111_c00159{left:160.650000px;}
.xff_c00159{left:162.750000px;}
.x26_c00159{left:164.850000px;}
.xbd_c00159{left:166.800000px;}
.x37_c00159{left:168.000000px;}
.xb2_c00159{left:170.100000px;}
.x17_c00159{left:171.150000px;}
.x77_c00159{left:172.500000px;}
.x135_c00159{left:174.300000px;}
.x54_c00159{left:176.850000px;}
.x12b_c00159{left:178.500000px;}
.xc4_c00159{left:180.600000px;}
.xf8_c00159{left:181.800000px;}
.x61_c00159{left:183.600000px;}
.xf5_c00159{left:185.400000px;}
.x125_c00159{left:187.500000px;}
.x27_c00159{left:189.300000px;}
.x46_c00159{left:191.850000px;}
.xe4_c00159{left:192.900000px;}
.x144_c00159{left:195.450000px;}
.x106_c00159{left:196.950000px;}
.xb3_c00159{left:198.150000px;}
.xd0_c00159{left:199.500000px;}
.x6d_c00159{left:200.700000px;}
.x47_c00159{left:203.400000px;}
.x55_c00159{left:205.350000px;}
.x139_c00159{left:206.700000px;}
.x126_c00159{left:208.050000px;}
.xed_c00159{left:209.850000px;}
.x5_c00159{left:212.250000px;}
.xa9_c00159{left:213.600000px;}
.xd8_c00159{left:215.400000px;}
.x100_c00159{left:216.750000px;}
.xe5_c00159{left:219.900000px;}
.x11f_c00159{left:220.950000px;}
.x114_c00159{left:222.900000px;}
.x13d_c00159{left:224.250000px;}
.x28_c00159{left:225.600000px;}
.x38_c00159{left:227.400000px;}
.x6_c00159{left:229.200000px;}
.x88_c00159{left:232.200000px;}
.xc5_c00159{left:233.550000px;}
.xd9_c00159{left:235.500000px;}
.x101_c00159{left:236.550000px;}
.x11b_c00159{left:238.950000px;}
.xf9_c00159{left:240.150000px;}
.x56_c00159{left:242.400000px;}
.x95_c00159{left:243.750000px;}
.xd1_c00159{left:247.350000px;}
.x89_c00159{left:248.400000px;}
.x48_c00159{left:249.900000px;}
.xb4_c00159{left:251.100000px;}
.x39_c00159{left:252.600000px;}
.x7_c00159{left:255.150000px;}
.x29_c00159{left:259.500000px;}
.xda_c00159{left:261.000000px;}
.x96_c00159{left:263.850000px;}
.xee_c00159{left:266.700000px;}
.xc6_c00159{left:269.250000px;}
.x127_c00159{left:270.300000px;}
.x78_c00159{left:272.550000px;}
.x62_c00159{left:273.600000px;}
.x120_c00159{left:276.300000px;}
.x97_c00159{left:277.500000px;}
.xa1_c00159{left:281.100000px;}
.x10a_c00159{left:282.450000px;}
.x18_c00159{left:284.100000px;}
.x8a_c00159{left:285.450000px;}
.x6e_c00159{left:287.100000px;}
.x13a_c00159{left:288.150000px;}
.x8_c00159{left:290.100000px;}
.xd2_c00159{left:292.050000px;}
.x121_c00159{left:294.600000px;}
.xdc_c00159{left:296.850000px;}
.x79_c00159{left:298.050000px;}
.x102_c00159{left:300.150000px;}
.x49_c00159{left:301.350000px;}
.xaa_c00159{left:303.600000px;}
.x9_c00159{left:306.300000px;}
.x6f_c00159{left:308.400000px;}
.x19_c00159{left:310.350000px;}
.x2a_c00159{left:311.400000px;}
.x107_c00159{left:313.350000px;}
.x63_c00159{left:315.750000px;}
.x11c_c00159{left:319.950000px;}
.xbe_c00159{left:323.250000px;}
.x13e_c00159{left:324.300000px;}
.x149_c00159{left:325.500000px;}
.xa2_c00159{left:326.550000px;}
.x7f_c00159{left:327.750000px;}
.x3a_c00159{left:332.550000px;}
.xe6_c00159{left:333.600000px;}
.x2b_c00159{left:335.550000px;}
.x98_c00159{left:337.650000px;}
.x57_c00159{left:338.850000px;}
.xa_c00159{left:341.250000px;}
.x4a_c00159{left:343.800000px;}
.x145_c00159{left:344.850000px;}
.x1a_c00159{left:347.100000px;}
.x70_c00159{left:348.300000px;}
.x64_c00159{left:349.650000px;}
.xa3_c00159{left:353.250000px;}
.x8b_c00159{left:355.950000px;}
.x146_c00159{left:357.150000px;}
.x115_c00159{left:358.950000px;}
.x3b_c00159{left:361.050000px;}
.x7a_c00159{left:362.850000px;}
.xef_c00159{left:365.400000px;}
.xdd_c00159{left:367.050000px;}
.x136_c00159{left:368.100000px;}
.x58_c00159{left:369.750000px;}
.x99_c00159{left:372.900000px;}
.xb_c00159{left:375.450000px;}
.xb5_c00159{left:376.500000px;}
.x65_c00159{left:378.450000px;}
.x13f_c00159{left:379.800000px;}
.x80_c00159{left:382.050000px;}
.x4b_c00159{left:383.400000px;}
.x116_c00159{left:389.550000px;}
.xcc_c00159{left:391.800000px;}
.x2c_c00159{left:393.450000px;}
.xbf_c00159{left:396.750000px;}
.xdb_c00159{left:398.250000px;}
.xde_c00159{left:400.200000px;}
.xb6_c00159{left:401.700000px;}
.xc_c00159{left:403.950000px;}
.xf0_c00159{left:405.750000px;}
.xd_c00159{left:407.550000px;}
.x1b_c00159{left:409.350000px;}
.x122_c00159{left:410.400000px;}
.xcd_c00159{left:411.600000px;}
.x66_c00159{left:413.700000px;}
.xdf_c00159{left:414.900000px;}
.xc0_c00159{left:417.600000px;}
.x4c_c00159{left:418.650000px;}
.x81_c00159{left:420.150000px;}
.x3c_c00159{left:421.200000px;}
.xe_c00159{left:425.250000px;}
.x12c_c00159{left:427.950000px;}
.xb7_c00159{left:429.750000px;}
.x1_c00159{left:432.750000px;}
.xab_c00159{left:434.250000px;}
.x67_c00159{left:435.300000px;}
.x130_c00159{left:436.800000px;}
.x2d_c00159{left:439.500000px;}
.x1c_c00159{left:442.800000px;}
.x9a_c00159{left:443.850000px;}
.xf_c00159{left:447.150000px;}
.x82_c00159{left:448.650000px;}
.xe7_c00159{left:450.300000px;}
.xf6_c00159{left:452.250000px;}
.x71_c00159{left:453.450000px;}
.xc7_c00159{left:455.550000px;}
.x10c_c00159{left:457.200000px;}
.x59_c00159{left:460.200000px;}
.x2e_c00159{left:461.400000px;}
.x4d_c00159{left:463.950000px;}
.xfa_c00159{left:465.300000px;}
.x7b_c00159{left:468.450000px;}
.xf7_c00159{left:470.250000px;}
.x1d_c00159{left:471.300000px;}
.x10_c00159{left:472.350000px;}
.x10d_c00159{left:475.200000px;}
.xe8_c00159{left:477.600000px;}
.x3d_c00159{left:480.600000px;}
.xa4_c00159{left:481.800000px;}
.xf1_c00159{left:482.850000px;}
.x140_c00159{left:484.950000px;}
.xac_c00159{left:486.450000px;}
.xb8_c00159{left:488.100000px;}
.x2f_c00159{left:490.500000px;}
.x9b_c00159{left:492.450000px;}
.x147_c00159{left:493.500000px;}
.x83_c00159{left:495.450000px;}
.x68_c00159{left:499.350000px;}
.x10e_c00159{left:500.700000px;}
.x137_c00159{left:502.050000px;}
.x5a_c00159{left:505.650000px;}
.xa5_c00159{left:508.050000px;}
.x1e_c00159{left:510.150000px;}
.xb9_c00159{left:511.200000px;}
.x13b_c00159{left:512.250000px;}
.x4e_c00159{left:513.300000px;}
.xad_c00159{left:516.000000px;}
.x8c_c00159{left:517.650000px;}
.x72_c00159{left:519.750000px;}
.x103_c00159{left:520.950000px;}
.x117_c00159{left:522.750000px;}
.x30_c00159{left:523.950000px;}
.x3e_c00159{left:527.100000px;}
.x128_c00159{left:530.100000px;}
.xc1_c00159{left:531.600000px;}
.x4f_c00159{left:533.400000px;}
.x9c_c00159{left:534.600000px;}
.x84_c00159{left:537.600000px;}
.x3f_c00159{left:539.700000px;}
.x5b_c00159{left:541.650000px;}
.x1f_c00159{left:545.100000px;}
.xc8_c00159{left:546.300000px;}
.x8d_c00159{left:547.950000px;}
.x31_c00159{left:549.450000px;}
.x131_c00159{left:552.300000px;}
.xfb_c00159{left:555.000000px;}
.x20_c00159{left:557.400000px;}
.xc2_c00159{left:558.900000px;}
.x11d_c00159{left:560.550000px;}
.xae_c00159{left:562.500000px;}
.x8e_c00159{left:564.900000px;}
.x73_c00159{left:566.250000px;}
.x85_c00159{left:568.200000px;}
.xfc_c00159{left:569.700000px;}
.xce_c00159{left:571.800000px;}
.xd3_c00159{left:574.200000px;}
.x11_c00159{left:575.250000px;}
.x32_c00159{left:577.950000px;}
.x148_c00159{left:579.150000px;}
.xaf_c00159{left:580.200000px;}
.x74_c00159{left:582.150000px;}
.x40_c00159{left:583.200000px;}
.x8f_c00159{left:584.700000px;}
.x9d_c00159{left:585.750000px;}
.x129_c00159{left:586.950000px;}
.x21_c00159{left:588.750000px;}
.x7c_c00159{left:589.800000px;}
.xb0_c00159{left:591.750000px;}
.xa6_c00159{left:593.250000px;}
.x12_c00159{left:595.050000px;}
.x69_c00159{left:597.150000px;}
.xe0_c00159{left:601.050000px;}
.x33_c00159{left:602.100000px;}
.x86_c00159{left:603.450000px;}
.x5c_c00159{left:605.100000px;}
.xc3_c00159{left:607.200000px;}
.x90_c00159{left:610.200000px;}
.xba_c00159{left:613.800000px;}
.xd4_c00159{left:617.100000px;}
.x132_c00159{left:618.600000px;}
.x13_c00159{left:620.250000px;}
.xa7_c00159{left:622.800000px;}
.x10f_c00159{left:624.450000px;}
.xbb_c00159{left:626.100000px;}
.x22_c00159{left:628.050000px;}
.x41_c00159{left:629.700000px;}
.x6a_c00159{left:632.100000px;}
.x9e_c00159{left:633.600000px;}
.x7d_c00159{left:636.300000px;}
.xc9_c00159{left:637.650000px;}
.xf2_c00159{left:640.050000px;}
.x91_c00159{left:641.100000px;}
.x13c_c00159{left:642.150000px;}
.x75_c00159{left:644.400000px;}
.xd5_c00159{left:645.600000px;}
.x118_c00159{left:647.250000px;}
.x9f_c00159{left:650.100000px;}
.xa8_c00159{left:651.300000px;}
.xe1_c00159{left:654.000000px;}
.x123_c00159{left:657.600000px;}
.x42_c00159{left:658.800000px;}
.x5d_c00159{left:659.850000px;}
.x14_c00159{left:661.950000px;}
.x133_c00159{left:663.600000px;}
.x23_c00159{left:664.800000px;}
.x6b_c00159{left:669.600000px;}
.xfd_c00159{left:672.300000px;}
.x92_c00159{left:675.000000px;}
.x12d_c00159{left:678.150000px;}
.x34_c00159{left:679.500000px;}
.x104_c00159{left:681.450000px;}
.x5e_c00159{left:684.750000px;}
.x76_c00159{left:686.550000px;}
.xa0_c00159{left:687.900000px;}
.x15_c00159{left:689.250000px;}
.x50_c00159{left:691.350000px;}
.xd6_c00159{left:692.700000px;}
.x108_c00159{left:695.250000px;}
.x112_c00159{left:696.750000px;}
.xf3_c00159{left:701.550000px;}
.x93_c00159{left:703.050000px;}
.xea_c00159{left:704.250000px;}
.xe2_c00159{left:705.450000px;}
.xb1_c00159{left:706.500000px;}
.x43_c00159{left:710.250000px;}
.x141_c00159{left:711.300000px;}
.x119_c00159{left:712.800000px;}
.xfe_c00159{left:716.250000px;}
.x138_c00159{left:717.300000px;}
.x105_c00159{left:718.950000px;}
.x7e_c00159{left:720.150000px;}
.xeb_c00159{left:721.500000px;}
.x24_c00159{left:723.900000px;}
.x10b_c00159{left:726.300000px;}
.x5f_c00159{left:728.250000px;}
.xcf_c00159{left:731.250000px;}
.xca_c00159{left:732.300000px;}
.x35_c00159{left:735.300000px;}
.x12e_c00159{left:736.350000px;}
.x44_c00159{left:737.550000px;}
.x6c_c00159{left:741.150000px;}
.x51_c00159{left:743.250000px;}
.x87_c00159{left:744.450000px;}
.x134_c00159{left:746.400000px;}
.xe3_c00159{left:753.300000px;}
.x94_c00159{left:755.250000px;}
.xf4_c00159{left:758.100000px;}
.x12a_c00159{left:759.300000px;}
.x36_c00159{left:762.000000px;}
.x52_c00159{left:763.350000px;}
.x2_c00159{left:765.000000px;}
.x113_c00159{left:768.000000px;}
.x25_c00159{left:770.400000px;}
.x109_c00159{left:771.600000px;}
.xcb_c00159{left:776.250000px;}
.x11e_c00159{left:780.150000px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ws1_c00159{word-spacing:-10.777778pt;}
.ws2_c00159{word-spacing:-7.027804pt;}
.ws4_c00159{word-spacing:-6.149391pt;}
.ws9_c00159{word-spacing:-4.111111pt;}
.ws3_c00159{word-spacing:-4.000000pt;}
.wse_c00159{word-spacing:0.000000pt;}
.wsd_c00159{word-spacing:1.333333pt;}
.wsc_c00159{word-spacing:1.976622pt;}
.ws8_c00159{word-spacing:2.190476pt;}
.wsb_c00159{word-spacing:2.444444pt;}
.ws0_c00159{word-spacing:3.332654pt;}
.ws7_c00159{word-spacing:5.356854pt;}
.ws5_c00159{word-spacing:6.794561pt;}
.wsa_c00159{word-spacing:10.285714pt;}
.ws6_c00159{word-spacing:25.739298pt;}
.fs0_c00159{font-size:48.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y2e_c00159{bottom:137.333333pt;}
.y2d_c00159{bottom:150.800000pt;}
.y2c_c00159{bottom:164.533333pt;}
.y2b_c00159{bottom:178.533333pt;}
.y2a_c00159{bottom:192.266667pt;}
.y29_c00159{bottom:206.133333pt;}
.y28_c00159{bottom:220.133333pt;}
.y27_c00159{bottom:233.600000pt;}
.y26_c00159{bottom:247.333333pt;}
.y25_c00159{bottom:261.466667pt;}
.y24_c00159{bottom:293.200000pt;}
.y23_c00159{bottom:310.800000pt;}
.y22_c00159{bottom:328.400000pt;}
.y21_c00159{bottom:346.000000pt;}
.y20_c00159{bottom:363.600000pt;}
.y1f_c00159{bottom:381.200000pt;}
.y1e_c00159{bottom:399.066667pt;}
.y1d_c00159{bottom:416.666667pt;}
.y1c_c00159{bottom:434.533333pt;}
.y1b_c00159{bottom:451.866667pt;}
.y1a_c00159{bottom:470.000000pt;}
.y19_c00159{bottom:487.600000pt;}
.y18_c00159{bottom:505.466667pt;}
.y17_c00159{bottom:523.066667pt;}
.y16_c00159{bottom:540.666667pt;}
.y15_c00159{bottom:558.533333pt;}
.y14_c00159{bottom:576.133333pt;}
.y13_c00159{bottom:593.733333pt;}
.y12_c00159{bottom:611.333333pt;}
.y11_c00159{bottom:629.200000pt;}
.y10_c00159{bottom:646.800000pt;}
.yf_c00159{bottom:664.133333pt;}
.ye_c00159{bottom:681.466667pt;}
.yd_c00159{bottom:699.333333pt;}
.yc_c00159{bottom:717.200000pt;}
.yb_c00159{bottom:734.800000pt;}
.ya_c00159{bottom:752.400000pt;}
.y9_c00159{bottom:770.000000pt;}
.y8_c00159{bottom:787.866667pt;}
.y7_c00159{bottom:805.733333pt;}
.y6_c00159{bottom:823.333333pt;}
.y5_c00159{bottom:841.066667pt;}
.y4_c00159{bottom:858.933333pt;}
.y3_c00159{bottom:876.533333pt;}
.y2_c00159{bottom:894.400000pt;}
.y1_c00159{bottom:928.000000pt;}
.h2_c00159{height:48.000000pt;}
.h1_c00159{height:1038.000000pt;}
.h0_c00159{height:1038.079997pt;}
.w1_c00159{width:818.000000pt;}
.w0_c00159{width:818.239991pt;}
.x0_c00159{left:0.000000pt;}
.x3_c00159{left:104.266667pt;}
.x110_c00159{left:105.200000pt;}
.x143_c00159{left:106.133333pt;}
.x142_c00159{left:119.066667pt;}
.x16_c00159{left:120.133333pt;}
.x11a_c00159{left:122.133333pt;}
.x4_c00159{left:126.933333pt;}
.x60_c00159{left:128.933333pt;}
.x45_c00159{left:131.466667pt;}
.xec_c00159{left:132.533333pt;}
.xd7_c00159{left:133.466667pt;}
.xbc_c00159{left:135.466667pt;}
.x12f_c00159{left:136.400000pt;}
.xe9_c00159{left:138.000000pt;}
.x53_c00159{left:139.333333pt;}
.x124_c00159{left:140.800000pt;}
.x111_c00159{left:142.800000pt;}
.xff_c00159{left:144.666667pt;}
.x26_c00159{left:146.533333pt;}
.xbd_c00159{left:148.266667pt;}
.x37_c00159{left:149.333333pt;}
.xb2_c00159{left:151.200000pt;}
.x17_c00159{left:152.133333pt;}
.x77_c00159{left:153.333333pt;}
.x135_c00159{left:154.933333pt;}
.x54_c00159{left:157.200000pt;}
.x12b_c00159{left:158.666667pt;}
.xc4_c00159{left:160.533333pt;}
.xf8_c00159{left:161.600000pt;}
.x61_c00159{left:163.200000pt;}
.xf5_c00159{left:164.800000pt;}
.x125_c00159{left:166.666667pt;}
.x27_c00159{left:168.266667pt;}
.x46_c00159{left:170.533333pt;}
.xe4_c00159{left:171.466667pt;}
.x144_c00159{left:173.733333pt;}
.x106_c00159{left:175.066667pt;}
.xb3_c00159{left:176.133333pt;}
.xd0_c00159{left:177.333333pt;}
.x6d_c00159{left:178.400000pt;}
.x47_c00159{left:180.800000pt;}
.x55_c00159{left:182.533333pt;}
.x139_c00159{left:183.733333pt;}
.x126_c00159{left:184.933333pt;}
.xed_c00159{left:186.533333pt;}
.x5_c00159{left:188.666667pt;}
.xa9_c00159{left:189.866667pt;}
.xd8_c00159{left:191.466667pt;}
.x100_c00159{left:192.666667pt;}
.xe5_c00159{left:195.466667pt;}
.x11f_c00159{left:196.400000pt;}
.x114_c00159{left:198.133333pt;}
.x13d_c00159{left:199.333333pt;}
.x28_c00159{left:200.533333pt;}
.x38_c00159{left:202.133333pt;}
.x6_c00159{left:203.733333pt;}
.x88_c00159{left:206.400000pt;}
.xc5_c00159{left:207.600000pt;}
.xd9_c00159{left:209.333333pt;}
.x101_c00159{left:210.266667pt;}
.x11b_c00159{left:212.400000pt;}
.xf9_c00159{left:213.466667pt;}
.x56_c00159{left:215.466667pt;}
.x95_c00159{left:216.666667pt;}
.xd1_c00159{left:219.866667pt;}
.x89_c00159{left:220.800000pt;}
.x48_c00159{left:222.133333pt;}
.xb4_c00159{left:223.200000pt;}
.x39_c00159{left:224.533333pt;}
.x7_c00159{left:226.800000pt;}
.x29_c00159{left:230.666667pt;}
.xda_c00159{left:232.000000pt;}
.x96_c00159{left:234.533333pt;}
.xee_c00159{left:237.066667pt;}
.xc6_c00159{left:239.333333pt;}
.x127_c00159{left:240.266667pt;}
.x78_c00159{left:242.266667pt;}
.x62_c00159{left:243.200000pt;}
.x120_c00159{left:245.600000pt;}
.x97_c00159{left:246.666667pt;}
.xa1_c00159{left:249.866667pt;}
.x10a_c00159{left:251.066667pt;}
.x18_c00159{left:252.533333pt;}
.x8a_c00159{left:253.733333pt;}
.x6e_c00159{left:255.200000pt;}
.x13a_c00159{left:256.133333pt;}
.x8_c00159{left:257.866667pt;}
.xd2_c00159{left:259.600000pt;}
.x121_c00159{left:261.866667pt;}
.xdc_c00159{left:263.866667pt;}
.x79_c00159{left:264.933333pt;}
.x102_c00159{left:266.800000pt;}
.x49_c00159{left:267.866667pt;}
.xaa_c00159{left:269.866667pt;}
.x9_c00159{left:272.266667pt;}
.x6f_c00159{left:274.133333pt;}
.x19_c00159{left:275.866667pt;}
.x2a_c00159{left:276.800000pt;}
.x107_c00159{left:278.533333pt;}
.x63_c00159{left:280.666667pt;}
.x11c_c00159{left:284.400000pt;}
.xbe_c00159{left:287.333333pt;}
.x13e_c00159{left:288.266667pt;}
.x149_c00159{left:289.333333pt;}
.xa2_c00159{left:290.266667pt;}
.x7f_c00159{left:291.333333pt;}
.x3a_c00159{left:295.600000pt;}
.xe6_c00159{left:296.533333pt;}
.x2b_c00159{left:298.266667pt;}
.x98_c00159{left:300.133333pt;}
.x57_c00159{left:301.200000pt;}
.xa_c00159{left:303.333333pt;}
.x4a_c00159{left:305.600000pt;}
.x145_c00159{left:306.533333pt;}
.x1a_c00159{left:308.533333pt;}
.x70_c00159{left:309.600000pt;}
.x64_c00159{left:310.800000pt;}
.xa3_c00159{left:314.000000pt;}
.x8b_c00159{left:316.400000pt;}
.x146_c00159{left:317.466667pt;}
.x115_c00159{left:319.066667pt;}
.x3b_c00159{left:320.933333pt;}
.x7a_c00159{left:322.533333pt;}
.xef_c00159{left:324.800000pt;}
.xdd_c00159{left:326.266667pt;}
.x136_c00159{left:327.200000pt;}
.x58_c00159{left:328.666667pt;}
.x99_c00159{left:331.466667pt;}
.xb_c00159{left:333.733333pt;}
.xb5_c00159{left:334.666667pt;}
.x65_c00159{left:336.400000pt;}
.x13f_c00159{left:337.600000pt;}
.x80_c00159{left:339.600000pt;}
.x4b_c00159{left:340.800000pt;}
.x116_c00159{left:346.266667pt;}
.xcc_c00159{left:348.266667pt;}
.x2c_c00159{left:349.733333pt;}
.xbf_c00159{left:352.666667pt;}
.xdb_c00159{left:354.000000pt;}
.xde_c00159{left:355.733333pt;}
.xb6_c00159{left:357.066667pt;}
.xc_c00159{left:359.066667pt;}
.xf0_c00159{left:360.666667pt;}
.xd_c00159{left:362.266667pt;}
.x1b_c00159{left:363.866667pt;}
.x122_c00159{left:364.800000pt;}
.xcd_c00159{left:365.866667pt;}
.x66_c00159{left:367.733333pt;}
.xdf_c00159{left:368.800000pt;}
.xc0_c00159{left:371.200000pt;}
.x4c_c00159{left:372.133333pt;}
.x81_c00159{left:373.466667pt;}
.x3c_c00159{left:374.400000pt;}
.xe_c00159{left:378.000000pt;}
.x12c_c00159{left:380.400000pt;}
.xb7_c00159{left:382.000000pt;}
.x1_c00159{left:384.666667pt;}
.xab_c00159{left:386.000000pt;}
.x67_c00159{left:386.933333pt;}
.x130_c00159{left:388.266667pt;}
.x2d_c00159{left:390.666667pt;}
.x1c_c00159{left:393.600000pt;}
.x9a_c00159{left:394.533333pt;}
.xf_c00159{left:397.466667pt;}
.x82_c00159{left:398.800000pt;}
.xe7_c00159{left:400.266667pt;}
.xf6_c00159{left:402.000000pt;}
.x71_c00159{left:403.066667pt;}
.xc7_c00159{left:404.933333pt;}
.x10c_c00159{left:406.400000pt;}
.x59_c00159{left:409.066667pt;}
.x2e_c00159{left:410.133333pt;}
.x4d_c00159{left:412.400000pt;}
.xfa_c00159{left:413.600000pt;}
.x7b_c00159{left:416.400000pt;}
.xf7_c00159{left:418.000000pt;}
.x1d_c00159{left:418.933333pt;}
.x10_c00159{left:419.866667pt;}
.x10d_c00159{left:422.400000pt;}
.xe8_c00159{left:424.533333pt;}
.x3d_c00159{left:427.200000pt;}
.xa4_c00159{left:428.266667pt;}
.xf1_c00159{left:429.200000pt;}
.x140_c00159{left:431.066667pt;}
.xac_c00159{left:432.400000pt;}
.xb8_c00159{left:433.866667pt;}
.x2f_c00159{left:436.000000pt;}
.x9b_c00159{left:437.733333pt;}
.x147_c00159{left:438.666667pt;}
.x83_c00159{left:440.400000pt;}
.x68_c00159{left:443.866667pt;}
.x10e_c00159{left:445.066667pt;}
.x137_c00159{left:446.266667pt;}
.x5a_c00159{left:449.466667pt;}
.xa5_c00159{left:451.600000pt;}
.x1e_c00159{left:453.466667pt;}
.xb9_c00159{left:454.400000pt;}
.x13b_c00159{left:455.333333pt;}
.x4e_c00159{left:456.266667pt;}
.xad_c00159{left:458.666667pt;}
.x8c_c00159{left:460.133333pt;}
.x72_c00159{left:462.000000pt;}
.x103_c00159{left:463.066667pt;}
.x117_c00159{left:464.666667pt;}
.x30_c00159{left:465.733333pt;}
.x3e_c00159{left:468.533333pt;}
.x128_c00159{left:471.200000pt;}
.xc1_c00159{left:472.533333pt;}
.x4f_c00159{left:474.133333pt;}
.x9c_c00159{left:475.200000pt;}
.x84_c00159{left:477.866667pt;}
.x3f_c00159{left:479.733333pt;}
.x5b_c00159{left:481.466667pt;}
.x1f_c00159{left:484.533333pt;}
.xc8_c00159{left:485.600000pt;}
.x8d_c00159{left:487.066667pt;}
.x31_c00159{left:488.400000pt;}
.x131_c00159{left:490.933333pt;}
.xfb_c00159{left:493.333333pt;}
.x20_c00159{left:495.466667pt;}
.xc2_c00159{left:496.800000pt;}
.x11d_c00159{left:498.266667pt;}
.xae_c00159{left:500.000000pt;}
.x8e_c00159{left:502.133333pt;}
.x73_c00159{left:503.333333pt;}
.x85_c00159{left:505.066667pt;}
.xfc_c00159{left:506.400000pt;}
.xce_c00159{left:508.266667pt;}
.xd3_c00159{left:510.400000pt;}
.x11_c00159{left:511.333333pt;}
.x32_c00159{left:513.733333pt;}
.x148_c00159{left:514.800000pt;}
.xaf_c00159{left:515.733333pt;}
.x74_c00159{left:517.466667pt;}
.x40_c00159{left:518.400000pt;}
.x8f_c00159{left:519.733333pt;}
.x9d_c00159{left:520.666667pt;}
.x129_c00159{left:521.733333pt;}
.x21_c00159{left:523.333333pt;}
.x7c_c00159{left:524.266667pt;}
.xb0_c00159{left:526.000000pt;}
.xa6_c00159{left:527.333333pt;}
.x12_c00159{left:528.933333pt;}
.x69_c00159{left:530.800000pt;}
.xe0_c00159{left:534.266667pt;}
.x33_c00159{left:535.200000pt;}
.x86_c00159{left:536.400000pt;}
.x5c_c00159{left:537.866667pt;}
.xc3_c00159{left:539.733333pt;}
.x90_c00159{left:542.400000pt;}
.xba_c00159{left:545.600000pt;}
.xd4_c00159{left:548.533333pt;}
.x132_c00159{left:549.866667pt;}
.x13_c00159{left:551.333333pt;}
.xa7_c00159{left:553.600000pt;}
.x10f_c00159{left:555.066667pt;}
.xbb_c00159{left:556.533333pt;}
.x22_c00159{left:558.266667pt;}
.x41_c00159{left:559.733333pt;}
.x6a_c00159{left:561.866667pt;}
.x9e_c00159{left:563.200000pt;}
.x7d_c00159{left:565.600000pt;}
.xc9_c00159{left:566.800000pt;}
.xf2_c00159{left:568.933333pt;}
.x91_c00159{left:569.866667pt;}
.x13c_c00159{left:570.800000pt;}
.x75_c00159{left:572.800000pt;}
.xd5_c00159{left:573.866667pt;}
.x118_c00159{left:575.333333pt;}
.x9f_c00159{left:577.866667pt;}
.xa8_c00159{left:578.933333pt;}
.xe1_c00159{left:581.333333pt;}
.x123_c00159{left:584.533333pt;}
.x42_c00159{left:585.600000pt;}
.x5d_c00159{left:586.533333pt;}
.x14_c00159{left:588.400000pt;}
.x133_c00159{left:589.866667pt;}
.x23_c00159{left:590.933333pt;}
.x6b_c00159{left:595.200000pt;}
.xfd_c00159{left:597.600000pt;}
.x92_c00159{left:600.000000pt;}
.x12d_c00159{left:602.800000pt;}
.x34_c00159{left:604.000000pt;}
.x104_c00159{left:605.733333pt;}
.x5e_c00159{left:608.666667pt;}
.x76_c00159{left:610.266667pt;}
.xa0_c00159{left:611.466667pt;}
.x15_c00159{left:612.666667pt;}
.x50_c00159{left:614.533333pt;}
.xd6_c00159{left:615.733333pt;}
.x108_c00159{left:618.000000pt;}
.x112_c00159{left:619.333333pt;}
.xf3_c00159{left:623.600000pt;}
.x93_c00159{left:624.933333pt;}
.xea_c00159{left:626.000000pt;}
.xe2_c00159{left:627.066667pt;}
.xb1_c00159{left:628.000000pt;}
.x43_c00159{left:631.333333pt;}
.x141_c00159{left:632.266667pt;}
.x119_c00159{left:633.600000pt;}
.xfe_c00159{left:636.666667pt;}
.x138_c00159{left:637.600000pt;}
.x105_c00159{left:639.066667pt;}
.x7e_c00159{left:640.133333pt;}
.xeb_c00159{left:641.333333pt;}
.x24_c00159{left:643.466667pt;}
.x10b_c00159{left:645.600000pt;}
.x5f_c00159{left:647.333333pt;}
.xcf_c00159{left:650.000000pt;}
.xca_c00159{left:650.933333pt;}
.x35_c00159{left:653.600000pt;}
.x12e_c00159{left:654.533333pt;}
.x44_c00159{left:655.600000pt;}
.x6c_c00159{left:658.800000pt;}
.x51_c00159{left:660.666667pt;}
.x87_c00159{left:661.733333pt;}
.x134_c00159{left:663.466667pt;}
.xe3_c00159{left:669.600000pt;}
.x94_c00159{left:671.333333pt;}
.xf4_c00159{left:673.866667pt;}
.x12a_c00159{left:674.933333pt;}
.x36_c00159{left:677.333333pt;}
.x52_c00159{left:678.533333pt;}
.x2_c00159{left:680.000000pt;}
.x113_c00159{left:682.666667pt;}
.x25_c00159{left:684.800000pt;}
.x109_c00159{left:685.866667pt;}
.xcb_c00159{left:690.000000pt;}
.x11e_c00159{left:693.466667pt;}
}





/* 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_c00160 {
    display:none;
  }
  .loading-indicator_c00160.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00160 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_c00160 { 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_c00160" -> "#page-container .classname_c00160")
 */
.pf_c00160 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00160 { /* 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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00160 { /* 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_c00160 { /* 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_c00160 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00160 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00160 {overflow:visible;}
  }
}
.c_c00160 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00160 { /* 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_c00160:after { /* webkit #35443 */
  content: '';
}
.t_c00160:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00160 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 */
}
.__c00160 { /* 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_c00160 { /* info for Javascript */
  display:none;
}
.l_c00160 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00160 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00160 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00160: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_c00160 {
    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_c00160.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00160.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_c00160 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00160{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00160;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.000000;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;}
.mc4_c00160{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m93_c00160{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00160{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m3_c00160{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00160{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00160{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00160{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00160{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00160{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00160{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00160{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m66_c00160{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m77_c00160{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00160{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m70_c00160{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00160{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00160{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00160{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00160{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10_c00160{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00160{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00160{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m20_c00160{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00160{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00160{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00160{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00160{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00160{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00160{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00160{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m21_c00160{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m64_c00160{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m84_c00160{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m83_c00160{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00160{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m40_c00160{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m31_c00160{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m35_c00160{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m28_c00160{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m97_c00160{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf_c00160{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m46_c00160{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m80_c00160{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00160{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00160{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m48_c00160{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m85_c00160{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m61_c00160{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00160{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m22_c00160{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00160{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m69_c00160{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00160{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00160{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8_c00160{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00160{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00160{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m65_c00160{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m91_c00160{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00160{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5_c00160{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mac_c00160{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m74_c00160{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m88_c00160{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m68_c00160{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00160{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m81_c00160{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m33_c00160{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb_c00160{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00160{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00160{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m59_c00160{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.maa_c00160{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00160{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00160{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9_c00160{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00160{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m27_c00160{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m36_c00160{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m71_c00160{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m87_c00160{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m90_c00160{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00160{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00160{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m55_c00160{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00160{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00160{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m43_c00160{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m94_c00160{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00160{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m51_c00160{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mad_c00160{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00160{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m39_c00160{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00160{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m62_c00160{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{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);}
.maf_c00160{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00160{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m73_c00160{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00160{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00160{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00160{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m32_c00160{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mae_c00160{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mba_c00160{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m19_c00160{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00160{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m37_c00160{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00160{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m56_c00160{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00160{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00160{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00160{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00160{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m41_c00160{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c00160{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00160{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00160{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m78_c00160{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m86_c00160{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00160{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00160{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00160{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00160{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00160{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m72_c00160{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00160{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00160{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00160{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00160{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00160{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m98_c00160{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00160{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m75_c00160{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00160{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m60_c00160{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00160{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.sc__c00160{text-shadow:none;}
.sc0_c00160{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__c00160{-webkit-text-stroke:0px transparent;}
.sc0_c00160{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse_c00160{word-spacing:-6.666667px;}
.wsb_c00160{word-spacing:-5.384615px;}
.ws1_c00160{word-spacing:-5.138889px;}
.ws2_c00160{word-spacing:-2.857143px;}
.ws0_c00160{word-spacing:-1.666667px;}
.wsf_c00160{word-spacing:0.000000px;}
.wsc_c00160{word-spacing:0.277778px;}
.ws8_c00160{word-spacing:1.666667px;}
.ws7_c00160{word-spacing:3.055556px;}
.wsa_c00160{word-spacing:5.384615px;}
.ws6_c00160{word-spacing:8.529412px;}
.ws3_c00160{word-spacing:9.861111px;}
.ws5_c00160{word-spacing:13.055556px;}
.ws4_c00160{word-spacing:13.258929px;}
.ws9_c00160{word-spacing:16.607143px;}
.wsd_c00160{word-spacing:55.375000px;}
._0_c00160{width:43.194444px;}
.fc0_c00160{color:transparent;}
.fs1_c00160{font-size:48.000000px;}
.fs0_c00160{font-size:60.000000px;}
.y0_c00160{bottom:0.000000px;}
.y2f_c00160{bottom:154.050000px;}
.y2e_c00160{bottom:169.200000px;}
.y2d_c00160{bottom:185.100000px;}
.y2c_c00160{bottom:200.850000px;}
.y2b_c00160{bottom:215.700000px;}
.y2a_c00160{bottom:231.900000px;}
.y29_c00160{bottom:246.900000px;}
.y28_c00160{bottom:262.800000px;}
.y27_c00160{bottom:278.250000px;}
.y26_c00160{bottom:293.700000px;}
.y25_c00160{bottom:320.400000px;}
.y24_c00160{bottom:339.900000px;}
.y23_c00160{bottom:360.000000px;}
.y22_c00160{bottom:379.800000px;}
.y21_c00160{bottom:399.600000px;}
.y20_c00160{bottom:419.700000px;}
.y1f_c00160{bottom:439.500000px;}
.y1e_c00160{bottom:459.300000px;}
.y1d_c00160{bottom:479.100000px;}
.y1c_c00160{bottom:499.200000px;}
.y1b_c00160{bottom:519.000000px;}
.y1a_c00160{bottom:538.800000px;}
.y19_c00160{bottom:559.350000px;}
.y18_c00160{bottom:578.850000px;}
.y17_c00160{bottom:598.650000px;}
.y16_c00160{bottom:618.450000px;}
.y15_c00160{bottom:638.400000px;}
.y14_c00160{bottom:658.500000px;}
.y13_c00160{bottom:678.600000px;}
.y12_c00160{bottom:698.100000px;}
.y11_c00160{bottom:717.900000px;}
.y10_c00160{bottom:737.700000px;}
.yf_c00160{bottom:757.500000px;}
.ye_c00160{bottom:777.300000px;}
.yd_c00160{bottom:797.100000px;}
.yc_c00160{bottom:817.200000px;}
.yb_c00160{bottom:837.000000px;}
.ya_c00160{bottom:856.800000px;}
.y9_c00160{bottom:876.750000px;}
.y8_c00160{bottom:896.550000px;}
.y7_c00160{bottom:916.650000px;}
.y6_c00160{bottom:936.450000px;}
.y5_c00160{bottom:956.550000px;}
.y4_c00160{bottom:976.350000px;}
.y3_c00160{bottom:996.150000px;}
.y2_c00160{bottom:1016.250000px;}
.y1_c00160{bottom:1053.750000px;}
.h3_c00160{height:48.000000px;}
.h2_c00160{height:60.000000px;}
.h1_c00160{height:1167.750000px;}
.h0_c00160{height:1167.839997px;}
.w1_c00160{width:920.250000px;}
.w0_c00160{width:920.519990px;}
.x0_c00160{left:0.000000px;}
.x3_c00160{left:133.950000px;}
.x1_c00160{left:135.300000px;}
.x12b_c00160{left:136.500000px;}
.x13c_c00160{left:137.550000px;}
.x12c_c00160{left:146.250000px;}
.x138_c00160{left:149.850000px;}
.xda_c00160{left:151.950000px;}
.xc7_c00160{left:155.100000px;}
.xe8_c00160{left:157.500000px;}
.xb8_c00160{left:161.250000px;}
.x34_c00160{left:162.450000px;}
.x4_c00160{left:163.500000px;}
.x6a_c00160{left:165.300000px;}
.x112_c00160{left:166.650000px;}
.x4f_c00160{left:168.300000px;}
.xaf_c00160{left:171.600000px;}
.x139_c00160{left:173.550000px;}
.x11d_c00160{left:175.800000px;}
.x5_c00160{left:180.750000px;}
.xa5_c00160{left:182.400000px;}
.x13a_c00160{left:183.600000px;}
.x23_c00160{left:185.100000px;}
.xed_c00160{left:186.600000px;}
.x90_c00160{left:188.400000px;}
.x42_c00160{left:190.500000px;}
.x7f_c00160{left:191.700000px;}
.x50_c00160{left:194.250000px;}
.x6b_c00160{left:195.600000px;}
.x124_c00160{left:196.800000px;}
.xcd_c00160{left:198.000000px;}
.x74_c00160{left:202.350000px;}
.x14_c00160{left:204.300000px;}
.x13b_c00160{left:205.500000px;}
.x24_c00160{left:207.750000px;}
.x100_c00160{left:210.750000px;}
.x6_c00160{left:213.150000px;}
.x99_c00160{left:215.100000px;}
.x132_c00160{left:216.450000px;}
.x91_c00160{left:217.950000px;}
.x125_c00160{left:220.200000px;}
.xb0_c00160{left:221.700000px;}
.x15_c00160{left:224.400000px;}
.x87_c00160{left:225.600000px;}
.x6c_c00160{left:226.950000px;}
.x69_c00160{left:231.000000px;}
.x35_c00160{left:232.650000px;}
.xc8_c00160{left:234.600000px;}
.xbc_c00160{left:236.400000px;}
.x75_c00160{left:238.350000px;}
.x133_c00160{left:240.900000px;}
.x7_c00160{left:241.950000px;}
.xe2_c00160{left:244.050000px;}
.x43_c00160{left:245.250000px;}
.xa6_c00160{left:247.200000px;}
.xce_c00160{left:251.250000px;}
.x104_c00160{left:252.750000px;}
.x51_c00160{left:253.950000px;}
.x80_c00160{left:257.550000px;}
.xb9_c00160{left:259.950000px;}
.x136_c00160{left:262.200000px;}
.x36_c00160{left:265.800000px;}
.xee_c00160{left:268.350000px;}
.x5d_c00160{left:269.400000px;}
.xcf_c00160{left:271.050000px;}
.x105_c00160{left:272.250000px;}
.x126_c00160{left:276.750000px;}
.x25_c00160{left:277.950000px;}
.x37_c00160{left:280.200000px;}
.xbd_c00160{left:281.700000px;}
.xf8_c00160{left:283.350000px;}
.x16_c00160{left:286.350000px;}
.x130_c00160{left:288.000000px;}
.x38_c00160{left:291.300000px;}
.x8_c00160{left:292.350000px;}
.xb1_c00160{left:294.000000px;}
.xef_c00160{left:295.650000px;}
.x44_c00160{left:297.150000px;}
.x13d_c00160{left:299.250000px;}
.x101_c00160{left:302.250000px;}
.x9f_c00160{left:303.450000px;}
.xe3_c00160{left:305.550000px;}
.x9a_c00160{left:307.650000px;}
.xa7_c00160{left:309.150000px;}
.x13e_c00160{left:310.350000px;}
.x26_c00160{left:312.900000px;}
.x17_c00160{left:316.200000px;}
.xdb_c00160{left:317.850000px;}
.x39_c00160{left:320.400000px;}
.x9_c00160{left:323.250000px;}
.x134_c00160{left:325.950000px;}
.x45_c00160{left:328.050000px;}
.xbe_c00160{left:330.000000px;}
.x92_c00160{left:331.350000px;}
.x10b_c00160{left:332.850000px;}
.x88_c00160{left:334.350000px;}
.x131_c00160{left:335.850000px;}
.xc9_c00160{left:337.200000px;}
.x12d_c00160{left:339.150000px;}
.x52_c00160{left:340.200000px;}
.xd0_c00160{left:341.250000px;}
.x81_c00160{left:343.500000px;}
.x113_c00160{left:346.650000px;}
.x93_c00160{left:348.300000px;}
.x116_c00160{left:351.000000px;}
.x27_c00160{left:356.100000px;}
.x135_c00160{left:357.300000px;}
.x6d_c00160{left:359.100000px;}
.xd1_c00160{left:361.050000px;}
.xf9_c00160{left:362.550000px;}
.x5e_c00160{left:364.800000px;}
.x76_c00160{left:366.150000px;}
.x53_c00160{left:367.200000px;}
.x11e_c00160{left:368.400000px;}
.x10c_c00160{left:370.650000px;}
.xf0_c00160{left:372.600000px;}
.x117_c00160{left:373.650000px;}
.x110_c00160{left:375.300000px;}
.xa_c00160{left:376.500000px;}
.x28_c00160{left:378.000000px;}
.x18_c00160{left:381.300000px;}
.xbf_c00160{left:382.500000px;}
.xfa_c00160{left:383.850000px;}
.x137_c00160{left:385.050000px;}
.xe4_c00160{left:386.850000px;}
.x106_c00160{left:388.500000px;}
.xe9_c00160{left:390.150000px;}
.x5f_c00160{left:393.300000px;}
.x6e_c00160{left:396.600000px;}
.x111_c00160{left:403.350000px;}
.x3a_c00160{left:404.700000px;}
.x102_c00160{left:406.350000px;}
.xa8_c00160{left:410.550000px;}
.x127_c00160{left:411.750000px;}
.xd2_c00160{left:412.950000px;}
.xc0_c00160{left:414.900000px;}
.x94_c00160{left:417.750000px;}
.xdc_c00160{left:420.150000px;}
.x29_c00160{left:421.200000px;}
.xa0_c00160{left:422.250000px;}
.x3b_c00160{left:424.800000px;}
.x82_c00160{left:428.100000px;}
.xf1_c00160{left:429.450000px;}
.xb2_c00160{left:431.400000px;}
.x2_c00160{left:433.350000px;}
.x54_c00160{left:438.150000px;}
.xb_c00160{left:439.200000px;}
.x107_c00160{left:443.250000px;}
.xba_c00160{left:444.300000px;}
.x77_c00160{left:446.100000px;}
.xc1_c00160{left:448.800000px;}
.xa1_c00160{left:450.000000px;}
.x46_c00160{left:451.500000px;}
.x2a_c00160{left:453.900000px;}
.x10d_c00160{left:455.250000px;}
.x19_c00160{left:457.950000px;}
.x55_c00160{left:464.100000px;}
.x3c_c00160{left:465.900000px;}
.xd3_c00160{left:467.250000px;}
.x47_c00160{left:469.200000px;}
.xc2_c00160{left:471.450000px;}
.xf4_c00160{left:472.650000px;}
.x2b_c00160{left:474.000000px;}
.x6f_c00160{left:475.050000px;}
.x78_c00160{left:476.700000px;}
.xa2_c00160{left:478.050000px;}
.xca_c00160{left:482.700000px;}
.x3d_c00160{left:489.000000px;}
.xdd_c00160{left:490.050000px;}
.xb3_c00160{left:491.550000px;}
.xa9_c00160{left:493.050000px;}
.xe5_c00160{left:495.150000px;}
.xd4_c00160{left:497.550000px;}
.x2c_c00160{left:502.050000px;}
.x12e_c00160{left:504.000000px;}
.x9b_c00160{left:506.250000px;}
.x56_c00160{left:508.800000px;}
.x79_c00160{left:510.900000px;}
.xc_c00160{left:514.050000px;}
.xfb_c00160{left:516.000000px;}
.xd5_c00160{left:518.100000px;}
.x48_c00160{left:521.700000px;}
.x1a_c00160{left:524.850000px;}
.x60_c00160{left:525.900000px;}
.xf5_c00160{left:526.950000px;}
.xaa_c00160{left:528.000000px;}
.x120_c00160{left:529.200000px;}
.x114_c00160{left:532.350000px;}
.x11a_c00160{left:533.850000px;}
.x70_c00160{left:535.200000px;}
.xb4_c00160{left:537.600000px;}
.x2d_c00160{left:539.850000px;}
.xea_c00160{left:541.800000px;}
.x61_c00160{left:543.900000px;}
.xcb_c00160{left:544.950000px;}
.x95_c00160{left:546.300000px;}
.x3e_c00160{left:547.350000px;}
.x12f_c00160{left:551.100000px;}
.x57_c00160{left:552.300000px;}
.x9c_c00160{left:553.350000px;}
.x49_c00160{left:554.400000px;}
.xfc_c00160{left:555.900000px;}
.xc3_c00160{left:557.850000px;}
.x89_c00160{left:561.000000px;}
.x71_c00160{left:564.300000px;}
.xcc_c00160{left:565.500000px;}
.x1b_c00160{left:567.750000px;}
.x62_c00160{left:569.850000px;}
.x115_c00160{left:571.350000px;}
.x7a_c00160{left:573.300000px;}
.xa3_c00160{left:574.650000px;}
.xd_c00160{left:576.300000px;}
.x83_c00160{left:578.250000px;}
.x58_c00160{left:579.300000px;}
.x128_c00160{left:581.250000px;}
.x8a_c00160{left:583.650000px;}
.xd6_c00160{left:584.700000px;}
.x96_c00160{left:586.650000px;}
.x10e_c00160{left:588.600000px;}
.x4a_c00160{left:591.900000px;}
.x108_c00160{left:594.750000px;}
.xde_c00160{left:595.950000px;}
.x63_c00160{left:597.600000px;}
.x1c_c00160{left:599.100000px;}
.x11b_c00160{left:601.500000px;}
.xe_c00160{left:603.000000px;}
.x2e_c00160{left:604.950000px;}
.x3f_c00160{left:607.050000px;}
.xb5_c00160{left:608.100000px;}
.x8b_c00160{left:613.950000px;}
.xab_c00160{left:615.000000px;}
.xf6_c00160{left:616.200000px;}
.x4b_c00160{left:623.250000px;}
.xdf_c00160{left:625.500000px;}
.xc4_c00160{left:627.750000px;}
.x121_c00160{left:628.950000px;}
.x84_c00160{left:631.200000px;}
.x97_c00160{left:636.000000px;}
.x64_c00160{left:638.250000px;}
.x1d_c00160{left:640.500000px;}
.x59_c00160{left:642.300000px;}
.x72_c00160{left:644.550000px;}
.x7b_c00160{left:645.600000px;}
.x109_c00160{left:646.650000px;}
.xd7_c00160{left:647.700000px;}
.xfd_c00160{left:650.250000px;}
.x2f_c00160{left:651.450000px;}
.x118_c00160{left:654.000000px;}
.x85_c00160{left:656.700000px;}
.xb6_c00160{left:657.900000px;}
.x8c_c00160{left:659.250000px;}
.xe0_c00160{left:661.500000px;}
.x122_c00160{left:664.650000px;}
.xf_c00160{left:665.700000px;}
.x30_c00160{left:668.400000px;}
.x1e_c00160{left:669.600000px;}
.x5a_c00160{left:670.800000px;}
.x4c_c00160{left:673.950000px;}
.xeb_c00160{left:675.450000px;}
.x119_c00160{left:677.400000px;}
.xe6_c00160{left:678.750000px;}
.xd8_c00160{left:680.400000px;}
.x40_c00160{left:682.950000px;}
.xfe_c00160{left:684.150000px;}
.x11f_c00160{left:685.800000px;}
.x1f_c00160{left:687.600000px;}
.x7c_c00160{left:693.150000px;}
.xbb_c00160{left:694.800000px;}
.xf2_c00160{left:697.200000px;}
.x129_c00160{left:699.750000px;}
.x103_c00160{left:701.250000px;}
.xac_c00160{left:703.200000px;}
.xe7_c00160{left:705.750000px;}
.x65_c00160{left:707.100000px;}
.x9d_c00160{left:708.300000px;}
.x98_c00160{left:710.250000px;}
.x10_c00160{left:712.200000px;}
.x7d_c00160{left:714.000000px;}
.xc5_c00160{left:715.200000px;}
.x20_c00160{left:716.700000px;}
.x5b_c00160{left:718.350000px;}
.x31_c00160{left:721.350000px;}
.x12a_c00160{left:723.450000px;}
.x8d_c00160{left:725.850000px;}
.x86_c00160{left:729.750000px;}
.x11_c00160{left:731.700000px;}
.xc6_c00160{left:732.900000px;}
.xff_c00160{left:734.550000px;}
.x66_c00160{left:735.900000px;}
.x9e_c00160{left:737.100000px;}
.x10a_c00160{left:738.150000px;}
.xe1_c00160{left:739.650000px;}
.x7e_c00160{left:742.050000px;}
.xad_c00160{left:744.300000px;}
.x12_c00160{left:746.850000px;}
.x21_c00160{left:748.350000px;}
.x11c_c00160{left:752.550000px;}
.x4d_c00160{left:753.900000px;}
.xd9_c00160{left:754.950000px;}
.x8e_c00160{left:757.500000px;}
.x32_c00160{left:758.850000px;}
.x5c_c00160{left:760.050000px;}
.xf7_c00160{left:761.250000px;}
.x67_c00160{left:762.900000px;}
.x13_c00160{left:764.100000px;}
.xec_c00160{left:768.000000px;}
.x10f_c00160{left:769.650000px;}
.x123_c00160{left:772.350000px;}
.x33_c00160{left:774.000000px;}
.xb7_c00160{left:775.350000px;}
.x4e_c00160{left:777.000000px;}
.x41_c00160{left:780.450000px;}
.x68_c00160{left:782.400000px;}
.xf3_c00160{left:784.050000px;}
.xa4_c00160{left:785.400000px;}
.x22_c00160{left:787.650000px;}
.x73_c00160{left:789.150000px;}
.xae_c00160{left:790.800000px;}
.x8f_c00160{left:797.100000px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.wse_c00160{word-spacing:-5.925926pt;}
.wsb_c00160{word-spacing:-4.786325pt;}
.ws1_c00160{word-spacing:-4.567901pt;}
.ws2_c00160{word-spacing:-2.539683pt;}
.ws0_c00160{word-spacing:-1.481481pt;}
.wsf_c00160{word-spacing:0.000000pt;}
.wsc_c00160{word-spacing:0.246914pt;}
.ws8_c00160{word-spacing:1.481481pt;}
.ws7_c00160{word-spacing:2.716049pt;}
.wsa_c00160{word-spacing:4.786325pt;}
.ws6_c00160{word-spacing:7.581699pt;}
.ws3_c00160{word-spacing:8.765432pt;}
.ws5_c00160{word-spacing:11.604938pt;}
.ws4_c00160{word-spacing:11.785714pt;}
.ws9_c00160{word-spacing:14.761905pt;}
.wsd_c00160{word-spacing:49.222222pt;}
._0_c00160{width:38.395062pt;}
.fs1_c00160{font-size:42.666667pt;}
.fs0_c00160{font-size:53.333333pt;}
.y0_c00160{bottom:0.000000pt;}
.y2f_c00160{bottom:136.933333pt;}
.y2e_c00160{bottom:150.400000pt;}
.y2d_c00160{bottom:164.533333pt;}
.y2c_c00160{bottom:178.533333pt;}
.y2b_c00160{bottom:191.733333pt;}
.y2a_c00160{bottom:206.133333pt;}
.y29_c00160{bottom:219.466667pt;}
.y28_c00160{bottom:233.600000pt;}
.y27_c00160{bottom:247.333333pt;}
.y26_c00160{bottom:261.066667pt;}
.y25_c00160{bottom:284.800000pt;}
.y24_c00160{bottom:302.133333pt;}
.y23_c00160{bottom:320.000000pt;}
.y22_c00160{bottom:337.600000pt;}
.y21_c00160{bottom:355.200000pt;}
.y20_c00160{bottom:373.066667pt;}
.y1f_c00160{bottom:390.666667pt;}
.y1e_c00160{bottom:408.266667pt;}
.y1d_c00160{bottom:425.866667pt;}
.y1c_c00160{bottom:443.733333pt;}
.y1b_c00160{bottom:461.333333pt;}
.y1a_c00160{bottom:478.933333pt;}
.y19_c00160{bottom:497.200000pt;}
.y18_c00160{bottom:514.533333pt;}
.y17_c00160{bottom:532.133333pt;}
.y16_c00160{bottom:549.733333pt;}
.y15_c00160{bottom:567.466667pt;}
.y14_c00160{bottom:585.333333pt;}
.y13_c00160{bottom:603.200000pt;}
.y12_c00160{bottom:620.533333pt;}
.y11_c00160{bottom:638.133333pt;}
.y10_c00160{bottom:655.733333pt;}
.yf_c00160{bottom:673.333333pt;}
.ye_c00160{bottom:690.933333pt;}
.yd_c00160{bottom:708.533333pt;}
.yc_c00160{bottom:726.400000pt;}
.yb_c00160{bottom:744.000000pt;}
.ya_c00160{bottom:761.600000pt;}
.y9_c00160{bottom:779.333333pt;}
.y8_c00160{bottom:796.933333pt;}
.y7_c00160{bottom:814.800000pt;}
.y6_c00160{bottom:832.400000pt;}
.y5_c00160{bottom:850.266667pt;}
.y4_c00160{bottom:867.866667pt;}
.y3_c00160{bottom:885.466667pt;}
.y2_c00160{bottom:903.333333pt;}
.y1_c00160{bottom:936.666667pt;}
.h3_c00160{height:42.666667pt;}
.h2_c00160{height:53.333333pt;}
.h1_c00160{height:1038.000000pt;}
.h0_c00160{height:1038.079997pt;}
.w1_c00160{width:818.000000pt;}
.w0_c00160{width:818.239991pt;}
.x0_c00160{left:0.000000pt;}
.x3_c00160{left:119.066667pt;}
.x1_c00160{left:120.266667pt;}
.x12b_c00160{left:121.333333pt;}
.x13c_c00160{left:122.266667pt;}
.x12c_c00160{left:130.000000pt;}
.x138_c00160{left:133.200000pt;}
.xda_c00160{left:135.066667pt;}
.xc7_c00160{left:137.866667pt;}
.xe8_c00160{left:140.000000pt;}
.xb8_c00160{left:143.333333pt;}
.x34_c00160{left:144.400000pt;}
.x4_c00160{left:145.333333pt;}
.x6a_c00160{left:146.933333pt;}
.x112_c00160{left:148.133333pt;}
.x4f_c00160{left:149.600000pt;}
.xaf_c00160{left:152.533333pt;}
.x139_c00160{left:154.266667pt;}
.x11d_c00160{left:156.266667pt;}
.x5_c00160{left:160.666667pt;}
.xa5_c00160{left:162.133333pt;}
.x13a_c00160{left:163.200000pt;}
.x23_c00160{left:164.533333pt;}
.xed_c00160{left:165.866667pt;}
.x90_c00160{left:167.466667pt;}
.x42_c00160{left:169.333333pt;}
.x7f_c00160{left:170.400000pt;}
.x50_c00160{left:172.666667pt;}
.x6b_c00160{left:173.866667pt;}
.x124_c00160{left:174.933333pt;}
.xcd_c00160{left:176.000000pt;}
.x74_c00160{left:179.866667pt;}
.x14_c00160{left:181.600000pt;}
.x13b_c00160{left:182.666667pt;}
.x24_c00160{left:184.666667pt;}
.x100_c00160{left:187.333333pt;}
.x6_c00160{left:189.466667pt;}
.x99_c00160{left:191.200000pt;}
.x132_c00160{left:192.400000pt;}
.x91_c00160{left:193.733333pt;}
.x125_c00160{left:195.733333pt;}
.xb0_c00160{left:197.066667pt;}
.x15_c00160{left:199.466667pt;}
.x87_c00160{left:200.533333pt;}
.x6c_c00160{left:201.733333pt;}
.x69_c00160{left:205.333333pt;}
.x35_c00160{left:206.800000pt;}
.xc8_c00160{left:208.533333pt;}
.xbc_c00160{left:210.133333pt;}
.x75_c00160{left:211.866667pt;}
.x133_c00160{left:214.133333pt;}
.x7_c00160{left:215.066667pt;}
.xe2_c00160{left:216.933333pt;}
.x43_c00160{left:218.000000pt;}
.xa6_c00160{left:219.733333pt;}
.xce_c00160{left:223.333333pt;}
.x104_c00160{left:224.666667pt;}
.x51_c00160{left:225.733333pt;}
.x80_c00160{left:228.933333pt;}
.xb9_c00160{left:231.066667pt;}
.x136_c00160{left:233.066667pt;}
.x36_c00160{left:236.266667pt;}
.xee_c00160{left:238.533333pt;}
.x5d_c00160{left:239.466667pt;}
.xcf_c00160{left:240.933333pt;}
.x105_c00160{left:242.000000pt;}
.x126_c00160{left:246.000000pt;}
.x25_c00160{left:247.066667pt;}
.x37_c00160{left:249.066667pt;}
.xbd_c00160{left:250.400000pt;}
.xf8_c00160{left:251.866667pt;}
.x16_c00160{left:254.533333pt;}
.x130_c00160{left:256.000000pt;}
.x38_c00160{left:258.933333pt;}
.x8_c00160{left:259.866667pt;}
.xb1_c00160{left:261.333333pt;}
.xef_c00160{left:262.800000pt;}
.x44_c00160{left:264.133333pt;}
.x13d_c00160{left:266.000000pt;}
.x101_c00160{left:268.666667pt;}
.x9f_c00160{left:269.733333pt;}
.xe3_c00160{left:271.600000pt;}
.x9a_c00160{left:273.466667pt;}
.xa7_c00160{left:274.800000pt;}
.x13e_c00160{left:275.866667pt;}
.x26_c00160{left:278.133333pt;}
.x17_c00160{left:281.066667pt;}
.xdb_c00160{left:282.533333pt;}
.x39_c00160{left:284.800000pt;}
.x9_c00160{left:287.333333pt;}
.x134_c00160{left:289.733333pt;}
.x45_c00160{left:291.600000pt;}
.xbe_c00160{left:293.333333pt;}
.x92_c00160{left:294.533333pt;}
.x10b_c00160{left:295.866667pt;}
.x88_c00160{left:297.200000pt;}
.x131_c00160{left:298.533333pt;}
.xc9_c00160{left:299.733333pt;}
.x12d_c00160{left:301.466667pt;}
.x52_c00160{left:302.400000pt;}
.xd0_c00160{left:303.333333pt;}
.x81_c00160{left:305.333333pt;}
.x113_c00160{left:308.133333pt;}
.x93_c00160{left:309.600000pt;}
.x116_c00160{left:312.000000pt;}
.x27_c00160{left:316.533333pt;}
.x135_c00160{left:317.600000pt;}
.x6d_c00160{left:319.200000pt;}
.xd1_c00160{left:320.933333pt;}
.xf9_c00160{left:322.266667pt;}
.x5e_c00160{left:324.266667pt;}
.x76_c00160{left:325.466667pt;}
.x53_c00160{left:326.400000pt;}
.x11e_c00160{left:327.466667pt;}
.x10c_c00160{left:329.466667pt;}
.xf0_c00160{left:331.200000pt;}
.x117_c00160{left:332.133333pt;}
.x110_c00160{left:333.600000pt;}
.xa_c00160{left:334.666667pt;}
.x28_c00160{left:336.000000pt;}
.x18_c00160{left:338.933333pt;}
.xbf_c00160{left:340.000000pt;}
.xfa_c00160{left:341.200000pt;}
.x137_c00160{left:342.266667pt;}
.xe4_c00160{left:343.866667pt;}
.x106_c00160{left:345.333333pt;}
.xe9_c00160{left:346.800000pt;}
.x5f_c00160{left:349.600000pt;}
.x6e_c00160{left:352.533333pt;}
.x111_c00160{left:358.533333pt;}
.x3a_c00160{left:359.733333pt;}
.x102_c00160{left:361.200000pt;}
.xa8_c00160{left:364.933333pt;}
.x127_c00160{left:366.000000pt;}
.xd2_c00160{left:367.066667pt;}
.xc0_c00160{left:368.800000pt;}
.x94_c00160{left:371.333333pt;}
.xdc_c00160{left:373.466667pt;}
.x29_c00160{left:374.400000pt;}
.xa0_c00160{left:375.333333pt;}
.x3b_c00160{left:377.600000pt;}
.x82_c00160{left:380.533333pt;}
.xf1_c00160{left:381.733333pt;}
.xb2_c00160{left:383.466667pt;}
.x2_c00160{left:385.200000pt;}
.x54_c00160{left:389.466667pt;}
.xb_c00160{left:390.400000pt;}
.x107_c00160{left:394.000000pt;}
.xba_c00160{left:394.933333pt;}
.x77_c00160{left:396.533333pt;}
.xc1_c00160{left:398.933333pt;}
.xa1_c00160{left:400.000000pt;}
.x46_c00160{left:401.333333pt;}
.x2a_c00160{left:403.466667pt;}
.x10d_c00160{left:404.666667pt;}
.x19_c00160{left:407.066667pt;}
.x55_c00160{left:412.533333pt;}
.x3c_c00160{left:414.133333pt;}
.xd3_c00160{left:415.333333pt;}
.x47_c00160{left:417.066667pt;}
.xc2_c00160{left:419.066667pt;}
.xf4_c00160{left:420.133333pt;}
.x2b_c00160{left:421.333333pt;}
.x6f_c00160{left:422.266667pt;}
.x78_c00160{left:423.733333pt;}
.xa2_c00160{left:424.933333pt;}
.xca_c00160{left:429.066667pt;}
.x3d_c00160{left:434.666667pt;}
.xdd_c00160{left:435.600000pt;}
.xb3_c00160{left:436.933333pt;}
.xa9_c00160{left:438.266667pt;}
.xe5_c00160{left:440.133333pt;}
.xd4_c00160{left:442.266667pt;}
.x2c_c00160{left:446.266667pt;}
.x12e_c00160{left:448.000000pt;}
.x9b_c00160{left:450.000000pt;}
.x56_c00160{left:452.266667pt;}
.x79_c00160{left:454.133333pt;}
.xc_c00160{left:456.933333pt;}
.xfb_c00160{left:458.666667pt;}
.xd5_c00160{left:460.533333pt;}
.x48_c00160{left:463.733333pt;}
.x1a_c00160{left:466.533333pt;}
.x60_c00160{left:467.466667pt;}
.xf5_c00160{left:468.400000pt;}
.xaa_c00160{left:469.333333pt;}
.x120_c00160{left:470.400000pt;}
.x114_c00160{left:473.200000pt;}
.x11a_c00160{left:474.533333pt;}
.x70_c00160{left:475.733333pt;}
.xb4_c00160{left:477.866667pt;}
.x2d_c00160{left:479.866667pt;}
.xea_c00160{left:481.600000pt;}
.x61_c00160{left:483.466667pt;}
.xcb_c00160{left:484.400000pt;}
.x95_c00160{left:485.600000pt;}
.x3e_c00160{left:486.533333pt;}
.x12f_c00160{left:489.866667pt;}
.x57_c00160{left:490.933333pt;}
.x9c_c00160{left:491.866667pt;}
.x49_c00160{left:492.800000pt;}
.xfc_c00160{left:494.133333pt;}
.xc3_c00160{left:495.866667pt;}
.x89_c00160{left:498.666667pt;}
.x71_c00160{left:501.600000pt;}
.xcc_c00160{left:502.666667pt;}
.x1b_c00160{left:504.666667pt;}
.x62_c00160{left:506.533333pt;}
.x115_c00160{left:507.866667pt;}
.x7a_c00160{left:509.600000pt;}
.xa3_c00160{left:510.800000pt;}
.xd_c00160{left:512.266667pt;}
.x83_c00160{left:514.000000pt;}
.x58_c00160{left:514.933333pt;}
.x128_c00160{left:516.666667pt;}
.x8a_c00160{left:518.800000pt;}
.xd6_c00160{left:519.733333pt;}
.x96_c00160{left:521.466667pt;}
.x10e_c00160{left:523.200000pt;}
.x4a_c00160{left:526.133333pt;}
.x108_c00160{left:528.666667pt;}
.xde_c00160{left:529.733333pt;}
.x63_c00160{left:531.200000pt;}
.x1c_c00160{left:532.533333pt;}
.x11b_c00160{left:534.666667pt;}
.xe_c00160{left:536.000000pt;}
.x2e_c00160{left:537.733333pt;}
.x3f_c00160{left:539.600000pt;}
.xb5_c00160{left:540.533333pt;}
.x8b_c00160{left:545.733333pt;}
.xab_c00160{left:546.666667pt;}
.xf6_c00160{left:547.733333pt;}
.x4b_c00160{left:554.000000pt;}
.xdf_c00160{left:556.000000pt;}
.xc4_c00160{left:558.000000pt;}
.x121_c00160{left:559.066667pt;}
.x84_c00160{left:561.066667pt;}
.x97_c00160{left:565.333333pt;}
.x64_c00160{left:567.333333pt;}
.x1d_c00160{left:569.333333pt;}
.x59_c00160{left:570.933333pt;}
.x72_c00160{left:572.933333pt;}
.x7b_c00160{left:573.866667pt;}
.x109_c00160{left:574.800000pt;}
.xd7_c00160{left:575.733333pt;}
.xfd_c00160{left:578.000000pt;}
.x2f_c00160{left:579.066667pt;}
.x118_c00160{left:581.333333pt;}
.x85_c00160{left:583.733333pt;}
.xb6_c00160{left:584.800000pt;}
.x8c_c00160{left:586.000000pt;}
.xe0_c00160{left:588.000000pt;}
.x122_c00160{left:590.800000pt;}
.xf_c00160{left:591.733333pt;}
.x30_c00160{left:594.133333pt;}
.x1e_c00160{left:595.200000pt;}
.x5a_c00160{left:596.266667pt;}
.x4c_c00160{left:599.066667pt;}
.xeb_c00160{left:600.400000pt;}
.x119_c00160{left:602.133333pt;}
.xe6_c00160{left:603.333333pt;}
.xd8_c00160{left:604.800000pt;}
.x40_c00160{left:607.066667pt;}
.xfe_c00160{left:608.133333pt;}
.x11f_c00160{left:609.600000pt;}
.x1f_c00160{left:611.200000pt;}
.x7c_c00160{left:616.133333pt;}
.xbb_c00160{left:617.600000pt;}
.xf2_c00160{left:619.733333pt;}
.x129_c00160{left:622.000000pt;}
.x103_c00160{left:623.333333pt;}
.xac_c00160{left:625.066667pt;}
.xe7_c00160{left:627.333333pt;}
.x65_c00160{left:628.533333pt;}
.x9d_c00160{left:629.600000pt;}
.x98_c00160{left:631.333333pt;}
.x10_c00160{left:633.066667pt;}
.x7d_c00160{left:634.666667pt;}
.xc5_c00160{left:635.733333pt;}
.x20_c00160{left:637.066667pt;}
.x5b_c00160{left:638.533333pt;}
.x31_c00160{left:641.200000pt;}
.x12a_c00160{left:643.066667pt;}
.x8d_c00160{left:645.200000pt;}
.x86_c00160{left:648.666667pt;}
.x11_c00160{left:650.400000pt;}
.xc6_c00160{left:651.466667pt;}
.xff_c00160{left:652.933333pt;}
.x66_c00160{left:654.133333pt;}
.x9e_c00160{left:655.200000pt;}
.x10a_c00160{left:656.133333pt;}
.xe1_c00160{left:657.466667pt;}
.x7e_c00160{left:659.600000pt;}
.xad_c00160{left:661.600000pt;}
.x12_c00160{left:663.866667pt;}
.x21_c00160{left:665.200000pt;}
.x11c_c00160{left:668.933333pt;}
.x4d_c00160{left:670.133333pt;}
.xd9_c00160{left:671.066667pt;}
.x8e_c00160{left:673.333333pt;}
.x32_c00160{left:674.533333pt;}
.x5c_c00160{left:675.600000pt;}
.xf7_c00160{left:676.666667pt;}
.x67_c00160{left:678.133333pt;}
.x13_c00160{left:679.200000pt;}
.xec_c00160{left:682.666667pt;}
.x10f_c00160{left:684.133333pt;}
.x123_c00160{left:686.533333pt;}
.x33_c00160{left:688.000000pt;}
.xb7_c00160{left:689.200000pt;}
.x4e_c00160{left:690.666667pt;}
.x41_c00160{left:693.733333pt;}
.x68_c00160{left:695.466667pt;}
.xf3_c00160{left:696.933333pt;}
.xa4_c00160{left:698.133333pt;}
.x22_c00160{left:700.133333pt;}
.x73_c00160{left:701.466667pt;}
.xae_c00160{left:702.933333pt;}
.x8f_c00160{left:708.533333pt;}
}





/* 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_c00161 {
    display:none;
  }
  .loading-indicator_c00161.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00161 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_c00161 { 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_c00161" -> "#page-container .classname_c00161")
 */
.pf_c00161 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00161 { /* 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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00161 { /* 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_c00161 { /* 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_c00161 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00161 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00161 {overflow:visible;}
  }
}
.c_c00161 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00161 { /* 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_c00161:after { /* webkit #35443 */
  content: '';
}
.t_c00161:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00161 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 */
}
.__c00161 { /* 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_c00161 { /* info for Javascript */
  display:none;
}
.l_c00161 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00161 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00161 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00161: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_c00161 {
    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_c00161.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00161.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_c00161 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00161{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.000000;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;}
.mf_c00161{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.maa_c00161{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00161{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00161{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00161{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00161{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00161{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mac_c00161{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00161{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00161{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00161{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mab_c00161{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00161{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00161{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00161{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m58_c00161{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m32_c00161{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00161{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mca_c00161{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m66_c00161{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00161{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00161{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00161{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00161{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00161{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00161{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00161{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00161{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00161{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00161{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00161{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00161{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m46_c00161{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mba_c00161{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00161{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00161{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00161{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00161{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00161{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m97_c00161{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m31_c00161{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m39_c00161{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00161{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00161{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m94_c00161{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00161{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m90_c00161{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m81_c00161{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m48_c00161{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m89_c00161{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00161{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8_c00161{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00161{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00161{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00161{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00161{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00161{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m79_c00161{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mae_c00161{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.maf_c00161{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00161{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mad_c00161{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m88_c00161{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00161{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00161{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m70_c00161{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m34_c00161{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00161{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00161{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00161{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00161{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00161{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m54_c00161{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m92_c00161{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00161{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m86_c00161{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m78_c00161{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00161{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00161{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m36_c00161{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m62_c00161{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m21_c00161{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00161{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00161{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m85_c00161{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{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);}
.m6e_c00161{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00161{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.me_c00161{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00161{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00161{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m49_c00161{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00161{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m57_c00161{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m75_c00161{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m27_c00161{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00161{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m56_c00161{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00161{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m29_c00161{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m82_c00161{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00161{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00161{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m84_c00161{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00161{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3_c00161{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00161{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m93_c00161{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m96_c00161{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00161{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m98_c00161{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m76_c00161{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00161{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m61_c00161{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00161{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00161{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00161{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m63_c00161{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m99_c00161{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m80_c00161{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m55_c00161{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00161{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m95_c00161{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00161{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m87_c00161{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00161{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m43_c00161{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m68_c00161{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m83_c00161{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00161{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00161{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{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__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00161{word-spacing:-7.907631px;}
.ws7_c00161{word-spacing:-5.454545px;}
.wsa_c00161{word-spacing:-5.250000px;}
.ws3_c00161{word-spacing:-4.921283px;}
.ws5_c00161{word-spacing:-2.940463px;}
.wsd_c00161{word-spacing:0.000000px;}
.ws4_c00161{word-spacing:2.571429px;}
.ws8_c00161{word-spacing:5.300117px;}
.wsc_c00161{word-spacing:5.590909px;}
.ws1_c00161{word-spacing:7.643881px;}
.ws0_c00161{word-spacing:13.166667px;}
.ws2_c00161{word-spacing:14.013820px;}
.ws6_c00161{word-spacing:15.777288px;}
.ws9_c00161{word-spacing:68.363519px;}
.fc0_c00161{color:transparent;}
.fs0_c00161{font-size:54.000000px;}
.y0_c00161{bottom:0.000000px;}
.y2f_c00161{bottom:142.950000px;}
.y2e_c00161{bottom:159.450000px;}
.y2d_c00161{bottom:174.900000px;}
.y2c_c00161{bottom:190.500000px;}
.y2b_c00161{bottom:206.250000px;}
.y2a_c00161{bottom:221.700000px;}
.y29_c00161{bottom:237.600000px;}
.y28_c00161{bottom:253.050000px;}
.y27_c00161{bottom:268.950000px;}
.y26_c00161{bottom:284.400000px;}
.y25_c00161{bottom:299.850000px;}
.y24_c00161{bottom:315.300000px;}
.y23_c00161{bottom:342.600000px;}
.y22_c00161{bottom:362.700000px;}
.y21_c00161{bottom:382.500000px;}
.y20_c00161{bottom:402.600000px;}
.y1f_c00161{bottom:422.400000px;}
.y1e_c00161{bottom:442.200000px;}
.y1d_c00161{bottom:462.300000px;}
.y1c_c00161{bottom:482.100000px;}
.y1b_c00161{bottom:502.200000px;}
.y1a_c00161{bottom:522.000000px;}
.y19_c00161{bottom:541.800000px;}
.y18_c00161{bottom:561.900000px;}
.y17_c00161{bottom:581.700000px;}
.y16_c00161{bottom:601.800000px;}
.y15_c00161{bottom:621.900000px;}
.y14_c00161{bottom:642.000000px;}
.y13_c00161{bottom:661.800000px;}
.y12_c00161{bottom:681.900000px;}
.y11_c00161{bottom:702.000000px;}
.y10_c00161{bottom:721.800000px;}
.yf_c00161{bottom:742.050000px;}
.ye_c00161{bottom:762.150000px;}
.yd_c00161{bottom:782.250000px;}
.yc_c00161{bottom:802.350000px;}
.yb_c00161{bottom:822.450000px;}
.ya_c00161{bottom:842.550000px;}
.y9_c00161{bottom:862.050000px;}
.y8_c00161{bottom:881.850000px;}
.y7_c00161{bottom:901.950000px;}
.y6_c00161{bottom:922.050000px;}
.y5_c00161{bottom:942.150000px;}
.y4_c00161{bottom:962.250000px;}
.y3_c00161{bottom:982.050000px;}
.y2_c00161{bottom:1001.850000px;}
.y1_c00161{bottom:1040.400000px;}
.h2_c00161{height:54.000000px;}
.h1_c00161{height:1167.750000px;}
.h0_c00161{height:1167.839997px;}
.w1_c00161{width:920.250000px;}
.w0_c00161{width:920.519990px;}
.x0_c00161{left:0.000000px;}
.xf9_c00161{left:97.200000px;}
.x89_c00161{left:98.400000px;}
.x35_c00161{left:99.750000px;}
.x4_c00161{left:100.800000px;}
.x12e_c00161{left:111.300000px;}
.x13b_c00161{left:113.400000px;}
.x11c_c00161{left:116.250000px;}
.x134_c00161{left:117.300000px;}
.x14_c00161{left:119.250000px;}
.x146_c00161{left:120.600000px;}
.x10f_c00161{left:121.800000px;}
.x23_c00161{left:123.600000px;}
.x11d_c00161{left:126.000000px;}
.x5e_c00161{left:127.800000px;}
.xe6_c00161{left:128.850000px;}
.xa6_c00161{left:129.900000px;}
.x53_c00161{left:130.950000px;}
.xc5_c00161{left:133.500000px;}
.x5_c00161{left:134.700000px;}
.xfa_c00161{left:135.750000px;}
.x13d_c00161{left:137.100000px;}
.x91_c00161{left:138.450000px;}
.x7e_c00161{left:141.750000px;}
.x12a_c00161{left:144.000000px;}
.x74_c00161{left:146.250000px;}
.xef_c00161{left:147.900000px;}
.x44_c00161{left:153.900000px;}
.xd2_c00161{left:155.400000px;}
.xe7_c00161{left:157.350000px;}
.x113_c00161{left:158.700000px;}
.x24_c00161{left:162.150000px;}
.xbf_c00161{left:164.700000px;}
.xe1_c00161{left:168.000000px;}
.x36_c00161{left:169.200000px;}
.x131_c00161{left:170.850000px;}
.x13e_c00161{left:172.350000px;}
.x45_c00161{left:173.700000px;}
.x15_c00161{left:175.800000px;}
.x147_c00161{left:177.450000px;}
.x5f_c00161{left:178.500000px;}
.x12b_c00161{left:180.000000px;}
.x6b_c00161{left:181.350000px;}
.x8a_c00161{left:183.300000px;}
.x10b_c00161{left:185.400000px;}
.x46_c00161{left:187.350000px;}
.x13f_c00161{left:188.850000px;}
.x7f_c00161{left:189.900000px;}
.xae_c00161{left:193.050000px;}
.x114_c00161{left:195.000000px;}
.x37_c00161{left:196.950000px;}
.xd6_c00161{left:199.800000px;}
.xc6_c00161{left:201.150000px;}
.x110_c00161{left:202.500000px;}
.x6_c00161{left:203.850000px;}
.x92_c00161{left:205.350000px;}
.x11e_c00161{left:206.700000px;}
.x135_c00161{left:208.650000px;}
.xd3_c00161{left:210.900000px;}
.x9b_c00161{left:211.950000px;}
.x25_c00161{left:213.600000px;}
.x12c_c00161{left:218.100000px;}
.xb7_c00161{left:219.150000px;}
.x6c_c00161{left:220.200000px;}
.x12f_c00161{left:222.600000px;}
.x122_c00161{left:223.650000px;}
.x60_c00161{left:225.000000px;}
.x75_c00161{left:226.500000px;}
.x80_c00161{left:228.000000px;}
.x102_c00161{left:229.350000px;}
.x16_c00161{left:230.550000px;}
.xc0_c00161{left:231.900000px;}
.x54_c00161{left:233.550000px;}
.x11f_c00161{left:235.200000px;}
.xdb_c00161{left:236.400000px;}
.x26_c00161{left:239.100000px;}
.x8b_c00161{left:240.900000px;}
.x7_c00161{left:242.700000px;}
.x47_c00161{left:245.250000px;}
.xe2_c00161{left:247.500000px;}
.xfb_c00161{left:250.500000px;}
.xb8_c00161{left:251.850000px;}
.x148_c00161{left:253.050000px;}
.xf5_c00161{left:256.200000px;}
.x17_c00161{left:258.300000px;}
.xf0_c00161{left:260.850000px;}
.x118_c00161{left:261.900000px;}
.x48_c00161{left:264.300000px;}
.xb9_c00161{left:267.000000px;}
.x55_c00161{left:268.500000px;}
.xa7_c00161{left:270.300000px;}
.xfc_c00161{left:272.850000px;}
.x27_c00161{left:274.050000px;}
.x140_c00161{left:275.250000px;}
.xa1_c00161{left:276.450000px;}
.xdc_c00161{left:278.850000px;}
.x8_c00161{left:280.500000px;}
.xc7_c00161{left:282.900000px;}
.x9c_c00161{left:284.700000px;}
.x76_c00161{left:287.400000px;}
.x136_c00161{left:289.650000px;}
.xe3_c00161{left:290.700000px;}
.x93_c00161{left:292.500000px;}
.x28_c00161{left:293.550000px;}
.x81_c00161{left:297.900000px;}
.x10c_c00161{left:300.150000px;}
.xa2_c00161{left:302.400000px;}
.xdd_c00161{left:307.650000px;}
.xd7_c00161{left:311.400000px;}
.x49_c00161{left:313.200000px;}
.x61_c00161{left:314.400000px;}
.x77_c00161{left:315.450000px;}
.xfd_c00161{left:317.550000px;}
.xc1_c00161{left:319.950000px;}
.x119_c00161{left:321.300000px;}
.x38_c00161{left:326.550000px;}
.x18_c00161{left:329.250000px;}
.x62_c00161{left:332.400000px;}
.x6d_c00161{left:334.950000px;}
.x94_c00161{left:337.800000px;}
.xf6_c00161{left:339.000000px;}
.x56_c00161{left:342.300000px;}
.xfe_c00161{left:344.250000px;}
.x9_c00161{left:348.150000px;}
.xc8_c00161{left:349.800000px;}
.x11a_c00161{left:351.600000px;}
.xce_c00161{left:353.850000px;}
.x39_c00161{left:355.050000px;}
.x137_c00161{left:359.100000px;}
.x78_c00161{left:360.150000px;}
.x4a_c00161{left:361.500000px;}
.x95_c00161{left:362.700000px;}
.x1_c00161{left:365.400000px;}
.x8c_c00161{left:366.900000px;}
.x19_c00161{left:368.100000px;}
.xaf_c00161{left:369.750000px;}
.x82_c00161{left:370.950000px;}
.x6e_c00161{left:373.050000px;}
.xe8_c00161{left:374.250000px;}
.x63_c00161{left:378.450000px;}
.x29_c00161{left:380.100000px;}
.x13c_c00161{left:381.300000px;}
.xa_c00161{left:382.650000px;}
.xe4_c00161{left:384.750000px;}
.xc2_c00161{left:386.250000px;}
.x141_c00161{left:387.300000px;}
.xa3_c00161{left:388.350000px;}
.x1a_c00161{left:389.400000px;}
.x115_c00161{left:390.600000px;}
.x103_c00161{left:391.650000px;}
.xde_c00161{left:393.600000px;}
.x8d_c00161{left:396.450000px;}
.x9d_c00161{left:398.100000px;}
.x4b_c00161{left:401.400000px;}
.x120_c00161{left:402.600000px;}
.x128_c00161{left:404.100000px;}
.xd8_c00161{left:405.300000px;}
.x64_c00161{left:406.500000px;}
.x83_c00161{left:407.700000px;}
.xa4_c00161{left:409.200000px;}
.x2a_c00161{left:410.700000px;}
.xd4_c00161{left:415.950000px;}
.x57_c00161{left:418.200000px;}
.x10d_c00161{left:419.700000px;}
.x3a_c00161{left:421.350000px;}
.x1b_c00161{left:426.450000px;}
.x79_c00161{left:427.500000px;}
.x2b_c00161{left:429.000000px;}
.xff_c00161{left:431.700000px;}
.x2_c00161{left:433.800000px;}
.xa8_c00161{left:435.000000px;}
.xe9_c00161{left:437.250000px;}
.xb0_c00161{left:439.500000px;}
.x3b_c00161{left:441.150000px;}
.x1c_c00161{left:444.450000px;}
.x11b_c00161{left:447.000000px;}
.xb_c00161{left:452.100000px;}
.x8e_c00161{left:455.550000px;}
.xd5_c00161{left:457.350000px;}
.x104_c00161{left:458.550000px;}
.x4c_c00161{left:460.050000px;}
.x2c_c00161{left:463.500000px;}
.x58_c00161{left:465.000000px;}
.x6f_c00161{left:466.350000px;}
.xdf_c00161{left:467.700000px;}
.xc9_c00161{left:469.350000px;}
.xf2_c00161{left:472.350000px;}
.xc_c00161{left:474.000000px;}
.x123_c00161{left:475.350000px;}
.xcf_c00161{left:476.700000px;}
.x96_c00161{left:477.900000px;}
.x3c_c00161{left:482.550000px;}
.x84_c00161{left:485.100000px;}
.x105_c00161{left:487.050000px;}
.xa5_c00161{left:490.200000px;}
.xea_c00161{left:491.550000px;}
.x59_c00161{left:493.050000px;}
.xd0_c00161{left:495.000000px;}
.xf7_c00161{left:496.200000px;}
.xf1_c00161{left:498.150000px;}
.xa9_c00161{left:499.800000px;}
.x7a_c00161{left:501.300000px;}
.x130_c00161{left:502.800000px;}
.xd_c00161{left:506.100000px;}
.x100_c00161{left:509.100000px;}
.x106_c00161{left:511.500000px;}
.x65_c00161{left:512.700000px;}
.xba_c00161{left:514.500000px;}
.xb1_c00161{left:516.600000px;}
.x3d_c00161{left:518.250000px;}
.x129_c00161{left:520.050000px;}
.x2d_c00161{left:521.400000px;}
.x1d_c00161{left:522.600000px;}
.x70_c00161{left:525.300000px;}
.x5a_c00161{left:526.500000px;}
.x132_c00161{left:528.150000px;}
.x4d_c00161{left:530.250000px;}
.xd9_c00161{left:532.050000px;}
.x8f_c00161{left:534.150000px;}
.x97_c00161{left:535.200000px;}
.xe0_c00161{left:537.600000px;}
.x121_c00161{left:538.950000px;}
.x2e_c00161{left:540.900000px;}
.xf3_c00161{left:543.600000px;}
.xe_c00161{left:546.000000px;}
.xe5_c00161{left:547.500000px;}
.x66_c00161{left:549.750000px;}
.xc3_c00161{left:552.150000px;}
.x5b_c00161{left:554.550000px;}
.x98_c00161{left:555.750000px;}
.x3e_c00161{left:558.150000px;}
.x107_c00161{left:559.800000px;}
.x9e_c00161{left:562.200000px;}
.xaa_c00161{left:563.400000px;}
.x138_c00161{left:564.750000px;}
.x12d_c00161{left:566.250000px;}
.x142_c00161{left:567.300000px;}
.x1e_c00161{left:569.400000px;}
.x144_c00161{left:571.350000px;}
.x101_c00161{left:572.700000px;}
.x2f_c00161{left:575.100000px;}
.x67_c00161{left:577.500000px;}
.xeb_c00161{left:579.000000px;}
.x108_c00161{left:581.100000px;}
.x3f_c00161{left:583.650000px;}
.x71_c00161{left:584.700000px;}
.x143_c00161{left:586.050000px;}
.xca_c00161{left:587.850000px;}
.xf8_c00161{left:589.350000px;}
.x99_c00161{left:592.050000px;}
.x30_c00161{left:594.600000px;}
.x111_c00161{left:596.550000px;}
.x85_c00161{left:599.850000px;}
.xb2_c00161{left:601.200000px;}
.xf_c00161{left:602.550000px;}
.x7b_c00161{left:603.900000px;}
.x109_c00161{left:606.600000px;}
.xbb_c00161{left:608.700000px;}
.xf4_c00161{left:612.300000px;}
.x145_c00161{left:613.800000px;}
.xec_c00161{left:615.750000px;}
.x31_c00161{left:617.700000px;}
.x4e_c00161{left:621.000000px;}
.x124_c00161{left:622.350000px;}
.x7c_c00161{left:624.750000px;}
.x40_c00161{left:625.800000px;}
.x9f_c00161{left:628.500000px;}
.xed_c00161{left:630.450000px;}
.x72_c00161{left:631.500000px;}
.x68_c00161{left:633.600000px;}
.xc4_c00161{left:635.700000px;}
.x116_c00161{left:640.050000px;}
.x10_c00161{left:641.100000px;}
.x1f_c00161{left:642.900000px;}
.xab_c00161{left:643.950000px;}
.x32_c00161{left:645.750000px;}
.xd1_c00161{left:649.350000px;}
.x139_c00161{left:650.850000px;}
.xcb_c00161{left:652.650000px;}
.xac_c00161{left:654.750000px;}
.xbc_c00161{left:656.250000px;}
.x86_c00161{left:657.450000px;}
.x11_c00161{left:658.800000px;}
.xda_c00161{left:660.150000px;}
.x9a_c00161{left:661.950000px;}
.xb3_c00161{left:664.200000px;}
.x41_c00161{left:667.200000px;}
.x12_c00161{left:669.300000px;}
.x125_c00161{left:671.700000px;}
.x73_c00161{left:672.900000px;}
.x90_c00161{left:675.300000px;}
.x4f_c00161{left:676.800000px;}
.xad_c00161{left:678.900000px;}
.xcc_c00161{left:681.150000px;}
.x10a_c00161{left:683.250000px;}
.xb4_c00161{left:684.300000px;}
.x69_c00161{left:687.300000px;}
.x87_c00161{left:688.800000px;}
.xa0_c00161{left:690.750000px;}
.x20_c00161{left:691.800000px;}
.xbd_c00161{left:693.750000px;}
.x133_c00161{left:695.850000px;}
.xee_c00161{left:697.500000px;}
.x5c_c00161{left:698.850000px;}
.x50_c00161{left:703.800000px;}
.x13_c00161{left:705.300000px;}
.x42_c00161{left:706.800000px;}
.x10e_c00161{left:709.050000px;}
.x33_c00161{left:710.250000px;}
.xb5_c00161{left:712.050000px;}
.x126_c00161{left:714.150000px;}
.x7d_c00161{left:716.550000px;}
.x5d_c00161{left:718.650000px;}
.x21_c00161{left:722.400000px;}
.xbe_c00161{left:724.050000px;}
.x6a_c00161{left:726.150000px;}
.x51_c00161{left:728.250000px;}
.x117_c00161{left:729.300000px;}
.x43_c00161{left:732.300000px;}
.x88_c00161{left:734.850000px;}
.x127_c00161{left:738.300000px;}
.xcd_c00161{left:742.050000px;}
.x112_c00161{left:744.150000px;}
.x52_c00161{left:746.250000px;}
.x22_c00161{left:747.900000px;}
.x3_c00161{left:749.850000px;}
.xb6_c00161{left:753.750000px;}
.x34_c00161{left:755.250000px;}
.x13a_c00161{left:758.700000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.wsb_c00161{word-spacing:-7.029005pt;}
.ws7_c00161{word-spacing:-4.848485pt;}
.wsa_c00161{word-spacing:-4.666667pt;}
.ws3_c00161{word-spacing:-4.374474pt;}
.ws5_c00161{word-spacing:-2.613745pt;}
.wsd_c00161{word-spacing:0.000000pt;}
.ws4_c00161{word-spacing:2.285714pt;}
.ws8_c00161{word-spacing:4.711215pt;}
.wsc_c00161{word-spacing:4.969697pt;}
.ws1_c00161{word-spacing:6.794561pt;}
.ws0_c00161{word-spacing:11.703704pt;}
.ws2_c00161{word-spacing:12.456729pt;}
.ws6_c00161{word-spacing:14.024256pt;}
.ws9_c00161{word-spacing:60.767572pt;}
.fs0_c00161{font-size:48.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y2f_c00161{bottom:127.066667pt;}
.y2e_c00161{bottom:141.733333pt;}
.y2d_c00161{bottom:155.466667pt;}
.y2c_c00161{bottom:169.333333pt;}
.y2b_c00161{bottom:183.333333pt;}
.y2a_c00161{bottom:197.066667pt;}
.y29_c00161{bottom:211.200000pt;}
.y28_c00161{bottom:224.933333pt;}
.y27_c00161{bottom:239.066667pt;}
.y26_c00161{bottom:252.800000pt;}
.y25_c00161{bottom:266.533333pt;}
.y24_c00161{bottom:280.266667pt;}
.y23_c00161{bottom:304.533333pt;}
.y22_c00161{bottom:322.400000pt;}
.y21_c00161{bottom:340.000000pt;}
.y20_c00161{bottom:357.866667pt;}
.y1f_c00161{bottom:375.466667pt;}
.y1e_c00161{bottom:393.066667pt;}
.y1d_c00161{bottom:410.933333pt;}
.y1c_c00161{bottom:428.533333pt;}
.y1b_c00161{bottom:446.400000pt;}
.y1a_c00161{bottom:464.000000pt;}
.y19_c00161{bottom:481.600000pt;}
.y18_c00161{bottom:499.466667pt;}
.y17_c00161{bottom:517.066667pt;}
.y16_c00161{bottom:534.933333pt;}
.y15_c00161{bottom:552.800000pt;}
.y14_c00161{bottom:570.666667pt;}
.y13_c00161{bottom:588.266667pt;}
.y12_c00161{bottom:606.133333pt;}
.y11_c00161{bottom:624.000000pt;}
.y10_c00161{bottom:641.600000pt;}
.yf_c00161{bottom:659.600000pt;}
.ye_c00161{bottom:677.466667pt;}
.yd_c00161{bottom:695.333333pt;}
.yc_c00161{bottom:713.200000pt;}
.yb_c00161{bottom:731.066667pt;}
.ya_c00161{bottom:748.933333pt;}
.y9_c00161{bottom:766.266667pt;}
.y8_c00161{bottom:783.866667pt;}
.y7_c00161{bottom:801.733333pt;}
.y6_c00161{bottom:819.600000pt;}
.y5_c00161{bottom:837.466667pt;}
.y4_c00161{bottom:855.333333pt;}
.y3_c00161{bottom:872.933333pt;}
.y2_c00161{bottom:890.533333pt;}
.y1_c00161{bottom:924.800000pt;}
.h2_c00161{height:48.000000pt;}
.h1_c00161{height:1038.000000pt;}
.h0_c00161{height:1038.079997pt;}
.w1_c00161{width:818.000000pt;}
.w0_c00161{width:818.239991pt;}
.x0_c00161{left:0.000000pt;}
.xf9_c00161{left:86.400000pt;}
.x89_c00161{left:87.466667pt;}
.x35_c00161{left:88.666667pt;}
.x4_c00161{left:89.600000pt;}
.x12e_c00161{left:98.933333pt;}
.x13b_c00161{left:100.800000pt;}
.x11c_c00161{left:103.333333pt;}
.x134_c00161{left:104.266667pt;}
.x14_c00161{left:106.000000pt;}
.x146_c00161{left:107.200000pt;}
.x10f_c00161{left:108.266667pt;}
.x23_c00161{left:109.866667pt;}
.x11d_c00161{left:112.000000pt;}
.x5e_c00161{left:113.600000pt;}
.xe6_c00161{left:114.533333pt;}
.xa6_c00161{left:115.466667pt;}
.x53_c00161{left:116.400000pt;}
.xc5_c00161{left:118.666667pt;}
.x5_c00161{left:119.733333pt;}
.xfa_c00161{left:120.666667pt;}
.x13d_c00161{left:121.866667pt;}
.x91_c00161{left:123.066667pt;}
.x7e_c00161{left:126.000000pt;}
.x12a_c00161{left:128.000000pt;}
.x74_c00161{left:130.000000pt;}
.xef_c00161{left:131.466667pt;}
.x44_c00161{left:136.800000pt;}
.xd2_c00161{left:138.133333pt;}
.xe7_c00161{left:139.866667pt;}
.x113_c00161{left:141.066667pt;}
.x24_c00161{left:144.133333pt;}
.xbf_c00161{left:146.400000pt;}
.xe1_c00161{left:149.333333pt;}
.x36_c00161{left:150.400000pt;}
.x131_c00161{left:151.866667pt;}
.x13e_c00161{left:153.200000pt;}
.x45_c00161{left:154.400000pt;}
.x15_c00161{left:156.266667pt;}
.x147_c00161{left:157.733333pt;}
.x5f_c00161{left:158.666667pt;}
.x12b_c00161{left:160.000000pt;}
.x6b_c00161{left:161.200000pt;}
.x8a_c00161{left:162.933333pt;}
.x10b_c00161{left:164.800000pt;}
.x46_c00161{left:166.533333pt;}
.x13f_c00161{left:167.866667pt;}
.x7f_c00161{left:168.800000pt;}
.xae_c00161{left:171.600000pt;}
.x114_c00161{left:173.333333pt;}
.x37_c00161{left:175.066667pt;}
.xd6_c00161{left:177.600000pt;}
.xc6_c00161{left:178.800000pt;}
.x110_c00161{left:180.000000pt;}
.x6_c00161{left:181.200000pt;}
.x92_c00161{left:182.533333pt;}
.x11e_c00161{left:183.733333pt;}
.x135_c00161{left:185.466667pt;}
.xd3_c00161{left:187.466667pt;}
.x9b_c00161{left:188.400000pt;}
.x25_c00161{left:189.866667pt;}
.x12c_c00161{left:193.866667pt;}
.xb7_c00161{left:194.800000pt;}
.x6c_c00161{left:195.733333pt;}
.x12f_c00161{left:197.866667pt;}
.x122_c00161{left:198.800000pt;}
.x60_c00161{left:200.000000pt;}
.x75_c00161{left:201.333333pt;}
.x80_c00161{left:202.666667pt;}
.x102_c00161{left:203.866667pt;}
.x16_c00161{left:204.933333pt;}
.xc0_c00161{left:206.133333pt;}
.x54_c00161{left:207.600000pt;}
.x11f_c00161{left:209.066667pt;}
.xdb_c00161{left:210.133333pt;}
.x26_c00161{left:212.533333pt;}
.x8b_c00161{left:214.133333pt;}
.x7_c00161{left:215.733333pt;}
.x47_c00161{left:218.000000pt;}
.xe2_c00161{left:220.000000pt;}
.xfb_c00161{left:222.666667pt;}
.xb8_c00161{left:223.866667pt;}
.x148_c00161{left:224.933333pt;}
.xf5_c00161{left:227.733333pt;}
.x17_c00161{left:229.600000pt;}
.xf0_c00161{left:231.866667pt;}
.x118_c00161{left:232.800000pt;}
.x48_c00161{left:234.933333pt;}
.xb9_c00161{left:237.333333pt;}
.x55_c00161{left:238.666667pt;}
.xa7_c00161{left:240.266667pt;}
.xfc_c00161{left:242.533333pt;}
.x27_c00161{left:243.600000pt;}
.x140_c00161{left:244.666667pt;}
.xa1_c00161{left:245.733333pt;}
.xdc_c00161{left:247.866667pt;}
.x8_c00161{left:249.333333pt;}
.xc7_c00161{left:251.466667pt;}
.x9c_c00161{left:253.066667pt;}
.x76_c00161{left:255.466667pt;}
.x136_c00161{left:257.466667pt;}
.xe3_c00161{left:258.400000pt;}
.x93_c00161{left:260.000000pt;}
.x28_c00161{left:260.933333pt;}
.x81_c00161{left:264.800000pt;}
.x10c_c00161{left:266.800000pt;}
.xa2_c00161{left:268.800000pt;}
.xdd_c00161{left:273.466667pt;}
.xd7_c00161{left:276.800000pt;}
.x49_c00161{left:278.400000pt;}
.x61_c00161{left:279.466667pt;}
.x77_c00161{left:280.400000pt;}
.xfd_c00161{left:282.266667pt;}
.xc1_c00161{left:284.400000pt;}
.x119_c00161{left:285.600000pt;}
.x38_c00161{left:290.266667pt;}
.x18_c00161{left:292.666667pt;}
.x62_c00161{left:295.466667pt;}
.x6d_c00161{left:297.733333pt;}
.x94_c00161{left:300.266667pt;}
.xf6_c00161{left:301.333333pt;}
.x56_c00161{left:304.266667pt;}
.xfe_c00161{left:306.000000pt;}
.x9_c00161{left:309.466667pt;}
.xc8_c00161{left:310.933333pt;}
.x11a_c00161{left:312.533333pt;}
.xce_c00161{left:314.533333pt;}
.x39_c00161{left:315.600000pt;}
.x137_c00161{left:319.200000pt;}
.x78_c00161{left:320.133333pt;}
.x4a_c00161{left:321.333333pt;}
.x95_c00161{left:322.400000pt;}
.x1_c00161{left:324.800000pt;}
.x8c_c00161{left:326.133333pt;}
.x19_c00161{left:327.200000pt;}
.xaf_c00161{left:328.666667pt;}
.x82_c00161{left:329.733333pt;}
.x6e_c00161{left:331.600000pt;}
.xe8_c00161{left:332.666667pt;}
.x63_c00161{left:336.400000pt;}
.x29_c00161{left:337.866667pt;}
.x13c_c00161{left:338.933333pt;}
.xa_c00161{left:340.133333pt;}
.xe4_c00161{left:342.000000pt;}
.xc2_c00161{left:343.333333pt;}
.x141_c00161{left:344.266667pt;}
.xa3_c00161{left:345.200000pt;}
.x1a_c00161{left:346.133333pt;}
.x115_c00161{left:347.200000pt;}
.x103_c00161{left:348.133333pt;}
.xde_c00161{left:349.866667pt;}
.x8d_c00161{left:352.400000pt;}
.x9d_c00161{left:353.866667pt;}
.x4b_c00161{left:356.800000pt;}
.x120_c00161{left:357.866667pt;}
.x128_c00161{left:359.200000pt;}
.xd8_c00161{left:360.266667pt;}
.x64_c00161{left:361.333333pt;}
.x83_c00161{left:362.400000pt;}
.xa4_c00161{left:363.733333pt;}
.x2a_c00161{left:365.066667pt;}
.xd4_c00161{left:369.733333pt;}
.x57_c00161{left:371.733333pt;}
.x10d_c00161{left:373.066667pt;}
.x3a_c00161{left:374.533333pt;}
.x1b_c00161{left:379.066667pt;}
.x79_c00161{left:380.000000pt;}
.x2b_c00161{left:381.333333pt;}
.xff_c00161{left:383.733333pt;}
.x2_c00161{left:385.600000pt;}
.xa8_c00161{left:386.666667pt;}
.xe9_c00161{left:388.666667pt;}
.xb0_c00161{left:390.666667pt;}
.x3b_c00161{left:392.133333pt;}
.x1c_c00161{left:395.066667pt;}
.x11b_c00161{left:397.333333pt;}
.xb_c00161{left:401.866667pt;}
.x8e_c00161{left:404.933333pt;}
.xd5_c00161{left:406.533333pt;}
.x104_c00161{left:407.600000pt;}
.x4c_c00161{left:408.933333pt;}
.x2c_c00161{left:412.000000pt;}
.x58_c00161{left:413.333333pt;}
.x6f_c00161{left:414.533333pt;}
.xdf_c00161{left:415.733333pt;}
.xc9_c00161{left:417.200000pt;}
.xf2_c00161{left:419.866667pt;}
.xc_c00161{left:421.333333pt;}
.x123_c00161{left:422.533333pt;}
.xcf_c00161{left:423.733333pt;}
.x96_c00161{left:424.800000pt;}
.x3c_c00161{left:428.933333pt;}
.x84_c00161{left:431.200000pt;}
.x105_c00161{left:432.933333pt;}
.xa5_c00161{left:435.733333pt;}
.xea_c00161{left:436.933333pt;}
.x59_c00161{left:438.266667pt;}
.xd0_c00161{left:440.000000pt;}
.xf7_c00161{left:441.066667pt;}
.xf1_c00161{left:442.800000pt;}
.xa9_c00161{left:444.266667pt;}
.x7a_c00161{left:445.600000pt;}
.x130_c00161{left:446.933333pt;}
.xd_c00161{left:449.866667pt;}
.x100_c00161{left:452.533333pt;}
.x106_c00161{left:454.666667pt;}
.x65_c00161{left:455.733333pt;}
.xba_c00161{left:457.333333pt;}
.xb1_c00161{left:459.200000pt;}
.x3d_c00161{left:460.666667pt;}
.x129_c00161{left:462.266667pt;}
.x2d_c00161{left:463.466667pt;}
.x1d_c00161{left:464.533333pt;}
.x70_c00161{left:466.933333pt;}
.x5a_c00161{left:468.000000pt;}
.x132_c00161{left:469.466667pt;}
.x4d_c00161{left:471.333333pt;}
.xd9_c00161{left:472.933333pt;}
.x8f_c00161{left:474.800000pt;}
.x97_c00161{left:475.733333pt;}
.xe0_c00161{left:477.866667pt;}
.x121_c00161{left:479.066667pt;}
.x2e_c00161{left:480.800000pt;}
.xf3_c00161{left:483.200000pt;}
.xe_c00161{left:485.333333pt;}
.xe5_c00161{left:486.666667pt;}
.x66_c00161{left:488.666667pt;}
.xc3_c00161{left:490.800000pt;}
.x5b_c00161{left:492.933333pt;}
.x98_c00161{left:494.000000pt;}
.x3e_c00161{left:496.133333pt;}
.x107_c00161{left:497.600000pt;}
.x9e_c00161{left:499.733333pt;}
.xaa_c00161{left:500.800000pt;}
.x138_c00161{left:502.000000pt;}
.x12d_c00161{left:503.333333pt;}
.x142_c00161{left:504.266667pt;}
.x1e_c00161{left:506.133333pt;}
.x144_c00161{left:507.866667pt;}
.x101_c00161{left:509.066667pt;}
.x2f_c00161{left:511.200000pt;}
.x67_c00161{left:513.333333pt;}
.xeb_c00161{left:514.666667pt;}
.x108_c00161{left:516.533333pt;}
.x3f_c00161{left:518.800000pt;}
.x71_c00161{left:519.733333pt;}
.x143_c00161{left:520.933333pt;}
.xca_c00161{left:522.533333pt;}
.xf8_c00161{left:523.866667pt;}
.x99_c00161{left:526.266667pt;}
.x30_c00161{left:528.533333pt;}
.x111_c00161{left:530.266667pt;}
.x85_c00161{left:533.200000pt;}
.xb2_c00161{left:534.400000pt;}
.xf_c00161{left:535.600000pt;}
.x7b_c00161{left:536.800000pt;}
.x109_c00161{left:539.200000pt;}
.xbb_c00161{left:541.066667pt;}
.xf4_c00161{left:544.266667pt;}
.x145_c00161{left:545.600000pt;}
.xec_c00161{left:547.333333pt;}
.x31_c00161{left:549.066667pt;}
.x4e_c00161{left:552.000000pt;}
.x124_c00161{left:553.200000pt;}
.x7c_c00161{left:555.333333pt;}
.x40_c00161{left:556.266667pt;}
.x9f_c00161{left:558.666667pt;}
.xed_c00161{left:560.400000pt;}
.x72_c00161{left:561.333333pt;}
.x68_c00161{left:563.200000pt;}
.xc4_c00161{left:565.066667pt;}
.x116_c00161{left:568.933333pt;}
.x10_c00161{left:569.866667pt;}
.x1f_c00161{left:571.466667pt;}
.xab_c00161{left:572.400000pt;}
.x32_c00161{left:574.000000pt;}
.xd1_c00161{left:577.200000pt;}
.x139_c00161{left:578.533333pt;}
.xcb_c00161{left:580.133333pt;}
.xac_c00161{left:582.000000pt;}
.xbc_c00161{left:583.333333pt;}
.x86_c00161{left:584.400000pt;}
.x11_c00161{left:585.600000pt;}
.xda_c00161{left:586.800000pt;}
.x9a_c00161{left:588.400000pt;}
.xb3_c00161{left:590.400000pt;}
.x41_c00161{left:593.066667pt;}
.x12_c00161{left:594.933333pt;}
.x125_c00161{left:597.066667pt;}
.x73_c00161{left:598.133333pt;}
.x90_c00161{left:600.266667pt;}
.x4f_c00161{left:601.600000pt;}
.xad_c00161{left:603.466667pt;}
.xcc_c00161{left:605.466667pt;}
.x10a_c00161{left:607.333333pt;}
.xb4_c00161{left:608.266667pt;}
.x69_c00161{left:610.933333pt;}
.x87_c00161{left:612.266667pt;}
.xa0_c00161{left:614.000000pt;}
.x20_c00161{left:614.933333pt;}
.xbd_c00161{left:616.666667pt;}
.x133_c00161{left:618.533333pt;}
.xee_c00161{left:620.000000pt;}
.x5c_c00161{left:621.200000pt;}
.x50_c00161{left:625.600000pt;}
.x13_c00161{left:626.933333pt;}
.x42_c00161{left:628.266667pt;}
.x10e_c00161{left:630.266667pt;}
.x33_c00161{left:631.333333pt;}
.xb5_c00161{left:632.933333pt;}
.x126_c00161{left:634.800000pt;}
.x7d_c00161{left:636.933333pt;}
.x5d_c00161{left:638.800000pt;}
.x21_c00161{left:642.133333pt;}
.xbe_c00161{left:643.600000pt;}
.x6a_c00161{left:645.466667pt;}
.x51_c00161{left:647.333333pt;}
.x117_c00161{left:648.266667pt;}
.x43_c00161{left:650.933333pt;}
.x88_c00161{left:653.200000pt;}
.x127_c00161{left:656.266667pt;}
.xcd_c00161{left:659.600000pt;}
.x112_c00161{left:661.466667pt;}
.x52_c00161{left:663.333333pt;}
.x22_c00161{left:664.800000pt;}
.x3_c00161{left:666.533333pt;}
.xb6_c00161{left:670.000000pt;}
.x34_c00161{left:671.333333pt;}
.x13a_c00161{left:674.400000pt;}
}





/* 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_c00162 {
    display:none;
  }
  .loading-indicator_c00162.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00162 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_c00162 { 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_c00162" -> "#page-container .classname_c00162")
 */
.pf_c00162 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00162 { /* 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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00162 { /* 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_c00162 { /* 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_c00162 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00162 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00162 {overflow:visible;}
  }
}
.c_c00162 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00162 { /* 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_c00162:after { /* webkit #35443 */
  content: '';
}
.t_c00162:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00162 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 */
}
.__c00162 { /* 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_c00162 { /* info for Javascript */
  display:none;
}
.l_c00162 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00162 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00162 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00162: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_c00162 {
    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_c00162.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00162.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_c00162 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00162{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00162;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.000000;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;}
.m16_c00162{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00162{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00162{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00162{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00162{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00162{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00162{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00162{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00162{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m89_c00162{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m20_c00162{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.me_c00162{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m71_c00162{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00162{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00162{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00162{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m50_c00162{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m78_c00162{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00162{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m44_c00162{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00162{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m75_c00162{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m62_c00162{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m74_c00162{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m76_c00162{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00162{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m66_c00162{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00162{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m49_c00162{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00162{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00162{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m92_c00162{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00162{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m34_c00162{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00162{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00162{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00162{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m73_c00162{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m47_c00162{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00162{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m40_c00162{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00162{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00162{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maa_c00162{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00162{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00162{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.mc_c00162{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m39_c00162{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m87_c00162{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00162{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00162{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m85_c00162{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m38_c00162{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00162{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m43_c00162{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00162{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00162{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00162{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m36_c00162{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m93_c00162{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m30_c00162{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m98_c00162{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00162{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m25_c00162{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m51_c00162{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m79_c00162{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m69_c00162{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00162{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m86_c00162{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00162{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00162{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00162{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m82_c00162{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mab_c00162{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00162{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb_c00162{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m81_c00162{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00162{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);}
.m8d_c00162{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m90_c00162{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00162{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00162{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00162{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m96_c00162{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mad_c00162{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m60_c00162{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m0_c00162{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m58_c00162{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m65_c00162{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00162{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00162{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mac_c00162{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00162{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00162{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00162{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m97_c00162{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m72_c00162{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00162{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m35_c00162{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00162{vertical-align:0.000000px;}
.v1_c00162{vertical-align:3.000000px;}
.ls1_c00162{letter-spacing:0.000000px;}
.ls0_c00162{letter-spacing:209.564014px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{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__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00162{word-spacing:-8.571429px;}
.ws0_c00162{word-spacing:-5.714286px;}
.ws2_c00162{word-spacing:-4.861111px;}
.wsa_c00162{word-spacing:0.000000px;}
.ws3_c00162{word-spacing:2.738095px;}
.ws4_c00162{word-spacing:6.315789px;}
.ws6_c00162{word-spacing:6.527778px;}
.ws7_c00162{word-spacing:6.944444px;}
.ws5_c00162{word-spacing:22.647059px;}
.ws8_c00162{word-spacing:131.575548px;}
.ws9_c00162{word-spacing:221.333333px;}
._0_c00162{width:28.055556px;}
.fc0_c00162{color:transparent;}
.fs2_c00162{font-size:42.000000px;}
.fs1_c00162{font-size:48.000000px;}
.fs0_c00162{font-size:60.000000px;}
.y0_c00162{bottom:0.000000px;}
.y56_c00162{bottom:154.800000px;}
.y52_c00162{bottom:163.800000px;}
.y54_c00162{bottom:167.400000px;}
.y53_c00162{bottom:167.700000px;}
.y55_c00162{bottom:171.300000px;}
.y51_c00162{bottom:180.750000px;}
.y50_c00162{bottom:189.000000px;}
.y4f_c00162{bottom:202.050000px;}
.y4c_c00162{bottom:207.750000px;}
.y4a_c00162{bottom:208.050000px;}
.y49_c00162{bottom:208.500000px;}
.y4d_c00162{bottom:209.850000px;}
.y4b_c00162{bottom:211.650000px;}
.y48_c00162{bottom:214.200000px;}
.y4e_c00162{bottom:214.950000px;}
.y47_c00162{bottom:236.250000px;}
.y43_c00162{bottom:241.500000px;}
.y45_c00162{bottom:241.950000px;}
.y42_c00162{bottom:242.250000px;}
.y41_c00162{bottom:242.700000px;}
.y44_c00162{bottom:244.050000px;}
.y40_c00162{bottom:248.700000px;}
.y46_c00162{bottom:249.150000px;}
.y3c_c00162{bottom:269.250000px;}
.y3d_c00162{bottom:270.000000px;}
.y3b_c00162{bottom:270.300000px;}
.y3f_c00162{bottom:270.750000px;}
.y3a_c00162{bottom:271.050000px;}
.y3e_c00162{bottom:272.100000px;}
.y39_c00162{bottom:273.900000px;}
.y36_c00162{bottom:286.500000px;}
.y38_c00162{bottom:287.250000px;}
.y35_c00162{bottom:288.000000px;}
.y37_c00162{bottom:289.500000px;}
.y34_c00162{bottom:290.850000px;}
.y30_c00162{bottom:303.450000px;}
.y33_c00162{bottom:304.200000px;}
.y31_c00162{bottom:304.950000px;}
.y2f_c00162{bottom:305.250000px;}
.y32_c00162{bottom:306.300000px;}
.y2e_c00162{bottom:307.050000px;}
.y2b_c00162{bottom:341.250000px;}
.y2c_c00162{bottom:348.450000px;}
.y2d_c00162{bottom:352.800000px;}
.y2a_c00162{bottom:353.100000px;}
.y29_c00162{bottom:353.550000px;}
.y26_c00162{bottom:354.600000px;}
.y27_c00162{bottom:360.000000px;}
.y28_c00162{bottom:364.350000px;}
.y25_c00162{bottom:365.400000px;}
.y21_c00162{bottom:366.450000px;}
.y23_c00162{bottom:371.850000px;}
.y24_c00162{bottom:375.900000px;}
.y22_c00162{bottom:376.200000px;}
.y20_c00162{bottom:413.400000px;}
.y1f_c00162{bottom:433.200000px;}
.y1e_c00162{bottom:453.300000px;}
.y1d_c00162{bottom:473.100000px;}
.y1c_c00162{bottom:493.200000px;}
.y1b_c00162{bottom:513.300000px;}
.y1a_c00162{bottom:533.550000px;}
.y19_c00162{bottom:553.650000px;}
.y18_c00162{bottom:573.750000px;}
.y17_c00162{bottom:593.550000px;}
.y16_c00162{bottom:613.650000px;}
.y15_c00162{bottom:633.450000px;}
.y14_c00162{bottom:653.250000px;}
.y13_c00162{bottom:673.350000px;}
.y12_c00162{bottom:693.150000px;}
.y11_c00162{bottom:712.950000px;}
.y10_c00162{bottom:733.050000px;}
.yf_c00162{bottom:752.850000px;}
.ye_c00162{bottom:772.950000px;}
.yd_c00162{bottom:792.750000px;}
.yc_c00162{bottom:813.300000px;}
.yb_c00162{bottom:833.100000px;}
.ya_c00162{bottom:853.200000px;}
.y9_c00162{bottom:873.000000px;}
.y8_c00162{bottom:893.100000px;}
.y7_c00162{bottom:913.350000px;}
.y6_c00162{bottom:933.150000px;}
.y5_c00162{bottom:952.950000px;}
.y4_c00162{bottom:973.050000px;}
.y3_c00162{bottom:992.850000px;}
.y2_c00162{bottom:1012.650000px;}
.y1_c00162{bottom:1051.500000px;}
.h4_c00162{height:42.000000px;}
.h3_c00162{height:48.000000px;}
.h5_c00162{height:51.000000px;}
.h2_c00162{height:60.000000px;}
.h1_c00162{height:1167.750000px;}
.h0_c00162{height:1167.839997px;}
.w1_c00162{width:920.250000px;}
.w0_c00162{width:920.519990px;}
.x0_c00162{left:0.000000px;}
.xc7_c00162{left:156.750000px;}
.x9a_c00162{left:157.800000px;}
.x43_c00162{left:159.150000px;}
.x13_c00162{left:160.350000px;}
.x1_c00162{left:162.000000px;}
.x124_c00162{left:171.000000px;}
.x11e_c00162{left:172.050000px;}
.xde_c00162{left:177.600000px;}
.x14_c00162{left:181.950000px;}
.x84_c00162{left:184.500000px;}
.xb2_c00162{left:185.550000px;}
.x76_c00162{left:186.750000px;}
.xf7_c00162{left:187.950000px;}
.x31_c00162{left:189.450000px;}
.x52_c00162{left:190.800000px;}
.x5d_c00162{left:195.600000px;}
.xd4_c00162{left:197.100000px;}
.xad_c00162{left:198.150000px;}
.x109_c00162{left:199.800000px;}
.x121_c00162{left:203.400000px;}
.xc2_c00162{left:205.350000px;}
.xe7_c00162{left:207.900000px;}
.x68_c00162{left:209.400000px;}
.xfc_c00162{left:210.750000px;}
.x90_c00162{left:216.600000px;}
.x53_c00162{left:219.300000px;}
.xf8_c00162{left:220.650000px;}
.x15_c00162{left:222.600000px;}
.x5e_c00162{left:224.100000px;}
.xc3_c00162{left:225.450000px;}
.x3_c00162{left:227.550000px;}
.xe8_c00162{left:230.550000px;}
.x77_c00162{left:234.300000px;}
.x25_c00162{left:235.650000px;}
.x4_c00162{left:238.650000px;}
.x44_c00162{left:241.950000px;}
.x85_c00162{left:243.900000px;}
.x91_c00162{left:245.100000px;}
.x54_c00162{left:254.250000px;}
.xa5_c00162{left:256.500000px;}
.x32_c00162{left:257.550000px;}
.x26_c00162{left:260.100000px;}
.x16_c00162{left:261.900000px;}
.xc4_c00162{left:262.950000px;}
.x86_c00162{left:264.000000px;}
.xd5_c00162{left:265.800000px;}
.x112_c00162{left:267.150000px;}
.x5_c00162{left:268.200000px;}
.x33_c00162{left:271.200000px;}
.x45_c00162{left:272.250000px;}
.x117_c00162{left:273.900000px;}
.xa6_c00162{left:277.350000px;}
.xf9_c00162{left:279.000000px;}
.xe2_c00162{left:280.950000px;}
.x101_c00162{left:282.000000px;}
.x46_c00162{left:284.550000px;}
.x55_c00162{left:287.400000px;}
.x92_c00162{left:288.600000px;}
.x87_c00162{left:290.250000px;}
.x11f_c00162{left:291.300000px;}
.xbb_c00162{left:292.650000px;}
.x5f_c00162{left:296.100000px;}
.x10f_c00162{left:297.300000px;}
.x27_c00162{left:299.400000px;}
.x6_c00162{left:303.900000px;}
.x78_c00162{left:306.300000px;}
.x93_c00162{left:308.400000px;}
.x69_c00162{left:310.800000px;}
.xae_c00162{left:312.300000px;}
.x3b_c00162{left:314.250000px;}
.x47_c00162{left:317.250000px;}
.x9b_c00162{left:322.050000px;}
.xc8_c00162{left:324.150000px;}
.xe3_c00162{left:326.700000px;}
.x88_c00162{left:329.100000px;}
.x17_c00162{left:330.600000px;}
.x79_c00162{left:331.800000px;}
.x7_c00162{left:333.450000px;}
.xb3_c00162{left:338.250000px;}
.x94_c00162{left:339.300000px;}
.xbc_c00162{left:343.050000px;}
.x34_c00162{left:344.550000px;}
.xd6_c00162{left:347.100000px;}
.xe9_c00162{left:349.350000px;}
.x60_c00162{left:354.750000px;}
.x6a_c00162{left:355.800000px;}
.x95_c00162{left:357.000000px;}
.xb4_c00162{left:359.100000px;}
.xc9_c00162{left:360.450000px;}
.x8_c00162{left:361.950000px;}
.x18_c00162{left:364.500000px;}
.x56_c00162{left:365.550000px;}
.x106_c00162{left:369.150000px;}
.x48_c00162{left:372.300000px;}
.xd7_c00162{left:375.600000px;}
.xfd_c00162{left:376.800000px;}
.x102_c00162{left:378.450000px;}
.xc5_c00162{left:379.950000px;}
.x3c_c00162{left:381.300000px;}
.x49_c00162{left:383.400000px;}
.x9c_c00162{left:386.100000px;}
.x19_c00162{left:388.200000px;}
.xb5_c00162{left:390.000000px;}
.x7a_c00162{left:391.950000px;}
.xcd_c00162{left:393.450000px;}
.xa7_c00162{left:395.400000px;}
.xbd_c00162{left:396.750000px;}
.xaf_c00162{left:398.700000px;}
.x120_c00162{left:403.950000px;}
.x28_c00162{left:405.300000px;}
.xd8_c00162{left:408.750000px;}
.x4a_c00162{left:410.100000px;}
.x35_c00162{left:411.450000px;}
.xea_c00162{left:413.700000px;}
.xf2_c00162{left:416.100000px;}
.x57_c00162{left:417.750000px;}
.x118_c00162{left:421.950000px;}
.x1a_c00162{left:424.500000px;}
.xce_c00162{left:425.850000px;}
.x6b_c00162{left:427.050000px;}
.x36_c00162{left:430.500000px;}
.xe4_c00162{left:432.300000px;}
.x58_c00162{left:436.050000px;}
.x9d_c00162{left:438.000000px;}
.x10a_c00162{left:439.050000px;}
.xdf_c00162{left:440.850000px;}
.x61_c00162{left:443.700000px;}
.x3d_c00162{left:446.100000px;}
.xb6_c00162{left:447.900000px;}
.x1b_c00162{left:448.950000px;}
.x6c_c00162{left:454.350000px;}
.xd9_c00162{left:455.550000px;}
.x7b_c00162{left:457.050000px;}
.x29_c00162{left:459.600000px;}
.x6d_c00162{left:465.150000px;}
.xa8_c00162{left:466.350000px;}
.x62_c00162{left:470.700000px;}
.x2_c00162{left:476.700000px;}
.x7c_c00162{left:478.350000px;}
.x9_c00162{left:480.450000px;}
.xda_c00162{left:483.300000px;}
.x96_c00162{left:484.800000px;}
.x9e_c00162{left:487.350000px;}
.x2a_c00162{left:490.950000px;}
.x4b_c00162{left:492.450000px;}
.xeb_c00162{left:496.500000px;}
.xfe_c00162{left:499.650000px;}
.x2b_c00162{left:503.550000px;}
.xca_c00162{left:507.900000px;}
.x3e_c00162{left:510.150000px;}
.x1c_c00162{left:513.450000px;}
.x89_c00162{left:514.500000px;}
.xbe_c00162{left:515.550000px;}
.x119_c00162{left:517.350000px;}
.x97_c00162{left:521.850000px;}
.xa_c00162{left:523.650000px;}
.xe0_c00162{left:526.800000px;}
.x4c_c00162{left:530.550000px;}
.x1d_c00162{left:534.000000px;}
.xcf_c00162{left:535.800000px;}
.x113_c00162{left:536.850000px;}
.x10b_c00162{left:538.350000px;}
.x8a_c00162{left:540.000000px;}
.x59_c00162{left:541.500000px;}
.x98_c00162{left:542.700000px;}
.x9f_c00162{left:543.900000px;}
.xf3_c00162{left:546.000000px;}
.x114_c00162{left:549.150000px;}
.xec_c00162{left:550.500000px;}
.x2c_c00162{left:551.850000px;}
.x6e_c00162{left:553.650000px;}
.xff_c00162{left:555.450000px;}
.x7d_c00162{left:557.550000px;}
.xb7_c00162{left:560.250000px;}
.x63_c00162{left:562.500000px;}
.x5a_c00162{left:565.950000px;}
.xbf_c00162{left:568.050000px;}
.x4d_c00162{left:569.100000px;}
.xb0_c00162{left:570.450000px;}
.xfa_c00162{left:571.800000px;}
.xed_c00162{left:573.150000px;}
.x11d_c00162{left:574.350000px;}
.xa0_c00162{left:576.600000px;}
.x6f_c00162{left:579.150000px;}
.x11b_c00162{left:581.100000px;}
.xb_c00162{left:582.300000px;}
.xa9_c00162{left:584.700000px;}
.xf4_c00162{left:588.450000px;}
.x1e_c00162{left:590.100000px;}
.xd0_c00162{left:591.300000px;}
.x3f_c00162{left:592.950000px;}
.x8b_c00162{left:594.300000px;}
.x64_c00162{left:596.700000px;}
.x99_c00162{left:599.250000px;}
.x110_c00162{left:600.750000px;}
.xee_c00162{left:602.250000px;}
.x1f_c00162{left:603.750000px;}
.x4e_c00162{left:605.400000px;}
.x107_c00162{left:609.000000px;}
.x7e_c00162{left:610.050000px;}
.x11c_c00162{left:612.450000px;}
.xcb_c00162{left:614.100000px;}
.x2d_c00162{left:615.150000px;}
.xa1_c00162{left:620.550000px;}
.x108_c00162{left:623.100000px;}
.x70_c00162{left:626.250000px;}
.xdb_c00162{left:628.350000px;}
.xc_c00162{left:629.400000px;}
.x100_c00162{left:630.450000px;}
.x8c_c00162{left:632.850000px;}
.x37_c00162{left:634.200000px;}
.x7f_c00162{left:635.250000px;}
.x20_c00162{left:636.450000px;}
.xd1_c00162{left:638.100000px;}
.xc6_c00162{left:641.250000px;}
.xdc_c00162{left:643.500000px;}
.x2e_c00162{left:646.050000px;}
.xc0_c00162{left:648.000000px;}
.xf5_c00162{left:649.350000px;}
.x71_c00162{left:652.200000px;}
.x8d_c00162{left:656.250000px;}
.xd_c00162{left:658.950000px;}
.x4f_c00162{left:660.900000px;}
.x40_c00162{left:663.450000px;}
.xa2_c00162{left:664.800000px;}
.x80_c00162{left:670.500000px;}
.x72_c00162{left:672.000000px;}
.x21_c00162{left:673.500000px;}
.xe1_c00162{left:676.350000px;}
.xf6_c00162{left:677.850000px;}
.x125_c00162{left:678.900000px;}
.x122_c00162{left:681.450000px;}
.x50_c00162{left:682.500000px;}
.x115_c00162{left:683.700000px;}
.xb8_c00162{left:685.800000px;}
.xa3_c00162{left:687.150000px;}
.x73_c00162{left:689.250000px;}
.x2f_c00162{left:693.150000px;}
.x5b_c00162{left:694.800000px;}
.xe_c00162{left:696.000000px;}
.x10c_c00162{left:698.550000px;}
.xb9_c00162{left:700.500000px;}
.xd2_c00162{left:701.550000px;}
.x81_c00162{left:702.900000px;}
.xcc_c00162{left:710.700000px;}
.x10d_c00162{left:713.250000px;}
.xf_c00162{left:714.750000px;}
.x38_c00162{left:716.250000px;}
.x103_c00162{left:720.450000px;}
.x22_c00162{left:722.400000px;}
.x8e_c00162{left:723.450000px;}
.xc1_c00162{left:725.850000px;}
.x41_c00162{left:727.200000px;}
.x11a_c00162{left:728.250000px;}
.xd3_c00162{left:729.600000px;}
.xaa_c00162{left:732.000000px;}
.x126_c00162{left:733.350000px;}
.x82_c00162{left:736.350000px;}
.x65_c00162{left:738.900000px;}
.x111_c00162{left:740.400000px;}
.xe5_c00162{left:741.450000px;}
.x10_c00162{left:742.800000px;}
.x123_c00162{left:744.000000px;}
.xef_c00162{left:745.200000px;}
.xdd_c00162{left:747.150000px;}
.x51_c00162{left:748.350000px;}
.x116_c00162{left:751.050000px;}
.x83_c00162{left:754.050000px;}
.x23_c00162{left:756.900000px;}
.x66_c00162{left:759.450000px;}
.xfb_c00162{left:760.500000px;}
.xab_c00162{left:762.300000px;}
.x104_c00162{left:763.650000px;}
.xa4_c00162{left:765.150000px;}
.x11_c00162{left:768.000000px;}
.xe6_c00162{left:769.950000px;}
.x74_c00162{left:771.750000px;}
.x105_c00162{left:775.950000px;}
.xba_c00162{left:777.600000px;}
.x5c_c00162{left:779.100000px;}
.x10e_c00162{left:781.650000px;}
.xf0_c00162{left:783.750000px;}
.x75_c00162{left:787.950000px;}
.x39_c00162{left:791.850000px;}
.x67_c00162{left:793.350000px;}
.x24_c00162{left:797.250000px;}
.xb1_c00162{left:801.150000px;}
.x42_c00162{left:802.800000px;}
.x3a_c00162{left:804.150000px;}
.x12_c00162{left:807.300000px;}
.xf1_c00162{left:809.250000px;}
.xac_c00162{left:812.700000px;}
.x8f_c00162{left:813.750000px;}
.x30_c00162{left:823.500000px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:2.666667pt;}
.ls1_c00162{letter-spacing:0.000000pt;}
.ls0_c00162{letter-spacing:186.279123pt;}
.ws1_c00162{word-spacing:-7.619048pt;}
.ws0_c00162{word-spacing:-5.079365pt;}
.ws2_c00162{word-spacing:-4.320988pt;}
.wsa_c00162{word-spacing:0.000000pt;}
.ws3_c00162{word-spacing:2.433862pt;}
.ws4_c00162{word-spacing:5.614035pt;}
.ws6_c00162{word-spacing:5.802469pt;}
.ws7_c00162{word-spacing:6.172840pt;}
.ws5_c00162{word-spacing:20.130719pt;}
.ws8_c00162{word-spacing:116.956043pt;}
.ws9_c00162{word-spacing:196.740741pt;}
._0_c00162{width:24.938272pt;}
.fs2_c00162{font-size:37.333333pt;}
.fs1_c00162{font-size:42.666667pt;}
.fs0_c00162{font-size:53.333333pt;}
.y0_c00162{bottom:0.000000pt;}
.y56_c00162{bottom:137.600000pt;}
.y52_c00162{bottom:145.600000pt;}
.y54_c00162{bottom:148.800000pt;}
.y53_c00162{bottom:149.066667pt;}
.y55_c00162{bottom:152.266667pt;}
.y51_c00162{bottom:160.666667pt;}
.y50_c00162{bottom:168.000000pt;}
.y4f_c00162{bottom:179.600000pt;}
.y4c_c00162{bottom:184.666667pt;}
.y4a_c00162{bottom:184.933333pt;}
.y49_c00162{bottom:185.333333pt;}
.y4d_c00162{bottom:186.533333pt;}
.y4b_c00162{bottom:188.133333pt;}
.y48_c00162{bottom:190.400000pt;}
.y4e_c00162{bottom:191.066667pt;}
.y47_c00162{bottom:210.000000pt;}
.y43_c00162{bottom:214.666667pt;}
.y45_c00162{bottom:215.066667pt;}
.y42_c00162{bottom:215.333333pt;}
.y41_c00162{bottom:215.733333pt;}
.y44_c00162{bottom:216.933333pt;}
.y40_c00162{bottom:221.066667pt;}
.y46_c00162{bottom:221.466667pt;}
.y3c_c00162{bottom:239.333333pt;}
.y3d_c00162{bottom:240.000000pt;}
.y3b_c00162{bottom:240.266667pt;}
.y3f_c00162{bottom:240.666667pt;}
.y3a_c00162{bottom:240.933333pt;}
.y3e_c00162{bottom:241.866667pt;}
.y39_c00162{bottom:243.466667pt;}
.y36_c00162{bottom:254.666667pt;}
.y38_c00162{bottom:255.333333pt;}
.y35_c00162{bottom:256.000000pt;}
.y37_c00162{bottom:257.333333pt;}
.y34_c00162{bottom:258.533333pt;}
.y30_c00162{bottom:269.733333pt;}
.y33_c00162{bottom:270.400000pt;}
.y31_c00162{bottom:271.066667pt;}
.y2f_c00162{bottom:271.333333pt;}
.y32_c00162{bottom:272.266667pt;}
.y2e_c00162{bottom:272.933333pt;}
.y2b_c00162{bottom:303.333333pt;}
.y2c_c00162{bottom:309.733333pt;}
.y2d_c00162{bottom:313.600000pt;}
.y2a_c00162{bottom:313.866667pt;}
.y29_c00162{bottom:314.266667pt;}
.y26_c00162{bottom:315.200000pt;}
.y27_c00162{bottom:320.000000pt;}
.y28_c00162{bottom:323.866667pt;}
.y25_c00162{bottom:324.800000pt;}
.y21_c00162{bottom:325.733333pt;}
.y23_c00162{bottom:330.533333pt;}
.y24_c00162{bottom:334.133333pt;}
.y22_c00162{bottom:334.400000pt;}
.y20_c00162{bottom:367.466667pt;}
.y1f_c00162{bottom:385.066667pt;}
.y1e_c00162{bottom:402.933333pt;}
.y1d_c00162{bottom:420.533333pt;}
.y1c_c00162{bottom:438.400000pt;}
.y1b_c00162{bottom:456.266667pt;}
.y1a_c00162{bottom:474.266667pt;}
.y19_c00162{bottom:492.133333pt;}
.y18_c00162{bottom:510.000000pt;}
.y17_c00162{bottom:527.600000pt;}
.y16_c00162{bottom:545.466667pt;}
.y15_c00162{bottom:563.066667pt;}
.y14_c00162{bottom:580.666667pt;}
.y13_c00162{bottom:598.533333pt;}
.y12_c00162{bottom:616.133333pt;}
.y11_c00162{bottom:633.733333pt;}
.y10_c00162{bottom:651.600000pt;}
.yf_c00162{bottom:669.200000pt;}
.ye_c00162{bottom:687.066667pt;}
.yd_c00162{bottom:704.666667pt;}
.yc_c00162{bottom:722.933333pt;}
.yb_c00162{bottom:740.533333pt;}
.ya_c00162{bottom:758.400000pt;}
.y9_c00162{bottom:776.000000pt;}
.y8_c00162{bottom:793.866667pt;}
.y7_c00162{bottom:811.866667pt;}
.y6_c00162{bottom:829.466667pt;}
.y5_c00162{bottom:847.066667pt;}
.y4_c00162{bottom:864.933333pt;}
.y3_c00162{bottom:882.533333pt;}
.y2_c00162{bottom:900.133333pt;}
.y1_c00162{bottom:934.666667pt;}
.h4_c00162{height:37.333333pt;}
.h3_c00162{height:42.666667pt;}
.h5_c00162{height:45.333333pt;}
.h2_c00162{height:53.333333pt;}
.h1_c00162{height:1038.000000pt;}
.h0_c00162{height:1038.079997pt;}
.w1_c00162{width:818.000000pt;}
.w0_c00162{width:818.239991pt;}
.x0_c00162{left:0.000000pt;}
.xc7_c00162{left:139.333333pt;}
.x9a_c00162{left:140.266667pt;}
.x43_c00162{left:141.466667pt;}
.x13_c00162{left:142.533333pt;}
.x1_c00162{left:144.000000pt;}
.x124_c00162{left:152.000000pt;}
.x11e_c00162{left:152.933333pt;}
.xde_c00162{left:157.866667pt;}
.x14_c00162{left:161.733333pt;}
.x84_c00162{left:164.000000pt;}
.xb2_c00162{left:164.933333pt;}
.x76_c00162{left:166.000000pt;}
.xf7_c00162{left:167.066667pt;}
.x31_c00162{left:168.400000pt;}
.x52_c00162{left:169.600000pt;}
.x5d_c00162{left:173.866667pt;}
.xd4_c00162{left:175.200000pt;}
.xad_c00162{left:176.133333pt;}
.x109_c00162{left:177.600000pt;}
.x121_c00162{left:180.800000pt;}
.xc2_c00162{left:182.533333pt;}
.xe7_c00162{left:184.800000pt;}
.x68_c00162{left:186.133333pt;}
.xfc_c00162{left:187.333333pt;}
.x90_c00162{left:192.533333pt;}
.x53_c00162{left:194.933333pt;}
.xf8_c00162{left:196.133333pt;}
.x15_c00162{left:197.866667pt;}
.x5e_c00162{left:199.200000pt;}
.xc3_c00162{left:200.400000pt;}
.x3_c00162{left:202.266667pt;}
.xe8_c00162{left:204.933333pt;}
.x77_c00162{left:208.266667pt;}
.x25_c00162{left:209.466667pt;}
.x4_c00162{left:212.133333pt;}
.x44_c00162{left:215.066667pt;}
.x85_c00162{left:216.800000pt;}
.x91_c00162{left:217.866667pt;}
.x54_c00162{left:226.000000pt;}
.xa5_c00162{left:228.000000pt;}
.x32_c00162{left:228.933333pt;}
.x26_c00162{left:231.200000pt;}
.x16_c00162{left:232.800000pt;}
.xc4_c00162{left:233.733333pt;}
.x86_c00162{left:234.666667pt;}
.xd5_c00162{left:236.266667pt;}
.x112_c00162{left:237.466667pt;}
.x5_c00162{left:238.400000pt;}
.x33_c00162{left:241.066667pt;}
.x45_c00162{left:242.000000pt;}
.x117_c00162{left:243.466667pt;}
.xa6_c00162{left:246.533333pt;}
.xf9_c00162{left:248.000000pt;}
.xe2_c00162{left:249.733333pt;}
.x101_c00162{left:250.666667pt;}
.x46_c00162{left:252.933333pt;}
.x55_c00162{left:255.466667pt;}
.x92_c00162{left:256.533333pt;}
.x87_c00162{left:258.000000pt;}
.x11f_c00162{left:258.933333pt;}
.xbb_c00162{left:260.133333pt;}
.x5f_c00162{left:263.200000pt;}
.x10f_c00162{left:264.266667pt;}
.x27_c00162{left:266.133333pt;}
.x6_c00162{left:270.133333pt;}
.x78_c00162{left:272.266667pt;}
.x93_c00162{left:274.133333pt;}
.x69_c00162{left:276.266667pt;}
.xae_c00162{left:277.600000pt;}
.x3b_c00162{left:279.333333pt;}
.x47_c00162{left:282.000000pt;}
.x9b_c00162{left:286.266667pt;}
.xc8_c00162{left:288.133333pt;}
.xe3_c00162{left:290.400000pt;}
.x88_c00162{left:292.533333pt;}
.x17_c00162{left:293.866667pt;}
.x79_c00162{left:294.933333pt;}
.x7_c00162{left:296.400000pt;}
.xb3_c00162{left:300.666667pt;}
.x94_c00162{left:301.600000pt;}
.xbc_c00162{left:304.933333pt;}
.x34_c00162{left:306.266667pt;}
.xd6_c00162{left:308.533333pt;}
.xe9_c00162{left:310.533333pt;}
.x60_c00162{left:315.333333pt;}
.x6a_c00162{left:316.266667pt;}
.x95_c00162{left:317.333333pt;}
.xb4_c00162{left:319.200000pt;}
.xc9_c00162{left:320.400000pt;}
.x8_c00162{left:321.733333pt;}
.x18_c00162{left:324.000000pt;}
.x56_c00162{left:324.933333pt;}
.x106_c00162{left:328.133333pt;}
.x48_c00162{left:330.933333pt;}
.xd7_c00162{left:333.866667pt;}
.xfd_c00162{left:334.933333pt;}
.x102_c00162{left:336.400000pt;}
.xc5_c00162{left:337.733333pt;}
.x3c_c00162{left:338.933333pt;}
.x49_c00162{left:340.800000pt;}
.x9c_c00162{left:343.200000pt;}
.x19_c00162{left:345.066667pt;}
.xb5_c00162{left:346.666667pt;}
.x7a_c00162{left:348.400000pt;}
.xcd_c00162{left:349.733333pt;}
.xa7_c00162{left:351.466667pt;}
.xbd_c00162{left:352.666667pt;}
.xaf_c00162{left:354.400000pt;}
.x120_c00162{left:359.066667pt;}
.x28_c00162{left:360.266667pt;}
.xd8_c00162{left:363.333333pt;}
.x4a_c00162{left:364.533333pt;}
.x35_c00162{left:365.733333pt;}
.xea_c00162{left:367.733333pt;}
.xf2_c00162{left:369.866667pt;}
.x57_c00162{left:371.333333pt;}
.x118_c00162{left:375.066667pt;}
.x1a_c00162{left:377.333333pt;}
.xce_c00162{left:378.533333pt;}
.x6b_c00162{left:379.600000pt;}
.x36_c00162{left:382.666667pt;}
.xe4_c00162{left:384.266667pt;}
.x58_c00162{left:387.600000pt;}
.x9d_c00162{left:389.333333pt;}
.x10a_c00162{left:390.266667pt;}
.xdf_c00162{left:391.866667pt;}
.x61_c00162{left:394.400000pt;}
.x3d_c00162{left:396.533333pt;}
.xb6_c00162{left:398.133333pt;}
.x1b_c00162{left:399.066667pt;}
.x6c_c00162{left:403.866667pt;}
.xd9_c00162{left:404.933333pt;}
.x7b_c00162{left:406.266667pt;}
.x29_c00162{left:408.533333pt;}
.x6d_c00162{left:413.466667pt;}
.xa8_c00162{left:414.533333pt;}
.x62_c00162{left:418.400000pt;}
.x2_c00162{left:423.733333pt;}
.x7c_c00162{left:425.200000pt;}
.x9_c00162{left:427.066667pt;}
.xda_c00162{left:429.600000pt;}
.x96_c00162{left:430.933333pt;}
.x9e_c00162{left:433.200000pt;}
.x2a_c00162{left:436.400000pt;}
.x4b_c00162{left:437.733333pt;}
.xeb_c00162{left:441.333333pt;}
.xfe_c00162{left:444.133333pt;}
.x2b_c00162{left:447.600000pt;}
.xca_c00162{left:451.466667pt;}
.x3e_c00162{left:453.466667pt;}
.x1c_c00162{left:456.400000pt;}
.x89_c00162{left:457.333333pt;}
.xbe_c00162{left:458.266667pt;}
.x119_c00162{left:459.866667pt;}
.x97_c00162{left:463.866667pt;}
.xa_c00162{left:465.466667pt;}
.xe0_c00162{left:468.266667pt;}
.x4c_c00162{left:471.600000pt;}
.x1d_c00162{left:474.666667pt;}
.xcf_c00162{left:476.266667pt;}
.x113_c00162{left:477.200000pt;}
.x10b_c00162{left:478.533333pt;}
.x8a_c00162{left:480.000000pt;}
.x59_c00162{left:481.333333pt;}
.x98_c00162{left:482.400000pt;}
.x9f_c00162{left:483.466667pt;}
.xf3_c00162{left:485.333333pt;}
.x114_c00162{left:488.133333pt;}
.xec_c00162{left:489.333333pt;}
.x2c_c00162{left:490.533333pt;}
.x6e_c00162{left:492.133333pt;}
.xff_c00162{left:493.733333pt;}
.x7d_c00162{left:495.600000pt;}
.xb7_c00162{left:498.000000pt;}
.x63_c00162{left:500.000000pt;}
.x5a_c00162{left:503.066667pt;}
.xbf_c00162{left:504.933333pt;}
.x4d_c00162{left:505.866667pt;}
.xb0_c00162{left:507.066667pt;}
.xfa_c00162{left:508.266667pt;}
.xed_c00162{left:509.466667pt;}
.x11d_c00162{left:510.533333pt;}
.xa0_c00162{left:512.533333pt;}
.x6f_c00162{left:514.800000pt;}
.x11b_c00162{left:516.533333pt;}
.xb_c00162{left:517.600000pt;}
.xa9_c00162{left:519.733333pt;}
.xf4_c00162{left:523.066667pt;}
.x1e_c00162{left:524.533333pt;}
.xd0_c00162{left:525.600000pt;}
.x3f_c00162{left:527.066667pt;}
.x8b_c00162{left:528.266667pt;}
.x64_c00162{left:530.400000pt;}
.x99_c00162{left:532.666667pt;}
.x110_c00162{left:534.000000pt;}
.xee_c00162{left:535.333333pt;}
.x1f_c00162{left:536.666667pt;}
.x4e_c00162{left:538.133333pt;}
.x107_c00162{left:541.333333pt;}
.x7e_c00162{left:542.266667pt;}
.x11c_c00162{left:544.400000pt;}
.xcb_c00162{left:545.866667pt;}
.x2d_c00162{left:546.800000pt;}
.xa1_c00162{left:551.600000pt;}
.x108_c00162{left:553.866667pt;}
.x70_c00162{left:556.666667pt;}
.xdb_c00162{left:558.533333pt;}
.xc_c00162{left:559.466667pt;}
.x100_c00162{left:560.400000pt;}
.x8c_c00162{left:562.533333pt;}
.x37_c00162{left:563.733333pt;}
.x7f_c00162{left:564.666667pt;}
.x20_c00162{left:565.733333pt;}
.xd1_c00162{left:567.200000pt;}
.xc6_c00162{left:570.000000pt;}
.xdc_c00162{left:572.000000pt;}
.x2e_c00162{left:574.266667pt;}
.xc0_c00162{left:576.000000pt;}
.xf5_c00162{left:577.200000pt;}
.x71_c00162{left:579.733333pt;}
.x8d_c00162{left:583.333333pt;}
.xd_c00162{left:585.733333pt;}
.x4f_c00162{left:587.466667pt;}
.x40_c00162{left:589.733333pt;}
.xa2_c00162{left:590.933333pt;}
.x80_c00162{left:596.000000pt;}
.x72_c00162{left:597.333333pt;}
.x21_c00162{left:598.666667pt;}
.xe1_c00162{left:601.200000pt;}
.xf6_c00162{left:602.533333pt;}
.x125_c00162{left:603.466667pt;}
.x122_c00162{left:605.733333pt;}
.x50_c00162{left:606.666667pt;}
.x115_c00162{left:607.733333pt;}
.xb8_c00162{left:609.600000pt;}
.xa3_c00162{left:610.800000pt;}
.x73_c00162{left:612.666667pt;}
.x2f_c00162{left:616.133333pt;}
.x5b_c00162{left:617.600000pt;}
.xe_c00162{left:618.666667pt;}
.x10c_c00162{left:620.933333pt;}
.xb9_c00162{left:622.666667pt;}
.xd2_c00162{left:623.600000pt;}
.x81_c00162{left:624.800000pt;}
.xcc_c00162{left:631.733333pt;}
.x10d_c00162{left:634.000000pt;}
.xf_c00162{left:635.333333pt;}
.x38_c00162{left:636.666667pt;}
.x103_c00162{left:640.400000pt;}
.x22_c00162{left:642.133333pt;}
.x8e_c00162{left:643.066667pt;}
.xc1_c00162{left:645.200000pt;}
.x41_c00162{left:646.400000pt;}
.x11a_c00162{left:647.333333pt;}
.xd3_c00162{left:648.533333pt;}
.xaa_c00162{left:650.666667pt;}
.x126_c00162{left:651.866667pt;}
.x82_c00162{left:654.533333pt;}
.x65_c00162{left:656.800000pt;}
.x111_c00162{left:658.133333pt;}
.xe5_c00162{left:659.066667pt;}
.x10_c00162{left:660.266667pt;}
.x123_c00162{left:661.333333pt;}
.xef_c00162{left:662.400000pt;}
.xdd_c00162{left:664.133333pt;}
.x51_c00162{left:665.200000pt;}
.x116_c00162{left:667.600000pt;}
.x83_c00162{left:670.266667pt;}
.x23_c00162{left:672.800000pt;}
.x66_c00162{left:675.066667pt;}
.xfb_c00162{left:676.000000pt;}
.xab_c00162{left:677.600000pt;}
.x104_c00162{left:678.800000pt;}
.xa4_c00162{left:680.133333pt;}
.x11_c00162{left:682.666667pt;}
.xe6_c00162{left:684.400000pt;}
.x74_c00162{left:686.000000pt;}
.x105_c00162{left:689.733333pt;}
.xba_c00162{left:691.200000pt;}
.x5c_c00162{left:692.533333pt;}
.x10e_c00162{left:694.800000pt;}
.xf0_c00162{left:696.666667pt;}
.x75_c00162{left:700.400000pt;}
.x39_c00162{left:703.866667pt;}
.x67_c00162{left:705.200000pt;}
.x24_c00162{left:708.666667pt;}
.xb1_c00162{left:712.133333pt;}
.x42_c00162{left:713.600000pt;}
.x3a_c00162{left:714.800000pt;}
.x12_c00162{left:717.600000pt;}
.xf1_c00162{left:719.333333pt;}
.xac_c00162{left:722.400000pt;}
.x8f_c00162{left:723.333333pt;}
.x30_c00162{left:732.000000pt;}
}





/* 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_c00163 {
    display:none;
  }
  .loading-indicator_c00163.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00163 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_c00163 { 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_c00163" -> "#page-container .classname_c00163")
 */
.pf_c00163 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00163 { /* 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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00163 { /* 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_c00163 { /* 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_c00163 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00163 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00163 {overflow:visible;}
  }
}
.c_c00163 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00163 { /* 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_c00163:after { /* webkit #35443 */
  content: '';
}
.t_c00163:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00163 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 */
}
.__c00163 { /* 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_c00163 { /* info for Javascript */
  display:none;
}
.l_c00163 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00163 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00163 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00163: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_c00163 {
    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_c00163.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00163.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_c00163 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00163{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00163;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.000000;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;}
.m8_c00163{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0_c00163{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00163{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6_c00163{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m16_c00163{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00163{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);}
.ma_c00163{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m13_c00163{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.md_c00163{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m11_c00163{transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404000,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409250,0.000000,0.000000,0.250000,0,0);}
.mb_c00163{transform:matrix(1.047250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047250,0.000000,0.000000,0.250000,0,0);}
.v0_c00163{vertical-align:0.000000px;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{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__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00163{word-spacing:0.000000px;}
.ws0_c00163{word-spacing:46.041667px;}
.fc0_c00163{color:transparent;}
.fs3_c00163{font-size:24.000000px;}
.fs5_c00163{font-size:30.000000px;}
.fs0_c00163{font-size:36.000000px;}
.fs2_c00163{font-size:42.000000px;}
.fs6_c00163{font-size:48.000000px;}
.fs1_c00163{font-size:60.000000px;}
.fs4_c00163{font-size:66.000000px;}
.y0_c00163{bottom:0.000000px;}
.ye_c00163{bottom:31.350000px;}
.yd_c00163{bottom:33.900000px;}
.yc_c00163{bottom:36.000000px;}
.y9_c00163{bottom:72.450000px;}
.ya_c00163{bottom:86.400000px;}
.yb_c00163{bottom:88.200000px;}
.y8_c00163{bottom:95.100000px;}
.y6_c00163{bottom:112.350000px;}
.y7_c00163{bottom:121.650000px;}
.y3_c00163{bottom:160.950000px;}
.y2_c00163{bottom:204.150000px;}
.y4_c00163{bottom:228.900000px;}
.y5_c00163{bottom:236.100000px;}
.y1_c00163{bottom:238.650000px;}
.h5_c00163{height:24.000000px;}
.h7_c00163{height:30.000000px;}
.h2_c00163{height:36.000000px;}
.h4_c00163{height:42.000000px;}
.h8_c00163{height:48.000000px;}
.h3_c00163{height:60.000000px;}
.h6_c00163{height:66.000000px;}
.h1_c00163{height:1167.750000px;}
.h0_c00163{height:1167.839997px;}
.w1_c00163{width:920.250000px;}
.w0_c00163{width:920.519990px;}
.x0_c00163{left:0.000000px;}
.x4_c00163{left:48.300000px;}
.x5_c00163{left:65.250000px;}
.x6_c00163{left:69.900000px;}
.x11_c00163{left:99.300000px;}
.x7_c00163{left:110.250000px;}
.x1e_c00163{left:117.750000px;}
.xe_c00163{left:130.350000px;}
.x10_c00163{left:137.850000px;}
.x8_c00163{left:162.450000px;}
.xf_c00163{left:179.700000px;}
.x12_c00163{left:181.800000px;}
.x1_c00163{left:428.400000px;}
.x2_c00163{left:437.400000px;}
.x3_c00163{left:460.050000px;}
.x9_c00163{left:465.900000px;}
.xa_c00163{left:473.400000px;}
.x13_c00163{left:501.150000px;}
.xb_c00163{left:506.100000px;}
.x14_c00163{left:522.000000px;}
.x15_c00163{left:543.900000px;}
.x16_c00163{left:565.200000px;}
.x17_c00163{left:587.850000px;}
.x18_c00163{left:609.450000px;}
.xc_c00163{left:620.700000px;}
.x19_c00163{left:631.350000px;}
.x1a_c00163{left:675.750000px;}
.x1b_c00163{left:697.650000px;}
.x1c_c00163{left:719.550000px;}
.x1d_c00163{left:742.950000px;}
.x1f_c00163{left:777.300000px;}
.xd_c00163{left:807.150000px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws1_c00163{word-spacing:0.000000pt;}
.ws0_c00163{word-spacing:40.925926pt;}
.fs3_c00163{font-size:21.333333pt;}
.fs5_c00163{font-size:26.666667pt;}
.fs0_c00163{font-size:32.000000pt;}
.fs2_c00163{font-size:37.333333pt;}
.fs6_c00163{font-size:42.666667pt;}
.fs1_c00163{font-size:53.333333pt;}
.fs4_c00163{font-size:58.666667pt;}
.y0_c00163{bottom:0.000000pt;}
.ye_c00163{bottom:27.866667pt;}
.yd_c00163{bottom:30.133333pt;}
.yc_c00163{bottom:32.000000pt;}
.y9_c00163{bottom:64.400000pt;}
.ya_c00163{bottom:76.800000pt;}
.yb_c00163{bottom:78.400000pt;}
.y8_c00163{bottom:84.533333pt;}
.y6_c00163{bottom:99.866667pt;}
.y7_c00163{bottom:108.133333pt;}
.y3_c00163{bottom:143.066667pt;}
.y2_c00163{bottom:181.466667pt;}
.y4_c00163{bottom:203.466667pt;}
.y5_c00163{bottom:209.866667pt;}
.y1_c00163{bottom:212.133333pt;}
.h5_c00163{height:21.333333pt;}
.h7_c00163{height:26.666667pt;}
.h2_c00163{height:32.000000pt;}
.h4_c00163{height:37.333333pt;}
.h8_c00163{height:42.666667pt;}
.h3_c00163{height:53.333333pt;}
.h6_c00163{height:58.666667pt;}
.h1_c00163{height:1038.000000pt;}
.h0_c00163{height:1038.079997pt;}
.w1_c00163{width:818.000000pt;}
.w0_c00163{width:818.239991pt;}
.x0_c00163{left:0.000000pt;}
.x4_c00163{left:42.933333pt;}
.x5_c00163{left:58.000000pt;}
.x6_c00163{left:62.133333pt;}
.x11_c00163{left:88.266667pt;}
.x7_c00163{left:98.000000pt;}
.x1e_c00163{left:104.666667pt;}
.xe_c00163{left:115.866667pt;}
.x10_c00163{left:122.533333pt;}
.x8_c00163{left:144.400000pt;}
.xf_c00163{left:159.733333pt;}
.x12_c00163{left:161.600000pt;}
.x1_c00163{left:380.800000pt;}
.x2_c00163{left:388.800000pt;}
.x3_c00163{left:408.933333pt;}
.x9_c00163{left:414.133333pt;}
.xa_c00163{left:420.800000pt;}
.x13_c00163{left:445.466667pt;}
.xb_c00163{left:449.866667pt;}
.x14_c00163{left:464.000000pt;}
.x15_c00163{left:483.466667pt;}
.x16_c00163{left:502.400000pt;}
.x17_c00163{left:522.533333pt;}
.x18_c00163{left:541.733333pt;}
.xc_c00163{left:551.733333pt;}
.x19_c00163{left:561.200000pt;}
.x1a_c00163{left:600.666667pt;}
.x1b_c00163{left:620.133333pt;}
.x1c_c00163{left:639.600000pt;}
.x1d_c00163{left:660.400000pt;}
.x1f_c00163{left:690.933333pt;}
.xd_c00163{left:717.466667pt;}
}





/* 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_c00164 {
    display:none;
  }
  .loading-indicator_c00164.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00164 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_c00164 { 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_c00164" -> "#page-container .classname_c00164")
 */
.pf_c00164 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00164 { /* 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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00164 { /* 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_c00164 { /* 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_c00164 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00164 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00164 {overflow:visible;}
  }
}
.c_c00164 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00164 { /* 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_c00164:after { /* webkit #35443 */
  content: '';
}
.t_c00164:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00164 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 */
}
.__c00164 { /* 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_c00164 { /* info for Javascript */
  display:none;
}
.l_c00164 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00164 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00164 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00164: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_c00164 {
    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_c00164.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00164.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_c00164 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00164{font-family:sans-serif;visibility:hidden;}
.sc__c00164{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
}
.y0_c00164{bottom:0.000000px;}
.h1_c00164{height:1167.750000px;}
.h0_c00164{height:1167.839997px;}
.w1_c00164{width:920.250000px;}
.w0_c00164{width:920.519990px;}
.x0_c00164{left:0.000000px;}
@media print{
.y0_c00164{bottom:0.000000pt;}
.h1_c00164{height:1038.000000pt;}
.h0_c00164{height:1038.079997pt;}
.w1_c00164{width:818.000000pt;}
.w0_c00164{width:818.239991pt;}
.x0_c00164{left:0.000000pt;}
}





/* 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_c00165 {
    display:none;
  }
  .loading-indicator_c00165.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00165 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_c00165 { 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_c00165" -> "#page-container .classname_c00165")
 */
.pf_c00165 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00165 { /* 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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00165 { /* 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_c00165 { /* 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_c00165 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00165 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00165 {overflow:visible;}
  }
}
.c_c00165 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00165 { /* 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_c00165:after { /* webkit #35443 */
  content: '';
}
.t_c00165:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00165 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 */
}
.__c00165 { /* 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_c00165 { /* info for Javascript */
  display:none;
}
.l_c00165 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00165 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00165 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00165: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_c00165 {
    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_c00165.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00165.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_c00165 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00165{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00165;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.000000;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;}
.m48_c00165{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00165{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00165{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00165{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mab_c00165{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9_c00165{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m44_c00165{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m45_c00165{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m71_c00165{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m13_c00165{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00165{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m75_c00165{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00165{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m73_c00165{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m85_c00165{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00165{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m42_c00165{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m34_c00165{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m39_c00165{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00165{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00165{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m57_c00165{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00165{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m47_c00165{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00165{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7_c00165{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00165{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m91_c00165{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mac_c00165{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00165{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00165{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00165{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m92_c00165{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00165{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m12_c00165{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00165{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00165{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00165{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m90_c00165{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00165{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00165{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00165{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m10_c00165{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m28_c00165{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8_c00165{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m93_c00165{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m72_c00165{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00165{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m19_c00165{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00165{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m66_c00165{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m30_c00165{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6_c00165{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00165{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00165{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00165{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.maa_c00165{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m76_c00165{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00165{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m14_c00165{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00165{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00165{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00165{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00165{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m51_c00165{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m21_c00165{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00165{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00165{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00165{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00165{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00165{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m58_c00165{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00165{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00165{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m25_c00165{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m88_c00165{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb_c00165{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m15_c00165{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00165{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m81_c00165{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m38_c00165{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m74_c00165{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00165{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00165{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00165{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m62_c00165{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00165{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m40_c00165{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m36_c00165{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00165{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m69_c00165{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00165{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma_c00165{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00165{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m95_c00165{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00165{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m70_c00165{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m16_c00165{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m20_c00165{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m78_c00165{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m55_c00165{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00165{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5_c00165{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m23_c00165{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00165{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m94_c00165{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m11_c00165{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf_c00165{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00165{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00165{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m99_c00165{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m32_c00165{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00165{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m65_c00165{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00165{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m27_c00165{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00165{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00165{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m77_c00165{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m35_c00165{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00165{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m29_c00165{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m22_c00165{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00165{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m60_c00165{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m54_c00165{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00165{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00165{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00165{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00165{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m86_c00165{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00165{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m97_c00165{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00165{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00165{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m24_c00165{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m17_c00165{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m96_c00165{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00165{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m98_c00165{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00165{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m67_c00165{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m37_c00165{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00165{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m59_c00165{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m26_c00165{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m33_c00165{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m0_c00165{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m80_c00165{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m89_c00165{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00165{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00165{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m49_c00165{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m46_c00165{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1_c00165{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00165{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m18_c00165{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m61_c00165{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m31_c00165{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00165{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00165{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m87_c00165{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00165{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m56_c00165{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m43_c00165{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m83_c00165{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m82_c00165{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m53_c00165{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m79_c00165{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00165{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m64_c00165{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00165{vertical-align:0.000000px;}
.ls0_c00165{letter-spacing:0.000000px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{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__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00165{word-spacing:-9.125000px;}
.ws9_c00165{word-spacing:-8.333333px;}
.ws3_c00165{word-spacing:-4.375000px;}
.wsc_c00165{word-spacing:-3.000000px;}
.wsd_c00165{word-spacing:0.000000px;}
.ws0_c00165{word-spacing:0.250000px;}
.wsb_c00165{word-spacing:2.282675px;}
.ws4_c00165{word-spacing:7.375000px;}
.ws7_c00165{word-spacing:7.500000px;}
.ws8_c00165{word-spacing:7.643881px;}
.ws1_c00165{word-spacing:12.000000px;}
.ws2_c00165{word-spacing:13.402999px;}
.wsa_c00165{word-spacing:15.365768px;}
.ws6_c00165{word-spacing:50.181818px;}
.fc0_c00165{color:transparent;}
.fs0_c00165{font-size:54.000000px;}
.y0_c00165{bottom:0.000000px;}
.y2d_c00165{bottom:143.400000px;}
.y2c_c00165{bottom:163.950000px;}
.y2b_c00165{bottom:183.450000px;}
.y2a_c00165{bottom:203.550000px;}
.y29_c00165{bottom:223.650000px;}
.y28_c00165{bottom:243.450000px;}
.y27_c00165{bottom:262.950000px;}
.y26_c00165{bottom:282.750000px;}
.y25_c00165{bottom:302.550000px;}
.y24_c00165{bottom:322.350000px;}
.y23_c00165{bottom:342.150000px;}
.y22_c00165{bottom:362.250000px;}
.y21_c00165{bottom:382.350000px;}
.y20_c00165{bottom:402.150000px;}
.y1f_c00165{bottom:421.950000px;}
.y1e_c00165{bottom:442.050000px;}
.y1d_c00165{bottom:461.850000px;}
.y1c_c00165{bottom:482.100000px;}
.y1b_c00165{bottom:501.900000px;}
.y1a_c00165{bottom:522.000000px;}
.y19_c00165{bottom:542.100000px;}
.y18_c00165{bottom:561.900000px;}
.y17_c00165{bottom:581.400000px;}
.y16_c00165{bottom:602.250000px;}
.y15_c00165{bottom:622.050000px;}
.y14_c00165{bottom:642.600000px;}
.y13_c00165{bottom:662.700000px;}
.y12_c00165{bottom:682.500000px;}
.y11_c00165{bottom:702.600000px;}
.y10_c00165{bottom:722.100000px;}
.yf_c00165{bottom:742.200000px;}
.ye_c00165{bottom:762.300000px;}
.yd_c00165{bottom:782.400000px;}
.yc_c00165{bottom:802.500000px;}
.yb_c00165{bottom:822.300000px;}
.ya_c00165{bottom:846.900000px;}
.y9_c00165{bottom:867.450000px;}
.y8_c00165{bottom:886.950000px;}
.y7_c00165{bottom:906.750000px;}
.y6_c00165{bottom:926.850000px;}
.y5_c00165{bottom:946.950000px;}
.y4_c00165{bottom:967.050000px;}
.y3_c00165{bottom:986.850000px;}
.y2_c00165{bottom:1006.950000px;}
.y1_c00165{bottom:1045.500000px;}
.h2_c00165{height:54.000000px;}
.h1_c00165{height:1167.750000px;}
.h0_c00165{height:1167.839997px;}
.w1_c00165{width:920.250000px;}
.w0_c00165{width:920.519990px;}
.x0_c00165{left:0.000000px;}
.xa2_c00165{left:97.200000px;}
.x14_c00165{left:98.250000px;}
.x5e_c00165{left:115.650000px;}
.xf2_c00165{left:117.300000px;}
.xda_c00165{left:118.350000px;}
.xb6_c00165{left:119.400000px;}
.x51_c00165{left:121.950000px;}
.x126_c00165{left:123.000000px;}
.x11a_c00165{left:126.900000px;}
.x75_c00165{left:128.100000px;}
.x3_c00165{left:129.600000px;}
.xc7_c00165{left:133.500000px;}
.x35_c00165{left:135.900000px;}
.x131_c00165{left:138.150000px;}
.x10b_c00165{left:139.200000px;}
.x52_c00165{left:140.250000px;}
.xe4_c00165{left:142.200000px;}
.xb7_c00165{left:144.300000px;}
.xdb_c00165{left:146.400000px;}
.xcc_c00165{left:148.050000px;}
.x127_c00165{left:150.750000px;}
.x44_c00165{left:152.400000px;}
.x136_c00165{left:153.900000px;}
.x15_c00165{left:156.150000px;}
.x4_c00165{left:159.900000px;}
.x26_c00165{left:161.400000px;}
.xa3_c00165{left:162.750000px;}
.x36_c00165{left:164.700000px;}
.x64_c00165{left:170.850000px;}
.xad_c00165{left:172.500000px;}
.x45_c00165{left:174.000000px;}
.x11e_c00165{left:175.200000px;}
.x53_c00165{left:177.000000px;}
.xc0_c00165{left:178.350000px;}
.x16_c00165{left:181.350000px;}
.xe5_c00165{left:183.300000px;}
.xb8_c00165{left:185.400000px;}
.x110_c00165{left:187.950000px;}
.x114_c00165{left:189.300000px;}
.xa4_c00165{left:190.800000px;}
.x9b_c00165{left:192.000000px;}
.x10a_c00165{left:193.500000px;}
.x5_c00165{left:195.150000px;}
.x76_c00165{left:198.000000px;}
.xf3_c00165{left:199.800000px;}
.x46_c00165{left:202.050000px;}
.x70_c00165{left:204.600000px;}
.x27_c00165{left:210.300000px;}
.xdc_c00165{left:211.950000px;}
.x65_c00165{left:213.300000px;}
.x17_c00165{left:215.550000px;}
.x122_c00165{left:217.350000px;}
.xb9_c00165{left:219.900000px;}
.x91_c00165{left:222.750000px;}
.x115_c00165{left:224.250000px;}
.xc8_c00165{left:226.800000px;}
.x37_c00165{left:228.750000px;}
.xdd_c00165{left:231.000000px;}
.xa5_c00165{left:232.950000px;}
.x54_c00165{left:234.150000px;}
.x28_c00165{left:235.800000px;}
.x77_c00165{left:236.850000px;}
.xd4_c00165{left:238.800000px;}
.x18_c00165{left:240.450000px;}
.x9c_c00165{left:242.700000px;}
.x7f_c00165{left:245.400000px;}
.xde_c00165{left:250.650000px;}
.x6_c00165{left:251.700000px;}
.xa6_c00165{left:253.050000px;}
.xcd_c00165{left:255.300000px;}
.x92_c00165{left:256.950000px;}
.x71_c00165{left:259.950000px;}
.x128_c00165{left:261.600000px;}
.x66_c00165{left:262.950000px;}
.xe6_c00165{left:264.600000px;}
.xba_c00165{left:265.650000px;}
.x19_c00165{left:266.700000px;}
.x105_c00165{left:268.500000px;}
.xa7_c00165{left:272.550000px;}
.x5f_c00165{left:274.350000px;}
.xf7_c00165{left:277.800000px;}
.x87_c00165{left:281.850000px;}
.x1a_c00165{left:284.700000px;}
.x55_c00165{left:286.650000px;}
.x80_c00165{left:288.900000px;}
.xae_c00165{left:290.550000px;}
.x129_c00165{left:293.700000px;}
.x7_c00165{left:294.900000px;}
.xbb_c00165{left:297.000000px;}
.xdf_c00165{left:298.200000px;}
.x72_c00165{left:301.050000px;}
.x116_c00165{left:302.100000px;}
.x29_c00165{left:304.950000px;}
.x38_c00165{left:308.700000px;}
.x8_c00165{left:313.200000px;}
.x11b_c00165{left:314.400000px;}
.xe0_c00165{left:316.950000px;}
.xfa_c00165{left:318.300000px;}
.x47_c00165{left:320.100000px;}
.x1b_c00165{left:322.500000px;}
.x88_c00165{left:325.050000px;}
.x103_c00165{left:327.150000px;}
.xfe_c00165{left:328.350000px;}
.xeb_c00165{left:329.400000px;}
.xf4_c00165{left:330.900000px;}
.x93_c00165{left:332.250000px;}
.xa8_c00165{left:333.450000px;}
.x67_c00165{left:334.650000px;}
.xce_c00165{left:336.000000px;}
.x39_c00165{left:337.500000px;}
.x11c_c00165{left:339.600000px;}
.x81_c00165{left:341.100000px;}
.x9_c00165{left:344.100000px;}
.xff_c00165{left:345.600000px;}
.xbc_c00165{left:347.400000px;}
.x89_c00165{left:348.450000px;}
.xe7_c00165{left:349.650000px;}
.x60_c00165{left:350.700000px;}
.x94_c00165{left:352.800000px;}
.x104_c00165{left:354.150000px;}
.x2a_c00165{left:356.100000px;}
.x137_c00165{left:359.100000px;}
.xf8_c00165{left:362.100000px;}
.x56_c00165{left:364.800000px;}
.x12d_c00165{left:366.000000px;}
.x100_c00165{left:370.500000px;}
.x3a_c00165{left:372.450000px;}
.x61_c00165{left:376.200000px;}
.x138_c00165{left:378.150000px;}
.x117_c00165{left:379.200000px;}
.xa_c00165{left:380.400000px;}
.xa9_c00165{left:381.750000px;}
.x1c_c00165{left:383.400000px;}
.x111_c00165{left:385.050000px;}
.xcf_c00165{left:386.100000px;}
.x68_c00165{left:389.250000px;}
.x48_c00165{left:391.350000px;}
.x2b_c00165{left:392.400000px;}
.x8a_c00165{left:393.450000px;}
.x1_c00165{left:394.500000px;}
.xb_c00165{left:399.900000px;}
.xc9_c00165{left:401.550000px;}
.x1d_c00165{left:404.250000px;}
.xd5_c00165{left:406.650000px;}
.x78_c00165{left:408.000000px;}
.x101_c00165{left:409.050000px;}
.x49_c00165{left:411.900000px;}
.x82_c00165{left:413.400000px;}
.x57_c00165{left:414.450000px;}
.x73_c00165{left:415.950000px;}
.x9d_c00165{left:417.600000px;}
.x3b_c00165{left:419.250000px;}
.xaf_c00165{left:420.450000px;}
.x132_c00165{left:423.150000px;}
.x2c_c00165{left:425.850000px;}
.xc_c00165{left:427.650000px;}
.x74_c00165{left:430.650000px;}
.xaa_c00165{left:432.450000px;}
.x58_c00165{left:436.050000px;}
.x2d_c00165{left:438.150000px;}
.x83_c00165{left:439.350000px;}
.x10c_c00165{left:441.450000px;}
.x79_c00165{left:442.950000px;}
.xd6_c00165{left:445.200000px;}
.x1e_c00165{left:446.700000px;}
.x69_c00165{left:449.400000px;}
.xbd_c00165{left:451.800000px;}
.x3c_c00165{left:453.450000px;}
.xd_c00165{left:455.400000px;}
.x106_c00165{left:456.450000px;}
.x11f_c00165{left:457.800000px;}
.x10d_c00165{left:459.150000px;}
.x118_c00165{left:461.700000px;}
.x12a_c00165{left:464.250000px;}
.x112_c00165{left:465.750000px;}
.xb0_c00165{left:467.550000px;}
.x6a_c00165{left:469.500000px;}
.xec_c00165{left:472.350000px;}
.xca_c00165{left:474.000000px;}
.x1f_c00165{left:475.200000px;}
.xe8_c00165{left:476.700000px;}
.x4a_c00165{left:478.200000px;}
.x7a_c00165{left:480.000000px;}
.x123_c00165{left:481.650000px;}
.xf9_c00165{left:483.300000px;}
.xc1_c00165{left:485.400000px;}
.x95_c00165{left:486.600000px;}
.x10e_c00165{left:489.750000px;}
.x12e_c00165{left:490.800000px;}
.xed_c00165{left:491.850000px;}
.x3d_c00165{left:494.550000px;}
.x6b_c00165{left:496.200000px;}
.xd0_c00165{left:498.300000px;}
.x4b_c00165{left:499.500000px;}
.xbe_c00165{left:502.950000px;}
.x7b_c00165{left:504.450000px;}
.x96_c00165{left:505.650000px;}
.x120_c00165{left:506.850000px;}
.xe_c00165{left:508.350000px;}
.xe1_c00165{left:512.100000px;}
.xfb_c00165{left:513.750000px;}
.x59_c00165{left:515.250000px;}
.x20_c00165{left:517.350000px;}
.xc2_c00165{left:519.300000px;}
.xee_c00165{left:520.350000px;}
.xcb_c00165{left:522.900000px;}
.x12b_c00165{left:524.400000px;}
.x2e_c00165{left:526.050000px;}
.x6c_c00165{left:527.850000px;}
.x107_c00165{left:529.950000px;}
.x84_c00165{left:531.150000px;}
.xb1_c00165{left:533.400000px;}
.xd7_c00165{left:534.750000px;}
.xf5_c00165{left:536.250000px;}
.x12f_c00165{left:539.400000px;}
.xd1_c00165{left:540.750000px;}
.x8b_c00165{left:541.800000px;}
.x4c_c00165{left:545.250000px;}
.x3e_c00165{left:546.450000px;}
.x135_c00165{left:548.100000px;}
.x2f_c00165{left:551.250000px;}
.x6d_c00165{left:553.350000px;}
.x9e_c00165{left:557.250000px;}
.xfc_c00165{left:559.500000px;}
.x7c_c00165{left:561.750000px;}
.xf_c00165{left:563.850000px;}
.x21_c00165{left:569.550000px;}
.xc3_c00165{left:571.200000px;}
.xab_c00165{left:573.600000px;}
.xef_c00165{left:575.400000px;}
.x4d_c00165{left:578.700000px;}
.x11d_c00165{left:580.500000px;}
.x102_c00165{left:582.600000px;}
.x3f_c00165{left:583.950000px;}
.x9f_c00165{left:585.300000px;}
.xe2_c00165{left:588.450000px;}
.x30_c00165{left:594.150000px;}
.xb2_c00165{left:596.100000px;}
.x22_c00165{left:599.100000px;}
.x8c_c00165{left:603.300000px;}
.xd2_c00165{left:605.550000px;}
.x119_c00165{left:606.750000px;}
.x6e_c00165{left:608.100000px;}
.x62_c00165{left:610.050000px;}
.x31_c00165{left:611.100000px;}
.xe3_c00165{left:613.650000px;}
.x97_c00165{left:616.500000px;}
.x7d_c00165{left:619.050000px;}
.x40_c00165{left:621.450000px;}
.x133_c00165{left:622.650000px;}
.x4e_c00165{left:623.700000px;}
.xc4_c00165{left:624.900000px;}
.xb3_c00165{left:625.950000px;}
.x23_c00165{left:627.150000px;}
.x5a_c00165{left:628.650000px;}
.xbf_c00165{left:631.050000px;}
.x98_c00165{left:632.400000px;}
.x85_c00165{left:634.200000px;}
.x108_c00165{left:635.700000px;}
.xac_c00165{left:636.900000px;}
.x124_c00165{left:640.050000px;}
.x10_c00165{left:641.700000px;}
.x121_c00165{left:644.100000px;}
.x8d_c00165{left:646.500000px;}
.xa0_c00165{left:648.000000px;}
.xd8_c00165{left:649.650000px;}
.x6f_c00165{left:652.800000px;}
.x12c_c00165{left:655.800000px;}
.x5b_c00165{left:657.750000px;}
.x113_c00165{left:660.750000px;}
.xb4_c00165{left:663.750000px;}
.x32_c00165{left:666.600000px;}
.xe9_c00165{left:668.250000px;}
.x11_c00165{left:670.500000px;}
.x125_c00165{left:672.000000px;}
.x63_c00165{left:675.300000px;}
.x4f_c00165{left:678.750000px;}
.x24_c00165{left:681.900000px;}
.xf0_c00165{left:683.250000px;}
.x8e_c00165{left:684.300000px;}
.x7e_c00165{left:686.100000px;}
.xea_c00165{left:688.050000px;}
.xd9_c00165{left:689.550000px;}
.x41_c00165{left:691.350000px;}
.xc5_c00165{left:694.350000px;}
.x33_c00165{left:695.400000px;}
.x8f_c00165{left:697.950000px;}
.xd3_c00165{left:699.450000px;}
.x25_c00165{left:701.400000px;}
.xa1_c00165{left:703.800000px;}
.x34_c00165{left:707.700000px;}
.x42_c00165{left:709.350000px;}
.x12_c00165{left:711.600000px;}
.x86_c00165{left:712.950000px;}
.x5c_c00165{left:714.600000px;}
.x99_c00165{left:716.250000px;}
.x50_c00165{left:718.050000px;}
.x43_c00165{left:721.200000px;}
.x130_c00165{left:724.500000px;}
.xf1_c00165{left:727.200000px;}
.xb5_c00165{left:728.550000px;}
.x10f_c00165{left:731.100000px;}
.xf6_c00165{left:732.450000px;}
.xfd_c00165{left:733.800000px;}
.x5d_c00165{left:735.150000px;}
.x134_c00165{left:736.500000px;}
.x90_c00165{left:741.150000px;}
.xc6_c00165{left:743.700000px;}
.x9a_c00165{left:745.050000px;}
.x2_c00165{left:747.600000px;}
.x109_c00165{left:751.500000px;}
.x13_c00165{left:752.700000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws5_c00165{word-spacing:-8.111111pt;}
.ws9_c00165{word-spacing:-7.407407pt;}
.ws3_c00165{word-spacing:-3.888889pt;}
.wsc_c00165{word-spacing:-2.666667pt;}
.wsd_c00165{word-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.222222pt;}
.wsb_c00165{word-spacing:2.029044pt;}
.ws4_c00165{word-spacing:6.555556pt;}
.ws7_c00165{word-spacing:6.666667pt;}
.ws8_c00165{word-spacing:6.794561pt;}
.ws1_c00165{word-spacing:10.666667pt;}
.ws2_c00165{word-spacing:11.913777pt;}
.wsa_c00165{word-spacing:13.658460pt;}
.ws6_c00165{word-spacing:44.606061pt;}
.fs0_c00165{font-size:48.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y2d_c00165{bottom:127.466667pt;}
.y2c_c00165{bottom:145.733333pt;}
.y2b_c00165{bottom:163.066667pt;}
.y2a_c00165{bottom:180.933333pt;}
.y29_c00165{bottom:198.800000pt;}
.y28_c00165{bottom:216.400000pt;}
.y27_c00165{bottom:233.733333pt;}
.y26_c00165{bottom:251.333333pt;}
.y25_c00165{bottom:268.933333pt;}
.y24_c00165{bottom:286.533333pt;}
.y23_c00165{bottom:304.133333pt;}
.y22_c00165{bottom:322.000000pt;}
.y21_c00165{bottom:339.866667pt;}
.y20_c00165{bottom:357.466667pt;}
.y1f_c00165{bottom:375.066667pt;}
.y1e_c00165{bottom:392.933333pt;}
.y1d_c00165{bottom:410.533333pt;}
.y1c_c00165{bottom:428.533333pt;}
.y1b_c00165{bottom:446.133333pt;}
.y1a_c00165{bottom:464.000000pt;}
.y19_c00165{bottom:481.866667pt;}
.y18_c00165{bottom:499.466667pt;}
.y17_c00165{bottom:516.800000pt;}
.y16_c00165{bottom:535.333333pt;}
.y15_c00165{bottom:552.933333pt;}
.y14_c00165{bottom:571.200000pt;}
.y13_c00165{bottom:589.066667pt;}
.y12_c00165{bottom:606.666667pt;}
.y11_c00165{bottom:624.533333pt;}
.y10_c00165{bottom:641.866667pt;}
.yf_c00165{bottom:659.733333pt;}
.ye_c00165{bottom:677.600000pt;}
.yd_c00165{bottom:695.466667pt;}
.yc_c00165{bottom:713.333333pt;}
.yb_c00165{bottom:730.933333pt;}
.ya_c00165{bottom:752.800000pt;}
.y9_c00165{bottom:771.066667pt;}
.y8_c00165{bottom:788.400000pt;}
.y7_c00165{bottom:806.000000pt;}
.y6_c00165{bottom:823.866667pt;}
.y5_c00165{bottom:841.733333pt;}
.y4_c00165{bottom:859.600000pt;}
.y3_c00165{bottom:877.200000pt;}
.y2_c00165{bottom:895.066667pt;}
.y1_c00165{bottom:929.333333pt;}
.h2_c00165{height:48.000000pt;}
.h1_c00165{height:1038.000000pt;}
.h0_c00165{height:1038.079997pt;}
.w1_c00165{width:818.000000pt;}
.w0_c00165{width:818.239991pt;}
.x0_c00165{left:0.000000pt;}
.xa2_c00165{left:86.400000pt;}
.x14_c00165{left:87.333333pt;}
.x5e_c00165{left:102.800000pt;}
.xf2_c00165{left:104.266667pt;}
.xda_c00165{left:105.200000pt;}
.xb6_c00165{left:106.133333pt;}
.x51_c00165{left:108.400000pt;}
.x126_c00165{left:109.333333pt;}
.x11a_c00165{left:112.800000pt;}
.x75_c00165{left:113.866667pt;}
.x3_c00165{left:115.200000pt;}
.xc7_c00165{left:118.666667pt;}
.x35_c00165{left:120.800000pt;}
.x131_c00165{left:122.800000pt;}
.x10b_c00165{left:123.733333pt;}
.x52_c00165{left:124.666667pt;}
.xe4_c00165{left:126.400000pt;}
.xb7_c00165{left:128.266667pt;}
.xdb_c00165{left:130.133333pt;}
.xcc_c00165{left:131.600000pt;}
.x127_c00165{left:134.000000pt;}
.x44_c00165{left:135.466667pt;}
.x136_c00165{left:136.800000pt;}
.x15_c00165{left:138.800000pt;}
.x4_c00165{left:142.133333pt;}
.x26_c00165{left:143.466667pt;}
.xa3_c00165{left:144.666667pt;}
.x36_c00165{left:146.400000pt;}
.x64_c00165{left:151.866667pt;}
.xad_c00165{left:153.333333pt;}
.x45_c00165{left:154.666667pt;}
.x11e_c00165{left:155.733333pt;}
.x53_c00165{left:157.333333pt;}
.xc0_c00165{left:158.533333pt;}
.x16_c00165{left:161.200000pt;}
.xe5_c00165{left:162.933333pt;}
.xb8_c00165{left:164.800000pt;}
.x110_c00165{left:167.066667pt;}
.x114_c00165{left:168.266667pt;}
.xa4_c00165{left:169.600000pt;}
.x9b_c00165{left:170.666667pt;}
.x10a_c00165{left:172.000000pt;}
.x5_c00165{left:173.466667pt;}
.x76_c00165{left:176.000000pt;}
.xf3_c00165{left:177.600000pt;}
.x46_c00165{left:179.600000pt;}
.x70_c00165{left:181.866667pt;}
.x27_c00165{left:186.933333pt;}
.xdc_c00165{left:188.400000pt;}
.x65_c00165{left:189.600000pt;}
.x17_c00165{left:191.600000pt;}
.x122_c00165{left:193.200000pt;}
.xb9_c00165{left:195.466667pt;}
.x91_c00165{left:198.000000pt;}
.x115_c00165{left:199.333333pt;}
.xc8_c00165{left:201.600000pt;}
.x37_c00165{left:203.333333pt;}
.xdd_c00165{left:205.333333pt;}
.xa5_c00165{left:207.066667pt;}
.x54_c00165{left:208.133333pt;}
.x28_c00165{left:209.600000pt;}
.x77_c00165{left:210.533333pt;}
.xd4_c00165{left:212.266667pt;}
.x18_c00165{left:213.733333pt;}
.x9c_c00165{left:215.733333pt;}
.x7f_c00165{left:218.133333pt;}
.xde_c00165{left:222.800000pt;}
.x6_c00165{left:223.733333pt;}
.xa6_c00165{left:224.933333pt;}
.xcd_c00165{left:226.933333pt;}
.x92_c00165{left:228.400000pt;}
.x71_c00165{left:231.066667pt;}
.x128_c00165{left:232.533333pt;}
.x66_c00165{left:233.733333pt;}
.xe6_c00165{left:235.200000pt;}
.xba_c00165{left:236.133333pt;}
.x19_c00165{left:237.066667pt;}
.x105_c00165{left:238.666667pt;}
.xa7_c00165{left:242.266667pt;}
.x5f_c00165{left:243.866667pt;}
.xf7_c00165{left:246.933333pt;}
.x87_c00165{left:250.533333pt;}
.x1a_c00165{left:253.066667pt;}
.x55_c00165{left:254.800000pt;}
.x80_c00165{left:256.800000pt;}
.xae_c00165{left:258.266667pt;}
.x129_c00165{left:261.066667pt;}
.x7_c00165{left:262.133333pt;}
.xbb_c00165{left:264.000000pt;}
.xdf_c00165{left:265.066667pt;}
.x72_c00165{left:267.600000pt;}
.x116_c00165{left:268.533333pt;}
.x29_c00165{left:271.066667pt;}
.x38_c00165{left:274.400000pt;}
.x8_c00165{left:278.400000pt;}
.x11b_c00165{left:279.466667pt;}
.xe0_c00165{left:281.733333pt;}
.xfa_c00165{left:282.933333pt;}
.x47_c00165{left:284.533333pt;}
.x1b_c00165{left:286.666667pt;}
.x88_c00165{left:288.933333pt;}
.x103_c00165{left:290.800000pt;}
.xfe_c00165{left:291.866667pt;}
.xeb_c00165{left:292.800000pt;}
.xf4_c00165{left:294.133333pt;}
.x93_c00165{left:295.333333pt;}
.xa8_c00165{left:296.400000pt;}
.x67_c00165{left:297.466667pt;}
.xce_c00165{left:298.666667pt;}
.x39_c00165{left:300.000000pt;}
.x11c_c00165{left:301.866667pt;}
.x81_c00165{left:303.200000pt;}
.x9_c00165{left:305.866667pt;}
.xff_c00165{left:307.200000pt;}
.xbc_c00165{left:308.800000pt;}
.x89_c00165{left:309.733333pt;}
.xe7_c00165{left:310.800000pt;}
.x60_c00165{left:311.733333pt;}
.x94_c00165{left:313.600000pt;}
.x104_c00165{left:314.800000pt;}
.x2a_c00165{left:316.533333pt;}
.x137_c00165{left:319.200000pt;}
.xf8_c00165{left:321.866667pt;}
.x56_c00165{left:324.266667pt;}
.x12d_c00165{left:325.333333pt;}
.x100_c00165{left:329.333333pt;}
.x3a_c00165{left:331.066667pt;}
.x61_c00165{left:334.400000pt;}
.x138_c00165{left:336.133333pt;}
.x117_c00165{left:337.066667pt;}
.xa_c00165{left:338.133333pt;}
.xa9_c00165{left:339.333333pt;}
.x1c_c00165{left:340.800000pt;}
.x111_c00165{left:342.266667pt;}
.xcf_c00165{left:343.200000pt;}
.x68_c00165{left:346.000000pt;}
.x48_c00165{left:347.866667pt;}
.x2b_c00165{left:348.800000pt;}
.x8a_c00165{left:349.733333pt;}
.x1_c00165{left:350.666667pt;}
.xb_c00165{left:355.466667pt;}
.xc9_c00165{left:356.933333pt;}
.x1d_c00165{left:359.333333pt;}
.xd5_c00165{left:361.466667pt;}
.x78_c00165{left:362.666667pt;}
.x101_c00165{left:363.600000pt;}
.x49_c00165{left:366.133333pt;}
.x82_c00165{left:367.466667pt;}
.x57_c00165{left:368.400000pt;}
.x73_c00165{left:369.733333pt;}
.x9d_c00165{left:371.200000pt;}
.x3b_c00165{left:372.666667pt;}
.xaf_c00165{left:373.733333pt;}
.x132_c00165{left:376.133333pt;}
.x2c_c00165{left:378.533333pt;}
.xc_c00165{left:380.133333pt;}
.x74_c00165{left:382.800000pt;}
.xaa_c00165{left:384.400000pt;}
.x58_c00165{left:387.600000pt;}
.x2d_c00165{left:389.466667pt;}
.x83_c00165{left:390.533333pt;}
.x10c_c00165{left:392.400000pt;}
.x79_c00165{left:393.733333pt;}
.xd6_c00165{left:395.733333pt;}
.x1e_c00165{left:397.066667pt;}
.x69_c00165{left:399.466667pt;}
.xbd_c00165{left:401.600000pt;}
.x3c_c00165{left:403.066667pt;}
.xd_c00165{left:404.800000pt;}
.x106_c00165{left:405.733333pt;}
.x11f_c00165{left:406.933333pt;}
.x10d_c00165{left:408.133333pt;}
.x118_c00165{left:410.400000pt;}
.x12a_c00165{left:412.666667pt;}
.x112_c00165{left:414.000000pt;}
.xb0_c00165{left:415.600000pt;}
.x6a_c00165{left:417.333333pt;}
.xec_c00165{left:419.866667pt;}
.xca_c00165{left:421.333333pt;}
.x1f_c00165{left:422.400000pt;}
.xe8_c00165{left:423.733333pt;}
.x4a_c00165{left:425.066667pt;}
.x7a_c00165{left:426.666667pt;}
.x123_c00165{left:428.133333pt;}
.xf9_c00165{left:429.600000pt;}
.xc1_c00165{left:431.466667pt;}
.x95_c00165{left:432.533333pt;}
.x10e_c00165{left:435.333333pt;}
.x12e_c00165{left:436.266667pt;}
.xed_c00165{left:437.200000pt;}
.x3d_c00165{left:439.600000pt;}
.x6b_c00165{left:441.066667pt;}
.xd0_c00165{left:442.933333pt;}
.x4b_c00165{left:444.000000pt;}
.xbe_c00165{left:447.066667pt;}
.x7b_c00165{left:448.400000pt;}
.x96_c00165{left:449.466667pt;}
.x120_c00165{left:450.533333pt;}
.xe_c00165{left:451.866667pt;}
.xe1_c00165{left:455.200000pt;}
.xfb_c00165{left:456.666667pt;}
.x59_c00165{left:458.000000pt;}
.x20_c00165{left:459.866667pt;}
.xc2_c00165{left:461.600000pt;}
.xee_c00165{left:462.533333pt;}
.xcb_c00165{left:464.800000pt;}
.x12b_c00165{left:466.133333pt;}
.x2e_c00165{left:467.600000pt;}
.x6c_c00165{left:469.200000pt;}
.x107_c00165{left:471.066667pt;}
.x84_c00165{left:472.133333pt;}
.xb1_c00165{left:474.133333pt;}
.xd7_c00165{left:475.333333pt;}
.xf5_c00165{left:476.666667pt;}
.x12f_c00165{left:479.466667pt;}
.xd1_c00165{left:480.666667pt;}
.x8b_c00165{left:481.600000pt;}
.x4c_c00165{left:484.666667pt;}
.x3e_c00165{left:485.733333pt;}
.x135_c00165{left:487.200000pt;}
.x2f_c00165{left:490.000000pt;}
.x6d_c00165{left:491.866667pt;}
.x9e_c00165{left:495.333333pt;}
.xfc_c00165{left:497.333333pt;}
.x7c_c00165{left:499.333333pt;}
.xf_c00165{left:501.200000pt;}
.x21_c00165{left:506.266667pt;}
.xc3_c00165{left:507.733333pt;}
.xab_c00165{left:509.866667pt;}
.xef_c00165{left:511.466667pt;}
.x4d_c00165{left:514.400000pt;}
.x11d_c00165{left:516.000000pt;}
.x102_c00165{left:517.866667pt;}
.x3f_c00165{left:519.066667pt;}
.x9f_c00165{left:520.266667pt;}
.xe2_c00165{left:523.066667pt;}
.x30_c00165{left:528.133333pt;}
.xb2_c00165{left:529.866667pt;}
.x22_c00165{left:532.533333pt;}
.x8c_c00165{left:536.266667pt;}
.xd2_c00165{left:538.266667pt;}
.x119_c00165{left:539.333333pt;}
.x6e_c00165{left:540.533333pt;}
.x62_c00165{left:542.266667pt;}
.x31_c00165{left:543.200000pt;}
.xe3_c00165{left:545.466667pt;}
.x97_c00165{left:548.000000pt;}
.x7d_c00165{left:550.266667pt;}
.x40_c00165{left:552.400000pt;}
.x133_c00165{left:553.466667pt;}
.x4e_c00165{left:554.400000pt;}
.xc4_c00165{left:555.466667pt;}
.xb3_c00165{left:556.400000pt;}
.x23_c00165{left:557.466667pt;}
.x5a_c00165{left:558.800000pt;}
.xbf_c00165{left:560.933333pt;}
.x98_c00165{left:562.133333pt;}
.x85_c00165{left:563.733333pt;}
.x108_c00165{left:565.066667pt;}
.xac_c00165{left:566.133333pt;}
.x124_c00165{left:568.933333pt;}
.x10_c00165{left:570.400000pt;}
.x121_c00165{left:572.533333pt;}
.x8d_c00165{left:574.666667pt;}
.xa0_c00165{left:576.000000pt;}
.xd8_c00165{left:577.466667pt;}
.x6f_c00165{left:580.266667pt;}
.x12c_c00165{left:582.933333pt;}
.x5b_c00165{left:584.666667pt;}
.x113_c00165{left:587.333333pt;}
.xb4_c00165{left:590.000000pt;}
.x32_c00165{left:592.533333pt;}
.xe9_c00165{left:594.000000pt;}
.x11_c00165{left:596.000000pt;}
.x125_c00165{left:597.333333pt;}
.x63_c00165{left:600.266667pt;}
.x4f_c00165{left:603.333333pt;}
.x24_c00165{left:606.133333pt;}
.xf0_c00165{left:607.333333pt;}
.x8e_c00165{left:608.266667pt;}
.x7e_c00165{left:609.866667pt;}
.xea_c00165{left:611.600000pt;}
.xd9_c00165{left:612.933333pt;}
.x41_c00165{left:614.533333pt;}
.xc5_c00165{left:617.200000pt;}
.x33_c00165{left:618.133333pt;}
.x8f_c00165{left:620.400000pt;}
.xd3_c00165{left:621.733333pt;}
.x25_c00165{left:623.466667pt;}
.xa1_c00165{left:625.600000pt;}
.x34_c00165{left:629.066667pt;}
.x42_c00165{left:630.533333pt;}
.x12_c00165{left:632.533333pt;}
.x86_c00165{left:633.733333pt;}
.x5c_c00165{left:635.200000pt;}
.x99_c00165{left:636.666667pt;}
.x50_c00165{left:638.266667pt;}
.x43_c00165{left:641.066667pt;}
.x130_c00165{left:644.000000pt;}
.xf1_c00165{left:646.400000pt;}
.xb5_c00165{left:647.600000pt;}
.x10f_c00165{left:649.866667pt;}
.xf6_c00165{left:651.066667pt;}
.xfd_c00165{left:652.266667pt;}
.x5d_c00165{left:653.466667pt;}
.x134_c00165{left:654.666667pt;}
.x90_c00165{left:658.800000pt;}
.xc6_c00165{left:661.066667pt;}
.x9a_c00165{left:662.266667pt;}
.x2_c00165{left:664.533333pt;}
.x109_c00165{left:668.000000pt;}
.x13_c00165{left:669.066667pt;}
}





/* 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_c00166 {
    display:none;
  }
  .loading-indicator_c00166.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00166 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_c00166 { 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_c00166" -> "#page-container .classname_c00166")
 */
.pf_c00166 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00166 { /* 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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00166 { /* 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_c00166 { /* 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_c00166 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00166 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00166 {overflow:visible;}
  }
}
.c_c00166 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00166 { /* 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_c00166:after { /* webkit #35443 */
  content: '';
}
.t_c00166:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00166 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 */
}
.__c00166 { /* 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_c00166 { /* info for Javascript */
  display:none;
}
.l_c00166 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00166 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00166 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00166: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_c00166 {
    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_c00166.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00166.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_c00166 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00166{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00166;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.000000;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;}
.m74_c00166{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m87_c00166{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00166{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00166{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00166{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m84_c00166{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m79_c00166{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00166{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00166{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m98_c00166{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m77_c00166{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00166{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m95_c00166{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m69_c00166{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00166{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00166{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00166{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00166{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00166{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00166{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m91_c00166{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00166{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00166{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00166{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00166{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00166{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m80_c00166{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00166{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00166{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00166{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00166{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m83_c00166{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maa_c00166{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00166{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m65_c00166{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mf_c00166{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m96_c00166{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m67_c00166{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m81_c00166{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00166{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m88_c00166{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00166{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00166{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00166{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00166{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00166{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m46_c00166{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mac_c00166{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00166{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m90_c00166{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00166{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m82_c00166{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00166{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m89_c00166{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m64_c00166{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m63_c00166{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00166{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00166{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00166{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m70_c00166{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00166{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m99_c00166{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00166{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m92_c00166{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00166{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m44_c00166{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00166{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mba_c00166{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mae_c00166{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00166{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00166{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00166{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00166{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00166{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m68_c00166{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00166{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m72_c00166{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00166{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m60_c00166{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m97_c00166{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m94_c00166{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00166{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00166{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m66_c00166{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);}
.m2d_c00166{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m0_c00166{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m40_c00166{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m48_c00166{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00166{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00166{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00166{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00166{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00166{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00166{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m50_c00166{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m78_c00166{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m59_c00166{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m85_c00166{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m73_c00166{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00166{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00166{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m93_c00166{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m42_c00166{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00166{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m61_c00166{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00166{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8_c00166{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m57_c00166{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00166{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00166{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m76_c00166{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mab_c00166{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m51_c00166{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m62_c00166{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m55_c00166{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00166{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.maf_c00166{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00166{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m54_c00166{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00166{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00166{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.mc_c00166{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00166{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00166{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c00166{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m53_c00166{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00166{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00166{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00166{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00166{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00166{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00166{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00166{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m47_c00166{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m45_c00166{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00166{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00166{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00166{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m43_c00166{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m52_c00166{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m75_c00166{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00166{transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00166{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00166{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m49_c00166{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00166{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mad_c00166{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{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__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00166{word-spacing:-7.176471px;}
.ws4_c00166{word-spacing:-6.666667px;}
.ws6_c00166{word-spacing:-4.117647px;}
.ws2_c00166{word-spacing:-3.333333px;}
.ws8_c00166{word-spacing:-1.227273px;}
.wsb_c00166{word-spacing:0.000000px;}
.ws0_c00166{word-spacing:2.444444px;}
.ws1_c00166{word-spacing:2.750000px;}
.ws5_c00166{word-spacing:3.777778px;}
.ws7_c00166{word-spacing:4.666667px;}
.ws3_c00166{word-spacing:5.161290px;}
.ws9_c00166{word-spacing:11.333333px;}
.fc0_c00166{color:transparent;}
.fs1_c00166{font-size:48.000000px;}
.fs0_c00166{font-size:66.000000px;}
.y0_c00166{bottom:0.000000px;}
.y53_c00166{bottom:143.250000px;}
.y32_c00166{bottom:143.700000px;}
.y52_c00166{bottom:158.400000px;}
.y31_c00166{bottom:159.600000px;}
.y51_c00166{bottom:174.900000px;}
.y30_c00166{bottom:175.050000px;}
.y50_c00166{bottom:189.750000px;}
.y2f_c00166{bottom:190.500000px;}
.y4f_c00166{bottom:205.950000px;}
.y2e_c00166{bottom:206.100000px;}
.y2d_c00166{bottom:221.550000px;}
.y4e_c00166{bottom:221.850000px;}
.y2c_c00166{bottom:237.000000px;}
.y4d_c00166{bottom:237.300000px;}
.y4c_c00166{bottom:252.300000px;}
.y2b_c00166{bottom:252.900000px;}
.y2a_c00166{bottom:268.050000px;}
.y4b_c00166{bottom:268.500000px;}
.y29_c00166{bottom:283.500000px;}
.y4a_c00166{bottom:283.950000px;}
.y28_c00166{bottom:299.400000px;}
.y49_c00166{bottom:314.850000px;}
.y27_c00166{bottom:315.300000px;}
.y26_c00166{bottom:330.000000px;}
.y48_c00166{bottom:330.750000px;}
.y25_c00166{bottom:346.200000px;}
.y47_c00166{bottom:346.650000px;}
.y24_c00166{bottom:361.350000px;}
.y46_c00166{bottom:362.850000px;}
.y23_c00166{bottom:377.250000px;}
.y45_c00166{bottom:378.000000px;}
.y22_c00166{bottom:392.850000px;}
.y44_c00166{bottom:393.450000px;}
.y21_c00166{bottom:408.300000px;}
.y43_c00166{bottom:409.350000px;}
.y20_c00166{bottom:424.200000px;}
.y42_c00166{bottom:424.800000px;}
.y1f_c00166{bottom:440.100000px;}
.y41_c00166{bottom:440.700000px;}
.y1e_c00166{bottom:456.000000px;}
.y40_c00166{bottom:456.150000px;}
.y1d_c00166{bottom:470.700000px;}
.y3f_c00166{bottom:471.600000px;}
.y1c_c00166{bottom:486.600000px;}
.y3e_c00166{bottom:487.050000px;}
.y1b_c00166{bottom:502.050000px;}
.y3d_c00166{bottom:502.950000px;}
.y1a_c00166{bottom:517.950000px;}
.y3c_c00166{bottom:518.400000px;}
.y19_c00166{bottom:533.400000px;}
.y3b_c00166{bottom:534.300000px;}
.y18_c00166{bottom:549.300000px;}
.y3a_c00166{bottom:549.600000px;}
.y17_c00166{bottom:564.450000px;}
.y39_c00166{bottom:565.050000px;}
.y16_c00166{bottom:580.200000px;}
.y38_c00166{bottom:580.950000px;}
.y15_c00166{bottom:596.400000px;}
.y14_c00166{bottom:611.550000px;}
.y37_c00166{bottom:611.850000px;}
.y13_c00166{bottom:627.450000px;}
.y36_c00166{bottom:627.750000px;}
.y12_c00166{bottom:643.350000px;}
.y35_c00166{bottom:643.650000px;}
.y11_c00166{bottom:658.800000px;}
.y34_c00166{bottom:659.100000px;}
.y10_c00166{bottom:674.250000px;}
.y33_c00166{bottom:675.000000px;}
.yf_c00166{bottom:723.900000px;}
.ye_c00166{bottom:744.450000px;}
.yd_c00166{bottom:764.250000px;}
.yc_c00166{bottom:785.100000px;}
.yb_c00166{bottom:822.600000px;}
.ya_c00166{bottom:842.400000px;}
.y9_c00166{bottom:862.500000px;}
.y8_c00166{bottom:882.300000px;}
.y7_c00166{bottom:902.850000px;}
.y6_c00166{bottom:922.050000px;}
.y5_c00166{bottom:942.600000px;}
.y4_c00166{bottom:962.700000px;}
.y3_c00166{bottom:982.800000px;}
.y2_c00166{bottom:1002.900000px;}
.y1_c00166{bottom:1041.150000px;}
.h3_c00166{height:48.000000px;}
.h2_c00166{height:66.000000px;}
.h1_c00166{height:1167.750000px;}
.h0_c00166{height:1167.839997px;}
.w1_c00166{width:920.250000px;}
.w0_c00166{width:920.519990px;}
.x0_c00166{left:0.000000px;}
.xf6_c00166{left:146.250000px;}
.xc3_c00166{left:147.600000px;}
.x8c_c00166{left:148.800000px;}
.x14_c00166{left:150.900000px;}
.x1_c00166{left:151.950000px;}
.xe8_c00166{left:157.050000px;}
.xd2_c00166{left:158.100000px;}
.xf9_c00166{left:162.900000px;}
.xd6_c00166{left:165.450000px;}
.xe2_c00166{left:167.250000px;}
.xaf_c00166{left:168.450000px;}
.x4d_c00166{left:171.000000px;}
.xb5_c00166{left:172.500000px;}
.xa1_c00166{left:174.300000px;}
.xe4_c00166{left:176.400000px;}
.xbc_c00166{left:177.750000px;}
.x40_c00166{left:179.550000px;}
.x3_c00166{left:182.100000px;}
.xce_c00166{left:183.150000px;}
.xbb_c00166{left:185.550000px;}
.xa2_c00166{left:187.650000px;}
.x5b_c00166{left:190.050000px;}
.x8d_c00166{left:191.700000px;}
.xd9_c00166{left:193.800000px;}
.xaa_c00166{left:195.300000px;}
.xa3_c00166{left:197.400000px;}
.xfc_c00166{left:198.450000px;}
.xde_c00166{left:199.500000px;}
.xb8_c00166{left:201.900000px;}
.x43_c00166{left:203.700000px;}
.xe3_c00166{left:204.750000px;}
.x22_c00166{left:206.400000px;}
.x69_c00166{left:207.600000px;}
.xec_c00166{left:208.800000px;}
.x15_c00166{left:211.050000px;}
.xcb_c00166{left:212.700000px;}
.xb6_c00166{left:214.950000px;}
.x4e_c00166{left:217.050000px;}
.xf1_c00166{left:218.850000px;}
.x98_c00166{left:219.900000px;}
.x6a_c00166{left:221.700000px;}
.x34_c00166{left:223.950000px;}
.xef_c00166{left:225.300000px;}
.x4_c00166{left:229.200000px;}
.x41_c00166{left:230.250000px;}
.x44_c00166{left:232.800000px;}
.x5c_c00166{left:235.350000px;}
.xc4_c00166{left:236.550000px;}
.xcf_c00166{left:237.900000px;}
.xd3_c00166{left:239.400000px;}
.xe0_c00166{left:241.050000px;}
.x74_c00166{left:242.700000px;}
.xff_c00166{left:245.550000px;}
.xd7_c00166{left:248.550000px;}
.x4f_c00166{left:249.750000px;}
.x16_c00166{left:250.950000px;}
.xe5_c00166{left:252.000000px;}
.xdf_c00166{left:253.800000px;}
.x8e_c00166{left:255.000000px;}
.xc0_c00166{left:256.650000px;}
.x42_c00166{left:258.750000px;}
.xfa_c00166{left:259.800000px;}
.xda_c00166{left:263.250000px;}
.x23_c00166{left:264.300000px;}
.xc1_c00166{left:265.950000px;}
.xab_c00166{left:267.300000px;}
.xd0_c00166{left:268.500000px;}
.x45_c00166{left:270.300000px;}
.xa7_c00166{left:272.550000px;}
.x84_c00166{left:274.950000px;}
.xe6_c00166{left:276.150000px;}
.xb0_c00166{left:277.800000px;}
.x5d_c00166{left:280.050000px;}
.x7b_c00166{left:281.100000px;}
.xc5_c00166{left:284.850000px;}
.x8f_c00166{left:286.350000px;}
.x35_c00166{left:288.450000px;}
.x24_c00166{left:289.500000px;}
.xac_c00166{left:291.450000px;}
.xf4_c00166{left:292.500000px;}
.x99_c00166{left:293.700000px;}
.xbd_c00166{left:295.650000px;}
.xdb_c00166{left:297.150000px;}
.xe9_c00166{left:298.950000px;}
.xe1_c00166{left:300.450000px;}
.x17_c00166{left:302.400000px;}
.xf2_c00166{left:305.550000px;}
.xcc_c00166{left:306.750000px;}
.x5_c00166{left:308.400000px;}
.x50_c00166{left:312.000000px;}
.x90_c00166{left:313.350000px;}
.x5e_c00166{left:315.300000px;}
.x85_c00166{left:317.400000px;}
.x75_c00166{left:319.050000px;}
.x100_c00166{left:321.150000px;}
.x9a_c00166{left:322.200000px;}
.xc6_c00166{left:323.700000px;}
.xb1_c00166{left:325.200000px;}
.x36_c00166{left:326.250000px;}
.x25_c00166{left:328.050000px;}
.xa4_c00166{left:329.400000px;}
.xad_c00166{left:331.650000px;}
.x46_c00166{left:333.600000px;}
.xbe_c00166{left:336.300000px;}
.xc7_c00166{left:338.100000px;}
.xa8_c00166{left:340.500000px;}
.x51_c00166{left:342.300000px;}
.xf7_c00166{left:344.400000px;}
.xbf_c00166{left:346.050000px;}
.xfb_c00166{left:348.450000px;}
.xd1_c00166{left:350.550000px;}
.x6_c00166{left:353.400000px;}
.x37_c00166{left:354.750000px;}
.x18_c00166{left:356.100000px;}
.x26_c00166{left:357.600000px;}
.xae_c00166{left:360.750000px;}
.xc8_c00166{left:363.000000px;}
.xb9_c00166{left:364.500000px;}
.xcd_c00166{left:366.600000px;}
.xdc_c00166{left:368.100000px;}
.xb2_c00166{left:370.950000px;}
.x7c_c00166{left:373.350000px;}
.xa5_c00166{left:374.400000px;}
.xfd_c00166{left:375.600000px;}
.x19_c00166{left:376.650000px;}
.xe7_c00166{left:378.450000px;}
.xa9_c00166{left:379.800000px;}
.x52_c00166{left:381.600000px;}
.x101_c00166{left:384.450000px;}
.x27_c00166{left:386.400000px;}
.xb3_c00166{left:387.450000px;}
.x7_c00166{left:388.650000px;}
.x76_c00166{left:390.750000px;}
.xea_c00166{left:392.550000px;}
.x86_c00166{left:393.600000px;}
.xdd_c00166{left:396.150000px;}
.x9b_c00166{left:399.600000px;}
.x5f_c00166{left:401.700000px;}
.xc9_c00166{left:403.350000px;}
.x8_c00166{left:405.600000px;}
.xfe_c00166{left:407.850000px;}
.xd4_c00166{left:409.200000px;}
.xf8_c00166{left:410.250000px;}
.x53_c00166{left:411.450000px;}
.xf5_c00166{left:413.100000px;}
.xa6_c00166{left:416.550000px;}
.xd8_c00166{left:419.100000px;}
.xed_c00166{left:420.150000px;}
.xd5_c00166{left:423.600000px;}
.x38_c00166{left:424.950000px;}
.x87_c00166{left:426.000000px;}
.x9c_c00166{left:428.400000px;}
.x54_c00166{left:432.000000px;}
.x6b_c00166{left:434.100000px;}
.xee_c00166{left:435.300000px;}
.xc2_c00166{left:437.700000px;}
.xb7_c00166{left:440.250000px;}
.xeb_c00166{left:441.450000px;}
.xca_c00166{left:442.950000px;}
.x28_c00166{left:447.900000px;}
.x2_c00166{left:448.950000px;}
.x60_c00166{left:450.600000px;}
.x7d_c00166{left:452.550000px;}
.xf0_c00166{left:453.600000px;}
.x9_c00166{left:455.700000px;}
.xba_c00166{left:457.350000px;}
.xb4_c00166{left:458.700000px;}
.x47_c00166{left:460.050000px;}
.x91_c00166{left:463.200000px;}
.x29_c00166{left:465.600000px;}
.xf3_c00166{left:467.400000px;}
.x7e_c00166{left:468.450000px;}
.x61_c00166{left:471.450000px;}
.x9d_c00166{left:475.200000px;}
.x2a_c00166{left:481.050000px;}
.xa_c00166{left:482.400000px;}
.x77_c00166{left:484.350000px;}
.x1a_c00166{left:486.900000px;}
.x39_c00166{left:490.500000px;}
.x92_c00166{left:491.700000px;}
.x48_c00166{left:493.500000px;}
.x9e_c00166{left:495.750000px;}
.x6c_c00166{left:505.050000px;}
.x1b_c00166{left:508.500000px;}
.x62_c00166{left:510.300000px;}
.x7f_c00166{left:512.700000px;}
.x55_c00166{left:514.050000px;}
.x130_c00166{left:516.300000px;}
.x102_c00166{left:518.400000px;}
.x6d_c00166{left:520.200000px;}
.x117_c00166{left:521.850000px;}
.x11b_c00166{left:523.200000px;}
.x106_c00166{left:524.700000px;}
.x155_c00166{left:526.050000px;}
.xb_c00166{left:527.100000px;}
.x113_c00166{left:528.150000px;}
.x63_c00166{left:530.100000px;}
.x80_c00166{left:532.800000px;}
.x14b_c00166{left:534.300000px;}
.x144_c00166{left:537.150000px;}
.x121_c00166{left:538.200000px;}
.x1c_c00166{left:539.850000px;}
.x2b_c00166{left:541.950000px;}
.x137_c00166{left:543.150000px;}
.x142_c00166{left:544.500000px;}
.x11c_c00166{left:546.600000px;}
.x14c_c00166{left:547.650000px;}
.x107_c00166{left:548.850000px;}
.x127_c00166{left:550.800000px;}
.x3a_c00166{left:552.450000px;}
.x6e_c00166{left:553.650000px;}
.x13c_c00166{left:556.050000px;}
.x64_c00166{left:558.600000px;}
.x56_c00166{left:559.800000px;}
.x2c_c00166{left:561.450000px;}
.xc_c00166{left:563.100000px;}
.x145_c00166{left:565.200000px;}
.x122_c00166{left:567.000000px;}
.x118_c00166{left:568.350000px;}
.x49_c00166{left:569.850000px;}
.x14a_c00166{left:570.900000px;}
.x13d_c00166{left:573.000000px;}
.x158_c00166{left:574.200000px;}
.x57_c00166{left:576.750000px;}
.x81_c00166{left:578.100000px;}
.x3b_c00166{left:580.200000px;}
.x151_c00166{left:582.450000px;}
.x1d_c00166{left:583.800000px;}
.xd_c00166{left:585.450000px;}
.x65_c00166{left:586.650000px;}
.x2d_c00166{left:588.750000px;}
.x14e_c00166{left:591.000000px;}
.x108_c00166{left:592.050000px;}
.x114_c00166{left:593.400000px;}
.x141_c00166{left:596.100000px;}
.x58_c00166{left:597.300000px;}
.x157_c00166{left:599.850000px;}
.x78_c00166{left:600.900000px;}
.x3c_c00166{left:602.100000px;}
.x6f_c00166{left:605.100000px;}
.x13e_c00166{left:608.250000px;}
.x93_c00166{left:610.500000px;}
.x10f_c00166{left:611.700000px;}
.x109_c00166{left:613.950000px;}
.x88_c00166{left:615.450000px;}
.x129_c00166{left:616.650000px;}
.x135_c00166{left:619.050000px;}
.x131_c00166{left:622.200000px;}
.x2e_c00166{left:623.250000px;}
.x115_c00166{left:625.500000px;}
.x123_c00166{left:628.200000px;}
.x11d_c00166{left:630.900000px;}
.x1e_c00166{left:632.700000px;}
.x82_c00166{left:633.900000px;}
.x110_c00166{left:636.600000px;}
.x12a_c00166{left:638.550000px;}
.x14f_c00166{left:639.600000px;}
.x4a_c00166{left:641.100000px;}
.xe_c00166{left:643.050000px;}
.x70_c00166{left:645.750000px;}
.x59_c00166{left:647.400000px;}
.x150_c00166{left:648.600000px;}
.x159_c00166{left:649.800000px;}
.x124_c00166{left:651.600000px;}
.x9f_c00166{left:653.100000px;}
.x1f_c00166{left:654.600000px;}
.x13b_c00166{left:656.250000px;}
.x138_c00166{left:658.050000px;}
.x94_c00166{left:659.850000px;}
.xf_c00166{left:664.350000px;}
.x10a_c00166{left:667.200000px;}
.x12b_c00166{left:668.400000px;}
.x66_c00166{left:669.450000px;}
.x152_c00166{left:672.450000px;}
.x103_c00166{left:673.650000px;}
.x2f_c00166{left:675.150000px;}
.x3d_c00166{left:676.350000px;}
.x12c_c00166{left:679.350000px;}
.x5a_c00166{left:681.900000px;}
.x10b_c00166{left:683.100000px;}
.x128_c00166{left:685.050000px;}
.x10_c00166{left:687.750000px;}
.x143_c00166{left:689.100000px;}
.x89_c00166{left:692.100000px;}
.x136_c00166{left:693.150000px;}
.x156_c00166{left:694.500000px;}
.x12d_c00166{left:697.050000px;}
.x79_c00166{left:698.100000px;}
.x67_c00166{left:699.750000px;}
.x111_c00166{left:702.450000px;}
.x30_c00166{left:704.250000px;}
.x10c_c00166{left:706.800000px;}
.x11e_c00166{left:709.050000px;}
.x153_c00166{left:710.250000px;}
.x139_c00166{left:713.100000px;}
.x95_c00166{left:715.650000px;}
.x13f_c00166{left:718.350000px;}
.x11_c00166{left:720.450000px;}
.x132_c00166{left:723.750000px;}
.x7a_c00166{left:726.150000px;}
.x31_c00166{left:727.350000px;}
.x71_c00166{left:728.550000px;}
.x112_c00166{left:730.500000px;}
.x149_c00166{left:731.550000px;}
.x147_c00166{left:733.350000px;}
.x133_c00166{left:735.300000px;}
.x8a_c00166{left:736.350000px;}
.x3e_c00166{left:737.850000px;}
.x4b_c00166{left:740.550000px;}
.x13a_c00166{left:742.200000px;}
.x104_c00166{left:743.250000px;}
.x148_c00166{left:746.250000px;}
.x125_c00166{left:748.350000px;}
.x68_c00166{left:750.450000px;}
.x20_c00166{left:753.600000px;}
.x8b_c00166{left:755.100000px;}
.x10d_c00166{left:756.150000px;}
.xa0_c00166{left:757.800000px;}
.x12e_c00166{left:759.000000px;}
.x96_c00166{left:760.350000px;}
.x116_c00166{left:763.800000px;}
.x134_c00166{left:764.850000px;}
.x11f_c00166{left:766.350000px;}
.x105_c00166{left:767.400000px;}
.x119_c00166{left:769.800000px;}
.x32_c00166{left:771.600000px;}
.x72_c00166{left:773.550000px;}
.x14d_c00166{left:775.350000px;}
.x12f_c00166{left:776.700000px;}
.x10e_c00166{left:778.050000px;}
.x83_c00166{left:781.500000px;}
.x4c_c00166{left:782.700000px;}
.x126_c00166{left:785.100000px;}
.x12_c00166{left:787.350000px;}
.x15a_c00166{left:788.400000px;}
.x97_c00166{left:789.450000px;}
.x120_c00166{left:793.050000px;}
.x11a_c00166{left:795.000000px;}
.x154_c00166{left:796.050000px;}
.x140_c00166{left:797.250000px;}
.x73_c00166{left:798.450000px;}
.x21_c00166{left:799.650000px;}
.x13_c00166{left:804.600000px;}
.x146_c00166{left:805.950000px;}
.x3f_c00166{left:807.000000px;}
.x33_c00166{left:810.150000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.wsa_c00166{word-spacing:-6.379085pt;}
.ws4_c00166{word-spacing:-5.925926pt;}
.ws6_c00166{word-spacing:-3.660131pt;}
.ws2_c00166{word-spacing:-2.962963pt;}
.ws8_c00166{word-spacing:-1.090909pt;}
.wsb_c00166{word-spacing:0.000000pt;}
.ws0_c00166{word-spacing:2.172840pt;}
.ws1_c00166{word-spacing:2.444444pt;}
.ws5_c00166{word-spacing:3.358025pt;}
.ws7_c00166{word-spacing:4.148148pt;}
.ws3_c00166{word-spacing:4.587814pt;}
.ws9_c00166{word-spacing:10.074074pt;}
.fs1_c00166{font-size:42.666667pt;}
.fs0_c00166{font-size:58.666667pt;}
.y0_c00166{bottom:0.000000pt;}
.y53_c00166{bottom:127.333333pt;}
.y32_c00166{bottom:127.733333pt;}
.y52_c00166{bottom:140.800000pt;}
.y31_c00166{bottom:141.866667pt;}
.y51_c00166{bottom:155.466667pt;}
.y30_c00166{bottom:155.600000pt;}
.y50_c00166{bottom:168.666667pt;}
.y2f_c00166{bottom:169.333333pt;}
.y4f_c00166{bottom:183.066667pt;}
.y2e_c00166{bottom:183.200000pt;}
.y2d_c00166{bottom:196.933333pt;}
.y4e_c00166{bottom:197.200000pt;}
.y2c_c00166{bottom:210.666667pt;}
.y4d_c00166{bottom:210.933333pt;}
.y4c_c00166{bottom:224.266667pt;}
.y2b_c00166{bottom:224.800000pt;}
.y2a_c00166{bottom:238.266667pt;}
.y4b_c00166{bottom:238.666667pt;}
.y29_c00166{bottom:252.000000pt;}
.y4a_c00166{bottom:252.400000pt;}
.y28_c00166{bottom:266.133333pt;}
.y49_c00166{bottom:279.866667pt;}
.y27_c00166{bottom:280.266667pt;}
.y26_c00166{bottom:293.333333pt;}
.y48_c00166{bottom:294.000000pt;}
.y25_c00166{bottom:307.733333pt;}
.y47_c00166{bottom:308.133333pt;}
.y24_c00166{bottom:321.200000pt;}
.y46_c00166{bottom:322.533333pt;}
.y23_c00166{bottom:335.333333pt;}
.y45_c00166{bottom:336.000000pt;}
.y22_c00166{bottom:349.200000pt;}
.y44_c00166{bottom:349.733333pt;}
.y21_c00166{bottom:362.933333pt;}
.y43_c00166{bottom:363.866667pt;}
.y20_c00166{bottom:377.066667pt;}
.y42_c00166{bottom:377.600000pt;}
.y1f_c00166{bottom:391.200000pt;}
.y41_c00166{bottom:391.733333pt;}
.y1e_c00166{bottom:405.333333pt;}
.y40_c00166{bottom:405.466667pt;}
.y1d_c00166{bottom:418.400000pt;}
.y3f_c00166{bottom:419.200000pt;}
.y1c_c00166{bottom:432.533333pt;}
.y3e_c00166{bottom:432.933333pt;}
.y1b_c00166{bottom:446.266667pt;}
.y3d_c00166{bottom:447.066667pt;}
.y1a_c00166{bottom:460.400000pt;}
.y3c_c00166{bottom:460.800000pt;}
.y19_c00166{bottom:474.133333pt;}
.y3b_c00166{bottom:474.933333pt;}
.y18_c00166{bottom:488.266667pt;}
.y3a_c00166{bottom:488.533333pt;}
.y17_c00166{bottom:501.733333pt;}
.y39_c00166{bottom:502.266667pt;}
.y16_c00166{bottom:515.733333pt;}
.y38_c00166{bottom:516.400000pt;}
.y15_c00166{bottom:530.133333pt;}
.y14_c00166{bottom:543.600000pt;}
.y37_c00166{bottom:543.866667pt;}
.y13_c00166{bottom:557.733333pt;}
.y36_c00166{bottom:558.000000pt;}
.y12_c00166{bottom:571.866667pt;}
.y35_c00166{bottom:572.133333pt;}
.y11_c00166{bottom:585.600000pt;}
.y34_c00166{bottom:585.866667pt;}
.y10_c00166{bottom:599.333333pt;}
.y33_c00166{bottom:600.000000pt;}
.yf_c00166{bottom:643.466667pt;}
.ye_c00166{bottom:661.733333pt;}
.yd_c00166{bottom:679.333333pt;}
.yc_c00166{bottom:697.866667pt;}
.yb_c00166{bottom:731.200000pt;}
.ya_c00166{bottom:748.800000pt;}
.y9_c00166{bottom:766.666667pt;}
.y8_c00166{bottom:784.266667pt;}
.y7_c00166{bottom:802.533333pt;}
.y6_c00166{bottom:819.600000pt;}
.y5_c00166{bottom:837.866667pt;}
.y4_c00166{bottom:855.733333pt;}
.y3_c00166{bottom:873.600000pt;}
.y2_c00166{bottom:891.466667pt;}
.y1_c00166{bottom:925.466667pt;}
.h3_c00166{height:42.666667pt;}
.h2_c00166{height:58.666667pt;}
.h1_c00166{height:1038.000000pt;}
.h0_c00166{height:1038.079997pt;}
.w1_c00166{width:818.000000pt;}
.w0_c00166{width:818.239991pt;}
.x0_c00166{left:0.000000pt;}
.xf6_c00166{left:130.000000pt;}
.xc3_c00166{left:131.200000pt;}
.x8c_c00166{left:132.266667pt;}
.x14_c00166{left:134.133333pt;}
.x1_c00166{left:135.066667pt;}
.xe8_c00166{left:139.600000pt;}
.xd2_c00166{left:140.533333pt;}
.xf9_c00166{left:144.800000pt;}
.xd6_c00166{left:147.066667pt;}
.xe2_c00166{left:148.666667pt;}
.xaf_c00166{left:149.733333pt;}
.x4d_c00166{left:152.000000pt;}
.xb5_c00166{left:153.333333pt;}
.xa1_c00166{left:154.933333pt;}
.xe4_c00166{left:156.800000pt;}
.xbc_c00166{left:158.000000pt;}
.x40_c00166{left:159.600000pt;}
.x3_c00166{left:161.866667pt;}
.xce_c00166{left:162.800000pt;}
.xbb_c00166{left:164.933333pt;}
.xa2_c00166{left:166.800000pt;}
.x5b_c00166{left:168.933333pt;}
.x8d_c00166{left:170.400000pt;}
.xd9_c00166{left:172.266667pt;}
.xaa_c00166{left:173.600000pt;}
.xa3_c00166{left:175.466667pt;}
.xfc_c00166{left:176.400000pt;}
.xde_c00166{left:177.333333pt;}
.xb8_c00166{left:179.466667pt;}
.x43_c00166{left:181.066667pt;}
.xe3_c00166{left:182.000000pt;}
.x22_c00166{left:183.466667pt;}
.x69_c00166{left:184.533333pt;}
.xec_c00166{left:185.600000pt;}
.x15_c00166{left:187.600000pt;}
.xcb_c00166{left:189.066667pt;}
.xb6_c00166{left:191.066667pt;}
.x4e_c00166{left:192.933333pt;}
.xf1_c00166{left:194.533333pt;}
.x98_c00166{left:195.466667pt;}
.x6a_c00166{left:197.066667pt;}
.x34_c00166{left:199.066667pt;}
.xef_c00166{left:200.266667pt;}
.x4_c00166{left:203.733333pt;}
.x41_c00166{left:204.666667pt;}
.x44_c00166{left:206.933333pt;}
.x5c_c00166{left:209.200000pt;}
.xc4_c00166{left:210.266667pt;}
.xcf_c00166{left:211.466667pt;}
.xd3_c00166{left:212.800000pt;}
.xe0_c00166{left:214.266667pt;}
.x74_c00166{left:215.733333pt;}
.xff_c00166{left:218.266667pt;}
.xd7_c00166{left:220.933333pt;}
.x4f_c00166{left:222.000000pt;}
.x16_c00166{left:223.066667pt;}
.xe5_c00166{left:224.000000pt;}
.xdf_c00166{left:225.600000pt;}
.x8e_c00166{left:226.666667pt;}
.xc0_c00166{left:228.133333pt;}
.x42_c00166{left:230.000000pt;}
.xfa_c00166{left:230.933333pt;}
.xda_c00166{left:234.000000pt;}
.x23_c00166{left:234.933333pt;}
.xc1_c00166{left:236.400000pt;}
.xab_c00166{left:237.600000pt;}
.xd0_c00166{left:238.666667pt;}
.x45_c00166{left:240.266667pt;}
.xa7_c00166{left:242.266667pt;}
.x84_c00166{left:244.400000pt;}
.xe6_c00166{left:245.466667pt;}
.xb0_c00166{left:246.933333pt;}
.x5d_c00166{left:248.933333pt;}
.x7b_c00166{left:249.866667pt;}
.xc5_c00166{left:253.200000pt;}
.x8f_c00166{left:254.533333pt;}
.x35_c00166{left:256.400000pt;}
.x24_c00166{left:257.333333pt;}
.xac_c00166{left:259.066667pt;}
.xf4_c00166{left:260.000000pt;}
.x99_c00166{left:261.066667pt;}
.xbd_c00166{left:262.800000pt;}
.xdb_c00166{left:264.133333pt;}
.xe9_c00166{left:265.733333pt;}
.xe1_c00166{left:267.066667pt;}
.x17_c00166{left:268.800000pt;}
.xf2_c00166{left:271.600000pt;}
.xcc_c00166{left:272.666667pt;}
.x5_c00166{left:274.133333pt;}
.x50_c00166{left:277.333333pt;}
.x90_c00166{left:278.533333pt;}
.x5e_c00166{left:280.266667pt;}
.x85_c00166{left:282.133333pt;}
.x75_c00166{left:283.600000pt;}
.x100_c00166{left:285.466667pt;}
.x9a_c00166{left:286.400000pt;}
.xc6_c00166{left:287.733333pt;}
.xb1_c00166{left:289.066667pt;}
.x36_c00166{left:290.000000pt;}
.x25_c00166{left:291.600000pt;}
.xa4_c00166{left:292.800000pt;}
.xad_c00166{left:294.800000pt;}
.x46_c00166{left:296.533333pt;}
.xbe_c00166{left:298.933333pt;}
.xc7_c00166{left:300.533333pt;}
.xa8_c00166{left:302.666667pt;}
.x51_c00166{left:304.266667pt;}
.xf7_c00166{left:306.133333pt;}
.xbf_c00166{left:307.600000pt;}
.xfb_c00166{left:309.733333pt;}
.xd1_c00166{left:311.600000pt;}
.x6_c00166{left:314.133333pt;}
.x37_c00166{left:315.333333pt;}
.x18_c00166{left:316.533333pt;}
.x26_c00166{left:317.866667pt;}
.xae_c00166{left:320.666667pt;}
.xc8_c00166{left:322.666667pt;}
.xb9_c00166{left:324.000000pt;}
.xcd_c00166{left:325.866667pt;}
.xdc_c00166{left:327.200000pt;}
.xb2_c00166{left:329.733333pt;}
.x7c_c00166{left:331.866667pt;}
.xa5_c00166{left:332.800000pt;}
.xfd_c00166{left:333.866667pt;}
.x19_c00166{left:334.800000pt;}
.xe7_c00166{left:336.400000pt;}
.xa9_c00166{left:337.600000pt;}
.x52_c00166{left:339.200000pt;}
.x101_c00166{left:341.733333pt;}
.x27_c00166{left:343.466667pt;}
.xb3_c00166{left:344.400000pt;}
.x7_c00166{left:345.466667pt;}
.x76_c00166{left:347.333333pt;}
.xea_c00166{left:348.933333pt;}
.x86_c00166{left:349.866667pt;}
.xdd_c00166{left:352.133333pt;}
.x9b_c00166{left:355.200000pt;}
.x5f_c00166{left:357.066667pt;}
.xc9_c00166{left:358.533333pt;}
.x8_c00166{left:360.533333pt;}
.xfe_c00166{left:362.533333pt;}
.xd4_c00166{left:363.733333pt;}
.xf8_c00166{left:364.666667pt;}
.x53_c00166{left:365.733333pt;}
.xf5_c00166{left:367.200000pt;}
.xa6_c00166{left:370.266667pt;}
.xd8_c00166{left:372.533333pt;}
.xed_c00166{left:373.466667pt;}
.xd5_c00166{left:376.533333pt;}
.x38_c00166{left:377.733333pt;}
.x87_c00166{left:378.666667pt;}
.x9c_c00166{left:380.800000pt;}
.x54_c00166{left:384.000000pt;}
.x6b_c00166{left:385.866667pt;}
.xee_c00166{left:386.933333pt;}
.xc2_c00166{left:389.066667pt;}
.xb7_c00166{left:391.333333pt;}
.xeb_c00166{left:392.400000pt;}
.xca_c00166{left:393.733333pt;}
.x28_c00166{left:398.133333pt;}
.x2_c00166{left:399.066667pt;}
.x60_c00166{left:400.533333pt;}
.x7d_c00166{left:402.266667pt;}
.xf0_c00166{left:403.200000pt;}
.x9_c00166{left:405.066667pt;}
.xba_c00166{left:406.533333pt;}
.xb4_c00166{left:407.733333pt;}
.x47_c00166{left:408.933333pt;}
.x91_c00166{left:411.733333pt;}
.x29_c00166{left:413.866667pt;}
.xf3_c00166{left:415.466667pt;}
.x7e_c00166{left:416.400000pt;}
.x61_c00166{left:419.066667pt;}
.x9d_c00166{left:422.400000pt;}
.x2a_c00166{left:427.600000pt;}
.xa_c00166{left:428.800000pt;}
.x77_c00166{left:430.533333pt;}
.x1a_c00166{left:432.800000pt;}
.x39_c00166{left:436.000000pt;}
.x92_c00166{left:437.066667pt;}
.x48_c00166{left:438.666667pt;}
.x9e_c00166{left:440.666667pt;}
.x6c_c00166{left:448.933333pt;}
.x1b_c00166{left:452.000000pt;}
.x62_c00166{left:453.600000pt;}
.x7f_c00166{left:455.733333pt;}
.x55_c00166{left:456.933333pt;}
.x130_c00166{left:458.933333pt;}
.x102_c00166{left:460.800000pt;}
.x6d_c00166{left:462.400000pt;}
.x117_c00166{left:463.866667pt;}
.x11b_c00166{left:465.066667pt;}
.x106_c00166{left:466.400000pt;}
.x155_c00166{left:467.600000pt;}
.xb_c00166{left:468.533333pt;}
.x113_c00166{left:469.466667pt;}
.x63_c00166{left:471.200000pt;}
.x80_c00166{left:473.600000pt;}
.x14b_c00166{left:474.933333pt;}
.x144_c00166{left:477.466667pt;}
.x121_c00166{left:478.400000pt;}
.x1c_c00166{left:479.866667pt;}
.x2b_c00166{left:481.733333pt;}
.x137_c00166{left:482.800000pt;}
.x142_c00166{left:484.000000pt;}
.x11c_c00166{left:485.866667pt;}
.x14c_c00166{left:486.800000pt;}
.x107_c00166{left:487.866667pt;}
.x127_c00166{left:489.600000pt;}
.x3a_c00166{left:491.066667pt;}
.x6e_c00166{left:492.133333pt;}
.x13c_c00166{left:494.266667pt;}
.x64_c00166{left:496.533333pt;}
.x56_c00166{left:497.600000pt;}
.x2c_c00166{left:499.066667pt;}
.xc_c00166{left:500.533333pt;}
.x145_c00166{left:502.400000pt;}
.x122_c00166{left:504.000000pt;}
.x118_c00166{left:505.200000pt;}
.x49_c00166{left:506.533333pt;}
.x14a_c00166{left:507.466667pt;}
.x13d_c00166{left:509.333333pt;}
.x158_c00166{left:510.400000pt;}
.x57_c00166{left:512.666667pt;}
.x81_c00166{left:513.866667pt;}
.x3b_c00166{left:515.733333pt;}
.x151_c00166{left:517.733333pt;}
.x1d_c00166{left:518.933333pt;}
.xd_c00166{left:520.400000pt;}
.x65_c00166{left:521.466667pt;}
.x2d_c00166{left:523.333333pt;}
.x14e_c00166{left:525.333333pt;}
.x108_c00166{left:526.266667pt;}
.x114_c00166{left:527.466667pt;}
.x141_c00166{left:529.866667pt;}
.x58_c00166{left:530.933333pt;}
.x157_c00166{left:533.200000pt;}
.x78_c00166{left:534.133333pt;}
.x3c_c00166{left:535.200000pt;}
.x6f_c00166{left:537.866667pt;}
.x13e_c00166{left:540.666667pt;}
.x93_c00166{left:542.666667pt;}
.x10f_c00166{left:543.733333pt;}
.x109_c00166{left:545.733333pt;}
.x88_c00166{left:547.066667pt;}
.x129_c00166{left:548.133333pt;}
.x135_c00166{left:550.266667pt;}
.x131_c00166{left:553.066667pt;}
.x2e_c00166{left:554.000000pt;}
.x115_c00166{left:556.000000pt;}
.x123_c00166{left:558.400000pt;}
.x11d_c00166{left:560.800000pt;}
.x1e_c00166{left:562.400000pt;}
.x82_c00166{left:563.466667pt;}
.x110_c00166{left:565.866667pt;}
.x12a_c00166{left:567.600000pt;}
.x14f_c00166{left:568.533333pt;}
.x4a_c00166{left:569.866667pt;}
.xe_c00166{left:571.600000pt;}
.x70_c00166{left:574.000000pt;}
.x59_c00166{left:575.466667pt;}
.x150_c00166{left:576.533333pt;}
.x159_c00166{left:577.600000pt;}
.x124_c00166{left:579.200000pt;}
.x9f_c00166{left:580.533333pt;}
.x1f_c00166{left:581.866667pt;}
.x13b_c00166{left:583.333333pt;}
.x138_c00166{left:584.933333pt;}
.x94_c00166{left:586.533333pt;}
.xf_c00166{left:590.533333pt;}
.x10a_c00166{left:593.066667pt;}
.x12b_c00166{left:594.133333pt;}
.x66_c00166{left:595.066667pt;}
.x152_c00166{left:597.733333pt;}
.x103_c00166{left:598.800000pt;}
.x2f_c00166{left:600.133333pt;}
.x3d_c00166{left:601.200000pt;}
.x12c_c00166{left:603.866667pt;}
.x5a_c00166{left:606.133333pt;}
.x10b_c00166{left:607.200000pt;}
.x128_c00166{left:608.933333pt;}
.x10_c00166{left:611.333333pt;}
.x143_c00166{left:612.533333pt;}
.x89_c00166{left:615.200000pt;}
.x136_c00166{left:616.133333pt;}
.x156_c00166{left:617.333333pt;}
.x12d_c00166{left:619.600000pt;}
.x79_c00166{left:620.533333pt;}
.x67_c00166{left:622.000000pt;}
.x111_c00166{left:624.400000pt;}
.x30_c00166{left:626.000000pt;}
.x10c_c00166{left:628.266667pt;}
.x11e_c00166{left:630.266667pt;}
.x153_c00166{left:631.333333pt;}
.x139_c00166{left:633.866667pt;}
.x95_c00166{left:636.133333pt;}
.x13f_c00166{left:638.533333pt;}
.x11_c00166{left:640.400000pt;}
.x132_c00166{left:643.333333pt;}
.x7a_c00166{left:645.466667pt;}
.x31_c00166{left:646.533333pt;}
.x71_c00166{left:647.600000pt;}
.x112_c00166{left:649.333333pt;}
.x149_c00166{left:650.266667pt;}
.x147_c00166{left:651.866667pt;}
.x133_c00166{left:653.600000pt;}
.x8a_c00166{left:654.533333pt;}
.x3e_c00166{left:655.866667pt;}
.x4b_c00166{left:658.266667pt;}
.x13a_c00166{left:659.733333pt;}
.x104_c00166{left:660.666667pt;}
.x148_c00166{left:663.333333pt;}
.x125_c00166{left:665.200000pt;}
.x68_c00166{left:667.066667pt;}
.x20_c00166{left:669.866667pt;}
.x8b_c00166{left:671.200000pt;}
.x10d_c00166{left:672.133333pt;}
.xa0_c00166{left:673.600000pt;}
.x12e_c00166{left:674.666667pt;}
.x96_c00166{left:675.866667pt;}
.x116_c00166{left:678.933333pt;}
.x134_c00166{left:679.866667pt;}
.x11f_c00166{left:681.200000pt;}
.x105_c00166{left:682.133333pt;}
.x119_c00166{left:684.266667pt;}
.x32_c00166{left:685.866667pt;}
.x72_c00166{left:687.600000pt;}
.x14d_c00166{left:689.200000pt;}
.x12f_c00166{left:690.400000pt;}
.x10e_c00166{left:691.600000pt;}
.x83_c00166{left:694.666667pt;}
.x4c_c00166{left:695.733333pt;}
.x126_c00166{left:697.866667pt;}
.x12_c00166{left:699.866667pt;}
.x15a_c00166{left:700.800000pt;}
.x97_c00166{left:701.733333pt;}
.x120_c00166{left:704.933333pt;}
.x11a_c00166{left:706.666667pt;}
.x154_c00166{left:707.600000pt;}
.x140_c00166{left:708.666667pt;}
.x73_c00166{left:709.733333pt;}
.x21_c00166{left:710.800000pt;}
.x13_c00166{left:715.200000pt;}
.x146_c00166{left:716.400000pt;}
.x3f_c00166{left:717.333333pt;}
.x33_c00166{left:720.133333pt;}
}





/* 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_c00167 {
    display:none;
  }
  .loading-indicator_c00167.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00167 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_c00167 { 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_c00167" -> "#page-container .classname_c00167")
 */
.pf_c00167 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00167 { /* 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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00167 { /* 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_c00167 { /* 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_c00167 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00167 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00167 {overflow:visible;}
  }
}
.c_c00167 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00167 { /* 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_c00167:after { /* webkit #35443 */
  content: '';
}
.t_c00167:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00167 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 */
}
.__c00167 { /* 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_c00167 { /* info for Javascript */
  display:none;
}
.l_c00167 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00167 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00167 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00167: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_c00167 {
    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_c00167.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00167.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_c00167 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00167{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00167;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.000000;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;}
.m5b_c00167{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m67_c00167{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.md_c00167{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00167{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m39_c00167{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00167{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00167{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m55_c00167{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m87_c00167{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m82_c00167{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m90_c00167{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m69_c00167{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m83_c00167{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00167{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m43_c00167{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00167{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00167{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00167{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00167{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me_c00167{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m47_c00167{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00167{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00167{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2_c00167{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m58_c00167{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00167{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m80_c00167{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m99_c00167{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9_c00167{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00167{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00167{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00167{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00167{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m86_c00167{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{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);}
.m1d_c00167{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m45_c00167{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00167{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m37_c00167{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00167{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00167{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00167{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00167{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m16_c00167{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m85_c00167{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m19_c00167{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00167{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m93_c00167{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00167{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m7_c00167{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00167{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00167{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m18_c00167{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m63_c00167{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma_c00167{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m49_c00167{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00167{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00167{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3_c00167{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m50_c00167{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m57_c00167{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00167{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m54_c00167{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m0_c00167{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00167{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m79_c00167{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m97_c00167{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m92_c00167{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m95_c00167{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00167{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m94_c00167{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m98_c00167{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m96_c00167{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.ls0_c00167{letter-spacing:0.000000px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{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__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00167{word-spacing:-9.267477px;}
.ws6_c00167{word-spacing:-5.265060px;}
.ws7_c00167{word-spacing:-0.214286px;}
.wsa_c00167{word-spacing:0.000000px;}
.ws0_c00167{word-spacing:3.642857px;}
.ws8_c00167{word-spacing:5.875000px;}
.ws1_c00167{word-spacing:7.250000px;}
.ws3_c00167{word-spacing:9.000000px;}
.ws9_c00167{word-spacing:9.508903px;}
.ws5_c00167{word-spacing:12.125000px;}
.ws2_c00167{word-spacing:17.875000px;}
._0_c00167{width:34.250000px;}
.fc0_c00167{color:transparent;}
.fs0_c00167{font-size:54.000000px;}
.y0_c00167{bottom:0.000000px;}
.y2b_c00167{bottom:148.650000px;}
.y2a_c00167{bottom:190.050000px;}
.y29_c00167{bottom:210.300000px;}
.y28_c00167{bottom:230.400000px;}
.y27_c00167{bottom:249.900000px;}
.y26_c00167{bottom:289.800000px;}
.y25_c00167{bottom:309.900000px;}
.y24_c00167{bottom:330.000000px;}
.y23_c00167{bottom:350.100000px;}
.y22_c00167{bottom:369.900000px;}
.y21_c00167{bottom:389.700000px;}
.y20_c00167{bottom:409.800000px;}
.y1f_c00167{bottom:429.600000px;}
.y1e_c00167{bottom:449.700000px;}
.y1d_c00167{bottom:469.350000px;}
.y1c_c00167{bottom:489.900000px;}
.y1b_c00167{bottom:509.700000px;}
.y1a_c00167{bottom:529.800000px;}
.y19_c00167{bottom:549.900000px;}
.y18_c00167{bottom:569.700000px;}
.y17_c00167{bottom:589.500000px;}
.y16_c00167{bottom:609.300000px;}
.y15_c00167{bottom:629.100000px;}
.y14_c00167{bottom:649.650000px;}
.y13_c00167{bottom:669.450000px;}
.y12_c00167{bottom:689.250000px;}
.y11_c00167{bottom:709.350000px;}
.y10_c00167{bottom:729.450000px;}
.yf_c00167{bottom:749.550000px;}
.ye_c00167{bottom:769.350000px;}
.yd_c00167{bottom:789.450000px;}
.yc_c00167{bottom:809.400000px;}
.yb_c00167{bottom:829.500000px;}
.ya_c00167{bottom:849.300000px;}
.y9_c00167{bottom:869.400000px;}
.y8_c00167{bottom:889.200000px;}
.y7_c00167{bottom:909.000000px;}
.y6_c00167{bottom:928.800000px;}
.y5_c00167{bottom:948.600000px;}
.y4_c00167{bottom:968.850000px;}
.y3_c00167{bottom:988.950000px;}
.y2_c00167{bottom:1008.750000px;}
.y1_c00167{bottom:1046.850000px;}
.h2_c00167{height:54.000000px;}
.h1_c00167{height:1167.750000px;}
.h0_c00167{height:1167.839997px;}
.w1_c00167{width:920.250000px;}
.w0_c00167{width:920.519990px;}
.x0_c00167{left:0.000000px;}
.x3_c00167{left:115.950000px;}
.x8f_c00167{left:117.000000px;}
.xef_c00167{left:118.500000px;}
.x107_c00167{left:133.500000px;}
.xd3_c00167{left:135.300000px;}
.x48_c00167{left:136.950000px;}
.xa4_c00167{left:142.050000px;}
.x6a_c00167{left:143.700000px;}
.xc0_c00167{left:145.050000px;}
.x27_c00167{left:147.900000px;}
.xb0_c00167{left:152.700000px;}
.xd4_c00167{left:154.050000px;}
.x9b_c00167{left:155.100000px;}
.x4_c00167{left:159.450000px;}
.xdc_c00167{left:161.700000px;}
.x90_c00167{left:162.750000px;}
.xe9_c00167{left:165.000000px;}
.x49_c00167{left:166.050000px;}
.x28_c00167{left:168.000000px;}
.x13_c00167{left:169.950000px;}
.x83_c00167{left:174.150000px;}
.x9c_c00167{left:175.200000px;}
.x3e_c00167{left:177.150000px;}
.xa5_c00167{left:178.350000px;}
.x55_c00167{left:179.700000px;}
.x103_c00167{left:181.200000px;}
.xea_c00167{left:182.250000px;}
.x123_c00167{left:183.300000px;}
.xf8_c00167{left:186.750000px;}
.x1f_c00167{left:188.100000px;}
.x5_c00167{left:189.750000px;}
.x14_c00167{left:191.250000px;}
.x91_c00167{left:192.600000px;}
.x86_c00167{left:195.450000px;}
.x29_c00167{left:196.500000px;}
.x108_c00167{left:197.550000px;}
.x9d_c00167{left:200.700000px;}
.x56_c00167{left:202.050000px;}
.xcb_c00167{left:205.050000px;}
.xf9_c00167{left:206.550000px;}
.x84_c00167{left:207.600000px;}
.x124_c00167{left:208.800000px;}
.x32_c00167{left:210.900000px;}
.x6b_c00167{left:213.600000px;}
.x75_c00167{left:215.550000px;}
.x5f_c00167{left:218.250000px;}
.x20_c00167{left:220.500000px;}
.xa6_c00167{left:222.300000px;}
.x85_c00167{left:224.550000px;}
.x87_c00167{left:226.350000px;}
.x4a_c00167{left:227.550000px;}
.x9e_c00167{left:228.750000px;}
.x57_c00167{left:230.100000px;}
.x79_c00167{left:232.650000px;}
.x2a_c00167{left:234.000000px;}
.x6_c00167{left:235.500000px;}
.xb6_c00167{left:242.100000px;}
.x76_c00167{left:244.350000px;}
.x33_c00167{left:245.400000px;}
.x125_c00167{left:247.350000px;}
.xf5_c00167{left:250.650000px;}
.xc1_c00167{left:254.100000px;}
.x60_c00167{left:255.300000px;}
.x109_c00167{left:258.450000px;}
.x118_c00167{left:259.650000px;}
.x6c_c00167{left:260.700000px;}
.x34_c00167{left:263.100000px;}
.xf0_c00167{left:264.150000px;}
.xb1_c00167{left:266.550000px;}
.x11d_c00167{left:268.650000px;}
.x7a_c00167{left:272.550000px;}
.x15_c00167{left:275.100000px;}
.xd5_c00167{left:277.650000px;}
.xff_c00167{left:279.300000px;}
.x21_c00167{left:282.450000px;}
.x7_c00167{left:284.100000px;}
.xe3_c00167{left:285.900000px;}
.xa7_c00167{left:287.100000px;}
.x9f_c00167{left:288.900000px;}
.x4b_c00167{left:292.350000px;}
.x10a_c00167{left:293.700000px;}
.xd6_c00167{left:295.350000px;}
.x58_c00167{left:296.700000px;}
.xf6_c00167{left:298.950000px;}
.xc7_c00167{left:301.800000px;}
.xa8_c00167{left:305.400000px;}
.x116_c00167{left:307.050000px;}
.x2b_c00167{left:308.250000px;}
.x61_c00167{left:309.600000px;}
.x92_c00167{left:310.650000px;}
.x6d_c00167{left:312.600000px;}
.x22_c00167{left:313.800000px;}
.x3f_c00167{left:315.300000px;}
.x16_c00167{left:317.250000px;}
.x8_c00167{left:318.300000px;}
.xa0_c00167{left:320.550000px;}
.x126_c00167{left:322.200000px;}
.x7b_c00167{left:324.000000px;}
.x35_c00167{left:325.050000px;}
.x4c_c00167{left:326.850000px;}
.xfa_c00167{left:327.900000px;}
.x115_c00167{left:329.400000px;}
.xcc_c00167{left:331.050000px;}
.x23_c00167{left:333.900000px;}
.xa9_c00167{left:335.700000px;}
.x10b_c00167{left:337.200000px;}
.x9_c00167{left:340.950000px;}
.x119_c00167{left:343.800000px;}
.xb2_c00167{left:348.300000px;}
.x88_c00167{left:350.100000px;}
.x104_c00167{left:351.150000px;}
.xdd_c00167{left:357.900000px;}
.x6e_c00167{left:359.700000px;}
.x40_c00167{left:361.350000px;}
.x24_c00167{left:362.400000px;}
.xaa_c00167{left:364.500000px;}
.x17_c00167{left:366.450000px;}
.x59_c00167{left:368.700000px;}
.xeb_c00167{left:372.300000px;}
.x4d_c00167{left:373.950000px;}
.x62_c00167{left:375.150000px;}
.x6f_c00167{left:379.200000px;}
.x2c_c00167{left:382.050000px;}
.xd7_c00167{left:384.000000px;}
.x128_c00167{left:385.350000px;}
.xe4_c00167{left:388.500000px;}
.x89_c00167{left:390.000000px;}
.xa_c00167{left:392.400000px;}
.x77_c00167{left:394.800000px;}
.x11e_c00167{left:396.000000px;}
.xc2_c00167{left:400.650000px;}
.x93_c00167{left:402.150000px;}
.xfb_c00167{left:403.500000px;}
.x25_c00167{left:404.850000px;}
.x10f_c00167{left:405.900000px;}
.xe5_c00167{left:408.300000px;}
.x100_c00167{left:412.500000px;}
.x63_c00167{left:414.450000px;}
.x18_c00167{left:416.100000px;}
.xb7_c00167{left:417.300000px;}
.xc3_c00167{left:421.200000px;}
.x1_c00167{left:422.250000px;}
.x26_c00167{left:423.900000px;}
.x70_c00167{left:424.950000px;}
.x2d_c00167{left:426.750000px;}
.xab_c00167{left:428.550000px;}
.xf1_c00167{left:430.200000px;}
.x129_c00167{left:432.150000px;}
.xb8_c00167{left:434.550000px;}
.x41_c00167{left:435.900000px;}
.xfc_c00167{left:437.400000px;}
.x36_c00167{left:441.600000px;}
.x94_c00167{left:445.050000px;}
.x71_c00167{left:446.550000px;}
.x8a_c00167{left:448.350000px;}
.xf2_c00167{left:449.700000px;}
.x5a_c00167{left:451.950000px;}
.xd8_c00167{left:453.750000px;}
.xac_c00167{left:456.300000px;}
.x42_c00167{left:458.550000px;}
.x78_c00167{left:461.400000px;}
.x64_c00167{left:464.850000px;}
.xa1_c00167{left:466.800000px;}
.xde_c00167{left:468.150000px;}
.x37_c00167{left:470.100000px;}
.x2e_c00167{left:472.050000px;}
.x7c_c00167{left:473.700000px;}
.xd9_c00167{left:475.650000px;}
.x4e_c00167{left:478.650000px;}
.x110_c00167{left:481.200000px;}
.x19_c00167{left:482.700000px;}
.xb_c00167{left:484.200000px;}
.xc8_c00167{left:487.950000px;}
.xb9_c00167{left:491.400000px;}
.x8b_c00167{left:495.450000px;}
.x72_c00167{left:498.450000px;}
.x2f_c00167{left:500.100000px;}
.x38_c00167{left:501.450000px;}
.xda_c00167{left:502.950000px;}
.x4f_c00167{left:504.600000px;}
.x5b_c00167{left:506.700000px;}
.x95_c00167{left:508.050000px;}
.x11f_c00167{left:511.200000px;}
.x10c_c00167{left:515.850000px;}
.xb3_c00167{left:518.100000px;}
.x11a_c00167{left:520.800000px;}
.xa2_c00167{left:522.300000px;}
.x111_c00167{left:523.350000px;}
.x12a_c00167{left:525.000000px;}
.x65_c00167{left:526.350000px;}
.xec_c00167{left:527.400000px;}
.x96_c00167{left:528.900000px;}
.xcd_c00167{left:531.900000px;}
.x7d_c00167{left:533.850000px;}
.x1a_c00167{left:535.200000px;}
.xdf_c00167{left:538.050000px;}
.x11b_c00167{left:540.600000px;}
.x30_c00167{left:542.250000px;}
.xc_c00167{left:545.100000px;}
.xba_c00167{left:547.200000px;}
.xad_c00167{left:548.400000px;}
.x105_c00167{left:551.250000px;}
.x39_c00167{left:554.700000px;}
.xed_c00167{left:555.900000px;}
.x5c_c00167{left:557.850000px;}
.x112_c00167{left:559.350000px;}
.x120_c00167{left:560.850000px;}
.x31_c00167{left:562.350000px;}
.x121_c00167{left:564.150000px;}
.x8c_c00167{left:565.650000px;}
.xce_c00167{left:567.900000px;}
.x66_c00167{left:569.550000px;}
.x43_c00167{left:571.050000px;}
.x7e_c00167{left:572.400000px;}
.xf7_c00167{left:573.450000px;}
.x50_c00167{left:576.600000px;}
.x97_c00167{left:577.800000px;}
.xfd_c00167{left:580.350000px;}
.xbb_c00167{left:583.500000px;}
.xb4_c00167{left:584.700000px;}
.x1b_c00167{left:587.100000px;}
.x3a_c00167{left:588.150000px;}
.xc4_c00167{left:596.850000px;}
.x98_c00167{left:598.650000px;}
.x122_c00167{left:599.850000px;}
.xbc_c00167{left:601.500000px;}
.x127_c00167{left:602.850000px;}
.xcf_c00167{left:604.650000px;}
.x10d_c00167{left:606.300000px;}
.xd_c00167{left:607.800000px;}
.x67_c00167{left:610.200000px;}
.xfe_c00167{left:612.000000px;}
.x3b_c00167{left:614.100000px;}
.xe0_c00167{left:619.050000px;}
.x73_c00167{left:620.550000px;}
.x44_c00167{left:623.250000px;}
.x117_c00167{left:627.000000px;}
.x5d_c00167{left:628.350000px;}
.xe_c00167{left:631.200000px;}
.xbd_c00167{left:634.200000px;}
.x51_c00167{left:636.300000px;}
.xd0_c00167{left:642.150000px;}
.x8d_c00167{left:643.350000px;}
.x99_c00167{left:646.200000px;}
.xc5_c00167{left:648.300000px;}
.xbe_c00167{left:649.350000px;}
.xf_c00167{left:651.000000px;}
.x7f_c00167{left:652.950000px;}
.x1c_c00167{left:659.400000px;}
.x3c_c00167{left:661.650000px;}
.x10e_c00167{left:662.850000px;}
.x45_c00167{left:665.400000px;}
.x52_c00167{left:668.400000px;}
.x9a_c00167{left:669.600000px;}
.xe6_c00167{left:672.150000px;}
.x80_c00167{left:673.500000px;}
.x113_c00167{left:675.600000px;}
.xf3_c00167{left:678.600000px;}
.x46_c00167{left:685.200000px;}
.xc9_c00167{left:689.250000px;}
.xd1_c00167{left:691.050000px;}
.xe1_c00167{left:692.850000px;}
.x5e_c00167{left:694.200000px;}
.x53_c00167{left:695.700000px;}
.x10_c00167{left:696.750000px;}
.xbf_c00167{left:699.750000px;}
.x81_c00167{left:701.250000px;}
.xae_c00167{left:703.500000px;}
.xc6_c00167{left:704.550000px;}
.x1d_c00167{left:708.000000px;}
.x114_c00167{left:709.500000px;}
.x47_c00167{left:713.700000px;}
.x3d_c00167{left:715.350000px;}
.x68_c00167{left:717.900000px;}
.x11c_c00167{left:719.550000px;}
.xa3_c00167{left:721.050000px;}
.xe7_c00167{left:724.050000px;}
.xf4_c00167{left:725.400000px;}
.x1e_c00167{left:728.100000px;}
.x74_c00167{left:732.150000px;}
.x8e_c00167{left:736.500000px;}
.xee_c00167{left:739.800000px;}
.x11_c00167{left:741.000000px;}
.xb5_c00167{left:742.800000px;}
.xe2_c00167{left:744.300000px;}
.xdb_c00167{left:746.700000px;}
.x101_c00167{left:750.000000px;}
.x106_c00167{left:751.950000px;}
.xca_c00167{left:753.300000px;}
.x69_c00167{left:754.650000px;}
.x2_c00167{left:759.150000px;}
.x82_c00167{left:760.950000px;}
.xaf_c00167{left:762.900000px;}
.x54_c00167{left:764.100000px;}
.x102_c00167{left:765.450000px;}
.xe8_c00167{left:768.300000px;}
.x12_c00167{left:773.400000px;}
.xd2_c00167{left:780.000000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.ls0_c00167{letter-spacing:0.000000pt;}
.ws4_c00167{word-spacing:-8.237758pt;}
.ws6_c00167{word-spacing:-4.680054pt;}
.ws7_c00167{word-spacing:-0.190476pt;}
.wsa_c00167{word-spacing:0.000000pt;}
.ws0_c00167{word-spacing:3.238095pt;}
.ws8_c00167{word-spacing:5.222222pt;}
.ws1_c00167{word-spacing:6.444444pt;}
.ws3_c00167{word-spacing:8.000000pt;}
.ws9_c00167{word-spacing:8.452359pt;}
.ws5_c00167{word-spacing:10.777778pt;}
.ws2_c00167{word-spacing:15.888889pt;}
._0_c00167{width:30.444444pt;}
.fs0_c00167{font-size:48.000000pt;}
.y0_c00167{bottom:0.000000pt;}
.y2b_c00167{bottom:132.133333pt;}
.y2a_c00167{bottom:168.933333pt;}
.y29_c00167{bottom:186.933333pt;}
.y28_c00167{bottom:204.800000pt;}
.y27_c00167{bottom:222.133333pt;}
.y26_c00167{bottom:257.600000pt;}
.y25_c00167{bottom:275.466667pt;}
.y24_c00167{bottom:293.333333pt;}
.y23_c00167{bottom:311.200000pt;}
.y22_c00167{bottom:328.800000pt;}
.y21_c00167{bottom:346.400000pt;}
.y20_c00167{bottom:364.266667pt;}
.y1f_c00167{bottom:381.866667pt;}
.y1e_c00167{bottom:399.733333pt;}
.y1d_c00167{bottom:417.200000pt;}
.y1c_c00167{bottom:435.466667pt;}
.y1b_c00167{bottom:453.066667pt;}
.y1a_c00167{bottom:470.933333pt;}
.y19_c00167{bottom:488.800000pt;}
.y18_c00167{bottom:506.400000pt;}
.y17_c00167{bottom:524.000000pt;}
.y16_c00167{bottom:541.600000pt;}
.y15_c00167{bottom:559.200000pt;}
.y14_c00167{bottom:577.466667pt;}
.y13_c00167{bottom:595.066667pt;}
.y12_c00167{bottom:612.666667pt;}
.y11_c00167{bottom:630.533333pt;}
.y10_c00167{bottom:648.400000pt;}
.yf_c00167{bottom:666.266667pt;}
.ye_c00167{bottom:683.866667pt;}
.yd_c00167{bottom:701.733333pt;}
.yc_c00167{bottom:719.466667pt;}
.yb_c00167{bottom:737.333333pt;}
.ya_c00167{bottom:754.933333pt;}
.y9_c00167{bottom:772.800000pt;}
.y8_c00167{bottom:790.400000pt;}
.y7_c00167{bottom:808.000000pt;}
.y6_c00167{bottom:825.600000pt;}
.y5_c00167{bottom:843.200000pt;}
.y4_c00167{bottom:861.200000pt;}
.y3_c00167{bottom:879.066667pt;}
.y2_c00167{bottom:896.666667pt;}
.y1_c00167{bottom:930.533333pt;}
.h2_c00167{height:48.000000pt;}
.h1_c00167{height:1038.000000pt;}
.h0_c00167{height:1038.079997pt;}
.w1_c00167{width:818.000000pt;}
.w0_c00167{width:818.239991pt;}
.x0_c00167{left:0.000000pt;}
.x3_c00167{left:103.066667pt;}
.x8f_c00167{left:104.000000pt;}
.xef_c00167{left:105.333333pt;}
.x107_c00167{left:118.666667pt;}
.xd3_c00167{left:120.266667pt;}
.x48_c00167{left:121.733333pt;}
.xa4_c00167{left:126.266667pt;}
.x6a_c00167{left:127.733333pt;}
.xc0_c00167{left:128.933333pt;}
.x27_c00167{left:131.466667pt;}
.xb0_c00167{left:135.733333pt;}
.xd4_c00167{left:136.933333pt;}
.x9b_c00167{left:137.866667pt;}
.x4_c00167{left:141.733333pt;}
.xdc_c00167{left:143.733333pt;}
.x90_c00167{left:144.666667pt;}
.xe9_c00167{left:146.666667pt;}
.x49_c00167{left:147.600000pt;}
.x28_c00167{left:149.333333pt;}
.x13_c00167{left:151.066667pt;}
.x83_c00167{left:154.800000pt;}
.x9c_c00167{left:155.733333pt;}
.x3e_c00167{left:157.466667pt;}
.xa5_c00167{left:158.533333pt;}
.x55_c00167{left:159.733333pt;}
.x103_c00167{left:161.066667pt;}
.xea_c00167{left:162.000000pt;}
.x123_c00167{left:162.933333pt;}
.xf8_c00167{left:166.000000pt;}
.x1f_c00167{left:167.200000pt;}
.x5_c00167{left:168.666667pt;}
.x14_c00167{left:170.000000pt;}
.x91_c00167{left:171.200000pt;}
.x86_c00167{left:173.733333pt;}
.x29_c00167{left:174.666667pt;}
.x108_c00167{left:175.600000pt;}
.x9d_c00167{left:178.400000pt;}
.x56_c00167{left:179.600000pt;}
.xcb_c00167{left:182.266667pt;}
.xf9_c00167{left:183.600000pt;}
.x84_c00167{left:184.533333pt;}
.x124_c00167{left:185.600000pt;}
.x32_c00167{left:187.466667pt;}
.x6b_c00167{left:189.866667pt;}
.x75_c00167{left:191.600000pt;}
.x5f_c00167{left:194.000000pt;}
.x20_c00167{left:196.000000pt;}
.xa6_c00167{left:197.600000pt;}
.x85_c00167{left:199.600000pt;}
.x87_c00167{left:201.200000pt;}
.x4a_c00167{left:202.266667pt;}
.x9e_c00167{left:203.333333pt;}
.x57_c00167{left:204.533333pt;}
.x79_c00167{left:206.800000pt;}
.x2a_c00167{left:208.000000pt;}
.x6_c00167{left:209.333333pt;}
.xb6_c00167{left:215.200000pt;}
.x76_c00167{left:217.200000pt;}
.x33_c00167{left:218.133333pt;}
.x125_c00167{left:219.866667pt;}
.xf5_c00167{left:222.800000pt;}
.xc1_c00167{left:225.866667pt;}
.x60_c00167{left:226.933333pt;}
.x109_c00167{left:229.733333pt;}
.x118_c00167{left:230.800000pt;}
.x6c_c00167{left:231.733333pt;}
.x34_c00167{left:233.866667pt;}
.xf0_c00167{left:234.800000pt;}
.xb1_c00167{left:236.933333pt;}
.x11d_c00167{left:238.800000pt;}
.x7a_c00167{left:242.266667pt;}
.x15_c00167{left:244.533333pt;}
.xd5_c00167{left:246.800000pt;}
.xff_c00167{left:248.266667pt;}
.x21_c00167{left:251.066667pt;}
.x7_c00167{left:252.533333pt;}
.xe3_c00167{left:254.133333pt;}
.xa7_c00167{left:255.200000pt;}
.x9f_c00167{left:256.800000pt;}
.x4b_c00167{left:259.866667pt;}
.x10a_c00167{left:261.066667pt;}
.xd6_c00167{left:262.533333pt;}
.x58_c00167{left:263.733333pt;}
.xf6_c00167{left:265.733333pt;}
.xc7_c00167{left:268.266667pt;}
.xa8_c00167{left:271.466667pt;}
.x116_c00167{left:272.933333pt;}
.x2b_c00167{left:274.000000pt;}
.x61_c00167{left:275.200000pt;}
.x92_c00167{left:276.133333pt;}
.x6d_c00167{left:277.866667pt;}
.x22_c00167{left:278.933333pt;}
.x3f_c00167{left:280.266667pt;}
.x16_c00167{left:282.000000pt;}
.x8_c00167{left:282.933333pt;}
.xa0_c00167{left:284.933333pt;}
.x126_c00167{left:286.400000pt;}
.x7b_c00167{left:288.000000pt;}
.x35_c00167{left:288.933333pt;}
.x4c_c00167{left:290.533333pt;}
.xfa_c00167{left:291.466667pt;}
.x115_c00167{left:292.800000pt;}
.xcc_c00167{left:294.266667pt;}
.x23_c00167{left:296.800000pt;}
.xa9_c00167{left:298.400000pt;}
.x10b_c00167{left:299.733333pt;}
.x9_c00167{left:303.066667pt;}
.x119_c00167{left:305.600000pt;}
.xb2_c00167{left:309.600000pt;}
.x88_c00167{left:311.200000pt;}
.x104_c00167{left:312.133333pt;}
.xdd_c00167{left:318.133333pt;}
.x6e_c00167{left:319.733333pt;}
.x40_c00167{left:321.200000pt;}
.x24_c00167{left:322.133333pt;}
.xaa_c00167{left:324.000000pt;}
.x17_c00167{left:325.733333pt;}
.x59_c00167{left:327.733333pt;}
.xeb_c00167{left:330.933333pt;}
.x4d_c00167{left:332.400000pt;}
.x62_c00167{left:333.466667pt;}
.x6f_c00167{left:337.066667pt;}
.x2c_c00167{left:339.600000pt;}
.xd7_c00167{left:341.333333pt;}
.x128_c00167{left:342.533333pt;}
.xe4_c00167{left:345.333333pt;}
.x89_c00167{left:346.666667pt;}
.xa_c00167{left:348.800000pt;}
.x77_c00167{left:350.933333pt;}
.x11e_c00167{left:352.000000pt;}
.xc2_c00167{left:356.133333pt;}
.x93_c00167{left:357.466667pt;}
.xfb_c00167{left:358.666667pt;}
.x25_c00167{left:359.866667pt;}
.x10f_c00167{left:360.800000pt;}
.xe5_c00167{left:362.933333pt;}
.x100_c00167{left:366.666667pt;}
.x63_c00167{left:368.400000pt;}
.x18_c00167{left:369.866667pt;}
.xb7_c00167{left:370.933333pt;}
.xc3_c00167{left:374.400000pt;}
.x1_c00167{left:375.333333pt;}
.x26_c00167{left:376.800000pt;}
.x70_c00167{left:377.733333pt;}
.x2d_c00167{left:379.333333pt;}
.xab_c00167{left:380.933333pt;}
.xf1_c00167{left:382.400000pt;}
.x129_c00167{left:384.133333pt;}
.xb8_c00167{left:386.266667pt;}
.x41_c00167{left:387.466667pt;}
.xfc_c00167{left:388.800000pt;}
.x36_c00167{left:392.533333pt;}
.x94_c00167{left:395.600000pt;}
.x71_c00167{left:396.933333pt;}
.x8a_c00167{left:398.533333pt;}
.xf2_c00167{left:399.733333pt;}
.x5a_c00167{left:401.733333pt;}
.xd8_c00167{left:403.333333pt;}
.xac_c00167{left:405.600000pt;}
.x42_c00167{left:407.600000pt;}
.x78_c00167{left:410.133333pt;}
.x64_c00167{left:413.200000pt;}
.xa1_c00167{left:414.933333pt;}
.xde_c00167{left:416.133333pt;}
.x37_c00167{left:417.866667pt;}
.x2e_c00167{left:419.600000pt;}
.x7c_c00167{left:421.066667pt;}
.xd9_c00167{left:422.800000pt;}
.x4e_c00167{left:425.466667pt;}
.x110_c00167{left:427.733333pt;}
.x19_c00167{left:429.066667pt;}
.xb_c00167{left:430.400000pt;}
.xc8_c00167{left:433.733333pt;}
.xb9_c00167{left:436.800000pt;}
.x8b_c00167{left:440.400000pt;}
.x72_c00167{left:443.066667pt;}
.x2f_c00167{left:444.533333pt;}
.x38_c00167{left:445.733333pt;}
.xda_c00167{left:447.066667pt;}
.x4f_c00167{left:448.533333pt;}
.x5b_c00167{left:450.400000pt;}
.x95_c00167{left:451.600000pt;}
.x11f_c00167{left:454.400000pt;}
.x10c_c00167{left:458.533333pt;}
.xb3_c00167{left:460.533333pt;}
.x11a_c00167{left:462.933333pt;}
.xa2_c00167{left:464.266667pt;}
.x111_c00167{left:465.200000pt;}
.x12a_c00167{left:466.666667pt;}
.x65_c00167{left:467.866667pt;}
.xec_c00167{left:468.800000pt;}
.x96_c00167{left:470.133333pt;}
.xcd_c00167{left:472.800000pt;}
.x7d_c00167{left:474.533333pt;}
.x1a_c00167{left:475.733333pt;}
.xdf_c00167{left:478.266667pt;}
.x11b_c00167{left:480.533333pt;}
.x30_c00167{left:482.000000pt;}
.xc_c00167{left:484.533333pt;}
.xba_c00167{left:486.400000pt;}
.xad_c00167{left:487.466667pt;}
.x105_c00167{left:490.000000pt;}
.x39_c00167{left:493.066667pt;}
.xed_c00167{left:494.133333pt;}
.x5c_c00167{left:495.866667pt;}
.x112_c00167{left:497.200000pt;}
.x120_c00167{left:498.533333pt;}
.x31_c00167{left:499.866667pt;}
.x121_c00167{left:501.466667pt;}
.x8c_c00167{left:502.800000pt;}
.xce_c00167{left:504.800000pt;}
.x66_c00167{left:506.266667pt;}
.x43_c00167{left:507.600000pt;}
.x7e_c00167{left:508.800000pt;}
.xf7_c00167{left:509.733333pt;}
.x50_c00167{left:512.533333pt;}
.x97_c00167{left:513.600000pt;}
.xfd_c00167{left:515.866667pt;}
.xbb_c00167{left:518.666667pt;}
.xb4_c00167{left:519.733333pt;}
.x1b_c00167{left:521.866667pt;}
.x3a_c00167{left:522.800000pt;}
.xc4_c00167{left:530.533333pt;}
.x98_c00167{left:532.133333pt;}
.x122_c00167{left:533.200000pt;}
.xbc_c00167{left:534.666667pt;}
.x127_c00167{left:535.866667pt;}
.xcf_c00167{left:537.466667pt;}
.x10d_c00167{left:538.933333pt;}
.xd_c00167{left:540.266667pt;}
.x67_c00167{left:542.400000pt;}
.xfe_c00167{left:544.000000pt;}
.x3b_c00167{left:545.866667pt;}
.xe0_c00167{left:550.266667pt;}
.x73_c00167{left:551.600000pt;}
.x44_c00167{left:554.000000pt;}
.x117_c00167{left:557.333333pt;}
.x5d_c00167{left:558.533333pt;}
.xe_c00167{left:561.066667pt;}
.xbd_c00167{left:563.733333pt;}
.x51_c00167{left:565.600000pt;}
.xd0_c00167{left:570.800000pt;}
.x8d_c00167{left:571.866667pt;}
.x99_c00167{left:574.400000pt;}
.xc5_c00167{left:576.266667pt;}
.xbe_c00167{left:577.200000pt;}
.xf_c00167{left:578.666667pt;}
.x7f_c00167{left:580.400000pt;}
.x1c_c00167{left:586.133333pt;}
.x3c_c00167{left:588.133333pt;}
.x10e_c00167{left:589.200000pt;}
.x45_c00167{left:591.466667pt;}
.x52_c00167{left:594.133333pt;}
.x9a_c00167{left:595.200000pt;}
.xe6_c00167{left:597.466667pt;}
.x80_c00167{left:598.666667pt;}
.x113_c00167{left:600.533333pt;}
.xf3_c00167{left:603.200000pt;}
.x46_c00167{left:609.066667pt;}
.xc9_c00167{left:612.666667pt;}
.xd1_c00167{left:614.266667pt;}
.xe1_c00167{left:615.866667pt;}
.x5e_c00167{left:617.066667pt;}
.x53_c00167{left:618.400000pt;}
.x10_c00167{left:619.333333pt;}
.xbf_c00167{left:622.000000pt;}
.x81_c00167{left:623.333333pt;}
.xae_c00167{left:625.333333pt;}
.xc6_c00167{left:626.266667pt;}
.x1d_c00167{left:629.333333pt;}
.x114_c00167{left:630.666667pt;}
.x47_c00167{left:634.400000pt;}
.x3d_c00167{left:635.866667pt;}
.x68_c00167{left:638.133333pt;}
.x11c_c00167{left:639.600000pt;}
.xa3_c00167{left:640.933333pt;}
.xe7_c00167{left:643.600000pt;}
.xf4_c00167{left:644.800000pt;}
.x1e_c00167{left:647.200000pt;}
.x74_c00167{left:650.800000pt;}
.x8e_c00167{left:654.666667pt;}
.xee_c00167{left:657.600000pt;}
.x11_c00167{left:658.666667pt;}
.xb5_c00167{left:660.266667pt;}
.xe2_c00167{left:661.600000pt;}
.xdb_c00167{left:663.733333pt;}
.x101_c00167{left:666.666667pt;}
.x106_c00167{left:668.400000pt;}
.xca_c00167{left:669.600000pt;}
.x69_c00167{left:670.800000pt;}
.x2_c00167{left:674.800000pt;}
.x82_c00167{left:676.400000pt;}
.xaf_c00167{left:678.133333pt;}
.x54_c00167{left:679.200000pt;}
.x102_c00167{left:680.400000pt;}
.xe8_c00167{left:682.933333pt;}
.x12_c00167{left:687.466667pt;}
.xd2_c00167{left:693.333333pt;}
}





/* 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_c00168 {
    display:none;
  }
  .loading-indicator_c00168.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00168 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_c00168 { 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_c00168" -> "#page-container .classname_c00168")
 */
.pf_c00168 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00168 { /* 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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00168 { /* 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_c00168 { /* 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_c00168 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00168 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00168 {overflow:visible;}
  }
}
.c_c00168 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00168 { /* 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_c00168:after { /* webkit #35443 */
  content: '';
}
.t_c00168:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00168 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 */
}
.__c00168 { /* 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_c00168 { /* info for Javascript */
  display:none;
}
.l_c00168 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00168 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00168 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00168: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_c00168 {
    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_c00168.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00168.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_c00168 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00168{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00168;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.000000;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;}
.m45_c00168{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m54_c00168{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m25_c00168{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m65_c00168{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00168{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00168{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m81_c00168{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m35_c00168{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m92_c00168{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00168{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m37_c00168{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m70_c00168{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00168{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m23_c00168{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00168{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00168{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m66_c00168{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc_c00168{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m90_c00168{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m73_c00168{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{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);}
.m67_c00168{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00168{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m49_c00168{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m87_c00168{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m19_c00168{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m55_c00168{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00168{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m21_c00168{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00168{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00168{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00168{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m63_c00168{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00168{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m71_c00168{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m12_c00168{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m29_c00168{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00168{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3_c00168{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00168{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m14_c00168{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m33_c00168{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m85_c00168{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls0_c00168{letter-spacing:0.000000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{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__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00168{word-spacing:-7.250000px;}
.wsb_c00168{word-spacing:-6.574692px;}
.ws0_c00168{word-spacing:-5.673852px;}
.ws9_c00168{word-spacing:-3.961575px;}
.ws8_c00168{word-spacing:-2.940463px;}
.ws3_c00168{word-spacing:-2.853796px;}
.wse_c00168{word-spacing:0.000000px;}
.wsc_c00168{word-spacing:1.071429px;}
.ws7_c00168{word-spacing:3.247803px;}
.wsa_c00168{word-spacing:5.127660px;}
.wsd_c00168{word-spacing:5.520237px;}
.ws1_c00168{word-spacing:7.250000px;}
.ws2_c00168{word-spacing:10.674699px;}
.ws4_c00168{word-spacing:12.125000px;}
.ws5_c00168{word-spacing:15.250000px;}
.fc0_c00168{color:transparent;}
.fs0_c00168{font-size:54.000000px;}
.y0_c00168{bottom:0.000000px;}
.y2b_c00168{bottom:148.650000px;}
.y2a_c00168{bottom:207.300000px;}
.y29_c00168{bottom:227.100000px;}
.y28_c00168{bottom:247.650000px;}
.y27_c00168{bottom:267.450000px;}
.y26_c00168{bottom:287.550000px;}
.y25_c00168{bottom:307.350000px;}
.y24_c00168{bottom:327.450000px;}
.y23_c00168{bottom:347.250000px;}
.y22_c00168{bottom:367.350000px;}
.y21_c00168{bottom:387.450000px;}
.y20_c00168{bottom:407.550000px;}
.y1f_c00168{bottom:427.650000px;}
.y1e_c00168{bottom:447.600000px;}
.y1d_c00168{bottom:467.400000px;}
.y1c_c00168{bottom:487.500000px;}
.y1b_c00168{bottom:507.600000px;}
.y1a_c00168{bottom:530.550000px;}
.y19_c00168{bottom:547.800000px;}
.y18_c00168{bottom:567.600000px;}
.y17_c00168{bottom:587.400000px;}
.y16_c00168{bottom:607.500000px;}
.y15_c00168{bottom:627.300000px;}
.y14_c00168{bottom:647.100000px;}
.y13_c00168{bottom:667.200000px;}
.y12_c00168{bottom:687.300000px;}
.y11_c00168{bottom:707.700000px;}
.y10_c00168{bottom:727.500000px;}
.yf_c00168{bottom:747.600000px;}
.ye_c00168{bottom:767.400000px;}
.yd_c00168{bottom:787.500000px;}
.yc_c00168{bottom:807.600000px;}
.yb_c00168{bottom:827.400000px;}
.ya_c00168{bottom:847.200000px;}
.y9_c00168{bottom:867.300000px;}
.y8_c00168{bottom:887.100000px;}
.y7_c00168{bottom:906.150000px;}
.y6_c00168{bottom:926.700000px;}
.y5_c00168{bottom:946.800000px;}
.y4_c00168{bottom:966.600000px;}
.y3_c00168{bottom:986.700000px;}
.y2_c00168{bottom:1006.500000px;}
.y1_c00168{bottom:1049.700000px;}
.h2_c00168{height:54.000000px;}
.h1_c00168{height:1167.750000px;}
.h0_c00168{height:1167.839997px;}
.w1_c00168{width:920.250000px;}
.w0_c00168{width:920.519990px;}
.x0_c00168{left:0.000000px;}
.x3_c00168{left:133.500000px;}
.x1_c00168{left:135.300000px;}
.xc3_c00168{left:149.700000px;}
.xda_c00168{left:151.650000px;}
.x13_c00168{left:153.300000px;}
.xe1_c00168{left:157.050000px;}
.x71_c00168{left:159.300000px;}
.xfe_c00168{left:162.600000px;}
.x12b_c00168{left:164.100000px;}
.x14_c00168{left:165.150000px;}
.x32_c00168{left:166.800000px;}
.x7e_c00168{left:169.500000px;}
.x4_c00168{left:171.600000px;}
.xd3_c00168{left:173.550000px;}
.x109_c00168{left:174.600000px;}
.x23_c00168{left:175.950000px;}
.x64_c00168{left:177.900000px;}
.xb1_c00168{left:181.050000px;}
.x4c_c00168{left:182.550000px;}
.x33_c00168{left:184.500000px;}
.x58_c00168{left:188.850000px;}
.xea_c00168{left:190.500000px;}
.x8e_c00168{left:192.600000px;}
.xa1_c00168{left:193.950000px;}
.x110_c00168{left:196.650000px;}
.x65_c00168{left:197.700000px;}
.x4d_c00168{left:199.800000px;}
.x5_c00168{left:202.950000px;}
.x15_c00168{left:204.000000px;}
.xc4_c00168{left:206.100000px;}
.x7f_c00168{left:207.300000px;}
.xeb_c00168{left:210.000000px;}
.x34_c00168{left:213.000000px;}
.xf7_c00168{left:215.550000px;}
.x6_c00168{left:217.350000px;}
.xdb_c00168{left:219.750000px;}
.x118_c00168{left:223.500000px;}
.x66_c00168{left:225.750000px;}
.xf2_c00168{left:229.350000px;}
.x4e_c00168{left:231.150000px;}
.x95_c00168{left:232.500000px;}
.x41_c00168{left:234.150000px;}
.x24_c00168{left:240.000000px;}
.x103_c00168{left:241.500000px;}
.x16_c00168{left:242.850000px;}
.xf1_c00168{left:244.500000px;}
.x35_c00168{left:247.950000px;}
.x126_c00168{left:249.750000px;}
.x80_c00168{left:250.800000px;}
.xb2_c00168{left:252.000000px;}
.xe2_c00168{left:254.250000px;}
.x42_c00168{left:255.750000px;}
.x10a_c00168{left:257.850000px;}
.x111_c00168{left:258.900000px;}
.x7_c00168{left:260.850000px;}
.xff_c00168{left:262.650000px;}
.x72_c00168{left:263.700000px;}
.x133_c00168{left:265.050000px;}
.xa9_c00168{left:266.100000px;}
.xf3_c00168{left:267.600000px;}
.xbe_c00168{left:269.100000px;}
.x81_c00168{left:272.100000px;}
.x96_c00168{left:274.950000px;}
.xb3_c00168{left:277.950000px;}
.x127_c00168{left:281.100000px;}
.x25_c00168{left:284.250000px;}
.xd4_c00168{left:285.750000px;}
.x59_c00168{left:289.350000px;}
.xe3_c00168{left:291.000000px;}
.x43_c00168{left:292.800000px;}
.x17_c00168{left:295.350000px;}
.xb5_c00168{left:296.400000px;}
.x8_c00168{left:297.900000px;}
.xa2_c00168{left:301.200000px;}
.x104_c00168{left:302.700000px;}
.x26_c00168{left:303.750000px;}
.xce_c00168{left:305.400000px;}
.xc5_c00168{left:307.200000px;}
.xf4_c00168{left:309.000000px;}
.x10b_c00168{left:311.850000px;}
.xaa_c00168{left:312.900000px;}
.x82_c00168{left:315.600000px;}
.xf9_c00168{left:316.800000px;}
.x5a_c00168{left:318.150000px;}
.x4f_c00168{left:320.100000px;}
.x105_c00168{left:323.550000px;}
.x67_c00168{left:324.750000px;}
.x73_c00168{left:327.750000px;}
.x44_c00168{left:330.300000px;}
.xcf_c00168{left:333.150000px;}
.x27_c00168{left:334.650000px;}
.x121_c00168{left:335.850000px;}
.x36_c00168{left:337.650000px;}
.xb4_c00168{left:340.650000px;}
.xb6_c00168{left:342.450000px;}
.xa3_c00168{left:345.150000px;}
.x83_c00168{left:346.500000px;}
.x74_c00168{left:347.850000px;}
.x18_c00168{left:349.350000px;}
.xab_c00168{left:350.400000px;}
.xd5_c00168{left:352.800000px;}
.x37_c00168{left:354.900000px;}
.x68_c00168{left:356.400000px;}
.x9_c00168{left:360.150000px;}
.x97_c00168{left:361.800000px;}
.x11e_c00168{left:364.800000px;}
.x50_c00168{left:366.150000px;}
.xfa_c00168{left:367.950000px;}
.xd6_c00168{left:370.050000px;}
.x28_c00168{left:372.750000px;}
.x69_c00168{left:374.400000px;}
.x12f_c00168{left:376.350000px;}
.xc6_c00168{left:378.450000px;}
.x129_c00168{left:379.800000px;}
.x38_c00168{left:380.850000px;}
.x5b_c00168{left:383.250000px;}
.xd0_c00168{left:386.400000px;}
.x51_c00168{left:387.450000px;}
.x134_c00168{left:389.250000px;}
.xbf_c00168{left:392.550000px;}
.x8f_c00168{left:393.900000px;}
.x45_c00168{left:398.700000px;}
.xc7_c00168{left:400.350000px;}
.x98_c00168{left:401.700000px;}
.x5c_c00168{left:403.350000px;}
.xec_c00168{left:404.400000px;}
.x19_c00168{left:406.200000px;}
.xac_c00168{left:407.700000px;}
.x84_c00168{left:413.850000px;}
.x75_c00168{left:415.950000px;}
.x29_c00168{left:417.450000px;}
.xe4_c00168{left:418.650000px;}
.x39_c00168{left:420.150000px;}
.x10c_c00168{left:422.400000px;}
.xb7_c00168{left:424.200000px;}
.xdc_c00168{left:426.300000px;}
.xad_c00168{left:428.250000px;}
.xc8_c00168{left:429.900000px;}
.x2_c00168{left:432.300000px;}
.x1a_c00168{left:433.950000px;}
.x76_c00168{left:436.050000px;}
.x2a_c00168{left:438.300000px;}
.x46_c00168{left:440.400000px;}
.x52_c00168{left:441.450000px;}
.x90_c00168{left:444.300000px;}
.x6a_c00168{left:449.700000px;}
.xa_c00168{left:453.000000px;}
.xed_c00168{left:456.300000px;}
.x47_c00168{left:458.100000px;}
.x85_c00168{left:459.600000px;}
.x77_c00168{left:462.750000px;}
.x99_c00168{left:467.250000px;}
.x100_c00168{left:468.300000px;}
.x10d_c00168{left:469.500000px;}
.x53_c00168{left:471.000000px;}
.x112_c00168{left:472.350000px;}
.x3a_c00168{left:473.850000px;}
.x86_c00168{left:475.050000px;}
.x1b_c00168{left:477.900000px;}
.xb_c00168{left:478.950000px;}
.x91_c00168{left:480.600000px;}
.x2b_c00168{left:483.300000px;}
.x11f_c00168{left:485.100000px;}
.xc9_c00168{left:486.750000px;}
.x12c_c00168{left:489.000000px;}
.x101_c00168{left:490.200000px;}
.xa4_c00168{left:492.750000px;}
.x119_c00168{left:493.950000px;}
.x92_c00168{left:495.000000px;}
.x48_c00168{left:499.500000px;}
.x6b_c00168{left:501.150000px;}
.x78_c00168{left:503.400000px;}
.xae_c00168{left:505.350000px;}
.x9a_c00168{left:506.550000px;}
.x106_c00168{left:509.400000px;}
.x5d_c00168{left:510.600000px;}
.x113_c00168{left:513.450000px;}
.x102_c00168{left:515.700000px;}
.x1c_c00168{left:517.500000px;}
.x2c_c00168{left:518.550000px;}
.xfb_c00168{left:521.250000px;}
.xd1_c00168{left:523.950000px;}
.xc_c00168{left:525.750000px;}
.x54_c00168{left:527.550000px;}
.x49_c00168{left:528.600000px;}
.x87_c00168{left:530.850000px;}
.x12d_c00168{left:536.850000px;}
.x1d_c00168{left:539.100000px;}
.xdd_c00168{left:540.150000px;}
.x79_c00168{left:542.700000px;}
.xc0_c00168{left:544.200000px;}
.x107_c00168{left:546.150000px;}
.x2d_c00168{left:548.100000px;}
.xee_c00168{left:553.200000px;}
.x122_c00168{left:554.700000px;}
.xde_c00168{left:556.650000px;}
.x93_c00168{left:560.850000px;}
.x7a_c00168{left:562.500000px;}
.xd7_c00168{left:563.700000px;}
.xe5_c00168{left:565.050000px;}
.x5e_c00168{left:566.100000px;}
.xd_c00168{left:568.200000px;}
.xa5_c00168{left:571.350000px;}
.x88_c00168{left:574.350000px;}
.xc1_c00168{left:576.300000px;}
.xca_c00168{left:580.350000px;}
.x9b_c00168{left:583.200000px;}
.x3b_c00168{left:584.400000px;}
.x5f_c00168{left:586.650000px;}
.xe_c00168{left:587.700000px;}
.x2e_c00168{left:589.500000px;}
.x7b_c00168{left:590.550000px;}
.x6c_c00168{left:596.100000px;}
.x114_c00168{left:597.300000px;}
.xd8_c00168{left:598.650000px;}
.x128_c00168{left:599.700000px;}
.x1e_c00168{left:603.600000px;}
.xaf_c00168{left:604.650000px;}
.xdf_c00168{left:609.300000px;}
.x130_c00168{left:610.350000px;}
.x9c_c00168{left:612.300000px;}
.xf_c00168{left:613.650000px;}
.xe6_c00168{left:615.750000px;}
.xf5_c00168{left:619.050000px;}
.x60_c00168{left:621.150000px;}
.xb8_c00168{left:623.400000px;}
.xef_c00168{left:626.250000px;}
.xcb_c00168{left:627.450000px;}
.x89_c00168{left:629.400000px;}
.xa6_c00168{left:630.450000px;}
.x123_c00168{left:632.100000px;}
.xe7_c00168{left:634.800000px;}
.x11a_c00168{left:638.400000px;}
.xf6_c00168{left:639.900000px;}
.x2f_c00168{left:641.700000px;}
.x9d_c00168{left:642.900000px;}
.xb9_c00168{left:643.950000px;}
.x3c_c00168{left:647.100000px;}
.xe0_c00168{left:648.150000px;}
.x8a_c00168{left:649.500000px;}
.xcc_c00168{left:650.850000px;}
.x131_c00168{left:652.050000px;}
.x61_c00168{left:653.550000px;}
.x10e_c00168{left:655.950000px;}
.x1f_c00168{left:659.400000px;}
.x10_c00168{left:661.950000px;}
.x3d_c00168{left:666.150000px;}
.x62_c00168{left:668.700000px;}
.xb0_c00168{left:670.200000px;}
.xd2_c00168{left:672.300000px;}
.x6d_c00168{left:674.850000px;}
.x115_c00168{left:676.800000px;}
.x116_c00168{left:678.000000px;}
.x9e_c00168{left:679.200000px;}
.x135_c00168{left:680.700000px;}
.xcd_c00168{left:681.750000px;}
.xfc_c00168{left:683.550000px;}
.xa7_c00168{left:684.750000px;}
.x124_c00168{left:685.800000px;}
.xd9_c00168{left:687.900000px;}
.x55_c00168{left:689.100000px;}
.x20_c00168{left:690.750000px;}
.x3e_c00168{left:694.200000px;}
.xba_c00168{left:695.850000px;}
.x11b_c00168{left:697.800000px;}
.x30_c00168{left:699.600000px;}
.x4a_c00168{left:700.950000px;}
.xe8_c00168{left:702.150000px;}
.xf8_c00168{left:706.650000px;}
.x10f_c00168{left:708.900000px;}
.x63_c00168{left:710.400000px;}
.xfd_c00168{left:711.600000px;}
.x7c_c00168{left:712.950000px;}
.x8b_c00168{left:716.700000px;}
.x11_c00168{left:717.750000px;}
.x6e_c00168{left:719.850000px;}
.x11c_c00168{left:720.900000px;}
.x56_c00168{left:724.050000px;}
.xbb_c00168{left:725.400000px;}
.x9f_c00168{left:726.750000px;}
.xf0_c00168{left:729.300000px;}
.x3f_c00168{left:734.100000px;}
.xc2_c00168{left:735.150000px;}
.x8c_c00168{left:736.200000px;}
.xa0_c00168{left:737.850000px;}
.x11d_c00168{left:738.900000px;}
.xa8_c00168{left:740.550000px;}
.x4b_c00168{left:743.100000px;}
.x12a_c00168{left:746.550000px;}
.x12e_c00168{left:748.650000px;}
.x12_c00168{left:750.900000px;}
.x57_c00168{left:752.550000px;}
.xe9_c00168{left:754.650000px;}
.xbc_c00168{left:757.050000px;}
.x94_c00168{left:758.550000px;}
.x21_c00168{left:759.900000px;}
.x120_c00168{left:760.950000px;}
.x40_c00168{left:762.600000px;}
.x6f_c00168{left:766.650000px;}
.x125_c00168{left:768.600000px;}
.x132_c00168{left:770.550000px;}
.x31_c00168{left:771.600000px;}
.xbd_c00168{left:774.750000px;}
.x70_c00168{left:777.750000px;}
.x22_c00168{left:780.750000px;}
.x117_c00168{left:781.800000px;}
.x108_c00168{left:786.300000px;}
.x8d_c00168{left:788.400000px;}
.x7d_c00168{left:790.800000px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls0_c00168{letter-spacing:0.000000pt;}
.ws6_c00168{word-spacing:-6.444444pt;}
.wsb_c00168{word-spacing:-5.844171pt;}
.ws0_c00168{word-spacing:-5.043424pt;}
.ws9_c00168{word-spacing:-3.521400pt;}
.ws8_c00168{word-spacing:-2.613745pt;}
.ws3_c00168{word-spacing:-2.536707pt;}
.wse_c00168{word-spacing:0.000000pt;}
.wsc_c00168{word-spacing:0.952381pt;}
.ws7_c00168{word-spacing:2.886936pt;}
.wsa_c00168{word-spacing:4.557920pt;}
.wsd_c00168{word-spacing:4.906877pt;}
.ws1_c00168{word-spacing:6.444444pt;}
.ws2_c00168{word-spacing:9.488621pt;}
.ws4_c00168{word-spacing:10.777778pt;}
.ws5_c00168{word-spacing:13.555556pt;}
.fs0_c00168{font-size:48.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y2b_c00168{bottom:132.133333pt;}
.y2a_c00168{bottom:184.266667pt;}
.y29_c00168{bottom:201.866667pt;}
.y28_c00168{bottom:220.133333pt;}
.y27_c00168{bottom:237.733333pt;}
.y26_c00168{bottom:255.600000pt;}
.y25_c00168{bottom:273.200000pt;}
.y24_c00168{bottom:291.066667pt;}
.y23_c00168{bottom:308.666667pt;}
.y22_c00168{bottom:326.533333pt;}
.y21_c00168{bottom:344.400000pt;}
.y20_c00168{bottom:362.266667pt;}
.y1f_c00168{bottom:380.133333pt;}
.y1e_c00168{bottom:397.866667pt;}
.y1d_c00168{bottom:415.466667pt;}
.y1c_c00168{bottom:433.333333pt;}
.y1b_c00168{bottom:451.200000pt;}
.y1a_c00168{bottom:471.600000pt;}
.y19_c00168{bottom:486.933333pt;}
.y18_c00168{bottom:504.533333pt;}
.y17_c00168{bottom:522.133333pt;}
.y16_c00168{bottom:540.000000pt;}
.y15_c00168{bottom:557.600000pt;}
.y14_c00168{bottom:575.200000pt;}
.y13_c00168{bottom:593.066667pt;}
.y12_c00168{bottom:610.933333pt;}
.y11_c00168{bottom:629.066667pt;}
.y10_c00168{bottom:646.666667pt;}
.yf_c00168{bottom:664.533333pt;}
.ye_c00168{bottom:682.133333pt;}
.yd_c00168{bottom:700.000000pt;}
.yc_c00168{bottom:717.866667pt;}
.yb_c00168{bottom:735.466667pt;}
.ya_c00168{bottom:753.066667pt;}
.y9_c00168{bottom:770.933333pt;}
.y8_c00168{bottom:788.533333pt;}
.y7_c00168{bottom:805.466667pt;}
.y6_c00168{bottom:823.733333pt;}
.y5_c00168{bottom:841.600000pt;}
.y4_c00168{bottom:859.200000pt;}
.y3_c00168{bottom:877.066667pt;}
.y2_c00168{bottom:894.666667pt;}
.y1_c00168{bottom:933.066667pt;}
.h2_c00168{height:48.000000pt;}
.h1_c00168{height:1038.000000pt;}
.h0_c00168{height:1038.079997pt;}
.w1_c00168{width:818.000000pt;}
.w0_c00168{width:818.239991pt;}
.x0_c00168{left:0.000000pt;}
.x3_c00168{left:118.666667pt;}
.x1_c00168{left:120.266667pt;}
.xc3_c00168{left:133.066667pt;}
.xda_c00168{left:134.800000pt;}
.x13_c00168{left:136.266667pt;}
.xe1_c00168{left:139.600000pt;}
.x71_c00168{left:141.600000pt;}
.xfe_c00168{left:144.533333pt;}
.x12b_c00168{left:145.866667pt;}
.x14_c00168{left:146.800000pt;}
.x32_c00168{left:148.266667pt;}
.x7e_c00168{left:150.666667pt;}
.x4_c00168{left:152.533333pt;}
.xd3_c00168{left:154.266667pt;}
.x109_c00168{left:155.200000pt;}
.x23_c00168{left:156.400000pt;}
.x64_c00168{left:158.133333pt;}
.xb1_c00168{left:160.933333pt;}
.x4c_c00168{left:162.266667pt;}
.x33_c00168{left:164.000000pt;}
.x58_c00168{left:167.866667pt;}
.xea_c00168{left:169.333333pt;}
.x8e_c00168{left:171.200000pt;}
.xa1_c00168{left:172.400000pt;}
.x110_c00168{left:174.800000pt;}
.x65_c00168{left:175.733333pt;}
.x4d_c00168{left:177.600000pt;}
.x5_c00168{left:180.400000pt;}
.x15_c00168{left:181.333333pt;}
.xc4_c00168{left:183.200000pt;}
.x7f_c00168{left:184.266667pt;}
.xeb_c00168{left:186.666667pt;}
.x34_c00168{left:189.333333pt;}
.xf7_c00168{left:191.600000pt;}
.x6_c00168{left:193.200000pt;}
.xdb_c00168{left:195.333333pt;}
.x118_c00168{left:198.666667pt;}
.x66_c00168{left:200.666667pt;}
.xf2_c00168{left:203.866667pt;}
.x4e_c00168{left:205.466667pt;}
.x95_c00168{left:206.666667pt;}
.x41_c00168{left:208.133333pt;}
.x24_c00168{left:213.333333pt;}
.x103_c00168{left:214.666667pt;}
.x16_c00168{left:215.866667pt;}
.xf1_c00168{left:217.333333pt;}
.x35_c00168{left:220.400000pt;}
.x126_c00168{left:222.000000pt;}
.x80_c00168{left:222.933333pt;}
.xb2_c00168{left:224.000000pt;}
.xe2_c00168{left:226.000000pt;}
.x42_c00168{left:227.333333pt;}
.x10a_c00168{left:229.200000pt;}
.x111_c00168{left:230.133333pt;}
.x7_c00168{left:231.866667pt;}
.xff_c00168{left:233.466667pt;}
.x72_c00168{left:234.400000pt;}
.x133_c00168{left:235.600000pt;}
.xa9_c00168{left:236.533333pt;}
.xf3_c00168{left:237.866667pt;}
.xbe_c00168{left:239.200000pt;}
.x81_c00168{left:241.866667pt;}
.x96_c00168{left:244.400000pt;}
.xb3_c00168{left:247.066667pt;}
.x127_c00168{left:249.866667pt;}
.x25_c00168{left:252.666667pt;}
.xd4_c00168{left:254.000000pt;}
.x59_c00168{left:257.200000pt;}
.xe3_c00168{left:258.666667pt;}
.x43_c00168{left:260.266667pt;}
.x17_c00168{left:262.533333pt;}
.xb5_c00168{left:263.466667pt;}
.x8_c00168{left:264.800000pt;}
.xa2_c00168{left:267.733333pt;}
.x104_c00168{left:269.066667pt;}
.x26_c00168{left:270.000000pt;}
.xce_c00168{left:271.466667pt;}
.xc5_c00168{left:273.066667pt;}
.xf4_c00168{left:274.666667pt;}
.x10b_c00168{left:277.200000pt;}
.xaa_c00168{left:278.133333pt;}
.x82_c00168{left:280.533333pt;}
.xf9_c00168{left:281.600000pt;}
.x5a_c00168{left:282.800000pt;}
.x4f_c00168{left:284.533333pt;}
.x105_c00168{left:287.600000pt;}
.x67_c00168{left:288.666667pt;}
.x73_c00168{left:291.333333pt;}
.x44_c00168{left:293.600000pt;}
.xcf_c00168{left:296.133333pt;}
.x27_c00168{left:297.466667pt;}
.x121_c00168{left:298.533333pt;}
.x36_c00168{left:300.133333pt;}
.xb4_c00168{left:302.800000pt;}
.xb6_c00168{left:304.400000pt;}
.xa3_c00168{left:306.800000pt;}
.x83_c00168{left:308.000000pt;}
.x74_c00168{left:309.200000pt;}
.x18_c00168{left:310.533333pt;}
.xab_c00168{left:311.466667pt;}
.xd5_c00168{left:313.600000pt;}
.x37_c00168{left:315.466667pt;}
.x68_c00168{left:316.800000pt;}
.x9_c00168{left:320.133333pt;}
.x97_c00168{left:321.600000pt;}
.x11e_c00168{left:324.266667pt;}
.x50_c00168{left:325.466667pt;}
.xfa_c00168{left:327.066667pt;}
.xd6_c00168{left:328.933333pt;}
.x28_c00168{left:331.333333pt;}
.x69_c00168{left:332.800000pt;}
.x12f_c00168{left:334.533333pt;}
.xc6_c00168{left:336.400000pt;}
.x129_c00168{left:337.600000pt;}
.x38_c00168{left:338.533333pt;}
.x5b_c00168{left:340.666667pt;}
.xd0_c00168{left:343.466667pt;}
.x51_c00168{left:344.400000pt;}
.x134_c00168{left:346.000000pt;}
.xbf_c00168{left:348.933333pt;}
.x8f_c00168{left:350.133333pt;}
.x45_c00168{left:354.400000pt;}
.xc7_c00168{left:355.866667pt;}
.x98_c00168{left:357.066667pt;}
.x5c_c00168{left:358.533333pt;}
.xec_c00168{left:359.466667pt;}
.x19_c00168{left:361.066667pt;}
.xac_c00168{left:362.400000pt;}
.x84_c00168{left:367.866667pt;}
.x75_c00168{left:369.733333pt;}
.x29_c00168{left:371.066667pt;}
.xe4_c00168{left:372.133333pt;}
.x39_c00168{left:373.466667pt;}
.x10c_c00168{left:375.466667pt;}
.xb7_c00168{left:377.066667pt;}
.xdc_c00168{left:378.933333pt;}
.xad_c00168{left:380.666667pt;}
.xc8_c00168{left:382.133333pt;}
.x2_c00168{left:384.266667pt;}
.x1a_c00168{left:385.733333pt;}
.x76_c00168{left:387.600000pt;}
.x2a_c00168{left:389.600000pt;}
.x46_c00168{left:391.466667pt;}
.x52_c00168{left:392.400000pt;}
.x90_c00168{left:394.933333pt;}
.x6a_c00168{left:399.733333pt;}
.xa_c00168{left:402.666667pt;}
.xed_c00168{left:405.600000pt;}
.x47_c00168{left:407.200000pt;}
.x85_c00168{left:408.533333pt;}
.x77_c00168{left:411.333333pt;}
.x99_c00168{left:415.333333pt;}
.x100_c00168{left:416.266667pt;}
.x10d_c00168{left:417.333333pt;}
.x53_c00168{left:418.666667pt;}
.x112_c00168{left:419.866667pt;}
.x3a_c00168{left:421.200000pt;}
.x86_c00168{left:422.266667pt;}
.x1b_c00168{left:424.800000pt;}
.xb_c00168{left:425.733333pt;}
.x91_c00168{left:427.200000pt;}
.x2b_c00168{left:429.600000pt;}
.x11f_c00168{left:431.200000pt;}
.xc9_c00168{left:432.666667pt;}
.x12c_c00168{left:434.666667pt;}
.x101_c00168{left:435.733333pt;}
.xa4_c00168{left:438.000000pt;}
.x119_c00168{left:439.066667pt;}
.x92_c00168{left:440.000000pt;}
.x48_c00168{left:444.000000pt;}
.x6b_c00168{left:445.466667pt;}
.x78_c00168{left:447.466667pt;}
.xae_c00168{left:449.200000pt;}
.x9a_c00168{left:450.266667pt;}
.x106_c00168{left:452.800000pt;}
.x5d_c00168{left:453.866667pt;}
.x113_c00168{left:456.400000pt;}
.x102_c00168{left:458.400000pt;}
.x1c_c00168{left:460.000000pt;}
.x2c_c00168{left:460.933333pt;}
.xfb_c00168{left:463.333333pt;}
.xd1_c00168{left:465.733333pt;}
.xc_c00168{left:467.333333pt;}
.x54_c00168{left:468.933333pt;}
.x49_c00168{left:469.866667pt;}
.x87_c00168{left:471.866667pt;}
.x12d_c00168{left:477.200000pt;}
.x1d_c00168{left:479.200000pt;}
.xdd_c00168{left:480.133333pt;}
.x79_c00168{left:482.400000pt;}
.xc0_c00168{left:483.733333pt;}
.x107_c00168{left:485.466667pt;}
.x2d_c00168{left:487.200000pt;}
.xee_c00168{left:491.733333pt;}
.x122_c00168{left:493.066667pt;}
.xde_c00168{left:494.800000pt;}
.x93_c00168{left:498.533333pt;}
.x7a_c00168{left:500.000000pt;}
.xd7_c00168{left:501.066667pt;}
.xe5_c00168{left:502.266667pt;}
.x5e_c00168{left:503.200000pt;}
.xd_c00168{left:505.066667pt;}
.xa5_c00168{left:507.866667pt;}
.x88_c00168{left:510.533333pt;}
.xc1_c00168{left:512.266667pt;}
.xca_c00168{left:515.866667pt;}
.x9b_c00168{left:518.400000pt;}
.x3b_c00168{left:519.466667pt;}
.x5f_c00168{left:521.466667pt;}
.xe_c00168{left:522.400000pt;}
.x2e_c00168{left:524.000000pt;}
.x7b_c00168{left:524.933333pt;}
.x6c_c00168{left:529.866667pt;}
.x114_c00168{left:530.933333pt;}
.xd8_c00168{left:532.133333pt;}
.x128_c00168{left:533.066667pt;}
.x1e_c00168{left:536.533333pt;}
.xaf_c00168{left:537.466667pt;}
.xdf_c00168{left:541.600000pt;}
.x130_c00168{left:542.533333pt;}
.x9c_c00168{left:544.266667pt;}
.xf_c00168{left:545.466667pt;}
.xe6_c00168{left:547.333333pt;}
.xf5_c00168{left:550.266667pt;}
.x60_c00168{left:552.133333pt;}
.xb8_c00168{left:554.133333pt;}
.xef_c00168{left:556.666667pt;}
.xcb_c00168{left:557.733333pt;}
.x89_c00168{left:559.466667pt;}
.xa6_c00168{left:560.400000pt;}
.x123_c00168{left:561.866667pt;}
.xe7_c00168{left:564.266667pt;}
.x11a_c00168{left:567.466667pt;}
.xf6_c00168{left:568.800000pt;}
.x2f_c00168{left:570.400000pt;}
.x9d_c00168{left:571.466667pt;}
.xb9_c00168{left:572.400000pt;}
.x3c_c00168{left:575.200000pt;}
.xe0_c00168{left:576.133333pt;}
.x8a_c00168{left:577.333333pt;}
.xcc_c00168{left:578.533333pt;}
.x131_c00168{left:579.600000pt;}
.x61_c00168{left:580.933333pt;}
.x10e_c00168{left:583.066667pt;}
.x1f_c00168{left:586.133333pt;}
.x10_c00168{left:588.400000pt;}
.x3d_c00168{left:592.133333pt;}
.x62_c00168{left:594.400000pt;}
.xb0_c00168{left:595.733333pt;}
.xd2_c00168{left:597.600000pt;}
.x6d_c00168{left:599.866667pt;}
.x115_c00168{left:601.600000pt;}
.x116_c00168{left:602.666667pt;}
.x9e_c00168{left:603.733333pt;}
.x135_c00168{left:605.066667pt;}
.xcd_c00168{left:606.000000pt;}
.xfc_c00168{left:607.600000pt;}
.xa7_c00168{left:608.666667pt;}
.x124_c00168{left:609.600000pt;}
.xd9_c00168{left:611.466667pt;}
.x55_c00168{left:612.533333pt;}
.x20_c00168{left:614.000000pt;}
.x3e_c00168{left:617.066667pt;}
.xba_c00168{left:618.533333pt;}
.x11b_c00168{left:620.266667pt;}
.x30_c00168{left:621.866667pt;}
.x4a_c00168{left:623.066667pt;}
.xe8_c00168{left:624.133333pt;}
.xf8_c00168{left:628.133333pt;}
.x10f_c00168{left:630.133333pt;}
.x63_c00168{left:631.466667pt;}
.xfd_c00168{left:632.533333pt;}
.x7c_c00168{left:633.733333pt;}
.x8b_c00168{left:637.066667pt;}
.x11_c00168{left:638.000000pt;}
.x6e_c00168{left:639.866667pt;}
.x11c_c00168{left:640.800000pt;}
.x56_c00168{left:643.600000pt;}
.xbb_c00168{left:644.800000pt;}
.x9f_c00168{left:646.000000pt;}
.xf0_c00168{left:648.266667pt;}
.x3f_c00168{left:652.533333pt;}
.xc2_c00168{left:653.466667pt;}
.x8c_c00168{left:654.400000pt;}
.xa0_c00168{left:655.866667pt;}
.x11d_c00168{left:656.800000pt;}
.xa8_c00168{left:658.266667pt;}
.x4b_c00168{left:660.533333pt;}
.x12a_c00168{left:663.600000pt;}
.x12e_c00168{left:665.466667pt;}
.x12_c00168{left:667.466667pt;}
.x57_c00168{left:668.933333pt;}
.xe9_c00168{left:670.800000pt;}
.xbc_c00168{left:672.933333pt;}
.x94_c00168{left:674.266667pt;}
.x21_c00168{left:675.466667pt;}
.x120_c00168{left:676.400000pt;}
.x40_c00168{left:677.866667pt;}
.x6f_c00168{left:681.466667pt;}
.x125_c00168{left:683.200000pt;}
.x132_c00168{left:684.933333pt;}
.x31_c00168{left:685.866667pt;}
.xbd_c00168{left:688.666667pt;}
.x70_c00168{left:691.333333pt;}
.x22_c00168{left:694.000000pt;}
.x117_c00168{left:694.933333pt;}
.x108_c00168{left:698.933333pt;}
.x8d_c00168{left:700.800000pt;}
.x7d_c00168{left:702.933333pt;}
}





/* 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_c00169 {
    display:none;
  }
  .loading-indicator_c00169.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00169 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_c00169 { 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_c00169" -> "#page-container .classname_c00169")
 */
.pf_c00169 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00169 { /* 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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00169 { /* 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_c00169 { /* 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_c00169 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00169 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00169 {overflow:visible;}
  }
}
.c_c00169 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00169 { /* 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_c00169:after { /* webkit #35443 */
  content: '';
}
.t_c00169:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00169 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 */
}
.__c00169 { /* 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_c00169 { /* info for Javascript */
  display:none;
}
.l_c00169 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00169 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00169 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00169: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_c00169 {
    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_c00169.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00169.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_c00169 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00169{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00169;src:url('chunks/assets/font_2f3643c4c6c914f2e40d8939.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.000000;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;}
.m1_c00169{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.876000,0.000000,0.000000,0.250000,0,0);}
.v0_c00169{vertical-align:0.000000px;}
.ls0_c00169{letter-spacing:0.000000px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{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__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00169{word-spacing:0.000000px;}
.fc0_c00169{color:transparent;}
.fs0_c00169{font-size:30.000000px;}
.y0_c00169{bottom:0.000000px;}
.y1_c00169{bottom:101.100000px;}
.h2_c00169{height:30.000000px;}
.h1_c00169{height:1167.750000px;}
.h0_c00169{height:1167.839997px;}
.w1_c00169{width:920.250000px;}
.w0_c00169{width:920.519990px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:669.600000px;}
.x2_c00169{left:690.900000px;}
.x3_c00169{left:712.800000px;}
.x4_c00169{left:736.200000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fs0_c00169{font-size:26.666667pt;}
.y0_c00169{bottom:0.000000pt;}
.y1_c00169{bottom:89.866667pt;}
.h2_c00169{height:26.666667pt;}
.h1_c00169{height:1038.000000pt;}
.h0_c00169{height:1038.079997pt;}
.w1_c00169{width:818.000000pt;}
.w0_c00169{width:818.239991pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:595.200000pt;}
.x2_c00169{left:614.133333pt;}
.x3_c00169{left:633.600000pt;}
.x4_c00169{left:654.400000pt;}
}





/* 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_c00170 {
    display:none;
  }
  .loading-indicator_c00170.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00170 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_c00170 { 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_c00170" -> "#page-container .classname_c00170")
 */
.pf_c00170 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00170 { /* 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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00170 { /* 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_c00170 { /* 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_c00170 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00170 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00170 {overflow:visible;}
  }
}
.c_c00170 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00170 { /* 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_c00170:after { /* webkit #35443 */
  content: '';
}
.t_c00170:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00170 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 */
}
.__c00170 { /* 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_c00170 { /* info for Javascript */
  display:none;
}
.l_c00170 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00170 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00170 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00170: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_c00170 {
    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_c00170.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00170.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_c00170 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00170{font-family:sans-serif;visibility:hidden;}
.sc__c00170{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00170{-webkit-text-stroke:0px transparent;}
}
.y0_c00170{bottom:0.000000px;}
.h1_c00170{height:1167.750000px;}
.h0_c00170{height:1167.839997px;}
.w1_c00170{width:920.250000px;}
.w0_c00170{width:920.519990px;}
.x0_c00170{left:0.000000px;}
@media print{
.y0_c00170{bottom:0.000000pt;}
.h1_c00170{height:1038.000000pt;}
.h0_c00170{height:1038.079997pt;}
.w1_c00170{width:818.000000pt;}
.w0_c00170{width:818.239991pt;}
.x0_c00170{left:0.000000pt;}
}





/* 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_c00171 {
    display:none;
  }
  .loading-indicator_c00171.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00171 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_c00171 { 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_c00171" -> "#page-container .classname_c00171")
 */
.pf_c00171 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00171 { /* 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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00171 { /* 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_c00171 { /* 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_c00171 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00171 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00171 {overflow:visible;}
  }
}
.c_c00171 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00171 { /* 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_c00171:after { /* webkit #35443 */
  content: '';
}
.t_c00171:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00171 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 */
}
.__c00171 { /* 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_c00171 { /* info for Javascript */
  display:none;
}
.l_c00171 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00171 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00171 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00171: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_c00171 {
    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_c00171.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00171.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_c00171 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00171{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00171;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.000000;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;}
.m8a_c00171{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m68_c00171{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00171{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00171{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00171{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb_c00171{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00171{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00171{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.maa_c00171{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00171{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m44_c00171{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m93_c00171{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m54_c00171{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m73_c00171{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00171{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00171{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m87_c00171{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00171{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00171{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m56_c00171{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m95_c00171{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00171{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m42_c00171{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00171{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00171{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00171{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m52_c00171{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00171{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00171{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00171{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00171{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m15_c00171{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m60_c00171{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00171{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m84_c00171{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m98_c00171{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00171{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma_c00171{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m50_c00171{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m40_c00171{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m91_c00171{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00171{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m19_c00171{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m63_c00171{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m89_c00171{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md_c00171{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m12_c00171{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m62_c00171{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00171{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00171{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m37_c00171{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);}
.m29_c00171{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m96_c00171{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00171{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4_c00171{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m92_c00171{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m45_c00171{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m83_c00171{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m78_c00171{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00171{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m38_c00171{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00171{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00171{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m39_c00171{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m58_c00171{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00171{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00171{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00171{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1_c00171{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00171{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m32_c00171{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00171{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00171{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m24_c00171{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m74_c00171{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6_c00171{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m51_c00171{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00171{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m88_c00171{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c00171{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m48_c00171{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m72_c00171{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m41_c00171{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m2_c00171{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00171{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00171{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m76_c00171{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00171{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00171{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m22_c00171{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.ls0_c00171{letter-spacing:0.000000px;}
.sc__c00171{text-shadow:none;}
.sc0_c00171{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__c00171{-webkit-text-stroke:0px transparent;}
.sc0_c00171{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00171{word-spacing:-2.750000px;}
.ws1_c00171{word-spacing:-1.915040px;}
.wsa_c00171{word-spacing:0.000000px;}
.ws0_c00171{word-spacing:4.089832px;}
.ws5_c00171{word-spacing:4.234946px;}
.ws6_c00171{word-spacing:4.601140px;}
.ws4_c00171{word-spacing:5.721619px;}
.ws7_c00171{word-spacing:6.214286px;}
.ws8_c00171{word-spacing:9.763052px;}
.ws2_c00171{word-spacing:17.333333px;}
.ws9_c00171{word-spacing:693.606426px;}
.fc0_c00171{color:transparent;}
.fs0_c00171{font-size:54.000000px;}
.y0_c00171{bottom:0.000000px;}
.y2b_c00171{bottom:166.350000px;}
.y2a_c00171{bottom:181.800000px;}
.y29_c00171{bottom:197.700000px;}
.y28_c00171{bottom:247.800000px;}
.y27_c00171{bottom:267.900000px;}
.y26_c00171{bottom:287.700000px;}
.y25_c00171{bottom:307.800000px;}
.y24_c00171{bottom:327.600000px;}
.y23_c00171{bottom:347.700000px;}
.y22_c00171{bottom:367.800000px;}
.y21_c00171{bottom:386.550000px;}
.y20_c00171{bottom:406.350000px;}
.y1f_c00171{bottom:426.450000px;}
.y1e_c00171{bottom:446.550000px;}
.y1d_c00171{bottom:466.350000px;}
.y1c_c00171{bottom:486.450000px;}
.y1b_c00171{bottom:506.550000px;}
.y1a_c00171{bottom:526.350000px;}
.y19_c00171{bottom:546.450000px;}
.y18_c00171{bottom:565.950000px;}
.y17_c00171{bottom:586.200000px;}
.y16_c00171{bottom:606.300000px;}
.y15_c00171{bottom:626.100000px;}
.y14_c00171{bottom:646.350000px;}
.y13_c00171{bottom:666.150000px;}
.y12_c00171{bottom:686.250000px;}
.y11_c00171{bottom:710.400000px;}
.y10_c00171{bottom:725.850000px;}
.yf_c00171{bottom:745.950000px;}
.ye_c00171{bottom:766.050000px;}
.yd_c00171{bottom:785.850000px;}
.yc_c00171{bottom:805.800000px;}
.yb_c00171{bottom:826.350000px;}
.ya_c00171{bottom:846.150000px;}
.y9_c00171{bottom:866.250000px;}
.y8_c00171{bottom:886.050000px;}
.y7_c00171{bottom:906.150000px;}
.y6_c00171{bottom:925.950000px;}
.y5_c00171{bottom:946.050000px;}
.y4_c00171{bottom:965.850000px;}
.y3_c00171{bottom:986.100000px;}
.y2_c00171{bottom:1006.200000px;}
.y1_c00171{bottom:1044.300000px;}
.h2_c00171{height:54.000000px;}
.h1_c00171{height:1167.750000px;}
.h0_c00171{height:1167.839997px;}
.w1_c00171{width:920.250000px;}
.w0_c00171{width:920.519990px;}
.x0_c00171{left:0.000000px;}
.xa0_c00171{left:108.450000px;}
.x66_c00171{left:113.850000px;}
.x4_c00171{left:114.900000px;}
.xb9_c00171{left:129.900000px;}
.x122_c00171{left:132.900000px;}
.x5_c00171{left:134.700000px;}
.xaa_c00171{left:137.700000px;}
.x36_c00171{left:139.950000px;}
.xf0_c00171{left:142.200000px;}
.x25_c00171{left:143.250000px;}
.x1a_c00171{left:145.800000px;}
.xbe_c00171{left:146.850000px;}
.x108_c00171{left:148.650000px;}
.x6_c00171{left:150.900000px;}
.x42_c00171{left:152.250000px;}
.xab_c00171{left:154.650000px;}
.x75_c00171{left:157.350000px;}
.x11b_c00171{left:158.400000px;}
.xde_c00171{left:159.750000px;}
.x10f_c00171{left:161.100000px;}
.x14_c00171{left:162.450000px;}
.x8a_c00171{left:164.700000px;}
.x67_c00171{left:167.850000px;}
.xa1_c00171{left:170.400000px;}
.x95_c00171{left:172.800000px;}
.xe8_c00171{left:175.050000px;}
.x1b_c00171{left:176.100000px;}
.xba_c00171{left:178.200000px;}
.x8b_c00171{left:181.950000px;}
.x26_c00171{left:185.700000px;}
.x68_c00171{left:187.650000px;}
.xb2_c00171{left:189.900000px;}
.x5b_c00171{left:191.400000px;}
.x15_c00171{left:193.800000px;}
.xd6_c00171{left:194.850000px;}
.x7_c00171{left:198.000000px;}
.x37_c00171{left:201.150000px;}
.x72_c00171{left:202.650000px;}
.xc8_c00171{left:204.150000px;}
.xcf_c00171{left:205.800000px;}
.xf8_c00171{left:207.150000px;}
.x43_c00171{left:208.350000px;}
.x8c_c00171{left:210.750000px;}
.x11f_c00171{left:213.300000px;}
.xd1_c00171{left:215.550000px;}
.x4f_c00171{left:218.250000px;}
.x2a_c00171{left:219.300000px;}
.x38_c00171{left:220.650000px;}
.xdf_c00171{left:221.700000px;}
.xd7_c00171{left:223.350000px;}
.x5c_c00171{left:225.900000px;}
.x8_c00171{left:230.400000px;}
.xf1_c00171{left:231.900000px;}
.x102_c00171{left:233.250000px;}
.x16_c00171{left:234.450000px;}
.x27_c00171{left:235.650000px;}
.xf9_c00171{left:237.450000px;}
.x110_c00171{left:239.850000px;}
.x81_c00171{left:241.050000px;}
.xc9_c00171{left:243.000000px;}
.xd2_c00171{left:244.350000px;}
.xb3_c00171{left:245.400000px;}
.xd0_c00171{left:246.450000px;}
.x39_c00171{left:247.950000px;}
.x50_c00171{left:249.150000px;}
.x44_c00171{left:254.400000px;}
.xe0_c00171{left:255.600000px;}
.x76_c00171{left:257.850000px;}
.x73_c00171{left:259.800000px;}
.x9_c00171{left:261.000000px;}
.x109_c00171{left:265.800000px;}
.x82_c00171{left:267.300000px;}
.x126_c00171{left:268.500000px;}
.x96_c00171{left:269.550000px;}
.xbf_c00171{left:271.800000px;}
.x17_c00171{left:274.350000px;}
.x1c_c00171{left:275.550000px;}
.xe3_c00171{left:276.600000px;}
.x2b_c00171{left:281.550000px;}
.x28_c00171{left:283.950000px;}
.xac_c00171{left:285.300000px;}
.xfa_c00171{left:286.350000px;}
.xa2_c00171{left:288.150000px;}
.xe9_c00171{left:290.250000px;}
.x51_c00171{left:291.600000px;}
.x18_c00171{left:294.150000px;}
.xf2_c00171{left:297.900000px;}
.x97_c00171{left:299.400000px;}
.x74_c00171{left:301.200000px;}
.xa_c00171{left:303.900000px;}
.xd8_c00171{left:305.400000px;}
.xa3_c00171{left:307.650000px;}
.x29_c00171{left:309.450000px;}
.x120_c00171{left:310.500000px;}
.x5d_c00171{left:311.550000px;}
.xfb_c00171{left:315.150000px;}
.x98_c00171{left:316.650000px;}
.x77_c00171{left:319.050000px;}
.x45_c00171{left:320.250000px;}
.x103_c00171{left:322.200000px;}
.x2c_c00171{left:324.000000px;}
.xbb_c00171{left:325.500000px;}
.xca_c00171{left:327.600000px;}
.x123_c00171{left:330.150000px;}
.xd9_c00171{left:331.350000px;}
.xc0_c00171{left:332.700000px;}
.x10b_c00171{left:335.400000px;}
.xa4_c00171{left:336.450000px;}
.x83_c00171{left:338.100000px;}
.x19_c00171{left:339.150000px;}
.xea_c00171{left:342.450000px;}
.x99_c00171{left:344.700000px;}
.x69_c00171{left:347.250000px;}
.x11c_c00171{left:349.800000px;}
.xf3_c00171{left:351.600000px;}
.x52_c00171{left:353.550000px;}
.x8d_c00171{left:356.550000px;}
.xfc_c00171{left:360.150000px;}
.x111_c00171{left:361.200000px;}
.xbc_c00171{left:363.300000px;}
.x6a_c00171{left:364.500000px;}
.x46_c00171{left:366.000000px;}
.xcb_c00171{left:368.250000px;}
.x3a_c00171{left:370.650000px;}
.x1d_c00171{left:372.000000px;}
.xad_c00171{left:374.250000px;}
.x5e_c00171{left:377.100000px;}
.x119_c00171{left:378.600000px;}
.x78_c00171{left:380.250000px;}
.xeb_c00171{left:381.750000px;}
.x9a_c00171{left:383.250000px;}
.x47_c00171{left:386.850000px;}
.x10c_c00171{left:390.450000px;}
.xb_c00171{left:394.950000px;}
.x5f_c00171{left:398.400000px;}
.x11d_c00171{left:399.900000px;}
.x121_c00171{left:402.300000px;}
.x112_c00171{left:408.000000px;}
.x1_c00171{left:410.100000px;}
.xbd_c00171{left:413.250000px;}
.x2d_c00171{left:415.800000px;}
.x1e_c00171{left:418.050000px;}
.xfd_c00171{left:420.300000px;}
.xa5_c00171{left:422.100000px;}
.x113_c00171{left:423.150000px;}
.x48_c00171{left:424.650000px;}
.xda_c00171{left:426.300000px;}
.x9b_c00171{left:431.850000px;}
.xc3_c00171{left:433.200000px;}
.xae_c00171{left:434.700000px;}
.x3b_c00171{left:439.800000px;}
.xc_c00171{left:441.000000px;}
.x2e_c00171{left:442.800000px;}
.x84_c00171{left:448.350000px;}
.xdb_c00171{left:449.400000px;}
.x9c_c00171{left:451.650000px;}
.xc4_c00171{left:453.000000px;}
.x53_c00171{left:455.100000px;}
.x2_c00171{left:456.900000px;}
.x3c_c00171{left:458.850000px;}
.xd_c00171{left:461.550000px;}
.x6b_c00171{left:463.050000px;}
.x10a_c00171{left:466.650000px;}
.x79_c00171{left:467.850000px;}
.x127_c00171{left:470.100000px;}
.xec_c00171{left:471.300000px;}
.xb4_c00171{left:473.250000px;}
.x1f_c00171{left:475.650000px;}
.x8e_c00171{left:478.950000px;}
.x2f_c00171{left:481.650000px;}
.xdc_c00171{left:483.300000px;}
.x3d_c00171{left:484.800000px;}
.x60_c00171{left:485.850000px;}
.xe4_c00171{left:487.800000px;}
.x6c_c00171{left:491.100000px;}
.xc5_c00171{left:493.350000px;}
.x20_c00171{left:496.200000px;}
.xe_c00171{left:498.300000px;}
.x49_c00171{left:499.500000px;}
.x114_c00171{left:501.600000px;}
.x54_c00171{left:504.000000px;}
.xe5_c00171{left:508.350000px;}
.x9d_c00171{left:510.300000px;}
.x7a_c00171{left:512.100000px;}
.xfe_c00171{left:514.650000px;}
.x104_c00171{left:516.900000px;}
.x30_c00171{left:521.550000px;}
.xf4_c00171{left:523.200000px;}
.x85_c00171{left:526.050000px;}
.x124_c00171{left:527.100000px;}
.xf_c00171{left:528.900000px;}
.x8f_c00171{left:530.850000px;}
.xd3_c00171{left:532.650000px;}
.xdd_c00171{left:535.500000px;}
.xff_c00171{left:536.550000px;}
.x11e_c00171{left:538.500000px;}
.x55_c00171{left:541.050000px;}
.x7b_c00171{left:542.700000px;}
.x86_c00171{left:544.350000px;}
.xb5_c00171{left:546.600000px;}
.x4a_c00171{left:550.200000px;}
.xa6_c00171{left:555.000000px;}
.x3e_c00171{left:560.100000px;}
.x31_c00171{left:562.650000px;}
.x11a_c00171{left:566.100000px;}
.x9e_c00171{left:569.400000px;}
.xc6_c00171{left:570.750000px;}
.x115_c00171{left:573.150000px;}
.xf5_c00171{left:576.900000px;}
.x4b_c00171{left:579.000000px;}
.x21_c00171{left:584.700000px;}
.xed_c00171{left:586.500000px;}
.xa7_c00171{left:587.700000px;}
.x116_c00171{left:590.100000px;}
.x32_c00171{left:591.450000px;}
.x56_c00171{left:595.050000px;}
.xc1_c00171{left:596.850000px;}
.x90_c00171{left:600.750000px;}
.xe1_c00171{left:603.150000px;}
.x7c_c00171{left:604.200000px;}
.xcc_c00171{left:608.250000px;}
.x105_c00171{left:610.950000px;}
.xe6_c00171{left:612.000000px;}
.x61_c00171{left:613.800000px;}
.x6d_c00171{left:615.000000px;}
.xaf_c00171{left:617.250000px;}
.x57_c00171{left:618.450000px;}
.x3f_c00171{left:623.100000px;}
.x87_c00171{left:627.450000px;}
.x91_c00171{left:629.550000px;}
.xb6_c00171{left:632.550000px;}
.x10_c00171{left:634.050000px;}
.x100_c00171{left:637.650000px;}
.xee_c00171{left:639.450000px;}
.x22_c00171{left:643.050000px;}
.x33_c00171{left:645.150000px;}
.x117_c00171{left:647.400000px;}
.x6e_c00171{left:649.200000px;}
.x62_c00171{left:652.650000px;}
.x11_c00171{left:657.150000px;}
.x58_c00171{left:658.350000px;}
.xef_c00171{left:659.550000px;}
.xcd_c00171{left:663.000000px;}
.x10d_c00171{left:665.850000px;}
.xf6_c00171{left:668.250000px;}
.x7d_c00171{left:669.300000px;}
.xb0_c00171{left:670.500000px;}
.x40_c00171{left:672.450000px;}
.x118_c00171{left:674.700000px;}
.x59_c00171{left:678.450000px;}
.x6f_c00171{left:679.800000px;}
.x106_c00171{left:681.900000px;}
.x10e_c00171{left:683.850000px;}
.x7e_c00171{left:686.550000px;}
.xa8_c00171{left:687.750000px;}
.xf7_c00171{left:689.550000px;}
.x41_c00171{left:690.750000px;}
.x4c_c00171{left:692.400000px;}
.x92_c00171{left:694.650000px;}
.x63_c00171{left:697.350000px;}
.x23_c00171{left:703.500000px;}
.xc7_c00171{left:705.000000px;}
.xc2_c00171{left:706.050000px;}
.xce_c00171{left:707.250000px;}
.x7f_c00171{left:708.900000px;}
.x4d_c00171{left:710.100000px;}
.xb7_c00171{left:711.300000px;}
.x93_c00171{left:714.450000px;}
.x34_c00171{left:715.650000px;}
.x12_c00171{left:718.350000px;}
.xa9_c00171{left:720.150000px;}
.xe2_c00171{left:721.650000px;}
.xd4_c00171{left:723.000000px;}
.x4e_c00171{left:724.800000px;}
.x101_c00171{left:726.600000px;}
.x88_c00171{left:727.650000px;}
.x24_c00171{left:729.000000px;}
.x64_c00171{left:730.500000px;}
.x5a_c00171{left:733.950000px;}
.x70_c00171{left:735.750000px;}
.xe7_c00171{left:737.700000px;}
.xb8_c00171{left:739.800000px;}
.x35_c00171{left:741.600000px;}
.x94_c00171{left:742.950000px;}
.x13_c00171{left:746.400000px;}
.x65_c00171{left:748.200000px;}
.xb1_c00171{left:749.250000px;}
.x9f_c00171{left:750.750000px;}
.x125_c00171{left:753.150000px;}
.x3_c00171{left:755.400000px;}
.x107_c00171{left:760.350000px;}
.x80_c00171{left:768.000000px;}
.xd5_c00171{left:769.050000px;}
.x89_c00171{left:770.850000px;}
.x71_c00171{left:773.250000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws3_c00171{word-spacing:-2.444444pt;}
.ws1_c00171{word-spacing:-1.702258pt;}
.wsa_c00171{word-spacing:0.000000pt;}
.ws0_c00171{word-spacing:3.635406pt;}
.ws5_c00171{word-spacing:3.764396pt;}
.ws6_c00171{word-spacing:4.089902pt;}
.ws4_c00171{word-spacing:5.085884pt;}
.ws7_c00171{word-spacing:5.523810pt;}
.ws8_c00171{word-spacing:8.678269pt;}
.ws2_c00171{word-spacing:15.407407pt;}
.ws9_c00171{word-spacing:616.539045pt;}
.fs0_c00171{font-size:48.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y2b_c00171{bottom:147.866667pt;}
.y2a_c00171{bottom:161.600000pt;}
.y29_c00171{bottom:175.733333pt;}
.y28_c00171{bottom:220.266667pt;}
.y27_c00171{bottom:238.133333pt;}
.y26_c00171{bottom:255.733333pt;}
.y25_c00171{bottom:273.600000pt;}
.y24_c00171{bottom:291.200000pt;}
.y23_c00171{bottom:309.066667pt;}
.y22_c00171{bottom:326.933333pt;}
.y21_c00171{bottom:343.600000pt;}
.y20_c00171{bottom:361.200000pt;}
.y1f_c00171{bottom:379.066667pt;}
.y1e_c00171{bottom:396.933333pt;}
.y1d_c00171{bottom:414.533333pt;}
.y1c_c00171{bottom:432.400000pt;}
.y1b_c00171{bottom:450.266667pt;}
.y1a_c00171{bottom:467.866667pt;}
.y19_c00171{bottom:485.733333pt;}
.y18_c00171{bottom:503.066667pt;}
.y17_c00171{bottom:521.066667pt;}
.y16_c00171{bottom:538.933333pt;}
.y15_c00171{bottom:556.533333pt;}
.y14_c00171{bottom:574.533333pt;}
.y13_c00171{bottom:592.133333pt;}
.y12_c00171{bottom:610.000000pt;}
.y11_c00171{bottom:631.466667pt;}
.y10_c00171{bottom:645.200000pt;}
.yf_c00171{bottom:663.066667pt;}
.ye_c00171{bottom:680.933333pt;}
.yd_c00171{bottom:698.533333pt;}
.yc_c00171{bottom:716.266667pt;}
.yb_c00171{bottom:734.533333pt;}
.ya_c00171{bottom:752.133333pt;}
.y9_c00171{bottom:770.000000pt;}
.y8_c00171{bottom:787.600000pt;}
.y7_c00171{bottom:805.466667pt;}
.y6_c00171{bottom:823.066667pt;}
.y5_c00171{bottom:840.933333pt;}
.y4_c00171{bottom:858.533333pt;}
.y3_c00171{bottom:876.533333pt;}
.y2_c00171{bottom:894.400000pt;}
.y1_c00171{bottom:928.266667pt;}
.h2_c00171{height:48.000000pt;}
.h1_c00171{height:1038.000000pt;}
.h0_c00171{height:1038.079997pt;}
.w1_c00171{width:818.000000pt;}
.w0_c00171{width:818.239991pt;}
.x0_c00171{left:0.000000pt;}
.xa0_c00171{left:96.400000pt;}
.x66_c00171{left:101.200000pt;}
.x4_c00171{left:102.133333pt;}
.xb9_c00171{left:115.466667pt;}
.x122_c00171{left:118.133333pt;}
.x5_c00171{left:119.733333pt;}
.xaa_c00171{left:122.400000pt;}
.x36_c00171{left:124.400000pt;}
.xf0_c00171{left:126.400000pt;}
.x25_c00171{left:127.333333pt;}
.x1a_c00171{left:129.600000pt;}
.xbe_c00171{left:130.533333pt;}
.x108_c00171{left:132.133333pt;}
.x6_c00171{left:134.133333pt;}
.x42_c00171{left:135.333333pt;}
.xab_c00171{left:137.466667pt;}
.x75_c00171{left:139.866667pt;}
.x11b_c00171{left:140.800000pt;}
.xde_c00171{left:142.000000pt;}
.x10f_c00171{left:143.200000pt;}
.x14_c00171{left:144.400000pt;}
.x8a_c00171{left:146.400000pt;}
.x67_c00171{left:149.200000pt;}
.xa1_c00171{left:151.466667pt;}
.x95_c00171{left:153.600000pt;}
.xe8_c00171{left:155.600000pt;}
.x1b_c00171{left:156.533333pt;}
.xba_c00171{left:158.400000pt;}
.x8b_c00171{left:161.733333pt;}
.x26_c00171{left:165.066667pt;}
.x68_c00171{left:166.800000pt;}
.xb2_c00171{left:168.800000pt;}
.x5b_c00171{left:170.133333pt;}
.x15_c00171{left:172.266667pt;}
.xd6_c00171{left:173.200000pt;}
.x7_c00171{left:176.000000pt;}
.x37_c00171{left:178.800000pt;}
.x72_c00171{left:180.133333pt;}
.xc8_c00171{left:181.466667pt;}
.xcf_c00171{left:182.933333pt;}
.xf8_c00171{left:184.133333pt;}
.x43_c00171{left:185.200000pt;}
.x8c_c00171{left:187.333333pt;}
.x11f_c00171{left:189.600000pt;}
.xd1_c00171{left:191.600000pt;}
.x4f_c00171{left:194.000000pt;}
.x2a_c00171{left:194.933333pt;}
.x38_c00171{left:196.133333pt;}
.xdf_c00171{left:197.066667pt;}
.xd7_c00171{left:198.533333pt;}
.x5c_c00171{left:200.800000pt;}
.x8_c00171{left:204.800000pt;}
.xf1_c00171{left:206.133333pt;}
.x102_c00171{left:207.333333pt;}
.x16_c00171{left:208.400000pt;}
.x27_c00171{left:209.466667pt;}
.xf9_c00171{left:211.066667pt;}
.x110_c00171{left:213.200000pt;}
.x81_c00171{left:214.266667pt;}
.xc9_c00171{left:216.000000pt;}
.xd2_c00171{left:217.200000pt;}
.xb3_c00171{left:218.133333pt;}
.xd0_c00171{left:219.066667pt;}
.x39_c00171{left:220.400000pt;}
.x50_c00171{left:221.466667pt;}
.x44_c00171{left:226.133333pt;}
.xe0_c00171{left:227.200000pt;}
.x76_c00171{left:229.200000pt;}
.x73_c00171{left:230.933333pt;}
.x9_c00171{left:232.000000pt;}
.x109_c00171{left:236.266667pt;}
.x82_c00171{left:237.600000pt;}
.x126_c00171{left:238.666667pt;}
.x96_c00171{left:239.600000pt;}
.xbf_c00171{left:241.600000pt;}
.x17_c00171{left:243.866667pt;}
.x1c_c00171{left:244.933333pt;}
.xe3_c00171{left:245.866667pt;}
.x2b_c00171{left:250.266667pt;}
.x28_c00171{left:252.400000pt;}
.xac_c00171{left:253.600000pt;}
.xfa_c00171{left:254.533333pt;}
.xa2_c00171{left:256.133333pt;}
.xe9_c00171{left:258.000000pt;}
.x51_c00171{left:259.200000pt;}
.x18_c00171{left:261.466667pt;}
.xf2_c00171{left:264.800000pt;}
.x97_c00171{left:266.133333pt;}
.x74_c00171{left:267.733333pt;}
.xa_c00171{left:270.133333pt;}
.xd8_c00171{left:271.466667pt;}
.xa3_c00171{left:273.466667pt;}
.x29_c00171{left:275.066667pt;}
.x120_c00171{left:276.000000pt;}
.x5d_c00171{left:276.933333pt;}
.xfb_c00171{left:280.133333pt;}
.x98_c00171{left:281.466667pt;}
.x77_c00171{left:283.600000pt;}
.x45_c00171{left:284.666667pt;}
.x103_c00171{left:286.400000pt;}
.x2c_c00171{left:288.000000pt;}
.xbb_c00171{left:289.333333pt;}
.xca_c00171{left:291.200000pt;}
.x123_c00171{left:293.466667pt;}
.xd9_c00171{left:294.533333pt;}
.xc0_c00171{left:295.733333pt;}
.x10b_c00171{left:298.133333pt;}
.xa4_c00171{left:299.066667pt;}
.x83_c00171{left:300.533333pt;}
.x19_c00171{left:301.466667pt;}
.xea_c00171{left:304.400000pt;}
.x99_c00171{left:306.400000pt;}
.x69_c00171{left:308.666667pt;}
.x11c_c00171{left:310.933333pt;}
.xf3_c00171{left:312.533333pt;}
.x52_c00171{left:314.266667pt;}
.x8d_c00171{left:316.933333pt;}
.xfc_c00171{left:320.133333pt;}
.x111_c00171{left:321.066667pt;}
.xbc_c00171{left:322.933333pt;}
.x6a_c00171{left:324.000000pt;}
.x46_c00171{left:325.333333pt;}
.xcb_c00171{left:327.333333pt;}
.x3a_c00171{left:329.466667pt;}
.x1d_c00171{left:330.666667pt;}
.xad_c00171{left:332.666667pt;}
.x5e_c00171{left:335.200000pt;}
.x119_c00171{left:336.533333pt;}
.x78_c00171{left:338.000000pt;}
.xeb_c00171{left:339.333333pt;}
.x9a_c00171{left:340.666667pt;}
.x47_c00171{left:343.866667pt;}
.x10c_c00171{left:347.066667pt;}
.xb_c00171{left:351.066667pt;}
.x5f_c00171{left:354.133333pt;}
.x11d_c00171{left:355.466667pt;}
.x121_c00171{left:357.600000pt;}
.x112_c00171{left:362.666667pt;}
.x1_c00171{left:364.533333pt;}
.xbd_c00171{left:367.333333pt;}
.x2d_c00171{left:369.600000pt;}
.x1e_c00171{left:371.600000pt;}
.xfd_c00171{left:373.600000pt;}
.xa5_c00171{left:375.200000pt;}
.x113_c00171{left:376.133333pt;}
.x48_c00171{left:377.466667pt;}
.xda_c00171{left:378.933333pt;}
.x9b_c00171{left:383.866667pt;}
.xc3_c00171{left:385.066667pt;}
.xae_c00171{left:386.400000pt;}
.x3b_c00171{left:390.933333pt;}
.xc_c00171{left:392.000000pt;}
.x2e_c00171{left:393.600000pt;}
.x84_c00171{left:398.533333pt;}
.xdb_c00171{left:399.466667pt;}
.x9c_c00171{left:401.466667pt;}
.xc4_c00171{left:402.666667pt;}
.x53_c00171{left:404.533333pt;}
.x2_c00171{left:406.133333pt;}
.x3c_c00171{left:407.866667pt;}
.xd_c00171{left:410.266667pt;}
.x6b_c00171{left:411.600000pt;}
.x10a_c00171{left:414.800000pt;}
.x79_c00171{left:415.866667pt;}
.x127_c00171{left:417.866667pt;}
.xec_c00171{left:418.933333pt;}
.xb4_c00171{left:420.666667pt;}
.x1f_c00171{left:422.800000pt;}
.x8e_c00171{left:425.733333pt;}
.x2f_c00171{left:428.133333pt;}
.xdc_c00171{left:429.600000pt;}
.x3d_c00171{left:430.933333pt;}
.x60_c00171{left:431.866667pt;}
.xe4_c00171{left:433.600000pt;}
.x6c_c00171{left:436.533333pt;}
.xc5_c00171{left:438.533333pt;}
.x20_c00171{left:441.066667pt;}
.xe_c00171{left:442.933333pt;}
.x49_c00171{left:444.000000pt;}
.x114_c00171{left:445.866667pt;}
.x54_c00171{left:448.000000pt;}
.xe5_c00171{left:451.866667pt;}
.x9d_c00171{left:453.600000pt;}
.x7a_c00171{left:455.200000pt;}
.xfe_c00171{left:457.466667pt;}
.x104_c00171{left:459.466667pt;}
.x30_c00171{left:463.600000pt;}
.xf4_c00171{left:465.066667pt;}
.x85_c00171{left:467.600000pt;}
.x124_c00171{left:468.533333pt;}
.xf_c00171{left:470.133333pt;}
.x8f_c00171{left:471.866667pt;}
.xd3_c00171{left:473.466667pt;}
.xdd_c00171{left:476.000000pt;}
.xff_c00171{left:476.933333pt;}
.x11e_c00171{left:478.666667pt;}
.x55_c00171{left:480.933333pt;}
.x7b_c00171{left:482.400000pt;}
.x86_c00171{left:483.866667pt;}
.xb5_c00171{left:485.866667pt;}
.x4a_c00171{left:489.066667pt;}
.xa6_c00171{left:493.333333pt;}
.x3e_c00171{left:497.866667pt;}
.x31_c00171{left:500.133333pt;}
.x11a_c00171{left:503.200000pt;}
.x9e_c00171{left:506.133333pt;}
.xc6_c00171{left:507.333333pt;}
.x115_c00171{left:509.466667pt;}
.xf5_c00171{left:512.800000pt;}
.x4b_c00171{left:514.666667pt;}
.x21_c00171{left:519.733333pt;}
.xed_c00171{left:521.333333pt;}
.xa7_c00171{left:522.400000pt;}
.x116_c00171{left:524.533333pt;}
.x32_c00171{left:525.733333pt;}
.x56_c00171{left:528.933333pt;}
.xc1_c00171{left:530.533333pt;}
.x90_c00171{left:534.000000pt;}
.xe1_c00171{left:536.133333pt;}
.x7c_c00171{left:537.066667pt;}
.xcc_c00171{left:540.666667pt;}
.x105_c00171{left:543.066667pt;}
.xe6_c00171{left:544.000000pt;}
.x61_c00171{left:545.600000pt;}
.x6d_c00171{left:546.666667pt;}
.xaf_c00171{left:548.666667pt;}
.x57_c00171{left:549.733333pt;}
.x3f_c00171{left:553.866667pt;}
.x87_c00171{left:557.733333pt;}
.x91_c00171{left:559.600000pt;}
.xb6_c00171{left:562.266667pt;}
.x10_c00171{left:563.600000pt;}
.x100_c00171{left:566.800000pt;}
.xee_c00171{left:568.400000pt;}
.x22_c00171{left:571.600000pt;}
.x33_c00171{left:573.466667pt;}
.x117_c00171{left:575.466667pt;}
.x6e_c00171{left:577.066667pt;}
.x62_c00171{left:580.133333pt;}
.x11_c00171{left:584.133333pt;}
.x58_c00171{left:585.200000pt;}
.xef_c00171{left:586.266667pt;}
.xcd_c00171{left:589.333333pt;}
.x10d_c00171{left:591.866667pt;}
.xf6_c00171{left:594.000000pt;}
.x7d_c00171{left:594.933333pt;}
.xb0_c00171{left:596.000000pt;}
.x40_c00171{left:597.733333pt;}
.x118_c00171{left:599.733333pt;}
.x59_c00171{left:603.066667pt;}
.x6f_c00171{left:604.266667pt;}
.x106_c00171{left:606.133333pt;}
.x10e_c00171{left:607.866667pt;}
.x7e_c00171{left:610.266667pt;}
.xa8_c00171{left:611.333333pt;}
.xf7_c00171{left:612.933333pt;}
.x41_c00171{left:614.000000pt;}
.x4c_c00171{left:615.466667pt;}
.x92_c00171{left:617.466667pt;}
.x63_c00171{left:619.866667pt;}
.x23_c00171{left:625.333333pt;}
.xc7_c00171{left:626.666667pt;}
.xc2_c00171{left:627.600000pt;}
.xce_c00171{left:628.666667pt;}
.x7f_c00171{left:630.133333pt;}
.x4d_c00171{left:631.200000pt;}
.xb7_c00171{left:632.266667pt;}
.x93_c00171{left:635.066667pt;}
.x34_c00171{left:636.133333pt;}
.x12_c00171{left:638.533333pt;}
.xa9_c00171{left:640.133333pt;}
.xe2_c00171{left:641.466667pt;}
.xd4_c00171{left:642.666667pt;}
.x4e_c00171{left:644.266667pt;}
.x101_c00171{left:645.866667pt;}
.x88_c00171{left:646.800000pt;}
.x24_c00171{left:648.000000pt;}
.x64_c00171{left:649.333333pt;}
.x5a_c00171{left:652.400000pt;}
.x70_c00171{left:654.000000pt;}
.xe7_c00171{left:655.733333pt;}
.xb8_c00171{left:657.600000pt;}
.x35_c00171{left:659.200000pt;}
.x94_c00171{left:660.400000pt;}
.x13_c00171{left:663.466667pt;}
.x65_c00171{left:665.066667pt;}
.xb1_c00171{left:666.000000pt;}
.x9f_c00171{left:667.333333pt;}
.x125_c00171{left:669.466667pt;}
.x3_c00171{left:671.466667pt;}
.x107_c00171{left:675.866667pt;}
.x80_c00171{left:682.666667pt;}
.xd5_c00171{left:683.600000pt;}
.x89_c00171{left:685.200000pt;}
.x71_c00171{left:687.333333pt;}
}





/* 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_c00172 {
    display:none;
  }
  .loading-indicator_c00172.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00172 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_c00172 { 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_c00172" -> "#page-container .classname_c00172")
 */
.pf_c00172 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00172 { /* 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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00172 { /* 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_c00172 { /* 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_c00172 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00172 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00172 {overflow:visible;}
  }
}
.c_c00172 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00172 { /* 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_c00172:after { /* webkit #35443 */
  content: '';
}
.t_c00172:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00172 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 */
}
.__c00172 { /* 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_c00172 { /* info for Javascript */
  display:none;
}
.l_c00172 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00172 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00172 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00172: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_c00172 {
    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_c00172.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00172.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_c00172 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00172{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00172;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.000000;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;}
.m31_c00172{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m75_c00172{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m47_c00172{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m94_c00172{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m88_c00172{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m64_c00172{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00172{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00172{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m90_c00172{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m95_c00172{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00172{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m97_c00172{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m89_c00172{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00172{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00172{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m60_c00172{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m77_c00172{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m25_c00172{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00172{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m36_c00172{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m73_c00172{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00172{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m56_c00172{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m59_c00172{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m72_c00172{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m86_c00172{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00172{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00172{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m16_c00172{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m65_c00172{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00172{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00172{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00172{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00172{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m13_c00172{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m78_c00172{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m50_c00172{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00172{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00172{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00172{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m83_c00172{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);}
.m43_c00172{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8_c00172{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00172{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00172{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00172{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00172{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00172{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m61_c00172{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m37_c00172{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00172{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00172{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m74_c00172{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.me_c00172{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00172{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m80_c00172{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m82_c00172{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m39_c00172{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m79_c00172{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m63_c00172{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00172{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00172{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m19_c00172{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m28_c00172{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00172{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00172{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00172{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m18_c00172{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m58_c00172{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00172{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m68_c00172{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m66_c00172{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls0_c00172{letter-spacing:0.000000px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{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__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00172{word-spacing:-9.222494px;}
.wsa_c00172{word-spacing:-7.375000px;}
.ws6_c00172{word-spacing:-6.790066px;}
.ws7_c00172{word-spacing:-6.000000px;}
.ws4_c00172{word-spacing:-5.487660px;}
.ws8_c00172{word-spacing:-5.250000px;}
.wsb_c00172{word-spacing:0.000000px;}
.ws1_c00172{word-spacing:1.500000px;}
.ws2_c00172{word-spacing:4.961538px;}
.ws5_c00172{word-spacing:7.500000px;}
.ws0_c00172{word-spacing:9.000000px;}
.ws3_c00172{word-spacing:9.628445px;}
.fc0_c00172{color:transparent;}
.fs0_c00172{font-size:54.000000px;}
.y0_c00172{bottom:0.000000px;}
.y22_c00172{bottom:360.450000px;}
.y21_c00172{bottom:375.900000px;}
.y20_c00172{bottom:391.350000px;}
.y1f_c00172{bottom:429.450000px;}
.y1e_c00172{bottom:449.550000px;}
.y1d_c00172{bottom:469.650000px;}
.y1c_c00172{bottom:489.750000px;}
.y1b_c00172{bottom:509.550000px;}
.y1a_c00172{bottom:529.650000px;}
.y19_c00172{bottom:549.750000px;}
.y18_c00172{bottom:569.550000px;}
.y17_c00172{bottom:589.650000px;}
.y16_c00172{bottom:609.450000px;}
.y15_c00172{bottom:629.700000px;}
.y14_c00172{bottom:649.500000px;}
.y13_c00172{bottom:669.300000px;}
.y12_c00172{bottom:689.400000px;}
.y11_c00172{bottom:709.500000px;}
.y10_c00172{bottom:729.750000px;}
.yf_c00172{bottom:749.250000px;}
.ye_c00172{bottom:769.350000px;}
.yd_c00172{bottom:789.150000px;}
.yc_c00172{bottom:809.250000px;}
.yb_c00172{bottom:829.350000px;}
.ya_c00172{bottom:849.450000px;}
.y9_c00172{bottom:869.250000px;}
.y8_c00172{bottom:889.350000px;}
.y7_c00172{bottom:909.150000px;}
.y6_c00172{bottom:929.250000px;}
.y5_c00172{bottom:949.050000px;}
.y4_c00172{bottom:969.150000px;}
.y3_c00172{bottom:989.250000px;}
.y2_c00172{bottom:1009.050000px;}
.y1_c00172{bottom:1047.900000px;}
.h2_c00172{height:54.000000px;}
.h1_c00172{height:1167.750000px;}
.h0_c00172{height:1167.839997px;}
.w1_c00172{width:920.250000px;}
.w0_c00172{width:920.519990px;}
.x0_c00172{left:0.000000px;}
.x11a_c00172{left:140.250000px;}
.xe3_c00172{left:141.450000px;}
.x8d_c00172{left:142.950000px;}
.x4_c00172{left:144.000000px;}
.x1_c00172{left:145.500000px;}
.x2_c00172{left:153.450000px;}
.x10d_c00172{left:159.900000px;}
.xdb_c00172{left:162.150000px;}
.x60_c00172{left:164.100000px;}
.xc0_c00172{left:166.800000px;}
.xd3_c00172{left:169.200000px;}
.xb1_c00172{left:170.700000px;}
.xca_c00172{left:173.100000px;}
.x80_c00172{left:174.300000px;}
.x11_c00172{left:178.350000px;}
.xa2_c00172{left:179.700000px;}
.xef_c00172{left:181.050000px;}
.xf8_c00172{left:184.050000px;}
.x61_c00172{left:187.200000px;}
.x3c_c00172{left:188.250000px;}
.x102_c00172{left:191.400000px;}
.x75_c00172{left:193.950000px;}
.x20_c00172{left:196.050000px;}
.xf0_c00172{left:199.350000px;}
.x2d_c00172{left:203.100000px;}
.x62_c00172{left:205.950000px;}
.xe7_c00172{left:207.600000px;}
.x12_c00172{left:209.700000px;}
.x8e_c00172{left:212.400000px;}
.xc1_c00172{left:215.400000px;}
.x56_c00172{left:217.500000px;}
.xa3_c00172{left:219.000000px;}
.x76_c00172{left:220.950000px;}
.xd4_c00172{left:224.550000px;}
.x11b_c00172{left:226.350000px;}
.x5_c00172{left:228.300000px;}
.x3d_c00172{left:229.350000px;}
.x116_c00172{left:231.600000px;}
.xfc_c00172{left:235.350000px;}
.x2e_c00172{left:237.000000px;}
.x21_c00172{left:238.500000px;}
.x99_c00172{left:242.400000px;}
.xc2_c00172{left:246.300000px;}
.xa4_c00172{left:248.550000px;}
.x8f_c00172{left:252.300000px;}
.xdc_c00172{left:253.950000px;}
.x49_c00172{left:255.000000px;}
.xf9_c00172{left:257.100000px;}
.x22_c00172{left:259.050000px;}
.x63_c00172{left:261.000000px;}
.x13_c00172{left:262.650000px;}
.x57_c00172{left:264.000000px;}
.x2f_c00172{left:271.950000px;}
.xbb_c00172{left:274.050000px;}
.x4a_c00172{left:275.850000px;}
.x3e_c00172{left:276.900000px;}
.xf1_c00172{left:278.250000px;}
.x77_c00172{left:280.050000px;}
.xb2_c00172{left:283.350000px;}
.x81_c00172{left:285.150000px;}
.xa5_c00172{left:287.850000px;}
.x64_c00172{left:290.100000px;}
.x90_c00172{left:292.650000px;}
.x6c_c00172{left:294.000000px;}
.x10e_c00172{left:295.650000px;}
.x14_c00172{left:297.150000px;}
.x78_c00172{left:298.800000px;}
.x6_c00172{left:301.800000px;}
.x3f_c00172{left:304.650000px;}
.xfd_c00172{left:306.600000px;}
.xa6_c00172{left:308.400000px;}
.xe8_c00172{left:309.450000px;}
.xb3_c00172{left:311.100000px;}
.x30_c00172{left:312.600000px;}
.x82_c00172{left:314.700000px;}
.x9a_c00172{left:317.400000px;}
.x79_c00172{left:320.100000px;}
.x11c_c00172{left:321.750000px;}
.x7_c00172{left:325.500000px;}
.x4b_c00172{left:326.550000px;}
.xfe_c00172{left:331.800000px;}
.x23_c00172{left:333.150000px;}
.x31_c00172{left:334.500000px;}
.x6d_c00172{left:336.450000px;}
.x15_c00172{left:340.350000px;}
.x11d_c00172{left:341.550000px;}
.xdd_c00172{left:343.500000px;}
.x7a_c00172{left:345.600000px;}
.x58_c00172{left:348.000000px;}
.x8_c00172{left:352.500000px;}
.x6e_c00172{left:354.150000px;}
.x10f_c00172{left:358.350000px;}
.x16_c00172{left:360.900000px;}
.xd5_c00172{left:366.150000px;}
.x4c_c00172{left:369.000000px;}
.xcb_c00172{left:372.300000px;}
.x9_c00172{left:375.150000px;}
.x59_c00172{left:377.550000px;}
.xde_c00172{left:378.900000px;}
.x6f_c00172{left:380.100000px;}
.xb4_c00172{left:383.100000px;}
.x7b_c00172{left:386.250000px;}
.x32_c00172{left:390.000000px;}
.x40_c00172{left:391.800000px;}
.x17_c00172{left:393.000000px;}
.xa7_c00172{left:394.050000px;}
.x83_c00172{left:395.250000px;}
.x5a_c00172{left:396.600000px;}
.x65_c00172{left:397.800000px;}
.xe9_c00172{left:399.450000px;}
.x117_c00172{left:400.650000px;}
.xb5_c00172{left:403.650000px;}
.x91_c00172{left:406.050000px;}
.xf2_c00172{left:407.850000px;}
.x4d_c00172{left:409.650000px;}
.x7c_c00172{left:411.150000px;}
.x24_c00172{left:412.350000px;}
.x108_c00172{left:413.550000px;}
.x84_c00172{left:415.800000px;}
.x11e_c00172{left:420.300000px;}
.x41_c00172{left:421.350000px;}
.x118_c00172{left:423.300000px;}
.x33_c00172{left:425.700000px;}
.x66_c00172{left:426.900000px;}
.x7d_c00172{left:428.850000px;}
.x110_c00172{left:431.100000px;}
.xa_c00172{left:432.450000px;}
.xe4_c00172{left:434.700000px;}
.xcc_c00172{left:438.150000px;}
.xc3_c00172{left:439.650000px;}
.x3_c00172{left:441.150000px;}
.x5b_c00172{left:444.150000px;}
.xdf_c00172{left:445.200000px;}
.x85_c00172{left:447.150000px;}
.x70_c00172{left:448.200000px;}
.x34_c00172{left:450.150000px;}
.xf3_c00172{left:451.350000px;}
.xff_c00172{left:454.950000px;}
.x109_c00172{left:457.800000px;}
.xb_c00172{left:460.950000px;}
.x25_c00172{left:462.450000px;}
.xa8_c00172{left:464.250000px;}
.xea_c00172{left:465.300000px;}
.x7e_c00172{left:469.200000px;}
.x92_c00172{left:471.900000px;}
.x42_c00172{left:474.300000px;}
.xb6_c00172{left:475.650000px;}
.xd6_c00172{left:480.600000px;}
.x4e_c00172{left:483.150000px;}
.xcd_c00172{left:486.450000px;}
.x86_c00172{left:490.050000px;}
.x9b_c00172{left:493.500000px;}
.x67_c00172{left:494.550000px;}
.x119_c00172{left:496.650000px;}
.x111_c00172{left:499.500000px;}
.x35_c00172{left:500.550000px;}
.x71_c00172{left:502.500000px;}
.xeb_c00172{left:505.650000px;}
.xc4_c00172{left:507.300000px;}
.x87_c00172{left:509.850000px;}
.x104_c00172{left:510.900000px;}
.x4f_c00172{left:511.950000px;}
.x26_c00172{left:517.950000px;}
.xe0_c00172{left:519.750000px;}
.x36_c00172{left:523.650000px;}
.x68_c00172{left:526.650000px;}
.xbc_c00172{left:527.850000px;}
.x43_c00172{left:529.650000px;}
.xd7_c00172{left:531.000000px;}
.xa9_c00172{left:532.950000px;}
.x18_c00172{left:535.500000px;}
.xc5_c00172{left:536.850000px;}
.x7f_c00172{left:541.950000px;}
.x50_c00172{left:543.300000px;}
.x10a_c00172{left:547.500000px;}
.x93_c00172{left:549.750000px;}
.xaa_c00172{left:551.250000px;}
.xd8_c00172{left:555.900000px;}
.xc_c00172{left:557.400000px;}
.x19_c00172{left:559.200000px;}
.xce_c00172{left:561.450000px;}
.x88_c00172{left:563.550000px;}
.xe1_c00172{left:566.250000px;}
.x10b_c00172{left:568.050000px;}
.x5c_c00172{left:569.100000px;}
.xbd_c00172{left:571.050000px;}
.x105_c00172{left:573.150000px;}
.x9c_c00172{left:577.050000px;}
.x69_c00172{left:578.100000px;}
.x27_c00172{left:582.750000px;}
.xf4_c00172{left:587.400000px;}
.x37_c00172{left:592.050000px;}
.x106_c00172{left:594.000000px;}
.xb7_c00172{left:595.800000px;}
.x112_c00172{left:597.750000px;}
.xfa_c00172{left:600.000000px;}
.x44_c00172{left:602.700000px;}
.x94_c00172{left:604.050000px;}
.x38_c00172{left:607.500000px;}
.x1a_c00172{left:608.550000px;}
.x51_c00172{left:610.950000px;}
.x5d_c00172{left:613.350000px;}
.xbe_c00172{left:615.300000px;}
.xb8_c00172{left:619.200000px;}
.x28_c00172{left:620.250000px;}
.xab_c00172{left:621.450000px;}
.x9d_c00172{left:623.100000px;}
.xd_c00172{left:625.500000px;}
.x1b_c00172{left:628.350000px;}
.xc6_c00172{left:629.400000px;}
.xd9_c00172{left:632.700000px;}
.xe5_c00172{left:635.250000px;}
.x89_c00172{left:636.600000px;}
.x10c_c00172{left:638.250000px;}
.xcf_c00172{left:640.350000px;}
.xec_c00172{left:643.200000px;}
.xac_c00172{left:645.150000px;}
.xc7_c00172{left:646.350000px;}
.x95_c00172{left:649.350000px;}
.x52_c00172{left:652.050000px;}
.x103_c00172{left:655.650000px;}
.x100_c00172{left:657.600000px;}
.x29_c00172{left:659.850000px;}
.x113_c00172{left:663.600000px;}
.x39_c00172{left:665.850000px;}
.xf5_c00172{left:670.200000px;}
.x45_c00172{left:671.850000px;}
.xad_c00172{left:673.200000px;}
.x53_c00172{left:674.700000px;}
.xb9_c00172{left:676.050000px;}
.xc8_c00172{left:678.450000px;}
.xe_c00172{left:680.550000px;}
.x6a_c00172{left:684.000000px;}
.x114_c00172{left:685.950000px;}
.x8a_c00172{left:687.000000px;}
.x1c_c00172{left:688.500000px;}
.x9e_c00172{left:690.450000px;}
.x46_c00172{left:691.950000px;}
.xd0_c00172{left:694.050000px;}
.x5e_c00172{left:695.850000px;}
.xfb_c00172{left:697.950000px;}
.x96_c00172{left:699.000000px;}
.x72_c00172{left:702.300000px;}
.x2a_c00172{left:703.800000px;}
.xae_c00172{left:705.300000px;}
.xc9_c00172{left:709.800000px;}
.xf_c00172{left:712.650000px;}
.x101_c00172{left:715.950000px;}
.xd1_c00172{left:717.150000px;}
.x9f_c00172{left:720.750000px;}
.x47_c00172{left:721.800000px;}
.x2b_c00172{left:723.900000px;}
.x97_c00172{left:726.300000px;}
.xe2_c00172{left:727.800000px;}
.xda_c00172{left:728.850000px;}
.x73_c00172{left:730.050000px;}
.x1d_c00172{left:732.000000px;}
.xf6_c00172{left:733.200000px;}
.xe6_c00172{left:735.000000px;}
.xaf_c00172{left:736.650000px;}
.x3a_c00172{left:741.150000px;}
.xba_c00172{left:744.450000px;}
.xd2_c00172{left:747.000000px;}
.x6b_c00172{left:748.050000px;}
.x2c_c00172{left:749.850000px;}
.xf7_c00172{left:751.500000px;}
.x98_c00172{left:753.600000px;}
.xa0_c00172{left:755.250000px;}
.xed_c00172{left:756.900000px;}
.x8b_c00172{left:761.100000px;}
.x107_c00172{left:762.300000px;}
.x54_c00172{left:765.000000px;}
.x115_c00172{left:771.300000px;}
.x1e_c00172{left:773.100000px;}
.xee_c00172{left:776.400000px;}
.xbf_c00172{left:778.800000px;}
.x55_c00172{left:781.950000px;}
.xa1_c00172{left:785.100000px;}
.x5f_c00172{left:786.150000px;}
.x48_c00172{left:787.350000px;}
.x3b_c00172{left:790.800000px;}
.xb0_c00172{left:793.500000px;}
.x1f_c00172{left:795.750000px;}
.x8c_c00172{left:797.100000px;}
.x74_c00172{left:798.750000px;}
.x10_c00172{left:800.850000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls0_c00172{letter-spacing:0.000000pt;}
.ws9_c00172{word-spacing:-8.197772pt;}
.wsa_c00172{word-spacing:-6.555556pt;}
.ws6_c00172{word-spacing:-6.035614pt;}
.ws7_c00172{word-spacing:-5.333333pt;}
.ws4_c00172{word-spacing:-4.877920pt;}
.ws8_c00172{word-spacing:-4.666667pt;}
.wsb_c00172{word-spacing:0.000000pt;}
.ws1_c00172{word-spacing:1.333333pt;}
.ws2_c00172{word-spacing:4.410256pt;}
.ws5_c00172{word-spacing:6.666667pt;}
.ws0_c00172{word-spacing:8.000000pt;}
.ws3_c00172{word-spacing:8.558618pt;}
.fs0_c00172{font-size:48.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y22_c00172{bottom:320.400000pt;}
.y21_c00172{bottom:334.133333pt;}
.y20_c00172{bottom:347.866667pt;}
.y1f_c00172{bottom:381.733333pt;}
.y1e_c00172{bottom:399.600000pt;}
.y1d_c00172{bottom:417.466667pt;}
.y1c_c00172{bottom:435.333333pt;}
.y1b_c00172{bottom:452.933333pt;}
.y1a_c00172{bottom:470.800000pt;}
.y19_c00172{bottom:488.666667pt;}
.y18_c00172{bottom:506.266667pt;}
.y17_c00172{bottom:524.133333pt;}
.y16_c00172{bottom:541.733333pt;}
.y15_c00172{bottom:559.733333pt;}
.y14_c00172{bottom:577.333333pt;}
.y13_c00172{bottom:594.933333pt;}
.y12_c00172{bottom:612.800000pt;}
.y11_c00172{bottom:630.666667pt;}
.y10_c00172{bottom:648.666667pt;}
.yf_c00172{bottom:666.000000pt;}
.ye_c00172{bottom:683.866667pt;}
.yd_c00172{bottom:701.466667pt;}
.yc_c00172{bottom:719.333333pt;}
.yb_c00172{bottom:737.200000pt;}
.ya_c00172{bottom:755.066667pt;}
.y9_c00172{bottom:772.666667pt;}
.y8_c00172{bottom:790.533333pt;}
.y7_c00172{bottom:808.133333pt;}
.y6_c00172{bottom:826.000000pt;}
.y5_c00172{bottom:843.600000pt;}
.y4_c00172{bottom:861.466667pt;}
.y3_c00172{bottom:879.333333pt;}
.y2_c00172{bottom:896.933333pt;}
.y1_c00172{bottom:931.466667pt;}
.h2_c00172{height:48.000000pt;}
.h1_c00172{height:1038.000000pt;}
.h0_c00172{height:1038.079997pt;}
.w1_c00172{width:818.000000pt;}
.w0_c00172{width:818.239991pt;}
.x0_c00172{left:0.000000pt;}
.x11a_c00172{left:124.666667pt;}
.xe3_c00172{left:125.733333pt;}
.x8d_c00172{left:127.066667pt;}
.x4_c00172{left:128.000000pt;}
.x1_c00172{left:129.333333pt;}
.x2_c00172{left:136.400000pt;}
.x10d_c00172{left:142.133333pt;}
.xdb_c00172{left:144.133333pt;}
.x60_c00172{left:145.866667pt;}
.xc0_c00172{left:148.266667pt;}
.xd3_c00172{left:150.400000pt;}
.xb1_c00172{left:151.733333pt;}
.xca_c00172{left:153.866667pt;}
.x80_c00172{left:154.933333pt;}
.x11_c00172{left:158.533333pt;}
.xa2_c00172{left:159.733333pt;}
.xef_c00172{left:160.933333pt;}
.xf8_c00172{left:163.600000pt;}
.x61_c00172{left:166.400000pt;}
.x3c_c00172{left:167.333333pt;}
.x102_c00172{left:170.133333pt;}
.x75_c00172{left:172.400000pt;}
.x20_c00172{left:174.266667pt;}
.xf0_c00172{left:177.200000pt;}
.x2d_c00172{left:180.533333pt;}
.x62_c00172{left:183.066667pt;}
.xe7_c00172{left:184.533333pt;}
.x12_c00172{left:186.400000pt;}
.x8e_c00172{left:188.800000pt;}
.xc1_c00172{left:191.466667pt;}
.x56_c00172{left:193.333333pt;}
.xa3_c00172{left:194.666667pt;}
.x76_c00172{left:196.400000pt;}
.xd4_c00172{left:199.600000pt;}
.x11b_c00172{left:201.200000pt;}
.x5_c00172{left:202.933333pt;}
.x3d_c00172{left:203.866667pt;}
.x116_c00172{left:205.866667pt;}
.xfc_c00172{left:209.200000pt;}
.x2e_c00172{left:210.666667pt;}
.x21_c00172{left:212.000000pt;}
.x99_c00172{left:215.466667pt;}
.xc2_c00172{left:218.933333pt;}
.xa4_c00172{left:220.933333pt;}
.x8f_c00172{left:224.266667pt;}
.xdc_c00172{left:225.733333pt;}
.x49_c00172{left:226.666667pt;}
.xf9_c00172{left:228.533333pt;}
.x22_c00172{left:230.266667pt;}
.x63_c00172{left:232.000000pt;}
.x13_c00172{left:233.466667pt;}
.x57_c00172{left:234.666667pt;}
.x2f_c00172{left:241.733333pt;}
.xbb_c00172{left:243.600000pt;}
.x4a_c00172{left:245.200000pt;}
.x3e_c00172{left:246.133333pt;}
.xf1_c00172{left:247.333333pt;}
.x77_c00172{left:248.933333pt;}
.xb2_c00172{left:251.866667pt;}
.x81_c00172{left:253.466667pt;}
.xa5_c00172{left:255.866667pt;}
.x64_c00172{left:257.866667pt;}
.x90_c00172{left:260.133333pt;}
.x6c_c00172{left:261.333333pt;}
.x10e_c00172{left:262.800000pt;}
.x14_c00172{left:264.133333pt;}
.x78_c00172{left:265.600000pt;}
.x6_c00172{left:268.266667pt;}
.x3f_c00172{left:270.800000pt;}
.xfd_c00172{left:272.533333pt;}
.xa6_c00172{left:274.133333pt;}
.xe8_c00172{left:275.066667pt;}
.xb3_c00172{left:276.533333pt;}
.x30_c00172{left:277.866667pt;}
.x82_c00172{left:279.733333pt;}
.x9a_c00172{left:282.133333pt;}
.x79_c00172{left:284.533333pt;}
.x11c_c00172{left:286.000000pt;}
.x7_c00172{left:289.333333pt;}
.x4b_c00172{left:290.266667pt;}
.xfe_c00172{left:294.933333pt;}
.x23_c00172{left:296.133333pt;}
.x31_c00172{left:297.333333pt;}
.x6d_c00172{left:299.066667pt;}
.x15_c00172{left:302.533333pt;}
.x11d_c00172{left:303.600000pt;}
.xdd_c00172{left:305.333333pt;}
.x7a_c00172{left:307.200000pt;}
.x58_c00172{left:309.333333pt;}
.x8_c00172{left:313.333333pt;}
.x6e_c00172{left:314.800000pt;}
.x10f_c00172{left:318.533333pt;}
.x16_c00172{left:320.800000pt;}
.xd5_c00172{left:325.466667pt;}
.x4c_c00172{left:328.000000pt;}
.xcb_c00172{left:330.933333pt;}
.x9_c00172{left:333.466667pt;}
.x59_c00172{left:335.600000pt;}
.xde_c00172{left:336.800000pt;}
.x6f_c00172{left:337.866667pt;}
.xb4_c00172{left:340.533333pt;}
.x7b_c00172{left:343.333333pt;}
.x32_c00172{left:346.666667pt;}
.x40_c00172{left:348.266667pt;}
.x17_c00172{left:349.333333pt;}
.xa7_c00172{left:350.266667pt;}
.x83_c00172{left:351.333333pt;}
.x5a_c00172{left:352.533333pt;}
.x65_c00172{left:353.600000pt;}
.xe9_c00172{left:355.066667pt;}
.x117_c00172{left:356.133333pt;}
.xb5_c00172{left:358.800000pt;}
.x91_c00172{left:360.933333pt;}
.xf2_c00172{left:362.533333pt;}
.x4d_c00172{left:364.133333pt;}
.x7c_c00172{left:365.466667pt;}
.x24_c00172{left:366.533333pt;}
.x108_c00172{left:367.600000pt;}
.x84_c00172{left:369.600000pt;}
.x11e_c00172{left:373.600000pt;}
.x41_c00172{left:374.533333pt;}
.x118_c00172{left:376.266667pt;}
.x33_c00172{left:378.400000pt;}
.x66_c00172{left:379.466667pt;}
.x7d_c00172{left:381.200000pt;}
.x110_c00172{left:383.200000pt;}
.xa_c00172{left:384.400000pt;}
.xe4_c00172{left:386.400000pt;}
.xcc_c00172{left:389.466667pt;}
.xc3_c00172{left:390.800000pt;}
.x3_c00172{left:392.133333pt;}
.x5b_c00172{left:394.800000pt;}
.xdf_c00172{left:395.733333pt;}
.x85_c00172{left:397.466667pt;}
.x70_c00172{left:398.400000pt;}
.x34_c00172{left:400.133333pt;}
.xf3_c00172{left:401.200000pt;}
.xff_c00172{left:404.400000pt;}
.x109_c00172{left:406.933333pt;}
.xb_c00172{left:409.733333pt;}
.x25_c00172{left:411.066667pt;}
.xa8_c00172{left:412.666667pt;}
.xea_c00172{left:413.600000pt;}
.x7e_c00172{left:417.066667pt;}
.x92_c00172{left:419.466667pt;}
.x42_c00172{left:421.600000pt;}
.xb6_c00172{left:422.800000pt;}
.xd6_c00172{left:427.200000pt;}
.x4e_c00172{left:429.466667pt;}
.xcd_c00172{left:432.400000pt;}
.x86_c00172{left:435.600000pt;}
.x9b_c00172{left:438.666667pt;}
.x67_c00172{left:439.600000pt;}
.x119_c00172{left:441.466667pt;}
.x111_c00172{left:444.000000pt;}
.x35_c00172{left:444.933333pt;}
.x71_c00172{left:446.666667pt;}
.xeb_c00172{left:449.466667pt;}
.xc4_c00172{left:450.933333pt;}
.x87_c00172{left:453.200000pt;}
.x104_c00172{left:454.133333pt;}
.x4f_c00172{left:455.066667pt;}
.x26_c00172{left:460.400000pt;}
.xe0_c00172{left:462.000000pt;}
.x36_c00172{left:465.466667pt;}
.x68_c00172{left:468.133333pt;}
.xbc_c00172{left:469.200000pt;}
.x43_c00172{left:470.800000pt;}
.xd7_c00172{left:472.000000pt;}
.xa9_c00172{left:473.733333pt;}
.x18_c00172{left:476.000000pt;}
.xc5_c00172{left:477.200000pt;}
.x7f_c00172{left:481.733333pt;}
.x50_c00172{left:482.933333pt;}
.x10a_c00172{left:486.666667pt;}
.x93_c00172{left:488.666667pt;}
.xaa_c00172{left:490.000000pt;}
.xd8_c00172{left:494.133333pt;}
.xc_c00172{left:495.466667pt;}
.x19_c00172{left:497.066667pt;}
.xce_c00172{left:499.066667pt;}
.x88_c00172{left:500.933333pt;}
.xe1_c00172{left:503.333333pt;}
.x10b_c00172{left:504.933333pt;}
.x5c_c00172{left:505.866667pt;}
.xbd_c00172{left:507.600000pt;}
.x105_c00172{left:509.466667pt;}
.x9c_c00172{left:512.933333pt;}
.x69_c00172{left:513.866667pt;}
.x27_c00172{left:518.000000pt;}
.xf4_c00172{left:522.133333pt;}
.x37_c00172{left:526.266667pt;}
.x106_c00172{left:528.000000pt;}
.xb7_c00172{left:529.600000pt;}
.x112_c00172{left:531.333333pt;}
.xfa_c00172{left:533.333333pt;}
.x44_c00172{left:535.733333pt;}
.x94_c00172{left:536.933333pt;}
.x38_c00172{left:540.000000pt;}
.x1a_c00172{left:540.933333pt;}
.x51_c00172{left:543.066667pt;}
.x5d_c00172{left:545.200000pt;}
.xbe_c00172{left:546.933333pt;}
.xb8_c00172{left:550.400000pt;}
.x28_c00172{left:551.333333pt;}
.xab_c00172{left:552.400000pt;}
.x9d_c00172{left:553.866667pt;}
.xd_c00172{left:556.000000pt;}
.x1b_c00172{left:558.533333pt;}
.xc6_c00172{left:559.466667pt;}
.xd9_c00172{left:562.400000pt;}
.xe5_c00172{left:564.666667pt;}
.x89_c00172{left:565.866667pt;}
.x10c_c00172{left:567.333333pt;}
.xcf_c00172{left:569.200000pt;}
.xec_c00172{left:571.733333pt;}
.xac_c00172{left:573.466667pt;}
.xc7_c00172{left:574.533333pt;}
.x95_c00172{left:577.200000pt;}
.x52_c00172{left:579.600000pt;}
.x103_c00172{left:582.800000pt;}
.x100_c00172{left:584.533333pt;}
.x29_c00172{left:586.533333pt;}
.x113_c00172{left:589.866667pt;}
.x39_c00172{left:591.866667pt;}
.xf5_c00172{left:595.733333pt;}
.x45_c00172{left:597.200000pt;}
.xad_c00172{left:598.400000pt;}
.x53_c00172{left:599.733333pt;}
.xb9_c00172{left:600.933333pt;}
.xc8_c00172{left:603.066667pt;}
.xe_c00172{left:604.933333pt;}
.x6a_c00172{left:608.000000pt;}
.x114_c00172{left:609.733333pt;}
.x8a_c00172{left:610.666667pt;}
.x1c_c00172{left:612.000000pt;}
.x9e_c00172{left:613.733333pt;}
.x46_c00172{left:615.066667pt;}
.xd0_c00172{left:616.933333pt;}
.x5e_c00172{left:618.533333pt;}
.xfb_c00172{left:620.400000pt;}
.x96_c00172{left:621.333333pt;}
.x72_c00172{left:624.266667pt;}
.x2a_c00172{left:625.600000pt;}
.xae_c00172{left:626.933333pt;}
.xc9_c00172{left:630.933333pt;}
.xf_c00172{left:633.466667pt;}
.x101_c00172{left:636.400000pt;}
.xd1_c00172{left:637.466667pt;}
.x9f_c00172{left:640.666667pt;}
.x47_c00172{left:641.600000pt;}
.x2b_c00172{left:643.466667pt;}
.x97_c00172{left:645.600000pt;}
.xe2_c00172{left:646.933333pt;}
.xda_c00172{left:647.866667pt;}
.x73_c00172{left:648.933333pt;}
.x1d_c00172{left:650.666667pt;}
.xf6_c00172{left:651.733333pt;}
.xe6_c00172{left:653.333333pt;}
.xaf_c00172{left:654.800000pt;}
.x3a_c00172{left:658.800000pt;}
.xba_c00172{left:661.733333pt;}
.xd2_c00172{left:664.000000pt;}
.x6b_c00172{left:664.933333pt;}
.x2c_c00172{left:666.533333pt;}
.xf7_c00172{left:668.000000pt;}
.x98_c00172{left:669.866667pt;}
.xa0_c00172{left:671.333333pt;}
.xed_c00172{left:672.800000pt;}
.x8b_c00172{left:676.533333pt;}
.x107_c00172{left:677.600000pt;}
.x54_c00172{left:680.000000pt;}
.x115_c00172{left:685.600000pt;}
.x1e_c00172{left:687.200000pt;}
.xee_c00172{left:690.133333pt;}
.xbf_c00172{left:692.266667pt;}
.x55_c00172{left:695.066667pt;}
.xa1_c00172{left:697.866667pt;}
.x5f_c00172{left:698.800000pt;}
.x48_c00172{left:699.866667pt;}
.x3b_c00172{left:702.933333pt;}
.xb0_c00172{left:705.333333pt;}
.x1f_c00172{left:707.333333pt;}
.x8c_c00172{left:708.533333pt;}
.x74_c00172{left:710.000000pt;}
.x10_c00172{left:711.866667pt;}
}





/* 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_c00173 {
    display:none;
  }
  .loading-indicator_c00173.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00173 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_c00173 { 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_c00173" -> "#page-container .classname_c00173")
 */
.pf_c00173 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00173 { /* 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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00173 { /* 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_c00173 { /* 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_c00173 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00173 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00173 {overflow:visible;}
  }
}
.c_c00173 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00173 { /* 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_c00173:after { /* webkit #35443 */
  content: '';
}
.t_c00173:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00173 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 */
}
.__c00173 { /* 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_c00173 { /* info for Javascript */
  display:none;
}
.l_c00173 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00173 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00173 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00173: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_c00173 {
    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_c00173.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00173.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_c00173 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00173{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00173;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.000000;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;}
.m5_c00173{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{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);}
.mb_c00173{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00173{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00173{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.v0_c00173{vertical-align:0.000000px;}
.ls0_c00173{letter-spacing:0.000000px;}
.sc__c00173{text-shadow:none;}
.sc0_c00173{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__c00173{-webkit-text-stroke:0px transparent;}
.sc0_c00173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00173{word-spacing:0.000000px;}
.ws1_c00173{word-spacing:9.833333px;}
.ws0_c00173{word-spacing:11.343750px;}
.fc0_c00173{color:transparent;}
.fs1_c00173{font-size:36.000000px;}
.fs0_c00173{font-size:48.000000px;}
.y0_c00173{bottom:0.000000px;}
.y3_c00173{bottom:669.600000px;}
.y2_c00173{bottom:691.500000px;}
.y1_c00173{bottom:711.750000px;}
.h3_c00173{height:36.000000px;}
.h2_c00173{height:48.000000px;}
.h1_c00173{height:1167.750000px;}
.h0_c00173{height:1167.839997px;}
.w1_c00173{width:920.250000px;}
.w0_c00173{width:920.519990px;}
.x0_c00173{left:0.000000px;}
.x5_c00173{left:119.550000px;}
.x6_c00173{left:134.250000px;}
.xc_c00173{left:137.850000px;}
.x7_c00173{left:144.000000px;}
.x1_c00173{left:148.350000px;}
.x2_c00173{left:160.200000px;}
.xd_c00173{left:162.300000px;}
.x3_c00173{left:173.100000px;}
.x8_c00173{left:174.600000px;}
.xe_c00173{left:181.050000px;}
.x4_c00173{left:192.600000px;}
.x9_c00173{left:208.050000px;}
.xa_c00173{left:219.900000px;}
.xb_c00173{left:234.000000px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls0_c00173{letter-spacing:0.000000pt;}
.ws2_c00173{word-spacing:0.000000pt;}
.ws1_c00173{word-spacing:8.740741pt;}
.ws0_c00173{word-spacing:10.083333pt;}
.fs1_c00173{font-size:32.000000pt;}
.fs0_c00173{font-size:42.666667pt;}
.y0_c00173{bottom:0.000000pt;}
.y3_c00173{bottom:595.200000pt;}
.y2_c00173{bottom:614.666667pt;}
.y1_c00173{bottom:632.666667pt;}
.h3_c00173{height:32.000000pt;}
.h2_c00173{height:42.666667pt;}
.h1_c00173{height:1038.000000pt;}
.h0_c00173{height:1038.079997pt;}
.w1_c00173{width:818.000000pt;}
.w0_c00173{width:818.239991pt;}
.x0_c00173{left:0.000000pt;}
.x5_c00173{left:106.266667pt;}
.x6_c00173{left:119.333333pt;}
.xc_c00173{left:122.533333pt;}
.x7_c00173{left:128.000000pt;}
.x1_c00173{left:131.866667pt;}
.x2_c00173{left:142.400000pt;}
.xd_c00173{left:144.266667pt;}
.x3_c00173{left:153.866667pt;}
.x8_c00173{left:155.200000pt;}
.xe_c00173{left:160.933333pt;}
.x4_c00173{left:171.200000pt;}
.x9_c00173{left:184.933333pt;}
.xa_c00173{left:195.466667pt;}
.xb_c00173{left:208.000000pt;}
}





/* 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_c00174 {
    display:none;
  }
  .loading-indicator_c00174.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00174 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_c00174 { 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_c00174" -> "#page-container .classname_c00174")
 */
.pf_c00174 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00174 { /* 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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00174 { /* 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_c00174 { /* 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_c00174 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00174 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00174 {overflow:visible;}
  }
}
.c_c00174 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00174 { /* 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_c00174:after { /* webkit #35443 */
  content: '';
}
.t_c00174:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00174 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 */
}
.__c00174 { /* 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_c00174 { /* info for Javascript */
  display:none;
}
.l_c00174 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00174 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00174 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00174: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_c00174 {
    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_c00174.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00174.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_c00174 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00174{font-family:sans-serif;visibility:hidden;}
.sc__c00174{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
}
.y0_c00174{bottom:0.000000px;}
.h1_c00174{height:1167.750000px;}
.h0_c00174{height:1167.839997px;}
.w1_c00174{width:920.250000px;}
.w0_c00174{width:920.519990px;}
.x0_c00174{left:0.000000px;}
@media print{
.y0_c00174{bottom:0.000000pt;}
.h1_c00174{height:1038.000000pt;}
.h0_c00174{height:1038.079997pt;}
.w1_c00174{width:818.000000pt;}
.w0_c00174{width:818.239991pt;}
.x0_c00174{left:0.000000pt;}
}





/* 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_c00175 {
    display:none;
  }
  .loading-indicator_c00175.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00175 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_c00175 { 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_c00175" -> "#page-container .classname_c00175")
 */
.pf_c00175 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00175 { /* 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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00175 { /* 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_c00175 { /* 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_c00175 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00175 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00175 {overflow:visible;}
  }
}
.c_c00175 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00175 { /* 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_c00175:after { /* webkit #35443 */
  content: '';
}
.t_c00175:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00175 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 */
}
.__c00175 { /* 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_c00175 { /* info for Javascript */
  display:none;
}
.l_c00175 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00175 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00175 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00175: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_c00175 {
    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_c00175.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00175.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_c00175 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00175{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00175;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.000000;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;}
.m4b_c00175{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m63_c00175{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00175{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m64_c00175{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00175{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m96_c00175{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00175{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m33_c00175{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00175{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m38_c00175{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m75_c00175{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m93_c00175{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m11_c00175{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00175{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m89_c00175{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00175{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc_c00175{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m35_c00175{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00175{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m83_c00175{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m77_c00175{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00175{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m40_c00175{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00175{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m57_c00175{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m74_c00175{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m55_c00175{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00175{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00175{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m45_c00175{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00175{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00175{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m18_c00175{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00175{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m22_c00175{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00175{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m88_c00175{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m72_c00175{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00175{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m49_c00175{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00175{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00175{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m56_c00175{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m87_c00175{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m41_c00175{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00175{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00175{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00175{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00175{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m21_c00175{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00175{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m42_c00175{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m84_c00175{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m78_c00175{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00175{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00175{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m67_c00175{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m13_c00175{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00175{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00175{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m95_c00175{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00175{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00175{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);}
.mb_c00175{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00175{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m66_c00175{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00175{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00175{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m86_c00175{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00175{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00175{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m85_c00175{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00175{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m81_c00175{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m26_c00175{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m76_c00175{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m73_c00175{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00175{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m92_c00175{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00175{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m54_c00175{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m5_c00175{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m70_c00175{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.m3_c00175{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00175{vertical-align:0.000000px;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{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__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00175{word-spacing:-2.812500px;}
.ws7_c00175{word-spacing:0.000000px;}
.ws2_c00175{word-spacing:4.861111px;}
.ws5_c00175{word-spacing:5.277778px;}
.ws6_c00175{word-spacing:12.205882px;}
.ws0_c00175{word-spacing:14.629630px;}
.ws1_c00175{word-spacing:24.393939px;}
.ws3_c00175{word-spacing:27.592593px;}
._0_c00175{width:44.722222px;}
.fc0_c00175{color:transparent;}
.fs1_c00175{font-size:42.000000px;}
.fs0_c00175{font-size:60.000000px;}
.y0_c00175{bottom:0.000000px;}
.y24_c00175{bottom:153.750000px;}
.y23_c00175{bottom:173.550000px;}
.y22_c00175{bottom:193.350000px;}
.y21_c00175{bottom:213.600000px;}
.y20_c00175{bottom:233.400000px;}
.y1f_c00175{bottom:253.200000px;}
.y1e_c00175{bottom:273.300000px;}
.y1d_c00175{bottom:293.100000px;}
.y1c_c00175{bottom:313.200000px;}
.y1b_c00175{bottom:333.300000px;}
.y1a_c00175{bottom:353.100000px;}
.y19_c00175{bottom:372.900000px;}
.y18_c00175{bottom:392.700000px;}
.y17_c00175{bottom:412.800000px;}
.y16_c00175{bottom:432.600000px;}
.y15_c00175{bottom:452.700000px;}
.y14_c00175{bottom:473.250000px;}
.y13_c00175{bottom:493.350000px;}
.y12_c00175{bottom:513.150000px;}
.y11_c00175{bottom:532.650000px;}
.y10_c00175{bottom:552.450000px;}
.yf_c00175{bottom:572.550000px;}
.ye_c00175{bottom:592.350000px;}
.yd_c00175{bottom:612.450000px;}
.yc_c00175{bottom:632.250000px;}
.yb_c00175{bottom:652.050000px;}
.ya_c00175{bottom:671.850000px;}
.y9_c00175{bottom:691.950000px;}
.y8_c00175{bottom:711.750000px;}
.y7_c00175{bottom:731.850000px;}
.y6_c00175{bottom:751.650000px;}
.y5_c00175{bottom:771.750000px;}
.y4_c00175{bottom:791.250000px;}
.y3_c00175{bottom:824.100000px;}
.y2_c00175{bottom:856.800000px;}
.y1_c00175{bottom:1049.400000px;}
.h3_c00175{height:42.000000px;}
.h2_c00175{height:60.000000px;}
.h1_c00175{height:1167.750000px;}
.h0_c00175{height:1167.839997px;}
.w1_c00175{width:920.250000px;}
.w0_c00175{width:920.519990px;}
.x0_c00175{left:0.000000px;}
.x109_c00175{left:94.650000px;}
.xed_c00175{left:96.300000px;}
.xd1_c00175{left:97.350000px;}
.xa6_c00175{left:98.550000px;}
.x7c_c00175{left:99.900000px;}
.x16_c00175{left:101.100000px;}
.x9_c00175{left:102.300000px;}
.xd2_c00175{left:114.600000px;}
.xca_c00175{left:116.100000px;}
.x88_c00175{left:120.000000px;}
.x120_c00175{left:124.950000px;}
.x103_c00175{left:126.000000px;}
.x3f_c00175{left:129.000000px;}
.x33_c00175{left:136.200000px;}
.xfc_c00175{left:138.000000px;}
.xd3_c00175{left:140.550000px;}
.x24_c00175{left:141.600000px;}
.xa7_c00175{left:143.250000px;}
.xeb_c00175{left:144.450000px;}
.xc0_c00175{left:147.600000px;}
.x17_c00175{left:150.450000px;}
.xa8_c00175{left:154.800000px;}
.x9e_c00175{left:156.750000px;}
.xb7_c00175{left:158.850000px;}
.x6f_c00175{left:161.100000px;}
.x25_c00175{left:163.950000px;}
.xcb_c00175{left:167.550000px;}
.x111_c00175{left:169.950000px;}
.x61_c00175{left:172.950000px;}
.xa_c00175{left:175.050000px;}
.xdc_c00175{left:178.500000px;}
.x55_c00175{left:180.600000px;}
.xd4_c00175{left:181.650000px;}
.x7d_c00175{left:183.150000px;}
.xa9_c00175{left:188.250000px;}
.x18_c00175{left:189.300000px;}
.x70_c00175{left:191.400000px;}
.xf4_c00175{left:198.150000px;}
.x40_c00175{left:200.400000px;}
.x4b_c00175{left:201.600000px;}
.xfd_c00175{left:202.800000px;}
.x71_c00175{left:204.000000px;}
.x56_c00175{left:205.050000px;}
.xc1_c00175{left:207.450000px;}
.x62_c00175{left:209.700000px;}
.xaa_c00175{left:211.650000px;}
.x19_c00175{left:215.550000px;}
.xd5_c00175{left:216.600000px;}
.x112_c00175{left:217.800000px;}
.x89_c00175{left:220.500000px;}
.x26_c00175{left:221.850000px;}
.x34_c00175{left:223.050000px;}
.xb_c00175{left:226.200000px;}
.xcc_c00175{left:227.700000px;}
.xf5_c00175{left:229.500000px;}
.x57_c00175{left:231.000000px;}
.x72_c00175{left:234.900000px;}
.x63_c00175{left:237.000000px;}
.x8a_c00175{left:238.200000px;}
.x41_c00175{left:240.300000px;}
.x35_c00175{left:242.850000px;}
.xc2_c00175{left:244.500000px;}
.xdd_c00175{left:246.900000px;}
.x4c_c00175{left:250.950000px;}
.xfe_c00175{left:253.200000px;}
.xe3_c00175{left:254.700000px;}
.x121_c00175{left:256.050000px;}
.x27_c00175{left:260.400000px;}
.xb8_c00175{left:264.600000px;}
.x1a_c00175{left:265.650000px;}
.x9f_c00175{left:266.850000px;}
.x8b_c00175{left:269.550000px;}
.x4d_c00175{left:271.500000px;}
.x42_c00175{left:273.450000px;}
.xab_c00175{left:275.400000px;}
.xc_c00175{left:280.950000px;}
.xf6_c00175{left:283.650000px;}
.xa0_c00175{left:286.350000px;}
.x28_c00175{left:290.250000px;}
.x116_c00175{left:291.300000px;}
.x10e_c00175{left:292.500000px;}
.xac_c00175{left:294.450000px;}
.x1b_c00175{left:295.500000px;}
.x7e_c00175{left:296.850000px;}
.xd_c00175{left:300.000000px;}
.xd6_c00175{left:301.800000px;}
.x8c_c00175{left:303.750000px;}
.xee_c00175{left:305.400000px;}
.x43_c00175{left:307.350000px;}
.xc3_c00175{left:312.150000px;}
.x4_c00175{left:313.200000px;}
.x10f_c00175{left:315.900000px;}
.x64_c00175{left:317.550000px;}
.x4e_c00175{left:319.050000px;}
.x94_c00175{left:321.450000px;}
.xf7_c00175{left:322.500000px;}
.x7f_c00175{left:324.900000px;}
.x113_c00175{left:326.850000px;}
.xb9_c00175{left:327.900000px;}
.x117_c00175{left:329.850000px;}
.x36_c00175{left:333.600000px;}
.x104_c00175{left:336.300000px;}
.x4f_c00175{left:339.900000px;}
.xef_c00175{left:344.250000px;}
.x29_c00175{left:346.050000px;}
.x5_c00175{left:347.700000px;}
.x122_c00175{left:350.700000px;}
.x65_c00175{left:352.500000px;}
.xc4_c00175{left:353.550000px;}
.x58_c00175{left:355.650000px;}
.x1c_c00175{left:357.450000px;}
.xf8_c00175{left:358.800000px;}
.x118_c00175{left:360.450000px;}
.xba_c00175{left:361.800000px;}
.x73_c00175{left:364.050000px;}
.x2_c00175{left:366.150000px;}
.xe_c00175{left:367.350000px;}
.x37_c00175{left:371.700000px;}
.xad_c00175{left:376.200000px;}
.x6_c00175{left:378.000000px;}
.xc5_c00175{left:379.050000px;}
.xd7_c00175{left:380.700000px;}
.x74_c00175{left:382.050000px;}
.x50_c00175{left:383.400000px;}
.x8d_c00175{left:387.300000px;}
.xff_c00175{left:390.000000px;}
.x80_c00175{left:391.800000px;}
.xbb_c00175{left:394.500000px;}
.x66_c00175{left:396.450000px;}
.x10a_c00175{left:398.550000px;}
.x1d_c00175{left:401.400000px;}
.x51_c00175{left:404.250000px;}
.xe4_c00175{left:405.900000px;}
.x95_c00175{left:407.550000px;}
.x59_c00175{left:408.900000px;}
.x81_c00175{left:411.600000px;}
.xde_c00175{left:412.650000px;}
.x67_c00175{left:415.500000px;}
.x10b_c00175{left:418.050000px;}
.x44_c00175{left:421.500000px;}
.x1_c00175{left:424.500000px;}
.x96_c00175{left:425.550000px;}
.xae_c00175{left:428.400000px;}
.x75_c00175{left:429.600000px;}
.x115_c00175{left:431.250000px;}
.xcd_c00175{left:433.350000px;}
.xa1_c00175{left:435.300000px;}
.xf0_c00175{left:439.350000px;}
.xf_c00175{left:440.400000px;}
.x82_c00175{left:446.100000px;}
.xdf_c00175{left:449.400000px;}
.x3_c00175{left:450.450000px;}
.x5a_c00175{left:451.800000px;}
.x68_c00175{left:453.600000px;}
.xaf_c00175{left:454.650000px;}
.x97_c00175{left:456.450000px;}
.x8e_c00175{left:457.950000px;}
.x2a_c00175{left:461.250000px;}
.xe5_c00175{left:462.450000px;}
.x100_c00175{left:464.400000px;}
.xbc_c00175{left:466.800000px;}
.x76_c00175{left:468.900000px;}
.x69_c00175{left:471.600000px;}
.xc6_c00175{left:475.200000px;}
.x52_c00175{left:477.000000px;}
.x7_c00175{left:479.850000px;}
.xce_c00175{left:480.900000px;}
.xe6_c00175{left:484.050000px;}
.x105_c00175{left:487.050000px;}
.xf9_c00175{left:489.600000px;}
.x10_c00175{left:491.100000px;}
.x1e_c00175{left:493.950000px;}
.x45_c00175{left:495.300000px;}
.x6a_c00175{left:497.100000px;}
.xa2_c00175{left:498.300000px;}
.xb0_c00175{left:499.950000px;}
.x98_c00175{left:504.750000px;}
.x8f_c00175{left:509.100000px;}
.x8_c00175{left:510.750000px;}
.x119_c00175{left:513.600000px;}
.x38_c00175{left:515.400000px;}
.x1f_c00175{left:516.600000px;}
.xc7_c00175{left:518.400000px;}
.xb1_c00175{left:520.050000px;}
.x5b_c00175{left:522.750000px;}
.x83_c00175{left:523.950000px;}
.xe0_c00175{left:526.500000px;}
.x99_c00175{left:527.850000px;}
.x123_c00175{left:528.900000px;}
.x46_c00175{left:532.050000px;}
.x101_c00175{left:533.400000px;}
.x11a_c00175{left:535.950000px;}
.x5c_c00175{left:541.500000px;}
.x2b_c00175{left:543.000000px;}
.x84_c00175{left:544.050000px;}
.x90_c00175{left:546.150000px;}
.xb2_c00175{left:548.100000px;}
.xbd_c00175{left:549.900000px;}
.x9a_c00175{left:550.950000px;}
.xe7_c00175{left:552.750000px;}
.x11_c00175{left:555.150000px;}
.xd8_c00175{left:557.100000px;}
.x2c_c00175{left:559.500000px;}
.x20_c00175{left:561.300000px;}
.x5d_c00175{left:563.850000px;}
.x85_c00175{left:565.950000px;}
.xcf_c00175{left:573.900000px;}
.xe8_c00175{left:575.400000px;}
.x2d_c00175{left:577.200000px;}
.x10c_c00175{left:579.750000px;}
.x12_c00175{left:582.150000px;}
.x39_c00175{left:583.800000px;}
.xb3_c00175{left:584.850000px;}
.xd9_c00175{left:587.700000px;}
.x47_c00175{left:589.950000px;}
.x77_c00175{left:591.000000px;}
.x2e_c00175{left:596.700000px;}
.xbe_c00175{left:599.250000px;}
.xa3_c00175{left:602.250000px;}
.x3a_c00175{left:603.900000px;}
.x21_c00175{left:607.800000px;}
.xd0_c00175{left:608.850000px;}
.x2f_c00175{left:610.350000px;}
.xe9_c00175{left:611.400000px;}
.x11e_c00175{left:612.600000px;}
.x5e_c00175{left:615.000000px;}
.x6b_c00175{left:617.400000px;}
.x91_c00175{left:619.200000px;}
.x110_c00175{left:621.450000px;}
.xc8_c00175{left:623.100000px;}
.xbf_c00175{left:624.750000px;}
.x11b_c00175{left:626.100000px;}
.x106_c00175{left:628.950000px;}
.x78_c00175{left:630.600000px;}
.xf1_c00175{left:633.750000px;}
.x3b_c00175{left:634.800000px;}
.x53_c00175{left:636.450000px;}
.x9b_c00175{left:638.850000px;}
.x11f_c00175{left:641.400000px;}
.x13_c00175{left:643.650000px;}
.xa4_c00175{left:645.000000px;}
.x107_c00175{left:646.950000px;}
.xe1_c00175{left:648.300000px;}
.x79_c00175{left:649.650000px;}
.x30_c00175{left:652.800000px;}
.x9c_c00175{left:658.350000px;}
.x48_c00175{left:660.900000px;}
.x22_c00175{left:663.300000px;}
.x6c_c00175{left:664.950000px;}
.x5f_c00175{left:667.950000px;}
.x3c_c00175{left:669.750000px;}
.xf2_c00175{left:671.550000px;}
.xb4_c00175{left:672.600000px;}
.x86_c00175{left:675.450000px;}
.x92_c00175{left:676.800000px;}
.xea_c00175{left:680.850000px;}
.x49_c00175{left:682.200000px;}
.x54_c00175{left:683.550000px;}
.xc9_c00175{left:687.150000px;}
.x7a_c00175{left:690.000000px;}
.x31_c00175{left:692.400000px;}
.x93_c00175{left:695.550000px;}
.x102_c00175{left:697.500000px;}
.x23_c00175{left:699.300000px;}
.x3d_c00175{left:701.850000px;}
.xfa_c00175{left:703.500000px;}
.x60_c00175{left:704.700000px;}
.x4a_c00175{left:706.650000px;}
.x9d_c00175{left:709.050000px;}
.x108_c00175{left:710.250000px;}
.xb5_c00175{left:712.950000px;}
.x14_c00175{left:719.250000px;}
.x11c_c00175{left:720.750000px;}
.xda_c00175{left:722.400000px;}
.xe2_c00175{left:723.900000px;}
.xa5_c00175{left:725.250000px;}
.x7b_c00175{left:726.300000px;}
.x6d_c00175{left:727.950000px;}
.x114_c00175{left:730.200000px;}
.x3e_c00175{left:732.750000px;}
.xb6_c00175{left:735.600000px;}
.xfb_c00175{left:737.400000px;}
.x87_c00175{left:738.450000px;}
.x32_c00175{left:739.500000px;}
.x11d_c00175{left:740.550000px;}
.x15_c00175{left:742.650000px;}
.xdb_c00175{left:743.700000px;}
.x6e_c00175{left:745.650000px;}
.x10d_c00175{left:746.850000px;}
.xf3_c00175{left:750.450000px;}
.xec_c00175{left:756.900000px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws4_c00175{word-spacing:-2.500000pt;}
.ws7_c00175{word-spacing:0.000000pt;}
.ws2_c00175{word-spacing:4.320988pt;}
.ws5_c00175{word-spacing:4.691358pt;}
.ws6_c00175{word-spacing:10.849673pt;}
.ws0_c00175{word-spacing:13.004115pt;}
.ws1_c00175{word-spacing:21.683502pt;}
.ws3_c00175{word-spacing:24.526749pt;}
._0_c00175{width:39.753086pt;}
.fs1_c00175{font-size:37.333333pt;}
.fs0_c00175{font-size:53.333333pt;}
.y0_c00175{bottom:0.000000pt;}
.y24_c00175{bottom:136.666667pt;}
.y23_c00175{bottom:154.266667pt;}
.y22_c00175{bottom:171.866667pt;}
.y21_c00175{bottom:189.866667pt;}
.y20_c00175{bottom:207.466667pt;}
.y1f_c00175{bottom:225.066667pt;}
.y1e_c00175{bottom:242.933333pt;}
.y1d_c00175{bottom:260.533333pt;}
.y1c_c00175{bottom:278.400000pt;}
.y1b_c00175{bottom:296.266667pt;}
.y1a_c00175{bottom:313.866667pt;}
.y19_c00175{bottom:331.466667pt;}
.y18_c00175{bottom:349.066667pt;}
.y17_c00175{bottom:366.933333pt;}
.y16_c00175{bottom:384.533333pt;}
.y15_c00175{bottom:402.400000pt;}
.y14_c00175{bottom:420.666667pt;}
.y13_c00175{bottom:438.533333pt;}
.y12_c00175{bottom:456.133333pt;}
.y11_c00175{bottom:473.466667pt;}
.y10_c00175{bottom:491.066667pt;}
.yf_c00175{bottom:508.933333pt;}
.ye_c00175{bottom:526.533333pt;}
.yd_c00175{bottom:544.400000pt;}
.yc_c00175{bottom:562.000000pt;}
.yb_c00175{bottom:579.600000pt;}
.ya_c00175{bottom:597.200000pt;}
.y9_c00175{bottom:615.066667pt;}
.y8_c00175{bottom:632.666667pt;}
.y7_c00175{bottom:650.533333pt;}
.y6_c00175{bottom:668.133333pt;}
.y5_c00175{bottom:686.000000pt;}
.y4_c00175{bottom:703.333333pt;}
.y3_c00175{bottom:732.533333pt;}
.y2_c00175{bottom:761.600000pt;}
.y1_c00175{bottom:932.800000pt;}
.h3_c00175{height:37.333333pt;}
.h2_c00175{height:53.333333pt;}
.h1_c00175{height:1038.000000pt;}
.h0_c00175{height:1038.079997pt;}
.w1_c00175{width:818.000000pt;}
.w0_c00175{width:818.239991pt;}
.x0_c00175{left:0.000000pt;}
.x109_c00175{left:84.133333pt;}
.xed_c00175{left:85.600000pt;}
.xd1_c00175{left:86.533333pt;}
.xa6_c00175{left:87.600000pt;}
.x7c_c00175{left:88.800000pt;}
.x16_c00175{left:89.866667pt;}
.x9_c00175{left:90.933333pt;}
.xd2_c00175{left:101.866667pt;}
.xca_c00175{left:103.200000pt;}
.x88_c00175{left:106.666667pt;}
.x120_c00175{left:111.066667pt;}
.x103_c00175{left:112.000000pt;}
.x3f_c00175{left:114.666667pt;}
.x33_c00175{left:121.066667pt;}
.xfc_c00175{left:122.666667pt;}
.xd3_c00175{left:124.933333pt;}
.x24_c00175{left:125.866667pt;}
.xa7_c00175{left:127.333333pt;}
.xeb_c00175{left:128.400000pt;}
.xc0_c00175{left:131.200000pt;}
.x17_c00175{left:133.733333pt;}
.xa8_c00175{left:137.600000pt;}
.x9e_c00175{left:139.333333pt;}
.xb7_c00175{left:141.200000pt;}
.x6f_c00175{left:143.200000pt;}
.x25_c00175{left:145.733333pt;}
.xcb_c00175{left:148.933333pt;}
.x111_c00175{left:151.066667pt;}
.x61_c00175{left:153.733333pt;}
.xa_c00175{left:155.600000pt;}
.xdc_c00175{left:158.666667pt;}
.x55_c00175{left:160.533333pt;}
.xd4_c00175{left:161.466667pt;}
.x7d_c00175{left:162.800000pt;}
.xa9_c00175{left:167.333333pt;}
.x18_c00175{left:168.266667pt;}
.x70_c00175{left:170.133333pt;}
.xf4_c00175{left:176.133333pt;}
.x40_c00175{left:178.133333pt;}
.x4b_c00175{left:179.200000pt;}
.xfd_c00175{left:180.266667pt;}
.x71_c00175{left:181.333333pt;}
.x56_c00175{left:182.266667pt;}
.xc1_c00175{left:184.400000pt;}
.x62_c00175{left:186.400000pt;}
.xaa_c00175{left:188.133333pt;}
.x19_c00175{left:191.600000pt;}
.xd5_c00175{left:192.533333pt;}
.x112_c00175{left:193.600000pt;}
.x89_c00175{left:196.000000pt;}
.x26_c00175{left:197.200000pt;}
.x34_c00175{left:198.266667pt;}
.xb_c00175{left:201.066667pt;}
.xcc_c00175{left:202.400000pt;}
.xf5_c00175{left:204.000000pt;}
.x57_c00175{left:205.333333pt;}
.x72_c00175{left:208.800000pt;}
.x63_c00175{left:210.666667pt;}
.x8a_c00175{left:211.733333pt;}
.x41_c00175{left:213.600000pt;}
.x35_c00175{left:215.866667pt;}
.xc2_c00175{left:217.333333pt;}
.xdd_c00175{left:219.466667pt;}
.x4c_c00175{left:223.066667pt;}
.xfe_c00175{left:225.066667pt;}
.xe3_c00175{left:226.400000pt;}
.x121_c00175{left:227.600000pt;}
.x27_c00175{left:231.466667pt;}
.xb8_c00175{left:235.200000pt;}
.x1a_c00175{left:236.133333pt;}
.x9f_c00175{left:237.200000pt;}
.x8b_c00175{left:239.600000pt;}
.x4d_c00175{left:241.333333pt;}
.x42_c00175{left:243.066667pt;}
.xab_c00175{left:244.800000pt;}
.xc_c00175{left:249.733333pt;}
.xf6_c00175{left:252.133333pt;}
.xa0_c00175{left:254.533333pt;}
.x28_c00175{left:258.000000pt;}
.x116_c00175{left:258.933333pt;}
.x10e_c00175{left:260.000000pt;}
.xac_c00175{left:261.733333pt;}
.x1b_c00175{left:262.666667pt;}
.x7e_c00175{left:263.866667pt;}
.xd_c00175{left:266.666667pt;}
.xd6_c00175{left:268.266667pt;}
.x8c_c00175{left:270.000000pt;}
.xee_c00175{left:271.466667pt;}
.x43_c00175{left:273.200000pt;}
.xc3_c00175{left:277.466667pt;}
.x4_c00175{left:278.400000pt;}
.x10f_c00175{left:280.800000pt;}
.x64_c00175{left:282.266667pt;}
.x4e_c00175{left:283.600000pt;}
.x94_c00175{left:285.733333pt;}
.xf7_c00175{left:286.666667pt;}
.x7f_c00175{left:288.800000pt;}
.x113_c00175{left:290.533333pt;}
.xb9_c00175{left:291.466667pt;}
.x117_c00175{left:293.200000pt;}
.x36_c00175{left:296.533333pt;}
.x104_c00175{left:298.933333pt;}
.x4f_c00175{left:302.133333pt;}
.xef_c00175{left:306.000000pt;}
.x29_c00175{left:307.600000pt;}
.x5_c00175{left:309.066667pt;}
.x122_c00175{left:311.733333pt;}
.x65_c00175{left:313.333333pt;}
.xc4_c00175{left:314.266667pt;}
.x58_c00175{left:316.133333pt;}
.x1c_c00175{left:317.733333pt;}
.xf8_c00175{left:318.933333pt;}
.x118_c00175{left:320.400000pt;}
.xba_c00175{left:321.600000pt;}
.x73_c00175{left:323.600000pt;}
.x2_c00175{left:325.466667pt;}
.xe_c00175{left:326.533333pt;}
.x37_c00175{left:330.400000pt;}
.xad_c00175{left:334.400000pt;}
.x6_c00175{left:336.000000pt;}
.xc5_c00175{left:336.933333pt;}
.xd7_c00175{left:338.400000pt;}
.x74_c00175{left:339.600000pt;}
.x50_c00175{left:340.800000pt;}
.x8d_c00175{left:344.266667pt;}
.xff_c00175{left:346.666667pt;}
.x80_c00175{left:348.266667pt;}
.xbb_c00175{left:350.666667pt;}
.x66_c00175{left:352.400000pt;}
.x10a_c00175{left:354.266667pt;}
.x1d_c00175{left:356.800000pt;}
.x51_c00175{left:359.333333pt;}
.xe4_c00175{left:360.800000pt;}
.x95_c00175{left:362.266667pt;}
.x59_c00175{left:363.466667pt;}
.x81_c00175{left:365.866667pt;}
.xde_c00175{left:366.800000pt;}
.x67_c00175{left:369.333333pt;}
.x10b_c00175{left:371.600000pt;}
.x44_c00175{left:374.666667pt;}
.x1_c00175{left:377.333333pt;}
.x96_c00175{left:378.266667pt;}
.xae_c00175{left:380.800000pt;}
.x75_c00175{left:381.866667pt;}
.x115_c00175{left:383.333333pt;}
.xcd_c00175{left:385.200000pt;}
.xa1_c00175{left:386.933333pt;}
.xf0_c00175{left:390.533333pt;}
.xf_c00175{left:391.466667pt;}
.x82_c00175{left:396.533333pt;}
.xdf_c00175{left:399.466667pt;}
.x3_c00175{left:400.400000pt;}
.x5a_c00175{left:401.600000pt;}
.x68_c00175{left:403.200000pt;}
.xaf_c00175{left:404.133333pt;}
.x97_c00175{left:405.733333pt;}
.x8e_c00175{left:407.066667pt;}
.x2a_c00175{left:410.000000pt;}
.xe5_c00175{left:411.066667pt;}
.x100_c00175{left:412.800000pt;}
.xbc_c00175{left:414.933333pt;}
.x76_c00175{left:416.800000pt;}
.x69_c00175{left:419.200000pt;}
.xc6_c00175{left:422.400000pt;}
.x52_c00175{left:424.000000pt;}
.x7_c00175{left:426.533333pt;}
.xce_c00175{left:427.466667pt;}
.xe6_c00175{left:430.266667pt;}
.x105_c00175{left:432.933333pt;}
.xf9_c00175{left:435.200000pt;}
.x10_c00175{left:436.533333pt;}
.x1e_c00175{left:439.066667pt;}
.x45_c00175{left:440.266667pt;}
.x6a_c00175{left:441.866667pt;}
.xa2_c00175{left:442.933333pt;}
.xb0_c00175{left:444.400000pt;}
.x98_c00175{left:448.666667pt;}
.x8f_c00175{left:452.533333pt;}
.x8_c00175{left:454.000000pt;}
.x119_c00175{left:456.533333pt;}
.x38_c00175{left:458.133333pt;}
.x1f_c00175{left:459.200000pt;}
.xc7_c00175{left:460.800000pt;}
.xb1_c00175{left:462.266667pt;}
.x5b_c00175{left:464.666667pt;}
.x83_c00175{left:465.733333pt;}
.xe0_c00175{left:468.000000pt;}
.x99_c00175{left:469.200000pt;}
.x123_c00175{left:470.133333pt;}
.x46_c00175{left:472.933333pt;}
.x101_c00175{left:474.133333pt;}
.x11a_c00175{left:476.400000pt;}
.x5c_c00175{left:481.333333pt;}
.x2b_c00175{left:482.666667pt;}
.x84_c00175{left:483.600000pt;}
.x90_c00175{left:485.466667pt;}
.xb2_c00175{left:487.200000pt;}
.xbd_c00175{left:488.800000pt;}
.x9a_c00175{left:489.733333pt;}
.xe7_c00175{left:491.333333pt;}
.x11_c00175{left:493.466667pt;}
.xd8_c00175{left:495.200000pt;}
.x2c_c00175{left:497.333333pt;}
.x20_c00175{left:498.933333pt;}
.x5d_c00175{left:501.200000pt;}
.x85_c00175{left:503.066667pt;}
.xcf_c00175{left:510.133333pt;}
.xe8_c00175{left:511.466667pt;}
.x2d_c00175{left:513.066667pt;}
.x10c_c00175{left:515.333333pt;}
.x12_c00175{left:517.466667pt;}
.x39_c00175{left:518.933333pt;}
.xb3_c00175{left:519.866667pt;}
.xd9_c00175{left:522.400000pt;}
.x47_c00175{left:524.400000pt;}
.x77_c00175{left:525.333333pt;}
.x2e_c00175{left:530.400000pt;}
.xbe_c00175{left:532.666667pt;}
.xa3_c00175{left:535.333333pt;}
.x3a_c00175{left:536.800000pt;}
.x21_c00175{left:540.266667pt;}
.xd0_c00175{left:541.200000pt;}
.x2f_c00175{left:542.533333pt;}
.xe9_c00175{left:543.466667pt;}
.x11e_c00175{left:544.533333pt;}
.x5e_c00175{left:546.666667pt;}
.x6b_c00175{left:548.800000pt;}
.x91_c00175{left:550.400000pt;}
.x110_c00175{left:552.400000pt;}
.xc8_c00175{left:553.866667pt;}
.xbf_c00175{left:555.333333pt;}
.x11b_c00175{left:556.533333pt;}
.x106_c00175{left:559.066667pt;}
.x78_c00175{left:560.533333pt;}
.xf1_c00175{left:563.333333pt;}
.x3b_c00175{left:564.266667pt;}
.x53_c00175{left:565.733333pt;}
.x9b_c00175{left:567.866667pt;}
.x11f_c00175{left:570.133333pt;}
.x13_c00175{left:572.133333pt;}
.xa4_c00175{left:573.333333pt;}
.x107_c00175{left:575.066667pt;}
.xe1_c00175{left:576.266667pt;}
.x79_c00175{left:577.466667pt;}
.x30_c00175{left:580.266667pt;}
.x9c_c00175{left:585.200000pt;}
.x48_c00175{left:587.466667pt;}
.x22_c00175{left:589.600000pt;}
.x6c_c00175{left:591.066667pt;}
.x5f_c00175{left:593.733333pt;}
.x3c_c00175{left:595.333333pt;}
.xf2_c00175{left:596.933333pt;}
.xb4_c00175{left:597.866667pt;}
.x86_c00175{left:600.400000pt;}
.x92_c00175{left:601.600000pt;}
.xea_c00175{left:605.200000pt;}
.x49_c00175{left:606.400000pt;}
.x54_c00175{left:607.600000pt;}
.xc9_c00175{left:610.800000pt;}
.x7a_c00175{left:613.333333pt;}
.x31_c00175{left:615.466667pt;}
.x93_c00175{left:618.266667pt;}
.x102_c00175{left:620.000000pt;}
.x23_c00175{left:621.600000pt;}
.x3d_c00175{left:623.866667pt;}
.xfa_c00175{left:625.333333pt;}
.x60_c00175{left:626.400000pt;}
.x4a_c00175{left:628.133333pt;}
.x9d_c00175{left:630.266667pt;}
.x108_c00175{left:631.333333pt;}
.xb5_c00175{left:633.733333pt;}
.x14_c00175{left:639.333333pt;}
.x11c_c00175{left:640.666667pt;}
.xda_c00175{left:642.133333pt;}
.xe2_c00175{left:643.466667pt;}
.xa5_c00175{left:644.666667pt;}
.x7b_c00175{left:645.600000pt;}
.x6d_c00175{left:647.066667pt;}
.x114_c00175{left:649.066667pt;}
.x3e_c00175{left:651.333333pt;}
.xb6_c00175{left:653.866667pt;}
.xfb_c00175{left:655.466667pt;}
.x87_c00175{left:656.400000pt;}
.x32_c00175{left:657.333333pt;}
.x11d_c00175{left:658.266667pt;}
.x15_c00175{left:660.133333pt;}
.xdb_c00175{left:661.066667pt;}
.x6e_c00175{left:662.800000pt;}
.x10d_c00175{left:663.866667pt;}
.xf3_c00175{left:667.066667pt;}
.xec_c00175{left:672.800000pt;}
}





/* 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_c00176 {
    display:none;
  }
  .loading-indicator_c00176.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00176 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_c00176 { 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_c00176" -> "#page-container .classname_c00176")
 */
.pf_c00176 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00176 { /* 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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00176 { /* 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_c00176 { /* 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_c00176 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00176 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00176 {overflow:visible;}
  }
}
.c_c00176 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00176 { /* 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_c00176:after { /* webkit #35443 */
  content: '';
}
.t_c00176:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00176 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 */
}
.__c00176 { /* 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_c00176 { /* info for Javascript */
  display:none;
}
.l_c00176 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00176 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00176 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00176: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_c00176 {
    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_c00176.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00176.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_c00176 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00176{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00176;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.000000;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;}
.m59_c00176{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m68_c00176{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m66_c00176{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m82_c00176{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00176{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00176{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m79_c00176{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00176{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00176{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m29_c00176{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mba_c00176{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00176{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m74_c00176{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00176{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mac_c00176{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00176{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00176{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m60_c00176{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00176{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m65_c00176{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00176{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00176{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00176{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00176{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00176{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m14_c00176{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m30_c00176{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00176{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00176{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00176{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00176{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00176{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m93_c00176{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m89_c00176{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00176{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00176{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00176{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m92_c00176{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m19_c00176{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00176{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00176{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m69_c00176{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00176{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m56_c00176{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00176{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m37_c00176{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00176{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m78_c00176{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00176{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00176{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00176{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00176{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2_c00176{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m17_c00176{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00176{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m86_c00176{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m76_c00176{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m41_c00176{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5_c00176{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb_c00176{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mad_c00176{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00176{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00176{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6_c00176{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00176{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m49_c00176{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m44_c00176{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m12_c00176{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{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);}
.m21_c00176{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m35_c00176{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00176{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m83_c00176{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00176{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m63_c00176{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00176{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00176{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00176{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mae_c00176{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m15_c00176{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m96_c00176{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m77_c00176{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00176{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00176{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m71_c00176{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m87_c00176{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00176{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m67_c00176{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m25_c00176{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00176{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.md_c00176{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00176{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m70_c00176{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m57_c00176{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m81_c00176{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m94_c00176{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m26_c00176{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf_c00176{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.maa_c00176{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m98_c00176{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00176{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00176{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00176{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00176{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.mab_c00176{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m27_c00176{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m36_c00176{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00176{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00176{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00176{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00176{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00176{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m31_c00176{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m33_c00176{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m91_c00176{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m51_c00176{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m52_c00176{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m95_c00176{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m99_c00176{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m24_c00176{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00176{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m97_c00176{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00176{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m75_c00176{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00176{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00176{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.maf_c00176{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m88_c00176{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m32_c00176{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m85_c00176{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00176{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00176{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00176{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m80_c00176{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m45_c00176{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m73_c00176{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls0_c00176{letter-spacing:0.000000px;}
.sc__c00176{text-shadow:none;}
.sc0_c00176{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__c00176{-webkit-text-stroke:0px transparent;}
.sc0_c00176{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00176{word-spacing:-5.555556px;}
.ws9_c00176{word-spacing:-3.705521px;}
.ws8_c00176{word-spacing:-0.857143px;}
.wsb_c00176{word-spacing:0.000000px;}
.ws4_c00176{word-spacing:0.250000px;}
.ws7_c00176{word-spacing:1.500000px;}
.ws1_c00176{word-spacing:3.166667px;}
.ws5_c00176{word-spacing:7.888644px;}
.ws6_c00176{word-spacing:8.750000px;}
.ws3_c00176{word-spacing:9.578831px;}
.wsa_c00176{word-spacing:10.625000px;}
.ws2_c00176{word-spacing:17.181818px;}
._0_c00176{width:34.500000px;}
.fc0_c00176{color:transparent;}
.fs0_c00176{font-size:54.000000px;}
.y0_c00176{bottom:0.000000px;}
.y2b_c00176{bottom:156.300000px;}
.y2a_c00176{bottom:171.750000px;}
.y29_c00176{bottom:187.200000px;}
.y28_c00176{bottom:227.850000px;}
.y27_c00176{bottom:247.650000px;}
.y26_c00176{bottom:267.900000px;}
.y25_c00176{bottom:287.400000px;}
.y24_c00176{bottom:307.500000px;}
.y23_c00176{bottom:327.300000px;}
.y22_c00176{bottom:347.550000px;}
.y21_c00176{bottom:367.650000px;}
.y20_c00176{bottom:387.450000px;}
.y1f_c00176{bottom:407.550000px;}
.y1e_c00176{bottom:427.350000px;}
.y1d_c00176{bottom:447.150000px;}
.y1c_c00176{bottom:467.250000px;}
.y1b_c00176{bottom:487.350000px;}
.y1a_c00176{bottom:507.150000px;}
.y19_c00176{bottom:527.250000px;}
.y18_c00176{bottom:547.050000px;}
.y17_c00176{bottom:566.550000px;}
.y16_c00176{bottom:586.350000px;}
.y15_c00176{bottom:606.450000px;}
.y14_c00176{bottom:626.550000px;}
.y13_c00176{bottom:646.650000px;}
.y12_c00176{bottom:666.150000px;}
.y11_c00176{bottom:686.250000px;}
.y10_c00176{bottom:706.350000px;}
.yf_c00176{bottom:726.150000px;}
.ye_c00176{bottom:746.250000px;}
.yd_c00176{bottom:766.050000px;}
.yc_c00176{bottom:785.850000px;}
.yb_c00176{bottom:825.900000px;}
.ya_c00176{bottom:845.700000px;}
.y9_c00176{bottom:865.800000px;}
.y8_c00176{bottom:885.600000px;}
.y7_c00176{bottom:905.400000px;}
.y6_c00176{bottom:925.050000px;}
.y5_c00176{bottom:945.150000px;}
.y4_c00176{bottom:965.250000px;}
.y3_c00176{bottom:985.050000px;}
.y2_c00176{bottom:1005.150000px;}
.y1_c00176{bottom:1043.700000px;}
.h2_c00176{height:54.000000px;}
.h1_c00176{height:1167.750000px;}
.h0_c00176{height:1167.839997px;}
.w1_c00176{width:920.250000px;}
.w0_c00176{width:920.519990px;}
.x0_c00176{left:0.000000px;}
.x94_c00176{left:149.100000px;}
.x3_c00176{left:150.150000px;}
.x1_c00176{left:151.950000px;}
.xed_c00176{left:160.650000px;}
.x95_c00176{left:168.600000px;}
.x4e_c00176{left:170.100000px;}
.x62_c00176{left:172.200000px;}
.x132_c00176{left:178.950000px;}
.x42_c00176{left:181.500000px;}
.x125_c00176{left:183.150000px;}
.x6c_c00176{left:184.950000px;}
.xcb_c00176{left:187.200000px;}
.xd3_c00176{left:188.550000px;}
.x118_c00176{left:190.050000px;}
.x2d_c00176{left:191.550000px;}
.xa1_c00176{left:193.500000px;}
.xda_c00176{left:195.000000px;}
.x12b_c00176{left:198.750000px;}
.x58_c00176{left:200.850000px;}
.x20_c00176{left:201.900000px;}
.x106_c00176{left:204.450000px;}
.x14_c00176{left:207.300000px;}
.x96_c00176{left:210.300000px;}
.x135_c00176{left:211.350000px;}
.x4_c00176{left:212.400000px;}
.xe4_c00176{left:214.200000px;}
.xaa_c00176{left:215.250000px;}
.x3a_c00176{left:218.850000px;}
.x88_c00176{left:220.200000px;}
.xf4_c00176{left:221.550000px;}
.x108_c00176{left:222.600000px;}
.x119_c00176{left:223.950000px;}
.x97_c00176{left:225.000000px;}
.xff_c00176{left:228.150000px;}
.x59_c00176{left:234.750000px;}
.x2e_c00176{left:237.600000px;}
.x15_c00176{left:241.200000px;}
.x43_c00176{left:242.400000px;}
.x115_c00176{left:244.350000px;}
.x63_c00176{left:246.000000px;}
.x126_c00176{left:248.700000px;}
.x73_c00176{left:249.900000px;}
.x5_c00176{left:250.950000px;}
.xba_c00176{left:252.300000px;}
.x98_c00176{left:254.100000px;}
.xab_c00176{left:255.150000px;}
.xa2_c00176{left:256.800000px;}
.x11a_c00176{left:258.150000px;}
.x21_c00176{left:259.200000px;}
.x44_c00176{left:262.200000px;}
.x4f_c00176{left:264.750000px;}
.x3b_c00176{left:267.750000px;}
.x109_c00176{left:270.900000px;}
.x11c_c00176{left:272.100000px;}
.x2f_c00176{left:274.650000px;}
.x16_c00176{left:275.700000px;}
.x6_c00176{left:279.450000px;}
.x5a_c00176{left:280.800000px;}
.xdb_c00176{left:282.450000px;}
.xbb_c00176{left:283.650000px;}
.xb3_c00176{left:286.050000px;}
.x45_c00176{left:287.700000px;}
.x7c_c00176{left:289.050000px;}
.xf5_c00176{left:291.450000px;}
.x74_c00176{left:292.800000px;}
.x6d_c00176{left:294.300000px;}
.x89_c00176{left:296.550000px;}
.x10d_c00176{left:298.050000px;}
.x133_c00176{left:300.300000px;}
.x17_c00176{left:301.650000px;}
.xd4_c00176{left:303.000000px;}
.xbc_c00176{left:304.500000px;}
.x30_c00176{left:305.550000px;}
.x22_c00176{left:307.050000px;}
.xcc_c00176{left:312.450000px;}
.x99_c00176{left:314.550000px;}
.x12c_c00176{left:316.800000px;}
.x50_c00176{left:318.450000px;}
.x46_c00176{left:319.800000px;}
.xac_c00176{left:321.000000px;}
.xdc_c00176{left:323.550000px;}
.x75_c00176{left:326.250000px;}
.x134_c00176{left:327.600000px;}
.x5b_c00176{left:328.950000px;}
.x136_c00176{left:330.150000px;}
.x6e_c00176{left:332.400000px;}
.x9a_c00176{left:334.050000px;}
.x7_c00176{left:336.750000px;}
.x8a_c00176{left:338.250000px;}
.xad_c00176{left:340.500000px;}
.xfb_c00176{left:342.000000px;}
.x116_c00176{left:343.050000px;}
.xc5_c00176{left:344.550000px;}
.xeb_c00176{left:348.900000px;}
.x3c_c00176{left:351.600000px;}
.x7d_c00176{left:352.800000px;}
.xdd_c00176{left:355.650000px;}
.x127_c00176{left:357.450000px;}
.x8_c00176{left:360.150000px;}
.xcd_c00176{left:361.800000px;}
.xf6_c00176{left:364.200000px;}
.x23_c00176{left:366.150000px;}
.x100_c00176{left:367.350000px;}
.x51_c00176{left:368.850000px;}
.x31_c00176{left:371.850000px;}
.x3d_c00176{left:374.250000px;}
.x8b_c00176{left:377.100000px;}
.x6f_c00176{left:378.900000px;}
.x7e_c00176{left:381.600000px;}
.xee_c00176{left:383.850000px;}
.x24_c00176{left:385.950000px;}
.x64_c00176{left:387.900000px;}
.x18_c00176{left:390.150000px;}
.x10e_c00176{left:391.350000px;}
.x76_c00176{left:396.750000px;}
.x137_c00176{left:397.800000px;}
.xbd_c00176{left:399.150000px;}
.x3e_c00176{left:400.200000px;}
.xa3_c00176{left:402.000000px;}
.xe5_c00176{left:403.500000px;}
.x32_c00176{left:404.550000px;}
.xd5_c00176{left:405.600000px;}
.x70_c00176{left:407.400000px;}
.xef_c00176{left:411.150000px;}
.x128_c00176{left:412.200000px;}
.x25_c00176{left:413.250000px;}
.x10f_c00176{left:414.450000px;}
.x9_c00176{left:416.700000px;}
.xf7_c00176{left:418.800000px;}
.xde_c00176{left:420.450000px;}
.x7f_c00176{left:424.050000px;}
.x19_c00176{left:425.400000px;}
.x3f_c00176{left:427.200000px;}
.x77_c00176{left:429.150000px;}
.x11e_c00176{left:431.400000px;}
.xa4_c00176{left:433.650000px;}
.x101_c00176{left:436.050000px;}
.xa_c00176{left:438.600000px;}
.x65_c00176{left:440.850000px;}
.x52_c00176{left:442.350000px;}
.xa5_c00176{left:445.200000px;}
.xf8_c00176{left:446.850000px;}
.xd6_c00176{left:448.800000px;}
.x2_c00176{left:451.500000px;}
.x8c_c00176{left:453.000000px;}
.x11b_c00176{left:456.150000px;}
.xb4_c00176{left:457.350000px;}
.xb_c00176{left:459.450000px;}
.x47_c00176{left:460.950000px;}
.xbe_c00176{left:465.300000px;}
.x12d_c00176{left:466.350000px;}
.xe6_c00176{left:467.550000px;}
.x71_c00176{left:470.700000px;}
.xfc_c00176{left:473.400000px;}
.x9b_c00176{left:477.000000px;}
.xce_c00176{left:478.350000px;}
.x5c_c00176{left:480.900000px;}
.x48_c00176{left:482.250000px;}
.x33_c00176{left:487.050000px;}
.x1a_c00176{left:489.150000px;}
.x40_c00176{left:490.200000px;}
.xf9_c00176{left:492.600000px;}
.x80_c00176{left:493.800000px;}
.x11f_c00176{left:495.450000px;}
.xf0_c00176{left:498.300000px;}
.x26_c00176{left:501.450000px;}
.x66_c00176{left:503.850000px;}
.x72_c00176{left:505.650000px;}
.xcf_c00176{left:507.150000px;}
.x41_c00176{left:510.000000px;}
.x78_c00176{left:511.950000px;}
.xae_c00176{left:513.300000px;}
.xc6_c00176{left:517.350000px;}
.xf1_c00176{left:518.850000px;}
.xc_c00176{left:522.150000px;}
.x8d_c00176{left:525.000000px;}
.xa6_c00176{left:526.200000px;}
.xb5_c00176{left:528.300000px;}
.xbf_c00176{left:530.100000px;}
.x1b_c00176{left:531.600000px;}
.x67_c00176{left:533.400000px;}
.xf2_c00176{left:534.750000px;}
.xe7_c00176{left:536.550000px;}
.x102_c00176{left:538.950000px;}
.x49_c00176{left:540.150000px;}
.x53_c00176{left:541.350000px;}
.x81_c00176{left:542.700000px;}
.x9c_c00176{left:546.900000px;}
.xd_c00176{left:548.400000px;}
.x120_c00176{left:549.750000px;}
.x117_c00176{left:551.100000px;}
.xe8_c00176{left:552.450000px;}
.x110_c00176{left:554.400000px;}
.x8e_c00176{left:555.900000px;}
.x34_c00176{left:559.050000px;}
.xd7_c00176{left:562.950000px;}
.x9d_c00176{left:564.600000px;}
.x4a_c00176{left:565.650000px;}
.x27_c00176{left:567.000000px;}
.x5d_c00176{left:569.400000px;}
.x82_c00176{left:571.200000px;}
.x129_c00176{left:574.950000px;}
.xf3_c00176{left:576.150000px;}
.xe_c00176{left:577.500000px;}
.xa7_c00176{left:579.150000px;}
.xe9_c00176{left:581.550000px;}
.x12f_c00176{left:583.050000px;}
.xd0_c00176{left:584.250000px;}
.xc0_c00176{left:586.200000px;}
.x54_c00176{left:587.850000px;}
.x111_c00176{left:588.900000px;}
.x9e_c00176{left:590.550000px;}
.x79_c00176{left:591.900000px;}
.x121_c00176{left:594.750000px;}
.x68_c00176{left:597.150000px;}
.x5e_c00176{left:599.250000px;}
.x8f_c00176{left:604.500000px;}
.xf_c00176{left:606.600000px;}
.x1c_c00176{left:607.950000px;}
.xc7_c00176{left:609.150000px;}
.xaf_c00176{left:610.950000px;}
.xd1_c00176{left:612.000000px;}
.x83_c00176{left:615.450000px;}
.xea_c00176{left:617.100000px;}
.x4b_c00176{left:618.600000px;}
.x5f_c00176{left:620.100000px;}
.x35_c00176{left:621.750000px;}
.x55_c00176{left:623.550000px;}
.xa8_c00176{left:630.300000px;}
.x28_c00176{left:632.550000px;}
.x103_c00176{left:634.350000px;}
.x4c_c00176{left:638.400000px;}
.x112_c00176{left:639.900000px;}
.x1d_c00176{left:644.250000px;}
.x84_c00176{left:646.800000px;}
.xdf_c00176{left:649.500000px;}
.xfa_c00176{left:651.300000px;}
.xd8_c00176{left:652.650000px;}
.xfd_c00176{left:654.900000px;}
.xb6_c00176{left:656.250000px;}
.x29_c00176{left:659.550000px;}
.x36_c00176{left:660.600000px;}
.x7a_c00176{left:663.300000px;}
.x122_c00176{left:664.950000px;}
.x9f_c00176{left:666.450000px;}
.x69_c00176{left:669.150000px;}
.xec_c00176{left:671.100000px;}
.x56_c00176{left:675.000000px;}
.xb0_c00176{left:677.250000px;}
.xc8_c00176{left:680.850000px;}
.x10a_c00176{left:682.650000px;}
.x37_c00176{left:683.700000px;}
.x104_c00176{left:684.750000px;}
.x90_c00176{left:686.550000px;}
.x4d_c00176{left:687.750000px;}
.xd9_c00176{left:691.950000px;}
.x130_c00176{left:693.600000px;}
.x10_c00176{left:694.800000px;}
.xc1_c00176{left:698.100000px;}
.xb7_c00176{left:699.750000px;}
.x85_c00176{left:700.800000px;}
.xe0_c00176{left:702.750000px;}
.x57_c00176{left:703.800000px;}
.x12a_c00176{left:705.150000px;}
.x1e_c00176{left:708.000000px;}
.x38_c00176{left:711.450000px;}
.xfe_c00176{left:714.000000px;}
.x11_c00176{left:716.700000px;}
.x91_c00176{left:721.050000px;}
.xe1_c00176{left:723.600000px;}
.x107_c00176{left:725.250000px;}
.xb8_c00176{left:726.450000px;}
.x131_c00176{left:731.400000px;}
.x60_c00176{left:732.450000px;}
.x11d_c00176{left:734.100000px;}
.x2a_c00176{left:735.150000px;}
.xb1_c00176{left:736.650000px;}
.x92_c00176{left:739.050000px;}
.xd2_c00176{left:741.900000px;}
.xa9_c00176{left:744.750000px;}
.x6a_c00176{left:745.800000px;}
.x12_c00176{left:747.000000px;}
.xc2_c00176{left:753.150000px;}
.x86_c00176{left:754.800000px;}
.x2b_c00176{left:756.000000px;}
.xb9_c00176{left:758.100000px;}
.x61_c00176{left:759.450000px;}
.x10b_c00176{left:761.850000px;}
.xc9_c00176{left:762.900000px;}
.xe2_c00176{left:765.300000px;}
.x7b_c00176{left:768.300000px;}
.x6b_c00176{left:771.300000px;}
.xc3_c00176{left:772.350000px;}
.x12e_c00176{left:774.000000px;}
.x39_c00176{left:775.500000px;}
.x123_c00176{left:776.850000px;}
.xb2_c00176{left:778.050000px;}
.x105_c00176{left:779.700000px;}
.x113_c00176{left:782.100000px;}
.x93_c00176{left:788.100000px;}
.x87_c00176{left:790.800000px;}
.x10c_c00176{left:792.450000px;}
.xe3_c00176{left:794.100000px;}
.x1f_c00176{left:796.200000px;}
.xca_c00176{left:798.150000px;}
.x114_c00176{left:799.800000px;}
.xc4_c00176{left:801.150000px;}
.x13_c00176{left:803.100000px;}
.x2c_c00176{left:804.600000px;}
.x124_c00176{left:805.650000px;}
.xa0_c00176{left:811.650000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:-4.938272pt;}
.ws9_c00176{word-spacing:-3.293797pt;}
.ws8_c00176{word-spacing:-0.761905pt;}
.wsb_c00176{word-spacing:0.000000pt;}
.ws4_c00176{word-spacing:0.222222pt;}
.ws7_c00176{word-spacing:1.333333pt;}
.ws1_c00176{word-spacing:2.814815pt;}
.ws5_c00176{word-spacing:7.012128pt;}
.ws6_c00176{word-spacing:7.777778pt;}
.ws3_c00176{word-spacing:8.514517pt;}
.wsa_c00176{word-spacing:9.444444pt;}
.ws2_c00176{word-spacing:15.272727pt;}
._0_c00176{width:30.666667pt;}
.fs0_c00176{font-size:48.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y2b_c00176{bottom:138.933333pt;}
.y2a_c00176{bottom:152.666667pt;}
.y29_c00176{bottom:166.400000pt;}
.y28_c00176{bottom:202.533333pt;}
.y27_c00176{bottom:220.133333pt;}
.y26_c00176{bottom:238.133333pt;}
.y25_c00176{bottom:255.466667pt;}
.y24_c00176{bottom:273.333333pt;}
.y23_c00176{bottom:290.933333pt;}
.y22_c00176{bottom:308.933333pt;}
.y21_c00176{bottom:326.800000pt;}
.y20_c00176{bottom:344.400000pt;}
.y1f_c00176{bottom:362.266667pt;}
.y1e_c00176{bottom:379.866667pt;}
.y1d_c00176{bottom:397.466667pt;}
.y1c_c00176{bottom:415.333333pt;}
.y1b_c00176{bottom:433.200000pt;}
.y1a_c00176{bottom:450.800000pt;}
.y19_c00176{bottom:468.666667pt;}
.y18_c00176{bottom:486.266667pt;}
.y17_c00176{bottom:503.600000pt;}
.y16_c00176{bottom:521.200000pt;}
.y15_c00176{bottom:539.066667pt;}
.y14_c00176{bottom:556.933333pt;}
.y13_c00176{bottom:574.800000pt;}
.y12_c00176{bottom:592.133333pt;}
.y11_c00176{bottom:610.000000pt;}
.y10_c00176{bottom:627.866667pt;}
.yf_c00176{bottom:645.466667pt;}
.ye_c00176{bottom:663.333333pt;}
.yd_c00176{bottom:680.933333pt;}
.yc_c00176{bottom:698.533333pt;}
.yb_c00176{bottom:734.133333pt;}
.ya_c00176{bottom:751.733333pt;}
.y9_c00176{bottom:769.600000pt;}
.y8_c00176{bottom:787.200000pt;}
.y7_c00176{bottom:804.800000pt;}
.y6_c00176{bottom:822.266667pt;}
.y5_c00176{bottom:840.133333pt;}
.y4_c00176{bottom:858.000000pt;}
.y3_c00176{bottom:875.600000pt;}
.y2_c00176{bottom:893.466667pt;}
.y1_c00176{bottom:927.733333pt;}
.h2_c00176{height:48.000000pt;}
.h1_c00176{height:1038.000000pt;}
.h0_c00176{height:1038.079997pt;}
.w1_c00176{width:818.000000pt;}
.w0_c00176{width:818.239991pt;}
.x0_c00176{left:0.000000pt;}
.x94_c00176{left:132.533333pt;}
.x3_c00176{left:133.466667pt;}
.x1_c00176{left:135.066667pt;}
.xed_c00176{left:142.800000pt;}
.x95_c00176{left:149.866667pt;}
.x4e_c00176{left:151.200000pt;}
.x62_c00176{left:153.066667pt;}
.x132_c00176{left:159.066667pt;}
.x42_c00176{left:161.333333pt;}
.x125_c00176{left:162.800000pt;}
.x6c_c00176{left:164.400000pt;}
.xcb_c00176{left:166.400000pt;}
.xd3_c00176{left:167.600000pt;}
.x118_c00176{left:168.933333pt;}
.x2d_c00176{left:170.266667pt;}
.xa1_c00176{left:172.000000pt;}
.xda_c00176{left:173.333333pt;}
.x12b_c00176{left:176.666667pt;}
.x58_c00176{left:178.533333pt;}
.x20_c00176{left:179.466667pt;}
.x106_c00176{left:181.733333pt;}
.x14_c00176{left:184.266667pt;}
.x96_c00176{left:186.933333pt;}
.x135_c00176{left:187.866667pt;}
.x4_c00176{left:188.800000pt;}
.xe4_c00176{left:190.400000pt;}
.xaa_c00176{left:191.333333pt;}
.x3a_c00176{left:194.533333pt;}
.x88_c00176{left:195.733333pt;}
.xf4_c00176{left:196.933333pt;}
.x108_c00176{left:197.866667pt;}
.x119_c00176{left:199.066667pt;}
.x97_c00176{left:200.000000pt;}
.xff_c00176{left:202.800000pt;}
.x59_c00176{left:208.666667pt;}
.x2e_c00176{left:211.200000pt;}
.x15_c00176{left:214.400000pt;}
.x43_c00176{left:215.466667pt;}
.x115_c00176{left:217.200000pt;}
.x63_c00176{left:218.666667pt;}
.x126_c00176{left:221.066667pt;}
.x73_c00176{left:222.133333pt;}
.x5_c00176{left:223.066667pt;}
.xba_c00176{left:224.266667pt;}
.x98_c00176{left:225.866667pt;}
.xab_c00176{left:226.800000pt;}
.xa2_c00176{left:228.266667pt;}
.x11a_c00176{left:229.466667pt;}
.x21_c00176{left:230.400000pt;}
.x44_c00176{left:233.066667pt;}
.x4f_c00176{left:235.333333pt;}
.x3b_c00176{left:238.000000pt;}
.x109_c00176{left:240.800000pt;}
.x11c_c00176{left:241.866667pt;}
.x2f_c00176{left:244.133333pt;}
.x16_c00176{left:245.066667pt;}
.x6_c00176{left:248.400000pt;}
.x5a_c00176{left:249.600000pt;}
.xdb_c00176{left:251.066667pt;}
.xbb_c00176{left:252.133333pt;}
.xb3_c00176{left:254.266667pt;}
.x45_c00176{left:255.733333pt;}
.x7c_c00176{left:256.933333pt;}
.xf5_c00176{left:259.066667pt;}
.x74_c00176{left:260.266667pt;}
.x6d_c00176{left:261.600000pt;}
.x89_c00176{left:263.600000pt;}
.x10d_c00176{left:264.933333pt;}
.x133_c00176{left:266.933333pt;}
.x17_c00176{left:268.133333pt;}
.xd4_c00176{left:269.333333pt;}
.xbc_c00176{left:270.666667pt;}
.x30_c00176{left:271.600000pt;}
.x22_c00176{left:272.933333pt;}
.xcc_c00176{left:277.733333pt;}
.x99_c00176{left:279.600000pt;}
.x12c_c00176{left:281.600000pt;}
.x50_c00176{left:283.066667pt;}
.x46_c00176{left:284.266667pt;}
.xac_c00176{left:285.333333pt;}
.xdc_c00176{left:287.600000pt;}
.x75_c00176{left:290.000000pt;}
.x134_c00176{left:291.200000pt;}
.x5b_c00176{left:292.400000pt;}
.x136_c00176{left:293.466667pt;}
.x6e_c00176{left:295.466667pt;}
.x9a_c00176{left:296.933333pt;}
.x7_c00176{left:299.333333pt;}
.x8a_c00176{left:300.666667pt;}
.xad_c00176{left:302.666667pt;}
.xfb_c00176{left:304.000000pt;}
.x116_c00176{left:304.933333pt;}
.xc5_c00176{left:306.266667pt;}
.xeb_c00176{left:310.133333pt;}
.x3c_c00176{left:312.533333pt;}
.x7d_c00176{left:313.600000pt;}
.xdd_c00176{left:316.133333pt;}
.x127_c00176{left:317.733333pt;}
.x8_c00176{left:320.133333pt;}
.xcd_c00176{left:321.600000pt;}
.xf6_c00176{left:323.733333pt;}
.x23_c00176{left:325.466667pt;}
.x100_c00176{left:326.533333pt;}
.x51_c00176{left:327.866667pt;}
.x31_c00176{left:330.533333pt;}
.x3d_c00176{left:332.666667pt;}
.x8b_c00176{left:335.200000pt;}
.x6f_c00176{left:336.800000pt;}
.x7e_c00176{left:339.200000pt;}
.xee_c00176{left:341.200000pt;}
.x24_c00176{left:343.066667pt;}
.x64_c00176{left:344.800000pt;}
.x18_c00176{left:346.800000pt;}
.x10e_c00176{left:347.866667pt;}
.x76_c00176{left:352.666667pt;}
.x137_c00176{left:353.600000pt;}
.xbd_c00176{left:354.800000pt;}
.x3e_c00176{left:355.733333pt;}
.xa3_c00176{left:357.333333pt;}
.xe5_c00176{left:358.666667pt;}
.x32_c00176{left:359.600000pt;}
.xd5_c00176{left:360.533333pt;}
.x70_c00176{left:362.133333pt;}
.xef_c00176{left:365.466667pt;}
.x128_c00176{left:366.400000pt;}
.x25_c00176{left:367.333333pt;}
.x10f_c00176{left:368.400000pt;}
.x9_c00176{left:370.400000pt;}
.xf7_c00176{left:372.266667pt;}
.xde_c00176{left:373.733333pt;}
.x7f_c00176{left:376.933333pt;}
.x19_c00176{left:378.133333pt;}
.x3f_c00176{left:379.733333pt;}
.x77_c00176{left:381.466667pt;}
.x11e_c00176{left:383.466667pt;}
.xa4_c00176{left:385.466667pt;}
.x101_c00176{left:387.600000pt;}
.xa_c00176{left:389.866667pt;}
.x65_c00176{left:391.866667pt;}
.x52_c00176{left:393.200000pt;}
.xa5_c00176{left:395.733333pt;}
.xf8_c00176{left:397.200000pt;}
.xd6_c00176{left:398.933333pt;}
.x2_c00176{left:401.333333pt;}
.x8c_c00176{left:402.666667pt;}
.x11b_c00176{left:405.466667pt;}
.xb4_c00176{left:406.533333pt;}
.xb_c00176{left:408.400000pt;}
.x47_c00176{left:409.733333pt;}
.xbe_c00176{left:413.600000pt;}
.x12d_c00176{left:414.533333pt;}
.xe6_c00176{left:415.600000pt;}
.x71_c00176{left:418.400000pt;}
.xfc_c00176{left:420.800000pt;}
.x9b_c00176{left:424.000000pt;}
.xce_c00176{left:425.200000pt;}
.x5c_c00176{left:427.466667pt;}
.x48_c00176{left:428.666667pt;}
.x33_c00176{left:432.933333pt;}
.x1a_c00176{left:434.800000pt;}
.x40_c00176{left:435.733333pt;}
.xf9_c00176{left:437.866667pt;}
.x80_c00176{left:438.933333pt;}
.x11f_c00176{left:440.400000pt;}
.xf0_c00176{left:442.933333pt;}
.x26_c00176{left:445.733333pt;}
.x66_c00176{left:447.866667pt;}
.x72_c00176{left:449.466667pt;}
.xcf_c00176{left:450.800000pt;}
.x41_c00176{left:453.333333pt;}
.x78_c00176{left:455.066667pt;}
.xae_c00176{left:456.266667pt;}
.xc6_c00176{left:459.866667pt;}
.xf1_c00176{left:461.200000pt;}
.xc_c00176{left:464.133333pt;}
.x8d_c00176{left:466.666667pt;}
.xa6_c00176{left:467.733333pt;}
.xb5_c00176{left:469.600000pt;}
.xbf_c00176{left:471.200000pt;}
.x1b_c00176{left:472.533333pt;}
.x67_c00176{left:474.133333pt;}
.xf2_c00176{left:475.333333pt;}
.xe7_c00176{left:476.933333pt;}
.x102_c00176{left:479.066667pt;}
.x49_c00176{left:480.133333pt;}
.x53_c00176{left:481.200000pt;}
.x81_c00176{left:482.400000pt;}
.x9c_c00176{left:486.133333pt;}
.xd_c00176{left:487.466667pt;}
.x120_c00176{left:488.666667pt;}
.x117_c00176{left:489.866667pt;}
.xe8_c00176{left:491.066667pt;}
.x110_c00176{left:492.800000pt;}
.x8e_c00176{left:494.133333pt;}
.x34_c00176{left:496.933333pt;}
.xd7_c00176{left:500.400000pt;}
.x9d_c00176{left:501.866667pt;}
.x4a_c00176{left:502.800000pt;}
.x27_c00176{left:504.000000pt;}
.x5d_c00176{left:506.133333pt;}
.x82_c00176{left:507.733333pt;}
.x129_c00176{left:511.066667pt;}
.xf3_c00176{left:512.133333pt;}
.xe_c00176{left:513.333333pt;}
.xa7_c00176{left:514.800000pt;}
.xe9_c00176{left:516.933333pt;}
.x12f_c00176{left:518.266667pt;}
.xd0_c00176{left:519.333333pt;}
.xc0_c00176{left:521.066667pt;}
.x54_c00176{left:522.533333pt;}
.x111_c00176{left:523.466667pt;}
.x9e_c00176{left:524.933333pt;}
.x79_c00176{left:526.133333pt;}
.x121_c00176{left:528.666667pt;}
.x68_c00176{left:530.800000pt;}
.x5e_c00176{left:532.666667pt;}
.x8f_c00176{left:537.333333pt;}
.xf_c00176{left:539.200000pt;}
.x1c_c00176{left:540.400000pt;}
.xc7_c00176{left:541.466667pt;}
.xaf_c00176{left:543.066667pt;}
.xd1_c00176{left:544.000000pt;}
.x83_c00176{left:547.066667pt;}
.xea_c00176{left:548.533333pt;}
.x4b_c00176{left:549.866667pt;}
.x5f_c00176{left:551.200000pt;}
.x35_c00176{left:552.666667pt;}
.x55_c00176{left:554.266667pt;}
.xa8_c00176{left:560.266667pt;}
.x28_c00176{left:562.266667pt;}
.x103_c00176{left:563.866667pt;}
.x4c_c00176{left:567.466667pt;}
.x112_c00176{left:568.800000pt;}
.x1d_c00176{left:572.666667pt;}
.x84_c00176{left:574.933333pt;}
.xdf_c00176{left:577.333333pt;}
.xfa_c00176{left:578.933333pt;}
.xd8_c00176{left:580.133333pt;}
.xfd_c00176{left:582.133333pt;}
.xb6_c00176{left:583.333333pt;}
.x29_c00176{left:586.266667pt;}
.x36_c00176{left:587.200000pt;}
.x7a_c00176{left:589.600000pt;}
.x122_c00176{left:591.066667pt;}
.x9f_c00176{left:592.400000pt;}
.x69_c00176{left:594.800000pt;}
.xec_c00176{left:596.533333pt;}
.x56_c00176{left:600.000000pt;}
.xb0_c00176{left:602.000000pt;}
.xc8_c00176{left:605.200000pt;}
.x10a_c00176{left:606.800000pt;}
.x37_c00176{left:607.733333pt;}
.x104_c00176{left:608.666667pt;}
.x90_c00176{left:610.266667pt;}
.x4d_c00176{left:611.333333pt;}
.xd9_c00176{left:615.066667pt;}
.x130_c00176{left:616.533333pt;}
.x10_c00176{left:617.600000pt;}
.xc1_c00176{left:620.533333pt;}
.xb7_c00176{left:622.000000pt;}
.x85_c00176{left:622.933333pt;}
.xe0_c00176{left:624.666667pt;}
.x57_c00176{left:625.600000pt;}
.x12a_c00176{left:626.800000pt;}
.x1e_c00176{left:629.333333pt;}
.x38_c00176{left:632.400000pt;}
.xfe_c00176{left:634.666667pt;}
.x11_c00176{left:637.066667pt;}
.x91_c00176{left:640.933333pt;}
.xe1_c00176{left:643.200000pt;}
.x107_c00176{left:644.666667pt;}
.xb8_c00176{left:645.733333pt;}
.x131_c00176{left:650.133333pt;}
.x60_c00176{left:651.066667pt;}
.x11d_c00176{left:652.533333pt;}
.x2a_c00176{left:653.466667pt;}
.xb1_c00176{left:654.800000pt;}
.x92_c00176{left:656.933333pt;}
.xd2_c00176{left:659.466667pt;}
.xa9_c00176{left:662.000000pt;}
.x6a_c00176{left:662.933333pt;}
.x12_c00176{left:664.000000pt;}
.xc2_c00176{left:669.466667pt;}
.x86_c00176{left:670.933333pt;}
.x2b_c00176{left:672.000000pt;}
.xb9_c00176{left:673.866667pt;}
.x61_c00176{left:675.066667pt;}
.x10b_c00176{left:677.200000pt;}
.xc9_c00176{left:678.133333pt;}
.xe2_c00176{left:680.266667pt;}
.x7b_c00176{left:682.933333pt;}
.x6b_c00176{left:685.600000pt;}
.xc3_c00176{left:686.533333pt;}
.x12e_c00176{left:688.000000pt;}
.x39_c00176{left:689.333333pt;}
.x123_c00176{left:690.533333pt;}
.xb2_c00176{left:691.600000pt;}
.x105_c00176{left:693.066667pt;}
.x113_c00176{left:695.200000pt;}
.x93_c00176{left:700.533333pt;}
.x87_c00176{left:702.933333pt;}
.x10c_c00176{left:704.400000pt;}
.xe3_c00176{left:705.866667pt;}
.x1f_c00176{left:707.733333pt;}
.xca_c00176{left:709.466667pt;}
.x114_c00176{left:710.933333pt;}
.xc4_c00176{left:712.133333pt;}
.x13_c00176{left:713.866667pt;}
.x2c_c00176{left:715.200000pt;}
.x124_c00176{left:716.133333pt;}
.xa0_c00176{left:721.466667pt;}
}





/* 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_c00177 {
    display:none;
  }
  .loading-indicator_c00177.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00177 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_c00177 { 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_c00177" -> "#page-container .classname_c00177")
 */
.pf_c00177 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00177 { /* 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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00177 { /* 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_c00177 { /* 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_c00177 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00177 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00177 {overflow:visible;}
  }
}
.c_c00177 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00177 { /* 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_c00177:after { /* webkit #35443 */
  content: '';
}
.t_c00177:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00177 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 */
}
.__c00177 { /* 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_c00177 { /* info for Javascript */
  display:none;
}
.l_c00177 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00177 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00177 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00177: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_c00177 {
    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_c00177.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00177.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_c00177 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00177{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.000000;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_c00177{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m1_c00177{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{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__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:0.000000px;}
.fc0_c00177{color:transparent;}
.fs0_c00177{font-size:36.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:1070.700000px;}
.h2_c00177{height:36.000000px;}
.h1_c00177{height:1167.750000px;}
.h0_c00177{height:1167.839997px;}
.w1_c00177{width:920.250000px;}
.w0_c00177{width:920.519990px;}
.x0_c00177{left:0.000000px;}
.x2_c00177{left:831.900000px;}
.x1_c00177{left:837.300000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs0_c00177{font-size:32.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:951.733333pt;}
.h2_c00177{height:32.000000pt;}
.h1_c00177{height:1038.000000pt;}
.h0_c00177{height:1038.079997pt;}
.w1_c00177{width:818.000000pt;}
.w0_c00177{width:818.239991pt;}
.x0_c00177{left:0.000000pt;}
.x2_c00177{left:739.466667pt;}
.x1_c00177{left:744.266667pt;}
}





/* 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_c00178 {
    display:none;
  }
  .loading-indicator_c00178.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00178 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_c00178 { 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_c00178" -> "#page-container .classname_c00178")
 */
.pf_c00178 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00178 { /* 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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00178 { /* 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_c00178 { /* 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_c00178 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00178 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00178 {overflow:visible;}
  }
}
.c_c00178 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00178 { /* 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_c00178:after { /* webkit #35443 */
  content: '';
}
.t_c00178:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00178 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 */
}
.__c00178 { /* 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_c00178 { /* info for Javascript */
  display:none;
}
.l_c00178 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00178 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00178 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00178: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_c00178 {
    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_c00178.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00178.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_c00178 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00178{font-family:sans-serif;visibility:hidden;}
.sc__c00178{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
}
.y0_c00178{bottom:0.000000px;}
.h1_c00178{height:1167.750000px;}
.h0_c00178{height:1167.839997px;}
.w1_c00178{width:920.250000px;}
.w0_c00178{width:920.519990px;}
.x0_c00178{left:0.000000px;}
@media print{
.y0_c00178{bottom:0.000000pt;}
.h1_c00178{height:1038.000000pt;}
.h0_c00178{height:1038.079997pt;}
.w1_c00178{width:818.000000pt;}
.w0_c00178{width:818.239991pt;}
.x0_c00178{left:0.000000pt;}
}





/* 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_c00179 {
    display:none;
  }
  .loading-indicator_c00179.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00179 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_c00179 { 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_c00179" -> "#page-container .classname_c00179")
 */
.pf_c00179 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00179 { /* 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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00179 { /* 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_c00179 { /* 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_c00179 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00179 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00179 {overflow:visible;}
  }
}
.c_c00179 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00179 { /* 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_c00179:after { /* webkit #35443 */
  content: '';
}
.t_c00179:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00179 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 */
}
.__c00179 { /* 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_c00179 { /* info for Javascript */
  display:none;
}
.l_c00179 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00179 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00179 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00179: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_c00179 {
    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_c00179.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00179.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_c00179 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00179{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00179;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.000000;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;}
.m1b_c00179{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00179{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00179{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00179{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m33_c00179{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00179{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00179{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m69_c00179{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00179{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00179{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maf_c00179{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m48_c00179{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m89_c00179{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00179{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m54_c00179{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00179{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00179{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m40_c00179{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m56_c00179{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m68_c00179{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m72_c00179{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00179{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00179{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m44_c00179{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m85_c00179{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00179{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00179{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m98_c00179{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mad_c00179{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00179{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m38_c00179{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m59_c00179{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00179{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00179{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m92_c00179{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m63_c00179{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m83_c00179{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00179{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m99_c00179{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m41_c00179{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m73_c00179{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.maa_c00179{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00179{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mab_c00179{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m25_c00179{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00179{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m50_c00179{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m27_c00179{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00179{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00179{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m16_c00179{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00179{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m45_c00179{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00179{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m17_c00179{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00179{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00179{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00179{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00179{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00179{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00179{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00179{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m37_c00179{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00179{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00179{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m46_c00179{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00179{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00179{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00179{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00179{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1_c00179{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00179{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00179{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m55_c00179{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m91_c00179{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00179{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m76_c00179{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m39_c00179{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m94_c00179{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m75_c00179{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m49_c00179{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m57_c00179{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m60_c00179{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me_c00179{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m81_c00179{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00179{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00179{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);}
.m51_c00179{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15_c00179{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m64_c00179{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00179{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00179{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21_c00179{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00179{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m93_c00179{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00179{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m65_c00179{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mae_c00179{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00179{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m34_c00179{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m71_c00179{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb_c00179{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m96_c00179{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m58_c00179{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00179{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m95_c00179{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00179{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m90_c00179{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m97_c00179{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m61_c00179{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00179{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m26_c00179{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00179{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m87_c00179{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m62_c00179{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m79_c00179{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m80_c00179{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00179{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00179{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00179{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m86_c00179{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00179{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00179{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m66_c00179{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00179{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mac_c00179{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00179{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m22_c00179{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m88_c00179{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m70_c00179{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m29_c00179{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5_c00179{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00179{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00179{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00179{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00179{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00179{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00179{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00179{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00179{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00179{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m82_c00179{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00179{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00179{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m77_c00179{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00179{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00179{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00179{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00179{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00179{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m74_c00179{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m20_c00179{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00179{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00179{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m67_c00179{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m53_c00179{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m18_c00179{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m0_c00179{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m24_c00179{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m10_c00179{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m47_c00179{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m30_c00179{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m52_c00179{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00179{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m35_c00179{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00179{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00179{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m36_c00179{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00179{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.v0_c00179{vertical-align:0.000000px;}
.ls0_c00179{letter-spacing:0.000000px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{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__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00179{word-spacing:-4.615385px;}
.ws2_c00179{word-spacing:-4.250000px;}
.ws6_c00179{word-spacing:-1.625000px;}
.ws8_c00179{word-spacing:0.000000px;}
.ws4_c00179{word-spacing:0.729904px;}
.ws7_c00179{word-spacing:4.625000px;}
.ws1_c00179{word-spacing:7.500000px;}
.ws3_c00179{word-spacing:8.750000px;}
.ws0_c00179{word-spacing:895.491443px;}
._1_c00179{width:28.500000px;}
._0_c00179{width:32.750000px;}
.fc0_c00179{color:transparent;}
.fs0_c00179{font-size:54.000000px;}
.y0_c00179{bottom:0.000000px;}
.y2c_c00179{bottom:155.550000px;}
.y2b_c00179{bottom:196.950000px;}
.y2a_c00179{bottom:216.750000px;}
.y29_c00179{bottom:236.850000px;}
.y28_c00179{bottom:256.650000px;}
.y27_c00179{bottom:276.450000px;}
.y26_c00179{bottom:296.100000px;}
.y25_c00179{bottom:316.200000px;}
.y24_c00179{bottom:336.300000px;}
.y23_c00179{bottom:355.800000px;}
.y22_c00179{bottom:375.600000px;}
.y21_c00179{bottom:395.400000px;}
.y20_c00179{bottom:414.900000px;}
.y1f_c00179{bottom:435.000000px;}
.y1e_c00179{bottom:455.100000px;}
.y1d_c00179{bottom:474.600000px;}
.y1c_c00179{bottom:494.700000px;}
.y1b_c00179{bottom:514.500000px;}
.y1a_c00179{bottom:534.300000px;}
.y19_c00179{bottom:554.100000px;}
.y18_c00179{bottom:574.350000px;}
.y17_c00179{bottom:594.150000px;}
.y16_c00179{bottom:613.950000px;}
.y15_c00179{bottom:634.050000px;}
.y14_c00179{bottom:653.850000px;}
.y13_c00179{bottom:673.650000px;}
.y12_c00179{bottom:693.750000px;}
.y11_c00179{bottom:713.550000px;}
.y10_c00179{bottom:733.650000px;}
.yf_c00179{bottom:753.450000px;}
.ye_c00179{bottom:773.550000px;}
.yd_c00179{bottom:793.350000px;}
.yc_c00179{bottom:813.150000px;}
.yb_c00179{bottom:833.250000px;}
.ya_c00179{bottom:853.050000px;}
.y9_c00179{bottom:873.150000px;}
.y8_c00179{bottom:892.950000px;}
.y7_c00179{bottom:913.050000px;}
.y6_c00179{bottom:932.850000px;}
.y5_c00179{bottom:952.950000px;}
.y4_c00179{bottom:972.450000px;}
.y3_c00179{bottom:992.550000px;}
.y2_c00179{bottom:1012.650000px;}
.y1_c00179{bottom:1050.150000px;}
.h2_c00179{height:54.000000px;}
.h1_c00179{height:1167.750000px;}
.h0_c00179{height:1167.839997px;}
.w1_c00179{width:920.250000px;}
.w0_c00179{width:920.519990px;}
.x0_c00179{left:0.000000px;}
.xf4_c00179{left:106.800000px;}
.x2_c00179{left:108.300000px;}
.x3e_c00179{left:120.450000px;}
.xff_c00179{left:124.950000px;}
.x97_c00179{left:129.000000px;}
.xf5_c00179{left:132.300000px;}
.x3_c00179{left:136.050000px;}
.xdc_c00179{left:137.700000px;}
.x4d_c00179{left:139.050000px;}
.xe5_c00179{left:140.400000px;}
.x1d_c00179{left:144.450000px;}
.x104_c00179{left:146.250000px;}
.x13a_c00179{left:147.450000px;}
.x5d_c00179{left:149.100000px;}
.x100_c00179{left:151.950000px;}
.x12_c00179{left:153.900000px;}
.x1e_c00179{left:156.000000px;}
.x10c_c00179{left:157.950000px;}
.x30_c00179{left:159.450000px;}
.x134_c00179{left:160.650000px;}
.x120_c00179{left:163.500000px;}
.x105_c00179{left:166.350000px;}
.x3f_c00179{left:169.350000px;}
.x4_c00179{left:171.750000px;}
.xb8_c00179{left:173.550000px;}
.xae_c00179{left:177.750000px;}
.x72_c00179{left:179.250000px;}
.x31_c00179{left:180.750000px;}
.xfb_c00179{left:181.800000px;}
.x1f_c00179{left:184.050000px;}
.x85_c00179{left:185.550000px;}
.x5e_c00179{left:187.950000px;}
.xa2_c00179{left:190.200000px;}
.x5_c00179{left:191.550000px;}
.x11c_c00179{left:192.600000px;}
.x6a_c00179{left:194.250000px;}
.x11a_c00179{left:196.050000px;}
.xcd_c00179{left:197.100000px;}
.xd7_c00179{left:198.300000px;}
.x13b_c00179{left:200.400000px;}
.xea_c00179{left:202.200000px;}
.xdd_c00179{left:203.550000px;}
.x20_c00179{left:204.600000px;}
.x121_c00179{left:205.950000px;}
.xce_c00179{left:207.900000px;}
.xaf_c00179{left:209.100000px;}
.xa3_c00179{left:210.750000px;}
.x12d_c00179{left:213.450000px;}
.x101_c00179{left:214.950000px;}
.x131_c00179{left:216.000000px;}
.x12a_c00179{left:219.450000px;}
.x7b_c00179{left:220.500000px;}
.x40_c00179{left:222.600000px;}
.x13_c00179{left:224.850000px;}
.xfc_c00179{left:226.500000px;}
.x4e_c00179{left:228.000000px;}
.xcf_c00179{left:229.200000px;}
.x6_c00179{left:230.400000px;}
.x13e_c00179{left:231.900000px;}
.x112_c00179{left:235.200000px;}
.x122_c00179{left:236.250000px;}
.x135_c00179{left:237.750000px;}
.xa4_c00179{left:238.800000px;}
.x73_c00179{left:241.050000px;}
.xfd_c00179{left:242.700000px;}
.x90_c00179{left:243.750000px;}
.xb9_c00179{left:246.300000px;}
.x4f_c00179{left:248.550000px;}
.xc0_c00179{left:249.750000px;}
.x106_c00179{left:251.700000px;}
.x14_c00179{left:252.900000px;}
.x21_c00179{left:255.300000px;}
.xc6_c00179{left:256.350000px;}
.xe6_c00179{left:258.150000px;}
.x32_c00179{left:259.650000px;}
.x5f_c00179{left:262.200000px;}
.x6b_c00179{left:264.150000px;}
.x50_c00179{left:265.800000px;}
.x41_c00179{left:267.300000px;}
.x7c_c00179{left:269.100000px;}
.x125_c00179{left:271.800000px;}
.x102_c00179{left:273.300000px;}
.x113_c00179{left:276.300000px;}
.xd0_c00179{left:277.500000px;}
.xe7_c00179{left:283.650000px;}
.xa5_c00179{left:285.900000px;}
.x123_c00179{left:287.700000px;}
.xde_c00179{left:288.900000px;}
.x33_c00179{left:289.950000px;}
.x7_c00179{left:291.300000px;}
.xd1_c00179{left:294.750000px;}
.x42_c00179{left:296.400000px;}
.xb0_c00179{left:298.500000px;}
.x22_c00179{left:300.600000px;}
.x12e_c00179{left:301.650000px;}
.xa0_c00179{left:302.700000px;}
.x51_c00179{left:305.100000px;}
.x34_c00179{left:310.800000px;}
.xa6_c00179{left:312.900000px;}
.xd8_c00179{left:313.950000px;}
.x7d_c00179{left:315.150000px;}
.x91_c00179{left:316.500000px;}
.x23_c00179{left:317.850000px;}
.x98_c00179{left:320.550000px;}
.x8_c00179{left:321.600000px;}
.x136_c00179{left:323.100000px;}
.xf6_c00179{left:325.050000px;}
.x43_c00179{left:327.000000px;}
.x74_c00179{left:328.500000px;}
.xba_c00179{left:329.550000px;}
.x114_c00179{left:331.050000px;}
.x103_c00179{left:332.400000px;}
.xa7_c00179{left:333.450000px;}
.x15_c00179{left:336.000000px;}
.x92_c00179{left:337.050000px;}
.x10d_c00179{left:338.400000px;}
.x60_c00179{left:339.600000px;}
.x118_c00179{left:342.900000px;}
.x107_c00179{left:344.100000px;}
.x13f_c00179{left:345.150000px;}
.xbb_c00179{left:349.050000px;}
.x75_c00179{left:351.600000px;}
.x16_c00179{left:352.950000px;}
.xdf_c00179{left:356.250000px;}
.x24_c00179{left:357.750000px;}
.x35_c00179{left:359.400000px;}
.xf7_c00179{left:361.050000px;}
.x115_c00179{left:362.700000px;}
.x7e_c00179{left:364.800000px;}
.x52_c00179{left:366.000000px;}
.xfe_c00179{left:369.450000px;}
.x44_c00179{left:370.500000px;}
.x86_c00179{left:372.600000px;}
.x9_c00179{left:374.250000px;}
.xe8_c00179{left:376.800000px;}
.x25_c00179{left:379.050000px;}
.x140_c00179{left:381.150000px;}
.xf0_c00179{left:382.350000px;}
.x108_c00179{left:383.700000px;}
.x11d_c00179{left:386.850000px;}
.xc7_c00179{left:389.550000px;}
.xe0_c00179{left:391.200000px;}
.x61_c00179{left:395.400000px;}
.xe9_c00179{left:397.350000px;}
.x6c_c00179{left:398.400000px;}
.x87_c00179{left:401.100000px;}
.xa_c00179{left:402.750000px;}
.x17_c00179{left:404.400000px;}
.xb1_c00179{left:405.600000px;}
.x1_c00179{left:407.550000px;}
.x76_c00179{left:409.200000px;}
.xeb_c00179{left:411.300000px;}
.x6d_c00179{left:414.600000px;}
.x13c_c00179{left:415.650000px;}
.x62_c00179{left:416.700000px;}
.xc1_c00179{left:418.650000px;}
.xf1_c00179{left:421.200000px;}
.x109_c00179{left:422.250000px;}
.x53_c00179{left:423.600000px;}
.x36_c00179{left:425.250000px;}
.x7f_c00179{left:427.350000px;}
.xec_c00179{left:429.300000px;}
.x124_c00179{left:430.500000px;}
.xa8_c00179{left:432.150000px;}
.x99_c00179{left:433.500000px;}
.x126_c00179{left:434.550000px;}
.xc2_c00179{left:436.650000px;}
.x77_c00179{left:438.000000px;}
.x45_c00179{left:439.950000px;}
.xbc_c00179{left:441.900000px;}
.x141_c00179{left:444.900000px;}
.x54_c00179{left:446.700000px;}
.xe1_c00179{left:449.550000px;}
.xb_c00179{left:451.650000px;}
.x37_c00179{left:453.300000px;}
.x88_c00179{left:455.100000px;}
.x93_c00179{left:456.600000px;}
.x26_c00179{left:459.300000px;}
.xa9_c00179{left:461.700000px;}
.x10e_c00179{left:463.650000px;}
.x55_c00179{left:464.700000px;}
.x89_c00179{left:466.950000px;}
.xd9_c00179{left:468.000000px;}
.xf8_c00179{left:469.350000px;}
.x9a_c00179{left:470.550000px;}
.x27_c00179{left:473.700000px;}
.x12b_c00179{left:475.050000px;}
.x63_c00179{left:476.400000px;}
.x18_c00179{left:481.500000px;}
.x46_c00179{left:485.250000px;}
.x80_c00179{left:487.050000px;}
.xd2_c00179{left:488.550000px;}
.x64_c00179{left:491.100000px;}
.xda_c00179{left:492.150000px;}
.x8a_c00179{left:493.950000px;}
.x56_c00179{left:495.600000px;}
.xbd_c00179{left:496.650000px;}
.xc_c00179{left:498.450000px;}
.x28_c00179{left:501.750000px;}
.x38_c00179{left:504.750000px;}
.x142_c00179{left:506.700000px;}
.xb2_c00179{left:508.050000px;}
.x94_c00179{left:509.550000px;}
.x78_c00179{left:511.200000px;}
.x47_c00179{left:513.750000px;}
.x6e_c00179{left:517.500000px;}
.xb3_c00179{left:518.850000px;}
.xc3_c00179{left:520.500000px;}
.x29_c00179{left:521.550000px;}
.x127_c00179{left:522.750000px;}
.xaa_c00179{left:523.950000px;}
.x9b_c00179{left:526.650000px;}
.x116_c00179{left:530.400000px;}
.x81_c00179{left:533.550000px;}
.xd_c00179{left:535.500000px;}
.x57_c00179{left:537.000000px;}
.x10f_c00179{left:541.050000px;}
.x12c_c00179{left:542.700000px;}
.x65_c00179{left:544.800000px;}
.x137_c00179{left:547.200000px;}
.x79_c00179{left:548.700000px;}
.xc8_c00179{left:551.700000px;}
.xf9_c00179{left:553.350000px;}
.x2a_c00179{left:557.250000px;}
.xf2_c00179{left:558.450000px;}
.x39_c00179{left:560.250000px;}
.x110_c00179{left:562.350000px;}
.x48_c00179{left:564.150000px;}
.xc4_c00179{left:567.600000px;}
.x7a_c00179{left:568.800000px;}
.x58_c00179{left:570.900000px;}
.xfa_c00179{left:573.450000px;}
.x9c_c00179{left:575.550000px;}
.x8b_c00179{left:581.850000px;}
.xb4_c00179{left:585.900000px;}
.x2b_c00179{left:588.150000px;}
.x6f_c00179{left:589.200000px;}
.xe2_c00179{left:590.550000px;}
.xd3_c00179{left:591.900000px;}
.x128_c00179{left:594.750000px;}
.xe_c00179{left:595.950000px;}
.x9d_c00179{left:597.450000px;}
.x19_c00179{left:600.300000px;}
.xab_c00179{left:602.100000px;}
.xed_c00179{left:606.300000px;}
.x59_c00179{left:608.400000px;}
.x95_c00179{left:612.150000px;}
.x70_c00179{left:613.350000px;}
.xdb_c00179{left:615.150000px;}
.xd4_c00179{left:617.400000px;}
.xf_c00179{left:619.350000px;}
.x8c_c00179{left:621.150000px;}
.x129_c00179{left:622.500000px;}
.x49_c00179{left:623.550000px;}
.xc9_c00179{left:627.000000px;}
.x2c_c00179{left:628.500000px;}
.x5a_c00179{left:632.550000px;}
.xee_c00179{left:633.600000px;}
.xe3_c00179{left:635.850000px;}
.x3a_c00179{left:639.150000px;}
.x96_c00179{left:640.200000px;}
.x4a_c00179{left:641.250000px;}
.x12f_c00179{left:643.350000px;}
.x66_c00179{left:645.000000px;}
.x11e_c00179{left:646.200000px;}
.x10_c00179{left:648.450000px;}
.xbe_c00179{left:651.000000px;}
.x1a_c00179{left:652.500000px;}
.x132_c00179{left:654.000000px;}
.x10a_c00179{left:658.350000px;}
.x9e_c00179{left:659.700000px;}
.xb5_c00179{left:661.800000px;}
.x8d_c00179{left:663.300000px;}
.x143_c00179{left:665.400000px;}
.x82_c00179{left:667.200000px;}
.xca_c00179{left:669.900000px;}
.xac_c00179{left:671.250000px;}
.xf3_c00179{left:672.300000px;}
.x117_c00179{left:673.950000px;}
.x3b_c00179{left:675.450000px;}
.x8e_c00179{left:678.000000px;}
.x5b_c00179{left:680.100000px;}
.x111_c00179{left:683.100000px;}
.x2d_c00179{left:685.800000px;}
.xcb_c00179{left:687.900000px;}
.xd5_c00179{left:691.500000px;}
.x9f_c00179{left:693.600000px;}
.x67_c00179{left:695.400000px;}
.xa1_c00179{left:696.750000px;}
.x4b_c00179{left:698.100000px;}
.xb6_c00179{left:699.900000px;}
.x138_c00179{left:701.400000px;}
.x83_c00179{left:703.950000px;}
.x5c_c00179{left:705.300000px;}
.x2e_c00179{left:706.350000px;}
.x133_c00179{left:708.450000px;}
.x1b_c00179{left:710.100000px;}
.x3c_c00179{left:712.200000px;}
.xcc_c00179{left:713.400000px;}
.xe4_c00179{left:715.050000px;}
.xef_c00179{left:716.100000px;}
.x4c_c00179{left:717.150000px;}
.xd6_c00179{left:719.550000px;}
.x130_c00179{left:722.250000px;}
.x10b_c00179{left:723.750000px;}
.xb7_c00179{left:726.150000px;}
.x1c_c00179{left:727.350000px;}
.xc5_c00179{left:729.000000px;}
.x139_c00179{left:730.200000px;}
.x2f_c00179{left:731.850000px;}
.x68_c00179{left:733.200000px;}
.xbf_c00179{left:735.150000px;}
.x11_c00179{left:740.250000px;}
.x119_c00179{left:742.950000px;}
.x84_c00179{left:744.600000px;}
.x71_c00179{left:746.250000px;}
.x11f_c00179{left:748.800000px;}
.x13d_c00179{left:750.450000px;}
.x8f_c00179{left:751.500000px;}
.x69_c00179{left:753.750000px;}
.x11b_c00179{left:757.800000px;}
.x3d_c00179{left:759.750000px;}
.xad_c00179{left:761.550000px;}
.x144_c00179{left:763.800000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws5_c00179{word-spacing:-4.102564pt;}
.ws2_c00179{word-spacing:-3.777778pt;}
.ws6_c00179{word-spacing:-1.444444pt;}
.ws8_c00179{word-spacing:0.000000pt;}
.ws4_c00179{word-spacing:0.648803pt;}
.ws7_c00179{word-spacing:4.111111pt;}
.ws1_c00179{word-spacing:6.666667pt;}
.ws3_c00179{word-spacing:7.777778pt;}
.ws0_c00179{word-spacing:795.992393pt;}
._1_c00179{width:25.333333pt;}
._0_c00179{width:29.111111pt;}
.fs0_c00179{font-size:48.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y2c_c00179{bottom:138.266667pt;}
.y2b_c00179{bottom:175.066667pt;}
.y2a_c00179{bottom:192.666667pt;}
.y29_c00179{bottom:210.533333pt;}
.y28_c00179{bottom:228.133333pt;}
.y27_c00179{bottom:245.733333pt;}
.y26_c00179{bottom:263.200000pt;}
.y25_c00179{bottom:281.066667pt;}
.y24_c00179{bottom:298.933333pt;}
.y23_c00179{bottom:316.266667pt;}
.y22_c00179{bottom:333.866667pt;}
.y21_c00179{bottom:351.466667pt;}
.y20_c00179{bottom:368.800000pt;}
.y1f_c00179{bottom:386.666667pt;}
.y1e_c00179{bottom:404.533333pt;}
.y1d_c00179{bottom:421.866667pt;}
.y1c_c00179{bottom:439.733333pt;}
.y1b_c00179{bottom:457.333333pt;}
.y1a_c00179{bottom:474.933333pt;}
.y19_c00179{bottom:492.533333pt;}
.y18_c00179{bottom:510.533333pt;}
.y17_c00179{bottom:528.133333pt;}
.y16_c00179{bottom:545.733333pt;}
.y15_c00179{bottom:563.600000pt;}
.y14_c00179{bottom:581.200000pt;}
.y13_c00179{bottom:598.800000pt;}
.y12_c00179{bottom:616.666667pt;}
.y11_c00179{bottom:634.266667pt;}
.y10_c00179{bottom:652.133333pt;}
.yf_c00179{bottom:669.733333pt;}
.ye_c00179{bottom:687.600000pt;}
.yd_c00179{bottom:705.200000pt;}
.yc_c00179{bottom:722.800000pt;}
.yb_c00179{bottom:740.666667pt;}
.ya_c00179{bottom:758.266667pt;}
.y9_c00179{bottom:776.133333pt;}
.y8_c00179{bottom:793.733333pt;}
.y7_c00179{bottom:811.600000pt;}
.y6_c00179{bottom:829.200000pt;}
.y5_c00179{bottom:847.066667pt;}
.y4_c00179{bottom:864.400000pt;}
.y3_c00179{bottom:882.266667pt;}
.y2_c00179{bottom:900.133333pt;}
.y1_c00179{bottom:933.466667pt;}
.h2_c00179{height:48.000000pt;}
.h1_c00179{height:1038.000000pt;}
.h0_c00179{height:1038.079997pt;}
.w1_c00179{width:818.000000pt;}
.w0_c00179{width:818.239991pt;}
.x0_c00179{left:0.000000pt;}
.xf4_c00179{left:94.933333pt;}
.x2_c00179{left:96.266667pt;}
.x3e_c00179{left:107.066667pt;}
.xff_c00179{left:111.066667pt;}
.x97_c00179{left:114.666667pt;}
.xf5_c00179{left:117.600000pt;}
.x3_c00179{left:120.933333pt;}
.xdc_c00179{left:122.400000pt;}
.x4d_c00179{left:123.600000pt;}
.xe5_c00179{left:124.800000pt;}
.x1d_c00179{left:128.400000pt;}
.x104_c00179{left:130.000000pt;}
.x13a_c00179{left:131.066667pt;}
.x5d_c00179{left:132.533333pt;}
.x100_c00179{left:135.066667pt;}
.x12_c00179{left:136.800000pt;}
.x1e_c00179{left:138.666667pt;}
.x10c_c00179{left:140.400000pt;}
.x30_c00179{left:141.733333pt;}
.x134_c00179{left:142.800000pt;}
.x120_c00179{left:145.333333pt;}
.x105_c00179{left:147.866667pt;}
.x3f_c00179{left:150.533333pt;}
.x4_c00179{left:152.666667pt;}
.xb8_c00179{left:154.266667pt;}
.xae_c00179{left:158.000000pt;}
.x72_c00179{left:159.333333pt;}
.x31_c00179{left:160.666667pt;}
.xfb_c00179{left:161.600000pt;}
.x1f_c00179{left:163.600000pt;}
.x85_c00179{left:164.933333pt;}
.x5e_c00179{left:167.066667pt;}
.xa2_c00179{left:169.066667pt;}
.x5_c00179{left:170.266667pt;}
.x11c_c00179{left:171.200000pt;}
.x6a_c00179{left:172.666667pt;}
.x11a_c00179{left:174.266667pt;}
.xcd_c00179{left:175.200000pt;}
.xd7_c00179{left:176.266667pt;}
.x13b_c00179{left:178.133333pt;}
.xea_c00179{left:179.733333pt;}
.xdd_c00179{left:180.933333pt;}
.x20_c00179{left:181.866667pt;}
.x121_c00179{left:183.066667pt;}
.xce_c00179{left:184.800000pt;}
.xaf_c00179{left:185.866667pt;}
.xa3_c00179{left:187.333333pt;}
.x12d_c00179{left:189.733333pt;}
.x101_c00179{left:191.066667pt;}
.x131_c00179{left:192.000000pt;}
.x12a_c00179{left:195.066667pt;}
.x7b_c00179{left:196.000000pt;}
.x40_c00179{left:197.866667pt;}
.x13_c00179{left:199.866667pt;}
.xfc_c00179{left:201.333333pt;}
.x4e_c00179{left:202.666667pt;}
.xcf_c00179{left:203.733333pt;}
.x6_c00179{left:204.800000pt;}
.x13e_c00179{left:206.133333pt;}
.x112_c00179{left:209.066667pt;}
.x122_c00179{left:210.000000pt;}
.x135_c00179{left:211.333333pt;}
.xa4_c00179{left:212.266667pt;}
.x73_c00179{left:214.266667pt;}
.xfd_c00179{left:215.733333pt;}
.x90_c00179{left:216.666667pt;}
.xb9_c00179{left:218.933333pt;}
.x4f_c00179{left:220.933333pt;}
.xc0_c00179{left:222.000000pt;}
.x106_c00179{left:223.733333pt;}
.x14_c00179{left:224.800000pt;}
.x21_c00179{left:226.933333pt;}
.xc6_c00179{left:227.866667pt;}
.xe6_c00179{left:229.466667pt;}
.x32_c00179{left:230.800000pt;}
.x5f_c00179{left:233.066667pt;}
.x6b_c00179{left:234.800000pt;}
.x50_c00179{left:236.266667pt;}
.x41_c00179{left:237.600000pt;}
.x7c_c00179{left:239.200000pt;}
.x125_c00179{left:241.600000pt;}
.x102_c00179{left:242.933333pt;}
.x113_c00179{left:245.600000pt;}
.xd0_c00179{left:246.666667pt;}
.xe7_c00179{left:252.133333pt;}
.xa5_c00179{left:254.133333pt;}
.x123_c00179{left:255.733333pt;}
.xde_c00179{left:256.800000pt;}
.x33_c00179{left:257.733333pt;}
.x7_c00179{left:258.933333pt;}
.xd1_c00179{left:262.000000pt;}
.x42_c00179{left:263.466667pt;}
.xb0_c00179{left:265.333333pt;}
.x22_c00179{left:267.200000pt;}
.x12e_c00179{left:268.133333pt;}
.xa0_c00179{left:269.066667pt;}
.x51_c00179{left:271.200000pt;}
.x34_c00179{left:276.266667pt;}
.xa6_c00179{left:278.133333pt;}
.xd8_c00179{left:279.066667pt;}
.x7d_c00179{left:280.133333pt;}
.x91_c00179{left:281.333333pt;}
.x23_c00179{left:282.533333pt;}
.x98_c00179{left:284.933333pt;}
.x8_c00179{left:285.866667pt;}
.x136_c00179{left:287.200000pt;}
.xf6_c00179{left:288.933333pt;}
.x43_c00179{left:290.666667pt;}
.x74_c00179{left:292.000000pt;}
.xba_c00179{left:292.933333pt;}
.x114_c00179{left:294.266667pt;}
.x103_c00179{left:295.466667pt;}
.xa7_c00179{left:296.400000pt;}
.x15_c00179{left:298.666667pt;}
.x92_c00179{left:299.600000pt;}
.x10d_c00179{left:300.800000pt;}
.x60_c00179{left:301.866667pt;}
.x118_c00179{left:304.800000pt;}
.x107_c00179{left:305.866667pt;}
.x13f_c00179{left:306.800000pt;}
.xbb_c00179{left:310.266667pt;}
.x75_c00179{left:312.533333pt;}
.x16_c00179{left:313.733333pt;}
.xdf_c00179{left:316.666667pt;}
.x24_c00179{left:318.000000pt;}
.x35_c00179{left:319.466667pt;}
.xf7_c00179{left:320.933333pt;}
.x115_c00179{left:322.400000pt;}
.x7e_c00179{left:324.266667pt;}
.x52_c00179{left:325.333333pt;}
.xfe_c00179{left:328.400000pt;}
.x44_c00179{left:329.333333pt;}
.x86_c00179{left:331.200000pt;}
.x9_c00179{left:332.666667pt;}
.xe8_c00179{left:334.933333pt;}
.x25_c00179{left:336.933333pt;}
.x140_c00179{left:338.800000pt;}
.xf0_c00179{left:339.866667pt;}
.x108_c00179{left:341.066667pt;}
.x11d_c00179{left:343.866667pt;}
.xc7_c00179{left:346.266667pt;}
.xe0_c00179{left:347.733333pt;}
.x61_c00179{left:351.466667pt;}
.xe9_c00179{left:353.200000pt;}
.x6c_c00179{left:354.133333pt;}
.x87_c00179{left:356.533333pt;}
.xa_c00179{left:358.000000pt;}
.x17_c00179{left:359.466667pt;}
.xb1_c00179{left:360.533333pt;}
.x1_c00179{left:362.266667pt;}
.x76_c00179{left:363.733333pt;}
.xeb_c00179{left:365.600000pt;}
.x6d_c00179{left:368.533333pt;}
.x13c_c00179{left:369.466667pt;}
.x62_c00179{left:370.400000pt;}
.xc1_c00179{left:372.133333pt;}
.xf1_c00179{left:374.400000pt;}
.x109_c00179{left:375.333333pt;}
.x53_c00179{left:376.533333pt;}
.x36_c00179{left:378.000000pt;}
.x7f_c00179{left:379.866667pt;}
.xec_c00179{left:381.600000pt;}
.x124_c00179{left:382.666667pt;}
.xa8_c00179{left:384.133333pt;}
.x99_c00179{left:385.333333pt;}
.x126_c00179{left:386.266667pt;}
.xc2_c00179{left:388.133333pt;}
.x77_c00179{left:389.333333pt;}
.x45_c00179{left:391.066667pt;}
.xbc_c00179{left:392.800000pt;}
.x141_c00179{left:395.466667pt;}
.x54_c00179{left:397.066667pt;}
.xe1_c00179{left:399.600000pt;}
.xb_c00179{left:401.466667pt;}
.x37_c00179{left:402.933333pt;}
.x88_c00179{left:404.533333pt;}
.x93_c00179{left:405.866667pt;}
.x26_c00179{left:408.266667pt;}
.xa9_c00179{left:410.400000pt;}
.x10e_c00179{left:412.133333pt;}
.x55_c00179{left:413.066667pt;}
.x89_c00179{left:415.066667pt;}
.xd9_c00179{left:416.000000pt;}
.xf8_c00179{left:417.200000pt;}
.x9a_c00179{left:418.266667pt;}
.x27_c00179{left:421.066667pt;}
.x12b_c00179{left:422.266667pt;}
.x63_c00179{left:423.466667pt;}
.x18_c00179{left:428.000000pt;}
.x46_c00179{left:431.333333pt;}
.x80_c00179{left:432.933333pt;}
.xd2_c00179{left:434.266667pt;}
.x64_c00179{left:436.533333pt;}
.xda_c00179{left:437.466667pt;}
.x8a_c00179{left:439.066667pt;}
.x56_c00179{left:440.533333pt;}
.xbd_c00179{left:441.466667pt;}
.xc_c00179{left:443.066667pt;}
.x28_c00179{left:446.000000pt;}
.x38_c00179{left:448.666667pt;}
.x142_c00179{left:450.400000pt;}
.xb2_c00179{left:451.600000pt;}
.x94_c00179{left:452.933333pt;}
.x78_c00179{left:454.400000pt;}
.x47_c00179{left:456.666667pt;}
.x6e_c00179{left:460.000000pt;}
.xb3_c00179{left:461.200000pt;}
.xc3_c00179{left:462.666667pt;}
.x29_c00179{left:463.600000pt;}
.x127_c00179{left:464.666667pt;}
.xaa_c00179{left:465.733333pt;}
.x9b_c00179{left:468.133333pt;}
.x116_c00179{left:471.466667pt;}
.x81_c00179{left:474.266667pt;}
.xd_c00179{left:476.000000pt;}
.x57_c00179{left:477.333333pt;}
.x10f_c00179{left:480.933333pt;}
.x12c_c00179{left:482.400000pt;}
.x65_c00179{left:484.266667pt;}
.x137_c00179{left:486.400000pt;}
.x79_c00179{left:487.733333pt;}
.xc8_c00179{left:490.400000pt;}
.xf9_c00179{left:491.866667pt;}
.x2a_c00179{left:495.333333pt;}
.xf2_c00179{left:496.400000pt;}
.x39_c00179{left:498.000000pt;}
.x110_c00179{left:499.866667pt;}
.x48_c00179{left:501.466667pt;}
.xc4_c00179{left:504.533333pt;}
.x7a_c00179{left:505.600000pt;}
.x58_c00179{left:507.466667pt;}
.xfa_c00179{left:509.733333pt;}
.x9c_c00179{left:511.600000pt;}
.x8b_c00179{left:517.200000pt;}
.xb4_c00179{left:520.800000pt;}
.x2b_c00179{left:522.800000pt;}
.x6f_c00179{left:523.733333pt;}
.xe2_c00179{left:524.933333pt;}
.xd3_c00179{left:526.133333pt;}
.x128_c00179{left:528.666667pt;}
.xe_c00179{left:529.733333pt;}
.x9d_c00179{left:531.066667pt;}
.x19_c00179{left:533.600000pt;}
.xab_c00179{left:535.200000pt;}
.xed_c00179{left:538.933333pt;}
.x59_c00179{left:540.800000pt;}
.x95_c00179{left:544.133333pt;}
.x70_c00179{left:545.200000pt;}
.xdb_c00179{left:546.800000pt;}
.xd4_c00179{left:548.800000pt;}
.xf_c00179{left:550.533333pt;}
.x8c_c00179{left:552.133333pt;}
.x129_c00179{left:553.333333pt;}
.x49_c00179{left:554.266667pt;}
.xc9_c00179{left:557.333333pt;}
.x2c_c00179{left:558.666667pt;}
.x5a_c00179{left:562.266667pt;}
.xee_c00179{left:563.200000pt;}
.xe3_c00179{left:565.200000pt;}
.x3a_c00179{left:568.133333pt;}
.x96_c00179{left:569.066667pt;}
.x4a_c00179{left:570.000000pt;}
.x12f_c00179{left:571.866667pt;}
.x66_c00179{left:573.333333pt;}
.x11e_c00179{left:574.400000pt;}
.x10_c00179{left:576.400000pt;}
.xbe_c00179{left:578.666667pt;}
.x1a_c00179{left:580.000000pt;}
.x132_c00179{left:581.333333pt;}
.x10a_c00179{left:585.200000pt;}
.x9e_c00179{left:586.400000pt;}
.xb5_c00179{left:588.266667pt;}
.x8d_c00179{left:589.600000pt;}
.x143_c00179{left:591.466667pt;}
.x82_c00179{left:593.066667pt;}
.xca_c00179{left:595.466667pt;}
.xac_c00179{left:596.666667pt;}
.xf3_c00179{left:597.600000pt;}
.x117_c00179{left:599.066667pt;}
.x3b_c00179{left:600.400000pt;}
.x8e_c00179{left:602.666667pt;}
.x5b_c00179{left:604.533333pt;}
.x111_c00179{left:607.200000pt;}
.x2d_c00179{left:609.600000pt;}
.xcb_c00179{left:611.466667pt;}
.xd5_c00179{left:614.666667pt;}
.x9f_c00179{left:616.533333pt;}
.x67_c00179{left:618.133333pt;}
.xa1_c00179{left:619.333333pt;}
.x4b_c00179{left:620.533333pt;}
.xb6_c00179{left:622.133333pt;}
.x138_c00179{left:623.466667pt;}
.x83_c00179{left:625.733333pt;}
.x5c_c00179{left:626.933333pt;}
.x2e_c00179{left:627.866667pt;}
.x133_c00179{left:629.733333pt;}
.x1b_c00179{left:631.200000pt;}
.x3c_c00179{left:633.066667pt;}
.xcc_c00179{left:634.133333pt;}
.xe4_c00179{left:635.600000pt;}
.xef_c00179{left:636.533333pt;}
.x4c_c00179{left:637.466667pt;}
.xd6_c00179{left:639.600000pt;}
.x130_c00179{left:642.000000pt;}
.x10b_c00179{left:643.333333pt;}
.xb7_c00179{left:645.466667pt;}
.x1c_c00179{left:646.533333pt;}
.xc5_c00179{left:648.000000pt;}
.x139_c00179{left:649.066667pt;}
.x2f_c00179{left:650.533333pt;}
.x68_c00179{left:651.733333pt;}
.xbf_c00179{left:653.466667pt;}
.x11_c00179{left:658.000000pt;}
.x119_c00179{left:660.400000pt;}
.x84_c00179{left:661.866667pt;}
.x71_c00179{left:663.333333pt;}
.x11f_c00179{left:665.600000pt;}
.x13d_c00179{left:667.066667pt;}
.x8f_c00179{left:668.000000pt;}
.x69_c00179{left:670.000000pt;}
.x11b_c00179{left:673.600000pt;}
.x3d_c00179{left:675.333333pt;}
.xad_c00179{left:676.933333pt;}
.x144_c00179{left:678.933333pt;}
}





/* 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_c00180 {
    display:none;
  }
  .loading-indicator_c00180.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00180 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_c00180 { 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_c00180" -> "#page-container .classname_c00180")
 */
.pf_c00180 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00180 { /* 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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00180 { /* 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_c00180 { /* 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_c00180 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00180 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00180 {overflow:visible;}
  }
}
.c_c00180 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00180 { /* 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_c00180:after { /* webkit #35443 */
  content: '';
}
.t_c00180:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00180 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 */
}
.__c00180 { /* 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_c00180 { /* info for Javascript */
  display:none;
}
.l_c00180 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00180 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00180 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00180: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_c00180 {
    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_c00180.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00180.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_c00180 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00180{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00180;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.000000;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;}
.m6b_c00180{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00180{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00180{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00180{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00180{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00180{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00180{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00180{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00180{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00180{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m84_c00180{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mae_c00180{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m81_c00180{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mac_c00180{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00180{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00180{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00180{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00180{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mab_c00180{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00180{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00180{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m92_c00180{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00180{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00180{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m88_c00180{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m93_c00180{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2_c00180{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00180{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00180{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00180{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00180{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m97_c00180{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00180{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00180{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00180{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00180{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m89_c00180{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00180{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m52_c00180{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00180{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00180{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00180{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m63_c00180{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m86_c00180{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m91_c00180{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00180{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m46_c00180{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m74_c00180{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m49_c00180{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m95_c00180{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m68_c00180{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00180{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00180{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m90_c00180{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00180{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m94_c00180{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m57_c00180{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m48_c00180{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00180{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m96_c00180{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m39_c00180{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m82_c00180{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00180{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m98_c00180{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00180{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.maa_c00180{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m19_c00180{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00180{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m72_c00180{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m67_c00180{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00180{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00180{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m78_c00180{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m83_c00180{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m70_c00180{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m30_c00180{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00180{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00180{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00180{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5_c00180{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00180{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m75_c00180{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00180{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m38_c00180{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m62_c00180{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{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);}
.m42_c00180{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00180{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00180{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00180{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m79_c00180{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m31_c00180{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m59_c00180{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00180{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00180{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00180{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00180{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m69_c00180{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00180{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.maf_c00180{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m11_c00180{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00180{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m71_c00180{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00180{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00180{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m20_c00180{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m80_c00180{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00180{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mba_c00180{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m28_c00180{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m23_c00180{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m45_c00180{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00180{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00180{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00180{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m73_c00180{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00180{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00180{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00180{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00180{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00180{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c00180{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00180{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00180{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m44_c00180{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m41_c00180{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00180{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00180{vertical-align:0.000000px;}
.ls0_c00180{letter-spacing:0.000000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{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__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10_c00180{word-spacing:-12.618523px;}
.wsc_c00180{word-spacing:-7.500000px;}
.wsf_c00180{word-spacing:-7.250000px;}
.ws9_c00180{word-spacing:-5.682287px;}
.wse_c00180{word-spacing:-3.750000px;}
.wsb_c00180{word-spacing:-1.500000px;}
.ws11_c00180{word-spacing:0.000000px;}
.ws5_c00180{word-spacing:0.250000px;}
.ws2_c00180{word-spacing:1.500000px;}
.ws7_c00180{word-spacing:2.750000px;}
.ws0_c00180{word-spacing:2.761012px;}
.ws6_c00180{word-spacing:4.625000px;}
.ws8_c00180{word-spacing:7.643881px;}
.ws1_c00180{word-spacing:7.716648px;}
.ws4_c00180{word-spacing:7.750000px;}
.ws3_c00180{word-spacing:10.500000px;}
.wsa_c00180{word-spacing:19.000000px;}
.wsd_c00180{word-spacing:48.250000px;}
.fc0_c00180{color:transparent;}
.fs0_c00180{font-size:54.000000px;}
.y0_c00180{bottom:0.000000px;}
.y30_c00180{bottom:148.050000px;}
.y2f_c00180{bottom:163.500000px;}
.y2e_c00180{bottom:179.400000px;}
.y2d_c00180{bottom:194.850000px;}
.y2c_c00180{bottom:210.750000px;}
.y2b_c00180{bottom:226.650000px;}
.y2a_c00180{bottom:242.550000px;}
.y29_c00180{bottom:258.000000px;}
.y28_c00180{bottom:273.900000px;}
.y27_c00180{bottom:289.350000px;}
.y26_c00180{bottom:304.800000px;}
.y25_c00180{bottom:320.700000px;}
.y24_c00180{bottom:336.150000px;}
.y23_c00180{bottom:352.050000px;}
.y22_c00180{bottom:367.500000px;}
.y21_c00180{bottom:382.350000px;}
.y20_c00180{bottom:398.850000px;}
.y1f_c00180{bottom:414.750000px;}
.y1e_c00180{bottom:429.900000px;}
.y1d_c00180{bottom:445.350000px;}
.y1c_c00180{bottom:485.400000px;}
.y1b_c00180{bottom:505.500000px;}
.y1a_c00180{bottom:525.600000px;}
.y19_c00180{bottom:545.400000px;}
.y18_c00180{bottom:565.200000px;}
.y17_c00180{bottom:585.000000px;}
.y16_c00180{bottom:605.100000px;}
.y15_c00180{bottom:624.900000px;}
.y14_c00180{bottom:648.000000px;}
.y13_c00180{bottom:664.950000px;}
.y12_c00180{bottom:684.750000px;}
.y11_c00180{bottom:704.850000px;}
.y10_c00180{bottom:724.650000px;}
.yf_c00180{bottom:744.450000px;}
.ye_c00180{bottom:764.250000px;}
.yd_c00180{bottom:784.800000px;}
.yc_c00180{bottom:804.900000px;}
.yb_c00180{bottom:824.550000px;}
.ya_c00180{bottom:844.650000px;}
.y9_c00180{bottom:864.750000px;}
.y8_c00180{bottom:884.550000px;}
.y7_c00180{bottom:904.650000px;}
.y6_c00180{bottom:924.150000px;}
.y5_c00180{bottom:944.250000px;}
.y4_c00180{bottom:964.200000px;}
.y3_c00180{bottom:984.300000px;}
.y2_c00180{bottom:1004.400000px;}
.y1_c00180{bottom:1042.500000px;}
.h2_c00180{height:54.000000px;}
.h1_c00180{height:1167.750000px;}
.h0_c00180{height:1167.839997px;}
.w1_c00180{width:920.250000px;}
.w0_c00180{width:920.519990px;}
.x0_c00180{left:0.000000px;}
.x109_c00180{left:150.150000px;}
.x42_c00180{left:151.500000px;}
.x4e_c00180{left:153.000000px;}
.x3_c00180{left:154.500000px;}
.x1_c00180{left:156.300000px;}
.x147_c00180{left:164.850000px;}
.x11e_c00180{left:167.700000px;}
.x8a_c00180{left:171.450000px;}
.xe4_c00180{left:174.000000px;}
.x63_c00180{left:175.350000px;}
.x103_c00180{left:177.150000px;}
.xdc_c00180{left:178.950000px;}
.xeb_c00180{left:180.450000px;}
.x132_c00180{left:182.100000px;}
.x43_c00180{left:183.150000px;}
.x8e_c00180{left:184.650000px;}
.x28_c00180{left:185.700000px;}
.xa4_c00180{left:188.100000px;}
.x138_c00180{left:190.500000px;}
.xb4_c00180{left:192.150000px;}
.x125_c00180{left:194.700000px;}
.x104_c00180{left:199.500000px;}
.x11f_c00180{left:200.850000px;}
.x8b_c00180{left:202.800000px;}
.x14_c00180{left:203.850000px;}
.x24_c00180{left:207.000000px;}
.x116_c00180{left:208.050000px;}
.x29_c00180{left:209.100000px;}
.xcb_c00180{left:212.400000px;}
.xf1_c00180{left:214.050000px;}
.x128_c00180{left:216.300000px;}
.xdd_c00180{left:217.500000px;}
.x38_c00180{left:219.750000px;}
.xfa_c00180{left:223.650000px;}
.xd1_c00180{left:226.200000px;}
.x59_c00180{left:228.150000px;}
.x4_c00180{left:230.100000px;}
.x13b_c00180{left:232.200000px;}
.x6e_c00180{left:233.400000px;}
.x140_c00180{left:235.350000px;}
.x2a_c00180{left:237.150000px;}
.xd7_c00180{left:239.250000px;}
.x15_c00180{left:240.900000px;}
.x12b_c00180{left:242.550000px;}
.xab_c00180{left:244.800000px;}
.xc2_c00180{left:246.150000px;}
.xd2_c00180{left:247.500000px;}
.x99_c00180{left:254.400000px;}
.x5_c00180{left:257.100000px;}
.x25_c00180{left:258.450000px;}
.x148_c00180{left:262.800000px;}
.xec_c00180{left:264.000000px;}
.x4f_c00180{left:265.350000px;}
.xb5_c00180{left:266.700000px;}
.x8f_c00180{left:269.250000px;}
.x39_c00180{left:271.200000px;}
.x64_c00180{left:272.550000px;}
.x72_c00180{left:274.950000px;}
.x80_c00180{left:276.900000px;}
.x112_c00180{left:279.000000px;}
.x90_c00180{left:280.800000px;}
.x2b_c00180{left:281.850000px;}
.xed_c00180{left:283.500000px;}
.x6_c00180{left:284.850000px;}
.xfb_c00180{left:286.350000px;}
.x8c_c00180{left:287.400000px;}
.x16_c00180{left:289.200000px;}
.x10a_c00180{left:291.000000px;}
.xe5_c00180{left:292.050000px;}
.x117_c00180{left:293.400000px;}
.x26_c00180{left:299.100000px;}
.x44_c00180{left:300.450000px;}
.x13c_c00180{left:302.700000px;}
.x50_c00180{left:303.750000px;}
.x142_c00180{left:305.400000px;}
.x6f_c00180{left:306.450000px;}
.xd3_c00180{left:308.400000px;}
.x118_c00180{left:309.600000px;}
.x81_c00180{left:311.100000px;}
.xee_c00180{left:313.050000px;}
.x17_c00180{left:316.200000px;}
.x3a_c00180{left:317.250000px;}
.x73_c00180{left:319.650000px;}
.x45_c00180{left:321.000000px;}
.x143_c00180{left:322.650000px;}
.xde_c00180{left:324.450000px;}
.x7_c00180{left:325.950000px;}
.x5a_c00180{left:328.500000px;}
.x139_c00180{left:331.200000px;}
.xac_c00180{left:332.250000px;}
.x91_c00180{left:333.750000px;}
.x65_c00180{left:335.850000px;}
.x70_c00180{left:337.350000px;}
.xf8_c00180{left:339.000000px;}
.xf2_c00180{left:341.250000px;}
.x18_c00180{left:344.700000px;}
.xb6_c00180{left:346.050000px;}
.xe6_c00180{left:347.100000px;}
.xb9_c00180{left:348.300000px;}
.x46_c00180{left:349.800000px;}
.x9a_c00180{left:352.350000px;}
.x2c_c00180{left:353.550000px;}
.x74_c00180{left:354.900000px;}
.x119_c00180{left:356.100000px;}
.x27_c00180{left:357.450000px;}
.x19_c00180{left:360.150000px;}
.x51_c00180{left:361.650000px;}
.x10b_c00180{left:363.000000px;}
.x8d_c00180{left:364.500000px;}
.x8_c00180{left:367.050000px;}
.xa5_c00180{left:368.850000px;}
.xf3_c00180{left:370.050000px;}
.x3b_c00180{left:371.550000px;}
.x66_c00180{left:372.900000px;}
.x113_c00180{left:375.450000px;}
.x10c_c00180{left:376.650000px;}
.xe7_c00180{left:381.000000px;}
.x75_c00180{left:382.950000px;}
.x13d_c00180{left:385.050000px;}
.x1a_c00180{left:386.400000px;}
.xba_c00180{left:391.200000px;}
.x67_c00180{left:394.500000px;}
.xad_c00180{left:396.750000px;}
.xdf_c00180{left:399.750000px;}
.x9_c00180{left:400.950000px;}
.x47_c00180{left:402.300000px;}
.x9b_c00180{left:403.950000px;}
.x2d_c00180{left:405.450000px;}
.x133_c00180{left:406.800000px;}
.xe8_c00180{left:408.000000px;}
.xb7_c00180{left:411.150000px;}
.x52_c00180{left:414.150000px;}
.x3c_c00180{left:416.550000px;}
.xf4_c00180{left:417.900000px;}
.x82_c00180{left:419.700000px;}
.x5b_c00180{left:420.750000px;}
.xbb_c00180{left:422.550000px;}
.x92_c00180{left:423.750000px;}
.x76_c00180{left:427.950000px;}
.xe9_c00180{left:429.300000px;}
.xe0_c00180{left:431.400000px;}
.x120_c00180{left:432.600000px;}
.x3d_c00180{left:433.800000px;}
.x2e_c00180{left:435.300000px;}
.xa_c00180{left:438.750000px;}
.xa6_c00180{left:441.150000px;}
.xcc_c00180{left:442.500000px;}
.xc3_c00180{left:444.150000px;}
.x53_c00180{left:445.500000px;}
.x77_c00180{left:447.450000px;}
.x114_c00180{left:449.250000px;}
.x71_c00180{left:452.100000px;}
.x13e_c00180{left:453.900000px;}
.x2_c00180{left:457.200000px;}
.x1b_c00180{left:458.400000px;}
.xea_c00180{left:460.950000px;}
.x83_c00180{left:464.400000px;}
.xb_c00180{left:465.450000px;}
.x5c_c00180{left:466.800000px;}
.xcd_c00180{left:469.800000px;}
.x68_c00180{left:471.900000px;}
.xc4_c00180{left:473.700000px;}
.x9c_c00180{left:477.750000px;}
.xbc_c00180{left:481.200000px;}
.x48_c00180{left:482.550000px;}
.xe1_c00180{left:485.700000px;}
.x54_c00180{left:487.650000px;}
.x5d_c00180{left:490.950000px;}
.x134_c00180{left:492.450000px;}
.x10f_c00180{left:493.950000px;}
.xfc_c00180{left:495.300000px;}
.x78_c00180{left:496.800000px;}
.xef_c00180{left:503.100000px;}
.x105_c00180{left:506.250000px;}
.xae_c00180{left:508.050000px;}
.xb8_c00180{left:510.900000px;}
.x2f_c00180{left:511.950000px;}
.x129_c00180{left:513.750000px;}
.x9d_c00180{left:514.800000px;}
.x144_c00180{left:517.200000px;}
.x84_c00180{left:518.700000px;}
.x93_c00180{left:519.750000px;}
.x3e_c00180{left:520.950000px;}
.x115_c00180{left:522.000000px;}
.xfd_c00180{left:524.100000px;}
.x5e_c00180{left:526.200000px;}
.x79_c00180{left:528.150000px;}
.x11a_c00180{left:529.200000px;}
.xc_c00180{left:531.000000px;}
.x55_c00180{left:532.350000px;}
.x30_c00180{left:534.300000px;}
.x1c_c00180{left:536.550000px;}
.xaf_c00180{left:538.350000px;}
.x3f_c00180{left:540.750000px;}
.x5f_c00180{left:543.450000px;}
.x12f_c00180{left:544.650000px;}
.x121_c00180{left:546.750000px;}
.x12c_c00180{left:548.100000px;}
.xd_c00180{left:550.800000px;}
.x94_c00180{left:551.850000px;}
.x69_c00180{left:553.200000px;}
.x1d_c00180{left:554.250000px;}
.x7a_c00180{left:556.950000px;}
.xfe_c00180{left:558.000000px;}
.x49_c00180{left:559.950000px;}
.xb0_c00180{left:561.000000px;}
.x9e_c00180{left:563.400000px;}
.x1e_c00180{left:566.550000px;}
.xd4_c00180{left:567.900000px;}
.xa7_c00180{left:569.400000px;}
.x149_c00180{left:570.600000px;}
.x85_c00180{left:572.400000px;}
.x135_c00180{left:574.650000px;}
.xbd_c00180{left:575.850000px;}
.xe_c00180{left:578.850000px;}
.xe2_c00180{left:581.100000px;}
.x31_c00180{left:582.600000px;}
.xa8_c00180{left:584.100000px;}
.x95_c00180{left:586.050000px;}
.xd8_c00180{left:588.000000px;}
.xb1_c00180{left:589.050000px;}
.x127_c00180{left:591.900000px;}
.xc5_c00180{left:592.950000px;}
.x10d_c00180{left:594.450000px;}
.xf_c00180{left:598.350000px;}
.x130_c00180{left:600.750000px;}
.x32_c00180{left:602.700000px;}
.x11b_c00180{left:603.750000px;}
.xff_c00180{left:604.800000px;}
.x12a_c00180{left:606.900000px;}
.x6a_c00180{left:609.300000px;}
.xc6_c00180{left:612.750000px;}
.x60_c00180{left:615.450000px;}
.x4a_c00180{left:616.800000px;}
.xd9_c00180{left:617.850000px;}
.x7b_c00180{left:620.700000px;}
.xd5_c00180{left:624.000000px;}
.x10_c00180{left:625.650000px;}
.xbe_c00180{left:626.700000px;}
.xce_c00180{left:628.500000px;}
.xda_c00180{left:629.700000px;}
.x33_c00180{left:632.550000px;}
.x1f_c00180{left:634.950000px;}
.x4b_c00180{left:636.600000px;}
.xc7_c00180{left:640.800000px;}
.xd6_c00180{left:642.000000px;}
.x56_c00180{left:643.950000px;}
.xf5_c00180{left:645.150000px;}
.x100_c00180{left:646.200000px;}
.xb2_c00180{left:648.150000px;}
.x9f_c00180{left:649.350000px;}
.xa9_c00180{left:650.700000px;}
.x13f_c00180{left:652.350000px;}
.x106_c00180{left:657.600000px;}
.x86_c00180{left:659.100000px;}
.x6b_c00180{left:660.750000px;}
.x10e_c00180{left:662.100000px;}
.x126_c00180{left:663.600000px;}
.x4c_c00180{left:664.650000px;}
.x96_c00180{left:666.300000px;}
.x122_c00180{left:668.100000px;}
.xdb_c00180{left:669.300000px;}
.xf0_c00180{left:670.950000px;}
.x11_c00180{left:673.200000px;}
.xf6_c00180{left:675.000000px;}
.x20_c00180{left:676.050000px;}
.xa0_c00180{left:678.150000px;}
.x136_c00180{left:680.100000px;}
.x61_c00180{left:681.450000px;}
.x7c_c00180{left:683.400000px;}
.x34_c00180{left:686.550000px;}
.x110_c00180{left:689.100000px;}
.x123_c00180{left:691.800000px;}
.x21_c00180{left:695.850000px;}
.x57_c00180{left:697.650000px;}
.xf9_c00180{left:699.750000px;}
.xbf_c00180{left:701.250000px;}
.x107_c00180{left:704.400000px;}
.x145_c00180{left:705.450000px;}
.x87_c00180{left:706.500000px;}
.xcf_c00180{left:708.750000px;}
.x62_c00180{left:711.000000px;}
.x12_c00180{left:712.050000px;}
.x13a_c00180{left:715.800000px;}
.xa1_c00180{left:717.000000px;}
.x124_c00180{left:718.800000px;}
.x35_c00180{left:720.450000px;}
.x97_c00180{left:722.100000px;}
.x146_c00180{left:723.150000px;}
.x22_c00180{left:724.650000px;}
.x88_c00180{left:728.400000px;}
.x12d_c00180{left:729.900000px;}
.x7d_c00180{left:732.000000px;}
.xf7_c00180{left:733.650000px;}
.xb3_c00180{left:736.050000px;}
.xc8_c00180{left:737.400000px;}
.xaa_c00180{left:739.050000px;}
.x6c_c00180{left:741.000000px;}
.x4d_c00180{left:745.200000px;}
.x13_c00180{left:747.000000px;}
.xe3_c00180{left:748.800000px;}
.xa2_c00180{left:750.450000px;}
.x101_c00180{left:753.150000px;}
.x7e_c00180{left:754.650000px;}
.x11c_c00180{left:756.000000px;}
.x12e_c00180{left:761.550000px;}
.x6d_c00180{left:763.650000px;}
.xc9_c00180{left:766.950000px;}
.x98_c00180{left:768.150000px;}
.x108_c00180{left:771.000000px;}
.xa3_c00180{left:772.050000px;}
.x58_c00180{left:774.000000px;}
.x7f_c00180{left:775.200000px;}
.xd0_c00180{left:780.000000px;}
.x40_c00180{left:782.550000px;}
.xc0_c00180{left:783.600000px;}
.x36_c00180{left:787.050000px;}
.x23_c00180{left:788.700000px;}
.x131_c00180{left:791.250000px;}
.x11d_c00180{left:793.050000px;}
.x41_c00180{left:794.850000px;}
.xca_c00180{left:796.050000px;}
.xc1_c00180{left:799.800000px;}
.x137_c00180{left:801.000000px;}
.x89_c00180{left:802.950000px;}
.x111_c00180{left:808.200000px;}
.x37_c00180{left:809.700000px;}
.x102_c00180{left:811.800000px;}
.x141_c00180{left:816.150000px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls0_c00180{letter-spacing:0.000000pt;}
.ws10_c00180{word-spacing:-11.216465pt;}
.wsc_c00180{word-spacing:-6.666667pt;}
.wsf_c00180{word-spacing:-6.444444pt;}
.ws9_c00180{word-spacing:-5.050922pt;}
.wse_c00180{word-spacing:-3.333333pt;}
.wsb_c00180{word-spacing:-1.333333pt;}
.ws11_c00180{word-spacing:0.000000pt;}
.ws5_c00180{word-spacing:0.222222pt;}
.ws2_c00180{word-spacing:1.333333pt;}
.ws7_c00180{word-spacing:2.444444pt;}
.ws0_c00180{word-spacing:2.454233pt;}
.ws6_c00180{word-spacing:4.111111pt;}
.ws8_c00180{word-spacing:6.794561pt;}
.ws1_c00180{word-spacing:6.859243pt;}
.ws4_c00180{word-spacing:6.888889pt;}
.ws3_c00180{word-spacing:9.333333pt;}
.wsa_c00180{word-spacing:16.888889pt;}
.wsd_c00180{word-spacing:42.888889pt;}
.fs0_c00180{font-size:48.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y30_c00180{bottom:131.600000pt;}
.y2f_c00180{bottom:145.333333pt;}
.y2e_c00180{bottom:159.466667pt;}
.y2d_c00180{bottom:173.200000pt;}
.y2c_c00180{bottom:187.333333pt;}
.y2b_c00180{bottom:201.466667pt;}
.y2a_c00180{bottom:215.600000pt;}
.y29_c00180{bottom:229.333333pt;}
.y28_c00180{bottom:243.466667pt;}
.y27_c00180{bottom:257.200000pt;}
.y26_c00180{bottom:270.933333pt;}
.y25_c00180{bottom:285.066667pt;}
.y24_c00180{bottom:298.800000pt;}
.y23_c00180{bottom:312.933333pt;}
.y22_c00180{bottom:326.666667pt;}
.y21_c00180{bottom:339.866667pt;}
.y20_c00180{bottom:354.533333pt;}
.y1f_c00180{bottom:368.666667pt;}
.y1e_c00180{bottom:382.133333pt;}
.y1d_c00180{bottom:395.866667pt;}
.y1c_c00180{bottom:431.466667pt;}
.y1b_c00180{bottom:449.333333pt;}
.y1a_c00180{bottom:467.200000pt;}
.y19_c00180{bottom:484.800000pt;}
.y18_c00180{bottom:502.400000pt;}
.y17_c00180{bottom:520.000000pt;}
.y16_c00180{bottom:537.866667pt;}
.y15_c00180{bottom:555.466667pt;}
.y14_c00180{bottom:576.000000pt;}
.y13_c00180{bottom:591.066667pt;}
.y12_c00180{bottom:608.666667pt;}
.y11_c00180{bottom:626.533333pt;}
.y10_c00180{bottom:644.133333pt;}
.yf_c00180{bottom:661.733333pt;}
.ye_c00180{bottom:679.333333pt;}
.yd_c00180{bottom:697.600000pt;}
.yc_c00180{bottom:715.466667pt;}
.yb_c00180{bottom:732.933333pt;}
.ya_c00180{bottom:750.800000pt;}
.y9_c00180{bottom:768.666667pt;}
.y8_c00180{bottom:786.266667pt;}
.y7_c00180{bottom:804.133333pt;}
.y6_c00180{bottom:821.466667pt;}
.y5_c00180{bottom:839.333333pt;}
.y4_c00180{bottom:857.066667pt;}
.y3_c00180{bottom:874.933333pt;}
.y2_c00180{bottom:892.800000pt;}
.y1_c00180{bottom:926.666667pt;}
.h2_c00180{height:48.000000pt;}
.h1_c00180{height:1038.000000pt;}
.h0_c00180{height:1038.079997pt;}
.w1_c00180{width:818.000000pt;}
.w0_c00180{width:818.239991pt;}
.x0_c00180{left:0.000000pt;}
.x109_c00180{left:133.466667pt;}
.x42_c00180{left:134.666667pt;}
.x4e_c00180{left:136.000000pt;}
.x3_c00180{left:137.333333pt;}
.x1_c00180{left:138.933333pt;}
.x147_c00180{left:146.533333pt;}
.x11e_c00180{left:149.066667pt;}
.x8a_c00180{left:152.400000pt;}
.xe4_c00180{left:154.666667pt;}
.x63_c00180{left:155.866667pt;}
.x103_c00180{left:157.466667pt;}
.xdc_c00180{left:159.066667pt;}
.xeb_c00180{left:160.400000pt;}
.x132_c00180{left:161.866667pt;}
.x43_c00180{left:162.800000pt;}
.x8e_c00180{left:164.133333pt;}
.x28_c00180{left:165.066667pt;}
.xa4_c00180{left:167.200000pt;}
.x138_c00180{left:169.333333pt;}
.xb4_c00180{left:170.800000pt;}
.x125_c00180{left:173.066667pt;}
.x104_c00180{left:177.333333pt;}
.x11f_c00180{left:178.533333pt;}
.x8b_c00180{left:180.266667pt;}
.x14_c00180{left:181.200000pt;}
.x24_c00180{left:184.000000pt;}
.x116_c00180{left:184.933333pt;}
.x29_c00180{left:185.866667pt;}
.xcb_c00180{left:188.800000pt;}
.xf1_c00180{left:190.266667pt;}
.x128_c00180{left:192.266667pt;}
.xdd_c00180{left:193.333333pt;}
.x38_c00180{left:195.333333pt;}
.xfa_c00180{left:198.800000pt;}
.xd1_c00180{left:201.066667pt;}
.x59_c00180{left:202.800000pt;}
.x4_c00180{left:204.533333pt;}
.x13b_c00180{left:206.400000pt;}
.x6e_c00180{left:207.466667pt;}
.x140_c00180{left:209.200000pt;}
.x2a_c00180{left:210.800000pt;}
.xd7_c00180{left:212.666667pt;}
.x15_c00180{left:214.133333pt;}
.x12b_c00180{left:215.600000pt;}
.xab_c00180{left:217.600000pt;}
.xc2_c00180{left:218.800000pt;}
.xd2_c00180{left:220.000000pt;}
.x99_c00180{left:226.133333pt;}
.x5_c00180{left:228.533333pt;}
.x25_c00180{left:229.733333pt;}
.x148_c00180{left:233.600000pt;}
.xec_c00180{left:234.666667pt;}
.x4f_c00180{left:235.866667pt;}
.xb5_c00180{left:237.066667pt;}
.x8f_c00180{left:239.333333pt;}
.x39_c00180{left:241.066667pt;}
.x64_c00180{left:242.266667pt;}
.x72_c00180{left:244.400000pt;}
.x80_c00180{left:246.133333pt;}
.x112_c00180{left:248.000000pt;}
.x90_c00180{left:249.600000pt;}
.x2b_c00180{left:250.533333pt;}
.xed_c00180{left:252.000000pt;}
.x6_c00180{left:253.200000pt;}
.xfb_c00180{left:254.533333pt;}
.x8c_c00180{left:255.466667pt;}
.x16_c00180{left:257.066667pt;}
.x10a_c00180{left:258.666667pt;}
.xe5_c00180{left:259.600000pt;}
.x117_c00180{left:260.800000pt;}
.x26_c00180{left:265.866667pt;}
.x44_c00180{left:267.066667pt;}
.x13c_c00180{left:269.066667pt;}
.x50_c00180{left:270.000000pt;}
.x142_c00180{left:271.466667pt;}
.x6f_c00180{left:272.400000pt;}
.xd3_c00180{left:274.133333pt;}
.x118_c00180{left:275.200000pt;}
.x81_c00180{left:276.533333pt;}
.xee_c00180{left:278.266667pt;}
.x17_c00180{left:281.066667pt;}
.x3a_c00180{left:282.000000pt;}
.x73_c00180{left:284.133333pt;}
.x45_c00180{left:285.333333pt;}
.x143_c00180{left:286.800000pt;}
.xde_c00180{left:288.400000pt;}
.x7_c00180{left:289.733333pt;}
.x5a_c00180{left:292.000000pt;}
.x139_c00180{left:294.400000pt;}
.xac_c00180{left:295.333333pt;}
.x91_c00180{left:296.666667pt;}
.x65_c00180{left:298.533333pt;}
.x70_c00180{left:299.866667pt;}
.xf8_c00180{left:301.333333pt;}
.xf2_c00180{left:303.333333pt;}
.x18_c00180{left:306.400000pt;}
.xb6_c00180{left:307.600000pt;}
.xe6_c00180{left:308.533333pt;}
.xb9_c00180{left:309.600000pt;}
.x46_c00180{left:310.933333pt;}
.x9a_c00180{left:313.200000pt;}
.x2c_c00180{left:314.266667pt;}
.x74_c00180{left:315.466667pt;}
.x119_c00180{left:316.533333pt;}
.x27_c00180{left:317.733333pt;}
.x19_c00180{left:320.133333pt;}
.x51_c00180{left:321.466667pt;}
.x10b_c00180{left:322.666667pt;}
.x8d_c00180{left:324.000000pt;}
.x8_c00180{left:326.266667pt;}
.xa5_c00180{left:327.866667pt;}
.xf3_c00180{left:328.933333pt;}
.x3b_c00180{left:330.266667pt;}
.x66_c00180{left:331.466667pt;}
.x113_c00180{left:333.733333pt;}
.x10c_c00180{left:334.800000pt;}
.xe7_c00180{left:338.666667pt;}
.x75_c00180{left:340.400000pt;}
.x13d_c00180{left:342.266667pt;}
.x1a_c00180{left:343.466667pt;}
.xba_c00180{left:347.733333pt;}
.x67_c00180{left:350.666667pt;}
.xad_c00180{left:352.666667pt;}
.xdf_c00180{left:355.333333pt;}
.x9_c00180{left:356.400000pt;}
.x47_c00180{left:357.600000pt;}
.x9b_c00180{left:359.066667pt;}
.x2d_c00180{left:360.400000pt;}
.x133_c00180{left:361.600000pt;}
.xe8_c00180{left:362.666667pt;}
.xb7_c00180{left:365.466667pt;}
.x52_c00180{left:368.133333pt;}
.x3c_c00180{left:370.266667pt;}
.xf4_c00180{left:371.466667pt;}
.x82_c00180{left:373.066667pt;}
.x5b_c00180{left:374.000000pt;}
.xbb_c00180{left:375.600000pt;}
.x92_c00180{left:376.666667pt;}
.x76_c00180{left:380.400000pt;}
.xe9_c00180{left:381.600000pt;}
.xe0_c00180{left:383.466667pt;}
.x120_c00180{left:384.533333pt;}
.x3d_c00180{left:385.600000pt;}
.x2e_c00180{left:386.933333pt;}
.xa_c00180{left:390.000000pt;}
.xa6_c00180{left:392.133333pt;}
.xcc_c00180{left:393.333333pt;}
.xc3_c00180{left:394.800000pt;}
.x53_c00180{left:396.000000pt;}
.x77_c00180{left:397.733333pt;}
.x114_c00180{left:399.333333pt;}
.x71_c00180{left:401.866667pt;}
.x13e_c00180{left:403.466667pt;}
.x2_c00180{left:406.400000pt;}
.x1b_c00180{left:407.466667pt;}
.xea_c00180{left:409.733333pt;}
.x83_c00180{left:412.800000pt;}
.xb_c00180{left:413.733333pt;}
.x5c_c00180{left:414.933333pt;}
.xcd_c00180{left:417.600000pt;}
.x68_c00180{left:419.466667pt;}
.xc4_c00180{left:421.066667pt;}
.x9c_c00180{left:424.666667pt;}
.xbc_c00180{left:427.733333pt;}
.x48_c00180{left:428.933333pt;}
.xe1_c00180{left:431.733333pt;}
.x54_c00180{left:433.466667pt;}
.x5d_c00180{left:436.400000pt;}
.x134_c00180{left:437.733333pt;}
.x10f_c00180{left:439.066667pt;}
.xfc_c00180{left:440.266667pt;}
.x78_c00180{left:441.600000pt;}
.xef_c00180{left:447.200000pt;}
.x105_c00180{left:450.000000pt;}
.xae_c00180{left:451.600000pt;}
.xb8_c00180{left:454.133333pt;}
.x2f_c00180{left:455.066667pt;}
.x129_c00180{left:456.666667pt;}
.x9d_c00180{left:457.600000pt;}
.x144_c00180{left:459.733333pt;}
.x84_c00180{left:461.066667pt;}
.x93_c00180{left:462.000000pt;}
.x3e_c00180{left:463.066667pt;}
.x115_c00180{left:464.000000pt;}
.xfd_c00180{left:465.866667pt;}
.x5e_c00180{left:467.733333pt;}
.x79_c00180{left:469.466667pt;}
.x11a_c00180{left:470.400000pt;}
.xc_c00180{left:472.000000pt;}
.x55_c00180{left:473.200000pt;}
.x30_c00180{left:474.933333pt;}
.x1c_c00180{left:476.933333pt;}
.xaf_c00180{left:478.533333pt;}
.x3f_c00180{left:480.666667pt;}
.x5f_c00180{left:483.066667pt;}
.x12f_c00180{left:484.133333pt;}
.x121_c00180{left:486.000000pt;}
.x12c_c00180{left:487.200000pt;}
.xd_c00180{left:489.600000pt;}
.x94_c00180{left:490.533333pt;}
.x69_c00180{left:491.733333pt;}
.x1d_c00180{left:492.666667pt;}
.x7a_c00180{left:495.066667pt;}
.xfe_c00180{left:496.000000pt;}
.x49_c00180{left:497.733333pt;}
.xb0_c00180{left:498.666667pt;}
.x9e_c00180{left:500.800000pt;}
.x1e_c00180{left:503.600000pt;}
.xd4_c00180{left:504.800000pt;}
.xa7_c00180{left:506.133333pt;}
.x149_c00180{left:507.200000pt;}
.x85_c00180{left:508.800000pt;}
.x135_c00180{left:510.800000pt;}
.xbd_c00180{left:511.866667pt;}
.xe_c00180{left:514.533333pt;}
.xe2_c00180{left:516.533333pt;}
.x31_c00180{left:517.866667pt;}
.xa8_c00180{left:519.200000pt;}
.x95_c00180{left:520.933333pt;}
.xd8_c00180{left:522.666667pt;}
.xb1_c00180{left:523.600000pt;}
.x127_c00180{left:526.133333pt;}
.xc5_c00180{left:527.066667pt;}
.x10d_c00180{left:528.400000pt;}
.xf_c00180{left:531.866667pt;}
.x130_c00180{left:534.000000pt;}
.x32_c00180{left:535.733333pt;}
.x11b_c00180{left:536.666667pt;}
.xff_c00180{left:537.600000pt;}
.x12a_c00180{left:539.466667pt;}
.x6a_c00180{left:541.600000pt;}
.xc6_c00180{left:544.666667pt;}
.x60_c00180{left:547.066667pt;}
.x4a_c00180{left:548.266667pt;}
.xd9_c00180{left:549.200000pt;}
.x7b_c00180{left:551.733333pt;}
.xd5_c00180{left:554.666667pt;}
.x10_c00180{left:556.133333pt;}
.xbe_c00180{left:557.066667pt;}
.xce_c00180{left:558.666667pt;}
.xda_c00180{left:559.733333pt;}
.x33_c00180{left:562.266667pt;}
.x1f_c00180{left:564.400000pt;}
.x4b_c00180{left:565.866667pt;}
.xc7_c00180{left:569.600000pt;}
.xd6_c00180{left:570.666667pt;}
.x56_c00180{left:572.400000pt;}
.xf5_c00180{left:573.466667pt;}
.x100_c00180{left:574.400000pt;}
.xb2_c00180{left:576.133333pt;}
.x9f_c00180{left:577.200000pt;}
.xa9_c00180{left:578.400000pt;}
.x13f_c00180{left:579.866667pt;}
.x106_c00180{left:584.533333pt;}
.x86_c00180{left:585.866667pt;}
.x6b_c00180{left:587.333333pt;}
.x10e_c00180{left:588.533333pt;}
.x126_c00180{left:589.866667pt;}
.x4c_c00180{left:590.800000pt;}
.x96_c00180{left:592.266667pt;}
.x122_c00180{left:593.866667pt;}
.xdb_c00180{left:594.933333pt;}
.xf0_c00180{left:596.400000pt;}
.x11_c00180{left:598.400000pt;}
.xf6_c00180{left:600.000000pt;}
.x20_c00180{left:600.933333pt;}
.xa0_c00180{left:602.800000pt;}
.x136_c00180{left:604.533333pt;}
.x61_c00180{left:605.733333pt;}
.x7c_c00180{left:607.466667pt;}
.x34_c00180{left:610.266667pt;}
.x110_c00180{left:612.533333pt;}
.x123_c00180{left:614.933333pt;}
.x21_c00180{left:618.533333pt;}
.x57_c00180{left:620.133333pt;}
.xf9_c00180{left:622.000000pt;}
.xbf_c00180{left:623.333333pt;}
.x107_c00180{left:626.133333pt;}
.x145_c00180{left:627.066667pt;}
.x87_c00180{left:628.000000pt;}
.xcf_c00180{left:630.000000pt;}
.x62_c00180{left:632.000000pt;}
.x12_c00180{left:632.933333pt;}
.x13a_c00180{left:636.266667pt;}
.xa1_c00180{left:637.333333pt;}
.x124_c00180{left:638.933333pt;}
.x35_c00180{left:640.400000pt;}
.x97_c00180{left:641.866667pt;}
.x146_c00180{left:642.800000pt;}
.x22_c00180{left:644.133333pt;}
.x88_c00180{left:647.466667pt;}
.x12d_c00180{left:648.800000pt;}
.x7d_c00180{left:650.666667pt;}
.xf7_c00180{left:652.133333pt;}
.xb3_c00180{left:654.266667pt;}
.xc8_c00180{left:655.466667pt;}
.xaa_c00180{left:656.933333pt;}
.x6c_c00180{left:658.666667pt;}
.x4d_c00180{left:662.400000pt;}
.x13_c00180{left:664.000000pt;}
.xe3_c00180{left:665.600000pt;}
.xa2_c00180{left:667.066667pt;}
.x101_c00180{left:669.466667pt;}
.x7e_c00180{left:670.800000pt;}
.x11c_c00180{left:672.000000pt;}
.x12e_c00180{left:676.933333pt;}
.x6d_c00180{left:678.800000pt;}
.xc9_c00180{left:681.733333pt;}
.x98_c00180{left:682.800000pt;}
.x108_c00180{left:685.333333pt;}
.xa3_c00180{left:686.266667pt;}
.x58_c00180{left:688.000000pt;}
.x7f_c00180{left:689.066667pt;}
.xd0_c00180{left:693.333333pt;}
.x40_c00180{left:695.600000pt;}
.xc0_c00180{left:696.533333pt;}
.x36_c00180{left:699.600000pt;}
.x23_c00180{left:701.066667pt;}
.x131_c00180{left:703.333333pt;}
.x11d_c00180{left:704.933333pt;}
.x41_c00180{left:706.533333pt;}
.xca_c00180{left:707.600000pt;}
.xc1_c00180{left:710.933333pt;}
.x137_c00180{left:712.000000pt;}
.x89_c00180{left:713.733333pt;}
.x111_c00180{left:718.400000pt;}
.x37_c00180{left:719.733333pt;}
.x102_c00180{left:721.600000pt;}
.x141_c00180{left:725.466667pt;}
}





/* 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_c00181 {
    display:none;
  }
  .loading-indicator_c00181.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00181 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_c00181 { 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_c00181" -> "#page-container .classname_c00181")
 */
.pf_c00181 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00181 { /* 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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00181 { /* 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_c00181 { /* 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_c00181 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00181 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00181 {overflow:visible;}
  }
}
.c_c00181 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00181 { /* 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_c00181:after { /* webkit #35443 */
  content: '';
}
.t_c00181:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00181 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 */
}
.__c00181 { /* 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_c00181 { /* info for Javascript */
  display:none;
}
.l_c00181 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00181 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00181 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00181: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_c00181 {
    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_c00181.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00181.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_c00181 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00181{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00181;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.000000;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_c00181{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3_c00181{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5_c00181{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1_c00181{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4_c00181{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2_c00181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls0_c00181{letter-spacing:0.000000px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{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__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-21.000000px;}
.ws1_c00181{word-spacing:0.000000px;}
._0_c00181{margin-left:-110.795918px;}
.fc0_c00181{color:transparent;}
.fs0_c00181{font-size:24.000000px;}
.fs1_c00181{font-size:42.000000px;}
.y0_c00181{bottom:0.000000px;}
.y1_c00181{bottom:38.550000px;}
.y2_c00181{bottom:1086.450000px;}
.h2_c00181{height:24.000000px;}
.h3_c00181{height:42.000000px;}
.h1_c00181{height:1167.750000px;}
.h0_c00181{height:1167.839997px;}
.w1_c00181{width:920.250000px;}
.w0_c00181{width:920.519990px;}
.x0_c00181{left:0.000000px;}
.x7_c00181{left:713.250000px;}
.x6_c00181{left:734.550000px;}
.x5_c00181{left:780.750000px;}
.x4_c00181{left:803.100000px;}
.x3_c00181{left:804.600000px;}
.x2_c00181{left:823.350000px;}
.x1_c00181{left:858.600000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:-18.666667pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._0_c00181{margin-left:-98.485261pt;}
.fs0_c00181{font-size:21.333333pt;}
.fs1_c00181{font-size:37.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y1_c00181{bottom:34.266667pt;}
.y2_c00181{bottom:965.733333pt;}
.h2_c00181{height:21.333333pt;}
.h3_c00181{height:37.333333pt;}
.h1_c00181{height:1038.000000pt;}
.h0_c00181{height:1038.079997pt;}
.w1_c00181{width:818.000000pt;}
.w0_c00181{width:818.239991pt;}
.x0_c00181{left:0.000000pt;}
.x7_c00181{left:634.000000pt;}
.x6_c00181{left:652.933333pt;}
.x5_c00181{left:694.000000pt;}
.x4_c00181{left:713.866667pt;}
.x3_c00181{left:715.200000pt;}
.x2_c00181{left:731.866667pt;}
.x1_c00181{left:763.200000pt;}
}





/* 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_c00182 {
    display:none;
  }
  .loading-indicator_c00182.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00182 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_c00182 { 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_c00182" -> "#page-container .classname_c00182")
 */
.pf_c00182 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00182 { /* 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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00182 { /* 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_c00182 { /* 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_c00182 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00182 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00182 {overflow:visible;}
  }
}
.c_c00182 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00182 { /* 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_c00182:after { /* webkit #35443 */
  content: '';
}
.t_c00182:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00182 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 */
}
.__c00182 { /* 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_c00182 { /* info for Javascript */
  display:none;
}
.l_c00182 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00182 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00182 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00182: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_c00182 {
    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_c00182.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00182.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_c00182 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00182{font-family:sans-serif;visibility:hidden;}
.sc__c00182{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
}
.y0_c00182{bottom:0.000000px;}
.h1_c00182{height:1167.750000px;}
.h0_c00182{height:1167.839997px;}
.w1_c00182{width:920.250000px;}
.w0_c00182{width:920.519990px;}
.x0_c00182{left:0.000000px;}
@media print{
.y0_c00182{bottom:0.000000pt;}
.h1_c00182{height:1038.000000pt;}
.h0_c00182{height:1038.079997pt;}
.w1_c00182{width:818.000000pt;}
.w0_c00182{width:818.239991pt;}
.x0_c00182{left:0.000000pt;}
}





/* 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_c00183 {
    display:none;
  }
  .loading-indicator_c00183.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00183 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_c00183 { 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_c00183" -> "#page-container .classname_c00183")
 */
.pf_c00183 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00183 { /* 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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00183 { /* 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_c00183 { /* 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_c00183 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00183 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00183 {overflow:visible;}
  }
}
.c_c00183 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00183 { /* 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_c00183:after { /* webkit #35443 */
  content: '';
}
.t_c00183:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00183 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 */
}
.__c00183 { /* 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_c00183 { /* info for Javascript */
  display:none;
}
.l_c00183 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00183 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00183 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00183: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_c00183 {
    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_c00183.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00183.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_c00183 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00183{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00183;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.000000;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;}
.mab_c00183{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00183{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1_c00183{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00183{transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00183{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00183{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00183{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mad_c00183{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00183{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00183{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00183{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m85_c00183{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00183{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00183{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00183{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00183{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00183{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m37_c00183{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00183{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00183{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00183{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00183{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00183{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00183{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m36_c00183{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00183{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mba_c00183{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00183{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m86_c00183{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00183{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00183{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00183{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00183{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00183{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00183{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00183{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m80_c00183{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00183{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.maa_c00183{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00183{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.md_c00183{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00183{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00183{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mae_c00183{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m42_c00183{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.maf_c00183{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m93_c00183{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00183{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m98_c00183{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00183{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m54_c00183{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00183{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00183{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m65_c00183{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00183{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00183{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m29_c00183{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3_c00183{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00183{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m72_c00183{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m91_c00183{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00183{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m77_c00183{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m68_c00183{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00183{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00183{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m89_c00183{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mca_c00183{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m35_c00183{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m31_c00183{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m23_c00183{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m45_c00183{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00183{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00183{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m57_c00183{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m67_c00183{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00183{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m38_c00183{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00183{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00183{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m75_c00183{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00183{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00183{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m81_c00183{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00183{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m88_c00183{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m39_c00183{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28_c00183{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m66_c00183{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m43_c00183{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m52_c00183{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00183{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00183{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{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);}
.m9b_c00183{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m70_c00183{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00183{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00183{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00183{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m74_c00183{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00183{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00183{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m48_c00183{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m64_c00183{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00183{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00183{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00183{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m44_c00183{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m25_c00183{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m95_c00183{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m17_c00183{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00183{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00183{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m92_c00183{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m82_c00183{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m47_c00183{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m58_c00183{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00183{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00183{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m71_c00183{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m96_c00183{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m60_c00183{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m61_c00183{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00183{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m94_c00183{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00183{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m40_c00183{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00183{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00183{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m63_c00183{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00183{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m30_c00183{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00183{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m4_c00183{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m50_c00183{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00183{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m78_c00183{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00183{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m79_c00183{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00183{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m33_c00183{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00183{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m51_c00183{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m83_c00183{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00183{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m62_c00183{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m32_c00183{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m90_c00183{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m69_c00183{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00183{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.mac_c00183{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.ls0_c00183{letter-spacing:0.000000px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{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__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00183{word-spacing:-13.370370px;}
.ws4_c00183{word-spacing:-4.750000px;}
.ws0_c00183{word-spacing:-4.375000px;}
.ws8_c00183{word-spacing:-3.215311px;}
.wsa_c00183{word-spacing:0.000000px;}
.ws5_c00183{word-spacing:1.500000px;}
.ws2_c00183{word-spacing:2.375959px;}
.ws7_c00183{word-spacing:2.890849px;}
.ws1_c00183{word-spacing:8.389068px;}
.ws9_c00183{word-spacing:12.904943px;}
.ws6_c00183{word-spacing:13.250000px;}
.fc0_c00183{color:transparent;}
.fs0_c00183{font-size:54.000000px;}
.y0_c00183{bottom:0.000000px;}
.y2e_c00183{bottom:151.500000px;}
.y2d_c00183{bottom:167.700000px;}
.y2c_c00183{bottom:182.850000px;}
.y2b_c00183{bottom:198.000000px;}
.y2a_c00183{bottom:213.900000px;}
.y29_c00183{bottom:229.650000px;}
.y28_c00183{bottom:245.100000px;}
.y27_c00183{bottom:260.700000px;}
.y26_c00183{bottom:292.050000px;}
.y25_c00183{bottom:312.150000px;}
.y24_c00183{bottom:331.950000px;}
.y23_c00183{bottom:351.750000px;}
.y22_c00183{bottom:371.550000px;}
.y21_c00183{bottom:391.650000px;}
.y20_c00183{bottom:411.750000px;}
.y1f_c00183{bottom:431.550000px;}
.y1e_c00183{bottom:451.350000px;}
.y1d_c00183{bottom:471.150000px;}
.y1c_c00183{bottom:490.950000px;}
.y1b_c00183{bottom:511.050000px;}
.y1a_c00183{bottom:530.850000px;}
.y19_c00183{bottom:550.650000px;}
.y18_c00183{bottom:570.450000px;}
.y17_c00183{bottom:590.550000px;}
.y16_c00183{bottom:610.650000px;}
.y15_c00183{bottom:630.450000px;}
.y14_c00183{bottom:650.250000px;}
.y13_c00183{bottom:670.050000px;}
.y12_c00183{bottom:689.550000px;}
.y11_c00183{bottom:709.650000px;}
.y10_c00183{bottom:729.750000px;}
.yf_c00183{bottom:749.700000px;}
.ye_c00183{bottom:769.800000px;}
.yd_c00183{bottom:789.900000px;}
.yc_c00183{bottom:809.700000px;}
.yb_c00183{bottom:829.500000px;}
.ya_c00183{bottom:849.300000px;}
.y9_c00183{bottom:869.400000px;}
.y8_c00183{bottom:889.200000px;}
.y7_c00183{bottom:909.150000px;}
.y6_c00183{bottom:929.250000px;}
.y5_c00183{bottom:949.350000px;}
.y4_c00183{bottom:969.150000px;}
.y3_c00183{bottom:989.250000px;}
.y2_c00183{bottom:1009.050000px;}
.y1_c00183{bottom:1047.600000px;}
.h2_c00183{height:54.000000px;}
.h1_c00183{height:1167.750000px;}
.h0_c00183{height:1167.839997px;}
.w1_c00183{width:920.250000px;}
.w0_c00183{width:920.519990px;}
.x0_c00183{left:0.000000px;}
.x4_c00183{left:108.300000px;}
.xe0_c00183{left:109.500000px;}
.x131_c00183{left:114.900000px;}
.x12a_c00183{left:125.250000px;}
.x11e_c00183{left:128.850000px;}
.x27_c00183{left:130.350000px;}
.x5c_c00183{left:133.500000px;}
.x67_c00183{left:136.500000px;}
.x70_c00183{left:138.300000px;}
.x17_c00183{left:139.650000px;}
.x35_c00183{left:140.700000px;}
.xf5_c00183{left:142.500000px;}
.x92_c00183{left:144.900000px;}
.xe9_c00183{left:146.400000px;}
.xd1_c00183{left:148.050000px;}
.x12e_c00183{left:151.950000px;}
.x14_c00183{left:153.150000px;}
.xb1_c00183{left:154.650000px;}
.xb8_c00183{left:155.700000px;}
.x133_c00183{left:157.650000px;}
.x82_c00183{left:158.850000px;}
.x11b_c00183{left:161.250000px;}
.x126_c00183{left:162.300000px;}
.x46_c00183{left:163.950000px;}
.x8a_c00183{left:167.100000px;}
.x4a_c00183{left:169.500000px;}
.x5_c00183{left:170.550000px;}
.xea_c00183{left:172.650000px;}
.x7b_c00183{left:173.850000px;}
.x36_c00183{left:175.650000px;}
.xe1_c00183{left:176.850000px;}
.xd9_c00183{left:177.900000px;}
.xfd_c00183{left:179.700000px;}
.x93_c00183{left:183.000000px;}
.x28_c00183{left:184.650000px;}
.xc2_c00183{left:187.350000px;}
.x132_c00183{left:188.850000px;}
.x18_c00183{left:190.350000px;}
.x5d_c00183{left:191.850000px;}
.xa2_c00183{left:193.350000px;}
.x134_c00183{left:194.700000px;}
.x107_c00183{left:198.150000px;}
.x9f_c00183{left:200.550000px;}
.x99_c00183{left:202.650000px;}
.x6_c00183{left:203.700000px;}
.xcc_c00183{left:207.300000px;}
.x5e_c00183{left:208.800000px;}
.x4b_c00183{left:210.900000px;}
.x47_c00183{left:214.350000px;}
.xf6_c00183{left:216.300000px;}
.x19_c00183{left:218.400000px;}
.x5f_c00183{left:220.650000px;}
.xb2_c00183{left:222.000000px;}
.x71_c00183{left:225.750000px;}
.x4c_c00183{left:228.150000px;}
.x48_c00183{left:231.600000px;}
.x37_c00183{left:232.650000px;}
.x15_c00183{left:235.200000px;}
.x94_c00183{left:236.700000px;}
.x68_c00183{left:238.350000px;}
.xb9_c00183{left:240.900000px;}
.x11c_c00183{left:242.250000px;}
.xd2_c00183{left:244.500000px;}
.xfe_c00183{left:248.550000px;}
.x49_c00183{left:251.100000px;}
.x4d_c00183{left:253.650000px;}
.x16_c00183{left:254.700000px;}
.x9a_c00183{left:255.900000px;}
.x60_c00183{left:257.700000px;}
.x29_c00183{left:258.750000px;}
.xf1_c00183{left:259.950000px;}
.x1a_c00183{left:261.300000px;}
.xb3_c00183{left:264.150000px;}
.x10e_c00183{left:265.650000px;}
.x38_c00183{left:267.600000px;}
.x72_c00183{left:269.700000px;}
.xa3_c00183{left:272.100000px;}
.x135_c00183{left:274.350000px;}
.x95_c00183{left:276.300000px;}
.x8b_c00183{left:279.450000px;}
.x11f_c00183{left:280.800000px;}
.x83_c00183{left:282.300000px;}
.x7_c00183{left:283.650000px;}
.x1b_c00183{left:285.750000px;}
.x2a_c00183{left:287.850000px;}
.x7c_c00183{left:289.050000px;}
.x4e_c00183{left:296.850000px;}
.x1c_c00183{left:298.050000px;}
.xa4_c00183{left:301.200000px;}
.xb4_c00183{left:302.250000px;}
.x8_c00183{left:303.750000px;}
.x10b_c00183{left:305.700000px;}
.x8c_c00183{left:308.250000px;}
.x39_c00183{left:310.050000px;}
.x4f_c00183{left:312.000000px;}
.x9b_c00183{left:313.500000px;}
.x73_c00183{left:316.050000px;}
.x116_c00183{left:318.000000px;}
.xf7_c00183{left:320.250000px;}
.x61_c00183{left:323.250000px;}
.x11d_c00183{left:324.300000px;}
.xda_c00183{left:325.500000px;}
.xc3_c00183{left:326.850000px;}
.x9_c00183{left:328.200000px;}
.xd3_c00183{left:329.400000px;}
.x3a_c00183{left:330.900000px;}
.xac_c00183{left:334.200000px;}
.x10f_c00183{left:336.600000px;}
.x2b_c00183{left:337.950000px;}
.xf8_c00183{left:340.350000px;}
.xba_c00183{left:343.500000px;}
.x50_c00183{left:346.200000px;}
.x96_c00183{left:352.200000px;}
.x2c_c00183{left:356.250000px;}
.xeb_c00183{left:357.450000px;}
.xbb_c00183{left:358.650000px;}
.x84_c00183{left:359.700000px;}
.x3b_c00183{left:361.800000px;}
.xc4_c00183{left:363.600000px;}
.x117_c00183{left:365.100000px;}
.x69_c00183{left:366.450000px;}
.xff_c00183{left:367.650000px;}
.xa_c00183{left:368.850000px;}
.x12f_c00183{left:371.250000px;}
.xfc_c00183{left:372.600000px;}
.x127_c00183{left:374.550000px;}
.x3c_c00183{left:376.950000px;}
.xc5_c00183{left:378.300000px;}
.xe2_c00183{left:381.150000px;}
.x1d_c00183{left:382.950000px;}
.x120_c00183{left:385.200000px;}
.x7d_c00183{left:389.850000px;}
.x2d_c00183{left:392.250000px;}
.x110_c00183{left:393.450000px;}
.xd4_c00183{left:394.500000px;}
.x51_c00183{left:395.550000px;}
.x85_c00183{left:397.500000px;}
.xad_c00183{left:400.050000px;}
.xdb_c00183{left:401.100000px;}
.x100_c00183{left:402.150000px;}
.xec_c00183{left:403.950000px;}
.x8d_c00183{left:405.000000px;}
.xbc_c00183{left:409.050000px;}
.xa5_c00183{left:410.250000px;}
.x10c_c00183{left:411.450000px;}
.x52_c00183{left:412.800000px;}
.x1_c00183{left:414.750000px;}
.x121_c00183{left:417.300000px;}
.x86_c00183{left:419.850000px;}
.xb_c00183{left:422.550000px;}
.xf2_c00183{left:424.050000px;}
.x74_c00183{left:426.150000px;}
.xe3_c00183{left:428.250000px;}
.x1e_c00183{left:431.550000px;}
.xed_c00183{left:436.050000px;}
.x62_c00183{left:440.700000px;}
.x111_c00183{left:443.400000px;}
.x101_c00183{left:444.600000px;}
.x97_c00183{left:445.650000px;}
.xc6_c00183{left:447.450000px;}
.x1f_c00183{left:448.500000px;}
.xbd_c00183{left:451.200000px;}
.x122_c00183{left:452.550000px;}
.x102_c00183{left:455.400000px;}
.xc_c00183{left:457.500000px;}
.x3d_c00183{left:460.500000px;}
.x7e_c00183{left:462.900000px;}
.xb5_c00183{left:464.550000px;}
.x6a_c00183{left:466.200000px;}
.x9c_c00183{left:469.050000px;}
.x12b_c00183{left:470.400000px;}
.xa6_c00183{left:472.200000px;}
.xcd_c00183{left:473.700000px;}
.x20_c00183{left:477.300000px;}
.x2e_c00183{left:478.650000px;}
.xd_c00183{left:480.600000px;}
.xdc_c00183{left:481.800000px;}
.xf9_c00183{left:485.100000px;}
.x53_c00183{left:486.300000px;}
.xbe_c00183{left:487.950000px;}
.x3e_c00183{left:489.000000px;}
.x7f_c00183{left:490.200000px;}
.xd5_c00183{left:491.700000px;}
.x6b_c00183{left:496.500000px;}
.x8e_c00183{left:498.150000px;}
.x75_c00183{left:499.200000px;}
.x2f_c00183{left:500.250000px;}
.x137_c00183{left:502.050000px;}
.xe4_c00183{left:503.850000px;}
.x98_c00183{left:506.550000px;}
.xa7_c00183{left:508.950000px;}
.x103_c00183{left:512.550000px;}
.xdd_c00183{left:513.900000px;}
.xe5_c00183{left:514.950000px;}
.x3f_c00183{left:517.050000px;}
.xbf_c00183{left:520.350000px;}
.xd6_c00183{left:525.600000px;}
.x10d_c00183{left:526.650000px;}
.x21_c00183{left:527.700000px;}
.xfa_c00183{left:529.050000px;}
.x123_c00183{left:530.250000px;}
.xc7_c00183{left:532.050000px;}
.xee_c00183{left:534.300000px;}
.xe6_c00183{left:538.050000px;}
.xae_c00183{left:541.200000px;}
.xc8_c00183{left:543.600000px;}
.x54_c00183{left:544.950000px;}
.x118_c00183{left:547.200000px;}
.xa8_c00183{left:548.850000px;}
.xa0_c00183{left:549.900000px;}
.x8f_c00183{left:555.000000px;}
.x76_c00183{left:556.050000px;}
.xe_c00183{left:559.050000px;}
.x40_c00183{left:565.650000px;}
.xe7_c00183{left:567.150000px;}
.x63_c00183{left:568.500000px;}
.x80_c00183{left:570.900000px;}
.xc9_c00183{left:573.450000px;}
.xb6_c00183{left:574.650000px;}
.x119_c00183{left:578.550000px;}
.x6c_c00183{left:580.350000px;}
.x55_c00183{left:582.000000px;}
.x41_c00183{left:583.350000px;}
.xa9_c00183{left:585.600000px;}
.x30_c00183{left:586.650000px;}
.x22_c00183{left:587.850000px;}
.xce_c00183{left:590.700000px;}
.x112_c00183{left:592.050000px;}
.x56_c00183{left:593.100000px;}
.x128_c00183{left:594.300000px;}
.x77_c00183{left:595.350000px;}
.xfb_c00183{left:598.500000px;}
.xef_c00183{left:599.850000px;}
.x42_c00183{left:601.050000px;}
.x108_c00183{left:602.100000px;}
.xf_c00183{left:603.300000px;}
.x114_c00183{left:605.700000px;}
.x6d_c00183{left:609.150000px;}
.x109_c00183{left:610.950000px;}
.x57_c00183{left:613.200000px;}
.x90_c00183{left:618.300000px;}
.x23_c00183{left:620.550000px;}
.x87_c00183{left:622.650000px;}
.xc0_c00183{left:624.000000px;}
.x78_c00183{left:625.950000px;}
.x31_c00183{left:628.050000px;}
.x138_c00183{left:629.100000px;}
.x64_c00183{left:630.750000px;}
.x104_c00183{left:632.400000px;}
.xb7_c00183{left:633.750000px;}
.xca_c00183{left:638.550000px;}
.x10a_c00183{left:641.550000px;}
.x10_c00183{left:642.900000px;}
.x24_c00183{left:646.050000px;}
.x124_c00183{left:648.750000px;}
.x105_c00183{left:650.100000px;}
.x43_c00183{left:651.450000px;}
.x65_c00183{left:653.400000px;}
.xaa_c00183{left:655.050000px;}
.x88_c00183{left:656.850000px;}
.xaf_c00183{left:658.950000px;}
.xf0_c00183{left:660.000000px;}
.x58_c00183{left:661.350000px;}
.x6e_c00183{left:662.400000px;}
.xde_c00183{left:664.500000px;}
.xcf_c00183{left:665.550000px;}
.x81_c00183{left:667.350000px;}
.xab_c00183{left:668.400000px;}
.xa1_c00183{left:669.750000px;}
.x125_c00183{left:671.100000px;}
.x11_c00183{left:672.450000px;}
.x32_c00183{left:674.100000px;}
.x9d_c00183{left:675.750000px;}
.xf3_c00183{left:676.800000px;}
.x59_c00183{left:677.850000px;}
.x113_c00183{left:684.900000px;}
.x106_c00183{left:686.400000px;}
.x89_c00183{left:687.750000px;}
.x79_c00183{left:691.500000px;}
.xb0_c00183{left:695.700000px;}
.xcb_c00183{left:697.650000px;}
.x25_c00183{left:699.750000px;}
.xd7_c00183{left:701.400000px;}
.x66_c00183{left:704.550000px;}
.x5a_c00183{left:705.600000px;}
.x33_c00183{left:708.000000px;}
.x44_c00183{left:711.900000px;}
.xdf_c00183{left:713.550000px;}
.x91_c00183{left:715.200000px;}
.x6f_c00183{left:717.150000px;}
.xc1_c00183{left:719.850000px;}
.x12c_c00183{left:721.650000px;}
.x129_c00183{left:726.450000px;}
.x26_c00183{left:728.250000px;}
.xe8_c00183{left:730.650000px;}
.x12_c00183{left:734.400000px;}
.x9e_c00183{left:735.900000px;}
.x115_c00183{left:737.100000px;}
.xf4_c00183{left:739.800000px;}
.xd8_c00183{left:741.750000px;}
.x136_c00183{left:743.100000px;}
.xd0_c00183{left:744.450000px;}
.x5b_c00183{left:745.950000px;}
.x11a_c00183{left:748.050000px;}
.x2_c00183{left:749.550000px;}
.x45_c00183{left:752.550000px;}
.x130_c00183{left:753.750000px;}
.x13_c00183{left:754.950000px;}
.x34_c00183{left:756.300000px;}
.x3_c00183{left:757.500000px;}
.x7a_c00183{left:764.250000px;}
.x12d_c00183{left:767.400000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls0_c00183{letter-spacing:0.000000pt;}
.ws3_c00183{word-spacing:-11.884774pt;}
.ws4_c00183{word-spacing:-4.222222pt;}
.ws0_c00183{word-spacing:-3.888889pt;}
.ws8_c00183{word-spacing:-2.858054pt;}
.wsa_c00183{word-spacing:0.000000pt;}
.ws5_c00183{word-spacing:1.333333pt;}
.ws2_c00183{word-spacing:2.111964pt;}
.ws7_c00183{word-spacing:2.569644pt;}
.ws1_c00183{word-spacing:7.456949pt;}
.ws9_c00183{word-spacing:11.471060pt;}
.ws6_c00183{word-spacing:11.777778pt;}
.fs0_c00183{font-size:48.000000pt;}
.y0_c00183{bottom:0.000000pt;}
.y2e_c00183{bottom:134.666667pt;}
.y2d_c00183{bottom:149.066667pt;}
.y2c_c00183{bottom:162.533333pt;}
.y2b_c00183{bottom:176.000000pt;}
.y2a_c00183{bottom:190.133333pt;}
.y29_c00183{bottom:204.133333pt;}
.y28_c00183{bottom:217.866667pt;}
.y27_c00183{bottom:231.733333pt;}
.y26_c00183{bottom:259.600000pt;}
.y25_c00183{bottom:277.466667pt;}
.y24_c00183{bottom:295.066667pt;}
.y23_c00183{bottom:312.666667pt;}
.y22_c00183{bottom:330.266667pt;}
.y21_c00183{bottom:348.133333pt;}
.y20_c00183{bottom:366.000000pt;}
.y1f_c00183{bottom:383.600000pt;}
.y1e_c00183{bottom:401.200000pt;}
.y1d_c00183{bottom:418.800000pt;}
.y1c_c00183{bottom:436.400000pt;}
.y1b_c00183{bottom:454.266667pt;}
.y1a_c00183{bottom:471.866667pt;}
.y19_c00183{bottom:489.466667pt;}
.y18_c00183{bottom:507.066667pt;}
.y17_c00183{bottom:524.933333pt;}
.y16_c00183{bottom:542.800000pt;}
.y15_c00183{bottom:560.400000pt;}
.y14_c00183{bottom:578.000000pt;}
.y13_c00183{bottom:595.600000pt;}
.y12_c00183{bottom:612.933333pt;}
.y11_c00183{bottom:630.800000pt;}
.y10_c00183{bottom:648.666667pt;}
.yf_c00183{bottom:666.400000pt;}
.ye_c00183{bottom:684.266667pt;}
.yd_c00183{bottom:702.133333pt;}
.yc_c00183{bottom:719.733333pt;}
.yb_c00183{bottom:737.333333pt;}
.ya_c00183{bottom:754.933333pt;}
.y9_c00183{bottom:772.800000pt;}
.y8_c00183{bottom:790.400000pt;}
.y7_c00183{bottom:808.133333pt;}
.y6_c00183{bottom:826.000000pt;}
.y5_c00183{bottom:843.866667pt;}
.y4_c00183{bottom:861.466667pt;}
.y3_c00183{bottom:879.333333pt;}
.y2_c00183{bottom:896.933333pt;}
.y1_c00183{bottom:931.200000pt;}
.h2_c00183{height:48.000000pt;}
.h1_c00183{height:1038.000000pt;}
.h0_c00183{height:1038.079997pt;}
.w1_c00183{width:818.000000pt;}
.w0_c00183{width:818.239991pt;}
.x0_c00183{left:0.000000pt;}
.x4_c00183{left:96.266667pt;}
.xe0_c00183{left:97.333333pt;}
.x131_c00183{left:102.133333pt;}
.x12a_c00183{left:111.333333pt;}
.x11e_c00183{left:114.533333pt;}
.x27_c00183{left:115.866667pt;}
.x5c_c00183{left:118.666667pt;}
.x67_c00183{left:121.333333pt;}
.x70_c00183{left:122.933333pt;}
.x17_c00183{left:124.133333pt;}
.x35_c00183{left:125.066667pt;}
.xf5_c00183{left:126.666667pt;}
.x92_c00183{left:128.800000pt;}
.xe9_c00183{left:130.133333pt;}
.xd1_c00183{left:131.600000pt;}
.x12e_c00183{left:135.066667pt;}
.x14_c00183{left:136.133333pt;}
.xb1_c00183{left:137.466667pt;}
.xb8_c00183{left:138.400000pt;}
.x133_c00183{left:140.133333pt;}
.x82_c00183{left:141.200000pt;}
.x11b_c00183{left:143.333333pt;}
.x126_c00183{left:144.266667pt;}
.x46_c00183{left:145.733333pt;}
.x8a_c00183{left:148.533333pt;}
.x4a_c00183{left:150.666667pt;}
.x5_c00183{left:151.600000pt;}
.xea_c00183{left:153.466667pt;}
.x7b_c00183{left:154.533333pt;}
.x36_c00183{left:156.133333pt;}
.xe1_c00183{left:157.200000pt;}
.xd9_c00183{left:158.133333pt;}
.xfd_c00183{left:159.733333pt;}
.x93_c00183{left:162.666667pt;}
.x28_c00183{left:164.133333pt;}
.xc2_c00183{left:166.533333pt;}
.x132_c00183{left:167.866667pt;}
.x18_c00183{left:169.200000pt;}
.x5d_c00183{left:170.533333pt;}
.xa2_c00183{left:171.866667pt;}
.x134_c00183{left:173.066667pt;}
.x107_c00183{left:176.133333pt;}
.x9f_c00183{left:178.266667pt;}
.x99_c00183{left:180.133333pt;}
.x6_c00183{left:181.066667pt;}
.xcc_c00183{left:184.266667pt;}
.x5e_c00183{left:185.600000pt;}
.x4b_c00183{left:187.466667pt;}
.x47_c00183{left:190.533333pt;}
.xf6_c00183{left:192.266667pt;}
.x19_c00183{left:194.133333pt;}
.x5f_c00183{left:196.133333pt;}
.xb2_c00183{left:197.333333pt;}
.x71_c00183{left:200.666667pt;}
.x4c_c00183{left:202.800000pt;}
.x48_c00183{left:205.866667pt;}
.x37_c00183{left:206.800000pt;}
.x15_c00183{left:209.066667pt;}
.x94_c00183{left:210.400000pt;}
.x68_c00183{left:211.866667pt;}
.xb9_c00183{left:214.133333pt;}
.x11c_c00183{left:215.333333pt;}
.xd2_c00183{left:217.333333pt;}
.xfe_c00183{left:220.933333pt;}
.x49_c00183{left:223.200000pt;}
.x4d_c00183{left:225.466667pt;}
.x16_c00183{left:226.400000pt;}
.x9a_c00183{left:227.466667pt;}
.x60_c00183{left:229.066667pt;}
.x29_c00183{left:230.000000pt;}
.xf1_c00183{left:231.066667pt;}
.x1a_c00183{left:232.266667pt;}
.xb3_c00183{left:234.800000pt;}
.x10e_c00183{left:236.133333pt;}
.x38_c00183{left:237.866667pt;}
.x72_c00183{left:239.733333pt;}
.xa3_c00183{left:241.866667pt;}
.x135_c00183{left:243.866667pt;}
.x95_c00183{left:245.600000pt;}
.x8b_c00183{left:248.400000pt;}
.x11f_c00183{left:249.600000pt;}
.x83_c00183{left:250.933333pt;}
.x7_c00183{left:252.133333pt;}
.x1b_c00183{left:254.000000pt;}
.x2a_c00183{left:255.866667pt;}
.x7c_c00183{left:256.933333pt;}
.x4e_c00183{left:263.866667pt;}
.x1c_c00183{left:264.933333pt;}
.xa4_c00183{left:267.733333pt;}
.xb4_c00183{left:268.666667pt;}
.x8_c00183{left:270.000000pt;}
.x10b_c00183{left:271.733333pt;}
.x8c_c00183{left:274.000000pt;}
.x39_c00183{left:275.600000pt;}
.x4f_c00183{left:277.333333pt;}
.x9b_c00183{left:278.666667pt;}
.x73_c00183{left:280.933333pt;}
.x116_c00183{left:282.666667pt;}
.xf7_c00183{left:284.666667pt;}
.x61_c00183{left:287.333333pt;}
.x11d_c00183{left:288.266667pt;}
.xda_c00183{left:289.333333pt;}
.xc3_c00183{left:290.533333pt;}
.x9_c00183{left:291.733333pt;}
.xd3_c00183{left:292.800000pt;}
.x3a_c00183{left:294.133333pt;}
.xac_c00183{left:297.066667pt;}
.x10f_c00183{left:299.200000pt;}
.x2b_c00183{left:300.400000pt;}
.xf8_c00183{left:302.533333pt;}
.xba_c00183{left:305.333333pt;}
.x50_c00183{left:307.733333pt;}
.x96_c00183{left:313.066667pt;}
.x2c_c00183{left:316.666667pt;}
.xeb_c00183{left:317.733333pt;}
.xbb_c00183{left:318.800000pt;}
.x84_c00183{left:319.733333pt;}
.x3b_c00183{left:321.600000pt;}
.xc4_c00183{left:323.200000pt;}
.x117_c00183{left:324.533333pt;}
.x69_c00183{left:325.733333pt;}
.xff_c00183{left:326.800000pt;}
.xa_c00183{left:327.866667pt;}
.x12f_c00183{left:330.000000pt;}
.xfc_c00183{left:331.200000pt;}
.x127_c00183{left:332.933333pt;}
.x3c_c00183{left:335.066667pt;}
.xc5_c00183{left:336.266667pt;}
.xe2_c00183{left:338.800000pt;}
.x1d_c00183{left:340.400000pt;}
.x120_c00183{left:342.400000pt;}
.x7d_c00183{left:346.533333pt;}
.x2d_c00183{left:348.666667pt;}
.x110_c00183{left:349.733333pt;}
.xd4_c00183{left:350.666667pt;}
.x51_c00183{left:351.600000pt;}
.x85_c00183{left:353.333333pt;}
.xad_c00183{left:355.600000pt;}
.xdb_c00183{left:356.533333pt;}
.x100_c00183{left:357.466667pt;}
.xec_c00183{left:359.066667pt;}
.x8d_c00183{left:360.000000pt;}
.xbc_c00183{left:363.600000pt;}
.xa5_c00183{left:364.666667pt;}
.x10c_c00183{left:365.733333pt;}
.x52_c00183{left:366.933333pt;}
.x1_c00183{left:368.666667pt;}
.x121_c00183{left:370.933333pt;}
.x86_c00183{left:373.200000pt;}
.xb_c00183{left:375.600000pt;}
.xf2_c00183{left:376.933333pt;}
.x74_c00183{left:378.800000pt;}
.xe3_c00183{left:380.666667pt;}
.x1e_c00183{left:383.600000pt;}
.xed_c00183{left:387.600000pt;}
.x62_c00183{left:391.733333pt;}
.x111_c00183{left:394.133333pt;}
.x101_c00183{left:395.200000pt;}
.x97_c00183{left:396.133333pt;}
.xc6_c00183{left:397.733333pt;}
.x1f_c00183{left:398.666667pt;}
.xbd_c00183{left:401.066667pt;}
.x122_c00183{left:402.266667pt;}
.x102_c00183{left:404.800000pt;}
.xc_c00183{left:406.666667pt;}
.x3d_c00183{left:409.333333pt;}
.x7e_c00183{left:411.466667pt;}
.xb5_c00183{left:412.933333pt;}
.x6a_c00183{left:414.400000pt;}
.x9c_c00183{left:416.933333pt;}
.x12b_c00183{left:418.133333pt;}
.xa6_c00183{left:419.733333pt;}
.xcd_c00183{left:421.066667pt;}
.x20_c00183{left:424.266667pt;}
.x2e_c00183{left:425.466667pt;}
.xd_c00183{left:427.200000pt;}
.xdc_c00183{left:428.266667pt;}
.xf9_c00183{left:431.200000pt;}
.x53_c00183{left:432.266667pt;}
.xbe_c00183{left:433.733333pt;}
.x3e_c00183{left:434.666667pt;}
.x7f_c00183{left:435.733333pt;}
.xd5_c00183{left:437.066667pt;}
.x6b_c00183{left:441.333333pt;}
.x8e_c00183{left:442.800000pt;}
.x75_c00183{left:443.733333pt;}
.x2f_c00183{left:444.666667pt;}
.x137_c00183{left:446.266667pt;}
.xe4_c00183{left:447.866667pt;}
.x98_c00183{left:450.266667pt;}
.xa7_c00183{left:452.400000pt;}
.x103_c00183{left:455.600000pt;}
.xdd_c00183{left:456.800000pt;}
.xe5_c00183{left:457.733333pt;}
.x3f_c00183{left:459.600000pt;}
.xbf_c00183{left:462.533333pt;}
.xd6_c00183{left:467.200000pt;}
.x10d_c00183{left:468.133333pt;}
.x21_c00183{left:469.066667pt;}
.xfa_c00183{left:470.266667pt;}
.x123_c00183{left:471.333333pt;}
.xc7_c00183{left:472.933333pt;}
.xee_c00183{left:474.933333pt;}
.xe6_c00183{left:478.266667pt;}
.xae_c00183{left:481.066667pt;}
.xc8_c00183{left:483.200000pt;}
.x54_c00183{left:484.400000pt;}
.x118_c00183{left:486.400000pt;}
.xa8_c00183{left:487.866667pt;}
.xa0_c00183{left:488.800000pt;}
.x8f_c00183{left:493.333333pt;}
.x76_c00183{left:494.266667pt;}
.xe_c00183{left:496.933333pt;}
.x40_c00183{left:502.800000pt;}
.xe7_c00183{left:504.133333pt;}
.x63_c00183{left:505.333333pt;}
.x80_c00183{left:507.466667pt;}
.xc9_c00183{left:509.733333pt;}
.xb6_c00183{left:510.800000pt;}
.x119_c00183{left:514.266667pt;}
.x6c_c00183{left:515.866667pt;}
.x55_c00183{left:517.333333pt;}
.x41_c00183{left:518.533333pt;}
.xa9_c00183{left:520.533333pt;}
.x30_c00183{left:521.466667pt;}
.x22_c00183{left:522.533333pt;}
.xce_c00183{left:525.066667pt;}
.x112_c00183{left:526.266667pt;}
.x56_c00183{left:527.200000pt;}
.x128_c00183{left:528.266667pt;}
.x77_c00183{left:529.200000pt;}
.xfb_c00183{left:532.000000pt;}
.xef_c00183{left:533.200000pt;}
.x42_c00183{left:534.266667pt;}
.x108_c00183{left:535.200000pt;}
.xf_c00183{left:536.266667pt;}
.x114_c00183{left:538.400000pt;}
.x6d_c00183{left:541.466667pt;}
.x109_c00183{left:543.066667pt;}
.x57_c00183{left:545.066667pt;}
.x90_c00183{left:549.600000pt;}
.x23_c00183{left:551.600000pt;}
.x87_c00183{left:553.466667pt;}
.xc0_c00183{left:554.666667pt;}
.x78_c00183{left:556.400000pt;}
.x31_c00183{left:558.266667pt;}
.x138_c00183{left:559.200000pt;}
.x64_c00183{left:560.666667pt;}
.x104_c00183{left:562.133333pt;}
.xb7_c00183{left:563.333333pt;}
.xca_c00183{left:567.600000pt;}
.x10a_c00183{left:570.266667pt;}
.x10_c00183{left:571.466667pt;}
.x24_c00183{left:574.266667pt;}
.x124_c00183{left:576.666667pt;}
.x105_c00183{left:577.866667pt;}
.x43_c00183{left:579.066667pt;}
.x65_c00183{left:580.800000pt;}
.xaa_c00183{left:582.266667pt;}
.x88_c00183{left:583.866667pt;}
.xaf_c00183{left:585.733333pt;}
.xf0_c00183{left:586.666667pt;}
.x58_c00183{left:587.866667pt;}
.x6e_c00183{left:588.800000pt;}
.xde_c00183{left:590.666667pt;}
.xcf_c00183{left:591.600000pt;}
.x81_c00183{left:593.200000pt;}
.xab_c00183{left:594.133333pt;}
.xa1_c00183{left:595.333333pt;}
.x125_c00183{left:596.533333pt;}
.x11_c00183{left:597.733333pt;}
.x32_c00183{left:599.200000pt;}
.x9d_c00183{left:600.666667pt;}
.xf3_c00183{left:601.600000pt;}
.x59_c00183{left:602.533333pt;}
.x113_c00183{left:608.800000pt;}
.x106_c00183{left:610.133333pt;}
.x89_c00183{left:611.333333pt;}
.x79_c00183{left:614.666667pt;}
.xb0_c00183{left:618.400000pt;}
.xcb_c00183{left:620.133333pt;}
.x25_c00183{left:622.000000pt;}
.xd7_c00183{left:623.466667pt;}
.x66_c00183{left:626.266667pt;}
.x5a_c00183{left:627.200000pt;}
.x33_c00183{left:629.333333pt;}
.x44_c00183{left:632.800000pt;}
.xdf_c00183{left:634.266667pt;}
.x91_c00183{left:635.733333pt;}
.x6f_c00183{left:637.466667pt;}
.xc1_c00183{left:639.866667pt;}
.x12c_c00183{left:641.466667pt;}
.x129_c00183{left:645.733333pt;}
.x26_c00183{left:647.333333pt;}
.xe8_c00183{left:649.466667pt;}
.x12_c00183{left:652.800000pt;}
.x9e_c00183{left:654.133333pt;}
.x115_c00183{left:655.200000pt;}
.xf4_c00183{left:657.600000pt;}
.xd8_c00183{left:659.333333pt;}
.x136_c00183{left:660.533333pt;}
.xd0_c00183{left:661.733333pt;}
.x5b_c00183{left:663.066667pt;}
.x11a_c00183{left:664.933333pt;}
.x2_c00183{left:666.266667pt;}
.x45_c00183{left:668.933333pt;}
.x130_c00183{left:670.000000pt;}
.x13_c00183{left:671.066667pt;}
.x34_c00183{left:672.266667pt;}
.x3_c00183{left:673.333333pt;}
.x7a_c00183{left:679.333333pt;}
.x12d_c00183{left:682.133333pt;}
}





/* 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_c00184 {
    display:none;
  }
  .loading-indicator_c00184.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00184 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_c00184 { 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_c00184" -> "#page-container .classname_c00184")
 */
.pf_c00184 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00184 { /* 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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00184 { /* 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_c00184 { /* 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_c00184 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00184 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00184 {overflow:visible;}
  }
}
.c_c00184 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00184 { /* 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_c00184:after { /* webkit #35443 */
  content: '';
}
.t_c00184:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00184 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 */
}
.__c00184 { /* 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_c00184 { /* info for Javascript */
  display:none;
}
.l_c00184 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00184 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00184 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00184: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_c00184 {
    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_c00184.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00184.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_c00184 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00184{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00184;src:url('chunks/assets/font_b5065777eba167c21df3ce02.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.000000;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;}
.m4b_c00184{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m67_c00184{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00184{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00184{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00184{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00184{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m47_c00184{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00184{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m29_c00184{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00184{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mae_c00184{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m95_c00184{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00184{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00184{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m65_c00184{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00184{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m90_c00184{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.maf_c00184{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00184{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00184{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00184{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00184{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00184{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8_c00184{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00184{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00184{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00184{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00184{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m76_c00184{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00184{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00184{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00184{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m89_c00184{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m32_c00184{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00184{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m87_c00184{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m73_c00184{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m75_c00184{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m42_c00184{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m78_c00184{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m84_c00184{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00184{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00184{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mac_c00184{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m37_c00184{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m99_c00184{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00184{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m25_c00184{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00184{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m51_c00184{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00184{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m80_c00184{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00184{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m92_c00184{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00184{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00184{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);}
.m46_c00184{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m24_c00184{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00184{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00184{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m86_c00184{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00184{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00184{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m36_c00184{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m57_c00184{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m26_c00184{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m66_c00184{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m45_c00184{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m98_c00184{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m15_c00184{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00184{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00184{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m91_c00184{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m79_c00184{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00184{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00184{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00184{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mad_c00184{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00184{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00184{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m58_c00184{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00184{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m48_c00184{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00184{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m14_c00184{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m97_c00184{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m41_c00184{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00184{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00184{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00184{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00184{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m83_c00184{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m30_c00184{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m94_c00184{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00184{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m82_c00184{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mab_c00184{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m40_c00184{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m81_c00184{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m93_c00184{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.maa_c00184{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m96_c00184{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf_c00184{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.v0_c00184{vertical-align:0.000000px;}
.ls0_c00184{letter-spacing:0.000000px;}
.sc__c00184{text-shadow:none;}
.sc0_c00184{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__c00184{-webkit-text-stroke:0px transparent;}
.sc0_c00184{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00184{word-spacing:-10.375000px;}
.ws0_c00184{word-spacing:-10.250000px;}
.wsc_c00184{word-spacing:-9.000000px;}
.ws3_c00184{word-spacing:-5.665417px;}
.ws4_c00184{word-spacing:-5.346774px;}
.ws1_c00184{word-spacing:-3.945869px;}
.ws6_c00184{word-spacing:-3.705521px;}
.ws2_c00184{word-spacing:-1.422271px;}
.wsf_c00184{word-spacing:0.000000px;}
.ws7_c00184{word-spacing:1.500000px;}
.wsa_c00184{word-spacing:3.888889px;}
.wsb_c00184{word-spacing:4.227273px;}
.wse_c00184{word-spacing:5.496933px;}
.ws9_c00184{word-spacing:6.026461px;}
.ws8_c00184{word-spacing:12.125000px;}
.wsd_c00184{word-spacing:13.419869px;}
.fc0_c00184{color:transparent;}
.fs0_c00184{font-size:54.000000px;}
.y0_c00184{bottom:0.000000px;}
.y2c_c00184{bottom:145.050000px;}
.y2b_c00184{bottom:190.350000px;}
.y2a_c00184{bottom:210.150000px;}
.y29_c00184{bottom:230.250000px;}
.y28_c00184{bottom:250.050000px;}
.y27_c00184{bottom:270.150000px;}
.y26_c00184{bottom:289.950000px;}
.y25_c00184{bottom:310.050000px;}
.y24_c00184{bottom:329.850000px;}
.y23_c00184{bottom:349.650000px;}
.y22_c00184{bottom:369.750000px;}
.y21_c00184{bottom:389.550000px;}
.y20_c00184{bottom:409.650000px;}
.y1f_c00184{bottom:429.300000px;}
.y1e_c00184{bottom:449.850000px;}
.y1d_c00184{bottom:469.950000px;}
.y1c_c00184{bottom:489.750000px;}
.y1b_c00184{bottom:509.850000px;}
.y1a_c00184{bottom:529.650000px;}
.y19_c00184{bottom:549.750000px;}
.y18_c00184{bottom:569.550000px;}
.y17_c00184{bottom:589.350000px;}
.y16_c00184{bottom:608.550000px;}
.y15_c00184{bottom:629.100000px;}
.y14_c00184{bottom:649.200000px;}
.y13_c00184{bottom:669.300000px;}
.y12_c00184{bottom:688.800000px;}
.y11_c00184{bottom:708.900000px;}
.y10_c00184{bottom:728.700000px;}
.yf_c00184{bottom:748.500000px;}
.ye_c00184{bottom:768.300000px;}
.yd_c00184{bottom:788.100000px;}
.yc_c00184{bottom:807.750000px;}
.yb_c00184{bottom:828.600000px;}
.ya_c00184{bottom:848.400000px;}
.y9_c00184{bottom:868.500000px;}
.y8_c00184{bottom:888.600000px;}
.y7_c00184{bottom:908.400000px;}
.y6_c00184{bottom:928.200000px;}
.y5_c00184{bottom:948.000000px;}
.y4_c00184{bottom:968.100000px;}
.y3_c00184{bottom:987.900000px;}
.y2_c00184{bottom:1008.000000px;}
.y1_c00184{bottom:1046.100000px;}
.h2_c00184{height:54.000000px;}
.h1_c00184{height:1167.750000px;}
.h0_c00184{height:1167.839997px;}
.w1_c00184{width:920.250000px;}
.w0_c00184{width:920.519990px;}
.x0_c00184{left:0.000000px;}
.xb5_c00184{left:142.500000px;}
.x6a_c00184{left:143.850000px;}
.x13_c00184{left:144.900000px;}
.x1_c00184{left:146.100000px;}
.x2_c00184{left:155.400000px;}
.x7a_c00184{left:158.850000px;}
.x8e_c00184{left:164.850000px;}
.x105_c00184{left:166.200000px;}
.xb6_c00184{left:168.750000px;}
.x3b_c00184{left:169.800000px;}
.xdb_c00184{left:171.600000px;}
.x4_c00184{left:173.100000px;}
.x10a_c00184{left:174.300000px;}
.x2f_c00184{left:175.800000px;}
.x137_c00184{left:177.750000px;}
.x5e_c00184{left:180.000000px;}
.x11e_c00184{left:181.950000px;}
.x84_c00184{left:183.600000px;}
.xc1_c00184{left:184.650000px;}
.xb7_c00184{left:186.000000px;}
.x7b_c00184{left:187.350000px;}
.x14_c00184{left:189.300000px;}
.x4a_c00184{left:191.100000px;}
.xfb_c00184{left:193.800000px;}
.x138_c00184{left:195.000000px;}
.x3c_c00184{left:196.800000px;}
.xb8_c00184{left:197.850000px;}
.x5_c00184{left:200.100000px;}
.xdc_c00184{left:201.450000px;}
.x98_c00184{left:204.300000px;}
.x106_c00184{left:206.550000px;}
.x4b_c00184{left:208.050000px;}
.x30_c00184{left:209.250000px;}
.x15_c00184{left:210.600000px;}
.x6b_c00184{left:212.250000px;}
.x3d_c00184{left:213.750000px;}
.xee_c00184{left:214.950000px;}
.x130_c00184{left:218.850000px;}
.xa4_c00184{left:220.200000px;}
.xe4_c00184{left:221.550000px;}
.xdd_c00184{left:223.800000px;}
.x85_c00184{left:226.800000px;}
.xc2_c00184{left:228.150000px;}
.xcf_c00184{left:229.350000px;}
.x23_c00184{left:230.400000px;}
.xfc_c00184{left:232.350000px;}
.x8f_c00184{left:234.750000px;}
.x131_c00184{left:235.800000px;}
.x3e_c00184{left:239.250000px;}
.x118_c00184{left:244.500000px;}
.xa5_c00184{left:246.150000px;}
.x6c_c00184{left:247.500000px;}
.xac_c00184{left:248.700000px;}
.x16_c00184{left:250.200000px;}
.x102_c00184{left:251.850000px;}
.xef_c00184{left:253.050000px;}
.x112_c00184{left:254.250000px;}
.x129_c00184{left:256.050000px;}
.x124_c00184{left:258.600000px;}
.x99_c00184{left:261.150000px;}
.xde_c00184{left:262.350000px;}
.x24_c00184{left:263.550000px;}
.x7c_c00184{left:266.550000px;}
.x55_c00184{left:268.050000px;}
.x6_c00184{left:269.250000px;}
.x6d_c00184{left:272.700000px;}
.xf6_c00184{left:275.250000px;}
.x9a_c00184{left:278.100000px;}
.xad_c00184{left:279.300000px;}
.xd0_c00184{left:281.250000px;}
.xf0_c00184{left:282.600000px;}
.x31_c00184{left:284.100000px;}
.x7d_c00184{left:286.050000px;}
.x25_c00184{left:289.500000px;}
.xc3_c00184{left:291.150000px;}
.x56_c00184{left:293.550000px;}
.xae_c00184{left:294.750000px;}
.x4c_c00184{left:296.550000px;}
.x6e_c00184{left:300.750000px;}
.x11b_c00184{left:302.550000px;}
.x10b_c00184{left:304.650000px;}
.x7e_c00184{left:306.900000px;}
.x3f_c00184{left:308.400000px;}
.xd1_c00184{left:310.050000px;}
.x6f_c00184{left:311.850000px;}
.x32_c00184{left:312.900000px;}
.x86_c00184{left:314.250000px;}
.xdf_c00184{left:316.350000px;}
.x103_c00184{left:317.850000px;}
.xa6_c00184{left:319.200000px;}
.xe5_c00184{left:320.850000px;}
.x17_c00184{left:322.950000px;}
.x57_c00184{left:324.450000px;}
.xd6_c00184{left:328.650000px;}
.x7_c00184{left:331.200000px;}
.x9b_c00184{left:333.900000px;}
.xa7_c00184{left:336.150000px;}
.x40_c00184{left:337.950000px;}
.x70_c00184{left:340.350000px;}
.x125_c00184{left:341.850000px;}
.xc4_c00184{left:343.350000px;}
.x58_c00184{left:345.300000px;}
.x12c_c00184{left:347.700000px;}
.xd2_c00184{left:348.900000px;}
.xe6_c00184{left:352.950000px;}
.x18_c00184{left:354.300000px;}
.x33_c00184{left:357.900000px;}
.x26_c00184{left:358.950000px;}
.xca_c00184{left:360.600000px;}
.x9c_c00184{left:362.700000px;}
.x5f_c00184{left:364.650000px;}
.x8_c00184{left:366.150000px;}
.xf1_c00184{left:367.650000px;}
.x12d_c00184{left:370.350000px;}
.x87_c00184{left:371.400000px;}
.x71_c00184{left:373.500000px;}
.x113_c00184{left:375.900000px;}
.x27_c00184{left:378.750000px;}
.x41_c00184{left:381.450000px;}
.x132_c00184{left:382.950000px;}
.xb9_c00184{left:384.000000px;}
.x10c_c00184{left:387.000000px;}
.xd7_c00184{left:388.050000px;}
.xaf_c00184{left:390.150000px;}
.x7f_c00184{left:391.500000px;}
.xe0_c00184{left:394.050000px;}
.x60_c00184{left:396.300000px;}
.x88_c00184{left:397.350000px;}
.x28_c00184{left:398.550000px;}
.x72_c00184{left:401.550000px;}
.x9_c00184{left:405.000000px;}
.xf7_c00184{left:406.350000px;}
.x34_c00184{left:408.300000px;}
.x42_c00184{left:410.250000px;}
.xa8_c00184{left:412.500000px;}
.x4d_c00184{left:414.000000px;}
.x133_c00184{left:416.850000px;}
.xe7_c00184{left:418.050000px;}
.xfd_c00184{left:420.300000px;}
.x126_c00184{left:422.550000px;}
.x19_c00184{left:424.800000px;}
.x3_c00184{left:427.200000px;}
.x90_c00184{left:429.900000px;}
.x12e_c00184{left:433.050000px;}
.x10d_c00184{left:434.400000px;}
.x29_c00184{left:436.050000px;}
.xc5_c00184{left:437.250000px;}
.xa_c00184{left:439.950000px;}
.x9d_c00184{left:441.300000px;}
.x4e_c00184{left:444.900000px;}
.xba_c00184{left:446.700000px;}
.x1a_c00184{left:451.050000px;}
.xfe_c00184{left:452.400000px;}
.x107_c00184{left:453.600000px;}
.xa9_c00184{left:455.400000px;}
.xcb_c00184{left:457.350000px;}
.x91_c00184{left:458.400000px;}
.x114_c00184{left:462.000000px;}
.x12a_c00184{left:464.100000px;}
.xf2_c00184{left:466.350000px;}
.x2a_c00184{left:469.950000px;}
.x13b_c00184{left:472.050000px;}
.xc6_c00184{left:473.250000px;}
.x89_c00184{left:475.800000px;}
.xe1_c00184{left:477.600000px;}
.x108_c00184{left:482.100000px;}
.x43_c00184{left:484.050000px;}
.x1b_c00184{left:486.000000px;}
.xd8_c00184{left:487.050000px;}
.x35_c00184{left:488.550000px;}
.xaa_c00184{left:489.900000px;}
.x134_c00184{left:492.750000px;}
.x8a_c00184{left:493.800000px;}
.xb0_c00184{left:495.600000px;}
.x4f_c00184{left:496.800000px;}
.x59_c00184{left:499.800000px;}
.x139_c00184{left:502.050000px;}
.x61_c00184{left:506.100000px;}
.x127_c00184{left:507.150000px;}
.xb_c00184{left:508.650000px;}
.x92_c00184{left:510.150000px;}
.xbb_c00184{left:511.950000px;}
.x73_c00184{left:513.150000px;}
.x11f_c00184{left:514.200000px;}
.xf3_c00184{left:518.550000px;}
.x2b_c00184{left:520.050000px;}
.xc7_c00184{left:521.850000px;}
.x120_c00184{left:524.700000px;}
.x104_c00184{left:526.500000px;}
.x13c_c00184{left:529.650000px;}
.xcc_c00184{left:531.150000px;}
.xc_c00184{left:534.150000px;}
.x119_c00184{left:535.800000px;}
.x62_c00184{left:537.000000px;}
.x1c_c00184{left:538.950000px;}
.x93_c00184{left:540.750000px;}
.xab_c00184{left:542.100000px;}
.x44_c00184{left:544.950000px;}
.x74_c00184{left:547.350000px;}
.x80_c00184{left:549.900000px;}
.xcd_c00184{left:550.950000px;}
.x13d_c00184{left:552.750000px;}
.x11a_c00184{left:553.800000px;}
.x5a_c00184{left:555.300000px;}
.x94_c00184{left:557.700000px;}
.x45_c00184{left:562.200000px;}
.x50_c00184{left:563.700000px;}
.xc8_c00184{left:565.050000px;}
.x13a_c00184{left:566.850000px;}
.x9e_c00184{left:568.050000px;}
.x63_c00184{left:571.200000px;}
.x75_c00184{left:572.550000px;}
.x5b_c00184{left:575.850000px;}
.x36_c00184{left:577.050000px;}
.xbc_c00184{left:578.250000px;}
.x2c_c00184{left:582.750000px;}
.x135_c00184{left:584.250000px;}
.xd3_c00184{left:585.300000px;}
.x64_c00184{left:587.700000px;}
.x9f_c00184{left:590.400000px;}
.x1d_c00184{left:591.450000px;}
.xf4_c00184{left:595.950000px;}
.x121_c00184{left:597.000000px;}
.xbd_c00184{left:599.550000px;}
.x51_c00184{left:600.750000px;}
.x37_c00184{left:602.250000px;}
.xe8_c00184{left:603.300000px;}
.xd4_c00184{left:604.800000px;}
.x115_c00184{left:607.200000px;}
.x81_c00184{left:609.000000px;}
.x1e_c00184{left:610.950000px;}
.xd_c00184{left:613.350000px;}
.x46_c00184{left:614.700000px;}
.xb1_c00184{left:616.500000px;}
.x65_c00184{left:618.000000px;}
.xe2_c00184{left:623.100000px;}
.xbe_c00184{left:625.050000px;}
.x5c_c00184{left:627.750000px;}
.xe_c00184{left:630.300000px;}
.x52_c00184{left:634.200000px;}
.x1f_c00184{left:636.450000px;}
.xe9_c00184{left:637.800000px;}
.x10e_c00184{left:640.950000px;}
.x95_c00184{left:642.000000px;}
.xb2_c00184{left:643.500000px;}
.xd9_c00184{left:646.500000px;}
.x136_c00184{left:648.000000px;}
.xf8_c00184{left:649.800000px;}
.x66_c00184{left:655.050000px;}
.x47_c00184{left:657.150000px;}
.xf5_c00184{left:658.200000px;}
.xa0_c00184{left:660.300000px;}
.x76_c00184{left:661.800000px;}
.x8b_c00184{left:663.450000px;}
.x128_c00184{left:666.300000px;}
.xf_c00184{left:667.800000px;}
.xea_c00184{left:669.900000px;}
.x38_c00184{left:674.250000px;}
.x96_c00184{left:676.500000px;}
.x10f_c00184{left:677.700000px;}
.x77_c00184{left:679.050000px;}
.x82_c00184{left:680.550000px;}
.x67_c00184{left:682.350000px;}
.xa1_c00184{left:683.700000px;}
.x20_c00184{left:687.600000px;}
.x109_c00184{left:688.650000px;}
.x2d_c00184{left:692.250000px;}
.xb3_c00184{left:694.650000px;}
.x10_c00184{left:696.300000px;}
.xff_c00184{left:697.800000px;}
.x53_c00184{left:700.050000px;}
.xf9_c00184{left:702.450000px;}
.x8c_c00184{left:706.950000px;}
.x110_c00184{left:708.300000px;}
.x122_c00184{left:709.350000px;}
.xeb_c00184{left:714.150000px;}
.x48_c00184{left:715.800000px;}
.x100_c00184{left:717.600000px;}
.xc9_c00184{left:718.800000px;}
.xa2_c00184{left:720.000000px;}
.x11c_c00184{left:721.500000px;}
.xda_c00184{left:722.550000px;}
.xce_c00184{left:724.800000px;}
.x117_c00184{left:726.600000px;}
.xe3_c00184{left:727.800000px;}
.x78_c00184{left:730.200000px;}
.xbf_c00184{left:732.600000px;}
.x21_c00184{left:735.450000px;}
.x79_c00184{left:737.700000px;}
.x2e_c00184{left:738.750000px;}
.x49_c00184{left:741.300000px;}
.x39_c00184{left:743.700000px;}
.x101_c00184{left:746.100000px;}
.xb4_c00184{left:748.650000px;}
.x54_c00184{left:752.250000px;}
.x5d_c00184{left:753.450000px;}
.x97_c00184{left:755.700000px;}
.x11_c00184{left:757.200000px;}
.x68_c00184{left:759.450000px;}
.x22_c00184{left:763.200000px;}
.xec_c00184{left:764.250000px;}
.x83_c00184{left:765.450000px;}
.xfa_c00184{left:770.550000px;}
.x3a_c00184{left:771.750000px;}
.x12b_c00184{left:774.000000px;}
.x69_c00184{left:778.950000px;}
.x12_c00184{left:780.300000px;}
.x8d_c00184{left:782.250000px;}
.xd5_c00184{left:785.700000px;}
.xed_c00184{left:787.350000px;}
.x123_c00184{left:789.300000px;}
.x12f_c00184{left:793.500000px;}
.x111_c00184{left:794.700000px;}
.xc0_c00184{left:796.200000px;}
.xa3_c00184{left:797.700000px;}
.x116_c00184{left:798.900000px;}
.x11d_c00184{left:802.500000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws5_c00184{word-spacing:-9.222222pt;}
.ws0_c00184{word-spacing:-9.111111pt;}
.wsc_c00184{word-spacing:-8.000000pt;}
.ws3_c00184{word-spacing:-5.035926pt;}
.ws4_c00184{word-spacing:-4.752688pt;}
.ws1_c00184{word-spacing:-3.507439pt;}
.ws6_c00184{word-spacing:-3.293797pt;}
.ws2_c00184{word-spacing:-1.264241pt;}
.wsf_c00184{word-spacing:0.000000pt;}
.ws7_c00184{word-spacing:1.333333pt;}
.wsa_c00184{word-spacing:3.456790pt;}
.wsb_c00184{word-spacing:3.757576pt;}
.wse_c00184{word-spacing:4.886162pt;}
.ws9_c00184{word-spacing:5.356854pt;}
.ws8_c00184{word-spacing:10.777778pt;}
.wsd_c00184{word-spacing:11.928772pt;}
.fs0_c00184{font-size:48.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y2c_c00184{bottom:128.933333pt;}
.y2b_c00184{bottom:169.200000pt;}
.y2a_c00184{bottom:186.800000pt;}
.y29_c00184{bottom:204.666667pt;}
.y28_c00184{bottom:222.266667pt;}
.y27_c00184{bottom:240.133333pt;}
.y26_c00184{bottom:257.733333pt;}
.y25_c00184{bottom:275.600000pt;}
.y24_c00184{bottom:293.200000pt;}
.y23_c00184{bottom:310.800000pt;}
.y22_c00184{bottom:328.666667pt;}
.y21_c00184{bottom:346.266667pt;}
.y20_c00184{bottom:364.133333pt;}
.y1f_c00184{bottom:381.600000pt;}
.y1e_c00184{bottom:399.866667pt;}
.y1d_c00184{bottom:417.733333pt;}
.y1c_c00184{bottom:435.333333pt;}
.y1b_c00184{bottom:453.200000pt;}
.y1a_c00184{bottom:470.800000pt;}
.y19_c00184{bottom:488.666667pt;}
.y18_c00184{bottom:506.266667pt;}
.y17_c00184{bottom:523.866667pt;}
.y16_c00184{bottom:540.933333pt;}
.y15_c00184{bottom:559.200000pt;}
.y14_c00184{bottom:577.066667pt;}
.y13_c00184{bottom:594.933333pt;}
.y12_c00184{bottom:612.266667pt;}
.y11_c00184{bottom:630.133333pt;}
.y10_c00184{bottom:647.733333pt;}
.yf_c00184{bottom:665.333333pt;}
.ye_c00184{bottom:682.933333pt;}
.yd_c00184{bottom:700.533333pt;}
.yc_c00184{bottom:718.000000pt;}
.yb_c00184{bottom:736.533333pt;}
.ya_c00184{bottom:754.133333pt;}
.y9_c00184{bottom:772.000000pt;}
.y8_c00184{bottom:789.866667pt;}
.y7_c00184{bottom:807.466667pt;}
.y6_c00184{bottom:825.066667pt;}
.y5_c00184{bottom:842.666667pt;}
.y4_c00184{bottom:860.533333pt;}
.y3_c00184{bottom:878.133333pt;}
.y2_c00184{bottom:896.000000pt;}
.y1_c00184{bottom:929.866667pt;}
.h2_c00184{height:48.000000pt;}
.h1_c00184{height:1038.000000pt;}
.h0_c00184{height:1038.079997pt;}
.w1_c00184{width:818.000000pt;}
.w0_c00184{width:818.239991pt;}
.x0_c00184{left:0.000000pt;}
.xb5_c00184{left:126.666667pt;}
.x6a_c00184{left:127.866667pt;}
.x13_c00184{left:128.800000pt;}
.x1_c00184{left:129.866667pt;}
.x2_c00184{left:138.133333pt;}
.x7a_c00184{left:141.200000pt;}
.x8e_c00184{left:146.533333pt;}
.x105_c00184{left:147.733333pt;}
.xb6_c00184{left:150.000000pt;}
.x3b_c00184{left:150.933333pt;}
.xdb_c00184{left:152.533333pt;}
.x4_c00184{left:153.866667pt;}
.x10a_c00184{left:154.933333pt;}
.x2f_c00184{left:156.266667pt;}
.x137_c00184{left:158.000000pt;}
.x5e_c00184{left:160.000000pt;}
.x11e_c00184{left:161.733333pt;}
.x84_c00184{left:163.200000pt;}
.xc1_c00184{left:164.133333pt;}
.xb7_c00184{left:165.333333pt;}
.x7b_c00184{left:166.533333pt;}
.x14_c00184{left:168.266667pt;}
.x4a_c00184{left:169.866667pt;}
.xfb_c00184{left:172.266667pt;}
.x138_c00184{left:173.333333pt;}
.x3c_c00184{left:174.933333pt;}
.xb8_c00184{left:175.866667pt;}
.x5_c00184{left:177.866667pt;}
.xdc_c00184{left:179.066667pt;}
.x98_c00184{left:181.600000pt;}
.x106_c00184{left:183.600000pt;}
.x4b_c00184{left:184.933333pt;}
.x30_c00184{left:186.000000pt;}
.x15_c00184{left:187.200000pt;}
.x6b_c00184{left:188.666667pt;}
.x3d_c00184{left:190.000000pt;}
.xee_c00184{left:191.066667pt;}
.x130_c00184{left:194.533333pt;}
.xa4_c00184{left:195.733333pt;}
.xe4_c00184{left:196.933333pt;}
.xdd_c00184{left:198.933333pt;}
.x85_c00184{left:201.600000pt;}
.xc2_c00184{left:202.800000pt;}
.xcf_c00184{left:203.866667pt;}
.x23_c00184{left:204.800000pt;}
.xfc_c00184{left:206.533333pt;}
.x8f_c00184{left:208.666667pt;}
.x131_c00184{left:209.600000pt;}
.x3e_c00184{left:212.666667pt;}
.x118_c00184{left:217.333333pt;}
.xa5_c00184{left:218.800000pt;}
.x6c_c00184{left:220.000000pt;}
.xac_c00184{left:221.066667pt;}
.x16_c00184{left:222.400000pt;}
.x102_c00184{left:223.866667pt;}
.xef_c00184{left:224.933333pt;}
.x112_c00184{left:226.000000pt;}
.x129_c00184{left:227.600000pt;}
.x124_c00184{left:229.866667pt;}
.x99_c00184{left:232.133333pt;}
.xde_c00184{left:233.200000pt;}
.x24_c00184{left:234.266667pt;}
.x7c_c00184{left:236.933333pt;}
.x55_c00184{left:238.266667pt;}
.x6_c00184{left:239.333333pt;}
.x6d_c00184{left:242.400000pt;}
.xf6_c00184{left:244.666667pt;}
.x9a_c00184{left:247.200000pt;}
.xad_c00184{left:248.266667pt;}
.xd0_c00184{left:250.000000pt;}
.xf0_c00184{left:251.200000pt;}
.x31_c00184{left:252.533333pt;}
.x7d_c00184{left:254.266667pt;}
.x25_c00184{left:257.333333pt;}
.xc3_c00184{left:258.800000pt;}
.x56_c00184{left:260.933333pt;}
.xae_c00184{left:262.000000pt;}
.x4c_c00184{left:263.600000pt;}
.x6e_c00184{left:267.333333pt;}
.x11b_c00184{left:268.933333pt;}
.x10b_c00184{left:270.800000pt;}
.x7e_c00184{left:272.800000pt;}
.x3f_c00184{left:274.133333pt;}
.xd1_c00184{left:275.600000pt;}
.x6f_c00184{left:277.200000pt;}
.x32_c00184{left:278.133333pt;}
.x86_c00184{left:279.333333pt;}
.xdf_c00184{left:281.200000pt;}
.x103_c00184{left:282.533333pt;}
.xa6_c00184{left:283.733333pt;}
.xe5_c00184{left:285.200000pt;}
.x17_c00184{left:287.066667pt;}
.x57_c00184{left:288.400000pt;}
.xd6_c00184{left:292.133333pt;}
.x7_c00184{left:294.400000pt;}
.x9b_c00184{left:296.800000pt;}
.xa7_c00184{left:298.800000pt;}
.x40_c00184{left:300.400000pt;}
.x70_c00184{left:302.533333pt;}
.x125_c00184{left:303.866667pt;}
.xc4_c00184{left:305.200000pt;}
.x58_c00184{left:306.933333pt;}
.x12c_c00184{left:309.066667pt;}
.xd2_c00184{left:310.133333pt;}
.xe6_c00184{left:313.733333pt;}
.x18_c00184{left:314.933333pt;}
.x33_c00184{left:318.133333pt;}
.x26_c00184{left:319.066667pt;}
.xca_c00184{left:320.533333pt;}
.x9c_c00184{left:322.400000pt;}
.x5f_c00184{left:324.133333pt;}
.x8_c00184{left:325.466667pt;}
.xf1_c00184{left:326.800000pt;}
.x12d_c00184{left:329.200000pt;}
.x87_c00184{left:330.133333pt;}
.x71_c00184{left:332.000000pt;}
.x113_c00184{left:334.133333pt;}
.x27_c00184{left:336.666667pt;}
.x41_c00184{left:339.066667pt;}
.x132_c00184{left:340.400000pt;}
.xb9_c00184{left:341.333333pt;}
.x10c_c00184{left:344.000000pt;}
.xd7_c00184{left:344.933333pt;}
.xaf_c00184{left:346.800000pt;}
.x7f_c00184{left:348.000000pt;}
.xe0_c00184{left:350.266667pt;}
.x60_c00184{left:352.266667pt;}
.x88_c00184{left:353.200000pt;}
.x28_c00184{left:354.266667pt;}
.x72_c00184{left:356.933333pt;}
.x9_c00184{left:360.000000pt;}
.xf7_c00184{left:361.200000pt;}
.x34_c00184{left:362.933333pt;}
.x42_c00184{left:364.666667pt;}
.xa8_c00184{left:366.666667pt;}
.x4d_c00184{left:368.000000pt;}
.x133_c00184{left:370.533333pt;}
.xe7_c00184{left:371.600000pt;}
.xfd_c00184{left:373.600000pt;}
.x126_c00184{left:375.600000pt;}
.x19_c00184{left:377.600000pt;}
.x3_c00184{left:379.733333pt;}
.x90_c00184{left:382.133333pt;}
.x12e_c00184{left:384.933333pt;}
.x10d_c00184{left:386.133333pt;}
.x29_c00184{left:387.600000pt;}
.xc5_c00184{left:388.666667pt;}
.xa_c00184{left:391.066667pt;}
.x9d_c00184{left:392.266667pt;}
.x4e_c00184{left:395.466667pt;}
.xba_c00184{left:397.066667pt;}
.x1a_c00184{left:400.933333pt;}
.xfe_c00184{left:402.133333pt;}
.x107_c00184{left:403.200000pt;}
.xa9_c00184{left:404.800000pt;}
.xcb_c00184{left:406.533333pt;}
.x91_c00184{left:407.466667pt;}
.x114_c00184{left:410.666667pt;}
.x12a_c00184{left:412.533333pt;}
.xf2_c00184{left:414.533333pt;}
.x2a_c00184{left:417.733333pt;}
.x13b_c00184{left:419.600000pt;}
.xc6_c00184{left:420.666667pt;}
.x89_c00184{left:422.933333pt;}
.xe1_c00184{left:424.533333pt;}
.x108_c00184{left:428.533333pt;}
.x43_c00184{left:430.266667pt;}
.x1b_c00184{left:432.000000pt;}
.xd8_c00184{left:432.933333pt;}
.x35_c00184{left:434.266667pt;}
.xaa_c00184{left:435.466667pt;}
.x134_c00184{left:438.000000pt;}
.x8a_c00184{left:438.933333pt;}
.xb0_c00184{left:440.533333pt;}
.x4f_c00184{left:441.600000pt;}
.x59_c00184{left:444.266667pt;}
.x139_c00184{left:446.266667pt;}
.x61_c00184{left:449.866667pt;}
.x127_c00184{left:450.800000pt;}
.xb_c00184{left:452.133333pt;}
.x92_c00184{left:453.466667pt;}
.xbb_c00184{left:455.066667pt;}
.x73_c00184{left:456.133333pt;}
.x11f_c00184{left:457.066667pt;}
.xf3_c00184{left:460.933333pt;}
.x2b_c00184{left:462.266667pt;}
.xc7_c00184{left:463.866667pt;}
.x120_c00184{left:466.400000pt;}
.x104_c00184{left:468.000000pt;}
.x13c_c00184{left:470.800000pt;}
.xcc_c00184{left:472.133333pt;}
.xc_c00184{left:474.800000pt;}
.x119_c00184{left:476.266667pt;}
.x62_c00184{left:477.333333pt;}
.x1c_c00184{left:479.066667pt;}
.x93_c00184{left:480.666667pt;}
.xab_c00184{left:481.866667pt;}
.x44_c00184{left:484.400000pt;}
.x74_c00184{left:486.533333pt;}
.x80_c00184{left:488.800000pt;}
.xcd_c00184{left:489.733333pt;}
.x13d_c00184{left:491.333333pt;}
.x11a_c00184{left:492.266667pt;}
.x5a_c00184{left:493.600000pt;}
.x94_c00184{left:495.733333pt;}
.x45_c00184{left:499.733333pt;}
.x50_c00184{left:501.066667pt;}
.xc8_c00184{left:502.266667pt;}
.x13a_c00184{left:503.866667pt;}
.x9e_c00184{left:504.933333pt;}
.x63_c00184{left:507.733333pt;}
.x75_c00184{left:508.933333pt;}
.x5b_c00184{left:511.866667pt;}
.x36_c00184{left:512.933333pt;}
.xbc_c00184{left:514.000000pt;}
.x2c_c00184{left:518.000000pt;}
.x135_c00184{left:519.333333pt;}
.xd3_c00184{left:520.266667pt;}
.x64_c00184{left:522.400000pt;}
.x9f_c00184{left:524.800000pt;}
.x1d_c00184{left:525.733333pt;}
.xf4_c00184{left:529.733333pt;}
.x121_c00184{left:530.666667pt;}
.xbd_c00184{left:532.933333pt;}
.x51_c00184{left:534.000000pt;}
.x37_c00184{left:535.333333pt;}
.xe8_c00184{left:536.266667pt;}
.xd4_c00184{left:537.600000pt;}
.x115_c00184{left:539.733333pt;}
.x81_c00184{left:541.333333pt;}
.x1e_c00184{left:543.066667pt;}
.xd_c00184{left:545.200000pt;}
.x46_c00184{left:546.400000pt;}
.xb1_c00184{left:548.000000pt;}
.x65_c00184{left:549.333333pt;}
.xe2_c00184{left:553.866667pt;}
.xbe_c00184{left:555.600000pt;}
.x5c_c00184{left:558.000000pt;}
.xe_c00184{left:560.266667pt;}
.x52_c00184{left:563.733333pt;}
.x1f_c00184{left:565.733333pt;}
.xe9_c00184{left:566.933333pt;}
.x10e_c00184{left:569.733333pt;}
.x95_c00184{left:570.666667pt;}
.xb2_c00184{left:572.000000pt;}
.xd9_c00184{left:574.666667pt;}
.x136_c00184{left:576.000000pt;}
.xf8_c00184{left:577.600000pt;}
.x66_c00184{left:582.266667pt;}
.x47_c00184{left:584.133333pt;}
.xf5_c00184{left:585.066667pt;}
.xa0_c00184{left:586.933333pt;}
.x76_c00184{left:588.266667pt;}
.x8b_c00184{left:589.733333pt;}
.x128_c00184{left:592.266667pt;}
.xf_c00184{left:593.600000pt;}
.xea_c00184{left:595.466667pt;}
.x38_c00184{left:599.333333pt;}
.x96_c00184{left:601.333333pt;}
.x10f_c00184{left:602.400000pt;}
.x77_c00184{left:603.600000pt;}
.x82_c00184{left:604.933333pt;}
.x67_c00184{left:606.533333pt;}
.xa1_c00184{left:607.733333pt;}
.x20_c00184{left:611.200000pt;}
.x109_c00184{left:612.133333pt;}
.x2d_c00184{left:615.333333pt;}
.xb3_c00184{left:617.466667pt;}
.x10_c00184{left:618.933333pt;}
.xff_c00184{left:620.266667pt;}
.x53_c00184{left:622.266667pt;}
.xf9_c00184{left:624.400000pt;}
.x8c_c00184{left:628.400000pt;}
.x110_c00184{left:629.600000pt;}
.x122_c00184{left:630.533333pt;}
.xeb_c00184{left:634.800000pt;}
.x48_c00184{left:636.266667pt;}
.x100_c00184{left:637.866667pt;}
.xc9_c00184{left:638.933333pt;}
.xa2_c00184{left:640.000000pt;}
.x11c_c00184{left:641.333333pt;}
.xda_c00184{left:642.266667pt;}
.xce_c00184{left:644.266667pt;}
.x117_c00184{left:645.866667pt;}
.xe3_c00184{left:646.933333pt;}
.x78_c00184{left:649.066667pt;}
.xbf_c00184{left:651.200000pt;}
.x21_c00184{left:653.733333pt;}
.x79_c00184{left:655.733333pt;}
.x2e_c00184{left:656.666667pt;}
.x49_c00184{left:658.933333pt;}
.x39_c00184{left:661.066667pt;}
.x101_c00184{left:663.200000pt;}
.xb4_c00184{left:665.466667pt;}
.x54_c00184{left:668.666667pt;}
.x5d_c00184{left:669.733333pt;}
.x97_c00184{left:671.733333pt;}
.x11_c00184{left:673.066667pt;}
.x68_c00184{left:675.066667pt;}
.x22_c00184{left:678.400000pt;}
.xec_c00184{left:679.333333pt;}
.x83_c00184{left:680.400000pt;}
.xfa_c00184{left:684.933333pt;}
.x3a_c00184{left:686.000000pt;}
.x12b_c00184{left:688.000000pt;}
.x69_c00184{left:692.400000pt;}
.x12_c00184{left:693.600000pt;}
.x8d_c00184{left:695.333333pt;}
.xd5_c00184{left:698.400000pt;}
.xed_c00184{left:699.866667pt;}
.x123_c00184{left:701.600000pt;}
.x12f_c00184{left:705.333333pt;}
.x111_c00184{left:706.400000pt;}
.xc0_c00184{left:707.733333pt;}
.xa3_c00184{left:709.066667pt;}
.x116_c00184{left:710.133333pt;}
.x11d_c00184{left:713.333333pt;}
}





/* 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_c00185 {
    display:none;
  }
  .loading-indicator_c00185.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00185 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_c00185 { 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_c00185" -> "#page-container .classname_c00185")
 */
.pf_c00185 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00185 { /* 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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00185 { /* 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_c00185 { /* 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_c00185 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00185 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00185 {overflow:visible;}
  }
}
.c_c00185 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00185 { /* 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_c00185:after { /* webkit #35443 */
  content: '';
}
.t_c00185:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00185 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 */
}
.__c00185 { /* 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_c00185 { /* info for Javascript */
  display:none;
}
.l_c00185 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00185 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00185 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00185: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_c00185 {
    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_c00185.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00185.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_c00185 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00185{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00185;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.000000;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;}
.mb4_c00185{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m94_c00185{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00185{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m91_c00185{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00185{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00185{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00185{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00185{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00185{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00185{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mba_c00185{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00185{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00185{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m50_c00185{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00185{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m64_c00185{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mae_c00185{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mac_c00185{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00185{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m92_c00185{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m93_c00185{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m40_c00185{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00185{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00185{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m34_c00185{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00185{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1_c00185{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00185{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00185{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00185{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m48_c00185{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00185{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m82_c00185{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00185{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6_c00185{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00185{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md_c00185{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m62_c00185{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m19_c00185{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m56_c00185{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00185{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00185{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m75_c00185{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00185{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00185{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00185{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{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);}
.m66_c00185{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m67_c00185{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me_c00185{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00185{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m33_c00185{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m41_c00185{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00185{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m5_c00185{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m15_c00185{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00185{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c00185{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m36_c00185{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m13_c00185{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m0_c00185{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m57_c00185{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m77_c00185{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00185{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m30_c00185{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.mad_c00185{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.maf_c00185{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls0_c00185{letter-spacing:0.000000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{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__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00185{word-spacing:-8.549824px;}
.wsa_c00185{word-spacing:-5.250000px;}
.ws7_c00185{word-spacing:-4.750000px;}
.ws4_c00185{word-spacing:-2.940463px;}
.ws8_c00185{word-spacing:-2.285141px;}
.wsc_c00185{word-spacing:0.000000px;}
.wsb_c00185{word-spacing:2.429448px;}
.ws0_c00185{word-spacing:4.625000px;}
.ws6_c00185{word-spacing:4.833333px;}
.ws3_c00185{word-spacing:6.445887px;}
.ws2_c00185{word-spacing:7.500000px;}
.ws1_c00185{word-spacing:9.525773px;}
.ws5_c00185{word-spacing:16.904059px;}
.fc0_c00185{color:transparent;}
.fs0_c00185{font-size:54.000000px;}
.y0_c00185{bottom:0.000000px;}
.y2c_c00185{bottom:175.350000px;}
.y2b_c00185{bottom:190.800000px;}
.y2a_c00185{bottom:206.250000px;}
.y29_c00185{bottom:221.700000px;}
.y28_c00185{bottom:237.300000px;}
.y27_c00185{bottom:252.750000px;}
.y26_c00185{bottom:268.500000px;}
.y25_c00185{bottom:283.650000px;}
.y24_c00185{bottom:299.850000px;}
.y23_c00185{bottom:315.300000px;}
.y22_c00185{bottom:331.200000px;}
.y21_c00185{bottom:389.550000px;}
.y20_c00185{bottom:409.350000px;}
.y1f_c00185{bottom:429.450000px;}
.y1e_c00185{bottom:449.250000px;}
.y1d_c00185{bottom:469.500000px;}
.y1c_c00185{bottom:489.300000px;}
.y1b_c00185{bottom:508.950000px;}
.y1a_c00185{bottom:529.050000px;}
.y19_c00185{bottom:548.850000px;}
.y18_c00185{bottom:569.400000px;}
.y17_c00185{bottom:589.200000px;}
.y16_c00185{bottom:609.300000px;}
.y15_c00185{bottom:629.400000px;}
.y14_c00185{bottom:649.200000px;}
.y13_c00185{bottom:669.000000px;}
.y12_c00185{bottom:689.100000px;}
.y11_c00185{bottom:708.900000px;}
.y10_c00185{bottom:729.150000px;}
.yf_c00185{bottom:749.250000px;}
.ye_c00185{bottom:769.350000px;}
.yd_c00185{bottom:789.150000px;}
.yc_c00185{bottom:808.950000px;}
.yb_c00185{bottom:828.750000px;}
.ya_c00185{bottom:848.850000px;}
.y9_c00185{bottom:868.650000px;}
.y8_c00185{bottom:888.450000px;}
.y7_c00185{bottom:908.700000px;}
.y6_c00185{bottom:928.500000px;}
.y5_c00185{bottom:948.600000px;}
.y4_c00185{bottom:968.700000px;}
.y3_c00185{bottom:988.500000px;}
.y2_c00185{bottom:1008.300000px;}
.y1_c00185{bottom:1046.850000px;}
.h2_c00185{height:54.000000px;}
.h1_c00185{height:1167.750000px;}
.h0_c00185{height:1167.839997px;}
.w1_c00185{width:920.250000px;}
.w0_c00185{width:920.519990px;}
.x0_c00185{left:0.000000px;}
.x5_c00185{left:115.200000px;}
.xa7_c00185{left:116.400000px;}
.x11a_c00185{left:132.900000px;}
.xc9_c00185{left:134.400000px;}
.xa8_c00185{left:136.200000px;}
.xd5_c00185{left:137.250000px;}
.x120_c00185{left:139.650000px;}
.xfb_c00185{left:141.150000px;}
.x127_c00185{left:143.700000px;}
.x6_c00185{left:144.750000px;}
.x52_c00185{left:146.550000px;}
.x4e_c00185{left:148.050000px;}
.x12b_c00185{left:151.200000px;}
.x11b_c00185{left:152.400000px;}
.x7c_c00185{left:154.650000px;}
.x129_c00185{left:155.850000px;}
.x5c_c00185{left:157.650000px;}
.x102_c00185{left:158.850000px;}
.xe3_c00185{left:161.250000px;}
.x18_c00185{left:162.600000px;}
.xd6_c00185{left:166.350000px;}
.xee_c00185{left:168.000000px;}
.x26_c00185{left:169.500000px;}
.x7d_c00185{left:171.900000px;}
.x40_c00185{left:173.550000px;}
.x4f_c00185{left:175.800000px;}
.x12c_c00185{left:177.900000px;}
.x113_c00185{left:178.950000px;}
.x9c_c00185{left:180.000000px;}
.x8a_c00185{left:183.750000px;}
.x19_c00185{left:184.950000px;}
.x7_c00185{left:186.150000px;}
.x70_c00185{left:188.400000px;}
.xf6_c00185{left:190.050000px;}
.x53_c00185{left:191.550000px;}
.x107_c00185{left:195.450000px;}
.x7e_c00185{left:197.400000px;}
.x34_c00185{left:199.500000px;}
.xf7_c00185{left:201.600000px;}
.x8_c00185{left:204.450000px;}
.xd7_c00185{left:205.950000px;}
.x71_c00185{left:207.150000px;}
.x41_c00185{left:209.850000px;}
.x11c_c00185{left:211.800000px;}
.x66_c00185{left:213.450000px;}
.x121_c00185{left:214.500000px;}
.x103_c00185{left:216.000000px;}
.xd1_c00185{left:219.450000px;}
.x35_c00185{left:222.150000px;}
.xa9_c00185{left:223.200000px;}
.x27_c00185{left:225.000000px;}
.xd8_c00185{left:226.500000px;}
.x42_c00185{left:227.850000px;}
.xb8_c00185{left:230.100000px;}
.x1a_c00185{left:233.550000px;}
.x72_c00185{left:235.650000px;}
.x7f_c00185{left:237.750000px;}
.xe8_c00185{left:241.050000px;}
.xdc_c00185{left:242.850000px;}
.x67_c00185{left:244.800000px;}
.x28_c00185{left:246.300000px;}
.xef_c00185{left:247.500000px;}
.x5d_c00185{left:249.150000px;}
.x116_c00185{left:250.500000px;}
.x108_c00185{left:252.000000px;}
.x9d_c00185{left:253.800000px;}
.x1b_c00185{left:255.450000px;}
.xaa_c00185{left:257.400000px;}
.xd2_c00185{left:259.350000px;}
.x9_c00185{left:262.350000px;}
.x8b_c00185{left:266.550000px;}
.x54_c00185{left:268.350000px;}
.x29_c00185{left:271.500000px;}
.x43_c00185{left:272.550000px;}
.x125_c00185{left:277.350000px;}
.x10e_c00185{left:280.200000px;}
.xa_c00185{left:281.850000px;}
.xab_c00185{left:282.900000px;}
.x8c_c00185{left:284.550000px;}
.x1c_c00185{left:287.100000px;}
.x50_c00185{left:292.950000px;}
.x36_c00185{left:294.450000px;}
.x44_c00185{left:298.500000px;}
.xb_c00185{left:300.600000px;}
.xca_c00185{left:303.000000px;}
.x9e_c00185{left:304.950000px;}
.x68_c00185{left:307.500000px;}
.x128_c00185{left:314.400000px;}
.xe4_c00185{left:315.600000px;}
.x8d_c00185{left:317.250000px;}
.x80_c00185{left:318.300000px;}
.xcb_c00185{left:322.800000px;}
.xdd_c00185{left:324.150000px;}
.x37_c00185{left:325.800000px;}
.x45_c00185{left:327.000000px;}
.x2a_c00185{left:328.050000px;}
.xfc_c00185{left:333.000000px;}
.x8e_c00185{left:337.050000px;}
.xac_c00185{left:338.400000px;}
.x55_c00185{left:339.600000px;}
.x109_c00185{left:342.300000px;}
.x81_c00185{left:343.800000px;}
.xde_c00185{left:345.450000px;}
.x1d_c00185{left:346.800000px;}
.xfd_c00185{left:350.250000px;}
.xc_c00185{left:351.300000px;}
.x2b_c00185{left:353.550000px;}
.xad_c00185{left:358.500000px;}
.x73_c00185{left:359.550000px;}
.xb9_c00185{left:361.500000px;}
.x126_c00185{left:363.450000px;}
.x51_c00185{left:364.950000px;}
.x46_c00185{left:366.600000px;}
.x56_c00185{left:368.700000px;}
.xd_c00185{left:370.350000px;}
.xc1_c00185{left:371.400000px;}
.xe9_c00185{left:373.950000px;}
.x122_c00185{left:375.150000px;}
.x69_c00185{left:376.200000px;}
.x2c_c00185{left:380.850000px;}
.x1e_c00185{left:382.050000px;}
.xba_c00185{left:384.600000px;}
.x9f_c00185{left:385.950000px;}
.x38_c00185{left:387.000000px;}
.x5e_c00185{left:388.050000px;}
.xf0_c00185{left:390.000000px;}
.x11d_c00185{left:393.300000px;}
.x95_c00185{left:395.400000px;}
.x12e_c00185{left:396.900000px;}
.xd9_c00185{left:397.950000px;}
.x10a_c00185{left:399.900000px;}
.x6a_c00185{left:401.700000px;}
.xe5_c00185{left:404.850000px;}
.xe_c00185{left:406.350000px;}
.x82_c00185{left:408.600000px;}
.xa0_c00185{left:411.150000px;}
.x39_c00185{left:412.200000px;}
.x47_c00185{left:415.500000px;}
.x5f_c00185{left:416.550000px;}
.x1f_c00185{left:419.850000px;}
.xbb_c00185{left:421.350000px;}
.xb2_c00185{left:423.300000px;}
.x1_c00185{left:424.800000px;}
.xdf_c00185{left:426.450000px;}
.x96_c00185{left:427.800000px;}
.x74_c00185{left:429.000000px;}
.xfe_c00185{left:430.500000px;}
.xea_c00185{left:432.600000px;}
.x83_c00185{left:433.800000px;}
.x48_c00185{left:435.600000px;}
.xae_c00185{left:436.950000px;}
.xbc_c00185{left:442.200000px;}
.x8f_c00185{left:443.850000px;}
.x75_c00185{left:446.700000px;}
.x97_c00185{left:448.650000px;}
.x3a_c00185{left:453.300000px;}
.x60_c00185{left:454.350000px;}
.xff_c00185{left:455.400000px;}
.xaf_c00185{left:457.800000px;}
.x2d_c00185{left:459.000000px;}
.xeb_c00185{left:460.650000px;}
.xa1_c00185{left:463.350000px;}
.xf8_c00185{left:464.850000px;}
.xc2_c00185{left:467.550000px;}
.xf_c00185{left:470.100000px;}
.xbd_c00185{left:471.300000px;}
.x76_c00185{left:472.650000px;}
.x3b_c00185{left:476.400000px;}
.xf1_c00185{left:477.750000px;}
.x2e_c00185{left:478.800000px;}
.xf9_c00185{left:482.100000px;}
.x20_c00185{left:484.200000px;}
.xcc_c00185{left:486.450000px;}
.x84_c00185{left:489.600000px;}
.x11e_c00185{left:491.850000px;}
.x114_c00185{left:493.500000px;}
.xe0_c00185{left:495.600000px;}
.x117_c00185{left:497.550000px;}
.x98_c00185{left:501.150000px;}
.x10_c00185{left:504.600000px;}
.xa2_c00185{left:507.300000px;}
.xc3_c00185{left:510.300000px;}
.x6b_c00185{left:512.850000px;}
.x85_c00185{left:515.100000px;}
.x57_c00185{left:518.850000px;}
.x12d_c00185{left:520.800000px;}
.xf2_c00185{left:522.000000px;}
.xcd_c00185{left:523.500000px;}
.xe6_c00185{left:524.850000px;}
.x61_c00185{left:527.400000px;}
.x77_c00185{left:528.450000px;}
.x6c_c00185{left:530.850000px;}
.x49_c00185{left:535.050000px;}
.x21_c00185{left:540.000000px;}
.xda_c00185{left:541.950000px;}
.x10f_c00185{left:543.300000px;}
.x11_c00185{left:548.100000px;}
.x10b_c00185{left:550.050000px;}
.xb0_c00185{left:551.400000px;}
.x2f_c00185{left:552.600000px;}
.x90_c00185{left:553.650000px;}
.x3c_c00185{left:555.300000px;}
.xce_c00185{left:558.750000px;}
.x6d_c00185{left:559.950000px;}
.x86_c00185{left:561.150000px;}
.xb3_c00185{left:565.200000px;}
.xc4_c00185{left:566.400000px;}
.x78_c00185{left:570.150000px;}
.xf3_c00185{left:571.650000px;}
.x12_c00185{left:575.100000px;}
.x3d_c00185{left:578.400000px;}
.x123_c00185{left:579.600000px;}
.x4a_c00185{left:582.900000px;}
.xc5_c00185{left:585.900000px;}
.x22_c00185{left:587.100000px;}
.xe7_c00185{left:588.300000px;}
.x6e_c00185{left:591.600000px;}
.xec_c00185{left:593.100000px;}
.xb4_c00185{left:594.750000px;}
.xbe_c00185{left:595.950000px;}
.x58_c00185{left:597.000000px;}
.x30_c00185{left:600.900000px;}
.x99_c00185{left:604.350000px;}
.x13_c00185{left:607.800000px;}
.xb5_c00185{left:609.150000px;}
.xb1_c00185{left:611.550000px;}
.x10c_c00185{left:613.050000px;}
.xa3_c00185{left:614.250000px;}
.x79_c00185{left:615.900000px;}
.xcf_c00185{left:618.900000px;}
.x104_c00185{left:624.900000px;}
.xc6_c00185{left:626.550000px;}
.x14_c00185{left:627.600000px;}
.x91_c00185{left:631.800000px;}
.x100_c00185{left:633.600000px;}
.x31_c00185{left:635.400000px;}
.x110_c00185{left:636.600000px;}
.xd3_c00185{left:638.700000px;}
.x124_c00185{left:639.750000px;}
.x62_c00185{left:641.100000px;}
.x87_c00185{left:642.150000px;}
.xf4_c00185{left:644.700000px;}
.x4b_c00185{left:646.950000px;}
.xb6_c00185{left:648.450000px;}
.xbf_c00185{left:650.700000px;}
.x23_c00185{left:652.200000px;}
.x7a_c00185{left:654.000000px;}
.x15_c00185{left:655.650000px;}
.x88_c00185{left:657.300000px;}
.x9a_c00185{left:658.350000px;}
.xa4_c00185{left:660.300000px;}
.xc7_c00185{left:666.150000px;}
.x59_c00185{left:668.400000px;}
.x105_c00185{left:670.650000px;}
.x63_c00185{left:672.450000px;}
.x118_c00185{left:673.650000px;}
.x4c_c00185{left:674.700000px;}
.x92_c00185{left:677.550000px;}
.xfa_c00185{left:679.350000px;}
.xa5_c00185{left:680.850000px;}
.x7b_c00185{left:682.500000px;}
.x24_c00185{left:685.350000px;}
.x12a_c00185{left:688.050000px;}
.xd0_c00185{left:689.100000px;}
.x32_c00185{left:690.150000px;}
.x3e_c00185{left:693.900000px;}
.x16_c00185{left:694.950000px;}
.xd4_c00185{left:696.300000px;}
.x64_c00185{left:699.750000px;}
.x106_c00185{left:703.050000px;}
.x111_c00185{left:705.000000px;}
.x93_c00185{left:706.650000px;}
.xe1_c00185{left:714.300000px;}
.xc8_c00185{left:716.850000px;}
.x3f_c00185{left:718.350000px;}
.x112_c00185{left:721.500000px;}
.xa6_c00185{left:723.300000px;}
.x6f_c00185{left:724.800000px;}
.xc0_c00185{left:726.900000px;}
.x33_c00185{left:728.700000px;}
.x11f_c00185{left:729.900000px;}
.x9b_c00185{left:731.850000px;}
.xb7_c00185{left:733.350000px;}
.x4d_c00185{left:735.150000px;}
.x94_c00185{left:738.750000px;}
.x115_c00185{left:740.250000px;}
.x10d_c00185{left:741.300000px;}
.x5a_c00185{left:744.750000px;}
.x17_c00185{left:746.100000px;}
.x65_c00185{left:747.600000px;}
.x101_c00185{left:749.250000px;}
.xed_c00185{left:750.750000px;}
.x89_c00185{left:753.150000px;}
.x2_c00185{left:756.300000px;}
.x25_c00185{left:759.900000px;}
.xe2_c00185{left:761.100000px;}
.x5b_c00185{left:762.450000px;}
.xdb_c00185{left:764.100000px;}
.x3_c00185{left:766.800000px;}
.xf5_c00185{left:769.650000px;}
.x119_c00185{left:772.350000px;}
.x4_c00185{left:775.800000px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls0_c00185{letter-spacing:0.000000pt;}
.ws9_c00185{word-spacing:-7.599844pt;}
.wsa_c00185{word-spacing:-4.666667pt;}
.ws7_c00185{word-spacing:-4.222222pt;}
.ws4_c00185{word-spacing:-2.613745pt;}
.ws8_c00185{word-spacing:-2.031236pt;}
.wsc_c00185{word-spacing:0.000000pt;}
.wsb_c00185{word-spacing:2.159509pt;}
.ws0_c00185{word-spacing:4.111111pt;}
.ws6_c00185{word-spacing:4.296296pt;}
.ws3_c00185{word-spacing:5.729678pt;}
.ws2_c00185{word-spacing:6.666667pt;}
.ws1_c00185{word-spacing:8.467354pt;}
.ws5_c00185{word-spacing:15.025830pt;}
.fs0_c00185{font-size:48.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y2c_c00185{bottom:155.866667pt;}
.y2b_c00185{bottom:169.600000pt;}
.y2a_c00185{bottom:183.333333pt;}
.y29_c00185{bottom:197.066667pt;}
.y28_c00185{bottom:210.933333pt;}
.y27_c00185{bottom:224.666667pt;}
.y26_c00185{bottom:238.666667pt;}
.y25_c00185{bottom:252.133333pt;}
.y24_c00185{bottom:266.533333pt;}
.y23_c00185{bottom:280.266667pt;}
.y22_c00185{bottom:294.400000pt;}
.y21_c00185{bottom:346.266667pt;}
.y20_c00185{bottom:363.866667pt;}
.y1f_c00185{bottom:381.733333pt;}
.y1e_c00185{bottom:399.333333pt;}
.y1d_c00185{bottom:417.333333pt;}
.y1c_c00185{bottom:434.933333pt;}
.y1b_c00185{bottom:452.400000pt;}
.y1a_c00185{bottom:470.266667pt;}
.y19_c00185{bottom:487.866667pt;}
.y18_c00185{bottom:506.133333pt;}
.y17_c00185{bottom:523.733333pt;}
.y16_c00185{bottom:541.600000pt;}
.y15_c00185{bottom:559.466667pt;}
.y14_c00185{bottom:577.066667pt;}
.y13_c00185{bottom:594.666667pt;}
.y12_c00185{bottom:612.533333pt;}
.y11_c00185{bottom:630.133333pt;}
.y10_c00185{bottom:648.133333pt;}
.yf_c00185{bottom:666.000000pt;}
.ye_c00185{bottom:683.866667pt;}
.yd_c00185{bottom:701.466667pt;}
.yc_c00185{bottom:719.066667pt;}
.yb_c00185{bottom:736.666667pt;}
.ya_c00185{bottom:754.533333pt;}
.y9_c00185{bottom:772.133333pt;}
.y8_c00185{bottom:789.733333pt;}
.y7_c00185{bottom:807.733333pt;}
.y6_c00185{bottom:825.333333pt;}
.y5_c00185{bottom:843.200000pt;}
.y4_c00185{bottom:861.066667pt;}
.y3_c00185{bottom:878.666667pt;}
.y2_c00185{bottom:896.266667pt;}
.y1_c00185{bottom:930.533333pt;}
.h2_c00185{height:48.000000pt;}
.h1_c00185{height:1038.000000pt;}
.h0_c00185{height:1038.079997pt;}
.w1_c00185{width:818.000000pt;}
.w0_c00185{width:818.239991pt;}
.x0_c00185{left:0.000000pt;}
.x5_c00185{left:102.400000pt;}
.xa7_c00185{left:103.466667pt;}
.x11a_c00185{left:118.133333pt;}
.xc9_c00185{left:119.466667pt;}
.xa8_c00185{left:121.066667pt;}
.xd5_c00185{left:122.000000pt;}
.x120_c00185{left:124.133333pt;}
.xfb_c00185{left:125.466667pt;}
.x127_c00185{left:127.733333pt;}
.x6_c00185{left:128.666667pt;}
.x52_c00185{left:130.266667pt;}
.x4e_c00185{left:131.600000pt;}
.x12b_c00185{left:134.400000pt;}
.x11b_c00185{left:135.466667pt;}
.x7c_c00185{left:137.466667pt;}
.x129_c00185{left:138.533333pt;}
.x5c_c00185{left:140.133333pt;}
.x102_c00185{left:141.200000pt;}
.xe3_c00185{left:143.333333pt;}
.x18_c00185{left:144.533333pt;}
.xd6_c00185{left:147.866667pt;}
.xee_c00185{left:149.333333pt;}
.x26_c00185{left:150.666667pt;}
.x7d_c00185{left:152.800000pt;}
.x40_c00185{left:154.266667pt;}
.x4f_c00185{left:156.266667pt;}
.x12c_c00185{left:158.133333pt;}
.x113_c00185{left:159.066667pt;}
.x9c_c00185{left:160.000000pt;}
.x8a_c00185{left:163.333333pt;}
.x19_c00185{left:164.400000pt;}
.x7_c00185{left:165.466667pt;}
.x70_c00185{left:167.466667pt;}
.xf6_c00185{left:168.933333pt;}
.x53_c00185{left:170.266667pt;}
.x107_c00185{left:173.733333pt;}
.x7e_c00185{left:175.466667pt;}
.x34_c00185{left:177.333333pt;}
.xf7_c00185{left:179.200000pt;}
.x8_c00185{left:181.733333pt;}
.xd7_c00185{left:183.066667pt;}
.x71_c00185{left:184.133333pt;}
.x41_c00185{left:186.533333pt;}
.x11c_c00185{left:188.266667pt;}
.x66_c00185{left:189.733333pt;}
.x121_c00185{left:190.666667pt;}
.x103_c00185{left:192.000000pt;}
.xd1_c00185{left:195.066667pt;}
.x35_c00185{left:197.466667pt;}
.xa9_c00185{left:198.400000pt;}
.x27_c00185{left:200.000000pt;}
.xd8_c00185{left:201.333333pt;}
.x42_c00185{left:202.533333pt;}
.xb8_c00185{left:204.533333pt;}
.x1a_c00185{left:207.600000pt;}
.x72_c00185{left:209.466667pt;}
.x7f_c00185{left:211.333333pt;}
.xe8_c00185{left:214.266667pt;}
.xdc_c00185{left:215.866667pt;}
.x67_c00185{left:217.600000pt;}
.x28_c00185{left:218.933333pt;}
.xef_c00185{left:220.000000pt;}
.x5d_c00185{left:221.466667pt;}
.x116_c00185{left:222.666667pt;}
.x108_c00185{left:224.000000pt;}
.x9d_c00185{left:225.600000pt;}
.x1b_c00185{left:227.066667pt;}
.xaa_c00185{left:228.800000pt;}
.xd2_c00185{left:230.533333pt;}
.x9_c00185{left:233.200000pt;}
.x8b_c00185{left:236.933333pt;}
.x54_c00185{left:238.533333pt;}
.x29_c00185{left:241.333333pt;}
.x43_c00185{left:242.266667pt;}
.x125_c00185{left:246.533333pt;}
.x10e_c00185{left:249.066667pt;}
.xa_c00185{left:250.533333pt;}
.xab_c00185{left:251.466667pt;}
.x8c_c00185{left:252.933333pt;}
.x1c_c00185{left:255.200000pt;}
.x50_c00185{left:260.400000pt;}
.x36_c00185{left:261.733333pt;}
.x44_c00185{left:265.333333pt;}
.xb_c00185{left:267.200000pt;}
.xca_c00185{left:269.333333pt;}
.x9e_c00185{left:271.066667pt;}
.x68_c00185{left:273.333333pt;}
.x128_c00185{left:279.466667pt;}
.xe4_c00185{left:280.533333pt;}
.x8d_c00185{left:282.000000pt;}
.x80_c00185{left:282.933333pt;}
.xcb_c00185{left:286.933333pt;}
.xdd_c00185{left:288.133333pt;}
.x37_c00185{left:289.600000pt;}
.x45_c00185{left:290.666667pt;}
.x2a_c00185{left:291.600000pt;}
.xfc_c00185{left:296.000000pt;}
.x8e_c00185{left:299.600000pt;}
.xac_c00185{left:300.800000pt;}
.x55_c00185{left:301.866667pt;}
.x109_c00185{left:304.266667pt;}
.x81_c00185{left:305.600000pt;}
.xde_c00185{left:307.066667pt;}
.x1d_c00185{left:308.266667pt;}
.xfd_c00185{left:311.333333pt;}
.xc_c00185{left:312.266667pt;}
.x2b_c00185{left:314.266667pt;}
.xad_c00185{left:318.666667pt;}
.x73_c00185{left:319.600000pt;}
.xb9_c00185{left:321.333333pt;}
.x126_c00185{left:323.066667pt;}
.x51_c00185{left:324.400000pt;}
.x46_c00185{left:325.866667pt;}
.x56_c00185{left:327.733333pt;}
.xd_c00185{left:329.200000pt;}
.xc1_c00185{left:330.133333pt;}
.xe9_c00185{left:332.400000pt;}
.x122_c00185{left:333.466667pt;}
.x69_c00185{left:334.400000pt;}
.x2c_c00185{left:338.533333pt;}
.x1e_c00185{left:339.600000pt;}
.xba_c00185{left:341.866667pt;}
.x9f_c00185{left:343.066667pt;}
.x38_c00185{left:344.000000pt;}
.x5e_c00185{left:344.933333pt;}
.xf0_c00185{left:346.666667pt;}
.x11d_c00185{left:349.600000pt;}
.x95_c00185{left:351.466667pt;}
.x12e_c00185{left:352.800000pt;}
.xd9_c00185{left:353.733333pt;}
.x10a_c00185{left:355.466667pt;}
.x6a_c00185{left:357.066667pt;}
.xe5_c00185{left:359.866667pt;}
.xe_c00185{left:361.200000pt;}
.x82_c00185{left:363.200000pt;}
.xa0_c00185{left:365.466667pt;}
.x39_c00185{left:366.400000pt;}
.x47_c00185{left:369.333333pt;}
.x5f_c00185{left:370.266667pt;}
.x1f_c00185{left:373.200000pt;}
.xbb_c00185{left:374.533333pt;}
.xb2_c00185{left:376.266667pt;}
.x1_c00185{left:377.600000pt;}
.xdf_c00185{left:379.066667pt;}
.x96_c00185{left:380.266667pt;}
.x74_c00185{left:381.333333pt;}
.xfe_c00185{left:382.666667pt;}
.xea_c00185{left:384.533333pt;}
.x83_c00185{left:385.600000pt;}
.x48_c00185{left:387.200000pt;}
.xae_c00185{left:388.400000pt;}
.xbc_c00185{left:393.066667pt;}
.x8f_c00185{left:394.533333pt;}
.x75_c00185{left:397.066667pt;}
.x97_c00185{left:398.800000pt;}
.x3a_c00185{left:402.933333pt;}
.x60_c00185{left:403.866667pt;}
.xff_c00185{left:404.800000pt;}
.xaf_c00185{left:406.933333pt;}
.x2d_c00185{left:408.000000pt;}
.xeb_c00185{left:409.466667pt;}
.xa1_c00185{left:411.866667pt;}
.xf8_c00185{left:413.200000pt;}
.xc2_c00185{left:415.600000pt;}
.xf_c00185{left:417.866667pt;}
.xbd_c00185{left:418.933333pt;}
.x76_c00185{left:420.133333pt;}
.x3b_c00185{left:423.466667pt;}
.xf1_c00185{left:424.666667pt;}
.x2e_c00185{left:425.600000pt;}
.xf9_c00185{left:428.533333pt;}
.x20_c00185{left:430.400000pt;}
.xcc_c00185{left:432.400000pt;}
.x84_c00185{left:435.200000pt;}
.x11e_c00185{left:437.200000pt;}
.x114_c00185{left:438.666667pt;}
.xe0_c00185{left:440.533333pt;}
.x117_c00185{left:442.266667pt;}
.x98_c00185{left:445.466667pt;}
.x10_c00185{left:448.533333pt;}
.xa2_c00185{left:450.933333pt;}
.xc3_c00185{left:453.600000pt;}
.x6b_c00185{left:455.866667pt;}
.x85_c00185{left:457.866667pt;}
.x57_c00185{left:461.200000pt;}
.x12d_c00185{left:462.933333pt;}
.xf2_c00185{left:464.000000pt;}
.xcd_c00185{left:465.333333pt;}
.xe6_c00185{left:466.533333pt;}
.x61_c00185{left:468.800000pt;}
.x77_c00185{left:469.733333pt;}
.x6c_c00185{left:471.866667pt;}
.x49_c00185{left:475.600000pt;}
.x21_c00185{left:480.000000pt;}
.xda_c00185{left:481.733333pt;}
.x10f_c00185{left:482.933333pt;}
.x11_c00185{left:487.200000pt;}
.x10b_c00185{left:488.933333pt;}
.xb0_c00185{left:490.133333pt;}
.x2f_c00185{left:491.200000pt;}
.x90_c00185{left:492.133333pt;}
.x3c_c00185{left:493.600000pt;}
.xce_c00185{left:496.666667pt;}
.x6d_c00185{left:497.733333pt;}
.x86_c00185{left:498.800000pt;}
.xb3_c00185{left:502.400000pt;}
.xc4_c00185{left:503.466667pt;}
.x78_c00185{left:506.800000pt;}
.xf3_c00185{left:508.133333pt;}
.x12_c00185{left:511.200000pt;}
.x3d_c00185{left:514.133333pt;}
.x123_c00185{left:515.200000pt;}
.x4a_c00185{left:518.133333pt;}
.xc5_c00185{left:520.800000pt;}
.x22_c00185{left:521.866667pt;}
.xe7_c00185{left:522.933333pt;}
.x6e_c00185{left:525.866667pt;}
.xec_c00185{left:527.200000pt;}
.xb4_c00185{left:528.666667pt;}
.xbe_c00185{left:529.733333pt;}
.x58_c00185{left:530.666667pt;}
.x30_c00185{left:534.133333pt;}
.x99_c00185{left:537.200000pt;}
.x13_c00185{left:540.266667pt;}
.xb5_c00185{left:541.466667pt;}
.xb1_c00185{left:543.600000pt;}
.x10c_c00185{left:544.933333pt;}
.xa3_c00185{left:546.000000pt;}
.x79_c00185{left:547.466667pt;}
.xcf_c00185{left:550.133333pt;}
.x104_c00185{left:555.466667pt;}
.xc6_c00185{left:556.933333pt;}
.x14_c00185{left:557.866667pt;}
.x91_c00185{left:561.600000pt;}
.x100_c00185{left:563.200000pt;}
.x31_c00185{left:564.800000pt;}
.x110_c00185{left:565.866667pt;}
.xd3_c00185{left:567.733333pt;}
.x124_c00185{left:568.666667pt;}
.x62_c00185{left:569.866667pt;}
.x87_c00185{left:570.800000pt;}
.xf4_c00185{left:573.066667pt;}
.x4b_c00185{left:575.066667pt;}
.xb6_c00185{left:576.400000pt;}
.xbf_c00185{left:578.400000pt;}
.x23_c00185{left:579.733333pt;}
.x7a_c00185{left:581.333333pt;}
.x15_c00185{left:582.800000pt;}
.x88_c00185{left:584.266667pt;}
.x9a_c00185{left:585.200000pt;}
.xa4_c00185{left:586.933333pt;}
.xc7_c00185{left:592.133333pt;}
.x59_c00185{left:594.133333pt;}
.x105_c00185{left:596.133333pt;}
.x63_c00185{left:597.733333pt;}
.x118_c00185{left:598.800000pt;}
.x4c_c00185{left:599.733333pt;}
.x92_c00185{left:602.266667pt;}
.xfa_c00185{left:603.866667pt;}
.xa5_c00185{left:605.200000pt;}
.x7b_c00185{left:606.666667pt;}
.x24_c00185{left:609.200000pt;}
.x12a_c00185{left:611.600000pt;}
.xd0_c00185{left:612.533333pt;}
.x32_c00185{left:613.466667pt;}
.x3e_c00185{left:616.800000pt;}
.x16_c00185{left:617.733333pt;}
.xd4_c00185{left:618.933333pt;}
.x64_c00185{left:622.000000pt;}
.x106_c00185{left:624.933333pt;}
.x111_c00185{left:626.666667pt;}
.x93_c00185{left:628.133333pt;}
.xe1_c00185{left:634.933333pt;}
.xc8_c00185{left:637.200000pt;}
.x3f_c00185{left:638.533333pt;}
.x112_c00185{left:641.333333pt;}
.xa6_c00185{left:642.933333pt;}
.x6f_c00185{left:644.266667pt;}
.xc0_c00185{left:646.133333pt;}
.x33_c00185{left:647.733333pt;}
.x11f_c00185{left:648.800000pt;}
.x9b_c00185{left:650.533333pt;}
.xb7_c00185{left:651.866667pt;}
.x4d_c00185{left:653.466667pt;}
.x94_c00185{left:656.666667pt;}
.x115_c00185{left:658.000000pt;}
.x10d_c00185{left:658.933333pt;}
.x5a_c00185{left:662.000000pt;}
.x17_c00185{left:663.200000pt;}
.x65_c00185{left:664.533333pt;}
.x101_c00185{left:666.000000pt;}
.xed_c00185{left:667.333333pt;}
.x89_c00185{left:669.466667pt;}
.x2_c00185{left:672.266667pt;}
.x25_c00185{left:675.466667pt;}
.xe2_c00185{left:676.533333pt;}
.x5b_c00185{left:677.733333pt;}
.xdb_c00185{left:679.200000pt;}
.x3_c00185{left:681.600000pt;}
.xf5_c00185{left:684.133333pt;}
.x119_c00185{left:686.533333pt;}
.x4_c00185{left:689.600000pt;}
}





/* 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_c00186 {
    display:none;
  }
  .loading-indicator_c00186.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00186 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_c00186 { 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_c00186" -> "#page-container .classname_c00186")
 */
.pf_c00186 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00186 { /* 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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00186 { /* 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_c00186 { /* 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_c00186 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00186 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00186 {overflow:visible;}
  }
}
.c_c00186 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00186 { /* 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_c00186:after { /* webkit #35443 */
  content: '';
}
.t_c00186:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00186 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 */
}
.__c00186 { /* 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_c00186 { /* info for Javascript */
  display:none;
}
.l_c00186 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00186 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00186 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00186: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_c00186 {
    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_c00186.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00186.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_c00186 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00186{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00186;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.000000;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;}
.m28_c00186{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m33_c00186{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00186{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m25_c00186{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12_c00186{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00186{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6_c00186{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8_c00186{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00186{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9_c00186{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00186{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma_c00186{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m31_c00186{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00186{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m15_c00186{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m24_c00186{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00186{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m26_c00186{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00186{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00186{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md_c00186{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m22_c00186{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls0_c00186{letter-spacing:0.000000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{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__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00186{word-spacing:0.000000px;}
.ws0_c00186{word-spacing:3.055556px;}
.fc0_c00186{color:transparent;}
.fs0_c00186{font-size:60.000000px;}
.y0_c00186{bottom:0.000000px;}
.y7_c00186{bottom:910.200000px;}
.y6_c00186{bottom:931.500000px;}
.y5_c00186{bottom:951.600000px;}
.y4_c00186{bottom:971.400000px;}
.y3_c00186{bottom:991.500000px;}
.y2_c00186{bottom:1011.300000px;}
.y1_c00186{bottom:1050.150000px;}
.h2_c00186{height:60.000000px;}
.h1_c00186{height:1167.750000px;}
.h0_c00186{height:1167.839997px;}
.w1_c00186{width:920.250000px;}
.w0_c00186{width:920.519990px;}
.x0_c00186{left:0.000000px;}
.x5_c00186{left:142.200000px;}
.x1_c00186{left:144.750000px;}
.x2_c00186{left:154.800000px;}
.x21_c00186{left:157.800000px;}
.x15_c00186{left:159.600000px;}
.x3_c00186{left:163.800000px;}
.x4a_c00186{left:171.150000px;}
.x16_c00186{left:185.100000px;}
.x2f_c00186{left:200.400000px;}
.x3d_c00186{left:205.350000px;}
.x22_c00186{left:212.100000px;}
.x30_c00186{left:229.950000px;}
.x3e_c00186{left:233.100000px;}
.x6_c00186{left:241.950000px;}
.x23_c00186{left:257.100000px;}
.x31_c00186{left:260.550000px;}
.x24_c00186{left:274.050000px;}
.x32_c00186{left:278.550000px;}
.x7_c00186{left:296.700000px;}
.x17_c00186{left:298.200000px;}
.x33_c00186{left:307.050000px;}
.x18_c00186{left:318.300000px;}
.x8_c00186{left:325.500000px;}
.x25_c00186{left:331.650000px;}
.x34_c00186{left:335.100000px;}
.x3f_c00186{left:346.800000px;}
.x9_c00186{left:363.000000px;}
.x19_c00186{left:365.100000px;}
.x26_c00186{left:366.600000px;}
.x35_c00186{left:372.600000px;}
.x40_c00186{left:382.800000px;}
.x27_c00186{left:387.150000px;}
.x36_c00186{left:398.850000px;}
.xa_c00186{left:402.600000px;}
.xb_c00186{left:419.550000px;}
.x28_c00186{left:427.050000px;}
.x41_c00186{left:435.300000px;}
.x4_c00186{left:440.250000px;}
.xc_c00186{left:445.050000px;}
.x29_c00186{left:446.850000px;}
.x2a_c00186{left:478.200000px;}
.x37_c00186{left:492.900000px;}
.x42_c00186{left:498.600000px;}
.x1a_c00186{left:503.850000px;}
.xd_c00186{left:522.750000px;}
.x43_c00186{left:532.500000px;}
.x1b_c00186{left:539.100000px;}
.x38_c00186{left:541.050000px;}
.x1c_c00186{left:559.200000px;}
.x44_c00186{left:561.600000px;}
.xe_c00186{left:577.500000px;}
.x2b_c00186{left:579.750000px;}
.x39_c00186{left:595.800000px;}
.xf_c00186{left:604.200000px;}
.x45_c00186{left:627.450000px;}
.x1d_c00186{left:635.550000px;}
.x10_c00186{left:645.600000px;}
.x3a_c00186{left:659.550000px;}
.x11_c00186{left:663.900000px;}
.x46_c00186{left:665.250000px;}
.x1e_c00186{left:671.250000px;}
.x2c_c00186{left:672.600000px;}
.x47_c00186{left:682.200000px;}
.x3b_c00186{left:700.950000px;}
.x2d_c00186{left:703.500000px;}
.x12_c00186{left:709.200000px;}
.x1f_c00186{left:714.750000px;}
.x3c_c00186{left:723.300000px;}
.x48_c00186{left:730.350000px;}
.x13_c00186{left:738.750000px;}
.x20_c00186{left:756.150000px;}
.x14_c00186{left:765.450000px;}
.x2e_c00186{left:789.300000px;}
.x49_c00186{left:797.250000px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls0_c00186{letter-spacing:0.000000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
.ws0_c00186{word-spacing:2.716049pt;}
.fs0_c00186{font-size:53.333333pt;}
.y0_c00186{bottom:0.000000pt;}
.y7_c00186{bottom:809.066667pt;}
.y6_c00186{bottom:828.000000pt;}
.y5_c00186{bottom:845.866667pt;}
.y4_c00186{bottom:863.466667pt;}
.y3_c00186{bottom:881.333333pt;}
.y2_c00186{bottom:898.933333pt;}
.y1_c00186{bottom:933.466667pt;}
.h2_c00186{height:53.333333pt;}
.h1_c00186{height:1038.000000pt;}
.h0_c00186{height:1038.079997pt;}
.w1_c00186{width:818.000000pt;}
.w0_c00186{width:818.239991pt;}
.x0_c00186{left:0.000000pt;}
.x5_c00186{left:126.400000pt;}
.x1_c00186{left:128.666667pt;}
.x2_c00186{left:137.600000pt;}
.x21_c00186{left:140.266667pt;}
.x15_c00186{left:141.866667pt;}
.x3_c00186{left:145.600000pt;}
.x4a_c00186{left:152.133333pt;}
.x16_c00186{left:164.533333pt;}
.x2f_c00186{left:178.133333pt;}
.x3d_c00186{left:182.533333pt;}
.x22_c00186{left:188.533333pt;}
.x30_c00186{left:204.400000pt;}
.x3e_c00186{left:207.200000pt;}
.x6_c00186{left:215.066667pt;}
.x23_c00186{left:228.533333pt;}
.x31_c00186{left:231.600000pt;}
.x24_c00186{left:243.600000pt;}
.x32_c00186{left:247.600000pt;}
.x7_c00186{left:263.733333pt;}
.x17_c00186{left:265.066667pt;}
.x33_c00186{left:272.933333pt;}
.x18_c00186{left:282.933333pt;}
.x8_c00186{left:289.333333pt;}
.x25_c00186{left:294.800000pt;}
.x34_c00186{left:297.866667pt;}
.x3f_c00186{left:308.266667pt;}
.x9_c00186{left:322.666667pt;}
.x19_c00186{left:324.533333pt;}
.x26_c00186{left:325.866667pt;}
.x35_c00186{left:331.200000pt;}
.x40_c00186{left:340.266667pt;}
.x27_c00186{left:344.133333pt;}
.x36_c00186{left:354.533333pt;}
.xa_c00186{left:357.866667pt;}
.xb_c00186{left:372.933333pt;}
.x28_c00186{left:379.600000pt;}
.x41_c00186{left:386.933333pt;}
.x4_c00186{left:391.333333pt;}
.xc_c00186{left:395.600000pt;}
.x29_c00186{left:397.200000pt;}
.x2a_c00186{left:425.066667pt;}
.x37_c00186{left:438.133333pt;}
.x42_c00186{left:443.200000pt;}
.x1a_c00186{left:447.866667pt;}
.xd_c00186{left:464.666667pt;}
.x43_c00186{left:473.333333pt;}
.x1b_c00186{left:479.200000pt;}
.x38_c00186{left:480.933333pt;}
.x1c_c00186{left:497.066667pt;}
.x44_c00186{left:499.200000pt;}
.xe_c00186{left:513.333333pt;}
.x2b_c00186{left:515.333333pt;}
.x39_c00186{left:529.600000pt;}
.xf_c00186{left:537.066667pt;}
.x45_c00186{left:557.733333pt;}
.x1d_c00186{left:564.933333pt;}
.x10_c00186{left:573.866667pt;}
.x3a_c00186{left:586.266667pt;}
.x11_c00186{left:590.133333pt;}
.x46_c00186{left:591.333333pt;}
.x1e_c00186{left:596.666667pt;}
.x2c_c00186{left:597.866667pt;}
.x47_c00186{left:606.400000pt;}
.x3b_c00186{left:623.066667pt;}
.x2d_c00186{left:625.333333pt;}
.x12_c00186{left:630.400000pt;}
.x1f_c00186{left:635.333333pt;}
.x3c_c00186{left:642.933333pt;}
.x48_c00186{left:649.200000pt;}
.x13_c00186{left:656.666667pt;}
.x20_c00186{left:672.133333pt;}
.x14_c00186{left:680.400000pt;}
.x2e_c00186{left:701.600000pt;}
.x49_c00186{left:708.666667pt;}
}





/* 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_c00187 {
    display:none;
  }
  .loading-indicator_c00187.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00187 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_c00187 { 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_c00187" -> "#page-container .classname_c00187")
 */
.pf_c00187 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00187 { /* 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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00187 { /* 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_c00187 { /* 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_c00187 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00187 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00187 {overflow:visible;}
  }
}
.c_c00187 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00187 { /* 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_c00187:after { /* webkit #35443 */
  content: '';
}
.t_c00187:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00187 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 */
}
.__c00187 { /* 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_c00187 { /* info for Javascript */
  display:none;
}
.l_c00187 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00187 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00187 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00187: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_c00187 {
    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_c00187.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00187.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_c00187 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00187{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00187;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.000000;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;}
.m98_c00187{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m27_c00187{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m49_c00187{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m81_c00187{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m66_c00187{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m91_c00187{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00187{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00187{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m95_c00187{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00187{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m78_c00187{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00187{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m84_c00187{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m11_c00187{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m16_c00187{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00187{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m33_c00187{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00187{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m71_c00187{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf_c00187{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00187{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m20_c00187{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m28_c00187{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m72_c00187{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00187{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m73_c00187{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00187{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m14_c00187{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00187{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00187{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m37_c00187{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{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);}
.m86_c00187{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00187{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12_c00187{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00187{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m22_c00187{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mc_c00187{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me_c00187{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m63_c00187{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00187{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m8_c00187{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m43_c00187{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m56_c00187{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m42_c00187{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m62_c00187{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m74_c00187{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3_c00187{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00187{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m50_c00187{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m52_c00187{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m82_c00187{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00187{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00187{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls0_c00187{letter-spacing:0.000000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{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__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00187{word-spacing:-10.500000px;}
.ws4_c00187{word-spacing:-4.095526px;}
.ws3_c00187{word-spacing:-0.250000px;}
.ws7_c00187{word-spacing:0.000000px;}
.ws6_c00187{word-spacing:0.471125px;}
.ws1_c00187{word-spacing:2.750000px;}
.ws0_c00187{word-spacing:4.089832px;}
.ws2_c00187{word-spacing:15.654906px;}
.fc0_c00187{color:transparent;}
.fs0_c00187{font-size:54.000000px;}
.y0_c00187{bottom:0.000000px;}
.y24_c00187{bottom:134.700000px;}
.y23_c00187{bottom:150.450000px;}
.y22_c00187{bottom:165.900000px;}
.y21_c00187{bottom:181.500000px;}
.y20_c00187{bottom:196.950000px;}
.y1f_c00187{bottom:212.700000px;}
.y1e_c00187{bottom:244.650000px;}
.y1d_c00187{bottom:264.450000px;}
.y1c_c00187{bottom:284.550000px;}
.y1b_c00187{bottom:304.650000px;}
.y1a_c00187{bottom:324.750000px;}
.y19_c00187{bottom:355.650000px;}
.y18_c00187{bottom:375.450000px;}
.y17_c00187{bottom:395.850000px;}
.y16_c00187{bottom:415.950000px;}
.y15_c00187{bottom:435.750000px;}
.y14_c00187{bottom:455.550000px;}
.y13_c00187{bottom:475.350000px;}
.y12_c00187{bottom:495.450000px;}
.y11_c00187{bottom:515.250000px;}
.y10_c00187{bottom:535.350000px;}
.yf_c00187{bottom:555.450000px;}
.ye_c00187{bottom:574.950000px;}
.yd_c00187{bottom:595.500000px;}
.yc_c00187{bottom:615.600000px;}
.yb_c00187{bottom:635.400000px;}
.ya_c00187{bottom:655.200000px;}
.y9_c00187{bottom:675.000000px;}
.y8_c00187{bottom:695.550000px;}
.y7_c00187{bottom:715.050000px;}
.y6_c00187{bottom:734.850000px;}
.y5_c00187{bottom:754.950000px;}
.y4_c00187{bottom:774.750000px;}
.y3_c00187{bottom:808.200000px;}
.y2_c00187{bottom:841.650000px;}
.y1_c00187{bottom:1035.750000px;}
.h2_c00187{height:54.000000px;}
.h1_c00187{height:1167.750000px;}
.h0_c00187{height:1167.839997px;}
.w1_c00187{width:920.250000px;}
.w0_c00187{width:920.519990px;}
.x0_c00187{left:0.000000px;}
.xd_c00187{left:100.800000px;}
.xaf_c00187{left:102.450000px;}
.xf8_c00187{left:113.700000px;}
.xd9_c00187{left:118.950000px;}
.x4e_c00187{left:122.400000px;}
.xe_c00187{left:125.700000px;}
.xf9_c00187{left:127.050000px;}
.x102_c00187{left:128.100000px;}
.x74_c00187{left:130.200000px;}
.x7c_c00187{left:132.450000px;}
.x27_c00187{left:134.400000px;}
.x87_c00187{left:137.700000px;}
.x57_c00187{left:139.950000px;}
.xda_c00187{left:142.050000px;}
.x1c_c00187{left:143.250000px;}
.x116_c00187{left:145.800000px;}
.xfa_c00187{left:152.250000px;}
.xa6_c00187{left:155.700000px;}
.xf_c00187{left:157.800000px;}
.xc3_c00187{left:159.900000px;}
.x41_c00187{left:161.700000px;}
.x4f_c00187{left:162.750000px;}
.xe2_c00187{left:163.950000px;}
.xb8_c00187{left:166.500000px;}
.xca_c00187{left:169.050000px;}
.x111_c00187{left:172.800000px;}
.x36_c00187{left:178.050000px;}
.x88_c00187{left:180.150000px;}
.xf3_c00187{left:181.200000px;}
.x91_c00187{left:182.550000px;}
.xe3_c00187{left:184.800000px;}
.x10c_c00187{left:187.500000px;}
.x28_c00187{left:190.200000px;}
.x6a_c00187{left:193.800000px;}
.x107_c00187{left:195.000000px;}
.x10_c00187{left:198.150000px;}
.xb9_c00187{left:199.950000px;}
.xfb_c00187{left:201.300000px;}
.x1d_c00187{left:202.650000px;}
.xa7_c00187{left:204.000000px;}
.xdb_c00187{left:205.800000px;}
.xe4_c00187{left:207.450000px;}
.x4_c00187{left:211.650000px;}
.x89_c00187{left:215.100000px;}
.x50_c00187{left:218.250000px;}
.x108_c00187{left:220.500000px;}
.x29_c00187{left:221.850000px;}
.x42_c00187{left:223.650000px;}
.x92_c00187{left:224.700000px;}
.xfc_c00187{left:226.200000px;}
.xe5_c00187{left:227.550000px;}
.x63_c00187{left:230.850000px;}
.xa8_c00187{left:232.800000px;}
.xdc_c00187{left:234.300000px;}
.xd1_c00187{left:235.350000px;}
.x6b_c00187{left:237.000000px;}
.x8a_c00187{left:238.800000px;}
.xce_c00187{left:241.050000px;}
.x43_c00187{left:242.400000px;}
.xeb_c00187{left:244.200000px;}
.x93_c00187{left:245.250000px;}
.xc4_c00187{left:247.350000px;}
.x2a_c00187{left:249.600000px;}
.xe6_c00187{left:251.250000px;}
.xba_c00187{left:253.650000px;}
.x37_c00187{left:255.750000px;}
.x9c_c00187{left:257.250000px;}
.x64_c00187{left:258.900000px;}
.x1e_c00187{left:260.550000px;}
.x6c_c00187{left:261.900000px;}
.x7d_c00187{left:263.100000px;}
.x11_c00187{left:264.750000px;}
.xc5_c00187{left:270.450000px;}
.xd2_c00187{left:273.150000px;}
.xe7_c00187{left:274.350000px;}
.x38_c00187{left:276.300000px;}
.x103_c00187{left:278.850000px;}
.xcf_c00187{left:279.900000px;}
.x94_c00187{left:284.550000px;}
.x5_c00187{left:285.750000px;}
.x12_c00187{left:287.850000px;}
.xbb_c00187{left:288.900000px;}
.x6d_c00187{left:289.950000px;}
.x58_c00187{left:291.150000px;}
.xec_c00187{left:293.100000px;}
.x1f_c00187{left:294.750000px;}
.x39_c00187{left:296.400000px;}
.xbf_c00187{left:299.250000px;}
.x44_c00187{left:301.050000px;}
.xd3_c00187{left:303.000000px;}
.x2b_c00187{left:305.700000px;}
.xb0_c00187{left:307.650000px;}
.x7e_c00187{left:312.000000px;}
.xa9_c00187{left:314.100000px;}
.x59_c00187{left:316.350000px;}
.x95_c00187{left:319.050000px;}
.xdd_c00187{left:320.100000px;}
.xc0_c00187{left:321.600000px;}
.x65_c00187{left:323.700000px;}
.x2c_c00187{left:325.500000px;}
.x45_c00187{left:327.000000px;}
.x7f_c00187{left:330.000000px;}
.x51_c00187{left:331.950000px;}
.x10d_c00187{left:333.600000px;}
.x13_c00187{left:337.200000px;}
.xd0_c00187{left:339.300000px;}
.x9d_c00187{left:340.350000px;}
.x6_c00187{left:343.350000px;}
.xe8_c00187{left:348.600000px;}
.x3a_c00187{left:350.400000px;}
.x2d_c00187{left:352.800000px;}
.x117_c00187{left:355.350000px;}
.xb1_c00187{left:359.100000px;}
.x7_c00187{left:361.050000px;}
.x5a_c00187{left:364.650000px;}
.xde_c00187{left:367.200000px;}
.x2_c00187{left:368.250000px;}
.x14_c00187{left:371.400000px;}
.x112_c00187{left:372.750000px;}
.x75_c00187{left:374.700000px;}
.x3b_c00187{left:378.450000px;}
.x8b_c00187{left:384.300000px;}
.xed_c00187{left:385.500000px;}
.x5b_c00187{left:387.000000px;}
.xc6_c00187{left:389.250000px;}
.x46_c00187{left:391.050000px;}
.x9e_c00187{left:392.250000px;}
.x66_c00187{left:394.950000px;}
.xaa_c00187{left:397.950000px;}
.xb2_c00187{left:400.500000px;}
.x113_c00187{left:401.550000px;}
.x76_c00187{left:403.200000px;}
.xbc_c00187{left:407.100000px;}
.x6e_c00187{left:408.450000px;}
.x104_c00187{left:411.300000px;}
.xc7_c00187{left:414.150000px;}
.x8c_c00187{left:416.400000px;}
.x5c_c00187{left:417.600000px;}
.x1_c00187{left:419.400000px;}
.x15_c00187{left:420.750000px;}
.x2e_c00187{left:423.300000px;}
.x96_c00187{left:425.250000px;}
.x9f_c00187{left:427.500000px;}
.x8_c00187{left:433.050000px;}
.xee_c00187{left:435.600000px;}
.x20_c00187{left:438.750000px;}
.x97_c00187{left:441.150000px;}
.xfd_c00187{left:445.050000px;}
.x80_c00187{left:446.250000px;}
.xcb_c00187{left:448.350000px;}
.x9_c00187{left:450.750000px;}
.x3_c00187{left:454.650000px;}
.xd4_c00187{left:456.750000px;}
.xa0_c00187{left:459.150000px;}
.x5d_c00187{left:462.300000px;}
.x77_c00187{left:467.700000px;}
.x21_c00187{left:469.650000px;}
.x6f_c00187{left:470.700000px;}
.xd5_c00187{left:471.900000px;}
.x52_c00187{left:474.150000px;}
.x2f_c00187{left:475.500000px;}
.x47_c00187{left:477.450000px;}
.x81_c00187{left:478.950000px;}
.xfe_c00187{left:480.000000px;}
.xab_c00187{left:482.100000px;}
.xb3_c00187{left:487.650000px;}
.xbd_c00187{left:491.700000px;}
.xcc_c00187{left:493.350000px;}
.xef_c00187{left:494.700000px;}
.x105_c00187{left:497.250000px;}
.x78_c00187{left:498.600000px;}
.x109_c00187{left:501.000000px;}
.x30_c00187{left:502.200000px;}
.x70_c00187{left:504.150000px;}
.x48_c00187{left:507.750000px;}
.x16_c00187{left:511.200000px;}
.xac_c00187{left:513.000000px;}
.xa_c00187{left:514.500000px;}
.x22_c00187{left:515.700000px;}
.x3c_c00187{left:519.900000px;}
.x82_c00187{left:522.900000px;}
.x71_c00187{left:523.950000px;}
.x79_c00187{left:526.650000px;}
.x31_c00187{left:527.700000px;}
.xf4_c00187{left:531.450000px;}
.x10a_c00187{left:533.100000px;}
.x5e_c00187{left:535.800000px;}
.x10e_c00187{left:539.100000px;}
.x98_c00187{left:547.350000px;}
.x3d_c00187{left:554.100000px;}
.xdf_c00187{left:555.150000px;}
.x32_c00187{left:556.800000px;}
.xa1_c00187{left:561.000000px;}
.x23_c00187{left:563.550000px;}
.xd6_c00187{left:567.900000px;}
.x8d_c00187{left:569.400000px;}
.xe9_c00187{left:570.450000px;}
.x49_c00187{left:571.800000px;}
.x17_c00187{left:573.150000px;}
.xb4_c00187{left:575.100000px;}
.xf5_c00187{left:577.950000px;}
.xe0_c00187{left:579.600000px;}
.xb_c00187{left:580.800000px;}
.xf0_c00187{left:583.200000px;}
.x5f_c00187{left:585.900000px;}
.x8e_c00187{left:587.400000px;}
.xff_c00187{left:588.750000px;}
.x114_c00187{left:591.900000px;}
.x83_c00187{left:593.400000px;}
.x106_c00187{left:596.250000px;}
.xc1_c00187{left:598.350000px;}
.xe1_c00187{left:601.200000px;}
.xf1_c00187{left:602.700000px;}
.x67_c00187{left:604.800000px;}
.x84_c00187{left:609.900000px;}
.x7a_c00187{left:611.250000px;}
.x53_c00187{left:612.900000px;}
.x4a_c00187{left:616.500000px;}
.xd7_c00187{left:619.800000px;}
.x33_c00187{left:622.350000px;}
.x18_c00187{left:624.600000px;}
.xa2_c00187{left:626.850000px;}
.xf2_c00187{left:628.650000px;}
.xad_c00187{left:630.300000px;}
.x7b_c00187{left:632.550000px;}
.x99_c00187{left:633.750000px;}
.xc_c00187{left:635.100000px;}
.xc8_c00187{left:642.450000px;}
.x4b_c00187{left:643.800000px;}
.x60_c00187{left:646.350000px;}
.x24_c00187{left:648.150000px;}
.x85_c00187{left:650.250000px;}
.x3e_c00187{left:651.300000px;}
.x8f_c00187{left:654.000000px;}
.x9a_c00187{left:655.050000px;}
.xae_c00187{left:659.400000px;}
.x68_c00187{left:661.650000px;}
.x72_c00187{left:666.150000px;}
.x10f_c00187{left:667.350000px;}
.x19_c00187{left:668.850000px;}
.xa3_c00187{left:670.050000px;}
.x86_c00187{left:671.550000px;}
.x61_c00187{left:674.400000px;}
.x3f_c00187{left:676.500000px;}
.xd8_c00187{left:678.450000px;}
.xb5_c00187{left:680.550000px;}
.x34_c00187{left:682.500000px;}
.x4c_c00187{left:685.500000px;}
.x100_c00187{left:686.550000px;}
.x110_c00187{left:691.050000px;}
.x73_c00187{left:696.750000px;}
.xa4_c00187{left:697.800000px;}
.x54_c00187{left:699.600000px;}
.x25_c00187{left:702.450000px;}
.x115_c00187{left:704.250000px;}
.x4d_c00187{left:706.350000px;}
.x10b_c00187{left:709.050000px;}
.x35_c00187{left:711.600000px;}
.xf6_c00187{left:712.950000px;}
.xcd_c00187{left:714.000000px;}
.xb6_c00187{left:715.500000px;}
.xc9_c00187{left:716.850000px;}
.xbe_c00187{left:718.950000px;}
.x55_c00187{left:720.150000px;}
.x90_c00187{left:722.850000px;}
.x1a_c00187{left:725.400000px;}
.xc2_c00187{left:727.650000px;}
.x26_c00187{left:732.750000px;}
.x9b_c00187{left:735.000000px;}
.x62_c00187{left:736.650000px;}
.x56_c00187{left:737.850000px;}
.xb7_c00187{left:740.400000px;}
.x118_c00187{left:742.200000px;}
.x69_c00187{left:746.250000px;}
.x1b_c00187{left:748.050000px;}
.x40_c00187{left:750.300000px;}
.x101_c00187{left:752.400000px;}
.xa5_c00187{left:756.900000px;}
.xea_c00187{left:758.550000px;}
.xf7_c00187{left:760.500000px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls0_c00187{letter-spacing:0.000000pt;}
.ws5_c00187{word-spacing:-9.333333pt;}
.ws4_c00187{word-spacing:-3.640468pt;}
.ws3_c00187{word-spacing:-0.222222pt;}
.ws7_c00187{word-spacing:0.000000pt;}
.ws6_c00187{word-spacing:0.418777pt;}
.ws1_c00187{word-spacing:2.444444pt;}
.ws0_c00187{word-spacing:3.635406pt;}
.ws2_c00187{word-spacing:13.915472pt;}
.fs0_c00187{font-size:48.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y24_c00187{bottom:119.733333pt;}
.y23_c00187{bottom:133.733333pt;}
.y22_c00187{bottom:147.466667pt;}
.y21_c00187{bottom:161.333333pt;}
.y20_c00187{bottom:175.066667pt;}
.y1f_c00187{bottom:189.066667pt;}
.y1e_c00187{bottom:217.466667pt;}
.y1d_c00187{bottom:235.066667pt;}
.y1c_c00187{bottom:252.933333pt;}
.y1b_c00187{bottom:270.800000pt;}
.y1a_c00187{bottom:288.666667pt;}
.y19_c00187{bottom:316.133333pt;}
.y18_c00187{bottom:333.733333pt;}
.y17_c00187{bottom:351.866667pt;}
.y16_c00187{bottom:369.733333pt;}
.y15_c00187{bottom:387.333333pt;}
.y14_c00187{bottom:404.933333pt;}
.y13_c00187{bottom:422.533333pt;}
.y12_c00187{bottom:440.400000pt;}
.y11_c00187{bottom:458.000000pt;}
.y10_c00187{bottom:475.866667pt;}
.yf_c00187{bottom:493.733333pt;}
.ye_c00187{bottom:511.066667pt;}
.yd_c00187{bottom:529.333333pt;}
.yc_c00187{bottom:547.200000pt;}
.yb_c00187{bottom:564.800000pt;}
.ya_c00187{bottom:582.400000pt;}
.y9_c00187{bottom:600.000000pt;}
.y8_c00187{bottom:618.266667pt;}
.y7_c00187{bottom:635.600000pt;}
.y6_c00187{bottom:653.200000pt;}
.y5_c00187{bottom:671.066667pt;}
.y4_c00187{bottom:688.666667pt;}
.y3_c00187{bottom:718.400000pt;}
.y2_c00187{bottom:748.133333pt;}
.y1_c00187{bottom:920.666667pt;}
.h2_c00187{height:48.000000pt;}
.h1_c00187{height:1038.000000pt;}
.h0_c00187{height:1038.079997pt;}
.w1_c00187{width:818.000000pt;}
.w0_c00187{width:818.239991pt;}
.x0_c00187{left:0.000000pt;}
.xd_c00187{left:89.600000pt;}
.xaf_c00187{left:91.066667pt;}
.xf8_c00187{left:101.066667pt;}
.xd9_c00187{left:105.733333pt;}
.x4e_c00187{left:108.800000pt;}
.xe_c00187{left:111.733333pt;}
.xf9_c00187{left:112.933333pt;}
.x102_c00187{left:113.866667pt;}
.x74_c00187{left:115.733333pt;}
.x7c_c00187{left:117.733333pt;}
.x27_c00187{left:119.466667pt;}
.x87_c00187{left:122.400000pt;}
.x57_c00187{left:124.400000pt;}
.xda_c00187{left:126.266667pt;}
.x1c_c00187{left:127.333333pt;}
.x116_c00187{left:129.600000pt;}
.xfa_c00187{left:135.333333pt;}
.xa6_c00187{left:138.400000pt;}
.xf_c00187{left:140.266667pt;}
.xc3_c00187{left:142.133333pt;}
.x41_c00187{left:143.733333pt;}
.x4f_c00187{left:144.666667pt;}
.xe2_c00187{left:145.733333pt;}
.xb8_c00187{left:148.000000pt;}
.xca_c00187{left:150.266667pt;}
.x111_c00187{left:153.600000pt;}
.x36_c00187{left:158.266667pt;}
.x88_c00187{left:160.133333pt;}
.xf3_c00187{left:161.066667pt;}
.x91_c00187{left:162.266667pt;}
.xe3_c00187{left:164.266667pt;}
.x10c_c00187{left:166.666667pt;}
.x28_c00187{left:169.066667pt;}
.x6a_c00187{left:172.266667pt;}
.x107_c00187{left:173.333333pt;}
.x10_c00187{left:176.133333pt;}
.xb9_c00187{left:177.733333pt;}
.xfb_c00187{left:178.933333pt;}
.x1d_c00187{left:180.133333pt;}
.xa7_c00187{left:181.333333pt;}
.xdb_c00187{left:182.933333pt;}
.xe4_c00187{left:184.400000pt;}
.x4_c00187{left:188.133333pt;}
.x89_c00187{left:191.200000pt;}
.x50_c00187{left:194.000000pt;}
.x108_c00187{left:196.000000pt;}
.x29_c00187{left:197.200000pt;}
.x42_c00187{left:198.800000pt;}
.x92_c00187{left:199.733333pt;}
.xfc_c00187{left:201.066667pt;}
.xe5_c00187{left:202.266667pt;}
.x63_c00187{left:205.200000pt;}
.xa8_c00187{left:206.933333pt;}
.xdc_c00187{left:208.266667pt;}
.xd1_c00187{left:209.200000pt;}
.x6b_c00187{left:210.666667pt;}
.x8a_c00187{left:212.266667pt;}
.xce_c00187{left:214.266667pt;}
.x43_c00187{left:215.466667pt;}
.xeb_c00187{left:217.066667pt;}
.x93_c00187{left:218.000000pt;}
.xc4_c00187{left:219.866667pt;}
.x2a_c00187{left:221.866667pt;}
.xe6_c00187{left:223.333333pt;}
.xba_c00187{left:225.466667pt;}
.x37_c00187{left:227.333333pt;}
.x9c_c00187{left:228.666667pt;}
.x64_c00187{left:230.133333pt;}
.x1e_c00187{left:231.600000pt;}
.x6c_c00187{left:232.800000pt;}
.x7d_c00187{left:233.866667pt;}
.x11_c00187{left:235.333333pt;}
.xc5_c00187{left:240.400000pt;}
.xd2_c00187{left:242.800000pt;}
.xe7_c00187{left:243.866667pt;}
.x38_c00187{left:245.600000pt;}
.x103_c00187{left:247.866667pt;}
.xcf_c00187{left:248.800000pt;}
.x94_c00187{left:252.933333pt;}
.x5_c00187{left:254.000000pt;}
.x12_c00187{left:255.866667pt;}
.xbb_c00187{left:256.800000pt;}
.x6d_c00187{left:257.733333pt;}
.x58_c00187{left:258.800000pt;}
.xec_c00187{left:260.533333pt;}
.x1f_c00187{left:262.000000pt;}
.x39_c00187{left:263.466667pt;}
.xbf_c00187{left:266.000000pt;}
.x44_c00187{left:267.600000pt;}
.xd3_c00187{left:269.333333pt;}
.x2b_c00187{left:271.733333pt;}
.xb0_c00187{left:273.466667pt;}
.x7e_c00187{left:277.333333pt;}
.xa9_c00187{left:279.200000pt;}
.x59_c00187{left:281.200000pt;}
.x95_c00187{left:283.600000pt;}
.xdd_c00187{left:284.533333pt;}
.xc0_c00187{left:285.866667pt;}
.x65_c00187{left:287.733333pt;}
.x2c_c00187{left:289.333333pt;}
.x45_c00187{left:290.666667pt;}
.x7f_c00187{left:293.333333pt;}
.x51_c00187{left:295.066667pt;}
.x10d_c00187{left:296.533333pt;}
.x13_c00187{left:299.733333pt;}
.xd0_c00187{left:301.600000pt;}
.x9d_c00187{left:302.533333pt;}
.x6_c00187{left:305.200000pt;}
.xe8_c00187{left:309.866667pt;}
.x3a_c00187{left:311.466667pt;}
.x2d_c00187{left:313.600000pt;}
.x117_c00187{left:315.866667pt;}
.xb1_c00187{left:319.200000pt;}
.x7_c00187{left:320.933333pt;}
.x5a_c00187{left:324.133333pt;}
.xde_c00187{left:326.400000pt;}
.x2_c00187{left:327.333333pt;}
.x14_c00187{left:330.133333pt;}
.x112_c00187{left:331.333333pt;}
.x75_c00187{left:333.066667pt;}
.x3b_c00187{left:336.400000pt;}
.x8b_c00187{left:341.600000pt;}
.xed_c00187{left:342.666667pt;}
.x5b_c00187{left:344.000000pt;}
.xc6_c00187{left:346.000000pt;}
.x46_c00187{left:347.600000pt;}
.x9e_c00187{left:348.666667pt;}
.x66_c00187{left:351.066667pt;}
.xaa_c00187{left:353.733333pt;}
.xb2_c00187{left:356.000000pt;}
.x113_c00187{left:356.933333pt;}
.x76_c00187{left:358.400000pt;}
.xbc_c00187{left:361.866667pt;}
.x6e_c00187{left:363.066667pt;}
.x104_c00187{left:365.600000pt;}
.xc7_c00187{left:368.133333pt;}
.x8c_c00187{left:370.133333pt;}
.x5c_c00187{left:371.200000pt;}
.x1_c00187{left:372.800000pt;}
.x15_c00187{left:374.000000pt;}
.x2e_c00187{left:376.266667pt;}
.x96_c00187{left:378.000000pt;}
.x9f_c00187{left:380.000000pt;}
.x8_c00187{left:384.933333pt;}
.xee_c00187{left:387.200000pt;}
.x20_c00187{left:390.000000pt;}
.x97_c00187{left:392.133333pt;}
.xfd_c00187{left:395.600000pt;}
.x80_c00187{left:396.666667pt;}
.xcb_c00187{left:398.533333pt;}
.x9_c00187{left:400.666667pt;}
.x3_c00187{left:404.133333pt;}
.xd4_c00187{left:406.000000pt;}
.xa0_c00187{left:408.133333pt;}
.x5d_c00187{left:410.933333pt;}
.x77_c00187{left:415.733333pt;}
.x21_c00187{left:417.466667pt;}
.x6f_c00187{left:418.400000pt;}
.xd5_c00187{left:419.466667pt;}
.x52_c00187{left:421.466667pt;}
.x2f_c00187{left:422.666667pt;}
.x47_c00187{left:424.400000pt;}
.x81_c00187{left:425.733333pt;}
.xfe_c00187{left:426.666667pt;}
.xab_c00187{left:428.533333pt;}
.xb3_c00187{left:433.466667pt;}
.xbd_c00187{left:437.066667pt;}
.xcc_c00187{left:438.533333pt;}
.xef_c00187{left:439.733333pt;}
.x105_c00187{left:442.000000pt;}
.x78_c00187{left:443.200000pt;}
.x109_c00187{left:445.333333pt;}
.x30_c00187{left:446.400000pt;}
.x70_c00187{left:448.133333pt;}
.x48_c00187{left:451.333333pt;}
.x16_c00187{left:454.400000pt;}
.xac_c00187{left:456.000000pt;}
.xa_c00187{left:457.333333pt;}
.x22_c00187{left:458.400000pt;}
.x3c_c00187{left:462.133333pt;}
.x82_c00187{left:464.800000pt;}
.x71_c00187{left:465.733333pt;}
.x79_c00187{left:468.133333pt;}
.x31_c00187{left:469.066667pt;}
.xf4_c00187{left:472.400000pt;}
.x10a_c00187{left:473.866667pt;}
.x5e_c00187{left:476.266667pt;}
.x10e_c00187{left:479.200000pt;}
.x98_c00187{left:486.533333pt;}
.x3d_c00187{left:492.533333pt;}
.xdf_c00187{left:493.466667pt;}
.x32_c00187{left:494.933333pt;}
.xa1_c00187{left:498.666667pt;}
.x23_c00187{left:500.933333pt;}
.xd6_c00187{left:504.800000pt;}
.x8d_c00187{left:506.133333pt;}
.xe9_c00187{left:507.066667pt;}
.x49_c00187{left:508.266667pt;}
.x17_c00187{left:509.466667pt;}
.xb4_c00187{left:511.200000pt;}
.xf5_c00187{left:513.733333pt;}
.xe0_c00187{left:515.200000pt;}
.xb_c00187{left:516.266667pt;}
.xf0_c00187{left:518.400000pt;}
.x5f_c00187{left:520.800000pt;}
.x8e_c00187{left:522.133333pt;}
.xff_c00187{left:523.333333pt;}
.x114_c00187{left:526.133333pt;}
.x83_c00187{left:527.466667pt;}
.x106_c00187{left:530.000000pt;}
.xc1_c00187{left:531.866667pt;}
.xe1_c00187{left:534.400000pt;}
.xf1_c00187{left:535.733333pt;}
.x67_c00187{left:537.600000pt;}
.x84_c00187{left:542.133333pt;}
.x7a_c00187{left:543.333333pt;}
.x53_c00187{left:544.800000pt;}
.x4a_c00187{left:548.000000pt;}
.xd7_c00187{left:550.933333pt;}
.x33_c00187{left:553.200000pt;}
.x18_c00187{left:555.200000pt;}
.xa2_c00187{left:557.200000pt;}
.xf2_c00187{left:558.800000pt;}
.xad_c00187{left:560.266667pt;}
.x7b_c00187{left:562.266667pt;}
.x99_c00187{left:563.333333pt;}
.xc_c00187{left:564.533333pt;}
.xc8_c00187{left:571.066667pt;}
.x4b_c00187{left:572.266667pt;}
.x60_c00187{left:574.533333pt;}
.x24_c00187{left:576.133333pt;}
.x85_c00187{left:578.000000pt;}
.x3e_c00187{left:578.933333pt;}
.x8f_c00187{left:581.333333pt;}
.x9a_c00187{left:582.266667pt;}
.xae_c00187{left:586.133333pt;}
.x68_c00187{left:588.133333pt;}
.x72_c00187{left:592.133333pt;}
.x10f_c00187{left:593.200000pt;}
.x19_c00187{left:594.533333pt;}
.xa3_c00187{left:595.600000pt;}
.x86_c00187{left:596.933333pt;}
.x61_c00187{left:599.466667pt;}
.x3f_c00187{left:601.333333pt;}
.xd8_c00187{left:603.066667pt;}
.xb5_c00187{left:604.933333pt;}
.x34_c00187{left:606.666667pt;}
.x4c_c00187{left:609.333333pt;}
.x100_c00187{left:610.266667pt;}
.x110_c00187{left:614.266667pt;}
.x73_c00187{left:619.333333pt;}
.xa4_c00187{left:620.266667pt;}
.x54_c00187{left:621.866667pt;}
.x25_c00187{left:624.400000pt;}
.x115_c00187{left:626.000000pt;}
.x4d_c00187{left:627.866667pt;}
.x10b_c00187{left:630.266667pt;}
.x35_c00187{left:632.533333pt;}
.xf6_c00187{left:633.733333pt;}
.xcd_c00187{left:634.666667pt;}
.xb6_c00187{left:636.000000pt;}
.xc9_c00187{left:637.200000pt;}
.xbe_c00187{left:639.066667pt;}
.x55_c00187{left:640.133333pt;}
.x90_c00187{left:642.533333pt;}
.x1a_c00187{left:644.800000pt;}
.xc2_c00187{left:646.800000pt;}
.x26_c00187{left:651.333333pt;}
.x9b_c00187{left:653.333333pt;}
.x62_c00187{left:654.800000pt;}
.x56_c00187{left:655.866667pt;}
.xb7_c00187{left:658.133333pt;}
.x118_c00187{left:659.733333pt;}
.x69_c00187{left:663.333333pt;}
.x1b_c00187{left:664.933333pt;}
.x40_c00187{left:666.933333pt;}
.x101_c00187{left:668.800000pt;}
.xa5_c00187{left:672.800000pt;}
.xea_c00187{left:674.266667pt;}
.xf7_c00187{left:676.000000pt;}
}





/* 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_c00188 {
    display:none;
  }
  .loading-indicator_c00188.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00188 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_c00188 { 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_c00188" -> "#page-container .classname_c00188")
 */
.pf_c00188 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00188 { /* 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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00188 { /* 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_c00188 { /* 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_c00188 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00188 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00188 {overflow:visible;}
  }
}
.c_c00188 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00188 { /* 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_c00188:after { /* webkit #35443 */
  content: '';
}
.t_c00188:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00188 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 */
}
.__c00188 { /* 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_c00188 { /* info for Javascript */
  display:none;
}
.l_c00188 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00188 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00188 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00188: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_c00188 {
    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_c00188.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00188.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_c00188 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00188{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00188;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.000000;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;}
.m99_c00188{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m62_c00188{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00188{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00188{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00188{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00188{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mab_c00188{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00188{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00188{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00188{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00188{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00188{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00188{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m38_c00188{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mac_c00188{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00188{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00188{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00188{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00188{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mad_c00188{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00188{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00188{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m89_c00188{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m90_c00188{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00188{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m87_c00188{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00188{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m63_c00188{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00188{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m78_c00188{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m31_c00188{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m91_c00188{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00188{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mae_c00188{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00188{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m72_c00188{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m69_c00188{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00188{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m64_c00188{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m92_c00188{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00188{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m84_c00188{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m37_c00188{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00188{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00188{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00188{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m95_c00188{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m46_c00188{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m49_c00188{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m76_c00188{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m30_c00188{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00188{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00188{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7_c00188{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00188{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00188{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m16_c00188{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00188{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00188{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m48_c00188{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29_c00188{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00188{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m98_c00188{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);}
.m77_c00188{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00188{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m65_c00188{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22_c00188{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00188{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00188{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00188{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00188{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m33_c00188{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00188{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m83_c00188{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00188{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00188{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m93_c00188{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00188{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00188{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00188{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m60_c00188{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00188{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00188{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m23_c00188{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m66_c00188{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00188{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00188{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m88_c00188{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m80_c00188{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m75_c00188{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m74_c00188{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m17_c00188{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m19_c00188{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m85_c00188{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00188{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m86_c00188{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00188{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00188{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m81_c00188{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00188{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00188{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00188{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m73_c00188{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m79_c00188{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m71_c00188{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m82_c00188{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m96_c00188{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00188{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00188{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00188{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00188{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00188{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m94_c00188{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00188{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m24_c00188{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls0_c00188{letter-spacing:0.000000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{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__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00188{word-spacing:-5.590361px;}
.ws1_c00188{word-spacing:-2.208672px;}
.ws7_c00188{word-spacing:0.000000px;}
.ws5_c00188{word-spacing:0.806678px;}
.ws4_c00188{word-spacing:7.851204px;}
.ws3_c00188{word-spacing:8.408360px;}
.ws0_c00188{word-spacing:22.575563px;}
.ws6_c00188{word-spacing:46.341365px;}
.fc0_c00188{color:transparent;}
.fs0_c00188{font-size:54.000000px;}
.y0_c00188{bottom:0.000000px;}
.y2c_c00188{bottom:149.700000px;}
.y2b_c00188{bottom:165.600000px;}
.y2a_c00188{bottom:181.050000px;}
.y29_c00188{bottom:196.950000px;}
.y28_c00188{bottom:212.400000px;}
.y27_c00188{bottom:253.350000px;}
.y26_c00188{bottom:272.850000px;}
.y25_c00188{bottom:292.950000px;}
.y24_c00188{bottom:313.050000px;}
.y23_c00188{bottom:332.850000px;}
.y22_c00188{bottom:352.950000px;}
.y21_c00188{bottom:372.750000px;}
.y20_c00188{bottom:392.550000px;}
.y1f_c00188{bottom:412.650000px;}
.y1e_c00188{bottom:432.750000px;}
.y1d_c00188{bottom:452.550000px;}
.y1c_c00188{bottom:472.650000px;}
.y1b_c00188{bottom:492.900000px;}
.y1a_c00188{bottom:512.700000px;}
.y19_c00188{bottom:532.500000px;}
.y18_c00188{bottom:552.300000px;}
.y17_c00188{bottom:572.100000px;}
.y16_c00188{bottom:591.900000px;}
.y15_c00188{bottom:612.000000px;}
.y14_c00188{bottom:651.300000px;}
.y13_c00188{bottom:671.850000px;}
.y12_c00188{bottom:691.650000px;}
.y11_c00188{bottom:711.450000px;}
.y10_c00188{bottom:731.550000px;}
.yf_c00188{bottom:751.050000px;}
.ye_c00188{bottom:770.850000px;}
.yd_c00188{bottom:790.950000px;}
.yc_c00188{bottom:811.200000px;}
.yb_c00188{bottom:830.700000px;}
.ya_c00188{bottom:850.800000px;}
.y9_c00188{bottom:870.600000px;}
.y8_c00188{bottom:890.700000px;}
.y7_c00188{bottom:910.500000px;}
.y6_c00188{bottom:930.600000px;}
.y5_c00188{bottom:950.100000px;}
.y4_c00188{bottom:970.650000px;}
.y3_c00188{bottom:990.450000px;}
.y2_c00188{bottom:1010.550000px;}
.y1_c00188{bottom:1048.650000px;}
.h2_c00188{height:54.000000px;}
.h1_c00188{height:1167.750000px;}
.h0_c00188{height:1167.839997px;}
.w1_c00188{width:920.250000px;}
.w0_c00188{width:920.519990px;}
.x0_c00188{left:0.000000px;}
.x3_c00188{left:151.950000px;}
.x1_c00188{left:153.300000px;}
.xff_c00188{left:154.350000px;}
.x7c_c00188{left:171.750000px;}
.x133_c00188{left:172.800000px;}
.xc2_c00188{left:174.150000px;}
.xe1_c00188{left:179.250000px;}
.x69_c00188{left:181.200000px;}
.x35_c00188{left:183.900000px;}
.xf9_c00188{left:185.400000px;}
.xbc_c00188{left:188.700000px;}
.xf0_c00188{left:190.350000px;}
.xb3_c00188{left:193.350000px;}
.x8b_c00188{left:194.700000px;}
.x74_c00188{left:197.100000px;}
.xa7_c00188{left:200.850000px;}
.xd1_c00188{left:202.500000px;}
.xd6_c00188{left:203.700000px;}
.x14_c00188{left:204.750000px;}
.x5b_c00188{left:206.550000px;}
.xf1_c00188{left:209.100000px;}
.x4e_c00188{left:211.200000px;}
.x4_c00188{left:212.850000px;}
.x36_c00188{left:214.800000px;}
.x22_c00188{left:216.300000px;}
.x5c_c00188{left:217.650000px;}
.x31_c00188{left:219.000000px;}
.x84_c00188{left:221.100000px;}
.x4f_c00188{left:222.750000px;}
.xeb_c00188{left:224.850000px;}
.x96_c00188{left:225.900000px;}
.x126_c00188{left:227.250000px;}
.xe2_c00188{left:229.350000px;}
.x11a_c00188{left:230.550000px;}
.x5_c00188{left:232.950000px;}
.x9e_c00188{left:235.200000px;}
.x45_c00188{left:238.050000px;}
.xf2_c00188{left:240.000000px;}
.x136_c00188{left:241.950000px;}
.xb4_c00188{left:244.800000px;}
.x8c_c00188{left:247.200000px;}
.x5d_c00188{left:249.000000px;}
.xc4_c00188{left:252.000000px;}
.x10f_c00188{left:253.650000px;}
.x37_c00188{left:254.700000px;}
.x10a_c00188{left:256.050000px;}
.x23_c00188{left:257.400000px;}
.xbd_c00188{left:259.950000px;}
.x6_c00188{left:261.000000px;}
.x5e_c00188{left:263.700000px;}
.x121_c00188{left:267.150000px;}
.x134_c00188{left:269.700000px;}
.x38_c00188{left:273.750000px;}
.x116_c00188{left:275.250000px;}
.x15_c00188{left:277.200000px;}
.x122_c00188{left:280.050000px;}
.xfa_c00188{left:281.850000px;}
.x110_c00188{left:283.950000px;}
.xec_c00188{left:285.300000px;}
.xb5_c00188{left:287.700000px;}
.x100_c00188{left:288.900000px;}
.x7d_c00188{left:292.350000px;}
.x24_c00188{left:294.450000px;}
.x46_c00188{left:295.950000px;}
.x85_c00188{left:299.850000px;}
.x50_c00188{left:300.900000px;}
.x8d_c00188{left:302.250000px;}
.x13d_c00188{left:303.600000px;}
.xc3_c00188{left:304.950000px;}
.x131_c00188{left:306.000000px;}
.x16_c00188{left:308.100000px;}
.x12c_c00188{left:309.450000px;}
.x127_c00188{left:311.850000px;}
.x32_c00188{left:313.350000px;}
.xca_c00188{left:315.900000px;}
.x11b_c00188{left:319.800000px;}
.x6a_c00188{left:320.850000px;}
.x9f_c00188{left:323.250000px;}
.x75_c00188{left:324.300000px;}
.x7_c00188{left:325.500000px;}
.x7e_c00188{left:326.550000px;}
.x5f_c00188{left:331.050000px;}
.xd7_c00188{left:332.850000px;}
.x33_c00188{left:334.650000px;}
.x8e_c00188{left:336.750000px;}
.xa8_c00188{left:339.150000px;}
.x47_c00188{left:342.000000px;}
.x6b_c00188{left:343.950000px;}
.x11c_c00188{left:345.000000px;}
.x25_c00188{left:346.350000px;}
.x39_c00188{left:347.550000px;}
.x60_c00188{left:349.050000px;}
.x12d_c00188{left:350.550000px;}
.x51_c00188{left:351.600000px;}
.x137_c00188{left:352.800000px;}
.xe3_c00188{left:357.150000px;}
.x97_c00188{left:358.650000px;}
.x17_c00188{left:361.350000px;}
.x128_c00188{left:362.850000px;}
.xa9_c00188{left:364.650000px;}
.x86_c00188{left:369.000000px;}
.x117_c00188{left:370.950000px;}
.x8_c00188{left:372.600000px;}
.x98_c00188{left:373.800000px;}
.x6c_c00188{left:376.350000px;}
.x26_c00188{left:377.700000px;}
.x34_c00188{left:379.650000px;}
.x12e_c00188{left:381.150000px;}
.x3a_c00188{left:383.550000px;}
.x7f_c00188{left:385.350000px;}
.x13c_c00188{left:387.450000px;}
.x87_c00188{left:389.100000px;}
.xa0_c00188{left:390.150000px;}
.x9_c00188{left:392.100000px;}
.xb6_c00188{left:393.150000px;}
.xf3_c00188{left:394.650000px;}
.xc5_c00188{left:397.050000px;}
.xd8_c00188{left:398.400000px;}
.x13e_c00188{left:399.750000px;}
.x129_c00188{left:400.950000px;}
.xcb_c00188{left:402.000000px;}
.xaa_c00188{left:405.300000px;}
.x48_c00188{left:408.900000px;}
.xbe_c00188{left:410.850000px;}
.xfb_c00188{left:414.600000px;}
.xc6_c00188{left:416.100000px;}
.x27_c00188{left:417.300000px;}
.x99_c00188{left:419.850000px;}
.x101_c00188{left:421.350000px;}
.xe4_c00188{left:426.300000px;}
.x8f_c00188{left:428.550000px;}
.xa_c00188{left:430.200000px;}
.xbf_c00188{left:433.200000px;}
.x80_c00188{left:436.050000px;}
.x11d_c00188{left:438.300000px;}
.x61_c00188{left:439.500000px;}
.x3b_c00188{left:440.850000px;}
.x9a_c00188{left:442.200000px;}
.x12a_c00188{left:444.450000px;}
.x52_c00188{left:446.700000px;}
.xed_c00188{left:448.050000px;}
.x76_c00188{left:450.600000px;}
.x18_c00188{left:451.650000px;}
.xf4_c00188{left:453.000000px;}
.x2_c00188{left:454.200000px;}
.xe5_c00188{left:456.900000px;}
.x49_c00188{left:457.950000px;}
.x123_c00188{left:460.050000px;}
.xb_c00188{left:461.100000px;}
.xb7_c00188{left:463.350000px;}
.x12b_c00188{left:466.050000px;}
.x28_c00188{left:468.450000px;}
.xab_c00188{left:469.800000px;}
.xd2_c00188{left:470.850000px;}
.x3c_c00188{left:473.250000px;}
.x118_c00188{left:474.300000px;}
.x88_c00188{left:475.800000px;}
.x10b_c00188{left:479.850000px;}
.x62_c00188{left:481.200000px;}
.x107_c00188{left:483.150000px;}
.xa1_c00188{left:485.550000px;}
.xf5_c00188{left:486.750000px;}
.x77_c00188{left:488.400000px;}
.xd9_c00188{left:489.900000px;}
.x19_c00188{left:492.300000px;}
.x53_c00188{left:493.500000px;}
.x9b_c00188{left:495.450000px;}
.x90_c00188{left:496.950000px;}
.xe6_c00188{left:500.850000px;}
.xa2_c00188{left:503.250000px;}
.xfc_c00188{left:505.350000px;}
.x29_c00188{left:506.550000px;}
.xc_c00188{left:508.200000px;}
.x12f_c00188{left:509.250000px;}
.x1a_c00188{left:512.100000px;}
.x138_c00188{left:516.600000px;}
.xda_c00188{left:517.950000px;}
.x102_c00188{left:521.100000px;}
.x11e_c00188{left:523.650000px;}
.xac_c00188{left:526.800000px;}
.xb8_c00188{left:528.150000px;}
.x4a_c00188{left:530.250000px;}
.x135_c00188{left:534.600000px;}
.x78_c00188{left:536.550000px;}
.x108_c00188{left:537.900000px;}
.x103_c00188{left:539.100000px;}
.x3d_c00188{left:540.900000px;}
.x6d_c00188{left:542.700000px;}
.x1b_c00188{left:544.500000px;}
.xc7_c00188{left:547.200000px;}
.xc0_c00188{left:548.850000px;}
.x4b_c00188{left:550.050000px;}
.xa3_c00188{left:551.850000px;}
.x2a_c00188{left:553.050000px;}
.x91_c00188{left:554.250000px;}
.xdb_c00188{left:556.800000px;}
.x54_c00188{left:558.000000px;}
.xe7_c00188{left:560.550000px;}
.xcc_c00188{left:562.350000px;}
.x6e_c00188{left:566.400000px;}
.x89_c00188{left:569.100000px;}
.xc8_c00188{left:570.900000px;}
.xfd_c00188{left:571.950000px;}
.x4c_c00188{left:573.450000px;}
.xd_c00188{left:574.500000px;}
.x111_c00188{left:575.850000px;}
.x3e_c00188{left:577.650000px;}
.x104_c00188{left:578.700000px;}
.x1c_c00188{left:580.800000px;}
.x63_c00188{left:582.600000px;}
.x139_c00188{left:586.050000px;}
.x81_c00188{left:587.550000px;}
.xcd_c00188{left:589.350000px;}
.xad_c00188{left:591.300000px;}
.x10c_c00188{left:592.500000px;}
.x6f_c00188{left:595.500000px;}
.x79_c00188{left:598.050000px;}
.x92_c00188{left:600.600000px;}
.x1d_c00188{left:604.500000px;}
.xee_c00188{left:606.600000px;}
.xa4_c00188{left:607.950000px;}
.xae_c00188{left:610.350000px;}
.x55_c00188{left:612.300000px;}
.x112_c00188{left:613.350000px;}
.x3f_c00188{left:614.400000px;}
.x8a_c00188{left:615.450000px;}
.xe_c00188{left:616.950000px;}
.x2b_c00188{left:619.650000px;}
.xfe_c00188{left:624.150000px;}
.x11f_c00188{left:625.650000px;}
.x82_c00188{left:626.850000px;}
.xef_c00188{left:629.250000px;}
.xd3_c00188{left:631.050000px;}
.x70_c00188{left:632.250000px;}
.xdc_c00188{left:634.200000px;}
.x56_c00188{left:635.700000px;}
.x124_c00188{left:638.550000px;}
.xce_c00188{left:644.100000px;}
.x64_c00188{left:645.600000px;}
.xf6_c00188{left:646.650000px;}
.xf_c00188{left:648.300000px;}
.xb9_c00188{left:649.500000px;}
.x2c_c00188{left:650.550000px;}
.xdd_c00188{left:651.900000px;}
.x1e_c00188{left:654.600000px;}
.x7a_c00188{left:656.400000px;}
.x9c_c00188{left:657.750000px;}
.x57_c00188{left:660.600000px;}
.x10d_c00188{left:663.000000px;}
.x93_c00188{left:665.400000px;}
.xf7_c00188{left:666.450000px;}
.x71_c00188{left:667.950000px;}
.x119_c00188{left:672.300000px;}
.xc1_c00188{left:675.900000px;}
.xe8_c00188{left:677.100000px;}
.x40_c00188{left:679.200000px;}
.xde_c00188{left:680.400000px;}
.x120_c00188{left:681.750000px;}
.x10_c00188{left:682.800000px;}
.x1f_c00188{left:686.700000px;}
.x41_c00188{left:690.300000px;}
.xa5_c00188{left:693.600000px;}
.x2d_c00188{left:695.850000px;}
.xaf_c00188{left:697.350000px;}
.x83_c00188{left:699.900000px;}
.x132_c00188{left:702.000000px;}
.x113_c00188{left:703.050000px;}
.x72_c00188{left:704.700000px;}
.x58_c00188{left:705.900000px;}
.x11_c00188{left:708.000000px;}
.xc9_c00188{left:709.500000px;}
.x65_c00188{left:711.150000px;}
.xb0_c00188{left:714.300000px;}
.xba_c00188{left:716.400000px;}
.x125_c00188{left:717.750000px;}
.x42_c00188{left:719.100000px;}
.x114_c00188{left:720.750000px;}
.xdf_c00188{left:722.850000px;}
.x9d_c00188{left:725.400000px;}
.xcf_c00188{left:726.900000px;}
.x10e_c00188{left:728.100000px;}
.x20_c00188{left:729.900000px;}
.x66_c00188{left:733.500000px;}
.x2e_c00188{left:734.700000px;}
.x12_c00188{left:736.500000px;}
.x109_c00188{left:740.550000px;}
.xe0_c00188{left:741.900000px;}
.x13a_c00188{left:744.450000px;}
.xf8_c00188{left:747.000000px;}
.xe9_c00188{left:749.850000px;}
.x7b_c00188{left:753.450000px;}
.x2f_c00188{left:754.800000px;}
.x43_c00188{left:757.650000px;}
.x94_c00188{left:758.700000px;}
.xb1_c00188{left:763.200000px;}
.x67_c00188{left:764.850000px;}
.xd0_c00188{left:766.200000px;}
.x59_c00188{left:767.850000px;}
.x105_c00188{left:769.050000px;}
.x115_c00188{left:771.150000px;}
.x13b_c00188{left:772.200000px;}
.xa6_c00188{left:773.850000px;}
.x4d_c00188{left:775.650000px;}
.xea_c00188{left:777.150000px;}
.xbb_c00188{left:779.400000px;}
.x73_c00188{left:780.600000px;}
.x130_c00188{left:783.300000px;}
.xb2_c00188{left:784.800000px;}
.xd4_c00188{left:787.950000px;}
.x13_c00188{left:790.200000px;}
.x5a_c00188{left:791.250000px;}
.x68_c00188{left:793.650000px;}
.x21_c00188{left:797.250000px;}
.x44_c00188{left:798.300000px;}
.x30_c00188{left:800.850000px;}
.xd5_c00188{left:805.950000px;}
.x106_c00188{left:808.350000px;}
.x95_c00188{left:809.400000px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls0_c00188{letter-spacing:0.000000pt;}
.ws2_c00188{word-spacing:-4.969210pt;}
.ws1_c00188{word-spacing:-1.963264pt;}
.ws7_c00188{word-spacing:0.000000pt;}
.ws5_c00188{word-spacing:0.717047pt;}
.ws4_c00188{word-spacing:6.978848pt;}
.ws3_c00188{word-spacing:7.474098pt;}
.ws0_c00188{word-spacing:20.067167pt;}
.ws6_c00188{word-spacing:41.192325pt;}
.fs0_c00188{font-size:48.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y2c_c00188{bottom:133.066667pt;}
.y2b_c00188{bottom:147.200000pt;}
.y2a_c00188{bottom:160.933333pt;}
.y29_c00188{bottom:175.066667pt;}
.y28_c00188{bottom:188.800000pt;}
.y27_c00188{bottom:225.200000pt;}
.y26_c00188{bottom:242.533333pt;}
.y25_c00188{bottom:260.400000pt;}
.y24_c00188{bottom:278.266667pt;}
.y23_c00188{bottom:295.866667pt;}
.y22_c00188{bottom:313.733333pt;}
.y21_c00188{bottom:331.333333pt;}
.y20_c00188{bottom:348.933333pt;}
.y1f_c00188{bottom:366.800000pt;}
.y1e_c00188{bottom:384.666667pt;}
.y1d_c00188{bottom:402.266667pt;}
.y1c_c00188{bottom:420.133333pt;}
.y1b_c00188{bottom:438.133333pt;}
.y1a_c00188{bottom:455.733333pt;}
.y19_c00188{bottom:473.333333pt;}
.y18_c00188{bottom:490.933333pt;}
.y17_c00188{bottom:508.533333pt;}
.y16_c00188{bottom:526.133333pt;}
.y15_c00188{bottom:544.000000pt;}
.y14_c00188{bottom:578.933333pt;}
.y13_c00188{bottom:597.200000pt;}
.y12_c00188{bottom:614.800000pt;}
.y11_c00188{bottom:632.400000pt;}
.y10_c00188{bottom:650.266667pt;}
.yf_c00188{bottom:667.600000pt;}
.ye_c00188{bottom:685.200000pt;}
.yd_c00188{bottom:703.066667pt;}
.yc_c00188{bottom:721.066667pt;}
.yb_c00188{bottom:738.400000pt;}
.ya_c00188{bottom:756.266667pt;}
.y9_c00188{bottom:773.866667pt;}
.y8_c00188{bottom:791.733333pt;}
.y7_c00188{bottom:809.333333pt;}
.y6_c00188{bottom:827.200000pt;}
.y5_c00188{bottom:844.533333pt;}
.y4_c00188{bottom:862.800000pt;}
.y3_c00188{bottom:880.400000pt;}
.y2_c00188{bottom:898.266667pt;}
.y1_c00188{bottom:932.133333pt;}
.h2_c00188{height:48.000000pt;}
.h1_c00188{height:1038.000000pt;}
.h0_c00188{height:1038.079997pt;}
.w1_c00188{width:818.000000pt;}
.w0_c00188{width:818.239991pt;}
.x0_c00188{left:0.000000pt;}
.x3_c00188{left:135.066667pt;}
.x1_c00188{left:136.266667pt;}
.xff_c00188{left:137.200000pt;}
.x7c_c00188{left:152.666667pt;}
.x133_c00188{left:153.600000pt;}
.xc2_c00188{left:154.800000pt;}
.xe1_c00188{left:159.333333pt;}
.x69_c00188{left:161.066667pt;}
.x35_c00188{left:163.466667pt;}
.xf9_c00188{left:164.800000pt;}
.xbc_c00188{left:167.733333pt;}
.xf0_c00188{left:169.200000pt;}
.xb3_c00188{left:171.866667pt;}
.x8b_c00188{left:173.066667pt;}
.x74_c00188{left:175.200000pt;}
.xa7_c00188{left:178.533333pt;}
.xd1_c00188{left:180.000000pt;}
.xd6_c00188{left:181.066667pt;}
.x14_c00188{left:182.000000pt;}
.x5b_c00188{left:183.600000pt;}
.xf1_c00188{left:185.866667pt;}
.x4e_c00188{left:187.733333pt;}
.x4_c00188{left:189.200000pt;}
.x36_c00188{left:190.933333pt;}
.x22_c00188{left:192.266667pt;}
.x5c_c00188{left:193.466667pt;}
.x31_c00188{left:194.666667pt;}
.x84_c00188{left:196.533333pt;}
.x4f_c00188{left:198.000000pt;}
.xeb_c00188{left:199.866667pt;}
.x96_c00188{left:200.800000pt;}
.x126_c00188{left:202.000000pt;}
.xe2_c00188{left:203.866667pt;}
.x11a_c00188{left:204.933333pt;}
.x5_c00188{left:207.066667pt;}
.x9e_c00188{left:209.066667pt;}
.x45_c00188{left:211.600000pt;}
.xf2_c00188{left:213.333333pt;}
.x136_c00188{left:215.066667pt;}
.xb4_c00188{left:217.600000pt;}
.x8c_c00188{left:219.733333pt;}
.x5d_c00188{left:221.333333pt;}
.xc4_c00188{left:224.000000pt;}
.x10f_c00188{left:225.466667pt;}
.x37_c00188{left:226.400000pt;}
.x10a_c00188{left:227.600000pt;}
.x23_c00188{left:228.800000pt;}
.xbd_c00188{left:231.066667pt;}
.x6_c00188{left:232.000000pt;}
.x5e_c00188{left:234.400000pt;}
.x121_c00188{left:237.466667pt;}
.x134_c00188{left:239.733333pt;}
.x38_c00188{left:243.333333pt;}
.x116_c00188{left:244.666667pt;}
.x15_c00188{left:246.400000pt;}
.x122_c00188{left:248.933333pt;}
.xfa_c00188{left:250.533333pt;}
.x110_c00188{left:252.400000pt;}
.xec_c00188{left:253.600000pt;}
.xb5_c00188{left:255.733333pt;}
.x100_c00188{left:256.800000pt;}
.x7d_c00188{left:259.866667pt;}
.x24_c00188{left:261.733333pt;}
.x46_c00188{left:263.066667pt;}
.x85_c00188{left:266.533333pt;}
.x50_c00188{left:267.466667pt;}
.x8d_c00188{left:268.666667pt;}
.x13d_c00188{left:269.866667pt;}
.xc3_c00188{left:271.066667pt;}
.x131_c00188{left:272.000000pt;}
.x16_c00188{left:273.866667pt;}
.x12c_c00188{left:275.066667pt;}
.x127_c00188{left:277.200000pt;}
.x32_c00188{left:278.533333pt;}
.xca_c00188{left:280.800000pt;}
.x11b_c00188{left:284.266667pt;}
.x6a_c00188{left:285.200000pt;}
.x9f_c00188{left:287.333333pt;}
.x75_c00188{left:288.266667pt;}
.x7_c00188{left:289.333333pt;}
.x7e_c00188{left:290.266667pt;}
.x5f_c00188{left:294.266667pt;}
.xd7_c00188{left:295.866667pt;}
.x33_c00188{left:297.466667pt;}
.x8e_c00188{left:299.333333pt;}
.xa8_c00188{left:301.466667pt;}
.x47_c00188{left:304.000000pt;}
.x6b_c00188{left:305.733333pt;}
.x11c_c00188{left:306.666667pt;}
.x25_c00188{left:307.866667pt;}
.x39_c00188{left:308.933333pt;}
.x60_c00188{left:310.266667pt;}
.x12d_c00188{left:311.600000pt;}
.x51_c00188{left:312.533333pt;}
.x137_c00188{left:313.600000pt;}
.xe3_c00188{left:317.466667pt;}
.x97_c00188{left:318.800000pt;}
.x17_c00188{left:321.200000pt;}
.x128_c00188{left:322.533333pt;}
.xa9_c00188{left:324.133333pt;}
.x86_c00188{left:328.000000pt;}
.x117_c00188{left:329.733333pt;}
.x8_c00188{left:331.200000pt;}
.x98_c00188{left:332.266667pt;}
.x6c_c00188{left:334.533333pt;}
.x26_c00188{left:335.733333pt;}
.x34_c00188{left:337.466667pt;}
.x12e_c00188{left:338.800000pt;}
.x3a_c00188{left:340.933333pt;}
.x7f_c00188{left:342.533333pt;}
.x13c_c00188{left:344.400000pt;}
.x87_c00188{left:345.866667pt;}
.xa0_c00188{left:346.800000pt;}
.x9_c00188{left:348.533333pt;}
.xb6_c00188{left:349.466667pt;}
.xf3_c00188{left:350.800000pt;}
.xc5_c00188{left:352.933333pt;}
.xd8_c00188{left:354.133333pt;}
.x13e_c00188{left:355.333333pt;}
.x129_c00188{left:356.400000pt;}
.xcb_c00188{left:357.333333pt;}
.xaa_c00188{left:360.266667pt;}
.x48_c00188{left:363.466667pt;}
.xbe_c00188{left:365.200000pt;}
.xfb_c00188{left:368.533333pt;}
.xc6_c00188{left:369.866667pt;}
.x27_c00188{left:370.933333pt;}
.x99_c00188{left:373.200000pt;}
.x101_c00188{left:374.533333pt;}
.xe4_c00188{left:378.933333pt;}
.x8f_c00188{left:380.933333pt;}
.xa_c00188{left:382.400000pt;}
.xbf_c00188{left:385.066667pt;}
.x80_c00188{left:387.600000pt;}
.x11d_c00188{left:389.600000pt;}
.x61_c00188{left:390.666667pt;}
.x3b_c00188{left:391.866667pt;}
.x9a_c00188{left:393.066667pt;}
.x12a_c00188{left:395.066667pt;}
.x52_c00188{left:397.066667pt;}
.xed_c00188{left:398.266667pt;}
.x76_c00188{left:400.533333pt;}
.x18_c00188{left:401.466667pt;}
.xf4_c00188{left:402.666667pt;}
.x2_c00188{left:403.733333pt;}
.xe5_c00188{left:406.133333pt;}
.x49_c00188{left:407.066667pt;}
.x123_c00188{left:408.933333pt;}
.xb_c00188{left:409.866667pt;}
.xb7_c00188{left:411.866667pt;}
.x12b_c00188{left:414.266667pt;}
.x28_c00188{left:416.400000pt;}
.xab_c00188{left:417.600000pt;}
.xd2_c00188{left:418.533333pt;}
.x3c_c00188{left:420.666667pt;}
.x118_c00188{left:421.600000pt;}
.x88_c00188{left:422.933333pt;}
.x10b_c00188{left:426.533333pt;}
.x62_c00188{left:427.733333pt;}
.x107_c00188{left:429.466667pt;}
.xa1_c00188{left:431.600000pt;}
.xf5_c00188{left:432.666667pt;}
.x77_c00188{left:434.133333pt;}
.xd9_c00188{left:435.466667pt;}
.x19_c00188{left:437.600000pt;}
.x53_c00188{left:438.666667pt;}
.x9b_c00188{left:440.400000pt;}
.x90_c00188{left:441.733333pt;}
.xe6_c00188{left:445.200000pt;}
.xa2_c00188{left:447.333333pt;}
.xfc_c00188{left:449.200000pt;}
.x29_c00188{left:450.266667pt;}
.xc_c00188{left:451.733333pt;}
.x12f_c00188{left:452.666667pt;}
.x1a_c00188{left:455.200000pt;}
.x138_c00188{left:459.200000pt;}
.xda_c00188{left:460.400000pt;}
.x102_c00188{left:463.200000pt;}
.x11e_c00188{left:465.466667pt;}
.xac_c00188{left:468.266667pt;}
.xb8_c00188{left:469.466667pt;}
.x4a_c00188{left:471.333333pt;}
.x135_c00188{left:475.200000pt;}
.x78_c00188{left:476.933333pt;}
.x108_c00188{left:478.133333pt;}
.x103_c00188{left:479.200000pt;}
.x3d_c00188{left:480.800000pt;}
.x6d_c00188{left:482.400000pt;}
.x1b_c00188{left:484.000000pt;}
.xc7_c00188{left:486.400000pt;}
.xc0_c00188{left:487.866667pt;}
.x4b_c00188{left:488.933333pt;}
.xa3_c00188{left:490.533333pt;}
.x2a_c00188{left:491.600000pt;}
.x91_c00188{left:492.666667pt;}
.xdb_c00188{left:494.933333pt;}
.x54_c00188{left:496.000000pt;}
.xe7_c00188{left:498.266667pt;}
.xcc_c00188{left:499.866667pt;}
.x6e_c00188{left:503.466667pt;}
.x89_c00188{left:505.866667pt;}
.xc8_c00188{left:507.466667pt;}
.xfd_c00188{left:508.400000pt;}
.x4c_c00188{left:509.733333pt;}
.xd_c00188{left:510.666667pt;}
.x111_c00188{left:511.866667pt;}
.x3e_c00188{left:513.466667pt;}
.x104_c00188{left:514.400000pt;}
.x1c_c00188{left:516.266667pt;}
.x63_c00188{left:517.866667pt;}
.x139_c00188{left:520.933333pt;}
.x81_c00188{left:522.266667pt;}
.xcd_c00188{left:523.866667pt;}
.xad_c00188{left:525.600000pt;}
.x10c_c00188{left:526.666667pt;}
.x6f_c00188{left:529.333333pt;}
.x79_c00188{left:531.600000pt;}
.x92_c00188{left:533.866667pt;}
.x1d_c00188{left:537.333333pt;}
.xee_c00188{left:539.200000pt;}
.xa4_c00188{left:540.400000pt;}
.xae_c00188{left:542.533333pt;}
.x55_c00188{left:544.266667pt;}
.x112_c00188{left:545.200000pt;}
.x3f_c00188{left:546.133333pt;}
.x8a_c00188{left:547.066667pt;}
.xe_c00188{left:548.400000pt;}
.x2b_c00188{left:550.800000pt;}
.xfe_c00188{left:554.800000pt;}
.x11f_c00188{left:556.133333pt;}
.x82_c00188{left:557.200000pt;}
.xef_c00188{left:559.333333pt;}
.xd3_c00188{left:560.933333pt;}
.x70_c00188{left:562.000000pt;}
.xdc_c00188{left:563.733333pt;}
.x56_c00188{left:565.066667pt;}
.x124_c00188{left:567.600000pt;}
.xce_c00188{left:572.533333pt;}
.x64_c00188{left:573.866667pt;}
.xf6_c00188{left:574.800000pt;}
.xf_c00188{left:576.266667pt;}
.xb9_c00188{left:577.333333pt;}
.x2c_c00188{left:578.266667pt;}
.xdd_c00188{left:579.466667pt;}
.x1e_c00188{left:581.866667pt;}
.x7a_c00188{left:583.466667pt;}
.x9c_c00188{left:584.666667pt;}
.x57_c00188{left:587.200000pt;}
.x10d_c00188{left:589.333333pt;}
.x93_c00188{left:591.466667pt;}
.xf7_c00188{left:592.400000pt;}
.x71_c00188{left:593.733333pt;}
.x119_c00188{left:597.600000pt;}
.xc1_c00188{left:600.800000pt;}
.xe8_c00188{left:601.866667pt;}
.x40_c00188{left:603.733333pt;}
.xde_c00188{left:604.800000pt;}
.x120_c00188{left:606.000000pt;}
.x10_c00188{left:606.933333pt;}
.x1f_c00188{left:610.400000pt;}
.x41_c00188{left:613.600000pt;}
.xa5_c00188{left:616.533333pt;}
.x2d_c00188{left:618.533333pt;}
.xaf_c00188{left:619.866667pt;}
.x83_c00188{left:622.133333pt;}
.x132_c00188{left:624.000000pt;}
.x113_c00188{left:624.933333pt;}
.x72_c00188{left:626.400000pt;}
.x58_c00188{left:627.466667pt;}
.x11_c00188{left:629.333333pt;}
.xc9_c00188{left:630.666667pt;}
.x65_c00188{left:632.133333pt;}
.xb0_c00188{left:634.933333pt;}
.xba_c00188{left:636.800000pt;}
.x125_c00188{left:638.000000pt;}
.x42_c00188{left:639.200000pt;}
.x114_c00188{left:640.666667pt;}
.xdf_c00188{left:642.533333pt;}
.x9d_c00188{left:644.800000pt;}
.xcf_c00188{left:646.133333pt;}
.x10e_c00188{left:647.200000pt;}
.x20_c00188{left:648.800000pt;}
.x66_c00188{left:652.000000pt;}
.x2e_c00188{left:653.066667pt;}
.x12_c00188{left:654.666667pt;}
.x109_c00188{left:658.266667pt;}
.xe0_c00188{left:659.466667pt;}
.x13a_c00188{left:661.733333pt;}
.xf8_c00188{left:664.000000pt;}
.xe9_c00188{left:666.533333pt;}
.x7b_c00188{left:669.733333pt;}
.x2f_c00188{left:670.933333pt;}
.x43_c00188{left:673.466667pt;}
.x94_c00188{left:674.400000pt;}
.xb1_c00188{left:678.400000pt;}
.x67_c00188{left:679.866667pt;}
.xd0_c00188{left:681.066667pt;}
.x59_c00188{left:682.533333pt;}
.x105_c00188{left:683.600000pt;}
.x115_c00188{left:685.466667pt;}
.x13b_c00188{left:686.400000pt;}
.xa6_c00188{left:687.866667pt;}
.x4d_c00188{left:689.466667pt;}
.xea_c00188{left:690.800000pt;}
.xbb_c00188{left:692.800000pt;}
.x73_c00188{left:693.866667pt;}
.x130_c00188{left:696.266667pt;}
.xb2_c00188{left:697.600000pt;}
.xd4_c00188{left:700.400000pt;}
.x13_c00188{left:702.400000pt;}
.x5a_c00188{left:703.333333pt;}
.x68_c00188{left:705.466667pt;}
.x21_c00188{left:708.666667pt;}
.x44_c00188{left:709.600000pt;}
.x30_c00188{left:711.866667pt;}
.xd5_c00188{left:716.400000pt;}
.x106_c00188{left:718.533333pt;}
.x95_c00188{left:719.466667pt;}
}





/* 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_c00189 {
    display:none;
  }
  .loading-indicator_c00189.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00189 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_c00189 { 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_c00189" -> "#page-container .classname_c00189")
 */
.pf_c00189 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00189 { /* 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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00189 { /* 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_c00189 { /* 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_c00189 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00189 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00189 {overflow:visible;}
  }
}
.c_c00189 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00189 { /* 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_c00189:after { /* webkit #35443 */
  content: '';
}
.t_c00189:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00189 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 */
}
.__c00189 { /* 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_c00189 { /* info for Javascript */
  display:none;
}
.l_c00189 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00189 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00189 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00189: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_c00189 {
    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_c00189.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00189.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_c00189 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00189{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00189;src:url('chunks/assets/font_a388278df0416cddb4021386.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.000000;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_c00189{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2_c00189{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls0_c00189{letter-spacing:0.000000px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{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__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fs0_c00189{font-size:30.000000px;}
.y0_c00189{bottom:0.000000px;}
.y1_c00189{bottom:592.950000px;}
.h2_c00189{height:30.000000px;}
.h1_c00189{height:1167.750000px;}
.h0_c00189{height:1167.839997px;}
.w1_c00189{width:920.250000px;}
.w0_c00189{width:920.519990px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:813.300000px;}
.x2_c00189{left:818.700000px;}
.x3_c00189{left:854.700000px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls0_c00189{letter-spacing:0.000000pt;}
.ws0_c00189{word-spacing:0.000000pt;}
.fs0_c00189{font-size:26.666667pt;}
.y0_c00189{bottom:0.000000pt;}
.y1_c00189{bottom:527.066667pt;}
.h2_c00189{height:26.666667pt;}
.h1_c00189{height:1038.000000pt;}
.h0_c00189{height:1038.079997pt;}
.w1_c00189{width:818.000000pt;}
.w0_c00189{width:818.239991pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:722.933333pt;}
.x2_c00189{left:727.733333pt;}
.x3_c00189{left:759.733333pt;}
}





/* 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_c00190 {
    display:none;
  }
  .loading-indicator_c00190.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00190 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_c00190 { 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_c00190" -> "#page-container .classname_c00190")
 */
.pf_c00190 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00190 { /* 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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00190 { /* 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_c00190 { /* 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_c00190 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00190 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00190 {overflow:visible;}
  }
}
.c_c00190 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00190 { /* 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_c00190:after { /* webkit #35443 */
  content: '';
}
.t_c00190:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00190 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 */
}
.__c00190 { /* 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_c00190 { /* info for Javascript */
  display:none;
}
.l_c00190 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00190 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00190 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00190: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_c00190 {
    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_c00190.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00190.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_c00190 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00190{font-family:sans-serif;visibility:hidden;}
.sc__c00190{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
}
.y0_c00190{bottom:0.000000px;}
.h1_c00190{height:1167.750000px;}
.h0_c00190{height:1167.839997px;}
.w1_c00190{width:920.250000px;}
.w0_c00190{width:920.519990px;}
.x0_c00190{left:0.000000px;}
@media print{
.y0_c00190{bottom:0.000000pt;}
.h1_c00190{height:1038.000000pt;}
.h0_c00190{height:1038.079997pt;}
.w1_c00190{width:818.000000pt;}
.w0_c00190{width:818.239991pt;}
.x0_c00190{left:0.000000pt;}
}





/* 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_c00191 {
    display:none;
  }
  .loading-indicator_c00191.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00191 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_c00191 { 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_c00191" -> "#page-container .classname_c00191")
 */
.pf_c00191 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00191 { /* 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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00191 { /* 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_c00191 { /* 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_c00191 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00191 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00191 {overflow:visible;}
  }
}
.c_c00191 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00191 { /* 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_c00191:after { /* webkit #35443 */
  content: '';
}
.t_c00191:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00191 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 */
}
.__c00191 { /* 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_c00191 { /* info for Javascript */
  display:none;
}
.l_c00191 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00191 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00191 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00191: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_c00191 {
    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_c00191.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00191.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_c00191 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00191{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00191;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.000000;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;}
.m31_c00191{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.md_c00191{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00191{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6_c00191{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m41_c00191{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00191{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maa_c00191{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mae_c00191{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00191{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00191{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m69_c00191{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m87_c00191{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.me_c00191{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00191{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00191{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m77_c00191{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00191{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m66_c00191{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m96_c00191{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55_c00191{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m14_c00191{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m54_c00191{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m60_c00191{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m88_c00191{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00191{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00191{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m50_c00191{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m85_c00191{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00191{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00191{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00191{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m27_c00191{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{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);}
.m23_c00191{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m98_c00191{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m30_c00191{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3_c00191{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00191{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m99_c00191{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00191{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00191{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00191{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m91_c00191{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m78_c00191{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m39_c00191{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m16_c00191{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00191{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m44_c00191{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00191{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m95_c00191{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00191{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00191{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m17_c00191{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00191{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m37_c00191{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m79_c00191{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m53_c00191{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m67_c00191{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m32_c00191{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00191{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m97_c00191{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m61_c00191{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m81_c00191{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{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__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00191{word-spacing:-5.707591px;}
.ws7_c00191{word-spacing:-0.084349px;}
.ws3_c00191{word-spacing:-0.049614px;}
.ws8_c00191{word-spacing:0.000000px;}
.ws1_c00191{word-spacing:1.750000px;}
.ws0_c00191{word-spacing:6.125000px;}
.ws6_c00191{word-spacing:9.162073px;}
.ws2_c00191{word-spacing:9.750827px;}
.ws5_c00191{word-spacing:20.176195px;}
.fc0_c00191{color:transparent;}
.fs0_c00191{font-size:54.000000px;}
.y0_c00191{bottom:0.000000px;}
.y29_c00191{bottom:145.500000px;}
.y28_c00191{bottom:191.550000px;}
.y27_c00191{bottom:211.350000px;}
.y26_c00191{bottom:230.850000px;}
.y25_c00191{bottom:250.650000px;}
.y24_c00191{bottom:270.750000px;}
.y23_c00191{bottom:309.300000px;}
.y22_c00191{bottom:330.600000px;}
.y21_c00191{bottom:350.700000px;}
.y20_c00191{bottom:370.200000px;}
.y1f_c00191{bottom:390.300000px;}
.y1e_c00191{bottom:410.100000px;}
.y1d_c00191{bottom:429.900000px;}
.y1c_c00191{bottom:469.650000px;}
.y1b_c00191{bottom:489.750000px;}
.y1a_c00191{bottom:509.850000px;}
.y19_c00191{bottom:529.350000px;}
.y18_c00191{bottom:549.450000px;}
.y17_c00191{bottom:569.550000px;}
.y16_c00191{bottom:589.350000px;}
.y15_c00191{bottom:628.650000px;}
.y14_c00191{bottom:649.200000px;}
.y13_c00191{bottom:669.300000px;}
.y12_c00191{bottom:689.100000px;}
.y11_c00191{bottom:709.650000px;}
.y10_c00191{bottom:729.450000px;}
.yf_c00191{bottom:749.250000px;}
.ye_c00191{bottom:769.350000px;}
.yd_c00191{bottom:789.450000px;}
.yc_c00191{bottom:809.250000px;}
.yb_c00191{bottom:829.350000px;}
.ya_c00191{bottom:849.450000px;}
.y9_c00191{bottom:869.250000px;}
.y8_c00191{bottom:889.350000px;}
.y7_c00191{bottom:909.150000px;}
.y6_c00191{bottom:928.950000px;}
.y5_c00191{bottom:949.050000px;}
.y4_c00191{bottom:968.550000px;}
.y3_c00191{bottom:988.650000px;}
.y2_c00191{bottom:1008.750000px;}
.y1_c00191{bottom:1046.850000px;}
.h2_c00191{height:54.000000px;}
.h1_c00191{height:1167.750000px;}
.h0_c00191{height:1167.839997px;}
.w1_c00191{width:920.250000px;}
.w0_c00191{width:920.519990px;}
.x0_c00191{left:0.000000px;}
.x3_c00191{left:103.650000px;}
.x90_c00191{left:104.700000px;}
.x42_c00191{left:121.350000px;}
.xd6_c00191{left:122.700000px;}
.x118_c00191{left:124.800000px;}
.x5e_c00191{left:127.200000px;}
.x50_c00191{left:132.150000px;}
.x4_c00191{left:134.550000px;}
.xd8_c00191{left:136.500000px;}
.x105_c00191{left:138.600000px;}
.x24_c00191{left:140.400000px;}
.x16_c00191{left:143.850000px;}
.x10b_c00191{left:145.650000px;}
.x6a_c00191{left:146.700000px;}
.xd7_c00191{left:148.200000px;}
.xfa_c00191{left:153.150000px;}
.x34_c00191{left:156.900000px;}
.x89_c00191{left:159.000000px;}
.x9c_c00191{left:161.100000px;}
.x5_c00191{left:163.350000px;}
.x73_c00191{left:164.850000px;}
.x10c_c00191{left:166.950000px;}
.xee_c00191{left:170.100000px;}
.x25_c00191{left:171.750000px;}
.x123_c00191{left:173.250000px;}
.x43_c00191{left:174.900000px;}
.xcd_c00191{left:176.550000px;}
.x7d_c00191{left:177.600000px;}
.x51_c00191{left:178.650000px;}
.x17_c00191{left:181.950000px;}
.xde_c00191{left:187.200000px;}
.x106_c00191{left:190.050000px;}
.x119_c00191{left:192.450000px;}
.x116_c00191{left:194.550000px;}
.x91_c00191{left:196.050000px;}
.xa6_c00191{left:197.250000px;}
.xbf_c00191{left:199.350000px;}
.x35_c00191{left:200.850000px;}
.x52_c00191{left:202.350000px;}
.x18_c00191{left:203.550000px;}
.xfb_c00191{left:204.750000px;}
.x111_c00191{left:206.250000px;}
.x74_c00191{left:207.750000px;}
.x11c_c00191{left:208.800000px;}
.xe9_c00191{left:210.150000px;}
.x36_c00191{left:213.150000px;}
.xa7_c00191{left:214.950000px;}
.x5f_c00191{left:216.150000px;}
.x9d_c00191{left:217.950000px;}
.x92_c00191{left:220.950000px;}
.xef_c00191{left:225.900000px;}
.xe3_c00191{left:228.150000px;}
.x75_c00191{left:230.850000px;}
.xb8_c00191{left:231.900000px;}
.x26_c00191{left:234.000000px;}
.x6_c00191{left:237.150000px;}
.xea_c00191{left:240.450000px;}
.x44_c00191{left:242.250000px;}
.x7e_c00191{left:243.450000px;}
.xc7_c00191{left:245.400000px;}
.xf4_c00191{left:247.650000px;}
.xa8_c00191{left:249.150000px;}
.x76_c00191{left:250.950000px;}
.x53_c00191{left:252.750000px;}
.x27_c00191{left:254.550000px;}
.x7_c00191{left:256.950000px;}
.x11d_c00191{left:258.000000px;}
.xb9_c00191{left:261.000000px;}
.x93_c00191{left:263.850000px;}
.x19_c00191{left:266.550000px;}
.xd9_c00191{left:271.950000px;}
.x7f_c00191{left:273.300000px;}
.x8_c00191{left:274.650000px;}
.x112_c00191{left:276.150000px;}
.x9e_c00191{left:277.350000px;}
.xf0_c00191{left:279.600000px;}
.x6b_c00191{left:282.000000px;}
.x54_c00191{left:284.100000px;}
.x94_c00191{left:285.150000px;}
.x8a_c00191{left:288.600000px;}
.xff_c00191{left:291.900000px;}
.x11f_c00191{left:293.550000px;}
.x28_c00191{left:295.200000px;}
.x77_c00191{left:297.450000px;}
.x37_c00191{left:298.500000px;}
.xa9_c00191{left:299.850000px;}
.xce_c00191{left:301.200000px;}
.x9_c00191{left:303.150000px;}
.x55_c00191{left:307.200000px;}
.x1a_c00191{left:309.750000px;}
.xc0_c00191{left:310.950000px;}
.x126_c00191{left:314.250000px;}
.x8b_c00191{left:315.300000px;}
.x11a_c00191{left:316.500000px;}
.x45_c00191{left:318.150000px;}
.xaa_c00191{left:319.950000px;}
.x80_c00191{left:321.600000px;}
.x10d_c00191{left:323.100000px;}
.x9f_c00191{left:325.950000px;}
.x29_c00191{left:327.900000px;}
.x100_c00191{left:328.950000px;}
.x60_c00191{left:330.900000px;}
.xc8_c00191{left:332.400000px;}
.xf5_c00191{left:336.300000px;}
.xcf_c00191{left:338.700000px;}
.xe4_c00191{left:340.800000px;}
.x107_c00191{left:341.850000px;}
.xda_c00191{left:343.200000px;}
.x1b_c00191{left:344.250000px;}
.x56_c00191{left:346.800000px;}
.xdf_c00191{left:348.750000px;}
.x10e_c00191{left:351.150000px;}
.x38_c00191{left:352.800000px;}
.xeb_c00191{left:353.850000px;}
.x78_c00191{left:355.050000px;}
.xd0_c00191{left:357.450000px;}
.xfc_c00191{left:360.150000px;}
.xab_c00191{left:363.150000px;}
.x46_c00191{left:364.950000px;}
.x8c_c00191{left:367.200000px;}
.x1c_c00191{left:370.200000px;}
.x39_c00191{left:372.600000px;}
.x81_c00191{left:374.550000px;}
.xa_c00191{left:376.950000px;}
.xb1_c00191{left:378.150000px;}
.xdb_c00191{left:382.800000px;}
.x6c_c00191{left:387.450000px;}
.x108_c00191{left:388.650000px;}
.xb_c00191{left:392.100000px;}
.x95_c00191{left:394.500000px;}
.x82_c00191{left:396.450000px;}
.x2a_c00191{left:399.150000px;}
.x61_c00191{left:400.800000px;}
.x113_c00191{left:403.350000px;}
.x1_c00191{left:406.050000px;}
.xc1_c00191{left:408.450000px;}
.x96_c00191{left:413.550000px;}
.xba_c00191{left:418.350000px;}
.x62_c00191{left:421.350000px;}
.x1d_c00191{left:423.450000px;}
.x97_c00191{left:425.850000px;}
.x47_c00191{left:427.200000px;}
.x6d_c00191{left:428.550000px;}
.x2b_c00191{left:430.050000px;}
.x57_c00191{left:431.400000px;}
.xac_c00191{left:434.100000px;}
.x79_c00191{left:436.350000px;}
.xd1_c00191{left:437.700000px;}
.x3a_c00191{left:440.250000px;}
.xc_c00191{left:442.800000px;}
.x83_c00191{left:444.750000px;}
.xe0_c00191{left:447.450000px;}
.xa0_c00191{left:449.400000px;}
.xc9_c00191{left:451.200000px;}
.x63_c00191{left:452.700000px;}
.x48_c00191{left:455.250000px;}
.xf1_c00191{left:456.750000px;}
.x120_c00191{left:457.800000px;}
.x1e_c00191{left:459.450000px;}
.xbb_c00191{left:461.250000px;}
.xd_c00191{left:462.600000px;}
.x7a_c00191{left:464.400000px;}
.x8d_c00191{left:465.900000px;}
.x101_c00191{left:468.900000px;}
.x11b_c00191{left:470.100000px;}
.x2c_c00191{left:471.450000px;}
.xb2_c00191{left:474.600000px;}
.xca_c00191{left:475.650000px;}
.xbc_c00191{left:481.800000px;}
.xf6_c00191{left:484.350000px;}
.xe_c00191{left:486.300000px;}
.xe1_c00191{left:489.600000px;}
.x102_c00191{left:492.600000px;}
.x58_c00191{left:495.450000px;}
.xb3_c00191{left:496.950000px;}
.xec_c00191{left:500.700000px;}
.x3b_c00191{left:501.750000px;}
.x1f_c00191{left:505.200000px;}
.x84_c00191{left:507.000000px;}
.x98_c00191{left:509.700000px;}
.xbd_c00191{left:511.650000px;}
.x49_c00191{left:513.600000px;}
.xa1_c00191{left:515.250000px;}
.x7b_c00191{left:516.300000px;}
.xf2_c00191{left:519.150000px;}
.x2d_c00191{left:522.150000px;}
.xd2_c00191{left:523.650000px;}
.x8e_c00191{left:527.400000px;}
.xe2_c00191{left:528.450000px;}
.x10f_c00191{left:532.650000px;}
.x85_c00191{left:535.800000px;}
.xf7_c00191{left:537.600000px;}
.xc2_c00191{left:539.100000px;}
.x4a_c00191{left:541.350000px;}
.x3c_c00191{left:542.400000px;}
.x114_c00191{left:544.050000px;}
.x8f_c00191{left:545.400000px;}
.x2e_c00191{left:549.450000px;}
.x64_c00191{left:555.300000px;}
.x59_c00191{left:556.950000px;}
.xc3_c00191{left:559.200000px;}
.xa2_c00191{left:561.000000px;}
.xf_c00191{left:562.650000px;}
.x3d_c00191{left:563.700000px;}
.x20_c00191{left:565.650000px;}
.x121_c00191{left:567.150000px;}
.xbe_c00191{left:568.500000px;}
.xfd_c00191{left:569.550000px;}
.xb4_c00191{left:570.750000px;}
.x65_c00191{left:573.300000px;}
.x10_c00191{left:577.350000px;}
.x6e_c00191{left:580.200000px;}
.x4b_c00191{left:582.450000px;}
.x122_c00191{left:585.150000px;}
.xdc_c00191{left:586.650000px;}
.x109_c00191{left:587.700000px;}
.x99_c00191{left:589.350000px;}
.x3e_c00191{left:592.200000px;}
.x21_c00191{left:593.700000px;}
.xf3_c00191{left:595.050000px;}
.x86_c00191{left:597.300000px;}
.x124_c00191{left:598.650000px;}
.x4c_c00191{left:600.450000px;}
.x11_c00191{left:603.300000px;}
.xb5_c00191{left:606.000000px;}
.xc4_c00191{left:607.800000px;}
.x2f_c00191{left:610.950000px;}
.x115_c00191{left:612.150000px;}
.xd3_c00191{left:613.650000px;}
.xcb_c00191{left:616.050000px;}
.x11e_c00191{left:618.600000px;}
.x125_c00191{left:619.950000px;}
.xad_c00191{left:621.450000px;}
.x5a_c00191{left:623.250000px;}
.x87_c00191{left:625.800000px;}
.xa3_c00191{left:627.600000px;}
.x12_c00191{left:628.800000px;}
.x30_c00191{left:630.750000px;}
.x66_c00191{left:631.950000px;}
.x22_c00191{left:633.300000px;}
.x6f_c00191{left:636.300000px;}
.x9a_c00191{left:637.650000px;}
.xed_c00191{left:638.850000px;}
.xe5_c00191{left:641.400000px;}
.x3f_c00191{left:644.700000px;}
.xd4_c00191{left:647.850000px;}
.x117_c00191{left:649.200000px;}
.x5b_c00191{left:652.350000px;}
.xc5_c00191{left:654.300000px;}
.x70_c00191{left:656.400000px;}
.x31_c00191{left:658.800000px;}
.x4d_c00191{left:661.650000px;}
.xfe_c00191{left:663.450000px;}
.xa4_c00191{left:664.650000px;}
.x13_c00191{left:668.400000px;}
.x103_c00191{left:671.550000px;}
.xae_c00191{left:673.650000px;}
.x110_c00191{left:676.050000px;}
.x4e_c00191{left:681.150000px;}
.xf8_c00191{left:682.350000px;}
.x23_c00191{left:684.750000px;}
.x67_c00191{left:688.500000px;}
.x71_c00191{left:690.600000px;}
.x5c_c00191{left:691.650000px;}
.xc6_c00191{left:694.200000px;}
.x9b_c00191{left:697.050000px;}
.x10a_c00191{left:698.250000px;}
.x32_c00191{left:703.050000px;}
.x14_c00191{left:704.400000px;}
.x40_c00191{left:707.100000px;}
.x72_c00191{left:708.900000px;}
.xe6_c00191{left:710.250000px;}
.xb6_c00191{left:711.450000px;}
.x7c_c00191{left:714.000000px;}
.xcc_c00191{left:719.700000px;}
.xaf_c00191{left:720.750000px;}
.x33_c00191{left:723.150000px;}
.xd5_c00191{left:730.350000px;}
.x104_c00191{left:733.050000px;}
.x5d_c00191{left:734.100000px;}
.x68_c00191{left:735.600000px;}
.xe7_c00191{left:740.550000px;}
.x41_c00191{left:742.050000px;}
.x15_c00191{left:744.000000px;}
.xb7_c00191{left:745.950000px;}
.x2_c00191{left:747.750000px;}
.xa5_c00191{left:750.300000px;}
.xb0_c00191{left:753.150000px;}
.xdd_c00191{left:754.200000px;}
.x69_c00191{left:755.400000px;}
.x4f_c00191{left:756.750000px;}
.x88_c00191{left:760.500000px;}
.xf9_c00191{left:767.400000px;}
.xe8_c00191{left:770.850000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws4_c00191{word-spacing:-5.073415pt;}
.ws7_c00191{word-spacing:-0.074977pt;}
.ws3_c00191{word-spacing:-0.044101pt;}
.ws8_c00191{word-spacing:0.000000pt;}
.ws1_c00191{word-spacing:1.555556pt;}
.ws0_c00191{word-spacing:5.444444pt;}
.ws6_c00191{word-spacing:8.144065pt;}
.ws2_c00191{word-spacing:8.667402pt;}
.ws5_c00191{word-spacing:17.934396pt;}
.fs0_c00191{font-size:48.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y29_c00191{bottom:129.333333pt;}
.y28_c00191{bottom:170.266667pt;}
.y27_c00191{bottom:187.866667pt;}
.y26_c00191{bottom:205.200000pt;}
.y25_c00191{bottom:222.800000pt;}
.y24_c00191{bottom:240.666667pt;}
.y23_c00191{bottom:274.933333pt;}
.y22_c00191{bottom:293.866667pt;}
.y21_c00191{bottom:311.733333pt;}
.y20_c00191{bottom:329.066667pt;}
.y1f_c00191{bottom:346.933333pt;}
.y1e_c00191{bottom:364.533333pt;}
.y1d_c00191{bottom:382.133333pt;}
.y1c_c00191{bottom:417.466667pt;}
.y1b_c00191{bottom:435.333333pt;}
.y1a_c00191{bottom:453.200000pt;}
.y19_c00191{bottom:470.533333pt;}
.y18_c00191{bottom:488.400000pt;}
.y17_c00191{bottom:506.266667pt;}
.y16_c00191{bottom:523.866667pt;}
.y15_c00191{bottom:558.800000pt;}
.y14_c00191{bottom:577.066667pt;}
.y13_c00191{bottom:594.933333pt;}
.y12_c00191{bottom:612.533333pt;}
.y11_c00191{bottom:630.800000pt;}
.y10_c00191{bottom:648.400000pt;}
.yf_c00191{bottom:666.000000pt;}
.ye_c00191{bottom:683.866667pt;}
.yd_c00191{bottom:701.733333pt;}
.yc_c00191{bottom:719.333333pt;}
.yb_c00191{bottom:737.200000pt;}
.ya_c00191{bottom:755.066667pt;}
.y9_c00191{bottom:772.666667pt;}
.y8_c00191{bottom:790.533333pt;}
.y7_c00191{bottom:808.133333pt;}
.y6_c00191{bottom:825.733333pt;}
.y5_c00191{bottom:843.600000pt;}
.y4_c00191{bottom:860.933333pt;}
.y3_c00191{bottom:878.800000pt;}
.y2_c00191{bottom:896.666667pt;}
.y1_c00191{bottom:930.533333pt;}
.h2_c00191{height:48.000000pt;}
.h1_c00191{height:1038.000000pt;}
.h0_c00191{height:1038.079997pt;}
.w1_c00191{width:818.000000pt;}
.w0_c00191{width:818.239991pt;}
.x0_c00191{left:0.000000pt;}
.x3_c00191{left:92.133333pt;}
.x90_c00191{left:93.066667pt;}
.x42_c00191{left:107.866667pt;}
.xd6_c00191{left:109.066667pt;}
.x118_c00191{left:110.933333pt;}
.x5e_c00191{left:113.066667pt;}
.x50_c00191{left:117.466667pt;}
.x4_c00191{left:119.600000pt;}
.xd8_c00191{left:121.333333pt;}
.x105_c00191{left:123.200000pt;}
.x24_c00191{left:124.800000pt;}
.x16_c00191{left:127.866667pt;}
.x10b_c00191{left:129.466667pt;}
.x6a_c00191{left:130.400000pt;}
.xd7_c00191{left:131.733333pt;}
.xfa_c00191{left:136.133333pt;}
.x34_c00191{left:139.466667pt;}
.x89_c00191{left:141.333333pt;}
.x9c_c00191{left:143.200000pt;}
.x5_c00191{left:145.200000pt;}
.x73_c00191{left:146.533333pt;}
.x10c_c00191{left:148.400000pt;}
.xee_c00191{left:151.200000pt;}
.x25_c00191{left:152.666667pt;}
.x123_c00191{left:154.000000pt;}
.x43_c00191{left:155.466667pt;}
.xcd_c00191{left:156.933333pt;}
.x7d_c00191{left:157.866667pt;}
.x51_c00191{left:158.800000pt;}
.x17_c00191{left:161.733333pt;}
.xde_c00191{left:166.400000pt;}
.x106_c00191{left:168.933333pt;}
.x119_c00191{left:171.066667pt;}
.x116_c00191{left:172.933333pt;}
.x91_c00191{left:174.266667pt;}
.xa6_c00191{left:175.333333pt;}
.xbf_c00191{left:177.200000pt;}
.x35_c00191{left:178.533333pt;}
.x52_c00191{left:179.866667pt;}
.x18_c00191{left:180.933333pt;}
.xfb_c00191{left:182.000000pt;}
.x111_c00191{left:183.333333pt;}
.x74_c00191{left:184.666667pt;}
.x11c_c00191{left:185.600000pt;}
.xe9_c00191{left:186.800000pt;}
.x36_c00191{left:189.466667pt;}
.xa7_c00191{left:191.066667pt;}
.x5f_c00191{left:192.133333pt;}
.x9d_c00191{left:193.733333pt;}
.x92_c00191{left:196.400000pt;}
.xef_c00191{left:200.800000pt;}
.xe3_c00191{left:202.800000pt;}
.x75_c00191{left:205.200000pt;}
.xb8_c00191{left:206.133333pt;}
.x26_c00191{left:208.000000pt;}
.x6_c00191{left:210.800000pt;}
.xea_c00191{left:213.733333pt;}
.x44_c00191{left:215.333333pt;}
.x7e_c00191{left:216.400000pt;}
.xc7_c00191{left:218.133333pt;}
.xf4_c00191{left:220.133333pt;}
.xa8_c00191{left:221.466667pt;}
.x76_c00191{left:223.066667pt;}
.x53_c00191{left:224.666667pt;}
.x27_c00191{left:226.266667pt;}
.x7_c00191{left:228.400000pt;}
.x11d_c00191{left:229.333333pt;}
.xb9_c00191{left:232.000000pt;}
.x93_c00191{left:234.533333pt;}
.x19_c00191{left:236.933333pt;}
.xd9_c00191{left:241.733333pt;}
.x7f_c00191{left:242.933333pt;}
.x8_c00191{left:244.133333pt;}
.x112_c00191{left:245.466667pt;}
.x9e_c00191{left:246.533333pt;}
.xf0_c00191{left:248.533333pt;}
.x6b_c00191{left:250.666667pt;}
.x54_c00191{left:252.533333pt;}
.x94_c00191{left:253.466667pt;}
.x8a_c00191{left:256.533333pt;}
.xff_c00191{left:259.466667pt;}
.x11f_c00191{left:260.933333pt;}
.x28_c00191{left:262.400000pt;}
.x77_c00191{left:264.400000pt;}
.x37_c00191{left:265.333333pt;}
.xa9_c00191{left:266.533333pt;}
.xce_c00191{left:267.733333pt;}
.x9_c00191{left:269.466667pt;}
.x55_c00191{left:273.066667pt;}
.x1a_c00191{left:275.333333pt;}
.xc0_c00191{left:276.400000pt;}
.x126_c00191{left:279.333333pt;}
.x8b_c00191{left:280.266667pt;}
.x11a_c00191{left:281.333333pt;}
.x45_c00191{left:282.800000pt;}
.xaa_c00191{left:284.400000pt;}
.x80_c00191{left:285.866667pt;}
.x10d_c00191{left:287.200000pt;}
.x9f_c00191{left:289.733333pt;}
.x29_c00191{left:291.466667pt;}
.x100_c00191{left:292.400000pt;}
.x60_c00191{left:294.133333pt;}
.xc8_c00191{left:295.466667pt;}
.xf5_c00191{left:298.933333pt;}
.xcf_c00191{left:301.066667pt;}
.xe4_c00191{left:302.933333pt;}
.x107_c00191{left:303.866667pt;}
.xda_c00191{left:305.066667pt;}
.x1b_c00191{left:306.000000pt;}
.x56_c00191{left:308.266667pt;}
.xdf_c00191{left:310.000000pt;}
.x10e_c00191{left:312.133333pt;}
.x38_c00191{left:313.600000pt;}
.xeb_c00191{left:314.533333pt;}
.x78_c00191{left:315.600000pt;}
.xd0_c00191{left:317.733333pt;}
.xfc_c00191{left:320.133333pt;}
.xab_c00191{left:322.800000pt;}
.x46_c00191{left:324.400000pt;}
.x8c_c00191{left:326.400000pt;}
.x1c_c00191{left:329.066667pt;}
.x39_c00191{left:331.200000pt;}
.x81_c00191{left:332.933333pt;}
.xa_c00191{left:335.066667pt;}
.xb1_c00191{left:336.133333pt;}
.xdb_c00191{left:340.266667pt;}
.x6c_c00191{left:344.400000pt;}
.x108_c00191{left:345.466667pt;}
.xb_c00191{left:348.533333pt;}
.x95_c00191{left:350.666667pt;}
.x82_c00191{left:352.400000pt;}
.x2a_c00191{left:354.800000pt;}
.x61_c00191{left:356.266667pt;}
.x113_c00191{left:358.533333pt;}
.x1_c00191{left:360.933333pt;}
.xc1_c00191{left:363.066667pt;}
.x96_c00191{left:367.600000pt;}
.xba_c00191{left:371.866667pt;}
.x62_c00191{left:374.533333pt;}
.x1d_c00191{left:376.400000pt;}
.x97_c00191{left:378.533333pt;}
.x47_c00191{left:379.733333pt;}
.x6d_c00191{left:380.933333pt;}
.x2b_c00191{left:382.266667pt;}
.x57_c00191{left:383.466667pt;}
.xac_c00191{left:385.866667pt;}
.x79_c00191{left:387.866667pt;}
.xd1_c00191{left:389.066667pt;}
.x3a_c00191{left:391.333333pt;}
.xc_c00191{left:393.600000pt;}
.x83_c00191{left:395.333333pt;}
.xe0_c00191{left:397.733333pt;}
.xa0_c00191{left:399.466667pt;}
.xc9_c00191{left:401.066667pt;}
.x63_c00191{left:402.400000pt;}
.x48_c00191{left:404.666667pt;}
.xf1_c00191{left:406.000000pt;}
.x120_c00191{left:406.933333pt;}
.x1e_c00191{left:408.400000pt;}
.xbb_c00191{left:410.000000pt;}
.xd_c00191{left:411.200000pt;}
.x7a_c00191{left:412.800000pt;}
.x8d_c00191{left:414.133333pt;}
.x101_c00191{left:416.800000pt;}
.x11b_c00191{left:417.866667pt;}
.x2c_c00191{left:419.066667pt;}
.xb2_c00191{left:421.866667pt;}
.xca_c00191{left:422.800000pt;}
.xbc_c00191{left:428.266667pt;}
.xf6_c00191{left:430.533333pt;}
.xe_c00191{left:432.266667pt;}
.xe1_c00191{left:435.200000pt;}
.x102_c00191{left:437.866667pt;}
.x58_c00191{left:440.400000pt;}
.xb3_c00191{left:441.733333pt;}
.xec_c00191{left:445.066667pt;}
.x3b_c00191{left:446.000000pt;}
.x1f_c00191{left:449.066667pt;}
.x84_c00191{left:450.666667pt;}
.x98_c00191{left:453.066667pt;}
.xbd_c00191{left:454.800000pt;}
.x49_c00191{left:456.533333pt;}
.xa1_c00191{left:458.000000pt;}
.x7b_c00191{left:458.933333pt;}
.xf2_c00191{left:461.466667pt;}
.x2d_c00191{left:464.133333pt;}
.xd2_c00191{left:465.466667pt;}
.x8e_c00191{left:468.800000pt;}
.xe2_c00191{left:469.733333pt;}
.x10f_c00191{left:473.466667pt;}
.x85_c00191{left:476.266667pt;}
.xf7_c00191{left:477.866667pt;}
.xc2_c00191{left:479.200000pt;}
.x4a_c00191{left:481.200000pt;}
.x3c_c00191{left:482.133333pt;}
.x114_c00191{left:483.600000pt;}
.x8f_c00191{left:484.800000pt;}
.x2e_c00191{left:488.400000pt;}
.x64_c00191{left:493.600000pt;}
.x59_c00191{left:495.066667pt;}
.xc3_c00191{left:497.066667pt;}
.xa2_c00191{left:498.666667pt;}
.xf_c00191{left:500.133333pt;}
.x3d_c00191{left:501.066667pt;}
.x20_c00191{left:502.800000pt;}
.x121_c00191{left:504.133333pt;}
.xbe_c00191{left:505.333333pt;}
.xfd_c00191{left:506.266667pt;}
.xb4_c00191{left:507.333333pt;}
.x65_c00191{left:509.600000pt;}
.x10_c00191{left:513.200000pt;}
.x6e_c00191{left:515.733333pt;}
.x4b_c00191{left:517.733333pt;}
.x122_c00191{left:520.133333pt;}
.xdc_c00191{left:521.466667pt;}
.x109_c00191{left:522.400000pt;}
.x99_c00191{left:523.866667pt;}
.x3e_c00191{left:526.400000pt;}
.x21_c00191{left:527.733333pt;}
.xf3_c00191{left:528.933333pt;}
.x86_c00191{left:530.933333pt;}
.x124_c00191{left:532.133333pt;}
.x4c_c00191{left:533.733333pt;}
.x11_c00191{left:536.266667pt;}
.xb5_c00191{left:538.666667pt;}
.xc4_c00191{left:540.266667pt;}
.x2f_c00191{left:543.066667pt;}
.x115_c00191{left:544.133333pt;}
.xd3_c00191{left:545.466667pt;}
.xcb_c00191{left:547.600000pt;}
.x11e_c00191{left:549.866667pt;}
.x125_c00191{left:551.066667pt;}
.xad_c00191{left:552.400000pt;}
.x5a_c00191{left:554.000000pt;}
.x87_c00191{left:556.266667pt;}
.xa3_c00191{left:557.866667pt;}
.x12_c00191{left:558.933333pt;}
.x30_c00191{left:560.666667pt;}
.x66_c00191{left:561.733333pt;}
.x22_c00191{left:562.933333pt;}
.x6f_c00191{left:565.600000pt;}
.x9a_c00191{left:566.800000pt;}
.xed_c00191{left:567.866667pt;}
.xe5_c00191{left:570.133333pt;}
.x3f_c00191{left:573.066667pt;}
.xd4_c00191{left:575.866667pt;}
.x117_c00191{left:577.066667pt;}
.x5b_c00191{left:579.866667pt;}
.xc5_c00191{left:581.600000pt;}
.x70_c00191{left:583.466667pt;}
.x31_c00191{left:585.600000pt;}
.x4d_c00191{left:588.133333pt;}
.xfe_c00191{left:589.733333pt;}
.xa4_c00191{left:590.800000pt;}
.x13_c00191{left:594.133333pt;}
.x103_c00191{left:596.933333pt;}
.xae_c00191{left:598.800000pt;}
.x110_c00191{left:600.933333pt;}
.x4e_c00191{left:605.466667pt;}
.xf8_c00191{left:606.533333pt;}
.x23_c00191{left:608.666667pt;}
.x67_c00191{left:612.000000pt;}
.x71_c00191{left:613.866667pt;}
.x5c_c00191{left:614.800000pt;}
.xc6_c00191{left:617.066667pt;}
.x9b_c00191{left:619.600000pt;}
.x10a_c00191{left:620.666667pt;}
.x32_c00191{left:624.933333pt;}
.x14_c00191{left:626.133333pt;}
.x40_c00191{left:628.533333pt;}
.x72_c00191{left:630.133333pt;}
.xe6_c00191{left:631.333333pt;}
.xb6_c00191{left:632.400000pt;}
.x7c_c00191{left:634.666667pt;}
.xcc_c00191{left:639.733333pt;}
.xaf_c00191{left:640.666667pt;}
.x33_c00191{left:642.800000pt;}
.xd5_c00191{left:649.200000pt;}
.x104_c00191{left:651.600000pt;}
.x5d_c00191{left:652.533333pt;}
.x68_c00191{left:653.866667pt;}
.xe7_c00191{left:658.266667pt;}
.x41_c00191{left:659.600000pt;}
.x15_c00191{left:661.333333pt;}
.xb7_c00191{left:663.066667pt;}
.x2_c00191{left:664.666667pt;}
.xa5_c00191{left:666.933333pt;}
.xb0_c00191{left:669.466667pt;}
.xdd_c00191{left:670.400000pt;}
.x69_c00191{left:671.466667pt;}
.x4f_c00191{left:672.666667pt;}
.x88_c00191{left:676.000000pt;}
.xf9_c00191{left:682.133333pt;}
.xe8_c00191{left:685.200000pt;}
}





/* 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_c00192 {
    display:none;
  }
  .loading-indicator_c00192.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00192 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_c00192 { 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_c00192" -> "#page-container .classname_c00192")
 */
.pf_c00192 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00192 { /* 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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00192 { /* 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_c00192 { /* 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_c00192 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00192 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00192 {overflow:visible;}
  }
}
.c_c00192 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00192 { /* 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_c00192:after { /* webkit #35443 */
  content: '';
}
.t_c00192:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00192 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 */
}
.__c00192 { /* 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_c00192 { /* info for Javascript */
  display:none;
}
.l_c00192 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00192 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00192 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00192: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_c00192 {
    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_c00192.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00192.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_c00192 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00192{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00192;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.000000;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;}
.m8e_c00192{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m9_c00192{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m92_c00192{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m93_c00192{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00192{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m71_c00192{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m66_c00192{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.ma_c00192{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m72_c00192{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00192{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m91_c00192{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00192{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m85_c00192{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00192{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m95_c00192{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m80_c00192{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m94_c00192{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m96_c00192{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00192{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00192{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00192{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00192{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00192{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00192{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m50_c00192{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00192{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00192{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00192{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00192{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m65_c00192{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00192{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m78_c00192{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00192{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00192{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m82_c00192{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00192{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf_c00192{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00192{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00192{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m61_c00192{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00192{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb_c00192{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00192{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m77_c00192{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m74_c00192{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7_c00192{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m31_c00192{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10_c00192{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m55_c00192{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m47_c00192{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5_c00192{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00192{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m18_c00192{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m40_c00192{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m73_c00192{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m63_c00192{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00192{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00192{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00192{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m60_c00192{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00192{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m75_c00192{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00192{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00192{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00192{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m70_c00192{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00192{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00192{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m83_c00192{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00192{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m79_c00192{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m20_c00192{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00192{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00192{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m36_c00192{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m67_c00192{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m59_c00192{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m51_c00192{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m76_c00192{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m34_c00192{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m25_c00192{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m24_c00192{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m68_c00192{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00192{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{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__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00192{word-spacing:0.000000px;}
.ws8_c00192{word-spacing:1.375000px;}
.ws6_c00192{word-spacing:1.500000px;}
.ws7_c00192{word-spacing:1.690187px;}
.ws0_c00192{word-spacing:2.875000px;}
.ws5_c00192{word-spacing:7.847235px;}
.ws2_c00192{word-spacing:12.000000px;}
.ws1_c00192{word-spacing:17.333333px;}
.ws4_c00192{word-spacing:19.000000px;}
.ws3_c00192{word-spacing:21.164502px;}
.fc0_c00192{color:transparent;}
.fs0_c00192{font-size:54.000000px;}
.y0_c00192{bottom:0.000000px;}
.y1e_c00192{bottom:415.500000px;}
.y1d_c00192{bottom:430.950000px;}
.y1c_c00192{bottom:452.100000px;}
.y1b_c00192{bottom:462.300000px;}
.y1a_c00192{bottom:493.650000px;}
.y19_c00192{bottom:513.750000px;}
.y18_c00192{bottom:533.250000px;}
.y17_c00192{bottom:553.050000px;}
.y16_c00192{bottom:573.150000px;}
.y15_c00192{bottom:592.950000px;}
.y14_c00192{bottom:612.750000px;}
.y13_c00192{bottom:633.300000px;}
.y12_c00192{bottom:653.400000px;}
.y11_c00192{bottom:673.200000px;}
.y10_c00192{bottom:693.000000px;}
.yf_c00192{bottom:713.100000px;}
.ye_c00192{bottom:732.900000px;}
.yd_c00192{bottom:772.950000px;}
.yc_c00192{bottom:793.050000px;}
.yb_c00192{bottom:833.400000px;}
.ya_c00192{bottom:853.200000px;}
.y9_c00192{bottom:873.000000px;}
.y8_c00192{bottom:892.800000px;}
.y7_c00192{bottom:912.900000px;}
.y6_c00192{bottom:932.700000px;}
.y5_c00192{bottom:952.500000px;}
.y4_c00192{bottom:972.600000px;}
.y3_c00192{bottom:993.150000px;}
.y2_c00192{bottom:1012.650000px;}
.y1_c00192{bottom:1051.500000px;}
.h2_c00192{height:54.000000px;}
.h1_c00192{height:1167.750000px;}
.h0_c00192{height:1167.839997px;}
.w1_c00192{width:920.250000px;}
.w0_c00192{width:920.519990px;}
.x0_c00192{left:0.000000px;}
.xaf_c00192{left:141.750000px;}
.x96_c00192{left:142.800000px;}
.x56_c00192{left:144.300000px;}
.x3_c00192{left:146.100000px;}
.x1_c00192{left:148.350000px;}
.xa0_c00192{left:160.050000px;}
.xec_c00192{left:161.250000px;}
.x22_c00192{left:165.000000px;}
.xdc_c00192{left:166.500000px;}
.x69_c00192{left:170.700000px;}
.xed_c00192{left:172.350000px;}
.xfe_c00192{left:173.550000px;}
.x60_c00192{left:175.050000px;}
.x23_c00192{left:177.300000px;}
.x4_c00192{left:185.400000px;}
.xcf_c00192{left:187.350000px;}
.xf4_c00192{left:189.000000px;}
.xbf_c00192{left:191.850000px;}
.x77_c00192{left:193.500000px;}
.x97_c00192{left:195.300000px;}
.x6a_c00192{left:198.000000px;}
.xb0_c00192{left:199.050000px;}
.x14_c00192{left:200.850000px;}
.x5_c00192{left:201.900000px;}
.xdd_c00192{left:204.000000px;}
.x7e_c00192{left:205.650000px;}
.x2f_c00192{left:215.100000px;}
.xc0_c00192{left:217.350000px;}
.x6_c00192{left:222.450000px;}
.xff_c00192{left:223.650000px;}
.xea_c00192{left:226.500000px;}
.xa1_c00192{left:227.700000px;}
.x8d_c00192{left:229.200000px;}
.x6b_c00192{left:230.700000px;}
.x15_c00192{left:232.200000px;}
.x3c_c00192{left:234.900000px;}
.xd4_c00192{left:237.600000px;}
.x61_c00192{left:246.300000px;}
.xaa_c00192{left:252.150000px;}
.x6c_c00192{left:253.350000px;}
.x7f_c00192{left:256.350000px;}
.xc8_c00192{left:257.700000px;}
.xd0_c00192{left:258.900000px;}
.x8e_c00192{left:261.300000px;}
.xee_c00192{left:263.400000px;}
.x3d_c00192{left:270.900000px;}
.x78_c00192{left:271.950000px;}
.x98_c00192{left:273.000000px;}
.x16_c00192{left:276.450000px;}
.x49_c00192{left:278.550000px;}
.x7_c00192{left:280.350000px;}
.xa2_c00192{left:283.800000px;}
.xc1_c00192{left:286.050000px;}
.xba_c00192{left:288.900000px;}
.xf5_c00192{left:292.650000px;}
.x17_c00192{left:297.000000px;}
.xe3_c00192{left:298.500000px;}
.x80_c00192{left:300.300000px;}
.x62_c00192{left:301.350000px;}
.x30_c00192{left:303.300000px;}
.x57_c00192{left:305.250000px;}
.x3e_c00192{left:309.750000px;}
.xd5_c00192{left:311.100000px;}
.x99_c00192{left:313.650000px;}
.x100_c00192{left:314.700000px;}
.x4a_c00192{left:318.900000px;}
.xc9_c00192{left:324.300000px;}
.xf6_c00192{left:325.800000px;}
.x6d_c00192{left:328.650000px;}
.x8f_c00192{left:331.500000px;}
.x8_c00192{left:332.550000px;}
.xb1_c00192{left:334.200000px;}
.x31_c00192{left:336.450000px;}
.x81_c00192{left:338.400000px;}
.x24_c00192{left:341.850000px;}
.x9a_c00192{left:345.000000px;}
.x9_c00192{left:347.250000px;}
.xde_c00192{left:348.450000px;}
.x90_c00192{left:350.250000px;}
.x6e_c00192{left:351.750000px;}
.x18_c00192{left:353.550000px;}
.x86_c00192{left:356.850000px;}
.x25_c00192{left:358.800000px;}
.xb2_c00192{left:362.700000px;}
.x3f_c00192{left:364.500000px;}
.xef_c00192{left:367.050000px;}
.xeb_c00192{left:370.500000px;}
.x19_c00192{left:371.850000px;}
.xe4_c00192{left:374.400000px;}
.x82_c00192{left:379.050000px;}
.x32_c00192{left:380.700000px;}
.x6f_c00192{left:382.650000px;}
.x4b_c00192{left:384.450000px;}
.xca_c00192{left:385.800000px;}
.x79_c00192{left:386.850000px;}
.x58_c00192{left:389.550000px;}
.xc2_c00192{left:395.550000px;}
.xa3_c00192{left:397.950000px;}
.xbb_c00192{left:399.450000px;}
.xb3_c00192{left:403.350000px;}
.x87_c00192{left:405.750000px;}
.x59_c00192{left:409.350000px;}
.x9b_c00192{left:411.300000px;}
.x26_c00192{left:413.100000px;}
.xe5_c00192{left:420.450000px;}
.xb4_c00192{left:423.150000px;}
.x33_c00192{left:424.200000px;}
.x70_c00192{left:425.550000px;}
.x101_c00192{left:427.800000px;}
.x63_c00192{left:430.050000px;}
.x27_c00192{left:431.100000px;}
.x91_c00192{left:432.750000px;}
.x40_c00192{left:435.000000px;}
.x5a_c00192{left:437.100000px;}
.xcb_c00192{left:438.750000px;}
.x1a_c00192{left:440.250000px;}
.xd1_c00192{left:441.300000px;}
.xa_c00192{left:443.400000px;}
.x2_c00192{left:446.850000px;}
.x7a_c00192{left:448.050000px;}
.x92_c00192{left:452.550000px;}
.x41_c00192{left:454.500000px;}
.xb_c00192{left:456.000000px;}
.x1b_c00192{left:460.050000px;}
.x34_c00192{left:461.700000px;}
.xe6_c00192{left:463.950000px;}
.x4c_c00192{left:466.500000px;}
.x7b_c00192{left:471.750000px;}
.xd6_c00192{left:474.750000px;}
.x9c_c00192{left:476.400000px;}
.x64_c00192{left:477.600000px;}
.x28_c00192{left:479.400000px;}
.x42_c00192{left:483.300000px;}
.xf7_c00192{left:484.800000px;}
.xa4_c00192{left:487.200000px;}
.x1c_c00192{left:488.850000px;}
.xcc_c00192{left:489.900000px;}
.xc_c00192{left:491.400000px;}
.x4d_c00192{left:492.750000px;}
.xc3_c00192{left:495.600000px;}
.x65_c00192{left:498.450000px;}
.x7c_c00192{left:499.800000px;}
.x35_c00192{left:501.300000px;}
.x88_c00192{left:502.950000px;}
.x102_c00192{left:504.450000px;}
.x5b_c00192{left:505.500000px;}
.xf0_c00192{left:509.850000px;}
.xfd_c00192{left:511.500000px;}
.xb5_c00192{left:513.150000px;}
.x93_c00192{left:517.650000px;}
.x43_c00192{left:519.600000px;}
.x29_c00192{left:523.350000px;}
.x4e_c00192{left:524.850000px;}
.x71_c00192{left:526.350000px;}
.xa5_c00192{left:528.600000px;}
.xab_c00192{left:532.350000px;}
.xe7_c00192{left:535.200000px;}
.xd7_c00192{left:538.500000px;}
.x7d_c00192{left:541.200000px;}
.xd2_c00192{left:542.400000px;}
.x9d_c00192{left:545.100000px;}
.xbc_c00192{left:546.450000px;}
.x72_c00192{left:547.950000px;}
.xd_c00192{left:551.550000px;}
.xe8_c00192{left:553.500000px;}
.xcd_c00192{left:556.200000px;}
.x89_c00192{left:558.750000px;}
.x36_c00192{left:560.400000px;}
.x4f_c00192{left:563.700000px;}
.xdf_c00192{left:565.950000px;}
.xe_c00192{left:569.850000px;}
.xd8_c00192{left:571.650000px;}
.x73_c00192{left:578.550000px;}
.x5c_c00192{left:581.850000px;}
.x44_c00192{left:584.400000px;}
.x1d_c00192{left:586.050000px;}
.xb6_c00192{left:587.700000px;}
.x37_c00192{left:588.900000px;}
.x66_c00192{left:589.950000px;}
.x50_c00192{left:596.100000px;}
.xf_c00192{left:597.150000px;}
.x8a_c00192{left:598.350000px;}
.xc4_c00192{left:599.550000px;}
.x2a_c00192{left:609.000000px;}
.xf8_c00192{left:610.800000px;}
.xa6_c00192{left:612.150000px;}
.x51_c00192{left:614.400000px;}
.x9e_c00192{left:617.850000px;}
.xc5_c00192{left:619.350000px;}
.x1e_c00192{left:623.850000px;}
.x38_c00192{left:625.950000px;}
.x67_c00192{left:630.300000px;}
.xe0_c00192{left:631.500000px;}
.x10_c00192{left:633.900000px;}
.x2b_c00192{left:638.100000px;}
.x52_c00192{left:639.600000px;}
.x8b_c00192{left:641.250000px;}
.xf9_c00192{left:642.900000px;}
.xa7_c00192{left:646.050000px;}
.xce_c00192{left:647.700000px;}
.xb7_c00192{left:650.400000px;}
.xbd_c00192{left:651.600000px;}
.x45_c00192{left:655.650000px;}
.x74_c00192{left:657.750000px;}
.xe1_c00192{left:659.250000px;}
.xd9_c00192{left:661.950000px;}
.x103_c00192{left:663.900000px;}
.xf1_c00192{left:665.700000px;}
.x94_c00192{left:666.900000px;}
.x53_c00192{left:668.100000px;}
.x1f_c00192{left:672.150000px;}
.x9f_c00192{left:673.350000px;}
.x46_c00192{left:675.750000px;}
.xfa_c00192{left:680.250000px;}
.x83_c00192{left:681.750000px;}
.xf2_c00192{left:682.950000px;}
.xb8_c00192{left:685.650000px;}
.x75_c00192{left:686.850000px;}
.xfb_c00192{left:689.250000px;}
.x11_c00192{left:691.500000px;}
.x39_c00192{left:692.850000px;}
.x47_c00192{left:696.600000px;}
.x8c_c00192{left:699.600000px;}
.x5d_c00192{left:700.650000px;}
.x54_c00192{left:702.300000px;}
.x2c_c00192{left:705.750000px;}
.xc6_c00192{left:708.150000px;}
.x84_c00192{left:709.800000px;}
.x95_c00192{left:712.650000px;}
.x104_c00192{left:714.000000px;}
.xd3_c00192{left:715.650000px;}
.xf3_c00192{left:717.450000px;}
.xbe_c00192{left:722.100000px;}
.x3a_c00192{left:724.200000px;}
.x20_c00192{left:726.450000px;}
.x68_c00192{left:730.800000px;}
.x12_c00192{left:732.900000px;}
.xac_c00192{left:733.950000px;}
.x76_c00192{left:740.850000px;}
.xb9_c00192{left:742.200000px;}
.x48_c00192{left:745.500000px;}
.xda_c00192{left:747.300000px;}
.x2d_c00192{left:750.750000px;}
.xa8_c00192{left:753.300000px;}
.xe9_c00192{left:756.450000px;}
.x13_c00192{left:760.200000px;}
.x21_c00192{left:763.200000px;}
.xad_c00192{left:765.300000px;}
.x5e_c00192{left:769.050000px;}
.x3b_c00192{left:772.800000px;}
.xa9_c00192{left:773.850000px;}
.xfc_c00192{left:774.900000px;}
.xc7_c00192{left:777.300000px;}
.x2e_c00192{left:779.250000px;}
.x55_c00192{left:783.000000px;}
.xe2_c00192{left:785.700000px;}
.x5f_c00192{left:792.450000px;}
.xae_c00192{left:795.150000px;}
.xdb_c00192{left:796.200000px;}
.x85_c00192{left:799.350000px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ws9_c00192{word-spacing:0.000000pt;}
.ws8_c00192{word-spacing:1.222222pt;}
.ws6_c00192{word-spacing:1.333333pt;}
.ws7_c00192{word-spacing:1.502389pt;}
.ws0_c00192{word-spacing:2.555556pt;}
.ws5_c00192{word-spacing:6.975320pt;}
.ws2_c00192{word-spacing:10.666667pt;}
.ws1_c00192{word-spacing:15.407407pt;}
.ws4_c00192{word-spacing:16.888889pt;}
.ws3_c00192{word-spacing:18.812891pt;}
.fs0_c00192{font-size:48.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y1e_c00192{bottom:369.333333pt;}
.y1d_c00192{bottom:383.066667pt;}
.y1c_c00192{bottom:401.866667pt;}
.y1b_c00192{bottom:410.933333pt;}
.y1a_c00192{bottom:438.800000pt;}
.y19_c00192{bottom:456.666667pt;}
.y18_c00192{bottom:474.000000pt;}
.y17_c00192{bottom:491.600000pt;}
.y16_c00192{bottom:509.466667pt;}
.y15_c00192{bottom:527.066667pt;}
.y14_c00192{bottom:544.666667pt;}
.y13_c00192{bottom:562.933333pt;}
.y12_c00192{bottom:580.800000pt;}
.y11_c00192{bottom:598.400000pt;}
.y10_c00192{bottom:616.000000pt;}
.yf_c00192{bottom:633.866667pt;}
.ye_c00192{bottom:651.466667pt;}
.yd_c00192{bottom:687.066667pt;}
.yc_c00192{bottom:704.933333pt;}
.yb_c00192{bottom:740.800000pt;}
.ya_c00192{bottom:758.400000pt;}
.y9_c00192{bottom:776.000000pt;}
.y8_c00192{bottom:793.600000pt;}
.y7_c00192{bottom:811.466667pt;}
.y6_c00192{bottom:829.066667pt;}
.y5_c00192{bottom:846.666667pt;}
.y4_c00192{bottom:864.533333pt;}
.y3_c00192{bottom:882.800000pt;}
.y2_c00192{bottom:900.133333pt;}
.y1_c00192{bottom:934.666667pt;}
.h2_c00192{height:48.000000pt;}
.h1_c00192{height:1038.000000pt;}
.h0_c00192{height:1038.079997pt;}
.w1_c00192{width:818.000000pt;}
.w0_c00192{width:818.239991pt;}
.x0_c00192{left:0.000000pt;}
.xaf_c00192{left:126.000000pt;}
.x96_c00192{left:126.933333pt;}
.x56_c00192{left:128.266667pt;}
.x3_c00192{left:129.866667pt;}
.x1_c00192{left:131.866667pt;}
.xa0_c00192{left:142.266667pt;}
.xec_c00192{left:143.333333pt;}
.x22_c00192{left:146.666667pt;}
.xdc_c00192{left:148.000000pt;}
.x69_c00192{left:151.733333pt;}
.xed_c00192{left:153.200000pt;}
.xfe_c00192{left:154.266667pt;}
.x60_c00192{left:155.600000pt;}
.x23_c00192{left:157.600000pt;}
.x4_c00192{left:164.800000pt;}
.xcf_c00192{left:166.533333pt;}
.xf4_c00192{left:168.000000pt;}
.xbf_c00192{left:170.533333pt;}
.x77_c00192{left:172.000000pt;}
.x97_c00192{left:173.600000pt;}
.x6a_c00192{left:176.000000pt;}
.xb0_c00192{left:176.933333pt;}
.x14_c00192{left:178.533333pt;}
.x5_c00192{left:179.466667pt;}
.xdd_c00192{left:181.333333pt;}
.x7e_c00192{left:182.800000pt;}
.x2f_c00192{left:191.200000pt;}
.xc0_c00192{left:193.200000pt;}
.x6_c00192{left:197.733333pt;}
.xff_c00192{left:198.800000pt;}
.xea_c00192{left:201.333333pt;}
.xa1_c00192{left:202.400000pt;}
.x8d_c00192{left:203.733333pt;}
.x6b_c00192{left:205.066667pt;}
.x15_c00192{left:206.400000pt;}
.x3c_c00192{left:208.800000pt;}
.xd4_c00192{left:211.200000pt;}
.x61_c00192{left:218.933333pt;}
.xaa_c00192{left:224.133333pt;}
.x6c_c00192{left:225.200000pt;}
.x7f_c00192{left:227.866667pt;}
.xc8_c00192{left:229.066667pt;}
.xd0_c00192{left:230.133333pt;}
.x8e_c00192{left:232.266667pt;}
.xee_c00192{left:234.133333pt;}
.x3d_c00192{left:240.800000pt;}
.x78_c00192{left:241.733333pt;}
.x98_c00192{left:242.666667pt;}
.x16_c00192{left:245.733333pt;}
.x49_c00192{left:247.600000pt;}
.x7_c00192{left:249.200000pt;}
.xa2_c00192{left:252.266667pt;}
.xc1_c00192{left:254.266667pt;}
.xba_c00192{left:256.800000pt;}
.xf5_c00192{left:260.133333pt;}
.x17_c00192{left:264.000000pt;}
.xe3_c00192{left:265.333333pt;}
.x80_c00192{left:266.933333pt;}
.x62_c00192{left:267.866667pt;}
.x30_c00192{left:269.600000pt;}
.x57_c00192{left:271.333333pt;}
.x3e_c00192{left:275.333333pt;}
.xd5_c00192{left:276.533333pt;}
.x99_c00192{left:278.800000pt;}
.x100_c00192{left:279.733333pt;}
.x4a_c00192{left:283.466667pt;}
.xc9_c00192{left:288.266667pt;}
.xf6_c00192{left:289.600000pt;}
.x6d_c00192{left:292.133333pt;}
.x8f_c00192{left:294.666667pt;}
.x8_c00192{left:295.600000pt;}
.xb1_c00192{left:297.066667pt;}
.x31_c00192{left:299.066667pt;}
.x81_c00192{left:300.800000pt;}
.x24_c00192{left:303.866667pt;}
.x9a_c00192{left:306.666667pt;}
.x9_c00192{left:308.666667pt;}
.xde_c00192{left:309.733333pt;}
.x90_c00192{left:311.333333pt;}
.x6e_c00192{left:312.666667pt;}
.x18_c00192{left:314.266667pt;}
.x86_c00192{left:317.200000pt;}
.x25_c00192{left:318.933333pt;}
.xb2_c00192{left:322.400000pt;}
.x3f_c00192{left:324.000000pt;}
.xef_c00192{left:326.266667pt;}
.xeb_c00192{left:329.333333pt;}
.x19_c00192{left:330.533333pt;}
.xe4_c00192{left:332.800000pt;}
.x82_c00192{left:336.933333pt;}
.x32_c00192{left:338.400000pt;}
.x6f_c00192{left:340.133333pt;}
.x4b_c00192{left:341.733333pt;}
.xca_c00192{left:342.933333pt;}
.x79_c00192{left:343.866667pt;}
.x58_c00192{left:346.266667pt;}
.xc2_c00192{left:351.600000pt;}
.xa3_c00192{left:353.733333pt;}
.xbb_c00192{left:355.066667pt;}
.xb3_c00192{left:358.533333pt;}
.x87_c00192{left:360.666667pt;}
.x59_c00192{left:363.866667pt;}
.x9b_c00192{left:365.600000pt;}
.x26_c00192{left:367.200000pt;}
.xe5_c00192{left:373.733333pt;}
.xb4_c00192{left:376.133333pt;}
.x33_c00192{left:377.066667pt;}
.x70_c00192{left:378.266667pt;}
.x101_c00192{left:380.266667pt;}
.x63_c00192{left:382.266667pt;}
.x27_c00192{left:383.200000pt;}
.x91_c00192{left:384.666667pt;}
.x40_c00192{left:386.666667pt;}
.x5a_c00192{left:388.533333pt;}
.xcb_c00192{left:390.000000pt;}
.x1a_c00192{left:391.333333pt;}
.xd1_c00192{left:392.266667pt;}
.xa_c00192{left:394.133333pt;}
.x2_c00192{left:397.200000pt;}
.x7a_c00192{left:398.266667pt;}
.x92_c00192{left:402.266667pt;}
.x41_c00192{left:404.000000pt;}
.xb_c00192{left:405.333333pt;}
.x1b_c00192{left:408.933333pt;}
.x34_c00192{left:410.400000pt;}
.xe6_c00192{left:412.400000pt;}
.x4c_c00192{left:414.666667pt;}
.x7b_c00192{left:419.333333pt;}
.xd6_c00192{left:422.000000pt;}
.x9c_c00192{left:423.466667pt;}
.x64_c00192{left:424.533333pt;}
.x28_c00192{left:426.133333pt;}
.x42_c00192{left:429.600000pt;}
.xf7_c00192{left:430.933333pt;}
.xa4_c00192{left:433.066667pt;}
.x1c_c00192{left:434.533333pt;}
.xcc_c00192{left:435.466667pt;}
.xc_c00192{left:436.800000pt;}
.x4d_c00192{left:438.000000pt;}
.xc3_c00192{left:440.533333pt;}
.x65_c00192{left:443.066667pt;}
.x7c_c00192{left:444.266667pt;}
.x35_c00192{left:445.600000pt;}
.x88_c00192{left:447.066667pt;}
.x102_c00192{left:448.400000pt;}
.x5b_c00192{left:449.333333pt;}
.xf0_c00192{left:453.200000pt;}
.xfd_c00192{left:454.666667pt;}
.xb5_c00192{left:456.133333pt;}
.x93_c00192{left:460.133333pt;}
.x43_c00192{left:461.866667pt;}
.x29_c00192{left:465.200000pt;}
.x4e_c00192{left:466.533333pt;}
.x71_c00192{left:467.866667pt;}
.xa5_c00192{left:469.866667pt;}
.xab_c00192{left:473.200000pt;}
.xe7_c00192{left:475.733333pt;}
.xd7_c00192{left:478.666667pt;}
.x7d_c00192{left:481.066667pt;}
.xd2_c00192{left:482.133333pt;}
.x9d_c00192{left:484.533333pt;}
.xbc_c00192{left:485.733333pt;}
.x72_c00192{left:487.066667pt;}
.xd_c00192{left:490.266667pt;}
.xe8_c00192{left:492.000000pt;}
.xcd_c00192{left:494.400000pt;}
.x89_c00192{left:496.666667pt;}
.x36_c00192{left:498.133333pt;}
.x4f_c00192{left:501.066667pt;}
.xdf_c00192{left:503.066667pt;}
.xe_c00192{left:506.533333pt;}
.xd8_c00192{left:508.133333pt;}
.x73_c00192{left:514.266667pt;}
.x5c_c00192{left:517.200000pt;}
.x44_c00192{left:519.466667pt;}
.x1d_c00192{left:520.933333pt;}
.xb6_c00192{left:522.400000pt;}
.x37_c00192{left:523.466667pt;}
.x66_c00192{left:524.400000pt;}
.x50_c00192{left:529.866667pt;}
.xf_c00192{left:530.800000pt;}
.x8a_c00192{left:531.866667pt;}
.xc4_c00192{left:532.933333pt;}
.x2a_c00192{left:541.333333pt;}
.xf8_c00192{left:542.933333pt;}
.xa6_c00192{left:544.133333pt;}
.x51_c00192{left:546.133333pt;}
.x9e_c00192{left:549.200000pt;}
.xc5_c00192{left:550.533333pt;}
.x1e_c00192{left:554.533333pt;}
.x38_c00192{left:556.400000pt;}
.x67_c00192{left:560.266667pt;}
.xe0_c00192{left:561.333333pt;}
.x10_c00192{left:563.466667pt;}
.x2b_c00192{left:567.200000pt;}
.x52_c00192{left:568.533333pt;}
.x8b_c00192{left:570.000000pt;}
.xf9_c00192{left:571.466667pt;}
.xa7_c00192{left:574.266667pt;}
.xce_c00192{left:575.733333pt;}
.xb7_c00192{left:578.133333pt;}
.xbd_c00192{left:579.200000pt;}
.x45_c00192{left:582.800000pt;}
.x74_c00192{left:584.666667pt;}
.xe1_c00192{left:586.000000pt;}
.xd9_c00192{left:588.400000pt;}
.x103_c00192{left:590.133333pt;}
.xf1_c00192{left:591.733333pt;}
.x94_c00192{left:592.800000pt;}
.x53_c00192{left:593.866667pt;}
.x1f_c00192{left:597.466667pt;}
.x9f_c00192{left:598.533333pt;}
.x46_c00192{left:600.666667pt;}
.xfa_c00192{left:604.666667pt;}
.x83_c00192{left:606.000000pt;}
.xf2_c00192{left:607.066667pt;}
.xb8_c00192{left:609.466667pt;}
.x75_c00192{left:610.533333pt;}
.xfb_c00192{left:612.666667pt;}
.x11_c00192{left:614.666667pt;}
.x39_c00192{left:615.866667pt;}
.x47_c00192{left:619.200000pt;}
.x8c_c00192{left:621.866667pt;}
.x5d_c00192{left:622.800000pt;}
.x54_c00192{left:624.266667pt;}
.x2c_c00192{left:627.333333pt;}
.xc6_c00192{left:629.466667pt;}
.x84_c00192{left:630.933333pt;}
.x95_c00192{left:633.466667pt;}
.x104_c00192{left:634.666667pt;}
.xd3_c00192{left:636.133333pt;}
.xf3_c00192{left:637.733333pt;}
.xbe_c00192{left:641.866667pt;}
.x3a_c00192{left:643.733333pt;}
.x20_c00192{left:645.733333pt;}
.x68_c00192{left:649.600000pt;}
.x12_c00192{left:651.466667pt;}
.xac_c00192{left:652.400000pt;}
.x76_c00192{left:658.533333pt;}
.xb9_c00192{left:659.733333pt;}
.x48_c00192{left:662.666667pt;}
.xda_c00192{left:664.266667pt;}
.x2d_c00192{left:667.333333pt;}
.xa8_c00192{left:669.600000pt;}
.xe9_c00192{left:672.400000pt;}
.x13_c00192{left:675.733333pt;}
.x21_c00192{left:678.400000pt;}
.xad_c00192{left:680.266667pt;}
.x5e_c00192{left:683.600000pt;}
.x3b_c00192{left:686.933333pt;}
.xa9_c00192{left:687.866667pt;}
.xfc_c00192{left:688.800000pt;}
.xc7_c00192{left:690.933333pt;}
.x2e_c00192{left:692.666667pt;}
.x55_c00192{left:696.000000pt;}
.xe2_c00192{left:698.400000pt;}
.x5f_c00192{left:704.400000pt;}
.xae_c00192{left:706.800000pt;}
.xdb_c00192{left:707.733333pt;}
.x85_c00192{left:710.533333pt;}
}





/* 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_c00193 {
    display:none;
  }
  .loading-indicator_c00193.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00193 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_c00193 { 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_c00193" -> "#page-container .classname_c00193")
 */
.pf_c00193 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00193 { /* 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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00193 { /* 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_c00193 { /* 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_c00193 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00193 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00193 {overflow:visible;}
  }
}
.c_c00193 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00193 { /* 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_c00193:after { /* webkit #35443 */
  content: '';
}
.t_c00193:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00193 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 */
}
.__c00193 { /* 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_c00193 { /* info for Javascript */
  display:none;
}
.l_c00193 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00193 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00193 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00193: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_c00193 {
    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_c00193.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00193.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_c00193 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00193{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00193;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.000000;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;}
.m3c_c00193{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m10_c00193{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4_c00193{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc_c00193{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00193{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m14_c00193{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md_c00193{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00193{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00193{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m31_c00193{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00193{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00193{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00193{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00193{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma_c00193{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m48_c00193{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m37_c00193{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m11_c00193{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m47_c00193{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1_c00193{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m5_c00193{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls0_c00193{letter-spacing:0.000000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{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__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00193{word-spacing:0.000000px;}
.ws0_c00193{word-spacing:0.703125px;}
.fc0_c00193{color:transparent;}
.fs0_c00193{font-size:60.000000px;}
.y0_c00193{bottom:0.000000px;}
.ye_c00193{bottom:592.050000px;}
.yd_c00193{bottom:612.150000px;}
.yc_c00193{bottom:631.950000px;}
.yb_c00193{bottom:651.750000px;}
.ya_c00193{bottom:671.850000px;}
.y9_c00193{bottom:690.900000px;}
.y8_c00193{bottom:711.000000px;}
.y7_c00193{bottom:730.800000px;}
.y6_c00193{bottom:750.600000px;}
.y5_c00193{bottom:770.850000px;}
.y4_c00193{bottom:790.950000px;}
.y3_c00193{bottom:824.400000px;}
.y2_c00193{bottom:857.100000px;}
.y1_c00193{bottom:1043.700000px;}
.h2_c00193{height:60.000000px;}
.h1_c00193{height:1167.750000px;}
.h0_c00193{height:1167.839997px;}
.w1_c00193{width:920.250000px;}
.w0_c00193{width:920.519990px;}
.x0_c00193{left:0.000000px;}
.x8_c00193{left:110.550000px;}
.x49_c00193{left:111.600000px;}
.x18_c00193{left:130.200000px;}
.x1c_c00193{left:142.500000px;}
.x38_c00193{left:147.300000px;}
.x6d_c00193{left:149.400000px;}
.x9_c00193{left:153.000000px;}
.x55_c00193{left:154.800000px;}
.x2d_c00193{left:156.000000px;}
.x19_c00193{left:158.700000px;}
.x62_c00193{left:162.300000px;}
.x4a_c00193{left:169.200000px;}
.xa_c00193{left:174.900000px;}
.x1d_c00193{left:180.300000px;}
.x79_c00193{left:183.300000px;}
.x39_c00193{left:184.800000px;}
.x4b_c00193{left:189.000000px;}
.xb_c00193{left:192.600000px;}
.x2e_c00193{left:194.100000px;}
.x63_c00193{left:198.000000px;}
.x56_c00193{left:199.800000px;}
.x3f_c00193{left:213.600000px;}
.x1e_c00193{left:217.800000px;}
.x1a_c00193{left:220.500000px;}
.x2f_c00193{left:223.650000px;}
.xc_c00193{left:237.300000px;}
.x1f_c00193{left:243.300000px;}
.x6e_c00193{left:244.500000px;}
.x1b_c00193{left:248.550000px;}
.x57_c00193{left:255.600000px;}
.x6f_c00193{left:264.300000px;}
.x58_c00193{left:273.600000px;}
.x3a_c00193{left:276.900000px;}
.x20_c00193{left:280.050000px;}
.xd_c00193{left:283.050000px;}
.x59_c00193{left:291.900000px;}
.x70_c00193{left:293.100000px;}
.x64_c00193{left:302.400000px;}
.xe_c00193{left:304.350000px;}
.x40_c00193{left:307.200000px;}
.x21_c00193{left:309.900000px;}
.x7a_c00193{left:313.650000px;}
.x4_c00193{left:319.350000px;}
.x30_c00193{left:339.150000px;}
.x65_c00193{left:341.700000px;}
.x7b_c00193{left:345.000000px;}
.xf_c00193{left:357.600000px;}
.x3b_c00193{left:358.950000px;}
.x41_c00193{left:366.300000px;}
.x71_c00193{left:372.000000px;}
.x22_c00193{left:380.100000px;}
.x7c_c00193{left:383.100000px;}
.x2_c00193{left:386.250000px;}
.x4c_c00193{left:387.300000px;}
.x5_c00193{left:393.150000px;}
.x3c_c00193{left:394.950000px;}
.x66_c00193{left:398.250000px;}
.x4d_c00193{left:406.800000px;}
.x31_c00193{left:408.600000px;}
.x23_c00193{left:417.150000px;}
.x10_c00193{left:420.900000px;}
.x32_c00193{left:426.300000px;}
.x1_c00193{left:433.500000px;}
.x4e_c00193{left:435.300000px;}
.x7d_c00193{left:445.350000px;}
.x5a_c00193{left:447.150000px;}
.x6_c00193{left:451.500000px;}
.x67_c00193{left:452.550000px;}
.x24_c00193{left:461.100000px;}
.x72_c00193{left:465.300000px;}
.x42_c00193{left:466.500000px;}
.x7_c00193{left:468.750000px;}
.x3d_c00193{left:471.600000px;}
.x3_c00193{left:474.150000px;}
.x25_c00193{left:481.950000px;}
.x43_c00193{left:484.500000px;}
.x73_c00193{left:493.350000px;}
.x11_c00193{left:495.000000px;}
.x68_c00193{left:503.250000px;}
.x26_c00193{left:510.000000px;}
.x44_c00193{left:513.000000px;}
.x12_c00193{left:521.250000px;}
.x5b_c00193{left:531.450000px;}
.x74_c00193{left:532.950000px;}
.x3e_c00193{left:535.650000px;}
.x69_c00193{left:541.050000px;}
.x13_c00193{left:543.900000px;}
.x4f_c00193{left:551.550000px;}
.x45_c00193{left:557.700000px;}
.x33_c00193{left:565.650000px;}
.x27_c00193{left:569.100000px;}
.x50_c00193{left:571.350000px;}
.x5c_c00193{left:577.500000px;}
.x7e_c00193{left:582.450000px;}
.x14_c00193{left:586.050000px;}
.x34_c00193{left:587.550000px;}
.x5d_c00193{left:591.150000px;}
.x75_c00193{left:594.450000px;}
.x51_c00193{left:598.050000px;}
.x28_c00193{left:605.100000px;}
.x7f_c00193{left:610.950000px;}
.x35_c00193{left:618.150000px;}
.x5e_c00193{left:621.750000px;}
.x29_c00193{left:624.150000px;}
.x6a_c00193{left:625.950000px;}
.x52_c00193{left:638.700000px;}
.x6b_c00193{left:645.750000px;}
.x46_c00193{left:652.050000px;}
.x53_c00193{left:658.500000px;}
.x15_c00193{left:661.350000px;}
.x80_c00193{left:665.700000px;}
.x36_c00193{left:668.550000px;}
.x2a_c00193{left:672.450000px;}
.x16_c00193{left:682.200000px;}
.x2b_c00193{left:690.150000px;}
.x5f_c00193{left:698.100000px;}
.x81_c00193{left:702.750000px;}
.x17_c00193{left:713.100000px;}
.x2c_c00193{left:716.850000px;}
.x47_c00193{left:720.750000px;}
.x76_c00193{left:722.550000px;}
.x82_c00193{left:731.250000px;}
.x6c_c00193{left:732.900000px;}
.x60_c00193{left:740.250000px;}
.x77_c00193{left:742.050000px;}
.x54_c00193{left:748.800000px;}
.x37_c00193{left:750.300000px;}
.x48_c00193{left:757.800000px;}
.x61_c00193{left:762.150000px;}
.x78_c00193{left:770.850000px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls0_c00193{letter-spacing:0.000000pt;}
.ws1_c00193{word-spacing:0.000000pt;}
.ws0_c00193{word-spacing:0.625000pt;}
.fs0_c00193{font-size:53.333333pt;}
.y0_c00193{bottom:0.000000pt;}
.ye_c00193{bottom:526.266667pt;}
.yd_c00193{bottom:544.133333pt;}
.yc_c00193{bottom:561.733333pt;}
.yb_c00193{bottom:579.333333pt;}
.ya_c00193{bottom:597.200000pt;}
.y9_c00193{bottom:614.133333pt;}
.y8_c00193{bottom:632.000000pt;}
.y7_c00193{bottom:649.600000pt;}
.y6_c00193{bottom:667.200000pt;}
.y5_c00193{bottom:685.200000pt;}
.y4_c00193{bottom:703.066667pt;}
.y3_c00193{bottom:732.800000pt;}
.y2_c00193{bottom:761.866667pt;}
.y1_c00193{bottom:927.733333pt;}
.h2_c00193{height:53.333333pt;}
.h1_c00193{height:1038.000000pt;}
.h0_c00193{height:1038.079997pt;}
.w1_c00193{width:818.000000pt;}
.w0_c00193{width:818.239991pt;}
.x0_c00193{left:0.000000pt;}
.x8_c00193{left:98.266667pt;}
.x49_c00193{left:99.200000pt;}
.x18_c00193{left:115.733333pt;}
.x1c_c00193{left:126.666667pt;}
.x38_c00193{left:130.933333pt;}
.x6d_c00193{left:132.800000pt;}
.x9_c00193{left:136.000000pt;}
.x55_c00193{left:137.600000pt;}
.x2d_c00193{left:138.666667pt;}
.x19_c00193{left:141.066667pt;}
.x62_c00193{left:144.266667pt;}
.x4a_c00193{left:150.400000pt;}
.xa_c00193{left:155.466667pt;}
.x1d_c00193{left:160.266667pt;}
.x79_c00193{left:162.933333pt;}
.x39_c00193{left:164.266667pt;}
.x4b_c00193{left:168.000000pt;}
.xb_c00193{left:171.200000pt;}
.x2e_c00193{left:172.533333pt;}
.x63_c00193{left:176.000000pt;}
.x56_c00193{left:177.600000pt;}
.x3f_c00193{left:189.866667pt;}
.x1e_c00193{left:193.600000pt;}
.x1a_c00193{left:196.000000pt;}
.x2f_c00193{left:198.800000pt;}
.xc_c00193{left:210.933333pt;}
.x1f_c00193{left:216.266667pt;}
.x6e_c00193{left:217.333333pt;}
.x1b_c00193{left:220.933333pt;}
.x57_c00193{left:227.200000pt;}
.x6f_c00193{left:234.933333pt;}
.x58_c00193{left:243.200000pt;}
.x3a_c00193{left:246.133333pt;}
.x20_c00193{left:248.933333pt;}
.xd_c00193{left:251.600000pt;}
.x59_c00193{left:259.466667pt;}
.x70_c00193{left:260.533333pt;}
.x64_c00193{left:268.800000pt;}
.xe_c00193{left:270.533333pt;}
.x40_c00193{left:273.066667pt;}
.x21_c00193{left:275.466667pt;}
.x7a_c00193{left:278.800000pt;}
.x4_c00193{left:283.866667pt;}
.x30_c00193{left:301.466667pt;}
.x65_c00193{left:303.733333pt;}
.x7b_c00193{left:306.666667pt;}
.xf_c00193{left:317.866667pt;}
.x3b_c00193{left:319.066667pt;}
.x41_c00193{left:325.600000pt;}
.x71_c00193{left:330.666667pt;}
.x22_c00193{left:337.866667pt;}
.x7c_c00193{left:340.533333pt;}
.x2_c00193{left:343.333333pt;}
.x4c_c00193{left:344.266667pt;}
.x5_c00193{left:349.466667pt;}
.x3c_c00193{left:351.066667pt;}
.x66_c00193{left:354.000000pt;}
.x4d_c00193{left:361.600000pt;}
.x31_c00193{left:363.200000pt;}
.x23_c00193{left:370.800000pt;}
.x10_c00193{left:374.133333pt;}
.x32_c00193{left:378.933333pt;}
.x1_c00193{left:385.333333pt;}
.x4e_c00193{left:386.933333pt;}
.x7d_c00193{left:395.866667pt;}
.x5a_c00193{left:397.466667pt;}
.x6_c00193{left:401.333333pt;}
.x67_c00193{left:402.266667pt;}
.x24_c00193{left:409.866667pt;}
.x72_c00193{left:413.600000pt;}
.x42_c00193{left:414.666667pt;}
.x7_c00193{left:416.666667pt;}
.x3d_c00193{left:419.200000pt;}
.x3_c00193{left:421.466667pt;}
.x25_c00193{left:428.400000pt;}
.x43_c00193{left:430.666667pt;}
.x73_c00193{left:438.533333pt;}
.x11_c00193{left:440.000000pt;}
.x68_c00193{left:447.333333pt;}
.x26_c00193{left:453.333333pt;}
.x44_c00193{left:456.000000pt;}
.x12_c00193{left:463.333333pt;}
.x5b_c00193{left:472.400000pt;}
.x74_c00193{left:473.733333pt;}
.x3e_c00193{left:476.133333pt;}
.x69_c00193{left:480.933333pt;}
.x13_c00193{left:483.466667pt;}
.x4f_c00193{left:490.266667pt;}
.x45_c00193{left:495.733333pt;}
.x33_c00193{left:502.800000pt;}
.x27_c00193{left:505.866667pt;}
.x50_c00193{left:507.866667pt;}
.x5c_c00193{left:513.333333pt;}
.x7e_c00193{left:517.733333pt;}
.x14_c00193{left:520.933333pt;}
.x34_c00193{left:522.266667pt;}
.x5d_c00193{left:525.466667pt;}
.x75_c00193{left:528.400000pt;}
.x51_c00193{left:531.600000pt;}
.x28_c00193{left:537.866667pt;}
.x7f_c00193{left:543.066667pt;}
.x35_c00193{left:549.466667pt;}
.x5e_c00193{left:552.666667pt;}
.x29_c00193{left:554.800000pt;}
.x6a_c00193{left:556.400000pt;}
.x52_c00193{left:567.733333pt;}
.x6b_c00193{left:574.000000pt;}
.x46_c00193{left:579.600000pt;}
.x53_c00193{left:585.333333pt;}
.x15_c00193{left:587.866667pt;}
.x80_c00193{left:591.733333pt;}
.x36_c00193{left:594.266667pt;}
.x2a_c00193{left:597.733333pt;}
.x16_c00193{left:606.400000pt;}
.x2b_c00193{left:613.466667pt;}
.x5f_c00193{left:620.533333pt;}
.x81_c00193{left:624.666667pt;}
.x17_c00193{left:633.866667pt;}
.x2c_c00193{left:637.200000pt;}
.x47_c00193{left:640.666667pt;}
.x76_c00193{left:642.266667pt;}
.x82_c00193{left:650.000000pt;}
.x6c_c00193{left:651.466667pt;}
.x60_c00193{left:658.000000pt;}
.x77_c00193{left:659.600000pt;}
.x54_c00193{left:665.600000pt;}
.x37_c00193{left:666.933333pt;}
.x48_c00193{left:673.600000pt;}
.x61_c00193{left:677.466667pt;}
.x78_c00193{left:685.200000pt;}
}





/* 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_c00194 {
    display:none;
  }
  .loading-indicator_c00194.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00194 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_c00194 { 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_c00194" -> "#page-container .classname_c00194")
 */
.pf_c00194 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00194 { /* 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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00194 { /* 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_c00194 { /* 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_c00194 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00194 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00194 {overflow:visible;}
  }
}
.c_c00194 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00194 { /* 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_c00194:after { /* webkit #35443 */
  content: '';
}
.t_c00194:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00194 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 */
}
.__c00194 { /* 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_c00194 { /* info for Javascript */
  display:none;
}
.l_c00194 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00194 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00194 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00194: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_c00194 {
    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_c00194.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00194.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_c00194 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00194{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00194;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.000000;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;}
.m88_c00194{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m91_c00194{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m26_c00194{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00194{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m41_c00194{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m43_c00194{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00194{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m90_c00194{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00194{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00194{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m72_c00194{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m80_c00194{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m34_c00194{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00194{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m89_c00194{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00194{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00194{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m71_c00194{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00194{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00194{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m61_c00194{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m79_c00194{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m47_c00194{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m42_c00194{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00194{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m81_c00194{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m31_c00194{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m25_c00194{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00194{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m39_c00194{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m54_c00194{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00194{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m16_c00194{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00194{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00194{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m35_c00194{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m18_c00194{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m60_c00194{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m64_c00194{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00194{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m33_c00194{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00194{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00194{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00194{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00194{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00194{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m53_c00194{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00194{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00194{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m76_c00194{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00194{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00194{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m15_c00194{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00194{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m38_c00194{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mc_c00194{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m63_c00194{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00194{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m50_c00194{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb_c00194{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00194{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00194{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10_c00194{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m14_c00194{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m57_c00194{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00194{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m83_c00194{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7_c00194{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m69_c00194{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00194{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m37_c00194{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19_c00194{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md_c00194{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8_c00194{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00194{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6_c00194{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00194{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m49_c00194{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma_c00194{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00194{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m29_c00194{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m62_c00194{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m73_c00194{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m21_c00194{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m12_c00194{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00194{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m52_c00194{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00194{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00194{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m17_c00194{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m27_c00194{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00194{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00194{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00194{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00194{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m24_c00194{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m75_c00194{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00194{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00194{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.me_c00194{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m87_c00194{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00194{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00194{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m13_c00194{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00194{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00194{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m67_c00194{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m59_c00194{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00194{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00194{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00194{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m22_c00194{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m77_c00194{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m20_c00194{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m11_c00194{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m3_c00194{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00194{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00194{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m40_c00194{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00194{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m23_c00194{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00194{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m36_c00194{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00194{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m44_c00194{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m28_c00194{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m86_c00194{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00194{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m32_c00194{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c00194{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m0_c00194{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00194{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m56_c00194{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m68_c00194{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m65_c00194{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m66_c00194{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m78_c00194{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m70_c00194{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m85_c00194{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m30_c00194{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m48_c00194{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00194{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00194{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m55_c00194{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.m5_c00194{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00194{vertical-align:0.000000px;}
.ls0_c00194{letter-spacing:0.000000px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{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__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00194{word-spacing:-7.095151px;}
.ws3_c00194{word-spacing:-3.978444px;}
.wsc_c00194{word-spacing:0.000000px;}
.ws0_c00194{word-spacing:1.500000px;}
.ws7_c00194{word-spacing:1.861160px;}
.ws1_c00194{word-spacing:2.601286px;}
.ws2_c00194{word-spacing:4.432754px;}
.wsa_c00194{word-spacing:6.250000px;}
.ws4_c00194{word-spacing:7.643881px;}
.ws9_c00194{word-spacing:9.334068px;}
.ws8_c00194{word-spacing:10.625000px;}
.ws6_c00194{word-spacing:14.013820px;}
.wsb_c00194{word-spacing:19.000000px;}
.fc0_c00194{color:transparent;}
.fs0_c00194{font-size:54.000000px;}
.y0_c00194{bottom:0.000000px;}
.y24_c00194{bottom:133.950000px;}
.y23_c00194{bottom:178.200000px;}
.y22_c00194{bottom:198.000000px;}
.y21_c00194{bottom:218.550000px;}
.y20_c00194{bottom:238.350000px;}
.y1f_c00194{bottom:257.850000px;}
.y1e_c00194{bottom:277.950000px;}
.y1d_c00194{bottom:298.050000px;}
.y1c_c00194{bottom:318.150000px;}
.y1b_c00194{bottom:338.250000px;}
.y1a_c00194{bottom:358.050000px;}
.y19_c00194{bottom:377.850000px;}
.y18_c00194{bottom:397.650000px;}
.y17_c00194{bottom:417.750000px;}
.y16_c00194{bottom:437.550000px;}
.y15_c00194{bottom:457.650000px;}
.y14_c00194{bottom:477.750000px;}
.y13_c00194{bottom:497.250000px;}
.y12_c00194{bottom:517.350000px;}
.y11_c00194{bottom:537.450000px;}
.y10_c00194{bottom:557.250000px;}
.yf_c00194{bottom:576.900000px;}
.ye_c00194{bottom:597.000000px;}
.yd_c00194{bottom:617.100000px;}
.yc_c00194{bottom:637.350000px;}
.yb_c00194{bottom:657.150000px;}
.ya_c00194{bottom:677.250000px;}
.y9_c00194{bottom:697.350000px;}
.y8_c00194{bottom:717.150000px;}
.y7_c00194{bottom:736.950000px;}
.y6_c00194{bottom:756.750000px;}
.y5_c00194{bottom:776.850000px;}
.y4_c00194{bottom:796.650000px;}
.y3_c00194{bottom:830.550000px;}
.y2_c00194{bottom:863.700000px;}
.y1_c00194{bottom:1040.400000px;}
.h2_c00194{height:54.000000px;}
.h1_c00194{height:1167.750000px;}
.h0_c00194{height:1167.839997px;}
.w1_c00194{width:920.250000px;}
.w0_c00194{width:920.519990px;}
.x0_c00194{left:0.000000px;}
.x3d_c00194{left:140.700000px;}
.x7_c00194{left:142.200000px;}
.x80_c00194{left:156.000000px;}
.x8c_c00194{left:165.150000px;}
.x33_c00194{left:170.700000px;}
.x73_c00194{left:172.800000px;}
.xf5_c00194{left:174.300000px;}
.x6a_c00194{left:177.600000px;}
.x5e_c00194{left:178.650000px;}
.x22_c00194{left:181.950000px;}
.xaa_c00194{left:185.250000px;}
.xb3_c00194{left:187.350000px;}
.xee_c00194{left:192.900000px;}
.x23_c00194{left:198.900000px;}
.xcc_c00194{left:199.950000px;}
.x8d_c00194{left:201.000000px;}
.x3e_c00194{left:203.250000px;}
.xf6_c00194{left:204.600000px;}
.xd4_c00194{left:206.400000px;}
.x9f_c00194{left:209.550000px;}
.x8_c00194{left:212.100000px;}
.xfe_c00194{left:213.300000px;}
.xab_c00194{left:216.600000px;}
.xb4_c00194{left:221.550000px;}
.x5f_c00194{left:222.600000px;}
.x24_c00194{left:225.150000px;}
.x6b_c00194{left:227.250000px;}
.xc0_c00194{left:231.450000px;}
.x4c_c00194{left:233.550000px;}
.x9_c00194{left:234.750000px;}
.x8e_c00194{left:236.250000px;}
.xe0_c00194{left:240.600000px;}
.xbc_c00194{left:242.250000px;}
.xa0_c00194{left:244.800000px;}
.x97_c00194{left:246.150000px;}
.x18_c00194{left:247.950000px;}
.xcd_c00194{left:249.300000px;}
.xc1_c00194{left:251.250000px;}
.x34_c00194{left:254.250000px;}
.xd5_c00194{left:255.300000px;}
.x60_c00194{left:261.450000px;}
.xe7_c00194{left:262.650000px;}
.xac_c00194{left:264.450000px;}
.x8f_c00194{left:268.650000px;}
.xa1_c00194{left:270.300000px;}
.x81_c00194{left:271.500000px;}
.xe1_c00194{left:272.550000px;}
.x98_c00194{left:274.650000px;}
.x3f_c00194{left:276.000000px;}
.xe8_c00194{left:280.650000px;}
.x56_c00194{left:281.850000px;}
.x35_c00194{left:285.150000px;}
.xa_c00194{left:287.700000px;}
.xc2_c00194{left:288.750000px;}
.x99_c00194{left:290.100000px;}
.x74_c00194{left:291.300000px;}
.x61_c00194{left:292.350000px;}
.xce_c00194{left:297.900000px;}
.x40_c00194{left:300.450000px;}
.x57_c00194{left:303.450000px;}
.x9a_c00194{left:305.250000px;}
.xa2_c00194{left:306.600000px;}
.xfb_c00194{left:308.550000px;}
.xbd_c00194{left:309.900000px;}
.xf7_c00194{left:311.550000px;}
.xc7_c00194{left:313.800000px;}
.x19_c00194{left:317.400000px;}
.xff_c00194{left:320.100000px;}
.xb_c00194{left:321.150000px;}
.xe9_c00194{left:324.900000px;}
.x4d_c00194{left:327.150000px;}
.x62_c00194{left:331.200000px;}
.x90_c00194{left:332.700000px;}
.xf3_c00194{left:334.500000px;}
.xf8_c00194{left:336.750000px;}
.x25_c00194{left:338.100000px;}
.x100_c00194{left:339.900000px;}
.xe2_c00194{left:342.300000px;}
.x6c_c00194{left:344.250000px;}
.xb5_c00194{left:346.050000px;}
.xc_c00194{left:349.200000px;}
.x75_c00194{left:351.450000px;}
.xd6_c00194{left:352.800000px;}
.xcf_c00194{left:354.450000px;}
.xea_c00194{left:355.800000px;}
.x41_c00194{left:358.350000px;}
.x106_c00194{left:362.400000px;}
.x82_c00194{left:364.800000px;}
.x4e_c00194{left:366.450000px;}
.xc8_c00194{left:368.550000px;}
.x36_c00194{left:371.850000px;}
.x4_c00194{left:373.650000px;}
.xa3_c00194{left:375.300000px;}
.x58_c00194{left:376.500000px;}
.x6d_c00194{left:378.150000px;}
.x26_c00194{left:381.600000px;}
.xbe_c00194{left:387.300000px;}
.xd_c00194{left:389.550000px;}
.xf4_c00194{left:392.850000px;}
.x42_c00194{left:394.350000px;}
.x27_c00194{left:398.850000px;}
.x107_c00194{left:401.250000px;}
.x63_c00194{left:402.600000px;}
.x1a_c00194{left:404.250000px;}
.xda_c00194{left:405.450000px;}
.x6e_c00194{left:406.650000px;}
.xe_c00194{left:409.050000px;}
.x2_c00194{left:411.150000px;}
.x43_c00194{left:415.200000px;}
.xa4_c00194{left:416.700000px;}
.x76_c00194{left:418.800000px;}
.xb6_c00194{left:420.600000px;}
.xef_c00194{left:422.550000px;}
.x83_c00194{left:423.900000px;}
.xd7_c00194{left:427.050000px;}
.x4f_c00194{left:428.400000px;}
.xeb_c00194{left:431.100000px;}
.x37_c00194{left:435.150000px;}
.xf_c00194{left:437.550000px;}
.x28_c00194{left:442.350000px;}
.x77_c00194{left:444.000000px;}
.x9b_c00194{left:445.350000px;}
.x5_c00194{left:447.450000px;}
.x44_c00194{left:448.650000px;}
.xdd_c00194{left:450.300000px;}
.xad_c00194{left:453.150000px;}
.x50_c00194{left:455.700000px;}
.x108_c00194{left:458.400000px;}
.x6f_c00194{left:459.900000px;}
.x1_c00194{left:463.650000px;}
.x84_c00194{left:468.600000px;}
.xf0_c00194{left:470.400000px;}
.xec_c00194{left:472.800000px;}
.xbf_c00194{left:474.000000px;}
.x29_c00194{left:476.250000px;}
.xc9_c00194{left:479.400000px;}
.xd0_c00194{left:480.450000px;}
.x10_c00194{left:481.800000px;}
.x64_c00194{left:483.150000px;}
.xed_c00194{left:485.100000px;}
.xf9_c00194{left:486.900000px;}
.x91_c00194{left:487.950000px;}
.x85_c00194{left:489.150000px;}
.x102_c00194{left:492.600000px;}
.x59_c00194{left:495.300000px;}
.x101_c00194{left:498.000000px;}
.x78_c00194{left:500.100000px;}
.x65_c00194{left:501.150000px;}
.x11_c00194{left:502.350000px;}
.x3_c00194{left:503.700000px;}
.xb7_c00194{left:505.200000px;}
.x51_c00194{left:507.150000px;}
.x2a_c00194{left:513.000000px;}
.x86_c00194{left:514.650000px;}
.x12_c00194{left:517.050000px;}
.x6_c00194{left:519.750000px;}
.x1b_c00194{left:521.850000px;}
.x70_c00194{left:523.500000px;}
.xfc_c00194{left:524.550000px;}
.xde_c00194{left:528.450000px;}
.xae_c00194{left:530.100000px;}
.xe3_c00194{left:532.050000px;}
.x2b_c00194{left:533.550000px;}
.x45_c00194{left:534.750000px;}
.x109_c00194{left:540.150000px;}
.x1c_c00194{left:541.950000px;}
.x79_c00194{left:545.550000px;}
.x66_c00194{left:548.250000px;}
.x5a_c00194{left:553.200000px;}
.xb8_c00194{left:554.850000px;}
.x46_c00194{left:559.650000px;}
.x52_c00194{left:561.150000px;}
.xdf_c00194{left:562.650000px;}
.x71_c00194{left:566.700000px;}
.xf1_c00194{left:567.900000px;}
.x2c_c00194{left:569.850000px;}
.x13_c00194{left:571.050000px;}
.xaf_c00194{left:572.250000px;}
.xc3_c00194{left:574.500000px;}
.x92_c00194{left:575.850000px;}
.x1d_c00194{left:581.550000px;}
.x38_c00194{left:583.800000px;}
.x7a_c00194{left:586.950000px;}
.x103_c00194{left:590.100000px;}
.x5b_c00194{left:593.850000px;}
.x67_c00194{left:596.100000px;}
.x53_c00194{left:597.900000px;}
.xb0_c00194{left:600.000000px;}
.xb9_c00194{left:601.200000px;}
.x93_c00194{left:605.400000px;}
.x72_c00194{left:607.800000px;}
.xd1_c00194{left:609.750000px;}
.xc4_c00194{left:612.300000px;}
.x87_c00194{left:613.350000px;}
.xd8_c00194{left:615.300000px;}
.xdb_c00194{left:617.850000px;}
.x104_c00194{left:618.900000px;}
.x39_c00194{left:620.850000px;}
.x7b_c00194{left:622.650000px;}
.x5c_c00194{left:625.200000px;}
.x2d_c00194{left:626.400000px;}
.xd9_c00194{left:635.400000px;}
.x3a_c00194{left:637.800000px;}
.xa5_c00194{left:639.600000px;}
.x88_c00194{left:641.850000px;}
.xba_c00194{left:644.100000px;}
.xdc_c00194{left:646.650000px;}
.x7c_c00194{left:647.850000px;}
.xc5_c00194{left:649.050000px;}
.x68_c00194{left:650.100000px;}
.xca_c00194{left:651.750000px;}
.xa6_c00194{left:655.050000px;}
.x9c_c00194{left:657.450000px;}
.x1e_c00194{left:661.050000px;}
.xb1_c00194{left:662.700000px;}
.x2e_c00194{left:663.900000px;}
.x14_c00194{left:665.700000px;}
.x69_c00194{left:669.150000px;}
.x47_c00194{left:670.950000px;}
.x94_c00194{left:673.050000px;}
.x5d_c00194{left:677.400000px;}
.x105_c00194{left:678.600000px;}
.x89_c00194{left:681.450000px;}
.x7d_c00194{left:682.800000px;}
.xe4_c00194{left:685.500000px;}
.x1f_c00194{left:689.850000px;}
.x48_c00194{left:691.800000px;}
.x15_c00194{left:697.800000px;}
.xf2_c00194{left:700.650000px;}
.x7e_c00194{left:702.600000px;}
.x20_c00194{left:707.550000px;}
.x9d_c00194{left:709.650000px;}
.x2f_c00194{left:711.450000px;}
.x3b_c00194{left:715.200000px;}
.x49_c00194{left:718.050000px;}
.xa7_c00194{left:719.100000px;}
.x95_c00194{left:724.500000px;}
.xd2_c00194{left:725.700000px;}
.x8a_c00194{left:727.500000px;}
.x7f_c00194{left:728.550000px;}
.x30_c00194{left:731.550000px;}
.x21_c00194{left:732.750000px;}
.x16_c00194{left:735.300000px;}
.x54_c00194{left:736.500000px;}
.xa8_c00194{left:739.200000px;}
.xfd_c00194{left:740.700000px;}
.xd3_c00194{left:745.200000px;}
.xbb_c00194{left:746.250000px;}
.xcb_c00194{left:747.900000px;}
.xe5_c00194{left:750.600000px;}
.x3c_c00194{left:757.800000px;}
.x31_c00194{left:759.300000px;}
.x4a_c00194{left:762.000000px;}
.x17_c00194{left:763.350000px;}
.x96_c00194{left:764.850000px;}
.xa9_c00194{left:766.950000px;}
.x55_c00194{left:769.650000px;}
.x8b_c00194{left:772.800000px;}
.xe6_c00194{left:777.300000px;}
.x9e_c00194{left:779.100000px;}
.xc6_c00194{left:781.500000px;}
.xb2_c00194{left:782.850000px;}
.x4b_c00194{left:787.950000px;}
.xfa_c00194{left:790.500000px;}
.x32_c00194{left:796.350000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws5_c00194{word-spacing:-6.306801pt;}
.ws3_c00194{word-spacing:-3.536395pt;}
.wsc_c00194{word-spacing:0.000000pt;}
.ws0_c00194{word-spacing:1.333333pt;}
.ws7_c00194{word-spacing:1.654364pt;}
.ws1_c00194{word-spacing:2.312254pt;}
.ws2_c00194{word-spacing:3.940226pt;}
.wsa_c00194{word-spacing:5.555556pt;}
.ws4_c00194{word-spacing:6.794561pt;}
.ws9_c00194{word-spacing:8.296950pt;}
.ws8_c00194{word-spacing:9.444444pt;}
.ws6_c00194{word-spacing:12.456729pt;}
.wsb_c00194{word-spacing:16.888889pt;}
.fs0_c00194{font-size:48.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y24_c00194{bottom:119.066667pt;}
.y23_c00194{bottom:158.400000pt;}
.y22_c00194{bottom:176.000000pt;}
.y21_c00194{bottom:194.266667pt;}
.y20_c00194{bottom:211.866667pt;}
.y1f_c00194{bottom:229.200000pt;}
.y1e_c00194{bottom:247.066667pt;}
.y1d_c00194{bottom:264.933333pt;}
.y1c_c00194{bottom:282.800000pt;}
.y1b_c00194{bottom:300.666667pt;}
.y1a_c00194{bottom:318.266667pt;}
.y19_c00194{bottom:335.866667pt;}
.y18_c00194{bottom:353.466667pt;}
.y17_c00194{bottom:371.333333pt;}
.y16_c00194{bottom:388.933333pt;}
.y15_c00194{bottom:406.800000pt;}
.y14_c00194{bottom:424.666667pt;}
.y13_c00194{bottom:442.000000pt;}
.y12_c00194{bottom:459.866667pt;}
.y11_c00194{bottom:477.733333pt;}
.y10_c00194{bottom:495.333333pt;}
.yf_c00194{bottom:512.800000pt;}
.ye_c00194{bottom:530.666667pt;}
.yd_c00194{bottom:548.533333pt;}
.yc_c00194{bottom:566.533333pt;}
.yb_c00194{bottom:584.133333pt;}
.ya_c00194{bottom:602.000000pt;}
.y9_c00194{bottom:619.866667pt;}
.y8_c00194{bottom:637.466667pt;}
.y7_c00194{bottom:655.066667pt;}
.y6_c00194{bottom:672.666667pt;}
.y5_c00194{bottom:690.533333pt;}
.y4_c00194{bottom:708.133333pt;}
.y3_c00194{bottom:738.266667pt;}
.y2_c00194{bottom:767.733333pt;}
.y1_c00194{bottom:924.800000pt;}
.h2_c00194{height:48.000000pt;}
.h1_c00194{height:1038.000000pt;}
.h0_c00194{height:1038.079997pt;}
.w1_c00194{width:818.000000pt;}
.w0_c00194{width:818.239991pt;}
.x0_c00194{left:0.000000pt;}
.x3d_c00194{left:125.066667pt;}
.x7_c00194{left:126.400000pt;}
.x80_c00194{left:138.666667pt;}
.x8c_c00194{left:146.800000pt;}
.x33_c00194{left:151.733333pt;}
.x73_c00194{left:153.600000pt;}
.xf5_c00194{left:154.933333pt;}
.x6a_c00194{left:157.866667pt;}
.x5e_c00194{left:158.800000pt;}
.x22_c00194{left:161.733333pt;}
.xaa_c00194{left:164.666667pt;}
.xb3_c00194{left:166.533333pt;}
.xee_c00194{left:171.466667pt;}
.x23_c00194{left:176.800000pt;}
.xcc_c00194{left:177.733333pt;}
.x8d_c00194{left:178.666667pt;}
.x3e_c00194{left:180.666667pt;}
.xf6_c00194{left:181.866667pt;}
.xd4_c00194{left:183.466667pt;}
.x9f_c00194{left:186.266667pt;}
.x8_c00194{left:188.533333pt;}
.xfe_c00194{left:189.600000pt;}
.xab_c00194{left:192.533333pt;}
.xb4_c00194{left:196.933333pt;}
.x5f_c00194{left:197.866667pt;}
.x24_c00194{left:200.133333pt;}
.x6b_c00194{left:202.000000pt;}
.xc0_c00194{left:205.733333pt;}
.x4c_c00194{left:207.600000pt;}
.x9_c00194{left:208.666667pt;}
.x8e_c00194{left:210.000000pt;}
.xe0_c00194{left:213.866667pt;}
.xbc_c00194{left:215.333333pt;}
.xa0_c00194{left:217.600000pt;}
.x97_c00194{left:218.800000pt;}
.x18_c00194{left:220.400000pt;}
.xcd_c00194{left:221.600000pt;}
.xc1_c00194{left:223.333333pt;}
.x34_c00194{left:226.000000pt;}
.xd5_c00194{left:226.933333pt;}
.x60_c00194{left:232.400000pt;}
.xe7_c00194{left:233.466667pt;}
.xac_c00194{left:235.066667pt;}
.x8f_c00194{left:238.800000pt;}
.xa1_c00194{left:240.266667pt;}
.x81_c00194{left:241.333333pt;}
.xe1_c00194{left:242.266667pt;}
.x98_c00194{left:244.133333pt;}
.x3f_c00194{left:245.333333pt;}
.xe8_c00194{left:249.466667pt;}
.x56_c00194{left:250.533333pt;}
.x35_c00194{left:253.466667pt;}
.xa_c00194{left:255.733333pt;}
.xc2_c00194{left:256.666667pt;}
.x99_c00194{left:257.866667pt;}
.x74_c00194{left:258.933333pt;}
.x61_c00194{left:259.866667pt;}
.xce_c00194{left:264.800000pt;}
.x40_c00194{left:267.066667pt;}
.x57_c00194{left:269.733333pt;}
.x9a_c00194{left:271.333333pt;}
.xa2_c00194{left:272.533333pt;}
.xfb_c00194{left:274.266667pt;}
.xbd_c00194{left:275.466667pt;}
.xf7_c00194{left:276.933333pt;}
.xc7_c00194{left:278.933333pt;}
.x19_c00194{left:282.133333pt;}
.xff_c00194{left:284.533333pt;}
.xb_c00194{left:285.466667pt;}
.xe9_c00194{left:288.800000pt;}
.x4d_c00194{left:290.800000pt;}
.x62_c00194{left:294.400000pt;}
.x90_c00194{left:295.733333pt;}
.xf3_c00194{left:297.333333pt;}
.xf8_c00194{left:299.333333pt;}
.x25_c00194{left:300.533333pt;}
.x100_c00194{left:302.133333pt;}
.xe2_c00194{left:304.266667pt;}
.x6c_c00194{left:306.000000pt;}
.xb5_c00194{left:307.600000pt;}
.xc_c00194{left:310.400000pt;}
.x75_c00194{left:312.400000pt;}
.xd6_c00194{left:313.600000pt;}
.xcf_c00194{left:315.066667pt;}
.xea_c00194{left:316.266667pt;}
.x41_c00194{left:318.533333pt;}
.x106_c00194{left:322.133333pt;}
.x82_c00194{left:324.266667pt;}
.x4e_c00194{left:325.733333pt;}
.xc8_c00194{left:327.600000pt;}
.x36_c00194{left:330.533333pt;}
.x4_c00194{left:332.133333pt;}
.xa3_c00194{left:333.600000pt;}
.x58_c00194{left:334.666667pt;}
.x6d_c00194{left:336.133333pt;}
.x26_c00194{left:339.200000pt;}
.xbe_c00194{left:344.266667pt;}
.xd_c00194{left:346.266667pt;}
.xf4_c00194{left:349.200000pt;}
.x42_c00194{left:350.533333pt;}
.x27_c00194{left:354.533333pt;}
.x107_c00194{left:356.666667pt;}
.x63_c00194{left:357.866667pt;}
.x1a_c00194{left:359.333333pt;}
.xda_c00194{left:360.400000pt;}
.x6e_c00194{left:361.466667pt;}
.xe_c00194{left:363.600000pt;}
.x2_c00194{left:365.466667pt;}
.x43_c00194{left:369.066667pt;}
.xa4_c00194{left:370.400000pt;}
.x76_c00194{left:372.266667pt;}
.xb6_c00194{left:373.866667pt;}
.xef_c00194{left:375.600000pt;}
.x83_c00194{left:376.800000pt;}
.xd7_c00194{left:379.600000pt;}
.x4f_c00194{left:380.800000pt;}
.xeb_c00194{left:383.200000pt;}
.x37_c00194{left:386.800000pt;}
.xf_c00194{left:388.933333pt;}
.x28_c00194{left:393.200000pt;}
.x77_c00194{left:394.666667pt;}
.x9b_c00194{left:395.866667pt;}
.x5_c00194{left:397.733333pt;}
.x44_c00194{left:398.800000pt;}
.xdd_c00194{left:400.266667pt;}
.xad_c00194{left:402.800000pt;}
.x50_c00194{left:405.066667pt;}
.x108_c00194{left:407.466667pt;}
.x6f_c00194{left:408.800000pt;}
.x1_c00194{left:412.133333pt;}
.x84_c00194{left:416.533333pt;}
.xf0_c00194{left:418.133333pt;}
.xec_c00194{left:420.266667pt;}
.xbf_c00194{left:421.333333pt;}
.x29_c00194{left:423.333333pt;}
.xc9_c00194{left:426.133333pt;}
.xd0_c00194{left:427.066667pt;}
.x10_c00194{left:428.266667pt;}
.x64_c00194{left:429.466667pt;}
.xed_c00194{left:431.200000pt;}
.xf9_c00194{left:432.800000pt;}
.x91_c00194{left:433.733333pt;}
.x85_c00194{left:434.800000pt;}
.x102_c00194{left:437.866667pt;}
.x59_c00194{left:440.266667pt;}
.x101_c00194{left:442.666667pt;}
.x78_c00194{left:444.533333pt;}
.x65_c00194{left:445.466667pt;}
.x11_c00194{left:446.533333pt;}
.x3_c00194{left:447.733333pt;}
.xb7_c00194{left:449.066667pt;}
.x51_c00194{left:450.800000pt;}
.x2a_c00194{left:456.000000pt;}
.x86_c00194{left:457.466667pt;}
.x12_c00194{left:459.600000pt;}
.x6_c00194{left:462.000000pt;}
.x1b_c00194{left:463.866667pt;}
.x70_c00194{left:465.333333pt;}
.xfc_c00194{left:466.266667pt;}
.xde_c00194{left:469.733333pt;}
.xae_c00194{left:471.200000pt;}
.xe3_c00194{left:472.933333pt;}
.x2b_c00194{left:474.266667pt;}
.x45_c00194{left:475.333333pt;}
.x109_c00194{left:480.133333pt;}
.x1c_c00194{left:481.733333pt;}
.x79_c00194{left:484.933333pt;}
.x66_c00194{left:487.333333pt;}
.x5a_c00194{left:491.733333pt;}
.xb8_c00194{left:493.200000pt;}
.x46_c00194{left:497.466667pt;}
.x52_c00194{left:498.800000pt;}
.xdf_c00194{left:500.133333pt;}
.x71_c00194{left:503.733333pt;}
.xf1_c00194{left:504.800000pt;}
.x2c_c00194{left:506.533333pt;}
.x13_c00194{left:507.600000pt;}
.xaf_c00194{left:508.666667pt;}
.xc3_c00194{left:510.666667pt;}
.x92_c00194{left:511.866667pt;}
.x1d_c00194{left:516.933333pt;}
.x38_c00194{left:518.933333pt;}
.x7a_c00194{left:521.733333pt;}
.x103_c00194{left:524.533333pt;}
.x5b_c00194{left:527.866667pt;}
.x67_c00194{left:529.866667pt;}
.x53_c00194{left:531.466667pt;}
.xb0_c00194{left:533.333333pt;}
.xb9_c00194{left:534.400000pt;}
.x93_c00194{left:538.133333pt;}
.x72_c00194{left:540.266667pt;}
.xd1_c00194{left:542.000000pt;}
.xc4_c00194{left:544.266667pt;}
.x87_c00194{left:545.200000pt;}
.xd8_c00194{left:546.933333pt;}
.xdb_c00194{left:549.200000pt;}
.x104_c00194{left:550.133333pt;}
.x39_c00194{left:551.866667pt;}
.x7b_c00194{left:553.466667pt;}
.x5c_c00194{left:555.733333pt;}
.x2d_c00194{left:556.800000pt;}
.xd9_c00194{left:564.800000pt;}
.x3a_c00194{left:566.933333pt;}
.xa5_c00194{left:568.533333pt;}
.x88_c00194{left:570.533333pt;}
.xba_c00194{left:572.533333pt;}
.xdc_c00194{left:574.800000pt;}
.x7c_c00194{left:575.866667pt;}
.xc5_c00194{left:576.933333pt;}
.x68_c00194{left:577.866667pt;}
.xca_c00194{left:579.333333pt;}
.xa6_c00194{left:582.266667pt;}
.x9c_c00194{left:584.400000pt;}
.x1e_c00194{left:587.600000pt;}
.xb1_c00194{left:589.066667pt;}
.x2e_c00194{left:590.133333pt;}
.x14_c00194{left:591.733333pt;}
.x69_c00194{left:594.800000pt;}
.x47_c00194{left:596.400000pt;}
.x94_c00194{left:598.266667pt;}
.x5d_c00194{left:602.133333pt;}
.x105_c00194{left:603.200000pt;}
.x89_c00194{left:605.733333pt;}
.x7d_c00194{left:606.933333pt;}
.xe4_c00194{left:609.333333pt;}
.x1f_c00194{left:613.200000pt;}
.x48_c00194{left:614.933333pt;}
.x15_c00194{left:620.266667pt;}
.xf2_c00194{left:622.800000pt;}
.x7e_c00194{left:624.533333pt;}
.x20_c00194{left:628.933333pt;}
.x9d_c00194{left:630.800000pt;}
.x2f_c00194{left:632.400000pt;}
.x3b_c00194{left:635.733333pt;}
.x49_c00194{left:638.266667pt;}
.xa7_c00194{left:639.200000pt;}
.x95_c00194{left:644.000000pt;}
.xd2_c00194{left:645.066667pt;}
.x8a_c00194{left:646.666667pt;}
.x7f_c00194{left:647.600000pt;}
.x30_c00194{left:650.266667pt;}
.x21_c00194{left:651.333333pt;}
.x16_c00194{left:653.600000pt;}
.x54_c00194{left:654.666667pt;}
.xa8_c00194{left:657.066667pt;}
.xfd_c00194{left:658.400000pt;}
.xd3_c00194{left:662.400000pt;}
.xbb_c00194{left:663.333333pt;}
.xcb_c00194{left:664.800000pt;}
.xe5_c00194{left:667.200000pt;}
.x3c_c00194{left:673.600000pt;}
.x31_c00194{left:674.933333pt;}
.x4a_c00194{left:677.333333pt;}
.x17_c00194{left:678.533333pt;}
.x96_c00194{left:679.866667pt;}
.xa9_c00194{left:681.733333pt;}
.x55_c00194{left:684.133333pt;}
.x8b_c00194{left:686.933333pt;}
.xe6_c00194{left:690.933333pt;}
.x9e_c00194{left:692.533333pt;}
.xc6_c00194{left:694.666667pt;}
.xb2_c00194{left:695.866667pt;}
.x4b_c00194{left:700.400000pt;}
.xfa_c00194{left:702.666667pt;}
.x32_c00194{left:707.866667pt;}
}





/* 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_c00195 {
    display:none;
  }
  .loading-indicator_c00195.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00195 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_c00195 { 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_c00195" -> "#page-container .classname_c00195")
 */
.pf_c00195 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00195 { /* 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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00195 { /* 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_c00195 { /* 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_c00195 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00195 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00195 {overflow:visible;}
  }
}
.c_c00195 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00195 { /* 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_c00195:after { /* webkit #35443 */
  content: '';
}
.t_c00195:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00195 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 */
}
.__c00195 { /* 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_c00195 { /* info for Javascript */
  display:none;
}
.l_c00195 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00195 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00195 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00195: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_c00195 {
    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_c00195.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00195.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_c00195 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00195{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.000000;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;}
.m2_c00195{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m0_c00195{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{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__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:0.000000px;}
.fc0_c00195{color:transparent;}
.fs0_c00195{font-size:60.000000px;}
.y0_c00195{bottom:0.000000px;}
.y1_c00195{bottom:28.050000px;}
.h2_c00195{height:60.000000px;}
.h1_c00195{height:1167.750000px;}
.h0_c00195{height:1167.839997px;}
.w1_c00195{width:920.250000px;}
.w0_c00195{width:920.519990px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:787.650000px;}
.x2_c00195{left:799.950000px;}
.x3_c00195{left:808.650000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:0.000000pt;}
.fs0_c00195{font-size:53.333333pt;}
.y0_c00195{bottom:0.000000pt;}
.y1_c00195{bottom:24.933333pt;}
.h2_c00195{height:53.333333pt;}
.h1_c00195{height:1038.000000pt;}
.h0_c00195{height:1038.079997pt;}
.w1_c00195{width:818.000000pt;}
.w0_c00195{width:818.239991pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:700.133333pt;}
.x2_c00195{left:711.066667pt;}
.x3_c00195{left:718.800000pt;}
}





/* 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_c00196 {
    display:none;
  }
  .loading-indicator_c00196.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00196 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_c00196 { 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_c00196" -> "#page-container .classname_c00196")
 */
.pf_c00196 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00196 { /* 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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00196 { /* 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_c00196 { /* 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_c00196 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00196 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00196 {overflow:visible;}
  }
}
.c_c00196 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00196 { /* 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_c00196:after { /* webkit #35443 */
  content: '';
}
.t_c00196:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00196 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 */
}
.__c00196 { /* 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_c00196 { /* info for Javascript */
  display:none;
}
.l_c00196 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00196 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00196 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00196: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_c00196 {
    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_c00196.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00196.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_c00196 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00196{font-family:sans-serif;visibility:hidden;}
.sc__c00196{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
}
.y0_c00196{bottom:0.000000px;}
.h0_c00196{height:1166.759949px;}
.h1_c00196{height:1167.000000px;}
.w0_c00196{width:918.720063px;}
.w1_c00196{width:918.750000px;}
.x0_c00196{left:0.000000px;}
@media print{
.y0_c00196{bottom:0.000000pt;}
.h0_c00196{height:1037.119955pt;}
.h1_c00196{height:1037.333333pt;}
.w0_c00196{width:816.640056pt;}
.w1_c00196{width:816.666667pt;}
.x0_c00196{left:0.000000pt;}
}





/* 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_c00197 {
    display:none;
  }
  .loading-indicator_c00197.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00197 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_c00197 { 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_c00197" -> "#page-container .classname_c00197")
 */
.pf_c00197 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00197 { /* 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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00197 { /* 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_c00197 { /* 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_c00197 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00197 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00197 {overflow:visible;}
  }
}
.c_c00197 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00197 { /* 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_c00197:after { /* webkit #35443 */
  content: '';
}
.t_c00197:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00197 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 */
}
.__c00197 { /* 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_c00197 { /* info for Javascript */
  display:none;
}
.l_c00197 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00197 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00197 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00197: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_c00197 {
    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_c00197.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00197.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_c00197 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00197{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00197;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.000000;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;}
.ma2_c00197{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m10_c00197{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m56_c00197{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00197{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00197{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m71_c00197{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00197{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m94_c00197{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00197{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00197{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00197{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00197{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m59_c00197{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00197{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m39_c00197{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00197{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00197{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00197{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m28_c00197{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00197{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00197{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00197{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m79_c00197{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00197{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m34_c00197{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00197{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m31_c00197{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m92_c00197{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m90_c00197{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m54_c00197{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00197{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00197{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00197{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m27_c00197{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00197{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m58_c00197{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m51_c00197{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m99_c00197{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m84_c00197{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m69_c00197{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m77_c00197{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m88_c00197{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m87_c00197{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00197{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m29_c00197{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m15_c00197{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m21_c00197{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00197{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00197{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00197{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m55_c00197{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00197{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m70_c00197{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00197{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m33_c00197{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00197{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m83_c00197{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00197{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m38_c00197{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00197{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m25_c00197{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m18_c00197{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m95_c00197{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00197{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma_c00197{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m40_c00197{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m30_c00197{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00197{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00197{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m72_c00197{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00197{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m74_c00197{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00197{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00197{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00197{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00197{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20_c00197{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26_c00197{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8_c00197{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9_c00197{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00197{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00197{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);}
.m2d_c00197{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00197{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m49_c00197{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00197{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00197{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc_c00197{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m89_c00197{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m66_c00197{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m42_c00197{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m98_c00197{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m36_c00197{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00197{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00197{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m43_c00197{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m46_c00197{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m48_c00197{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m16_c00197{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m81_c00197{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00197{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m45_c00197{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00197{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m62_c00197{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m11_c00197{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00197{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m22_c00197{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00197{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m5_c00197{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m61_c00197{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00197{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mb_c00197{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m93_c00197{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m35_c00197{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m19_c00197{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m63_c00197{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.md_c00197{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m86_c00197{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m97_c00197{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00197{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00197{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00197{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m44_c00197{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m85_c00197{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00197{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12_c00197{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00197{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m37_c00197{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m17_c00197{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00197{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mf_c00197{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00197{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00197{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00197{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00197{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m13_c00197{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00197{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m52_c00197{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c00197{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m53_c00197{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m24_c00197{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00197{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m50_c00197{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m76_c00197{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m73_c00197{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00197{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m75_c00197{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00197{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00197{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m41_c00197{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00197{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c00197{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m64_c00197{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m68_c00197{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00197{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m67_c00197{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m96_c00197{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00197{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00197{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m47_c00197{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m78_c00197{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m65_c00197{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00197{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m82_c00197{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00197{vertical-align:0.000000px;}
.ls0_c00197{letter-spacing:0.000000px;}
.sc__c00197{text-shadow:none;}
.sc0_c00197{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__c00197{-webkit-text-stroke:0px transparent;}
.sc0_c00197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00197{word-spacing:-7.413655px;}
.ws8_c00197{word-spacing:-1.879489px;}
.wsc_c00197{word-spacing:0.000000px;}
.ws0_c00197{word-spacing:3.902530px;}
.ws1_c00197{word-spacing:6.722587px;}
.ws6_c00197{word-spacing:7.375000px;}
.ws3_c00197{word-spacing:8.683119px;}
.ws7_c00197{word-spacing:9.125000px;}
.ws2_c00197{word-spacing:10.250000px;}
.ws5_c00197{word-spacing:12.890675px;}
.ws4_c00197{word-spacing:15.250000px;}
.ws9_c00197{word-spacing:18.807692px;}
.wsa_c00197{word-spacing:21.121422px;}
._0_c00197{width:24.714859px;}
.fc0_c00197{color:transparent;}
.fs0_c00197{font-size:54.000000px;}
.y0_c00197{bottom:0.000000px;}
.y2c_c00197{bottom:157.200000px;}
.y2b_c00197{bottom:174.900000px;}
.y2a_c00197{bottom:216.600000px;}
.y29_c00197{bottom:236.400000px;}
.y28_c00197{bottom:256.200000px;}
.y27_c00197{bottom:276.300000px;}
.y26_c00197{bottom:296.850000px;}
.y25_c00197{bottom:316.350000px;}
.y24_c00197{bottom:336.450000px;}
.y23_c00197{bottom:356.550000px;}
.y22_c00197{bottom:376.350000px;}
.y21_c00197{bottom:396.450000px;}
.y20_c00197{bottom:416.250000px;}
.y1f_c00197{bottom:436.350000px;}
.y1e_c00197{bottom:456.900000px;}
.y1d_c00197{bottom:477.000000px;}
.y1c_c00197{bottom:496.800000px;}
.y1b_c00197{bottom:516.600000px;}
.y1a_c00197{bottom:536.400000px;}
.y19_c00197{bottom:556.500000px;}
.y18_c00197{bottom:576.300000px;}
.y17_c00197{bottom:596.400000px;}
.y16_c00197{bottom:616.500000px;}
.y15_c00197{bottom:636.600000px;}
.y14_c00197{bottom:656.400000px;}
.y13_c00197{bottom:676.200000px;}
.y12_c00197{bottom:696.750000px;}
.y11_c00197{bottom:716.850000px;}
.y10_c00197{bottom:736.650000px;}
.yf_c00197{bottom:756.450000px;}
.ye_c00197{bottom:776.550000px;}
.yd_c00197{bottom:796.650000px;}
.yc_c00197{bottom:816.750000px;}
.yb_c00197{bottom:836.850000px;}
.ya_c00197{bottom:856.650000px;}
.y9_c00197{bottom:876.450000px;}
.y8_c00197{bottom:896.550000px;}
.y7_c00197{bottom:916.650000px;}
.y6_c00197{bottom:936.750000px;}
.y5_c00197{bottom:957.300000px;}
.y4_c00197{bottom:977.400000px;}
.y3_c00197{bottom:997.200000px;}
.y2_c00197{bottom:1017.300000px;}
.y1_c00197{bottom:1054.800000px;}
.h2_c00197{height:54.000000px;}
.h0_c00197{height:1166.759949px;}
.h1_c00197{height:1167.000000px;}
.w0_c00197{width:918.720063px;}
.w1_c00197{width:918.750000px;}
.x0_c00197{left:0.000000px;}
.x3_c00197{left:111.300000px;}
.x2a_c00197{left:112.500000px;}
.xb1_c00197{left:113.550000px;}
.x126_c00197{left:114.600000px;}
.xd9_c00197{left:134.100000px;}
.x68_c00197{left:139.050000px;}
.xe6_c00197{left:140.850000px;}
.x34_c00197{left:143.250000px;}
.xa2_c00197{left:144.450000px;}
.xcf_c00197{left:145.950000px;}
.x43_c00197{left:147.750000px;}
.x127_c00197{left:150.300000px;}
.x1c_c00197{left:151.500000px;}
.x5c_c00197{left:155.700000px;}
.xef_c00197{left:158.400000px;}
.xc8_c00197{left:160.350000px;}
.x35_c00197{left:162.750000px;}
.x113_c00197{left:166.050000px;}
.x69_c00197{left:167.100000px;}
.x9a_c00197{left:169.350000px;}
.xb2_c00197{left:171.150000px;}
.x4_c00197{left:174.300000px;}
.x86_c00197{left:176.850000px;}
.x10_c00197{left:180.450000px;}
.x7e_c00197{left:181.650000px;}
.xa3_c00197{left:184.800000px;}
.x116_c00197{left:187.350000px;}
.x4e_c00197{left:188.700000px;}
.x5d_c00197{left:190.950000px;}
.xda_c00197{left:192.000000px;}
.x11b_c00197{left:193.350000px;}
.x73_c00197{left:195.150000px;}
.x5_c00197{left:197.400000px;}
.x117_c00197{left:199.200000px;}
.x36_c00197{left:200.550000px;}
.x10e_c00197{left:204.150000px;}
.xde_c00197{left:205.800000px;}
.xd0_c00197{left:206.850000px;}
.x6a_c00197{left:208.500000px;}
.x87_c00197{left:210.750000px;}
.x100_c00197{left:212.550000px;}
.xb3_c00197{left:215.100000px;}
.x2b_c00197{left:218.700000px;}
.xab_c00197{left:220.200000px;}
.x74_c00197{left:222.900000px;}
.xfa_c00197{left:226.500000px;}
.x7f_c00197{left:228.450000px;}
.x6_c00197{left:229.500000px;}
.xdf_c00197{left:231.300000px;}
.x121_c00197{left:232.650000px;}
.xf5_c00197{left:234.150000px;}
.x4f_c00197{left:235.500000px;}
.x5e_c00197{left:241.050000px;}
.x105_c00197{left:242.100000px;}
.x11c_c00197{left:244.500000px;}
.x134_c00197{left:245.850000px;}
.x128_c00197{left:247.800000px;}
.xc6_c00197{left:250.350000px;}
.x6b_c00197{left:252.000000px;}
.x1d_c00197{left:254.850000px;}
.xd1_c00197{left:258.300000px;}
.x11_c00197{left:260.100000px;}
.xac_c00197{left:261.900000px;}
.x10f_c00197{left:264.900000px;}
.x5f_c00197{left:266.550000px;}
.x2c_c00197{left:270.450000px;}
.xb4_c00197{left:271.650000px;}
.x37_c00197{left:274.350000px;}
.x1e_c00197{left:275.700000px;}
.x50_c00197{left:276.900000px;}
.x75_c00197{left:277.950000px;}
.x80_c00197{left:280.650000px;}
.x7_c00197{left:282.750000px;}
.x44_c00197{left:285.300000px;}
.x136_c00197{left:287.700000px;}
.x12d_c00197{left:289.200000px;}
.x122_c00197{left:290.700000px;}
.x90_c00197{left:292.050000px;}
.xe7_c00197{left:293.850000px;}
.xa4_c00197{left:296.100000px;}
.x51_c00197{left:297.750000px;}
.x110_c00197{left:299.100000px;}
.x81_c00197{left:301.500000px;}
.x12_c00197{left:303.300000px;}
.x1f_c00197{left:305.250000px;}
.x6c_c00197{left:307.500000px;}
.x129_c00197{left:311.100000px;}
.x13_c00197{left:314.100000px;}
.xe0_c00197{left:315.600000px;}
.xb5_c00197{left:318.450000px;}
.xfb_c00197{left:321.600000px;}
.x45_c00197{left:324.150000px;}
.x111_c00197{left:325.800000px;}
.x38_c00197{left:326.850000px;}
.xf0_c00197{left:328.950000px;}
.x52_c00197{left:331.200000px;}
.xbd_c00197{left:332.550000px;}
.xad_c00197{left:333.900000px;}
.x11d_c00197{left:335.100000px;}
.x8_c00197{left:339.300000px;}
.x6d_c00197{left:341.700000px;}
.xc9_c00197{left:342.900000px;}
.x14_c00197{left:343.950000px;}
.x91_c00197{left:345.750000px;}
.x10a_c00197{left:347.700000px;}
.xd2_c00197{left:349.650000px;}
.x53_c00197{left:351.000000px;}
.xfc_c00197{left:352.200000px;}
.x130_c00197{left:354.600000px;}
.x20_c00197{left:357.450000px;}
.x15_c00197{left:359.400000px;}
.x76_c00197{left:360.750000px;}
.x123_c00197{left:362.700000px;}
.x92_c00197{left:364.050000px;}
.x12a_c00197{left:365.100000px;}
.x39_c00197{left:366.150000px;}
.xf6_c00197{left:367.200000px;}
.x109_c00197{left:368.250000px;}
.x46_c00197{left:369.450000px;}
.x10b_c00197{left:371.400000px;}
.xca_c00197{left:372.450000px;}
.x131_c00197{left:374.100000px;}
.xd3_c00197{left:375.900000px;}
.x2d_c00197{left:378.900000px;}
.xdb_c00197{left:382.500000px;}
.x106_c00197{left:384.600000px;}
.x93_c00197{left:385.650000px;}
.xb6_c00197{left:386.850000px;}
.xa5_c00197{left:388.650000px;}
.x77_c00197{left:390.300000px;}
.x6e_c00197{left:393.900000px;}
.x47_c00197{left:394.950000px;}
.x82_c00197{left:396.450000px;}
.x88_c00197{left:399.000000px;}
.x12e_c00197{left:400.200000px;}
.x10c_c00197{left:402.000000px;}
.xf1_c00197{left:403.050000px;}
.x1_c00197{left:405.300000px;}
.xae_c00197{left:406.350000px;}
.x3a_c00197{left:409.050000px;}
.x9_c00197{left:410.550000px;}
.x60_c00197{left:412.650000px;}
.xe1_c00197{left:414.600000px;}
.x54_c00197{left:416.400000px;}
.x21_c00197{left:418.950000px;}
.x89_c00197{left:420.600000px;}
.x83_c00197{left:421.950000px;}
.xbe_c00197{left:423.150000px;}
.x48_c00197{left:425.850000px;}
.x3b_c00197{left:428.550000px;}
.x9b_c00197{left:430.350000px;}
.x13b_c00197{left:432.000000px;}
.x101_c00197{left:433.350000px;}
.x78_c00197{left:435.000000px;}
.x137_c00197{left:439.200000px;}
.x2e_c00197{left:440.400000px;}
.xa_c00197{left:441.450000px;}
.x8a_c00197{left:445.800000px;}
.x61_c00197{left:447.150000px;}
.xb7_c00197{left:448.350000px;}
.x16_c00197{left:450.150000px;}
.xbf_c00197{left:453.450000px;}
.x22_c00197{left:456.000000px;}
.xcb_c00197{left:457.350000px;}
.x102_c00197{left:458.850000px;}
.xa6_c00197{left:460.350000px;}
.x9c_c00197{left:461.700000px;}
.x3c_c00197{left:465.600000px;}
.x79_c00197{left:470.250000px;}
.x8b_c00197{left:471.300000px;}
.xe2_c00197{left:472.500000px;}
.x62_c00197{left:473.850000px;}
.x94_c00197{left:476.400000px;}
.x2f_c00197{left:478.500000px;}
.x138_c00197{left:479.550000px;}
.xb8_c00197{left:483.300000px;}
.x11e_c00197{left:484.950000px;}
.xa7_c00197{left:486.600000px;}
.x23_c00197{left:487.650000px;}
.xcc_c00197{left:489.750000px;}
.x49_c00197{left:492.150000px;}
.xfd_c00197{left:493.350000px;}
.x95_c00197{left:496.500000px;}
.xe3_c00197{left:498.000000px;}
.x63_c00197{left:500.850000px;}
.xc0_c00197{left:502.350000px;}
.x103_c00197{left:503.550000px;}
.xc7_c00197{left:506.100000px;}
.x55_c00197{left:507.900000px;}
.xd4_c00197{left:509.850000px;}
.xe8_c00197{left:510.900000px;}
.x30_c00197{left:512.400000px;}
.xdc_c00197{left:515.700000px;}
.x7a_c00197{left:517.350000px;}
.xb_c00197{left:519.600000px;}
.x17_c00197{left:521.850000px;}
.x24_c00197{left:524.700000px;}
.x56_c00197{left:527.400000px;}
.xd5_c00197{left:529.650000px;}
.x139_c00197{left:531.300000px;}
.x31_c00197{left:532.500000px;}
.x4a_c00197{left:533.850000px;}
.x8c_c00197{left:536.400000px;}
.x6f_c00197{left:539.400000px;}
.xee_c00197{left:541.050000px;}
.x124_c00197{left:542.400000px;}
.xa8_c00197{left:543.750000px;}
.x64_c00197{left:549.150000px;}
.x18_c00197{left:554.250000px;}
.x12f_c00197{left:555.300000px;}
.xc1_c00197{left:556.350000px;}
.x3d_c00197{left:558.150000px;}
.x70_c00197{left:559.200000px;}
.x32_c00197{left:562.050000px;}
.x96_c00197{left:564.150000px;}
.x107_c00197{left:566.550000px;}
.xe9_c00197{left:568.200000px;}
.x9d_c00197{left:570.450000px;}
.x65_c00197{left:572.550000px;}
.xaf_c00197{left:574.800000px;}
.x118_c00197{left:575.850000px;}
.xc_c00197{left:576.900000px;}
.x57_c00197{left:578.550000px;}
.x84_c00197{left:580.050000px;}
.xc2_c00197{left:581.850000px;}
.xb9_c00197{left:584.100000px;}
.x3e_c00197{left:586.200000px;}
.x12b_c00197{left:587.550000px;}
.x25_c00197{left:591.000000px;}
.x19_c00197{left:594.900000px;}
.xfe_c00197{left:597.000000px;}
.x66_c00197{left:598.050000px;}
.x71_c00197{left:599.850000px;}
.x13a_c00197{left:601.200000px;}
.x33_c00197{left:603.450000px;}
.xdd_c00197{left:607.200000px;}
.xd_c00197{left:610.350000px;}
.x11f_c00197{left:611.400000px;}
.x9e_c00197{left:612.450000px;}
.x97_c00197{left:613.500000px;}
.x114_c00197{left:615.000000px;}
.x7b_c00197{left:617.550000px;}
.xf2_c00197{left:619.650000px;}
.x58_c00197{left:622.800000px;}
.x26_c00197{left:624.150000px;}
.xcd_c00197{left:627.600000px;}
.x3f_c00197{left:630.900000px;}
.x108_c00197{left:632.850000px;}
.x8d_c00197{left:635.100000px;}
.x72_c00197{left:637.350000px;}
.xe_c00197{left:641.250000px;}
.xf7_c00197{left:642.750000px;}
.x7c_c00197{left:646.050000px;}
.x1a_c00197{left:647.850000px;}
.xce_c00197{left:649.950000px;}
.x9f_c00197{left:651.750000px;}
.x10d_c00197{left:654.450000px;}
.xe4_c00197{left:657.900000px;}
.x59_c00197{left:659.100000px;}
.xd6_c00197{left:661.050000px;}
.x4b_c00197{left:662.400000px;}
.xff_c00197{left:664.650000px;}
.xc3_c00197{left:666.750000px;}
.x125_c00197{left:669.450000px;}
.x40_c00197{left:670.500000px;}
.x27_c00197{left:672.750000px;}
.x119_c00197{left:674.250000px;}
.xa9_c00197{left:675.600000px;}
.xd7_c00197{left:680.550000px;}
.xf3_c00197{left:681.600000px;}
.xea_c00197{left:683.700000px;}
.x4c_c00197{left:685.500000px;}
.x98_c00197{left:688.050000px;}
.x8e_c00197{left:689.100000px;}
.x12c_c00197{left:691.350000px;}
.x28_c00197{left:693.600000px;}
.xf_c00197{left:696.000000px;}
.xaa_c00197{left:697.200000px;}
.x67_c00197{left:701.700000px;}
.xeb_c00197{left:703.200000px;}
.x132_c00197{left:704.850000px;}
.xd8_c00197{left:706.500000px;}
.x104_c00197{left:707.700000px;}
.xba_c00197{left:709.050000px;}
.x5a_c00197{left:711.600000px;}
.x41_c00197{left:712.950000px;}
.x11a_c00197{left:714.150000px;}
.xf8_c00197{left:716.550000px;}
.xa0_c00197{left:717.600000px;}
.x7d_c00197{left:722.700000px;}
.xbb_c00197{left:724.200000px;}
.x120_c00197{left:725.250000px;}
.xe5_c00197{left:726.600000px;}
.x29_c00197{left:728.100000px;}
.x1b_c00197{left:730.350000px;}
.xf4_c00197{left:732.750000px;}
.x112_c00197{left:735.300000px;}
.xf9_c00197{left:736.350000px;}
.x85_c00197{left:737.700000px;}
.xc4_c00197{left:739.350000px;}
.x8f_c00197{left:741.300000px;}
.xb0_c00197{left:743.250000px;}
.xec_c00197{left:744.300000px;}
.x115_c00197{left:745.350000px;}
.xa1_c00197{left:747.450000px;}
.x4d_c00197{left:750.300000px;}
.x2_c00197{left:751.950000px;}
.xc5_c00197{left:753.750000px;}
.x42_c00197{left:756.150000px;}
.xbc_c00197{left:758.700000px;}
.x99_c00197{left:759.750000px;}
.x133_c00197{left:762.150000px;}
.xed_c00197{left:764.100000px;}
.x5b_c00197{left:766.350000px;}
.x135_c00197{left:774.150000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.wsb_c00197{word-spacing:-6.589915pt;}
.ws8_c00197{word-spacing:-1.670657pt;}
.wsc_c00197{word-spacing:0.000000pt;}
.ws0_c00197{word-spacing:3.468916pt;}
.ws1_c00197{word-spacing:5.975633pt;}
.ws6_c00197{word-spacing:6.555556pt;}
.ws3_c00197{word-spacing:7.718328pt;}
.ws7_c00197{word-spacing:8.111111pt;}
.ws2_c00197{word-spacing:9.111111pt;}
.ws5_c00197{word-spacing:11.458378pt;}
.ws4_c00197{word-spacing:13.555556pt;}
.ws9_c00197{word-spacing:16.717949pt;}
.wsa_c00197{word-spacing:18.774597pt;}
._0_c00197{width:21.968764pt;}
.fs0_c00197{font-size:48.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y2c_c00197{bottom:139.733333pt;}
.y2b_c00197{bottom:155.466667pt;}
.y2a_c00197{bottom:192.533333pt;}
.y29_c00197{bottom:210.133333pt;}
.y28_c00197{bottom:227.733333pt;}
.y27_c00197{bottom:245.600000pt;}
.y26_c00197{bottom:263.866667pt;}
.y25_c00197{bottom:281.200000pt;}
.y24_c00197{bottom:299.066667pt;}
.y23_c00197{bottom:316.933333pt;}
.y22_c00197{bottom:334.533333pt;}
.y21_c00197{bottom:352.400000pt;}
.y20_c00197{bottom:370.000000pt;}
.y1f_c00197{bottom:387.866667pt;}
.y1e_c00197{bottom:406.133333pt;}
.y1d_c00197{bottom:424.000000pt;}
.y1c_c00197{bottom:441.600000pt;}
.y1b_c00197{bottom:459.200000pt;}
.y1a_c00197{bottom:476.800000pt;}
.y19_c00197{bottom:494.666667pt;}
.y18_c00197{bottom:512.266667pt;}
.y17_c00197{bottom:530.133333pt;}
.y16_c00197{bottom:548.000000pt;}
.y15_c00197{bottom:565.866667pt;}
.y14_c00197{bottom:583.466667pt;}
.y13_c00197{bottom:601.066667pt;}
.y12_c00197{bottom:619.333333pt;}
.y11_c00197{bottom:637.200000pt;}
.y10_c00197{bottom:654.800000pt;}
.yf_c00197{bottom:672.400000pt;}
.ye_c00197{bottom:690.266667pt;}
.yd_c00197{bottom:708.133333pt;}
.yc_c00197{bottom:726.000000pt;}
.yb_c00197{bottom:743.866667pt;}
.ya_c00197{bottom:761.466667pt;}
.y9_c00197{bottom:779.066667pt;}
.y8_c00197{bottom:796.933333pt;}
.y7_c00197{bottom:814.800000pt;}
.y6_c00197{bottom:832.666667pt;}
.y5_c00197{bottom:850.933333pt;}
.y4_c00197{bottom:868.800000pt;}
.y3_c00197{bottom:886.400000pt;}
.y2_c00197{bottom:904.266667pt;}
.y1_c00197{bottom:937.600000pt;}
.h2_c00197{height:48.000000pt;}
.h0_c00197{height:1037.119955pt;}
.h1_c00197{height:1037.333333pt;}
.w0_c00197{width:816.640056pt;}
.w1_c00197{width:816.666667pt;}
.x0_c00197{left:0.000000pt;}
.x3_c00197{left:98.933333pt;}
.x2a_c00197{left:100.000000pt;}
.xb1_c00197{left:100.933333pt;}
.x126_c00197{left:101.866667pt;}
.xd9_c00197{left:119.200000pt;}
.x68_c00197{left:123.600000pt;}
.xe6_c00197{left:125.200000pt;}
.x34_c00197{left:127.333333pt;}
.xa2_c00197{left:128.400000pt;}
.xcf_c00197{left:129.733333pt;}
.x43_c00197{left:131.333333pt;}
.x127_c00197{left:133.600000pt;}
.x1c_c00197{left:134.666667pt;}
.x5c_c00197{left:138.400000pt;}
.xef_c00197{left:140.800000pt;}
.xc8_c00197{left:142.533333pt;}
.x35_c00197{left:144.666667pt;}
.x113_c00197{left:147.600000pt;}
.x69_c00197{left:148.533333pt;}
.x9a_c00197{left:150.533333pt;}
.xb2_c00197{left:152.133333pt;}
.x4_c00197{left:154.933333pt;}
.x86_c00197{left:157.200000pt;}
.x10_c00197{left:160.400000pt;}
.x7e_c00197{left:161.466667pt;}
.xa3_c00197{left:164.266667pt;}
.x116_c00197{left:166.533333pt;}
.x4e_c00197{left:167.733333pt;}
.x5d_c00197{left:169.733333pt;}
.xda_c00197{left:170.666667pt;}
.x11b_c00197{left:171.866667pt;}
.x73_c00197{left:173.466667pt;}
.x5_c00197{left:175.466667pt;}
.x117_c00197{left:177.066667pt;}
.x36_c00197{left:178.266667pt;}
.x10e_c00197{left:181.466667pt;}
.xde_c00197{left:182.933333pt;}
.xd0_c00197{left:183.866667pt;}
.x6a_c00197{left:185.333333pt;}
.x87_c00197{left:187.333333pt;}
.x100_c00197{left:188.933333pt;}
.xb3_c00197{left:191.200000pt;}
.x2b_c00197{left:194.400000pt;}
.xab_c00197{left:195.733333pt;}
.x74_c00197{left:198.133333pt;}
.xfa_c00197{left:201.333333pt;}
.x7f_c00197{left:203.066667pt;}
.x6_c00197{left:204.000000pt;}
.xdf_c00197{left:205.600000pt;}
.x121_c00197{left:206.800000pt;}
.xf5_c00197{left:208.133333pt;}
.x4f_c00197{left:209.333333pt;}
.x5e_c00197{left:214.266667pt;}
.x105_c00197{left:215.200000pt;}
.x11c_c00197{left:217.333333pt;}
.x134_c00197{left:218.533333pt;}
.x128_c00197{left:220.266667pt;}
.xc6_c00197{left:222.533333pt;}
.x6b_c00197{left:224.000000pt;}
.x1d_c00197{left:226.533333pt;}
.xd1_c00197{left:229.600000pt;}
.x11_c00197{left:231.200000pt;}
.xac_c00197{left:232.800000pt;}
.x10f_c00197{left:235.466667pt;}
.x5f_c00197{left:236.933333pt;}
.x2c_c00197{left:240.400000pt;}
.xb4_c00197{left:241.466667pt;}
.x37_c00197{left:243.866667pt;}
.x1e_c00197{left:245.066667pt;}
.x50_c00197{left:246.133333pt;}
.x75_c00197{left:247.066667pt;}
.x80_c00197{left:249.466667pt;}
.x7_c00197{left:251.333333pt;}
.x44_c00197{left:253.600000pt;}
.x136_c00197{left:255.733333pt;}
.x12d_c00197{left:257.066667pt;}
.x122_c00197{left:258.400000pt;}
.x90_c00197{left:259.600000pt;}
.xe7_c00197{left:261.200000pt;}
.xa4_c00197{left:263.200000pt;}
.x51_c00197{left:264.666667pt;}
.x110_c00197{left:265.866667pt;}
.x81_c00197{left:268.000000pt;}
.x12_c00197{left:269.600000pt;}
.x1f_c00197{left:271.333333pt;}
.x6c_c00197{left:273.333333pt;}
.x129_c00197{left:276.533333pt;}
.x13_c00197{left:279.200000pt;}
.xe0_c00197{left:280.533333pt;}
.xb5_c00197{left:283.066667pt;}
.xfb_c00197{left:285.866667pt;}
.x45_c00197{left:288.133333pt;}
.x111_c00197{left:289.600000pt;}
.x38_c00197{left:290.533333pt;}
.xf0_c00197{left:292.400000pt;}
.x52_c00197{left:294.400000pt;}
.xbd_c00197{left:295.600000pt;}
.xad_c00197{left:296.800000pt;}
.x11d_c00197{left:297.866667pt;}
.x8_c00197{left:301.600000pt;}
.x6d_c00197{left:303.733333pt;}
.xc9_c00197{left:304.800000pt;}
.x14_c00197{left:305.733333pt;}
.x91_c00197{left:307.333333pt;}
.x10a_c00197{left:309.066667pt;}
.xd2_c00197{left:310.800000pt;}
.x53_c00197{left:312.000000pt;}
.xfc_c00197{left:313.066667pt;}
.x130_c00197{left:315.200000pt;}
.x20_c00197{left:317.733333pt;}
.x15_c00197{left:319.466667pt;}
.x76_c00197{left:320.666667pt;}
.x123_c00197{left:322.400000pt;}
.x92_c00197{left:323.600000pt;}
.x12a_c00197{left:324.533333pt;}
.x39_c00197{left:325.466667pt;}
.xf6_c00197{left:326.400000pt;}
.x109_c00197{left:327.333333pt;}
.x46_c00197{left:328.400000pt;}
.x10b_c00197{left:330.133333pt;}
.xca_c00197{left:331.066667pt;}
.x131_c00197{left:332.533333pt;}
.xd3_c00197{left:334.133333pt;}
.x2d_c00197{left:336.800000pt;}
.xdb_c00197{left:340.000000pt;}
.x106_c00197{left:341.866667pt;}
.x93_c00197{left:342.800000pt;}
.xb6_c00197{left:343.866667pt;}
.xa5_c00197{left:345.466667pt;}
.x77_c00197{left:346.933333pt;}
.x6e_c00197{left:350.133333pt;}
.x47_c00197{left:351.066667pt;}
.x82_c00197{left:352.400000pt;}
.x88_c00197{left:354.666667pt;}
.x12e_c00197{left:355.733333pt;}
.x10c_c00197{left:357.333333pt;}
.xf1_c00197{left:358.266667pt;}
.x1_c00197{left:360.266667pt;}
.xae_c00197{left:361.200000pt;}
.x3a_c00197{left:363.600000pt;}
.x9_c00197{left:364.933333pt;}
.x60_c00197{left:366.800000pt;}
.xe1_c00197{left:368.533333pt;}
.x54_c00197{left:370.133333pt;}
.x21_c00197{left:372.400000pt;}
.x89_c00197{left:373.866667pt;}
.x83_c00197{left:375.066667pt;}
.xbe_c00197{left:376.133333pt;}
.x48_c00197{left:378.533333pt;}
.x3b_c00197{left:380.933333pt;}
.x9b_c00197{left:382.533333pt;}
.x13b_c00197{left:384.000000pt;}
.x101_c00197{left:385.200000pt;}
.x78_c00197{left:386.666667pt;}
.x137_c00197{left:390.400000pt;}
.x2e_c00197{left:391.466667pt;}
.xa_c00197{left:392.400000pt;}
.x8a_c00197{left:396.266667pt;}
.x61_c00197{left:397.466667pt;}
.xb7_c00197{left:398.533333pt;}
.x16_c00197{left:400.133333pt;}
.xbf_c00197{left:403.066667pt;}
.x22_c00197{left:405.333333pt;}
.xcb_c00197{left:406.533333pt;}
.x102_c00197{left:407.866667pt;}
.xa6_c00197{left:409.200000pt;}
.x9c_c00197{left:410.400000pt;}
.x3c_c00197{left:413.866667pt;}
.x79_c00197{left:418.000000pt;}
.x8b_c00197{left:418.933333pt;}
.xe2_c00197{left:420.000000pt;}
.x62_c00197{left:421.200000pt;}
.x94_c00197{left:423.466667pt;}
.x2f_c00197{left:425.333333pt;}
.x138_c00197{left:426.266667pt;}
.xb8_c00197{left:429.600000pt;}
.x11e_c00197{left:431.066667pt;}
.xa7_c00197{left:432.533333pt;}
.x23_c00197{left:433.466667pt;}
.xcc_c00197{left:435.333333pt;}
.x49_c00197{left:437.466667pt;}
.xfd_c00197{left:438.533333pt;}
.x95_c00197{left:441.333333pt;}
.xe3_c00197{left:442.666667pt;}
.x63_c00197{left:445.200000pt;}
.xc0_c00197{left:446.533333pt;}
.x103_c00197{left:447.600000pt;}
.xc7_c00197{left:449.866667pt;}
.x55_c00197{left:451.466667pt;}
.xd4_c00197{left:453.200000pt;}
.xe8_c00197{left:454.133333pt;}
.x30_c00197{left:455.466667pt;}
.xdc_c00197{left:458.400000pt;}
.x7a_c00197{left:459.866667pt;}
.xb_c00197{left:461.866667pt;}
.x17_c00197{left:463.866667pt;}
.x24_c00197{left:466.400000pt;}
.x56_c00197{left:468.800000pt;}
.xd5_c00197{left:470.800000pt;}
.x139_c00197{left:472.266667pt;}
.x31_c00197{left:473.333333pt;}
.x4a_c00197{left:474.533333pt;}
.x8c_c00197{left:476.800000pt;}
.x6f_c00197{left:479.466667pt;}
.xee_c00197{left:480.933333pt;}
.x124_c00197{left:482.133333pt;}
.xa8_c00197{left:483.333333pt;}
.x64_c00197{left:488.133333pt;}
.x18_c00197{left:492.666667pt;}
.x12f_c00197{left:493.600000pt;}
.xc1_c00197{left:494.533333pt;}
.x3d_c00197{left:496.133333pt;}
.x70_c00197{left:497.066667pt;}
.x32_c00197{left:499.600000pt;}
.x96_c00197{left:501.466667pt;}
.x107_c00197{left:503.600000pt;}
.xe9_c00197{left:505.066667pt;}
.x9d_c00197{left:507.066667pt;}
.x65_c00197{left:508.933333pt;}
.xaf_c00197{left:510.933333pt;}
.x118_c00197{left:511.866667pt;}
.xc_c00197{left:512.800000pt;}
.x57_c00197{left:514.266667pt;}
.x84_c00197{left:515.600000pt;}
.xc2_c00197{left:517.200000pt;}
.xb9_c00197{left:519.200000pt;}
.x3e_c00197{left:521.066667pt;}
.x12b_c00197{left:522.266667pt;}
.x25_c00197{left:525.333333pt;}
.x19_c00197{left:528.800000pt;}
.xfe_c00197{left:530.666667pt;}
.x66_c00197{left:531.600000pt;}
.x71_c00197{left:533.200000pt;}
.x13a_c00197{left:534.400000pt;}
.x33_c00197{left:536.400000pt;}
.xdd_c00197{left:539.733333pt;}
.xd_c00197{left:542.533333pt;}
.x11f_c00197{left:543.466667pt;}
.x9e_c00197{left:544.400000pt;}
.x97_c00197{left:545.333333pt;}
.x114_c00197{left:546.666667pt;}
.x7b_c00197{left:548.933333pt;}
.xf2_c00197{left:550.800000pt;}
.x58_c00197{left:553.600000pt;}
.x26_c00197{left:554.800000pt;}
.xcd_c00197{left:557.866667pt;}
.x3f_c00197{left:560.800000pt;}
.x108_c00197{left:562.533333pt;}
.x8d_c00197{left:564.533333pt;}
.x72_c00197{left:566.533333pt;}
.xe_c00197{left:570.000000pt;}
.xf7_c00197{left:571.333333pt;}
.x7c_c00197{left:574.266667pt;}
.x1a_c00197{left:575.866667pt;}
.xce_c00197{left:577.733333pt;}
.x9f_c00197{left:579.333333pt;}
.x10d_c00197{left:581.733333pt;}
.xe4_c00197{left:584.800000pt;}
.x59_c00197{left:585.866667pt;}
.xd6_c00197{left:587.600000pt;}
.x4b_c00197{left:588.800000pt;}
.xff_c00197{left:590.800000pt;}
.xc3_c00197{left:592.666667pt;}
.x125_c00197{left:595.066667pt;}
.x40_c00197{left:596.000000pt;}
.x27_c00197{left:598.000000pt;}
.x119_c00197{left:599.333333pt;}
.xa9_c00197{left:600.533333pt;}
.xd7_c00197{left:604.933333pt;}
.xf3_c00197{left:605.866667pt;}
.xea_c00197{left:607.733333pt;}
.x4c_c00197{left:609.333333pt;}
.x98_c00197{left:611.600000pt;}
.x8e_c00197{left:612.533333pt;}
.x12c_c00197{left:614.533333pt;}
.x28_c00197{left:616.533333pt;}
.xf_c00197{left:618.666667pt;}
.xaa_c00197{left:619.733333pt;}
.x67_c00197{left:623.733333pt;}
.xeb_c00197{left:625.066667pt;}
.x132_c00197{left:626.533333pt;}
.xd8_c00197{left:628.000000pt;}
.x104_c00197{left:629.066667pt;}
.xba_c00197{left:630.266667pt;}
.x5a_c00197{left:632.533333pt;}
.x41_c00197{left:633.733333pt;}
.x11a_c00197{left:634.800000pt;}
.xf8_c00197{left:636.933333pt;}
.xa0_c00197{left:637.866667pt;}
.x7d_c00197{left:642.400000pt;}
.xbb_c00197{left:643.733333pt;}
.x120_c00197{left:644.666667pt;}
.xe5_c00197{left:645.866667pt;}
.x29_c00197{left:647.200000pt;}
.x1b_c00197{left:649.200000pt;}
.xf4_c00197{left:651.333333pt;}
.x112_c00197{left:653.600000pt;}
.xf9_c00197{left:654.533333pt;}
.x85_c00197{left:655.733333pt;}
.xc4_c00197{left:657.200000pt;}
.x8f_c00197{left:658.933333pt;}
.xb0_c00197{left:660.666667pt;}
.xec_c00197{left:661.600000pt;}
.x115_c00197{left:662.533333pt;}
.xa1_c00197{left:664.400000pt;}
.x4d_c00197{left:666.933333pt;}
.x2_c00197{left:668.400000pt;}
.xc5_c00197{left:670.000000pt;}
.x42_c00197{left:672.133333pt;}
.xbc_c00197{left:674.400000pt;}
.x99_c00197{left:675.333333pt;}
.x133_c00197{left:677.466667pt;}
.xed_c00197{left:679.200000pt;}
.x5b_c00197{left:681.200000pt;}
.x135_c00197{left:688.133333pt;}
}





/* 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_c00198 {
    display:none;
  }
  .loading-indicator_c00198.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00198 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_c00198 { 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_c00198" -> "#page-container .classname_c00198")
 */
.pf_c00198 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00198 { /* 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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00198 { /* 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_c00198 { /* 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_c00198 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00198 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00198 {overflow:visible;}
  }
}
.c_c00198 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00198 { /* 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_c00198:after { /* webkit #35443 */
  content: '';
}
.t_c00198:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00198 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 */
}
.__c00198 { /* 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_c00198 { /* info for Javascript */
  display:none;
}
.l_c00198 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00198 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00198 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00198: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_c00198 {
    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_c00198.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00198.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_c00198 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00198{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00198;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.000000;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;}
.m6d_c00198{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00198{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00198{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mae_c00198{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.md_c00198{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.me_c00198{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m40_c00198{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00198{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m9_c00198{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m63_c00198{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00198{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m65_c00198{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00198{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00198{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00198{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00198{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mab_c00198{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m23_c00198{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mac_c00198{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00198{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00198{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00198{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m81_c00198{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00198{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m55_c00198{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00198{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00198{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00198{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m84_c00198{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m39_c00198{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m42_c00198{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma_c00198{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00198{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m35_c00198{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m51_c00198{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mb_c00198{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m94_c00198{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00198{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m37_c00198{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00198{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00198{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m31_c00198{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m83_c00198{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m69_c00198{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m22_c00198{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00198{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7_c00198{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00198{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m17_c00198{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m68_c00198{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00198{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00198{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00198{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m96_c00198{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m61_c00198{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00198{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00198{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m66_c00198{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m49_c00198{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c00198{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00198{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10_c00198{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00198{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00198{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00198{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00198{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m75_c00198{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00198{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00198{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mf_c00198{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00198{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00198{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m95_c00198{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m27_c00198{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00198{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00198{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m34_c00198{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11_c00198{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00198{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m87_c00198{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00198{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00198{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00198{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00198{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00198{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m47_c00198{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m90_c00198{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m24_c00198{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m53_c00198{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21_c00198{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00198{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00198{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m46_c00198{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);}
.m20_c00198{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m72_c00198{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00198{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m70_c00198{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13_c00198{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m92_c00198{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00198{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m60_c00198{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00198{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00198{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m15_c00198{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00198{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m16_c00198{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00198{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m18_c00198{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00198{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m93_c00198{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4_c00198{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00198{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m30_c00198{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5_c00198{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m89_c00198{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00198{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m98_c00198{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m38_c00198{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m86_c00198{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00198{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8_c00198{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m28_c00198{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00198{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m33_c00198{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m77_c00198{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00198{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3_c00198{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00198{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00198{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m59_c00198{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00198{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00198{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m14_c00198{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00198{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m57_c00198{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m91_c00198{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00198{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00198{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00198{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00198{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m71_c00198{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m43_c00198{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00198{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00198{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00198{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m50_c00198{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m80_c00198{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m45_c00198{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m73_c00198{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m25_c00198{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m99_c00198{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m52_c00198{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m82_c00198{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m74_c00198{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m6_c00198{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00198{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m88_c00198{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m76_c00198{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00198{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m79_c00198{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m44_c00198{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m67_c00198{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m32_c00198{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00198{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m56_c00198{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m85_c00198{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00198{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mc_c00198{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00198{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00198{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m97_c00198{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m41_c00198{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00198{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00198{vertical-align:0.000000px;}
.ls0_c00198{letter-spacing:0.000000px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{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__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00198{word-spacing:-4.347483px;}
.ws7_c00198{word-spacing:-2.285141px;}
.ws8_c00198{word-spacing:0.000000px;}
.ws3_c00198{word-spacing:2.236962px;}
.ws4_c00198{word-spacing:4.432754px;}
.ws5_c00198{word-spacing:4.650602px;}
.ws2_c00198{word-spacing:7.250000px;}
.ws6_c00198{word-spacing:10.901874px;}
.ws0_c00198{word-spacing:19.250000px;}
.fc0_c00198{color:transparent;}
.fs0_c00198{font-size:54.000000px;}
.y0_c00198{bottom:0.000000px;}
.y2c_c00198{bottom:150.900000px;}
.y2b_c00198{bottom:191.550000px;}
.y2a_c00198{bottom:211.350000px;}
.y29_c00198{bottom:231.150000px;}
.y28_c00198{bottom:251.250000px;}
.y27_c00198{bottom:270.750000px;}
.y26_c00198{bottom:291.600000px;}
.y25_c00198{bottom:311.100000px;}
.y24_c00198{bottom:330.900000px;}
.y23_c00198{bottom:351.000000px;}
.y22_c00198{bottom:370.800000px;}
.y21_c00198{bottom:390.600000px;}
.y20_c00198{bottom:410.700000px;}
.y1f_c00198{bottom:431.100000px;}
.y1e_c00198{bottom:451.200000px;}
.y1d_c00198{bottom:471.300000px;}
.y1c_c00198{bottom:491.100000px;}
.y1b_c00198{bottom:511.200000px;}
.y1a_c00198{bottom:531.000000px;}
.y19_c00198{bottom:551.100000px;}
.y18_c00198{bottom:570.900000px;}
.y17_c00198{bottom:591.000000px;}
.y16_c00198{bottom:610.800000px;}
.y15_c00198{bottom:630.900000px;}
.y14_c00198{bottom:650.700000px;}
.y13_c00198{bottom:670.500000px;}
.y12_c00198{bottom:690.600000px;}
.y11_c00198{bottom:710.700000px;}
.y10_c00198{bottom:730.500000px;}
.yf_c00198{bottom:750.300000px;}
.ye_c00198{bottom:770.850000px;}
.yd_c00198{bottom:790.950000px;}
.yc_c00198{bottom:810.750000px;}
.yb_c00198{bottom:830.850000px;}
.ya_c00198{bottom:850.650000px;}
.y9_c00198{bottom:870.600000px;}
.y8_c00198{bottom:890.700000px;}
.y7_c00198{bottom:910.500000px;}
.y6_c00198{bottom:930.600000px;}
.y5_c00198{bottom:950.400000px;}
.y4_c00198{bottom:970.950000px;}
.y3_c00198{bottom:990.750000px;}
.y2_c00198{bottom:1010.850000px;}
.y1_c00198{bottom:1049.700000px;}
.h2_c00198{height:54.000000px;}
.h0_c00198{height:1166.759949px;}
.h1_c00198{height:1167.000000px;}
.w0_c00198{width:918.720063px;}
.w1_c00198{width:918.750000px;}
.x0_c00198{left:0.000000px;}
.xfb_c00198{left:132.300000px;}
.xe2_c00198{left:133.800000px;}
.x91_c00198{left:134.850000px;}
.x26_c00198{left:136.050000px;}
.x3_c00198{left:137.100000px;}
.x1_c00198{left:138.900000px;}
.xe9_c00198{left:154.950000px;}
.x126_c00198{left:157.950000px;}
.x9d_c00198{left:159.450000px;}
.xcd_c00198{left:160.950000px;}
.x75_c00198{left:163.950000px;}
.x64_c00198{left:165.450000px;}
.x6a_c00198{left:167.100000px;}
.x10c_c00198{left:170.700000px;}
.x132_c00198{left:173.850000px;}
.xaf_c00198{left:175.500000px;}
.x50_c00198{left:176.550000px;}
.xea_c00198{left:178.350000px;}
.x15_c00198{left:180.300000px;}
.x120_c00198{left:181.650000px;}
.xba_c00198{left:184.350000px;}
.x4_c00198{left:187.200000px;}
.x65_c00198{left:188.550000px;}
.xe3_c00198{left:190.650000px;}
.xb0_c00198{left:193.200000px;}
.xdc_c00198{left:195.000000px;}
.x116_c00198{left:196.200000px;}
.xce_c00198{left:197.250000px;}
.x7f_c00198{left:198.300000px;}
.x43_c00198{left:200.700000px;}
.x10d_c00198{left:202.350000px;}
.x12f_c00198{left:204.150000px;}
.x106_c00198{left:207.300000px;}
.x9e_c00198{left:208.350000px;}
.x5_c00198{left:209.850000px;}
.xf5_c00198{left:210.900000px;}
.x34_c00198{left:211.950000px;}
.x27_c00198{left:214.200000px;}
.x89_c00198{left:217.200000px;}
.x6b_c00198{left:219.300000px;}
.xb1_c00198{left:221.700000px;}
.x44_c00198{left:223.800000px;}
.xdd_c00198{left:225.900000px;}
.x66_c00198{left:227.400000px;}
.xc5_c00198{left:228.450000px;}
.x133_c00198{left:229.650000px;}
.xd3_c00198{left:232.200000px;}
.x16_c00198{left:235.800000px;}
.xbb_c00198{left:237.600000px;}
.x117_c00198{left:240.150000px;}
.x45_c00198{left:241.800000px;}
.xa6_c00198{left:243.750000px;}
.x28_c00198{left:244.800000px;}
.x9f_c00198{left:245.850000px;}
.x8a_c00198{left:247.050000px;}
.x128_c00198{left:248.100000px;}
.xcf_c00198{left:252.300000px;}
.x6_c00198{left:253.350000px;}
.x76_c00198{left:255.000000px;}
.x51_c00198{left:256.800000px;}
.x17_c00198{left:258.450000px;}
.xe4_c00198{left:260.100000px;}
.x121_c00198{left:261.900000px;}
.xa7_c00198{left:263.850000px;}
.x67_c00198{left:265.200000px;}
.xfc_c00198{left:266.550000px;}
.x5c_c00198{left:267.750000px;}
.x127_c00198{left:269.550000px;}
.x35_c00198{left:272.100000px;}
.x102_c00198{left:276.150000px;}
.x111_c00198{left:277.200000px;}
.xf6_c00198{left:279.300000px;}
.x68_c00198{left:280.350000px;}
.xb2_c00198{left:284.700000px;}
.x5d_c00198{left:285.750000px;}
.x18_c00198{left:287.550000px;}
.x7_c00198{left:289.650000px;}
.x52_c00198{left:291.300000px;}
.x92_c00198{left:292.800000px;}
.xc6_c00198{left:294.000000px;}
.x12d_c00198{left:295.500000px;}
.x69_c00198{left:297.300000px;}
.x118_c00198{left:298.800000px;}
.x80_c00198{left:303.750000px;}
.xbc_c00198{left:304.950000px;}
.x36_c00198{left:307.350000px;}
.xf0_c00198{left:309.600000px;}
.xc7_c00198{left:310.950000px;}
.x77_c00198{left:313.950000px;}
.x8b_c00198{left:316.050000px;}
.x93_c00198{left:318.000000px;}
.x29_c00198{left:322.500000px;}
.x8_c00198{left:324.150000px;}
.x46_c00198{left:325.350000px;}
.x12e_c00198{left:327.600000px;}
.x19_c00198{left:330.750000px;}
.x37_c00198{left:333.300000px;}
.xb3_c00198{left:335.850000px;}
.x81_c00198{left:337.200000px;}
.x129_c00198{left:338.550000px;}
.xeb_c00198{left:342.600000px;}
.xfd_c00198{left:343.650000px;}
.x94_c00198{left:344.700000px;}
.x9_c00198{left:345.750000px;}
.xe6_c00198{left:347.850000px;}
.x38_c00198{left:350.250000px;}
.xde_c00198{left:352.500000px;}
.x119_c00198{left:353.550000px;}
.x5e_c00198{left:354.900000px;}
.xa8_c00198{left:357.450000px;}
.xa0_c00198{left:359.250000px;}
.x47_c00198{left:361.650000px;}
.x2a_c00198{left:364.950000px;}
.x95_c00198{left:366.300000px;}
.x109_c00198{left:367.650000px;}
.x82_c00198{left:369.600000px;}
.xfe_c00198{left:371.400000px;}
.xbd_c00198{left:374.700000px;}
.x39_c00198{left:375.750000px;}
.x5f_c00198{left:378.300000px;}
.xd4_c00198{left:379.350000px;}
.xc8_c00198{left:380.850000px;}
.xa1_c00198{left:383.700000px;}
.x1a_c00198{left:384.750000px;}
.x12a_c00198{left:386.850000px;}
.xb4_c00198{left:388.050000px;}
.xa_c00198{left:390.000000px;}
.x48_c00198{left:393.000000px;}
.x96_c00198{left:394.350000px;}
.xf1_c00198{left:396.000000px;}
.x2b_c00198{left:397.650000px;}
.x11c_c00198{left:399.600000px;}
.xf7_c00198{left:402.300000px;}
.x1b_c00198{left:404.250000px;}
.x103_c00198{left:406.200000px;}
.x53_c00198{left:408.600000px;}
.x6c_c00198{left:411.600000px;}
.x83_c00198{left:412.800000px;}
.xb_c00198{left:414.450000px;}
.xd5_c00198{left:417.900000px;}
.xe7_c00198{left:420.900000px;}
.x54_c00198{left:423.000000px;}
.xdf_c00198{left:425.250000px;}
.x6d_c00198{left:428.850000px;}
.xa9_c00198{left:431.700000px;}
.x112_c00198{left:433.050000px;}
.x84_c00198{left:434.100000px;}
.x2_c00198{left:435.600000px;}
.x55_c00198{left:438.150000px;}
.xc_c00198{left:439.950000px;}
.x49_c00198{left:448.800000px;}
.x78_c00198{left:450.150000px;}
.x97_c00198{left:451.650000px;}
.x3a_c00198{left:454.650000px;}
.xa2_c00198{left:456.000000px;}
.xd6_c00198{left:457.200000px;}
.xf2_c00198{left:458.700000px;}
.xd_c00198{left:460.050000px;}
.x1c_c00198{left:461.400000px;}
.xec_c00198{left:467.550000px;}
.xe0_c00198{left:469.950000px;}
.x79_c00198{left:471.450000px;}
.x11a_c00198{left:473.100000px;}
.x4a_c00198{left:476.550000px;}
.x134_c00198{left:477.750000px;}
.x2c_c00198{left:479.100000px;}
.xc9_c00198{left:480.150000px;}
.xaa_c00198{left:481.800000px;}
.xb5_c00198{left:483.900000px;}
.x130_c00198{left:485.250000px;}
.x56_c00198{left:487.500000px;}
.xe_c00198{left:489.600000px;}
.x98_c00198{left:491.250000px;}
.x10a_c00198{left:494.700000px;}
.x6e_c00198{left:495.750000px;}
.xf8_c00198{left:499.050000px;}
.xbe_c00198{left:503.850000px;}
.xb6_c00198{left:505.200000px;}
.xab_c00198{left:507.300000px;}
.xf_c00198{left:508.350000px;}
.x104_c00198{left:510.300000px;}
.x2d_c00198{left:511.500000px;}
.x3b_c00198{left:513.000000px;}
.x12b_c00198{left:515.400000px;}
.xd7_c00198{left:519.450000px;}
.x6f_c00198{left:521.250000px;}
.xbf_c00198{left:523.650000px;}
.xff_c00198{left:525.450000px;}
.x10_c00198{left:529.200000px;}
.x57_c00198{left:532.200000px;}
.x85_c00198{left:535.650000px;}
.xa3_c00198{left:537.300000px;}
.x3c_c00198{left:538.500000px;}
.x99_c00198{left:539.550000px;}
.x4b_c00198{left:540.600000px;}
.xca_c00198{left:542.100000px;}
.xd8_c00198{left:543.600000px;}
.xe1_c00198{left:546.000000px;}
.x1d_c00198{left:547.050000px;}
.x58_c00198{left:549.900000px;}
.x2e_c00198{left:551.850000px;}
.x8c_c00198{left:555.750000px;}
.x122_c00198{left:557.400000px;}
.x70_c00198{left:559.800000px;}
.x1e_c00198{left:563.550000px;}
.xa4_c00198{left:566.100000px;}
.x135_c00198{left:568.050000px;}
.x3d_c00198{left:569.400000px;}
.xed_c00198{left:571.650000px;}
.xc0_c00198{left:574.800000px;}
.x7a_c00198{left:577.650000px;}
.x9a_c00198{left:579.900000px;}
.xcb_c00198{left:580.950000px;}
.xd0_c00198{left:582.150000px;}
.x60_c00198{left:585.300000px;}
.xee_c00198{left:586.350000px;}
.x100_c00198{left:587.700000px;}
.xf9_c00198{left:591.150000px;}
.x1f_c00198{left:593.850000px;}
.x7b_c00198{left:597.150000px;}
.x2f_c00198{left:600.150000px;}
.xe8_c00198{left:601.200000px;}
.xac_c00198{left:603.600000px;}
.x3e_c00198{left:605.100000px;}
.x11_c00198{left:607.950000px;}
.x11d_c00198{left:609.450000px;}
.xc1_c00198{left:611.100000px;}
.x8d_c00198{left:613.650000px;}
.x4c_c00198{left:617.700000px;}
.x20_c00198{left:620.550000px;}
.x71_c00198{left:623.100000px;}
.x59_c00198{left:624.450000px;}
.xb7_c00198{left:629.100000px;}
.x12_c00198{left:631.050000px;}
.x10e_c00198{left:632.850000px;}
.x3f_c00198{left:633.900000px;}
.x86_c00198{left:635.400000px;}
.x30_c00198{left:636.450000px;}
.x8e_c00198{left:638.850000px;}
.xd9_c00198{left:640.800000px;}
.x113_c00198{left:644.100000px;}
.xad_c00198{left:646.050000px;}
.x4d_c00198{left:648.600000px;}
.x9b_c00198{left:651.600000px;}
.x105_c00198{left:654.000000px;}
.xd1_c00198{left:655.950000px;}
.x13_c00198{left:658.050000px;}
.x40_c00198{left:659.400000px;}
.xe5_c00198{left:661.050000px;}
.x21_c00198{left:663.750000px;}
.x72_c00198{left:665.550000px;}
.xf3_c00198{left:666.750000px;}
.x107_c00198{left:669.150000px;}
.x114_c00198{left:674.400000px;}
.x61_c00198{left:675.600000px;}
.xda_c00198{left:676.800000px;}
.xa5_c00198{left:679.200000px;}
.x22_c00198{left:681.750000px;}
.xae_c00198{left:683.850000px;}
.x8f_c00198{left:685.350000px;}
.xb8_c00198{left:689.700000px;}
.x7c_c00198{left:690.750000px;}
.x101_c00198{left:692.100000px;}
.x11e_c00198{left:695.400000px;}
.x31_c00198{left:696.900000px;}
.x108_c00198{left:700.050000px;}
.x11b_c00198{left:701.850000px;}
.x62_c00198{left:702.900000px;}
.x123_c00198{left:704.100000px;}
.x5a_c00198{left:705.150000px;}
.x4e_c00198{left:707.250000px;}
.xc2_c00198{left:708.300000px;}
.xd2_c00198{left:710.700000px;}
.xfa_c00198{left:712.650000px;}
.x41_c00198{left:713.700000px;}
.x12c_c00198{left:715.500000px;}
.x23_c00198{left:717.450000px;}
.x87_c00198{left:718.800000px;}
.x124_c00198{left:725.700000px;}
.x4f_c00198{left:726.750000px;}
.xc3_c00198{left:728.100000px;}
.x136_c00198{left:729.750000px;}
.x90_c00198{left:731.100000px;}
.x10b_c00198{left:732.300000px;}
.x7d_c00198{left:734.700000px;}
.x9c_c00198{left:738.000000px;}
.x73_c00198{left:739.050000px;}
.x32_c00198{left:744.000000px;}
.x24_c00198{left:748.800000px;}
.x11f_c00198{left:750.450000px;}
.x14_c00198{left:751.650000px;}
.x42_c00198{left:753.300000px;}
.xb9_c00198{left:755.550000px;}
.xc4_c00198{left:757.650000px;}
.x88_c00198{left:758.700000px;}
.x7e_c00198{left:762.000000px;}
.xef_c00198{left:766.650000px;}
.xcc_c00198{left:768.600000px;}
.x10f_c00198{left:769.650000px;}
.x74_c00198{left:771.150000px;}
.xdb_c00198{left:773.250000px;}
.x125_c00198{left:777.150000px;}
.x63_c00198{left:779.250000px;}
.x33_c00198{left:782.550000px;}
.x115_c00198{left:783.750000px;}
.x131_c00198{left:785.700000px;}
.x5b_c00198{left:787.650000px;}
.x25_c00198{left:790.500000px;}
.x110_c00198{left:792.300000px;}
.xf4_c00198{left:796.350000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws1_c00198{word-spacing:-3.864429pt;}
.ws7_c00198{word-spacing:-2.031236pt;}
.ws8_c00198{word-spacing:0.000000pt;}
.ws3_c00198{word-spacing:1.988411pt;}
.ws4_c00198{word-spacing:3.940226pt;}
.ws5_c00198{word-spacing:4.133869pt;}
.ws2_c00198{word-spacing:6.444444pt;}
.ws6_c00198{word-spacing:9.690555pt;}
.ws0_c00198{word-spacing:17.111111pt;}
.fs0_c00198{font-size:48.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y2c_c00198{bottom:134.133333pt;}
.y2b_c00198{bottom:170.266667pt;}
.y2a_c00198{bottom:187.866667pt;}
.y29_c00198{bottom:205.466667pt;}
.y28_c00198{bottom:223.333333pt;}
.y27_c00198{bottom:240.666667pt;}
.y26_c00198{bottom:259.200000pt;}
.y25_c00198{bottom:276.533333pt;}
.y24_c00198{bottom:294.133333pt;}
.y23_c00198{bottom:312.000000pt;}
.y22_c00198{bottom:329.600000pt;}
.y21_c00198{bottom:347.200000pt;}
.y20_c00198{bottom:365.066667pt;}
.y1f_c00198{bottom:383.200000pt;}
.y1e_c00198{bottom:401.066667pt;}
.y1d_c00198{bottom:418.933333pt;}
.y1c_c00198{bottom:436.533333pt;}
.y1b_c00198{bottom:454.400000pt;}
.y1a_c00198{bottom:472.000000pt;}
.y19_c00198{bottom:489.866667pt;}
.y18_c00198{bottom:507.466667pt;}
.y17_c00198{bottom:525.333333pt;}
.y16_c00198{bottom:542.933333pt;}
.y15_c00198{bottom:560.800000pt;}
.y14_c00198{bottom:578.400000pt;}
.y13_c00198{bottom:596.000000pt;}
.y12_c00198{bottom:613.866667pt;}
.y11_c00198{bottom:631.733333pt;}
.y10_c00198{bottom:649.333333pt;}
.yf_c00198{bottom:666.933333pt;}
.ye_c00198{bottom:685.200000pt;}
.yd_c00198{bottom:703.066667pt;}
.yc_c00198{bottom:720.666667pt;}
.yb_c00198{bottom:738.533333pt;}
.ya_c00198{bottom:756.133333pt;}
.y9_c00198{bottom:773.866667pt;}
.y8_c00198{bottom:791.733333pt;}
.y7_c00198{bottom:809.333333pt;}
.y6_c00198{bottom:827.200000pt;}
.y5_c00198{bottom:844.800000pt;}
.y4_c00198{bottom:863.066667pt;}
.y3_c00198{bottom:880.666667pt;}
.y2_c00198{bottom:898.533333pt;}
.y1_c00198{bottom:933.066667pt;}
.h2_c00198{height:48.000000pt;}
.h0_c00198{height:1037.119955pt;}
.h1_c00198{height:1037.333333pt;}
.w0_c00198{width:816.640056pt;}
.w1_c00198{width:816.666667pt;}
.x0_c00198{left:0.000000pt;}
.xfb_c00198{left:117.600000pt;}
.xe2_c00198{left:118.933333pt;}
.x91_c00198{left:119.866667pt;}
.x26_c00198{left:120.933333pt;}
.x3_c00198{left:121.866667pt;}
.x1_c00198{left:123.466667pt;}
.xe9_c00198{left:137.733333pt;}
.x126_c00198{left:140.400000pt;}
.x9d_c00198{left:141.733333pt;}
.xcd_c00198{left:143.066667pt;}
.x75_c00198{left:145.733333pt;}
.x64_c00198{left:147.066667pt;}
.x6a_c00198{left:148.533333pt;}
.x10c_c00198{left:151.733333pt;}
.x132_c00198{left:154.533333pt;}
.xaf_c00198{left:156.000000pt;}
.x50_c00198{left:156.933333pt;}
.xea_c00198{left:158.533333pt;}
.x15_c00198{left:160.266667pt;}
.x120_c00198{left:161.466667pt;}
.xba_c00198{left:163.866667pt;}
.x4_c00198{left:166.400000pt;}
.x65_c00198{left:167.600000pt;}
.xe3_c00198{left:169.466667pt;}
.xb0_c00198{left:171.733333pt;}
.xdc_c00198{left:173.333333pt;}
.x116_c00198{left:174.400000pt;}
.xce_c00198{left:175.333333pt;}
.x7f_c00198{left:176.266667pt;}
.x43_c00198{left:178.400000pt;}
.x10d_c00198{left:179.866667pt;}
.x12f_c00198{left:181.466667pt;}
.x106_c00198{left:184.266667pt;}
.x9e_c00198{left:185.200000pt;}
.x5_c00198{left:186.533333pt;}
.xf5_c00198{left:187.466667pt;}
.x34_c00198{left:188.400000pt;}
.x27_c00198{left:190.400000pt;}
.x89_c00198{left:193.066667pt;}
.x6b_c00198{left:194.933333pt;}
.xb1_c00198{left:197.066667pt;}
.x44_c00198{left:198.933333pt;}
.xdd_c00198{left:200.800000pt;}
.x66_c00198{left:202.133333pt;}
.xc5_c00198{left:203.066667pt;}
.x133_c00198{left:204.133333pt;}
.xd3_c00198{left:206.400000pt;}
.x16_c00198{left:209.600000pt;}
.xbb_c00198{left:211.200000pt;}
.x117_c00198{left:213.466667pt;}
.x45_c00198{left:214.933333pt;}
.xa6_c00198{left:216.666667pt;}
.x28_c00198{left:217.600000pt;}
.x9f_c00198{left:218.533333pt;}
.x8a_c00198{left:219.600000pt;}
.x128_c00198{left:220.533333pt;}
.xcf_c00198{left:224.266667pt;}
.x6_c00198{left:225.200000pt;}
.x76_c00198{left:226.666667pt;}
.x51_c00198{left:228.266667pt;}
.x17_c00198{left:229.733333pt;}
.xe4_c00198{left:231.200000pt;}
.x121_c00198{left:232.800000pt;}
.xa7_c00198{left:234.533333pt;}
.x67_c00198{left:235.733333pt;}
.xfc_c00198{left:236.933333pt;}
.x5c_c00198{left:238.000000pt;}
.x127_c00198{left:239.600000pt;}
.x35_c00198{left:241.866667pt;}
.x102_c00198{left:245.466667pt;}
.x111_c00198{left:246.400000pt;}
.xf6_c00198{left:248.266667pt;}
.x68_c00198{left:249.200000pt;}
.xb2_c00198{left:253.066667pt;}
.x5d_c00198{left:254.000000pt;}
.x18_c00198{left:255.600000pt;}
.x7_c00198{left:257.466667pt;}
.x52_c00198{left:258.933333pt;}
.x92_c00198{left:260.266667pt;}
.xc6_c00198{left:261.333333pt;}
.x12d_c00198{left:262.666667pt;}
.x69_c00198{left:264.266667pt;}
.x118_c00198{left:265.600000pt;}
.x80_c00198{left:270.000000pt;}
.xbc_c00198{left:271.066667pt;}
.x36_c00198{left:273.200000pt;}
.xf0_c00198{left:275.200000pt;}
.xc7_c00198{left:276.400000pt;}
.x77_c00198{left:279.066667pt;}
.x8b_c00198{left:280.933333pt;}
.x93_c00198{left:282.666667pt;}
.x29_c00198{left:286.666667pt;}
.x8_c00198{left:288.133333pt;}
.x46_c00198{left:289.200000pt;}
.x12e_c00198{left:291.200000pt;}
.x19_c00198{left:294.000000pt;}
.x37_c00198{left:296.266667pt;}
.xb3_c00198{left:298.533333pt;}
.x81_c00198{left:299.733333pt;}
.x129_c00198{left:300.933333pt;}
.xeb_c00198{left:304.533333pt;}
.xfd_c00198{left:305.466667pt;}
.x94_c00198{left:306.400000pt;}
.x9_c00198{left:307.333333pt;}
.xe6_c00198{left:309.200000pt;}
.x38_c00198{left:311.333333pt;}
.xde_c00198{left:313.333333pt;}
.x119_c00198{left:314.266667pt;}
.x5e_c00198{left:315.466667pt;}
.xa8_c00198{left:317.733333pt;}
.xa0_c00198{left:319.333333pt;}
.x47_c00198{left:321.466667pt;}
.x2a_c00198{left:324.400000pt;}
.x95_c00198{left:325.600000pt;}
.x109_c00198{left:326.800000pt;}
.x82_c00198{left:328.533333pt;}
.xfe_c00198{left:330.133333pt;}
.xbd_c00198{left:333.066667pt;}
.x39_c00198{left:334.000000pt;}
.x5f_c00198{left:336.266667pt;}
.xd4_c00198{left:337.200000pt;}
.xc8_c00198{left:338.533333pt;}
.xa1_c00198{left:341.066667pt;}
.x1a_c00198{left:342.000000pt;}
.x12a_c00198{left:343.866667pt;}
.xb4_c00198{left:344.933333pt;}
.xa_c00198{left:346.666667pt;}
.x48_c00198{left:349.333333pt;}
.x96_c00198{left:350.533333pt;}
.xf1_c00198{left:352.000000pt;}
.x2b_c00198{left:353.466667pt;}
.x11c_c00198{left:355.200000pt;}
.xf7_c00198{left:357.600000pt;}
.x1b_c00198{left:359.333333pt;}
.x103_c00198{left:361.066667pt;}
.x53_c00198{left:363.200000pt;}
.x6c_c00198{left:365.866667pt;}
.x83_c00198{left:366.933333pt;}
.xb_c00198{left:368.400000pt;}
.xd5_c00198{left:371.466667pt;}
.xe7_c00198{left:374.133333pt;}
.x54_c00198{left:376.000000pt;}
.xdf_c00198{left:378.000000pt;}
.x6d_c00198{left:381.200000pt;}
.xa9_c00198{left:383.733333pt;}
.x112_c00198{left:384.933333pt;}
.x84_c00198{left:385.866667pt;}
.x2_c00198{left:387.200000pt;}
.x55_c00198{left:389.466667pt;}
.xc_c00198{left:391.066667pt;}
.x49_c00198{left:398.933333pt;}
.x78_c00198{left:400.133333pt;}
.x97_c00198{left:401.466667pt;}
.x3a_c00198{left:404.133333pt;}
.xa2_c00198{left:405.333333pt;}
.xd6_c00198{left:406.400000pt;}
.xf2_c00198{left:407.733333pt;}
.xd_c00198{left:408.933333pt;}
.x1c_c00198{left:410.133333pt;}
.xec_c00198{left:415.600000pt;}
.xe0_c00198{left:417.733333pt;}
.x79_c00198{left:419.066667pt;}
.x11a_c00198{left:420.533333pt;}
.x4a_c00198{left:423.600000pt;}
.x134_c00198{left:424.666667pt;}
.x2c_c00198{left:425.866667pt;}
.xc9_c00198{left:426.800000pt;}
.xaa_c00198{left:428.266667pt;}
.xb5_c00198{left:430.133333pt;}
.x130_c00198{left:431.333333pt;}
.x56_c00198{left:433.333333pt;}
.xe_c00198{left:435.200000pt;}
.x98_c00198{left:436.666667pt;}
.x10a_c00198{left:439.733333pt;}
.x6e_c00198{left:440.666667pt;}
.xf8_c00198{left:443.600000pt;}
.xbe_c00198{left:447.866667pt;}
.xb6_c00198{left:449.066667pt;}
.xab_c00198{left:450.933333pt;}
.xf_c00198{left:451.866667pt;}
.x104_c00198{left:453.600000pt;}
.x2d_c00198{left:454.666667pt;}
.x3b_c00198{left:456.000000pt;}
.x12b_c00198{left:458.133333pt;}
.xd7_c00198{left:461.733333pt;}
.x6f_c00198{left:463.333333pt;}
.xbf_c00198{left:465.466667pt;}
.xff_c00198{left:467.066667pt;}
.x10_c00198{left:470.400000pt;}
.x57_c00198{left:473.066667pt;}
.x85_c00198{left:476.133333pt;}
.xa3_c00198{left:477.600000pt;}
.x3c_c00198{left:478.666667pt;}
.x99_c00198{left:479.600000pt;}
.x4b_c00198{left:480.533333pt;}
.xca_c00198{left:481.866667pt;}
.xd8_c00198{left:483.200000pt;}
.xe1_c00198{left:485.333333pt;}
.x1d_c00198{left:486.266667pt;}
.x58_c00198{left:488.800000pt;}
.x2e_c00198{left:490.533333pt;}
.x8c_c00198{left:494.000000pt;}
.x122_c00198{left:495.466667pt;}
.x70_c00198{left:497.600000pt;}
.x1e_c00198{left:500.933333pt;}
.xa4_c00198{left:503.200000pt;}
.x135_c00198{left:504.933333pt;}
.x3d_c00198{left:506.133333pt;}
.xed_c00198{left:508.133333pt;}
.xc0_c00198{left:510.933333pt;}
.x7a_c00198{left:513.466667pt;}
.x9a_c00198{left:515.466667pt;}
.xcb_c00198{left:516.400000pt;}
.xd0_c00198{left:517.466667pt;}
.x60_c00198{left:520.266667pt;}
.xee_c00198{left:521.200000pt;}
.x100_c00198{left:522.400000pt;}
.xf9_c00198{left:525.466667pt;}
.x1f_c00198{left:527.866667pt;}
.x7b_c00198{left:530.800000pt;}
.x2f_c00198{left:533.466667pt;}
.xe8_c00198{left:534.400000pt;}
.xac_c00198{left:536.533333pt;}
.x3e_c00198{left:537.866667pt;}
.x11_c00198{left:540.400000pt;}
.x11d_c00198{left:541.733333pt;}
.xc1_c00198{left:543.200000pt;}
.x8d_c00198{left:545.466667pt;}
.x4c_c00198{left:549.066667pt;}
.x20_c00198{left:551.600000pt;}
.x71_c00198{left:553.866667pt;}
.x59_c00198{left:555.066667pt;}
.xb7_c00198{left:559.200000pt;}
.x12_c00198{left:560.933333pt;}
.x10e_c00198{left:562.533333pt;}
.x3f_c00198{left:563.466667pt;}
.x86_c00198{left:564.800000pt;}
.x30_c00198{left:565.733333pt;}
.x8e_c00198{left:567.866667pt;}
.xd9_c00198{left:569.600000pt;}
.x113_c00198{left:572.533333pt;}
.xad_c00198{left:574.266667pt;}
.x4d_c00198{left:576.533333pt;}
.x9b_c00198{left:579.200000pt;}
.x105_c00198{left:581.333333pt;}
.xd1_c00198{left:583.066667pt;}
.x13_c00198{left:584.933333pt;}
.x40_c00198{left:586.133333pt;}
.xe5_c00198{left:587.600000pt;}
.x21_c00198{left:590.000000pt;}
.x72_c00198{left:591.600000pt;}
.xf3_c00198{left:592.666667pt;}
.x107_c00198{left:594.800000pt;}
.x114_c00198{left:599.466667pt;}
.x61_c00198{left:600.533333pt;}
.xda_c00198{left:601.600000pt;}
.xa5_c00198{left:603.733333pt;}
.x22_c00198{left:606.000000pt;}
.xae_c00198{left:607.866667pt;}
.x8f_c00198{left:609.200000pt;}
.xb8_c00198{left:613.066667pt;}
.x7c_c00198{left:614.000000pt;}
.x101_c00198{left:615.200000pt;}
.x11e_c00198{left:618.133333pt;}
.x31_c00198{left:619.466667pt;}
.x108_c00198{left:622.266667pt;}
.x11b_c00198{left:623.866667pt;}
.x62_c00198{left:624.800000pt;}
.x123_c00198{left:625.866667pt;}
.x5a_c00198{left:626.800000pt;}
.x4e_c00198{left:628.666667pt;}
.xc2_c00198{left:629.600000pt;}
.xd2_c00198{left:631.733333pt;}
.xfa_c00198{left:633.466667pt;}
.x41_c00198{left:634.400000pt;}
.x12c_c00198{left:636.000000pt;}
.x23_c00198{left:637.733333pt;}
.x87_c00198{left:638.933333pt;}
.x124_c00198{left:645.066667pt;}
.x4f_c00198{left:646.000000pt;}
.xc3_c00198{left:647.200000pt;}
.x136_c00198{left:648.666667pt;}
.x90_c00198{left:649.866667pt;}
.x10b_c00198{left:650.933333pt;}
.x7d_c00198{left:653.066667pt;}
.x9c_c00198{left:656.000000pt;}
.x73_c00198{left:656.933333pt;}
.x32_c00198{left:661.333333pt;}
.x24_c00198{left:665.600000pt;}
.x11f_c00198{left:667.066667pt;}
.x14_c00198{left:668.133333pt;}
.x42_c00198{left:669.600000pt;}
.xb9_c00198{left:671.600000pt;}
.xc4_c00198{left:673.466667pt;}
.x88_c00198{left:674.400000pt;}
.x7e_c00198{left:677.333333pt;}
.xef_c00198{left:681.466667pt;}
.xcc_c00198{left:683.200000pt;}
.x10f_c00198{left:684.133333pt;}
.x74_c00198{left:685.466667pt;}
.xdb_c00198{left:687.333333pt;}
.x125_c00198{left:690.800000pt;}
.x63_c00198{left:692.666667pt;}
.x33_c00198{left:695.600000pt;}
.x115_c00198{left:696.666667pt;}
.x131_c00198{left:698.400000pt;}
.x5b_c00198{left:700.133333pt;}
.x25_c00198{left:702.666667pt;}
.x110_c00198{left:704.266667pt;}
.xf4_c00198{left:707.866667pt;}
}





/* 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_c00199 {
    display:none;
  }
  .loading-indicator_c00199.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00199 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_c00199 { 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_c00199" -> "#page-container .classname_c00199")
 */
.pf_c00199 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00199 { /* 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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00199 { /* 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_c00199 { /* 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_c00199 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00199 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00199 {overflow:visible;}
  }
}
.c_c00199 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00199 { /* 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_c00199:after { /* webkit #35443 */
  content: '';
}
.t_c00199:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00199 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 */
}
.__c00199 { /* 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_c00199 { /* info for Javascript */
  display:none;
}
.l_c00199 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00199 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00199 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00199: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_c00199 {
    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_c00199.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00199.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_c00199 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00199{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00199;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.000000;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;}
.m4d_c00199{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m49_c00199{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m35_c00199{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00199{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00199{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00199{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00199{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00199{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00199{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m53_c00199{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m14_c00199{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00199{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00199{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00199{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m75_c00199{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00199{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00199{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m2_c00199{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00199{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00199{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m92_c00199{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00199{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m31_c00199{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m82_c00199{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00199{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m15_c00199{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m47_c00199{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00199{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m65_c00199{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m60_c00199{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m91_c00199{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00199{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m77_c00199{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00199{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m28_c00199{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m66_c00199{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m41_c00199{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00199{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00199{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00199{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00199{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00199{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00199{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m76_c00199{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m69_c00199{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m87_c00199{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m64_c00199{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5_c00199{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00199{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c00199{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m89_c00199{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00199{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m79_c00199{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00199{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m32_c00199{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m57_c00199{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00199{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00199{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m70_c00199{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00199{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m62_c00199{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m96_c00199{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00199{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m42_c00199{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m81_c00199{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m72_c00199{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m19_c00199{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m67_c00199{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m46_c00199{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m38_c00199{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m51_c00199{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m55_c00199{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m93_c00199{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00199{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m85_c00199{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m95_c00199{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00199{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00199{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m59_c00199{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9_c00199{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00199{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m99_c00199{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00199{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00199{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00199{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m63_c00199{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00199{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m48_c00199{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m34_c00199{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m36_c00199{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00199{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00199{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80_c00199{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md_c00199{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00199{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m73_c00199{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m88_c00199{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00199{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12_c00199{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00199{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m90_c00199{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m98_c00199{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m50_c00199{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m44_c00199{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00199{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00199{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00199{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00199{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m33_c00199{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m68_c00199{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m40_c00199{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m61_c00199{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00199{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m52_c00199{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00199{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00199{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00199{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m83_c00199{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00199{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00199{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m84_c00199{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m94_c00199{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00199{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m97_c00199{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00199{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m56_c00199{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m25_c00199{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00199{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00199{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00199{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m71_c00199{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m37_c00199{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00199{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00199{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00199{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls0_c00199{letter-spacing:0.000000px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{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__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00199{word-spacing:0.000000px;}
.ws0_c00199{word-spacing:3.157895px;}
.ws5_c00199{word-spacing:6.341463px;}
.ws1_c00199{word-spacing:6.527778px;}
.ws6_c00199{word-spacing:7.058824px;}
.ws3_c00199{word-spacing:12.070312px;}
.ws4_c00199{word-spacing:12.560976px;}
.ws2_c00199{word-spacing:19.259259px;}
.ws7_c00199{word-spacing:20.138889px;}
.fc0_c00199{color:transparent;}
.fs1_c00199{font-size:42.000000px;}
.fs0_c00199{font-size:60.000000px;}
.y0_c00199{bottom:0.000000px;}
.y2c_c00199{bottom:147.300000px;}
.y2b_c00199{bottom:167.100000px;}
.y2a_c00199{bottom:182.850000px;}
.y29_c00199{bottom:231.750000px;}
.y28_c00199{bottom:251.550000px;}
.y27_c00199{bottom:271.350000px;}
.y26_c00199{bottom:291.150000px;}
.y25_c00199{bottom:310.650000px;}
.y24_c00199{bottom:330.450000px;}
.y23_c00199{bottom:349.950000px;}
.y22_c00199{bottom:369.750000px;}
.y21_c00199{bottom:389.550000px;}
.y20_c00199{bottom:408.750000px;}
.y1f_c00199{bottom:429.300000px;}
.y1e_c00199{bottom:449.400000px;}
.y1d_c00199{bottom:468.900000px;}
.y1c_c00199{bottom:489.000000px;}
.y1b_c00199{bottom:508.800000px;}
.y1a_c00199{bottom:528.900000px;}
.y19_c00199{bottom:547.950000px;}
.y18_c00199{bottom:568.050000px;}
.y17_c00199{bottom:587.850000px;}
.y16_c00199{bottom:607.350000px;}
.y15_c00199{bottom:627.450000px;}
.y14_c00199{bottom:647.250000px;}
.y13_c00199{bottom:667.050000px;}
.y12_c00199{bottom:686.850000px;}
.y11_c00199{bottom:706.650000px;}
.y10_c00199{bottom:726.600000px;}
.yf_c00199{bottom:746.700000px;}
.ye_c00199{bottom:766.500000px;}
.yd_c00199{bottom:786.300000px;}
.yc_c00199{bottom:806.400000px;}
.yb_c00199{bottom:826.200000px;}
.ya_c00199{bottom:846.000000px;}
.y9_c00199{bottom:866.100000px;}
.y8_c00199{bottom:885.900000px;}
.y7_c00199{bottom:905.700000px;}
.y6_c00199{bottom:925.200000px;}
.y5_c00199{bottom:945.300000px;}
.y4_c00199{bottom:965.100000px;}
.y3_c00199{bottom:984.600000px;}
.y2_c00199{bottom:1004.700000px;}
.y1_c00199{bottom:1046.550000px;}
.h3_c00199{height:42.000000px;}
.h2_c00199{height:60.000000px;}
.h0_c00199{height:1166.759949px;}
.h1_c00199{height:1167.000000px;}
.w0_c00199{width:918.720063px;}
.w1_c00199{width:918.750000px;}
.x0_c00199{left:0.000000px;}
.x107_c00199{left:100.500000px;}
.xa1_c00199{left:101.700000px;}
.x90_c00199{left:102.750000px;}
.x31_c00199{left:103.800000px;}
.x3_c00199{left:105.150000px;}
.x132_c00199{left:113.100000px;}
.x23_c00199{left:116.550000px;}
.xe0_c00199{left:118.800000px;}
.xe9_c00199{left:120.000000px;}
.xd0_c00199{left:123.000000px;}
.x5e_c00199{left:124.350000px;}
.x133_c00199{left:126.000000px;}
.x3e_c00199{left:127.800000px;}
.xf4_c00199{left:129.000000px;}
.x10a_c00199{left:131.700000px;}
.xa2_c00199{left:133.500000px;}
.xa9_c00199{left:134.550000px;}
.xfc_c00199{left:136.500000px;}
.x51_c00199{left:138.450000px;}
.xbb_c00199{left:140.700000px;}
.xc5_c00199{left:144.300000px;}
.x49_c00199{left:148.800000px;}
.x111_c00199{left:150.450000px;}
.x24_c00199{left:151.800000px;}
.x69_c00199{left:154.050000px;}
.x14_c00199{left:155.400000px;}
.x5f_c00199{left:158.850000px;}
.x83_c00199{left:161.250000px;}
.xd1_c00199{left:164.100000px;}
.xa3_c00199{left:165.900000px;}
.x134_c00199{left:169.200000px;}
.x32_c00199{left:171.150000px;}
.x10b_c00199{left:174.600000px;}
.x112_c00199{left:175.950000px;}
.x7c_c00199{left:179.100000px;}
.x4_c00199{left:180.450000px;}
.xf5_c00199{left:182.250000px;}
.xf0_c00199{left:188.700000px;}
.x52_c00199{left:190.350000px;}
.x33_c00199{left:193.050000px;}
.x91_c00199{left:194.550000px;}
.x98_c00199{left:198.750000px;}
.x15_c00199{left:201.450000px;}
.xbc_c00199{left:204.450000px;}
.x11e_c00199{left:205.500000px;}
.xd9_c00199{left:207.000000px;}
.x84_c00199{left:208.050000px;}
.xc9_c00199{left:209.100000px;}
.x5_c00199{left:211.800000px;}
.xea_c00199{left:212.850000px;}
.xc6_c00199{left:214.950000px;}
.x60_c00199{left:216.450000px;}
.x25_c00199{left:219.150000px;}
.xa4_c00199{left:221.400000px;}
.x53_c00199{left:222.450000px;}
.x34_c00199{left:223.650000px;}
.x92_c00199{left:225.450000px;}
.xb1_c00199{left:228.600000px;}
.xfd_c00199{left:229.800000px;}
.x7d_c00199{left:231.300000px;}
.xeb_c00199{left:234.450000px;}
.x26_c00199{left:236.400000px;}
.xe1_c00199{left:237.900000px;}
.x16_c00199{left:238.950000px;}
.x6_c00199{left:242.100000px;}
.x118_c00199{left:243.300000px;}
.x3f_c00199{left:250.200000px;}
.xe2_c00199{left:252.300000px;}
.x113_c00199{left:254.400000px;}
.x27_c00199{left:255.900000px;}
.xb2_c00199{left:257.100000px;}
.x126_c00199{left:258.300000px;}
.x54_c00199{left:260.250000px;}
.x99_c00199{left:264.000000px;}
.x7e_c00199{left:265.500000px;}
.x17_c00199{left:267.450000px;}
.x6a_c00199{left:270.600000px;}
.x108_c00199{left:273.600000px;}
.xb7_c00199{left:276.450000px;}
.xe3_c00199{left:278.250000px;}
.xd2_c00199{left:280.050000px;}
.xf6_c00199{left:282.600000px;}
.x11b_c00199{left:283.650000px;}
.xa5_c00199{left:284.850000px;}
.x72_c00199{left:287.250000px;}
.x61_c00199{left:288.900000px;}
.xbd_c00199{left:290.850000px;}
.x35_c00199{left:292.800000px;}
.x55_c00199{left:294.450000px;}
.x103_c00199{left:295.800000px;}
.xfe_c00199{left:297.150000px;}
.x18_c00199{left:298.350000px;}
.x7_c00199{left:300.000000px;}
.x6b_c00199{left:302.700000px;}
.xc7_c00199{left:306.300000px;}
.x129_c00199{left:307.500000px;}
.x73_c00199{left:309.600000px;}
.xb8_c00199{left:315.300000px;}
.x62_c00199{left:316.650000px;}
.x28_c00199{left:318.150000px;}
.x7f_c00199{left:320.550000px;}
.x40_c00199{left:323.250000px;}
.xca_c00199{left:325.350000px;}
.xbe_c00199{left:327.150000px;}
.x11f_c00199{left:329.100000px;}
.x135_c00199{left:330.150000px;}
.xd3_c00199{left:331.500000px;}
.x19_c00199{left:332.550000px;}
.x8_c00199{left:334.950000px;}
.x74_c00199{left:338.100000px;}
.xe4_c00199{left:340.500000px;}
.xb3_c00199{left:342.750000px;}
.xf1_c00199{left:346.050000px;}
.x29_c00199{left:348.450000px;}
.x1a_c00199{left:353.100000px;}
.x9a_c00199{left:355.050000px;}
.xda_c00199{left:356.100000px;}
.x9_c00199{left:357.600000px;}
.x80_c00199{left:359.400000px;}
.x63_c00199{left:360.600000px;}
.xc8_c00199{left:362.100000px;}
.x109_c00199{left:363.900000px;}
.x2a_c00199{left:364.950000px;}
.x85_c00199{left:366.450000px;}
.x10c_c00199{left:367.800000px;}
.x36_c00199{left:370.200000px;}
.xb9_c00199{left:371.400000px;}
.x6c_c00199{left:373.200000px;}
.x4a_c00199{left:378.000000px;}
.x75_c00199{left:379.200000px;}
.xf2_c00199{left:382.800000px;}
.x2b_c00199{left:384.750000px;}
.x56_c00199{left:386.550000px;}
.x12a_c00199{left:387.750000px;}
.xa_c00199{left:389.250000px;}
.x93_c00199{left:390.300000px;}
.x86_c00199{left:393.750000px;}
.x9b_c00199{left:394.950000px;}
.x6d_c00199{left:396.300000px;}
.xaa_c00199{left:398.400000px;}
.xe5_c00199{left:400.200000px;}
.xff_c00199{left:401.550000px;}
.x120_c00199{left:403.650000px;}
.x37_c00199{left:405.450000px;}
.x4b_c00199{left:406.800000px;}
.x57_c00199{left:408.900000px;}
.x1_c00199{left:411.150000px;}
.x136_c00199{left:413.400000px;}
.x2c_c00199{left:418.200000px;}
.xdb_c00199{left:421.650000px;}
.x6e_c00199{left:423.600000px;}
.x41_c00199{left:426.000000px;}
.xab_c00199{left:429.300000px;}
.x137_c00199{left:431.400000px;}
.xb_c00199{left:433.950000px;}
.x64_c00199{left:435.750000px;}
.xbf_c00199{left:436.800000px;}
.x4c_c00199{left:438.150000px;}
.xec_c00199{left:439.950000px;}
.x87_c00199{left:441.300000px;}
.x94_c00199{left:442.800000px;}
.xcb_c00199{left:445.500000px;}
.x76_c00199{left:448.050000px;}
.x104_c00199{left:451.650000px;}
.xd4_c00199{left:453.300000px;}
.xac_c00199{left:454.800000px;}
.x42_c00199{left:456.300000px;}
.xf7_c00199{left:458.700000px;}
.xf3_c00199{left:460.800000px;}
.x1b_c00199{left:462.600000px;}
.x6f_c00199{left:463.950000px;}
.x12e_c00199{left:470.250000px;}
.x43_c00199{left:472.200000px;}
.x121_c00199{left:473.850000px;}
.xb4_c00199{left:475.200000px;}
.x123_c00199{left:476.700000px;}
.x4d_c00199{left:477.750000px;}
.xc0_c00199{left:478.950000px;}
.xf8_c00199{left:480.600000px;}
.xcc_c00199{left:482.550000px;}
.x1c_c00199{left:484.200000px;}
.x65_c00199{left:487.650000px;}
.xa6_c00199{left:489.600000px;}
.x100_c00199{left:491.550000px;}
.xe6_c00199{left:493.800000px;}
.x10d_c00199{left:494.850000px;}
.x38_c00199{left:496.950000px;}
.x12b_c00199{left:499.350000px;}
.x58_c00199{left:501.300000px;}
.x88_c00199{left:505.350000px;}
.x77_c00199{left:508.050000px;}
.xad_c00199{left:511.350000px;}
.xd5_c00199{left:512.400000px;}
.x44_c00199{left:513.600000px;}
.xc_c00199{left:516.750000px;}
.xcd_c00199{left:518.850000px;}
.x81_c00199{left:521.700000px;}
.x12f_c00199{left:523.950000px;}
.x119_c00199{left:525.300000px;}
.xed_c00199{left:526.350000px;}
.x78_c00199{left:527.850000px;}
.xae_c00199{left:529.350000px;}
.x2d_c00199{left:533.100000px;}
.x45_c00199{left:534.900000px;}
.x95_c00199{left:535.950000px;}
.x127_c00199{left:537.000000px;}
.xdc_c00199{left:538.950000px;}
.xc1_c00199{left:541.200000px;}
.xd6_c00199{left:543.000000px;}
.x4e_c00199{left:544.350000px;}
.x89_c00199{left:546.000000px;}
.xd_c00199{left:548.400000px;}
.x39_c00199{left:550.200000px;}
.xce_c00199{left:552.300000px;}
.x10e_c00199{left:553.950000px;}
.x1d_c00199{left:555.150000px;}
.x114_c00199{left:556.650000px;}
.x128_c00199{left:559.650000px;}
.xa7_c00199{left:560.850000px;}
.x59_c00199{left:562.200000px;}
.xe_c00199{left:565.650000px;}
.x122_c00199{left:566.700000px;}
.x4f_c00199{left:568.050000px;}
.x2e_c00199{left:569.850000px;}
.x9c_c00199{left:573.750000px;}
.x70_c00199{left:574.950000px;}
.xd7_c00199{left:577.200000px;}
.x3a_c00199{left:579.000000px;}
.x11c_c00199{left:582.300000px;}
.xba_c00199{left:585.300000px;}
.x1e_c00199{left:587.250000px;}
.xdd_c00199{left:588.300000px;}
.x8a_c00199{left:589.950000px;}
.xc2_c00199{left:593.100000px;}
.xf_c00199{left:594.450000px;}
.x2f_c00199{left:596.850000px;}
.x46_c00199{left:598.950000px;}
.x124_c00199{left:600.150000px;}
.x5a_c00199{left:601.500000px;}
.xf9_c00199{left:604.050000px;}
.x71_c00199{left:605.850000px;}
.x9d_c00199{left:610.500000px;}
.xe7_c00199{left:611.850000px;}
.xb5_c00199{left:614.850000px;}
.x10f_c00199{left:615.900000px;}
.xee_c00199{left:617.100000px;}
.x101_c00199{left:618.600000px;}
.x12c_c00199{left:620.250000px;}
.xde_c00199{left:621.450000px;}
.x66_c00199{left:623.400000px;}
.xaf_c00199{left:626.100000px;}
.x3b_c00199{left:627.900000px;}
.x9e_c00199{left:630.300000px;}
.x115_c00199{left:631.500000px;}
.x10_c00199{left:633.300000px;}
.x5b_c00199{left:635.400000px;}
.xe8_c00199{left:637.350000px;}
.x1f_c00199{left:642.000000px;}
.x102_c00199{left:643.050000px;}
.xcf_c00199{left:646.200000px;}
.x79_c00199{left:648.150000px;}
.x116_c00199{left:650.250000px;}
.x5c_c00199{left:651.300000px;}
.x11d_c00199{left:652.500000px;}
.x12d_c00199{left:653.700000px;}
.x30_c00199{left:654.750000px;}
.x8b_c00199{left:656.250000px;}
.x138_c00199{left:660.900000px;}
.x47_c00199{left:663.000000px;}
.x9f_c00199{left:665.250000px;}
.x8c_c00199{left:667.350000px;}
.x11_c00199{left:670.350000px;}
.x96_c00199{left:674.250000px;}
.x125_c00199{left:678.300000px;}
.x11a_c00199{left:680.400000px;}
.x3c_c00199{left:681.600000px;}
.xdf_c00199{left:682.650000px;}
.x20_c00199{left:684.150000px;}
.x8d_c00199{left:685.650000px;}
.x130_c00199{left:687.300000px;}
.x117_c00199{left:689.100000px;}
.xef_c00199{left:690.900000px;}
.xc3_c00199{left:692.100000px;}
.xb0_c00199{left:693.150000px;}
.x67_c00199{left:694.800000px;}
.x139_c00199{left:696.900000px;}
.xfa_c00199{left:701.550000px;}
.x97_c00199{left:702.750000px;}
.x7a_c00199{left:705.750000px;}
.xb6_c00199{left:708.450000px;}
.x110_c00199{left:709.800000px;}
.x12_c00199{left:711.750000px;}
.xc4_c00199{left:715.500000px;}
.x8e_c00199{left:719.100000px;}
.x5d_c00199{left:721.200000px;}
.x68_c00199{left:722.850000px;}
.x48_c00199{left:725.250000px;}
.xa0_c00199{left:727.800000px;}
.x21_c00199{left:729.900000px;}
.x13_c00199{left:731.850000px;}
.x7b_c00199{left:734.550000px;}
.x105_c00199{left:736.200000px;}
.x82_c00199{left:738.150000px;}
.xd8_c00199{left:739.200000px;}
.x2_c00199{left:743.100000px;}
.x3d_c00199{left:744.900000px;}
.x8f_c00199{left:746.400000px;}
.x22_c00199{left:747.900000px;}
.x131_c00199{left:751.350000px;}
.xa8_c00199{left:752.400000px;}
.x50_c00199{left:753.750000px;}
.x106_c00199{left:757.500000px;}
.xfb_c00199{left:761.400000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws8_c00199{word-spacing:0.000000pt;}
.ws0_c00199{word-spacing:2.807018pt;}
.ws5_c00199{word-spacing:5.636856pt;}
.ws1_c00199{word-spacing:5.802469pt;}
.ws6_c00199{word-spacing:6.274510pt;}
.ws3_c00199{word-spacing:10.729167pt;}
.ws4_c00199{word-spacing:11.165312pt;}
.ws2_c00199{word-spacing:17.119342pt;}
.ws7_c00199{word-spacing:17.901235pt;}
.fs1_c00199{font-size:37.333333pt;}
.fs0_c00199{font-size:53.333333pt;}
.y0_c00199{bottom:0.000000pt;}
.y2c_c00199{bottom:130.933333pt;}
.y2b_c00199{bottom:148.533333pt;}
.y2a_c00199{bottom:162.533333pt;}
.y29_c00199{bottom:206.000000pt;}
.y28_c00199{bottom:223.600000pt;}
.y27_c00199{bottom:241.200000pt;}
.y26_c00199{bottom:258.800000pt;}
.y25_c00199{bottom:276.133333pt;}
.y24_c00199{bottom:293.733333pt;}
.y23_c00199{bottom:311.066667pt;}
.y22_c00199{bottom:328.666667pt;}
.y21_c00199{bottom:346.266667pt;}
.y20_c00199{bottom:363.333333pt;}
.y1f_c00199{bottom:381.600000pt;}
.y1e_c00199{bottom:399.466667pt;}
.y1d_c00199{bottom:416.800000pt;}
.y1c_c00199{bottom:434.666667pt;}
.y1b_c00199{bottom:452.266667pt;}
.y1a_c00199{bottom:470.133333pt;}
.y19_c00199{bottom:487.066667pt;}
.y18_c00199{bottom:504.933333pt;}
.y17_c00199{bottom:522.533333pt;}
.y16_c00199{bottom:539.866667pt;}
.y15_c00199{bottom:557.733333pt;}
.y14_c00199{bottom:575.333333pt;}
.y13_c00199{bottom:592.933333pt;}
.y12_c00199{bottom:610.533333pt;}
.y11_c00199{bottom:628.133333pt;}
.y10_c00199{bottom:645.866667pt;}
.yf_c00199{bottom:663.733333pt;}
.ye_c00199{bottom:681.333333pt;}
.yd_c00199{bottom:698.933333pt;}
.yc_c00199{bottom:716.800000pt;}
.yb_c00199{bottom:734.400000pt;}
.ya_c00199{bottom:752.000000pt;}
.y9_c00199{bottom:769.866667pt;}
.y8_c00199{bottom:787.466667pt;}
.y7_c00199{bottom:805.066667pt;}
.y6_c00199{bottom:822.400000pt;}
.y5_c00199{bottom:840.266667pt;}
.y4_c00199{bottom:857.866667pt;}
.y3_c00199{bottom:875.200000pt;}
.y2_c00199{bottom:893.066667pt;}
.y1_c00199{bottom:930.266667pt;}
.h3_c00199{height:37.333333pt;}
.h2_c00199{height:53.333333pt;}
.h0_c00199{height:1037.119955pt;}
.h1_c00199{height:1037.333333pt;}
.w0_c00199{width:816.640056pt;}
.w1_c00199{width:816.666667pt;}
.x0_c00199{left:0.000000pt;}
.x107_c00199{left:89.333333pt;}
.xa1_c00199{left:90.400000pt;}
.x90_c00199{left:91.333333pt;}
.x31_c00199{left:92.266667pt;}
.x3_c00199{left:93.466667pt;}
.x132_c00199{left:100.533333pt;}
.x23_c00199{left:103.600000pt;}
.xe0_c00199{left:105.600000pt;}
.xe9_c00199{left:106.666667pt;}
.xd0_c00199{left:109.333333pt;}
.x5e_c00199{left:110.533333pt;}
.x133_c00199{left:112.000000pt;}
.x3e_c00199{left:113.600000pt;}
.xf4_c00199{left:114.666667pt;}
.x10a_c00199{left:117.066667pt;}
.xa2_c00199{left:118.666667pt;}
.xa9_c00199{left:119.600000pt;}
.xfc_c00199{left:121.333333pt;}
.x51_c00199{left:123.066667pt;}
.xbb_c00199{left:125.066667pt;}
.xc5_c00199{left:128.266667pt;}
.x49_c00199{left:132.266667pt;}
.x111_c00199{left:133.733333pt;}
.x24_c00199{left:134.933333pt;}
.x69_c00199{left:136.933333pt;}
.x14_c00199{left:138.133333pt;}
.x5f_c00199{left:141.200000pt;}
.x83_c00199{left:143.333333pt;}
.xd1_c00199{left:145.866667pt;}
.xa3_c00199{left:147.466667pt;}
.x134_c00199{left:150.400000pt;}
.x32_c00199{left:152.133333pt;}
.x10b_c00199{left:155.200000pt;}
.x112_c00199{left:156.400000pt;}
.x7c_c00199{left:159.200000pt;}
.x4_c00199{left:160.400000pt;}
.xf5_c00199{left:162.000000pt;}
.xf0_c00199{left:167.733333pt;}
.x52_c00199{left:169.200000pt;}
.x33_c00199{left:171.600000pt;}
.x91_c00199{left:172.933333pt;}
.x98_c00199{left:176.666667pt;}
.x15_c00199{left:179.066667pt;}
.xbc_c00199{left:181.733333pt;}
.x11e_c00199{left:182.666667pt;}
.xd9_c00199{left:184.000000pt;}
.x84_c00199{left:184.933333pt;}
.xc9_c00199{left:185.866667pt;}
.x5_c00199{left:188.266667pt;}
.xea_c00199{left:189.200000pt;}
.xc6_c00199{left:191.066667pt;}
.x60_c00199{left:192.400000pt;}
.x25_c00199{left:194.800000pt;}
.xa4_c00199{left:196.800000pt;}
.x53_c00199{left:197.733333pt;}
.x34_c00199{left:198.800000pt;}
.x92_c00199{left:200.400000pt;}
.xb1_c00199{left:203.200000pt;}
.xfd_c00199{left:204.266667pt;}
.x7d_c00199{left:205.600000pt;}
.xeb_c00199{left:208.400000pt;}
.x26_c00199{left:210.133333pt;}
.xe1_c00199{left:211.466667pt;}
.x16_c00199{left:212.400000pt;}
.x6_c00199{left:215.200000pt;}
.x118_c00199{left:216.266667pt;}
.x3f_c00199{left:222.400000pt;}
.xe2_c00199{left:224.266667pt;}
.x113_c00199{left:226.133333pt;}
.x27_c00199{left:227.466667pt;}
.xb2_c00199{left:228.533333pt;}
.x126_c00199{left:229.600000pt;}
.x54_c00199{left:231.333333pt;}
.x99_c00199{left:234.666667pt;}
.x7e_c00199{left:236.000000pt;}
.x17_c00199{left:237.733333pt;}
.x6a_c00199{left:240.533333pt;}
.x108_c00199{left:243.200000pt;}
.xb7_c00199{left:245.733333pt;}
.xe3_c00199{left:247.333333pt;}
.xd2_c00199{left:248.933333pt;}
.xf6_c00199{left:251.200000pt;}
.x11b_c00199{left:252.133333pt;}
.xa5_c00199{left:253.200000pt;}
.x72_c00199{left:255.333333pt;}
.x61_c00199{left:256.800000pt;}
.xbd_c00199{left:258.533333pt;}
.x35_c00199{left:260.266667pt;}
.x55_c00199{left:261.733333pt;}
.x103_c00199{left:262.933333pt;}
.xfe_c00199{left:264.133333pt;}
.x18_c00199{left:265.200000pt;}
.x7_c00199{left:266.666667pt;}
.x6b_c00199{left:269.066667pt;}
.xc7_c00199{left:272.266667pt;}
.x129_c00199{left:273.333333pt;}
.x73_c00199{left:275.200000pt;}
.xb8_c00199{left:280.266667pt;}
.x62_c00199{left:281.466667pt;}
.x28_c00199{left:282.800000pt;}
.x7f_c00199{left:284.933333pt;}
.x40_c00199{left:287.333333pt;}
.xca_c00199{left:289.200000pt;}
.xbe_c00199{left:290.800000pt;}
.x11f_c00199{left:292.533333pt;}
.x135_c00199{left:293.466667pt;}
.xd3_c00199{left:294.666667pt;}
.x19_c00199{left:295.600000pt;}
.x8_c00199{left:297.733333pt;}
.x74_c00199{left:300.533333pt;}
.xe4_c00199{left:302.666667pt;}
.xb3_c00199{left:304.666667pt;}
.xf1_c00199{left:307.600000pt;}
.x29_c00199{left:309.733333pt;}
.x1a_c00199{left:313.866667pt;}
.x9a_c00199{left:315.600000pt;}
.xda_c00199{left:316.533333pt;}
.x9_c00199{left:317.866667pt;}
.x80_c00199{left:319.466667pt;}
.x63_c00199{left:320.533333pt;}
.xc8_c00199{left:321.866667pt;}
.x109_c00199{left:323.466667pt;}
.x2a_c00199{left:324.400000pt;}
.x85_c00199{left:325.733333pt;}
.x10c_c00199{left:326.933333pt;}
.x36_c00199{left:329.066667pt;}
.xb9_c00199{left:330.133333pt;}
.x6c_c00199{left:331.733333pt;}
.x4a_c00199{left:336.000000pt;}
.x75_c00199{left:337.066667pt;}
.xf2_c00199{left:340.266667pt;}
.x2b_c00199{left:342.000000pt;}
.x56_c00199{left:343.600000pt;}
.x12a_c00199{left:344.666667pt;}
.xa_c00199{left:346.000000pt;}
.x93_c00199{left:346.933333pt;}
.x86_c00199{left:350.000000pt;}
.x9b_c00199{left:351.066667pt;}
.x6d_c00199{left:352.266667pt;}
.xaa_c00199{left:354.133333pt;}
.xe5_c00199{left:355.733333pt;}
.xff_c00199{left:356.933333pt;}
.x120_c00199{left:358.800000pt;}
.x37_c00199{left:360.400000pt;}
.x4b_c00199{left:361.600000pt;}
.x57_c00199{left:363.466667pt;}
.x1_c00199{left:365.466667pt;}
.x136_c00199{left:367.466667pt;}
.x2c_c00199{left:371.733333pt;}
.xdb_c00199{left:374.800000pt;}
.x6e_c00199{left:376.533333pt;}
.x41_c00199{left:378.666667pt;}
.xab_c00199{left:381.600000pt;}
.x137_c00199{left:383.466667pt;}
.xb_c00199{left:385.733333pt;}
.x64_c00199{left:387.333333pt;}
.xbf_c00199{left:388.266667pt;}
.x4c_c00199{left:389.466667pt;}
.xec_c00199{left:391.066667pt;}
.x87_c00199{left:392.266667pt;}
.x94_c00199{left:393.600000pt;}
.xcb_c00199{left:396.000000pt;}
.x76_c00199{left:398.266667pt;}
.x104_c00199{left:401.466667pt;}
.xd4_c00199{left:402.933333pt;}
.xac_c00199{left:404.266667pt;}
.x42_c00199{left:405.600000pt;}
.xf7_c00199{left:407.733333pt;}
.xf3_c00199{left:409.600000pt;}
.x1b_c00199{left:411.200000pt;}
.x6f_c00199{left:412.400000pt;}
.x12e_c00199{left:418.000000pt;}
.x43_c00199{left:419.733333pt;}
.x121_c00199{left:421.200000pt;}
.xb4_c00199{left:422.400000pt;}
.x123_c00199{left:423.733333pt;}
.x4d_c00199{left:424.666667pt;}
.xc0_c00199{left:425.733333pt;}
.xf8_c00199{left:427.200000pt;}
.xcc_c00199{left:428.933333pt;}
.x1c_c00199{left:430.400000pt;}
.x65_c00199{left:433.466667pt;}
.xa6_c00199{left:435.200000pt;}
.x100_c00199{left:436.933333pt;}
.xe6_c00199{left:438.933333pt;}
.x10d_c00199{left:439.866667pt;}
.x38_c00199{left:441.733333pt;}
.x12b_c00199{left:443.866667pt;}
.x58_c00199{left:445.600000pt;}
.x88_c00199{left:449.200000pt;}
.x77_c00199{left:451.600000pt;}
.xad_c00199{left:454.533333pt;}
.xd5_c00199{left:455.466667pt;}
.x44_c00199{left:456.533333pt;}
.xc_c00199{left:459.333333pt;}
.xcd_c00199{left:461.200000pt;}
.x81_c00199{left:463.733333pt;}
.x12f_c00199{left:465.733333pt;}
.x119_c00199{left:466.933333pt;}
.xed_c00199{left:467.866667pt;}
.x78_c00199{left:469.200000pt;}
.xae_c00199{left:470.533333pt;}
.x2d_c00199{left:473.866667pt;}
.x45_c00199{left:475.466667pt;}
.x95_c00199{left:476.400000pt;}
.x127_c00199{left:477.333333pt;}
.xdc_c00199{left:479.066667pt;}
.xc1_c00199{left:481.066667pt;}
.xd6_c00199{left:482.666667pt;}
.x4e_c00199{left:483.866667pt;}
.x89_c00199{left:485.333333pt;}
.xd_c00199{left:487.466667pt;}
.x39_c00199{left:489.066667pt;}
.xce_c00199{left:490.933333pt;}
.x10e_c00199{left:492.400000pt;}
.x1d_c00199{left:493.466667pt;}
.x114_c00199{left:494.800000pt;}
.x128_c00199{left:497.466667pt;}
.xa7_c00199{left:498.533333pt;}
.x59_c00199{left:499.733333pt;}
.xe_c00199{left:502.800000pt;}
.x122_c00199{left:503.733333pt;}
.x4f_c00199{left:504.933333pt;}
.x2e_c00199{left:506.533333pt;}
.x9c_c00199{left:510.000000pt;}
.x70_c00199{left:511.066667pt;}
.xd7_c00199{left:513.066667pt;}
.x3a_c00199{left:514.666667pt;}
.x11c_c00199{left:517.600000pt;}
.xba_c00199{left:520.266667pt;}
.x1e_c00199{left:522.000000pt;}
.xdd_c00199{left:522.933333pt;}
.x8a_c00199{left:524.400000pt;}
.xc2_c00199{left:527.200000pt;}
.xf_c00199{left:528.400000pt;}
.x2f_c00199{left:530.533333pt;}
.x46_c00199{left:532.400000pt;}
.x124_c00199{left:533.466667pt;}
.x5a_c00199{left:534.666667pt;}
.xf9_c00199{left:536.933333pt;}
.x71_c00199{left:538.533333pt;}
.x9d_c00199{left:542.666667pt;}
.xe7_c00199{left:543.866667pt;}
.xb5_c00199{left:546.533333pt;}
.x10f_c00199{left:547.466667pt;}
.xee_c00199{left:548.533333pt;}
.x101_c00199{left:549.866667pt;}
.x12c_c00199{left:551.333333pt;}
.xde_c00199{left:552.400000pt;}
.x66_c00199{left:554.133333pt;}
.xaf_c00199{left:556.533333pt;}
.x3b_c00199{left:558.133333pt;}
.x9e_c00199{left:560.266667pt;}
.x115_c00199{left:561.333333pt;}
.x10_c00199{left:562.933333pt;}
.x5b_c00199{left:564.800000pt;}
.xe8_c00199{left:566.533333pt;}
.x1f_c00199{left:570.666667pt;}
.x102_c00199{left:571.600000pt;}
.xcf_c00199{left:574.400000pt;}
.x79_c00199{left:576.133333pt;}
.x116_c00199{left:578.000000pt;}
.x5c_c00199{left:578.933333pt;}
.x11d_c00199{left:580.000000pt;}
.x12d_c00199{left:581.066667pt;}
.x30_c00199{left:582.000000pt;}
.x8b_c00199{left:583.333333pt;}
.x138_c00199{left:587.466667pt;}
.x47_c00199{left:589.333333pt;}
.x9f_c00199{left:591.333333pt;}
.x8c_c00199{left:593.200000pt;}
.x11_c00199{left:595.866667pt;}
.x96_c00199{left:599.333333pt;}
.x125_c00199{left:602.933333pt;}
.x11a_c00199{left:604.800000pt;}
.x3c_c00199{left:605.866667pt;}
.xdf_c00199{left:606.800000pt;}
.x20_c00199{left:608.133333pt;}
.x8d_c00199{left:609.466667pt;}
.x130_c00199{left:610.933333pt;}
.x117_c00199{left:612.533333pt;}
.xef_c00199{left:614.133333pt;}
.xc3_c00199{left:615.200000pt;}
.xb0_c00199{left:616.133333pt;}
.x67_c00199{left:617.600000pt;}
.x139_c00199{left:619.466667pt;}
.xfa_c00199{left:623.600000pt;}
.x97_c00199{left:624.666667pt;}
.x7a_c00199{left:627.333333pt;}
.xb6_c00199{left:629.733333pt;}
.x110_c00199{left:630.933333pt;}
.x12_c00199{left:632.666667pt;}
.xc4_c00199{left:636.000000pt;}
.x8e_c00199{left:639.200000pt;}
.x5d_c00199{left:641.066667pt;}
.x68_c00199{left:642.533333pt;}
.x48_c00199{left:644.666667pt;}
.xa0_c00199{left:646.933333pt;}
.x21_c00199{left:648.800000pt;}
.x13_c00199{left:650.533333pt;}
.x7b_c00199{left:652.933333pt;}
.x105_c00199{left:654.400000pt;}
.x82_c00199{left:656.133333pt;}
.xd8_c00199{left:657.066667pt;}
.x2_c00199{left:660.533333pt;}
.x3d_c00199{left:662.133333pt;}
.x8f_c00199{left:663.466667pt;}
.x22_c00199{left:664.800000pt;}
.x131_c00199{left:667.866667pt;}
.xa8_c00199{left:668.800000pt;}
.x50_c00199{left:670.000000pt;}
.x106_c00199{left:673.333333pt;}
.xfb_c00199{left:676.800000pt;}
}





/* 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_c00200 {
    display:none;
  }
  .loading-indicator_c00200.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00200 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_c00200 { 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_c00200" -> "#page-container .classname_c00200")
 */
.pf_c00200 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00200 { /* 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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00200 { /* 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_c00200 { /* 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_c00200 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00200 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00200 {overflow:visible;}
  }
}
.c_c00200 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00200 { /* 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_c00200:after { /* webkit #35443 */
  content: '';
}
.t_c00200:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00200 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 */
}
.__c00200 { /* 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_c00200 { /* info for Javascript */
  display:none;
}
.l_c00200 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00200 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00200 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00200: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_c00200 {
    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_c00200.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00200.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_c00200 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00200{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00200;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.000000;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;}
.m8_c00200{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m14_c00200{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00200{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mb_c00200{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m0_c00200{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m65_c00200{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m61_c00200{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00200{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00200{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m34_c00200{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m57_c00200{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m63_c00200{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00200{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m64_c00200{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00200{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00200{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00200{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m62_c00200{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma_c00200{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00200{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m54_c00200{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m22_c00200{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00200{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m51_c00200{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m24_c00200{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00200{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m45_c00200{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m11_c00200{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m37_c00200{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m13_c00200{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00200{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m35_c00200{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m16_c00200{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00200{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m47_c00200{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m42_c00200{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m28_c00200{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m21_c00200{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00200{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m32_c00200{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00200{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m55_c00200{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00200{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m33_c00200{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m50_c00200{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m30_c00200{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m56_c00200{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00200{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m49_c00200{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m25_c00200{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m18_c00200{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m52_c00200{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m4_c00200{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00200{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00200{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3_c00200{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m29_c00200{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00200{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m15_c00200{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5_c00200{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00200{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00200{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m20_c00200{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m44_c00200{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m17_c00200{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m53_c00200{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m31_c00200{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7_c00200{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m41_c00200{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m23_c00200{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00200{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m40_c00200{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m59_c00200{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc_c00200{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00200{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00200{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00200{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m39_c00200{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mf_c00200{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00200{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00200{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m38_c00200{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m58_c00200{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9_c00200{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m48_c00200{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10_c00200{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m27_c00200{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00200{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m46_c00200{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00200{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m19_c00200{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00200{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00200{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00200{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m43_c00200{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1_c00200{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00200{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00200{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00200{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00200{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m26_c00200{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m12_c00200{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00200{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls0_c00200{letter-spacing:0.000000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{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__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00200{word-spacing:0.000000px;}
.ws0_c00200{word-spacing:1.250000px;}
.fc0_c00200{color:transparent;}
.fs0_c00200{font-size:60.000000px;}
.y0_c00200{bottom:0.000000px;}
.yf_c00200{bottom:736.650000px;}
.ye_c00200{bottom:753.150000px;}
.yd_c00200{bottom:793.800000px;}
.yc_c00200{bottom:813.300000px;}
.yb_c00200{bottom:833.400000px;}
.ya_c00200{bottom:852.900000px;}
.y9_c00200{bottom:873.000000px;}
.y8_c00200{bottom:892.650000px;}
.y7_c00200{bottom:912.750000px;}
.y6_c00200{bottom:932.850000px;}
.y5_c00200{bottom:952.650000px;}
.y4_c00200{bottom:972.450000px;}
.y3_c00200{bottom:992.250000px;}
.y2_c00200{bottom:1012.350000px;}
.y1_c00200{bottom:1049.400000px;}
.h2_c00200{height:60.000000px;}
.h0_c00200{height:1166.759949px;}
.h1_c00200{height:1167.000000px;}
.w0_c00200{width:918.720063px;}
.w1_c00200{width:918.750000px;}
.x0_c00200{left:0.000000px;}
.x4_c00200{left:156.600000px;}
.x1_c00200{left:158.100000px;}
.x2_c00200{left:166.800000px;}
.xa1_c00200{left:172.350000px;}
.x6d_c00200{left:175.500000px;}
.x35_c00200{left:182.850000px;}
.x93_c00200{left:183.900000px;}
.x5_c00200{left:185.400000px;}
.x65_c00200{left:188.700000px;}
.x6e_c00200{left:190.200000px;}
.xa2_c00200{left:194.250000px;}
.x50_c00200{left:197.700000px;}
.x43_c00200{left:212.850000px;}
.x36_c00200{left:214.200000px;}
.x19_c00200{left:220.950000px;}
.x5c_c00200{left:224.250000px;}
.x79_c00200{left:225.450000px;}
.x6_c00200{left:226.800000px;}
.x27_c00200{left:230.700000px;}
.x44_c00200{left:233.700000px;}
.x6f_c00200{left:235.500000px;}
.x94_c00200{left:237.150000px;}
.x51_c00200{left:239.850000px;}
.x1a_c00200{left:241.500000px;}
.x5d_c00200{left:244.800000px;}
.x95_c00200{left:246.150000px;}
.x37_c00200{left:257.700000px;}
.x1b_c00200{left:259.200000px;}
.x8c_c00200{left:260.850000px;}
.x7_c00200{left:262.500000px;}
.x28_c00200{left:266.400000px;}
.x96_c00200{left:269.250000px;}
.x45_c00200{left:274.050000px;}
.x5e_c00200{left:275.700000px;}
.x83_c00200{left:277.950000px;}
.x52_c00200{left:280.500000px;}
.x8_c00200{left:283.350000px;}
.x97_c00200{left:294.450000px;}
.x38_c00200{left:300.900000px;}
.x70_c00200{left:302.850000px;}
.x5f_c00200{left:308.400000px;}
.x1c_c00200{left:315.000000px;}
.x29_c00200{left:317.550000px;}
.x7a_c00200{left:321.150000px;}
.x9_c00200{left:322.950000px;}
.x39_c00200{left:328.200000px;}
.xa_c00200{left:334.800000px;}
.x1d_c00200{left:335.850000px;}
.x84_c00200{left:337.650000px;}
.x2a_c00200{left:340.650000px;}
.x8d_c00200{left:343.200000px;}
.x60_c00200{left:351.300000px;}
.x1e_c00200{left:353.100000px;}
.xb_c00200{left:366.150000px;}
.x53_c00200{left:367.350000px;}
.x3a_c00200{left:369.600000px;}
.x61_c00200{left:371.100000px;}
.x66_c00200{left:388.950000px;}
.x46_c00200{left:390.750000px;}
.x98_c00200{left:391.950000px;}
.x71_c00200{left:396.450000px;}
.x54_c00200{left:398.250000px;}
.xc_c00200{left:400.050000px;}
.x8e_c00200{left:403.650000px;}
.x1f_c00200{left:409.950000px;}
.x67_c00200{left:417.750000px;}
.x47_c00200{left:421.050000px;}
.x72_c00200{left:422.700000px;}
.x62_c00200{left:425.100000px;}
.xd_c00200{left:432.750000px;}
.x7b_c00200{left:434.550000px;}
.x99_c00200{left:438.000000px;}
.x55_c00200{left:441.450000px;}
.x3b_c00200{left:443.700000px;}
.x63_c00200{left:446.700000px;}
.xe_c00200{left:449.700000px;}
.x3_c00200{left:453.300000px;}
.x2b_c00200{left:464.400000px;}
.x7c_c00200{left:465.450000px;}
.x8f_c00200{left:469.050000px;}
.x73_c00200{left:471.300000px;}
.x48_c00200{left:475.050000px;}
.xf_c00200{left:478.500000px;}
.x3c_c00200{left:481.500000px;}
.x2c_c00200{left:482.700000px;}
.x68_c00200{left:487.950000px;}
.x85_c00200{left:489.900000px;}
.x7d_c00200{left:493.500000px;}
.x74_c00200{left:495.750000px;}
.x10_c00200{left:498.300000px;}
.x20_c00200{left:499.950000px;}
.x49_c00200{left:504.600000px;}
.x2d_c00200{left:523.350000px;}
.x11_c00200{left:527.100000px;}
.x86_c00200{left:530.550000px;}
.x3d_c00200{left:537.600000px;}
.x64_c00200{left:541.500000px;}
.x9a_c00200{left:546.450000px;}
.x2e_c00200{left:552.150000px;}
.x3e_c00200{left:556.350000px;}
.x21_c00200{left:557.850000px;}
.x7e_c00200{left:560.850000px;}
.x4a_c00200{left:562.500000px;}
.x9b_c00200{left:565.200000px;}
.x56_c00200{left:568.200000px;}
.x2f_c00200{left:573.000000px;}
.x75_c00200{left:578.100000px;}
.x87_c00200{left:584.550000px;}
.x12_c00200{left:586.200000px;}
.x9c_c00200{left:589.650000px;}
.x57_c00200{left:591.600000px;}
.x3f_c00200{left:596.250000px;}
.x30_c00200{left:601.500000px;}
.x90_c00200{left:603.300000px;}
.x7f_c00200{left:607.650000px;}
.x13_c00200{left:608.850000px;}
.x4b_c00200{left:610.350000px;}
.x58_c00200{left:622.200000px;}
.x9d_c00200{left:627.450000px;}
.x31_c00200{left:632.850000px;}
.x22_c00200{left:639.600000px;}
.x69_c00200{left:642.000000px;}
.x91_c00200{left:646.800000px;}
.x80_c00200{left:649.800000px;}
.x32_c00200{left:652.650000px;}
.x76_c00200{left:654.450000px;}
.x14_c00200{left:655.650000px;}
.x59_c00200{left:661.500000px;}
.x9e_c00200{left:662.700000px;}
.x40_c00200{left:672.600000px;}
.x77_c00200{left:675.000000px;}
.x15_c00200{left:676.950000px;}
.x4c_c00200{left:678.750000px;}
.x81_c00200{left:680.100000px;}
.x23_c00200{left:681.300000px;}
.x6a_c00200{left:686.250000px;}
.x88_c00200{left:691.800000px;}
.x6b_c00200{left:708.600000px;}
.x24_c00200{left:714.450000px;}
.x89_c00200{left:717.300000px;}
.x16_c00200{left:720.150000px;}
.x41_c00200{left:724.350000px;}
.x92_c00200{left:728.550000px;}
.x82_c00200{left:732.300000px;}
.x4d_c00200{left:735.300000px;}
.x33_c00200{left:738.000000px;}
.x17_c00200{left:742.500000px;}
.x9f_c00200{left:744.000000px;}
.x8a_c00200{left:747.900000px;}
.x5a_c00200{left:750.450000px;}
.xa0_c00200{left:752.250000px;}
.x25_c00200{left:760.200000px;}
.x6c_c00200{left:764.100000px;}
.x18_c00200{left:771.000000px;}
.x4e_c00200{left:778.800000px;}
.x78_c00200{left:780.900000px;}
.x26_c00200{left:792.900000px;}
.x34_c00200{left:797.400000px;}
.x8b_c00200{left:799.350000px;}
.x4f_c00200{left:801.150000px;}
.x42_c00200{left:802.200000px;}
.x5b_c00200{left:809.550000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws1_c00200{word-spacing:0.000000pt;}
.ws0_c00200{word-spacing:1.111111pt;}
.fs0_c00200{font-size:53.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.yf_c00200{bottom:654.800000pt;}
.ye_c00200{bottom:669.466667pt;}
.yd_c00200{bottom:705.600000pt;}
.yc_c00200{bottom:722.933333pt;}
.yb_c00200{bottom:740.800000pt;}
.ya_c00200{bottom:758.133333pt;}
.y9_c00200{bottom:776.000000pt;}
.y8_c00200{bottom:793.466667pt;}
.y7_c00200{bottom:811.333333pt;}
.y6_c00200{bottom:829.200000pt;}
.y5_c00200{bottom:846.800000pt;}
.y4_c00200{bottom:864.400000pt;}
.y3_c00200{bottom:882.000000pt;}
.y2_c00200{bottom:899.866667pt;}
.y1_c00200{bottom:932.800000pt;}
.h2_c00200{height:53.333333pt;}
.h0_c00200{height:1037.119955pt;}
.h1_c00200{height:1037.333333pt;}
.w0_c00200{width:816.640056pt;}
.w1_c00200{width:816.666667pt;}
.x0_c00200{left:0.000000pt;}
.x4_c00200{left:139.200000pt;}
.x1_c00200{left:140.533333pt;}
.x2_c00200{left:148.266667pt;}
.xa1_c00200{left:153.200000pt;}
.x6d_c00200{left:156.000000pt;}
.x35_c00200{left:162.533333pt;}
.x93_c00200{left:163.466667pt;}
.x5_c00200{left:164.800000pt;}
.x65_c00200{left:167.733333pt;}
.x6e_c00200{left:169.066667pt;}
.xa2_c00200{left:172.666667pt;}
.x50_c00200{left:175.733333pt;}
.x43_c00200{left:189.200000pt;}
.x36_c00200{left:190.400000pt;}
.x19_c00200{left:196.400000pt;}
.x5c_c00200{left:199.333333pt;}
.x79_c00200{left:200.400000pt;}
.x6_c00200{left:201.600000pt;}
.x27_c00200{left:205.066667pt;}
.x44_c00200{left:207.733333pt;}
.x6f_c00200{left:209.333333pt;}
.x94_c00200{left:210.800000pt;}
.x51_c00200{left:213.200000pt;}
.x1a_c00200{left:214.666667pt;}
.x5d_c00200{left:217.600000pt;}
.x95_c00200{left:218.800000pt;}
.x37_c00200{left:229.066667pt;}
.x1b_c00200{left:230.400000pt;}
.x8c_c00200{left:231.866667pt;}
.x7_c00200{left:233.333333pt;}
.x28_c00200{left:236.800000pt;}
.x96_c00200{left:239.333333pt;}
.x45_c00200{left:243.600000pt;}
.x5e_c00200{left:245.066667pt;}
.x83_c00200{left:247.066667pt;}
.x52_c00200{left:249.333333pt;}
.x8_c00200{left:251.866667pt;}
.x97_c00200{left:261.733333pt;}
.x38_c00200{left:267.466667pt;}
.x70_c00200{left:269.200000pt;}
.x5f_c00200{left:274.133333pt;}
.x1c_c00200{left:280.000000pt;}
.x29_c00200{left:282.266667pt;}
.x7a_c00200{left:285.466667pt;}
.x9_c00200{left:287.066667pt;}
.x39_c00200{left:291.733333pt;}
.xa_c00200{left:297.600000pt;}
.x1d_c00200{left:298.533333pt;}
.x84_c00200{left:300.133333pt;}
.x2a_c00200{left:302.800000pt;}
.x8d_c00200{left:305.066667pt;}
.x60_c00200{left:312.266667pt;}
.x1e_c00200{left:313.866667pt;}
.xb_c00200{left:325.466667pt;}
.x53_c00200{left:326.533333pt;}
.x3a_c00200{left:328.533333pt;}
.x61_c00200{left:329.866667pt;}
.x66_c00200{left:345.733333pt;}
.x46_c00200{left:347.333333pt;}
.x98_c00200{left:348.400000pt;}
.x71_c00200{left:352.400000pt;}
.x54_c00200{left:354.000000pt;}
.xc_c00200{left:355.600000pt;}
.x8e_c00200{left:358.800000pt;}
.x1f_c00200{left:364.400000pt;}
.x67_c00200{left:371.333333pt;}
.x47_c00200{left:374.266667pt;}
.x72_c00200{left:375.733333pt;}
.x62_c00200{left:377.866667pt;}
.xd_c00200{left:384.666667pt;}
.x7b_c00200{left:386.266667pt;}
.x99_c00200{left:389.333333pt;}
.x55_c00200{left:392.400000pt;}
.x3b_c00200{left:394.400000pt;}
.x63_c00200{left:397.066667pt;}
.xe_c00200{left:399.733333pt;}
.x3_c00200{left:402.933333pt;}
.x2b_c00200{left:412.800000pt;}
.x7c_c00200{left:413.733333pt;}
.x8f_c00200{left:416.933333pt;}
.x73_c00200{left:418.933333pt;}
.x48_c00200{left:422.266667pt;}
.xf_c00200{left:425.333333pt;}
.x3c_c00200{left:428.000000pt;}
.x2c_c00200{left:429.066667pt;}
.x68_c00200{left:433.733333pt;}
.x85_c00200{left:435.466667pt;}
.x7d_c00200{left:438.666667pt;}
.x74_c00200{left:440.666667pt;}
.x10_c00200{left:442.933333pt;}
.x20_c00200{left:444.400000pt;}
.x49_c00200{left:448.533333pt;}
.x2d_c00200{left:465.200000pt;}
.x11_c00200{left:468.533333pt;}
.x86_c00200{left:471.600000pt;}
.x3d_c00200{left:477.866667pt;}
.x64_c00200{left:481.333333pt;}
.x9a_c00200{left:485.733333pt;}
.x2e_c00200{left:490.800000pt;}
.x3e_c00200{left:494.533333pt;}
.x21_c00200{left:495.866667pt;}
.x7e_c00200{left:498.533333pt;}
.x4a_c00200{left:500.000000pt;}
.x9b_c00200{left:502.400000pt;}
.x56_c00200{left:505.066667pt;}
.x2f_c00200{left:509.333333pt;}
.x75_c00200{left:513.866667pt;}
.x87_c00200{left:519.600000pt;}
.x12_c00200{left:521.066667pt;}
.x9c_c00200{left:524.133333pt;}
.x57_c00200{left:525.866667pt;}
.x3f_c00200{left:530.000000pt;}
.x30_c00200{left:534.666667pt;}
.x90_c00200{left:536.266667pt;}
.x7f_c00200{left:540.133333pt;}
.x13_c00200{left:541.200000pt;}
.x4b_c00200{left:542.533333pt;}
.x58_c00200{left:553.066667pt;}
.x9d_c00200{left:557.733333pt;}
.x31_c00200{left:562.533333pt;}
.x22_c00200{left:568.533333pt;}
.x69_c00200{left:570.666667pt;}
.x91_c00200{left:574.933333pt;}
.x80_c00200{left:577.600000pt;}
.x32_c00200{left:580.133333pt;}
.x76_c00200{left:581.733333pt;}
.x14_c00200{left:582.800000pt;}
.x59_c00200{left:588.000000pt;}
.x9e_c00200{left:589.066667pt;}
.x40_c00200{left:597.866667pt;}
.x77_c00200{left:600.000000pt;}
.x15_c00200{left:601.733333pt;}
.x4c_c00200{left:603.333333pt;}
.x81_c00200{left:604.533333pt;}
.x23_c00200{left:605.600000pt;}
.x6a_c00200{left:610.000000pt;}
.x88_c00200{left:614.933333pt;}
.x6b_c00200{left:629.866667pt;}
.x24_c00200{left:635.066667pt;}
.x89_c00200{left:637.600000pt;}
.x16_c00200{left:640.133333pt;}
.x41_c00200{left:643.866667pt;}
.x92_c00200{left:647.600000pt;}
.x82_c00200{left:650.933333pt;}
.x4d_c00200{left:653.600000pt;}
.x33_c00200{left:656.000000pt;}
.x17_c00200{left:660.000000pt;}
.x9f_c00200{left:661.333333pt;}
.x8a_c00200{left:664.800000pt;}
.x5a_c00200{left:667.066667pt;}
.xa0_c00200{left:668.666667pt;}
.x25_c00200{left:675.733333pt;}
.x6c_c00200{left:679.200000pt;}
.x18_c00200{left:685.333333pt;}
.x4e_c00200{left:692.266667pt;}
.x78_c00200{left:694.133333pt;}
.x26_c00200{left:704.800000pt;}
.x34_c00200{left:708.800000pt;}
.x8b_c00200{left:710.533333pt;}
.x4f_c00200{left:712.133333pt;}
.x42_c00200{left:713.066667pt;}
.x5b_c00200{left:719.600000pt;}
}





/* 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_c00201 {
    display:none;
  }
  .loading-indicator_c00201.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00201 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_c00201 { 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_c00201" -> "#page-container .classname_c00201")
 */
.pf_c00201 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00201 { /* 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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00201 { /* 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_c00201 { /* 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_c00201 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00201 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00201 {overflow:visible;}
  }
}
.c_c00201 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00201 { /* 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_c00201:after { /* webkit #35443 */
  content: '';
}
.t_c00201:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00201 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 */
}
.__c00201 { /* 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_c00201 { /* info for Javascript */
  display:none;
}
.l_c00201 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00201 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00201 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00201: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_c00201 {
    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_c00201.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00201.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_c00201 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00201{font-family:sans-serif;visibility:hidden;}
.sc__c00201{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
}
.y0_c00201{bottom:0.000000px;}
.h0_c00201{height:1166.759949px;}
.h1_c00201{height:1167.000000px;}
.w0_c00201{width:918.720063px;}
.w1_c00201{width:918.750000px;}
.x0_c00201{left:0.000000px;}
@media print{
.y0_c00201{bottom:0.000000pt;}
.h0_c00201{height:1037.119955pt;}
.h1_c00201{height:1037.333333pt;}
.w0_c00201{width:816.640056pt;}
.w1_c00201{width:816.666667pt;}
.x0_c00201{left:0.000000pt;}
}





/* 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_c00202 {
    display:none;
  }
  .loading-indicator_c00202.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00202 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_c00202 { 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_c00202" -> "#page-container .classname_c00202")
 */
.pf_c00202 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00202 { /* 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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00202 { /* 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_c00202 { /* 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_c00202 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00202 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00202 {overflow:visible;}
  }
}
.c_c00202 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00202 { /* 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_c00202:after { /* webkit #35443 */
  content: '';
}
.t_c00202:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00202 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 */
}
.__c00202 { /* 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_c00202 { /* info for Javascript */
  display:none;
}
.l_c00202 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00202 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00202 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00202: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_c00202 {
    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_c00202.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00202.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_c00202 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00202{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00202;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.000000;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;}
.md_c00202{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m21_c00202{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00202{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5_c00202{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00202{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.393250,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00202{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m11_c00202{transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465500,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00202{vertical-align:0.000000px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{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__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00202{word-spacing:0.000000px;}
.ws1_c00202{word-spacing:5.968215px;}
.ws0_c00202{word-spacing:138.324511px;}
.fc0_c00202{color:transparent;}
.fs4_c00202{font-size:36.000000px;}
.fs0_c00202{font-size:42.000000px;}
.fs2_c00202{font-size:54.000000px;}
.fs3_c00202{font-size:66.000000px;}
.fs1_c00202{font-size:84.000000px;}
.y0_c00202{bottom:0.000000px;}
.y9_c00202{bottom:32.400000px;}
.y8_c00202{bottom:63.750000px;}
.y7_c00202{bottom:80.250000px;}
.y5_c00202{bottom:97.950000px;}
.y6_c00202{bottom:98.250000px;}
.y4_c00202{bottom:141.150000px;}
.y3_c00202{bottom:170.700000px;}
.y2_c00202{bottom:201.600000px;}
.y1_c00202{bottom:1114.200000px;}
.h6_c00202{height:36.000000px;}
.h2_c00202{height:42.000000px;}
.h4_c00202{height:54.000000px;}
.h5_c00202{height:66.000000px;}
.h3_c00202{height:84.000000px;}
.h0_c00202{height:1166.759949px;}
.h1_c00202{height:1167.000000px;}
.w0_c00202{width:918.720063px;}
.w1_c00202{width:918.750000px;}
.x0_c00202{left:0.000000px;}
.x18_c00202{left:31.650000px;}
.x1_c00202{left:86.400000px;}
.x2_c00202{left:136.050000px;}
.x14_c00202{left:145.050000px;}
.x19_c00202{left:178.200000px;}
.x3_c00202{left:181.350000px;}
.x20_c00202{left:183.300000px;}
.x11_c00202{left:190.050000px;}
.x1a_c00202{left:208.500000px;}
.x1d_c00202{left:210.600000px;}
.x15_c00202{left:213.450000px;}
.x17_c00202{left:215.700000px;}
.x21_c00202{left:231.900000px;}
.x1f_c00202{left:247.500000px;}
.x16_c00202{left:249.450000px;}
.x12_c00202{left:250.500000px;}
.x1b_c00202{left:253.500000px;}
.x1e_c00202{left:257.700000px;}
.x1c_c00202{left:266.100000px;}
.x4_c00202{left:277.950000px;}
.x22_c00202{left:279.750000px;}
.x13_c00202{left:316.800000px;}
.x5_c00202{left:326.250000px;}
.x23_c00202{left:328.350000px;}
.x6_c00202{left:373.800000px;}
.x7_c00202{left:419.850000px;}
.x8_c00202{left:468.150000px;}
.x9_c00202{left:514.650000px;}
.xa_c00202{left:562.500000px;}
.xb_c00202{left:609.300000px;}
.xc_c00202{left:656.850000px;}
.xd_c00202{left:703.650000px;}
.xe_c00202{left:751.500000px;}
.xf_c00202{left:800.400000px;}
.x10_c00202{left:850.800000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws2_c00202{word-spacing:0.000000pt;}
.ws1_c00202{word-spacing:5.305080pt;}
.ws0_c00202{word-spacing:122.955121pt;}
.fs4_c00202{font-size:32.000000pt;}
.fs0_c00202{font-size:37.333333pt;}
.fs2_c00202{font-size:48.000000pt;}
.fs3_c00202{font-size:58.666667pt;}
.fs1_c00202{font-size:74.666667pt;}
.y0_c00202{bottom:0.000000pt;}
.y9_c00202{bottom:28.800000pt;}
.y8_c00202{bottom:56.666667pt;}
.y7_c00202{bottom:71.333333pt;}
.y5_c00202{bottom:87.066667pt;}
.y6_c00202{bottom:87.333333pt;}
.y4_c00202{bottom:125.466667pt;}
.y3_c00202{bottom:151.733333pt;}
.y2_c00202{bottom:179.200000pt;}
.y1_c00202{bottom:990.400000pt;}
.h6_c00202{height:32.000000pt;}
.h2_c00202{height:37.333333pt;}
.h4_c00202{height:48.000000pt;}
.h5_c00202{height:58.666667pt;}
.h3_c00202{height:74.666667pt;}
.h0_c00202{height:1037.119955pt;}
.h1_c00202{height:1037.333333pt;}
.w0_c00202{width:816.640056pt;}
.w1_c00202{width:816.666667pt;}
.x0_c00202{left:0.000000pt;}
.x18_c00202{left:28.133333pt;}
.x1_c00202{left:76.800000pt;}
.x2_c00202{left:120.933333pt;}
.x14_c00202{left:128.933333pt;}
.x19_c00202{left:158.400000pt;}
.x3_c00202{left:161.200000pt;}
.x20_c00202{left:162.933333pt;}
.x11_c00202{left:168.933333pt;}
.x1a_c00202{left:185.333333pt;}
.x1d_c00202{left:187.200000pt;}
.x15_c00202{left:189.733333pt;}
.x17_c00202{left:191.733333pt;}
.x21_c00202{left:206.133333pt;}
.x1f_c00202{left:220.000000pt;}
.x16_c00202{left:221.733333pt;}
.x12_c00202{left:222.666667pt;}
.x1b_c00202{left:225.333333pt;}
.x1e_c00202{left:229.066667pt;}
.x1c_c00202{left:236.533333pt;}
.x4_c00202{left:247.066667pt;}
.x22_c00202{left:248.666667pt;}
.x13_c00202{left:281.600000pt;}
.x5_c00202{left:290.000000pt;}
.x23_c00202{left:291.866667pt;}
.x6_c00202{left:332.266667pt;}
.x7_c00202{left:373.200000pt;}
.x8_c00202{left:416.133333pt;}
.x9_c00202{left:457.466667pt;}
.xa_c00202{left:500.000000pt;}
.xb_c00202{left:541.600000pt;}
.xc_c00202{left:583.866667pt;}
.xd_c00202{left:625.466667pt;}
.xe_c00202{left:668.000000pt;}
.xf_c00202{left:711.466667pt;}
.x10_c00202{left:756.266667pt;}
}





/* 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_c00203 {
    display:none;
  }
  .loading-indicator_c00203.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00203 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_c00203 { 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_c00203" -> "#page-container .classname_c00203")
 */
.pf_c00203 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00203 { /* 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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00203 { /* 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_c00203 { /* 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_c00203 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00203 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00203 {overflow:visible;}
  }
}
.c_c00203 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00203 { /* 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_c00203:after { /* webkit #35443 */
  content: '';
}
.t_c00203:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00203 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 */
}
.__c00203 { /* 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_c00203 { /* info for Javascript */
  display:none;
}
.l_c00203 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00203 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00203 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00203: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_c00203 {
    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_c00203.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00203.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_c00203 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00203{font-family:sans-serif;visibility:hidden;}
.sc__c00203{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
}
.y0_c00203{bottom:0.000000px;}
.h0_c00203{height:1166.759949px;}
.h1_c00203{height:1167.000000px;}
.w0_c00203{width:918.720063px;}
.w1_c00203{width:918.750000px;}
.x0_c00203{left:0.000000px;}
@media print{
.y0_c00203{bottom:0.000000pt;}
.h0_c00203{height:1037.119955pt;}
.h1_c00203{height:1037.333333pt;}
.w0_c00203{width:816.640056pt;}
.w1_c00203{width:816.666667pt;}
.x0_c00203{left:0.000000pt;}
}





/* 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_c00204 {
    display:none;
  }
  .loading-indicator_c00204.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00204 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_c00204 { 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_c00204" -> "#page-container .classname_c00204")
 */
.pf_c00204 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00204 { /* 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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00204 { /* 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_c00204 { /* 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_c00204 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00204 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00204 {overflow:visible;}
  }
}
.c_c00204 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00204 { /* 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_c00204:after { /* webkit #35443 */
  content: '';
}
.t_c00204:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00204 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 */
}
.__c00204 { /* 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_c00204 { /* info for Javascript */
  display:none;
}
.l_c00204 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00204 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00204 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00204: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_c00204 {
    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_c00204.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00204.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_c00204 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00204{font-family:sans-serif;visibility:hidden;}
.sc__c00204{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00204{-webkit-text-stroke:0px transparent;}
}
.y0_c00204{bottom:0.000000px;}
.h0_c00204{height:1166.759949px;}
.h1_c00204{height:1167.000000px;}
.w0_c00204{width:918.720063px;}
.w1_c00204{width:918.750000px;}
.x0_c00204{left:0.000000px;}
@media print{
.y0_c00204{bottom:0.000000pt;}
.h0_c00204{height:1037.119955pt;}
.h1_c00204{height:1037.333333pt;}
.w0_c00204{width:816.640056pt;}
.w1_c00204{width:816.666667pt;}
.x0_c00204{left:0.000000pt;}
}





/* 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_c00205 {
    display:none;
  }
  .loading-indicator_c00205.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00205 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_c00205 { 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_c00205" -> "#page-container .classname_c00205")
 */
.pf_c00205 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00205 { /* 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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00205 { /* 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_c00205 { /* 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_c00205 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00205 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00205 {overflow:visible;}
  }
}
.c_c00205 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00205 { /* 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_c00205:after { /* webkit #35443 */
  content: '';
}
.t_c00205:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00205 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 */
}
.__c00205 { /* 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_c00205 { /* info for Javascript */
  display:none;
}
.l_c00205 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00205 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00205 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00205: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_c00205 {
    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_c00205.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00205.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_c00205 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00205{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.000000;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;}
.m72_c00205{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00205{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00205{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00205{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mae_c00205{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m85_c00205{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m91_c00205{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m93_c00205{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00205{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m81_c00205{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mac_c00205{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mad_c00205{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00205{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m99_c00205{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m26_c00205{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00205{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00205{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00205{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m74_c00205{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m84_c00205{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m63_c00205{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00205{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00205{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00205{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m98_c00205{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mab_c00205{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m86_c00205{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00205{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m77_c00205{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m64_c00205{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00205{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00205{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maf_c00205{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m90_c00205{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00205{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m52_c00205{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00205{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m87_c00205{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00205{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m45_c00205{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m68_c00205{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m79_c00205{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m96_c00205{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m88_c00205{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m65_c00205{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00205{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m69_c00205{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m71_c00205{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m61_c00205{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00205{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00205{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00205{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m23_c00205{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m89_c00205{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.maa_c00205{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m60_c00205{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00205{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m73_c00205{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m29_c00205{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00205{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00205{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00205{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00205{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00205{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00205{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m76_c00205{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00205{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m92_c00205{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00205{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00205{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00205{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma_c00205{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.md_c00205{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m80_c00205{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m21_c00205{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m20_c00205{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m82_c00205{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m78_c00205{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00205{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00205{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00205{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00205{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00205{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00205{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00205{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c00205{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00205{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00205{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24_c00205{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m70_c00205{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);}
.m3_c00205{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m94_c00205{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m41_c00205{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00205{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m75_c00205{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00205{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00205{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m67_c00205{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00205{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m58_c00205{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m15_c00205{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m97_c00205{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m66_c00205{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m62_c00205{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m40_c00205{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m18_c00205{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m83_c00205{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00205{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00205{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00205{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m95_c00205{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.me_c00205{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00205{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m7_c00205{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.mb_c00205{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m5_c00205{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{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__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-6.864407px;}
.ws4_c00205{word-spacing:0.000000px;}
.ws1_c00205{word-spacing:0.277778px;}
.ws2_c00205{word-spacing:6.707317px;}
.ws3_c00205{word-spacing:8.055556px;}
._0_c00205{width:41.805556px;}
.fc0_c00205{color:transparent;}
.fs1_c00205{font-size:42.000000px;}
.fs0_c00205{font-size:60.000000px;}
.y0_c00205{bottom:0.000000px;}
.y28_c00205{bottom:146.100000px;}
.y27_c00205{bottom:173.250000px;}
.y26_c00205{bottom:193.050000px;}
.y25_c00205{bottom:212.850000px;}
.y24_c00205{bottom:232.950000px;}
.y23_c00205{bottom:252.750000px;}
.y22_c00205{bottom:272.250000px;}
.y21_c00205{bottom:292.350000px;}
.y20_c00205{bottom:312.150000px;}
.y1f_c00205{bottom:331.950000px;}
.y1e_c00205{bottom:351.750000px;}
.y1d_c00205{bottom:371.550000px;}
.y1c_c00205{bottom:391.350000px;}
.y1b_c00205{bottom:411.150000px;}
.y1a_c00205{bottom:430.950000px;}
.y19_c00205{bottom:450.750000px;}
.y18_c00205{bottom:470.550000px;}
.y17_c00205{bottom:490.350000px;}
.y16_c00205{bottom:510.450000px;}
.y15_c00205{bottom:529.650000px;}
.y14_c00205{bottom:549.750000px;}
.y13_c00205{bottom:569.550000px;}
.y12_c00205{bottom:589.350000px;}
.y11_c00205{bottom:609.150000px;}
.y10_c00205{bottom:628.950000px;}
.yf_c00205{bottom:648.750000px;}
.ye_c00205{bottom:668.550000px;}
.yd_c00205{bottom:688.350000px;}
.yc_c00205{bottom:707.850000px;}
.yb_c00205{bottom:727.950000px;}
.ya_c00205{bottom:747.750000px;}
.y9_c00205{bottom:767.550000px;}
.y8_c00205{bottom:787.650000px;}
.y7_c00205{bottom:807.450000px;}
.y6_c00205{bottom:827.250000px;}
.y5_c00205{bottom:847.050000px;}
.y4_c00205{bottom:880.500000px;}
.y3_c00205{bottom:900.450000px;}
.y2_c00205{bottom:933.150000px;}
.y1_c00205{bottom:1042.500000px;}
.h3_c00205{height:42.000000px;}
.h2_c00205{height:60.000000px;}
.h0_c00205{height:1166.759949px;}
.h1_c00205{height:1167.000000px;}
.w0_c00205{width:918.720063px;}
.w1_c00205{width:918.750000px;}
.x0_c00205{left:0.000000px;}
.x18_c00205{left:91.050000px;}
.x6b_c00205{left:93.000000px;}
.xa3_c00205{left:94.200000px;}
.xca_c00205{left:96.000000px;}
.x103_c00205{left:97.200000px;}
.x10e_c00205{left:98.250000px;}
.x35_c00205{left:103.650000px;}
.x6c_c00205{left:114.300000px;}
.x11c_c00205{left:116.400000px;}
.xb4_c00205{left:126.600000px;}
.x4_c00205{left:129.900000px;}
.x8a_c00205{left:132.750000px;}
.xcc_c00205{left:138.300000px;}
.x10a_c00205{left:140.700000px;}
.x104_c00205{left:143.250000px;}
.xcb_c00205{left:144.900000px;}
.x11d_c00205{left:146.700000px;}
.x52_c00205{left:148.350000px;}
.xa4_c00205{left:149.700000px;}
.xdd_c00205{left:151.350000px;}
.x19_c00205{left:152.550000px;}
.x8b_c00205{left:154.650000px;}
.x47_c00205{left:155.700000px;}
.x6d_c00205{left:158.250000px;}
.x27_c00205{left:161.100000px;}
.xef_c00205{left:163.800000px;}
.x53_c00205{left:166.350000px;}
.x1a_c00205{left:168.450000px;}
.x114_c00205{left:169.950000px;}
.xfd_c00205{left:171.000000px;}
.x36_c00205{left:172.350000px;}
.xbc_c00205{left:176.250000px;}
.xf7_c00205{left:177.750000px;}
.x122_c00205{left:178.800000px;}
.x97_c00205{left:180.150000px;}
.x28_c00205{left:181.650000px;}
.x126_c00205{left:185.700000px;}
.x78_c00205{left:187.500000px;}
.x6e_c00205{left:189.600000px;}
.xbd_c00205{left:192.150000px;}
.xcd_c00205{left:194.100000px;}
.x127_c00205{left:199.050000px;}
.x48_c00205{left:200.400000px;}
.x5_c00205{left:203.700000px;}
.x8c_c00205{left:204.750000px;}
.xf8_c00205{left:206.850000px;}
.xb5_c00205{left:208.350000px;}
.x54_c00205{left:209.850000px;}
.x5e_c00205{left:214.500000px;}
.x81_c00205{left:215.700000px;}
.x98_c00205{left:216.900000px;}
.x10b_c00205{left:218.100000px;}
.x49_c00205{left:219.150000px;}
.x37_c00205{left:220.950000px;}
.x1b_c00205{left:223.500000px;}
.x55_c00205{left:227.100000px;}
.xc4_c00205{left:230.400000px;}
.xf0_c00205{left:233.250000px;}
.x99_c00205{left:235.200000px;}
.xce_c00205{left:236.550000px;}
.xbe_c00205{left:238.200000px;}
.x116_c00205{left:239.400000px;}
.x79_c00205{left:240.450000px;}
.x10f_c00205{left:241.500000px;}
.x11e_c00205{left:244.500000px;}
.x6f_c00205{left:246.150000px;}
.xb6_c00205{left:247.200000px;}
.x8d_c00205{left:249.750000px;}
.x82_c00205{left:250.950000px;}
.x100_c00205{left:252.150000px;}
.x29_c00205{left:254.700000px;}
.xde_c00205{left:257.250000px;}
.x5f_c00205{left:258.450000px;}
.x38_c00205{left:259.800000px;}
.x6_c00205{left:261.300000px;}
.xd6_c00205{left:267.300000px;}
.x118_c00205{left:268.350000px;}
.xbf_c00205{left:270.600000px;}
.xa5_c00205{left:274.650000px;}
.x7a_c00205{left:277.200000px;}
.x7_c00205{left:279.000000px;}
.x117_c00205{left:281.850000px;}
.x60_c00205{left:282.900000px;}
.xea_c00205{left:286.950000px;}
.x115_c00205{left:288.000000px;}
.x4a_c00205{left:290.550000px;}
.x39_c00205{left:292.500000px;}
.x9a_c00205{left:297.900000px;}
.xb7_c00205{left:300.150000px;}
.xc0_c00205{left:301.200000px;}
.x1c_c00205{left:302.700000px;}
.x8e_c00205{left:304.800000px;}
.xdf_c00205{left:307.350000px;}
.x8_c00205{left:315.300000px;}
.x70_c00205{left:316.650000px;}
.xcf_c00205{left:319.350000px;}
.x7b_c00205{left:322.200000px;}
.x3a_c00205{left:324.600000px;}
.xa6_c00205{left:327.600000px;}
.x108_c00205{left:330.900000px;}
.x13_c00205{left:332.250000px;}
.x9_c00205{left:333.300000px;}
.xd7_c00205{left:334.650000px;}
.x1d_c00205{left:336.150000px;}
.x9b_c00205{left:341.850000px;}
.x8f_c00205{left:342.900000px;}
.x7c_c00205{left:344.550000px;}
.x83_c00205{left:345.600000px;}
.xe0_c00205{left:346.950000px;}
.xeb_c00205{left:348.150000px;}
.xe4_c00205{left:349.500000px;}
.xc1_c00205{left:350.550000px;}
.x110_c00205{left:352.050000px;}
.x71_c00205{left:354.450000px;}
.x128_c00205{left:355.650000px;}
.x4b_c00205{left:356.850000px;}
.x2_c00205{left:359.250000px;}
.x90_c00205{left:360.600000px;}
.x14_c00205{left:362.550000px;}
.x84_c00205{left:363.900000px;}
.x9c_c00205{left:367.350000px;}
.x61_c00205{left:370.050000px;}
.x111_c00205{left:372.600000px;}
.xad_c00205{left:373.950000px;}
.x56_c00205{left:375.300000px;}
.xf1_c00205{left:377.250000px;}
.x3b_c00205{left:379.350000px;}
.x91_c00205{left:381.450000px;}
.x1e_c00205{left:384.450000px;}
.x11f_c00205{left:385.650000px;}
.xa_c00205{left:388.800000px;}
.x3c_c00205{left:391.200000px;}
.x123_c00205{left:392.250000px;}
.x2a_c00205{left:393.750000px;}
.x119_c00205{left:395.550000px;}
.x10c_c00205{left:397.050000px;}
.xe5_c00205{left:398.100000px;}
.x15_c00205{left:400.650000px;}
.xa7_c00205{left:402.900000px;}
.x57_c00205{left:405.150000px;}
.x1f_c00205{left:406.350000px;}
.x129_c00205{left:408.150000px;}
.x1_c00205{left:409.350000px;}
.x2b_c00205{left:411.450000px;}
.x105_c00205{left:413.100000px;}
.x62_c00205{left:414.750000px;}
.xd0_c00205{left:417.300000px;}
.x112_c00205{left:418.650000px;}
.xb8_c00205{left:420.000000px;}
.x3d_c00205{left:422.550000px;}
.x7d_c00205{left:424.200000px;}
.x10d_c00205{left:425.550000px;}
.xae_c00205{left:428.700000px;}
.x72_c00205{left:431.850000px;}
.x2c_c00205{left:433.800000px;}
.xb_c00205{left:436.350000px;}
.x63_c00205{left:437.400000px;}
.xe1_c00205{left:438.750000px;}
.x3e_c00205{left:440.550000px;}
.xf2_c00205{left:442.800000px;}
.x7e_c00205{left:444.300000px;}
.x3_c00205{left:445.950000px;}
.x16_c00205{left:448.500000px;}
.xc2_c00205{left:449.850000px;}
.x3f_c00205{left:452.850000px;}
.xc_c00205{left:454.050000px;}
.x4c_c00205{left:455.850000px;}
.x12a_c00205{left:457.500000px;}
.xe2_c00205{left:458.550000px;}
.x20_c00205{left:460.050000px;}
.x2d_c00205{left:461.850000px;}
.x17_c00205{left:465.000000px;}
.xd8_c00205{left:468.900000px;}
.xc5_c00205{left:472.050000px;}
.xa8_c00205{left:473.100000px;}
.x101_c00205{left:476.250000px;}
.x64_c00205{left:478.050000px;}
.x2e_c00205{left:481.350000px;}
.x9d_c00205{left:484.950000px;}
.x4d_c00205{left:486.450000px;}
.x11a_c00205{left:489.900000px;}
.x85_c00205{left:491.700000px;}
.x124_c00205{left:494.700000px;}
.x109_c00205{left:496.350000px;}
.xe6_c00205{left:497.850000px;}
.x40_c00205{left:499.950000px;}
.xc6_c00205{left:502.350000px;}
.x9e_c00205{left:504.450000px;}
.x2f_c00205{left:506.550000px;}
.xf3_c00205{left:507.600000px;}
.xd1_c00205{left:510.600000px;}
.xd_c00205{left:515.550000px;}
.x7f_c00205{left:517.350000px;}
.xfe_c00205{left:520.050000px;}
.x4e_c00205{left:523.950000px;}
.xe3_c00205{left:525.450000px;}
.x21_c00205{left:526.950000px;}
.xec_c00205{left:529.500000px;}
.xa9_c00205{left:531.750000px;}
.xf9_c00205{left:533.850000px;}
.xc7_c00205{left:535.050000px;}
.x65_c00205{left:538.500000px;}
.x9f_c00205{left:540.450000px;}
.x30_c00205{left:541.800000px;}
.x102_c00205{left:543.300000px;}
.x58_c00205{left:544.500000px;}
.x41_c00205{left:546.450000px;}
.xd9_c00205{left:547.800000px;}
.x120_c00205{left:549.750000px;}
.x22_c00205{left:553.950000px;}
.x66_c00205{left:556.200000px;}
.x92_c00205{left:557.850000px;}
.xed_c00205{left:559.350000px;}
.x59_c00205{left:560.400000px;}
.xe_c00205{left:563.100000px;}
.x86_c00205{left:566.550000px;}
.xda_c00205{left:567.600000px;}
.xff_c00205{left:570.150000px;}
.xf4_c00205{left:573.450000px;}
.xd2_c00205{left:575.850000px;}
.x5a_c00205{left:577.650000px;}
.x73_c00205{left:578.700000px;}
.xf_c00205{left:580.350000px;}
.x4f_c00205{left:582.600000px;}
.xaa_c00205{left:584.250000px;}
.x12b_c00205{left:585.600000px;}
.x87_c00205{left:587.850000px;}
.xb9_c00205{left:591.750000px;}
.x67_c00205{left:594.000000px;}
.x31_c00205{left:595.800000px;}
.x5b_c00205{left:597.150000px;}
.x74_c00205{left:599.550000px;}
.xaf_c00205{left:601.050000px;}
.x42_c00205{left:602.700000px;}
.xab_c00205{left:604.050000px;}
.x106_c00205{left:606.600000px;}
.xf5_c00205{left:608.700000px;}
.x68_c00205{left:610.950000px;}
.x23_c00205{left:614.100000px;}
.xfa_c00205{left:617.700000px;}
.x10_c00205{left:620.250000px;}
.xb0_c00205{left:622.350000px;}
.x93_c00205{left:623.700000px;}
.xc8_c00205{left:625.500000px;}
.x75_c00205{left:627.600000px;}
.xac_c00205{left:632.100000px;}
.xe7_c00205{left:633.300000px;}
.x43_c00205{left:634.800000px;}
.x107_c00205{left:636.450000px;}
.x24_c00205{left:637.500000px;}
.x11_c00205{left:640.050000px;}
.xa0_c00205{left:642.300000px;}
.xc9_c00205{left:644.250000px;}
.x12c_c00205{left:646.050000px;}
.x94_c00205{left:648.900000px;}
.x5c_c00205{left:650.400000px;}
.xc3_c00205{left:654.150000px;}
.x88_c00205{left:655.200000px;}
.x121_c00205{left:656.850000px;}
.x32_c00205{left:659.100000px;}
.xee_c00205{left:661.200000px;}
.xd3_c00205{left:662.250000px;}
.xb1_c00205{left:664.050000px;}
.xa1_c00205{left:666.450000px;}
.x5d_c00205{left:668.100000px;}
.xba_c00205{left:669.150000px;}
.x50_c00205{left:671.100000px;}
.x69_c00205{left:672.900000px;}
.xdb_c00205{left:674.850000px;}
.x33_c00205{left:676.350000px;}
.x25_c00205{left:678.150000px;}
.x89_c00205{left:680.400000px;}
.xd4_c00205{left:682.050000px;}
.x76_c00205{left:684.450000px;}
.xb2_c00205{left:685.650000px;}
.xfb_c00205{left:687.900000px;}
.x44_c00205{left:692.400000px;}
.x12_c00205{left:695.100000px;}
.xe8_c00205{left:697.800000px;}
.xdc_c00205{left:700.350000px;}
.x6a_c00205{left:701.400000px;}
.x51_c00205{left:705.300000px;}
.xd5_c00205{left:707.550000px;}
.x45_c00205{left:710.400000px;}
.x80_c00205{left:712.800000px;}
.x95_c00205{left:719.850000px;}
.x11b_c00205{left:723.000000px;}
.x26_c00205{left:726.000000px;}
.x34_c00205{left:727.050000px;}
.xf6_c00205{left:730.350000px;}
.xfc_c00205{left:731.850000px;}
.xb3_c00205{left:735.000000px;}
.x96_c00205{left:739.650000px;}
.xe9_c00205{left:741.300000px;}
.x46_c00205{left:744.300000px;}
.x77_c00205{left:745.350000px;}
.x125_c00205{left:746.400000px;}
.xa2_c00205{left:747.900000px;}
.xbb_c00205{left:751.650000px;}
.x113_c00205{left:756.450000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:-6.101695pt;}
.ws4_c00205{word-spacing:0.000000pt;}
.ws1_c00205{word-spacing:0.246914pt;}
.ws2_c00205{word-spacing:5.962060pt;}
.ws3_c00205{word-spacing:7.160494pt;}
._0_c00205{width:37.160494pt;}
.fs1_c00205{font-size:37.333333pt;}
.fs0_c00205{font-size:53.333333pt;}
.y0_c00205{bottom:0.000000pt;}
.y28_c00205{bottom:129.866667pt;}
.y27_c00205{bottom:154.000000pt;}
.y26_c00205{bottom:171.600000pt;}
.y25_c00205{bottom:189.200000pt;}
.y24_c00205{bottom:207.066667pt;}
.y23_c00205{bottom:224.666667pt;}
.y22_c00205{bottom:242.000000pt;}
.y21_c00205{bottom:259.866667pt;}
.y20_c00205{bottom:277.466667pt;}
.y1f_c00205{bottom:295.066667pt;}
.y1e_c00205{bottom:312.666667pt;}
.y1d_c00205{bottom:330.266667pt;}
.y1c_c00205{bottom:347.866667pt;}
.y1b_c00205{bottom:365.466667pt;}
.y1a_c00205{bottom:383.066667pt;}
.y19_c00205{bottom:400.666667pt;}
.y18_c00205{bottom:418.266667pt;}
.y17_c00205{bottom:435.866667pt;}
.y16_c00205{bottom:453.733333pt;}
.y15_c00205{bottom:470.800000pt;}
.y14_c00205{bottom:488.666667pt;}
.y13_c00205{bottom:506.266667pt;}
.y12_c00205{bottom:523.866667pt;}
.y11_c00205{bottom:541.466667pt;}
.y10_c00205{bottom:559.066667pt;}
.yf_c00205{bottom:576.666667pt;}
.ye_c00205{bottom:594.266667pt;}
.yd_c00205{bottom:611.866667pt;}
.yc_c00205{bottom:629.200000pt;}
.yb_c00205{bottom:647.066667pt;}
.ya_c00205{bottom:664.666667pt;}
.y9_c00205{bottom:682.266667pt;}
.y8_c00205{bottom:700.133333pt;}
.y7_c00205{bottom:717.733333pt;}
.y6_c00205{bottom:735.333333pt;}
.y5_c00205{bottom:752.933333pt;}
.y4_c00205{bottom:782.666667pt;}
.y3_c00205{bottom:800.400000pt;}
.y2_c00205{bottom:829.466667pt;}
.y1_c00205{bottom:926.666667pt;}
.h3_c00205{height:37.333333pt;}
.h2_c00205{height:53.333333pt;}
.h0_c00205{height:1037.119955pt;}
.h1_c00205{height:1037.333333pt;}
.w0_c00205{width:816.640056pt;}
.w1_c00205{width:816.666667pt;}
.x0_c00205{left:0.000000pt;}
.x18_c00205{left:80.933333pt;}
.x6b_c00205{left:82.666667pt;}
.xa3_c00205{left:83.733333pt;}
.xca_c00205{left:85.333333pt;}
.x103_c00205{left:86.400000pt;}
.x10e_c00205{left:87.333333pt;}
.x35_c00205{left:92.133333pt;}
.x6c_c00205{left:101.600000pt;}
.x11c_c00205{left:103.466667pt;}
.xb4_c00205{left:112.533333pt;}
.x4_c00205{left:115.466667pt;}
.x8a_c00205{left:118.000000pt;}
.xcc_c00205{left:122.933333pt;}
.x10a_c00205{left:125.066667pt;}
.x104_c00205{left:127.333333pt;}
.xcb_c00205{left:128.800000pt;}
.x11d_c00205{left:130.400000pt;}
.x52_c00205{left:131.866667pt;}
.xa4_c00205{left:133.066667pt;}
.xdd_c00205{left:134.533333pt;}
.x19_c00205{left:135.600000pt;}
.x8b_c00205{left:137.466667pt;}
.x47_c00205{left:138.400000pt;}
.x6d_c00205{left:140.666667pt;}
.x27_c00205{left:143.200000pt;}
.xef_c00205{left:145.600000pt;}
.x53_c00205{left:147.866667pt;}
.x1a_c00205{left:149.733333pt;}
.x114_c00205{left:151.066667pt;}
.xfd_c00205{left:152.000000pt;}
.x36_c00205{left:153.200000pt;}
.xbc_c00205{left:156.666667pt;}
.xf7_c00205{left:158.000000pt;}
.x122_c00205{left:158.933333pt;}
.x97_c00205{left:160.133333pt;}
.x28_c00205{left:161.466667pt;}
.x126_c00205{left:165.066667pt;}
.x78_c00205{left:166.666667pt;}
.x6e_c00205{left:168.533333pt;}
.xbd_c00205{left:170.800000pt;}
.xcd_c00205{left:172.533333pt;}
.x127_c00205{left:176.933333pt;}
.x48_c00205{left:178.133333pt;}
.x5_c00205{left:181.066667pt;}
.x8c_c00205{left:182.000000pt;}
.xf8_c00205{left:183.866667pt;}
.xb5_c00205{left:185.200000pt;}
.x54_c00205{left:186.533333pt;}
.x5e_c00205{left:190.666667pt;}
.x81_c00205{left:191.733333pt;}
.x98_c00205{left:192.800000pt;}
.x10b_c00205{left:193.866667pt;}
.x49_c00205{left:194.800000pt;}
.x37_c00205{left:196.400000pt;}
.x1b_c00205{left:198.666667pt;}
.x55_c00205{left:201.866667pt;}
.xc4_c00205{left:204.800000pt;}
.xf0_c00205{left:207.333333pt;}
.x99_c00205{left:209.066667pt;}
.xce_c00205{left:210.266667pt;}
.xbe_c00205{left:211.733333pt;}
.x116_c00205{left:212.800000pt;}
.x79_c00205{left:213.733333pt;}
.x10f_c00205{left:214.666667pt;}
.x11e_c00205{left:217.333333pt;}
.x6f_c00205{left:218.800000pt;}
.xb6_c00205{left:219.733333pt;}
.x8d_c00205{left:222.000000pt;}
.x82_c00205{left:223.066667pt;}
.x100_c00205{left:224.133333pt;}
.x29_c00205{left:226.400000pt;}
.xde_c00205{left:228.666667pt;}
.x5f_c00205{left:229.733333pt;}
.x38_c00205{left:230.933333pt;}
.x6_c00205{left:232.266667pt;}
.xd6_c00205{left:237.600000pt;}
.x118_c00205{left:238.533333pt;}
.xbf_c00205{left:240.533333pt;}
.xa5_c00205{left:244.133333pt;}
.x7a_c00205{left:246.400000pt;}
.x7_c00205{left:248.000000pt;}
.x117_c00205{left:250.533333pt;}
.x60_c00205{left:251.466667pt;}
.xea_c00205{left:255.066667pt;}
.x115_c00205{left:256.000000pt;}
.x4a_c00205{left:258.266667pt;}
.x39_c00205{left:260.000000pt;}
.x9a_c00205{left:264.800000pt;}
.xb7_c00205{left:266.800000pt;}
.xc0_c00205{left:267.733333pt;}
.x1c_c00205{left:269.066667pt;}
.x8e_c00205{left:270.933333pt;}
.xdf_c00205{left:273.200000pt;}
.x8_c00205{left:280.266667pt;}
.x70_c00205{left:281.466667pt;}
.xcf_c00205{left:283.866667pt;}
.x7b_c00205{left:286.400000pt;}
.x3a_c00205{left:288.533333pt;}
.xa6_c00205{left:291.200000pt;}
.x108_c00205{left:294.133333pt;}
.x13_c00205{left:295.333333pt;}
.x9_c00205{left:296.266667pt;}
.xd7_c00205{left:297.466667pt;}
.x1d_c00205{left:298.800000pt;}
.x9b_c00205{left:303.866667pt;}
.x8f_c00205{left:304.800000pt;}
.x7c_c00205{left:306.266667pt;}
.x83_c00205{left:307.200000pt;}
.xe0_c00205{left:308.400000pt;}
.xeb_c00205{left:309.466667pt;}
.xe4_c00205{left:310.666667pt;}
.xc1_c00205{left:311.600000pt;}
.x110_c00205{left:312.933333pt;}
.x71_c00205{left:315.066667pt;}
.x128_c00205{left:316.133333pt;}
.x4b_c00205{left:317.200000pt;}
.x2_c00205{left:319.333333pt;}
.x90_c00205{left:320.533333pt;}
.x14_c00205{left:322.266667pt;}
.x84_c00205{left:323.466667pt;}
.x9c_c00205{left:326.533333pt;}
.x61_c00205{left:328.933333pt;}
.x111_c00205{left:331.200000pt;}
.xad_c00205{left:332.400000pt;}
.x56_c00205{left:333.600000pt;}
.xf1_c00205{left:335.333333pt;}
.x3b_c00205{left:337.200000pt;}
.x91_c00205{left:339.066667pt;}
.x1e_c00205{left:341.733333pt;}
.x11f_c00205{left:342.800000pt;}
.xa_c00205{left:345.600000pt;}
.x3c_c00205{left:347.733333pt;}
.x123_c00205{left:348.666667pt;}
.x2a_c00205{left:350.000000pt;}
.x119_c00205{left:351.600000pt;}
.x10c_c00205{left:352.933333pt;}
.xe5_c00205{left:353.866667pt;}
.x15_c00205{left:356.133333pt;}
.xa7_c00205{left:358.133333pt;}
.x57_c00205{left:360.133333pt;}
.x1f_c00205{left:361.200000pt;}
.x129_c00205{left:362.800000pt;}
.x1_c00205{left:363.866667pt;}
.x2b_c00205{left:365.733333pt;}
.x105_c00205{left:367.200000pt;}
.x62_c00205{left:368.666667pt;}
.xd0_c00205{left:370.933333pt;}
.x112_c00205{left:372.133333pt;}
.xb8_c00205{left:373.333333pt;}
.x3d_c00205{left:375.600000pt;}
.x7d_c00205{left:377.066667pt;}
.x10d_c00205{left:378.266667pt;}
.xae_c00205{left:381.066667pt;}
.x72_c00205{left:383.866667pt;}
.x2c_c00205{left:385.600000pt;}
.xb_c00205{left:387.866667pt;}
.x63_c00205{left:388.800000pt;}
.xe1_c00205{left:390.000000pt;}
.x3e_c00205{left:391.600000pt;}
.xf2_c00205{left:393.600000pt;}
.x7e_c00205{left:394.933333pt;}
.x3_c00205{left:396.400000pt;}
.x16_c00205{left:398.666667pt;}
.xc2_c00205{left:399.866667pt;}
.x3f_c00205{left:402.533333pt;}
.xc_c00205{left:403.600000pt;}
.x4c_c00205{left:405.200000pt;}
.x12a_c00205{left:406.666667pt;}
.xe2_c00205{left:407.600000pt;}
.x20_c00205{left:408.933333pt;}
.x2d_c00205{left:410.533333pt;}
.x17_c00205{left:413.333333pt;}
.xd8_c00205{left:416.800000pt;}
.xc5_c00205{left:419.600000pt;}
.xa8_c00205{left:420.533333pt;}
.x101_c00205{left:423.333333pt;}
.x64_c00205{left:424.933333pt;}
.x2e_c00205{left:427.866667pt;}
.x9d_c00205{left:431.066667pt;}
.x4d_c00205{left:432.400000pt;}
.x11a_c00205{left:435.466667pt;}
.x85_c00205{left:437.066667pt;}
.x124_c00205{left:439.733333pt;}
.x109_c00205{left:441.200000pt;}
.xe6_c00205{left:442.533333pt;}
.x40_c00205{left:444.400000pt;}
.xc6_c00205{left:446.533333pt;}
.x9e_c00205{left:448.400000pt;}
.x2f_c00205{left:450.266667pt;}
.xf3_c00205{left:451.200000pt;}
.xd1_c00205{left:453.866667pt;}
.xd_c00205{left:458.266667pt;}
.x7f_c00205{left:459.866667pt;}
.xfe_c00205{left:462.266667pt;}
.x4e_c00205{left:465.733333pt;}
.xe3_c00205{left:467.066667pt;}
.x21_c00205{left:468.400000pt;}
.xec_c00205{left:470.666667pt;}
.xa9_c00205{left:472.666667pt;}
.xf9_c00205{left:474.533333pt;}
.xc7_c00205{left:475.600000pt;}
.x65_c00205{left:478.666667pt;}
.x9f_c00205{left:480.400000pt;}
.x30_c00205{left:481.600000pt;}
.x102_c00205{left:482.933333pt;}
.x58_c00205{left:484.000000pt;}
.x41_c00205{left:485.733333pt;}
.xd9_c00205{left:486.933333pt;}
.x120_c00205{left:488.666667pt;}
.x22_c00205{left:492.400000pt;}
.x66_c00205{left:494.400000pt;}
.x92_c00205{left:495.866667pt;}
.xed_c00205{left:497.200000pt;}
.x59_c00205{left:498.133333pt;}
.xe_c00205{left:500.533333pt;}
.x86_c00205{left:503.600000pt;}
.xda_c00205{left:504.533333pt;}
.xff_c00205{left:506.800000pt;}
.xf4_c00205{left:509.733333pt;}
.xd2_c00205{left:511.866667pt;}
.x5a_c00205{left:513.466667pt;}
.x73_c00205{left:514.400000pt;}
.xf_c00205{left:515.866667pt;}
.x4f_c00205{left:517.866667pt;}
.xaa_c00205{left:519.333333pt;}
.x12b_c00205{left:520.533333pt;}
.x87_c00205{left:522.533333pt;}
.xb9_c00205{left:526.000000pt;}
.x67_c00205{left:528.000000pt;}
.x31_c00205{left:529.600000pt;}
.x5b_c00205{left:530.800000pt;}
.x74_c00205{left:532.933333pt;}
.xaf_c00205{left:534.266667pt;}
.x42_c00205{left:535.733333pt;}
.xab_c00205{left:536.933333pt;}
.x106_c00205{left:539.200000pt;}
.xf5_c00205{left:541.066667pt;}
.x68_c00205{left:543.066667pt;}
.x23_c00205{left:545.866667pt;}
.xfa_c00205{left:549.066667pt;}
.x10_c00205{left:551.333333pt;}
.xb0_c00205{left:553.200000pt;}
.x93_c00205{left:554.400000pt;}
.xc8_c00205{left:556.000000pt;}
.x75_c00205{left:557.866667pt;}
.xac_c00205{left:561.866667pt;}
.xe7_c00205{left:562.933333pt;}
.x43_c00205{left:564.266667pt;}
.x107_c00205{left:565.733333pt;}
.x24_c00205{left:566.666667pt;}
.x11_c00205{left:568.933333pt;}
.xa0_c00205{left:570.933333pt;}
.xc9_c00205{left:572.666667pt;}
.x12c_c00205{left:574.266667pt;}
.x94_c00205{left:576.800000pt;}
.x5c_c00205{left:578.133333pt;}
.xc3_c00205{left:581.466667pt;}
.x88_c00205{left:582.400000pt;}
.x121_c00205{left:583.866667pt;}
.x32_c00205{left:585.866667pt;}
.xee_c00205{left:587.733333pt;}
.xd3_c00205{left:588.666667pt;}
.xb1_c00205{left:590.266667pt;}
.xa1_c00205{left:592.400000pt;}
.x5d_c00205{left:593.866667pt;}
.xba_c00205{left:594.800000pt;}
.x50_c00205{left:596.533333pt;}
.x69_c00205{left:598.133333pt;}
.xdb_c00205{left:599.866667pt;}
.x33_c00205{left:601.200000pt;}
.x25_c00205{left:602.800000pt;}
.x89_c00205{left:604.800000pt;}
.xd4_c00205{left:606.266667pt;}
.x76_c00205{left:608.400000pt;}
.xb2_c00205{left:609.466667pt;}
.xfb_c00205{left:611.466667pt;}
.x44_c00205{left:615.466667pt;}
.x12_c00205{left:617.866667pt;}
.xe8_c00205{left:620.266667pt;}
.xdc_c00205{left:622.533333pt;}
.x6a_c00205{left:623.466667pt;}
.x51_c00205{left:626.933333pt;}
.xd5_c00205{left:628.933333pt;}
.x45_c00205{left:631.466667pt;}
.x80_c00205{left:633.600000pt;}
.x95_c00205{left:639.866667pt;}
.x11b_c00205{left:642.666667pt;}
.x26_c00205{left:645.333333pt;}
.x34_c00205{left:646.266667pt;}
.xf6_c00205{left:649.200000pt;}
.xfc_c00205{left:650.533333pt;}
.xb3_c00205{left:653.333333pt;}
.x96_c00205{left:657.466667pt;}
.xe9_c00205{left:658.933333pt;}
.x46_c00205{left:661.600000pt;}
.x77_c00205{left:662.533333pt;}
.x125_c00205{left:663.466667pt;}
.xa2_c00205{left:664.800000pt;}
.xbb_c00205{left:668.133333pt;}
.x113_c00205{left:672.400000pt;}
}





/* 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_c00206 {
    display:none;
  }
  .loading-indicator_c00206.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00206 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_c00206 { 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_c00206" -> "#page-container .classname_c00206")
 */
.pf_c00206 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00206 { /* 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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00206 { /* 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_c00206 { /* 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_c00206 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00206 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00206 {overflow:visible;}
  }
}
.c_c00206 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00206 { /* 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_c00206:after { /* webkit #35443 */
  content: '';
}
.t_c00206:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00206 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 */
}
.__c00206 { /* 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_c00206 { /* info for Javascript */
  display:none;
}
.l_c00206 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00206 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00206 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00206: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_c00206 {
    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_c00206.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00206.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_c00206 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00206{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00206;src:url('chunks/assets/font_8d220fc6cb305cca524a3af1.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.000000;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;}
.m1d_c00206{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00206{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m72_c00206{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m71_c00206{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m74_c00206{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m44_c00206{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00206{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m87_c00206{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m69_c00206{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m34_c00206{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00206{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m56_c00206{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00206{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m77_c00206{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m63_c00206{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.maf_c00206{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00206{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00206{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00206{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00206{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m73_c00206{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m97_c00206{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mba_c00206{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.maa_c00206{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00206{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m49_c00206{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00206{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00206{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00206{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00206{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m78_c00206{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00206{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m95_c00206{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m81_c00206{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00206{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m52_c00206{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00206{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00206{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m83_c00206{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m89_c00206{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m62_c00206{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00206{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m54_c00206{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00206{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00206{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00206{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00206{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m61_c00206{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m57_c00206{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00206{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00206{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00206{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m94_c00206{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mae_c00206{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00206{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00206{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m92_c00206{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m50_c00206{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00206{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m99_c00206{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00206{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m47_c00206{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00206{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00206{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m36_c00206{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md_c00206{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m37_c00206{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00206{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00206{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10_c00206{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00206{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m18_c00206{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00206{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m22_c00206{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00206{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mab_c00206{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m48_c00206{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00206{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00206{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00206{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00206{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m14_c00206{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m20_c00206{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m27_c00206{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m88_c00206{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m76_c00206{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m55_c00206{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00206{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00206{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00206{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m53_c00206{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb_c00206{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m98_c00206{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m35_c00206{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15_c00206{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m38_c00206{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00206{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24_c00206{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);}
.ma0_c00206{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00206{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m41_c00206{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m75_c00206{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00206{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11_c00206{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00206{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23_c00206{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mac_c00206{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00206{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m59_c00206{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m40_c00206{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00206{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00206{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00206{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00206{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00206{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m12_c00206{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00206{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00206{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m13_c00206{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00206{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m26_c00206{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00206{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00206{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m90_c00206{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m16_c00206{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m31_c00206{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma_c00206{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00206{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00206{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m42_c00206{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00206{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m21_c00206{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c00206{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m86_c00206{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m29_c00206{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00206{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00206{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m58_c00206{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m19_c00206{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00206{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m91_c00206{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m80_c00206{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m45_c00206{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m28_c00206{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m51_c00206{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m33_c00206{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.me_c00206{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00206{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m39_c00206{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m82_c00206{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m43_c00206{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mf_c00206{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m60_c00206{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m32_c00206{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00206{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m64_c00206{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00206{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00206{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m30_c00206{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m25_c00206{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00206{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m65_c00206{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m66_c00206{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00206{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00206{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00206{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00206{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m68_c00206{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m85_c00206{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m96_c00206{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m93_c00206{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mad_c00206{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m79_c00206{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00206{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00206{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.mc_c00206{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00206{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00206{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00206{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00206{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls0_c00206{letter-spacing:0.000000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{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__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00206{word-spacing:-5.431392px;}
.wsb_c00206{word-spacing:-5.310030px;}
.wsc_c00206{word-spacing:-4.375000px;}
.ws0_c00206{word-spacing:-3.250000px;}
.ws5_c00206{word-spacing:-3.000000px;}
.ws2_c00206{word-spacing:-1.048193px;}
.wsd_c00206{word-spacing:0.000000px;}
.ws1_c00206{word-spacing:3.441176px;}
.ws7_c00206{word-spacing:3.877226px;}
.wsa_c00206{word-spacing:5.750000px;}
.ws4_c00206{word-spacing:6.250000px;}
.ws8_c00206{word-spacing:10.658857px;}
.ws9_c00206{word-spacing:12.136364px;}
.ws6_c00206{word-spacing:17.333333px;}
.fc0_c00206{color:transparent;}
.fs1_c00206{font-size:42.000000px;}
.fs0_c00206{font-size:54.000000px;}
.y0_c00206{bottom:0.000000px;}
.y2d_c00206{bottom:155.250000px;}
.y2c_c00206{bottom:172.500000px;}
.y2b_c00206{bottom:208.200000px;}
.y2a_c00206{bottom:228.300000px;}
.y29_c00206{bottom:248.100000px;}
.y28_c00206{bottom:267.900000px;}
.y27_c00206{bottom:287.700000px;}
.y26_c00206{bottom:307.200000px;}
.y25_c00206{bottom:327.000000px;}
.y24_c00206{bottom:346.800000px;}
.y23_c00206{bottom:366.600000px;}
.y22_c00206{bottom:386.400000px;}
.y21_c00206{bottom:406.500000px;}
.y20_c00206{bottom:426.600000px;}
.y1f_c00206{bottom:446.400000px;}
.y1e_c00206{bottom:466.200000px;}
.y1d_c00206{bottom:485.250000px;}
.y1c_c00206{bottom:505.800000px;}
.y1b_c00206{bottom:525.600000px;}
.y1a_c00206{bottom:545.400000px;}
.y19_c00206{bottom:565.200000px;}
.y18_c00206{bottom:585.000000px;}
.y17_c00206{bottom:604.800000px;}
.y16_c00206{bottom:623.550000px;}
.y15_c00206{bottom:634.350000px;}
.y14_c00206{bottom:647.700000px;}
.y13_c00206{bottom:667.500000px;}
.y12_c00206{bottom:687.300000px;}
.y11_c00206{bottom:707.100000px;}
.y10_c00206{bottom:730.500000px;}
.yf_c00206{bottom:750.000000px;}
.ye_c00206{bottom:769.800000px;}
.yd_c00206{bottom:789.600000px;}
.yc_c00206{bottom:809.700000px;}
.yb_c00206{bottom:829.200000px;}
.ya_c00206{bottom:849.300000px;}
.y9_c00206{bottom:868.800000px;}
.y8_c00206{bottom:888.600000px;}
.y7_c00206{bottom:908.700000px;}
.y6_c00206{bottom:928.500000px;}
.y5_c00206{bottom:948.600000px;}
.y4_c00206{bottom:968.100000px;}
.y3_c00206{bottom:987.900000px;}
.y2_c00206{bottom:1007.700000px;}
.y1_c00206{bottom:1045.800000px;}
.h3_c00206{height:42.000000px;}
.h2_c00206{height:54.000000px;}
.h0_c00206{height:1166.759949px;}
.h1_c00206{height:1167.000000px;}
.w0_c00206{width:918.720063px;}
.w1_c00206{width:918.750000px;}
.x0_c00206{left:0.000000px;}
.x3_c00206{left:140.700000px;}
.x62_c00206{left:141.750000px;}
.x1_c00206{left:143.700000px;}
.x94_c00206{left:144.750000px;}
.xce_c00206{left:149.700000px;}
.xc5_c00206{left:150.900000px;}
.xdb_c00206{left:161.400000px;}
.x55_c00206{left:163.050000px;}
.xfe_c00206{left:164.550000px;}
.x10d_c00206{left:167.400000px;}
.x22_c00206{left:168.900000px;}
.x30_c00206{left:170.700000px;}
.xcf_c00206{left:174.900000px;}
.x3d_c00206{left:176.400000px;}
.x7d_c00206{left:177.900000px;}
.x6f_c00206{left:179.100000px;}
.xd6_c00206{left:180.750000px;}
.xd0_c00206{left:182.100000px;}
.xeb_c00206{left:184.800000px;}
.x4_c00206{left:187.500000px;}
.xa9_c00206{left:191.250000px;}
.x95_c00206{left:193.350000px;}
.x11d_c00206{left:194.700000px;}
.xa4_c00206{left:196.200000px;}
.x89_c00206{left:198.450000px;}
.xd1_c00206{left:201.150000px;}
.x63_c00206{left:202.950000px;}
.x5_c00206{left:204.450000px;}
.xdc_c00206{left:205.650000px;}
.xf6_c00206{left:207.000000px;}
.xd7_c00206{left:208.800000px;}
.x70_c00206{left:210.000000px;}
.x48_c00206{left:213.300000px;}
.x11e_c00206{left:214.500000px;}
.x138_c00206{left:216.600000px;}
.xd2_c00206{left:218.100000px;}
.x31_c00206{left:219.300000px;}
.x64_c00206{left:221.700000px;}
.x10e_c00206{left:223.950000px;}
.x115_c00206{left:226.200000px;}
.xef_c00206{left:228.150000px;}
.x11f_c00206{left:229.950000px;}
.x56_c00206{left:232.200000px;}
.x3e_c00206{left:237.300000px;}
.x118_c00206{left:238.650000px;}
.x7e_c00206{left:240.150000px;}
.x6_c00206{left:241.200000px;}
.x8a_c00206{left:244.200000px;}
.x32_c00206{left:247.050000px;}
.xd8_c00206{left:248.100000px;}
.x49_c00206{left:250.800000px;}
.xd3_c00206{left:253.800000px;}
.x133_c00206{left:255.300000px;}
.x96_c00206{left:256.350000px;}
.xd9_c00206{left:259.200000px;}
.xff_c00206{left:261.150000px;}
.x8b_c00206{left:262.200000px;}
.x134_c00206{left:264.000000px;}
.x23_c00206{left:265.800000px;}
.x4a_c00206{left:269.100000px;}
.x71_c00206{left:272.250000px;}
.x128_c00206{left:274.500000px;}
.x14_c00206{left:276.750000px;}
.x7_c00206{left:278.250000px;}
.xdd_c00206{left:282.000000px;}
.xec_c00206{left:283.200000px;}
.x24_c00206{left:285.300000px;}
.x126_c00206{left:287.550000px;}
.x65_c00206{left:289.800000px;}
.x8c_c00206{left:292.800000px;}
.x4b_c00206{left:294.600000px;}
.xbc_c00206{left:295.800000px;}
.xf7_c00206{left:298.050000px;}
.x120_c00206{left:301.200000px;}
.x116_c00206{left:304.050000px;}
.xf0_c00206{left:306.000000px;}
.x57_c00206{left:308.100000px;}
.x25_c00206{left:310.800000px;}
.xde_c00206{left:312.600000px;}
.x33_c00206{left:314.400000px;}
.x97_c00206{left:317.850000px;}
.x15_c00206{left:319.950000px;}
.x8_c00206{left:321.450000px;}
.xc2_c00206{left:322.500000px;}
.x66_c00206{left:323.700000px;}
.xb9_c00206{left:325.350000px;}
.xf8_c00206{left:326.850000px;}
.x111_c00206{left:328.050000px;}
.x7f_c00206{left:330.150000px;}
.x135_c00206{left:334.950000px;}
.xbf_c00206{left:336.000000px;}
.x72_c00206{left:337.800000px;}
.x9_c00206{left:339.450000px;}
.xf1_c00206{left:341.250000px;}
.x129_c00206{left:342.600000px;}
.x34_c00206{left:345.300000px;}
.x119_c00206{left:349.200000px;}
.x131_c00206{left:351.000000px;}
.x108_c00206{left:353.250000px;}
.x98_c00206{left:355.650000px;}
.x58_c00206{left:357.750000px;}
.x121_c00206{left:359.850000px;}
.xc6_c00206{left:363.300000px;}
.xaa_c00206{left:364.800000px;}
.x26_c00206{left:366.300000px;}
.xa_c00206{left:367.500000px;}
.x8d_c00206{left:368.850000px;}
.x4c_c00206{left:370.500000px;}
.x10f_c00206{left:373.650000px;}
.x59_c00206{left:375.000000px;}
.xd4_c00206{left:377.700000px;}
.x3f_c00206{left:378.750000px;}
.xb3_c00206{left:379.800000px;}
.x12a_c00206{left:381.450000px;}
.x99_c00206{left:384.150000px;}
.x27_c00206{left:386.100000px;}
.x8e_c00206{left:388.650000px;}
.xf9_c00206{left:389.850000px;}
.x67_c00206{left:393.600000px;}
.x16_c00206{left:395.850000px;}
.x35_c00206{left:398.550000px;}
.x12e_c00206{left:401.250000px;}
.x73_c00206{left:403.050000px;}
.x5a_c00206{left:404.850000px;}
.xab_c00206{left:408.000000px;}
.xba_c00206{left:409.950000px;}
.x28_c00206{left:411.600000px;}
.x4d_c00206{left:415.500000px;}
.x8f_c00206{left:416.700000px;}
.xc7_c00206{left:420.150000px;}
.xb4_c00206{left:421.950000px;}
.x36_c00206{left:423.450000px;}
.x9a_c00206{left:425.550000px;}
.x10b_c00206{left:428.550000px;}
.xed_c00206{left:430.050000px;}
.x5b_c00206{left:433.350000px;}
.x100_c00206{left:434.850000px;}
.x2_c00206{left:437.400000px;}
.xb_c00206{left:438.450000px;}
.xe5_c00206{left:439.800000px;}
.xb5_c00206{left:441.450000px;}
.x4e_c00206{left:445.800000px;}
.x80_c00206{left:448.650000px;}
.x29_c00206{left:449.700000px;}
.x68_c00206{left:451.200000px;}
.x37_c00206{left:453.000000px;}
.xf2_c00206{left:454.050000px;}
.x12b_c00206{left:455.250000px;}
.xa5_c00206{left:457.800000px;}
.x40_c00206{left:459.000000px;}
.x17_c00206{left:460.950000px;}
.xac_c00206{left:462.000000px;}
.x5c_c00206{left:465.450000px;}
.xc8_c00206{left:466.950000px;}
.x9b_c00206{left:468.750000px;}
.x122_c00206{left:470.400000px;}
.x74_c00206{left:475.800000px;}
.x41_c00206{left:478.800000px;}
.x18_c00206{left:480.750000px;}
.xf3_c00206{left:482.100000px;}
.xdf_c00206{left:486.150000px;}
.x4f_c00206{left:489.450000px;}
.xe8_c00206{left:493.650000px;}
.x9c_c00206{left:497.550000px;}
.xad_c00206{left:499.500000px;}
.x2a_c00206{left:501.600000px;}
.x103_c00206{left:502.650000px;}
.x75_c00206{left:504.300000px;}
.x19_c00206{left:505.950000px;}
.xc_c00206{left:508.650000px;}
.xf4_c00206{left:510.150000px;}
.xda_c00206{left:512.700000px;}
.x105_c00206{left:514.500000px;}
.xe0_c00206{left:517.050000px;}
.xa6_c00206{left:520.800000px;}
.x5d_c00206{left:522.750000px;}
.x69_c00206{left:524.250000px;}
.xd_c00206{left:525.900000px;}
.x123_c00206{left:527.250000px;}
.x90_c00206{left:528.600000px;}
.x76_c00206{left:530.250000px;}
.xc3_c00206{left:533.850000px;}
.x2b_c00206{left:536.100000px;}
.xbb_c00206{left:538.650000px;}
.x10c_c00206{left:539.700000px;}
.x104_c00206{left:541.200000px;}
.x38_c00206{left:542.700000px;}
.x81_c00206{left:545.100000px;}
.x132_c00206{left:546.150000px;}
.x77_c00206{left:547.950000px;}
.x136_c00206{left:550.200000px;}
.xb6_c00206{left:552.600000px;}
.xc0_c00206{left:553.650000px;}
.x50_c00206{left:558.600000px;}
.xe_c00206{left:560.400000px;}
.x12c_c00206{left:561.900000px;}
.x1a_c00206{left:563.550000px;}
.x9d_c00206{left:565.650000px;}
.x137_c00206{left:566.700000px;}
.x117_c00206{left:568.200000px;}
.x39_c00206{left:569.700000px;}
.x91_c00206{left:570.750000px;}
.x82_c00206{left:573.150000px;}
.x112_c00206{left:574.200000px;}
.xe9_c00206{left:576.150000px;}
.x51_c00206{left:578.100000px;}
.x101_c00206{left:579.150000px;}
.x5e_c00206{left:581.400000px;}
.xae_c00206{left:583.050000px;}
.x106_c00206{left:584.700000px;}
.x78_c00206{left:586.500000px;}
.x124_c00206{left:587.700000px;}
.x1b_c00206{left:588.750000px;}
.xbd_c00206{left:590.850000px;}
.x42_c00206{left:593.700000px;}
.x9e_c00206{left:597.300000px;}
.x79_c00206{left:601.200000px;}
.x83_c00206{left:603.750000px;}
.x5f_c00206{left:606.600000px;}
.xfa_c00206{left:607.950000px;}
.x3a_c00206{left:609.000000px;}
.xf_c00206{left:610.500000px;}
.x6a_c00206{left:612.750000px;}
.x2c_c00206{left:615.300000px;}
.x113_c00206{left:616.350000px;}
.xe1_c00206{left:617.850000px;}
.x1c_c00206{left:619.650000px;}
.x102_c00206{left:621.300000px;}
.x84_c00206{left:623.250000px;}
.xc9_c00206{left:624.450000px;}
.x3b_c00206{left:627.750000px;}
.x10_c00206{left:628.800000px;}
.x7a_c00206{left:630.000000px;}
.x109_c00206{left:631.200000px;}
.x43_c00206{left:633.300000px;}
.x11a_c00206{left:634.800000px;}
.xc4_c00206{left:637.200000px;}
.x92_c00206{left:639.150000px;}
.xaf_c00206{left:642.150000px;}
.xea_c00206{left:643.800000px;}
.x9f_c00206{left:644.850000px;}
.xb7_c00206{left:646.200000px;}
.xbe_c00206{left:647.700000px;}
.x11b_c00206{left:649.950000px;}
.x85_c00206{left:652.350000px;}
.xe2_c00206{left:653.550000px;}
.xc1_c00206{left:655.200000px;}
.xfb_c00206{left:658.350000px;}
.x10a_c00206{left:663.900000px;}
.x44_c00206{left:665.400000px;}
.x1d_c00206{left:670.050000px;}
.xf5_c00206{left:671.550000px;}
.xa0_c00206{left:673.350000px;}
.x11_c00206{left:675.300000px;}
.xfc_c00206{left:677.400000px;}
.x7b_c00206{left:680.400000px;}
.xca_c00206{left:682.050000px;}
.x114_c00206{left:683.700000px;}
.xb0_c00206{left:685.650000px;}
.xa1_c00206{left:688.050000px;}
.x2d_c00206{left:691.950000px;}
.x52_c00206{left:693.750000px;}
.x127_c00206{left:694.800000px;}
.xcb_c00206{left:698.550000px;}
.x60_c00206{left:700.500000px;}
.x93_c00206{left:703.950000px;}
.x1e_c00206{left:705.300000px;}
.xcc_c00206{left:707.250000px;}
.xa7_c00206{left:708.600000px;}
.x45_c00206{left:709.650000px;}
.x2e_c00206{left:712.500000px;}
.x86_c00206{left:713.550000px;}
.x107_c00206{left:716.550000px;}
.x1f_c00206{left:717.600000px;}
.x11c_c00206{left:719.850000px;}
.xb1_c00206{left:721.350000px;}
.x7c_c00206{left:722.850000px;}
.xb8_c00206{left:725.400000px;}
.xa2_c00206{left:726.600000px;}
.x6b_c00206{left:730.950000px;}
.x53_c00206{left:732.600000px;}
.x46_c00206{left:736.350000px;}
.x12f_c00206{left:737.850000px;}
.x3c_c00206{left:739.050000px;}
.xd5_c00206{left:740.100000px;}
.xe6_c00206{left:741.450000px;}
.x61_c00206{left:744.750000px;}
.xe3_c00206{left:746.850000px;}
.x12_c00206{left:748.800000px;}
.x2f_c00206{left:750.600000px;}
.x12d_c00206{left:751.950000px;}
.x6c_c00206{left:753.600000px;}
.xa3_c00206{left:754.650000px;}
.xfd_c00206{left:758.550000px;}
.x125_c00206{left:761.850000px;}
.x6d_c00206{left:764.100000px;}
.x87_c00206{left:767.550000px;}
.x130_c00206{left:770.250000px;}
.x20_c00206{left:771.300000px;}
.xcd_c00206{left:777.150000px;}
.x54_c00206{left:780.150000px;}
.xe7_c00206{left:781.350000px;}
.x21_c00206{left:782.400000px;}
.x110_c00206{left:784.350000px;}
.x13_c00206{left:785.850000px;}
.x88_c00206{left:787.350000px;}
.xa8_c00206{left:789.300000px;}
.x47_c00206{left:791.100000px;}
.x6e_c00206{left:792.600000px;}
.xee_c00206{left:795.450000px;}
.xe4_c00206{left:796.950000px;}
.xb2_c00206{left:801.000000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws3_c00206{word-spacing:-4.827904pt;}
.wsb_c00206{word-spacing:-4.720027pt;}
.wsc_c00206{word-spacing:-3.888889pt;}
.ws0_c00206{word-spacing:-2.888889pt;}
.ws5_c00206{word-spacing:-2.666667pt;}
.ws2_c00206{word-spacing:-0.931727pt;}
.wsd_c00206{word-spacing:0.000000pt;}
.ws1_c00206{word-spacing:3.058824pt;}
.ws7_c00206{word-spacing:3.446423pt;}
.wsa_c00206{word-spacing:5.111111pt;}
.ws4_c00206{word-spacing:5.555556pt;}
.ws8_c00206{word-spacing:9.474539pt;}
.ws9_c00206{word-spacing:10.787879pt;}
.ws6_c00206{word-spacing:15.407407pt;}
.fs1_c00206{font-size:37.333333pt;}
.fs0_c00206{font-size:48.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y2d_c00206{bottom:138.000000pt;}
.y2c_c00206{bottom:153.333333pt;}
.y2b_c00206{bottom:185.066667pt;}
.y2a_c00206{bottom:202.933333pt;}
.y29_c00206{bottom:220.533333pt;}
.y28_c00206{bottom:238.133333pt;}
.y27_c00206{bottom:255.733333pt;}
.y26_c00206{bottom:273.066667pt;}
.y25_c00206{bottom:290.666667pt;}
.y24_c00206{bottom:308.266667pt;}
.y23_c00206{bottom:325.866667pt;}
.y22_c00206{bottom:343.466667pt;}
.y21_c00206{bottom:361.333333pt;}
.y20_c00206{bottom:379.200000pt;}
.y1f_c00206{bottom:396.800000pt;}
.y1e_c00206{bottom:414.400000pt;}
.y1d_c00206{bottom:431.333333pt;}
.y1c_c00206{bottom:449.600000pt;}
.y1b_c00206{bottom:467.200000pt;}
.y1a_c00206{bottom:484.800000pt;}
.y19_c00206{bottom:502.400000pt;}
.y18_c00206{bottom:520.000000pt;}
.y17_c00206{bottom:537.600000pt;}
.y16_c00206{bottom:554.266667pt;}
.y15_c00206{bottom:563.866667pt;}
.y14_c00206{bottom:575.733333pt;}
.y13_c00206{bottom:593.333333pt;}
.y12_c00206{bottom:610.933333pt;}
.y11_c00206{bottom:628.533333pt;}
.y10_c00206{bottom:649.333333pt;}
.yf_c00206{bottom:666.666667pt;}
.ye_c00206{bottom:684.266667pt;}
.yd_c00206{bottom:701.866667pt;}
.yc_c00206{bottom:719.733333pt;}
.yb_c00206{bottom:737.066667pt;}
.ya_c00206{bottom:754.933333pt;}
.y9_c00206{bottom:772.266667pt;}
.y8_c00206{bottom:789.866667pt;}
.y7_c00206{bottom:807.733333pt;}
.y6_c00206{bottom:825.333333pt;}
.y5_c00206{bottom:843.200000pt;}
.y4_c00206{bottom:860.533333pt;}
.y3_c00206{bottom:878.133333pt;}
.y2_c00206{bottom:895.733333pt;}
.y1_c00206{bottom:929.600000pt;}
.h3_c00206{height:37.333333pt;}
.h2_c00206{height:48.000000pt;}
.h0_c00206{height:1037.119955pt;}
.h1_c00206{height:1037.333333pt;}
.w0_c00206{width:816.640056pt;}
.w1_c00206{width:816.666667pt;}
.x0_c00206{left:0.000000pt;}
.x3_c00206{left:125.066667pt;}
.x62_c00206{left:126.000000pt;}
.x1_c00206{left:127.733333pt;}
.x94_c00206{left:128.666667pt;}
.xce_c00206{left:133.066667pt;}
.xc5_c00206{left:134.133333pt;}
.xdb_c00206{left:143.466667pt;}
.x55_c00206{left:144.933333pt;}
.xfe_c00206{left:146.266667pt;}
.x10d_c00206{left:148.800000pt;}
.x22_c00206{left:150.133333pt;}
.x30_c00206{left:151.733333pt;}
.xcf_c00206{left:155.466667pt;}
.x3d_c00206{left:156.800000pt;}
.x7d_c00206{left:158.133333pt;}
.x6f_c00206{left:159.200000pt;}
.xd6_c00206{left:160.666667pt;}
.xd0_c00206{left:161.866667pt;}
.xeb_c00206{left:164.266667pt;}
.x4_c00206{left:166.666667pt;}
.xa9_c00206{left:170.000000pt;}
.x95_c00206{left:171.866667pt;}
.x11d_c00206{left:173.066667pt;}
.xa4_c00206{left:174.400000pt;}
.x89_c00206{left:176.400000pt;}
.xd1_c00206{left:178.800000pt;}
.x63_c00206{left:180.400000pt;}
.x5_c00206{left:181.733333pt;}
.xdc_c00206{left:182.800000pt;}
.xf6_c00206{left:184.000000pt;}
.xd7_c00206{left:185.600000pt;}
.x70_c00206{left:186.666667pt;}
.x48_c00206{left:189.600000pt;}
.x11e_c00206{left:190.666667pt;}
.x138_c00206{left:192.533333pt;}
.xd2_c00206{left:193.866667pt;}
.x31_c00206{left:194.933333pt;}
.x64_c00206{left:197.066667pt;}
.x10e_c00206{left:199.066667pt;}
.x115_c00206{left:201.066667pt;}
.xef_c00206{left:202.800000pt;}
.x11f_c00206{left:204.400000pt;}
.x56_c00206{left:206.400000pt;}
.x3e_c00206{left:210.933333pt;}
.x118_c00206{left:212.133333pt;}
.x7e_c00206{left:213.466667pt;}
.x6_c00206{left:214.400000pt;}
.x8a_c00206{left:217.066667pt;}
.x32_c00206{left:219.600000pt;}
.xd8_c00206{left:220.533333pt;}
.x49_c00206{left:222.933333pt;}
.xd3_c00206{left:225.600000pt;}
.x133_c00206{left:226.933333pt;}
.x96_c00206{left:227.866667pt;}
.xd9_c00206{left:230.400000pt;}
.xff_c00206{left:232.133333pt;}
.x8b_c00206{left:233.066667pt;}
.x134_c00206{left:234.666667pt;}
.x23_c00206{left:236.266667pt;}
.x4a_c00206{left:239.200000pt;}
.x71_c00206{left:242.000000pt;}
.x128_c00206{left:244.000000pt;}
.x14_c00206{left:246.000000pt;}
.x7_c00206{left:247.333333pt;}
.xdd_c00206{left:250.666667pt;}
.xec_c00206{left:251.733333pt;}
.x24_c00206{left:253.600000pt;}
.x126_c00206{left:255.600000pt;}
.x65_c00206{left:257.600000pt;}
.x8c_c00206{left:260.266667pt;}
.x4b_c00206{left:261.866667pt;}
.xbc_c00206{left:262.933333pt;}
.xf7_c00206{left:264.933333pt;}
.x120_c00206{left:267.733333pt;}
.x116_c00206{left:270.266667pt;}
.xf0_c00206{left:272.000000pt;}
.x57_c00206{left:273.866667pt;}
.x25_c00206{left:276.266667pt;}
.xde_c00206{left:277.866667pt;}
.x33_c00206{left:279.466667pt;}
.x97_c00206{left:282.533333pt;}
.x15_c00206{left:284.400000pt;}
.x8_c00206{left:285.733333pt;}
.xc2_c00206{left:286.666667pt;}
.x66_c00206{left:287.733333pt;}
.xb9_c00206{left:289.200000pt;}
.xf8_c00206{left:290.533333pt;}
.x111_c00206{left:291.600000pt;}
.x7f_c00206{left:293.466667pt;}
.x135_c00206{left:297.733333pt;}
.xbf_c00206{left:298.666667pt;}
.x72_c00206{left:300.266667pt;}
.x9_c00206{left:301.733333pt;}
.xf1_c00206{left:303.333333pt;}
.x129_c00206{left:304.533333pt;}
.x34_c00206{left:306.933333pt;}
.x119_c00206{left:310.400000pt;}
.x131_c00206{left:312.000000pt;}
.x108_c00206{left:314.000000pt;}
.x98_c00206{left:316.133333pt;}
.x58_c00206{left:318.000000pt;}
.x121_c00206{left:319.866667pt;}
.xc6_c00206{left:322.933333pt;}
.xaa_c00206{left:324.266667pt;}
.x26_c00206{left:325.600000pt;}
.xa_c00206{left:326.666667pt;}
.x8d_c00206{left:327.866667pt;}
.x4c_c00206{left:329.333333pt;}
.x10f_c00206{left:332.133333pt;}
.x59_c00206{left:333.333333pt;}
.xd4_c00206{left:335.733333pt;}
.x3f_c00206{left:336.666667pt;}
.xb3_c00206{left:337.600000pt;}
.x12a_c00206{left:339.066667pt;}
.x99_c00206{left:341.466667pt;}
.x27_c00206{left:343.200000pt;}
.x8e_c00206{left:345.466667pt;}
.xf9_c00206{left:346.533333pt;}
.x67_c00206{left:349.866667pt;}
.x16_c00206{left:351.866667pt;}
.x35_c00206{left:354.266667pt;}
.x12e_c00206{left:356.666667pt;}
.x73_c00206{left:358.266667pt;}
.x5a_c00206{left:359.866667pt;}
.xab_c00206{left:362.666667pt;}
.xba_c00206{left:364.400000pt;}
.x28_c00206{left:365.866667pt;}
.x4d_c00206{left:369.333333pt;}
.x8f_c00206{left:370.400000pt;}
.xc7_c00206{left:373.466667pt;}
.xb4_c00206{left:375.066667pt;}
.x36_c00206{left:376.400000pt;}
.x9a_c00206{left:378.266667pt;}
.x10b_c00206{left:380.933333pt;}
.xed_c00206{left:382.266667pt;}
.x5b_c00206{left:385.200000pt;}
.x100_c00206{left:386.533333pt;}
.x2_c00206{left:388.800000pt;}
.xb_c00206{left:389.733333pt;}
.xe5_c00206{left:390.933333pt;}
.xb5_c00206{left:392.400000pt;}
.x4e_c00206{left:396.266667pt;}
.x80_c00206{left:398.800000pt;}
.x29_c00206{left:399.733333pt;}
.x68_c00206{left:401.066667pt;}
.x37_c00206{left:402.666667pt;}
.xf2_c00206{left:403.600000pt;}
.x12b_c00206{left:404.666667pt;}
.xa5_c00206{left:406.933333pt;}
.x40_c00206{left:408.000000pt;}
.x17_c00206{left:409.733333pt;}
.xac_c00206{left:410.666667pt;}
.x5c_c00206{left:413.733333pt;}
.xc8_c00206{left:415.066667pt;}
.x9b_c00206{left:416.666667pt;}
.x122_c00206{left:418.133333pt;}
.x74_c00206{left:422.933333pt;}
.x41_c00206{left:425.600000pt;}
.x18_c00206{left:427.333333pt;}
.xf3_c00206{left:428.533333pt;}
.xdf_c00206{left:432.133333pt;}
.x4f_c00206{left:435.066667pt;}
.xe8_c00206{left:438.800000pt;}
.x9c_c00206{left:442.266667pt;}
.xad_c00206{left:444.000000pt;}
.x2a_c00206{left:445.866667pt;}
.x103_c00206{left:446.800000pt;}
.x75_c00206{left:448.266667pt;}
.x19_c00206{left:449.733333pt;}
.xc_c00206{left:452.133333pt;}
.xf4_c00206{left:453.466667pt;}
.xda_c00206{left:455.733333pt;}
.x105_c00206{left:457.333333pt;}
.xe0_c00206{left:459.600000pt;}
.xa6_c00206{left:462.933333pt;}
.x5d_c00206{left:464.666667pt;}
.x69_c00206{left:466.000000pt;}
.xd_c00206{left:467.466667pt;}
.x123_c00206{left:468.666667pt;}
.x90_c00206{left:469.866667pt;}
.x76_c00206{left:471.333333pt;}
.xc3_c00206{left:474.533333pt;}
.x2b_c00206{left:476.533333pt;}
.xbb_c00206{left:478.800000pt;}
.x10c_c00206{left:479.733333pt;}
.x104_c00206{left:481.066667pt;}
.x38_c00206{left:482.400000pt;}
.x81_c00206{left:484.533333pt;}
.x132_c00206{left:485.466667pt;}
.x77_c00206{left:487.066667pt;}
.x136_c00206{left:489.066667pt;}
.xb6_c00206{left:491.200000pt;}
.xc0_c00206{left:492.133333pt;}
.x50_c00206{left:496.533333pt;}
.xe_c00206{left:498.133333pt;}
.x12c_c00206{left:499.466667pt;}
.x1a_c00206{left:500.933333pt;}
.x9d_c00206{left:502.800000pt;}
.x137_c00206{left:503.733333pt;}
.x117_c00206{left:505.066667pt;}
.x39_c00206{left:506.400000pt;}
.x91_c00206{left:507.333333pt;}
.x82_c00206{left:509.466667pt;}
.x112_c00206{left:510.400000pt;}
.xe9_c00206{left:512.133333pt;}
.x51_c00206{left:513.866667pt;}
.x101_c00206{left:514.800000pt;}
.x5e_c00206{left:516.800000pt;}
.xae_c00206{left:518.266667pt;}
.x106_c00206{left:519.733333pt;}
.x78_c00206{left:521.333333pt;}
.x124_c00206{left:522.400000pt;}
.x1b_c00206{left:523.333333pt;}
.xbd_c00206{left:525.200000pt;}
.x42_c00206{left:527.733333pt;}
.x9e_c00206{left:530.933333pt;}
.x79_c00206{left:534.400000pt;}
.x83_c00206{left:536.666667pt;}
.x5f_c00206{left:539.200000pt;}
.xfa_c00206{left:540.400000pt;}
.x3a_c00206{left:541.333333pt;}
.xf_c00206{left:542.666667pt;}
.x6a_c00206{left:544.666667pt;}
.x2c_c00206{left:546.933333pt;}
.x113_c00206{left:547.866667pt;}
.xe1_c00206{left:549.200000pt;}
.x1c_c00206{left:550.800000pt;}
.x102_c00206{left:552.266667pt;}
.x84_c00206{left:554.000000pt;}
.xc9_c00206{left:555.066667pt;}
.x3b_c00206{left:558.000000pt;}
.x10_c00206{left:558.933333pt;}
.x7a_c00206{left:560.000000pt;}
.x109_c00206{left:561.066667pt;}
.x43_c00206{left:562.933333pt;}
.x11a_c00206{left:564.266667pt;}
.xc4_c00206{left:566.400000pt;}
.x92_c00206{left:568.133333pt;}
.xaf_c00206{left:570.800000pt;}
.xea_c00206{left:572.266667pt;}
.x9f_c00206{left:573.200000pt;}
.xb7_c00206{left:574.400000pt;}
.xbe_c00206{left:575.733333pt;}
.x11b_c00206{left:577.733333pt;}
.x85_c00206{left:579.866667pt;}
.xe2_c00206{left:580.933333pt;}
.xc1_c00206{left:582.400000pt;}
.xfb_c00206{left:585.200000pt;}
.x10a_c00206{left:590.133333pt;}
.x44_c00206{left:591.466667pt;}
.x1d_c00206{left:595.600000pt;}
.xf5_c00206{left:596.933333pt;}
.xa0_c00206{left:598.533333pt;}
.x11_c00206{left:600.266667pt;}
.xfc_c00206{left:602.133333pt;}
.x7b_c00206{left:604.800000pt;}
.xca_c00206{left:606.266667pt;}
.x114_c00206{left:607.733333pt;}
.xb0_c00206{left:609.466667pt;}
.xa1_c00206{left:611.600000pt;}
.x2d_c00206{left:615.066667pt;}
.x52_c00206{left:616.666667pt;}
.x127_c00206{left:617.600000pt;}
.xcb_c00206{left:620.933333pt;}
.x60_c00206{left:622.666667pt;}
.x93_c00206{left:625.733333pt;}
.x1e_c00206{left:626.933333pt;}
.xcc_c00206{left:628.666667pt;}
.xa7_c00206{left:629.866667pt;}
.x45_c00206{left:630.800000pt;}
.x2e_c00206{left:633.333333pt;}
.x86_c00206{left:634.266667pt;}
.x107_c00206{left:636.933333pt;}
.x1f_c00206{left:637.866667pt;}
.x11c_c00206{left:639.866667pt;}
.xb1_c00206{left:641.200000pt;}
.x7c_c00206{left:642.533333pt;}
.xb8_c00206{left:644.800000pt;}
.xa2_c00206{left:645.866667pt;}
.x6b_c00206{left:649.733333pt;}
.x53_c00206{left:651.200000pt;}
.x46_c00206{left:654.533333pt;}
.x12f_c00206{left:655.866667pt;}
.x3c_c00206{left:656.933333pt;}
.xd5_c00206{left:657.866667pt;}
.xe6_c00206{left:659.066667pt;}
.x61_c00206{left:662.000000pt;}
.xe3_c00206{left:663.866667pt;}
.x12_c00206{left:665.600000pt;}
.x2f_c00206{left:667.200000pt;}
.x12d_c00206{left:668.400000pt;}
.x6c_c00206{left:669.866667pt;}
.xa3_c00206{left:670.800000pt;}
.xfd_c00206{left:674.266667pt;}
.x125_c00206{left:677.200000pt;}
.x6d_c00206{left:679.200000pt;}
.x87_c00206{left:682.266667pt;}
.x130_c00206{left:684.666667pt;}
.x20_c00206{left:685.600000pt;}
.xcd_c00206{left:690.800000pt;}
.x54_c00206{left:693.466667pt;}
.xe7_c00206{left:694.533333pt;}
.x21_c00206{left:695.466667pt;}
.x110_c00206{left:697.200000pt;}
.x13_c00206{left:698.533333pt;}
.x88_c00206{left:699.866667pt;}
.xa8_c00206{left:701.600000pt;}
.x47_c00206{left:703.200000pt;}
.x6e_c00206{left:704.533333pt;}
.xee_c00206{left:707.066667pt;}
.xe4_c00206{left:708.400000pt;}
.xb2_c00206{left:712.000000pt;}
}





/* 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_c00207 {
    display:none;
  }
  .loading-indicator_c00207.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00207 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_c00207 { 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_c00207" -> "#page-container .classname_c00207")
 */
.pf_c00207 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00207 { /* 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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00207 { /* 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_c00207 { /* 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_c00207 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00207 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00207 {overflow:visible;}
  }
}
.c_c00207 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00207 { /* 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_c00207:after { /* webkit #35443 */
  content: '';
}
.t_c00207:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00207 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 */
}
.__c00207 { /* 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_c00207 { /* info for Javascript */
  display:none;
}
.l_c00207 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00207 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00207 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00207: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_c00207 {
    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_c00207.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00207.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_c00207 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00207{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.000000;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;}
.m39_c00207{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m64_c00207{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00207{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00207{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00207{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00207{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00207{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00207{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00207{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00207{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.maf_c00207{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m69_c00207{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00207{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m27_c00207{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00207{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m65_c00207{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mab_c00207{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00207{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00207{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m66_c00207{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m34_c00207{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00207{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00207{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00207{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00207{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m86_c00207{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00207{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m26_c00207{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00207{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00207{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00207{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m73_c00207{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5_c00207{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00207{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00207{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00207{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00207{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00207{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00207{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2_c00207{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m77_c00207{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00207{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00207{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00207{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m47_c00207{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m19_c00207{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00207{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00207{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00207{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m29_c00207{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00207{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m83_c00207{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00207{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00207{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m95_c00207{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00207{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m13_c00207{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00207{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mac_c00207{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00207{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00207{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00207{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m70_c00207{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m46_c00207{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m63_c00207{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00207{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mba_c00207{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m14_c00207{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00207{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00207{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00207{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00207{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.me_c00207{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m23_c00207{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8_c00207{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00207{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00207{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00207{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00207{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00207{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m68_c00207{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6_c00207{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00207{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m22_c00207{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m71_c00207{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m55_c00207{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00207{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00207{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m89_c00207{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3_c00207{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m79_c00207{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00207{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m99_c00207{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m32_c00207{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00207{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00207{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m48_c00207{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m37_c00207{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m82_c00207{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00207{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00207{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25_c00207{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);}
.m94_c00207{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m88_c00207{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00207{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m92_c00207{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00207{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m56_c00207{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7_c00207{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m87_c00207{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00207{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mae_c00207{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.maa_c00207{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m50_c00207{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00207{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m21_c00207{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m49_c00207{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m20_c00207{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m80_c00207{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m43_c00207{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m59_c00207{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m17_c00207{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00207{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m91_c00207{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m18_c00207{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m28_c00207{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00207{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m36_c00207{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m74_c00207{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mb_c00207{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00207{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m51_c00207{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m72_c00207{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m24_c00207{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m67_c00207{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m75_c00207{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m60_c00207{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m11_c00207{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m31_c00207{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m54_c00207{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m0_c00207{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00207{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m38_c00207{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m52_c00207{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00207{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m97_c00207{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00207{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.mc_c00207{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00207{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mad_c00207{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00207{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m58_c00207{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m15_c00207{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m16_c00207{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m10_c00207{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00207{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00207{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00207{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00207{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m12_c00207{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.md_c00207{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00207{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00207{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m76_c00207{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00207{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00207{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma_c00207{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00207{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00207{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00207{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m42_c00207{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00207{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1_c00207{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00207{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00207{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00207{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m93_c00207{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00207{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00207{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m35_c00207{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m84_c00207{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m33_c00207{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00207{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m96_c00207{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m81_c00207{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00207{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00207{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m85_c00207{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m30_c00207{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m57_c00207{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m78_c00207{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m9_c00207{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00207{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m90_c00207{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00207{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{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__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00207{word-spacing:-7.222222px;}
.ws9_c00207{word-spacing:-5.590361px;}
.ws8_c00207{word-spacing:-5.077170px;}
.ws3_c00207{word-spacing:-4.908815px;}
.wsb_c00207{word-spacing:0.000000px;}
.ws7_c00207{word-spacing:0.250000px;}
.ws5_c00207{word-spacing:1.082474px;}
.wsa_c00207{word-spacing:3.750000px;}
.ws0_c00207{word-spacing:9.000000px;}
.ws4_c00207{word-spacing:11.196251px;}
.ws1_c00207{word-spacing:17.333333px;}
.ws6_c00207{word-spacing:19.375000px;}
.fc0_c00207{color:transparent;}
.fs0_c00207{font-size:54.000000px;}
.y0_c00207{bottom:0.000000px;}
.y2d_c00207{bottom:153.450000px;}
.y2c_c00207{bottom:168.900000px;}
.y2b_c00207{bottom:184.350000px;}
.y2a_c00207{bottom:200.100000px;}
.y29_c00207{bottom:215.700000px;}
.y28_c00207{bottom:230.700000px;}
.y27_c00207{bottom:267.000000px;}
.y26_c00207{bottom:287.550000px;}
.y25_c00207{bottom:307.350000px;}
.y24_c00207{bottom:326.850000px;}
.y23_c00207{bottom:346.650000px;}
.y22_c00207{bottom:366.150000px;}
.y21_c00207{bottom:386.250000px;}
.y20_c00207{bottom:406.050000px;}
.y1f_c00207{bottom:425.850000px;}
.y1e_c00207{bottom:445.350000px;}
.y1d_c00207{bottom:465.150000px;}
.y1c_c00207{bottom:484.950000px;}
.y1b_c00207{bottom:504.450000px;}
.y1a_c00207{bottom:524.550000px;}
.y19_c00207{bottom:544.350000px;}
.y18_c00207{bottom:564.150000px;}
.y17_c00207{bottom:583.950000px;}
.y16_c00207{bottom:603.750000px;}
.y15_c00207{bottom:623.550000px;}
.y14_c00207{bottom:643.350000px;}
.y13_c00207{bottom:663.150000px;}
.y12_c00207{bottom:682.950000px;}
.y11_c00207{bottom:702.750000px;}
.y10_c00207{bottom:722.550000px;}
.yf_c00207{bottom:742.350000px;}
.ye_c00207{bottom:762.600000px;}
.yd_c00207{bottom:782.700000px;}
.yc_c00207{bottom:802.500000px;}
.yb_c00207{bottom:822.300000px;}
.ya_c00207{bottom:842.100000px;}
.y9_c00207{bottom:862.200000px;}
.y8_c00207{bottom:881.700000px;}
.y7_c00207{bottom:901.800000px;}
.y6_c00207{bottom:921.300000px;}
.y5_c00207{bottom:941.100000px;}
.y4_c00207{bottom:961.200000px;}
.y3_c00207{bottom:980.700000px;}
.y2_c00207{bottom:1000.500000px;}
.y1_c00207{bottom:1038.900000px;}
.h2_c00207{height:54.000000px;}
.h0_c00207{height:1166.759949px;}
.h1_c00207{height:1167.000000px;}
.w0_c00207{width:918.720063px;}
.w1_c00207{width:918.750000px;}
.x0_c00207{left:0.000000px;}
.x104_c00207{left:103.650000px;}
.x3_c00207{left:104.700000px;}
.x81_c00207{left:105.750000px;}
.xbe_c00207{left:121.800000px;}
.x6e_c00207{left:125.100000px;}
.x4_c00207{left:127.800000px;}
.x108_c00207{left:131.850000px;}
.x4f_c00207{left:134.550000px;}
.x9a_c00207{left:136.500000px;}
.x5f_c00207{left:138.750000px;}
.xca_c00207{left:141.900000px;}
.x130_c00207{left:143.550000px;}
.x82_c00207{left:147.150000px;}
.x27_c00207{left:150.900000px;}
.xd2_c00207{left:151.950000px;}
.x5_c00207{left:153.300000px;}
.xf8_c00207{left:154.500000px;}
.x38_c00207{left:155.850000px;}
.xfe_c00207{left:157.200000px;}
.x79_c00207{left:159.600000px;}
.x17_c00207{left:163.050000px;}
.x50_c00207{left:164.100000px;}
.x6f_c00207{left:165.750000px;}
.xea_c00207{left:168.600000px;}
.xd7_c00207{left:169.650000px;}
.x60_c00207{left:171.600000px;}
.xb7_c00207{left:174.300000px;}
.x46_c00207{left:175.950000px;}
.x12a_c00207{left:178.200000px;}
.xa4_c00207{left:179.250000px;}
.x18_c00207{left:181.050000px;}
.x131_c00207{left:182.850000px;}
.xc5_c00207{left:183.900000px;}
.x51_c00207{left:185.400000px;}
.x105_c00207{left:186.600000px;}
.x118_c00207{left:190.200000px;}
.xbf_c00207{left:191.250000px;}
.xf9_c00207{left:192.300000px;}
.x70_c00207{left:193.500000px;}
.x28_c00207{left:196.650000px;}
.x12b_c00207{left:198.000000px;}
.x6_c00207{left:199.050000px;}
.xe1_c00207{left:200.550000px;}
.xff_c00207{left:202.200000px;}
.x89_c00207{left:203.550000px;}
.x61_c00207{left:204.750000px;}
.x39_c00207{left:209.100000px;}
.xd8_c00207{left:213.150000px;}
.x12f_c00207{left:217.050000px;}
.xf2_c00207{left:218.550000px;}
.x71_c00207{left:219.750000px;}
.x12c_c00207{left:221.700000px;}
.x52_c00207{left:223.950000px;}
.xd3_c00207{left:225.000000px;}
.x83_c00207{left:226.350000px;}
.x8e_c00207{left:228.450000px;}
.x62_c00207{left:230.250000px;}
.x29_c00207{left:231.600000px;}
.x115_c00207{left:233.700000px;}
.x122_c00207{left:234.750000px;}
.xf3_c00207{left:235.800000px;}
.xcb_c00207{left:237.600000px;}
.x7_c00207{left:238.950000px;}
.x19_c00207{left:241.950000px;}
.x132_c00207{left:243.750000px;}
.x3a_c00207{left:245.850000px;}
.xd9_c00207{left:247.050000px;}
.x8a_c00207{left:248.550000px;}
.x2a_c00207{left:251.100000px;}
.xc0_c00207{left:252.900000px;}
.xa5_c00207{left:256.350000px;}
.x8_c00207{left:258.450000px;}
.xb8_c00207{left:263.250000px;}
.x9b_c00207{left:264.300000px;}
.x8f_c00207{left:265.500000px;}
.x47_c00207{left:267.450000px;}
.xcc_c00207{left:269.700000px;}
.x9_c00207{left:270.750000px;}
.x2b_c00207{left:273.750000px;}
.xac_c00207{left:274.800000px;}
.x123_c00207{left:276.150000px;}
.x53_c00207{left:277.950000px;}
.x8b_c00207{left:282.750000px;}
.x116_c00207{left:283.800000px;}
.xf1_c00207{left:285.750000px;}
.x63_c00207{left:288.150000px;}
.x10f_c00207{left:290.400000px;}
.x109_c00207{left:291.900000px;}
.xc6_c00207{left:292.950000px;}
.x90_c00207{left:294.300000px;}
.x100_c00207{left:295.500000px;}
.xad_c00207{left:297.150000px;}
.x72_c00207{left:300.300000px;}
.x84_c00207{left:305.850000px;}
.x12d_c00207{left:307.350000px;}
.x3b_c00207{left:308.550000px;}
.xe5_c00207{left:310.650000px;}
.x7a_c00207{left:312.300000px;}
.xb9_c00207{left:315.450000px;}
.x110_c00207{left:317.700000px;}
.x124_c00207{left:319.650000px;}
.x10a_c00207{left:320.700000px;}
.xae_c00207{left:323.400000px;}
.x101_c00207{left:325.050000px;}
.x54_c00207{left:328.050000px;}
.x3c_c00207{left:329.850000px;}
.x91_c00207{left:331.050000px;}
.xda_c00207{left:334.050000px;}
.x64_c00207{left:336.450000px;}
.xa_c00207{left:338.400000px;}
.x48_c00207{left:340.500000px;}
.xc7_c00207{left:341.850000px;}
.x1a_c00207{left:347.100000px;}
.xeb_c00207{left:349.950000px;}
.xe6_c00207{left:351.000000px;}
.x95_c00207{left:353.550000px;}
.xe2_c00207{left:354.900000px;}
.x65_c00207{left:355.950000px;}
.xb_c00207{left:357.450000px;}
.x3d_c00207{left:360.750000px;}
.x133_c00207{left:361.950000px;}
.x9c_c00207{left:363.000000px;}
.x7b_c00207{left:364.800000px;}
.x2c_c00207{left:366.750000px;}
.xcd_c00207{left:370.200000px;}
.xa6_c00207{left:372.150000px;}
.x10b_c00207{left:376.800000px;}
.x2d_c00207{left:378.600000px;}
.x135_c00207{left:379.650000px;}
.x49_c00207{left:382.950000px;}
.xf4_c00207{left:384.900000px;}
.x3e_c00207{left:385.950000px;}
.xaf_c00207{left:387.450000px;}
.x55_c00207{left:388.800000px;}
.x66_c00207{left:389.850000px;}
.xce_c00207{left:391.050000px;}
.x1b_c00207{left:392.850000px;}
.x73_c00207{left:397.500000px;}
.xa7_c00207{left:399.150000px;}
.x9d_c00207{left:403.350000px;}
.xc_c00207{left:404.550000px;}
.xf5_c00207{left:406.800000px;}
.x119_c00207{left:408.300000px;}
.xc8_c00207{left:409.650000px;}
.x2e_c00207{left:412.050000px;}
.x1_c00207{left:415.050000px;}
.xd4_c00207{left:417.300000px;}
.x56_c00207{left:418.650000px;}
.xa8_c00207{left:419.700000px;}
.x92_c00207{left:421.350000px;}
.x1c_c00207{left:422.400000px;}
.x106_c00207{left:423.450000px;}
.xba_c00207{left:424.950000px;}
.x74_c00207{left:426.000000px;}
.xcf_c00207{left:429.150000px;}
.x11d_c00207{left:431.700000px;}
.x3f_c00207{left:433.500000px;}
.x7c_c00207{left:436.050000px;}
.xd_c00207{left:438.750000px;}
.xc1_c00207{left:440.550000px;}
.x96_c00207{left:443.400000px;}
.x1d_c00207{left:445.050000px;}
.x2f_c00207{left:448.050000px;}
.xb0_c00207{left:450.450000px;}
.xec_c00207{left:452.250000px;}
.x7d_c00207{left:453.750000px;}
.x57_c00207{left:457.200000px;}
.xfa_c00207{left:460.200000px;}
.x4a_c00207{left:462.150000px;}
.xe_c00207{left:464.250000px;}
.x75_c00207{left:469.200000px;}
.xe3_c00207{left:470.850000px;}
.xa9_c00207{left:472.200000px;}
.x67_c00207{left:473.400000px;}
.x9e_c00207{left:475.350000px;}
.x40_c00207{left:477.450000px;}
.x11e_c00207{left:478.800000px;}
.xbb_c00207{left:482.250000px;}
.x93_c00207{left:483.750000px;}
.x125_c00207{left:485.250000px;}
.xdb_c00207{left:486.750000px;}
.xe7_c00207{left:487.950000px;}
.x76_c00207{left:489.750000px;}
.xd0_c00207{left:491.850000px;}
.xed_c00207{left:493.650000px;}
.x11a_c00207{left:495.000000px;}
.xb1_c00207{left:498.000000px;}
.xf_c00207{left:501.750000px;}
.x1e_c00207{left:502.950000px;}
.xdc_c00207{left:504.750000px;}
.xc2_c00207{left:508.950000px;}
.x7e_c00207{left:512.100000px;}
.x134_c00207{left:515.400000px;}
.xf6_c00207{left:517.200000px;}
.x30_c00207{left:518.550000px;}
.xe8_c00207{left:519.600000px;}
.xd5_c00207{left:520.650000px;}
.x1f_c00207{left:523.500000px;}
.x58_c00207{left:524.850000px;}
.xb2_c00207{left:526.500000px;}
.xfb_c00207{left:527.550000px;}
.x68_c00207{left:528.900000px;}
.x10_c00207{left:530.250000px;}
.x7f_c00207{left:531.900000px;}
.x31_c00207{left:536.250000px;}
.xc3_c00207{left:538.500000px;}
.x85_c00207{left:539.850000px;}
.x11f_c00207{left:541.800000px;}
.xd1_c00207{left:543.000000px;}
.x41_c00207{left:545.850000px;}
.xaa_c00207{left:547.800000px;}
.x20_c00207{left:553.050000px;}
.x8c_c00207{left:554.400000px;}
.xc9_c00207{left:558.000000px;}
.x12e_c00207{left:559.350000px;}
.x128_c00207{left:561.600000px;}
.x97_c00207{left:562.950000px;}
.x102_c00207{left:565.500000px;}
.x32_c00207{left:566.550000px;}
.xdd_c00207{left:567.750000px;}
.x4b_c00207{left:569.700000px;}
.x59_c00207{left:574.500000px;}
.x8d_c00207{left:575.700000px;}
.x69_c00207{left:577.200000px;}
.x77_c00207{left:578.250000px;}
.x42_c00207{left:581.100000px;}
.xb3_c00207{left:584.400000px;}
.x10c_c00207{left:585.600000px;}
.x9f_c00207{left:588.750000px;}
.xee_c00207{left:590.100000px;}
.x11_c00207{left:592.500000px;}
.x21_c00207{left:594.150000px;}
.x4c_c00207{left:595.950000px;}
.xde_c00207{left:598.650000px;}
.x33_c00207{left:602.550000px;}
.x126_c00207{left:603.600000px;}
.x5a_c00207{left:605.850000px;}
.x111_c00207{left:608.250000px;}
.x6a_c00207{left:609.600000px;}
.x94_c00207{left:610.800000px;}
.x12_c00207{left:612.300000px;}
.x22_c00207{left:615.000000px;}
.x5b_c00207{left:616.950000px;}
.x86_c00207{left:620.400000px;}
.x120_c00207{left:621.450000px;}
.x34_c00207{left:623.100000px;}
.x112_c00207{left:625.200000px;}
.xfc_c00207{left:627.000000px;}
.xb4_c00207{left:628.950000px;}
.x13_c00207{left:632.400000px;}
.x4d_c00207{left:633.450000px;}
.x23_c00207{left:634.800000px;}
.xbc_c00207{left:637.650000px;}
.xef_c00207{left:638.700000px;}
.x87_c00207{left:640.950000px;}
.x5c_c00207{left:644.250000px;}
.x11b_c00207{left:646.050000px;}
.x80_c00207{left:647.550000px;}
.x117_c00207{left:652.800000px;}
.x4e_c00207{left:654.000000px;}
.x98_c00207{left:655.500000px;}
.xc4_c00207{left:658.800000px;}
.x129_c00207{left:660.300000px;}
.x6b_c00207{left:662.550000px;}
.x113_c00207{left:663.750000px;}
.xe9_c00207{left:666.450000px;}
.x5d_c00207{left:667.950000px;}
.xa0_c00207{left:669.000000px;}
.xe4_c00207{left:670.650000px;}
.x99_c00207{left:673.500000px;}
.x103_c00207{left:675.300000px;}
.x35_c00207{left:677.850000px;}
.x121_c00207{left:679.350000px;}
.x24_c00207{left:683.700000px;}
.x127_c00207{left:685.050000px;}
.xb5_c00207{left:687.300000px;}
.xdf_c00207{left:689.700000px;}
.x6c_c00207{left:691.050000px;}
.x14_c00207{left:692.550000px;}
.x10e_c00207{left:694.950000px;}
.xfd_c00207{left:696.450000px;}
.xd6_c00207{left:697.800000px;}
.x88_c00207{left:699.600000px;}
.xa1_c00207{left:704.400000px;}
.x5e_c00207{left:706.800000px;}
.xe0_c00207{left:709.200000px;}
.x43_c00207{left:712.500000px;}
.x25_c00207{left:713.550000px;}
.x6d_c00207{left:716.250000px;}
.xb6_c00207{left:718.200000px;}
.x11c_c00207{left:719.250000px;}
.xf7_c00207{left:721.200000px;}
.x78_c00207{left:729.450000px;}
.x36_c00207{left:730.800000px;}
.x44_c00207{left:732.600000px;}
.xab_c00207{left:734.250000px;}
.x15_c00207{left:735.450000px;}
.xf0_c00207{left:736.950000px;}
.xbd_c00207{left:738.750000px;}
.xa2_c00207{left:741.900000px;}
.x114_c00207{left:744.150000px;}
.x2_c00207{left:745.200000px;}
.x10d_c00207{left:747.900000px;}
.x37_c00207{left:750.600000px;}
.x45_c00207{left:752.700000px;}
.x16_c00207{left:755.250000px;}
.x107_c00207{left:757.500000px;}
.x26_c00207{left:758.550000px;}
.xa3_c00207{left:763.500000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws2_c00207{word-spacing:-6.419753pt;}
.ws9_c00207{word-spacing:-4.969210pt;}
.ws8_c00207{word-spacing:-4.513040pt;}
.ws3_c00207{word-spacing:-4.363391pt;}
.wsb_c00207{word-spacing:0.000000pt;}
.ws7_c00207{word-spacing:0.222222pt;}
.ws5_c00207{word-spacing:0.962199pt;}
.wsa_c00207{word-spacing:3.333333pt;}
.ws0_c00207{word-spacing:8.000000pt;}
.ws4_c00207{word-spacing:9.952223pt;}
.ws1_c00207{word-spacing:15.407407pt;}
.ws6_c00207{word-spacing:17.222222pt;}
.fs0_c00207{font-size:48.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y2d_c00207{bottom:136.400000pt;}
.y2c_c00207{bottom:150.133333pt;}
.y2b_c00207{bottom:163.866667pt;}
.y2a_c00207{bottom:177.866667pt;}
.y29_c00207{bottom:191.733333pt;}
.y28_c00207{bottom:205.066667pt;}
.y27_c00207{bottom:237.333333pt;}
.y26_c00207{bottom:255.600000pt;}
.y25_c00207{bottom:273.200000pt;}
.y24_c00207{bottom:290.533333pt;}
.y23_c00207{bottom:308.133333pt;}
.y22_c00207{bottom:325.466667pt;}
.y21_c00207{bottom:343.333333pt;}
.y20_c00207{bottom:360.933333pt;}
.y1f_c00207{bottom:378.533333pt;}
.y1e_c00207{bottom:395.866667pt;}
.y1d_c00207{bottom:413.466667pt;}
.y1c_c00207{bottom:431.066667pt;}
.y1b_c00207{bottom:448.400000pt;}
.y1a_c00207{bottom:466.266667pt;}
.y19_c00207{bottom:483.866667pt;}
.y18_c00207{bottom:501.466667pt;}
.y17_c00207{bottom:519.066667pt;}
.y16_c00207{bottom:536.666667pt;}
.y15_c00207{bottom:554.266667pt;}
.y14_c00207{bottom:571.866667pt;}
.y13_c00207{bottom:589.466667pt;}
.y12_c00207{bottom:607.066667pt;}
.y11_c00207{bottom:624.666667pt;}
.y10_c00207{bottom:642.266667pt;}
.yf_c00207{bottom:659.866667pt;}
.ye_c00207{bottom:677.866667pt;}
.yd_c00207{bottom:695.733333pt;}
.yc_c00207{bottom:713.333333pt;}
.yb_c00207{bottom:730.933333pt;}
.ya_c00207{bottom:748.533333pt;}
.y9_c00207{bottom:766.400000pt;}
.y8_c00207{bottom:783.733333pt;}
.y7_c00207{bottom:801.600000pt;}
.y6_c00207{bottom:818.933333pt;}
.y5_c00207{bottom:836.533333pt;}
.y4_c00207{bottom:854.400000pt;}
.y3_c00207{bottom:871.733333pt;}
.y2_c00207{bottom:889.333333pt;}
.y1_c00207{bottom:923.466667pt;}
.h2_c00207{height:48.000000pt;}
.h0_c00207{height:1037.119955pt;}
.h1_c00207{height:1037.333333pt;}
.w0_c00207{width:816.640056pt;}
.w1_c00207{width:816.666667pt;}
.x0_c00207{left:0.000000pt;}
.x104_c00207{left:92.133333pt;}
.x3_c00207{left:93.066667pt;}
.x81_c00207{left:94.000000pt;}
.xbe_c00207{left:108.266667pt;}
.x6e_c00207{left:111.200000pt;}
.x4_c00207{left:113.600000pt;}
.x108_c00207{left:117.200000pt;}
.x4f_c00207{left:119.600000pt;}
.x9a_c00207{left:121.333333pt;}
.x5f_c00207{left:123.333333pt;}
.xca_c00207{left:126.133333pt;}
.x130_c00207{left:127.600000pt;}
.x82_c00207{left:130.800000pt;}
.x27_c00207{left:134.133333pt;}
.xd2_c00207{left:135.066667pt;}
.x5_c00207{left:136.266667pt;}
.xf8_c00207{left:137.333333pt;}
.x38_c00207{left:138.533333pt;}
.xfe_c00207{left:139.733333pt;}
.x79_c00207{left:141.866667pt;}
.x17_c00207{left:144.933333pt;}
.x50_c00207{left:145.866667pt;}
.x6f_c00207{left:147.333333pt;}
.xea_c00207{left:149.866667pt;}
.xd7_c00207{left:150.800000pt;}
.x60_c00207{left:152.533333pt;}
.xb7_c00207{left:154.933333pt;}
.x46_c00207{left:156.400000pt;}
.x12a_c00207{left:158.400000pt;}
.xa4_c00207{left:159.333333pt;}
.x18_c00207{left:160.933333pt;}
.x131_c00207{left:162.533333pt;}
.xc5_c00207{left:163.466667pt;}
.x51_c00207{left:164.800000pt;}
.x105_c00207{left:165.866667pt;}
.x118_c00207{left:169.066667pt;}
.xbf_c00207{left:170.000000pt;}
.xf9_c00207{left:170.933333pt;}
.x70_c00207{left:172.000000pt;}
.x28_c00207{left:174.800000pt;}
.x12b_c00207{left:176.000000pt;}
.x6_c00207{left:176.933333pt;}
.xe1_c00207{left:178.266667pt;}
.xff_c00207{left:179.733333pt;}
.x89_c00207{left:180.933333pt;}
.x61_c00207{left:182.000000pt;}
.x39_c00207{left:185.866667pt;}
.xd8_c00207{left:189.466667pt;}
.x12f_c00207{left:192.933333pt;}
.xf2_c00207{left:194.266667pt;}
.x71_c00207{left:195.333333pt;}
.x12c_c00207{left:197.066667pt;}
.x52_c00207{left:199.066667pt;}
.xd3_c00207{left:200.000000pt;}
.x83_c00207{left:201.200000pt;}
.x8e_c00207{left:203.066667pt;}
.x62_c00207{left:204.666667pt;}
.x29_c00207{left:205.866667pt;}
.x115_c00207{left:207.733333pt;}
.x122_c00207{left:208.666667pt;}
.xf3_c00207{left:209.600000pt;}
.xcb_c00207{left:211.200000pt;}
.x7_c00207{left:212.400000pt;}
.x19_c00207{left:215.066667pt;}
.x132_c00207{left:216.666667pt;}
.x3a_c00207{left:218.533333pt;}
.xd9_c00207{left:219.600000pt;}
.x8a_c00207{left:220.933333pt;}
.x2a_c00207{left:223.200000pt;}
.xc0_c00207{left:224.800000pt;}
.xa5_c00207{left:227.866667pt;}
.x8_c00207{left:229.733333pt;}
.xb8_c00207{left:234.000000pt;}
.x9b_c00207{left:234.933333pt;}
.x8f_c00207{left:236.000000pt;}
.x47_c00207{left:237.733333pt;}
.xcc_c00207{left:239.733333pt;}
.x9_c00207{left:240.666667pt;}
.x2b_c00207{left:243.333333pt;}
.xac_c00207{left:244.266667pt;}
.x123_c00207{left:245.466667pt;}
.x53_c00207{left:247.066667pt;}
.x8b_c00207{left:251.333333pt;}
.x116_c00207{left:252.266667pt;}
.xf1_c00207{left:254.000000pt;}
.x63_c00207{left:256.133333pt;}
.x10f_c00207{left:258.133333pt;}
.x109_c00207{left:259.466667pt;}
.xc6_c00207{left:260.400000pt;}
.x90_c00207{left:261.600000pt;}
.x100_c00207{left:262.666667pt;}
.xad_c00207{left:264.133333pt;}
.x72_c00207{left:266.933333pt;}
.x84_c00207{left:271.866667pt;}
.x12d_c00207{left:273.200000pt;}
.x3b_c00207{left:274.266667pt;}
.xe5_c00207{left:276.133333pt;}
.x7a_c00207{left:277.600000pt;}
.xb9_c00207{left:280.400000pt;}
.x110_c00207{left:282.400000pt;}
.x124_c00207{left:284.133333pt;}
.x10a_c00207{left:285.066667pt;}
.xae_c00207{left:287.466667pt;}
.x101_c00207{left:288.933333pt;}
.x54_c00207{left:291.600000pt;}
.x3c_c00207{left:293.200000pt;}
.x91_c00207{left:294.266667pt;}
.xda_c00207{left:296.933333pt;}
.x64_c00207{left:299.066667pt;}
.xa_c00207{left:300.800000pt;}
.x48_c00207{left:302.666667pt;}
.xc7_c00207{left:303.866667pt;}
.x1a_c00207{left:308.533333pt;}
.xeb_c00207{left:311.066667pt;}
.xe6_c00207{left:312.000000pt;}
.x95_c00207{left:314.266667pt;}
.xe2_c00207{left:315.466667pt;}
.x65_c00207{left:316.400000pt;}
.xb_c00207{left:317.733333pt;}
.x3d_c00207{left:320.666667pt;}
.x133_c00207{left:321.733333pt;}
.x9c_c00207{left:322.666667pt;}
.x7b_c00207{left:324.266667pt;}
.x2c_c00207{left:326.000000pt;}
.xcd_c00207{left:329.066667pt;}
.xa6_c00207{left:330.800000pt;}
.x10b_c00207{left:334.933333pt;}
.x2d_c00207{left:336.533333pt;}
.x135_c00207{left:337.466667pt;}
.x49_c00207{left:340.400000pt;}
.xf4_c00207{left:342.133333pt;}
.x3e_c00207{left:343.066667pt;}
.xaf_c00207{left:344.400000pt;}
.x55_c00207{left:345.600000pt;}
.x66_c00207{left:346.533333pt;}
.xce_c00207{left:347.600000pt;}
.x1b_c00207{left:349.200000pt;}
.x73_c00207{left:353.333333pt;}
.xa7_c00207{left:354.800000pt;}
.x9d_c00207{left:358.533333pt;}
.xc_c00207{left:359.600000pt;}
.xf5_c00207{left:361.600000pt;}
.x119_c00207{left:362.933333pt;}
.xc8_c00207{left:364.133333pt;}
.x2e_c00207{left:366.266667pt;}
.x1_c00207{left:368.933333pt;}
.xd4_c00207{left:370.933333pt;}
.x56_c00207{left:372.133333pt;}
.xa8_c00207{left:373.066667pt;}
.x92_c00207{left:374.533333pt;}
.x1c_c00207{left:375.466667pt;}
.x106_c00207{left:376.400000pt;}
.xba_c00207{left:377.733333pt;}
.x74_c00207{left:378.666667pt;}
.xcf_c00207{left:381.466667pt;}
.x11d_c00207{left:383.733333pt;}
.x3f_c00207{left:385.333333pt;}
.x7c_c00207{left:387.600000pt;}
.xd_c00207{left:390.000000pt;}
.xc1_c00207{left:391.600000pt;}
.x96_c00207{left:394.133333pt;}
.x1d_c00207{left:395.600000pt;}
.x2f_c00207{left:398.266667pt;}
.xb0_c00207{left:400.400000pt;}
.xec_c00207{left:402.000000pt;}
.x7d_c00207{left:403.333333pt;}
.x57_c00207{left:406.400000pt;}
.xfa_c00207{left:409.066667pt;}
.x4a_c00207{left:410.800000pt;}
.xe_c00207{left:412.666667pt;}
.x75_c00207{left:417.066667pt;}
.xe3_c00207{left:418.533333pt;}
.xa9_c00207{left:419.733333pt;}
.x67_c00207{left:420.800000pt;}
.x9e_c00207{left:422.533333pt;}
.x40_c00207{left:424.400000pt;}
.x11e_c00207{left:425.600000pt;}
.xbb_c00207{left:428.666667pt;}
.x93_c00207{left:430.000000pt;}
.x125_c00207{left:431.333333pt;}
.xdb_c00207{left:432.666667pt;}
.xe7_c00207{left:433.733333pt;}
.x76_c00207{left:435.333333pt;}
.xd0_c00207{left:437.200000pt;}
.xed_c00207{left:438.800000pt;}
.x11a_c00207{left:440.000000pt;}
.xb1_c00207{left:442.666667pt;}
.xf_c00207{left:446.000000pt;}
.x1e_c00207{left:447.066667pt;}
.xdc_c00207{left:448.666667pt;}
.xc2_c00207{left:452.400000pt;}
.x7e_c00207{left:455.200000pt;}
.x134_c00207{left:458.133333pt;}
.xf6_c00207{left:459.733333pt;}
.x30_c00207{left:460.933333pt;}
.xe8_c00207{left:461.866667pt;}
.xd5_c00207{left:462.800000pt;}
.x1f_c00207{left:465.333333pt;}
.x58_c00207{left:466.533333pt;}
.xb2_c00207{left:468.000000pt;}
.xfb_c00207{left:468.933333pt;}
.x68_c00207{left:470.133333pt;}
.x10_c00207{left:471.333333pt;}
.x7f_c00207{left:472.800000pt;}
.x31_c00207{left:476.666667pt;}
.xc3_c00207{left:478.666667pt;}
.x85_c00207{left:479.866667pt;}
.x11f_c00207{left:481.600000pt;}
.xd1_c00207{left:482.666667pt;}
.x41_c00207{left:485.200000pt;}
.xaa_c00207{left:486.933333pt;}
.x20_c00207{left:491.600000pt;}
.x8c_c00207{left:492.800000pt;}
.xc9_c00207{left:496.000000pt;}
.x12e_c00207{left:497.200000pt;}
.x128_c00207{left:499.200000pt;}
.x97_c00207{left:500.400000pt;}
.x102_c00207{left:502.666667pt;}
.x32_c00207{left:503.600000pt;}
.xdd_c00207{left:504.666667pt;}
.x4b_c00207{left:506.400000pt;}
.x59_c00207{left:510.666667pt;}
.x8d_c00207{left:511.733333pt;}
.x69_c00207{left:513.066667pt;}
.x77_c00207{left:514.000000pt;}
.x42_c00207{left:516.533333pt;}
.xb3_c00207{left:519.466667pt;}
.x10c_c00207{left:520.533333pt;}
.x9f_c00207{left:523.333333pt;}
.xee_c00207{left:524.533333pt;}
.x11_c00207{left:526.666667pt;}
.x21_c00207{left:528.133333pt;}
.x4c_c00207{left:529.733333pt;}
.xde_c00207{left:532.133333pt;}
.x33_c00207{left:535.600000pt;}
.x126_c00207{left:536.533333pt;}
.x5a_c00207{left:538.533333pt;}
.x111_c00207{left:540.666667pt;}
.x6a_c00207{left:541.866667pt;}
.x94_c00207{left:542.933333pt;}
.x12_c00207{left:544.266667pt;}
.x22_c00207{left:546.666667pt;}
.x5b_c00207{left:548.400000pt;}
.x86_c00207{left:551.466667pt;}
.x120_c00207{left:552.400000pt;}
.x34_c00207{left:553.866667pt;}
.x112_c00207{left:555.733333pt;}
.xfc_c00207{left:557.333333pt;}
.xb4_c00207{left:559.066667pt;}
.x13_c00207{left:562.133333pt;}
.x4d_c00207{left:563.066667pt;}
.x23_c00207{left:564.266667pt;}
.xbc_c00207{left:566.800000pt;}
.xef_c00207{left:567.733333pt;}
.x87_c00207{left:569.733333pt;}
.x5c_c00207{left:572.666667pt;}
.x11b_c00207{left:574.266667pt;}
.x80_c00207{left:575.600000pt;}
.x117_c00207{left:580.266667pt;}
.x4e_c00207{left:581.333333pt;}
.x98_c00207{left:582.666667pt;}
.xc4_c00207{left:585.600000pt;}
.x129_c00207{left:586.933333pt;}
.x6b_c00207{left:588.933333pt;}
.x113_c00207{left:590.000000pt;}
.xe9_c00207{left:592.400000pt;}
.x5d_c00207{left:593.733333pt;}
.xa0_c00207{left:594.666667pt;}
.xe4_c00207{left:596.133333pt;}
.x99_c00207{left:598.666667pt;}
.x103_c00207{left:600.266667pt;}
.x35_c00207{left:602.533333pt;}
.x121_c00207{left:603.866667pt;}
.x24_c00207{left:607.733333pt;}
.x127_c00207{left:608.933333pt;}
.xb5_c00207{left:610.933333pt;}
.xdf_c00207{left:613.066667pt;}
.x6c_c00207{left:614.266667pt;}
.x14_c00207{left:615.600000pt;}
.x10e_c00207{left:617.733333pt;}
.xfd_c00207{left:619.066667pt;}
.xd6_c00207{left:620.266667pt;}
.x88_c00207{left:621.866667pt;}
.xa1_c00207{left:626.133333pt;}
.x5e_c00207{left:628.266667pt;}
.xe0_c00207{left:630.400000pt;}
.x43_c00207{left:633.333333pt;}
.x25_c00207{left:634.266667pt;}
.x6d_c00207{left:636.666667pt;}
.xb6_c00207{left:638.400000pt;}
.x11c_c00207{left:639.333333pt;}
.xf7_c00207{left:641.066667pt;}
.x78_c00207{left:648.400000pt;}
.x36_c00207{left:649.600000pt;}
.x44_c00207{left:651.200000pt;}
.xab_c00207{left:652.666667pt;}
.x15_c00207{left:653.733333pt;}
.xf0_c00207{left:655.066667pt;}
.xbd_c00207{left:656.666667pt;}
.xa2_c00207{left:659.466667pt;}
.x114_c00207{left:661.466667pt;}
.x2_c00207{left:662.400000pt;}
.x10d_c00207{left:664.800000pt;}
.x37_c00207{left:667.200000pt;}
.x45_c00207{left:669.066667pt;}
.x16_c00207{left:671.333333pt;}
.x107_c00207{left:673.333333pt;}
.x26_c00207{left:674.266667pt;}
.xa3_c00207{left:678.666667pt;}
}





/* 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_c00208 {
    display:none;
  }
  .loading-indicator_c00208.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00208 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_c00208 { 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_c00208" -> "#page-container .classname_c00208")
 */
.pf_c00208 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00208 { /* 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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00208 { /* 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_c00208 { /* 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_c00208 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00208 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00208 {overflow:visible;}
  }
}
.c_c00208 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00208 { /* 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_c00208:after { /* webkit #35443 */
  content: '';
}
.t_c00208:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00208 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 */
}
.__c00208 { /* 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_c00208 { /* info for Javascript */
  display:none;
}
.l_c00208 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00208 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00208 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00208: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_c00208 {
    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_c00208.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00208.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_c00208 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00208{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00208;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.000000;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;}
.m8e_c00208{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m36_c00208{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00208{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00208{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00208{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.maf_c00208{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00208{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00208{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m69_c00208{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00208{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mab_c00208{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00208{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00208{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m78_c00208{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m48_c00208{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00208{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00208{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00208{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc_c00208{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00208{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00208{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m49_c00208{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00208{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mad_c00208{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00208{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00208{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m96_c00208{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00208{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m70_c00208{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00208{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00208{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00208{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00208{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mae_c00208{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00208{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00208{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m33_c00208{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mba_c00208{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m88_c00208{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m79_c00208{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m43_c00208{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.mac_c00208{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.maa_c00208{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00208{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m17_c00208{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m32_c00208{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00208{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m27_c00208{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m65_c00208{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00208{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00208{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00208{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00208{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m38_c00208{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m61_c00208{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m28_c00208{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00208{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00208{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m53_c00208{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00208{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m64_c00208{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m81_c00208{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m82_c00208{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m25_c00208{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m80_c00208{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00208{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m45_c00208{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m19_c00208{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8_c00208{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00208{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m83_c00208{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00208{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00208{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m93_c00208{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00208{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00208{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m47_c00208{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m97_c00208{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m76_c00208{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m16_c00208{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m84_c00208{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00208{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m54_c00208{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.md_c00208{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00208{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.me_c00208{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00208{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m58_c00208{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m42_c00208{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m14_c00208{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00208{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00208{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m24_c00208{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m35_c00208{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m31_c00208{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m20_c00208{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00208{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00208{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m72_c00208{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00208{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m73_c00208{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00208{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3_c00208{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00208{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m59_c00208{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00208{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00208{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00208{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00208{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m37_c00208{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m86_c00208{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m50_c00208{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00208{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00208{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00208{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m52_c00208{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00208{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m15_c00208{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00208{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m68_c00208{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00208{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00208{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m26_c00208{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m57_c00208{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00208{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00208{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m92_c00208{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m18_c00208{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00208{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m62_c00208{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00208{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m71_c00208{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00208{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00208{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m55_c00208{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00208{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00208{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m39_c00208{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00208{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m89_c00208{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00208{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m63_c00208{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m44_c00208{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00208{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00208{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00208{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00208{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m23_c00208{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m87_c00208{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00208{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m85_c00208{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00208{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m99_c00208{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m95_c00208{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m34_c00208{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m67_c00208{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m98_c00208{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00208{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00208{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00208{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00208{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m13_c00208{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00208{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00208{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00208{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m46_c00208{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00208{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m21_c00208{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m41_c00208{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00208{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00208{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00208{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00208{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00208{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m66_c00208{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00208{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m77_c00208{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c00208{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m60_c00208{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00208{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00208{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00208{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00208{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m51_c00208{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m74_c00208{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00208{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.v0_c00208{vertical-align:0.000000px;}
.ls0_c00208{letter-spacing:0.000000px;}
.sc__c00208{text-shadow:none;}
.sc0_c00208{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__c00208{-webkit-text-stroke:0px transparent;}
.sc0_c00208{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00208{word-spacing:-5.250000px;}
.ws8_c00208{word-spacing:-1.791165px;}
.ws0_c00208{word-spacing:-0.756839px;}
.wsd_c00208{word-spacing:0.000000px;}
.ws1_c00208{word-spacing:2.082803px;}
.ws2_c00208{word-spacing:3.168675px;}
.ws3_c00208{word-spacing:11.875000px;}
.ws5_c00208{word-spacing:12.125000px;}
.ws6_c00208{word-spacing:16.500000px;}
.ws7_c00208{word-spacing:20.874311px;}
.ws4_c00208{word-spacing:24.833333px;}
.ws9_c00208{word-spacing:59.409144px;}
.wsa_c00208{word-spacing:90.375000px;}
.wsc_c00208{word-spacing:146.954279px;}
._0_c00208{width:32.250000px;}
.fc0_c00208{color:transparent;}
.fs0_c00208{font-size:54.000000px;}
.y0_c00208{bottom:0.000000px;}
.y2e_c00208{bottom:145.500000px;}
.y2d_c00208{bottom:161.700000px;}
.y2c_c00208{bottom:176.100000px;}
.y2b_c00208{bottom:192.600000px;}
.y2a_c00208{bottom:207.750000px;}
.y29_c00208{bottom:223.500000px;}
.y28_c00208{bottom:238.650000px;}
.y27_c00208{bottom:270.000000px;}
.y26_c00208{bottom:289.800000px;}
.y25_c00208{bottom:309.600000px;}
.y24_c00208{bottom:329.400000px;}
.y23_c00208{bottom:349.200000px;}
.y22_c00208{bottom:368.700000px;}
.y21_c00208{bottom:388.500000px;}
.y20_c00208{bottom:408.300000px;}
.y1f_c00208{bottom:428.100000px;}
.y1e_c00208{bottom:448.200000px;}
.y1d_c00208{bottom:468.000000px;}
.y1c_c00208{bottom:487.800000px;}
.y1b_c00208{bottom:507.300000px;}
.y1a_c00208{bottom:527.100000px;}
.y19_c00208{bottom:546.600000px;}
.y18_c00208{bottom:566.700000px;}
.y17_c00208{bottom:586.500000px;}
.y16_c00208{bottom:606.300000px;}
.y15_c00208{bottom:626.100000px;}
.y14_c00208{bottom:645.900000px;}
.y13_c00208{bottom:665.700000px;}
.y12_c00208{bottom:685.500000px;}
.y11_c00208{bottom:705.600000px;}
.y10_c00208{bottom:725.400000px;}
.yf_c00208{bottom:745.200000px;}
.ye_c00208{bottom:765.150000px;}
.yd_c00208{bottom:784.950000px;}
.yc_c00208{bottom:804.750000px;}
.yb_c00208{bottom:824.850000px;}
.ya_c00208{bottom:844.650000px;}
.y9_c00208{bottom:864.450000px;}
.y8_c00208{bottom:884.250000px;}
.y7_c00208{bottom:904.050000px;}
.y6_c00208{bottom:924.150000px;}
.y5_c00208{bottom:943.650000px;}
.y4_c00208{bottom:963.750000px;}
.y3_c00208{bottom:983.850000px;}
.y2_c00208{bottom:1003.650000px;}
.y1_c00208{bottom:1041.150000px;}
.h2_c00208{height:54.000000px;}
.h0_c00208{height:1166.759949px;}
.h1_c00208{height:1167.000000px;}
.w0_c00208{width:918.720063px;}
.w1_c00208{width:918.750000px;}
.x0_c00208{left:0.000000px;}
.x11_c00208{left:144.750000px;}
.x1_c00208{left:146.550000px;}
.x101_c00208{left:147.750000px;}
.x6b_c00208{left:160.800000px;}
.xf7_c00208{left:162.900000px;}
.x12_c00208{left:164.250000px;}
.x3b_c00208{left:165.450000px;}
.x2e_c00208{left:167.550000px;}
.x118_c00208{left:169.050000px;}
.xca_c00208{left:171.300000px;}
.xf8_c00208{left:174.750000px;}
.x3_c00208{left:176.100000px;}
.xc4_c00208{left:178.350000px;}
.x13_c00208{left:180.450000px;}
.x113_c00208{left:181.500000px;}
.x6c_c00208{left:182.700000px;}
.xb0_c00208{left:184.500000px;}
.x97_c00208{left:191.700000px;}
.x3c_c00208{left:195.000000px;}
.x22_c00208{left:196.200000px;}
.xa8_c00208{left:197.850000px;}
.x119_c00208{left:199.350000px;}
.x12d_c00208{left:202.050000px;}
.x60_c00208{left:204.000000px;}
.x102_c00208{left:205.050000px;}
.xb1_c00208{left:206.400000px;}
.xe1_c00208{left:207.900000px;}
.x49_c00208{left:209.700000px;}
.x6d_c00208{left:211.200000px;}
.x8e_c00208{left:213.900000px;}
.xec_c00208{left:215.100000px;}
.x12e_c00208{left:216.450000px;}
.xe5_c00208{left:217.500000px;}
.x129_c00208{left:220.950000px;}
.x9f_c00208{left:222.450000px;}
.x10f_c00208{left:223.650000px;}
.x86_c00208{left:224.850000px;}
.xdb_c00208{left:228.000000px;}
.x14_c00208{left:230.850000px;}
.xe2_c00208{left:232.350000px;}
.x23_c00208{left:235.050000px;}
.x4_c00208{left:236.550000px;}
.x12f_c00208{left:238.350000px;}
.x55_c00208{left:241.500000px;}
.x61_c00208{left:243.900000px;}
.x8f_c00208{left:245.550000px;}
.xc5_c00208{left:246.750000px;}
.xdc_c00208{left:247.800000px;}
.x15_c00208{left:251.400000px;}
.x2f_c00208{left:252.450000px;}
.x110_c00208{left:255.000000px;}
.x3d_c00208{left:257.250000px;}
.xa0_c00208{left:258.450000px;}
.x4a_c00208{left:262.200000px;}
.x5_c00208{left:265.650000px;}
.xbb_c00208{left:268.350000px;}
.x62_c00208{left:271.200000px;}
.x79_c00208{left:272.700000px;}
.xdd_c00208{left:275.100000px;}
.x4b_c00208{left:276.900000px;}
.x16_c00208{left:280.950000px;}
.xf9_c00208{left:283.200000px;}
.x6e_c00208{left:285.300000px;}
.x30_c00208{left:287.400000px;}
.x111_c00208{left:288.450000px;}
.x98_c00208{left:291.600000px;}
.xc6_c00208{left:292.800000px;}
.xbc_c00208{left:295.050000px;}
.xcb_c00208{left:297.300000px;}
.xed_c00208{left:300.900000px;}
.xb2_c00208{left:302.250000px;}
.x11a_c00208{left:304.500000px;}
.x6_c00208{left:306.000000px;}
.xc7_c00208{left:307.950000px;}
.x108_c00208{left:309.600000px;}
.xe6_c00208{left:310.950000px;}
.x24_c00208{left:312.450000px;}
.xf0_c00208{left:315.000000px;}
.x6f_c00208{left:319.500000px;}
.x63_c00208{left:320.850000px;}
.x99_c00208{left:323.250000px;}
.x11e_c00208{left:325.350000px;}
.x4c_c00208{left:327.300000px;}
.xa9_c00208{left:328.500000px;}
.x122_c00208{left:329.550000px;}
.x136_c00208{left:331.500000px;}
.x87_c00208{left:332.850000px;}
.xd4_c00208{left:334.050000px;}
.x10a_c00208{left:335.100000px;}
.xbd_c00208{left:336.150000px;}
.xa1_c00208{left:337.350000px;}
.x17_c00208{left:338.850000px;}
.xcc_c00208{left:341.250000px;}
.xb3_c00208{left:345.150000px;}
.x25_c00208{left:346.350000px;}
.x7a_c00208{left:348.600000px;}
.xe7_c00208{left:350.250000px;}
.x9a_c00208{left:351.300000px;}
.xbe_c00208{left:354.150000px;}
.xf1_c00208{left:355.350000px;}
.xa2_c00208{left:358.200000px;}
.xfa_c00208{left:359.250000px;}
.x70_c00208{left:361.950000px;}
.x31_c00208{left:363.000000px;}
.x103_c00208{left:365.100000px;}
.x90_c00208{left:366.750000px;}
.x7b_c00208{left:368.100000px;}
.x18_c00208{left:372.300000px;}
.x140_c00208{left:373.350000px;}
.x26_c00208{left:374.400000px;}
.x3e_c00208{left:376.050000px;}
.xbf_c00208{left:377.550000px;}
.xd5_c00208{left:379.350000px;}
.x71_c00208{left:380.700000px;}
.xde_c00208{left:383.100000px;}
.x7_c00208{left:385.200000px;}
.x88_c00208{left:390.450000px;}
.x4d_c00208{left:392.850000px;}
.x32_c00208{left:393.900000px;}
.x123_c00208{left:395.400000px;}
.x104_c00208{left:396.450000px;}
.x64_c00208{left:397.500000px;}
.xb4_c00208{left:399.150000px;}
.x130_c00208{left:401.550000px;}
.x19_c00208{left:403.200000px;}
.x3f_c00208{left:405.600000px;}
.x137_c00208{left:406.800000px;}
.xf2_c00208{left:409.050000px;}
.xe8_c00208{left:410.400000px;}
.x56_c00208{left:412.200000px;}
.x141_c00208{left:414.000000px;}
.x11f_c00208{left:416.100000px;}
.xaa_c00208{left:418.200000px;}
.x72_c00208{left:420.600000px;}
.x4e_c00208{left:422.400000px;}
.x9b_c00208{left:424.350000px;}
.x27_c00208{left:426.300000px;}
.xdf_c00208{left:428.100000px;}
.x124_c00208{left:429.600000px;}
.xcd_c00208{left:430.950000px;}
.x13d_c00208{left:432.000000px;}
.xb5_c00208{left:433.050000px;}
.xab_c00208{left:435.450000px;}
.x40_c00208{left:436.500000px;}
.xc8_c00208{left:438.000000px;}
.x2_c00208{left:441.000000px;}
.x91_c00208{left:442.350000px;}
.x9c_c00208{left:444.150000px;}
.x7c_c00208{left:445.800000px;}
.x57_c00208{left:448.500000px;}
.xb6_c00208{left:451.800000px;}
.x33_c00208{left:453.300000px;}
.x12c_c00208{left:455.250000px;}
.x41_c00208{left:456.300000px;}
.x11b_c00208{left:457.500000px;}
.xd6_c00208{left:458.850000px;}
.x121_c00208{left:461.100000px;}
.x1a_c00208{left:462.300000px;}
.xfb_c00208{left:464.100000px;}
.xf3_c00208{left:465.600000px;}
.x134_c00208{left:466.950000px;}
.x4f_c00208{left:468.150000px;}
.x89_c00208{left:470.400000px;}
.xac_c00208{left:472.950000px;}
.x73_c00208{left:474.300000px;}
.x10b_c00208{left:475.500000px;}
.x8_c00208{left:477.750000px;}
.x92_c00208{left:480.450000px;}
.x7d_c00208{left:482.550000px;}
.x1b_c00208{left:485.700000px;}
.x58_c00208{left:487.800000px;}
.x138_c00208{left:489.900000px;}
.x28_c00208{left:491.100000px;}
.xe3_c00208{left:492.900000px;}
.x42_c00208{left:497.400000px;}
.xd7_c00208{left:499.200000px;}
.x9_c00208{left:501.150000px;}
.x10c_c00208{left:502.800000px;}
.x142_c00208{left:505.350000px;}
.xee_c00208{left:507.750000px;}
.x34_c00208{left:508.800000px;}
.x74_c00208{left:511.350000px;}
.x131_c00208{left:515.700000px;}
.xfc_c00208{left:517.800000px;}
.x7e_c00208{left:518.850000px;}
.x9d_c00208{left:520.500000px;}
.x13e_c00208{left:522.300000px;}
.xb7_c00208{left:523.800000px;}
.x50_c00208{left:525.000000px;}
.x65_c00208{left:527.100000px;}
.x1c_c00208{left:528.150000px;}
.xa_c00208{left:530.250000px;}
.xce_c00208{left:533.100000px;}
.xef_c00208{left:535.050000px;}
.x51_c00208{left:539.100000px;}
.xa3_c00208{left:540.300000px;}
.x114_c00208{left:541.650000px;}
.x105_c00208{left:544.050000px;}
.xc9_c00208{left:545.250000px;}
.x29_c00208{left:546.900000px;}
.x7f_c00208{left:548.700000px;}
.x59_c00208{left:550.500000px;}
.xb8_c00208{left:554.700000px;}
.xc0_c00208{left:556.500000px;}
.xad_c00208{left:558.300000px;}
.x8a_c00208{left:559.650000px;}
.xfd_c00208{left:561.450000px;}
.x132_c00208{left:564.000000px;}
.x43_c00208{left:566.250000px;}
.x11c_c00208{left:568.050000px;}
.x52_c00208{left:569.700000px;}
.x5a_c00208{left:571.350000px;}
.xf4_c00208{left:573.600000px;}
.x35_c00208{left:575.400000px;}
.x9e_c00208{left:577.350000px;}
.x93_c00208{left:578.700000px;}
.x8b_c00208{left:579.750000px;}
.x1d_c00208{left:582.150000px;}
.x115_c00208{left:584.100000px;}
.x80_c00208{left:585.750000px;}
.xb9_c00208{left:588.150000px;}
.x125_c00208{left:592.650000px;}
.x66_c00208{left:594.750000px;}
.x36_c00208{left:595.950000px;}
.xcf_c00208{left:597.900000px;}
.x53_c00208{left:599.250000px;}
.xd8_c00208{left:601.800000px;}
.x5b_c00208{left:603.750000px;}
.xfe_c00208{left:606.750000px;}
.x120_c00208{left:612.000000px;}
.xb_c00208{left:614.100000px;}
.xa4_c00208{left:616.200000px;}
.x13c_c00208{left:618.000000px;}
.x10d_c00208{left:620.550000px;}
.x44_c00208{left:621.750000px;}
.x2a_c00208{left:623.250000px;}
.x54_c00208{left:626.250000px;}
.x5c_c00208{left:629.700000px;}
.x12a_c00208{left:631.050000px;}
.x67_c00208{left:632.550000px;}
.xe0_c00208{left:633.900000px;}
.xc_c00208{left:635.400000px;}
.xa5_c00208{left:638.550000px;}
.x75_c00208{left:640.650000px;}
.x139_c00208{left:641.700000px;}
.x2b_c00208{left:643.050000px;}
.xc1_c00208{left:644.250000px;}
.xd0_c00208{left:647.550000px;}
.xf5_c00208{left:648.900000px;}
.x81_c00208{left:650.250000px;}
.x8c_c00208{left:651.450000px;}
.xe4_c00208{left:654.450000px;}
.xd9_c00208{left:657.300000px;}
.x45_c00208{left:658.500000px;}
.xe9_c00208{left:662.250000px;}
.xd_c00208{left:663.900000px;}
.x37_c00208{left:665.850000px;}
.xba_c00208{left:667.650000px;}
.x76_c00208{left:669.150000px;}
.x82_c00208{left:670.800000px;}
.x2c_c00208{left:672.150000px;}
.x5d_c00208{left:674.700000px;}
.x46_c00208{left:678.000000px;}
.x13a_c00208{left:679.800000px;}
.x10e_c00208{left:682.050000px;}
.x77_c00208{left:685.650000px;}
.x38_c00208{left:688.500000px;}
.x68_c00208{left:690.450000px;}
.xae_c00208{left:691.800000px;}
.x1e_c00208{left:695.250000px;}
.x8d_c00208{left:699.300000px;}
.x126_c00208{left:700.650000px;}
.x5e_c00208{left:702.000000px;}
.xe_c00208{left:703.800000px;}
.x83_c00208{left:707.100000px;}
.xc2_c00208{left:709.050000px;}
.x116_c00208{left:710.850000px;}
.x2d_c00208{left:713.250000px;}
.xea_c00208{left:717.300000px;}
.x94_c00208{left:718.350000px;}
.x127_c00208{left:720.750000px;}
.xf_c00208{left:721.800000px;}
.x39_c00208{left:724.800000px;}
.x47_c00208{left:726.300000px;}
.xd1_c00208{left:727.500000px;}
.x1f_c00208{left:728.700000px;}
.x69_c00208{left:730.350000px;}
.x106_c00208{left:731.400000px;}
.x13b_c00208{left:734.850000px;}
.xc3_c00208{left:738.900000px;}
.xda_c00208{left:740.850000px;}
.xaf_c00208{left:743.250000px;}
.x133_c00208{left:744.900000px;}
.x12b_c00208{left:746.550000px;}
.x5f_c00208{left:748.800000px;}
.x10_c00208{left:751.350000px;}
.x135_c00208{left:755.250000px;}
.x20_c00208{left:756.750000px;}
.xd2_c00208{left:758.850000px;}
.x112_c00208{left:760.800000px;}
.x78_c00208{left:762.000000px;}
.x109_c00208{left:763.500000px;}
.x84_c00208{left:765.000000px;}
.xff_c00208{left:768.750000px;}
.x128_c00208{left:770.100000px;}
.x117_c00208{left:771.450000px;}
.x95_c00208{left:773.100000px;}
.x3a_c00208{left:775.200000px;}
.xd3_c00208{left:778.650000px;}
.xa6_c00208{left:781.050000px;}
.xeb_c00208{left:782.100000px;}
.x48_c00208{left:783.150000px;}
.x13f_c00208{left:787.050000px;}
.x6a_c00208{left:789.750000px;}
.x85_c00208{left:791.250000px;}
.x11d_c00208{left:793.050000px;}
.x96_c00208{left:794.400000px;}
.xf6_c00208{left:797.250000px;}
.x107_c00208{left:798.300000px;}
.x21_c00208{left:799.950000px;}
.xa7_c00208{left:804.150000px;}
.x100_c00208{left:810.150000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.wsb_c00208{word-spacing:-4.666667pt;}
.ws8_c00208{word-spacing:-1.592146pt;}
.ws0_c00208{word-spacing:-0.672746pt;}
.wsd_c00208{word-spacing:0.000000pt;}
.ws1_c00208{word-spacing:1.851380pt;}
.ws2_c00208{word-spacing:2.816600pt;}
.ws3_c00208{word-spacing:10.555556pt;}
.ws5_c00208{word-spacing:10.777778pt;}
.ws6_c00208{word-spacing:14.666667pt;}
.ws7_c00208{word-spacing:18.554943pt;}
.ws4_c00208{word-spacing:22.074074pt;}
.ws9_c00208{word-spacing:52.808128pt;}
.wsa_c00208{word-spacing:80.333333pt;}
.wsc_c00208{word-spacing:130.626026pt;}
._0_c00208{width:28.666667pt;}
.fs0_c00208{font-size:48.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y2e_c00208{bottom:129.333333pt;}
.y2d_c00208{bottom:143.733333pt;}
.y2c_c00208{bottom:156.533333pt;}
.y2b_c00208{bottom:171.200000pt;}
.y2a_c00208{bottom:184.666667pt;}
.y29_c00208{bottom:198.666667pt;}
.y28_c00208{bottom:212.133333pt;}
.y27_c00208{bottom:240.000000pt;}
.y26_c00208{bottom:257.600000pt;}
.y25_c00208{bottom:275.200000pt;}
.y24_c00208{bottom:292.800000pt;}
.y23_c00208{bottom:310.400000pt;}
.y22_c00208{bottom:327.733333pt;}
.y21_c00208{bottom:345.333333pt;}
.y20_c00208{bottom:362.933333pt;}
.y1f_c00208{bottom:380.533333pt;}
.y1e_c00208{bottom:398.400000pt;}
.y1d_c00208{bottom:416.000000pt;}
.y1c_c00208{bottom:433.600000pt;}
.y1b_c00208{bottom:450.933333pt;}
.y1a_c00208{bottom:468.533333pt;}
.y19_c00208{bottom:485.866667pt;}
.y18_c00208{bottom:503.733333pt;}
.y17_c00208{bottom:521.333333pt;}
.y16_c00208{bottom:538.933333pt;}
.y15_c00208{bottom:556.533333pt;}
.y14_c00208{bottom:574.133333pt;}
.y13_c00208{bottom:591.733333pt;}
.y12_c00208{bottom:609.333333pt;}
.y11_c00208{bottom:627.200000pt;}
.y10_c00208{bottom:644.800000pt;}
.yf_c00208{bottom:662.400000pt;}
.ye_c00208{bottom:680.133333pt;}
.yd_c00208{bottom:697.733333pt;}
.yc_c00208{bottom:715.333333pt;}
.yb_c00208{bottom:733.200000pt;}
.ya_c00208{bottom:750.800000pt;}
.y9_c00208{bottom:768.400000pt;}
.y8_c00208{bottom:786.000000pt;}
.y7_c00208{bottom:803.600000pt;}
.y6_c00208{bottom:821.466667pt;}
.y5_c00208{bottom:838.800000pt;}
.y4_c00208{bottom:856.666667pt;}
.y3_c00208{bottom:874.533333pt;}
.y2_c00208{bottom:892.133333pt;}
.y1_c00208{bottom:925.466667pt;}
.h2_c00208{height:48.000000pt;}
.h0_c00208{height:1037.119955pt;}
.h1_c00208{height:1037.333333pt;}
.w0_c00208{width:816.640056pt;}
.w1_c00208{width:816.666667pt;}
.x0_c00208{left:0.000000pt;}
.x11_c00208{left:128.666667pt;}
.x1_c00208{left:130.266667pt;}
.x101_c00208{left:131.333333pt;}
.x6b_c00208{left:142.933333pt;}
.xf7_c00208{left:144.800000pt;}
.x12_c00208{left:146.000000pt;}
.x3b_c00208{left:147.066667pt;}
.x2e_c00208{left:148.933333pt;}
.x118_c00208{left:150.266667pt;}
.xca_c00208{left:152.266667pt;}
.xf8_c00208{left:155.333333pt;}
.x3_c00208{left:156.533333pt;}
.xc4_c00208{left:158.533333pt;}
.x13_c00208{left:160.400000pt;}
.x113_c00208{left:161.333333pt;}
.x6c_c00208{left:162.400000pt;}
.xb0_c00208{left:164.000000pt;}
.x97_c00208{left:170.400000pt;}
.x3c_c00208{left:173.333333pt;}
.x22_c00208{left:174.400000pt;}
.xa8_c00208{left:175.866667pt;}
.x119_c00208{left:177.200000pt;}
.x12d_c00208{left:179.600000pt;}
.x60_c00208{left:181.333333pt;}
.x102_c00208{left:182.266667pt;}
.xb1_c00208{left:183.466667pt;}
.xe1_c00208{left:184.800000pt;}
.x49_c00208{left:186.400000pt;}
.x6d_c00208{left:187.733333pt;}
.x8e_c00208{left:190.133333pt;}
.xec_c00208{left:191.200000pt;}
.x12e_c00208{left:192.400000pt;}
.xe5_c00208{left:193.333333pt;}
.x129_c00208{left:196.400000pt;}
.x9f_c00208{left:197.733333pt;}
.x10f_c00208{left:198.800000pt;}
.x86_c00208{left:199.866667pt;}
.xdb_c00208{left:202.666667pt;}
.x14_c00208{left:205.200000pt;}
.xe2_c00208{left:206.533333pt;}
.x23_c00208{left:208.933333pt;}
.x4_c00208{left:210.266667pt;}
.x12f_c00208{left:211.866667pt;}
.x55_c00208{left:214.666667pt;}
.x61_c00208{left:216.800000pt;}
.x8f_c00208{left:218.266667pt;}
.xc5_c00208{left:219.333333pt;}
.xdc_c00208{left:220.266667pt;}
.x15_c00208{left:223.466667pt;}
.x2f_c00208{left:224.400000pt;}
.x110_c00208{left:226.666667pt;}
.x3d_c00208{left:228.666667pt;}
.xa0_c00208{left:229.733333pt;}
.x4a_c00208{left:233.066667pt;}
.x5_c00208{left:236.133333pt;}
.xbb_c00208{left:238.533333pt;}
.x62_c00208{left:241.066667pt;}
.x79_c00208{left:242.400000pt;}
.xdd_c00208{left:244.533333pt;}
.x4b_c00208{left:246.133333pt;}
.x16_c00208{left:249.733333pt;}
.xf9_c00208{left:251.733333pt;}
.x6e_c00208{left:253.600000pt;}
.x30_c00208{left:255.466667pt;}
.x111_c00208{left:256.400000pt;}
.x98_c00208{left:259.200000pt;}
.xc6_c00208{left:260.266667pt;}
.xbc_c00208{left:262.266667pt;}
.xcb_c00208{left:264.266667pt;}
.xed_c00208{left:267.466667pt;}
.xb2_c00208{left:268.666667pt;}
.x11a_c00208{left:270.666667pt;}
.x6_c00208{left:272.000000pt;}
.xc7_c00208{left:273.733333pt;}
.x108_c00208{left:275.200000pt;}
.xe6_c00208{left:276.400000pt;}
.x24_c00208{left:277.733333pt;}
.xf0_c00208{left:280.000000pt;}
.x6f_c00208{left:284.000000pt;}
.x63_c00208{left:285.200000pt;}
.x99_c00208{left:287.333333pt;}
.x11e_c00208{left:289.200000pt;}
.x4c_c00208{left:290.933333pt;}
.xa9_c00208{left:292.000000pt;}
.x122_c00208{left:292.933333pt;}
.x136_c00208{left:294.666667pt;}
.x87_c00208{left:295.866667pt;}
.xd4_c00208{left:296.933333pt;}
.x10a_c00208{left:297.866667pt;}
.xbd_c00208{left:298.800000pt;}
.xa1_c00208{left:299.866667pt;}
.x17_c00208{left:301.200000pt;}
.xcc_c00208{left:303.333333pt;}
.xb3_c00208{left:306.800000pt;}
.x25_c00208{left:307.866667pt;}
.x7a_c00208{left:309.866667pt;}
.xe7_c00208{left:311.333333pt;}
.x9a_c00208{left:312.266667pt;}
.xbe_c00208{left:314.800000pt;}
.xf1_c00208{left:315.866667pt;}
.xa2_c00208{left:318.400000pt;}
.xfa_c00208{left:319.333333pt;}
.x70_c00208{left:321.733333pt;}
.x31_c00208{left:322.666667pt;}
.x103_c00208{left:324.533333pt;}
.x90_c00208{left:326.000000pt;}
.x7b_c00208{left:327.200000pt;}
.x18_c00208{left:330.933333pt;}
.x140_c00208{left:331.866667pt;}
.x26_c00208{left:332.800000pt;}
.x3e_c00208{left:334.266667pt;}
.xbf_c00208{left:335.600000pt;}
.xd5_c00208{left:337.200000pt;}
.x71_c00208{left:338.400000pt;}
.xde_c00208{left:340.533333pt;}
.x7_c00208{left:342.400000pt;}
.x88_c00208{left:347.066667pt;}
.x4d_c00208{left:349.200000pt;}
.x32_c00208{left:350.133333pt;}
.x123_c00208{left:351.466667pt;}
.x104_c00208{left:352.400000pt;}
.x64_c00208{left:353.333333pt;}
.xb4_c00208{left:354.800000pt;}
.x130_c00208{left:356.933333pt;}
.x19_c00208{left:358.400000pt;}
.x3f_c00208{left:360.533333pt;}
.x137_c00208{left:361.600000pt;}
.xf2_c00208{left:363.600000pt;}
.xe8_c00208{left:364.800000pt;}
.x56_c00208{left:366.400000pt;}
.x141_c00208{left:368.000000pt;}
.x11f_c00208{left:369.866667pt;}
.xaa_c00208{left:371.733333pt;}
.x72_c00208{left:373.866667pt;}
.x4e_c00208{left:375.466667pt;}
.x9b_c00208{left:377.200000pt;}
.x27_c00208{left:378.933333pt;}
.xdf_c00208{left:380.533333pt;}
.x124_c00208{left:381.866667pt;}
.xcd_c00208{left:383.066667pt;}
.x13d_c00208{left:384.000000pt;}
.xb5_c00208{left:384.933333pt;}
.xab_c00208{left:387.066667pt;}
.x40_c00208{left:388.000000pt;}
.xc8_c00208{left:389.333333pt;}
.x2_c00208{left:392.000000pt;}
.x91_c00208{left:393.200000pt;}
.x9c_c00208{left:394.800000pt;}
.x7c_c00208{left:396.266667pt;}
.x57_c00208{left:398.666667pt;}
.xb6_c00208{left:401.600000pt;}
.x33_c00208{left:402.933333pt;}
.x12c_c00208{left:404.666667pt;}
.x41_c00208{left:405.600000pt;}
.x11b_c00208{left:406.666667pt;}
.xd6_c00208{left:407.866667pt;}
.x121_c00208{left:409.866667pt;}
.x1a_c00208{left:410.933333pt;}
.xfb_c00208{left:412.533333pt;}
.xf3_c00208{left:413.866667pt;}
.x134_c00208{left:415.066667pt;}
.x4f_c00208{left:416.133333pt;}
.x89_c00208{left:418.133333pt;}
.xac_c00208{left:420.400000pt;}
.x73_c00208{left:421.600000pt;}
.x10b_c00208{left:422.666667pt;}
.x8_c00208{left:424.666667pt;}
.x92_c00208{left:427.066667pt;}
.x7d_c00208{left:428.933333pt;}
.x1b_c00208{left:431.733333pt;}
.x58_c00208{left:433.600000pt;}
.x138_c00208{left:435.466667pt;}
.x28_c00208{left:436.533333pt;}
.xe3_c00208{left:438.133333pt;}
.x42_c00208{left:442.133333pt;}
.xd7_c00208{left:443.733333pt;}
.x9_c00208{left:445.466667pt;}
.x10c_c00208{left:446.933333pt;}
.x142_c00208{left:449.200000pt;}
.xee_c00208{left:451.333333pt;}
.x34_c00208{left:452.266667pt;}
.x74_c00208{left:454.533333pt;}
.x131_c00208{left:458.400000pt;}
.xfc_c00208{left:460.266667pt;}
.x7e_c00208{left:461.200000pt;}
.x9d_c00208{left:462.666667pt;}
.x13e_c00208{left:464.266667pt;}
.xb7_c00208{left:465.600000pt;}
.x50_c00208{left:466.666667pt;}
.x65_c00208{left:468.533333pt;}
.x1c_c00208{left:469.466667pt;}
.xa_c00208{left:471.333333pt;}
.xce_c00208{left:473.866667pt;}
.xef_c00208{left:475.600000pt;}
.x51_c00208{left:479.200000pt;}
.xa3_c00208{left:480.266667pt;}
.x114_c00208{left:481.466667pt;}
.x105_c00208{left:483.600000pt;}
.xc9_c00208{left:484.666667pt;}
.x29_c00208{left:486.133333pt;}
.x7f_c00208{left:487.733333pt;}
.x59_c00208{left:489.333333pt;}
.xb8_c00208{left:493.066667pt;}
.xc0_c00208{left:494.666667pt;}
.xad_c00208{left:496.266667pt;}
.x8a_c00208{left:497.466667pt;}
.xfd_c00208{left:499.066667pt;}
.x132_c00208{left:501.333333pt;}
.x43_c00208{left:503.333333pt;}
.x11c_c00208{left:504.933333pt;}
.x52_c00208{left:506.400000pt;}
.x5a_c00208{left:507.866667pt;}
.xf4_c00208{left:509.866667pt;}
.x35_c00208{left:511.466667pt;}
.x9e_c00208{left:513.200000pt;}
.x93_c00208{left:514.400000pt;}
.x8b_c00208{left:515.333333pt;}
.x1d_c00208{left:517.466667pt;}
.x115_c00208{left:519.200000pt;}
.x80_c00208{left:520.666667pt;}
.xb9_c00208{left:522.800000pt;}
.x125_c00208{left:526.800000pt;}
.x66_c00208{left:528.666667pt;}
.x36_c00208{left:529.733333pt;}
.xcf_c00208{left:531.466667pt;}
.x53_c00208{left:532.666667pt;}
.xd8_c00208{left:534.933333pt;}
.x5b_c00208{left:536.666667pt;}
.xfe_c00208{left:539.333333pt;}
.x120_c00208{left:544.000000pt;}
.xb_c00208{left:545.866667pt;}
.xa4_c00208{left:547.733333pt;}
.x13c_c00208{left:549.333333pt;}
.x10d_c00208{left:551.600000pt;}
.x44_c00208{left:552.666667pt;}
.x2a_c00208{left:554.000000pt;}
.x54_c00208{left:556.666667pt;}
.x5c_c00208{left:559.733333pt;}
.x12a_c00208{left:560.933333pt;}
.x67_c00208{left:562.266667pt;}
.xe0_c00208{left:563.466667pt;}
.xc_c00208{left:564.800000pt;}
.xa5_c00208{left:567.600000pt;}
.x75_c00208{left:569.466667pt;}
.x139_c00208{left:570.400000pt;}
.x2b_c00208{left:571.600000pt;}
.xc1_c00208{left:572.666667pt;}
.xd0_c00208{left:575.600000pt;}
.xf5_c00208{left:576.800000pt;}
.x81_c00208{left:578.000000pt;}
.x8c_c00208{left:579.066667pt;}
.xe4_c00208{left:581.733333pt;}
.xd9_c00208{left:584.266667pt;}
.x45_c00208{left:585.333333pt;}
.xe9_c00208{left:588.666667pt;}
.xd_c00208{left:590.133333pt;}
.x37_c00208{left:591.866667pt;}
.xba_c00208{left:593.466667pt;}
.x76_c00208{left:594.800000pt;}
.x82_c00208{left:596.266667pt;}
.x2c_c00208{left:597.466667pt;}
.x5d_c00208{left:599.733333pt;}
.x46_c00208{left:602.666667pt;}
.x13a_c00208{left:604.266667pt;}
.x10e_c00208{left:606.266667pt;}
.x77_c00208{left:609.466667pt;}
.x38_c00208{left:612.000000pt;}
.x68_c00208{left:613.733333pt;}
.xae_c00208{left:614.933333pt;}
.x1e_c00208{left:618.000000pt;}
.x8d_c00208{left:621.600000pt;}
.x126_c00208{left:622.800000pt;}
.x5e_c00208{left:624.000000pt;}
.xe_c00208{left:625.600000pt;}
.x83_c00208{left:628.533333pt;}
.xc2_c00208{left:630.266667pt;}
.x116_c00208{left:631.866667pt;}
.x2d_c00208{left:634.000000pt;}
.xea_c00208{left:637.600000pt;}
.x94_c00208{left:638.533333pt;}
.x127_c00208{left:640.666667pt;}
.xf_c00208{left:641.600000pt;}
.x39_c00208{left:644.266667pt;}
.x47_c00208{left:645.600000pt;}
.xd1_c00208{left:646.666667pt;}
.x1f_c00208{left:647.733333pt;}
.x69_c00208{left:649.200000pt;}
.x106_c00208{left:650.133333pt;}
.x13b_c00208{left:653.200000pt;}
.xc3_c00208{left:656.800000pt;}
.xda_c00208{left:658.533333pt;}
.xaf_c00208{left:660.666667pt;}
.x133_c00208{left:662.133333pt;}
.x12b_c00208{left:663.600000pt;}
.x5f_c00208{left:665.600000pt;}
.x10_c00208{left:667.866667pt;}
.x135_c00208{left:671.333333pt;}
.x20_c00208{left:672.666667pt;}
.xd2_c00208{left:674.533333pt;}
.x112_c00208{left:676.266667pt;}
.x78_c00208{left:677.333333pt;}
.x109_c00208{left:678.666667pt;}
.x84_c00208{left:680.000000pt;}
.xff_c00208{left:683.333333pt;}
.x128_c00208{left:684.533333pt;}
.x117_c00208{left:685.733333pt;}
.x95_c00208{left:687.200000pt;}
.x3a_c00208{left:689.066667pt;}
.xd3_c00208{left:692.133333pt;}
.xa6_c00208{left:694.266667pt;}
.xeb_c00208{left:695.200000pt;}
.x48_c00208{left:696.133333pt;}
.x13f_c00208{left:699.600000pt;}
.x6a_c00208{left:702.000000pt;}
.x85_c00208{left:703.333333pt;}
.x11d_c00208{left:704.933333pt;}
.x96_c00208{left:706.133333pt;}
.xf6_c00208{left:708.666667pt;}
.x107_c00208{left:709.600000pt;}
.x21_c00208{left:711.066667pt;}
.xa7_c00208{left:714.800000pt;}
.x100_c00208{left:720.133333pt;}
}





/* 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_c00209 {
    display:none;
  }
  .loading-indicator_c00209.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00209 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_c00209 { 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_c00209" -> "#page-container .classname_c00209")
 */
.pf_c00209 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00209 { /* 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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00209 { /* 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_c00209 { /* 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_c00209 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00209 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00209 {overflow:visible;}
  }
}
.c_c00209 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00209 { /* 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_c00209:after { /* webkit #35443 */
  content: '';
}
.t_c00209:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00209 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 */
}
.__c00209 { /* 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_c00209 { /* info for Javascript */
  display:none;
}
.l_c00209 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00209 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00209 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00209: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_c00209 {
    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_c00209.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00209.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_c00209 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00209{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00209;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.000000;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;}
.mbc_c00209{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m20_c00209{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m28_c00209{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mca_c00209{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m60_c00209{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00209{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00209{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00209{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m95_c00209{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m21_c00209{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m98_c00209{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m35_c00209{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m26_c00209{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.md4_c00209{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00209{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m23_c00209{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00209{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m51_c00209{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00209{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00209{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m17_c00209{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m41_c00209{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00209{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00209{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00209{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00209{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00209{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m27_c00209{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00209{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m37_c00209{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m70_c00209{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mae_c00209{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00209{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m97_c00209{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00209{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00209{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m94_c00209{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mab_c00209{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00209{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00209{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m74_c00209{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mce_c00209{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00209{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00209{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00209{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00209{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00209{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00209{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00209{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.md1_c00209{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00209{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m62_c00209{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m85_c00209{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00209{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m54_c00209{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m93_c00209{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m78_c00209{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m53_c00209{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00209{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00209{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00209{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00209{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00209{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9_c00209{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00209{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m76_c00209{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00209{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m15_c00209{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00209{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00209{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00209{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m87_c00209{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00209{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00209{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m50_c00209{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00209{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00209{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00209{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma_c00209{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00209{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m61_c00209{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00209{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m13_c00209{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00209{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00209{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m16_c00209{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00209{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m42_c00209{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m11_c00209{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m49_c00209{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m83_c00209{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00209{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m65_c00209{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00209{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00209{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14_c00209{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00209{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.maf_c00209{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m58_c00209{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m77_c00209{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m91_c00209{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m82_c00209{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00209{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m69_c00209{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m36_c00209{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00209{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m25_c00209{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m22_c00209{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m18_c00209{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00209{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00209{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc_c00209{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00209{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00209{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m52_c00209{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m96_c00209{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00209{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00209{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m33_c00209{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m84_c00209{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00209{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md_c00209{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.maa_c00209{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00209{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m71_c00209{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00209{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00209{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m81_c00209{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00209{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me_c00209{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00209{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00209{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m66_c00209{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00209{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m56_c00209{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00209{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m44_c00209{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00209{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00209{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00209{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m99_c00209{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m29_c00209{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m46_c00209{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00209{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m34_c00209{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00209{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00209{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m90_c00209{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb_c00209{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m89_c00209{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m39_c00209{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m59_c00209{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mad_c00209{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m64_c00209{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00209{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00209{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00209{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00209{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19_c00209{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m40_c00209{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00209{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m31_c00209{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00209{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10_c00209{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00209{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00209{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m68_c00209{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);}
.m88_c00209{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m47_c00209{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00209{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00209{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00209{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00209{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00209{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00209{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m86_c00209{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m75_c00209{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m45_c00209{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00209{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mac_c00209{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m38_c00209{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00209{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00209{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00209{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00209{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mba_c00209{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.md5_c00209{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00209{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00209{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00209{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m80_c00209{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00209{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7_c00209{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m63_c00209{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md0_c00209{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m92_c00209{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00209{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.md3_c00209{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m30_c00209{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00209{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00209{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00209{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m8_c00209{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00209{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m4_c00209{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m79_c00209{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2_c00209{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m6_c00209{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m57_c00209{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m72_c00209{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00209{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5_c00209{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.mf_c00209{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.md2_c00209{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{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__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00209{word-spacing:-7.500000px;}
.ws9_c00209{word-spacing:-7.045016px;}
.ws5_c00209{word-spacing:-6.160714px;}
.wsd_c00209{word-spacing:-2.542926px;}
.wsb_c00209{word-spacing:-0.779927px;}
.wsf_c00209{word-spacing:0.000000px;}
.ws4_c00209{word-spacing:0.535714px;}
.wsa_c00209{word-spacing:1.084643px;}
.ws7_c00209{word-spacing:2.878788px;}
.ws2_c00209{word-spacing:6.136364px;}
.wse_c00209{word-spacing:6.351320px;}
.ws8_c00209{word-spacing:6.805556px;}
.ws0_c00209{word-spacing:7.432432px;}
.ws3_c00209{word-spacing:7.763158px;}
.wsc_c00209{word-spacing:13.688159px;}
.ws1_c00209{word-spacing:36.885246px;}
.fc0_c00209{color:transparent;}
.fs0_c00209{font-size:54.000000px;}
.fs1_c00209{font-size:60.000000px;}
.y0_c00209{bottom:0.000000px;}
.y2f_c00209{bottom:159.900000px;}
.y2e_c00209{bottom:175.350000px;}
.y2d_c00209{bottom:190.800000px;}
.y2c_c00209{bottom:206.700000px;}
.y2b_c00209{bottom:222.450000px;}
.y2a_c00209{bottom:237.900000px;}
.y29_c00209{bottom:253.050000px;}
.y28_c00209{bottom:268.950000px;}
.y27_c00209{bottom:284.400000px;}
.y26_c00209{bottom:300.300000px;}
.y25_c00209{bottom:315.750000px;}
.y24_c00209{bottom:331.200000px;}
.y23_c00209{bottom:362.550000px;}
.y22_c00209{bottom:382.350000px;}
.y21_c00209{bottom:401.850000px;}
.y20_c00209{bottom:421.950000px;}
.y1f_c00209{bottom:441.750000px;}
.y1e_c00209{bottom:461.550000px;}
.y1d_c00209{bottom:480.750000px;}
.y1c_c00209{bottom:501.600000px;}
.y1b_c00209{bottom:521.400000px;}
.y1a_c00209{bottom:541.500000px;}
.y19_c00209{bottom:561.300000px;}
.y18_c00209{bottom:581.100000px;}
.y17_c00209{bottom:600.900000px;}
.y16_c00209{bottom:620.400000px;}
.y15_c00209{bottom:640.500000px;}
.y14_c00209{bottom:660.300000px;}
.y13_c00209{bottom:680.100000px;}
.y12_c00209{bottom:700.200000px;}
.y11_c00209{bottom:720.000000px;}
.y10_c00209{bottom:739.800000px;}
.yf_c00209{bottom:759.900000px;}
.ye_c00209{bottom:779.700000px;}
.yd_c00209{bottom:799.200000px;}
.yc_c00209{bottom:819.000000px;}
.yb_c00209{bottom:838.950000px;}
.ya_c00209{bottom:858.750000px;}
.y9_c00209{bottom:878.850000px;}
.y8_c00209{bottom:898.650000px;}
.y7_c00209{bottom:918.450000px;}
.y6_c00209{bottom:938.550000px;}
.y5_c00209{bottom:958.350000px;}
.y4_c00209{bottom:978.150000px;}
.y3_c00209{bottom:997.950000px;}
.y2_c00209{bottom:1018.050000px;}
.y1_c00209{bottom:1055.550000px;}
.h2_c00209{height:54.000000px;}
.h3_c00209{height:60.000000px;}
.h0_c00209{height:1166.759949px;}
.h1_c00209{height:1167.000000px;}
.w0_c00209{width:918.720063px;}
.w1_c00209{width:918.750000px;}
.x0_c00209{left:0.000000px;}
.x149_c00209{left:115.950000px;}
.x102_c00209{left:117.000000px;}
.xd5_c00209{left:118.200000px;}
.xbb_c00209{left:119.250000px;}
.xa_c00209{left:120.300000px;}
.x6b_c00209{left:121.500000px;}
.x155_c00209{left:125.250000px;}
.x133_c00209{left:131.850000px;}
.xbc_c00209{left:134.700000px;}
.x12c_c00209{left:136.500000px;}
.x1a_c00209{left:140.850000px;}
.x109_c00209{left:145.200000px;}
.x79_c00209{left:146.850000px;}
.x110_c00209{left:148.350000px;}
.x48_c00209{left:150.300000px;}
.xc2_c00209{left:152.550000px;}
.x128_c00209{left:153.600000px;}
.xf1_c00209{left:155.400000px;}
.x6c_c00209{left:156.450000px;}
.xdd_c00209{left:158.100000px;}
.x84_c00209{left:159.300000px;}
.x115_c00209{left:160.500000px;}
.x1b_c00209{left:161.700000px;}
.x13f_c00209{left:163.050000px;}
.x2a_c00209{left:164.250000px;}
.xe4_c00209{left:166.050000px;}
.x158_c00209{left:167.400000px;}
.x121_c00209{left:169.050000px;}
.xb_c00209{left:171.000000px;}
.x54_c00209{left:172.050000px;}
.xab_c00209{left:174.000000px;}
.xf9_c00209{left:175.950000px;}
.x3a_c00209{left:177.000000px;}
.xe3_c00209{left:179.250000px;}
.x5d_c00209{left:180.300000px;}
.x6d_c00209{left:181.350000px;}
.xc9_c00209{left:184.050000px;}
.x1c_c00209{left:187.650000px;}
.x2b_c00209{left:189.450000px;}
.xc_c00209{left:192.300000px;}
.x85_c00209{left:193.800000px;}
.x103_c00209{left:194.850000px;}
.x3b_c00209{left:197.550000px;}
.x91_c00209{left:199.800000px;}
.x12d_c00209{left:201.000000px;}
.x49_c00209{left:202.050000px;}
.x11a_c00209{left:203.700000px;}
.x55_c00209{left:205.200000px;}
.xfa_c00209{left:207.600000px;}
.x14e_c00209{left:208.800000px;}
.x7a_c00209{left:209.850000px;}
.xac_c00209{left:212.850000px;}
.x86_c00209{left:213.900000px;}
.x104_c00209{left:214.950000px;}
.xca_c00209{left:217.200000px;}
.x11b_c00209{left:218.400000px;}
.xd_c00209{left:221.400000px;}
.x139_c00209{left:223.500000px;}
.x3c_c00209{left:226.050000px;}
.x14f_c00209{left:227.100000px;}
.xa1_c00209{left:229.200000px;}
.x2c_c00209{left:232.350000px;}
.x142_c00209{left:233.400000px;}
.xde_c00209{left:235.200000px;}
.x122_c00209{left:237.150000px;}
.xe5_c00209{left:238.800000px;}
.x92_c00209{left:241.200000px;}
.x6e_c00209{left:242.550000px;}
.x7b_c00209{left:244.050000px;}
.xf2_c00209{left:245.400000px;}
.x13a_c00209{left:246.900000px;}
.x2d_c00209{left:249.600000px;}
.x143_c00209{left:250.650000px;}
.xfb_c00209{left:251.850000px;}
.x134_c00209{left:252.900000px;}
.x87_c00209{left:255.600000px;}
.x105_c00209{left:260.700000px;}
.x1d_c00209{left:261.750000px;}
.x4a_c00209{left:262.950000px;}
.xad_c00209{left:264.600000px;}
.x98_c00209{left:266.700000px;}
.xdf_c00209{left:267.900000px;}
.x10a_c00209{left:269.400000px;}
.x6f_c00209{left:270.600000px;}
.x56_c00209{left:271.800000px;}
.xa2_c00209{left:273.450000px;}
.xe_c00209{left:275.850000px;}
.x88_c00209{left:278.700000px;}
.x5e_c00209{left:281.550000px;}
.xc3_c00209{left:285.000000px;}
.x1_c00209{left:286.950000px;}
.xae_c00209{left:289.500000px;}
.x3d_c00209{left:290.550000px;}
.x123_c00209{left:292.200000px;}
.xd6_c00209{left:293.400000px;}
.xcb_c00209{left:294.900000px;}
.x99_c00209{left:296.250000px;}
.x2e_c00209{left:298.200000px;}
.x7c_c00209{left:300.600000px;}
.x89_c00209{left:302.100000px;}
.xf_c00209{left:304.350000px;}
.xe6_c00209{left:305.400000px;}
.x124_c00209{left:306.600000px;}
.x70_c00209{left:308.400000px;}
.xc4_c00209{left:310.500000px;}
.x4b_c00209{left:311.850000px;}
.x116_c00209{left:313.800000px;}
.x5f_c00209{left:315.450000px;}
.x144_c00209{left:316.950000px;}
.x3e_c00209{left:318.300000px;}
.x13b_c00209{left:319.650000px;}
.x1e_c00209{left:321.150000px;}
.xe7_c00209{left:322.650000px;}
.x2f_c00209{left:324.150000px;}
.xcc_c00209{left:328.050000px;}
.x4c_c00209{left:329.850000px;}
.x106_c00209{left:332.400000px;}
.x2_c00209{left:333.750000px;}
.x60_c00209{left:336.000000px;}
.x30_c00209{left:338.250000px;}
.x145_c00209{left:339.300000px;}
.x150_c00209{left:341.550000px;}
.x12e_c00209{left:342.750000px;}
.x11c_c00209{left:344.400000px;}
.xaf_c00209{left:346.350000px;}
.x57_c00209{left:348.900000px;}
.x93_c00209{left:350.700000px;}
.x8a_c00209{left:353.250000px;}
.xbd_c00209{left:355.650000px;}
.x3_c00209{left:356.850000px;}
.x9a_c00209{left:358.500000px;}
.xee_c00209{left:360.000000px;}
.x3f_c00209{left:361.500000px;}
.xfc_c00209{left:363.600000px;}
.x11d_c00209{left:364.950000px;}
.x71_c00209{left:366.000000px;}
.x151_c00209{left:367.500000px;}
.x15d_c00209{left:368.850000px;}
.x12f_c00209{left:371.850000px;}
.x135_c00209{left:374.250000px;}
.xa3_c00209{left:375.300000px;}
.x31_c00209{left:377.850000px;}
.x8b_c00209{left:379.950000px;}
.x1f_c00209{left:381.600000px;}
.xbe_c00209{left:383.700000px;}
.x7d_c00209{left:385.800000px;}
.xd7_c00209{left:387.300000px;}
.x130_c00209{left:388.800000px;}
.x4_c00209{left:390.000000px;}
.x40_c00209{left:391.800000px;}
.xfd_c00209{left:393.900000px;}
.x13c_c00209{left:396.000000px;}
.xb0_c00209{left:400.050000px;}
.xa4_c00209{left:403.050000px;}
.x129_c00209{left:404.250000px;}
.x20_c00209{left:406.500000px;}
.xcd_c00209{left:408.750000px;}
.x61_c00209{left:410.850000px;}
.x8c_c00209{left:413.850000px;}
.x7e_c00209{left:414.900000px;}
.x10_c00209{left:418.050000px;}
.x41_c00209{left:422.400000px;}
.x10b_c00209{left:423.750000px;}
.x58_c00209{left:425.850000px;}
.x32_c00209{left:427.950000px;}
.x152_c00209{left:429.000000px;}
.x111_c00209{left:430.350000px;}
.x72_c00209{left:432.600000px;}
.xf3_c00209{left:433.650000px;}
.xc5_c00209{left:436.350000px;}
.x62_c00209{left:437.550000px;}
.x4d_c00209{left:438.600000px;}
.x7f_c00209{left:441.900000px;}
.xe8_c00209{left:442.950000px;}
.xa5_c00209{left:444.750000px;}
.x10c_c00209{left:446.850000px;}
.x11_c00209{left:448.650000px;}
.xfe_c00209{left:451.500000px;}
.x9b_c00209{left:452.550000px;}
.x5_c00209{left:453.750000px;}
.x33_c00209{left:456.000000px;}
.x159_c00209{left:457.200000px;}
.x131_c00209{left:458.250000px;}
.x42_c00209{left:459.450000px;}
.x73_c00209{left:463.200000px;}
.xb1_c00209{left:465.900000px;}
.xf4_c00209{left:468.150000px;}
.x8d_c00209{left:471.450000px;}
.x4e_c00209{left:473.550000px;}
.x153_c00209{left:475.200000px;}
.x59_c00209{left:476.250000px;}
.x136_c00209{left:477.900000px;}
.x21_c00209{left:479.700000px;}
.x14b_c00209{left:481.200000px;}
.xa6_c00209{left:483.300000px;}
.x6_c00209{left:485.400000px;}
.x12_c00209{left:486.750000px;}
.xe9_c00209{left:488.700000px;}
.x63_c00209{left:491.550000px;}
.x9c_c00209{left:493.200000px;}
.x117_c00209{left:495.300000px;}
.x80_c00209{left:498.750000px;}
.x146_c00209{left:499.800000px;}
.x94_c00209{left:500.850000px;}
.xb8_c00209{left:502.500000px;}
.x140_c00209{left:503.550000px;}
.x107_c00209{left:506.250000px;}
.x74_c00209{left:511.500000px;}
.x156_c00209{left:513.300000px;}
.xea_c00209{left:515.700000px;}
.x22_c00209{left:516.750000px;}
.xa7_c00209{left:517.800000px;}
.x7_c00209{left:519.600000px;}
.x13d_c00209{left:520.950000px;}
.x13_c00209{left:522.000000px;}
.x64_c00209{left:523.650000px;}
.xce_c00209{left:525.750000px;}
.x81_c00209{left:527.550000px;}
.x15a_c00209{left:528.900000px;}
.x9d_c00209{left:529.950000px;}
.x147_c00209{left:531.150000px;}
.x10d_c00209{left:532.650000px;}
.xd8_c00209{left:535.950000px;}
.x95_c00209{left:537.600000px;}
.xf5_c00209{left:539.400000px;}
.xef_c00209{left:541.350000px;}
.x14c_c00209{left:542.400000px;}
.x65_c00209{left:545.250000px;}
.xb2_c00209{left:547.650000px;}
.x8e_c00209{left:549.150000px;}
.x15e_c00209{left:550.800000px;}
.x4f_c00209{left:552.000000px;}
.x141_c00209{left:553.350000px;}
.x43_c00209{left:554.550000px;}
.x23_c00209{left:556.050000px;}
.x34_c00209{left:558.600000px;}
.x108_c00209{left:559.950000px;}
.x8_c00209{left:562.500000px;}
.x24_c00209{left:564.750000px;}
.x148_c00209{left:566.400000px;}
.x118_c00209{left:567.600000px;}
.x66_c00209{left:569.700000px;}
.xa8_c00209{left:570.750000px;}
.x14a_c00209{left:572.100000px;}
.x75_c00209{left:573.150000px;}
.x50_c00209{left:575.400000px;}
.x8f_c00209{left:577.200000px;}
.xb3_c00209{left:580.050000px;}
.xbf_c00209{left:581.400000px;}
.xd9_c00209{left:585.000000px;}
.x96_c00209{left:586.500000px;}
.x14_c00209{left:587.550000px;}
.x15b_c00209{left:591.450000px;}
.xcf_c00209{left:593.100000px;}
.xb9_c00209{left:594.750000px;}
.x119_c00209{left:596.700000px;}
.x137_c00209{left:597.900000px;}
.x25_c00209{left:599.700000px;}
.x44_c00209{left:601.050000px;}
.xc6_c00209{left:603.000000px;}
.x35_c00209{left:604.650000px;}
.x15_c00209{left:608.100000px;}
.xd0_c00209{left:610.350000px;}
.x154_c00209{left:613.350000px;}
.x138_c00209{left:614.850000px;}
.x51_c00209{left:616.050000px;}
.xeb_c00209{left:617.250000px;}
.x9e_c00209{left:618.600000px;}
.x97_c00209{left:619.950000px;}
.xc0_c00209{left:621.300000px;}
.x36_c00209{left:622.650000px;}
.xe0_c00209{left:624.600000px;}
.x11e_c00209{left:625.950000px;}
.x10e_c00209{left:627.300000px;}
.x125_c00209{left:630.900000px;}
.x67_c00209{left:632.700000px;}
.x16_c00209{left:636.900000px;}
.xd1_c00209{left:638.400000px;}
.x26_c00209{left:640.050000px;}
.x5a_c00209{left:642.900000px;}
.xda_c00209{left:644.100000px;}
.x112_c00209{left:645.450000px;}
.xf0_c00209{left:647.100000px;}
.x157_c00209{left:648.150000px;}
.x15f_c00209{left:649.500000px;}
.x68_c00209{left:652.500000px;}
.x45_c00209{left:653.550000px;}
.x11f_c00209{left:654.750000px;}
.x76_c00209{left:655.950000px;}
.x12a_c00209{left:657.150000px;}
.xc7_c00209{left:658.200000px;}
.xf6_c00209{left:659.550000px;}
.x27_c00209{left:660.600000px;}
.xb4_c00209{left:662.400000px;}
.x90_c00209{left:664.650000px;}
.x13e_c00209{left:665.700000px;}
.x12b_c00209{left:668.250000px;}
.x52_c00209{left:671.550000px;}
.x82_c00209{left:674.400000px;}
.x17_c00209{left:676.500000px;}
.xba_c00209{left:679.050000px;}
.xd2_c00209{left:680.100000px;}
.x69_c00209{left:682.050000px;}
.x46_c00209{left:683.100000px;}
.xf7_c00209{left:685.050000px;}
.xff_c00209{left:686.100000px;}
.x28_c00209{left:689.100000px;}
.xdb_c00209{left:690.900000px;}
.xe1_c00209{left:694.800000px;}
.x18_c00209{left:696.300000px;}
.xb5_c00209{left:700.500000px;}
.x126_c00209{left:702.450000px;}
.xd3_c00209{left:705.000000px;}
.x113_c00209{left:706.200000px;}
.xa9_c00209{left:707.550000px;}
.x9f_c00209{left:709.350000px;}
.x10f_c00209{left:710.400000px;}
.x83_c00209{left:711.450000px;}
.xf8_c00209{left:713.100000px;}
.xc8_c00209{left:715.050000px;}
.x100_c00209{left:716.700000px;}
.x6a_c00209{left:717.750000px;}
.xdc_c00209{left:719.400000px;}
.x53_c00209{left:720.900000px;}
.x120_c00209{left:724.200000px;}
.x37_c00209{left:727.050000px;}
.x127_c00209{left:729.150000px;}
.xb6_c00209{left:730.800000px;}
.x160_c00209{left:732.600000px;}
.x5b_c00209{left:734.250000px;}
.x77_c00209{left:737.250000px;}
.x15c_c00209{left:739.350000px;}
.x47_c00209{left:742.200000px;}
.x38_c00209{left:743.250000px;}
.x101_c00209{left:744.450000px;}
.x14d_c00209{left:745.650000px;}
.x19_c00209{left:747.000000px;}
.xa0_c00209{left:748.650000px;}
.x29_c00209{left:750.000000px;}
.xb7_c00209{left:752.100000px;}
.xd4_c00209{left:753.900000px;}
.xec_c00209{left:755.100000px;}
.x39_c00209{left:756.900000px;}
.x9_c00209{left:759.000000px;}
.xc1_c00209{left:760.950000px;}
.x114_c00209{left:762.000000px;}
.xaa_c00209{left:763.800000px;}
.x5c_c00209{left:765.600000px;}
.x132_c00209{left:766.800000px;}
.xe2_c00209{left:767.850000px;}
.x78_c00209{left:770.700000px;}
.xed_c00209{left:776.700000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws6_c00209{word-spacing:-6.666667pt;}
.ws9_c00209{word-spacing:-6.262237pt;}
.ws5_c00209{word-spacing:-5.476190pt;}
.wsd_c00209{word-spacing:-2.260379pt;}
.wsb_c00209{word-spacing:-0.693269pt;}
.wsf_c00209{word-spacing:0.000000pt;}
.ws4_c00209{word-spacing:0.476190pt;}
.wsa_c00209{word-spacing:0.964127pt;}
.ws7_c00209{word-spacing:2.558923pt;}
.ws2_c00209{word-spacing:5.454545pt;}
.wse_c00209{word-spacing:5.645618pt;}
.ws8_c00209{word-spacing:6.049383pt;}
.ws0_c00209{word-spacing:6.606607pt;}
.ws3_c00209{word-spacing:6.900585pt;}
.wsc_c00209{word-spacing:12.167253pt;}
.ws1_c00209{word-spacing:32.786885pt;}
.fs0_c00209{font-size:48.000000pt;}
.fs1_c00209{font-size:53.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y2f_c00209{bottom:142.133333pt;}
.y2e_c00209{bottom:155.866667pt;}
.y2d_c00209{bottom:169.600000pt;}
.y2c_c00209{bottom:183.733333pt;}
.y2b_c00209{bottom:197.733333pt;}
.y2a_c00209{bottom:211.466667pt;}
.y29_c00209{bottom:224.933333pt;}
.y28_c00209{bottom:239.066667pt;}
.y27_c00209{bottom:252.800000pt;}
.y26_c00209{bottom:266.933333pt;}
.y25_c00209{bottom:280.666667pt;}
.y24_c00209{bottom:294.400000pt;}
.y23_c00209{bottom:322.266667pt;}
.y22_c00209{bottom:339.866667pt;}
.y21_c00209{bottom:357.200000pt;}
.y20_c00209{bottom:375.066667pt;}
.y1f_c00209{bottom:392.666667pt;}
.y1e_c00209{bottom:410.266667pt;}
.y1d_c00209{bottom:427.333333pt;}
.y1c_c00209{bottom:445.866667pt;}
.y1b_c00209{bottom:463.466667pt;}
.y1a_c00209{bottom:481.333333pt;}
.y19_c00209{bottom:498.933333pt;}
.y18_c00209{bottom:516.533333pt;}
.y17_c00209{bottom:534.133333pt;}
.y16_c00209{bottom:551.466667pt;}
.y15_c00209{bottom:569.333333pt;}
.y14_c00209{bottom:586.933333pt;}
.y13_c00209{bottom:604.533333pt;}
.y12_c00209{bottom:622.400000pt;}
.y11_c00209{bottom:640.000000pt;}
.y10_c00209{bottom:657.600000pt;}
.yf_c00209{bottom:675.466667pt;}
.ye_c00209{bottom:693.066667pt;}
.yd_c00209{bottom:710.400000pt;}
.yc_c00209{bottom:728.000000pt;}
.yb_c00209{bottom:745.733333pt;}
.ya_c00209{bottom:763.333333pt;}
.y9_c00209{bottom:781.200000pt;}
.y8_c00209{bottom:798.800000pt;}
.y7_c00209{bottom:816.400000pt;}
.y6_c00209{bottom:834.266667pt;}
.y5_c00209{bottom:851.866667pt;}
.y4_c00209{bottom:869.466667pt;}
.y3_c00209{bottom:887.066667pt;}
.y2_c00209{bottom:904.933333pt;}
.y1_c00209{bottom:938.266667pt;}
.h2_c00209{height:48.000000pt;}
.h3_c00209{height:53.333333pt;}
.h0_c00209{height:1037.119955pt;}
.h1_c00209{height:1037.333333pt;}
.w0_c00209{width:816.640056pt;}
.w1_c00209{width:816.666667pt;}
.x0_c00209{left:0.000000pt;}
.x149_c00209{left:103.066667pt;}
.x102_c00209{left:104.000000pt;}
.xd5_c00209{left:105.066667pt;}
.xbb_c00209{left:106.000000pt;}
.xa_c00209{left:106.933333pt;}
.x6b_c00209{left:108.000000pt;}
.x155_c00209{left:111.333333pt;}
.x133_c00209{left:117.200000pt;}
.xbc_c00209{left:119.733333pt;}
.x12c_c00209{left:121.333333pt;}
.x1a_c00209{left:125.200000pt;}
.x109_c00209{left:129.066667pt;}
.x79_c00209{left:130.533333pt;}
.x110_c00209{left:131.866667pt;}
.x48_c00209{left:133.600000pt;}
.xc2_c00209{left:135.600000pt;}
.x128_c00209{left:136.533333pt;}
.xf1_c00209{left:138.133333pt;}
.x6c_c00209{left:139.066667pt;}
.xdd_c00209{left:140.533333pt;}
.x84_c00209{left:141.600000pt;}
.x115_c00209{left:142.666667pt;}
.x1b_c00209{left:143.733333pt;}
.x13f_c00209{left:144.933333pt;}
.x2a_c00209{left:146.000000pt;}
.xe4_c00209{left:147.600000pt;}
.x158_c00209{left:148.800000pt;}
.x121_c00209{left:150.266667pt;}
.xb_c00209{left:152.000000pt;}
.x54_c00209{left:152.933333pt;}
.xab_c00209{left:154.666667pt;}
.xf9_c00209{left:156.400000pt;}
.x3a_c00209{left:157.333333pt;}
.xe3_c00209{left:159.333333pt;}
.x5d_c00209{left:160.266667pt;}
.x6d_c00209{left:161.200000pt;}
.xc9_c00209{left:163.600000pt;}
.x1c_c00209{left:166.800000pt;}
.x2b_c00209{left:168.400000pt;}
.xc_c00209{left:170.933333pt;}
.x85_c00209{left:172.266667pt;}
.x103_c00209{left:173.200000pt;}
.x3b_c00209{left:175.600000pt;}
.x91_c00209{left:177.600000pt;}
.x12d_c00209{left:178.666667pt;}
.x49_c00209{left:179.600000pt;}
.x11a_c00209{left:181.066667pt;}
.x55_c00209{left:182.400000pt;}
.xfa_c00209{left:184.533333pt;}
.x14e_c00209{left:185.600000pt;}
.x7a_c00209{left:186.533333pt;}
.xac_c00209{left:189.200000pt;}
.x86_c00209{left:190.133333pt;}
.x104_c00209{left:191.066667pt;}
.xca_c00209{left:193.066667pt;}
.x11b_c00209{left:194.133333pt;}
.xd_c00209{left:196.800000pt;}
.x139_c00209{left:198.666667pt;}
.x3c_c00209{left:200.933333pt;}
.x14f_c00209{left:201.866667pt;}
.xa1_c00209{left:203.733333pt;}
.x2c_c00209{left:206.533333pt;}
.x142_c00209{left:207.466667pt;}
.xde_c00209{left:209.066667pt;}
.x122_c00209{left:210.800000pt;}
.xe5_c00209{left:212.266667pt;}
.x92_c00209{left:214.400000pt;}
.x6e_c00209{left:215.600000pt;}
.x7b_c00209{left:216.933333pt;}
.xf2_c00209{left:218.133333pt;}
.x13a_c00209{left:219.466667pt;}
.x2d_c00209{left:221.866667pt;}
.x143_c00209{left:222.800000pt;}
.xfb_c00209{left:223.866667pt;}
.x134_c00209{left:224.800000pt;}
.x87_c00209{left:227.200000pt;}
.x105_c00209{left:231.733333pt;}
.x1d_c00209{left:232.666667pt;}
.x4a_c00209{left:233.733333pt;}
.xad_c00209{left:235.200000pt;}
.x98_c00209{left:237.066667pt;}
.xdf_c00209{left:238.133333pt;}
.x10a_c00209{left:239.466667pt;}
.x6f_c00209{left:240.533333pt;}
.x56_c00209{left:241.600000pt;}
.xa2_c00209{left:243.066667pt;}
.xe_c00209{left:245.200000pt;}
.x88_c00209{left:247.733333pt;}
.x5e_c00209{left:250.266667pt;}
.xc3_c00209{left:253.333333pt;}
.x1_c00209{left:255.066667pt;}
.xae_c00209{left:257.333333pt;}
.x3d_c00209{left:258.266667pt;}
.x123_c00209{left:259.733333pt;}
.xd6_c00209{left:260.800000pt;}
.xcb_c00209{left:262.133333pt;}
.x99_c00209{left:263.333333pt;}
.x2e_c00209{left:265.066667pt;}
.x7c_c00209{left:267.200000pt;}
.x89_c00209{left:268.533333pt;}
.xf_c00209{left:270.533333pt;}
.xe6_c00209{left:271.466667pt;}
.x124_c00209{left:272.533333pt;}
.x70_c00209{left:274.133333pt;}
.xc4_c00209{left:276.000000pt;}
.x4b_c00209{left:277.200000pt;}
.x116_c00209{left:278.933333pt;}
.x5f_c00209{left:280.400000pt;}
.x144_c00209{left:281.733333pt;}
.x3e_c00209{left:282.933333pt;}
.x13b_c00209{left:284.133333pt;}
.x1e_c00209{left:285.466667pt;}
.xe7_c00209{left:286.800000pt;}
.x2f_c00209{left:288.133333pt;}
.xcc_c00209{left:291.600000pt;}
.x4c_c00209{left:293.200000pt;}
.x106_c00209{left:295.466667pt;}
.x2_c00209{left:296.666667pt;}
.x60_c00209{left:298.666667pt;}
.x30_c00209{left:300.666667pt;}
.x145_c00209{left:301.600000pt;}
.x150_c00209{left:303.600000pt;}
.x12e_c00209{left:304.666667pt;}
.x11c_c00209{left:306.133333pt;}
.xaf_c00209{left:307.866667pt;}
.x57_c00209{left:310.133333pt;}
.x93_c00209{left:311.733333pt;}
.x8a_c00209{left:314.000000pt;}
.xbd_c00209{left:316.133333pt;}
.x3_c00209{left:317.200000pt;}
.x9a_c00209{left:318.666667pt;}
.xee_c00209{left:320.000000pt;}
.x3f_c00209{left:321.333333pt;}
.xfc_c00209{left:323.200000pt;}
.x11d_c00209{left:324.400000pt;}
.x71_c00209{left:325.333333pt;}
.x151_c00209{left:326.666667pt;}
.x15d_c00209{left:327.866667pt;}
.x12f_c00209{left:330.533333pt;}
.x135_c00209{left:332.666667pt;}
.xa3_c00209{left:333.600000pt;}
.x31_c00209{left:335.866667pt;}
.x8b_c00209{left:337.733333pt;}
.x1f_c00209{left:339.200000pt;}
.xbe_c00209{left:341.066667pt;}
.x7d_c00209{left:342.933333pt;}
.xd7_c00209{left:344.266667pt;}
.x130_c00209{left:345.600000pt;}
.x4_c00209{left:346.666667pt;}
.x40_c00209{left:348.266667pt;}
.xfd_c00209{left:350.133333pt;}
.x13c_c00209{left:352.000000pt;}
.xb0_c00209{left:355.600000pt;}
.xa4_c00209{left:358.266667pt;}
.x129_c00209{left:359.333333pt;}
.x20_c00209{left:361.333333pt;}
.xcd_c00209{left:363.333333pt;}
.x61_c00209{left:365.200000pt;}
.x8c_c00209{left:367.866667pt;}
.x7e_c00209{left:368.800000pt;}
.x10_c00209{left:371.600000pt;}
.x41_c00209{left:375.466667pt;}
.x10b_c00209{left:376.666667pt;}
.x58_c00209{left:378.533333pt;}
.x32_c00209{left:380.400000pt;}
.x152_c00209{left:381.333333pt;}
.x111_c00209{left:382.533333pt;}
.x72_c00209{left:384.533333pt;}
.xf3_c00209{left:385.466667pt;}
.xc5_c00209{left:387.866667pt;}
.x62_c00209{left:388.933333pt;}
.x4d_c00209{left:389.866667pt;}
.x7f_c00209{left:392.800000pt;}
.xe8_c00209{left:393.733333pt;}
.xa5_c00209{left:395.333333pt;}
.x10c_c00209{left:397.200000pt;}
.x11_c00209{left:398.800000pt;}
.xfe_c00209{left:401.333333pt;}
.x9b_c00209{left:402.266667pt;}
.x5_c00209{left:403.333333pt;}
.x33_c00209{left:405.333333pt;}
.x159_c00209{left:406.400000pt;}
.x131_c00209{left:407.333333pt;}
.x42_c00209{left:408.400000pt;}
.x73_c00209{left:411.733333pt;}
.xb1_c00209{left:414.133333pt;}
.xf4_c00209{left:416.133333pt;}
.x8d_c00209{left:419.066667pt;}
.x4e_c00209{left:420.933333pt;}
.x153_c00209{left:422.400000pt;}
.x59_c00209{left:423.333333pt;}
.x136_c00209{left:424.800000pt;}
.x21_c00209{left:426.400000pt;}
.x14b_c00209{left:427.733333pt;}
.xa6_c00209{left:429.600000pt;}
.x6_c00209{left:431.466667pt;}
.x12_c00209{left:432.666667pt;}
.xe9_c00209{left:434.400000pt;}
.x63_c00209{left:436.933333pt;}
.x9c_c00209{left:438.400000pt;}
.x117_c00209{left:440.266667pt;}
.x80_c00209{left:443.333333pt;}
.x146_c00209{left:444.266667pt;}
.x94_c00209{left:445.200000pt;}
.xb8_c00209{left:446.666667pt;}
.x140_c00209{left:447.600000pt;}
.x107_c00209{left:450.000000pt;}
.x74_c00209{left:454.666667pt;}
.x156_c00209{left:456.266667pt;}
.xea_c00209{left:458.400000pt;}
.x22_c00209{left:459.333333pt;}
.xa7_c00209{left:460.266667pt;}
.x7_c00209{left:461.866667pt;}
.x13d_c00209{left:463.066667pt;}
.x13_c00209{left:464.000000pt;}
.x64_c00209{left:465.466667pt;}
.xce_c00209{left:467.333333pt;}
.x81_c00209{left:468.933333pt;}
.x15a_c00209{left:470.133333pt;}
.x9d_c00209{left:471.066667pt;}
.x147_c00209{left:472.133333pt;}
.x10d_c00209{left:473.466667pt;}
.xd8_c00209{left:476.400000pt;}
.x95_c00209{left:477.866667pt;}
.xf5_c00209{left:479.466667pt;}
.xef_c00209{left:481.200000pt;}
.x14c_c00209{left:482.133333pt;}
.x65_c00209{left:484.666667pt;}
.xb2_c00209{left:486.800000pt;}
.x8e_c00209{left:488.133333pt;}
.x15e_c00209{left:489.600000pt;}
.x4f_c00209{left:490.666667pt;}
.x141_c00209{left:491.866667pt;}
.x43_c00209{left:492.933333pt;}
.x23_c00209{left:494.266667pt;}
.x34_c00209{left:496.533333pt;}
.x108_c00209{left:497.733333pt;}
.x8_c00209{left:500.000000pt;}
.x24_c00209{left:502.000000pt;}
.x148_c00209{left:503.466667pt;}
.x118_c00209{left:504.533333pt;}
.x66_c00209{left:506.400000pt;}
.xa8_c00209{left:507.333333pt;}
.x14a_c00209{left:508.533333pt;}
.x75_c00209{left:509.466667pt;}
.x50_c00209{left:511.466667pt;}
.x8f_c00209{left:513.066667pt;}
.xb3_c00209{left:515.600000pt;}
.xbf_c00209{left:516.800000pt;}
.xd9_c00209{left:520.000000pt;}
.x96_c00209{left:521.333333pt;}
.x14_c00209{left:522.266667pt;}
.x15b_c00209{left:525.733333pt;}
.xcf_c00209{left:527.200000pt;}
.xb9_c00209{left:528.666667pt;}
.x119_c00209{left:530.400000pt;}
.x137_c00209{left:531.466667pt;}
.x25_c00209{left:533.066667pt;}
.x44_c00209{left:534.266667pt;}
.xc6_c00209{left:536.000000pt;}
.x35_c00209{left:537.466667pt;}
.x15_c00209{left:540.533333pt;}
.xd0_c00209{left:542.533333pt;}
.x154_c00209{left:545.200000pt;}
.x138_c00209{left:546.533333pt;}
.x51_c00209{left:547.600000pt;}
.xeb_c00209{left:548.666667pt;}
.x9e_c00209{left:549.866667pt;}
.x97_c00209{left:551.066667pt;}
.xc0_c00209{left:552.266667pt;}
.x36_c00209{left:553.466667pt;}
.xe0_c00209{left:555.200000pt;}
.x11e_c00209{left:556.400000pt;}
.x10e_c00209{left:557.600000pt;}
.x125_c00209{left:560.800000pt;}
.x67_c00209{left:562.400000pt;}
.x16_c00209{left:566.133333pt;}
.xd1_c00209{left:567.466667pt;}
.x26_c00209{left:568.933333pt;}
.x5a_c00209{left:571.466667pt;}
.xda_c00209{left:572.533333pt;}
.x112_c00209{left:573.733333pt;}
.xf0_c00209{left:575.200000pt;}
.x157_c00209{left:576.133333pt;}
.x15f_c00209{left:577.333333pt;}
.x68_c00209{left:580.000000pt;}
.x45_c00209{left:580.933333pt;}
.x11f_c00209{left:582.000000pt;}
.x76_c00209{left:583.066667pt;}
.x12a_c00209{left:584.133333pt;}
.xc7_c00209{left:585.066667pt;}
.xf6_c00209{left:586.266667pt;}
.x27_c00209{left:587.200000pt;}
.xb4_c00209{left:588.800000pt;}
.x90_c00209{left:590.800000pt;}
.x13e_c00209{left:591.733333pt;}
.x12b_c00209{left:594.000000pt;}
.x52_c00209{left:596.933333pt;}
.x82_c00209{left:599.466667pt;}
.x17_c00209{left:601.333333pt;}
.xba_c00209{left:603.600000pt;}
.xd2_c00209{left:604.533333pt;}
.x69_c00209{left:606.266667pt;}
.x46_c00209{left:607.200000pt;}
.xf7_c00209{left:608.933333pt;}
.xff_c00209{left:609.866667pt;}
.x28_c00209{left:612.533333pt;}
.xdb_c00209{left:614.133333pt;}
.xe1_c00209{left:617.600000pt;}
.x18_c00209{left:618.933333pt;}
.xb5_c00209{left:622.666667pt;}
.x126_c00209{left:624.400000pt;}
.xd3_c00209{left:626.666667pt;}
.x113_c00209{left:627.733333pt;}
.xa9_c00209{left:628.933333pt;}
.x9f_c00209{left:630.533333pt;}
.x10f_c00209{left:631.466667pt;}
.x83_c00209{left:632.400000pt;}
.xf8_c00209{left:633.866667pt;}
.xc8_c00209{left:635.600000pt;}
.x100_c00209{left:637.066667pt;}
.x6a_c00209{left:638.000000pt;}
.xdc_c00209{left:639.466667pt;}
.x53_c00209{left:640.800000pt;}
.x120_c00209{left:643.733333pt;}
.x37_c00209{left:646.266667pt;}
.x127_c00209{left:648.133333pt;}
.xb6_c00209{left:649.600000pt;}
.x160_c00209{left:651.200000pt;}
.x5b_c00209{left:652.666667pt;}
.x77_c00209{left:655.333333pt;}
.x15c_c00209{left:657.200000pt;}
.x47_c00209{left:659.733333pt;}
.x38_c00209{left:660.666667pt;}
.x101_c00209{left:661.733333pt;}
.x14d_c00209{left:662.800000pt;}
.x19_c00209{left:664.000000pt;}
.xa0_c00209{left:665.466667pt;}
.x29_c00209{left:666.666667pt;}
.xb7_c00209{left:668.533333pt;}
.xd4_c00209{left:670.133333pt;}
.xec_c00209{left:671.200000pt;}
.x39_c00209{left:672.800000pt;}
.x9_c00209{left:674.666667pt;}
.xc1_c00209{left:676.400000pt;}
.x114_c00209{left:677.333333pt;}
.xaa_c00209{left:678.933333pt;}
.x5c_c00209{left:680.533333pt;}
.x132_c00209{left:681.600000pt;}
.xe2_c00209{left:682.533333pt;}
.x78_c00209{left:685.066667pt;}
.xed_c00209{left:690.400000pt;}
}





/* 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_c00210 {
    display:none;
  }
  .loading-indicator_c00210.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00210 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_c00210 { 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_c00210" -> "#page-container .classname_c00210")
 */
.pf_c00210 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00210 { /* 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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00210 { /* 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_c00210 { /* 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_c00210 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00210 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00210 {overflow:visible;}
  }
}
.c_c00210 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00210 { /* 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_c00210:after { /* webkit #35443 */
  content: '';
}
.t_c00210:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00210 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 */
}
.__c00210 { /* 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_c00210 { /* info for Javascript */
  display:none;
}
.l_c00210 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00210 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00210 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00210: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_c00210 {
    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_c00210.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00210.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_c00210 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00210{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.000000;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;}
.m37_c00210{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00210{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00210{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mba_c00210{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00210{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00210{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m43_c00210{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00210{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00210{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m62_c00210{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3_c00210{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00210{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00210{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00210{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m20_c00210{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00210{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00210{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m88_c00210{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00210{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00210{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00210{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m11_c00210{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00210{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m60_c00210{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m41_c00210{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mab_c00210{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00210{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00210{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00210{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m76_c00210{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mac_c00210{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.maf_c00210{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00210{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m87_c00210{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00210{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m70_c00210{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00210{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maa_c00210{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m58_c00210{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00210{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00210{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00210{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00210{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00210{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m93_c00210{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00210{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mae_c00210{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m22_c00210{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00210{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m47_c00210{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00210{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5_c00210{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00210{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m34_c00210{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00210{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m25_c00210{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m45_c00210{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m48_c00210{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00210{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00210{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00210{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m63_c00210{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m14_c00210{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00210{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m59_c00210{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m81_c00210{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00210{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m82_c00210{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m53_c00210{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00210{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m67_c00210{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00210{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00210{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00210{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m86_c00210{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8_c00210{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00210{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00210{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m16_c00210{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m89_c00210{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m79_c00210{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m66_c00210{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m23_c00210{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m80_c00210{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc_c00210{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00210{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00210{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m50_c00210{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m68_c00210{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00210{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m28_c00210{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m78_c00210{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m35_c00210{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m44_c00210{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m21_c00210{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m84_c00210{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00210{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00210{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00210{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00210{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00210{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m30_c00210{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00210{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m24_c00210{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m52_c00210{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00210{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00210{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf_c00210{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00210{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00210{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);}
.m36_c00210{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m38_c00210{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m54_c00210{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19_c00210{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m71_c00210{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m13_c00210{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m91_c00210{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00210{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m74_c00210{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m49_c00210{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00210{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00210{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m32_c00210{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m27_c00210{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00210{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m61_c00210{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m57_c00210{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m77_c00210{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m56_c00210{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m42_c00210{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00210{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m95_c00210{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m96_c00210{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00210{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00210{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mad_c00210{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00210{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00210{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m46_c00210{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m75_c00210{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m33_c00210{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m64_c00210{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00210{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m18_c00210{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m69_c00210{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m99_c00210{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00210{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00210{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m73_c00210{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m90_c00210{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m98_c00210{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma_c00210{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m83_c00210{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00210{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m31_c00210{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mb_c00210{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m51_c00210{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m40_c00210{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m12_c00210{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00210{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00210{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m92_c00210{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m29_c00210{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m7_c00210{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m55_c00210{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00210{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00210{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00210{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00210{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m10_c00210{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m65_c00210{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00210{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1_c00210{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00210{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m17_c00210{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m85_c00210{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m15_c00210{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00210{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m9_c00210{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m97_c00210{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00210{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m26_c00210{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00210{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00210{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00210{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00210{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m72_c00210{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m94_c00210{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00210{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{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__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00210{word-spacing:-10.227433px;}
.ws3_c00210{word-spacing:-5.590361px;}
.ws5_c00210{word-spacing:-1.124661px;}
.ws6_c00210{word-spacing:-0.756839px;}
.ws4_c00210{word-spacing:-0.507777px;}
.wsb_c00210{word-spacing:0.000000px;}
.ws7_c00210{word-spacing:0.611599px;}
.ws2_c00210{word-spacing:7.830366px;}
.wsa_c00210{word-spacing:8.602579px;}
.ws9_c00210{word-spacing:10.500000px;}
.ws0_c00210{word-spacing:14.259096px;}
.ws1_c00210{word-spacing:21.250000px;}
.fc0_c00210{color:transparent;}
.fs0_c00210{font-size:54.000000px;}
.y0_c00210{bottom:0.000000px;}
.y2d_c00210{bottom:165.600000px;}
.y2c_c00210{bottom:181.050000px;}
.y2b_c00210{bottom:196.500000px;}
.y2a_c00210{bottom:211.950000px;}
.y29_c00210{bottom:228.150000px;}
.y28_c00210{bottom:243.300000px;}
.y27_c00210{bottom:259.200000px;}
.y26_c00210{bottom:274.350000px;}
.y25_c00210{bottom:289.800000px;}
.y24_c00210{bottom:305.250000px;}
.y23_c00210{bottom:343.200000px;}
.y22_c00210{bottom:363.300000px;}
.y21_c00210{bottom:383.400000px;}
.y20_c00210{bottom:403.200000px;}
.y1f_c00210{bottom:423.000000px;}
.y1e_c00210{bottom:442.800000px;}
.y1d_c00210{bottom:462.750000px;}
.y1c_c00210{bottom:482.550000px;}
.y1b_c00210{bottom:502.350000px;}
.y1a_c00210{bottom:522.450000px;}
.y19_c00210{bottom:541.950000px;}
.y18_c00210{bottom:562.050000px;}
.y17_c00210{bottom:581.850000px;}
.y16_c00210{bottom:601.650000px;}
.y15_c00210{bottom:621.450000px;}
.y14_c00210{bottom:641.250000px;}
.y13_c00210{bottom:661.050000px;}
.y12_c00210{bottom:681.150000px;}
.y11_c00210{bottom:700.950000px;}
.y10_c00210{bottom:721.200000px;}
.yf_c00210{bottom:741.000000px;}
.ye_c00210{bottom:760.800000px;}
.yd_c00210{bottom:780.600000px;}
.yc_c00210{bottom:800.400000px;}
.yb_c00210{bottom:820.200000px;}
.ya_c00210{bottom:840.300000px;}
.y9_c00210{bottom:860.100000px;}
.y8_c00210{bottom:879.600000px;}
.y7_c00210{bottom:899.400000px;}
.y6_c00210{bottom:919.500000px;}
.y5_c00210{bottom:958.650000px;}
.y4_c00210{bottom:979.500000px;}
.y3_c00210{bottom:999.300000px;}
.y2_c00210{bottom:1019.100000px;}
.y1_c00210{bottom:1057.350000px;}
.h2_c00210{height:54.000000px;}
.h0_c00210{height:1166.759949px;}
.h1_c00210{height:1167.000000px;}
.w0_c00210{width:918.720063px;}
.w1_c00210{width:918.750000px;}
.x0_c00210{left:0.000000px;}
.x129_c00210{left:142.800000px;}
.x121_c00210{left:144.000000px;}
.x10a_c00210{left:145.050000px;}
.xe0_c00210{left:146.850000px;}
.xc2_c00210{left:148.050000px;}
.x59_c00210{left:149.400000px;}
.x4_c00210{left:150.450000px;}
.x1_c00210{left:152.700000px;}
.x119_c00210{left:158.850000px;}
.x2_c00210{left:160.650000px;}
.x13f_c00210{left:162.000000px;}
.x103_c00210{left:166.200000px;}
.x75_c00210{left:167.550000px;}
.x5_c00210{left:168.750000px;}
.x122_c00210{left:169.950000px;}
.x12a_c00210{left:173.100000px;}
.xee_c00210{left:174.450000px;}
.x126_c00210{left:176.400000px;}
.x8d_c00210{left:177.600000px;}
.xba_c00210{left:178.950000px;}
.x15_c00210{left:180.600000px;}
.x112_c00210{left:184.350000px;}
.x67_c00210{left:185.850000px;}
.x11a_c00210{left:187.950000px;}
.xc3_c00210{left:190.500000px;}
.x137_c00210{left:191.850000px;}
.x27_c00210{left:193.050000px;}
.x104_c00210{left:194.250000px;}
.x97_c00210{left:196.200000px;}
.x38_c00210{left:197.700000px;}
.x134_c00210{left:200.550000px;}
.x5a_c00210{left:201.900000px;}
.x16_c00210{left:203.700000px;}
.x82_c00210{left:204.750000px;}
.xc4_c00210{left:207.450000px;}
.xeb_c00210{left:209.850000px;}
.xbb_c00210{left:211.800000px;}
.x39_c00210{left:213.150000px;}
.x6_c00210{left:215.550000px;}
.xe1_c00210{left:217.050000px;}
.xca_c00210{left:219.750000px;}
.xb3_c00210{left:221.250000px;}
.x140_c00210{left:223.200000px;}
.xa2_c00210{left:228.000000px;}
.x17_c00210{left:230.400000px;}
.x8e_c00210{left:231.900000px;}
.x11b_c00210{left:233.700000px;}
.x28_c00210{left:235.500000px;}
.x98_c00210{left:236.850000px;}
.x4b_c00210{left:239.550000px;}
.x68_c00210{left:240.900000px;}
.x3a_c00210{left:241.950000px;}
.xe2_c00210{left:244.350000px;}
.x12b_c00210{left:245.400000px;}
.x7_c00210{left:247.200000px;}
.xb4_c00210{left:249.000000px;}
.xdc_c00210{left:250.500000px;}
.xf5_c00210{left:251.700000px;}
.x18_c00210{left:253.800000px;}
.x29_c00210{left:255.000000px;}
.x69_c00210{left:256.050000px;}
.x120_c00210{left:257.250000px;}
.xaa_c00210{left:258.750000px;}
.xd1_c00210{left:260.550000px;}
.xcb_c00210{left:262.200000px;}
.x8_c00210{left:268.050000px;}
.x5b_c00210{left:271.050000px;}
.x99_c00210{left:272.850000px;}
.xe3_c00210{left:273.900000px;}
.x130_c00210{left:277.950000px;}
.x3b_c00210{left:280.500000px;}
.x100_c00210{left:281.700000px;}
.x2a_c00210{left:283.050000px;}
.x19_c00210{left:285.150000px;}
.x76_c00210{left:287.700000px;}
.xd2_c00210{left:289.050000px;}
.xab_c00210{left:291.900000px;}
.x142_c00210{left:292.950000px;}
.x9_c00210{left:295.350000px;}
.x105_c00210{left:297.000000px;}
.x10b_c00210{left:298.050000px;}
.x3c_c00210{left:299.250000px;}
.xa3_c00210{left:301.200000px;}
.x6a_c00210{left:303.600000px;}
.xf6_c00210{left:304.950000px;}
.xec_c00210{left:307.950000px;}
.x12c_c00210{left:309.450000px;}
.x8f_c00210{left:310.650000px;}
.x3d_c00210{left:312.150000px;}
.x4c_c00210{left:314.400000px;}
.xfc_c00210{left:316.800000px;}
.x83_c00210{left:317.850000px;}
.xe4_c00210{left:319.200000px;}
.x3e_c00210{left:321.150000px;}
.x123_c00210{left:324.000000px;}
.x1a_c00210{left:327.600000px;}
.x6b_c00210{left:328.800000px;}
.x106_c00210{left:330.900000px;}
.xbc_c00210{left:335.250000px;}
.x3f_c00210{left:337.050000px;}
.x77_c00210{left:338.850000px;}
.xac_c00210{left:340.050000px;}
.x12d_c00210{left:341.550000px;}
.xd3_c00210{left:343.050000px;}
.x143_c00210{left:344.400000px;}
.x4d_c00210{left:346.500000px;}
.x84_c00210{left:348.450000px;}
.xc5_c00210{left:349.650000px;}
.xf7_c00210{left:351.450000px;}
.x5c_c00210{left:352.500000px;}
.x9a_c00210{left:354.000000px;}
.x2b_c00210{left:355.800000px;}
.x10c_c00210{left:358.500000px;}
.x90_c00210{left:359.550000px;}
.xa4_c00210{left:362.100000px;}
.x6c_c00210{left:363.300000px;}
.xa_c00210{left:364.800000px;}
.x40_c00210{left:366.900000px;}
.x131_c00210{left:368.700000px;}
.xcc_c00210{left:370.200000px;}
.xe5_c00210{left:372.150000px;}
.xad_c00210{left:373.500000px;}
.x2c_c00210{left:375.300000px;}
.x5d_c00210{left:378.000000px;}
.x1b_c00210{left:380.550000px;}
.x4e_c00210{left:381.750000px;}
.xa5_c00210{left:382.950000px;}
.x117_c00210{left:385.050000px;}
.xb5_c00210{left:386.700000px;}
.xc6_c00210{left:388.650000px;}
.x9b_c00210{left:393.600000px;}
.xd7_c00210{left:396.300000px;}
.xcd_c00210{left:398.700000px;}
.xa6_c00210{left:400.200000px;}
.x78_c00210{left:401.550000px;}
.x1c_c00210{left:404.250000px;}
.xb6_c00210{left:408.300000px;}
.xb_c00210{left:410.550000px;}
.x5e_c00210{left:413.250000px;}
.x10d_c00210{left:415.800000px;}
.x2d_c00210{left:417.000000px;}
.x41_c00210{left:418.800000px;}
.xef_c00210{left:424.050000px;}
.xae_c00210{left:428.250000px;}
.x79_c00210{left:429.600000px;}
.xed_c00210{left:431.400000px;}
.xc_c00210{left:432.450000px;}
.x42_c00210{left:433.950000px;}
.xb7_c00210{left:437.100000px;}
.x91_c00210{left:438.750000px;}
.x127_c00210{left:442.800000px;}
.x2e_c00210{left:446.100000px;}
.x3_c00210{left:447.600000px;}
.xe6_c00210{left:450.150000px;}
.xf0_c00210{left:451.800000px;}
.x43_c00210{left:453.000000px;}
.x135_c00210{left:454.050000px;}
.x85_c00210{left:456.150000px;}
.x6d_c00210{left:458.400000px;}
.xd_c00210{left:460.950000px;}
.xce_c00210{left:462.000000px;}
.x7a_c00210{left:467.700000px;}
.x2f_c00210{left:469.200000px;}
.x101_c00210{left:470.250000px;}
.x4f_c00210{left:472.200000px;}
.x1d_c00210{left:473.700000px;}
.x86_c00210{left:475.950000px;}
.x5f_c00210{left:478.050000px;}
.x9c_c00210{left:480.000000px;}
.x92_c00210{left:482.700000px;}
.x113_c00210{left:485.700000px;}
.x138_c00210{left:486.900000px;}
.xaf_c00210{left:488.100000px;}
.x6e_c00210{left:489.750000px;}
.xbd_c00210{left:497.850000px;}
.x7b_c00210{left:499.050000px;}
.x44_c00210{left:501.600000px;}
.x144_c00210{left:503.100000px;}
.x50_c00210{left:504.900000px;}
.xcf_c00210{left:508.500000px;}
.xe7_c00210{left:511.050000px;}
.x10e_c00210{left:512.250000px;}
.x139_c00210{left:514.650000px;}
.x1e_c00210{left:516.150000px;}
.x7c_c00210{left:517.350000px;}
.x6f_c00210{left:519.600000px;}
.x114_c00210{left:520.650000px;}
.xfd_c00210{left:522.000000px;}
.xf1_c00210{left:524.850000px;}
.xd0_c00210{left:527.250000px;}
.x9d_c00210{left:528.600000px;}
.xe_c00210{left:531.450000px;}
.xdd_c00210{left:532.800000px;}
.xb8_c00210{left:535.350000px;}
.x60_c00210{left:536.700000px;}
.x87_c00210{left:538.950000px;}
.x10f_c00210{left:541.800000px;}
.x7d_c00210{left:543.300000px;}
.xb0_c00210{left:545.400000px;}
.x11c_c00210{left:547.800000px;}
.x30_c00210{left:549.900000px;}
.x124_c00210{left:553.200000px;}
.xbe_c00210{left:554.850000px;}
.x70_c00210{left:559.200000px;}
.x1f_c00210{left:560.850000px;}
.xf_c00210{left:562.350000px;}
.x61_c00210{left:565.500000px;}
.x51_c00210{left:566.550000px;}
.x93_c00210{left:568.500000px;}
.xde_c00210{left:570.300000px;}
.x88_c00210{left:571.350000px;}
.x45_c00210{left:573.300000px;}
.x52_c00210{left:575.250000px;}
.x132_c00210{left:577.050000px;}
.x13e_c00210{left:579.150000px;}
.xf2_c00210{left:580.350000px;}
.x31_c00210{left:582.000000px;}
.x12e_c00210{left:583.200000px;}
.x20_c00210{left:585.750000px;}
.xd8_c00210{left:587.100000px;}
.x89_c00210{left:591.150000px;}
.xb1_c00210{left:592.200000px;}
.x71_c00210{left:594.150000px;}
.x107_c00210{left:595.800000px;}
.x62_c00210{left:597.150000px;}
.x11d_c00210{left:599.550000px;}
.x10_c00210{left:601.200000px;}
.x53_c00210{left:603.750000px;}
.x7e_c00210{left:605.550000px;}
.xd9_c00210{left:606.900000px;}
.xc7_c00210{left:608.100000px;}
.x115_c00210{left:609.150000px;}
.x21_c00210{left:610.950000px;}
.x63_c00210{left:613.050000px;}
.x32_c00210{left:615.900000px;}
.xf8_c00210{left:617.250000px;}
.x125_c00210{left:618.300000px;}
.x136_c00210{left:621.600000px;}
.xd4_c00210{left:625.950000px;}
.x72_c00210{left:628.350000px;}
.x46_c00210{left:629.850000px;}
.x7f_c00210{left:631.050000px;}
.xbf_c00210{left:633.000000px;}
.xe8_c00210{left:634.500000px;}
.x9e_c00210{left:635.550000px;}
.x33_c00210{left:637.200000px;}
.x54_c00210{left:638.250000px;}
.xda_c00210{left:639.300000px;}
.x22_c00210{left:641.550000px;}
.xa7_c00210{left:643.350000px;}
.x11e_c00210{left:644.550000px;}
.xc8_c00210{left:647.400000px;}
.x118_c00210{left:648.600000px;}
.x11_c00210{left:649.800000px;}
.xb9_c00210{left:654.150000px;}
.x128_c00210{left:655.200000px;}
.x145_c00210{left:658.350000px;}
.x94_c00210{left:659.850000px;}
.x110_c00210{left:663.900000px;}
.x34_c00210{left:665.250000px;}
.x13c_c00210{left:666.600000px;}
.x73_c00210{left:670.050000px;}
.x55_c00210{left:673.500000px;}
.x64_c00210{left:675.000000px;}
.x47_c00210{left:678.000000px;}
.x23_c00210{left:680.100000px;}
.x141_c00210{left:682.350000px;}
.xf3_c00210{left:683.700000px;}
.xf9_c00210{left:685.350000px;}
.x12_c00210{left:687.900000px;}
.x56_c00210{left:688.950000px;}
.x8a_c00210{left:690.450000px;}
.x65_c00210{left:691.950000px;}
.x24_c00210{left:696.600000px;}
.xa8_c00210{left:699.150000px;}
.xc0_c00210{left:705.000000px;}
.x9f_c00210{left:706.800000px;}
.xd5_c00210{left:708.300000px;}
.x8b_c00210{left:711.000000px;}
.xfe_c00210{left:712.800000px;}
.x13_c00210{left:713.850000px;}
.x66_c00210{left:717.150000px;}
.xe9_c00210{left:718.500000px;}
.x102_c00210{left:720.300000px;}
.x80_c00210{left:723.900000px;}
.xc9_c00210{left:726.300000px;}
.x95_c00210{left:727.500000px;}
.x48_c00210{left:729.900000px;}
.xfa_c00210{left:731.100000px;}
.x108_c00210{left:732.150000px;}
.xea_c00210{left:735.750000px;}
.x11f_c00210{left:737.400000px;}
.xb2_c00210{left:739.500000px;}
.x146_c00210{left:740.550000px;}
.x14_c00210{left:741.600000px;}
.xa0_c00210{left:744.600000px;}
.x57_c00210{left:746.550000px;}
.x35_c00210{left:748.500000px;}
.x49_c00210{left:749.700000px;}
.xd6_c00210{left:751.200000px;}
.x13a_c00210{left:754.050000px;}
.x111_c00210{left:755.700000px;}
.x25_c00210{left:756.750000px;}
.x74_c00210{left:758.250000px;}
.x81_c00210{left:759.900000px;}
.x109_c00210{left:762.450000px;}
.x58_c00210{left:763.800000px;}
.xfb_c00210{left:766.050000px;}
.x147_c00210{left:767.250000px;}
.x36_c00210{left:768.300000px;}
.x133_c00210{left:769.800000px;}
.x4a_c00210{left:775.200000px;}
.xf4_c00210{left:777.300000px;}
.x96_c00210{left:779.250000px;}
.x13b_c00210{left:780.300000px;}
.x37_c00210{left:783.000000px;}
.x13d_c00210{left:784.650000px;}
.xdb_c00210{left:786.450000px;}
.x26_c00210{left:787.650000px;}
.xff_c00210{left:789.000000px;}
.x12f_c00210{left:791.250000px;}
.xc1_c00210{left:792.450000px;}
.xa1_c00210{left:795.300000px;}
.xdf_c00210{left:796.950000px;}
.x116_c00210{left:799.050000px;}
.x8c_c00210{left:801.450000px;}
.xa9_c00210{left:802.800000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws8_c00210{word-spacing:-9.091051pt;}
.ws3_c00210{word-spacing:-4.969210pt;}
.ws5_c00210{word-spacing:-0.999699pt;}
.ws6_c00210{word-spacing:-0.672746pt;}
.ws4_c00210{word-spacing:-0.451357pt;}
.wsb_c00210{word-spacing:0.000000pt;}
.ws7_c00210{word-spacing:0.543644pt;}
.ws2_c00210{word-spacing:6.960325pt;}
.wsa_c00210{word-spacing:7.646737pt;}
.ws9_c00210{word-spacing:9.333333pt;}
.ws0_c00210{word-spacing:12.674752pt;}
.ws1_c00210{word-spacing:18.888889pt;}
.fs0_c00210{font-size:48.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y2d_c00210{bottom:147.200000pt;}
.y2c_c00210{bottom:160.933333pt;}
.y2b_c00210{bottom:174.666667pt;}
.y2a_c00210{bottom:188.400000pt;}
.y29_c00210{bottom:202.800000pt;}
.y28_c00210{bottom:216.266667pt;}
.y27_c00210{bottom:230.400000pt;}
.y26_c00210{bottom:243.866667pt;}
.y25_c00210{bottom:257.600000pt;}
.y24_c00210{bottom:271.333333pt;}
.y23_c00210{bottom:305.066667pt;}
.y22_c00210{bottom:322.933333pt;}
.y21_c00210{bottom:340.800000pt;}
.y20_c00210{bottom:358.400000pt;}
.y1f_c00210{bottom:376.000000pt;}
.y1e_c00210{bottom:393.600000pt;}
.y1d_c00210{bottom:411.333333pt;}
.y1c_c00210{bottom:428.933333pt;}
.y1b_c00210{bottom:446.533333pt;}
.y1a_c00210{bottom:464.400000pt;}
.y19_c00210{bottom:481.733333pt;}
.y18_c00210{bottom:499.600000pt;}
.y17_c00210{bottom:517.200000pt;}
.y16_c00210{bottom:534.800000pt;}
.y15_c00210{bottom:552.400000pt;}
.y14_c00210{bottom:570.000000pt;}
.y13_c00210{bottom:587.600000pt;}
.y12_c00210{bottom:605.466667pt;}
.y11_c00210{bottom:623.066667pt;}
.y10_c00210{bottom:641.066667pt;}
.yf_c00210{bottom:658.666667pt;}
.ye_c00210{bottom:676.266667pt;}
.yd_c00210{bottom:693.866667pt;}
.yc_c00210{bottom:711.466667pt;}
.yb_c00210{bottom:729.066667pt;}
.ya_c00210{bottom:746.933333pt;}
.y9_c00210{bottom:764.533333pt;}
.y8_c00210{bottom:781.866667pt;}
.y7_c00210{bottom:799.466667pt;}
.y6_c00210{bottom:817.333333pt;}
.y5_c00210{bottom:852.133333pt;}
.y4_c00210{bottom:870.666667pt;}
.y3_c00210{bottom:888.266667pt;}
.y2_c00210{bottom:905.866667pt;}
.y1_c00210{bottom:939.866667pt;}
.h2_c00210{height:48.000000pt;}
.h0_c00210{height:1037.119955pt;}
.h1_c00210{height:1037.333333pt;}
.w0_c00210{width:816.640056pt;}
.w1_c00210{width:816.666667pt;}
.x0_c00210{left:0.000000pt;}
.x129_c00210{left:126.933333pt;}
.x121_c00210{left:128.000000pt;}
.x10a_c00210{left:128.933333pt;}
.xe0_c00210{left:130.533333pt;}
.xc2_c00210{left:131.600000pt;}
.x59_c00210{left:132.800000pt;}
.x4_c00210{left:133.733333pt;}
.x1_c00210{left:135.733333pt;}
.x119_c00210{left:141.200000pt;}
.x2_c00210{left:142.800000pt;}
.x13f_c00210{left:144.000000pt;}
.x103_c00210{left:147.733333pt;}
.x75_c00210{left:148.933333pt;}
.x5_c00210{left:150.000000pt;}
.x122_c00210{left:151.066667pt;}
.x12a_c00210{left:153.866667pt;}
.xee_c00210{left:155.066667pt;}
.x126_c00210{left:156.800000pt;}
.x8d_c00210{left:157.866667pt;}
.xba_c00210{left:159.066667pt;}
.x15_c00210{left:160.533333pt;}
.x112_c00210{left:163.866667pt;}
.x67_c00210{left:165.200000pt;}
.x11a_c00210{left:167.066667pt;}
.xc3_c00210{left:169.333333pt;}
.x137_c00210{left:170.533333pt;}
.x27_c00210{left:171.600000pt;}
.x104_c00210{left:172.666667pt;}
.x97_c00210{left:174.400000pt;}
.x38_c00210{left:175.733333pt;}
.x134_c00210{left:178.266667pt;}
.x5a_c00210{left:179.466667pt;}
.x16_c00210{left:181.066667pt;}
.x82_c00210{left:182.000000pt;}
.xc4_c00210{left:184.400000pt;}
.xeb_c00210{left:186.533333pt;}
.xbb_c00210{left:188.266667pt;}
.x39_c00210{left:189.466667pt;}
.x6_c00210{left:191.600000pt;}
.xe1_c00210{left:192.933333pt;}
.xca_c00210{left:195.333333pt;}
.xb3_c00210{left:196.666667pt;}
.x140_c00210{left:198.400000pt;}
.xa2_c00210{left:202.666667pt;}
.x17_c00210{left:204.800000pt;}
.x8e_c00210{left:206.133333pt;}
.x11b_c00210{left:207.733333pt;}
.x28_c00210{left:209.333333pt;}
.x98_c00210{left:210.533333pt;}
.x4b_c00210{left:212.933333pt;}
.x68_c00210{left:214.133333pt;}
.x3a_c00210{left:215.066667pt;}
.xe2_c00210{left:217.200000pt;}
.x12b_c00210{left:218.133333pt;}
.x7_c00210{left:219.733333pt;}
.xb4_c00210{left:221.333333pt;}
.xdc_c00210{left:222.666667pt;}
.xf5_c00210{left:223.733333pt;}
.x18_c00210{left:225.600000pt;}
.x29_c00210{left:226.666667pt;}
.x69_c00210{left:227.600000pt;}
.x120_c00210{left:228.666667pt;}
.xaa_c00210{left:230.000000pt;}
.xd1_c00210{left:231.600000pt;}
.xcb_c00210{left:233.066667pt;}
.x8_c00210{left:238.266667pt;}
.x5b_c00210{left:240.933333pt;}
.x99_c00210{left:242.533333pt;}
.xe3_c00210{left:243.466667pt;}
.x130_c00210{left:247.066667pt;}
.x3b_c00210{left:249.333333pt;}
.x100_c00210{left:250.400000pt;}
.x2a_c00210{left:251.600000pt;}
.x19_c00210{left:253.466667pt;}
.x76_c00210{left:255.733333pt;}
.xd2_c00210{left:256.933333pt;}
.xab_c00210{left:259.466667pt;}
.x142_c00210{left:260.400000pt;}
.x9_c00210{left:262.533333pt;}
.x105_c00210{left:264.000000pt;}
.x10b_c00210{left:264.933333pt;}
.x3c_c00210{left:266.000000pt;}
.xa3_c00210{left:267.733333pt;}
.x6a_c00210{left:269.866667pt;}
.xf6_c00210{left:271.066667pt;}
.xec_c00210{left:273.733333pt;}
.x12c_c00210{left:275.066667pt;}
.x8f_c00210{left:276.133333pt;}
.x3d_c00210{left:277.466667pt;}
.x4c_c00210{left:279.466667pt;}
.xfc_c00210{left:281.600000pt;}
.x83_c00210{left:282.533333pt;}
.xe4_c00210{left:283.733333pt;}
.x3e_c00210{left:285.466667pt;}
.x123_c00210{left:288.000000pt;}
.x1a_c00210{left:291.200000pt;}
.x6b_c00210{left:292.266667pt;}
.x106_c00210{left:294.133333pt;}
.xbc_c00210{left:298.000000pt;}
.x3f_c00210{left:299.600000pt;}
.x77_c00210{left:301.200000pt;}
.xac_c00210{left:302.266667pt;}
.x12d_c00210{left:303.600000pt;}
.xd3_c00210{left:304.933333pt;}
.x143_c00210{left:306.133333pt;}
.x4d_c00210{left:308.000000pt;}
.x84_c00210{left:309.733333pt;}
.xc5_c00210{left:310.800000pt;}
.xf7_c00210{left:312.400000pt;}
.x5c_c00210{left:313.333333pt;}
.x9a_c00210{left:314.666667pt;}
.x2b_c00210{left:316.266667pt;}
.x10c_c00210{left:318.666667pt;}
.x90_c00210{left:319.600000pt;}
.xa4_c00210{left:321.866667pt;}
.x6c_c00210{left:322.933333pt;}
.xa_c00210{left:324.266667pt;}
.x40_c00210{left:326.133333pt;}
.x131_c00210{left:327.733333pt;}
.xcc_c00210{left:329.066667pt;}
.xe5_c00210{left:330.800000pt;}
.xad_c00210{left:332.000000pt;}
.x2c_c00210{left:333.600000pt;}
.x5d_c00210{left:336.000000pt;}
.x1b_c00210{left:338.266667pt;}
.x4e_c00210{left:339.333333pt;}
.xa5_c00210{left:340.400000pt;}
.x117_c00210{left:342.266667pt;}
.xb5_c00210{left:343.733333pt;}
.xc6_c00210{left:345.466667pt;}
.x9b_c00210{left:349.866667pt;}
.xd7_c00210{left:352.266667pt;}
.xcd_c00210{left:354.400000pt;}
.xa6_c00210{left:355.733333pt;}
.x78_c00210{left:356.933333pt;}
.x1c_c00210{left:359.333333pt;}
.xb6_c00210{left:362.933333pt;}
.xb_c00210{left:364.933333pt;}
.x5e_c00210{left:367.333333pt;}
.x10d_c00210{left:369.600000pt;}
.x2d_c00210{left:370.666667pt;}
.x41_c00210{left:372.266667pt;}
.xef_c00210{left:376.933333pt;}
.xae_c00210{left:380.666667pt;}
.x79_c00210{left:381.866667pt;}
.xed_c00210{left:383.466667pt;}
.xc_c00210{left:384.400000pt;}
.x42_c00210{left:385.733333pt;}
.xb7_c00210{left:388.533333pt;}
.x91_c00210{left:390.000000pt;}
.x127_c00210{left:393.600000pt;}
.x2e_c00210{left:396.533333pt;}
.x3_c00210{left:397.866667pt;}
.xe6_c00210{left:400.133333pt;}
.xf0_c00210{left:401.600000pt;}
.x43_c00210{left:402.666667pt;}
.x135_c00210{left:403.600000pt;}
.x85_c00210{left:405.466667pt;}
.x6d_c00210{left:407.466667pt;}
.xd_c00210{left:409.733333pt;}
.xce_c00210{left:410.666667pt;}
.x7a_c00210{left:415.733333pt;}
.x2f_c00210{left:417.066667pt;}
.x101_c00210{left:418.000000pt;}
.x4f_c00210{left:419.733333pt;}
.x1d_c00210{left:421.066667pt;}
.x86_c00210{left:423.066667pt;}
.x5f_c00210{left:424.933333pt;}
.x9c_c00210{left:426.666667pt;}
.x92_c00210{left:429.066667pt;}
.x113_c00210{left:431.733333pt;}
.x138_c00210{left:432.800000pt;}
.xaf_c00210{left:433.866667pt;}
.x6e_c00210{left:435.333333pt;}
.xbd_c00210{left:442.533333pt;}
.x7b_c00210{left:443.600000pt;}
.x44_c00210{left:445.866667pt;}
.x144_c00210{left:447.200000pt;}
.x50_c00210{left:448.800000pt;}
.xcf_c00210{left:452.000000pt;}
.xe7_c00210{left:454.266667pt;}
.x10e_c00210{left:455.333333pt;}
.x139_c00210{left:457.466667pt;}
.x1e_c00210{left:458.800000pt;}
.x7c_c00210{left:459.866667pt;}
.x6f_c00210{left:461.866667pt;}
.x114_c00210{left:462.800000pt;}
.xfd_c00210{left:464.000000pt;}
.xf1_c00210{left:466.533333pt;}
.xd0_c00210{left:468.666667pt;}
.x9d_c00210{left:469.866667pt;}
.xe_c00210{left:472.400000pt;}
.xdd_c00210{left:473.600000pt;}
.xb8_c00210{left:475.866667pt;}
.x60_c00210{left:477.066667pt;}
.x87_c00210{left:479.066667pt;}
.x10f_c00210{left:481.600000pt;}
.x7d_c00210{left:482.933333pt;}
.xb0_c00210{left:484.800000pt;}
.x11c_c00210{left:486.933333pt;}
.x30_c00210{left:488.800000pt;}
.x124_c00210{left:491.733333pt;}
.xbe_c00210{left:493.200000pt;}
.x70_c00210{left:497.066667pt;}
.x1f_c00210{left:498.533333pt;}
.xf_c00210{left:499.866667pt;}
.x61_c00210{left:502.666667pt;}
.x51_c00210{left:503.600000pt;}
.x93_c00210{left:505.333333pt;}
.xde_c00210{left:506.933333pt;}
.x88_c00210{left:507.866667pt;}
.x45_c00210{left:509.600000pt;}
.x52_c00210{left:511.333333pt;}
.x132_c00210{left:512.933333pt;}
.x13e_c00210{left:514.800000pt;}
.xf2_c00210{left:515.866667pt;}
.x31_c00210{left:517.333333pt;}
.x12e_c00210{left:518.400000pt;}
.x20_c00210{left:520.666667pt;}
.xd8_c00210{left:521.866667pt;}
.x89_c00210{left:525.466667pt;}
.xb1_c00210{left:526.400000pt;}
.x71_c00210{left:528.133333pt;}
.x107_c00210{left:529.600000pt;}
.x62_c00210{left:530.800000pt;}
.x11d_c00210{left:532.933333pt;}
.x10_c00210{left:534.400000pt;}
.x53_c00210{left:536.666667pt;}
.x7e_c00210{left:538.266667pt;}
.xd9_c00210{left:539.466667pt;}
.xc7_c00210{left:540.533333pt;}
.x115_c00210{left:541.466667pt;}
.x21_c00210{left:543.066667pt;}
.x63_c00210{left:544.933333pt;}
.x32_c00210{left:547.466667pt;}
.xf8_c00210{left:548.666667pt;}
.x125_c00210{left:549.600000pt;}
.x136_c00210{left:552.533333pt;}
.xd4_c00210{left:556.400000pt;}
.x72_c00210{left:558.533333pt;}
.x46_c00210{left:559.866667pt;}
.x7f_c00210{left:560.933333pt;}
.xbf_c00210{left:562.666667pt;}
.xe8_c00210{left:564.000000pt;}
.x9e_c00210{left:564.933333pt;}
.x33_c00210{left:566.400000pt;}
.x54_c00210{left:567.333333pt;}
.xda_c00210{left:568.266667pt;}
.x22_c00210{left:570.266667pt;}
.xa7_c00210{left:571.866667pt;}
.x11e_c00210{left:572.933333pt;}
.xc8_c00210{left:575.466667pt;}
.x118_c00210{left:576.533333pt;}
.x11_c00210{left:577.600000pt;}
.xb9_c00210{left:581.466667pt;}
.x128_c00210{left:582.400000pt;}
.x145_c00210{left:585.200000pt;}
.x94_c00210{left:586.533333pt;}
.x110_c00210{left:590.133333pt;}
.x34_c00210{left:591.333333pt;}
.x13c_c00210{left:592.533333pt;}
.x73_c00210{left:595.600000pt;}
.x55_c00210{left:598.666667pt;}
.x64_c00210{left:600.000000pt;}
.x47_c00210{left:602.666667pt;}
.x23_c00210{left:604.533333pt;}
.x141_c00210{left:606.533333pt;}
.xf3_c00210{left:607.733333pt;}
.xf9_c00210{left:609.200000pt;}
.x12_c00210{left:611.466667pt;}
.x56_c00210{left:612.400000pt;}
.x8a_c00210{left:613.733333pt;}
.x65_c00210{left:615.066667pt;}
.x24_c00210{left:619.200000pt;}
.xa8_c00210{left:621.466667pt;}
.xc0_c00210{left:626.666667pt;}
.x9f_c00210{left:628.266667pt;}
.xd5_c00210{left:629.600000pt;}
.x8b_c00210{left:632.000000pt;}
.xfe_c00210{left:633.600000pt;}
.x13_c00210{left:634.533333pt;}
.x66_c00210{left:637.466667pt;}
.xe9_c00210{left:638.666667pt;}
.x102_c00210{left:640.266667pt;}
.x80_c00210{left:643.466667pt;}
.xc9_c00210{left:645.600000pt;}
.x95_c00210{left:646.666667pt;}
.x48_c00210{left:648.800000pt;}
.xfa_c00210{left:649.866667pt;}
.x108_c00210{left:650.800000pt;}
.xea_c00210{left:654.000000pt;}
.x11f_c00210{left:655.466667pt;}
.xb2_c00210{left:657.333333pt;}
.x146_c00210{left:658.266667pt;}
.x14_c00210{left:659.200000pt;}
.xa0_c00210{left:661.866667pt;}
.x57_c00210{left:663.600000pt;}
.x35_c00210{left:665.333333pt;}
.x49_c00210{left:666.400000pt;}
.xd6_c00210{left:667.733333pt;}
.x13a_c00210{left:670.266667pt;}
.x111_c00210{left:671.733333pt;}
.x25_c00210{left:672.666667pt;}
.x74_c00210{left:674.000000pt;}
.x81_c00210{left:675.466667pt;}
.x109_c00210{left:677.733333pt;}
.x58_c00210{left:678.933333pt;}
.xfb_c00210{left:680.933333pt;}
.x147_c00210{left:682.000000pt;}
.x36_c00210{left:682.933333pt;}
.x133_c00210{left:684.266667pt;}
.x4a_c00210{left:689.066667pt;}
.xf4_c00210{left:690.933333pt;}
.x96_c00210{left:692.666667pt;}
.x13b_c00210{left:693.600000pt;}
.x37_c00210{left:696.000000pt;}
.x13d_c00210{left:697.466667pt;}
.xdb_c00210{left:699.066667pt;}
.x26_c00210{left:700.133333pt;}
.xff_c00210{left:701.333333pt;}
.x12f_c00210{left:703.333333pt;}
.xc1_c00210{left:704.400000pt;}
.xa1_c00210{left:706.933333pt;}
.xdf_c00210{left:708.400000pt;}
.x116_c00210{left:710.266667pt;}
.x8c_c00210{left:712.400000pt;}
.xa9_c00210{left:713.600000pt;}
}





/* 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_c00211 {
    display:none;
  }
  .loading-indicator_c00211.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00211 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_c00211 { 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_c00211" -> "#page-container .classname_c00211")
 */
.pf_c00211 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00211 { /* 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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00211 { /* 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_c00211 { /* 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_c00211 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00211 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00211 {overflow:visible;}
  }
}
.c_c00211 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00211 { /* 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_c00211:after { /* webkit #35443 */
  content: '';
}
.t_c00211:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00211 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 */
}
.__c00211 { /* 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_c00211 { /* info for Javascript */
  display:none;
}
.l_c00211 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00211 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00211 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00211: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_c00211 {
    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_c00211.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00211.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_c00211 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00211{font-family:sans-serif;visibility:hidden;}
.sc__c00211{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
}
.y0_c00211{bottom:0.000000px;}
.h0_c00211{height:1166.759949px;}
.h1_c00211{height:1167.000000px;}
.w0_c00211{width:918.720063px;}
.w1_c00211{width:918.750000px;}
.x0_c00211{left:0.000000px;}
@media print{
.y0_c00211{bottom:0.000000pt;}
.h0_c00211{height:1037.119955pt;}
.h1_c00211{height:1037.333333pt;}
.w0_c00211{width:816.640056pt;}
.w1_c00211{width:816.666667pt;}
.x0_c00211{left:0.000000pt;}
}





/* 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_c00212 {
    display:none;
  }
  .loading-indicator_c00212.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00212 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_c00212 { 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_c00212" -> "#page-container .classname_c00212")
 */
.pf_c00212 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00212 { /* 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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00212 { /* 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_c00212 { /* 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_c00212 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00212 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00212 {overflow:visible;}
  }
}
.c_c00212 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00212 { /* 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_c00212:after { /* webkit #35443 */
  content: '';
}
.t_c00212:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00212 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 */
}
.__c00212 { /* 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_c00212 { /* info for Javascript */
  display:none;
}
.l_c00212 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00212 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00212 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00212: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_c00212 {
    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_c00212.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00212.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_c00212 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00212{font-family:sans-serif;visibility:hidden;}
.sc__c00212{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
}
.y0_c00212{bottom:0.000000px;}
.h0_c00212{height:1166.759949px;}
.h1_c00212{height:1167.000000px;}
.w0_c00212{width:918.720063px;}
.w1_c00212{width:918.750000px;}
.x0_c00212{left:0.000000px;}
@media print{
.y0_c00212{bottom:0.000000pt;}
.h0_c00212{height:1037.119955pt;}
.h1_c00212{height:1037.333333pt;}
.w0_c00212{width:816.640056pt;}
.w1_c00212{width:816.666667pt;}
.x0_c00212{left:0.000000pt;}
}





/* 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_c00213 {
    display:none;
  }
  .loading-indicator_c00213.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00213 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_c00213 { 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_c00213" -> "#page-container .classname_c00213")
 */
.pf_c00213 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00213 { /* 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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00213 { /* 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_c00213 { /* 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_c00213 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00213 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00213 {overflow:visible;}
  }
}
.c_c00213 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00213 { /* 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_c00213:after { /* webkit #35443 */
  content: '';
}
.t_c00213:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00213 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 */
}
.__c00213 { /* 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_c00213 { /* info for Javascript */
  display:none;
}
.l_c00213 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00213 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00213 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00213: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_c00213 {
    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_c00213.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00213.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_c00213 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00213{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00213;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.000000;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;}
.m30_c00213{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m37_c00213{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m35_c00213{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m39_c00213{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00213{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00213{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m98_c00213{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.maf_c00213{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m97_c00213{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m84_c00213{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00213{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00213{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m78_c00213{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m95_c00213{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m58_c00213{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00213{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m50_c00213{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m65_c00213{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00213{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00213{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00213{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m63_c00213{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00213{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m52_c00213{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00213{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.maa_c00213{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00213{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00213{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00213{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00213{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m31_c00213{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m60_c00213{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00213{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m79_c00213{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00213{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m49_c00213{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m67_c00213{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m25_c00213{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00213{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00213{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mad_c00213{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mae_c00213{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00213{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00213{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00213{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m32_c00213{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00213{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00213{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00213{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00213{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00213{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m83_c00213{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m51_c00213{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00213{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m75_c00213{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00213{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m68_c00213{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00213{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m61_c00213{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m91_c00213{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m99_c00213{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00213{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00213{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m41_c00213{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3_c00213{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m47_c00213{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m56_c00213{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m70_c00213{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00213{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m23_c00213{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m93_c00213{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m53_c00213{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00213{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00213{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00213{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m71_c00213{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00213{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00213{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00213{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m62_c00213{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m28_c00213{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00213{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mf_c00213{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00213{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00213{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m54_c00213{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m24_c00213{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00213{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m44_c00213{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00213{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55_c00213{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00213{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m34_c00213{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00213{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mab_c00213{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00213{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m64_c00213{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00213{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m73_c00213{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mac_c00213{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m9_c00213{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m48_c00213{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m89_c00213{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc_c00213{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m38_c00213{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m87_c00213{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00213{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00213{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m22_c00213{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m46_c00213{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00213{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m36_c00213{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00213{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00213{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m96_c00213{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m29_c00213{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m85_c00213{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m21_c00213{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m90_c00213{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00213{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m26_c00213{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);}
.m88_c00213{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2_c00213{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m66_c00213{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m94_c00213{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m45_c00213{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00213{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00213{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00213{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m57_c00213{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00213{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m43_c00213{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00213{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m81_c00213{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m27_c00213{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.me_c00213{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m80_c00213{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m76_c00213{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00213{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m82_c00213{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00213{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00213{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m77_c00213{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00213{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m74_c00213{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00213{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00213{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m72_c00213{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00213{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00213{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m59_c00213{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00213{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00213{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00213{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m86_c00213{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00213{vertical-align:0.000000px;}
.ls0_c00213{letter-spacing:0.000000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{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__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-17.380952px;}
.ws3_c00213{word-spacing:-1.764706px;}
.ws8_c00213{word-spacing:0.000000px;}
.ws1_c00213{word-spacing:6.527778px;}
.ws5_c00213{word-spacing:7.232143px;}
.ws7_c00213{word-spacing:8.333333px;}
.ws4_c00213{word-spacing:13.194444px;}
.ws6_c00213{word-spacing:18.333333px;}
.ws2_c00213{word-spacing:172.142857px;}
._0_c00213{width:43.472222px;}
.fc0_c00213{color:transparent;}
.fs1_c00213{font-size:54.000000px;}
.fs0_c00213{font-size:60.000000px;}
.y0_c00213{bottom:0.000000px;}
.y2c_c00213{bottom:146.550000px;}
.y2b_c00213{bottom:163.500000px;}
.y2a_c00213{bottom:205.200000px;}
.y29_c00213{bottom:225.750000px;}
.y28_c00213{bottom:245.550000px;}
.y27_c00213{bottom:265.650000px;}
.y26_c00213{bottom:285.450000px;}
.y25_c00213{bottom:305.550000px;}
.y24_c00213{bottom:326.100000px;}
.y23_c00213{bottom:345.900000px;}
.y22_c00213{bottom:365.700000px;}
.y21_c00213{bottom:385.800000px;}
.y20_c00213{bottom:405.600000px;}
.y1f_c00213{bottom:425.700000px;}
.y1e_c00213{bottom:445.800000px;}
.y1d_c00213{bottom:465.600000px;}
.y1c_c00213{bottom:485.400000px;}
.y1b_c00213{bottom:505.500000px;}
.y1a_c00213{bottom:525.300000px;}
.y19_c00213{bottom:545.400000px;}
.y18_c00213{bottom:565.500000px;}
.y17_c00213{bottom:585.600000px;}
.y16_c00213{bottom:605.400000px;}
.y15_c00213{bottom:625.500000px;}
.y14_c00213{bottom:645.300000px;}
.y13_c00213{bottom:665.400000px;}
.y12_c00213{bottom:685.500000px;}
.y11_c00213{bottom:705.300000px;}
.y10_c00213{bottom:726.000000px;}
.yf_c00213{bottom:746.100000px;}
.ye_c00213{bottom:766.200000px;}
.yd_c00213{bottom:786.000000px;}
.yc_c00213{bottom:806.100000px;}
.yb_c00213{bottom:826.200000px;}
.ya_c00213{bottom:846.000000px;}
.y9_c00213{bottom:866.100000px;}
.y8_c00213{bottom:886.200000px;}
.y7_c00213{bottom:906.000000px;}
.y6_c00213{bottom:926.100000px;}
.y5_c00213{bottom:946.200000px;}
.y4_c00213{bottom:966.300000px;}
.y3_c00213{bottom:986.100000px;}
.y2_c00213{bottom:1005.900000px;}
.y1_c00213{bottom:1044.300000px;}
.h3_c00213{height:54.000000px;}
.h2_c00213{height:60.000000px;}
.h0_c00213{height:1166.759949px;}
.h1_c00213{height:1167.000000px;}
.w0_c00213{width:918.720063px;}
.w1_c00213{width:918.750000px;}
.x0_c00213{left:0.000000px;}
.x13_c00213{left:96.750000px;}
.xc7_c00213{left:97.800000px;}
.x8b_c00213{left:111.450000px;}
.x72_c00213{left:116.850000px;}
.xf4_c00213{left:117.900000px;}
.x97_c00213{left:120.600000px;}
.x3_c00213{left:127.800000px;}
.x27_c00213{left:129.450000px;}
.x69_c00213{left:130.800000px;}
.xc8_c00213{left:133.500000px;}
.xbc_c00213{left:135.450000px;}
.x108_c00213{left:137.100000px;}
.xff_c00213{left:139.800000px;}
.x28_c00213{left:141.300000px;}
.x42_c00213{left:143.550000px;}
.xa6_c00213{left:146.100000px;}
.x118_c00213{left:148.350000px;}
.x14_c00213{left:151.050000px;}
.x43_c00213{left:155.400000px;}
.x37_c00213{left:160.350000px;}
.xd0_c00213{left:161.850000px;}
.x44_c00213{left:166.500000px;}
.x6a_c00213{left:167.850000px;}
.x52_c00213{left:169.650000px;}
.x15_c00213{left:171.600000px;}
.x8c_c00213{left:172.950000px;}
.xa9_c00213{left:174.150000px;}
.x29_c00213{left:175.200000px;}
.x100_c00213{left:177.600000px;}
.x98_c00213{left:179.700000px;}
.xa7_c00213{left:183.600000px;}
.xc9_c00213{left:186.000000px;}
.xd1_c00213{left:187.050000px;}
.x5f_c00213{left:189.450000px;}
.x4_c00213{left:191.850000px;}
.x109_c00213{left:192.900000px;}
.x10e_c00213{left:193.950000px;}
.x8d_c00213{left:195.300000px;}
.x16_c00213{left:197.100000px;}
.xfb_c00213{left:203.850000px;}
.x6b_c00213{left:204.900000px;}
.xca_c00213{left:206.550000px;}
.x83_c00213{left:212.850000px;}
.x11d_c00213{left:213.900000px;}
.xb0_c00213{left:215.400000px;}
.x45_c00213{left:216.900000px;}
.x60_c00213{left:217.950000px;}
.x53_c00213{left:219.750000px;}
.xcb_c00213{left:221.250000px;}
.x8e_c00213{left:222.300000px;}
.xd8_c00213{left:223.800000px;}
.xe0_c00213{left:225.900000px;}
.xc1_c00213{left:228.600000px;}
.xaa_c00213{left:230.250000px;}
.x2a_c00213{left:232.800000px;}
.xbd_c00213{left:233.850000px;}
.xb8_c00213{left:236.850000px;}
.x5_c00213{left:241.500000px;}
.x17_c00213{left:244.200000px;}
.x8f_c00213{left:250.800000px;}
.xd2_c00213{left:252.300000px;}
.x2b_c00213{left:254.400000px;}
.x73_c00213{left:255.900000px;}
.x84_c00213{left:258.150000px;}
.x38_c00213{left:259.650000px;}
.x9e_c00213{left:260.700000px;}
.x18_c00213{left:265.050000px;}
.xe1_c00213{left:266.550000px;}
.x10f_c00213{left:269.250000px;}
.x6_c00213{left:270.600000px;}
.x9f_c00213{left:272.250000px;}
.x7c_c00213{left:275.850000px;}
.xf0_c00213{left:280.200000px;}
.x90_c00213{left:281.700000px;}
.x61_c00213{left:284.850000px;}
.xb1_c00213{left:286.350000px;}
.x74_c00213{left:288.600000px;}
.xf9_c00213{left:289.950000px;}
.x6c_c00213{left:293.100000px;}
.x2c_c00213{left:294.300000px;}
.x85_c00213{left:296.250000px;}
.x11b_c00213{left:299.100000px;}
.x54_c00213{left:301.500000px;}
.xfc_c00213{left:302.850000px;}
.xab_c00213{left:308.700000px;}
.xa0_c00213{left:310.350000px;}
.xd3_c00213{left:312.750000px;}
.x2d_c00213{left:314.400000px;}
.x7_c00213{left:315.600000px;}
.xbe_c00213{left:316.950000px;}
.x62_c00213{left:318.000000px;}
.x101_c00213{left:319.200000px;}
.xe2_c00213{left:320.250000px;}
.x19_c00213{left:323.400000px;}
.x91_c00213{left:325.200000px;}
.xd9_c00213{left:328.200000px;}
.x86_c00213{left:330.150000px;}
.xc2_c00213{left:332.400000px;}
.x1a_c00213{left:333.900000px;}
.xf5_c00213{left:336.000000px;}
.x63_c00213{left:337.800000px;}
.x55_c00213{left:340.050000px;}
.xe3_c00213{left:341.100000px;}
.xda_c00213{left:342.600000px;}
.x99_c00213{left:345.900000px;}
.x114_c00213{left:349.050000px;}
.x39_c00213{left:351.750000px;}
.x2e_c00213{left:353.250000px;}
.xb2_c00213{left:355.050000px;}
.x46_c00213{left:357.750000px;}
.x7d_c00213{left:359.700000px;}
.x1b_c00213{left:362.400000px;}
.x92_c00213{left:365.550000px;}
.x56_c00213{left:367.350000px;}
.x115_c00213{left:369.150000px;}
.xc3_c00213{left:373.050000px;}
.xe4_c00213{left:374.550000px;}
.x64_c00213{left:376.350000px;}
.x110_c00213{left:378.450000px;}
.x47_c00213{left:380.100000px;}
.x75_c00213{left:381.450000px;}
.x8_c00213{left:382.500000px;}
.xbf_c00213{left:384.300000px;}
.x9a_c00213{left:386.250000px;}
.xea_c00213{left:387.450000px;}
.x3a_c00213{left:389.850000px;}
.x57_c00213{left:391.500000px;}
.xa1_c00213{left:394.200000px;}
.x119_c00213{left:395.550000px;}
.xc4_c00213{left:398.250000px;}
.x1_c00213{left:399.300000px;}
.xb3_c00213{left:400.800000px;}
.x2f_c00213{left:402.900000px;}
.x102_c00213{left:405.300000px;}
.x7e_c00213{left:406.800000px;}
.x3b_c00213{left:408.900000px;}
.xa8_c00213{left:410.250000px;}
.xdb_c00213{left:412.200000px;}
.x113_c00213{left:414.450000px;}
.xcc_c00213{left:416.100000px;}
.x48_c00213{left:418.200000px;}
.x76_c00213{left:420.000000px;}
.x9_c00213{left:424.200000px;}
.xf6_c00213{left:426.000000px;}
.xeb_c00213{left:430.050000px;}
.xb9_c00213{left:432.300000px;}
.x10a_c00213{left:434.400000px;}
.x1c_c00213{left:436.200000px;}
.x9b_c00213{left:437.700000px;}
.xc5_c00213{left:439.950000px;}
.x11f_c00213{left:444.300000px;}
.x65_c00213{left:445.500000px;}
.xf1_c00213{left:446.550000px;}
.x3c_c00213{left:449.550000px;}
.x1d_c00213{left:452.400000px;}
.xd4_c00213{left:454.950000px;}
.xa_c00213{left:456.300000px;}
.xf7_c00213{left:457.350000px;}
.x122_c00213{left:459.450000px;}
.x77_c00213{left:461.100000px;}
.x1e_c00213{left:468.600000px;}
.x30_c00213{left:471.000000px;}
.xec_c00213{left:472.500000px;}
.x49_c00213{left:474.300000px;}
.x3d_c00213{left:475.500000px;}
.x10b_c00213{left:477.300000px;}
.x6d_c00213{left:480.750000px;}
.x58_c00213{left:481.800000px;}
.x123_c00213{left:483.900000px;}
.xa2_c00213{left:485.700000px;}
.x105_c00213{left:487.200000px;}
.x87_c00213{left:488.550000px;}
.x7f_c00213{left:492.450000px;}
.xb_c00213{left:494.100000px;}
.x4a_c00213{left:495.900000px;}
.xc0_c00213{left:497.400000px;}
.xba_c00213{left:498.600000px;}
.xb4_c00213{left:501.000000px;}
.x3e_c00213{left:502.200000px;}
.x93_c00213{left:505.500000px;}
.x31_c00213{left:508.800000px;}
.xc_c00213{left:510.300000px;}
.x6e_c00213{left:511.350000px;}
.x59_c00213{left:513.900000px;}
.xfd_c00213{left:515.550000px;}
.x120_c00213{left:516.600000px;}
.xed_c00213{left:517.800000px;}
.xa3_c00213{left:518.850000px;}
.xdc_c00213{left:520.200000px;}
.xe5_c00213{left:524.400000px;}
.x4b_c00213{left:525.450000px;}
.xcd_c00213{left:526.950000px;}
.x106_c00213{left:528.900000px;}
.xd_c00213{left:536.250000px;}
.x6f_c00213{left:539.850000px;}
.x1f_c00213{left:541.350000px;}
.xd5_c00213{left:543.450000px;}
.xa4_c00213{left:546.150000px;}
.x80_c00213{left:547.200000px;}
.x3f_c00213{left:548.700000px;}
.x5a_c00213{left:550.950000px;}
.x32_c00213{left:553.050000px;}
.x107_c00213{left:556.950000px;}
.x20_c00213{left:559.350000px;}
.xfa_c00213{left:560.850000px;}
.x103_c00213{left:562.650000px;}
.xe6_c00213{left:564.750000px;}
.x94_c00213{left:567.000000px;}
.x124_c00213{left:571.800000px;}
.x4c_c00213{left:573.000000px;}
.xf2_c00213{left:574.050000px;}
.x78_c00213{left:575.250000px;}
.x21_c00213{left:579.900000px;}
.xe_c00213{left:584.850000px;}
.x121_c00213{left:586.800000px;}
.xac_c00213{left:592.650000px;}
.x33_c00213{left:595.200000px;}
.x81_c00213{left:598.650000px;}
.x4d_c00213{left:600.300000px;}
.x11a_c00213{left:602.100000px;}
.xbb_c00213{left:603.750000px;}
.x34_c00213{left:605.700000px;}
.xf8_c00213{left:609.600000px;}
.xdd_c00213{left:611.700000px;}
.xad_c00213{left:613.950000px;}
.x66_c00213{left:615.000000px;}
.xd6_c00213{left:616.050000px;}
.x5b_c00213{left:617.250000px;}
.x40_c00213{left:618.600000px;}
.xf_c00213{left:620.550000px;}
.x95_c00213{left:623.550000px;}
.x11e_c00213{left:625.650000px;}
.x4e_c00213{left:627.300000px;}
.x79_c00213{left:631.050000px;}
.x5c_c00213{left:632.400000px;}
.x22_c00213{left:633.900000px;}
.xee_c00213{left:635.550000px;}
.x70_c00213{left:638.400000px;}
.xb5_c00213{left:640.050000px;}
.x10c_c00213{left:641.550000px;}
.xc6_c00213{left:644.100000px;}
.x104_c00213{left:646.650000px;}
.x10_c00213{left:648.600000px;}
.x23_c00213{left:651.150000px;}
.x9c_c00213{left:652.200000px;}
.xef_c00213{left:653.850000px;}
.x96_c00213{left:655.200000px;}
.x88_c00213{left:657.450000px;}
.x11_c00213{left:659.100000px;}
.xae_c00213{left:661.800000px;}
.x67_c00213{left:665.700000px;}
.xfe_c00213{left:668.250000px;}
.x111_c00213{left:670.350000px;}
.xe7_c00213{left:671.550000px;}
.x24_c00213{left:676.650000px;}
.x12_c00213{left:678.150000px;}
.x35_c00213{left:679.950000px;}
.x5d_c00213{left:683.100000px;}
.xe8_c00213{left:687.000000px;}
.xb6_c00213{left:690.750000px;}
.x9d_c00213{left:692.550000px;}
.x4f_c00213{left:694.200000px;}
.xde_c00213{left:695.550000px;}
.x7a_c00213{left:696.600000px;}
.xaf_c00213{left:698.550000px;}
.x68_c00213{left:699.900000px;}
.x89_c00213{left:700.950000px;}
.x10d_c00213{left:705.900000px;}
.xf3_c00213{left:706.950000px;}
.x41_c00213{left:710.400000px;}
.x5e_c00213{left:711.900000px;}
.x82_c00213{left:713.850000px;}
.xa5_c00213{left:715.350000px;}
.x116_c00213{left:717.150000px;}
.x71_c00213{left:720.900000px;}
.x50_c00213{left:724.050000px;}
.x11c_c00213{left:725.550000px;}
.x25_c00213{left:726.750000px;}
.xb7_c00213{left:728.850000px;}
.xce_c00213{left:730.350000px;}
.x36_c00213{left:732.450000px;}
.xd7_c00213{left:733.800000px;}
.xdf_c00213{left:734.850000px;}
.x112_c00213{left:736.200000px;}
.x2_c00213{left:739.200000px;}
.x7b_c00213{left:741.300000px;}
.x26_c00213{left:744.000000px;}
.xcf_c00213{left:745.800000px;}
.x8a_c00213{left:751.650000px;}
.xe9_c00213{left:752.850000px;}
.x117_c00213{left:756.450000px;}
.x51_c00213{left:760.800000px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls0_c00213{letter-spacing:0.000000pt;}
.ws0_c00213{word-spacing:-15.449735pt;}
.ws3_c00213{word-spacing:-1.568627pt;}
.ws8_c00213{word-spacing:0.000000pt;}
.ws1_c00213{word-spacing:5.802469pt;}
.ws5_c00213{word-spacing:6.428571pt;}
.ws7_c00213{word-spacing:7.407407pt;}
.ws4_c00213{word-spacing:11.728395pt;}
.ws6_c00213{word-spacing:16.296296pt;}
.ws2_c00213{word-spacing:153.015873pt;}
._0_c00213{width:38.641975pt;}
.fs1_c00213{font-size:48.000000pt;}
.fs0_c00213{font-size:53.333333pt;}
.y0_c00213{bottom:0.000000pt;}
.y2c_c00213{bottom:130.266667pt;}
.y2b_c00213{bottom:145.333333pt;}
.y2a_c00213{bottom:182.400000pt;}
.y29_c00213{bottom:200.666667pt;}
.y28_c00213{bottom:218.266667pt;}
.y27_c00213{bottom:236.133333pt;}
.y26_c00213{bottom:253.733333pt;}
.y25_c00213{bottom:271.600000pt;}
.y24_c00213{bottom:289.866667pt;}
.y23_c00213{bottom:307.466667pt;}
.y22_c00213{bottom:325.066667pt;}
.y21_c00213{bottom:342.933333pt;}
.y20_c00213{bottom:360.533333pt;}
.y1f_c00213{bottom:378.400000pt;}
.y1e_c00213{bottom:396.266667pt;}
.y1d_c00213{bottom:413.866667pt;}
.y1c_c00213{bottom:431.466667pt;}
.y1b_c00213{bottom:449.333333pt;}
.y1a_c00213{bottom:466.933333pt;}
.y19_c00213{bottom:484.800000pt;}
.y18_c00213{bottom:502.666667pt;}
.y17_c00213{bottom:520.533333pt;}
.y16_c00213{bottom:538.133333pt;}
.y15_c00213{bottom:556.000000pt;}
.y14_c00213{bottom:573.600000pt;}
.y13_c00213{bottom:591.466667pt;}
.y12_c00213{bottom:609.333333pt;}
.y11_c00213{bottom:626.933333pt;}
.y10_c00213{bottom:645.333333pt;}
.yf_c00213{bottom:663.200000pt;}
.ye_c00213{bottom:681.066667pt;}
.yd_c00213{bottom:698.666667pt;}
.yc_c00213{bottom:716.533333pt;}
.yb_c00213{bottom:734.400000pt;}
.ya_c00213{bottom:752.000000pt;}
.y9_c00213{bottom:769.866667pt;}
.y8_c00213{bottom:787.733333pt;}
.y7_c00213{bottom:805.333333pt;}
.y6_c00213{bottom:823.200000pt;}
.y5_c00213{bottom:841.066667pt;}
.y4_c00213{bottom:858.933333pt;}
.y3_c00213{bottom:876.533333pt;}
.y2_c00213{bottom:894.133333pt;}
.y1_c00213{bottom:928.266667pt;}
.h3_c00213{height:48.000000pt;}
.h2_c00213{height:53.333333pt;}
.h0_c00213{height:1037.119955pt;}
.h1_c00213{height:1037.333333pt;}
.w0_c00213{width:816.640056pt;}
.w1_c00213{width:816.666667pt;}
.x0_c00213{left:0.000000pt;}
.x13_c00213{left:86.000000pt;}
.xc7_c00213{left:86.933333pt;}
.x8b_c00213{left:99.066667pt;}
.x72_c00213{left:103.866667pt;}
.xf4_c00213{left:104.800000pt;}
.x97_c00213{left:107.200000pt;}
.x3_c00213{left:113.600000pt;}
.x27_c00213{left:115.066667pt;}
.x69_c00213{left:116.266667pt;}
.xc8_c00213{left:118.666667pt;}
.xbc_c00213{left:120.400000pt;}
.x108_c00213{left:121.866667pt;}
.xff_c00213{left:124.266667pt;}
.x28_c00213{left:125.600000pt;}
.x42_c00213{left:127.600000pt;}
.xa6_c00213{left:129.866667pt;}
.x118_c00213{left:131.866667pt;}
.x14_c00213{left:134.266667pt;}
.x43_c00213{left:138.133333pt;}
.x37_c00213{left:142.533333pt;}
.xd0_c00213{left:143.866667pt;}
.x44_c00213{left:148.000000pt;}
.x6a_c00213{left:149.200000pt;}
.x52_c00213{left:150.800000pt;}
.x15_c00213{left:152.533333pt;}
.x8c_c00213{left:153.733333pt;}
.xa9_c00213{left:154.800000pt;}
.x29_c00213{left:155.733333pt;}
.x100_c00213{left:157.866667pt;}
.x98_c00213{left:159.733333pt;}
.xa7_c00213{left:163.200000pt;}
.xc9_c00213{left:165.333333pt;}
.xd1_c00213{left:166.266667pt;}
.x5f_c00213{left:168.400000pt;}
.x4_c00213{left:170.533333pt;}
.x109_c00213{left:171.466667pt;}
.x10e_c00213{left:172.400000pt;}
.x8d_c00213{left:173.600000pt;}
.x16_c00213{left:175.200000pt;}
.xfb_c00213{left:181.200000pt;}
.x6b_c00213{left:182.133333pt;}
.xca_c00213{left:183.600000pt;}
.x83_c00213{left:189.200000pt;}
.x11d_c00213{left:190.133333pt;}
.xb0_c00213{left:191.466667pt;}
.x45_c00213{left:192.800000pt;}
.x60_c00213{left:193.733333pt;}
.x53_c00213{left:195.333333pt;}
.xcb_c00213{left:196.666667pt;}
.x8e_c00213{left:197.600000pt;}
.xd8_c00213{left:198.933333pt;}
.xe0_c00213{left:200.800000pt;}
.xc1_c00213{left:203.200000pt;}
.xaa_c00213{left:204.666667pt;}
.x2a_c00213{left:206.933333pt;}
.xbd_c00213{left:207.866667pt;}
.xb8_c00213{left:210.533333pt;}
.x5_c00213{left:214.666667pt;}
.x17_c00213{left:217.066667pt;}
.x8f_c00213{left:222.933333pt;}
.xd2_c00213{left:224.266667pt;}
.x2b_c00213{left:226.133333pt;}
.x73_c00213{left:227.466667pt;}
.x84_c00213{left:229.466667pt;}
.x38_c00213{left:230.800000pt;}
.x9e_c00213{left:231.733333pt;}
.x18_c00213{left:235.600000pt;}
.xe1_c00213{left:236.933333pt;}
.x10f_c00213{left:239.333333pt;}
.x6_c00213{left:240.533333pt;}
.x9f_c00213{left:242.000000pt;}
.x7c_c00213{left:245.200000pt;}
.xf0_c00213{left:249.066667pt;}
.x90_c00213{left:250.400000pt;}
.x61_c00213{left:253.200000pt;}
.xb1_c00213{left:254.533333pt;}
.x74_c00213{left:256.533333pt;}
.xf9_c00213{left:257.733333pt;}
.x6c_c00213{left:260.533333pt;}
.x2c_c00213{left:261.600000pt;}
.x85_c00213{left:263.333333pt;}
.x11b_c00213{left:265.866667pt;}
.x54_c00213{left:268.000000pt;}
.xfc_c00213{left:269.200000pt;}
.xab_c00213{left:274.400000pt;}
.xa0_c00213{left:275.866667pt;}
.xd3_c00213{left:278.000000pt;}
.x2d_c00213{left:279.466667pt;}
.x7_c00213{left:280.533333pt;}
.xbe_c00213{left:281.733333pt;}
.x62_c00213{left:282.666667pt;}
.x101_c00213{left:283.733333pt;}
.xe2_c00213{left:284.666667pt;}
.x19_c00213{left:287.466667pt;}
.x91_c00213{left:289.066667pt;}
.xd9_c00213{left:291.733333pt;}
.x86_c00213{left:293.466667pt;}
.xc2_c00213{left:295.466667pt;}
.x1a_c00213{left:296.800000pt;}
.xf5_c00213{left:298.666667pt;}
.x63_c00213{left:300.266667pt;}
.x55_c00213{left:302.266667pt;}
.xe3_c00213{left:303.200000pt;}
.xda_c00213{left:304.533333pt;}
.x99_c00213{left:307.466667pt;}
.x114_c00213{left:310.266667pt;}
.x39_c00213{left:312.666667pt;}
.x2e_c00213{left:314.000000pt;}
.xb2_c00213{left:315.600000pt;}
.x46_c00213{left:318.000000pt;}
.x7d_c00213{left:319.733333pt;}
.x1b_c00213{left:322.133333pt;}
.x92_c00213{left:324.933333pt;}
.x56_c00213{left:326.533333pt;}
.x115_c00213{left:328.133333pt;}
.xc3_c00213{left:331.600000pt;}
.xe4_c00213{left:332.933333pt;}
.x64_c00213{left:334.533333pt;}
.x110_c00213{left:336.400000pt;}
.x47_c00213{left:337.866667pt;}
.x75_c00213{left:339.066667pt;}
.x8_c00213{left:340.000000pt;}
.xbf_c00213{left:341.600000pt;}
.x9a_c00213{left:343.333333pt;}
.xea_c00213{left:344.400000pt;}
.x3a_c00213{left:346.533333pt;}
.x57_c00213{left:348.000000pt;}
.xa1_c00213{left:350.400000pt;}
.x119_c00213{left:351.600000pt;}
.xc4_c00213{left:354.000000pt;}
.x1_c00213{left:354.933333pt;}
.xb3_c00213{left:356.266667pt;}
.x2f_c00213{left:358.133333pt;}
.x102_c00213{left:360.266667pt;}
.x7e_c00213{left:361.600000pt;}
.x3b_c00213{left:363.466667pt;}
.xa8_c00213{left:364.666667pt;}
.xdb_c00213{left:366.400000pt;}
.x113_c00213{left:368.400000pt;}
.xcc_c00213{left:369.866667pt;}
.x48_c00213{left:371.733333pt;}
.x76_c00213{left:373.333333pt;}
.x9_c00213{left:377.066667pt;}
.xf6_c00213{left:378.666667pt;}
.xeb_c00213{left:382.266667pt;}
.xb9_c00213{left:384.266667pt;}
.x10a_c00213{left:386.133333pt;}
.x1c_c00213{left:387.733333pt;}
.x9b_c00213{left:389.066667pt;}
.xc5_c00213{left:391.066667pt;}
.x11f_c00213{left:394.933333pt;}
.x65_c00213{left:396.000000pt;}
.xf1_c00213{left:396.933333pt;}
.x3c_c00213{left:399.600000pt;}
.x1d_c00213{left:402.133333pt;}
.xd4_c00213{left:404.400000pt;}
.xa_c00213{left:405.600000pt;}
.xf7_c00213{left:406.533333pt;}
.x122_c00213{left:408.400000pt;}
.x77_c00213{left:409.866667pt;}
.x1e_c00213{left:416.533333pt;}
.x30_c00213{left:418.666667pt;}
.xec_c00213{left:420.000000pt;}
.x49_c00213{left:421.600000pt;}
.x3d_c00213{left:422.666667pt;}
.x10b_c00213{left:424.266667pt;}
.x6d_c00213{left:427.333333pt;}
.x58_c00213{left:428.266667pt;}
.x123_c00213{left:430.133333pt;}
.xa2_c00213{left:431.733333pt;}
.x105_c00213{left:433.066667pt;}
.x87_c00213{left:434.266667pt;}
.x7f_c00213{left:437.733333pt;}
.xb_c00213{left:439.200000pt;}
.x4a_c00213{left:440.800000pt;}
.xc0_c00213{left:442.133333pt;}
.xba_c00213{left:443.200000pt;}
.xb4_c00213{left:445.333333pt;}
.x3e_c00213{left:446.400000pt;}
.x93_c00213{left:449.333333pt;}
.x31_c00213{left:452.266667pt;}
.xc_c00213{left:453.600000pt;}
.x6e_c00213{left:454.533333pt;}
.x59_c00213{left:456.800000pt;}
.xfd_c00213{left:458.266667pt;}
.x120_c00213{left:459.200000pt;}
.xed_c00213{left:460.266667pt;}
.xa3_c00213{left:461.200000pt;}
.xdc_c00213{left:462.400000pt;}
.xe5_c00213{left:466.133333pt;}
.x4b_c00213{left:467.066667pt;}
.xcd_c00213{left:468.400000pt;}
.x106_c00213{left:470.133333pt;}
.xd_c00213{left:476.666667pt;}
.x6f_c00213{left:479.866667pt;}
.x1f_c00213{left:481.200000pt;}
.xd5_c00213{left:483.066667pt;}
.xa4_c00213{left:485.466667pt;}
.x80_c00213{left:486.400000pt;}
.x3f_c00213{left:487.733333pt;}
.x5a_c00213{left:489.733333pt;}
.x32_c00213{left:491.600000pt;}
.x107_c00213{left:495.066667pt;}
.x20_c00213{left:497.200000pt;}
.xfa_c00213{left:498.533333pt;}
.x103_c00213{left:500.133333pt;}
.xe6_c00213{left:502.000000pt;}
.x94_c00213{left:504.000000pt;}
.x124_c00213{left:508.266667pt;}
.x4c_c00213{left:509.333333pt;}
.xf2_c00213{left:510.266667pt;}
.x78_c00213{left:511.333333pt;}
.x21_c00213{left:515.466667pt;}
.xe_c00213{left:519.866667pt;}
.x121_c00213{left:521.600000pt;}
.xac_c00213{left:526.800000pt;}
.x33_c00213{left:529.066667pt;}
.x81_c00213{left:532.133333pt;}
.x4d_c00213{left:533.600000pt;}
.x11a_c00213{left:535.200000pt;}
.xbb_c00213{left:536.666667pt;}
.x34_c00213{left:538.400000pt;}
.xf8_c00213{left:541.866667pt;}
.xdd_c00213{left:543.733333pt;}
.xad_c00213{left:545.733333pt;}
.x66_c00213{left:546.666667pt;}
.xd6_c00213{left:547.600000pt;}
.x5b_c00213{left:548.666667pt;}
.x40_c00213{left:549.866667pt;}
.xf_c00213{left:551.600000pt;}
.x95_c00213{left:554.266667pt;}
.x11e_c00213{left:556.133333pt;}
.x4e_c00213{left:557.600000pt;}
.x79_c00213{left:560.933333pt;}
.x5c_c00213{left:562.133333pt;}
.x22_c00213{left:563.466667pt;}
.xee_c00213{left:564.933333pt;}
.x70_c00213{left:567.466667pt;}
.xb5_c00213{left:568.933333pt;}
.x10c_c00213{left:570.266667pt;}
.xc6_c00213{left:572.533333pt;}
.x104_c00213{left:574.800000pt;}
.x10_c00213{left:576.533333pt;}
.x23_c00213{left:578.800000pt;}
.x9c_c00213{left:579.733333pt;}
.xef_c00213{left:581.200000pt;}
.x96_c00213{left:582.400000pt;}
.x88_c00213{left:584.400000pt;}
.x11_c00213{left:585.866667pt;}
.xae_c00213{left:588.266667pt;}
.x67_c00213{left:591.733333pt;}
.xfe_c00213{left:594.000000pt;}
.x111_c00213{left:595.866667pt;}
.xe7_c00213{left:596.933333pt;}
.x24_c00213{left:601.466667pt;}
.x12_c00213{left:602.800000pt;}
.x35_c00213{left:604.400000pt;}
.x5d_c00213{left:607.200000pt;}
.xe8_c00213{left:610.666667pt;}
.xb6_c00213{left:614.000000pt;}
.x9d_c00213{left:615.600000pt;}
.x4f_c00213{left:617.066667pt;}
.xde_c00213{left:618.266667pt;}
.x7a_c00213{left:619.200000pt;}
.xaf_c00213{left:620.933333pt;}
.x68_c00213{left:622.133333pt;}
.x89_c00213{left:623.066667pt;}
.x10d_c00213{left:627.466667pt;}
.xf3_c00213{left:628.400000pt;}
.x41_c00213{left:631.466667pt;}
.x5e_c00213{left:632.800000pt;}
.x82_c00213{left:634.533333pt;}
.xa5_c00213{left:635.866667pt;}
.x116_c00213{left:637.466667pt;}
.x71_c00213{left:640.800000pt;}
.x50_c00213{left:643.600000pt;}
.x11c_c00213{left:644.933333pt;}
.x25_c00213{left:646.000000pt;}
.xb7_c00213{left:647.866667pt;}
.xce_c00213{left:649.200000pt;}
.x36_c00213{left:651.066667pt;}
.xd7_c00213{left:652.266667pt;}
.xdf_c00213{left:653.200000pt;}
.x112_c00213{left:654.400000pt;}
.x2_c00213{left:657.066667pt;}
.x7b_c00213{left:658.933333pt;}
.x26_c00213{left:661.333333pt;}
.xcf_c00213{left:662.933333pt;}
.x8a_c00213{left:668.133333pt;}
.xe9_c00213{left:669.200000pt;}
.x117_c00213{left:672.400000pt;}
.x51_c00213{left:676.266667pt;}
}





/* 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_c00214 {
    display:none;
  }
  .loading-indicator_c00214.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00214 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_c00214 { 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_c00214" -> "#page-container .classname_c00214")
 */
.pf_c00214 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00214 { /* 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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00214 { /* 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_c00214 { /* 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_c00214 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00214 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00214 {overflow:visible;}
  }
}
.c_c00214 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00214 { /* 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_c00214:after { /* webkit #35443 */
  content: '';
}
.t_c00214:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00214 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 */
}
.__c00214 { /* 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_c00214 { /* info for Javascript */
  display:none;
}
.l_c00214 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00214 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00214 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00214: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_c00214 {
    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_c00214.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00214.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_c00214 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00214{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00214;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.000000;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;}
.ma2_c00214{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00214{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mad_c00214{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00214{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.maf_c00214{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00214{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00214{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00214{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m64_c00214{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00214{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00214{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mae_c00214{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00214{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00214{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00214{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00214{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mac_c00214{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.mab_c00214{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00214{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00214{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.maa_c00214{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m80_c00214{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m21_c00214{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m54_c00214{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m52_c00214{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00214{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m81_c00214{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m31_c00214{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00214{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00214{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m66_c00214{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00214{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb_c00214{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m86_c00214{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00214{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mf_c00214{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00214{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m55_c00214{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m27_c00214{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6_c00214{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00214{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m25_c00214{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m38_c00214{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m36_c00214{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00214{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma_c00214{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m32_c00214{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md_c00214{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m85_c00214{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00214{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00214{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00214{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m45_c00214{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m37_c00214{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00214{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m50_c00214{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00214{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m35_c00214{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00214{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00214{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m72_c00214{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00214{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00214{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00214{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m43_c00214{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00214{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m59_c00214{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00214{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00214{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m92_c00214{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m39_c00214{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00214{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m19_c00214{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00214{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00214{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m76_c00214{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m10_c00214{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m49_c00214{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00214{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m42_c00214{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00214{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m16_c00214{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m51_c00214{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m40_c00214{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00214{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00214{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m68_c00214{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m96_c00214{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00214{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m34_c00214{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m29_c00214{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m90_c00214{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00214{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m58_c00214{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00214{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m71_c00214{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m69_c00214{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m87_c00214{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00214{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m12_c00214{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m73_c00214{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m78_c00214{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00214{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00214{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00214{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00214{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m33_c00214{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m82_c00214{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c00214{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m56_c00214{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00214{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m14_c00214{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m91_c00214{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m23_c00214{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00214{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m74_c00214{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m11_c00214{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00214{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00214{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m28_c00214{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m97_c00214{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m47_c00214{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00214{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m20_c00214{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m88_c00214{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00214{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00214{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00214{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m46_c00214{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00214{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m41_c00214{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00214{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00214{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00214{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00214{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m24_c00214{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m93_c00214{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m17_c00214{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.me_c00214{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00214{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m44_c00214{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9_c00214{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00214{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m98_c00214{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m95_c00214{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00214{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m60_c00214{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00214{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00214{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00214{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m75_c00214{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00214{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00214{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m53_c00214{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m79_c00214{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m84_c00214{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m70_c00214{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m62_c00214{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m15_c00214{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m83_c00214{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00214{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00214{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m89_c00214{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m94_c00214{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m48_c00214{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00214{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m99_c00214{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m61_c00214{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00214{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00214{vertical-align:0.000000px;}
.ls0_c00214{letter-spacing:0.000000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{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__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00214{word-spacing:-6.250000px;}
.ws1_c00214{word-spacing:-3.030303px;}
.ws5_c00214{word-spacing:0.000000px;}
.ws3_c00214{word-spacing:2.702703px;}
.ws4_c00214{word-spacing:4.137931px;}
.ws0_c00214{word-spacing:13.472222px;}
.fc0_c00214{color:transparent;}
.fs0_c00214{font-size:60.000000px;}
.y0_c00214{bottom:0.000000px;}
.y2c_c00214{bottom:146.100000px;}
.y2b_c00214{bottom:161.700000px;}
.y2a_c00214{bottom:207.450000px;}
.y29_c00214{bottom:227.550000px;}
.y28_c00214{bottom:246.600000px;}
.y27_c00214{bottom:266.700000px;}
.y26_c00214{bottom:286.800000px;}
.y25_c00214{bottom:306.600000px;}
.y24_c00214{bottom:326.400000px;}
.y23_c00214{bottom:346.200000px;}
.y22_c00214{bottom:366.300000px;}
.y21_c00214{bottom:386.100000px;}
.y20_c00214{bottom:406.200000px;}
.y1f_c00214{bottom:426.300000px;}
.y1e_c00214{bottom:446.100000px;}
.y1d_c00214{bottom:465.900000px;}
.y1c_c00214{bottom:486.000000px;}
.y1b_c00214{bottom:505.800000px;}
.y1a_c00214{bottom:525.600000px;}
.y19_c00214{bottom:545.700000px;}
.y18_c00214{bottom:565.800000px;}
.y17_c00214{bottom:585.300000px;}
.y16_c00214{bottom:605.100000px;}
.y15_c00214{bottom:625.350000px;}
.y14_c00214{bottom:645.150000px;}
.y13_c00214{bottom:666.000000px;}
.y12_c00214{bottom:686.100000px;}
.y11_c00214{bottom:705.900000px;}
.y10_c00214{bottom:725.700000px;}
.yf_c00214{bottom:745.800000px;}
.ye_c00214{bottom:765.900000px;}
.yd_c00214{bottom:785.700000px;}
.yc_c00214{bottom:805.500000px;}
.yb_c00214{bottom:825.600000px;}
.ya_c00214{bottom:845.700000px;}
.y9_c00214{bottom:865.800000px;}
.y8_c00214{bottom:885.600000px;}
.y7_c00214{bottom:906.150000px;}
.y6_c00214{bottom:926.250000px;}
.y5_c00214{bottom:946.350000px;}
.y4_c00214{bottom:966.150000px;}
.y3_c00214{bottom:985.950000px;}
.y2_c00214{bottom:1006.500000px;}
.y1_c00214{bottom:1044.750000px;}
.h2_c00214{height:60.000000px;}
.h0_c00214{height:1166.759949px;}
.h1_c00214{height:1167.000000px;}
.w0_c00214{width:918.720063px;}
.w1_c00214{width:918.750000px;}
.x0_c00214{left:0.000000px;}
.x128_c00214{left:141.300000px;}
.xfc_c00214{left:142.650000px;}
.x11_c00214{left:143.700000px;}
.x1_c00214{left:145.500000px;}
.x133_c00214{left:160.200000px;}
.xf0_c00214{left:164.100000px;}
.xe0_c00214{left:168.000000px;}
.x3a_c00214{left:170.250000px;}
.xfd_c00214{left:172.500000px;}
.xa1_c00214{left:173.700000px;}
.x3_c00214{left:175.350000px;}
.x114_c00214{left:176.850000px;}
.x71_c00214{left:178.650000px;}
.xaa_c00214{left:181.950000px;}
.x119_c00214{left:183.900000px;}
.x44_c00214{left:185.250000px;}
.xd5_c00214{left:187.050000px;}
.x97_c00214{left:188.550000px;}
.xf1_c00214{left:189.600000px;}
.x7b_c00214{left:190.650000px;}
.xe1_c00214{left:193.500000px;}
.xdb_c00214{left:195.000000px;}
.x3b_c00214{left:200.850000px;}
.x115_c00214{left:202.350000px;}
.x4_c00214{left:205.200000px;}
.x45_c00214{left:206.550000px;}
.x12_c00214{left:207.750000px;}
.x103_c00214{left:210.000000px;}
.x129_c00214{left:211.200000px;}
.x8a_c00214{left:212.400000px;}
.x50_c00214{left:213.450000px;}
.x2e_c00214{left:214.650000px;}
.x120_c00214{left:218.400000px;}
.xa2_c00214{left:219.750000px;}
.x65_c00214{left:223.500000px;}
.x12e_c00214{left:225.150000px;}
.xdc_c00214{left:226.350000px;}
.xcc_c00214{left:227.850000px;}
.x13_c00214{left:229.050000px;}
.xf2_c00214{left:230.700000px;}
.x5d_c00214{left:231.750000px;}
.xe8_c00214{left:232.950000px;}
.x124_c00214{left:234.000000px;}
.x51_c00214{left:235.050000px;}
.x10f_c00214{left:237.450000px;}
.x11a_c00214{left:240.000000px;}
.x72_c00214{left:242.100000px;}
.xb1_c00214{left:243.300000px;}
.x66_c00214{left:246.900000px;}
.x1f_c00214{left:248.850000px;}
.xf3_c00214{left:250.500000px;}
.xa3_c00214{left:251.850000px;}
.x5_c00214{left:255.300000px;}
.xfe_c00214{left:257.550000px;}
.x7c_c00214{left:259.500000px;}
.xe9_c00214{left:261.750000px;}
.x5e_c00214{left:263.400000px;}
.x135_c00214{left:264.600000px;}
.x98_c00214{left:267.000000px;}
.xe2_c00214{left:268.050000px;}
.x116_c00214{left:269.250000px;}
.x52_c00214{left:270.300000px;}
.x8b_c00214{left:271.500000px;}
.xb2_c00214{left:273.900000px;}
.x67_c00214{left:276.450000px;}
.xcd_c00214{left:277.950000px;}
.x2f_c00214{left:279.750000px;}
.xea_c00214{left:282.600000px;}
.x83_c00214{left:283.800000px;}
.x136_c00214{left:286.200000px;}
.x99_c00214{left:287.550000px;}
.xa4_c00214{left:289.350000px;}
.x14_c00214{left:291.750000px;}
.x8c_c00214{left:293.100000px;}
.xdd_c00214{left:294.300000px;}
.xb7_c00214{left:295.650000px;}
.x46_c00214{left:297.300000px;}
.x108_c00214{left:299.400000px;}
.x20_c00214{left:303.600000px;}
.x53_c00214{left:305.550000px;}
.xbc_c00214{left:307.950000px;}
.x73_c00214{left:310.200000px;}
.x117_c00214{left:311.700000px;}
.x125_c00214{left:313.200000px;}
.x6_c00214{left:314.400000px;}
.x11b_c00214{left:321.000000px;}
.x68_c00214{left:322.200000px;}
.x47_c00214{left:325.050000px;}
.x8d_c00214{left:327.300000px;}
.x15_c00214{left:329.850000px;}
.xce_c00214{left:331.200000px;}
.x54_c00214{left:333.600000px;}
.x30_c00214{left:337.050000px;}
.x7d_c00214{left:338.400000px;}
.xe3_c00214{left:340.800000px;}
.x69_c00214{left:343.050000px;}
.xbd_c00214{left:344.250000px;}
.x7_c00214{left:347.100000px;}
.xf4_c00214{left:348.450000px;}
.x110_c00214{left:349.800000px;}
.xeb_c00214{left:352.200000px;}
.x3c_c00214{left:354.150000px;}
.x12f_c00214{left:355.500000px;}
.x48_c00214{left:358.500000px;}
.x31_c00214{left:360.450000px;}
.xc4_c00214{left:362.550000px;}
.xbe_c00214{left:364.050000px;}
.xd6_c00214{left:366.000000px;}
.x7e_c00214{left:370.050000px;}
.xec_c00214{left:371.250000px;}
.x8_c00214{left:373.350000px;}
.x6a_c00214{left:374.400000px;}
.x21_c00214{left:376.800000px;}
.x16_c00214{left:380.250000px;}
.xa5_c00214{left:381.450000px;}
.x121_c00214{left:382.950000px;}
.x5f_c00214{left:385.050000px;}
.x22_c00214{left:387.300000px;}
.x32_c00214{left:388.500000px;}
.x111_c00214{left:390.900000px;}
.xbf_c00214{left:392.550000px;}
.xab_c00214{left:395.400000px;}
.x8e_c00214{left:396.450000px;}
.xe4_c00214{left:398.700000px;}
.xf5_c00214{left:399.900000px;}
.x9a_c00214{left:401.400000px;}
.xff_c00214{left:405.450000px;}
.x126_c00214{left:408.150000px;}
.xd7_c00214{left:409.950000px;}
.x109_c00214{left:412.050000px;}
.xc9_c00214{left:413.400000px;}
.x104_c00214{left:415.350000px;}
.x74_c00214{left:421.050000px;}
.x9_c00214{left:422.250000px;}
.x23_c00214{left:424.800000px;}
.x6b_c00214{left:426.600000px;}
.x3d_c00214{left:428.700000px;}
.x60_c00214{left:431.550000px;}
.x100_c00214{left:433.200000px;}
.x8f_c00214{left:434.550000px;}
.xc0_c00214{left:435.750000px;}
.xac_c00214{left:436.800000px;}
.xcf_c00214{left:439.500000px;}
.x2_c00214{left:441.750000px;}
.x17_c00214{left:444.300000px;}
.x6c_c00214{left:446.100000px;}
.xb3_c00214{left:447.750000px;}
.x49_c00214{left:450.000000px;}
.xf6_c00214{left:454.650000px;}
.x90_c00214{left:456.150000px;}
.x55_c00214{left:458.250000px;}
.x24_c00214{left:462.600000px;}
.xca_c00214{left:464.100000px;}
.x3e_c00214{left:465.450000px;}
.xd0_c00214{left:468.000000px;}
.xc5_c00214{left:473.100000px;}
.x9b_c00214{left:475.500000px;}
.x61_c00214{left:476.550000px;}
.x33_c00214{left:478.200000px;}
.x105_c00214{left:483.450000px;}
.x91_c00214{left:484.650000px;}
.x4a_c00214{left:487.050000px;}
.x18_c00214{left:490.050000px;}
.x56_c00214{left:494.250000px;}
.x11c_c00214{left:495.750000px;}
.x3f_c00214{left:497.550000px;}
.x84_c00214{left:498.900000px;}
.xa_c00214{left:504.300000px;}
.xb4_c00214{left:505.650000px;}
.x122_c00214{left:506.700000px;}
.x12c_c00214{left:508.500000px;}
.x101_c00214{left:509.550000px;}
.x112_c00214{left:510.750000px;}
.xe5_c00214{left:513.900000px;}
.x10a_c00214{left:516.000000px;}
.x6d_c00214{left:517.350000px;}
.xc1_c00214{left:519.000000px;}
.x34_c00214{left:520.650000px;}
.xde_c00214{left:522.450000px;}
.x62_c00214{left:524.100000px;}
.x9c_c00214{left:525.150000px;}
.x19_c00214{left:526.800000px;}
.x85_c00214{left:529.200000px;}
.x92_c00214{left:531.450000px;}
.xb_c00214{left:535.200000px;}
.x7f_c00214{left:537.900000px;}
.xe6_c00214{left:539.100000px;}
.xf7_c00214{left:540.750000px;}
.x4b_c00214{left:542.100000px;}
.x9d_c00214{left:545.250000px;}
.x12a_c00214{left:546.300000px;}
.x12d_c00214{left:547.350000px;}
.xc2_c00214{left:549.600000px;}
.x25_c00214{left:551.100000px;}
.xad_c00214{left:553.500000px;}
.x57_c00214{left:555.450000px;}
.xc6_c00214{left:556.650000px;}
.xd1_c00214{left:560.400000px;}
.x40_c00214{left:562.050000px;}
.x10b_c00214{left:564.300000px;}
.x75_c00214{left:567.150000px;}
.xc3_c00214{left:569.700000px;}
.x26_c00214{left:571.650000px;}
.xc_c00214{left:574.050000px;}
.xb8_c00214{left:575.100000px;}
.x127_c00214{left:576.300000px;}
.x1a_c00214{left:579.000000px;}
.x12b_c00214{left:580.500000px;}
.xd8_c00214{left:581.550000px;}
.xa6_c00214{left:584.850000px;}
.xae_c00214{left:586.650000px;}
.x10c_c00214{left:588.450000px;}
.x6e_c00214{left:592.200000px;}
.x137_c00214{left:593.850000px;}
.xed_c00214{left:595.200000px;}
.x27_c00214{left:596.550000px;}
.x58_c00214{left:597.900000px;}
.xa7_c00214{left:598.950000px;}
.x86_c00214{left:601.200000px;}
.x93_c00214{left:603.150000px;}
.x76_c00214{left:604.650000px;}
.xc7_c00214{left:608.550000px;}
.x63_c00214{left:610.500000px;}
.xee_c00214{left:612.150000px;}
.x35_c00214{left:615.750000px;}
.xf8_c00214{left:618.150000px;}
.x11d_c00214{left:619.500000px;}
.x4c_c00214{left:621.000000px;}
.x87_c00214{left:623.100000px;}
.x28_c00214{left:624.600000px;}
.x77_c00214{left:626.550000px;}
.x59_c00214{left:628.500000px;}
.x130_c00214{left:629.550000px;}
.xa8_c00214{left:632.400000px;}
.x36_c00214{left:635.250000px;}
.x11e_c00214{left:636.750000px;}
.x113_c00214{left:638.700000px;}
.xd_c00214{left:640.650000px;}
.xb9_c00214{left:642.300000px;}
.x123_c00214{left:643.500000px;}
.x1b_c00214{left:644.850000px;}
.x94_c00214{left:648.150000px;}
.x37_c00214{left:649.350000px;}
.x10d_c00214{left:650.400000px;}
.xd2_c00214{left:651.450000px;}
.x106_c00214{left:652.950000px;}
.x78_c00214{left:655.050000px;}
.x131_c00214{left:656.250000px;}
.x4d_c00214{left:657.750000px;}
.xaf_c00214{left:659.250000px;}
.x41_c00214{left:660.300000px;}
.xba_c00214{left:663.150000px;}
.xdf_c00214{left:665.400000px;}
.x1c_c00214{left:670.800000px;}
.x80_c00214{left:672.750000px;}
.x29_c00214{left:676.500000px;}
.x4e_c00214{left:677.550000px;}
.xf9_c00214{left:680.100000px;}
.x9e_c00214{left:681.750000px;}
.xe_c00214{left:683.550000px;}
.xe7_c00214{left:684.900000px;}
.xef_c00214{left:686.250000px;}
.xd3_c00214{left:687.450000px;}
.x11f_c00214{left:689.700000px;}
.x102_c00214{left:691.800000px;}
.x6f_c00214{left:693.750000px;}
.x5a_c00214{left:695.100000px;}
.x132_c00214{left:696.600000px;}
.xfa_c00214{left:698.400000px;}
.x9f_c00214{left:700.050000px;}
.x2a_c00214{left:702.000000px;}
.x95_c00214{left:707.250000px;}
.xb0_c00214{left:708.900000px;}
.xbb_c00214{left:712.200000px;}
.xf_c00214{left:717.450000px;}
.x10e_c00214{left:719.550000px;}
.x42_c00214{left:721.200000px;}
.x38_c00214{left:723.900000px;}
.x2b_c00214{left:725.100000px;}
.x81_c00214{left:730.350000px;}
.x5b_c00214{left:732.600000px;}
.x39_c00214{left:734.700000px;}
.x88_c00214{left:740.100000px;}
.x79_c00214{left:741.750000px;}
.xcb_c00214{left:744.000000px;}
.xd4_c00214{left:745.800000px;}
.xa0_c00214{left:747.150000px;}
.x64_c00214{left:749.100000px;}
.xb5_c00214{left:751.200000px;}
.x2c_c00214{left:753.150000px;}
.x10_c00214{left:756.000000px;}
.x1d_c00214{left:757.500000px;}
.x96_c00214{left:759.150000px;}
.xa9_c00214{left:761.550000px;}
.x4f_c00214{left:763.950000px;}
.xfb_c00214{left:766.500000px;}
.x43_c00214{left:768.750000px;}
.x134_c00214{left:770.700000px;}
.x70_c00214{left:776.250000px;}
.x89_c00214{left:778.650000px;}
.x7a_c00214{left:780.600000px;}
.xb6_c00214{left:782.100000px;}
.x2d_c00214{left:783.450000px;}
.xd9_c00214{left:787.200000px;}
.x82_c00214{left:788.250000px;}
.x107_c00214{left:789.750000px;}
.x1e_c00214{left:790.950000px;}
.x118_c00214{left:798.000000px;}
.x5c_c00214{left:799.200000px;}
.xda_c00214{left:800.850000px;}
.xc8_c00214{left:803.250000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws2_c00214{word-spacing:-5.555556pt;}
.ws1_c00214{word-spacing:-2.693603pt;}
.ws5_c00214{word-spacing:0.000000pt;}
.ws3_c00214{word-spacing:2.402402pt;}
.ws4_c00214{word-spacing:3.678161pt;}
.ws0_c00214{word-spacing:11.975309pt;}
.fs0_c00214{font-size:53.333333pt;}
.y0_c00214{bottom:0.000000pt;}
.y2c_c00214{bottom:129.866667pt;}
.y2b_c00214{bottom:143.733333pt;}
.y2a_c00214{bottom:184.400000pt;}
.y29_c00214{bottom:202.266667pt;}
.y28_c00214{bottom:219.200000pt;}
.y27_c00214{bottom:237.066667pt;}
.y26_c00214{bottom:254.933333pt;}
.y25_c00214{bottom:272.533333pt;}
.y24_c00214{bottom:290.133333pt;}
.y23_c00214{bottom:307.733333pt;}
.y22_c00214{bottom:325.600000pt;}
.y21_c00214{bottom:343.200000pt;}
.y20_c00214{bottom:361.066667pt;}
.y1f_c00214{bottom:378.933333pt;}
.y1e_c00214{bottom:396.533333pt;}
.y1d_c00214{bottom:414.133333pt;}
.y1c_c00214{bottom:432.000000pt;}
.y1b_c00214{bottom:449.600000pt;}
.y1a_c00214{bottom:467.200000pt;}
.y19_c00214{bottom:485.066667pt;}
.y18_c00214{bottom:502.933333pt;}
.y17_c00214{bottom:520.266667pt;}
.y16_c00214{bottom:537.866667pt;}
.y15_c00214{bottom:555.866667pt;}
.y14_c00214{bottom:573.466667pt;}
.y13_c00214{bottom:592.000000pt;}
.y12_c00214{bottom:609.866667pt;}
.y11_c00214{bottom:627.466667pt;}
.y10_c00214{bottom:645.066667pt;}
.yf_c00214{bottom:662.933333pt;}
.ye_c00214{bottom:680.800000pt;}
.yd_c00214{bottom:698.400000pt;}
.yc_c00214{bottom:716.000000pt;}
.yb_c00214{bottom:733.866667pt;}
.ya_c00214{bottom:751.733333pt;}
.y9_c00214{bottom:769.600000pt;}
.y8_c00214{bottom:787.200000pt;}
.y7_c00214{bottom:805.466667pt;}
.y6_c00214{bottom:823.333333pt;}
.y5_c00214{bottom:841.200000pt;}
.y4_c00214{bottom:858.800000pt;}
.y3_c00214{bottom:876.400000pt;}
.y2_c00214{bottom:894.666667pt;}
.y1_c00214{bottom:928.666667pt;}
.h2_c00214{height:53.333333pt;}
.h0_c00214{height:1037.119955pt;}
.h1_c00214{height:1037.333333pt;}
.w0_c00214{width:816.640056pt;}
.w1_c00214{width:816.666667pt;}
.x0_c00214{left:0.000000pt;}
.x128_c00214{left:125.600000pt;}
.xfc_c00214{left:126.800000pt;}
.x11_c00214{left:127.733333pt;}
.x1_c00214{left:129.333333pt;}
.x133_c00214{left:142.400000pt;}
.xf0_c00214{left:145.866667pt;}
.xe0_c00214{left:149.333333pt;}
.x3a_c00214{left:151.333333pt;}
.xfd_c00214{left:153.333333pt;}
.xa1_c00214{left:154.400000pt;}
.x3_c00214{left:155.866667pt;}
.x114_c00214{left:157.200000pt;}
.x71_c00214{left:158.800000pt;}
.xaa_c00214{left:161.733333pt;}
.x119_c00214{left:163.466667pt;}
.x44_c00214{left:164.666667pt;}
.xd5_c00214{left:166.266667pt;}
.x97_c00214{left:167.600000pt;}
.xf1_c00214{left:168.533333pt;}
.x7b_c00214{left:169.466667pt;}
.xe1_c00214{left:172.000000pt;}
.xdb_c00214{left:173.333333pt;}
.x3b_c00214{left:178.533333pt;}
.x115_c00214{left:179.866667pt;}
.x4_c00214{left:182.400000pt;}
.x45_c00214{left:183.600000pt;}
.x12_c00214{left:184.666667pt;}
.x103_c00214{left:186.666667pt;}
.x129_c00214{left:187.733333pt;}
.x8a_c00214{left:188.800000pt;}
.x50_c00214{left:189.733333pt;}
.x2e_c00214{left:190.800000pt;}
.x120_c00214{left:194.133333pt;}
.xa2_c00214{left:195.333333pt;}
.x65_c00214{left:198.666667pt;}
.x12e_c00214{left:200.133333pt;}
.xdc_c00214{left:201.200000pt;}
.xcc_c00214{left:202.533333pt;}
.x13_c00214{left:203.600000pt;}
.xf2_c00214{left:205.066667pt;}
.x5d_c00214{left:206.000000pt;}
.xe8_c00214{left:207.066667pt;}
.x124_c00214{left:208.000000pt;}
.x51_c00214{left:208.933333pt;}
.x10f_c00214{left:211.066667pt;}
.x11a_c00214{left:213.333333pt;}
.x72_c00214{left:215.200000pt;}
.xb1_c00214{left:216.266667pt;}
.x66_c00214{left:219.466667pt;}
.x1f_c00214{left:221.200000pt;}
.xf3_c00214{left:222.666667pt;}
.xa3_c00214{left:223.866667pt;}
.x5_c00214{left:226.933333pt;}
.xfe_c00214{left:228.933333pt;}
.x7c_c00214{left:230.666667pt;}
.xe9_c00214{left:232.666667pt;}
.x5e_c00214{left:234.133333pt;}
.x135_c00214{left:235.200000pt;}
.x98_c00214{left:237.333333pt;}
.xe2_c00214{left:238.266667pt;}
.x116_c00214{left:239.333333pt;}
.x52_c00214{left:240.266667pt;}
.x8b_c00214{left:241.333333pt;}
.xb2_c00214{left:243.466667pt;}
.x67_c00214{left:245.733333pt;}
.xcd_c00214{left:247.066667pt;}
.x2f_c00214{left:248.666667pt;}
.xea_c00214{left:251.200000pt;}
.x83_c00214{left:252.266667pt;}
.x136_c00214{left:254.400000pt;}
.x99_c00214{left:255.600000pt;}
.xa4_c00214{left:257.200000pt;}
.x14_c00214{left:259.333333pt;}
.x8c_c00214{left:260.533333pt;}
.xdd_c00214{left:261.600000pt;}
.xb7_c00214{left:262.800000pt;}
.x46_c00214{left:264.266667pt;}
.x108_c00214{left:266.133333pt;}
.x20_c00214{left:269.866667pt;}
.x53_c00214{left:271.600000pt;}
.xbc_c00214{left:273.733333pt;}
.x73_c00214{left:275.733333pt;}
.x117_c00214{left:277.066667pt;}
.x125_c00214{left:278.400000pt;}
.x6_c00214{left:279.466667pt;}
.x11b_c00214{left:285.333333pt;}
.x68_c00214{left:286.400000pt;}
.x47_c00214{left:288.933333pt;}
.x8d_c00214{left:290.933333pt;}
.x15_c00214{left:293.200000pt;}
.xce_c00214{left:294.400000pt;}
.x54_c00214{left:296.533333pt;}
.x30_c00214{left:299.600000pt;}
.x7d_c00214{left:300.800000pt;}
.xe3_c00214{left:302.933333pt;}
.x69_c00214{left:304.933333pt;}
.xbd_c00214{left:306.000000pt;}
.x7_c00214{left:308.533333pt;}
.xf4_c00214{left:309.733333pt;}
.x110_c00214{left:310.933333pt;}
.xeb_c00214{left:313.066667pt;}
.x3c_c00214{left:314.800000pt;}
.x12f_c00214{left:316.000000pt;}
.x48_c00214{left:318.666667pt;}
.x31_c00214{left:320.400000pt;}
.xc4_c00214{left:322.266667pt;}
.xbe_c00214{left:323.600000pt;}
.xd6_c00214{left:325.333333pt;}
.x7e_c00214{left:328.933333pt;}
.xec_c00214{left:330.000000pt;}
.x8_c00214{left:331.866667pt;}
.x6a_c00214{left:332.800000pt;}
.x21_c00214{left:334.933333pt;}
.x16_c00214{left:338.000000pt;}
.xa5_c00214{left:339.066667pt;}
.x121_c00214{left:340.400000pt;}
.x5f_c00214{left:342.266667pt;}
.x22_c00214{left:344.266667pt;}
.x32_c00214{left:345.333333pt;}
.x111_c00214{left:347.466667pt;}
.xbf_c00214{left:348.933333pt;}
.xab_c00214{left:351.466667pt;}
.x8e_c00214{left:352.400000pt;}
.xe4_c00214{left:354.400000pt;}
.xf5_c00214{left:355.466667pt;}
.x9a_c00214{left:356.800000pt;}
.xff_c00214{left:360.400000pt;}
.x126_c00214{left:362.800000pt;}
.xd7_c00214{left:364.400000pt;}
.x109_c00214{left:366.266667pt;}
.xc9_c00214{left:367.466667pt;}
.x104_c00214{left:369.200000pt;}
.x74_c00214{left:374.266667pt;}
.x9_c00214{left:375.333333pt;}
.x23_c00214{left:377.600000pt;}
.x6b_c00214{left:379.200000pt;}
.x3d_c00214{left:381.066667pt;}
.x60_c00214{left:383.600000pt;}
.x100_c00214{left:385.066667pt;}
.x8f_c00214{left:386.266667pt;}
.xc0_c00214{left:387.333333pt;}
.xac_c00214{left:388.266667pt;}
.xcf_c00214{left:390.666667pt;}
.x2_c00214{left:392.666667pt;}
.x17_c00214{left:394.933333pt;}
.x6c_c00214{left:396.533333pt;}
.xb3_c00214{left:398.000000pt;}
.x49_c00214{left:400.000000pt;}
.xf6_c00214{left:404.133333pt;}
.x90_c00214{left:405.466667pt;}
.x55_c00214{left:407.333333pt;}
.x24_c00214{left:411.200000pt;}
.xca_c00214{left:412.533333pt;}
.x3e_c00214{left:413.733333pt;}
.xd0_c00214{left:416.000000pt;}
.xc5_c00214{left:420.533333pt;}
.x9b_c00214{left:422.666667pt;}
.x61_c00214{left:423.600000pt;}
.x33_c00214{left:425.066667pt;}
.x105_c00214{left:429.733333pt;}
.x91_c00214{left:430.800000pt;}
.x4a_c00214{left:432.933333pt;}
.x18_c00214{left:435.600000pt;}
.x56_c00214{left:439.333333pt;}
.x11c_c00214{left:440.666667pt;}
.x3f_c00214{left:442.266667pt;}
.x84_c00214{left:443.466667pt;}
.xa_c00214{left:448.266667pt;}
.xb4_c00214{left:449.466667pt;}
.x122_c00214{left:450.400000pt;}
.x12c_c00214{left:452.000000pt;}
.x101_c00214{left:452.933333pt;}
.x112_c00214{left:454.000000pt;}
.xe5_c00214{left:456.800000pt;}
.x10a_c00214{left:458.666667pt;}
.x6d_c00214{left:459.866667pt;}
.xc1_c00214{left:461.333333pt;}
.x34_c00214{left:462.800000pt;}
.xde_c00214{left:464.400000pt;}
.x62_c00214{left:465.866667pt;}
.x9c_c00214{left:466.800000pt;}
.x19_c00214{left:468.266667pt;}
.x85_c00214{left:470.400000pt;}
.x92_c00214{left:472.400000pt;}
.xb_c00214{left:475.733333pt;}
.x7f_c00214{left:478.133333pt;}
.xe6_c00214{left:479.200000pt;}
.xf7_c00214{left:480.666667pt;}
.x4b_c00214{left:481.866667pt;}
.x9d_c00214{left:484.666667pt;}
.x12a_c00214{left:485.600000pt;}
.x12d_c00214{left:486.533333pt;}
.xc2_c00214{left:488.533333pt;}
.x25_c00214{left:489.866667pt;}
.xad_c00214{left:492.000000pt;}
.x57_c00214{left:493.733333pt;}
.xc6_c00214{left:494.800000pt;}
.xd1_c00214{left:498.133333pt;}
.x40_c00214{left:499.600000pt;}
.x10b_c00214{left:501.600000pt;}
.x75_c00214{left:504.133333pt;}
.xc3_c00214{left:506.400000pt;}
.x26_c00214{left:508.133333pt;}
.xc_c00214{left:510.266667pt;}
.xb8_c00214{left:511.200000pt;}
.x127_c00214{left:512.266667pt;}
.x1a_c00214{left:514.666667pt;}
.x12b_c00214{left:516.000000pt;}
.xd8_c00214{left:516.933333pt;}
.xa6_c00214{left:519.866667pt;}
.xae_c00214{left:521.466667pt;}
.x10c_c00214{left:523.066667pt;}
.x6e_c00214{left:526.400000pt;}
.x137_c00214{left:527.866667pt;}
.xed_c00214{left:529.066667pt;}
.x27_c00214{left:530.266667pt;}
.x58_c00214{left:531.466667pt;}
.xa7_c00214{left:532.400000pt;}
.x86_c00214{left:534.400000pt;}
.x93_c00214{left:536.133333pt;}
.x76_c00214{left:537.466667pt;}
.xc7_c00214{left:540.933333pt;}
.x63_c00214{left:542.666667pt;}
.xee_c00214{left:544.133333pt;}
.x35_c00214{left:547.333333pt;}
.xf8_c00214{left:549.466667pt;}
.x11d_c00214{left:550.666667pt;}
.x4c_c00214{left:552.000000pt;}
.x87_c00214{left:553.866667pt;}
.x28_c00214{left:555.200000pt;}
.x77_c00214{left:556.933333pt;}
.x59_c00214{left:558.666667pt;}
.x130_c00214{left:559.600000pt;}
.xa8_c00214{left:562.133333pt;}
.x36_c00214{left:564.666667pt;}
.x11e_c00214{left:566.000000pt;}
.x113_c00214{left:567.733333pt;}
.xd_c00214{left:569.466667pt;}
.xb9_c00214{left:570.933333pt;}
.x123_c00214{left:572.000000pt;}
.x1b_c00214{left:573.200000pt;}
.x94_c00214{left:576.133333pt;}
.x37_c00214{left:577.200000pt;}
.x10d_c00214{left:578.133333pt;}
.xd2_c00214{left:579.066667pt;}
.x106_c00214{left:580.400000pt;}
.x78_c00214{left:582.266667pt;}
.x131_c00214{left:583.333333pt;}
.x4d_c00214{left:584.666667pt;}
.xaf_c00214{left:586.000000pt;}
.x41_c00214{left:586.933333pt;}
.xba_c00214{left:589.466667pt;}
.xdf_c00214{left:591.466667pt;}
.x1c_c00214{left:596.266667pt;}
.x80_c00214{left:598.000000pt;}
.x29_c00214{left:601.333333pt;}
.x4e_c00214{left:602.266667pt;}
.xf9_c00214{left:604.533333pt;}
.x9e_c00214{left:606.000000pt;}
.xe_c00214{left:607.600000pt;}
.xe7_c00214{left:608.800000pt;}
.xef_c00214{left:610.000000pt;}
.xd3_c00214{left:611.066667pt;}
.x11f_c00214{left:613.066667pt;}
.x102_c00214{left:614.933333pt;}
.x6f_c00214{left:616.666667pt;}
.x5a_c00214{left:617.866667pt;}
.x132_c00214{left:619.200000pt;}
.xfa_c00214{left:620.800000pt;}
.x9f_c00214{left:622.266667pt;}
.x2a_c00214{left:624.000000pt;}
.x95_c00214{left:628.666667pt;}
.xb0_c00214{left:630.133333pt;}
.xbb_c00214{left:633.066667pt;}
.xf_c00214{left:637.733333pt;}
.x10e_c00214{left:639.600000pt;}
.x42_c00214{left:641.066667pt;}
.x38_c00214{left:643.466667pt;}
.x2b_c00214{left:644.533333pt;}
.x81_c00214{left:649.200000pt;}
.x5b_c00214{left:651.200000pt;}
.x39_c00214{left:653.066667pt;}
.x88_c00214{left:657.866667pt;}
.x79_c00214{left:659.333333pt;}
.xcb_c00214{left:661.333333pt;}
.xd4_c00214{left:662.933333pt;}
.xa0_c00214{left:664.133333pt;}
.x64_c00214{left:665.866667pt;}
.xb5_c00214{left:667.733333pt;}
.x2c_c00214{left:669.466667pt;}
.x10_c00214{left:672.000000pt;}
.x1d_c00214{left:673.333333pt;}
.x96_c00214{left:674.800000pt;}
.xa9_c00214{left:676.933333pt;}
.x4f_c00214{left:679.066667pt;}
.xfb_c00214{left:681.333333pt;}
.x43_c00214{left:683.333333pt;}
.x134_c00214{left:685.066667pt;}
.x70_c00214{left:690.000000pt;}
.x89_c00214{left:692.133333pt;}
.x7a_c00214{left:693.866667pt;}
.xb6_c00214{left:695.200000pt;}
.x2d_c00214{left:696.400000pt;}
.xd9_c00214{left:699.733333pt;}
.x82_c00214{left:700.666667pt;}
.x107_c00214{left:702.000000pt;}
.x1e_c00214{left:703.066667pt;}
.x118_c00214{left:709.333333pt;}
.x5c_c00214{left:710.400000pt;}
.xda_c00214{left:711.866667pt;}
.xc8_c00214{left:714.000000pt;}
}





/* 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_c00215 {
    display:none;
  }
  .loading-indicator_c00215.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00215 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_c00215 { 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_c00215" -> "#page-container .classname_c00215")
 */
.pf_c00215 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00215 { /* 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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00215 { /* 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_c00215 { /* 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_c00215 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00215 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00215 {overflow:visible;}
  }
}
.c_c00215 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00215 { /* 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_c00215:after { /* webkit #35443 */
  content: '';
}
.t_c00215:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00215 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 */
}
.__c00215 { /* 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_c00215 { /* info for Javascript */
  display:none;
}
.l_c00215 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00215 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00215 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00215: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_c00215 {
    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_c00215.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00215.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_c00215 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00215{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.000000;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;}
.m32_c00215{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00215{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00215{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00215{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00215{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m37_c00215{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md_c00215{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m44_c00215{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m47_c00215{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00215{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00215{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00215{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.me_c00215{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00215{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m25_c00215{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb_c00215{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m11_c00215{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m41_c00215{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00215{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m42_c00215{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00215{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m46_c00215{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m34_c00215{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m20_c00215{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m43_c00215{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma_c00215{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00215{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m22_c00215{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8_c00215{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m39_c00215{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m15_c00215{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00215{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00215{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m21_c00215{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00215{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mc_c00215{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2_c00215{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00215{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m49_c00215{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00215{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m36_c00215{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m10_c00215{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m16_c00215{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00215{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00215{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00215{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00215{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m45_c00215{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m27_c00215{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m12_c00215{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00215{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m14_c00215{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00215{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m24_c00215{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00215{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m38_c00215{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00215{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m28_c00215{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);}
.m2c_c00215{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m33_c00215{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00215{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4_c00215{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m13_c00215{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m40_c00215{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m30_c00215{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00215{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m31_c00215{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m19_c00215{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m35_c00215{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00215{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m29_c00215{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{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__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00215{word-spacing:0.000000px;}
.ws0_c00215{word-spacing:16.428571px;}
.fc0_c00215{color:transparent;}
.fs0_c00215{font-size:60.000000px;}
.y0_c00215{bottom:0.000000px;}
.ya_c00215{bottom:839.250000px;}
.y9_c00215{bottom:859.050000px;}
.y8_c00215{bottom:878.850000px;}
.y7_c00215{bottom:898.950000px;}
.y6_c00215{bottom:919.050000px;}
.y5_c00215{bottom:938.850000px;}
.y4_c00215{bottom:958.650000px;}
.y3_c00215{bottom:979.200000px;}
.y2_c00215{bottom:999.000000px;}
.y1_c00215{bottom:1037.550000px;}
.h2_c00215{height:60.000000px;}
.h0_c00215{height:1166.759949px;}
.h1_c00215{height:1167.000000px;}
.w0_c00215{width:918.720063px;}
.w1_c00215{width:918.750000px;}
.x0_c00215{left:0.000000px;}
.x3_c00215{left:110.550000px;}
.x72_c00215{left:111.600000px;}
.x15_c00215{left:128.700000px;}
.x4_c00215{left:140.100000px;}
.x50_c00215{left:141.900000px;}
.x69_c00215{left:145.200000px;}
.x40_c00215{left:147.750000px;}
.x16_c00215{left:152.100000px;}
.x73_c00215{left:167.700000px;}
.x17_c00215{left:170.100000px;}
.x5d_c00215{left:173.400000px;}
.x24_c00215{left:180.750000px;}
.x5_c00215{left:187.650000px;}
.x51_c00215{left:193.050000px;}
.x18_c00215{left:197.100000px;}
.x41_c00215{left:208.950000px;}
.x25_c00215{left:213.150000px;}
.x52_c00215{left:215.700000px;}
.x6_c00215{left:218.550000px;}
.x5e_c00215{left:219.900000px;}
.x42_c00215{left:228.750000px;}
.x26_c00215{left:232.200000px;}
.x33_c00215{left:236.850000px;}
.x74_c00215{left:240.150000px;}
.x6a_c00215{left:242.250000px;}
.x7_c00215{left:246.600000px;}
.x43_c00215{left:256.800000px;}
.x19_c00215{left:260.400000px;}
.x27_c00215{left:266.100000px;}
.x75_c00215{left:269.700000px;}
.x34_c00215{left:274.950000px;}
.x6b_c00215{left:285.450000px;}
.x53_c00215{left:291.300000px;}
.x35_c00215{left:295.050000px;}
.x8_c00215{left:296.700000px;}
.x5f_c00215{left:303.000000px;}
.x44_c00215{left:308.700000px;}
.x28_c00215{left:315.000000px;}
.x36_c00215{left:321.000000px;}
.x1a_c00215{left:326.250000px;}
.x76_c00215{left:329.400000px;}
.x29_c00215{left:336.900000px;}
.x45_c00215{left:345.000000px;}
.x54_c00215{left:349.950000px;}
.x9_c00215{left:357.150000px;}
.x37_c00215{left:362.400000px;}
.x46_c00215{left:365.100000px;}
.x1b_c00215{left:366.900000px;}
.x2a_c00215{left:373.950000px;}
.x60_c00215{left:378.600000px;}
.x38_c00215{left:380.100000px;}
.x6c_c00215{left:385.500000px;}
.x47_c00215{left:393.900000px;}
.x55_c00215{left:394.950000px;}
.xa_c00215{left:399.300000px;}
.x2b_c00215{left:400.950000px;}
.x39_c00215{left:405.600000px;}
.x48_c00215{left:409.800000px;}
.x56_c00215{left:415.800000px;}
.x1_c00215{left:420.900000px;}
.x1c_c00215{left:426.600000px;}
.x2c_c00215{left:439.800000px;}
.x61_c00215{left:444.900000px;}
.x1d_c00215{left:451.500000px;}
.x57_c00215{left:454.650000px;}
.x3a_c00215{left:467.100000px;}
.xb_c00215{left:468.150000px;}
.x49_c00215{left:470.250000px;}
.x62_c00215{left:473.400000px;}
.x6d_c00215{left:477.600000px;}
.x4a_c00215{left:493.650000px;}
.x2d_c00215{left:499.950000px;}
.xc_c00215{left:501.600000px;}
.x6e_c00215{left:505.650000px;}
.x1e_c00215{left:507.300000px;}
.x3b_c00215{left:518.550000px;}
.x2e_c00215{left:519.750000px;}
.xd_c00215{left:521.100000px;}
.x58_c00215{left:524.100000px;}
.x63_c00215{left:547.200000px;}
.xe_c00215{left:548.400000px;}
.x6f_c00215{left:551.700000px;}
.x1f_c00215{left:558.450000px;}
.x70_c00215{left:574.050000px;}
.x59_c00215{left:577.800000px;}
.x4b_c00215{left:581.550000px;}
.x64_c00215{left:590.400000px;}
.x4c_c00215{left:592.650000px;}
.xf_c00215{left:594.150000px;}
.x3c_c00215{left:597.000000px;}
.x20_c00215{left:599.100000px;}
.x10_c00215{left:612.900000px;}
.x4d_c00215{left:623.250000px;}
.x2f_c00215{left:628.800000px;}
.x3d_c00215{left:630.900000px;}
.x65_c00215{left:635.100000px;}
.x71_c00215{left:638.100000px;}
.x11_c00215{left:640.650000px;}
.x5a_c00215{left:660.900000px;}
.x30_c00215{left:666.300000px;}
.x21_c00215{left:667.800000px;}
.x66_c00215{left:678.600000px;}
.x3e_c00215{left:681.000000px;}
.x12_c00215{left:682.050000px;}
.x4e_c00215{left:688.350000px;}
.x5b_c00215{left:693.300000px;}
.x13_c00215{left:700.800000px;}
.x31_c00215{left:710.550000px;}
.x22_c00215{left:715.650000px;}
.x67_c00215{left:719.700000px;}
.x4f_c00215{left:721.050000px;}
.x5c_c00215{left:724.200000px;}
.x14_c00215{left:730.650000px;}
.x68_c00215{left:739.500000px;}
.x23_c00215{left:747.000000px;}
.x3f_c00215{left:748.200000px;}
.x2_c00215{left:750.300000px;}
.x32_c00215{left:764.250000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws1_c00215{word-spacing:0.000000pt;}
.ws0_c00215{word-spacing:14.603175pt;}
.fs0_c00215{font-size:53.333333pt;}
.y0_c00215{bottom:0.000000pt;}
.ya_c00215{bottom:746.000000pt;}
.y9_c00215{bottom:763.600000pt;}
.y8_c00215{bottom:781.200000pt;}
.y7_c00215{bottom:799.066667pt;}
.y6_c00215{bottom:816.933333pt;}
.y5_c00215{bottom:834.533333pt;}
.y4_c00215{bottom:852.133333pt;}
.y3_c00215{bottom:870.400000pt;}
.y2_c00215{bottom:888.000000pt;}
.y1_c00215{bottom:922.266667pt;}
.h2_c00215{height:53.333333pt;}
.h0_c00215{height:1037.119955pt;}
.h1_c00215{height:1037.333333pt;}
.w0_c00215{width:816.640056pt;}
.w1_c00215{width:816.666667pt;}
.x0_c00215{left:0.000000pt;}
.x3_c00215{left:98.266667pt;}
.x72_c00215{left:99.200000pt;}
.x15_c00215{left:114.400000pt;}
.x4_c00215{left:124.533333pt;}
.x50_c00215{left:126.133333pt;}
.x69_c00215{left:129.066667pt;}
.x40_c00215{left:131.333333pt;}
.x16_c00215{left:135.200000pt;}
.x73_c00215{left:149.066667pt;}
.x17_c00215{left:151.200000pt;}
.x5d_c00215{left:154.133333pt;}
.x24_c00215{left:160.666667pt;}
.x5_c00215{left:166.800000pt;}
.x51_c00215{left:171.600000pt;}
.x18_c00215{left:175.200000pt;}
.x41_c00215{left:185.733333pt;}
.x25_c00215{left:189.466667pt;}
.x52_c00215{left:191.733333pt;}
.x6_c00215{left:194.266667pt;}
.x5e_c00215{left:195.466667pt;}
.x42_c00215{left:203.333333pt;}
.x26_c00215{left:206.400000pt;}
.x33_c00215{left:210.533333pt;}
.x74_c00215{left:213.466667pt;}
.x6a_c00215{left:215.333333pt;}
.x7_c00215{left:219.200000pt;}
.x43_c00215{left:228.266667pt;}
.x19_c00215{left:231.466667pt;}
.x27_c00215{left:236.533333pt;}
.x75_c00215{left:239.733333pt;}
.x34_c00215{left:244.400000pt;}
.x6b_c00215{left:253.733333pt;}
.x53_c00215{left:258.933333pt;}
.x35_c00215{left:262.266667pt;}
.x8_c00215{left:263.733333pt;}
.x5f_c00215{left:269.333333pt;}
.x44_c00215{left:274.400000pt;}
.x28_c00215{left:280.000000pt;}
.x36_c00215{left:285.333333pt;}
.x1a_c00215{left:290.000000pt;}
.x76_c00215{left:292.800000pt;}
.x29_c00215{left:299.466667pt;}
.x45_c00215{left:306.666667pt;}
.x54_c00215{left:311.066667pt;}
.x9_c00215{left:317.466667pt;}
.x37_c00215{left:322.133333pt;}
.x46_c00215{left:324.533333pt;}
.x1b_c00215{left:326.133333pt;}
.x2a_c00215{left:332.400000pt;}
.x60_c00215{left:336.533333pt;}
.x38_c00215{left:337.866667pt;}
.x6c_c00215{left:342.666667pt;}
.x47_c00215{left:350.133333pt;}
.x55_c00215{left:351.066667pt;}
.xa_c00215{left:354.933333pt;}
.x2b_c00215{left:356.400000pt;}
.x39_c00215{left:360.533333pt;}
.x48_c00215{left:364.266667pt;}
.x56_c00215{left:369.600000pt;}
.x1_c00215{left:374.133333pt;}
.x1c_c00215{left:379.200000pt;}
.x2c_c00215{left:390.933333pt;}
.x61_c00215{left:395.466667pt;}
.x1d_c00215{left:401.333333pt;}
.x57_c00215{left:404.133333pt;}
.x3a_c00215{left:415.200000pt;}
.xb_c00215{left:416.133333pt;}
.x49_c00215{left:418.000000pt;}
.x62_c00215{left:420.800000pt;}
.x6d_c00215{left:424.533333pt;}
.x4a_c00215{left:438.800000pt;}
.x2d_c00215{left:444.400000pt;}
.xc_c00215{left:445.866667pt;}
.x6e_c00215{left:449.466667pt;}
.x1e_c00215{left:450.933333pt;}
.x3b_c00215{left:460.933333pt;}
.x2e_c00215{left:462.000000pt;}
.xd_c00215{left:463.200000pt;}
.x58_c00215{left:465.866667pt;}
.x63_c00215{left:486.400000pt;}
.xe_c00215{left:487.466667pt;}
.x6f_c00215{left:490.400000pt;}
.x1f_c00215{left:496.400000pt;}
.x70_c00215{left:510.266667pt;}
.x59_c00215{left:513.600000pt;}
.x4b_c00215{left:516.933333pt;}
.x64_c00215{left:524.800000pt;}
.x4c_c00215{left:526.800000pt;}
.xf_c00215{left:528.133333pt;}
.x3c_c00215{left:530.666667pt;}
.x20_c00215{left:532.533333pt;}
.x10_c00215{left:544.800000pt;}
.x4d_c00215{left:554.000000pt;}
.x2f_c00215{left:558.933333pt;}
.x3d_c00215{left:560.800000pt;}
.x65_c00215{left:564.533333pt;}
.x71_c00215{left:567.200000pt;}
.x11_c00215{left:569.466667pt;}
.x5a_c00215{left:587.466667pt;}
.x30_c00215{left:592.266667pt;}
.x21_c00215{left:593.600000pt;}
.x66_c00215{left:603.200000pt;}
.x3e_c00215{left:605.333333pt;}
.x12_c00215{left:606.266667pt;}
.x4e_c00215{left:611.866667pt;}
.x5b_c00215{left:616.266667pt;}
.x13_c00215{left:622.933333pt;}
.x31_c00215{left:631.600000pt;}
.x22_c00215{left:636.133333pt;}
.x67_c00215{left:639.733333pt;}
.x4f_c00215{left:640.933333pt;}
.x5c_c00215{left:643.733333pt;}
.x14_c00215{left:649.466667pt;}
.x68_c00215{left:657.333333pt;}
.x23_c00215{left:664.000000pt;}
.x3f_c00215{left:665.066667pt;}
.x2_c00215{left:666.933333pt;}
.x32_c00215{left:679.333333pt;}
}





/* 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_c00216 {
    display:none;
  }
  .loading-indicator_c00216.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00216 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_c00216 { 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_c00216" -> "#page-container .classname_c00216")
 */
.pf_c00216 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00216 { /* 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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00216 { /* 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_c00216 { /* 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_c00216 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00216 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00216 {overflow:visible;}
  }
}
.c_c00216 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00216 { /* 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_c00216:after { /* webkit #35443 */
  content: '';
}
.t_c00216:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00216 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 */
}
.__c00216 { /* 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_c00216 { /* info for Javascript */
  display:none;
}
.l_c00216 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00216 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00216 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00216: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_c00216 {
    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_c00216.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00216.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_c00216 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00216{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00216;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.000000;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;}
.ma5_c00216{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m20_c00216{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00216{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m99_c00216{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00216{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00216{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m36_c00216{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00216{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m94_c00216{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00216{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00216{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11_c00216{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m13_c00216{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00216{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m88_c00216{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00216{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m57_c00216{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m58_c00216{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mad_c00216{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00216{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m90_c00216{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m98_c00216{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m47_c00216{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m83_c00216{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00216{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m92_c00216{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m96_c00216{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00216{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m68_c00216{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mae_c00216{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00216{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m97_c00216{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m86_c00216{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00216{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00216{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00216{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00216{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.maf_c00216{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8_c00216{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00216{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00216{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00216{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00216{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m74_c00216{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00216{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00216{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00216{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mac_c00216{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.maa_c00216{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00216{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m33_c00216{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m81_c00216{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00216{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m59_c00216{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m93_c00216{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00216{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m75_c00216{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00216{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m87_c00216{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m89_c00216{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00216{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m40_c00216{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m54_c00216{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m95_c00216{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00216{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00216{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m55_c00216{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m73_c00216{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00216{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00216{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12_c00216{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00216{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mab_c00216{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m78_c00216{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m26_c00216{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m19_c00216{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00216{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00216{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m41_c00216{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00216{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m70_c00216{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00216{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m66_c00216{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m72_c00216{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m25_c00216{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00216{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m91_c00216{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m29_c00216{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m80_c00216{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00216{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7_c00216{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m45_c00216{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00216{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00216{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00216{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m37_c00216{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00216{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m9_c00216{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24_c00216{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m31_c00216{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00216{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf_c00216{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m77_c00216{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00216{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m32_c00216{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);}
.m1f_c00216{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m49_c00216{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m76_c00216{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00216{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m18_c00216{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00216{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17_c00216{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m64_c00216{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00216{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00216{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mb_c00216{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00216{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m50_c00216{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc_c00216{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00216{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00216{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m34_c00216{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m43_c00216{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00216{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00216{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md_c00216{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m53_c00216{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00216{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00216{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00216{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m62_c00216{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m42_c00216{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m27_c00216{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00216{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00216{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m48_c00216{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m51_c00216{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m82_c00216{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m38_c00216{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00216{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00216{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m22_c00216{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00216{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.me_c00216{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m21_c00216{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00216{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m79_c00216{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m15_c00216{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m23_c00216{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00216{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m67_c00216{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00216{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00216{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m61_c00216{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m28_c00216{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00216{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m60_c00216{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00216{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00216{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m39_c00216{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m69_c00216{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c00216{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m65_c00216{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00216{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m85_c00216{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m56_c00216{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m46_c00216{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00216{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4_c00216{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m52_c00216{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m84_c00216{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m35_c00216{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m3_c00216{transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379500,0.000000,0.000000,0.250000,0,0);}
.m71_c00216{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m44_c00216{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m14_c00216{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00216{vertical-align:0.000000px;}
.ls0_c00216{letter-spacing:0.000000px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{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__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00216{word-spacing:-7.375000px;}
.ws7_c00216{word-spacing:-6.481700px;}
.ws8_c00216{word-spacing:0.000000px;}
.ws1_c00216{word-spacing:1.500000px;}
.ws2_c00216{word-spacing:4.750000px;}
.ws5_c00216{word-spacing:7.500000px;}
.ws0_c00216{word-spacing:10.951488px;}
.ws3_c00216{word-spacing:22.074972px;}
.ws4_c00216{word-spacing:30.666667px;}
.fc0_c00216{color:transparent;}
.fs2_c00216{font-size:42.000000px;}
.fs0_c00216{font-size:54.000000px;}
.fs1_c00216{font-size:60.000000px;}
.y0_c00216{bottom:0.000000px;}
.y25_c00216{bottom:131.400000px;}
.y24_c00216{bottom:147.300000px;}
.y23_c00216{bottom:162.750000px;}
.y22_c00216{bottom:178.950000px;}
.y21_c00216{bottom:194.700000px;}
.y20_c00216{bottom:209.850000px;}
.y1f_c00216{bottom:225.750000px;}
.y1e_c00216{bottom:241.500000px;}
.y1d_c00216{bottom:288.600000px;}
.y1c_c00216{bottom:308.700000px;}
.y1b_c00216{bottom:328.500000px;}
.y1a_c00216{bottom:348.600000px;}
.y19_c00216{bottom:368.700000px;}
.y18_c00216{bottom:388.800000px;}
.y17_c00216{bottom:408.900000px;}
.y16_c00216{bottom:429.000000px;}
.y15_c00216{bottom:448.500000px;}
.y14_c00216{bottom:468.300000px;}
.y13_c00216{bottom:488.100000px;}
.y12_c00216{bottom:507.600000px;}
.y11_c00216{bottom:528.150000px;}
.y10_c00216{bottom:548.250000px;}
.yf_c00216{bottom:567.300000px;}
.ye_c00216{bottom:587.850000px;}
.yd_c00216{bottom:607.350000px;}
.yc_c00216{bottom:627.900000px;}
.yb_c00216{bottom:647.250000px;}
.ya_c00216{bottom:667.800000px;}
.y9_c00216{bottom:687.900000px;}
.y8_c00216{bottom:708.450000px;}
.y7_c00216{bottom:728.250000px;}
.y6_c00216{bottom:748.050000px;}
.y5_c00216{bottom:768.600000px;}
.y4_c00216{bottom:788.400000px;}
.y3_c00216{bottom:821.550000px;}
.y2_c00216{bottom:855.000000px;}
.y1_c00216{bottom:1035.000000px;}
.h4_c00216{height:42.000000px;}
.h2_c00216{height:54.000000px;}
.h3_c00216{height:60.000000px;}
.h0_c00216{height:1166.759949px;}
.h1_c00216{height:1167.000000px;}
.w0_c00216{width:918.720063px;}
.w1_c00216{width:918.750000px;}
.x0_c00216{left:0.000000px;}
.x7_c00216{left:145.050000px;}
.x80_c00216{left:146.250000px;}
.xaf_c00216{left:147.450000px;}
.xe7_c00216{left:161.250000px;}
.x17_c00216{left:164.550000px;}
.x65_c00216{left:166.050000px;}
.x5e_c00216{left:176.400000px;}
.x8_c00216{left:177.750000px;}
.x81_c00216{left:179.400000px;}
.x75_c00216{left:186.750000px;}
.xa3_c00216{left:190.950000px;}
.x18_c00216{left:192.600000px;}
.xe8_c00216{left:193.950000px;}
.x8b_c00216{left:197.400000px;}
.xf7_c00216{left:199.800000px;}
.xbf_c00216{left:201.900000px;}
.x2f_c00216{left:203.250000px;}
.x9e_c00216{left:204.750000px;}
.x3a_c00216{left:206.550000px;}
.x48_c00216{left:207.750000px;}
.xda_c00216{left:212.850000px;}
.x22_c00216{left:215.100000px;}
.x66_c00216{left:216.750000px;}
.xc9_c00216{left:218.100000px;}
.xef_c00216{left:219.150000px;}
.xb6_c00216{left:222.300000px;}
.xb0_c00216{left:224.850000px;}
.xdb_c00216{left:226.950000px;}
.x30_c00216{left:228.150000px;}
.xf8_c00216{left:230.400000px;}
.x76_c00216{left:231.450000px;}
.x102_c00216{left:233.700000px;}
.x23_c00216{left:235.200000px;}
.x3b_c00216{left:241.050000px;}
.xd1_c00216{left:244.950000px;}
.x93_c00216{left:247.200000px;}
.x82_c00216{left:250.200000px;}
.xd5_c00216{left:252.600000px;}
.xe1_c00216{left:254.850000px;}
.xf9_c00216{left:256.350000px;}
.x96_c00216{left:259.950000px;}
.x4f_c00216{left:261.000000px;}
.x57_c00216{left:262.500000px;}
.x103_c00216{left:264.000000px;}
.xa6_c00216{left:265.500000px;}
.x67_c00216{left:266.850000px;}
.x9_c00216{left:269.250000px;}
.xff_c00216{left:273.600000px;}
.xe9_c00216{left:274.950000px;}
.xc0_c00216{left:276.450000px;}
.x58_c00216{left:279.450000px;}
.x97_c00216{left:281.250000px;}
.x19_c00216{left:283.650000px;}
.x107_c00216{left:285.000000px;}
.xd6_c00216{left:286.500000px;}
.xaa_c00216{left:288.600000px;}
.x5f_c00216{left:290.250000px;}
.xdc_c00216{left:291.750000px;}
.xb1_c00216{left:292.800000px;}
.x24_c00216{left:293.850000px;}
.x83_c00216{left:295.950000px;}
.x77_c00216{left:300.150000px;}
.x68_c00216{left:302.100000px;}
.x49_c00216{left:303.150000px;}
.xa4_c00216{left:306.600000px;}
.xf0_c00216{left:309.150000px;}
.xc1_c00216{left:310.950000px;}
.x104_c00216{left:314.400000px;}
.x4_c00216{left:316.500000px;}
.xfa_c00216{left:317.550000px;}
.x31_c00216{left:319.650000px;}
.xb7_c00216{left:320.850000px;}
.xd7_c00216{left:324.000000px;}
.x25_c00216{left:325.200000px;}
.x50_c00216{left:327.300000px;}
.xab_c00216{left:328.950000px;}
.xca_c00216{left:331.950000px;}
.x69_c00216{left:334.200000px;}
.x105_c00216{left:338.550000px;}
.x3c_c00216{left:342.900000px;}
.x26_c00216{left:346.050000px;}
.x1a_c00216{left:350.550000px;}
.x59_c00216{left:355.800000px;}
.xa_c00216{left:357.450000px;}
.x98_c00216{left:358.650000px;}
.xe2_c00216{left:359.700000px;}
.x6a_c00216{left:361.200000px;}
.x51_c00216{left:365.100000px;}
.x4a_c00216{left:366.900000px;}
.xa5_c00216{left:368.850000px;}
.x3d_c00216{left:369.900000px;}
.xea_c00216{left:372.150000px;}
.x5a_c00216{left:374.550000px;}
.x27_c00216{left:375.900000px;}
.xb_c00216{left:377.250000px;}
.x60_c00216{left:379.950000px;}
.x84_c00216{left:384.150000px;}
.xc2_c00216{left:387.600000px;}
.xcb_c00216{left:391.350000px;}
.x32_c00216{left:393.150000px;}
.x6b_c00216{left:395.100000px;}
.x3e_c00216{left:397.950000px;}
.x85_c00216{left:401.400000px;}
.xc_c00216{left:404.250000px;}
.xcc_c00216{left:405.750000px;}
.x2_c00216{left:410.100000px;}
.x8c_c00216{left:411.750000px;}
.x6c_c00216{left:413.100000px;}
.xe3_c00216{left:414.450000px;}
.x33_c00216{left:418.050000px;}
.x1b_c00216{left:419.250000px;}
.x78_c00216{left:421.800000px;}
.x9f_c00216{left:422.850000px;}
.xb8_c00216{left:424.800000px;}
.xfb_c00216{left:425.850000px;}
.x5b_c00216{left:434.250000px;}
.x3f_c00216{left:435.300000px;}
.x94_c00216{left:437.250000px;}
.x61_c00216{left:438.300000px;}
.x106_c00216{left:441.900000px;}
.xb2_c00216{left:444.150000px;}
.x34_c00216{left:445.350000px;}
.x5_c00216{left:447.900000px;}
.xdd_c00216{left:449.700000px;}
.xa0_c00216{left:451.350000px;}
.xd_c00216{left:454.350000px;}
.x99_c00216{left:455.400000px;}
.xd8_c00216{left:457.200000px;}
.xac_c00216{left:462.150000px;}
.x8d_c00216{left:464.700000px;}
.x1_c00216{left:465.900000px;}
.x28_c00216{left:468.750000px;}
.x86_c00216{left:479.850000px;}
.x4b_c00216{left:482.700000px;}
.x9a_c00216{left:487.050000px;}
.xe4_c00216{left:489.000000px;}
.x6d_c00216{left:490.200000px;}
.xb3_c00216{left:492.000000px;}
.xc3_c00216{left:494.550000px;}
.x3_c00216{left:496.800000px;}
.x8e_c00216{left:498.900000px;}
.x1c_c00216{left:500.550000px;}
.x40_c00216{left:501.600000px;}
.x62_c00216{left:504.450000px;}
.xa7_c00216{left:505.650000px;}
.x4c_c00216{left:506.850000px;}
.xde_c00216{left:508.050000px;}
.xe_c00216{left:511.200000px;}
.xf1_c00216{left:514.050000px;}
.x79_c00216{left:516.150000px;}
.x100_c00216{left:519.300000px;}
.xb4_c00216{left:521.550000px;}
.x35_c00216{left:523.800000px;}
.xa1_c00216{left:524.850000px;}
.x52_c00216{left:526.800000px;}
.xcd_c00216{left:528.900000px;}
.x5c_c00216{left:530.400000px;}
.xa8_c00216{left:532.350000px;}
.xb9_c00216{left:533.550000px;}
.x108_c00216{left:534.750000px;}
.x29_c00216{left:537.150000px;}
.x41_c00216{left:540.450000px;}
.x6_c00216{left:542.550000px;}
.xf_c00216{left:547.500000px;}
.xeb_c00216{left:550.350000px;}
.x53_c00216{left:552.300000px;}
.xd2_c00216{left:553.350000px;}
.x36_c00216{left:554.400000px;}
.x6e_c00216{left:556.050000px;}
.xc4_c00216{left:558.300000px;}
.x5d_c00216{left:561.300000px;}
.xa9_c00216{left:562.650000px;}
.xfc_c00216{left:564.750000px;}
.x63_c00216{left:565.950000px;}
.x109_c00216{left:567.150000px;}
.x87_c00216{left:568.350000px;}
.x8f_c00216{left:570.600000px;}
.xdf_c00216{left:571.800000px;}
.xba_c00216{left:574.950000px;}
.x6f_c00216{left:577.350000px;}
.x95_c00216{left:579.450000px;}
.x2a_c00216{left:585.750000px;}
.x42_c00216{left:586.950000px;}
.xc5_c00216{left:590.700000px;}
.x10_c00216{left:592.500000px;}
.xd3_c00216{left:593.550000px;}
.xe5_c00216{left:595.200000px;}
.x54_c00216{left:597.600000px;}
.x37_c00216{left:602.250000px;}
.xad_c00216{left:606.150000px;}
.xf2_c00216{left:609.900000px;}
.xbb_c00216{left:611.250000px;}
.x88_c00216{left:612.300000px;}
.xfd_c00216{left:613.800000px;}
.x7a_c00216{left:617.550000px;}
.x11_c00216{left:619.200000px;}
.x43_c00216{left:624.750000px;}
.xc6_c00216{left:628.500000px;}
.x89_c00216{left:631.050000px;}
.xf3_c00216{left:633.300000px;}
.x38_c00216{left:637.500000px;}
.xbc_c00216{left:639.750000px;}
.x9b_c00216{left:641.100000px;}
.xce_c00216{left:644.850000px;}
.x70_c00216{left:650.400000px;}
.x1d_c00216{left:652.500000px;}
.x2b_c00216{left:654.450000px;}
.xe6_c00216{left:656.100000px;}
.x12_c00216{left:659.100000px;}
.xec_c00216{left:660.600000px;}
.x9c_c00216{left:661.650000px;}
.xe0_c00216{left:663.150000px;}
.xf4_c00216{left:666.750000px;}
.x71_c00216{left:669.450000px;}
.x7b_c00216{left:673.650000px;}
.x44_c00216{left:678.450000px;}
.x2c_c00216{left:682.950000px;}
.xd9_c00216{left:687.000000px;}
.xae_c00216{left:689.250000px;}
.x1e_c00216{left:690.300000px;}
.x72_c00216{left:691.800000px;}
.x7c_c00216{left:693.450000px;}
.xfe_c00216{left:698.250000px;}
.xed_c00216{left:699.450000px;}
.x90_c00216{left:702.000000px;}
.x13_c00216{left:706.950000px;}
.x4d_c00216{left:708.450000px;}
.x7d_c00216{left:711.450000px;}
.x2d_c00216{left:718.200000px;}
.x64_c00216{left:723.600000px;}
.x14_c00216{left:724.650000px;}
.x1f_c00216{left:727.350000px;}
.x39_c00216{left:729.600000px;}
.x91_c00216{left:732.900000px;}
.xd4_c00216{left:734.700000px;}
.x45_c00216{left:735.750000px;}
.x7e_c00216{left:737.700000px;}
.x55_c00216{left:739.500000px;}
.x10a_c00216{left:741.300000px;}
.x73_c00216{left:744.000000px;}
.xc7_c00216{left:745.500000px;}
.x20_c00216{left:748.200000px;}
.x8a_c00216{left:751.050000px;}
.xf5_c00216{left:752.400000px;}
.x46_c00216{left:755.550000px;}
.xbd_c00216{left:757.050000px;}
.xcf_c00216{left:758.400000px;}
.xb5_c00216{left:759.750000px;}
.xc8_c00216{left:761.400000px;}
.x4e_c00216{left:762.450000px;}
.xa2_c00216{left:765.750000px;}
.x56_c00216{left:769.050000px;}
.x9d_c00216{left:771.750000px;}
.xf6_c00216{left:774.750000px;}
.xee_c00216{left:776.100000px;}
.x21_c00216{left:777.300000px;}
.x15_c00216{left:784.050000px;}
.x74_c00216{left:785.400000px;}
.x47_c00216{left:787.650000px;}
.x92_c00216{left:789.000000px;}
.x2e_c00216{left:790.500000px;}
.x16_c00216{left:795.600000px;}
.x7f_c00216{left:797.100000px;}
.xd0_c00216{left:801.300000px;}
.xbe_c00216{left:803.100000px;}
.x101_c00216{left:804.450000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws6_c00216{word-spacing:-6.555556pt;}
.ws7_c00216{word-spacing:-5.761511pt;}
.ws8_c00216{word-spacing:0.000000pt;}
.ws1_c00216{word-spacing:1.333333pt;}
.ws2_c00216{word-spacing:4.222222pt;}
.ws5_c00216{word-spacing:6.666667pt;}
.ws0_c00216{word-spacing:9.734656pt;}
.ws3_c00216{word-spacing:19.622198pt;}
.ws4_c00216{word-spacing:27.259259pt;}
.fs2_c00216{font-size:37.333333pt;}
.fs0_c00216{font-size:48.000000pt;}
.fs1_c00216{font-size:53.333333pt;}
.y0_c00216{bottom:0.000000pt;}
.y25_c00216{bottom:116.800000pt;}
.y24_c00216{bottom:130.933333pt;}
.y23_c00216{bottom:144.666667pt;}
.y22_c00216{bottom:159.066667pt;}
.y21_c00216{bottom:173.066667pt;}
.y20_c00216{bottom:186.533333pt;}
.y1f_c00216{bottom:200.666667pt;}
.y1e_c00216{bottom:214.666667pt;}
.y1d_c00216{bottom:256.533333pt;}
.y1c_c00216{bottom:274.400000pt;}
.y1b_c00216{bottom:292.000000pt;}
.y1a_c00216{bottom:309.866667pt;}
.y19_c00216{bottom:327.733333pt;}
.y18_c00216{bottom:345.600000pt;}
.y17_c00216{bottom:363.466667pt;}
.y16_c00216{bottom:381.333333pt;}
.y15_c00216{bottom:398.666667pt;}
.y14_c00216{bottom:416.266667pt;}
.y13_c00216{bottom:433.866667pt;}
.y12_c00216{bottom:451.200000pt;}
.y11_c00216{bottom:469.466667pt;}
.y10_c00216{bottom:487.333333pt;}
.yf_c00216{bottom:504.266667pt;}
.ye_c00216{bottom:522.533333pt;}
.yd_c00216{bottom:539.866667pt;}
.yc_c00216{bottom:558.133333pt;}
.yb_c00216{bottom:575.333333pt;}
.ya_c00216{bottom:593.600000pt;}
.y9_c00216{bottom:611.466667pt;}
.y8_c00216{bottom:629.733333pt;}
.y7_c00216{bottom:647.333333pt;}
.y6_c00216{bottom:664.933333pt;}
.y5_c00216{bottom:683.200000pt;}
.y4_c00216{bottom:700.800000pt;}
.y3_c00216{bottom:730.266667pt;}
.y2_c00216{bottom:760.000000pt;}
.y1_c00216{bottom:920.000000pt;}
.h4_c00216{height:37.333333pt;}
.h2_c00216{height:48.000000pt;}
.h3_c00216{height:53.333333pt;}
.h0_c00216{height:1037.119955pt;}
.h1_c00216{height:1037.333333pt;}
.w0_c00216{width:816.640056pt;}
.w1_c00216{width:816.666667pt;}
.x0_c00216{left:0.000000pt;}
.x7_c00216{left:128.933333pt;}
.x80_c00216{left:130.000000pt;}
.xaf_c00216{left:131.066667pt;}
.xe7_c00216{left:143.333333pt;}
.x17_c00216{left:146.266667pt;}
.x65_c00216{left:147.600000pt;}
.x5e_c00216{left:156.800000pt;}
.x8_c00216{left:158.000000pt;}
.x81_c00216{left:159.466667pt;}
.x75_c00216{left:166.000000pt;}
.xa3_c00216{left:169.733333pt;}
.x18_c00216{left:171.200000pt;}
.xe8_c00216{left:172.400000pt;}
.x8b_c00216{left:175.466667pt;}
.xf7_c00216{left:177.600000pt;}
.xbf_c00216{left:179.466667pt;}
.x2f_c00216{left:180.666667pt;}
.x9e_c00216{left:182.000000pt;}
.x3a_c00216{left:183.600000pt;}
.x48_c00216{left:184.666667pt;}
.xda_c00216{left:189.200000pt;}
.x22_c00216{left:191.200000pt;}
.x66_c00216{left:192.666667pt;}
.xc9_c00216{left:193.866667pt;}
.xef_c00216{left:194.800000pt;}
.xb6_c00216{left:197.600000pt;}
.xb0_c00216{left:199.866667pt;}
.xdb_c00216{left:201.733333pt;}
.x30_c00216{left:202.800000pt;}
.xf8_c00216{left:204.800000pt;}
.x76_c00216{left:205.733333pt;}
.x102_c00216{left:207.733333pt;}
.x23_c00216{left:209.066667pt;}
.x3b_c00216{left:214.266667pt;}
.xd1_c00216{left:217.733333pt;}
.x93_c00216{left:219.733333pt;}
.x82_c00216{left:222.400000pt;}
.xd5_c00216{left:224.533333pt;}
.xe1_c00216{left:226.533333pt;}
.xf9_c00216{left:227.866667pt;}
.x96_c00216{left:231.066667pt;}
.x4f_c00216{left:232.000000pt;}
.x57_c00216{left:233.333333pt;}
.x103_c00216{left:234.666667pt;}
.xa6_c00216{left:236.000000pt;}
.x67_c00216{left:237.200000pt;}
.x9_c00216{left:239.333333pt;}
.xff_c00216{left:243.200000pt;}
.xe9_c00216{left:244.400000pt;}
.xc0_c00216{left:245.733333pt;}
.x58_c00216{left:248.400000pt;}
.x97_c00216{left:250.000000pt;}
.x19_c00216{left:252.133333pt;}
.x107_c00216{left:253.333333pt;}
.xd6_c00216{left:254.666667pt;}
.xaa_c00216{left:256.533333pt;}
.x5f_c00216{left:258.000000pt;}
.xdc_c00216{left:259.333333pt;}
.xb1_c00216{left:260.266667pt;}
.x24_c00216{left:261.200000pt;}
.x83_c00216{left:263.066667pt;}
.x77_c00216{left:266.800000pt;}
.x68_c00216{left:268.533333pt;}
.x49_c00216{left:269.466667pt;}
.xa4_c00216{left:272.533333pt;}
.xf0_c00216{left:274.800000pt;}
.xc1_c00216{left:276.400000pt;}
.x104_c00216{left:279.466667pt;}
.x4_c00216{left:281.333333pt;}
.xfa_c00216{left:282.266667pt;}
.x31_c00216{left:284.133333pt;}
.xb7_c00216{left:285.200000pt;}
.xd7_c00216{left:288.000000pt;}
.x25_c00216{left:289.066667pt;}
.x50_c00216{left:290.933333pt;}
.xab_c00216{left:292.400000pt;}
.xca_c00216{left:295.066667pt;}
.x69_c00216{left:297.066667pt;}
.x105_c00216{left:300.933333pt;}
.x3c_c00216{left:304.800000pt;}
.x26_c00216{left:307.600000pt;}
.x1a_c00216{left:311.600000pt;}
.x59_c00216{left:316.266667pt;}
.xa_c00216{left:317.733333pt;}
.x98_c00216{left:318.800000pt;}
.xe2_c00216{left:319.733333pt;}
.x6a_c00216{left:321.066667pt;}
.x51_c00216{left:324.533333pt;}
.x4a_c00216{left:326.133333pt;}
.xa5_c00216{left:327.866667pt;}
.x3d_c00216{left:328.800000pt;}
.xea_c00216{left:330.800000pt;}
.x5a_c00216{left:332.933333pt;}
.x27_c00216{left:334.133333pt;}
.xb_c00216{left:335.333333pt;}
.x60_c00216{left:337.733333pt;}
.x84_c00216{left:341.466667pt;}
.xc2_c00216{left:344.533333pt;}
.xcb_c00216{left:347.866667pt;}
.x32_c00216{left:349.466667pt;}
.x6b_c00216{left:351.200000pt;}
.x3e_c00216{left:353.733333pt;}
.x85_c00216{left:356.800000pt;}
.xc_c00216{left:359.333333pt;}
.xcc_c00216{left:360.666667pt;}
.x2_c00216{left:364.533333pt;}
.x8c_c00216{left:366.000000pt;}
.x6c_c00216{left:367.200000pt;}
.xe3_c00216{left:368.400000pt;}
.x33_c00216{left:371.600000pt;}
.x1b_c00216{left:372.666667pt;}
.x78_c00216{left:374.933333pt;}
.x9f_c00216{left:375.866667pt;}
.xb8_c00216{left:377.600000pt;}
.xfb_c00216{left:378.533333pt;}
.x5b_c00216{left:386.000000pt;}
.x3f_c00216{left:386.933333pt;}
.x94_c00216{left:388.666667pt;}
.x61_c00216{left:389.600000pt;}
.x106_c00216{left:392.800000pt;}
.xb2_c00216{left:394.800000pt;}
.x34_c00216{left:395.866667pt;}
.x5_c00216{left:398.133333pt;}
.xdd_c00216{left:399.733333pt;}
.xa0_c00216{left:401.200000pt;}
.xd_c00216{left:403.866667pt;}
.x99_c00216{left:404.800000pt;}
.xd8_c00216{left:406.400000pt;}
.xac_c00216{left:410.800000pt;}
.x8d_c00216{left:413.066667pt;}
.x1_c00216{left:414.133333pt;}
.x28_c00216{left:416.666667pt;}
.x86_c00216{left:426.533333pt;}
.x4b_c00216{left:429.066667pt;}
.x9a_c00216{left:432.933333pt;}
.xe4_c00216{left:434.666667pt;}
.x6d_c00216{left:435.733333pt;}
.xb3_c00216{left:437.333333pt;}
.xc3_c00216{left:439.600000pt;}
.x3_c00216{left:441.600000pt;}
.x8e_c00216{left:443.466667pt;}
.x1c_c00216{left:444.933333pt;}
.x40_c00216{left:445.866667pt;}
.x62_c00216{left:448.400000pt;}
.xa7_c00216{left:449.466667pt;}
.x4c_c00216{left:450.533333pt;}
.xde_c00216{left:451.600000pt;}
.xe_c00216{left:454.400000pt;}
.xf1_c00216{left:456.933333pt;}
.x79_c00216{left:458.800000pt;}
.x100_c00216{left:461.600000pt;}
.xb4_c00216{left:463.600000pt;}
.x35_c00216{left:465.600000pt;}
.xa1_c00216{left:466.533333pt;}
.x52_c00216{left:468.266667pt;}
.xcd_c00216{left:470.133333pt;}
.x5c_c00216{left:471.466667pt;}
.xa8_c00216{left:473.200000pt;}
.xb9_c00216{left:474.266667pt;}
.x108_c00216{left:475.333333pt;}
.x29_c00216{left:477.466667pt;}
.x41_c00216{left:480.400000pt;}
.x6_c00216{left:482.266667pt;}
.xf_c00216{left:486.666667pt;}
.xeb_c00216{left:489.200000pt;}
.x53_c00216{left:490.933333pt;}
.xd2_c00216{left:491.866667pt;}
.x36_c00216{left:492.800000pt;}
.x6e_c00216{left:494.266667pt;}
.xc4_c00216{left:496.266667pt;}
.x5d_c00216{left:498.933333pt;}
.xa9_c00216{left:500.133333pt;}
.xfc_c00216{left:502.000000pt;}
.x63_c00216{left:503.066667pt;}
.x109_c00216{left:504.133333pt;}
.x87_c00216{left:505.200000pt;}
.x8f_c00216{left:507.200000pt;}
.xdf_c00216{left:508.266667pt;}
.xba_c00216{left:511.066667pt;}
.x6f_c00216{left:513.200000pt;}
.x95_c00216{left:515.066667pt;}
.x2a_c00216{left:520.666667pt;}
.x42_c00216{left:521.733333pt;}
.xc5_c00216{left:525.066667pt;}
.x10_c00216{left:526.666667pt;}
.xd3_c00216{left:527.600000pt;}
.xe5_c00216{left:529.066667pt;}
.x54_c00216{left:531.200000pt;}
.x37_c00216{left:535.333333pt;}
.xad_c00216{left:538.800000pt;}
.xf2_c00216{left:542.133333pt;}
.xbb_c00216{left:543.333333pt;}
.x88_c00216{left:544.266667pt;}
.xfd_c00216{left:545.600000pt;}
.x7a_c00216{left:548.933333pt;}
.x11_c00216{left:550.400000pt;}
.x43_c00216{left:555.333333pt;}
.xc6_c00216{left:558.666667pt;}
.x89_c00216{left:560.933333pt;}
.xf3_c00216{left:562.933333pt;}
.x38_c00216{left:566.666667pt;}
.xbc_c00216{left:568.666667pt;}
.x9b_c00216{left:569.866667pt;}
.xce_c00216{left:573.200000pt;}
.x70_c00216{left:578.133333pt;}
.x1d_c00216{left:580.000000pt;}
.x2b_c00216{left:581.733333pt;}
.xe6_c00216{left:583.200000pt;}
.x12_c00216{left:585.866667pt;}
.xec_c00216{left:587.200000pt;}
.x9c_c00216{left:588.133333pt;}
.xe0_c00216{left:589.466667pt;}
.xf4_c00216{left:592.666667pt;}
.x71_c00216{left:595.066667pt;}
.x7b_c00216{left:598.800000pt;}
.x44_c00216{left:603.066667pt;}
.x2c_c00216{left:607.066667pt;}
.xd9_c00216{left:610.666667pt;}
.xae_c00216{left:612.666667pt;}
.x1e_c00216{left:613.600000pt;}
.x72_c00216{left:614.933333pt;}
.x7c_c00216{left:616.400000pt;}
.xfe_c00216{left:620.666667pt;}
.xed_c00216{left:621.733333pt;}
.x90_c00216{left:624.000000pt;}
.x13_c00216{left:628.400000pt;}
.x4d_c00216{left:629.733333pt;}
.x7d_c00216{left:632.400000pt;}
.x2d_c00216{left:638.400000pt;}
.x64_c00216{left:643.200000pt;}
.x14_c00216{left:644.133333pt;}
.x1f_c00216{left:646.533333pt;}
.x39_c00216{left:648.533333pt;}
.x91_c00216{left:651.466667pt;}
.xd4_c00216{left:653.066667pt;}
.x45_c00216{left:654.000000pt;}
.x7e_c00216{left:655.733333pt;}
.x55_c00216{left:657.333333pt;}
.x10a_c00216{left:658.933333pt;}
.x73_c00216{left:661.333333pt;}
.xc7_c00216{left:662.666667pt;}
.x20_c00216{left:665.066667pt;}
.x8a_c00216{left:667.600000pt;}
.xf5_c00216{left:668.800000pt;}
.x46_c00216{left:671.600000pt;}
.xbd_c00216{left:672.933333pt;}
.xcf_c00216{left:674.133333pt;}
.xb5_c00216{left:675.333333pt;}
.xc8_c00216{left:676.800000pt;}
.x4e_c00216{left:677.733333pt;}
.xa2_c00216{left:680.666667pt;}
.x56_c00216{left:683.600000pt;}
.x9d_c00216{left:686.000000pt;}
.xf6_c00216{left:688.666667pt;}
.xee_c00216{left:689.866667pt;}
.x21_c00216{left:690.933333pt;}
.x15_c00216{left:696.933333pt;}
.x74_c00216{left:698.133333pt;}
.x47_c00216{left:700.133333pt;}
.x92_c00216{left:701.333333pt;}
.x2e_c00216{left:702.666667pt;}
.x16_c00216{left:707.200000pt;}
.x7f_c00216{left:708.533333pt;}
.xd0_c00216{left:712.266667pt;}
.xbe_c00216{left:713.866667pt;}
.x101_c00216{left:715.066667pt;}
}





/* 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_c00217 {
    display:none;
  }
  .loading-indicator_c00217.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00217 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_c00217 { 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_c00217" -> "#page-container .classname_c00217")
 */
.pf_c00217 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00217 { /* 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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00217 { /* 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_c00217 { /* 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_c00217 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00217 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00217 {overflow:visible;}
  }
}
.c_c00217 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00217 { /* 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_c00217:after { /* webkit #35443 */
  content: '';
}
.t_c00217:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00217 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 */
}
.__c00217 { /* 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_c00217 { /* info for Javascript */
  display:none;
}
.l_c00217 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00217 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00217 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00217: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_c00217 {
    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_c00217.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00217.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_c00217 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00217{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00217;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.000000;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;}
.m6c_c00217{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m64_c00217{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00217{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m49_c00217{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00217{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00217{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m78_c00217{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m69_c00217{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00217{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00217{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m60_c00217{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m67_c00217{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m77_c00217{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00217{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m76_c00217{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m74_c00217{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mf_c00217{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m68_c00217{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m40_c00217{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m50_c00217{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m59_c00217{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m24_c00217{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m34_c00217{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00217{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m47_c00217{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00217{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m42_c00217{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m39_c00217{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m25_c00217{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m52_c00217{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00217{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00217{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00217{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m20_c00217{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m26_c00217{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m55_c00217{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00217{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00217{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m36_c00217{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00217{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00217{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m54_c00217{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m28_c00217{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00217{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m75_c00217{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00217{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00217{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00217{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00217{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00217{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m71_c00217{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00217{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00217{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00217{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m30_c00217{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m37_c00217{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m46_c00217{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m58_c00217{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00217{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00217{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m29_c00217{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m48_c00217{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00217{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m41_c00217{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m38_c00217{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m35_c00217{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27_c00217{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m33_c00217{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00217{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md_c00217{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00217{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00217{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00217{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m32_c00217{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00217{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m21_c00217{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m44_c00217{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m23_c00217{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m51_c00217{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00217{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m18_c00217{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00217{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00217{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00217{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m43_c00217{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00217{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00217{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m3_c00217{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m62_c00217{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m63_c00217{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m56_c00217{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m66_c00217{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m73_c00217{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m72_c00217{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m70_c00217{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m61_c00217{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00217{vertical-align:0.000000px;}
.ls0_c00217{letter-spacing:0.000000px;}
.sc__c00217{text-shadow:none;}
.sc0_c00217{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__c00217{-webkit-text-stroke:0px transparent;}
.sc0_c00217{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00217{word-spacing:0.000000px;}
.fc0_c00217{color:transparent;}
.fs2_c00217{font-size:42.000000px;}
.fs0_c00217{font-size:54.000000px;}
.fs1_c00217{font-size:60.000000px;}
.y0_c00217{bottom:0.000000px;}
.y19_c00217{bottom:561.600000px;}
.y18_c00217{bottom:577.500000px;}
.y17_c00217{bottom:594.000000px;}
.y16_c00217{bottom:609.450000px;}
.y15_c00217{bottom:625.650000px;}
.y14_c00217{bottom:641.550000px;}
.y13_c00217{bottom:657.000000px;}
.y12_c00217{bottom:672.450000px;}
.y11_c00217{bottom:704.100000px;}
.y10_c00217{bottom:724.650000px;}
.yf_c00217{bottom:744.450000px;}
.ye_c00217{bottom:764.550000px;}
.yd_c00217{bottom:784.050000px;}
.yc_c00217{bottom:803.700000px;}
.yb_c00217{bottom:824.250000px;}
.ya_c00217{bottom:844.050000px;}
.y9_c00217{bottom:864.150000px;}
.y8_c00217{bottom:883.950000px;}
.y7_c00217{bottom:903.750000px;}
.y6_c00217{bottom:923.550000px;}
.y5_c00217{bottom:943.650000px;}
.y4_c00217{bottom:963.450000px;}
.y3_c00217{bottom:983.250000px;}
.y2_c00217{bottom:1003.350000px;}
.y1_c00217{bottom:1041.900000px;}
.h4_c00217{height:42.000000px;}
.h2_c00217{height:54.000000px;}
.h3_c00217{height:60.000000px;}
.h0_c00217{height:1166.759949px;}
.h1_c00217{height:1167.000000px;}
.w0_c00217{width:918.720063px;}
.w1_c00217{width:918.750000px;}
.x0_c00217{left:0.000000px;}
.x5_c00217{left:111.300000px;}
.x39_c00217{left:112.500000px;}
.x88_c00217{left:132.750000px;}
.xa5_c00217{left:137.550000px;}
.x21_c00217{left:141.000000px;}
.x51_c00217{left:142.350000px;}
.x14_c00217{left:145.050000px;}
.x2d_c00217{left:148.950000px;}
.x6_c00217{left:154.500000px;}
.x43_c00217{left:157.050000px;}
.x80_c00217{left:160.200000px;}
.x15_c00217{left:162.750000px;}
.x2e_c00217{left:167.250000px;}
.x5d_c00217{left:168.600000px;}
.x52_c00217{left:170.850000px;}
.x3a_c00217{left:173.700000px;}
.x81_c00217{left:175.650000px;}
.x7_c00217{left:178.200000px;}
.x9b_c00217{left:185.550000px;}
.xab_c00217{left:188.700000px;}
.x93_c00217{left:189.750000px;}
.x2f_c00217{left:192.450000px;}
.x5e_c00217{left:199.500000px;}
.xac_c00217{left:203.400000px;}
.x74_c00217{left:204.750000px;}
.x8_c00217{left:207.000000px;}
.x44_c00217{left:212.550000px;}
.xb3_c00217{left:213.900000px;}
.x89_c00217{left:222.450000px;}
.x16_c00217{left:228.150000px;}
.x9c_c00217{left:229.500000px;}
.x30_c00217{left:233.850000px;}
.x22_c00217{left:239.250000px;}
.x8a_c00217{left:242.250000px;}
.x9_c00217{left:248.400000px;}
.x31_c00217{left:253.650000px;}
.xa7_c00217{left:255.600000px;}
.x17_c00217{left:266.250000px;}
.xa8_c00217{left:268.950000px;}
.xa_c00217{left:270.000000px;}
.x23_c00217{left:271.650000px;}
.xb0_c00217{left:273.600000px;}
.x3b_c00217{left:275.850000px;}
.x68_c00217{left:278.400000px;}
.xb4_c00217{left:280.800000px;}
.x9d_c00217{left:282.450000px;}
.x45_c00217{left:285.300000px;}
.x5f_c00217{left:286.950000px;}
.xb1_c00217{left:291.300000px;}
.xb7_c00217{left:292.350000px;}
.x69_c00217{left:293.850000px;}
.x53_c00217{left:296.700000px;}
.x75_c00217{left:300.150000px;}
.x94_c00217{left:304.650000px;}
.x3c_c00217{left:305.700000px;}
.xb5_c00217{left:307.500000px;}
.x46_c00217{left:310.200000px;}
.xa2_c00217{left:312.000000px;}
.x1_c00217{left:313.950000px;}
.x9e_c00217{left:320.250000px;}
.x6a_c00217{left:322.650000px;}
.xad_c00217{left:325.050000px;}
.x54_c00217{left:327.600000px;}
.x24_c00217{left:328.950000px;}
.xb_c00217{left:332.250000px;}
.x32_c00217{left:333.600000px;}
.x95_c00217{left:335.550000px;}
.xb8_c00217{left:337.350000px;}
.xae_c00217{left:340.500000px;}
.x6b_c00217{left:345.300000px;}
.x55_c00217{left:347.100000px;}
.x82_c00217{left:349.800000px;}
.x18_c00217{left:350.850000px;}
.x60_c00217{left:353.850000px;}
.x25_c00217{left:357.450000px;}
.x3d_c00217{left:363.000000px;}
.x47_c00217{left:366.000000px;}
.x96_c00217{left:368.250000px;}
.xa3_c00217{left:370.050000px;}
.xaf_c00217{left:371.100000px;}
.xb2_c00217{left:373.800000px;}
.xc_c00217{left:375.450000px;}
.x76_c00217{left:376.800000px;}
.x6c_c00217{left:381.600000px;}
.x61_c00217{left:384.150000px;}
.xa4_c00217{left:387.750000px;}
.x8b_c00217{left:390.150000px;}
.xa9_c00217{left:391.650000px;}
.x48_c00217{left:393.750000px;}
.x83_c00217{left:395.100000px;}
.x77_c00217{left:399.450000px;}
.x6d_c00217{left:400.650000px;}
.x9f_c00217{left:404.400000px;}
.x3e_c00217{left:410.100000px;}
.x78_c00217{left:415.650000px;}
.x84_c00217{left:422.100000px;}
.x62_c00217{left:423.450000px;}
.x19_c00217{left:425.700000px;}
.x97_c00217{left:434.550000px;}
.x26_c00217{left:437.400000px;}
.x8c_c00217{left:438.450000px;}
.x49_c00217{left:439.500000px;}
.x2_c00217{left:441.750000px;}
.x6e_c00217{left:448.500000px;}
.x1a_c00217{left:451.200000px;}
.x27_c00217{left:457.500000px;}
.x3_c00217{left:459.750000px;}
.x56_c00217{left:471.300000px;}
.x79_c00217{left:478.650000px;}
.x8d_c00217{left:484.500000px;}
.x6f_c00217{left:486.300000px;}
.x4a_c00217{left:487.350000px;}
.x3f_c00217{left:488.550000px;}
.x57_c00217{left:492.600000px;}
.x28_c00217{left:496.350000px;}
.xa6_c00217{left:505.050000px;}
.x98_c00217{left:507.600000px;}
.x40_c00217{left:508.650000px;}
.x7a_c00217{left:512.100000px;}
.xd_c00217{left:517.050000px;}
.x33_c00217{left:519.000000px;}
.x1b_c00217{left:521.400000px;}
.x4b_c00217{left:525.150000px;}
.xaa_c00217{left:530.250000px;}
.xb6_c00217{left:531.450000px;}
.x29_c00217{left:534.150000px;}
.x58_c00217{left:539.100000px;}
.x85_c00217{left:542.700000px;}
.x4c_c00217{left:544.950000px;}
.x8e_c00217{left:546.750000px;}
.x1c_c00217{left:550.200000px;}
.x86_c00217{left:554.550000px;}
.xe_c00217{left:556.350000px;}
.x63_c00217{left:564.450000px;}
.x7b_c00217{left:568.200000px;}
.x4d_c00217{left:573.450000px;}
.x8f_c00217{left:575.250000px;}
.x70_c00217{left:580.650000px;}
.x64_c00217{left:583.200000px;}
.xf_c00217{left:584.850000px;}
.x59_c00217{left:586.650000px;}
.x34_c00217{left:587.700000px;}
.x1d_c00217{left:592.350000px;}
.x65_c00217{left:602.250000px;}
.x2a_c00217{left:604.350000px;}
.x5a_c00217{left:609.300000px;}
.x90_c00217{left:614.550000px;}
.x10_c00217{left:616.200000px;}
.x7c_c00217{left:620.700000px;}
.x2b_c00217{left:632.400000px;}
.x71_c00217{left:633.900000px;}
.x11_c00217{left:636.000000px;}
.x66_c00217{left:637.500000px;}
.x35_c00217{left:638.850000px;}
.x7d_c00217{left:644.400000px;}
.x91_c00217{left:645.900000px;}
.x36_c00217{left:654.300000px;}
.x5b_c00217{left:658.650000px;}
.x1e_c00217{left:663.750000px;}
.x4e_c00217{left:665.550000px;}
.x12_c00217{left:666.600000px;}
.x92_c00217{left:671.400000px;}
.x41_c00217{left:673.350000px;}
.xa0_c00217{left:677.550000px;}
.x37_c00217{left:682.350000px;}
.x4f_c00217{left:685.650000px;}
.x7e_c00217{left:689.400000px;}
.x99_c00217{left:691.200000px;}
.x13_c00217{left:696.900000px;}
.x5c_c00217{left:699.300000px;}
.x42_c00217{left:704.250000px;}
.x72_c00217{left:705.900000px;}
.x1f_c00217{left:709.050000px;}
.x38_c00217{left:714.000000px;}
.x87_c00217{left:716.250000px;}
.xa1_c00217{left:721.500000px;}
.x50_c00217{left:729.600000px;}
.x7f_c00217{left:735.150000px;}
.x2c_c00217{left:737.850000px;}
.x20_c00217{left:738.900000px;}
.x9a_c00217{left:744.000000px;}
.x4_c00217{left:753.150000px;}
.x67_c00217{left:756.900000px;}
.x73_c00217{left:760.200000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.fs2_c00217{font-size:37.333333pt;}
.fs0_c00217{font-size:48.000000pt;}
.fs1_c00217{font-size:53.333333pt;}
.y0_c00217{bottom:0.000000pt;}
.y19_c00217{bottom:499.200000pt;}
.y18_c00217{bottom:513.333333pt;}
.y17_c00217{bottom:528.000000pt;}
.y16_c00217{bottom:541.733333pt;}
.y15_c00217{bottom:556.133333pt;}
.y14_c00217{bottom:570.266667pt;}
.y13_c00217{bottom:584.000000pt;}
.y12_c00217{bottom:597.733333pt;}
.y11_c00217{bottom:625.866667pt;}
.y10_c00217{bottom:644.133333pt;}
.yf_c00217{bottom:661.733333pt;}
.ye_c00217{bottom:679.600000pt;}
.yd_c00217{bottom:696.933333pt;}
.yc_c00217{bottom:714.400000pt;}
.yb_c00217{bottom:732.666667pt;}
.ya_c00217{bottom:750.266667pt;}
.y9_c00217{bottom:768.133333pt;}
.y8_c00217{bottom:785.733333pt;}
.y7_c00217{bottom:803.333333pt;}
.y6_c00217{bottom:820.933333pt;}
.y5_c00217{bottom:838.800000pt;}
.y4_c00217{bottom:856.400000pt;}
.y3_c00217{bottom:874.000000pt;}
.y2_c00217{bottom:891.866667pt;}
.y1_c00217{bottom:926.133333pt;}
.h4_c00217{height:37.333333pt;}
.h2_c00217{height:48.000000pt;}
.h3_c00217{height:53.333333pt;}
.h0_c00217{height:1037.119955pt;}
.h1_c00217{height:1037.333333pt;}
.w0_c00217{width:816.640056pt;}
.w1_c00217{width:816.666667pt;}
.x0_c00217{left:0.000000pt;}
.x5_c00217{left:98.933333pt;}
.x39_c00217{left:100.000000pt;}
.x88_c00217{left:118.000000pt;}
.xa5_c00217{left:122.266667pt;}
.x21_c00217{left:125.333333pt;}
.x51_c00217{left:126.533333pt;}
.x14_c00217{left:128.933333pt;}
.x2d_c00217{left:132.400000pt;}
.x6_c00217{left:137.333333pt;}
.x43_c00217{left:139.600000pt;}
.x80_c00217{left:142.400000pt;}
.x15_c00217{left:144.666667pt;}
.x2e_c00217{left:148.666667pt;}
.x5d_c00217{left:149.866667pt;}
.x52_c00217{left:151.866667pt;}
.x3a_c00217{left:154.400000pt;}
.x81_c00217{left:156.133333pt;}
.x7_c00217{left:158.400000pt;}
.x9b_c00217{left:164.933333pt;}
.xab_c00217{left:167.733333pt;}
.x93_c00217{left:168.666667pt;}
.x2f_c00217{left:171.066667pt;}
.x5e_c00217{left:177.333333pt;}
.xac_c00217{left:180.800000pt;}
.x74_c00217{left:182.000000pt;}
.x8_c00217{left:184.000000pt;}
.x44_c00217{left:188.933333pt;}
.xb3_c00217{left:190.133333pt;}
.x89_c00217{left:197.733333pt;}
.x16_c00217{left:202.800000pt;}
.x9c_c00217{left:204.000000pt;}
.x30_c00217{left:207.866667pt;}
.x22_c00217{left:212.666667pt;}
.x8a_c00217{left:215.333333pt;}
.x9_c00217{left:220.800000pt;}
.x31_c00217{left:225.466667pt;}
.xa7_c00217{left:227.200000pt;}
.x17_c00217{left:236.666667pt;}
.xa8_c00217{left:239.066667pt;}
.xa_c00217{left:240.000000pt;}
.x23_c00217{left:241.466667pt;}
.xb0_c00217{left:243.200000pt;}
.x3b_c00217{left:245.200000pt;}
.x68_c00217{left:247.466667pt;}
.xb4_c00217{left:249.600000pt;}
.x9d_c00217{left:251.066667pt;}
.x45_c00217{left:253.600000pt;}
.x5f_c00217{left:255.066667pt;}
.xb1_c00217{left:258.933333pt;}
.xb7_c00217{left:259.866667pt;}
.x69_c00217{left:261.200000pt;}
.x53_c00217{left:263.733333pt;}
.x75_c00217{left:266.800000pt;}
.x94_c00217{left:270.800000pt;}
.x3c_c00217{left:271.733333pt;}
.xb5_c00217{left:273.333333pt;}
.x46_c00217{left:275.733333pt;}
.xa2_c00217{left:277.333333pt;}
.x1_c00217{left:279.066667pt;}
.x9e_c00217{left:284.666667pt;}
.x6a_c00217{left:286.800000pt;}
.xad_c00217{left:288.933333pt;}
.x54_c00217{left:291.200000pt;}
.x24_c00217{left:292.400000pt;}
.xb_c00217{left:295.333333pt;}
.x32_c00217{left:296.533333pt;}
.x95_c00217{left:298.266667pt;}
.xb8_c00217{left:299.866667pt;}
.xae_c00217{left:302.666667pt;}
.x6b_c00217{left:306.933333pt;}
.x55_c00217{left:308.533333pt;}
.x82_c00217{left:310.933333pt;}
.x18_c00217{left:311.866667pt;}
.x60_c00217{left:314.533333pt;}
.x25_c00217{left:317.733333pt;}
.x3d_c00217{left:322.666667pt;}
.x47_c00217{left:325.333333pt;}
.x96_c00217{left:327.333333pt;}
.xa3_c00217{left:328.933333pt;}
.xaf_c00217{left:329.866667pt;}
.xb2_c00217{left:332.266667pt;}
.xc_c00217{left:333.733333pt;}
.x76_c00217{left:334.933333pt;}
.x6c_c00217{left:339.200000pt;}
.x61_c00217{left:341.466667pt;}
.xa4_c00217{left:344.666667pt;}
.x8b_c00217{left:346.800000pt;}
.xa9_c00217{left:348.133333pt;}
.x48_c00217{left:350.000000pt;}
.x83_c00217{left:351.200000pt;}
.x77_c00217{left:355.066667pt;}
.x6d_c00217{left:356.133333pt;}
.x9f_c00217{left:359.466667pt;}
.x3e_c00217{left:364.533333pt;}
.x78_c00217{left:369.466667pt;}
.x84_c00217{left:375.200000pt;}
.x62_c00217{left:376.400000pt;}
.x19_c00217{left:378.400000pt;}
.x97_c00217{left:386.266667pt;}
.x26_c00217{left:388.800000pt;}
.x8c_c00217{left:389.733333pt;}
.x49_c00217{left:390.666667pt;}
.x2_c00217{left:392.666667pt;}
.x6e_c00217{left:398.666667pt;}
.x1a_c00217{left:401.066667pt;}
.x27_c00217{left:406.666667pt;}
.x3_c00217{left:408.666667pt;}
.x56_c00217{left:418.933333pt;}
.x79_c00217{left:425.466667pt;}
.x8d_c00217{left:430.666667pt;}
.x6f_c00217{left:432.266667pt;}
.x4a_c00217{left:433.200000pt;}
.x3f_c00217{left:434.266667pt;}
.x57_c00217{left:437.866667pt;}
.x28_c00217{left:441.200000pt;}
.xa6_c00217{left:448.933333pt;}
.x98_c00217{left:451.200000pt;}
.x40_c00217{left:452.133333pt;}
.x7a_c00217{left:455.200000pt;}
.xd_c00217{left:459.600000pt;}
.x33_c00217{left:461.333333pt;}
.x1b_c00217{left:463.466667pt;}
.x4b_c00217{left:466.800000pt;}
.xaa_c00217{left:471.333333pt;}
.xb6_c00217{left:472.400000pt;}
.x29_c00217{left:474.800000pt;}
.x58_c00217{left:479.200000pt;}
.x85_c00217{left:482.400000pt;}
.x4c_c00217{left:484.400000pt;}
.x8e_c00217{left:486.000000pt;}
.x1c_c00217{left:489.066667pt;}
.x86_c00217{left:492.933333pt;}
.xe_c00217{left:494.533333pt;}
.x63_c00217{left:501.733333pt;}
.x7b_c00217{left:505.066667pt;}
.x4d_c00217{left:509.733333pt;}
.x8f_c00217{left:511.333333pt;}
.x70_c00217{left:516.133333pt;}
.x64_c00217{left:518.400000pt;}
.xf_c00217{left:519.866667pt;}
.x59_c00217{left:521.466667pt;}
.x34_c00217{left:522.400000pt;}
.x1d_c00217{left:526.533333pt;}
.x65_c00217{left:535.333333pt;}
.x2a_c00217{left:537.200000pt;}
.x5a_c00217{left:541.600000pt;}
.x90_c00217{left:546.266667pt;}
.x10_c00217{left:547.733333pt;}
.x7c_c00217{left:551.733333pt;}
.x2b_c00217{left:562.133333pt;}
.x71_c00217{left:563.466667pt;}
.x11_c00217{left:565.333333pt;}
.x66_c00217{left:566.666667pt;}
.x35_c00217{left:567.866667pt;}
.x7d_c00217{left:572.800000pt;}
.x91_c00217{left:574.133333pt;}
.x36_c00217{left:581.600000pt;}
.x5b_c00217{left:585.466667pt;}
.x1e_c00217{left:590.000000pt;}
.x4e_c00217{left:591.600000pt;}
.x12_c00217{left:592.533333pt;}
.x92_c00217{left:596.800000pt;}
.x41_c00217{left:598.533333pt;}
.xa0_c00217{left:602.266667pt;}
.x37_c00217{left:606.533333pt;}
.x4f_c00217{left:609.466667pt;}
.x7e_c00217{left:612.800000pt;}
.x99_c00217{left:614.400000pt;}
.x13_c00217{left:619.466667pt;}
.x5c_c00217{left:621.600000pt;}
.x42_c00217{left:626.000000pt;}
.x72_c00217{left:627.466667pt;}
.x1f_c00217{left:630.266667pt;}
.x38_c00217{left:634.666667pt;}
.x87_c00217{left:636.666667pt;}
.xa1_c00217{left:641.333333pt;}
.x50_c00217{left:648.533333pt;}
.x7f_c00217{left:653.466667pt;}
.x2c_c00217{left:655.866667pt;}
.x20_c00217{left:656.800000pt;}
.x9a_c00217{left:661.333333pt;}
.x4_c00217{left:669.466667pt;}
.x67_c00217{left:672.800000pt;}
.x73_c00217{left:675.733333pt;}
}





/* 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_c00218 {
    display:none;
  }
  .loading-indicator_c00218.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00218 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_c00218 { 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_c00218" -> "#page-container .classname_c00218")
 */
.pf_c00218 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00218 { /* 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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00218 { /* 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_c00218 { /* 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_c00218 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00218 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00218 {overflow:visible;}
  }
}
.c_c00218 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00218 { /* 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_c00218:after { /* webkit #35443 */
  content: '';
}
.t_c00218:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00218 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 */
}
.__c00218 { /* 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_c00218 { /* info for Javascript */
  display:none;
}
.l_c00218 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00218 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00218 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00218: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_c00218 {
    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_c00218.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00218.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_c00218 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00218{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00218;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.000000;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;}
.m4b_c00218{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00218{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m53_c00218{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m55_c00218{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00218{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m60_c00218{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00218{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00218{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m57_c00218{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00218{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00218{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00218{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00218{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m72_c00218{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m99_c00218{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00218{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00218{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00218{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00218{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00218{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m16_c00218{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00218{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m85_c00218{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00218{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00218{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00218{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00218{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m50_c00218{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00218{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m36_c00218{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m81_c00218{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m67_c00218{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m13_c00218{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00218{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m92_c00218{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00218{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00218{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m32_c00218{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00218{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00218{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m83_c00218{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m86_c00218{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m95_c00218{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00218{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00218{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m17_c00218{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00218{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00218{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m87_c00218{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00218{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m25_c00218{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m56_c00218{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m74_c00218{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m38_c00218{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00218{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m71_c00218{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00218{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m37_c00218{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m70_c00218{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00218{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00218{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m43_c00218{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00218{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00218{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m20_c00218{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00218{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m35_c00218{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m78_c00218{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m29_c00218{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00218{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m28_c00218{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00218{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00218{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m96_c00218{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m15_c00218{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m89_c00218{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00218{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00218{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00218{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m21_c00218{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00218{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00218{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m82_c00218{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m69_c00218{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00218{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m61_c00218{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m62_c00218{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m22_c00218{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00218{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m49_c00218{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00218{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00218{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00218{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00218{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00218{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m41_c00218{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00218{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00218{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00218{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00218{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00218{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m19_c00218{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m79_c00218{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00218{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00218{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m84_c00218{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m47_c00218{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m23_c00218{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me_c00218{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m77_c00218{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m46_c00218{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m27_c00218{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7_c00218{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00218{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00218{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m97_c00218{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00218{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m31_c00218{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m76_c00218{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m75_c00218{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m59_c00218{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m44_c00218{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf_c00218{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m45_c00218{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m52_c00218{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00218{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00218{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m30_c00218{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m18_c00218{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m11_c00218{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m12_c00218{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m34_c00218{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mc_c00218{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00218{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3_c00218{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00218{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m51_c00218{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00218{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00218{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.md_c00218{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m94_c00218{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m0_c00218{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m54_c00218{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00218{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m14_c00218{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m65_c00218{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2_c00218{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00218{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00218{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00218{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m93_c00218{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m90_c00218{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m80_c00218{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00218{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m40_c00218{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m64_c00218{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m91_c00218{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00218{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m1_c00218{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m63_c00218{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m5_c00218{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m9_c00218{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.mb_c00218{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m10_c00218{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00218{vertical-align:0.000000px;}
.ls0_c00218{letter-spacing:0.000000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{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__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00218{word-spacing:-3.055556px;}
.ws6_c00218{word-spacing:0.000000px;}
.ws4_c00218{word-spacing:1.666667px;}
.ws5_c00218{word-spacing:8.194444px;}
.ws0_c00218{word-spacing:11.428571px;}
.ws2_c00218{word-spacing:17.906459px;}
.ws1_c00218{word-spacing:21.470588px;}
.fc0_c00218{color:transparent;}
.fs1_c00218{font-size:48.000000px;}
.fs0_c00218{font-size:60.000000px;}
.y0_c00218{bottom:0.000000px;}
.y23_c00218{bottom:142.200000px;}
.y22_c00218{bottom:157.650000px;}
.y21_c00218{bottom:202.050000px;}
.y20_c00218{bottom:222.150000px;}
.y1f_c00218{bottom:241.950000px;}
.y1e_c00218{bottom:261.300000px;}
.y1d_c00218{bottom:281.850000px;}
.y1c_c00218{bottom:301.650000px;}
.y1b_c00218{bottom:322.200000px;}
.y1a_c00218{bottom:342.000000px;}
.y19_c00218{bottom:361.200000px;}
.y18_c00218{bottom:382.050000px;}
.y17_c00218{bottom:402.150000px;}
.y16_c00218{bottom:422.250000px;}
.y15_c00218{bottom:442.200000px;}
.y14_c00218{bottom:462.300000px;}
.y13_c00218{bottom:482.400000px;}
.y12_c00218{bottom:502.200000px;}
.y11_c00218{bottom:522.300000px;}
.y10_c00218{bottom:542.400000px;}
.yf_c00218{bottom:562.200000px;}
.ye_c00218{bottom:582.300000px;}
.yd_c00218{bottom:602.100000px;}
.yc_c00218{bottom:622.200000px;}
.yb_c00218{bottom:642.750000px;}
.ya_c00218{bottom:662.850000px;}
.y9_c00218{bottom:682.650000px;}
.y8_c00218{bottom:702.450000px;}
.y7_c00218{bottom:722.250000px;}
.y6_c00218{bottom:742.050000px;}
.y5_c00218{bottom:762.150000px;}
.y4_c00218{bottom:782.250000px;}
.y3_c00218{bottom:815.100000px;}
.y2_c00218{bottom:848.100000px;}
.y1_c00218{bottom:1043.250000px;}
.h3_c00218{height:48.000000px;}
.h2_c00218{height:60.000000px;}
.h0_c00218{height:1166.759949px;}
.h1_c00218{height:1167.000000px;}
.w0_c00218{width:918.720063px;}
.w1_c00218{width:918.750000px;}
.x0_c00218{left:0.000000px;}
.xc6_c00218{left:141.600000px;}
.x45_c00218{left:142.800000px;}
.x8_c00218{left:144.000000px;}
.x4e_c00218{left:160.650000px;}
.xa7_c00218{left:162.750000px;}
.x77_c00218{left:164.400000px;}
.xc0_c00218{left:170.850000px;}
.x38_c00218{left:171.900000px;}
.xa8_c00218{left:173.550000px;}
.x26_c00218{left:177.300000px;}
.x6d_c00218{left:178.500000px;}
.x97_c00218{left:179.850000px;}
.x4f_c00218{left:188.400000px;}
.x9_c00218{left:190.050000px;}
.x85_c00218{left:192.600000px;}
.x78_c00218{left:194.250000px;}
.x17_c00218{left:197.700000px;}
.x8e_c00218{left:199.350000px;}
.xe4_c00218{left:201.450000px;}
.x5b_c00218{left:205.650000px;}
.xdd_c00218{left:207.000000px;}
.x39_c00218{left:208.650000px;}
.x86_c00218{left:210.900000px;}
.x79_c00218{left:216.150000px;}
.x8f_c00218{left:218.100000px;}
.xcd_c00218{left:220.650000px;}
.x18_c00218{left:222.600000px;}
.xe5_c00218{left:224.550000px;}
.x27_c00218{left:226.200000px;}
.x3a_c00218{left:231.300000px;}
.x50_c00218{left:232.350000px;}
.xa_c00218{left:234.300000px;}
.xc1_c00218{left:237.750000px;}
.x98_c00218{left:241.350000px;}
.x28_c00218{left:244.500000px;}
.x60_c00218{left:246.000000px;}
.xb_c00218{left:250.200000px;}
.xa0_c00218{left:253.800000px;}
.x19_c00218{left:256.500000px;}
.x29_c00218{left:257.850000px;}
.x7a_c00218{left:260.100000px;}
.x51_c00218{left:263.700000px;}
.x87_c00218{left:265.200000px;}
.xd8_c00218{left:266.400000px;}
.x99_c00218{left:272.700000px;}
.xd1_c00218{left:274.500000px;}
.x61_c00218{left:276.900000px;}
.x1a_c00218{left:279.900000px;}
.x90_c00218{left:281.850000px;}
.xbb_c00218{left:283.200000px;}
.xae_c00218{left:285.900000px;}
.xd9_c00218{left:288.000000px;}
.x3b_c00218{left:289.950000px;}
.x52_c00218{left:291.750000px;}
.x2a_c00218{left:293.100000px;}
.x7b_c00218{left:295.800000px;}
.x91_c00218{left:302.700000px;}
.x62_c00218{left:305.400000px;}
.x5c_c00218{left:309.150000px;}
.xd7_c00218{left:311.250000px;}
.x2b_c00218{left:312.600000px;}
.x7c_c00218{left:314.100000px;}
.x6e_c00218{left:317.100000px;}
.xec_c00218{left:318.150000px;}
.xea_c00218{left:321.900000px;}
.xce_c00218{left:327.600000px;}
.x1b_c00218{left:329.250000px;}
.x46_c00218{left:332.850000px;}
.x3c_c00218{left:336.450000px;}
.x88_c00218{left:337.500000px;}
.x5d_c00218{left:339.450000px;}
.xaf_c00218{left:341.400000px;}
.xde_c00218{left:342.450000px;}
.xf1_c00218{left:346.200000px;}
.x9a_c00218{left:349.350000px;}
.x63_c00218{left:350.400000px;}
.xa1_c00218{left:353.550000px;}
.x4_c00218{left:355.650000px;}
.x89_c00218{left:358.800000px;}
.xc_c00218{left:360.750000px;}
.x2c_c00218{left:363.300000px;}
.xb0_c00218{left:366.600000px;}
.xb7_c00218{left:367.650000px;}
.x3d_c00218{left:373.200000px;}
.xd_c00218{left:379.800000px;}
.x53_c00218{left:382.050000px;}
.xc7_c00218{left:385.500000px;}
.x7d_c00218{left:389.700000px;}
.x1c_c00218{left:392.250000px;}
.x64_c00218{left:397.200000px;}
.xb1_c00218{left:399.000000px;}
.x9b_c00218{left:400.800000px;}
.x2d_c00218{left:405.750000px;}
.x7e_c00218{left:406.950000px;}
.xed_c00218{left:411.000000px;}
.x92_c00218{left:412.500000px;}
.x6f_c00218{left:415.050000px;}
.x2_c00218{left:416.850000px;}
.xcf_c00218{left:418.650000px;}
.x8a_c00218{left:420.300000px;}
.x1d_c00218{left:423.600000px;}
.x3e_c00218{left:425.100000px;}
.x65_c00218{left:426.750000px;}
.xa9_c00218{left:429.450000px;}
.x2e_c00218{left:431.700000px;}
.xb2_c00218{left:433.200000px;}
.xe_c00218{left:434.550000px;}
.xb8_c00218{left:435.750000px;}
.xbc_c00218{left:437.400000px;}
.x54_c00218{left:438.600000px;}
.x7f_c00218{left:440.100000px;}
.x70_c00218{left:443.550000px;}
.x3f_c00218{left:446.700000px;}
.x2f_c00218{left:450.000000px;}
.x9c_c00218{left:453.750000px;}
.x93_c00218{left:454.950000px;}
.x47_c00218{left:457.050000px;}
.xbd_c00218{left:458.250000px;}
.x1e_c00218{left:461.700000px;}
.x1_c00218{left:465.150000px;}
.xf_c00218{left:467.250000px;}
.xc2_c00218{left:468.300000px;}
.xd2_c00218{left:469.650000px;}
.x66_c00218{left:471.450000px;}
.x5_c00218{left:472.650000px;}
.xaa_c00218{left:483.150000px;}
.xdf_c00218{left:484.950000px;}
.x40_c00218{left:486.300000px;}
.x30_c00218{left:488.850000px;}
.x71_c00218{left:490.050000px;}
.x1f_c00218{left:492.000000px;}
.x9d_c00218{left:494.100000px;}
.xb9_c00218{left:495.450000px;}
.x67_c00218{left:496.650000px;}
.xe6_c00218{left:498.600000px;}
.x3_c00218{left:501.150000px;}
.x31_c00218{left:504.300000px;}
.xa2_c00218{left:506.700000px;}
.x72_c00218{left:508.800000px;}
.x10_c00218{left:513.000000px;}
.xc8_c00218{left:515.550000px;}
.xe7_c00218{left:522.750000px;}
.x80_c00218{left:523.950000px;}
.xab_c00218{left:526.350000px;}
.x68_c00218{left:528.000000px;}
.x73_c00218{left:529.350000px;}
.x6_c00218{left:531.000000px;}
.xd3_c00218{left:533.700000px;}
.xb3_c00218{left:537.900000px;}
.x32_c00218{left:540.300000px;}
.xc9_c00218{left:543.600000px;}
.xee_c00218{left:544.800000px;}
.x7_c00218{left:548.250000px;}
.x20_c00218{left:550.650000px;}
.x55_c00218{left:552.000000px;}
.xba_c00218{left:553.800000px;}
.xf2_c00218{left:555.150000px;}
.x81_c00218{left:558.450000px;}
.x8b_c00218{left:560.700000px;}
.x48_c00218{left:562.050000px;}
.x5e_c00218{left:563.100000px;}
.xc3_c00218{left:568.050000px;}
.xbe_c00218{left:571.350000px;}
.xac_c00218{left:577.050000px;}
.xc4_c00218{left:579.900000px;}
.xda_c00218{left:583.200000px;}
.x41_c00218{left:586.350000px;}
.x69_c00218{left:587.700000px;}
.x74_c00218{left:589.050000px;}
.x8c_c00218{left:591.000000px;}
.x94_c00218{left:594.000000px;}
.x9e_c00218{left:597.150000px;}
.x82_c00218{left:598.350000px;}
.xca_c00218{left:601.200000px;}
.xe8_c00218{left:604.950000px;}
.x33_c00218{left:606.150000px;}
.xd4_c00218{left:608.700000px;}
.x75_c00218{left:611.400000px;}
.x11_c00218{left:612.750000px;}
.x21_c00218{left:615.450000px;}
.xa3_c00218{left:620.850000px;}
.x49_c00218{left:623.550000px;}
.x56_c00218{left:624.750000px;}
.xe0_c00218{left:626.550000px;}
.x12_c00218{left:630.000000px;}
.xb4_c00218{left:633.600000px;}
.x4a_c00218{left:641.250000px;}
.x57_c00218{left:644.250000px;}
.xdb_c00218{left:645.450000px;}
.xe1_c00218{left:647.100000px;}
.x34_c00218{left:649.650000px;}
.xd5_c00218{left:652.200000px;}
.x42_c00218{left:657.900000px;}
.xd0_c00218{left:659.700000px;}
.x4b_c00218{left:660.750000px;}
.x6a_c00218{left:661.800000px;}
.xad_c00218{left:664.200000px;}
.xef_c00218{left:670.500000px;}
.x58_c00218{left:671.550000px;}
.xd6_c00218{left:672.750000px;}
.x95_c00218{left:674.100000px;}
.x13_c00218{left:675.300000px;}
.xeb_c00218{left:677.400000px;}
.x6b_c00218{left:680.100000px;}
.x22_c00218{left:681.750000px;}
.xf0_c00218{left:683.400000px;}
.x4c_c00218{left:686.250000px;}
.xdc_c00218{left:691.500000px;}
.xe2_c00218{left:694.650000px;}
.x83_c00218{left:698.400000px;}
.x14_c00218{left:701.250000px;}
.x5f_c00218{left:705.450000px;}
.x23_c00218{left:708.000000px;}
.xbf_c00218{left:709.650000px;}
.x35_c00218{left:715.500000px;}
.xa4_c00218{left:727.050000px;}
.x8d_c00218{left:728.550000px;}
.xb5_c00218{left:731.400000px;}
.x43_c00218{left:732.450000px;}
.x15_c00218{left:733.650000px;}
.x24_c00218{left:736.050000px;}
.xe9_c00218{left:737.700000px;}
.xcb_c00218{left:738.750000px;}
.x4d_c00218{left:742.350000px;}
.xa5_c00218{left:747.150000px;}
.x76_c00218{left:749.400000px;}
.x36_c00218{left:750.450000px;}
.x59_c00218{left:752.550000px;}
.xe3_c00218{left:754.050000px;}
.x6c_c00218{left:756.900000px;}
.x44_c00218{left:758.400000px;}
.x84_c00218{left:763.500000px;}
.xc5_c00218{left:765.150000px;}
.x96_c00218{left:768.900000px;}
.xcc_c00218{left:770.400000px;}
.xa6_c00218{left:772.650000px;}
.x16_c00218{left:775.050000px;}
.x37_c00218{left:776.400000px;}
.x9f_c00218{left:785.400000px;}
.xb6_c00218{left:792.300000px;}
.x5a_c00218{left:796.050000px;}
.x25_c00218{left:798.750000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws3_c00218{word-spacing:-2.716049pt;}
.ws6_c00218{word-spacing:0.000000pt;}
.ws4_c00218{word-spacing:1.481481pt;}
.ws5_c00218{word-spacing:7.283951pt;}
.ws0_c00218{word-spacing:10.158730pt;}
.ws2_c00218{word-spacing:15.916852pt;}
.ws1_c00218{word-spacing:19.084967pt;}
.fs1_c00218{font-size:42.666667pt;}
.fs0_c00218{font-size:53.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y23_c00218{bottom:126.400000pt;}
.y22_c00218{bottom:140.133333pt;}
.y21_c00218{bottom:179.600000pt;}
.y20_c00218{bottom:197.466667pt;}
.y1f_c00218{bottom:215.066667pt;}
.y1e_c00218{bottom:232.266667pt;}
.y1d_c00218{bottom:250.533333pt;}
.y1c_c00218{bottom:268.133333pt;}
.y1b_c00218{bottom:286.400000pt;}
.y1a_c00218{bottom:304.000000pt;}
.y19_c00218{bottom:321.066667pt;}
.y18_c00218{bottom:339.600000pt;}
.y17_c00218{bottom:357.466667pt;}
.y16_c00218{bottom:375.333333pt;}
.y15_c00218{bottom:393.066667pt;}
.y14_c00218{bottom:410.933333pt;}
.y13_c00218{bottom:428.800000pt;}
.y12_c00218{bottom:446.400000pt;}
.y11_c00218{bottom:464.266667pt;}
.y10_c00218{bottom:482.133333pt;}
.yf_c00218{bottom:499.733333pt;}
.ye_c00218{bottom:517.600000pt;}
.yd_c00218{bottom:535.200000pt;}
.yc_c00218{bottom:553.066667pt;}
.yb_c00218{bottom:571.333333pt;}
.ya_c00218{bottom:589.200000pt;}
.y9_c00218{bottom:606.800000pt;}
.y8_c00218{bottom:624.400000pt;}
.y7_c00218{bottom:642.000000pt;}
.y6_c00218{bottom:659.600000pt;}
.y5_c00218{bottom:677.466667pt;}
.y4_c00218{bottom:695.333333pt;}
.y3_c00218{bottom:724.533333pt;}
.y2_c00218{bottom:753.866667pt;}
.y1_c00218{bottom:927.333333pt;}
.h3_c00218{height:42.666667pt;}
.h2_c00218{height:53.333333pt;}
.h0_c00218{height:1037.119955pt;}
.h1_c00218{height:1037.333333pt;}
.w0_c00218{width:816.640056pt;}
.w1_c00218{width:816.666667pt;}
.x0_c00218{left:0.000000pt;}
.xc6_c00218{left:125.866667pt;}
.x45_c00218{left:126.933333pt;}
.x8_c00218{left:128.000000pt;}
.x4e_c00218{left:142.800000pt;}
.xa7_c00218{left:144.666667pt;}
.x77_c00218{left:146.133333pt;}
.xc0_c00218{left:151.866667pt;}
.x38_c00218{left:152.800000pt;}
.xa8_c00218{left:154.266667pt;}
.x26_c00218{left:157.600000pt;}
.x6d_c00218{left:158.666667pt;}
.x97_c00218{left:159.866667pt;}
.x4f_c00218{left:167.466667pt;}
.x9_c00218{left:168.933333pt;}
.x85_c00218{left:171.200000pt;}
.x78_c00218{left:172.666667pt;}
.x17_c00218{left:175.733333pt;}
.x8e_c00218{left:177.200000pt;}
.xe4_c00218{left:179.066667pt;}
.x5b_c00218{left:182.800000pt;}
.xdd_c00218{left:184.000000pt;}
.x39_c00218{left:185.466667pt;}
.x86_c00218{left:187.466667pt;}
.x79_c00218{left:192.133333pt;}
.x8f_c00218{left:193.866667pt;}
.xcd_c00218{left:196.133333pt;}
.x18_c00218{left:197.866667pt;}
.xe5_c00218{left:199.600000pt;}
.x27_c00218{left:201.066667pt;}
.x3a_c00218{left:205.600000pt;}
.x50_c00218{left:206.533333pt;}
.xa_c00218{left:208.266667pt;}
.xc1_c00218{left:211.333333pt;}
.x98_c00218{left:214.533333pt;}
.x28_c00218{left:217.333333pt;}
.x60_c00218{left:218.666667pt;}
.xb_c00218{left:222.400000pt;}
.xa0_c00218{left:225.600000pt;}
.x19_c00218{left:228.000000pt;}
.x29_c00218{left:229.200000pt;}
.x7a_c00218{left:231.200000pt;}
.x51_c00218{left:234.400000pt;}
.x87_c00218{left:235.733333pt;}
.xd8_c00218{left:236.800000pt;}
.x99_c00218{left:242.400000pt;}
.xd1_c00218{left:244.000000pt;}
.x61_c00218{left:246.133333pt;}
.x1a_c00218{left:248.800000pt;}
.x90_c00218{left:250.533333pt;}
.xbb_c00218{left:251.733333pt;}
.xae_c00218{left:254.133333pt;}
.xd9_c00218{left:256.000000pt;}
.x3b_c00218{left:257.733333pt;}
.x52_c00218{left:259.333333pt;}
.x2a_c00218{left:260.533333pt;}
.x7b_c00218{left:262.933333pt;}
.x91_c00218{left:269.066667pt;}
.x62_c00218{left:271.466667pt;}
.x5c_c00218{left:274.800000pt;}
.xd7_c00218{left:276.666667pt;}
.x2b_c00218{left:277.866667pt;}
.x7c_c00218{left:279.200000pt;}
.x6e_c00218{left:281.866667pt;}
.xec_c00218{left:282.800000pt;}
.xea_c00218{left:286.133333pt;}
.xce_c00218{left:291.200000pt;}
.x1b_c00218{left:292.666667pt;}
.x46_c00218{left:295.866667pt;}
.x3c_c00218{left:299.066667pt;}
.x88_c00218{left:300.000000pt;}
.x5d_c00218{left:301.733333pt;}
.xaf_c00218{left:303.466667pt;}
.xde_c00218{left:304.400000pt;}
.xf1_c00218{left:307.733333pt;}
.x9a_c00218{left:310.533333pt;}
.x63_c00218{left:311.466667pt;}
.xa1_c00218{left:314.266667pt;}
.x4_c00218{left:316.133333pt;}
.x89_c00218{left:318.933333pt;}
.xc_c00218{left:320.666667pt;}
.x2c_c00218{left:322.933333pt;}
.xb0_c00218{left:325.866667pt;}
.xb7_c00218{left:326.800000pt;}
.x3d_c00218{left:331.733333pt;}
.xd_c00218{left:337.600000pt;}
.x53_c00218{left:339.600000pt;}
.xc7_c00218{left:342.666667pt;}
.x7d_c00218{left:346.400000pt;}
.x1c_c00218{left:348.666667pt;}
.x64_c00218{left:353.066667pt;}
.xb1_c00218{left:354.666667pt;}
.x9b_c00218{left:356.266667pt;}
.x2d_c00218{left:360.666667pt;}
.x7e_c00218{left:361.733333pt;}
.xed_c00218{left:365.333333pt;}
.x92_c00218{left:366.666667pt;}
.x6f_c00218{left:368.933333pt;}
.x2_c00218{left:370.533333pt;}
.xcf_c00218{left:372.133333pt;}
.x8a_c00218{left:373.600000pt;}
.x1d_c00218{left:376.533333pt;}
.x3e_c00218{left:377.866667pt;}
.x65_c00218{left:379.333333pt;}
.xa9_c00218{left:381.733333pt;}
.x2e_c00218{left:383.733333pt;}
.xb2_c00218{left:385.066667pt;}
.xe_c00218{left:386.266667pt;}
.xb8_c00218{left:387.333333pt;}
.xbc_c00218{left:388.800000pt;}
.x54_c00218{left:389.866667pt;}
.x7f_c00218{left:391.200000pt;}
.x70_c00218{left:394.266667pt;}
.x3f_c00218{left:397.066667pt;}
.x2f_c00218{left:400.000000pt;}
.x9c_c00218{left:403.333333pt;}
.x93_c00218{left:404.400000pt;}
.x47_c00218{left:406.266667pt;}
.xbd_c00218{left:407.333333pt;}
.x1e_c00218{left:410.400000pt;}
.x1_c00218{left:413.466667pt;}
.xf_c00218{left:415.333333pt;}
.xc2_c00218{left:416.266667pt;}
.xd2_c00218{left:417.466667pt;}
.x66_c00218{left:419.066667pt;}
.x5_c00218{left:420.133333pt;}
.xaa_c00218{left:429.466667pt;}
.xdf_c00218{left:431.066667pt;}
.x40_c00218{left:432.266667pt;}
.x30_c00218{left:434.533333pt;}
.x71_c00218{left:435.600000pt;}
.x1f_c00218{left:437.333333pt;}
.x9d_c00218{left:439.200000pt;}
.xb9_c00218{left:440.400000pt;}
.x67_c00218{left:441.466667pt;}
.xe6_c00218{left:443.200000pt;}
.x3_c00218{left:445.466667pt;}
.x31_c00218{left:448.266667pt;}
.xa2_c00218{left:450.400000pt;}
.x72_c00218{left:452.266667pt;}
.x10_c00218{left:456.000000pt;}
.xc8_c00218{left:458.266667pt;}
.xe7_c00218{left:464.666667pt;}
.x80_c00218{left:465.733333pt;}
.xab_c00218{left:467.866667pt;}
.x68_c00218{left:469.333333pt;}
.x73_c00218{left:470.533333pt;}
.x6_c00218{left:472.000000pt;}
.xd3_c00218{left:474.400000pt;}
.xb3_c00218{left:478.133333pt;}
.x32_c00218{left:480.266667pt;}
.xc9_c00218{left:483.200000pt;}
.xee_c00218{left:484.266667pt;}
.x7_c00218{left:487.333333pt;}
.x20_c00218{left:489.466667pt;}
.x55_c00218{left:490.666667pt;}
.xba_c00218{left:492.266667pt;}
.xf2_c00218{left:493.466667pt;}
.x81_c00218{left:496.400000pt;}
.x8b_c00218{left:498.400000pt;}
.x48_c00218{left:499.600000pt;}
.x5e_c00218{left:500.533333pt;}
.xc3_c00218{left:504.933333pt;}
.xbe_c00218{left:507.866667pt;}
.xac_c00218{left:512.933333pt;}
.xc4_c00218{left:515.466667pt;}
.xda_c00218{left:518.400000pt;}
.x41_c00218{left:521.200000pt;}
.x69_c00218{left:522.400000pt;}
.x74_c00218{left:523.600000pt;}
.x8c_c00218{left:525.333333pt;}
.x94_c00218{left:528.000000pt;}
.x9e_c00218{left:530.800000pt;}
.x82_c00218{left:531.866667pt;}
.xca_c00218{left:534.400000pt;}
.xe8_c00218{left:537.733333pt;}
.x33_c00218{left:538.800000pt;}
.xd4_c00218{left:541.066667pt;}
.x75_c00218{left:543.466667pt;}
.x11_c00218{left:544.666667pt;}
.x21_c00218{left:547.066667pt;}
.xa3_c00218{left:551.866667pt;}
.x49_c00218{left:554.266667pt;}
.x56_c00218{left:555.333333pt;}
.xe0_c00218{left:556.933333pt;}
.x12_c00218{left:560.000000pt;}
.xb4_c00218{left:563.200000pt;}
.x4a_c00218{left:570.000000pt;}
.x57_c00218{left:572.666667pt;}
.xdb_c00218{left:573.733333pt;}
.xe1_c00218{left:575.200000pt;}
.x34_c00218{left:577.466667pt;}
.xd5_c00218{left:579.733333pt;}
.x42_c00218{left:584.800000pt;}
.xd0_c00218{left:586.400000pt;}
.x4b_c00218{left:587.333333pt;}
.x6a_c00218{left:588.266667pt;}
.xad_c00218{left:590.400000pt;}
.xef_c00218{left:596.000000pt;}
.x58_c00218{left:596.933333pt;}
.xd6_c00218{left:598.000000pt;}
.x95_c00218{left:599.200000pt;}
.x13_c00218{left:600.266667pt;}
.xeb_c00218{left:602.133333pt;}
.x6b_c00218{left:604.533333pt;}
.x22_c00218{left:606.000000pt;}
.xf0_c00218{left:607.466667pt;}
.x4c_c00218{left:610.000000pt;}
.xdc_c00218{left:614.666667pt;}
.xe2_c00218{left:617.466667pt;}
.x83_c00218{left:620.800000pt;}
.x14_c00218{left:623.333333pt;}
.x5f_c00218{left:627.066667pt;}
.x23_c00218{left:629.333333pt;}
.xbf_c00218{left:630.800000pt;}
.x35_c00218{left:636.000000pt;}
.xa4_c00218{left:646.266667pt;}
.x8d_c00218{left:647.600000pt;}
.xb5_c00218{left:650.133333pt;}
.x43_c00218{left:651.066667pt;}
.x15_c00218{left:652.133333pt;}
.x24_c00218{left:654.266667pt;}
.xe9_c00218{left:655.733333pt;}
.xcb_c00218{left:656.666667pt;}
.x4d_c00218{left:659.866667pt;}
.xa5_c00218{left:664.133333pt;}
.x76_c00218{left:666.133333pt;}
.x36_c00218{left:667.066667pt;}
.x59_c00218{left:668.933333pt;}
.xe3_c00218{left:670.266667pt;}
.x6c_c00218{left:672.800000pt;}
.x44_c00218{left:674.133333pt;}
.x84_c00218{left:678.666667pt;}
.xc5_c00218{left:680.133333pt;}
.x96_c00218{left:683.466667pt;}
.xcc_c00218{left:684.800000pt;}
.xa6_c00218{left:686.800000pt;}
.x16_c00218{left:688.933333pt;}
.x37_c00218{left:690.133333pt;}
.x9f_c00218{left:698.133333pt;}
.xb6_c00218{left:704.266667pt;}
.x5a_c00218{left:707.600000pt;}
.x25_c00218{left:710.000000pt;}
}





/* 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_c00219 {
    display:none;
  }
  .loading-indicator_c00219.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00219 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_c00219 { 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_c00219" -> "#page-container .classname_c00219")
 */
.pf_c00219 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00219 { /* 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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00219 { /* 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_c00219 { /* 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_c00219 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00219 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00219 {overflow:visible;}
  }
}
.c_c00219 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00219 { /* 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_c00219:after { /* webkit #35443 */
  content: '';
}
.t_c00219:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00219 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 */
}
.__c00219 { /* 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_c00219 { /* info for Javascript */
  display:none;
}
.l_c00219 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00219 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00219 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00219: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_c00219 {
    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_c00219.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00219.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_c00219 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00219{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.000000;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_c00219{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m1_c00219{transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042000,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.ls0_c00219{letter-spacing:0.000000px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{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__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00219{word-spacing:0.000000px;}
.ws0_c00219{word-spacing:365.000000px;}
.fc0_c00219{color:transparent;}
.fs0_c00219{font-size:60.000000px;}
.y0_c00219{bottom:0.000000px;}
.y1_c00219{bottom:45.300000px;}
.h2_c00219{height:60.000000px;}
.h0_c00219{height:1166.759949px;}
.h1_c00219{height:1167.000000px;}
.w0_c00219{width:918.720063px;}
.w1_c00219{width:918.750000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:797.700000px;}
.x2_c00219{left:813.600000px;}
.x3_c00219{left:819.750000px;}
.x4_c00219{left:830.850000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls0_c00219{letter-spacing:0.000000pt;}
.ws1_c00219{word-spacing:0.000000pt;}
.ws0_c00219{word-spacing:324.444444pt;}
.fs0_c00219{font-size:53.333333pt;}
.y0_c00219{bottom:0.000000pt;}
.y1_c00219{bottom:40.266667pt;}
.h2_c00219{height:53.333333pt;}
.h0_c00219{height:1037.119955pt;}
.h1_c00219{height:1037.333333pt;}
.w0_c00219{width:816.640056pt;}
.w1_c00219{width:816.666667pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:709.066667pt;}
.x2_c00219{left:723.200000pt;}
.x3_c00219{left:728.666667pt;}
.x4_c00219{left:738.533333pt;}
}





/* 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_c00220 {
    display:none;
  }
  .loading-indicator_c00220.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00220 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_c00220 { 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_c00220" -> "#page-container .classname_c00220")
 */
.pf_c00220 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00220 { /* 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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00220 { /* 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_c00220 { /* 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_c00220 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00220 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00220 {overflow:visible;}
  }
}
.c_c00220 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00220 { /* 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_c00220:after { /* webkit #35443 */
  content: '';
}
.t_c00220:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00220 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 */
}
.__c00220 { /* 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_c00220 { /* info for Javascript */
  display:none;
}
.l_c00220 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00220 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00220 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00220: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_c00220 {
    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_c00220.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00220.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_c00220 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00220{font-family:sans-serif;visibility:hidden;}
.sc__c00220{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
}
.y0_c00220{bottom:0.000000px;}
.h0_c00220{height:1166.759949px;}
.h1_c00220{height:1167.000000px;}
.w0_c00220{width:918.720063px;}
.w1_c00220{width:918.750000px;}
.x0_c00220{left:0.000000px;}
@media print{
.y0_c00220{bottom:0.000000pt;}
.h0_c00220{height:1037.119955pt;}
.h1_c00220{height:1037.333333pt;}
.w0_c00220{width:816.640056pt;}
.w1_c00220{width:816.666667pt;}
.x0_c00220{left:0.000000pt;}
}





/* 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_c00221 {
    display:none;
  }
  .loading-indicator_c00221.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00221 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_c00221 { 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_c00221" -> "#page-container .classname_c00221")
 */
.pf_c00221 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00221 { /* 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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00221 { /* 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_c00221 { /* 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_c00221 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00221 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00221 {overflow:visible;}
  }
}
.c_c00221 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00221 { /* 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_c00221:after { /* webkit #35443 */
  content: '';
}
.t_c00221:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00221 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 */
}
.__c00221 { /* 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_c00221 { /* info for Javascript */
  display:none;
}
.l_c00221 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00221 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00221 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00221: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_c00221 {
    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_c00221.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00221.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_c00221 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00221{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.000000;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;}
.m44_c00221{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00221{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00221{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m80_c00221{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00221{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m75_c00221{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00221{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m16_c00221{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m41_c00221{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m29_c00221{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.maa_c00221{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m59_c00221{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00221{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m54_c00221{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00221{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00221{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00221{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m93_c00221{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00221{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00221{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00221{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m70_c00221{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m58_c00221{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m26_c00221{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m25_c00221{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m90_c00221{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m94_c00221{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00221{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9_c00221{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00221{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m97_c00221{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m39_c00221{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m14_c00221{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00221{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m92_c00221{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00221{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00221{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00221{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m17_c00221{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00221{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00221{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00221{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00221{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m57_c00221{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00221{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00221{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m19_c00221{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00221{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m33_c00221{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00221{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m96_c00221{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m55_c00221{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00221{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00221{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m52_c00221{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m68_c00221{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00221{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00221{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m53_c00221{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m42_c00221{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m35_c00221{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m79_c00221{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00221{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00221{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m40_c00221{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00221{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m36_c00221{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2_c00221{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m99_c00221{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00221{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00221{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m62_c00221{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m71_c00221{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00221{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00221{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m85_c00221{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00221{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m83_c00221{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m91_c00221{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00221{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00221{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.md_c00221{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00221{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00221{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m49_c00221{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00221{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m78_c00221{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00221{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m48_c00221{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m73_c00221{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m98_c00221{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00221{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00221{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m67_c00221{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00221{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4_c00221{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m95_c00221{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00221{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m76_c00221{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00221{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m77_c00221{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m74_c00221{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m21_c00221{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m38_c00221{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00221{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m43_c00221{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00221{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m23_c00221{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m72_c00221{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m24_c00221{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00221{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00221{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00221{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00221{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m50_c00221{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m28_c00221{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00221{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m82_c00221{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m51_c00221{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m89_c00221{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m45_c00221{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m31_c00221{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);}
.m30_c00221{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00221{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00221{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m37_c00221{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00221{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00221{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb_c00221{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m27_c00221{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00221{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00221{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m20_c00221{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf_c00221{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m84_c00221{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m65_c00221{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00221{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00221{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m88_c00221{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00221{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1_c00221{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m66_c00221{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00221{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m22_c00221{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m86_c00221{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m34_c00221{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m64_c00221{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m61_c00221{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00221{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00221{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00221{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00221{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m87_c00221{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00221{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m56_c00221{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00221{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m63_c00221{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m60_c00221{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{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__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00221{word-spacing:-9.230769px;}
.ws0_c00221{word-spacing:-7.261905px;}
.ws9_c00221{word-spacing:0.000000px;}
.ws7_c00221{word-spacing:0.540541px;}
.ws3_c00221{word-spacing:1.388889px;}
.ws4_c00221{word-spacing:2.857143px;}
.ws5_c00221{word-spacing:4.375000px;}
.ws8_c00221{word-spacing:6.198456px;}
.ws2_c00221{word-spacing:8.148148px;}
.ws6_c00221{word-spacing:10.921053px;}
.fc0_c00221{color:transparent;}
.fs1_c00221{font-size:54.000000px;}
.fs0_c00221{font-size:60.000000px;}
.y0_c00221{bottom:0.000000px;}
.y2c_c00221{bottom:155.100000px;}
.y2b_c00221{bottom:194.100000px;}
.y2a_c00221{bottom:214.200000px;}
.y29_c00221{bottom:234.000000px;}
.y28_c00221{bottom:254.100000px;}
.y27_c00221{bottom:273.900000px;}
.y26_c00221{bottom:294.450000px;}
.y25_c00221{bottom:315.000000px;}
.y24_c00221{bottom:334.800000px;}
.y23_c00221{bottom:354.300000px;}
.y22_c00221{bottom:375.150000px;}
.y21_c00221{bottom:395.250000px;}
.y20_c00221{bottom:415.200000px;}
.y1f_c00221{bottom:435.000000px;}
.y1e_c00221{bottom:455.100000px;}
.y1d_c00221{bottom:475.200000px;}
.y1c_c00221{bottom:495.000000px;}
.y1b_c00221{bottom:514.650000px;}
.y1a_c00221{bottom:534.750000px;}
.y19_c00221{bottom:554.550000px;}
.y18_c00221{bottom:574.650000px;}
.y17_c00221{bottom:594.750000px;}
.y16_c00221{bottom:614.550000px;}
.y15_c00221{bottom:635.100000px;}
.y14_c00221{bottom:654.900000px;}
.y13_c00221{bottom:674.700000px;}
.y12_c00221{bottom:694.800000px;}
.y11_c00221{bottom:714.900000px;}
.y10_c00221{bottom:734.700000px;}
.yf_c00221{bottom:754.500000px;}
.ye_c00221{bottom:774.600000px;}
.yd_c00221{bottom:794.400000px;}
.yc_c00221{bottom:814.500000px;}
.yb_c00221{bottom:834.600000px;}
.ya_c00221{bottom:854.400000px;}
.y9_c00221{bottom:874.200000px;}
.y8_c00221{bottom:894.300000px;}
.y7_c00221{bottom:914.100000px;}
.y6_c00221{bottom:933.900000px;}
.y5_c00221{bottom:954.000000px;}
.y4_c00221{bottom:974.100000px;}
.y3_c00221{bottom:994.050000px;}
.y2_c00221{bottom:1014.150000px;}
.y1_c00221{bottom:1053.000000px;}
.h3_c00221{height:54.000000px;}
.h2_c00221{height:60.000000px;}
.h0_c00221{height:1166.759949px;}
.h1_c00221{height:1167.000000px;}
.w0_c00221{width:918.720063px;}
.w1_c00221{width:918.750000px;}
.x0_c00221{left:0.000000px;}
.x127_c00221{left:103.800000px;}
.xc9_c00221{left:105.150000px;}
.x4b_c00221{left:106.200000px;}
.x3_c00221{left:107.250000px;}
.x135_c00221{left:108.300000px;}
.x86_c00221{left:118.200000px;}
.x112_c00221{left:120.300000px;}
.x71_c00221{left:123.750000px;}
.x128_c00221{left:126.900000px;}
.xe9_c00221{left:128.550000px;}
.xba_c00221{left:133.800000px;}
.x3d_c00221{left:136.500000px;}
.xf5_c00221{left:137.550000px;}
.x18_c00221{left:138.600000px;}
.x4_c00221{left:141.150000px;}
.xe0_c00221{left:144.000000px;}
.x32_c00221{left:145.050000px;}
.xca_c00221{left:146.250000px;}
.x94_c00221{left:150.000000px;}
.x72_c00221{left:151.500000px;}
.xef_c00221{left:155.700000px;}
.xaf_c00221{left:156.900000px;}
.xc2_c00221{left:158.850000px;}
.x59_c00221{left:161.700000px;}
.x136_c00221{left:164.100000px;}
.x120_c00221{left:165.600000px;}
.x16_c00221{left:167.400000px;}
.x19_c00221{left:168.450000px;}
.x5_c00221{left:169.650000px;}
.x87_c00221{left:171.900000px;}
.xb0_c00221{left:175.650000px;}
.xcb_c00221{left:177.900000px;}
.x33_c00221{left:179.550000px;}
.x24_c00221{left:181.200000px;}
.xbb_c00221{left:183.450000px;}
.x7d_c00221{left:185.400000px;}
.x73_c00221{left:188.250000px;}
.x5a_c00221{left:190.200000px;}
.xc3_c00221{left:191.550000px;}
.x11d_c00221{left:193.200000px;}
.xe1_c00221{left:195.150000px;}
.xd9_c00221{left:198.600000px;}
.x4c_c00221{left:200.100000px;}
.x10e_c00221{left:201.300000px;}
.x12c_c00221{left:202.650000px;}
.x3e_c00221{left:204.150000px;}
.x6_c00221{left:205.650000px;}
.x34_c00221{left:206.850000px;}
.xa9_c00221{left:208.800000px;}
.x25_c00221{left:210.000000px;}
.x12a_c00221{left:211.350000px;}
.xc4_c00221{left:212.400000px;}
.xb1_c00221{left:213.450000px;}
.x9c_c00221{left:217.350000px;}
.x137_c00221{left:218.850000px;}
.x3f_c00221{left:221.100000px;}
.x108_c00221{left:222.900000px;}
.x95_c00221{left:224.550000px;}
.xcf_c00221{left:226.800000px;}
.x88_c00221{left:228.000000px;}
.x7_c00221{left:229.050000px;}
.x17_c00221{left:230.400000px;}
.x67_c00221{left:233.550000px;}
.x26_c00221{left:235.200000px;}
.x40_c00221{left:236.550000px;}
.x1a_c00221{left:241.950000px;}
.xda_c00221{left:243.300000px;}
.x113_c00221{left:245.100000px;}
.xb2_c00221{left:246.150000px;}
.x5b_c00221{left:248.100000px;}
.xf9_c00221{left:251.100000px;}
.x96_c00221{left:253.650000px;}
.x35_c00221{left:255.150000px;}
.x119_c00221{left:256.950000px;}
.xd1_c00221{left:258.600000px;}
.x12f_c00221{left:259.950000px;}
.x1b_c00221{left:261.000000px;}
.x41_c00221{left:264.600000px;}
.xcc_c00221{left:266.850000px;}
.x5c_c00221{left:268.200000px;}
.x8_c00221{left:269.400000px;}
.xd2_c00221{left:270.900000px;}
.x9d_c00221{left:272.550000px;}
.x12d_c00221{left:273.900000px;}
.xaa_c00221{left:274.950000px;}
.x74_c00221{left:277.500000px;}
.x36_c00221{left:281.400000px;}
.xd0_c00221{left:282.600000px;}
.x5d_c00221{left:284.400000px;}
.x7e_c00221{left:286.650000px;}
.x9e_c00221{left:287.700000px;}
.x130_c00221{left:292.650000px;}
.x4d_c00221{left:294.450000px;}
.xc5_c00221{left:296.700000px;}
.xd3_c00221{left:297.900000px;}
.x68_c00221{left:301.650000px;}
.x89_c00221{left:302.850000px;}
.xfa_c00221{left:304.050000px;}
.x75_c00221{left:306.000000px;}
.xff_c00221{left:307.650000px;}
.xb3_c00221{left:311.250000px;}
.x8a_c00221{left:314.400000px;}
.x11a_c00221{left:315.600000px;}
.x1c_c00221{left:316.800000px;}
.x109_c00221{left:318.300000px;}
.x9f_c00221{left:320.100000px;}
.x76_c00221{left:326.550000px;}
.x7f_c00221{left:327.750000px;}
.x27_c00221{left:329.850000px;}
.xbc_c00221{left:333.150000px;}
.x9_c00221{left:334.200000px;}
.x42_c00221{left:336.600000px;}
.x69_c00221{left:338.700000px;}
.x8b_c00221{left:341.400000px;}
.x4e_c00221{left:344.850000px;}
.xc6_c00221{left:345.900000px;}
.x28_c00221{left:347.100000px;}
.xab_c00221{left:349.200000px;}
.x5e_c00221{left:352.800000px;}
.x121_c00221{left:354.300000px;}
.x131_c00221{left:355.650000px;}
.xa0_c00221{left:356.850000px;}
.x43_c00221{left:357.900000px;}
.x97_c00221{left:360.900000px;}
.xf6_c00221{left:361.950000px;}
.x4f_c00221{left:364.950000px;}
.x1d_c00221{left:367.200000px;}
.x100_c00221{left:368.550000px;}
.x80_c00221{left:371.250000px;}
.x29_c00221{left:373.050000px;}
.xb4_c00221{left:377.550000px;}
.xa1_c00221{left:379.500000px;}
.xe2_c00221{left:380.550000px;}
.xbd_c00221{left:381.750000px;}
.x5f_c00221{left:383.700000px;}
.xa_c00221{left:384.900000px;}
.x1e_c00221{left:388.050000px;}
.x8c_c00221{left:390.000000px;}
.x138_c00221{left:394.500000px;}
.x132_c00221{left:399.600000px;}
.xd4_c00221{left:400.650000px;}
.x1_c00221{left:403.950000px;}
.x77_c00221{left:405.750000px;}
.xac_c00221{left:408.300000px;}
.x101_c00221{left:409.650000px;}
.x6a_c00221{left:412.050000px;}
.x37_c00221{left:413.100000px;}
.x10f_c00221{left:415.800000px;}
.xb5_c00221{left:416.850000px;}
.x50_c00221{left:418.950000px;}
.x44_c00221{left:421.200000px;}
.x98_c00221{left:422.850000px;}
.x8d_c00221{left:426.750000px;}
.x107_c00221{left:430.200000px;}
.x38_c00221{left:432.150000px;}
.x2a_c00221{left:433.500000px;}
.x104_c00221{left:435.150000px;}
.xd5_c00221{left:436.650000px;}
.x12b_c00221{left:438.900000px;}
.xea_c00221{left:440.400000px;}
.x45_c00221{left:441.750000px;}
.x81_c00221{left:442.950000px;}
.x51_c00221{left:445.950000px;}
.x12e_c00221{left:447.450000px;}
.xb_c00221{left:449.700000px;}
.x60_c00221{left:451.800000px;}
.x99_c00221{left:455.550000px;}
.xa2_c00221{left:457.650000px;}
.x122_c00221{left:460.800000px;}
.x1f_c00221{left:466.800000px;}
.x110_c00221{left:468.000000px;}
.xc_c00221{left:469.800000px;}
.x114_c00221{left:471.450000px;}
.x61_c00221{left:472.650000px;}
.x82_c00221{left:475.050000px;}
.x46_c00221{left:476.700000px;}
.xdb_c00221{left:477.750000px;}
.x8e_c00221{left:478.950000px;}
.x2b_c00221{left:482.100000px;}
.x52_c00221{left:484.050000px;}
.x133_c00221{left:485.250000px;}
.x115_c00221{left:487.350000px;}
.x129_c00221{left:488.850000px;}
.xa3_c00221{left:490.800000px;}
.xeb_c00221{left:494.100000px;}
.x39_c00221{left:497.400000px;}
.x123_c00221{left:498.600000px;}
.xd_c00221{left:500.100000px;}
.x53_c00221{left:501.300000px;}
.x20_c00221{left:503.100000px;}
.xdc_c00221{left:505.800000px;}
.x62_c00221{left:507.600000px;}
.x11b_c00221{left:510.300000px;}
.x10a_c00221{left:511.500000px;}
.x54_c00221{left:513.150000px;}
.xe3_c00221{left:515.250000px;}
.xb6_c00221{left:517.350000px;}
.x9a_c00221{left:518.550000px;}
.x6b_c00221{left:521.850000px;}
.x105_c00221{left:523.350000px;}
.xa4_c00221{left:525.000000px;}
.x63_c00221{left:528.450000px;}
.x83_c00221{left:530.550000px;}
.xe_c00221{left:531.750000px;}
.xfb_c00221{left:533.250000px;}
.xe4_c00221{left:535.050000px;}
.x102_c00221{left:536.700000px;}
.x2c_c00221{left:538.650000px;}
.x139_c00221{left:540.450000px;}
.x8f_c00221{left:541.950000px;}
.xf0_c00221{left:544.650000px;}
.x47_c00221{left:548.700000px;}
.x11e_c00221{left:550.200000px;}
.xdd_c00221{left:552.300000px;}
.xf7_c00221{left:553.500000px;}
.x6c_c00221{left:555.750000px;}
.xb7_c00221{left:558.000000px;}
.xf_c00221{left:559.050000px;}
.x48_c00221{left:561.000000px;}
.xbe_c00221{left:562.050000px;}
.xa5_c00221{left:563.100000px;}
.x64_c00221{left:564.150000px;}
.x10b_c00221{left:569.400000px;}
.x78_c00221{left:573.600000px;}
.x2d_c00221{left:574.950000px;}
.xad_c00221{left:578.700000px;}
.x55_c00221{left:580.800000px;}
.xfc_c00221{left:583.650000px;}
.x21_c00221{left:585.150000px;}
.xe5_c00221{left:586.200000px;}
.x116_c00221{left:588.450000px;}
.xec_c00221{left:592.500000px;}
.x2e_c00221{left:593.700000px;}
.x3a_c00221{left:595.650000px;}
.xc7_c00221{left:597.600000px;}
.x10_c00221{left:599.400000px;}
.x90_c00221{left:600.600000px;}
.xd6_c00221{left:602.250000px;}
.x56_c00221{left:606.750000px;}
.x84_c00221{left:610.050000px;}
.x11f_c00221{left:611.100000px;}
.x79_c00221{left:614.250000px;}
.x10c_c00221{left:615.900000px;}
.x106_c00221{left:617.700000px;}
.x91_c00221{left:620.100000px;}
.x6d_c00221{left:621.600000px;}
.xde_c00221{left:623.850000px;}
.x65_c00221{left:625.650000px;}
.x11_c00221{left:627.900000px;}
.x7a_c00221{left:628.950000px;}
.xe6_c00221{left:630.450000px;}
.xd7_c00221{left:631.800000px;}
.x124_c00221{left:633.600000px;}
.x2f_c00221{left:639.750000px;}
.x3b_c00221{left:641.700000px;}
.x57_c00221{left:643.050000px;}
.x49_c00221{left:644.850000px;}
.xf1_c00221{left:646.800000px;}
.xb8_c00221{left:648.300000px;}
.xa6_c00221{left:649.500000px;}
.x13a_c00221{left:650.850000px;}
.xbf_c00221{left:652.350000px;}
.x6e_c00221{left:654.000000px;}
.x12_c00221{left:660.600000px;}
.x9b_c00221{left:661.950000px;}
.x22_c00221{left:665.100000px;}
.x30_c00221{left:668.550000px;}
.x117_c00221{left:670.200000px;}
.x3c_c00221{left:672.300000px;}
.x13b_c00221{left:675.300000px;}
.xf2_c00221{left:676.350000px;}
.xed_c00221{left:677.400000px;}
.xb9_c00221{left:679.200000px;}
.xa7_c00221{left:682.200000px;}
.x111_c00221{left:683.250000px;}
.x7b_c00221{left:684.450000px;}
.xc0_c00221{left:689.850000px;}
.xfd_c00221{left:691.350000px;}
.xc8_c00221{left:692.550000px;}
.x13_c00221{left:694.050000px;}
.xf3_c00221{left:695.850000px;}
.x11c_c00221{left:697.800000px;}
.x92_c00221{left:699.600000px;}
.x6f_c00221{left:700.800000px;}
.xa8_c00221{left:702.750000px;}
.x23_c00221{left:703.950000px;}
.xe7_c00221{left:706.050000px;}
.xee_c00221{left:708.300000px;}
.x85_c00221{left:709.650000px;}
.x125_c00221{left:712.800000px;}
.x31_c00221{left:715.350000px;}
.x103_c00221{left:716.400000px;}
.x70_c00221{left:718.800000px;}
.xcd_c00221{left:721.350000px;}
.x58_c00221{left:722.550000px;}
.x14_c00221{left:723.600000px;}
.x66_c00221{left:725.700000px;}
.xe8_c00221{left:727.350000px;}
.x4a_c00221{left:728.700000px;}
.x126_c00221{left:732.300000px;}
.x118_c00221{left:733.500000px;}
.x10d_c00221{left:737.250000px;}
.xf4_c00221{left:740.100000px;}
.xc1_c00221{left:741.300000px;}
.xae_c00221{left:742.350000px;}
.xdf_c00221{left:743.400000px;}
.x7c_c00221{left:744.600000px;}
.xf8_c00221{left:746.100000px;}
.xd8_c00221{left:747.750000px;}
.x2_c00221{left:748.800000px;}
.xce_c00221{left:750.450000px;}
.xfe_c00221{left:752.250000px;}
.x15_c00221{left:754.200000px;}
.x134_c00221{left:757.800000px;}
.x93_c00221{left:760.500000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws1_c00221{word-spacing:-8.205128pt;}
.ws0_c00221{word-spacing:-6.455026pt;}
.ws9_c00221{word-spacing:0.000000pt;}
.ws7_c00221{word-spacing:0.480480pt;}
.ws3_c00221{word-spacing:1.234568pt;}
.ws4_c00221{word-spacing:2.539683pt;}
.ws5_c00221{word-spacing:3.888889pt;}
.ws8_c00221{word-spacing:5.509739pt;}
.ws2_c00221{word-spacing:7.242798pt;}
.ws6_c00221{word-spacing:9.707602pt;}
.fs1_c00221{font-size:48.000000pt;}
.fs0_c00221{font-size:53.333333pt;}
.y0_c00221{bottom:0.000000pt;}
.y2c_c00221{bottom:137.866667pt;}
.y2b_c00221{bottom:172.533333pt;}
.y2a_c00221{bottom:190.400000pt;}
.y29_c00221{bottom:208.000000pt;}
.y28_c00221{bottom:225.866667pt;}
.y27_c00221{bottom:243.466667pt;}
.y26_c00221{bottom:261.733333pt;}
.y25_c00221{bottom:280.000000pt;}
.y24_c00221{bottom:297.600000pt;}
.y23_c00221{bottom:314.933333pt;}
.y22_c00221{bottom:333.466667pt;}
.y21_c00221{bottom:351.333333pt;}
.y20_c00221{bottom:369.066667pt;}
.y1f_c00221{bottom:386.666667pt;}
.y1e_c00221{bottom:404.533333pt;}
.y1d_c00221{bottom:422.400000pt;}
.y1c_c00221{bottom:440.000000pt;}
.y1b_c00221{bottom:457.466667pt;}
.y1a_c00221{bottom:475.333333pt;}
.y19_c00221{bottom:492.933333pt;}
.y18_c00221{bottom:510.800000pt;}
.y17_c00221{bottom:528.666667pt;}
.y16_c00221{bottom:546.266667pt;}
.y15_c00221{bottom:564.533333pt;}
.y14_c00221{bottom:582.133333pt;}
.y13_c00221{bottom:599.733333pt;}
.y12_c00221{bottom:617.600000pt;}
.y11_c00221{bottom:635.466667pt;}
.y10_c00221{bottom:653.066667pt;}
.yf_c00221{bottom:670.666667pt;}
.ye_c00221{bottom:688.533333pt;}
.yd_c00221{bottom:706.133333pt;}
.yc_c00221{bottom:724.000000pt;}
.yb_c00221{bottom:741.866667pt;}
.ya_c00221{bottom:759.466667pt;}
.y9_c00221{bottom:777.066667pt;}
.y8_c00221{bottom:794.933333pt;}
.y7_c00221{bottom:812.533333pt;}
.y6_c00221{bottom:830.133333pt;}
.y5_c00221{bottom:848.000000pt;}
.y4_c00221{bottom:865.866667pt;}
.y3_c00221{bottom:883.600000pt;}
.y2_c00221{bottom:901.466667pt;}
.y1_c00221{bottom:936.000000pt;}
.h3_c00221{height:48.000000pt;}
.h2_c00221{height:53.333333pt;}
.h0_c00221{height:1037.119955pt;}
.h1_c00221{height:1037.333333pt;}
.w0_c00221{width:816.640056pt;}
.w1_c00221{width:816.666667pt;}
.x0_c00221{left:0.000000pt;}
.x127_c00221{left:92.266667pt;}
.xc9_c00221{left:93.466667pt;}
.x4b_c00221{left:94.400000pt;}
.x3_c00221{left:95.333333pt;}
.x135_c00221{left:96.266667pt;}
.x86_c00221{left:105.066667pt;}
.x112_c00221{left:106.933333pt;}
.x71_c00221{left:110.000000pt;}
.x128_c00221{left:112.800000pt;}
.xe9_c00221{left:114.266667pt;}
.xba_c00221{left:118.933333pt;}
.x3d_c00221{left:121.333333pt;}
.xf5_c00221{left:122.266667pt;}
.x18_c00221{left:123.200000pt;}
.x4_c00221{left:125.466667pt;}
.xe0_c00221{left:128.000000pt;}
.x32_c00221{left:128.933333pt;}
.xca_c00221{left:130.000000pt;}
.x94_c00221{left:133.333333pt;}
.x72_c00221{left:134.666667pt;}
.xef_c00221{left:138.400000pt;}
.xaf_c00221{left:139.466667pt;}
.xc2_c00221{left:141.200000pt;}
.x59_c00221{left:143.733333pt;}
.x136_c00221{left:145.866667pt;}
.x120_c00221{left:147.200000pt;}
.x16_c00221{left:148.800000pt;}
.x19_c00221{left:149.733333pt;}
.x5_c00221{left:150.800000pt;}
.x87_c00221{left:152.800000pt;}
.xb0_c00221{left:156.133333pt;}
.xcb_c00221{left:158.133333pt;}
.x33_c00221{left:159.600000pt;}
.x24_c00221{left:161.066667pt;}
.xbb_c00221{left:163.066667pt;}
.x7d_c00221{left:164.800000pt;}
.x73_c00221{left:167.333333pt;}
.x5a_c00221{left:169.066667pt;}
.xc3_c00221{left:170.266667pt;}
.x11d_c00221{left:171.733333pt;}
.xe1_c00221{left:173.466667pt;}
.xd9_c00221{left:176.533333pt;}
.x4c_c00221{left:177.866667pt;}
.x10e_c00221{left:178.933333pt;}
.x12c_c00221{left:180.133333pt;}
.x3e_c00221{left:181.466667pt;}
.x6_c00221{left:182.800000pt;}
.x34_c00221{left:183.866667pt;}
.xa9_c00221{left:185.600000pt;}
.x25_c00221{left:186.666667pt;}
.x12a_c00221{left:187.866667pt;}
.xc4_c00221{left:188.800000pt;}
.xb1_c00221{left:189.733333pt;}
.x9c_c00221{left:193.200000pt;}
.x137_c00221{left:194.533333pt;}
.x3f_c00221{left:196.533333pt;}
.x108_c00221{left:198.133333pt;}
.x95_c00221{left:199.600000pt;}
.xcf_c00221{left:201.600000pt;}
.x88_c00221{left:202.666667pt;}
.x7_c00221{left:203.600000pt;}
.x17_c00221{left:204.800000pt;}
.x67_c00221{left:207.600000pt;}
.x26_c00221{left:209.066667pt;}
.x40_c00221{left:210.266667pt;}
.x1a_c00221{left:215.066667pt;}
.xda_c00221{left:216.266667pt;}
.x113_c00221{left:217.866667pt;}
.xb2_c00221{left:218.800000pt;}
.x5b_c00221{left:220.533333pt;}
.xf9_c00221{left:223.200000pt;}
.x96_c00221{left:225.466667pt;}
.x35_c00221{left:226.800000pt;}
.x119_c00221{left:228.400000pt;}
.xd1_c00221{left:229.866667pt;}
.x12f_c00221{left:231.066667pt;}
.x1b_c00221{left:232.000000pt;}
.x41_c00221{left:235.200000pt;}
.xcc_c00221{left:237.200000pt;}
.x5c_c00221{left:238.400000pt;}
.x8_c00221{left:239.466667pt;}
.xd2_c00221{left:240.800000pt;}
.x9d_c00221{left:242.266667pt;}
.x12d_c00221{left:243.466667pt;}
.xaa_c00221{left:244.400000pt;}
.x74_c00221{left:246.666667pt;}
.x36_c00221{left:250.133333pt;}
.xd0_c00221{left:251.200000pt;}
.x5d_c00221{left:252.800000pt;}
.x7e_c00221{left:254.800000pt;}
.x9e_c00221{left:255.733333pt;}
.x130_c00221{left:260.133333pt;}
.x4d_c00221{left:261.733333pt;}
.xc5_c00221{left:263.733333pt;}
.xd3_c00221{left:264.800000pt;}
.x68_c00221{left:268.133333pt;}
.x89_c00221{left:269.200000pt;}
.xfa_c00221{left:270.266667pt;}
.x75_c00221{left:272.000000pt;}
.xff_c00221{left:273.466667pt;}
.xb3_c00221{left:276.666667pt;}
.x8a_c00221{left:279.466667pt;}
.x11a_c00221{left:280.533333pt;}
.x1c_c00221{left:281.600000pt;}
.x109_c00221{left:282.933333pt;}
.x9f_c00221{left:284.533333pt;}
.x76_c00221{left:290.266667pt;}
.x7f_c00221{left:291.333333pt;}
.x27_c00221{left:293.200000pt;}
.xbc_c00221{left:296.133333pt;}
.x9_c00221{left:297.066667pt;}
.x42_c00221{left:299.200000pt;}
.x69_c00221{left:301.066667pt;}
.x8b_c00221{left:303.466667pt;}
.x4e_c00221{left:306.533333pt;}
.xc6_c00221{left:307.466667pt;}
.x28_c00221{left:308.533333pt;}
.xab_c00221{left:310.400000pt;}
.x5e_c00221{left:313.600000pt;}
.x121_c00221{left:314.933333pt;}
.x131_c00221{left:316.133333pt;}
.xa0_c00221{left:317.200000pt;}
.x43_c00221{left:318.133333pt;}
.x97_c00221{left:320.800000pt;}
.xf6_c00221{left:321.733333pt;}
.x4f_c00221{left:324.400000pt;}
.x1d_c00221{left:326.400000pt;}
.x100_c00221{left:327.600000pt;}
.x80_c00221{left:330.000000pt;}
.x29_c00221{left:331.600000pt;}
.xb4_c00221{left:335.600000pt;}
.xa1_c00221{left:337.333333pt;}
.xe2_c00221{left:338.266667pt;}
.xbd_c00221{left:339.333333pt;}
.x5f_c00221{left:341.066667pt;}
.xa_c00221{left:342.133333pt;}
.x1e_c00221{left:344.933333pt;}
.x8c_c00221{left:346.666667pt;}
.x138_c00221{left:350.666667pt;}
.x132_c00221{left:355.200000pt;}
.xd4_c00221{left:356.133333pt;}
.x1_c00221{left:359.066667pt;}
.x77_c00221{left:360.666667pt;}
.xac_c00221{left:362.933333pt;}
.x101_c00221{left:364.133333pt;}
.x6a_c00221{left:366.266667pt;}
.x37_c00221{left:367.200000pt;}
.x10f_c00221{left:369.600000pt;}
.xb5_c00221{left:370.533333pt;}
.x50_c00221{left:372.400000pt;}
.x44_c00221{left:374.400000pt;}
.x98_c00221{left:375.866667pt;}
.x8d_c00221{left:379.333333pt;}
.x107_c00221{left:382.400000pt;}
.x38_c00221{left:384.133333pt;}
.x2a_c00221{left:385.333333pt;}
.x104_c00221{left:386.800000pt;}
.xd5_c00221{left:388.133333pt;}
.x12b_c00221{left:390.133333pt;}
.xea_c00221{left:391.466667pt;}
.x45_c00221{left:392.666667pt;}
.x81_c00221{left:393.733333pt;}
.x51_c00221{left:396.400000pt;}
.x12e_c00221{left:397.733333pt;}
.xb_c00221{left:399.733333pt;}
.x60_c00221{left:401.600000pt;}
.x99_c00221{left:404.933333pt;}
.xa2_c00221{left:406.800000pt;}
.x122_c00221{left:409.600000pt;}
.x1f_c00221{left:414.933333pt;}
.x110_c00221{left:416.000000pt;}
.xc_c00221{left:417.600000pt;}
.x114_c00221{left:419.066667pt;}
.x61_c00221{left:420.133333pt;}
.x82_c00221{left:422.266667pt;}
.x46_c00221{left:423.733333pt;}
.xdb_c00221{left:424.666667pt;}
.x8e_c00221{left:425.733333pt;}
.x2b_c00221{left:428.533333pt;}
.x52_c00221{left:430.266667pt;}
.x133_c00221{left:431.333333pt;}
.x115_c00221{left:433.200000pt;}
.x129_c00221{left:434.533333pt;}
.xa3_c00221{left:436.266667pt;}
.xeb_c00221{left:439.200000pt;}
.x39_c00221{left:442.133333pt;}
.x123_c00221{left:443.200000pt;}
.xd_c00221{left:444.533333pt;}
.x53_c00221{left:445.600000pt;}
.x20_c00221{left:447.200000pt;}
.xdc_c00221{left:449.600000pt;}
.x62_c00221{left:451.200000pt;}
.x11b_c00221{left:453.600000pt;}
.x10a_c00221{left:454.666667pt;}
.x54_c00221{left:456.133333pt;}
.xe3_c00221{left:458.000000pt;}
.xb6_c00221{left:459.866667pt;}
.x9a_c00221{left:460.933333pt;}
.x6b_c00221{left:463.866667pt;}
.x105_c00221{left:465.200000pt;}
.xa4_c00221{left:466.666667pt;}
.x63_c00221{left:469.733333pt;}
.x83_c00221{left:471.600000pt;}
.xe_c00221{left:472.666667pt;}
.xfb_c00221{left:474.000000pt;}
.xe4_c00221{left:475.600000pt;}
.x102_c00221{left:477.066667pt;}
.x2c_c00221{left:478.800000pt;}
.x139_c00221{left:480.400000pt;}
.x8f_c00221{left:481.733333pt;}
.xf0_c00221{left:484.133333pt;}
.x47_c00221{left:487.733333pt;}
.x11e_c00221{left:489.066667pt;}
.xdd_c00221{left:490.933333pt;}
.xf7_c00221{left:492.000000pt;}
.x6c_c00221{left:494.000000pt;}
.xb7_c00221{left:496.000000pt;}
.xf_c00221{left:496.933333pt;}
.x48_c00221{left:498.666667pt;}
.xbe_c00221{left:499.600000pt;}
.xa5_c00221{left:500.533333pt;}
.x64_c00221{left:501.466667pt;}
.x10b_c00221{left:506.133333pt;}
.x78_c00221{left:509.866667pt;}
.x2d_c00221{left:511.066667pt;}
.xad_c00221{left:514.400000pt;}
.x55_c00221{left:516.266667pt;}
.xfc_c00221{left:518.800000pt;}
.x21_c00221{left:520.133333pt;}
.xe5_c00221{left:521.066667pt;}
.x116_c00221{left:523.066667pt;}
.xec_c00221{left:526.666667pt;}
.x2e_c00221{left:527.733333pt;}
.x3a_c00221{left:529.466667pt;}
.xc7_c00221{left:531.200000pt;}
.x10_c00221{left:532.800000pt;}
.x90_c00221{left:533.866667pt;}
.xd6_c00221{left:535.333333pt;}
.x56_c00221{left:539.333333pt;}
.x84_c00221{left:542.266667pt;}
.x11f_c00221{left:543.200000pt;}
.x79_c00221{left:546.000000pt;}
.x10c_c00221{left:547.466667pt;}
.x106_c00221{left:549.066667pt;}
.x91_c00221{left:551.200000pt;}
.x6d_c00221{left:552.533333pt;}
.xde_c00221{left:554.533333pt;}
.x65_c00221{left:556.133333pt;}
.x11_c00221{left:558.133333pt;}
.x7a_c00221{left:559.066667pt;}
.xe6_c00221{left:560.400000pt;}
.xd7_c00221{left:561.600000pt;}
.x124_c00221{left:563.200000pt;}
.x2f_c00221{left:568.666667pt;}
.x3b_c00221{left:570.400000pt;}
.x57_c00221{left:571.600000pt;}
.x49_c00221{left:573.200000pt;}
.xf1_c00221{left:574.933333pt;}
.xb8_c00221{left:576.266667pt;}
.xa6_c00221{left:577.333333pt;}
.x13a_c00221{left:578.533333pt;}
.xbf_c00221{left:579.866667pt;}
.x6e_c00221{left:581.333333pt;}
.x12_c00221{left:587.200000pt;}
.x9b_c00221{left:588.400000pt;}
.x22_c00221{left:591.200000pt;}
.x30_c00221{left:594.266667pt;}
.x117_c00221{left:595.733333pt;}
.x3c_c00221{left:597.600000pt;}
.x13b_c00221{left:600.266667pt;}
.xf2_c00221{left:601.200000pt;}
.xed_c00221{left:602.133333pt;}
.xb9_c00221{left:603.733333pt;}
.xa7_c00221{left:606.400000pt;}
.x111_c00221{left:607.333333pt;}
.x7b_c00221{left:608.400000pt;}
.xc0_c00221{left:613.200000pt;}
.xfd_c00221{left:614.533333pt;}
.xc8_c00221{left:615.600000pt;}
.x13_c00221{left:616.933333pt;}
.xf3_c00221{left:618.533333pt;}
.x11c_c00221{left:620.266667pt;}
.x92_c00221{left:621.866667pt;}
.x6f_c00221{left:622.933333pt;}
.xa8_c00221{left:624.666667pt;}
.x23_c00221{left:625.733333pt;}
.xe7_c00221{left:627.600000pt;}
.xee_c00221{left:629.600000pt;}
.x85_c00221{left:630.800000pt;}
.x125_c00221{left:633.600000pt;}
.x31_c00221{left:635.866667pt;}
.x103_c00221{left:636.800000pt;}
.x70_c00221{left:638.933333pt;}
.xcd_c00221{left:641.200000pt;}
.x58_c00221{left:642.266667pt;}
.x14_c00221{left:643.200000pt;}
.x66_c00221{left:645.066667pt;}
.xe8_c00221{left:646.533333pt;}
.x4a_c00221{left:647.733333pt;}
.x126_c00221{left:650.933333pt;}
.x118_c00221{left:652.000000pt;}
.x10d_c00221{left:655.333333pt;}
.xf4_c00221{left:657.866667pt;}
.xc1_c00221{left:658.933333pt;}
.xae_c00221{left:659.866667pt;}
.xdf_c00221{left:660.800000pt;}
.x7c_c00221{left:661.866667pt;}
.xf8_c00221{left:663.200000pt;}
.xd8_c00221{left:664.666667pt;}
.x2_c00221{left:665.600000pt;}
.xce_c00221{left:667.066667pt;}
.xfe_c00221{left:668.666667pt;}
.x15_c00221{left:670.400000pt;}
.x134_c00221{left:673.600000pt;}
.x93_c00221{left:676.000000pt;}
}





/* 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_c00222 {
    display:none;
  }
  .loading-indicator_c00222.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00222 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_c00222 { 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_c00222" -> "#page-container .classname_c00222")
 */
.pf_c00222 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00222 { /* 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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00222 { /* 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_c00222 { /* 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_c00222 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00222 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00222 {overflow:visible;}
  }
}
.c_c00222 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00222 { /* 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_c00222:after { /* webkit #35443 */
  content: '';
}
.t_c00222:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00222 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 */
}
.__c00222 { /* 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_c00222 { /* info for Javascript */
  display:none;
}
.l_c00222 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00222 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00222 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00222: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_c00222 {
    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_c00222.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00222.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_c00222 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00222{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00222;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.000000;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;}
.m49_c00222{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00222{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00222{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m45_c00222{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00222{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m63_c00222{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m37_c00222{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00222{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m70_c00222{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m13_c00222{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc_c00222{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00222{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m29_c00222{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00222{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m21_c00222{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m73_c00222{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m32_c00222{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00222{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m57_c00222{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00222{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00222{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m40_c00222{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00222{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m78_c00222{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00222{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00222{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m18_c00222{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00222{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00222{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m43_c00222{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4_c00222{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md_c00222{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m25_c00222{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00222{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m74_c00222{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00222{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m31_c00222{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00222{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00222{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m75_c00222{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00222{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00222{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m48_c00222{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00222{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m35_c00222{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb_c00222{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m55_c00222{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m19_c00222{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00222{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00222{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00222{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5_c00222{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);}
.m42_c00222{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2_c00222{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00222{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m66_c00222{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m77_c00222{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m16_c00222{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00222{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00222{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m52_c00222{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m41_c00222{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m30_c00222{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m79_c00222{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m22_c00222{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.ma_c00222{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00222{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m58_c00222{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m72_c00222{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m64_c00222{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf_c00222{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m12_c00222{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m26_c00222{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00222{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m71_c00222{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m76_c00222{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00222{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m3_c00222{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00222{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00222{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m59_c00222{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00222{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m44_c00222{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m6_c00222{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00222{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m27_c00222{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00222{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m15_c00222{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00222{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m56_c00222{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00222{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m36_c00222{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m28_c00222{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m51_c00222{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00222{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me_c00222{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m20_c00222{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m10_c00222{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m60_c00222{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00222{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m53_c00222{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11_c00222{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m9_c00222{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m68_c00222{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00222{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00222{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m8_c00222{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00222{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00222{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00222{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00222{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m38_c00222{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m14_c00222{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m47_c00222{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m67_c00222{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00222{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00222{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m34_c00222{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m50_c00222{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00222{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m17_c00222{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m62_c00222{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m65_c00222{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m61_c00222{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m33_c00222{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00222{vertical-align:0.000000px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{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__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:-4.500000px;}
.ws2_c00222{word-spacing:-3.750000px;}
.ws3_c00222{word-spacing:0.000000px;}
.ws1_c00222{word-spacing:12.936053px;}
.fc0_c00222{color:transparent;}
.fs0_c00222{font-size:54.000000px;}
.y0_c00222{bottom:0.000000px;}
.y18_c00222{bottom:563.700000px;}
.y17_c00222{bottom:595.500000px;}
.y16_c00222{bottom:615.600000px;}
.y15_c00222{bottom:635.700000px;}
.y14_c00222{bottom:655.800000px;}
.y13_c00222{bottom:675.900000px;}
.y12_c00222{bottom:696.000000px;}
.y11_c00222{bottom:716.100000px;}
.y10_c00222{bottom:736.200000px;}
.yf_c00222{bottom:756.300000px;}
.ye_c00222{bottom:776.100000px;}
.yd_c00222{bottom:795.900000px;}
.yc_c00222{bottom:816.150000px;}
.yb_c00222{bottom:836.250000px;}
.ya_c00222{bottom:856.050000px;}
.y9_c00222{bottom:876.600000px;}
.y8_c00222{bottom:896.400000px;}
.y7_c00222{bottom:916.500000px;}
.y6_c00222{bottom:936.450000px;}
.y5_c00222{bottom:956.550000px;}
.y4_c00222{bottom:976.650000px;}
.y3_c00222{bottom:996.150000px;}
.y2_c00222{bottom:1016.700000px;}
.y1_c00222{bottom:1055.100000px;}
.h2_c00222{height:54.000000px;}
.h0_c00222{height:1166.759949px;}
.h1_c00222{height:1167.000000px;}
.w0_c00222{width:918.720063px;}
.w1_c00222{width:918.750000px;}
.x0_c00222{left:0.000000px;}
.x3_c00222{left:143.700000px;}
.x1_c00222{left:145.800000px;}
.x8e_c00222{left:161.250000px;}
.xa7_c00222{left:165.600000px;}
.x4_c00222{left:172.200000px;}
.xc2_c00222{left:173.850000px;}
.x39_c00222{left:175.350000px;}
.x57_c00222{left:177.450000px;}
.x25_c00222{left:184.650000px;}
.xae_c00222{left:188.550000px;}
.x9c_c00222{left:189.900000px;}
.x43_c00222{left:190.950000px;}
.x18_c00222{left:192.600000px;}
.x33_c00222{left:194.100000px;}
.x14_c00222{left:195.300000px;}
.x5_c00222{left:206.100000px;}
.x69_c00222{left:210.000000px;}
.xb7_c00222{left:213.450000px;}
.x8f_c00222{left:219.900000px;}
.x34_c00222{left:222.900000px;}
.x58_c00222{left:227.850000px;}
.xaf_c00222{left:229.200000px;}
.x26_c00222{left:233.250000px;}
.x87_c00222{left:237.750000px;}
.x19_c00222{left:239.400000px;}
.x60_c00222{left:241.200000px;}
.x4f_c00222{left:243.300000px;}
.x3a_c00222{left:247.050000px;}
.x27_c00222{left:250.500000px;}
.x6a_c00222{left:253.500000px;}
.x6_c00222{left:257.250000px;}
.x15_c00222{left:262.950000px;}
.xb8_c00222{left:264.600000px;}
.x28_c00222{left:265.650000px;}
.x59_c00222{left:268.500000px;}
.x7a_c00222{left:270.600000px;}
.x88_c00222{left:276.300000px;}
.x9d_c00222{left:287.700000px;}
.x16_c00222{left:288.900000px;}
.x90_c00222{left:290.100000px;}
.x7_c00222{left:292.200000px;}
.x35_c00222{left:294.900000px;}
.x5a_c00222{left:298.050000px;}
.x3b_c00222{left:299.550000px;}
.x6f_c00222{left:305.250000px;}
.x17_c00222{left:307.200000px;}
.x9e_c00222{left:308.250000px;}
.x91_c00222{left:309.900000px;}
.x36_c00222{left:312.600000px;}
.x7f_c00222{left:313.650000px;}
.x50_c00222{left:315.300000px;}
.x7b_c00222{left:320.250000px;}
.xbd_c00222{left:321.450000px;}
.x89_c00222{left:328.200000px;}
.x8_c00222{left:329.700000px;}
.x9f_c00222{left:333.750000px;}
.x29_c00222{left:336.600000px;}
.x61_c00222{left:337.650000px;}
.x37_c00222{left:338.850000px;}
.x5b_c00222{left:341.250000px;}
.x44_c00222{left:343.650000px;}
.x6b_c00222{left:347.100000px;}
.x3c_c00222{left:350.250000px;}
.x92_c00222{left:353.400000px;}
.x9_c00222{left:354.900000px;}
.x70_c00222{left:357.450000px;}
.x62_c00222{left:360.300000px;}
.x8a_c00222{left:362.100000px;}
.xc3_c00222{left:365.100000px;}
.x51_c00222{left:366.450000px;}
.x1a_c00222{left:369.450000px;}
.xa8_c00222{left:370.800000px;}
.x6c_c00222{left:375.900000px;}
.xb0_c00222{left:379.500000px;}
.xa0_c00222{left:383.400000px;}
.x3d_c00222{left:386.250000px;}
.x38_c00222{left:387.750000px;}
.x80_c00222{left:390.750000px;}
.x71_c00222{left:392.700000px;}
.x45_c00222{left:393.750000px;}
.x93_c00222{left:394.800000px;}
.x52_c00222{left:398.100000px;}
.x1b_c00222{left:402.150000px;}
.x2a_c00222{left:403.200000px;}
.x63_c00222{left:406.050000px;}
.xa9_c00222{left:410.100000px;}
.x7c_c00222{left:412.350000px;}
.xa_c00222{left:415.050000px;}
.xb1_c00222{left:417.000000px;}
.xb9_c00222{left:418.200000px;}
.x1c_c00222{left:424.800000px;}
.x94_c00222{left:426.150000px;}
.xc4_c00222{left:428.400000px;}
.x8b_c00222{left:430.800000px;}
.x46_c00222{left:433.650000px;}
.x2_c00222{left:434.850000px;}
.x53_c00222{left:439.500000px;}
.x7d_c00222{left:441.150000px;}
.x72_c00222{left:449.250000px;}
.xbe_c00222{left:450.750000px;}
.xb_c00222{left:452.550000px;}
.x3e_c00222{left:454.050000px;}
.x5c_c00222{left:457.200000px;}
.xba_c00222{left:461.400000px;}
.x6d_c00222{left:462.600000px;}
.x47_c00222{left:466.050000px;}
.xa1_c00222{left:468.300000px;}
.x1d_c00222{left:470.850000px;}
.x73_c00222{left:472.650000px;}
.x7e_c00222{left:480.750000px;}
.xbf_c00222{left:482.100000px;}
.xc_c00222{left:483.150000px;}
.xb2_c00222{left:484.350000px;}
.x48_c00222{left:486.150000px;}
.x2b_c00222{left:489.600000px;}
.x1e_c00222{left:496.800000px;}
.x54_c00222{left:500.700000px;}
.xaa_c00222{left:503.400000px;}
.x5d_c00222{left:510.900000px;}
.x3f_c00222{left:512.400000px;}
.x49_c00222{left:514.950000px;}
.x6e_c00222{left:517.050000px;}
.x55_c00222{left:519.000000px;}
.xd_c00222{left:520.200000px;}
.xa2_c00222{left:523.050000px;}
.xb3_c00222{left:526.050000px;}
.x64_c00222{left:531.300000px;}
.x95_c00222{left:532.650000px;}
.x81_c00222{left:536.850000px;}
.x4a_c00222{left:540.450000px;}
.x1f_c00222{left:542.100000px;}
.xc5_c00222{left:545.400000px;}
.x2c_c00222{left:548.250000px;}
.x74_c00222{left:549.750000px;}
.x82_c00222{left:554.100000px;}
.xe_c00222{left:557.250000px;}
.xc6_c00222{left:560.100000px;}
.x96_c00222{left:562.200000px;}
.x20_c00222{left:563.400000px;}
.xb4_c00222{left:567.450000px;}
.xc0_c00222{left:582.150000px;}
.x2d_c00222{left:584.250000px;}
.x5e_c00222{left:585.750000px;}
.x21_c00222{left:588.600000px;}
.xbb_c00222{left:590.400000px;}
.x97_c00222{left:596.700000px;}
.xc1_c00222{left:601.950000px;}
.x5f_c00222{left:603.000000px;}
.x65_c00222{left:605.100000px;}
.xab_c00222{left:606.750000px;}
.x4b_c00222{left:609.150000px;}
.x83_c00222{left:611.400000px;}
.x40_c00222{left:612.900000px;}
.x75_c00222{left:615.300000px;}
.x98_c00222{left:617.550000px;}
.x8c_c00222{left:620.400000px;}
.xf_c00222{left:625.950000px;}
.x56_c00222{left:628.800000px;}
.xac_c00222{left:634.800000px;}
.x22_c00222{left:636.450000px;}
.x2e_c00222{left:639.000000px;}
.x99_c00222{left:641.250000px;}
.x4c_c00222{left:646.650000px;}
.x10_c00222{left:650.850000px;}
.x23_c00222{left:654.750000px;}
.x76_c00222{left:660.300000px;}
.x84_c00222{left:663.600000px;}
.xa3_c00222{left:668.550000px;}
.x4d_c00222{left:669.750000px;}
.x11_c00222{left:671.700000px;}
.x2f_c00222{left:676.800000px;}
.x85_c00222{left:692.400000px;}
.x30_c00222{left:697.350000px;}
.x77_c00222{left:699.900000px;}
.xa4_c00222{left:700.950000px;}
.x9a_c00222{left:705.000000px;}
.x66_c00222{left:711.600000px;}
.x41_c00222{left:720.600000px;}
.x4e_c00222{left:723.000000px;}
.xb5_c00222{left:725.100000px;}
.x67_c00222{left:728.100000px;}
.x86_c00222{left:738.450000px;}
.x78_c00222{left:740.550000px;}
.xa5_c00222{left:742.650000px;}
.xbc_c00222{left:748.200000px;}
.x42_c00222{left:749.700000px;}
.x12_c00222{left:755.550000px;}
.x9b_c00222{left:759.300000px;}
.x8d_c00222{left:760.950000px;}
.x31_c00222{left:766.800000px;}
.x24_c00222{left:771.000000px;}
.x79_c00222{left:772.200000px;}
.xa6_c00222{left:776.100000px;}
.xb6_c00222{left:781.950000px;}
.xad_c00222{left:789.000000px;}
.x68_c00222{left:790.800000px;}
.x13_c00222{left:791.850000px;}
.x32_c00222{left:799.200000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:-4.000000pt;}
.ws2_c00222{word-spacing:-3.333333pt;}
.ws3_c00222{word-spacing:0.000000pt;}
.ws1_c00222{word-spacing:11.498714pt;}
.fs0_c00222{font-size:48.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y18_c00222{bottom:501.066667pt;}
.y17_c00222{bottom:529.333333pt;}
.y16_c00222{bottom:547.200000pt;}
.y15_c00222{bottom:565.066667pt;}
.y14_c00222{bottom:582.933333pt;}
.y13_c00222{bottom:600.800000pt;}
.y12_c00222{bottom:618.666667pt;}
.y11_c00222{bottom:636.533333pt;}
.y10_c00222{bottom:654.400000pt;}
.yf_c00222{bottom:672.266667pt;}
.ye_c00222{bottom:689.866667pt;}
.yd_c00222{bottom:707.466667pt;}
.yc_c00222{bottom:725.466667pt;}
.yb_c00222{bottom:743.333333pt;}
.ya_c00222{bottom:760.933333pt;}
.y9_c00222{bottom:779.200000pt;}
.y8_c00222{bottom:796.800000pt;}
.y7_c00222{bottom:814.666667pt;}
.y6_c00222{bottom:832.400000pt;}
.y5_c00222{bottom:850.266667pt;}
.y4_c00222{bottom:868.133333pt;}
.y3_c00222{bottom:885.466667pt;}
.y2_c00222{bottom:903.733333pt;}
.y1_c00222{bottom:937.866667pt;}
.h2_c00222{height:48.000000pt;}
.h0_c00222{height:1037.119955pt;}
.h1_c00222{height:1037.333333pt;}
.w0_c00222{width:816.640056pt;}
.w1_c00222{width:816.666667pt;}
.x0_c00222{left:0.000000pt;}
.x3_c00222{left:127.733333pt;}
.x1_c00222{left:129.600000pt;}
.x8e_c00222{left:143.333333pt;}
.xa7_c00222{left:147.200000pt;}
.x4_c00222{left:153.066667pt;}
.xc2_c00222{left:154.533333pt;}
.x39_c00222{left:155.866667pt;}
.x57_c00222{left:157.733333pt;}
.x25_c00222{left:164.133333pt;}
.xae_c00222{left:167.600000pt;}
.x9c_c00222{left:168.800000pt;}
.x43_c00222{left:169.733333pt;}
.x18_c00222{left:171.200000pt;}
.x33_c00222{left:172.533333pt;}
.x14_c00222{left:173.600000pt;}
.x5_c00222{left:183.200000pt;}
.x69_c00222{left:186.666667pt;}
.xb7_c00222{left:189.733333pt;}
.x8f_c00222{left:195.466667pt;}
.x34_c00222{left:198.133333pt;}
.x58_c00222{left:202.533333pt;}
.xaf_c00222{left:203.733333pt;}
.x26_c00222{left:207.333333pt;}
.x87_c00222{left:211.333333pt;}
.x19_c00222{left:212.800000pt;}
.x60_c00222{left:214.400000pt;}
.x4f_c00222{left:216.266667pt;}
.x3a_c00222{left:219.600000pt;}
.x27_c00222{left:222.666667pt;}
.x6a_c00222{left:225.333333pt;}
.x6_c00222{left:228.666667pt;}
.x15_c00222{left:233.733333pt;}
.xb8_c00222{left:235.200000pt;}
.x28_c00222{left:236.133333pt;}
.x59_c00222{left:238.666667pt;}
.x7a_c00222{left:240.533333pt;}
.x88_c00222{left:245.600000pt;}
.x9d_c00222{left:255.733333pt;}
.x16_c00222{left:256.800000pt;}
.x90_c00222{left:257.866667pt;}
.x7_c00222{left:259.733333pt;}
.x35_c00222{left:262.133333pt;}
.x5a_c00222{left:264.933333pt;}
.x3b_c00222{left:266.266667pt;}
.x6f_c00222{left:271.333333pt;}
.x17_c00222{left:273.066667pt;}
.x9e_c00222{left:274.000000pt;}
.x91_c00222{left:275.466667pt;}
.x36_c00222{left:277.866667pt;}
.x7f_c00222{left:278.800000pt;}
.x50_c00222{left:280.266667pt;}
.x7b_c00222{left:284.666667pt;}
.xbd_c00222{left:285.733333pt;}
.x89_c00222{left:291.733333pt;}
.x8_c00222{left:293.066667pt;}
.x9f_c00222{left:296.666667pt;}
.x29_c00222{left:299.200000pt;}
.x61_c00222{left:300.133333pt;}
.x37_c00222{left:301.200000pt;}
.x5b_c00222{left:303.333333pt;}
.x44_c00222{left:305.466667pt;}
.x6b_c00222{left:308.533333pt;}
.x3c_c00222{left:311.333333pt;}
.x92_c00222{left:314.133333pt;}
.x9_c00222{left:315.466667pt;}
.x70_c00222{left:317.733333pt;}
.x62_c00222{left:320.266667pt;}
.x8a_c00222{left:321.866667pt;}
.xc3_c00222{left:324.533333pt;}
.x51_c00222{left:325.733333pt;}
.x1a_c00222{left:328.400000pt;}
.xa8_c00222{left:329.600000pt;}
.x6c_c00222{left:334.133333pt;}
.xb0_c00222{left:337.333333pt;}
.xa0_c00222{left:340.800000pt;}
.x3d_c00222{left:343.333333pt;}
.x38_c00222{left:344.666667pt;}
.x80_c00222{left:347.333333pt;}
.x71_c00222{left:349.066667pt;}
.x45_c00222{left:350.000000pt;}
.x93_c00222{left:350.933333pt;}
.x52_c00222{left:353.866667pt;}
.x1b_c00222{left:357.466667pt;}
.x2a_c00222{left:358.400000pt;}
.x63_c00222{left:360.933333pt;}
.xa9_c00222{left:364.533333pt;}
.x7c_c00222{left:366.533333pt;}
.xa_c00222{left:368.933333pt;}
.xb1_c00222{left:370.666667pt;}
.xb9_c00222{left:371.733333pt;}
.x1c_c00222{left:377.600000pt;}
.x94_c00222{left:378.800000pt;}
.xc4_c00222{left:380.800000pt;}
.x8b_c00222{left:382.933333pt;}
.x46_c00222{left:385.466667pt;}
.x2_c00222{left:386.533333pt;}
.x53_c00222{left:390.666667pt;}
.x7d_c00222{left:392.133333pt;}
.x72_c00222{left:399.333333pt;}
.xbe_c00222{left:400.666667pt;}
.xb_c00222{left:402.266667pt;}
.x3e_c00222{left:403.600000pt;}
.x5c_c00222{left:406.400000pt;}
.xba_c00222{left:410.133333pt;}
.x6d_c00222{left:411.200000pt;}
.x47_c00222{left:414.266667pt;}
.xa1_c00222{left:416.266667pt;}
.x1d_c00222{left:418.533333pt;}
.x73_c00222{left:420.133333pt;}
.x7e_c00222{left:427.333333pt;}
.xbf_c00222{left:428.533333pt;}
.xc_c00222{left:429.466667pt;}
.xb2_c00222{left:430.533333pt;}
.x48_c00222{left:432.133333pt;}
.x2b_c00222{left:435.200000pt;}
.x1e_c00222{left:441.600000pt;}
.x54_c00222{left:445.066667pt;}
.xaa_c00222{left:447.466667pt;}
.x5d_c00222{left:454.133333pt;}
.x3f_c00222{left:455.466667pt;}
.x49_c00222{left:457.733333pt;}
.x6e_c00222{left:459.600000pt;}
.x55_c00222{left:461.333333pt;}
.xd_c00222{left:462.400000pt;}
.xa2_c00222{left:464.933333pt;}
.xb3_c00222{left:467.600000pt;}
.x64_c00222{left:472.266667pt;}
.x95_c00222{left:473.466667pt;}
.x81_c00222{left:477.200000pt;}
.x4a_c00222{left:480.400000pt;}
.x1f_c00222{left:481.866667pt;}
.xc5_c00222{left:484.800000pt;}
.x2c_c00222{left:487.333333pt;}
.x74_c00222{left:488.666667pt;}
.x82_c00222{left:492.533333pt;}
.xe_c00222{left:495.333333pt;}
.xc6_c00222{left:497.866667pt;}
.x96_c00222{left:499.733333pt;}
.x20_c00222{left:500.800000pt;}
.xb4_c00222{left:504.400000pt;}
.xc0_c00222{left:517.466667pt;}
.x2d_c00222{left:519.333333pt;}
.x5e_c00222{left:520.666667pt;}
.x21_c00222{left:523.200000pt;}
.xbb_c00222{left:524.800000pt;}
.x97_c00222{left:530.400000pt;}
.xc1_c00222{left:535.066667pt;}
.x5f_c00222{left:536.000000pt;}
.x65_c00222{left:537.866667pt;}
.xab_c00222{left:539.333333pt;}
.x4b_c00222{left:541.466667pt;}
.x83_c00222{left:543.466667pt;}
.x40_c00222{left:544.800000pt;}
.x75_c00222{left:546.933333pt;}
.x98_c00222{left:548.933333pt;}
.x8c_c00222{left:551.466667pt;}
.xf_c00222{left:556.400000pt;}
.x56_c00222{left:558.933333pt;}
.xac_c00222{left:564.266667pt;}
.x22_c00222{left:565.733333pt;}
.x2e_c00222{left:568.000000pt;}
.x99_c00222{left:570.000000pt;}
.x4c_c00222{left:574.800000pt;}
.x10_c00222{left:578.533333pt;}
.x23_c00222{left:582.000000pt;}
.x76_c00222{left:586.933333pt;}
.x84_c00222{left:589.866667pt;}
.xa3_c00222{left:594.266667pt;}
.x4d_c00222{left:595.333333pt;}
.x11_c00222{left:597.066667pt;}
.x2f_c00222{left:601.600000pt;}
.x85_c00222{left:615.466667pt;}
.x30_c00222{left:619.866667pt;}
.x77_c00222{left:622.133333pt;}
.xa4_c00222{left:623.066667pt;}
.x9a_c00222{left:626.666667pt;}
.x66_c00222{left:632.533333pt;}
.x41_c00222{left:640.533333pt;}
.x4e_c00222{left:642.666667pt;}
.xb5_c00222{left:644.533333pt;}
.x67_c00222{left:647.200000pt;}
.x86_c00222{left:656.400000pt;}
.x78_c00222{left:658.266667pt;}
.xa5_c00222{left:660.133333pt;}
.xbc_c00222{left:665.066667pt;}
.x42_c00222{left:666.400000pt;}
.x12_c00222{left:671.600000pt;}
.x9b_c00222{left:674.933333pt;}
.x8d_c00222{left:676.400000pt;}
.x31_c00222{left:681.600000pt;}
.x24_c00222{left:685.333333pt;}
.x79_c00222{left:686.400000pt;}
.xa6_c00222{left:689.866667pt;}
.xb6_c00222{left:695.066667pt;}
.xad_c00222{left:701.333333pt;}
.x68_c00222{left:702.933333pt;}
.x13_c00222{left:703.866667pt;}
.x32_c00222{left:710.400000pt;}
}





/* 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_c00223 {
    display:none;
  }
  .loading-indicator_c00223.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00223 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_c00223 { 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_c00223" -> "#page-container .classname_c00223")
 */
.pf_c00223 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00223 { /* 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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00223 { /* 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_c00223 { /* 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_c00223 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00223 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00223 {overflow:visible;}
  }
}
.c_c00223 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00223 { /* 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_c00223:after { /* webkit #35443 */
  content: '';
}
.t_c00223:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00223 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 */
}
.__c00223 { /* 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_c00223 { /* info for Javascript */
  display:none;
}
.l_c00223 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00223 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00223 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00223: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_c00223 {
    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_c00223.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00223.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_c00223 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00223{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00223;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.000000;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_c00223{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.v0_c00223{vertical-align:0.000000px;}
.ls0_c00223{letter-spacing:0.000000px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{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__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:0.000000px;}
.fc0_c00223{color:transparent;}
.fs0_c00223{font-size:60.000000px;}
.y0_c00223{bottom:0.000000px;}
.y1_c00223{bottom:30.900000px;}
.h2_c00223{height:60.000000px;}
.h0_c00223{height:1166.759949px;}
.h1_c00223{height:1167.000000px;}
.w0_c00223{width:918.720063px;}
.w1_c00223{width:918.750000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:810.000000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fs0_c00223{font-size:53.333333pt;}
.y0_c00223{bottom:0.000000pt;}
.y1_c00223{bottom:27.466667pt;}
.h2_c00223{height:53.333333pt;}
.h0_c00223{height:1037.119955pt;}
.h1_c00223{height:1037.333333pt;}
.w0_c00223{width:816.640056pt;}
.w1_c00223{width:816.666667pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:720.000000pt;}
}





/* 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_c00224 {
    display:none;
  }
  .loading-indicator_c00224.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00224 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_c00224 { 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_c00224" -> "#page-container .classname_c00224")
 */
.pf_c00224 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00224 { /* 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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00224 { /* 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_c00224 { /* 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_c00224 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00224 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00224 {overflow:visible;}
  }
}
.c_c00224 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00224 { /* 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_c00224:after { /* webkit #35443 */
  content: '';
}
.t_c00224:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00224 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 */
}
.__c00224 { /* 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_c00224 { /* info for Javascript */
  display:none;
}
.l_c00224 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00224 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00224 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00224: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_c00224 {
    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_c00224.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00224.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_c00224 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00224{font-family:sans-serif;visibility:hidden;}
.sc__c00224{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
}
.y0_c00224{bottom:0.000000px;}
.h0_c00224{height:1166.759949px;}
.h1_c00224{height:1167.000000px;}
.w0_c00224{width:918.720063px;}
.w1_c00224{width:918.750000px;}
.x0_c00224{left:0.000000px;}
@media print{
.y0_c00224{bottom:0.000000pt;}
.h0_c00224{height:1037.119955pt;}
.h1_c00224{height:1037.333333pt;}
.w0_c00224{width:816.640056pt;}
.w1_c00224{width:816.666667pt;}
.x0_c00224{left:0.000000pt;}
}





/* 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_c00225 {
    display:none;
  }
  .loading-indicator_c00225.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00225 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_c00225 { 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_c00225" -> "#page-container .classname_c00225")
 */
.pf_c00225 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00225 { /* 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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00225 { /* 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_c00225 { /* 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_c00225 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00225 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00225 {overflow:visible;}
  }
}
.c_c00225 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00225 { /* 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_c00225:after { /* webkit #35443 */
  content: '';
}
.t_c00225:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00225 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 */
}
.__c00225 { /* 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_c00225 { /* info for Javascript */
  display:none;
}
.l_c00225 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00225 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00225 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00225: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_c00225 {
    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_c00225.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00225.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_c00225 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00225{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00225;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.000000;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;}
.m50_c00225{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00225{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00225{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m28_c00225{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00225{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m80_c00225{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00225{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m74_c00225{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00225{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00225{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00225{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m89_c00225{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00225{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00225{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m96_c00225{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00225{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00225{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maa_c00225{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m68_c00225{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00225{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m55_c00225{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00225{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m99_c00225{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00225{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00225{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m71_c00225{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m51_c00225{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m83_c00225{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00225{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m12_c00225{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00225{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m85_c00225{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00225{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00225{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00225{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00225{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m90_c00225{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00225{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m81_c00225{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m98_c00225{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m84_c00225{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m48_c00225{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00225{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m43_c00225{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m67_c00225{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m31_c00225{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m17_c00225{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00225{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m94_c00225{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00225{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m19_c00225{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00225{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m73_c00225{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00225{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00225{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00225{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00225{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00225{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00225{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00225{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m37_c00225{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m20_c00225{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m63_c00225{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00225{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m34_c00225{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m91_c00225{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m41_c00225{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m66_c00225{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00225{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00225{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00225{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m79_c00225{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00225{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00225{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m16_c00225{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00225{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00225{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00225{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00225{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m57_c00225{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m30_c00225{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m22_c00225{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00225{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00225{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m13_c00225{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00225{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00225{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m87_c00225{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00225{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00225{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m29_c00225{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m75_c00225{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m21_c00225{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m97_c00225{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m18_c00225{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m40_c00225{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m52_c00225{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00225{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00225{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m35_c00225{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m58_c00225{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00225{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00225{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00225{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m49_c00225{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m54_c00225{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m77_c00225{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb_c00225{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00225{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00225{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m45_c00225{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m14_c00225{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m33_c00225{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m95_c00225{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m64_c00225{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m56_c00225{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m25_c00225{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00225{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m60_c00225{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m61_c00225{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00225{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m42_c00225{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00225{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m39_c00225{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m46_c00225{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);}
.m78_c00225{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00225{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m36_c00225{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m69_c00225{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m93_c00225{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m27_c00225{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m59_c00225{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma_c00225{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00225{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00225{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00225{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m38_c00225{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00225{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mab_c00225{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m62_c00225{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m53_c00225{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00225{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m88_c00225{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00225{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00225{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00225{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m44_c00225{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m32_c00225{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00225{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m86_c00225{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00225{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00225{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m24_c00225{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m15_c00225{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00225{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00225{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m8_c00225{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00225{vertical-align:0.000000px;}
.ls0_c00225{letter-spacing:0.000000px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{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__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00225{word-spacing:0.000000px;}
.ws3_c00225{word-spacing:1.710526px;}
.ws2_c00225{word-spacing:2.715517px;}
.ws0_c00225{word-spacing:15.129310px;}
.ws1_c00225{word-spacing:17.500000px;}
.fc0_c00225{color:transparent;}
.fs1_c00225{font-size:54.000000px;}
.fs0_c00225{font-size:60.000000px;}
.y0_c00225{bottom:0.000000px;}
.y25_c00225{bottom:129.900000px;}
.y24_c00225{bottom:147.900000px;}
.y23_c00225{bottom:164.400000px;}
.y22_c00225{bottom:180.300000px;}
.y21_c00225{bottom:207.150000px;}
.y20_c00225{bottom:227.250000px;}
.y1f_c00225{bottom:247.050000px;}
.y1e_c00225{bottom:266.850000px;}
.y1d_c00225{bottom:286.950000px;}
.y1c_c00225{bottom:307.200000px;}
.y1b_c00225{bottom:327.000000px;}
.y1a_c00225{bottom:346.800000px;}
.y19_c00225{bottom:366.900000px;}
.y18_c00225{bottom:386.700000px;}
.y17_c00225{bottom:415.950000px;}
.y16_c00225{bottom:436.050000px;}
.y15_c00225{bottom:456.150000px;}
.y14_c00225{bottom:475.950000px;}
.y13_c00225{bottom:495.750000px;}
.y12_c00225{bottom:524.400000px;}
.y11_c00225{bottom:544.500000px;}
.y10_c00225{bottom:564.600000px;}
.yf_c00225{bottom:584.700000px;}
.ye_c00225{bottom:604.800000px;}
.yd_c00225{bottom:624.600000px;}
.yc_c00225{bottom:644.700000px;}
.yb_c00225{bottom:664.500000px;}
.ya_c00225{bottom:684.600000px;}
.y9_c00225{bottom:704.700000px;}
.y8_c00225{bottom:724.800000px;}
.y7_c00225{bottom:744.900000px;}
.y6_c00225{bottom:764.700000px;}
.y5_c00225{bottom:784.800000px;}
.y4_c00225{bottom:804.600000px;}
.y3_c00225{bottom:837.300000px;}
.y2_c00225{bottom:870.450000px;}
.y1_c00225{bottom:1050.900000px;}
.h3_c00225{height:54.000000px;}
.h2_c00225{height:60.000000px;}
.h0_c00225{height:1166.759949px;}
.h1_c00225{height:1167.000000px;}
.w0_c00225{width:918.720063px;}
.w1_c00225{width:918.750000px;}
.x0_c00225{left:0.000000px;}
.xb_c00225{left:95.700000px;}
.x68_c00225{left:97.200000px;}
.xb1_c00225{left:98.400000px;}
.xea_c00225{left:99.900000px;}
.x10c_c00225{left:101.250000px;}
.x1a_c00225{left:116.250000px;}
.xa5_c00225{left:118.650000px;}
.xf2_c00225{left:120.600000px;}
.x78_c00225{left:123.150000px;}
.x56_c00225{left:124.650000px;}
.x27_c00225{left:128.400000px;}
.xa8_c00225{left:129.600000px;}
.xc1_c00225{left:131.400000px;}
.x107_c00225{left:132.450000px;}
.x69_c00225{left:136.050000px;}
.xb2_c00225{left:137.700000px;}
.x5a_c00225{left:142.650000px;}
.x41_c00225{left:144.300000px;}
.xa6_c00225{left:146.400000px;}
.x28_c00225{left:147.900000px;}
.x7d_c00225{left:149.100000px;}
.xc_c00225{left:153.300000px;}
.xa9_c00225{left:155.850000px;}
.x9b_c00225{left:157.950000px;}
.x86_c00225{left:159.900000px;}
.xc2_c00225{left:163.500000px;}
.xeb_c00225{left:164.550000px;}
.x57_c00225{left:166.050000px;}
.xcb_c00225{left:169.050000px;}
.xe4_c00225{left:171.450000px;}
.x6a_c00225{left:173.550000px;}
.x29_c00225{left:175.950000px;}
.x79_c00225{left:178.950000px;}
.x5b_c00225{left:180.450000px;}
.xa7_c00225{left:183.450000px;}
.xd4_c00225{left:187.650000px;}
.x35_c00225{left:189.000000px;}
.x1b_c00225{left:190.050000px;}
.xe5_c00225{left:191.250000px;}
.xd_c00225{left:198.300000px;}
.xb3_c00225{left:200.400000px;}
.xf3_c00225{left:203.700000px;}
.x6b_c00225{left:204.900000px;}
.x7e_c00225{left:208.800000px;}
.x110_c00225{left:210.000000px;}
.x92_c00225{left:212.700000px;}
.xe_c00225{left:213.750000px;}
.x4c_c00225{left:214.800000px;}
.x1c_c00225{left:217.800000px;}
.xde_c00225{left:219.900000px;}
.xb4_c00225{left:221.250000px;}
.xaa_c00225{left:224.550000px;}
.x36_c00225{left:227.550000px;}
.x2a_c00225{left:230.250000px;}
.xf4_c00225{left:231.750000px;}
.x87_c00225{left:233.700000px;}
.xd0_c00225{left:236.400000px;}
.xdf_c00225{left:241.200000px;}
.x4_c00225{left:242.700000px;}
.x42_c00225{left:244.350000px;}
.xe6_c00225{left:247.800000px;}
.xb5_c00225{left:249.750000px;}
.x5c_c00225{left:253.950000px;}
.x58_c00225{left:256.050000px;}
.x6c_c00225{left:257.100000px;}
.xd1_c00225{left:262.350000px;}
.xc3_c00225{left:264.000000px;}
.x37_c00225{left:268.200000px;}
.xcc_c00225{left:269.850000px;}
.x88_c00225{left:271.500000px;}
.x59_c00225{left:275.850000px;}
.xd5_c00225{left:280.500000px;}
.xb6_c00225{left:282.900000px;}
.x4d_c00225{left:284.250000px;}
.x2b_c00225{left:285.750000px;}
.x5d_c00225{left:291.000000px;}
.x9c_c00225{left:292.200000px;}
.x6d_c00225{left:293.850000px;}
.xf5_c00225{left:297.150000px;}
.x89_c00225{left:302.400000px;}
.x93_c00225{left:303.450000px;}
.x1d_c00225{left:307.050000px;}
.x4e_c00225{left:314.850000px;}
.x7f_c00225{left:316.050000px;}
.x5e_c00225{left:318.000000px;}
.x2c_c00225{left:319.650000px;}
.x9d_c00225{left:321.000000px;}
.x43_c00225{left:323.250000px;}
.xec_c00225{left:326.250000px;}
.x1e_c00225{left:328.950000px;}
.xf_c00225{left:330.450000px;}
.x94_c00225{left:331.500000px;}
.xb7_c00225{left:333.300000px;}
.x6e_c00225{left:334.500000px;}
.xe7_c00225{left:336.750000px;}
.xc4_c00225{left:340.350000px;}
.xfa_c00225{left:341.850000px;}
.x80_c00225{left:344.850000px;}
.x7a_c00225{left:346.200000px;}
.x10_c00225{left:347.700000px;}
.x44_c00225{left:353.850000px;}
.x38_c00225{left:356.400000px;}
.x1f_c00225{left:357.450000px;}
.xd6_c00225{left:358.650000px;}
.xf6_c00225{left:359.700000px;}
.x103_c00225{left:361.350000px;}
.x5_c00225{left:362.550000px;}
.xb8_c00225{left:363.900000px;}
.xab_c00225{left:367.050000px;}
.xd2_c00225{left:368.550000px;}
.x5f_c00225{left:370.950000px;}
.x2_c00225{left:372.600000px;}
.xe8_c00225{left:376.350000px;}
.x6f_c00225{left:377.400000px;}
.x4f_c00225{left:379.350000px;}
.xed_c00225{left:381.750000px;}
.x111_c00225{left:383.250000px;}
.xb9_c00225{left:384.750000px;}
.xac_c00225{left:386.850000px;}
.x39_c00225{left:388.800000px;}
.x60_c00225{left:396.900000px;}
.x70_c00225{left:400.500000px;}
.x50_c00225{left:401.700000px;}
.xd3_c00225{left:404.550000px;}
.xda_c00225{left:409.500000px;}
.xfb_c00225{left:411.750000px;}
.xad_c00225{left:413.100000px;}
.x1_c00225{left:415.050000px;}
.x8a_c00225{left:417.300000px;}
.xcd_c00225{left:419.250000px;}
.x6_c00225{left:420.900000px;}
.x20_c00225{left:421.950000px;}
.x61_c00225{left:425.400000px;}
.x11_c00225{left:426.600000px;}
.x95_c00225{left:428.250000px;}
.x71_c00225{left:429.300000px;}
.x51_c00225{left:432.300000px;}
.xc5_c00225{left:433.650000px;}
.x7_c00225{left:436.050000px;}
.x3a_c00225{left:438.450000px;}
.x9e_c00225{left:439.500000px;}
.xe0_c00225{left:441.600000px;}
.x21_c00225{left:443.250000px;}
.x12_c00225{left:444.300000px;}
.xfe_c00225{left:447.600000px;}
.x2d_c00225{left:451.350000px;}
.xee_c00225{left:453.000000px;}
.xba_c00225{left:455.250000px;}
.x3_c00225{left:456.900000px;}
.x62_c00225{left:460.350000px;}
.x13_c00225{left:461.550000px;}
.x8b_c00225{left:464.400000px;}
.x45_c00225{left:467.250000px;}
.x112_c00225{left:470.400000px;}
.xc6_c00225{left:472.950000px;}
.x22_c00225{left:474.900000px;}
.xfc_c00225{left:477.300000px;}
.x63_c00225{left:479.850000px;}
.x9f_c00225{left:485.550000px;}
.x96_c00225{left:486.900000px;}
.x3b_c00225{left:491.400000px;}
.x8c_c00225{left:495.000000px;}
.x46_c00225{left:497.100000px;}
.x52_c00225{left:498.900000px;}
.x14_c00225{left:500.850000px;}
.xd7_c00225{left:501.900000px;}
.xf7_c00225{left:503.400000px;}
.x108_c00225{left:505.500000px;}
.x2e_c00225{left:507.450000px;}
.x81_c00225{left:509.400000px;}
.xbb_c00225{left:511.650000px;}
.xe1_c00225{left:512.850000px;}
.x8d_c00225{left:516.300000px;}
.x64_c00225{left:518.700000px;}
.xe9_c00225{left:520.350000px;}
.x8_c00225{left:521.700000px;}
.xff_c00225{left:526.800000px;}
.x15_c00225{left:529.950000px;}
.x113_c00225{left:531.900000px;}
.xce_c00225{left:533.700000px;}
.x10d_c00225{left:534.750000px;}
.x23_c00225{left:536.100000px;}
.x82_c00225{left:538.200000px;}
.xa0_c00225{left:539.550000px;}
.x8e_c00225{left:544.350000px;}
.x109_c00225{left:545.400000px;}
.x2f_c00225{left:548.100000px;}
.xa1_c00225{left:553.650000px;}
.x72_c00225{left:555.300000px;}
.x10e_c00225{left:557.550000px;}
.x3c_c00225{left:560.100000px;}
.xae_c00225{left:562.800000px;}
.x47_c00225{left:565.200000px;}
.x97_c00225{left:566.850000px;}
.x9_c00225{left:568.200000px;}
.x30_c00225{left:570.000000px;}
.x100_c00225{left:571.800000px;}
.x73_c00225{left:576.150000px;}
.x104_c00225{left:578.700000px;}
.xa_c00225{left:582.900000px;}
.x31_c00225{left:585.150000px;}
.x7b_c00225{left:586.350000px;}
.xdb_c00225{left:587.400000px;}
.x10a_c00225{left:589.350000px;}
.xbc_c00225{left:591.150000px;}
.xc7_c00225{left:595.650000px;}
.x98_c00225{left:597.750000px;}
.xef_c00225{left:601.050000px;}
.x105_c00225{left:602.100000px;}
.xf8_c00225{left:604.650000px;}
.x24_c00225{left:606.000000px;}
.xa2_c00225{left:607.950000px;}
.x48_c00225{left:610.500000px;}
.x3d_c00225{left:612.000000px;}
.x10b_c00225{left:613.500000px;}
.xc8_c00225{left:616.500000px;}
.xe2_c00225{left:619.050000px;}
.x7c_c00225{left:623.100000px;}
.x53_c00225{left:624.600000px;}
.x16_c00225{left:626.700000px;}
.x83_c00225{left:628.950000px;}
.xbd_c00225{left:630.000000px;}
.x3e_c00225{left:633.900000px;}
.x8f_c00225{left:636.900000px;}
.x32_c00225{left:641.250000px;}
.xaf_c00225{left:642.750000px;}
.xe3_c00225{left:644.250000px;}
.x17_c00225{left:647.550000px;}
.x74_c00225{left:649.500000px;}
.x25_c00225{left:652.500000px;}
.xdc_c00225{left:654.000000px;}
.x65_c00225{left:656.550000px;}
.x54_c00225{left:660.300000px;}
.x10f_c00225{left:661.350000px;}
.xfd_c00225{left:663.750000px;}
.xf0_c00225{left:666.600000px;}
.x75_c00225{left:669.300000px;}
.xbe_c00225{left:670.350000px;}
.xd8_c00225{left:671.400000px;}
.x18_c00225{left:675.300000px;}
.x33_c00225{left:678.300000px;}
.x49_c00225{left:681.000000px;}
.xc9_c00225{left:682.350000px;}
.x90_c00225{left:683.700000px;}
.x99_c00225{left:685.650000px;}
.xbf_c00225{left:690.450000px;}
.x66_c00225{left:693.600000px;}
.x101_c00225{left:697.350000px;}
.xa3_c00225{left:698.700000px;}
.x4a_c00225{left:701.850000px;}
.xf9_c00225{left:703.350000px;}
.x91_c00225{left:704.550000px;}
.x106_c00225{left:705.750000px;}
.x84_c00225{left:708.600000px;}
.xb0_c00225{left:712.950000px;}
.x26_c00225{left:715.200000px;}
.x76_c00225{left:717.150000px;}
.xc0_c00225{left:718.500000px;}
.x67_c00225{left:722.100000px;}
.x3f_c00225{left:723.900000px;}
.x85_c00225{left:725.550000px;}
.xa4_c00225{left:726.750000px;}
.x55_c00225{left:728.400000px;}
.x77_c00225{left:731.850000px;}
.x34_c00225{left:733.350000px;}
.x19_c00225{left:734.400000px;}
.xca_c00225{left:736.350000px;}
.x9a_c00225{left:738.600000px;}
.xcf_c00225{left:739.950000px;}
.xf1_c00225{left:743.400000px;}
.xdd_c00225{left:746.250000px;}
.x4b_c00225{left:748.350000px;}
.xd9_c00225{left:754.500000px;}
.x40_c00225{left:756.600000px;}
.x102_c00225{left:761.700000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws4_c00225{word-spacing:0.000000pt;}
.ws3_c00225{word-spacing:1.520468pt;}
.ws2_c00225{word-spacing:2.413793pt;}
.ws0_c00225{word-spacing:13.448276pt;}
.ws1_c00225{word-spacing:15.555556pt;}
.fs1_c00225{font-size:48.000000pt;}
.fs0_c00225{font-size:53.333333pt;}
.y0_c00225{bottom:0.000000pt;}
.y25_c00225{bottom:115.466667pt;}
.y24_c00225{bottom:131.466667pt;}
.y23_c00225{bottom:146.133333pt;}
.y22_c00225{bottom:160.266667pt;}
.y21_c00225{bottom:184.133333pt;}
.y20_c00225{bottom:202.000000pt;}
.y1f_c00225{bottom:219.600000pt;}
.y1e_c00225{bottom:237.200000pt;}
.y1d_c00225{bottom:255.066667pt;}
.y1c_c00225{bottom:273.066667pt;}
.y1b_c00225{bottom:290.666667pt;}
.y1a_c00225{bottom:308.266667pt;}
.y19_c00225{bottom:326.133333pt;}
.y18_c00225{bottom:343.733333pt;}
.y17_c00225{bottom:369.733333pt;}
.y16_c00225{bottom:387.600000pt;}
.y15_c00225{bottom:405.466667pt;}
.y14_c00225{bottom:423.066667pt;}
.y13_c00225{bottom:440.666667pt;}
.y12_c00225{bottom:466.133333pt;}
.y11_c00225{bottom:484.000000pt;}
.y10_c00225{bottom:501.866667pt;}
.yf_c00225{bottom:519.733333pt;}
.ye_c00225{bottom:537.600000pt;}
.yd_c00225{bottom:555.200000pt;}
.yc_c00225{bottom:573.066667pt;}
.yb_c00225{bottom:590.666667pt;}
.ya_c00225{bottom:608.533333pt;}
.y9_c00225{bottom:626.400000pt;}
.y8_c00225{bottom:644.266667pt;}
.y7_c00225{bottom:662.133333pt;}
.y6_c00225{bottom:679.733333pt;}
.y5_c00225{bottom:697.600000pt;}
.y4_c00225{bottom:715.200000pt;}
.y3_c00225{bottom:744.266667pt;}
.y2_c00225{bottom:773.733333pt;}
.y1_c00225{bottom:934.133333pt;}
.h3_c00225{height:48.000000pt;}
.h2_c00225{height:53.333333pt;}
.h0_c00225{height:1037.119955pt;}
.h1_c00225{height:1037.333333pt;}
.w0_c00225{width:816.640056pt;}
.w1_c00225{width:816.666667pt;}
.x0_c00225{left:0.000000pt;}
.xb_c00225{left:85.066667pt;}
.x68_c00225{left:86.400000pt;}
.xb1_c00225{left:87.466667pt;}
.xea_c00225{left:88.800000pt;}
.x10c_c00225{left:90.000000pt;}
.x1a_c00225{left:103.333333pt;}
.xa5_c00225{left:105.466667pt;}
.xf2_c00225{left:107.200000pt;}
.x78_c00225{left:109.466667pt;}
.x56_c00225{left:110.800000pt;}
.x27_c00225{left:114.133333pt;}
.xa8_c00225{left:115.200000pt;}
.xc1_c00225{left:116.800000pt;}
.x107_c00225{left:117.733333pt;}
.x69_c00225{left:120.933333pt;}
.xb2_c00225{left:122.400000pt;}
.x5a_c00225{left:126.800000pt;}
.x41_c00225{left:128.266667pt;}
.xa6_c00225{left:130.133333pt;}
.x28_c00225{left:131.466667pt;}
.x7d_c00225{left:132.533333pt;}
.xc_c00225{left:136.266667pt;}
.xa9_c00225{left:138.533333pt;}
.x9b_c00225{left:140.400000pt;}
.x86_c00225{left:142.133333pt;}
.xc2_c00225{left:145.333333pt;}
.xeb_c00225{left:146.266667pt;}
.x57_c00225{left:147.600000pt;}
.xcb_c00225{left:150.266667pt;}
.xe4_c00225{left:152.400000pt;}
.x6a_c00225{left:154.266667pt;}
.x29_c00225{left:156.400000pt;}
.x79_c00225{left:159.066667pt;}
.x5b_c00225{left:160.400000pt;}
.xa7_c00225{left:163.066667pt;}
.xd4_c00225{left:166.800000pt;}
.x35_c00225{left:168.000000pt;}
.x1b_c00225{left:168.933333pt;}
.xe5_c00225{left:170.000000pt;}
.xd_c00225{left:176.266667pt;}
.xb3_c00225{left:178.133333pt;}
.xf3_c00225{left:181.066667pt;}
.x6b_c00225{left:182.133333pt;}
.x7e_c00225{left:185.600000pt;}
.x110_c00225{left:186.666667pt;}
.x92_c00225{left:189.066667pt;}
.xe_c00225{left:190.000000pt;}
.x4c_c00225{left:190.933333pt;}
.x1c_c00225{left:193.600000pt;}
.xde_c00225{left:195.466667pt;}
.xb4_c00225{left:196.666667pt;}
.xaa_c00225{left:199.600000pt;}
.x36_c00225{left:202.266667pt;}
.x2a_c00225{left:204.666667pt;}
.xf4_c00225{left:206.000000pt;}
.x87_c00225{left:207.733333pt;}
.xd0_c00225{left:210.133333pt;}
.xdf_c00225{left:214.400000pt;}
.x4_c00225{left:215.733333pt;}
.x42_c00225{left:217.200000pt;}
.xe6_c00225{left:220.266667pt;}
.xb5_c00225{left:222.000000pt;}
.x5c_c00225{left:225.733333pt;}
.x58_c00225{left:227.600000pt;}
.x6c_c00225{left:228.533333pt;}
.xd1_c00225{left:233.200000pt;}
.xc3_c00225{left:234.666667pt;}
.x37_c00225{left:238.400000pt;}
.xcc_c00225{left:239.866667pt;}
.x88_c00225{left:241.333333pt;}
.x59_c00225{left:245.200000pt;}
.xd5_c00225{left:249.333333pt;}
.xb6_c00225{left:251.466667pt;}
.x4d_c00225{left:252.666667pt;}
.x2b_c00225{left:254.000000pt;}
.x5d_c00225{left:258.666667pt;}
.x9c_c00225{left:259.733333pt;}
.x6d_c00225{left:261.200000pt;}
.xf5_c00225{left:264.133333pt;}
.x89_c00225{left:268.800000pt;}
.x93_c00225{left:269.733333pt;}
.x1d_c00225{left:272.933333pt;}
.x4e_c00225{left:279.866667pt;}
.x7f_c00225{left:280.933333pt;}
.x5e_c00225{left:282.666667pt;}
.x2c_c00225{left:284.133333pt;}
.x9d_c00225{left:285.333333pt;}
.x43_c00225{left:287.333333pt;}
.xec_c00225{left:290.000000pt;}
.x1e_c00225{left:292.400000pt;}
.xf_c00225{left:293.733333pt;}
.x94_c00225{left:294.666667pt;}
.xb7_c00225{left:296.266667pt;}
.x6e_c00225{left:297.333333pt;}
.xe7_c00225{left:299.333333pt;}
.xc4_c00225{left:302.533333pt;}
.xfa_c00225{left:303.866667pt;}
.x80_c00225{left:306.533333pt;}
.x7a_c00225{left:307.733333pt;}
.x10_c00225{left:309.066667pt;}
.x44_c00225{left:314.533333pt;}
.x38_c00225{left:316.800000pt;}
.x1f_c00225{left:317.733333pt;}
.xd6_c00225{left:318.800000pt;}
.xf6_c00225{left:319.733333pt;}
.x103_c00225{left:321.200000pt;}
.x5_c00225{left:322.266667pt;}
.xb8_c00225{left:323.466667pt;}
.xab_c00225{left:326.266667pt;}
.xd2_c00225{left:327.600000pt;}
.x5f_c00225{left:329.733333pt;}
.x2_c00225{left:331.200000pt;}
.xe8_c00225{left:334.533333pt;}
.x6f_c00225{left:335.466667pt;}
.x4f_c00225{left:337.200000pt;}
.xed_c00225{left:339.333333pt;}
.x111_c00225{left:340.666667pt;}
.xb9_c00225{left:342.000000pt;}
.xac_c00225{left:343.866667pt;}
.x39_c00225{left:345.600000pt;}
.x60_c00225{left:352.800000pt;}
.x70_c00225{left:356.000000pt;}
.x50_c00225{left:357.066667pt;}
.xd3_c00225{left:359.600000pt;}
.xda_c00225{left:364.000000pt;}
.xfb_c00225{left:366.000000pt;}
.xad_c00225{left:367.200000pt;}
.x1_c00225{left:368.933333pt;}
.x8a_c00225{left:370.933333pt;}
.xcd_c00225{left:372.666667pt;}
.x6_c00225{left:374.133333pt;}
.x20_c00225{left:375.066667pt;}
.x61_c00225{left:378.133333pt;}
.x11_c00225{left:379.200000pt;}
.x95_c00225{left:380.666667pt;}
.x71_c00225{left:381.600000pt;}
.x51_c00225{left:384.266667pt;}
.xc5_c00225{left:385.466667pt;}
.x7_c00225{left:387.600000pt;}
.x3a_c00225{left:389.733333pt;}
.x9e_c00225{left:390.666667pt;}
.xe0_c00225{left:392.533333pt;}
.x21_c00225{left:394.000000pt;}
.x12_c00225{left:394.933333pt;}
.xfe_c00225{left:397.866667pt;}
.x2d_c00225{left:401.200000pt;}
.xee_c00225{left:402.666667pt;}
.xba_c00225{left:404.666667pt;}
.x3_c00225{left:406.133333pt;}
.x62_c00225{left:409.200000pt;}
.x13_c00225{left:410.266667pt;}
.x8b_c00225{left:412.800000pt;}
.x45_c00225{left:415.333333pt;}
.x112_c00225{left:418.133333pt;}
.xc6_c00225{left:420.400000pt;}
.x22_c00225{left:422.133333pt;}
.xfc_c00225{left:424.266667pt;}
.x63_c00225{left:426.533333pt;}
.x9f_c00225{left:431.600000pt;}
.x96_c00225{left:432.800000pt;}
.x3b_c00225{left:436.800000pt;}
.x8c_c00225{left:440.000000pt;}
.x46_c00225{left:441.866667pt;}
.x52_c00225{left:443.466667pt;}
.x14_c00225{left:445.200000pt;}
.xd7_c00225{left:446.133333pt;}
.xf7_c00225{left:447.466667pt;}
.x108_c00225{left:449.333333pt;}
.x2e_c00225{left:451.066667pt;}
.x81_c00225{left:452.800000pt;}
.xbb_c00225{left:454.800000pt;}
.xe1_c00225{left:455.866667pt;}
.x8d_c00225{left:458.933333pt;}
.x64_c00225{left:461.066667pt;}
.xe9_c00225{left:462.533333pt;}
.x8_c00225{left:463.733333pt;}
.xff_c00225{left:468.266667pt;}
.x15_c00225{left:471.066667pt;}
.x113_c00225{left:472.800000pt;}
.xce_c00225{left:474.400000pt;}
.x10d_c00225{left:475.333333pt;}
.x23_c00225{left:476.533333pt;}
.x82_c00225{left:478.400000pt;}
.xa0_c00225{left:479.600000pt;}
.x8e_c00225{left:483.866667pt;}
.x109_c00225{left:484.800000pt;}
.x2f_c00225{left:487.200000pt;}
.xa1_c00225{left:492.133333pt;}
.x72_c00225{left:493.600000pt;}
.x10e_c00225{left:495.600000pt;}
.x3c_c00225{left:497.866667pt;}
.xae_c00225{left:500.266667pt;}
.x47_c00225{left:502.400000pt;}
.x97_c00225{left:503.866667pt;}
.x9_c00225{left:505.066667pt;}
.x30_c00225{left:506.666667pt;}
.x100_c00225{left:508.266667pt;}
.x73_c00225{left:512.133333pt;}
.x104_c00225{left:514.400000pt;}
.xa_c00225{left:518.133333pt;}
.x31_c00225{left:520.133333pt;}
.x7b_c00225{left:521.200000pt;}
.xdb_c00225{left:522.133333pt;}
.x10a_c00225{left:523.866667pt;}
.xbc_c00225{left:525.466667pt;}
.xc7_c00225{left:529.466667pt;}
.x98_c00225{left:531.333333pt;}
.xef_c00225{left:534.266667pt;}
.x105_c00225{left:535.200000pt;}
.xf8_c00225{left:537.466667pt;}
.x24_c00225{left:538.666667pt;}
.xa2_c00225{left:540.400000pt;}
.x48_c00225{left:542.666667pt;}
.x3d_c00225{left:544.000000pt;}
.x10b_c00225{left:545.333333pt;}
.xc8_c00225{left:548.000000pt;}
.xe2_c00225{left:550.266667pt;}
.x7c_c00225{left:553.866667pt;}
.x53_c00225{left:555.200000pt;}
.x16_c00225{left:557.066667pt;}
.x83_c00225{left:559.066667pt;}
.xbd_c00225{left:560.000000pt;}
.x3e_c00225{left:563.466667pt;}
.x8f_c00225{left:566.133333pt;}
.x32_c00225{left:570.000000pt;}
.xaf_c00225{left:571.333333pt;}
.xe3_c00225{left:572.666667pt;}
.x17_c00225{left:575.600000pt;}
.x74_c00225{left:577.333333pt;}
.x25_c00225{left:580.000000pt;}
.xdc_c00225{left:581.333333pt;}
.x65_c00225{left:583.600000pt;}
.x54_c00225{left:586.933333pt;}
.x10f_c00225{left:587.866667pt;}
.xfd_c00225{left:590.000000pt;}
.xf0_c00225{left:592.533333pt;}
.x75_c00225{left:594.933333pt;}
.xbe_c00225{left:595.866667pt;}
.xd8_c00225{left:596.800000pt;}
.x18_c00225{left:600.266667pt;}
.x33_c00225{left:602.933333pt;}
.x49_c00225{left:605.333333pt;}
.xc9_c00225{left:606.533333pt;}
.x90_c00225{left:607.733333pt;}
.x99_c00225{left:609.466667pt;}
.xbf_c00225{left:613.733333pt;}
.x66_c00225{left:616.533333pt;}
.x101_c00225{left:619.866667pt;}
.xa3_c00225{left:621.066667pt;}
.x4a_c00225{left:623.866667pt;}
.xf9_c00225{left:625.200000pt;}
.x91_c00225{left:626.266667pt;}
.x106_c00225{left:627.333333pt;}
.x84_c00225{left:629.866667pt;}
.xb0_c00225{left:633.733333pt;}
.x26_c00225{left:635.733333pt;}
.x76_c00225{left:637.466667pt;}
.xc0_c00225{left:638.666667pt;}
.x67_c00225{left:641.866667pt;}
.x3f_c00225{left:643.466667pt;}
.x85_c00225{left:644.933333pt;}
.xa4_c00225{left:646.000000pt;}
.x55_c00225{left:647.466667pt;}
.x77_c00225{left:650.533333pt;}
.x34_c00225{left:651.866667pt;}
.x19_c00225{left:652.800000pt;}
.xca_c00225{left:654.533333pt;}
.x9a_c00225{left:656.533333pt;}
.xcf_c00225{left:657.733333pt;}
.xf1_c00225{left:660.800000pt;}
.xdd_c00225{left:663.333333pt;}
.x4b_c00225{left:665.200000pt;}
.xd9_c00225{left:670.666667pt;}
.x40_c00225{left:672.533333pt;}
.x102_c00225{left:677.066667pt;}
}





/* 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_c00226 {
    display:none;
  }
  .loading-indicator_c00226.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00226 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_c00226 { 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_c00226" -> "#page-container .classname_c00226")
 */
.pf_c00226 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00226 { /* 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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00226 { /* 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_c00226 { /* 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_c00226 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00226 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00226 {overflow:visible;}
  }
}
.c_c00226 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00226 { /* 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_c00226:after { /* webkit #35443 */
  content: '';
}
.t_c00226:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00226 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 */
}
.__c00226 { /* 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_c00226 { /* info for Javascript */
  display:none;
}
.l_c00226 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00226 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00226 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00226: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_c00226 {
    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_c00226.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00226.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_c00226 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00226{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00226;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.000000;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;}
.m4e_c00226{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m66_c00226{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m32_c00226{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00226{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m55_c00226{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00226{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00226{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00226{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m35_c00226{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7_c00226{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00226{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mf_c00226{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00226{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m49_c00226{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00226{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m34_c00226{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3_c00226{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00226{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m90_c00226{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m54_c00226{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m33_c00226{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00226{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m16_c00226{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00226{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m22_c00226{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m96_c00226{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m29_c00226{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m14_c00226{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00226{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00226{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00226{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00226{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc_c00226{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00226{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m56_c00226{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m36_c00226{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m28_c00226{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00226{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00226{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m84_c00226{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00226{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00226{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00226{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00226{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m51_c00226{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00226{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00226{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m21_c00226{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m61_c00226{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00226{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m44_c00226{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m59_c00226{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6_c00226{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m27_c00226{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4_c00226{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m42_c00226{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m38_c00226{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m47_c00226{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00226{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m65_c00226{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m48_c00226{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00226{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m11_c00226{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00226{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00226{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00226{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb_c00226{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m17_c00226{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00226{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00226{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00226{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m62_c00226{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m97_c00226{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m60_c00226{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m24_c00226{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma_c00226{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00226{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m86_c00226{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m99_c00226{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m25_c00226{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m41_c00226{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00226{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m23_c00226{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m85_c00226{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m53_c00226{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m45_c00226{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m92_c00226{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m82_c00226{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2_c00226{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00226{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m30_c00226{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m68_c00226{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m50_c00226{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00226{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00226{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m87_c00226{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m98_c00226{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00226{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8_c00226{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m13_c00226{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00226{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m95_c00226{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m79_c00226{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m20_c00226{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m70_c00226{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m89_c00226{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00226{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00226{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m57_c00226{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m26_c00226{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m71_c00226{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00226{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00226{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00226{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m40_c00226{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m74_c00226{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m39_c00226{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m83_c00226{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00226{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00226{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m81_c00226{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m52_c00226{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00226{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00226{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00226{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m77_c00226{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m12_c00226{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00226{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00226{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m88_c00226{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00226{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m15_c00226{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m73_c00226{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m31_c00226{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00226{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00226{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5_c00226{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m58_c00226{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10_c00226{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m63_c00226{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m94_c00226{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00226{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m0_c00226{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m91_c00226{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m93_c00226{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m67_c00226{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00226{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m18_c00226{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m80_c00226{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m69_c00226{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00226{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1_c00226{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m76_c00226{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00226{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c00226{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m46_c00226{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00226{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m43_c00226{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m72_c00226{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00226{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00226{vertical-align:0.000000px;}
.ls0_c00226{letter-spacing:0.000000px;}
.sc__c00226{text-shadow:none;}
.sc0_c00226{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__c00226{-webkit-text-stroke:0px transparent;}
.sc0_c00226{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00226{word-spacing:0.000000px;}
.ws0_c00226{word-spacing:3.846154px;}
.ws5_c00226{word-spacing:5.423729px;}
.ws4_c00226{word-spacing:8.529412px;}
.ws2_c00226{word-spacing:12.205882px;}
.ws6_c00226{word-spacing:12.857143px;}
.ws3_c00226{word-spacing:13.472222px;}
.ws1_c00226{word-spacing:14.925373px;}
._0_c00226{width:44.285714px;}
.fc0_c00226{color:transparent;}
.fs0_c00226{font-size:60.000000px;}
.y0_c00226{bottom:0.000000px;}
.y2d_c00226{bottom:152.850000px;}
.y2c_c00226{bottom:172.950000px;}
.y2b_c00226{bottom:192.750000px;}
.y2a_c00226{bottom:212.550000px;}
.y29_c00226{bottom:232.350000px;}
.y28_c00226{bottom:252.450000px;}
.y27_c00226{bottom:272.250000px;}
.y26_c00226{bottom:292.050000px;}
.y25_c00226{bottom:312.150000px;}
.y24_c00226{bottom:332.250000px;}
.y23_c00226{bottom:352.350000px;}
.y22_c00226{bottom:372.450000px;}
.y21_c00226{bottom:392.250000px;}
.y20_c00226{bottom:412.350000px;}
.y1f_c00226{bottom:432.150000px;}
.y1e_c00226{bottom:452.250000px;}
.y1d_c00226{bottom:472.350000px;}
.y1c_c00226{bottom:492.150000px;}
.y1b_c00226{bottom:511.350000px;}
.y1a_c00226{bottom:531.900000px;}
.y19_c00226{bottom:552.000000px;}
.y18_c00226{bottom:571.800000px;}
.y17_c00226{bottom:591.600000px;}
.y16_c00226{bottom:611.700000px;}
.y15_c00226{bottom:631.800000px;}
.y14_c00226{bottom:651.600000px;}
.y13_c00226{bottom:671.700000px;}
.y12_c00226{bottom:691.800000px;}
.y11_c00226{bottom:711.600000px;}
.y10_c00226{bottom:731.700000px;}
.yf_c00226{bottom:751.500000px;}
.ye_c00226{bottom:771.600000px;}
.yd_c00226{bottom:791.400000px;}
.yc_c00226{bottom:811.500000px;}
.yb_c00226{bottom:831.300000px;}
.ya_c00226{bottom:851.400000px;}
.y9_c00226{bottom:871.200000px;}
.y8_c00226{bottom:891.300000px;}
.y7_c00226{bottom:911.100000px;}
.y6_c00226{bottom:931.350000px;}
.y5_c00226{bottom:951.150000px;}
.y4_c00226{bottom:971.250000px;}
.y3_c00226{bottom:991.050000px;}
.y2_c00226{bottom:1011.600000px;}
.y1_c00226{bottom:1050.150000px;}
.h2_c00226{height:60.000000px;}
.h0_c00226{height:1166.759949px;}
.h1_c00226{height:1167.000000px;}
.w0_c00226{width:918.720063px;}
.w1_c00226{width:918.750000px;}
.x0_c00226{left:0.000000px;}
.x135_c00226{left:145.500000px;}
.xf8_c00226{left:146.850000px;}
.x30_c00226{left:148.050000px;}
.x3_c00226{left:149.400000px;}
.x1_c00226{left:152.250000px;}
.x125_c00226{left:163.350000px;}
.x112_c00226{left:165.300000px;}
.x83_c00226{left:170.100000px;}
.x3f_c00226{left:171.900000px;}
.x140_c00226{left:173.100000px;}
.x119_c00226{left:174.300000px;}
.xe7_c00226{left:175.650000px;}
.x12a_c00226{left:177.450000px;}
.xd7_c00226{left:178.500000px;}
.x45_c00226{left:179.700000px;}
.x31_c00226{left:181.950000px;}
.xf1_c00226{left:183.450000px;}
.xcd_c00226{left:184.800000px;}
.x13c_c00226{left:186.150000px;}
.x13_c00226{left:189.450000px;}
.xaa_c00226{left:191.250000px;}
.x66_c00226{left:193.800000px;}
.x57_c00226{left:195.600000px;}
.x109_c00226{left:198.150000px;}
.x76_c00226{left:200.700000px;}
.x40_c00226{left:202.200000px;}
.xce_c00226{left:205.350000px;}
.xb4_c00226{left:206.700000px;}
.xb8_c00226{left:207.900000px;}
.x4_c00226{left:209.100000px;}
.x91_c00226{left:210.900000px;}
.x46_c00226{left:213.150000px;}
.x58_c00226{left:215.700000px;}
.x126_c00226{left:217.050000px;}
.x32_c00226{left:219.000000px;}
.xe0_c00226{left:220.500000px;}
.x11c_c00226{left:221.550000px;}
.xa1_c00226{left:223.800000px;}
.x141_c00226{left:225.600000px;}
.x84_c00226{left:226.650000px;}
.x41_c00226{left:227.700000px;}
.xfe_c00226{left:229.650000px;}
.x136_c00226{left:230.850000px;}
.x21_c00226{left:234.000000px;}
.xc5_c00226{left:235.950000px;}
.x123_c00226{left:237.150000px;}
.x5_c00226{left:238.200000px;}
.x33_c00226{left:239.550000px;}
.x59_c00226{left:241.650000px;}
.x130_c00226{left:243.750000px;}
.xb9_c00226{left:246.000000px;}
.x11d_c00226{left:247.050000px;}
.x77_c00226{left:249.300000px;}
.x85_c00226{left:252.600000px;}
.x14_c00226{left:254.250000px;}
.xab_c00226{left:255.600000px;}
.xd8_c00226{left:256.650000px;}
.x6_c00226{left:257.700000px;}
.x47_c00226{left:260.700000px;}
.xe1_c00226{left:262.950000px;}
.xba_c00226{left:265.500000px;}
.x34_c00226{left:267.600000px;}
.xe8_c00226{left:269.250000px;}
.x5a_c00226{left:271.200000px;}
.xac_c00226{left:274.350000px;}
.x48_c00226{left:275.400000px;}
.x15_c00226{left:276.600000px;}
.x113_c00226{left:277.650000px;}
.x67_c00226{left:282.750000px;}
.xbb_c00226{left:285.600000px;}
.x49_c00226{left:287.700000px;}
.x42_c00226{left:288.900000px;}
.xd2_c00226{left:290.250000px;}
.x92_c00226{left:291.450000px;}
.xa2_c00226{left:295.050000px;}
.xe9_c00226{left:297.000000px;}
.x86_c00226{left:299.700000px;}
.x22_c00226{left:301.650000px;}
.x78_c00226{left:303.300000px;}
.x7_c00226{left:304.800000px;}
.x43_c00226{left:305.850000px;}
.x11e_c00226{left:308.250000px;}
.xf9_c00226{left:310.800000px;}
.x127_c00226{left:312.450000px;}
.x108_c00226{left:313.950000px;}
.x5b_c00226{left:317.550000px;}
.xf2_c00226{left:318.750000px;}
.x35_c00226{left:320.550000px;}
.x4a_c00226{left:321.600000px;}
.x142_c00226{left:322.800000px;}
.xa3_c00226{left:327.150000px;}
.x10e_c00226{left:328.200000px;}
.x93_c00226{left:329.250000px;}
.x44_c00226{left:331.350000px;}
.x137_c00226{left:333.000000px;}
.x23_c00226{left:334.050000px;}
.x68_c00226{left:336.450000px;}
.x79_c00226{left:338.250000px;}
.xe2_c00226{left:339.750000px;}
.x16_c00226{left:340.950000px;}
.xd9_c00226{left:343.050000px;}
.x94_c00226{left:347.250000px;}
.xd3_c00226{left:349.950000px;}
.x138_c00226{left:353.100000px;}
.x69_c00226{left:354.150000px;}
.xea_c00226{left:356.400000px;}
.x12d_c00226{left:357.600000px;}
.x5c_c00226{left:360.450000px;}
.xff_c00226{left:361.800000px;}
.xc6_c00226{left:363.000000px;}
.x11a_c00226{left:364.050000px;}
.x8_c00226{left:365.250000px;}
.xe3_c00226{left:367.050000px;}
.x36_c00226{left:368.400000px;}
.x95_c00226{left:372.450000px;}
.x4b_c00226{left:375.900000px;}
.xbc_c00226{left:377.400000px;}
.xfa_c00226{left:378.450000px;}
.x139_c00226{left:379.800000px;}
.x6a_c00226{left:380.850000px;}
.x131_c00226{left:383.400000px;}
.xe4_c00226{left:384.750000px;}
.x13d_c00226{left:385.950000px;}
.x17_c00226{left:387.450000px;}
.xad_c00226{left:389.250000px;}
.x5d_c00226{left:391.350000px;}
.x87_c00226{left:394.050000px;}
.xcf_c00226{left:396.150000px;}
.x7a_c00226{left:397.350000px;}
.x9_c00226{left:400.950000px;}
.xeb_c00226{left:403.950000px;}
.x24_c00226{left:405.000000px;}
.x143_c00226{left:406.050000px;}
.x5e_c00226{left:409.050000px;}
.x37_c00226{left:411.600000px;}
.x132_c00226{left:414.300000px;}
.x6b_c00226{left:415.800000px;}
.x4c_c00226{left:417.600000px;}
.x7b_c00226{left:418.650000px;}
.xbd_c00226{left:420.900000px;}
.x18_c00226{left:423.750000px;}
.x13a_c00226{left:425.550000px;}
.xfb_c00226{left:428.100000px;}
.xb5_c00226{left:429.750000px;}
.x88_c00226{left:431.850000px;}
.xd4_c00226{left:434.250000px;}
.xc7_c00226{left:435.750000px;}
.x5f_c00226{left:438.600000px;}
.xa_c00226{left:440.550000px;}
.x6c_c00226{left:443.550000px;}
.x144_c00226{left:444.600000px;}
.x4d_c00226{left:446.100000px;}
.x2_c00226{left:447.750000px;}
.x89_c00226{left:451.950000px;}
.x96_c00226{left:454.200000px;}
.x11f_c00226{left:455.400000px;}
.xc8_c00226{left:456.600000px;}
.x19_c00226{left:459.750000px;}
.xbe_c00226{left:461.550000px;}
.x103_c00226{left:463.800000px;}
.x4e_c00226{left:466.200000px;}
.xae_c00226{left:468.150000px;}
.x25_c00226{left:471.300000px;}
.x97_c00226{left:472.500000px;}
.x38_c00226{left:476.400000px;}
.xd5_c00226{left:477.450000px;}
.x8a_c00226{left:480.000000px;}
.xf3_c00226{left:481.650000px;}
.xda_c00226{left:485.550000px;}
.x114_c00226{left:486.750000px;}
.xbf_c00226{left:489.600000px;}
.x26_c00226{left:491.100000px;}
.xec_c00226{left:492.900000px;}
.x4f_c00226{left:493.950000px;}
.xaf_c00226{left:497.700000px;}
.x120_c00226{left:499.050000px;}
.xb_c00226{left:501.000000px;}
.xa4_c00226{left:503.250000px;}
.x39_c00226{left:504.450000px;}
.x6d_c00226{left:508.350000px;}
.x7c_c00226{left:509.400000px;}
.xf4_c00226{left:511.200000px;}
.x27_c00226{left:513.000000px;}
.x12b_c00226{left:515.100000px;}
.x98_c00226{left:516.450000px;}
.xd6_c00226{left:518.100000px;}
.x13e_c00226{left:520.200000px;}
.xb6_c00226{left:522.300000px;}
.xa5_c00226{left:523.350000px;}
.xb0_c00226{left:525.450000px;}
.xc9_c00226{left:526.500000px;}
.xfc_c00226{left:528.450000px;}
.x99_c00226{left:531.150000px;}
.x28_c00226{left:533.550000px;}
.x6e_c00226{left:536.100000px;}
.x133_c00226{left:538.800000px;}
.x50_c00226{left:540.000000px;}
.xca_c00226{left:544.200000px;}
.xc0_c00226{left:545.400000px;}
.xc_c00226{left:547.050000px;}
.x7d_c00226{left:548.700000px;}
.xb7_c00226{left:550.350000px;}
.xe5_c00226{left:552.300000px;}
.xfd_c00226{left:554.700000px;}
.x51_c00226{left:557.250000px;}
.x104_c00226{left:559.200000px;}
.x29_c00226{left:560.850000px;}
.x60_c00226{left:563.400000px;}
.xdb_c00226{left:568.050000px;}
.xe6_c00226{left:569.550000px;}
.x134_c00226{left:571.500000px;}
.x10a_c00226{left:573.450000px;}
.x3a_c00226{left:575.700000px;}
.x1a_c00226{left:577.800000px;}
.x10f_c00226{left:579.300000px;}
.xf5_c00226{left:581.100000px;}
.x6f_c00226{left:582.150000px;}
.x121_c00226{left:584.250000px;}
.x52_c00226{left:585.750000px;}
.x2a_c00226{left:588.150000px;}
.x12e_c00226{left:591.600000px;}
.x9a_c00226{left:593.700000px;}
.xd_c00226{left:595.950000px;}
.x1b_c00226{left:597.900000px;}
.xf6_c00226{left:600.150000px;}
.x61_c00226{left:602.250000px;}
.x7e_c00226{left:604.200000px;}
.x11b_c00226{left:606.000000px;}
.x3b_c00226{left:609.900000px;}
.x70_c00226{left:610.950000px;}
.x145_c00226{left:612.750000px;}
.x53_c00226{left:613.800000px;}
.x105_c00226{left:617.550000px;}
.xe_c00226{left:619.650000px;}
.x100_c00226{left:620.700000px;}
.x9b_c00226{left:622.800000px;}
.xa6_c00226{left:624.900000px;}
.xb1_c00226{left:626.700000px;}
.xdc_c00226{left:628.500000px;}
.x13f_c00226{left:633.600000px;}
.xc1_c00226{left:635.700000px;}
.x71_c00226{left:637.650000px;}
.x106_c00226{left:638.850000px;}
.x7f_c00226{left:640.200000px;}
.xf_c00226{left:642.750000px;}
.x2b_c00226{left:644.550000px;}
.x3c_c00226{left:648.000000px;}
.x115_c00226{left:650.250000px;}
.x146_c00226{left:651.750000px;}
.x1c_c00226{left:652.950000px;}
.xdd_c00226{left:654.000000px;}
.xc2_c00226{left:655.800000px;}
.x9c_c00226{left:658.050000px;}
.x54_c00226{left:660.300000px;}
.x8b_c00226{left:663.150000px;}
.x72_c00226{left:667.950000px;}
.x101_c00226{left:669.300000px;}
.x116_c00226{left:670.350000px;}
.xc3_c00226{left:672.300000px;}
.xed_c00226{left:674.550000px;}
.x10b_c00226{left:676.800000px;}
.x80_c00226{left:678.750000px;}
.xf7_c00226{left:681.450000px;}
.x1d_c00226{left:683.850000px;}
.x128_c00226{left:685.050000px;}
.x9d_c00226{left:686.850000px;}
.xd0_c00226{left:688.050000px;}
.x81_c00226{left:689.850000px;}
.xde_c00226{left:691.050000px;}
.x8c_c00226{left:694.050000px;}
.xee_c00226{left:695.100000px;}
.x73_c00226{left:696.450000px;}
.x3d_c00226{left:698.400000px;}
.x62_c00226{left:699.450000px;}
.x110_c00226{left:700.950000px;}
.x2c_c00226{left:705.750000px;}
.x10_c00226{left:709.650000px;}
.x63_c00226{left:711.750000px;}
.xb2_c00226{left:714.900000px;}
.x12c_c00226{left:716.550000px;}
.x1e_c00226{left:717.750000px;}
.x9e_c00226{left:720.000000px;}
.xcb_c00226{left:721.650000px;}
.xef_c00226{left:723.600000px;}
.x102_c00226{left:724.800000px;}
.x8d_c00226{left:726.750000px;}
.x55_c00226{left:728.700000px;}
.x111_c00226{left:730.500000px;}
.x74_c00226{left:732.450000px;}
.xa7_c00226{left:733.950000px;}
.x2d_c00226{left:737.100000px;}
.x12f_c00226{left:738.450000px;}
.x11_c00226{left:740.550000px;}
.x82_c00226{left:742.800000px;}
.x10c_c00226{left:743.850000px;}
.x8e_c00226{left:745.050000px;}
.x75_c00226{left:746.850000px;}
.xcc_c00226{left:749.400000px;}
.xb3_c00226{left:751.650000px;}
.x129_c00226{left:753.000000px;}
.xa8_c00226{left:754.050000px;}
.x1f_c00226{left:755.250000px;}
.x124_c00226{left:757.050000px;}
.xd1_c00226{left:760.800000px;}
.x8f_c00226{left:762.300000px;}
.x64_c00226{left:766.050000px;}
.x107_c00226{left:768.150000px;}
.x117_c00226{left:770.100000px;}
.x20_c00226{left:772.500000px;}
.x10d_c00226{left:774.450000px;}
.x2e_c00226{left:775.950000px;}
.x3e_c00226{left:777.000000px;}
.xa9_c00226{left:780.300000px;}
.xf0_c00226{left:781.500000px;}
.x122_c00226{left:782.550000px;}
.x9f_c00226{left:783.750000px;}
.x65_c00226{left:785.550000px;}
.x2f_c00226{left:787.800000px;}
.x56_c00226{left:791.400000px;}
.xc4_c00226{left:792.450000px;}
.x90_c00226{left:793.650000px;}
.x13b_c00226{left:797.400000px;}
.xa0_c00226{left:801.000000px;}
.x118_c00226{left:802.200000px;}
.x12_c00226{left:804.600000px;}
.xdf_c00226{left:808.050000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws7_c00226{word-spacing:0.000000pt;}
.ws0_c00226{word-spacing:3.418803pt;}
.ws5_c00226{word-spacing:4.821092pt;}
.ws4_c00226{word-spacing:7.581699pt;}
.ws2_c00226{word-spacing:10.849673pt;}
.ws6_c00226{word-spacing:11.428571pt;}
.ws3_c00226{word-spacing:11.975309pt;}
.ws1_c00226{word-spacing:13.266998pt;}
._0_c00226{width:39.365079pt;}
.fs0_c00226{font-size:53.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y2d_c00226{bottom:135.866667pt;}
.y2c_c00226{bottom:153.733333pt;}
.y2b_c00226{bottom:171.333333pt;}
.y2a_c00226{bottom:188.933333pt;}
.y29_c00226{bottom:206.533333pt;}
.y28_c00226{bottom:224.400000pt;}
.y27_c00226{bottom:242.000000pt;}
.y26_c00226{bottom:259.600000pt;}
.y25_c00226{bottom:277.466667pt;}
.y24_c00226{bottom:295.333333pt;}
.y23_c00226{bottom:313.200000pt;}
.y22_c00226{bottom:331.066667pt;}
.y21_c00226{bottom:348.666667pt;}
.y20_c00226{bottom:366.533333pt;}
.y1f_c00226{bottom:384.133333pt;}
.y1e_c00226{bottom:402.000000pt;}
.y1d_c00226{bottom:419.866667pt;}
.y1c_c00226{bottom:437.466667pt;}
.y1b_c00226{bottom:454.533333pt;}
.y1a_c00226{bottom:472.800000pt;}
.y19_c00226{bottom:490.666667pt;}
.y18_c00226{bottom:508.266667pt;}
.y17_c00226{bottom:525.866667pt;}
.y16_c00226{bottom:543.733333pt;}
.y15_c00226{bottom:561.600000pt;}
.y14_c00226{bottom:579.200000pt;}
.y13_c00226{bottom:597.066667pt;}
.y12_c00226{bottom:614.933333pt;}
.y11_c00226{bottom:632.533333pt;}
.y10_c00226{bottom:650.400000pt;}
.yf_c00226{bottom:668.000000pt;}
.ye_c00226{bottom:685.866667pt;}
.yd_c00226{bottom:703.466667pt;}
.yc_c00226{bottom:721.333333pt;}
.yb_c00226{bottom:738.933333pt;}
.ya_c00226{bottom:756.800000pt;}
.y9_c00226{bottom:774.400000pt;}
.y8_c00226{bottom:792.266667pt;}
.y7_c00226{bottom:809.866667pt;}
.y6_c00226{bottom:827.866667pt;}
.y5_c00226{bottom:845.466667pt;}
.y4_c00226{bottom:863.333333pt;}
.y3_c00226{bottom:880.933333pt;}
.y2_c00226{bottom:899.200000pt;}
.y1_c00226{bottom:933.466667pt;}
.h2_c00226{height:53.333333pt;}
.h0_c00226{height:1037.119955pt;}
.h1_c00226{height:1037.333333pt;}
.w0_c00226{width:816.640056pt;}
.w1_c00226{width:816.666667pt;}
.x0_c00226{left:0.000000pt;}
.x135_c00226{left:129.333333pt;}
.xf8_c00226{left:130.533333pt;}
.x30_c00226{left:131.600000pt;}
.x3_c00226{left:132.800000pt;}
.x1_c00226{left:135.333333pt;}
.x125_c00226{left:145.200000pt;}
.x112_c00226{left:146.933333pt;}
.x83_c00226{left:151.200000pt;}
.x3f_c00226{left:152.800000pt;}
.x140_c00226{left:153.866667pt;}
.x119_c00226{left:154.933333pt;}
.xe7_c00226{left:156.133333pt;}
.x12a_c00226{left:157.733333pt;}
.xd7_c00226{left:158.666667pt;}
.x45_c00226{left:159.733333pt;}
.x31_c00226{left:161.733333pt;}
.xf1_c00226{left:163.066667pt;}
.xcd_c00226{left:164.266667pt;}
.x13c_c00226{left:165.466667pt;}
.x13_c00226{left:168.400000pt;}
.xaa_c00226{left:170.000000pt;}
.x66_c00226{left:172.266667pt;}
.x57_c00226{left:173.866667pt;}
.x109_c00226{left:176.133333pt;}
.x76_c00226{left:178.400000pt;}
.x40_c00226{left:179.733333pt;}
.xce_c00226{left:182.533333pt;}
.xb4_c00226{left:183.733333pt;}
.xb8_c00226{left:184.800000pt;}
.x4_c00226{left:185.866667pt;}
.x91_c00226{left:187.466667pt;}
.x46_c00226{left:189.466667pt;}
.x58_c00226{left:191.733333pt;}
.x126_c00226{left:192.933333pt;}
.x32_c00226{left:194.666667pt;}
.xe0_c00226{left:196.000000pt;}
.x11c_c00226{left:196.933333pt;}
.xa1_c00226{left:198.933333pt;}
.x141_c00226{left:200.533333pt;}
.x84_c00226{left:201.466667pt;}
.x41_c00226{left:202.400000pt;}
.xfe_c00226{left:204.133333pt;}
.x136_c00226{left:205.200000pt;}
.x21_c00226{left:208.000000pt;}
.xc5_c00226{left:209.733333pt;}
.x123_c00226{left:210.800000pt;}
.x5_c00226{left:211.733333pt;}
.x33_c00226{left:212.933333pt;}
.x59_c00226{left:214.800000pt;}
.x130_c00226{left:216.666667pt;}
.xb9_c00226{left:218.666667pt;}
.x11d_c00226{left:219.600000pt;}
.x77_c00226{left:221.600000pt;}
.x85_c00226{left:224.533333pt;}
.x14_c00226{left:226.000000pt;}
.xab_c00226{left:227.200000pt;}
.xd8_c00226{left:228.133333pt;}
.x6_c00226{left:229.066667pt;}
.x47_c00226{left:231.733333pt;}
.xe1_c00226{left:233.733333pt;}
.xba_c00226{left:236.000000pt;}
.x34_c00226{left:237.866667pt;}
.xe8_c00226{left:239.333333pt;}
.x5a_c00226{left:241.066667pt;}
.xac_c00226{left:243.866667pt;}
.x48_c00226{left:244.800000pt;}
.x15_c00226{left:245.866667pt;}
.x113_c00226{left:246.800000pt;}
.x67_c00226{left:251.333333pt;}
.xbb_c00226{left:253.866667pt;}
.x49_c00226{left:255.733333pt;}
.x42_c00226{left:256.800000pt;}
.xd2_c00226{left:258.000000pt;}
.x92_c00226{left:259.066667pt;}
.xa2_c00226{left:262.266667pt;}
.xe9_c00226{left:264.000000pt;}
.x86_c00226{left:266.400000pt;}
.x22_c00226{left:268.133333pt;}
.x78_c00226{left:269.600000pt;}
.x7_c00226{left:270.933333pt;}
.x43_c00226{left:271.866667pt;}
.x11e_c00226{left:274.000000pt;}
.xf9_c00226{left:276.266667pt;}
.x127_c00226{left:277.733333pt;}
.x108_c00226{left:279.066667pt;}
.x5b_c00226{left:282.266667pt;}
.xf2_c00226{left:283.333333pt;}
.x35_c00226{left:284.933333pt;}
.x4a_c00226{left:285.866667pt;}
.x142_c00226{left:286.933333pt;}
.xa3_c00226{left:290.800000pt;}
.x10e_c00226{left:291.733333pt;}
.x93_c00226{left:292.666667pt;}
.x44_c00226{left:294.533333pt;}
.x137_c00226{left:296.000000pt;}
.x23_c00226{left:296.933333pt;}
.x68_c00226{left:299.066667pt;}
.x79_c00226{left:300.666667pt;}
.xe2_c00226{left:302.000000pt;}
.x16_c00226{left:303.066667pt;}
.xd9_c00226{left:304.933333pt;}
.x94_c00226{left:308.666667pt;}
.xd3_c00226{left:311.066667pt;}
.x138_c00226{left:313.866667pt;}
.x69_c00226{left:314.800000pt;}
.xea_c00226{left:316.800000pt;}
.x12d_c00226{left:317.866667pt;}
.x5c_c00226{left:320.400000pt;}
.xff_c00226{left:321.600000pt;}
.xc6_c00226{left:322.666667pt;}
.x11a_c00226{left:323.600000pt;}
.x8_c00226{left:324.666667pt;}
.xe3_c00226{left:326.266667pt;}
.x36_c00226{left:327.466667pt;}
.x95_c00226{left:331.066667pt;}
.x4b_c00226{left:334.133333pt;}
.xbc_c00226{left:335.466667pt;}
.xfa_c00226{left:336.400000pt;}
.x139_c00226{left:337.600000pt;}
.x6a_c00226{left:338.533333pt;}
.x131_c00226{left:340.800000pt;}
.xe4_c00226{left:342.000000pt;}
.x13d_c00226{left:343.066667pt;}
.x17_c00226{left:344.400000pt;}
.xad_c00226{left:346.000000pt;}
.x5d_c00226{left:347.866667pt;}
.x87_c00226{left:350.266667pt;}
.xcf_c00226{left:352.133333pt;}
.x7a_c00226{left:353.200000pt;}
.x9_c00226{left:356.400000pt;}
.xeb_c00226{left:359.066667pt;}
.x24_c00226{left:360.000000pt;}
.x143_c00226{left:360.933333pt;}
.x5e_c00226{left:363.600000pt;}
.x37_c00226{left:365.866667pt;}
.x132_c00226{left:368.266667pt;}
.x6b_c00226{left:369.600000pt;}
.x4c_c00226{left:371.200000pt;}
.x7b_c00226{left:372.133333pt;}
.xbd_c00226{left:374.133333pt;}
.x18_c00226{left:376.666667pt;}
.x13a_c00226{left:378.266667pt;}
.xfb_c00226{left:380.533333pt;}
.xb5_c00226{left:382.000000pt;}
.x88_c00226{left:383.866667pt;}
.xd4_c00226{left:386.000000pt;}
.xc7_c00226{left:387.333333pt;}
.x5f_c00226{left:389.866667pt;}
.xa_c00226{left:391.600000pt;}
.x6c_c00226{left:394.266667pt;}
.x144_c00226{left:395.200000pt;}
.x4d_c00226{left:396.533333pt;}
.x2_c00226{left:398.000000pt;}
.x89_c00226{left:401.733333pt;}
.x96_c00226{left:403.733333pt;}
.x11f_c00226{left:404.800000pt;}
.xc8_c00226{left:405.866667pt;}
.x19_c00226{left:408.666667pt;}
.xbe_c00226{left:410.266667pt;}
.x103_c00226{left:412.266667pt;}
.x4e_c00226{left:414.400000pt;}
.xae_c00226{left:416.133333pt;}
.x25_c00226{left:418.933333pt;}
.x97_c00226{left:420.000000pt;}
.x38_c00226{left:423.466667pt;}
.xd5_c00226{left:424.400000pt;}
.x8a_c00226{left:426.666667pt;}
.xf3_c00226{left:428.133333pt;}
.xda_c00226{left:431.600000pt;}
.x114_c00226{left:432.666667pt;}
.xbf_c00226{left:435.200000pt;}
.x26_c00226{left:436.533333pt;}
.xec_c00226{left:438.133333pt;}
.x4f_c00226{left:439.066667pt;}
.xaf_c00226{left:442.400000pt;}
.x120_c00226{left:443.600000pt;}
.xb_c00226{left:445.333333pt;}
.xa4_c00226{left:447.333333pt;}
.x39_c00226{left:448.400000pt;}
.x6d_c00226{left:451.866667pt;}
.x7c_c00226{left:452.800000pt;}
.xf4_c00226{left:454.400000pt;}
.x27_c00226{left:456.000000pt;}
.x12b_c00226{left:457.866667pt;}
.x98_c00226{left:459.066667pt;}
.xd6_c00226{left:460.533333pt;}
.x13e_c00226{left:462.400000pt;}
.xb6_c00226{left:464.266667pt;}
.xa5_c00226{left:465.200000pt;}
.xb0_c00226{left:467.066667pt;}
.xc9_c00226{left:468.000000pt;}
.xfc_c00226{left:469.733333pt;}
.x99_c00226{left:472.133333pt;}
.x28_c00226{left:474.266667pt;}
.x6e_c00226{left:476.533333pt;}
.x133_c00226{left:478.933333pt;}
.x50_c00226{left:480.000000pt;}
.xca_c00226{left:483.733333pt;}
.xc0_c00226{left:484.800000pt;}
.xc_c00226{left:486.266667pt;}
.x7d_c00226{left:487.733333pt;}
.xb7_c00226{left:489.200000pt;}
.xe5_c00226{left:490.933333pt;}
.xfd_c00226{left:493.066667pt;}
.x51_c00226{left:495.333333pt;}
.x104_c00226{left:497.066667pt;}
.x29_c00226{left:498.533333pt;}
.x60_c00226{left:500.800000pt;}
.xdb_c00226{left:504.933333pt;}
.xe6_c00226{left:506.266667pt;}
.x134_c00226{left:508.000000pt;}
.x10a_c00226{left:509.733333pt;}
.x3a_c00226{left:511.733333pt;}
.x1a_c00226{left:513.600000pt;}
.x10f_c00226{left:514.933333pt;}
.xf5_c00226{left:516.533333pt;}
.x6f_c00226{left:517.466667pt;}
.x121_c00226{left:519.333333pt;}
.x52_c00226{left:520.666667pt;}
.x2a_c00226{left:522.800000pt;}
.x12e_c00226{left:525.866667pt;}
.x9a_c00226{left:527.733333pt;}
.xd_c00226{left:529.733333pt;}
.x1b_c00226{left:531.466667pt;}
.xf6_c00226{left:533.466667pt;}
.x61_c00226{left:535.333333pt;}
.x7e_c00226{left:537.066667pt;}
.x11b_c00226{left:538.666667pt;}
.x3b_c00226{left:542.133333pt;}
.x70_c00226{left:543.066667pt;}
.x145_c00226{left:544.666667pt;}
.x53_c00226{left:545.600000pt;}
.x105_c00226{left:548.933333pt;}
.xe_c00226{left:550.800000pt;}
.x100_c00226{left:551.733333pt;}
.x9b_c00226{left:553.600000pt;}
.xa6_c00226{left:555.466667pt;}
.xb1_c00226{left:557.066667pt;}
.xdc_c00226{left:558.666667pt;}
.x13f_c00226{left:563.200000pt;}
.xc1_c00226{left:565.066667pt;}
.x71_c00226{left:566.800000pt;}
.x106_c00226{left:567.866667pt;}
.x7f_c00226{left:569.066667pt;}
.xf_c00226{left:571.333333pt;}
.x2b_c00226{left:572.933333pt;}
.x3c_c00226{left:576.000000pt;}
.x115_c00226{left:578.000000pt;}
.x146_c00226{left:579.333333pt;}
.x1c_c00226{left:580.400000pt;}
.xdd_c00226{left:581.333333pt;}
.xc2_c00226{left:582.933333pt;}
.x9c_c00226{left:584.933333pt;}
.x54_c00226{left:586.933333pt;}
.x8b_c00226{left:589.466667pt;}
.x72_c00226{left:593.733333pt;}
.x101_c00226{left:594.933333pt;}
.x116_c00226{left:595.866667pt;}
.xc3_c00226{left:597.600000pt;}
.xed_c00226{left:599.600000pt;}
.x10b_c00226{left:601.600000pt;}
.x80_c00226{left:603.333333pt;}
.xf7_c00226{left:605.733333pt;}
.x1d_c00226{left:607.866667pt;}
.x128_c00226{left:608.933333pt;}
.x9d_c00226{left:610.533333pt;}
.xd0_c00226{left:611.600000pt;}
.x81_c00226{left:613.200000pt;}
.xde_c00226{left:614.266667pt;}
.x8c_c00226{left:616.933333pt;}
.xee_c00226{left:617.866667pt;}
.x73_c00226{left:619.066667pt;}
.x3d_c00226{left:620.800000pt;}
.x62_c00226{left:621.733333pt;}
.x110_c00226{left:623.066667pt;}
.x2c_c00226{left:627.333333pt;}
.x10_c00226{left:630.800000pt;}
.x63_c00226{left:632.666667pt;}
.xb2_c00226{left:635.466667pt;}
.x12c_c00226{left:636.933333pt;}
.x1e_c00226{left:638.000000pt;}
.x9e_c00226{left:640.000000pt;}
.xcb_c00226{left:641.466667pt;}
.xef_c00226{left:643.200000pt;}
.x102_c00226{left:644.266667pt;}
.x8d_c00226{left:646.000000pt;}
.x55_c00226{left:647.733333pt;}
.x111_c00226{left:649.333333pt;}
.x74_c00226{left:651.066667pt;}
.xa7_c00226{left:652.400000pt;}
.x2d_c00226{left:655.200000pt;}
.x12f_c00226{left:656.400000pt;}
.x11_c00226{left:658.266667pt;}
.x82_c00226{left:660.266667pt;}
.x10c_c00226{left:661.200000pt;}
.x8e_c00226{left:662.266667pt;}
.x75_c00226{left:663.866667pt;}
.xcc_c00226{left:666.133333pt;}
.xb3_c00226{left:668.133333pt;}
.x129_c00226{left:669.333333pt;}
.xa8_c00226{left:670.266667pt;}
.x1f_c00226{left:671.333333pt;}
.x124_c00226{left:672.933333pt;}
.xd1_c00226{left:676.266667pt;}
.x8f_c00226{left:677.600000pt;}
.x64_c00226{left:680.933333pt;}
.x107_c00226{left:682.800000pt;}
.x117_c00226{left:684.533333pt;}
.x20_c00226{left:686.666667pt;}
.x10d_c00226{left:688.400000pt;}
.x2e_c00226{left:689.733333pt;}
.x3e_c00226{left:690.666667pt;}
.xa9_c00226{left:693.600000pt;}
.xf0_c00226{left:694.666667pt;}
.x122_c00226{left:695.600000pt;}
.x9f_c00226{left:696.666667pt;}
.x65_c00226{left:698.266667pt;}
.x2f_c00226{left:700.266667pt;}
.x56_c00226{left:703.466667pt;}
.xc4_c00226{left:704.400000pt;}
.x90_c00226{left:705.466667pt;}
.x13b_c00226{left:708.800000pt;}
.xa0_c00226{left:712.000000pt;}
.x118_c00226{left:713.066667pt;}
.x12_c00226{left:715.200000pt;}
.xdf_c00226{left:718.266667pt;}
}





/* 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_c00227 {
    display:none;
  }
  .loading-indicator_c00227.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00227 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_c00227 { 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_c00227" -> "#page-container .classname_c00227")
 */
.pf_c00227 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00227 { /* 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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00227 { /* 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_c00227 { /* 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_c00227 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00227 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00227 {overflow:visible;}
  }
}
.c_c00227 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00227 { /* 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_c00227:after { /* webkit #35443 */
  content: '';
}
.t_c00227:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00227 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 */
}
.__c00227 { /* 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_c00227 { /* info for Javascript */
  display:none;
}
.l_c00227 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00227 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00227 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00227: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_c00227 {
    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_c00227.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00227.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_c00227 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00227{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00227;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.000000;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;}
.m35_c00227{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00227{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00227{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m52_c00227{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m53_c00227{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m98_c00227{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00227{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m68_c00227{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00227{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00227{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m85_c00227{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00227{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00227{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m29_c00227{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m63_c00227{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00227{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00227{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m64_c00227{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00227{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00227{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00227{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m90_c00227{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m76_c00227{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00227{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00227{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00227{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m89_c00227{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m42_c00227{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m78_c00227{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00227{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m20_c00227{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m61_c00227{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m12_c00227{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00227{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m88_c00227{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m44_c00227{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00227{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00227{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00227{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m67_c00227{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00227{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m79_c00227{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m59_c00227{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m92_c00227{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m91_c00227{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00227{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00227{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00227{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m41_c00227{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.md_c00227{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00227{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m75_c00227{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00227{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00227{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00227{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00227{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00227{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m28_c00227{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8_c00227{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m81_c00227{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00227{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00227{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00227{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00227{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m45_c00227{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m17_c00227{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m69_c00227{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mf_c00227{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6_c00227{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00227{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00227{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00227{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc_c00227{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m62_c00227{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m77_c00227{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00227{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m58_c00227{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma_c00227{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m21_c00227{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00227{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m26_c00227{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m27_c00227{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m43_c00227{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m60_c00227{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m15_c00227{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00227{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00227{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00227{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00227{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00227{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00227{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m86_c00227{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00227{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m97_c00227{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00227{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m18_c00227{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m23_c00227{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m73_c00227{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m37_c00227{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00227{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00227{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m31_c00227{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00227{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10_c00227{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m80_c00227{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m16_c00227{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00227{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m65_c00227{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m47_c00227{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00227{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00227{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00227{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.me_c00227{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00227{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00227{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00227{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m30_c00227{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00227{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00227{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00227{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00227{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m34_c00227{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m83_c00227{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00227{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);}
.m40_c00227{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00227{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m36_c00227{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m25_c00227{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m50_c00227{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00227{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m13_c00227{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m51_c00227{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m66_c00227{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5_c00227{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m72_c00227{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m74_c00227{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00227{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00227{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m84_c00227{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m57_c00227{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m96_c00227{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m24_c00227{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m33_c00227{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4_c00227{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00227{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00227{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m46_c00227{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m71_c00227{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3_c00227{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m19_c00227{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m38_c00227{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00227{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m55_c00227{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m82_c00227{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00227{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m48_c00227{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m39_c00227{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00227{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00227{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m87_c00227{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m93_c00227{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00227{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m22_c00227{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00227{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m1_c00227{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00227{vertical-align:0.000000px;}
.ls0_c00227{letter-spacing:0.000000px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{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__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-13.513514px;}
.ws5_c00227{word-spacing:-7.500000px;}
.ws6_c00227{word-spacing:-0.803571px;}
.ws8_c00227{word-spacing:0.000000px;}
.ws3_c00227{word-spacing:3.125000px;}
.ws2_c00227{word-spacing:5.138889px;}
.ws7_c00227{word-spacing:5.277778px;}
.ws4_c00227{word-spacing:8.333333px;}
.ws1_c00227{word-spacing:20.000000px;}
.fc0_c00227{color:transparent;}
.fs0_c00227{font-size:60.000000px;}
.y0_c00227{bottom:0.000000px;}
.y2a_c00227{bottom:158.100000px;}
.y29_c00227{bottom:174.600000px;}
.y28_c00227{bottom:222.300000px;}
.y27_c00227{bottom:242.400000px;}
.y26_c00227{bottom:262.500000px;}
.y25_c00227{bottom:282.000000px;}
.y24_c00227{bottom:302.100000px;}
.y23_c00227{bottom:321.900000px;}
.y22_c00227{bottom:341.250000px;}
.y21_c00227{bottom:361.050000px;}
.y20_c00227{bottom:381.600000px;}
.y1f_c00227{bottom:401.400000px;}
.y1e_c00227{bottom:421.200000px;}
.y1d_c00227{bottom:441.300000px;}
.y1c_c00227{bottom:461.100000px;}
.y1b_c00227{bottom:480.900000px;}
.y1a_c00227{bottom:520.950000px;}
.y19_c00227{bottom:540.750000px;}
.y18_c00227{bottom:560.550000px;}
.y17_c00227{bottom:580.650000px;}
.y16_c00227{bottom:600.450000px;}
.y15_c00227{bottom:620.400000px;}
.y14_c00227{bottom:640.500000px;}
.y13_c00227{bottom:660.300000px;}
.y12_c00227{bottom:680.100000px;}
.y11_c00227{bottom:699.900000px;}
.y10_c00227{bottom:719.700000px;}
.yf_c00227{bottom:739.800000px;}
.ye_c00227{bottom:760.050000px;}
.yd_c00227{bottom:780.150000px;}
.yc_c00227{bottom:799.950000px;}
.yb_c00227{bottom:819.750000px;}
.ya_c00227{bottom:839.850000px;}
.y9_c00227{bottom:859.950000px;}
.y8_c00227{bottom:879.750000px;}
.y7_c00227{bottom:899.850000px;}
.y6_c00227{bottom:919.950000px;}
.y5_c00227{bottom:939.750000px;}
.y4_c00227{bottom:959.850000px;}
.y3_c00227{bottom:979.950000px;}
.y2_c00227{bottom:999.750000px;}
.y1_c00227{bottom:1037.550000px;}
.h2_c00227{height:60.000000px;}
.h0_c00227{height:1166.759949px;}
.h1_c00227{height:1167.000000px;}
.w0_c00227{width:918.720063px;}
.w1_c00227{width:918.750000px;}
.x0_c00227{left:0.000000px;}
.xce_c00227{left:99.150000px;}
.xa1_c00227{left:100.650000px;}
.x75_c00227{left:101.850000px;}
.x5_c00227{left:102.900000px;}
.x119_c00227{left:117.000000px;}
.x11f_c00227{left:118.950000px;}
.xd4_c00227{left:120.150000px;}
.xad_c00227{left:121.350000px;}
.x10d_c00227{left:127.050000px;}
.x43_c00227{left:129.450000px;}
.xc6_c00227{left:131.250000px;}
.x97_c00227{left:132.450000px;}
.x58_c00227{left:134.550000px;}
.x120_c00227{left:136.200000px;}
.x6_c00227{left:140.700000px;}
.x24_c00227{left:142.650000px;}
.x33_c00227{left:144.450000px;}
.x16_c00227{left:147.750000px;}
.x113_c00227{left:150.150000px;}
.x7d_c00227{left:153.450000px;}
.x108_c00227{left:156.150000px;}
.x85_c00227{left:157.800000px;}
.x7_c00227{left:160.500000px;}
.xe2_c00227{left:161.850000px;}
.xbb_c00227{left:163.350000px;}
.x98_c00227{left:164.850000px;}
.xa2_c00227{left:166.500000px;}
.xb6_c00227{left:168.450000px;}
.x63_c00227{left:170.100000px;}
.x121_c00227{left:171.900000px;}
.x25_c00227{left:174.000000px;}
.x59_c00227{left:175.950000px;}
.x17_c00227{left:177.600000px;}
.xdc_c00227{left:179.700000px;}
.x4d_c00227{left:182.400000px;}
.x76_c00227{left:183.600000px;}
.x34_c00227{left:185.850000px;}
.xa3_c00227{left:187.050000px;}
.x26_c00227{left:188.400000px;}
.xe8_c00227{left:189.450000px;}
.xc3_c00227{left:192.600000px;}
.x122_c00227{left:195.000000px;}
.xe3_c00227{left:196.350000px;}
.x44_c00227{left:200.400000px;}
.x11a_c00227{left:201.600000px;}
.x90_c00227{left:202.800000px;}
.x86_c00227{left:204.600000px;}
.xfa_c00227{left:206.250000px;}
.xc4_c00227{left:209.550000px;}
.x8_c00227{left:210.600000px;}
.x4e_c00227{left:213.300000px;}
.x18_c00227{left:214.350000px;}
.xe9_c00227{left:219.000000px;}
.xfb_c00227{left:220.800000px;}
.x35_c00227{left:223.350000px;}
.xa4_c00227{left:226.950000px;}
.x64_c00227{left:230.250000px;}
.x103_c00227{left:231.450000px;}
.xc2_c00227{left:232.950000px;}
.x9_c00227{left:234.750000px;}
.x45_c00227{left:240.300000px;}
.x19_c00227{left:242.100000px;}
.x6d_c00227{left:244.200000px;}
.x104_c00227{left:246.900000px;}
.x27_c00227{left:249.600000px;}
.x65_c00227{left:250.800000px;}
.x5a_c00227{left:252.000000px;}
.x36_c00227{left:253.650000px;}
.xd5_c00227{left:256.650000px;}
.xa5_c00227{left:257.850000px;}
.xcf_c00227{left:259.050000px;}
.xdd_c00227{left:261.450000px;}
.xae_c00227{left:267.450000px;}
.x46_c00227{left:269.400000px;}
.x87_c00227{left:270.900000px;}
.x4f_c00227{left:274.200000px;}
.xbc_c00227{left:275.550000px;}
.x99_c00227{left:276.750000px;}
.xe4_c00227{left:277.950000px;}
.x28_c00227{left:279.450000px;}
.xa_c00227{left:283.050000px;}
.x1a_c00227{left:285.000000px;}
.x5b_c00227{left:287.700000px;}
.x50_c00227{left:290.400000px;}
.xc5_c00227{left:292.350000px;}
.xfc_c00227{left:293.850000px;}
.xb5_c00227{left:295.200000px;}
.xe5_c00227{left:298.500000px;}
.xb_c00227{left:300.000000px;}
.x37_c00227{left:302.250000px;}
.x1b_c00227{left:306.900000px;}
.x100_c00227{left:308.250000px;}
.xd9_c00227{left:311.100000px;}
.x47_c00227{left:313.350000px;}
.x12a_c00227{left:314.550000px;}
.x29_c00227{left:315.750000px;}
.xaf_c00227{left:319.650000px;}
.xc7_c00227{left:322.650000px;}
.xc_c00227{left:324.450000px;}
.xea_c00227{left:326.700000px;}
.x51_c00227{left:329.700000px;}
.x11b_c00227{left:333.450000px;}
.xde_c00227{left:334.500000px;}
.x2a_c00227{left:336.300000px;}
.xbd_c00227{left:338.250000px;}
.xc8_c00227{left:340.350000px;}
.x88_c00227{left:342.450000px;}
.x1c_c00227{left:345.000000px;}
.xf1_c00227{left:346.500000px;}
.x6e_c00227{left:347.550000px;}
.x38_c00227{left:350.100000px;}
.x7e_c00227{left:351.750000px;}
.xb7_c00227{left:353.250000px;}
.xa6_c00227{left:355.800000px;}
.x105_c00227{left:357.750000px;}
.x77_c00227{left:358.800000px;}
.xeb_c00227{left:359.850000px;}
.xbe_c00227{left:361.650000px;}
.x5c_c00227{left:363.300000px;}
.x66_c00227{left:364.500000px;}
.x6f_c00227{left:365.850000px;}
.x114_c00227{left:367.500000px;}
.x7f_c00227{left:369.000000px;}
.x1_c00227{left:372.600000px;}
.xd0_c00227{left:374.250000px;}
.x101_c00227{left:376.950000px;}
.x9a_c00227{left:381.600000px;}
.xd_c00227{left:383.100000px;}
.x48_c00227{left:384.600000px;}
.x39_c00227{left:386.400000px;}
.x52_c00227{left:388.050000px;}
.x67_c00227{left:389.400000px;}
.x80_c00227{left:391.350000px;}
.xec_c00227{left:394.350000px;}
.x11c_c00227{left:398.250000px;}
.x1d_c00227{left:400.050000px;}
.x91_c00227{left:401.250000px;}
.xf6_c00227{left:402.450000px;}
.x115_c00227{left:404.250000px;}
.xb0_c00227{left:406.050000px;}
.x10e_c00227{left:408.600000px;}
.x5d_c00227{left:414.450000px;}
.x109_c00227{left:420.000000px;}
.x3a_c00227{left:421.650000px;}
.xda_c00227{left:422.850000px;}
.xc9_c00227{left:425.250000px;}
.x2_c00227{left:426.600000px;}
.x78_c00227{left:427.950000px;}
.xd6_c00227{left:429.000000px;}
.xe_c00227{left:430.350000px;}
.xfd_c00227{left:431.400000px;}
.xbf_c00227{left:432.600000px;}
.xa7_c00227{left:436.050000px;}
.x2b_c00227{left:438.600000px;}
.x123_c00227{left:440.250000px;}
.x1e_c00227{left:441.450000px;}
.xca_c00227{left:442.500000px;}
.x3_c00227{left:443.850000px;}
.x92_c00227{left:445.500000px;}
.x53_c00227{left:447.750000px;}
.x68_c00227{left:449.850000px;}
.x89_c00227{left:451.950000px;}
.x10a_c00227{left:455.250000px;}
.xdf_c00227{left:457.350000px;}
.x3b_c00227{left:460.500000px;}
.x79_c00227{left:462.450000px;}
.x9b_c00227{left:466.500000px;}
.xa8_c00227{left:468.150000px;}
.x102_c00227{left:470.550000px;}
.x124_c00227{left:472.950000px;}
.x1f_c00227{left:474.900000px;}
.x5e_c00227{left:476.100000px;}
.x54_c00227{left:477.300000px;}
.x2c_c00227{left:478.950000px;}
.xf_c00227{left:481.050000px;}
.x10b_c00227{left:483.000000px;}
.xb8_c00227{left:488.250000px;}
.xf2_c00227{left:489.450000px;}
.xcb_c00227{left:490.650000px;}
.x125_c00227{left:492.000000px;}
.x2d_c00227{left:493.350000px;}
.xb1_c00227{left:495.300000px;}
.x128_c00227{left:496.350000px;}
.x11d_c00227{left:498.000000px;}
.x3c_c00227{left:499.350000px;}
.x9c_c00227{left:501.750000px;}
.x69_c00227{left:503.550000px;}
.x106_c00227{left:506.100000px;}
.x70_c00227{left:511.050000px;}
.x10c_c00227{left:512.100000px;}
.x49_c00227{left:513.150000px;}
.x5f_c00227{left:514.200000px;}
.xf3_c00227{left:516.150000px;}
.x9d_c00227{left:518.700000px;}
.xe6_c00227{left:521.550000px;}
.x10_c00227{left:523.950000px;}
.x93_c00227{left:525.750000px;}
.xb9_c00227{left:526.800000px;}
.xe0_c00227{left:528.600000px;}
.x107_c00227{left:532.050000px;}
.x129_c00227{left:533.400000px;}
.x10f_c00227{left:536.100000px;}
.x55_c00227{left:538.800000px;}
.xcc_c00227{left:542.100000px;}
.x4a_c00227{left:544.800000px;}
.x11_c00227{left:547.050000px;}
.x2e_c00227{left:548.850000px;}
.x8a_c00227{left:550.200000px;}
.xf7_c00227{left:552.900000px;}
.xdb_c00227{left:553.950000px;}
.xd7_c00227{left:555.750000px;}
.x126_c00227{left:557.100000px;}
.x116_c00227{left:561.150000px;}
.xd1_c00227{left:562.500000px;}
.x2f_c00227{left:566.100000px;}
.x20_c00227{left:568.500000px;}
.xb2_c00227{left:569.850000px;}
.x3d_c00227{left:571.350000px;}
.x4b_c00227{left:572.550000px;}
.x8b_c00227{left:573.600000px;}
.x60_c00227{left:575.100000px;}
.x6a_c00227{left:576.600000px;}
.x117_c00227{left:578.850000px;}
.x94_c00227{left:580.500000px;}
.xed_c00227{left:582.600000px;}
.x71_c00227{left:584.400000px;}
.xd2_c00227{left:588.450000px;}
.x7a_c00227{left:589.650000px;}
.x3e_c00227{left:591.450000px;}
.x81_c00227{left:592.800000px;}
.x12_c00227{left:594.150000px;}
.xa9_c00227{left:595.950000px;}
.xe1_c00227{left:597.300000px;}
.x8c_c00227{left:599.100000px;}
.x95_c00227{left:600.300000px;}
.xf8_c00227{left:605.400000px;}
.x61_c00227{left:613.200000px;}
.x72_c00227{left:615.300000px;}
.x3f_c00227{left:619.200000px;}
.x21_c00227{left:621.000000px;}
.xba_c00227{left:624.750000px;}
.x13_c00227{left:625.800000px;}
.xfe_c00227{left:630.450000px;}
.x7b_c00227{left:632.850000px;}
.xff_c00227{left:634.050000px;}
.xc0_c00227{left:637.650000px;}
.xf4_c00227{left:639.600000px;}
.xee_c00227{left:640.650000px;}
.x9e_c00227{left:643.200000px;}
.x6b_c00227{left:649.050000px;}
.x73_c00227{left:650.550000px;}
.x127_c00227{left:652.200000px;}
.xd3_c00227{left:653.250000px;}
.xb3_c00227{left:656.700000px;}
.x22_c00227{left:658.500000px;}
.xaa_c00227{left:661.050000px;}
.x110_c00227{left:662.100000px;}
.x4c_c00227{left:664.800000px;}
.x82_c00227{left:668.400000px;}
.x8d_c00227{left:670.050000px;}
.x56_c00227{left:672.300000px;}
.x30_c00227{left:673.350000px;}
.x96_c00227{left:675.450000px;}
.xef_c00227{left:677.400000px;}
.x40_c00227{left:680.100000px;}
.xcd_c00227{left:682.050000px;}
.x14_c00227{left:684.150000px;}
.x11e_c00227{left:685.800000px;}
.x23_c00227{left:687.300000px;}
.x8e_c00227{left:689.550000px;}
.xc1_c00227{left:691.950000px;}
.x31_c00227{left:695.700000px;}
.x74_c00227{left:697.650000px;}
.x83_c00227{left:699.300000px;}
.x7c_c00227{left:700.500000px;}
.x9f_c00227{left:704.700000px;}
.x57_c00227{left:708.000000px;}
.x62_c00227{left:709.650000px;}
.xab_c00227{left:711.450000px;}
.x41_c00227{left:714.000000px;}
.x15_c00227{left:716.550000px;}
.x8f_c00227{left:718.350000px;}
.x118_c00227{left:719.700000px;}
.xf9_c00227{left:721.050000px;}
.xa0_c00227{left:722.700000px;}
.x6c_c00227{left:723.900000px;}
.x84_c00227{left:729.600000px;}
.x42_c00227{left:730.950000px;}
.x111_c00227{left:734.700000px;}
.xe7_c00227{left:736.800000px;}
.xf5_c00227{left:739.650000px;}
.x32_c00227{left:742.800000px;}
.x4_c00227{left:745.500000px;}
.xac_c00227{left:749.250000px;}
.x112_c00227{left:752.400000px;}
.xf0_c00227{left:755.100000px;}
.xb4_c00227{left:757.500000px;}
.xd8_c00227{left:760.800000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:-12.012012pt;}
.ws5_c00227{word-spacing:-6.666667pt;}
.ws6_c00227{word-spacing:-0.714286pt;}
.ws8_c00227{word-spacing:0.000000pt;}
.ws3_c00227{word-spacing:2.777778pt;}
.ws2_c00227{word-spacing:4.567901pt;}
.ws7_c00227{word-spacing:4.691358pt;}
.ws4_c00227{word-spacing:7.407407pt;}
.ws1_c00227{word-spacing:17.777778pt;}
.fs0_c00227{font-size:53.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y2a_c00227{bottom:140.533333pt;}
.y29_c00227{bottom:155.200000pt;}
.y28_c00227{bottom:197.600000pt;}
.y27_c00227{bottom:215.466667pt;}
.y26_c00227{bottom:233.333333pt;}
.y25_c00227{bottom:250.666667pt;}
.y24_c00227{bottom:268.533333pt;}
.y23_c00227{bottom:286.133333pt;}
.y22_c00227{bottom:303.333333pt;}
.y21_c00227{bottom:320.933333pt;}
.y20_c00227{bottom:339.200000pt;}
.y1f_c00227{bottom:356.800000pt;}
.y1e_c00227{bottom:374.400000pt;}
.y1d_c00227{bottom:392.266667pt;}
.y1c_c00227{bottom:409.866667pt;}
.y1b_c00227{bottom:427.466667pt;}
.y1a_c00227{bottom:463.066667pt;}
.y19_c00227{bottom:480.666667pt;}
.y18_c00227{bottom:498.266667pt;}
.y17_c00227{bottom:516.133333pt;}
.y16_c00227{bottom:533.733333pt;}
.y15_c00227{bottom:551.466667pt;}
.y14_c00227{bottom:569.333333pt;}
.y13_c00227{bottom:586.933333pt;}
.y12_c00227{bottom:604.533333pt;}
.y11_c00227{bottom:622.133333pt;}
.y10_c00227{bottom:639.733333pt;}
.yf_c00227{bottom:657.600000pt;}
.ye_c00227{bottom:675.600000pt;}
.yd_c00227{bottom:693.466667pt;}
.yc_c00227{bottom:711.066667pt;}
.yb_c00227{bottom:728.666667pt;}
.ya_c00227{bottom:746.533333pt;}
.y9_c00227{bottom:764.400000pt;}
.y8_c00227{bottom:782.000000pt;}
.y7_c00227{bottom:799.866667pt;}
.y6_c00227{bottom:817.733333pt;}
.y5_c00227{bottom:835.333333pt;}
.y4_c00227{bottom:853.200000pt;}
.y3_c00227{bottom:871.066667pt;}
.y2_c00227{bottom:888.666667pt;}
.y1_c00227{bottom:922.266667pt;}
.h2_c00227{height:53.333333pt;}
.h0_c00227{height:1037.119955pt;}
.h1_c00227{height:1037.333333pt;}
.w0_c00227{width:816.640056pt;}
.w1_c00227{width:816.666667pt;}
.x0_c00227{left:0.000000pt;}
.xce_c00227{left:88.133333pt;}
.xa1_c00227{left:89.466667pt;}
.x75_c00227{left:90.533333pt;}
.x5_c00227{left:91.466667pt;}
.x119_c00227{left:104.000000pt;}
.x11f_c00227{left:105.733333pt;}
.xd4_c00227{left:106.800000pt;}
.xad_c00227{left:107.866667pt;}
.x10d_c00227{left:112.933333pt;}
.x43_c00227{left:115.066667pt;}
.xc6_c00227{left:116.666667pt;}
.x97_c00227{left:117.733333pt;}
.x58_c00227{left:119.600000pt;}
.x120_c00227{left:121.066667pt;}
.x6_c00227{left:125.066667pt;}
.x24_c00227{left:126.800000pt;}
.x33_c00227{left:128.400000pt;}
.x16_c00227{left:131.333333pt;}
.x113_c00227{left:133.466667pt;}
.x7d_c00227{left:136.400000pt;}
.x108_c00227{left:138.800000pt;}
.x85_c00227{left:140.266667pt;}
.x7_c00227{left:142.666667pt;}
.xe2_c00227{left:143.866667pt;}
.xbb_c00227{left:145.200000pt;}
.x98_c00227{left:146.533333pt;}
.xa2_c00227{left:148.000000pt;}
.xb6_c00227{left:149.733333pt;}
.x63_c00227{left:151.200000pt;}
.x121_c00227{left:152.800000pt;}
.x25_c00227{left:154.666667pt;}
.x59_c00227{left:156.400000pt;}
.x17_c00227{left:157.866667pt;}
.xdc_c00227{left:159.733333pt;}
.x4d_c00227{left:162.133333pt;}
.x76_c00227{left:163.200000pt;}
.x34_c00227{left:165.200000pt;}
.xa3_c00227{left:166.266667pt;}
.x26_c00227{left:167.466667pt;}
.xe8_c00227{left:168.400000pt;}
.xc3_c00227{left:171.200000pt;}
.x122_c00227{left:173.333333pt;}
.xe3_c00227{left:174.533333pt;}
.x44_c00227{left:178.133333pt;}
.x11a_c00227{left:179.200000pt;}
.x90_c00227{left:180.266667pt;}
.x86_c00227{left:181.866667pt;}
.xfa_c00227{left:183.333333pt;}
.xc4_c00227{left:186.266667pt;}
.x8_c00227{left:187.200000pt;}
.x4e_c00227{left:189.600000pt;}
.x18_c00227{left:190.533333pt;}
.xe9_c00227{left:194.666667pt;}
.xfb_c00227{left:196.266667pt;}
.x35_c00227{left:198.533333pt;}
.xa4_c00227{left:201.733333pt;}
.x64_c00227{left:204.666667pt;}
.x103_c00227{left:205.733333pt;}
.xc2_c00227{left:207.066667pt;}
.x9_c00227{left:208.666667pt;}
.x45_c00227{left:213.600000pt;}
.x19_c00227{left:215.200000pt;}
.x6d_c00227{left:217.066667pt;}
.x104_c00227{left:219.466667pt;}
.x27_c00227{left:221.866667pt;}
.x65_c00227{left:222.933333pt;}
.x5a_c00227{left:224.000000pt;}
.x36_c00227{left:225.466667pt;}
.xd5_c00227{left:228.133333pt;}
.xa5_c00227{left:229.200000pt;}
.xcf_c00227{left:230.266667pt;}
.xdd_c00227{left:232.400000pt;}
.xae_c00227{left:237.733333pt;}
.x46_c00227{left:239.466667pt;}
.x87_c00227{left:240.800000pt;}
.x4f_c00227{left:243.733333pt;}
.xbc_c00227{left:244.933333pt;}
.x99_c00227{left:246.000000pt;}
.xe4_c00227{left:247.066667pt;}
.x28_c00227{left:248.400000pt;}
.xa_c00227{left:251.600000pt;}
.x1a_c00227{left:253.333333pt;}
.x5b_c00227{left:255.733333pt;}
.x50_c00227{left:258.133333pt;}
.xc5_c00227{left:259.866667pt;}
.xfc_c00227{left:261.200000pt;}
.xb5_c00227{left:262.400000pt;}
.xe5_c00227{left:265.333333pt;}
.xb_c00227{left:266.666667pt;}
.x37_c00227{left:268.666667pt;}
.x1b_c00227{left:272.800000pt;}
.x100_c00227{left:274.000000pt;}
.xd9_c00227{left:276.533333pt;}
.x47_c00227{left:278.533333pt;}
.x12a_c00227{left:279.600000pt;}
.x29_c00227{left:280.666667pt;}
.xaf_c00227{left:284.133333pt;}
.xc7_c00227{left:286.800000pt;}
.xc_c00227{left:288.400000pt;}
.xea_c00227{left:290.400000pt;}
.x51_c00227{left:293.066667pt;}
.x11b_c00227{left:296.400000pt;}
.xde_c00227{left:297.333333pt;}
.x2a_c00227{left:298.933333pt;}
.xbd_c00227{left:300.666667pt;}
.xc8_c00227{left:302.533333pt;}
.x88_c00227{left:304.400000pt;}
.x1c_c00227{left:306.666667pt;}
.xf1_c00227{left:308.000000pt;}
.x6e_c00227{left:308.933333pt;}
.x38_c00227{left:311.200000pt;}
.x7e_c00227{left:312.666667pt;}
.xb7_c00227{left:314.000000pt;}
.xa6_c00227{left:316.266667pt;}
.x105_c00227{left:318.000000pt;}
.x77_c00227{left:318.933333pt;}
.xeb_c00227{left:319.866667pt;}
.xbe_c00227{left:321.466667pt;}
.x5c_c00227{left:322.933333pt;}
.x66_c00227{left:324.000000pt;}
.x6f_c00227{left:325.200000pt;}
.x114_c00227{left:326.666667pt;}
.x7f_c00227{left:328.000000pt;}
.x1_c00227{left:331.200000pt;}
.xd0_c00227{left:332.666667pt;}
.x101_c00227{left:335.066667pt;}
.x9a_c00227{left:339.200000pt;}
.xd_c00227{left:340.533333pt;}
.x48_c00227{left:341.866667pt;}
.x39_c00227{left:343.466667pt;}
.x52_c00227{left:344.933333pt;}
.x67_c00227{left:346.133333pt;}
.x80_c00227{left:347.866667pt;}
.xec_c00227{left:350.533333pt;}
.x11c_c00227{left:354.000000pt;}
.x1d_c00227{left:355.600000pt;}
.x91_c00227{left:356.666667pt;}
.xf6_c00227{left:357.733333pt;}
.x115_c00227{left:359.333333pt;}
.xb0_c00227{left:360.933333pt;}
.x10e_c00227{left:363.200000pt;}
.x5d_c00227{left:368.400000pt;}
.x109_c00227{left:373.333333pt;}
.x3a_c00227{left:374.800000pt;}
.xda_c00227{left:375.866667pt;}
.xc9_c00227{left:378.000000pt;}
.x2_c00227{left:379.200000pt;}
.x78_c00227{left:380.400000pt;}
.xd6_c00227{left:381.333333pt;}
.xe_c00227{left:382.533333pt;}
.xfd_c00227{left:383.466667pt;}
.xbf_c00227{left:384.533333pt;}
.xa7_c00227{left:387.600000pt;}
.x2b_c00227{left:389.866667pt;}
.x123_c00227{left:391.333333pt;}
.x1e_c00227{left:392.400000pt;}
.xca_c00227{left:393.333333pt;}
.x3_c00227{left:394.533333pt;}
.x92_c00227{left:396.000000pt;}
.x53_c00227{left:398.000000pt;}
.x68_c00227{left:399.866667pt;}
.x89_c00227{left:401.733333pt;}
.x10a_c00227{left:404.666667pt;}
.xdf_c00227{left:406.533333pt;}
.x3b_c00227{left:409.333333pt;}
.x79_c00227{left:411.066667pt;}
.x9b_c00227{left:414.666667pt;}
.xa8_c00227{left:416.133333pt;}
.x102_c00227{left:418.266667pt;}
.x124_c00227{left:420.400000pt;}
.x1f_c00227{left:422.133333pt;}
.x5e_c00227{left:423.200000pt;}
.x54_c00227{left:424.266667pt;}
.x2c_c00227{left:425.733333pt;}
.xf_c00227{left:427.600000pt;}
.x10b_c00227{left:429.333333pt;}
.xb8_c00227{left:434.000000pt;}
.xf2_c00227{left:435.066667pt;}
.xcb_c00227{left:436.133333pt;}
.x125_c00227{left:437.333333pt;}
.x2d_c00227{left:438.533333pt;}
.xb1_c00227{left:440.266667pt;}
.x128_c00227{left:441.200000pt;}
.x11d_c00227{left:442.666667pt;}
.x3c_c00227{left:443.866667pt;}
.x9c_c00227{left:446.000000pt;}
.x69_c00227{left:447.600000pt;}
.x106_c00227{left:449.866667pt;}
.x70_c00227{left:454.266667pt;}
.x10c_c00227{left:455.200000pt;}
.x49_c00227{left:456.133333pt;}
.x5f_c00227{left:457.066667pt;}
.xf3_c00227{left:458.800000pt;}
.x9d_c00227{left:461.066667pt;}
.xe6_c00227{left:463.600000pt;}
.x10_c00227{left:465.733333pt;}
.x93_c00227{left:467.333333pt;}
.xb9_c00227{left:468.266667pt;}
.xe0_c00227{left:469.866667pt;}
.x107_c00227{left:472.933333pt;}
.x129_c00227{left:474.133333pt;}
.x10f_c00227{left:476.533333pt;}
.x55_c00227{left:478.933333pt;}
.xcc_c00227{left:481.866667pt;}
.x4a_c00227{left:484.266667pt;}
.x11_c00227{left:486.266667pt;}
.x2e_c00227{left:487.866667pt;}
.x8a_c00227{left:489.066667pt;}
.xf7_c00227{left:491.466667pt;}
.xdb_c00227{left:492.400000pt;}
.xd7_c00227{left:494.000000pt;}
.x126_c00227{left:495.200000pt;}
.x116_c00227{left:498.800000pt;}
.xd1_c00227{left:500.000000pt;}
.x2f_c00227{left:503.200000pt;}
.x20_c00227{left:505.333333pt;}
.xb2_c00227{left:506.533333pt;}
.x3d_c00227{left:507.866667pt;}
.x4b_c00227{left:508.933333pt;}
.x8b_c00227{left:509.866667pt;}
.x60_c00227{left:511.200000pt;}
.x6a_c00227{left:512.533333pt;}
.x117_c00227{left:514.533333pt;}
.x94_c00227{left:516.000000pt;}
.xed_c00227{left:517.866667pt;}
.x71_c00227{left:519.466667pt;}
.xd2_c00227{left:523.066667pt;}
.x7a_c00227{left:524.133333pt;}
.x3e_c00227{left:525.733333pt;}
.x81_c00227{left:526.933333pt;}
.x12_c00227{left:528.133333pt;}
.xa9_c00227{left:529.733333pt;}
.xe1_c00227{left:530.933333pt;}
.x8c_c00227{left:532.533333pt;}
.x95_c00227{left:533.600000pt;}
.xf8_c00227{left:538.133333pt;}
.x61_c00227{left:545.066667pt;}
.x72_c00227{left:546.933333pt;}
.x3f_c00227{left:550.400000pt;}
.x21_c00227{left:552.000000pt;}
.xba_c00227{left:555.333333pt;}
.x13_c00227{left:556.266667pt;}
.xfe_c00227{left:560.400000pt;}
.x7b_c00227{left:562.533333pt;}
.xff_c00227{left:563.600000pt;}
.xc0_c00227{left:566.800000pt;}
.xf4_c00227{left:568.533333pt;}
.xee_c00227{left:569.466667pt;}
.x9e_c00227{left:571.733333pt;}
.x6b_c00227{left:576.933333pt;}
.x73_c00227{left:578.266667pt;}
.x127_c00227{left:579.733333pt;}
.xd3_c00227{left:580.666667pt;}
.xb3_c00227{left:583.733333pt;}
.x22_c00227{left:585.333333pt;}
.xaa_c00227{left:587.600000pt;}
.x110_c00227{left:588.533333pt;}
.x4c_c00227{left:590.933333pt;}
.x82_c00227{left:594.133333pt;}
.x8d_c00227{left:595.600000pt;}
.x56_c00227{left:597.600000pt;}
.x30_c00227{left:598.533333pt;}
.x96_c00227{left:600.400000pt;}
.xef_c00227{left:602.133333pt;}
.x40_c00227{left:604.533333pt;}
.xcd_c00227{left:606.266667pt;}
.x14_c00227{left:608.133333pt;}
.x11e_c00227{left:609.600000pt;}
.x23_c00227{left:610.933333pt;}
.x8e_c00227{left:612.933333pt;}
.xc1_c00227{left:615.066667pt;}
.x31_c00227{left:618.400000pt;}
.x74_c00227{left:620.133333pt;}
.x83_c00227{left:621.600000pt;}
.x7c_c00227{left:622.666667pt;}
.x9f_c00227{left:626.400000pt;}
.x57_c00227{left:629.333333pt;}
.x62_c00227{left:630.800000pt;}
.xab_c00227{left:632.400000pt;}
.x41_c00227{left:634.666667pt;}
.x15_c00227{left:636.933333pt;}
.x8f_c00227{left:638.533333pt;}
.x118_c00227{left:639.733333pt;}
.xf9_c00227{left:640.933333pt;}
.xa0_c00227{left:642.400000pt;}
.x6c_c00227{left:643.466667pt;}
.x84_c00227{left:648.533333pt;}
.x42_c00227{left:649.733333pt;}
.x111_c00227{left:653.066667pt;}
.xe7_c00227{left:654.933333pt;}
.xf5_c00227{left:657.466667pt;}
.x32_c00227{left:660.266667pt;}
.x4_c00227{left:662.666667pt;}
.xac_c00227{left:666.000000pt;}
.x112_c00227{left:668.800000pt;}
.xf0_c00227{left:671.200000pt;}
.xb4_c00227{left:673.333333pt;}
.xd8_c00227{left:676.266667pt;}
}





/* 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_c00228 {
    display:none;
  }
  .loading-indicator_c00228.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00228 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_c00228 { 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_c00228" -> "#page-container .classname_c00228")
 */
.pf_c00228 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00228 { /* 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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00228 { /* 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_c00228 { /* 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_c00228 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00228 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00228 {overflow:visible;}
  }
}
.c_c00228 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00228 { /* 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_c00228:after { /* webkit #35443 */
  content: '';
}
.t_c00228:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00228 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 */
}
.__c00228 { /* 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_c00228 { /* info for Javascript */
  display:none;
}
.l_c00228 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00228 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00228 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00228: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_c00228 {
    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_c00228.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00228.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_c00228 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00228{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00228;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.000000;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;}
.m18_c00228{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m88_c00228{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00228{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m48_c00228{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00228{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00228{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00228{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m98_c00228{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00228{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00228{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00228{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00228{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00228{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00228{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00228{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m78_c00228{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00228{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00228{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m55_c00228{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m94_c00228{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00228{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00228{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m58_c00228{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00228{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00228{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m50_c00228{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00228{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00228{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00228{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m99_c00228{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00228{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m15_c00228{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m28_c00228{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00228{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m70_c00228{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m66_c00228{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m74_c00228{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00228{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00228{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m42_c00228{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00228{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m96_c00228{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00228{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00228{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11_c00228{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00228{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m80_c00228{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m84_c00228{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9_c00228{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m73_c00228{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m44_c00228{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m71_c00228{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00228{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m30_c00228{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00228{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m64_c00228{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00228{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00228{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00228{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00228{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00228{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m63_c00228{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6_c00228{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00228{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00228{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mc_c00228{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m39_c00228{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00228{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8_c00228{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m57_c00228{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00228{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00228{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m97_c00228{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m22_c00228{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2_c00228{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb_c00228{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m62_c00228{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00228{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m34_c00228{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00228{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m4_c00228{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m91_c00228{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m17_c00228{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m59_c00228{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00228{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m25_c00228{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00228{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m72_c00228{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m10_c00228{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m90_c00228{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m76_c00228{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m13_c00228{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m68_c00228{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m38_c00228{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m27_c00228{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m24_c00228{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00228{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m29_c00228{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00228{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7_c00228{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00228{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m77_c00228{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00228{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m32_c00228{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00228{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m36_c00228{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m26_c00228{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00228{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00228{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m49_c00228{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00228{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00228{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00228{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19_c00228{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00228{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m69_c00228{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m52_c00228{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00228{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00228{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00228{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m40_c00228{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00228{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m67_c00228{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00228{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00228{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00228{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23_c00228{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00228{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16_c00228{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m54_c00228{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12_c00228{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);}
.m51_c00228{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m86_c00228{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.md_c00228{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m47_c00228{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m56_c00228{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00228{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf_c00228{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00228{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00228{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m75_c00228{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00228{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m21_c00228{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00228{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00228{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00228{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m35_c00228{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00228{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5_c00228{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m43_c00228{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00228{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00228{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m82_c00228{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m81_c00228{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m93_c00228{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m85_c00228{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m79_c00228{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00228{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m61_c00228{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m65_c00228{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m92_c00228{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.me_c00228{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00228{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00228{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m87_c00228{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00228{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m83_c00228{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00228{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m89_c00228{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m41_c00228{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.v0_c00228{vertical-align:0.000000px;}
.ls0_c00228{letter-spacing:0.000000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{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__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00228{word-spacing:-9.736842px;}
.ws3_c00228{word-spacing:-5.000000px;}
.ws4_c00228{word-spacing:0.000000px;}
.ws1_c00228{word-spacing:3.012048px;}
.ws0_c00228{word-spacing:8.194444px;}
.fc0_c00228{color:transparent;}
.fs0_c00228{font-size:60.000000px;}
.y0_c00228{bottom:0.000000px;}
.y2a_c00228{bottom:171.750000px;}
.y29_c00228{bottom:187.200000px;}
.y28_c00228{bottom:225.450000px;}
.y27_c00228{bottom:245.250000px;}
.y26_c00228{bottom:265.350000px;}
.y25_c00228{bottom:285.600000px;}
.y24_c00228{bottom:305.400000px;}
.y23_c00228{bottom:325.200000px;}
.y22_c00228{bottom:345.750000px;}
.y21_c00228{bottom:365.550000px;}
.y20_c00228{bottom:385.650000px;}
.y1f_c00228{bottom:405.750000px;}
.y1e_c00228{bottom:425.550000px;}
.y1d_c00228{bottom:445.350000px;}
.y1c_c00228{bottom:485.100000px;}
.y1b_c00228{bottom:505.200000px;}
.y1a_c00228{bottom:525.300000px;}
.y19_c00228{bottom:545.100000px;}
.y18_c00228{bottom:564.900000px;}
.y17_c00228{bottom:584.700000px;}
.y16_c00228{bottom:604.500000px;}
.y15_c00228{bottom:624.600000px;}
.y14_c00228{bottom:644.100000px;}
.y13_c00228{bottom:663.900000px;}
.y12_c00228{bottom:684.000000px;}
.y11_c00228{bottom:704.100000px;}
.y10_c00228{bottom:723.900000px;}
.yf_c00228{bottom:744.450000px;}
.ye_c00228{bottom:764.550000px;}
.yd_c00228{bottom:784.350000px;}
.yc_c00228{bottom:804.150000px;}
.yb_c00228{bottom:824.250000px;}
.ya_c00228{bottom:844.800000px;}
.y9_c00228{bottom:864.900000px;}
.y8_c00228{bottom:884.700000px;}
.y7_c00228{bottom:904.800000px;}
.y6_c00228{bottom:924.600000px;}
.y5_c00228{bottom:944.700000px;}
.y4_c00228{bottom:964.500000px;}
.y3_c00228{bottom:984.600000px;}
.y2_c00228{bottom:1004.400000px;}
.y1_c00228{bottom:1042.500000px;}
.h2_c00228{height:60.000000px;}
.h0_c00228{height:1166.759949px;}
.h1_c00228{height:1167.000000px;}
.w0_c00228{width:918.720063px;}
.w1_c00228{width:918.750000px;}
.x0_c00228{left:0.000000px;}
.x3_c00228{left:150.900000px;}
.x1_c00228{left:152.700000px;}
.x4_c00228{left:171.000000px;}
.xa5_c00228{left:174.300000px;}
.x4c_c00228{left:179.700000px;}
.x10a_c00228{left:181.500000px;}
.xac_c00228{left:182.850000px;}
.x127_c00228{left:183.900000px;}
.x9b_c00228{left:184.950000px;}
.x59_c00228{left:187.200000px;}
.x31_c00228{left:189.450000px;}
.x123_c00228{left:192.900000px;}
.x94_c00228{left:194.400000px;}
.x3e_c00228{left:196.350000px;}
.xca_c00228{left:200.700000px;}
.x4d_c00228{left:202.800000px;}
.x120_c00228{left:204.300000px;}
.x12_c00228{left:205.350000px;}
.xbd_c00228{left:208.050000px;}
.xf7_c00228{left:211.950000px;}
.xd2_c00228{left:214.200000px;}
.x66_c00228{left:218.700000px;}
.xfd_c00228{left:219.900000px;}
.x22_c00228{left:222.600000px;}
.x10b_c00228{left:223.650000px;}
.x13_c00228{left:225.450000px;}
.x3f_c00228{left:227.700000px;}
.xde_c00228{left:229.800000px;}
.xd3_c00228{left:232.200000px;}
.xf8_c00228{left:234.600000px;}
.x121_c00228{left:236.400000px;}
.x71_c00228{left:238.050000px;}
.x116_c00228{left:239.250000px;}
.xd9_c00228{left:240.450000px;}
.xbe_c00228{left:242.250000px;}
.xc5_c00228{left:243.450000px;}
.xe8_c00228{left:244.950000px;}
.x67_c00228{left:246.000000px;}
.x23_c00228{left:248.100000px;}
.x5_c00228{left:249.900000px;}
.x7e_c00228{left:252.000000px;}
.x12f_c00228{left:253.500000px;}
.x113_c00228{left:255.000000px;}
.xb3_c00228{left:256.350000px;}
.xe5_c00228{left:258.150000px;}
.x5a_c00228{left:259.950000px;}
.xbf_c00228{left:262.050000px;}
.x40_c00228{left:264.450000px;}
.x9c_c00228{left:265.500000px;}
.x130_c00228{left:267.150000px;}
.xf1_c00228{left:268.200000px;}
.xad_c00228{left:270.300000px;}
.xcb_c00228{left:272.400000px;}
.x124_c00228{left:275.700000px;}
.x6_c00228{left:277.950000px;}
.x68_c00228{left:280.200000px;}
.x7f_c00228{left:281.550000px;}
.xfe_c00228{left:282.600000px;}
.x5b_c00228{left:284.100000px;}
.x4e_c00228{left:285.150000px;}
.xf2_c00228{left:291.600000px;}
.xe9_c00228{left:297.150000px;}
.xcc_c00228{left:298.350000px;}
.x24_c00228{left:300.000000px;}
.x11c_c00228{left:302.550000px;}
.x106_c00228{left:303.600000px;}
.x72_c00228{left:304.950000px;}
.x41_c00228{left:306.900000px;}
.x32_c00228{left:308.550000px;}
.x8c_c00228{left:309.900000px;}
.x14_c00228{left:311.850000px;}
.xae_c00228{left:313.200000px;}
.x12a_c00228{left:314.550000px;}
.x80_c00228{left:319.350000px;}
.x5c_c00228{left:321.150000px;}
.xf9_c00228{left:322.500000px;}
.xda_c00228{left:323.700000px;}
.x95_c00228{left:325.650000px;}
.x25_c00228{left:330.900000px;}
.xea_c00228{left:333.150000px;}
.x9d_c00228{left:335.100000px;}
.x33_c00228{left:336.600000px;}
.xb4_c00228{left:337.800000px;}
.x73_c00228{left:339.150000px;}
.x7_c00228{left:341.700000px;}
.x42_c00228{left:345.000000px;}
.x26_c00228{left:346.050000px;}
.xaf_c00228{left:347.400000px;}
.x4f_c00228{left:349.200000px;}
.x125_c00228{left:353.100000px;}
.xe6_c00228{left:355.650000px;}
.x81_c00228{left:357.150000px;}
.x69_c00228{left:360.150000px;}
.x122_c00228{left:363.600000px;}
.x114_c00228{left:364.800000px;}
.xb5_c00228{left:365.850000px;}
.x8_c00228{left:369.000000px;}
.xcd_c00228{left:371.100000px;}
.x15_c00228{left:374.550000px;}
.xd4_c00228{left:376.200000px;}
.xc0_c00228{left:381.600000px;}
.x102_c00228{left:382.650000px;}
.xa6_c00228{left:385.950000px;}
.x34_c00228{left:391.350000px;}
.x74_c00228{left:396.000000px;}
.xeb_c00228{left:397.200000px;}
.x16_c00228{left:398.250000px;}
.xc1_c00228{left:401.400000px;}
.x101_c00228{left:402.600000px;}
.x10c_c00228{left:405.600000px;}
.x6a_c00228{left:406.650000px;}
.xf3_c00228{left:408.300000px;}
.x5d_c00228{left:411.150000px;}
.xdb_c00228{left:412.500000px;}
.x128_c00228{left:413.850000px;}
.x82_c00228{left:415.200000px;}
.x43_c00228{left:416.700000px;}
.x8d_c00228{left:418.650000px;}
.xdf_c00228{left:419.700000px;}
.x35_c00228{left:422.250000px;}
.x75_c00228{left:424.050000px;}
.x9_c00228{left:425.550000px;}
.x50_c00228{left:428.100000px;}
.xc2_c00228{left:429.450000px;}
.xce_c00228{left:433.350000px;}
.x44_c00228{left:435.750000px;}
.x27_c00228{left:437.550000px;}
.x6b_c00228{left:439.050000px;}
.x9e_c00228{left:441.750000px;}
.x83_c00228{left:445.050000px;}
.x126_c00228{left:447.150000px;}
.x2_c00228{left:448.200000px;}
.x8e_c00228{left:450.000000px;}
.x17_c00228{left:451.500000px;}
.xa7_c00228{left:453.600000px;}
.xe0_c00228{left:456.750000px;}
.x45_c00228{left:458.100000px;}
.xa_c00228{left:459.450000px;}
.xb6_c00228{left:460.500000px;}
.x11d_c00228{left:462.150000px;}
.xf4_c00228{left:464.850000px;}
.x76_c00228{left:466.200000px;}
.xd5_c00228{left:469.800000px;}
.xff_c00228{left:470.850000px;}
.x18_c00228{left:472.350000px;}
.x117_c00228{left:474.600000px;}
.x84_c00228{left:477.750000px;}
.x46_c00228{left:478.950000px;}
.x96_c00228{left:481.500000px;}
.x107_c00228{left:482.550000px;}
.xfa_c00228{left:483.750000px;}
.xb0_c00228{left:485.700000px;}
.x77_c00228{left:487.050000px;}
.xe1_c00228{left:488.100000px;}
.xc3_c00228{left:490.350000px;}
.x9f_c00228{left:491.400000px;}
.x103_c00228{left:493.500000px;}
.x129_c00228{left:495.900000px;}
.x36_c00228{left:497.100000px;}
.xd6_c00228{left:498.300000px;}
.x19_c00228{left:500.850000px;}
.xc6_c00228{left:502.500000px;}
.xcf_c00228{left:503.550000px;}
.xb_c00228{left:507.300000px;}
.x28_c00228{left:513.450000px;}
.x8f_c00228{left:514.800000px;}
.xdc_c00228{left:516.150000px;}
.x5e_c00228{left:517.350000px;}
.x115_c00228{left:519.300000px;}
.x97_c00228{left:520.500000px;}
.x100_c00228{left:522.750000px;}
.xa8_c00228{left:528.750000px;}
.x85_c00228{left:532.050000px;}
.x78_c00228{left:533.100000px;}
.x51_c00228{left:534.900000px;}
.x47_c00228{left:536.550000px;}
.x37_c00228{left:540.000000px;}
.xb7_c00228{left:541.800000px;}
.x5f_c00228{left:544.050000px;}
.xc_c00228{left:545.850000px;}
.x29_c00228{left:547.650000px;}
.x118_c00228{left:550.500000px;}
.x86_c00228{left:552.900000px;}
.x48_c00228{left:556.650000px;}
.xb8_c00228{left:559.800000px;}
.xa0_c00228{left:561.300000px;}
.x6c_c00228{left:563.400000px;}
.x10d_c00228{left:564.450000px;}
.x90_c00228{left:566.700000px;}
.x98_c00228{left:568.800000px;}
.xa9_c00228{left:569.850000px;}
.xec_c00228{left:571.050000px;}
.x2a_c00228{left:572.550000px;}
.x1a_c00228{left:576.150000px;}
.xb9_c00228{left:577.500000px;}
.x38_c00228{left:579.600000px;}
.xe2_c00228{left:580.650000px;}
.x2b_c00228{left:583.650000px;}
.x10e_c00228{left:586.050000px;}
.xc4_c00228{left:591.300000px;}
.xd7_c00228{left:592.500000px;}
.xaa_c00228{left:594.000000px;}
.x52_c00228{left:596.100000px;}
.xa1_c00228{left:597.600000px;}
.x12b_c00228{left:598.650000px;}
.x60_c00228{left:601.350000px;}
.x119_c00228{left:604.050000px;}
.x79_c00228{left:605.100000px;}
.x1b_c00228{left:607.500000px;}
.x99_c00228{left:609.450000px;}
.xd_c00228{left:613.200000px;}
.x104_c00228{left:614.400000px;}
.xf5_c00228{left:615.750000px;}
.x1c_c00228{left:618.300000px;}
.x2c_c00228{left:619.950000px;}
.xed_c00228{left:622.500000px;}
.x7a_c00228{left:624.600000px;}
.x53_c00228{left:625.650000px;}
.x10f_c00228{left:627.750000px;}
.x39_c00228{left:630.750000px;}
.x11a_c00228{left:633.150000px;}
.xba_c00228{left:635.400000px;}
.xab_c00228{left:636.900000px;}
.x54_c00228{left:640.050000px;}
.x49_c00228{left:643.350000px;}
.x7b_c00228{left:644.700000px;}
.x91_c00228{left:645.900000px;}
.x1d_c00228{left:647.850000px;}
.xa2_c00228{left:649.050000px;}
.x2d_c00228{left:651.300000px;}
.x61_c00228{left:653.250000px;}
.x6d_c00228{left:660.900000px;}
.x7c_c00228{left:662.400000px;}
.xe3_c00228{left:663.450000px;}
.xbb_c00228{left:664.500000px;}
.xe_c00228{left:667.200000px;}
.x92_c00228{left:668.550000px;}
.xd0_c00228{left:669.600000px;}
.x9a_c00228{left:671.700000px;}
.x11e_c00228{left:672.750000px;}
.x12c_c00228{left:674.250000px;}
.xe7_c00228{left:676.650000px;}
.x2e_c00228{left:679.050000px;}
.x3a_c00228{left:680.400000px;}
.x1e_c00228{left:685.950000px;}
.x55_c00228{left:687.900000px;}
.x62_c00228{left:690.300000px;}
.x110_c00228{left:691.500000px;}
.x6e_c00228{left:692.550000px;}
.xf_c00228{left:695.700000px;}
.x108_c00228{left:697.350000px;}
.xb1_c00228{left:699.450000px;}
.xc7_c00228{left:702.900000px;}
.xdd_c00228{left:704.700000px;}
.xfb_c00228{left:706.500000px;}
.x7d_c00228{left:708.900000px;}
.x87_c00228{left:710.850000px;}
.x1f_c00228{left:712.200000px;}
.x4a_c00228{left:715.050000px;}
.xee_c00228{left:716.100000px;}
.x3b_c00228{left:718.500000px;}
.x11f_c00228{left:719.850000px;}
.xd1_c00228{left:726.450000px;}
.x88_c00228{left:728.850000px;}
.x12d_c00228{left:730.650000px;}
.x63_c00228{left:731.700000px;}
.x2f_c00228{left:733.050000px;}
.xc8_c00228{left:734.550000px;}
.x10_c00228{left:736.350000px;}
.x3c_c00228{left:739.350000px;}
.x111_c00228{left:741.600000px;}
.x56_c00228{left:743.400000px;}
.xef_c00228{left:744.900000px;}
.xfc_c00228{left:747.600000px;}
.x89_c00228{left:748.950000px;}
.x93_c00228{left:750.150000px;}
.xa3_c00228{left:753.150000px;}
.x64_c00228{left:755.400000px;}
.x11b_c00228{left:758.550000px;}
.x57_c00228{left:759.600000px;}
.x6f_c00228{left:762.300000px;}
.xc9_c00228{left:764.100000px;}
.x8a_c00228{left:766.200000px;}
.x3d_c00228{left:771.000000px;}
.xbc_c00228{left:772.800000px;}
.xb2_c00228{left:775.350000px;}
.x105_c00228{left:777.150000px;}
.x11_c00228{left:779.250000px;}
.xf0_c00228{left:781.200000px;}
.x65_c00228{left:783.450000px;}
.xf6_c00228{left:785.700000px;}
.xd8_c00228{left:788.100000px;}
.x8b_c00228{left:789.300000px;}
.x20_c00228{left:790.650000px;}
.x30_c00228{left:792.150000px;}
.x12e_c00228{left:793.350000px;}
.xe4_c00228{left:794.850000px;}
.x4b_c00228{left:797.100000px;}
.x112_c00228{left:798.150000px;}
.x70_c00228{left:800.100000px;}
.xa4_c00228{left:802.800000px;}
.x58_c00228{left:806.100000px;}
.x21_c00228{left:808.350000px;}
.x109_c00228{left:814.350000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws2_c00228{word-spacing:-8.654971pt;}
.ws3_c00228{word-spacing:-4.444444pt;}
.ws4_c00228{word-spacing:0.000000pt;}
.ws1_c00228{word-spacing:2.677376pt;}
.ws0_c00228{word-spacing:7.283951pt;}
.fs0_c00228{font-size:53.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y2a_c00228{bottom:152.666667pt;}
.y29_c00228{bottom:166.400000pt;}
.y28_c00228{bottom:200.400000pt;}
.y27_c00228{bottom:218.000000pt;}
.y26_c00228{bottom:235.866667pt;}
.y25_c00228{bottom:253.866667pt;}
.y24_c00228{bottom:271.466667pt;}
.y23_c00228{bottom:289.066667pt;}
.y22_c00228{bottom:307.333333pt;}
.y21_c00228{bottom:324.933333pt;}
.y20_c00228{bottom:342.800000pt;}
.y1f_c00228{bottom:360.666667pt;}
.y1e_c00228{bottom:378.266667pt;}
.y1d_c00228{bottom:395.866667pt;}
.y1c_c00228{bottom:431.200000pt;}
.y1b_c00228{bottom:449.066667pt;}
.y1a_c00228{bottom:466.933333pt;}
.y19_c00228{bottom:484.533333pt;}
.y18_c00228{bottom:502.133333pt;}
.y17_c00228{bottom:519.733333pt;}
.y16_c00228{bottom:537.333333pt;}
.y15_c00228{bottom:555.200000pt;}
.y14_c00228{bottom:572.533333pt;}
.y13_c00228{bottom:590.133333pt;}
.y12_c00228{bottom:608.000000pt;}
.y11_c00228{bottom:625.866667pt;}
.y10_c00228{bottom:643.466667pt;}
.yf_c00228{bottom:661.733333pt;}
.ye_c00228{bottom:679.600000pt;}
.yd_c00228{bottom:697.200000pt;}
.yc_c00228{bottom:714.800000pt;}
.yb_c00228{bottom:732.666667pt;}
.ya_c00228{bottom:750.933333pt;}
.y9_c00228{bottom:768.800000pt;}
.y8_c00228{bottom:786.400000pt;}
.y7_c00228{bottom:804.266667pt;}
.y6_c00228{bottom:821.866667pt;}
.y5_c00228{bottom:839.733333pt;}
.y4_c00228{bottom:857.333333pt;}
.y3_c00228{bottom:875.200000pt;}
.y2_c00228{bottom:892.800000pt;}
.y1_c00228{bottom:926.666667pt;}
.h2_c00228{height:53.333333pt;}
.h0_c00228{height:1037.119955pt;}
.h1_c00228{height:1037.333333pt;}
.w0_c00228{width:816.640056pt;}
.w1_c00228{width:816.666667pt;}
.x0_c00228{left:0.000000pt;}
.x3_c00228{left:134.133333pt;}
.x1_c00228{left:135.733333pt;}
.x4_c00228{left:152.000000pt;}
.xa5_c00228{left:154.933333pt;}
.x4c_c00228{left:159.733333pt;}
.x10a_c00228{left:161.333333pt;}
.xac_c00228{left:162.533333pt;}
.x127_c00228{left:163.466667pt;}
.x9b_c00228{left:164.400000pt;}
.x59_c00228{left:166.400000pt;}
.x31_c00228{left:168.400000pt;}
.x123_c00228{left:171.466667pt;}
.x94_c00228{left:172.800000pt;}
.x3e_c00228{left:174.533333pt;}
.xca_c00228{left:178.400000pt;}
.x4d_c00228{left:180.266667pt;}
.x120_c00228{left:181.600000pt;}
.x12_c00228{left:182.533333pt;}
.xbd_c00228{left:184.933333pt;}
.xf7_c00228{left:188.400000pt;}
.xd2_c00228{left:190.400000pt;}
.x66_c00228{left:194.400000pt;}
.xfd_c00228{left:195.466667pt;}
.x22_c00228{left:197.866667pt;}
.x10b_c00228{left:198.800000pt;}
.x13_c00228{left:200.400000pt;}
.x3f_c00228{left:202.400000pt;}
.xde_c00228{left:204.266667pt;}
.xd3_c00228{left:206.400000pt;}
.xf8_c00228{left:208.533333pt;}
.x121_c00228{left:210.133333pt;}
.x71_c00228{left:211.600000pt;}
.x116_c00228{left:212.666667pt;}
.xd9_c00228{left:213.733333pt;}
.xbe_c00228{left:215.333333pt;}
.xc5_c00228{left:216.400000pt;}
.xe8_c00228{left:217.733333pt;}
.x67_c00228{left:218.666667pt;}
.x23_c00228{left:220.533333pt;}
.x5_c00228{left:222.133333pt;}
.x7e_c00228{left:224.000000pt;}
.x12f_c00228{left:225.333333pt;}
.x113_c00228{left:226.666667pt;}
.xb3_c00228{left:227.866667pt;}
.xe5_c00228{left:229.466667pt;}
.x5a_c00228{left:231.066667pt;}
.xbf_c00228{left:232.933333pt;}
.x40_c00228{left:235.066667pt;}
.x9c_c00228{left:236.000000pt;}
.x130_c00228{left:237.466667pt;}
.xf1_c00228{left:238.400000pt;}
.xad_c00228{left:240.266667pt;}
.xcb_c00228{left:242.133333pt;}
.x124_c00228{left:245.066667pt;}
.x6_c00228{left:247.066667pt;}
.x68_c00228{left:249.066667pt;}
.x7f_c00228{left:250.266667pt;}
.xfe_c00228{left:251.200000pt;}
.x5b_c00228{left:252.533333pt;}
.x4e_c00228{left:253.466667pt;}
.xf2_c00228{left:259.200000pt;}
.xe9_c00228{left:264.133333pt;}
.xcc_c00228{left:265.200000pt;}
.x24_c00228{left:266.666667pt;}
.x11c_c00228{left:268.933333pt;}
.x106_c00228{left:269.866667pt;}
.x72_c00228{left:271.066667pt;}
.x41_c00228{left:272.800000pt;}
.x32_c00228{left:274.266667pt;}
.x8c_c00228{left:275.466667pt;}
.x14_c00228{left:277.200000pt;}
.xae_c00228{left:278.400000pt;}
.x12a_c00228{left:279.600000pt;}
.x80_c00228{left:283.866667pt;}
.x5c_c00228{left:285.466667pt;}
.xf9_c00228{left:286.666667pt;}
.xda_c00228{left:287.733333pt;}
.x95_c00228{left:289.466667pt;}
.x25_c00228{left:294.133333pt;}
.xea_c00228{left:296.133333pt;}
.x9d_c00228{left:297.866667pt;}
.x33_c00228{left:299.200000pt;}
.xb4_c00228{left:300.266667pt;}
.x73_c00228{left:301.466667pt;}
.x7_c00228{left:303.733333pt;}
.x42_c00228{left:306.666667pt;}
.x26_c00228{left:307.600000pt;}
.xaf_c00228{left:308.800000pt;}
.x4f_c00228{left:310.400000pt;}
.x125_c00228{left:313.866667pt;}
.xe6_c00228{left:316.133333pt;}
.x81_c00228{left:317.466667pt;}
.x69_c00228{left:320.133333pt;}
.x122_c00228{left:323.200000pt;}
.x114_c00228{left:324.266667pt;}
.xb5_c00228{left:325.200000pt;}
.x8_c00228{left:328.000000pt;}
.xcd_c00228{left:329.866667pt;}
.x15_c00228{left:332.933333pt;}
.xd4_c00228{left:334.400000pt;}
.xc0_c00228{left:339.200000pt;}
.x102_c00228{left:340.133333pt;}
.xa6_c00228{left:343.066667pt;}
.x34_c00228{left:347.866667pt;}
.x74_c00228{left:352.000000pt;}
.xeb_c00228{left:353.066667pt;}
.x16_c00228{left:354.000000pt;}
.xc1_c00228{left:356.800000pt;}
.x101_c00228{left:357.866667pt;}
.x10c_c00228{left:360.533333pt;}
.x6a_c00228{left:361.466667pt;}
.xf3_c00228{left:362.933333pt;}
.x5d_c00228{left:365.466667pt;}
.xdb_c00228{left:366.666667pt;}
.x128_c00228{left:367.866667pt;}
.x82_c00228{left:369.066667pt;}
.x43_c00228{left:370.400000pt;}
.x8d_c00228{left:372.133333pt;}
.xdf_c00228{left:373.066667pt;}
.x35_c00228{left:375.333333pt;}
.x75_c00228{left:376.933333pt;}
.x9_c00228{left:378.266667pt;}
.x50_c00228{left:380.533333pt;}
.xc2_c00228{left:381.733333pt;}
.xce_c00228{left:385.200000pt;}
.x44_c00228{left:387.333333pt;}
.x27_c00228{left:388.933333pt;}
.x6b_c00228{left:390.266667pt;}
.x9e_c00228{left:392.666667pt;}
.x83_c00228{left:395.600000pt;}
.x126_c00228{left:397.466667pt;}
.x2_c00228{left:398.400000pt;}
.x8e_c00228{left:400.000000pt;}
.x17_c00228{left:401.333333pt;}
.xa7_c00228{left:403.200000pt;}
.xe0_c00228{left:406.000000pt;}
.x45_c00228{left:407.200000pt;}
.xa_c00228{left:408.400000pt;}
.xb6_c00228{left:409.333333pt;}
.x11d_c00228{left:410.800000pt;}
.xf4_c00228{left:413.200000pt;}
.x76_c00228{left:414.400000pt;}
.xd5_c00228{left:417.600000pt;}
.xff_c00228{left:418.533333pt;}
.x18_c00228{left:419.866667pt;}
.x117_c00228{left:421.866667pt;}
.x84_c00228{left:424.666667pt;}
.x46_c00228{left:425.733333pt;}
.x96_c00228{left:428.000000pt;}
.x107_c00228{left:428.933333pt;}
.xfa_c00228{left:430.000000pt;}
.xb0_c00228{left:431.733333pt;}
.x77_c00228{left:432.933333pt;}
.xe1_c00228{left:433.866667pt;}
.xc3_c00228{left:435.866667pt;}
.x9f_c00228{left:436.800000pt;}
.x103_c00228{left:438.666667pt;}
.x129_c00228{left:440.800000pt;}
.x36_c00228{left:441.866667pt;}
.xd6_c00228{left:442.933333pt;}
.x19_c00228{left:445.200000pt;}
.xc6_c00228{left:446.666667pt;}
.xcf_c00228{left:447.600000pt;}
.xb_c00228{left:450.933333pt;}
.x28_c00228{left:456.400000pt;}
.x8f_c00228{left:457.600000pt;}
.xdc_c00228{left:458.800000pt;}
.x5e_c00228{left:459.866667pt;}
.x115_c00228{left:461.600000pt;}
.x97_c00228{left:462.666667pt;}
.x100_c00228{left:464.666667pt;}
.xa8_c00228{left:470.000000pt;}
.x85_c00228{left:472.933333pt;}
.x78_c00228{left:473.866667pt;}
.x51_c00228{left:475.466667pt;}
.x47_c00228{left:476.933333pt;}
.x37_c00228{left:480.000000pt;}
.xb7_c00228{left:481.600000pt;}
.x5f_c00228{left:483.600000pt;}
.xc_c00228{left:485.200000pt;}
.x29_c00228{left:486.800000pt;}
.x118_c00228{left:489.333333pt;}
.x86_c00228{left:491.466667pt;}
.x48_c00228{left:494.800000pt;}
.xb8_c00228{left:497.600000pt;}
.xa0_c00228{left:498.933333pt;}
.x6c_c00228{left:500.800000pt;}
.x10d_c00228{left:501.733333pt;}
.x90_c00228{left:503.733333pt;}
.x98_c00228{left:505.600000pt;}
.xa9_c00228{left:506.533333pt;}
.xec_c00228{left:507.600000pt;}
.x2a_c00228{left:508.933333pt;}
.x1a_c00228{left:512.133333pt;}
.xb9_c00228{left:513.333333pt;}
.x38_c00228{left:515.200000pt;}
.xe2_c00228{left:516.133333pt;}
.x2b_c00228{left:518.800000pt;}
.x10e_c00228{left:520.933333pt;}
.xc4_c00228{left:525.600000pt;}
.xd7_c00228{left:526.666667pt;}
.xaa_c00228{left:528.000000pt;}
.x52_c00228{left:529.866667pt;}
.xa1_c00228{left:531.200000pt;}
.x12b_c00228{left:532.133333pt;}
.x60_c00228{left:534.533333pt;}
.x119_c00228{left:536.933333pt;}
.x79_c00228{left:537.866667pt;}
.x1b_c00228{left:540.000000pt;}
.x99_c00228{left:541.733333pt;}
.xd_c00228{left:545.066667pt;}
.x104_c00228{left:546.133333pt;}
.xf5_c00228{left:547.333333pt;}
.x1c_c00228{left:549.600000pt;}
.x2c_c00228{left:551.066667pt;}
.xed_c00228{left:553.333333pt;}
.x7a_c00228{left:555.200000pt;}
.x53_c00228{left:556.133333pt;}
.x10f_c00228{left:558.000000pt;}
.x39_c00228{left:560.666667pt;}
.x11a_c00228{left:562.800000pt;}
.xba_c00228{left:564.800000pt;}
.xab_c00228{left:566.133333pt;}
.x54_c00228{left:568.933333pt;}
.x49_c00228{left:571.866667pt;}
.x7b_c00228{left:573.066667pt;}
.x91_c00228{left:574.133333pt;}
.x1d_c00228{left:575.866667pt;}
.xa2_c00228{left:576.933333pt;}
.x2d_c00228{left:578.933333pt;}
.x61_c00228{left:580.666667pt;}
.x6d_c00228{left:587.466667pt;}
.x7c_c00228{left:588.800000pt;}
.xe3_c00228{left:589.733333pt;}
.xbb_c00228{left:590.666667pt;}
.xe_c00228{left:593.066667pt;}
.x92_c00228{left:594.266667pt;}
.xd0_c00228{left:595.200000pt;}
.x9a_c00228{left:597.066667pt;}
.x11e_c00228{left:598.000000pt;}
.x12c_c00228{left:599.333333pt;}
.xe7_c00228{left:601.466667pt;}
.x2e_c00228{left:603.600000pt;}
.x3a_c00228{left:604.800000pt;}
.x1e_c00228{left:609.733333pt;}
.x55_c00228{left:611.466667pt;}
.x62_c00228{left:613.600000pt;}
.x110_c00228{left:614.666667pt;}
.x6e_c00228{left:615.600000pt;}
.xf_c00228{left:618.400000pt;}
.x108_c00228{left:619.866667pt;}
.xb1_c00228{left:621.733333pt;}
.xc7_c00228{left:624.800000pt;}
.xdd_c00228{left:626.400000pt;}
.xfb_c00228{left:628.000000pt;}
.x7d_c00228{left:630.133333pt;}
.x87_c00228{left:631.866667pt;}
.x1f_c00228{left:633.066667pt;}
.x4a_c00228{left:635.600000pt;}
.xee_c00228{left:636.533333pt;}
.x3b_c00228{left:638.666667pt;}
.x11f_c00228{left:639.866667pt;}
.xd1_c00228{left:645.733333pt;}
.x88_c00228{left:647.866667pt;}
.x12d_c00228{left:649.466667pt;}
.x63_c00228{left:650.400000pt;}
.x2f_c00228{left:651.600000pt;}
.xc8_c00228{left:652.933333pt;}
.x10_c00228{left:654.533333pt;}
.x3c_c00228{left:657.200000pt;}
.x111_c00228{left:659.200000pt;}
.x56_c00228{left:660.800000pt;}
.xef_c00228{left:662.133333pt;}
.xfc_c00228{left:664.533333pt;}
.x89_c00228{left:665.733333pt;}
.x93_c00228{left:666.800000pt;}
.xa3_c00228{left:669.466667pt;}
.x64_c00228{left:671.466667pt;}
.x11b_c00228{left:674.266667pt;}
.x57_c00228{left:675.200000pt;}
.x6f_c00228{left:677.600000pt;}
.xc9_c00228{left:679.200000pt;}
.x8a_c00228{left:681.066667pt;}
.x3d_c00228{left:685.333333pt;}
.xbc_c00228{left:686.933333pt;}
.xb2_c00228{left:689.200000pt;}
.x105_c00228{left:690.800000pt;}
.x11_c00228{left:692.666667pt;}
.xf0_c00228{left:694.400000pt;}
.x65_c00228{left:696.400000pt;}
.xf6_c00228{left:698.400000pt;}
.xd8_c00228{left:700.533333pt;}
.x8b_c00228{left:701.600000pt;}
.x20_c00228{left:702.800000pt;}
.x30_c00228{left:704.133333pt;}
.x12e_c00228{left:705.200000pt;}
.xe4_c00228{left:706.533333pt;}
.x4b_c00228{left:708.533333pt;}
.x112_c00228{left:709.466667pt;}
.x70_c00228{left:711.200000pt;}
.xa4_c00228{left:713.600000pt;}
.x58_c00228{left:716.533333pt;}
.x21_c00228{left:718.533333pt;}
.x109_c00228{left:723.866667pt;}
}





/* 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_c00229 {
    display:none;
  }
  .loading-indicator_c00229.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00229 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_c00229 { 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_c00229" -> "#page-container .classname_c00229")
 */
.pf_c00229 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00229 { /* 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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00229 { /* 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_c00229 { /* 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_c00229 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00229 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00229 {overflow:visible;}
  }
}
.c_c00229 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00229 { /* 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_c00229:after { /* webkit #35443 */
  content: '';
}
.t_c00229:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00229 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 */
}
.__c00229 { /* 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_c00229 { /* info for Javascript */
  display:none;
}
.l_c00229 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00229 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00229 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00229: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_c00229 {
    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_c00229.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00229.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_c00229 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00229{font-family:sans-serif;visibility:hidden;}
.sc__c00229{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
}
.y0_c00229{bottom:0.000000px;}
.h0_c00229{height:1166.759949px;}
.h1_c00229{height:1167.000000px;}
.w0_c00229{width:918.720063px;}
.w1_c00229{width:918.750000px;}
.x0_c00229{left:0.000000px;}
@media print{
.y0_c00229{bottom:0.000000pt;}
.h0_c00229{height:1037.119955pt;}
.h1_c00229{height:1037.333333pt;}
.w0_c00229{width:816.640056pt;}
.w1_c00229{width:816.666667pt;}
.x0_c00229{left:0.000000pt;}
}





/* 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_c00230 {
    display:none;
  }
  .loading-indicator_c00230.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00230 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_c00230 { 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_c00230" -> "#page-container .classname_c00230")
 */
.pf_c00230 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00230 { /* 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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00230 { /* 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_c00230 { /* 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_c00230 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00230 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00230 {overflow:visible;}
  }
}
.c_c00230 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00230 { /* 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_c00230:after { /* webkit #35443 */
  content: '';
}
.t_c00230:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00230 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 */
}
.__c00230 { /* 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_c00230 { /* info for Javascript */
  display:none;
}
.l_c00230 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00230 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00230 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00230: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_c00230 {
    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_c00230.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00230.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_c00230 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00230{font-family:sans-serif;visibility:hidden;}
.sc__c00230{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00230{-webkit-text-stroke:0px transparent;}
}
.y0_c00230{bottom:0.000000px;}
.h0_c00230{height:1166.759949px;}
.h1_c00230{height:1167.000000px;}
.w0_c00230{width:918.720063px;}
.w1_c00230{width:918.750000px;}
.x0_c00230{left:0.000000px;}
@media print{
.y0_c00230{bottom:0.000000pt;}
.h0_c00230{height:1037.119955pt;}
.h1_c00230{height:1037.333333pt;}
.w0_c00230{width:816.640056pt;}
.w1_c00230{width:816.666667pt;}
.x0_c00230{left:0.000000pt;}
}





/* 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_c00231 {
    display:none;
  }
  .loading-indicator_c00231.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00231 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_c00231 { 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_c00231" -> "#page-container .classname_c00231")
 */
.pf_c00231 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00231 { /* 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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00231 { /* 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_c00231 { /* 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_c00231 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00231 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00231 {overflow:visible;}
  }
}
.c_c00231 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00231 { /* 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_c00231:after { /* webkit #35443 */
  content: '';
}
.t_c00231:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00231 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 */
}
.__c00231 { /* 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_c00231 { /* info for Javascript */
  display:none;
}
.l_c00231 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00231 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00231 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00231: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_c00231 {
    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_c00231.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00231.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_c00231 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00231{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.000000;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;}
.m8a_c00231{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m87_c00231{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m93_c00231{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00231{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maf_c00231{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m36_c00231{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m82_c00231{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00231{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mae_c00231{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m60_c00231{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m80_c00231{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m18_c00231{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00231{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00231{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00231{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00231{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00231{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m47_c00231{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00231{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m17_c00231{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m83_c00231{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m19_c00231{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m27_c00231{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00231{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00231{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00231{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00231{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00231{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m85_c00231{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mac_c00231{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.md_c00231{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m72_c00231{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00231{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m38_c00231{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00231{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m16_c00231{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00231{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00231{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m68_c00231{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m28_c00231{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00231{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m58_c00231{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m48_c00231{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m11_c00231{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m77_c00231{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00231{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m79_c00231{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m39_c00231{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc_c00231{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mf_c00231{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m22_c00231{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m89_c00231{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00231{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mab_c00231{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00231{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00231{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00231{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m95_c00231{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m73_c00231{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00231{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m62_c00231{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m61_c00231{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00231{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m21_c00231{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m71_c00231{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m56_c00231{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m44_c00231{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m46_c00231{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00231{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00231{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m54_c00231{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00231{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00231{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m24_c00231{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m43_c00231{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00231{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m76_c00231{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m84_c00231{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m99_c00231{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb_c00231{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m59_c00231{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00231{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m98_c00231{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00231{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma_c00231{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m86_c00231{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8_c00231{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m52_c00231{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m67_c00231{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m91_c00231{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00231{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m64_c00231{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00231{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m74_c00231{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00231{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00231{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m94_c00231{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m55_c00231{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00231{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00231{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00231{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m30_c00231{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00231{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00231{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m35_c00231{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m33_c00231{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00231{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m31_c00231{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m88_c00231{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00231{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00231{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00231{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m45_c00231{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m96_c00231{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m26_c00231{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00231{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00231{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m81_c00231{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00231{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12_c00231{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m41_c00231{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00231{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m90_c00231{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m75_c00231{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m97_c00231{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00231{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00231{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00231{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00231{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00231{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00231{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00231{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00231{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00231{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23_c00231{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mad_c00231{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00231{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m40_c00231{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00231{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00231{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m14_c00231{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m49_c00231{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m32_c00231{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00231{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m78_c00231{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m66_c00231{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00231{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m50_c00231{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m65_c00231{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m25_c00231{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.maa_c00231{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m51_c00231{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00231{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m13_c00231{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00231{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m69_c00231{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00231{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00231{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m57_c00231{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00231{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00231{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m37_c00231{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00231{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00231{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00231{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m15_c00231{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m29_c00231{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00231{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m63_c00231{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00231{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{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__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00231{word-spacing:-10.138889px;}
.ws7_c00231{word-spacing:-8.809524px;}
.ws9_c00231{word-spacing:-5.714286px;}
.wsc_c00231{word-spacing:-5.629291px;}
.ws1_c00231{word-spacing:-4.861111px;}
.wsf_c00231{word-spacing:0.000000px;}
.wsb_c00231{word-spacing:0.277778px;}
.ws4_c00231{word-spacing:0.975610px;}
.ws5_c00231{word-spacing:3.095238px;}
.wse_c00231{word-spacing:7.763158px;}
.wsa_c00231{word-spacing:8.705357px;}
.ws2_c00231{word-spacing:10.625000px;}
.ws6_c00231{word-spacing:11.428571px;}
.ws0_c00231{word-spacing:11.805556px;}
.ws8_c00231{word-spacing:12.058824px;}
.wsd_c00231{word-spacing:12.894737px;}
._0_c00231{width:24.523810px;}
.fc0_c00231{color:transparent;}
.fs1_c00231{font-size:54.000000px;}
.fs0_c00231{font-size:60.000000px;}
.y0_c00231{bottom:0.000000px;}
.y2c_c00231{bottom:142.200000px;}
.y2b_c00231{bottom:173.550000px;}
.y2a_c00231{bottom:194.400000px;}
.y29_c00231{bottom:213.750000px;}
.y28_c00231{bottom:234.300000px;}
.y27_c00231{bottom:254.400000px;}
.y26_c00231{bottom:274.200000px;}
.y25_c00231{bottom:293.700000px;}
.y24_c00231{bottom:313.200000px;}
.y23_c00231{bottom:334.050000px;}
.y22_c00231{bottom:353.850000px;}
.y21_c00231{bottom:373.500000px;}
.y20_c00231{bottom:393.300000px;}
.y1f_c00231{bottom:413.400000px;}
.y1e_c00231{bottom:433.200000px;}
.y1d_c00231{bottom:453.300000px;}
.y1c_c00231{bottom:473.100000px;}
.y1b_c00231{bottom:493.200000px;}
.y1a_c00231{bottom:513.000000px;}
.y19_c00231{bottom:532.800000px;}
.y18_c00231{bottom:552.600000px;}
.y17_c00231{bottom:572.700000px;}
.y16_c00231{bottom:593.250000px;}
.y15_c00231{bottom:613.200000px;}
.y14_c00231{bottom:633.300000px;}
.y13_c00231{bottom:653.100000px;}
.y12_c00231{bottom:672.900000px;}
.y11_c00231{bottom:693.000000px;}
.y10_c00231{bottom:712.950000px;}
.yf_c00231{bottom:733.050000px;}
.ye_c00231{bottom:753.150000px;}
.yd_c00231{bottom:772.200000px;}
.yc_c00231{bottom:803.850000px;}
.yb_c00231{bottom:824.400000px;}
.ya_c00231{bottom:844.200000px;}
.y9_c00231{bottom:864.300000px;}
.y8_c00231{bottom:884.250000px;}
.y7_c00231{bottom:904.350000px;}
.y6_c00231{bottom:924.150000px;}
.y5_c00231{bottom:942.750000px;}
.y4_c00231{bottom:964.050000px;}
.y3_c00231{bottom:983.550000px;}
.y2_c00231{bottom:1003.650000px;}
.y1_c00231{bottom:1042.500000px;}
.h3_c00231{height:54.000000px;}
.h2_c00231{height:60.000000px;}
.h0_c00231{height:1166.759949px;}
.h1_c00231{height:1167.000000px;}
.w0_c00231{width:918.720063px;}
.w1_c00231{width:918.750000px;}
.x0_c00231{left:0.000000px;}
.x4_c00231{left:101.550000px;}
.x5d_c00231{left:103.500000px;}
.x126_c00231{left:104.700000px;}
.xae_c00231{left:115.800000px;}
.x43_c00231{left:119.850000px;}
.xd8_c00231{left:122.700000px;}
.x109_c00231{left:124.500000px;}
.x15_c00231{left:127.200000px;}
.xdc_c00231{left:128.700000px;}
.xca_c00231{left:129.750000px;}
.x17_c00231{left:132.450000px;}
.x7a_c00231{left:133.500000px;}
.xc4_c00231{left:134.700000px;}
.x34_c00231{left:136.500000px;}
.x5_c00231{left:137.550000px;}
.xfd_c00231{left:141.150000px;}
.x66_c00231{left:144.150000px;}
.xc3_c00231{left:147.900000px;}
.x4f_c00231{left:150.150000px;}
.xce_c00231{left:151.500000px;}
.x18_c00231{left:152.550000px;}
.xf4_c00231{left:154.050000px;}
.x6_c00231{left:155.250000px;}
.x86_c00231{left:157.500000px;}
.x26_c00231{left:159.600000px;}
.x67_c00231{left:161.100000px;}
.x5e_c00231{left:162.600000px;}
.x28_c00231{left:165.300000px;}
.x100_c00231{left:166.650000px;}
.x74_c00231{left:168.600000px;}
.x11b_c00231{left:170.700000px;}
.xcf_c00231{left:172.800000px;}
.x16_c00231{left:174.300000px;}
.xa5_c00231{left:175.500000px;}
.xe6_c00231{left:177.150000px;}
.x9c_c00231{left:180.300000px;}
.x27_c00231{left:182.700000px;}
.xec_c00231{left:185.250000px;}
.x50_c00231{left:187.200000px;}
.x35_c00231{left:188.700000px;}
.xb5_c00231{left:189.750000px;}
.x44_c00231{left:192.150000px;}
.xd0_c00231{left:193.350000px;}
.xf5_c00231{left:194.400000px;}
.x11c_c00231{left:196.200000px;}
.x9d_c00231{left:201.900000px;}
.x19_c00231{left:203.700000px;}
.xcb_c00231{left:206.100000px;}
.x127_c00231{left:209.550000px;}
.x7_c00231{left:210.750000px;}
.x68_c00231{left:212.550000px;}
.x87_c00231{left:216.450000px;}
.xb6_c00231{left:218.850000px;}
.x7c_c00231{left:220.200000px;}
.xa6_c00231{left:221.550000px;}
.x75_c00231{left:226.200000px;}
.x7b_c00231{left:228.150000px;}
.x10a_c00231{left:230.850000px;}
.x45_c00231{left:235.650000px;}
.xa7_c00231{left:236.700000px;}
.x29_c00231{left:238.350000px;}
.x69_c00231{left:241.050000px;}
.x8_c00231{left:242.400000px;}
.x11f_c00231{left:243.600000px;}
.x36_c00231{left:245.550000px;}
.x1a_c00231{left:247.650000px;}
.x93_c00231{left:249.600000px;}
.x76_c00231{left:251.700000px;}
.xc5_c00231{left:252.750000px;}
.xed_c00231{left:254.700000px;}
.x46_c00231{left:256.200000px;}
.xdd_c00231{left:259.050000px;}
.xbc_c00231{left:260.250000px;}
.xf6_c00231{left:261.300000px;}
.x5f_c00231{left:262.650000px;}
.xd9_c00231{left:263.850000px;}
.x94_c00231{left:266.550000px;}
.x9_c00231{left:267.900000px;}
.xd1_c00231{left:269.700000px;}
.x37_c00231{left:271.050000px;}
.x120_c00231{left:276.000000px;}
.x51_c00231{left:277.950000px;}
.xcc_c00231{left:279.900000px;}
.xbd_c00231{left:281.100000px;}
.xde_c00231{left:283.500000px;}
.x1b_c00231{left:289.050000px;}
.xf7_c00231{left:290.850000px;}
.xfe_c00231{left:292.050000px;}
.x52_c00231{left:295.650000px;}
.x7d_c00231{left:297.150000px;}
.x112_c00231{left:299.100000px;}
.x8e_c00231{left:302.100000px;}
.x6a_c00231{left:305.100000px;}
.x60_c00231{left:306.150000px;}
.x77_c00231{left:307.800000px;}
.x10e_c00231{left:308.850000px;}
.x9e_c00231{left:309.900000px;}
.x124_c00231{left:310.950000px;}
.x121_c00231{left:312.750000px;}
.x113_c00231{left:317.400000px;}
.xf8_c00231{left:318.900000px;}
.x47_c00231{left:320.250000px;}
.x11d_c00231{left:322.950000px;}
.x53_c00231{left:325.500000px;}
.x7e_c00231{left:326.700000px;}
.x105_c00231{left:328.800000px;}
.xa_c00231{left:331.200000px;}
.x38_c00231{left:333.300000px;}
.x48_c00231{left:335.400000px;}
.xa8_c00231{left:337.500000px;}
.xc6_c00231{left:339.450000px;}
.xd2_c00231{left:342.150000px;}
.x1c_c00231{left:344.850000px;}
.x88_c00231{left:348.450000px;}
.x78_c00231{left:351.000000px;}
.xb7_c00231{left:353.550000px;}
.x2a_c00231{left:357.900000px;}
.x54_c00231{left:359.700000px;}
.x39_c00231{left:362.100000px;}
.x10b_c00231{left:364.050000px;}
.xaf_c00231{left:366.750000px;}
.x1d_c00231{left:368.550000px;}
.x9f_c00231{left:369.750000px;}
.x101_c00231{left:371.550000px;}
.x117_c00231{left:372.900000px;}
.xa9_c00231{left:374.550000px;}
.x79_c00231{left:378.300000px;}
.xcd_c00231{left:379.950000px;}
.xb8_c00231{left:382.050000px;}
.xb_c00231{left:383.100000px;}
.x6b_c00231{left:386.400000px;}
.x3a_c00231{left:388.800000px;}
.x2b_c00231{left:390.600000px;}
.xee_c00231{left:393.300000px;}
.xc_c00231{left:395.400000px;}
.xff_c00231{left:397.500000px;}
.xc7_c00231{left:398.850000px;}
.x118_c00231{left:399.900000px;}
.xbe_c00231{left:400.950000px;}
.xb0_c00231{left:402.750000px;}
.x6c_c00231{left:404.100000px;}
.x49_c00231{left:405.300000px;}
.x122_c00231{left:406.350000px;}
.x89_c00231{left:408.900000px;}
.x95_c00231{left:410.550000px;}
.x128_c00231{left:412.350000px;}
.x1_c00231{left:413.700000px;}
.xe7_c00231{left:415.500000px;}
.x6d_c00231{left:421.350000px;}
.x55_c00231{left:423.750000px;}
.x102_c00231{left:427.350000px;}
.xaa_c00231{left:428.850000px;}
.xb1_c00231{left:431.850000px;}
.xd_c00231{left:432.900000px;}
.x2c_c00231{left:435.600000px;}
.x10c_c00231{left:437.100000px;}
.xf9_c00231{left:438.450000px;}
.x7f_c00231{left:440.100000px;}
.x6e_c00231{left:441.900000px;}
.x96_c00231{left:442.950000px;}
.x4a_c00231{left:446.700000px;}
.x8a_c00231{left:449.550000px;}
.x1e_c00231{left:452.100000px;}
.x56_c00231{left:453.300000px;}
.xb9_c00231{left:455.250000px;}
.xa0_c00231{left:456.900000px;}
.xdf_c00231{left:459.450000px;}
.xd3_c00231{left:461.250000px;}
.x12b_c00231{left:462.600000px;}
.x8f_c00231{left:464.100000px;}
.x3b_c00231{left:465.150000px;}
.x10f_c00231{left:466.200000px;}
.x4b_c00231{left:468.300000px;}
.x10d_c00231{left:469.800000px;}
.xa1_c00231{left:477.000000px;}
.x106_c00231{left:478.050000px;}
.x2d_c00231{left:479.250000px;}
.x1f_c00231{left:481.950000px;}
.x103_c00231{left:484.950000px;}
.x12c_c00231{left:486.750000px;}
.x61_c00231{left:487.950000px;}
.x125_c00231{left:489.900000px;}
.xc8_c00231{left:490.950000px;}
.x4c_c00231{left:493.500000px;}
.xfa_c00231{left:496.800000px;}
.xe0_c00231{left:498.000000px;}
.x114_c00231{left:499.200000px;}
.x8b_c00231{left:500.250000px;}
.xef_c00231{left:501.900000px;}
.xe8_c00231{left:504.450000px;}
.xe_c00231{left:506.400000px;}
.xa2_c00231{left:508.350000px;}
.x90_c00231{left:513.750000px;}
.xb2_c00231{left:515.400000px;}
.xbf_c00231{left:517.500000px;}
.x20_c00231{left:518.700000px;}
.x2e_c00231{left:521.400000px;}
.xd4_c00231{left:522.450000px;}
.x6f_c00231{left:524.400000px;}
.xab_c00231{left:526.800000px;}
.x104_c00231{left:528.900000px;}
.xfb_c00231{left:531.450000px;}
.x129_c00231{left:534.000000px;}
.x80_c00231{left:535.200000px;}
.x123_c00231{left:536.700000px;}
.xe1_c00231{left:537.900000px;}
.x57_c00231{left:539.400000px;}
.x3c_c00231{left:541.800000px;}
.x2f_c00231{left:543.300000px;}
.xf0_c00231{left:544.350000px;}
.x8c_c00231{left:547.650000px;}
.x62_c00231{left:550.650000px;}
.xba_c00231{left:552.450000px;}
.x97_c00231{left:554.550000px;}
.xf_c00231{left:556.050000px;}
.xa3_c00231{left:558.450000px;}
.x12a_c00231{left:561.300000px;}
.x21_c00231{left:562.950000px;}
.x4d_c00231{left:567.300000px;}
.xac_c00231{left:568.950000px;}
.x3d_c00231{left:570.900000px;}
.xf1_c00231{left:572.100000px;}
.xc0_c00231{left:573.300000px;}
.x119_c00231{left:576.450000px;}
.x81_c00231{left:578.100000px;}
.x10_c00231{left:579.150000px;}
.x22_c00231{left:584.850000px;}
.xbb_c00231{left:586.650000px;}
.x3e_c00231{left:587.850000px;}
.x58_c00231{left:596.250000px;}
.x107_c00231{left:597.300000px;}
.x30_c00231{left:599.400000px;}
.x11_c00231{left:604.650000px;}
.x82_c00231{left:606.900000px;}
.xb3_c00231{left:609.900000px;}
.x59_c00231{left:611.400000px;}
.xe9_c00231{left:612.450000px;}
.x23_c00231{left:613.950000px;}
.xd5_c00231{left:616.050000px;}
.x108_c00231{left:617.100000px;}
.x31_c00231{left:618.900000px;}
.x3f_c00231{left:621.750000px;}
.x4e_c00231{left:623.400000px;}
.x70_c00231{left:627.000000px;}
.xd6_c00231{left:631.200000px;}
.x98_c00231{left:634.950000px;}
.xe2_c00231{left:637.650000px;}
.x5a_c00231{left:639.900000px;}
.x71_c00231{left:641.700000px;}
.x110_c00231{left:646.350000px;}
.xd7_c00231{left:649.500000px;}
.xda_c00231{left:651.450000px;}
.xc1_c00231{left:652.500000px;}
.x99_c00231{left:654.750000px;}
.xf2_c00231{left:656.400000px;}
.xb4_c00231{left:659.250000px;}
.x83_c00231{left:661.200000px;}
.x5b_c00231{left:665.100000px;}
.xea_c00231{left:670.650000px;}
.x8d_c00231{left:672.450000px;}
.x12_c00231{left:673.800000px;}
.x63_c00231{left:675.450000px;}
.x91_c00231{left:679.050000px;}
.xc2_c00231{left:681.300000px;}
.xfc_c00231{left:683.700000px;}
.xdb_c00231{left:685.650000px;}
.x32_c00231{left:687.000000px;}
.x40_c00231{left:689.100000px;}
.x13_c00231{left:691.050000px;}
.x84_c00231{left:692.850000px;}
.x9a_c00231{left:695.850000px;}
.x24_c00231{left:697.050000px;}
.x11a_c00231{left:698.100000px;}
.xe3_c00231{left:700.650000px;}
.x115_c00231{left:703.800000px;}
.x72_c00231{left:705.000000px;}
.x92_c00231{left:707.100000px;}
.x41_c00231{left:709.950000px;}
.xf3_c00231{left:711.450000px;}
.xad_c00231{left:714.450000px;}
.x42_c00231{left:722.850000px;}
.x9b_c00231{left:723.900000px;}
.xa4_c00231{left:725.250000px;}
.x85_c00231{left:726.300000px;}
.x25_c00231{left:729.450000px;}
.x64_c00231{left:731.250000px;}
.x5c_c00231{left:733.200000px;}
.xeb_c00231{left:735.000000px;}
.x11e_c00231{left:737.400000px;}
.xe4_c00231{left:738.750000px;}
.x14_c00231{left:739.950000px;}
.x2_c00231{left:742.350000px;}
.x111_c00231{left:743.550000px;}
.x73_c00231{left:747.900000px;}
.x65_c00231{left:748.950000px;}
.xc9_c00231{left:750.000000px;}
.x33_c00231{left:752.850000px;}
.x116_c00231{left:759.600000px;}
.xe5_c00231{left:761.100000px;}
.x3_c00231{left:762.150000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws3_c00231{word-spacing:-9.012346pt;}
.ws7_c00231{word-spacing:-7.830688pt;}
.ws9_c00231{word-spacing:-5.079365pt;}
.wsc_c00231{word-spacing:-5.003814pt;}
.ws1_c00231{word-spacing:-4.320988pt;}
.wsf_c00231{word-spacing:0.000000pt;}
.wsb_c00231{word-spacing:0.246914pt;}
.ws4_c00231{word-spacing:0.867209pt;}
.ws5_c00231{word-spacing:2.751323pt;}
.wse_c00231{word-spacing:6.900585pt;}
.wsa_c00231{word-spacing:7.738095pt;}
.ws2_c00231{word-spacing:9.444444pt;}
.ws6_c00231{word-spacing:10.158730pt;}
.ws0_c00231{word-spacing:10.493827pt;}
.ws8_c00231{word-spacing:10.718954pt;}
.wsd_c00231{word-spacing:11.461988pt;}
._0_c00231{width:21.798942pt;}
.fs1_c00231{font-size:48.000000pt;}
.fs0_c00231{font-size:53.333333pt;}
.y0_c00231{bottom:0.000000pt;}
.y2c_c00231{bottom:126.400000pt;}
.y2b_c00231{bottom:154.266667pt;}
.y2a_c00231{bottom:172.800000pt;}
.y29_c00231{bottom:190.000000pt;}
.y28_c00231{bottom:208.266667pt;}
.y27_c00231{bottom:226.133333pt;}
.y26_c00231{bottom:243.733333pt;}
.y25_c00231{bottom:261.066667pt;}
.y24_c00231{bottom:278.400000pt;}
.y23_c00231{bottom:296.933333pt;}
.y22_c00231{bottom:314.533333pt;}
.y21_c00231{bottom:332.000000pt;}
.y20_c00231{bottom:349.600000pt;}
.y1f_c00231{bottom:367.466667pt;}
.y1e_c00231{bottom:385.066667pt;}
.y1d_c00231{bottom:402.933333pt;}
.y1c_c00231{bottom:420.533333pt;}
.y1b_c00231{bottom:438.400000pt;}
.y1a_c00231{bottom:456.000000pt;}
.y19_c00231{bottom:473.600000pt;}
.y18_c00231{bottom:491.200000pt;}
.y17_c00231{bottom:509.066667pt;}
.y16_c00231{bottom:527.333333pt;}
.y15_c00231{bottom:545.066667pt;}
.y14_c00231{bottom:562.933333pt;}
.y13_c00231{bottom:580.533333pt;}
.y12_c00231{bottom:598.133333pt;}
.y11_c00231{bottom:616.000000pt;}
.y10_c00231{bottom:633.733333pt;}
.yf_c00231{bottom:651.600000pt;}
.ye_c00231{bottom:669.466667pt;}
.yd_c00231{bottom:686.400000pt;}
.yc_c00231{bottom:714.533333pt;}
.yb_c00231{bottom:732.800000pt;}
.ya_c00231{bottom:750.400000pt;}
.y9_c00231{bottom:768.266667pt;}
.y8_c00231{bottom:786.000000pt;}
.y7_c00231{bottom:803.866667pt;}
.y6_c00231{bottom:821.466667pt;}
.y5_c00231{bottom:838.000000pt;}
.y4_c00231{bottom:856.933333pt;}
.y3_c00231{bottom:874.266667pt;}
.y2_c00231{bottom:892.133333pt;}
.y1_c00231{bottom:926.666667pt;}
.h3_c00231{height:48.000000pt;}
.h2_c00231{height:53.333333pt;}
.h0_c00231{height:1037.119955pt;}
.h1_c00231{height:1037.333333pt;}
.w0_c00231{width:816.640056pt;}
.w1_c00231{width:816.666667pt;}
.x0_c00231{left:0.000000pt;}
.x4_c00231{left:90.266667pt;}
.x5d_c00231{left:92.000000pt;}
.x126_c00231{left:93.066667pt;}
.xae_c00231{left:102.933333pt;}
.x43_c00231{left:106.533333pt;}
.xd8_c00231{left:109.066667pt;}
.x109_c00231{left:110.666667pt;}
.x15_c00231{left:113.066667pt;}
.xdc_c00231{left:114.400000pt;}
.xca_c00231{left:115.333333pt;}
.x17_c00231{left:117.733333pt;}
.x7a_c00231{left:118.666667pt;}
.xc4_c00231{left:119.733333pt;}
.x34_c00231{left:121.333333pt;}
.x5_c00231{left:122.266667pt;}
.xfd_c00231{left:125.466667pt;}
.x66_c00231{left:128.133333pt;}
.xc3_c00231{left:131.466667pt;}
.x4f_c00231{left:133.466667pt;}
.xce_c00231{left:134.666667pt;}
.x18_c00231{left:135.600000pt;}
.xf4_c00231{left:136.933333pt;}
.x6_c00231{left:138.000000pt;}
.x86_c00231{left:140.000000pt;}
.x26_c00231{left:141.866667pt;}
.x67_c00231{left:143.200000pt;}
.x5e_c00231{left:144.533333pt;}
.x28_c00231{left:146.933333pt;}
.x100_c00231{left:148.133333pt;}
.x74_c00231{left:149.866667pt;}
.x11b_c00231{left:151.733333pt;}
.xcf_c00231{left:153.600000pt;}
.x16_c00231{left:154.933333pt;}
.xa5_c00231{left:156.000000pt;}
.xe6_c00231{left:157.466667pt;}
.x9c_c00231{left:160.266667pt;}
.x27_c00231{left:162.400000pt;}
.xec_c00231{left:164.666667pt;}
.x50_c00231{left:166.400000pt;}
.x35_c00231{left:167.733333pt;}
.xb5_c00231{left:168.666667pt;}
.x44_c00231{left:170.800000pt;}
.xd0_c00231{left:171.866667pt;}
.xf5_c00231{left:172.800000pt;}
.x11c_c00231{left:174.400000pt;}
.x9d_c00231{left:179.466667pt;}
.x19_c00231{left:181.066667pt;}
.xcb_c00231{left:183.200000pt;}
.x127_c00231{left:186.266667pt;}
.x7_c00231{left:187.333333pt;}
.x68_c00231{left:188.933333pt;}
.x87_c00231{left:192.400000pt;}
.xb6_c00231{left:194.533333pt;}
.x7c_c00231{left:195.733333pt;}
.xa6_c00231{left:196.933333pt;}
.x75_c00231{left:201.066667pt;}
.x7b_c00231{left:202.800000pt;}
.x10a_c00231{left:205.200000pt;}
.x45_c00231{left:209.466667pt;}
.xa7_c00231{left:210.400000pt;}
.x29_c00231{left:211.866667pt;}
.x69_c00231{left:214.266667pt;}
.x8_c00231{left:215.466667pt;}
.x11f_c00231{left:216.533333pt;}
.x36_c00231{left:218.266667pt;}
.x1a_c00231{left:220.133333pt;}
.x93_c00231{left:221.866667pt;}
.x76_c00231{left:223.733333pt;}
.xc5_c00231{left:224.666667pt;}
.xed_c00231{left:226.400000pt;}
.x46_c00231{left:227.733333pt;}
.xdd_c00231{left:230.266667pt;}
.xbc_c00231{left:231.333333pt;}
.xf6_c00231{left:232.266667pt;}
.x5f_c00231{left:233.466667pt;}
.xd9_c00231{left:234.533333pt;}
.x94_c00231{left:236.933333pt;}
.x9_c00231{left:238.133333pt;}
.xd1_c00231{left:239.733333pt;}
.x37_c00231{left:240.933333pt;}
.x120_c00231{left:245.333333pt;}
.x51_c00231{left:247.066667pt;}
.xcc_c00231{left:248.800000pt;}
.xbd_c00231{left:249.866667pt;}
.xde_c00231{left:252.000000pt;}
.x1b_c00231{left:256.933333pt;}
.xf7_c00231{left:258.533333pt;}
.xfe_c00231{left:259.600000pt;}
.x52_c00231{left:262.800000pt;}
.x7d_c00231{left:264.133333pt;}
.x112_c00231{left:265.866667pt;}
.x8e_c00231{left:268.533333pt;}
.x6a_c00231{left:271.200000pt;}
.x60_c00231{left:272.133333pt;}
.x77_c00231{left:273.600000pt;}
.x10e_c00231{left:274.533333pt;}
.x9e_c00231{left:275.466667pt;}
.x124_c00231{left:276.400000pt;}
.x121_c00231{left:278.000000pt;}
.x113_c00231{left:282.133333pt;}
.xf8_c00231{left:283.466667pt;}
.x47_c00231{left:284.666667pt;}
.x11d_c00231{left:287.066667pt;}
.x53_c00231{left:289.333333pt;}
.x7e_c00231{left:290.400000pt;}
.x105_c00231{left:292.266667pt;}
.xa_c00231{left:294.400000pt;}
.x38_c00231{left:296.266667pt;}
.x48_c00231{left:298.133333pt;}
.xa8_c00231{left:300.000000pt;}
.xc6_c00231{left:301.733333pt;}
.xd2_c00231{left:304.133333pt;}
.x1c_c00231{left:306.533333pt;}
.x88_c00231{left:309.733333pt;}
.x78_c00231{left:312.000000pt;}
.xb7_c00231{left:314.266667pt;}
.x2a_c00231{left:318.133333pt;}
.x54_c00231{left:319.733333pt;}
.x39_c00231{left:321.866667pt;}
.x10b_c00231{left:323.600000pt;}
.xaf_c00231{left:326.000000pt;}
.x1d_c00231{left:327.600000pt;}
.x9f_c00231{left:328.666667pt;}
.x101_c00231{left:330.266667pt;}
.x117_c00231{left:331.466667pt;}
.xa9_c00231{left:332.933333pt;}
.x79_c00231{left:336.266667pt;}
.xcd_c00231{left:337.733333pt;}
.xb8_c00231{left:339.600000pt;}
.xb_c00231{left:340.533333pt;}
.x6b_c00231{left:343.466667pt;}
.x3a_c00231{left:345.600000pt;}
.x2b_c00231{left:347.200000pt;}
.xee_c00231{left:349.600000pt;}
.xc_c00231{left:351.466667pt;}
.xff_c00231{left:353.333333pt;}
.xc7_c00231{left:354.533333pt;}
.x118_c00231{left:355.466667pt;}
.xbe_c00231{left:356.400000pt;}
.xb0_c00231{left:358.000000pt;}
.x6c_c00231{left:359.200000pt;}
.x49_c00231{left:360.266667pt;}
.x122_c00231{left:361.200000pt;}
.x89_c00231{left:363.466667pt;}
.x95_c00231{left:364.933333pt;}
.x128_c00231{left:366.533333pt;}
.x1_c00231{left:367.733333pt;}
.xe7_c00231{left:369.333333pt;}
.x6d_c00231{left:374.533333pt;}
.x55_c00231{left:376.666667pt;}
.x102_c00231{left:379.866667pt;}
.xaa_c00231{left:381.200000pt;}
.xb1_c00231{left:383.866667pt;}
.xd_c00231{left:384.800000pt;}
.x2c_c00231{left:387.200000pt;}
.x10c_c00231{left:388.533333pt;}
.xf9_c00231{left:389.733333pt;}
.x7f_c00231{left:391.200000pt;}
.x6e_c00231{left:392.800000pt;}
.x96_c00231{left:393.733333pt;}
.x4a_c00231{left:397.066667pt;}
.x8a_c00231{left:399.600000pt;}
.x1e_c00231{left:401.866667pt;}
.x56_c00231{left:402.933333pt;}
.xb9_c00231{left:404.666667pt;}
.xa0_c00231{left:406.133333pt;}
.xdf_c00231{left:408.400000pt;}
.xd3_c00231{left:410.000000pt;}
.x12b_c00231{left:411.200000pt;}
.x8f_c00231{left:412.533333pt;}
.x3b_c00231{left:413.466667pt;}
.x10f_c00231{left:414.400000pt;}
.x4b_c00231{left:416.266667pt;}
.x10d_c00231{left:417.600000pt;}
.xa1_c00231{left:424.000000pt;}
.x106_c00231{left:424.933333pt;}
.x2d_c00231{left:426.000000pt;}
.x1f_c00231{left:428.400000pt;}
.x103_c00231{left:431.066667pt;}
.x12c_c00231{left:432.666667pt;}
.x61_c00231{left:433.733333pt;}
.x125_c00231{left:435.466667pt;}
.xc8_c00231{left:436.400000pt;}
.x4c_c00231{left:438.666667pt;}
.xfa_c00231{left:441.600000pt;}
.xe0_c00231{left:442.666667pt;}
.x114_c00231{left:443.733333pt;}
.x8b_c00231{left:444.666667pt;}
.xef_c00231{left:446.133333pt;}
.xe8_c00231{left:448.400000pt;}
.xe_c00231{left:450.133333pt;}
.xa2_c00231{left:451.866667pt;}
.x90_c00231{left:456.666667pt;}
.xb2_c00231{left:458.133333pt;}
.xbf_c00231{left:460.000000pt;}
.x20_c00231{left:461.066667pt;}
.x2e_c00231{left:463.466667pt;}
.xd4_c00231{left:464.400000pt;}
.x6f_c00231{left:466.133333pt;}
.xab_c00231{left:468.266667pt;}
.x104_c00231{left:470.133333pt;}
.xfb_c00231{left:472.400000pt;}
.x129_c00231{left:474.666667pt;}
.x80_c00231{left:475.733333pt;}
.x123_c00231{left:477.066667pt;}
.xe1_c00231{left:478.133333pt;}
.x57_c00231{left:479.466667pt;}
.x3c_c00231{left:481.600000pt;}
.x2f_c00231{left:482.933333pt;}
.xf0_c00231{left:483.866667pt;}
.x8c_c00231{left:486.800000pt;}
.x62_c00231{left:489.466667pt;}
.xba_c00231{left:491.066667pt;}
.x97_c00231{left:492.933333pt;}
.xf_c00231{left:494.266667pt;}
.xa3_c00231{left:496.400000pt;}
.x12a_c00231{left:498.933333pt;}
.x21_c00231{left:500.400000pt;}
.x4d_c00231{left:504.266667pt;}
.xac_c00231{left:505.733333pt;}
.x3d_c00231{left:507.466667pt;}
.xf1_c00231{left:508.533333pt;}
.xc0_c00231{left:509.600000pt;}
.x119_c00231{left:512.400000pt;}
.x81_c00231{left:513.866667pt;}
.x10_c00231{left:514.800000pt;}
.x22_c00231{left:519.866667pt;}
.xbb_c00231{left:521.466667pt;}
.x3e_c00231{left:522.533333pt;}
.x58_c00231{left:530.000000pt;}
.x107_c00231{left:530.933333pt;}
.x30_c00231{left:532.800000pt;}
.x11_c00231{left:537.466667pt;}
.x82_c00231{left:539.466667pt;}
.xb3_c00231{left:542.133333pt;}
.x59_c00231{left:543.466667pt;}
.xe9_c00231{left:544.400000pt;}
.x23_c00231{left:545.733333pt;}
.xd5_c00231{left:547.600000pt;}
.x108_c00231{left:548.533333pt;}
.x31_c00231{left:550.133333pt;}
.x3f_c00231{left:552.666667pt;}
.x4e_c00231{left:554.133333pt;}
.x70_c00231{left:557.333333pt;}
.xd6_c00231{left:561.066667pt;}
.x98_c00231{left:564.400000pt;}
.xe2_c00231{left:566.800000pt;}
.x5a_c00231{left:568.800000pt;}
.x71_c00231{left:570.400000pt;}
.x110_c00231{left:574.533333pt;}
.xd7_c00231{left:577.333333pt;}
.xda_c00231{left:579.066667pt;}
.xc1_c00231{left:580.000000pt;}
.x99_c00231{left:582.000000pt;}
.xf2_c00231{left:583.466667pt;}
.xb4_c00231{left:586.000000pt;}
.x83_c00231{left:587.733333pt;}
.x5b_c00231{left:591.200000pt;}
.xea_c00231{left:596.133333pt;}
.x8d_c00231{left:597.733333pt;}
.x12_c00231{left:598.933333pt;}
.x63_c00231{left:600.400000pt;}
.x91_c00231{left:603.600000pt;}
.xc2_c00231{left:605.600000pt;}
.xfc_c00231{left:607.733333pt;}
.xdb_c00231{left:609.466667pt;}
.x32_c00231{left:610.666667pt;}
.x40_c00231{left:612.533333pt;}
.x13_c00231{left:614.266667pt;}
.x84_c00231{left:615.866667pt;}
.x9a_c00231{left:618.533333pt;}
.x24_c00231{left:619.600000pt;}
.x11a_c00231{left:620.533333pt;}
.xe3_c00231{left:622.800000pt;}
.x115_c00231{left:625.600000pt;}
.x72_c00231{left:626.666667pt;}
.x92_c00231{left:628.533333pt;}
.x41_c00231{left:631.066667pt;}
.xf3_c00231{left:632.400000pt;}
.xad_c00231{left:635.066667pt;}
.x42_c00231{left:642.533333pt;}
.x9b_c00231{left:643.466667pt;}
.xa4_c00231{left:644.666667pt;}
.x85_c00231{left:645.600000pt;}
.x25_c00231{left:648.400000pt;}
.x64_c00231{left:650.000000pt;}
.x5c_c00231{left:651.733333pt;}
.xeb_c00231{left:653.333333pt;}
.x11e_c00231{left:655.466667pt;}
.xe4_c00231{left:656.666667pt;}
.x14_c00231{left:657.733333pt;}
.x2_c00231{left:659.866667pt;}
.x111_c00231{left:660.933333pt;}
.x73_c00231{left:664.800000pt;}
.x65_c00231{left:665.733333pt;}
.xc9_c00231{left:666.666667pt;}
.x33_c00231{left:669.200000pt;}
.x116_c00231{left:675.200000pt;}
.xe5_c00231{left:676.533333pt;}
.x3_c00231{left:677.466667pt;}
}





/* 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_c00232 {
    display:none;
  }
  .loading-indicator_c00232.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00232 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_c00232 { 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_c00232" -> "#page-container .classname_c00232")
 */
.pf_c00232 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00232 { /* 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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00232 { /* 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_c00232 { /* 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_c00232 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00232 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00232 {overflow:visible;}
  }
}
.c_c00232 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00232 { /* 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_c00232:after { /* webkit #35443 */
  content: '';
}
.t_c00232:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00232 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 */
}
.__c00232 { /* 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_c00232 { /* info for Javascript */
  display:none;
}
.l_c00232 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00232 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00232 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00232: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_c00232 {
    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_c00232.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00232.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_c00232 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00232{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00232;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.000000;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;}
.m13_c00232{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m34_c00232{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m52_c00232{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00232{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m46_c00232{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m36_c00232{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m72_c00232{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00232{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mc_c00232{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m77_c00232{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m66_c00232{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00232{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00232{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m65_c00232{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00232{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m85_c00232{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00232{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00232{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00232{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00232{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m12_c00232{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m88_c00232{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6_c00232{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m57_c00232{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5_c00232{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m37_c00232{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3_c00232{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m33_c00232{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m15_c00232{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m61_c00232{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00232{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00232{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00232{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00232{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00232{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m22_c00232{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00232{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00232{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m50_c00232{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m28_c00232{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m83_c00232{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00232{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m86_c00232{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m16_c00232{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00232{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.me_c00232{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m59_c00232{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m64_c00232{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00232{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m42_c00232{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m41_c00232{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00232{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00232{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m26_c00232{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00232{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00232{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf_c00232{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00232{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m73_c00232{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00232{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00232{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00232{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00232{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m48_c00232{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.ma_c00232{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00232{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m60_c00232{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m80_c00232{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m45_c00232{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00232{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md_c00232{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00232{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00232{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m54_c00232{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m10_c00232{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00232{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m17_c00232{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00232{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m56_c00232{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00232{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m32_c00232{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00232{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m62_c00232{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m9_c00232{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00232{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00232{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m81_c00232{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m43_c00232{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m78_c00232{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m25_c00232{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m70_c00232{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m67_c00232{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m69_c00232{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m18_c00232{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m55_c00232{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m53_c00232{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00232{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m14_c00232{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00232{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m71_c00232{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00232{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m79_c00232{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00232{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00232{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00232{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00232{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m75_c00232{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00232{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m58_c00232{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m21_c00232{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29_c00232{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m23_c00232{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m31_c00232{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00232{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m30_c00232{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m84_c00232{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00232{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m76_c00232{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m19_c00232{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m44_c00232{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m27_c00232{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m51_c00232{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00232{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00232{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m39_c00232{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m20_c00232{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m47_c00232{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4_c00232{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00232{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00232{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m82_c00232{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m11_c00232{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00232{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m89_c00232{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m7_c00232{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00232{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m68_c00232{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m8_c00232{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m49_c00232{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00232{vertical-align:0.000000px;}
.ls0_c00232{letter-spacing:0.000000px;}
.sc__c00232{text-shadow:none;}
.sc0_c00232{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__c00232{-webkit-text-stroke:0px transparent;}
.sc0_c00232{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00232{word-spacing:-3.529412px;}
.ws3_c00232{word-spacing:0.000000px;}
.ws1_c00232{word-spacing:2.857143px;}
.ws0_c00232{word-spacing:79.117647px;}
.fc0_c00232{color:transparent;}
.fs0_c00232{font-size:60.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1d_c00232{bottom:460.500000px;}
.y1c_c00232{bottom:480.600000px;}
.y1b_c00232{bottom:500.700000px;}
.y1a_c00232{bottom:520.350000px;}
.y19_c00232{bottom:540.450000px;}
.y18_c00232{bottom:561.300000px;}
.y17_c00232{bottom:581.100000px;}
.y16_c00232{bottom:600.450000px;}
.y15_c00232{bottom:620.250000px;}
.y14_c00232{bottom:640.200000px;}
.y13_c00232{bottom:660.000000px;}
.y12_c00232{bottom:680.100000px;}
.y11_c00232{bottom:700.200000px;}
.y10_c00232{bottom:720.000000px;}
.yf_c00232{bottom:740.400000px;}
.ye_c00232{bottom:760.200000px;}
.yd_c00232{bottom:780.300000px;}
.yc_c00232{bottom:800.400000px;}
.yb_c00232{bottom:820.200000px;}
.ya_c00232{bottom:840.300000px;}
.y9_c00232{bottom:860.700000px;}
.y8_c00232{bottom:880.500000px;}
.y7_c00232{bottom:900.600000px;}
.y6_c00232{bottom:920.700000px;}
.y5_c00232{bottom:940.800000px;}
.y4_c00232{bottom:960.600000px;}
.y3_c00232{bottom:980.700000px;}
.y2_c00232{bottom:1000.500000px;}
.y1_c00232{bottom:1038.900000px;}
.h2_c00232{height:60.000000px;}
.h0_c00232{height:1166.759949px;}
.h1_c00232{height:1167.000000px;}
.w0_c00232{width:918.720063px;}
.w1_c00232{width:918.750000px;}
.x0_c00232{left:0.000000px;}
.xca_c00232{left:140.250000px;}
.x5f_c00232{left:141.300000px;}
.x17_c00232{left:142.650000px;}
.x1_c00232{left:145.500000px;}
.xd7_c00232{left:160.650000px;}
.x7a_c00232{left:164.550000px;}
.xbf_c00232{left:171.600000px;}
.x6d_c00232{left:172.800000px;}
.x3_c00232{left:174.300000px;}
.x51_c00232{left:182.550000px;}
.x44_c00232{left:183.750000px;}
.x33_c00232{left:185.700000px;}
.xc1_c00232{left:186.900000px;}
.x60_c00232{left:190.200000px;}
.x8e_c00232{left:196.800000px;}
.x24_c00232{left:199.350000px;}
.x4_c00232{left:201.000000px;}
.x52_c00232{left:202.350000px;}
.xc3_c00232{left:203.400000px;}
.xe2_c00232{left:209.700000px;}
.xf6_c00232{left:210.750000px;}
.x18_c00232{left:212.550000px;}
.x34_c00232{left:216.600000px;}
.x61_c00232{left:219.000000px;}
.xb8_c00232{left:221.550000px;}
.xcb_c00232{left:226.350000px;}
.xa3_c00232{left:227.400000px;}
.xa7_c00232{left:229.050000px;}
.xf7_c00232{left:230.550000px;}
.x8f_c00232{left:234.900000px;}
.x96_c00232{left:236.550000px;}
.x9_c00232{left:237.600000px;}
.x6e_c00232{left:239.100000px;}
.xee_c00232{left:240.750000px;}
.xae_c00232{left:243.600000px;}
.xc2_c00232{left:244.800000px;}
.xa4_c00232{left:248.250000px;}
.x35_c00232{left:251.550000px;}
.x97_c00232{left:254.550000px;}
.xc4_c00232{left:256.350000px;}
.xa_c00232{left:258.450000px;}
.xb9_c00232{left:260.100000px;}
.xa5_c00232{left:262.950000px;}
.x62_c00232{left:264.000000px;}
.x25_c00232{left:265.650000px;}
.x5_c00232{left:267.300000px;}
.xef_c00232{left:269.250000px;}
.x53_c00232{left:272.850000px;}
.x36_c00232{left:275.250000px;}
.xb_c00232{left:276.750000px;}
.xba_c00232{left:279.900000px;}
.x98_c00232{left:281.850000px;}
.xd8_c00232{left:285.300000px;}
.x45_c00232{left:288.150000px;}
.xaf_c00232{left:289.650000px;}
.xc0_c00232{left:293.550000px;}
.x19_c00232{left:296.850000px;}
.x26_c00232{left:298.350000px;}
.xa6_c00232{left:300.000000px;}
.x46_c00232{left:302.550000px;}
.xd2_c00232{left:304.500000px;}
.xd9_c00232{left:306.150000px;}
.x37_c00232{left:307.350000px;}
.x6_c00232{left:309.450000px;}
.x83_c00232{left:311.700000px;}
.xc_c00232{left:315.600000px;}
.xeb_c00232{left:321.150000px;}
.xa8_c00232{left:326.250000px;}
.x7b_c00232{left:327.600000px;}
.x99_c00232{left:330.150000px;}
.x54_c00232{left:331.950000px;}
.x1a_c00232{left:333.600000px;}
.xda_c00232{left:334.950000px;}
.x63_c00232{left:338.850000px;}
.xcc_c00232{left:342.300000px;}
.x38_c00232{left:343.350000px;}
.xb0_c00232{left:346.950000px;}
.x6f_c00232{left:348.600000px;}
.x1b_c00232{left:350.550000px;}
.x84_c00232{left:353.100000px;}
.x7_c00232{left:354.150000px;}
.x27_c00232{left:357.750000px;}
.x7c_c00232{left:359.250000px;}
.x70_c00232{left:364.800000px;}
.x9a_c00232{left:365.850000px;}
.xb1_c00232{left:368.250000px;}
.xe3_c00232{left:369.600000px;}
.xd_c00232{left:372.150000px;}
.x55_c00232{left:374.400000px;}
.xc5_c00232{left:376.800000px;}
.x9b_c00232{left:380.550000px;}
.x64_c00232{left:383.850000px;}
.xf8_c00232{left:385.050000px;}
.x39_c00232{left:386.550000px;}
.xe_c00232{left:389.100000px;}
.xb2_c00232{left:390.600000px;}
.x8_c00232{left:393.000000px;}
.x1c_c00232{left:398.100000px;}
.xbb_c00232{left:400.200000px;}
.xcd_c00232{left:403.200000px;}
.x90_c00232{left:404.850000px;}
.x47_c00232{left:406.200000px;}
.x3a_c00232{left:409.950000px;}
.xc6_c00232{left:411.000000px;}
.x1d_c00232{left:412.500000px;}
.xe4_c00232{left:413.850000px;}
.xd3_c00232{left:417.150000px;}
.xb3_c00232{left:418.650000px;}
.x28_c00232{left:420.300000px;}
.x9c_c00232{left:423.450000px;}
.x71_c00232{left:426.000000px;}
.xdb_c00232{left:427.800000px;}
.xf_c00232{left:429.450000px;}
.xf9_c00232{left:430.500000px;}
.xce_c00232{left:432.000000px;}
.x56_c00232{left:434.550000px;}
.x85_c00232{left:436.350000px;}
.xf0_c00232{left:438.450000px;}
.x9d_c00232{left:441.150000px;}
.x2_c00232{left:442.200000px;}
.xdc_c00232{left:445.500000px;}
.xbc_c00232{left:447.750000px;}
.x48_c00232{left:449.400000px;}
.x65_c00232{left:452.550000px;}
.x72_c00232{left:454.050000px;}
.x10_c00232{left:455.700000px;}
.xec_c00232{left:461.250000px;}
.x3b_c00232{left:462.450000px;}
.x57_c00232{left:463.650000px;}
.x29_c00232{left:467.850000px;}
.xdd_c00232{left:472.800000px;}
.x91_c00232{left:475.050000px;}
.x9e_c00232{left:476.100000px;}
.xe5_c00232{left:484.050000px;}
.xb4_c00232{left:485.250000px;}
.xd4_c00232{left:486.300000px;}
.x49_c00232{left:490.050000px;}
.xf1_c00232{left:491.700000px;}
.xc7_c00232{left:492.750000px;}
.x86_c00232{left:494.250000px;}
.x92_c00232{left:497.400000px;}
.x1e_c00232{left:499.200000px;}
.x3c_c00232{left:502.800000px;}
.x7d_c00232{left:504.000000px;}
.xb5_c00232{left:506.550000px;}
.x4a_c00232{left:508.050000px;}
.xcf_c00232{left:509.100000px;}
.xc8_c00232{left:512.550000px;}
.x87_c00232{left:513.750000px;}
.x2a_c00232{left:515.700000px;}
.x1f_c00232{left:520.800000px;}
.x11_c00232{left:522.000000px;}
.x66_c00232{left:523.800000px;}
.x4b_c00232{left:528.600000px;}
.x58_c00232{left:530.250000px;}
.x88_c00232{left:531.450000px;}
.x2b_c00232{left:534.750000px;}
.x67_c00232{left:536.100000px;}
.x3d_c00232{left:539.100000px;}
.x73_c00232{left:540.150000px;}
.x7e_c00232{left:544.650000px;}
.xe6_c00232{left:548.850000px;}
.x9f_c00232{left:550.950000px;}
.xfa_c00232{left:553.650000px;}
.x74_c00232{left:557.400000px;}
.x59_c00232{left:559.050000px;}
.x89_c00232{left:560.550000px;}
.xd0_c00232{left:564.900000px;}
.xed_c00232{left:572.850000px;}
.xa9_c00232{left:573.900000px;}
.xde_c00232{left:576.450000px;}
.x93_c00232{left:577.650000px;}
.x2c_c00232{left:580.050000px;}
.x12_c00232{left:585.300000px;}
.x20_c00232{left:588.150000px;}
.xaa_c00232{left:591.600000px;}
.x3e_c00232{left:595.200000px;}
.xdf_c00232{left:596.250000px;}
.x68_c00232{left:598.800000px;}
.x2d_c00232{left:601.950000px;}
.x8a_c00232{left:604.050000px;}
.x5a_c00232{left:610.500000px;}
.x4c_c00232{left:612.900000px;}
.x13_c00232{left:617.400000px;}
.x7f_c00232{left:619.500000px;}
.x8b_c00232{left:622.050000px;}
.xe0_c00232{left:624.750000px;}
.x69_c00232{left:626.550000px;}
.xa0_c00232{left:627.600000px;}
.x21_c00232{left:628.800000px;}
.xab_c00232{left:630.450000px;}
.xe7_c00232{left:633.000000px;}
.x75_c00232{left:635.100000px;}
.x3f_c00232{left:636.300000px;}
.xb6_c00232{left:641.850000px;}
.xf2_c00232{left:645.450000px;}
.x2e_c00232{left:647.700000px;}
.xd1_c00232{left:651.300000px;}
.x5b_c00232{left:654.000000px;}
.xa1_c00232{left:660.750000px;}
.xc9_c00232{left:665.100000px;}
.x76_c00232{left:666.450000px;}
.x40_c00232{left:667.950000px;}
.x2f_c00232{left:670.350000px;}
.x5c_c00232{left:672.000000px;}
.x22_c00232{left:673.500000px;}
.xf4_c00232{left:675.300000px;}
.xf3_c00232{left:681.150000px;}
.x8c_c00232{left:685.350000px;}
.x94_c00232{left:688.500000px;}
.x4d_c00232{left:689.550000px;}
.x30_c00232{left:699.150000px;}
.xd5_c00232{left:702.900000px;}
.x80_c00232{left:704.100000px;}
.xe8_c00232{left:708.600000px;}
.x8d_c00232{left:712.050000px;}
.x14_c00232{left:713.550000px;}
.xb7_c00232{left:716.400000px;}
.x77_c00232{left:717.900000px;}
.x6a_c00232{left:719.400000px;}
.xf5_c00232{left:720.600000px;}
.x4e_c00232{left:722.250000px;}
.x23_c00232{left:723.900000px;}
.xbd_c00232{left:727.800000px;}
.x41_c00232{left:730.950000px;}
.x78_c00232{left:735.900000px;}
.x6b_c00232{left:737.100000px;}
.xac_c00232{left:739.200000px;}
.x81_c00232{left:740.400000px;}
.x15_c00232{left:743.850000px;}
.x5d_c00232{left:746.850000px;}
.x4f_c00232{left:748.500000px;}
.xe9_c00232{left:751.800000px;}
.x31_c00232{left:757.050000px;}
.xbe_c00232{left:760.200000px;}
.x95_c00232{left:761.550000px;}
.x42_c00232{left:763.350000px;}
.x79_c00232{left:766.800000px;}
.xea_c00232{left:771.900000px;}
.x6c_c00232{left:774.150000px;}
.x16_c00232{left:775.500000px;}
.xd6_c00232{left:777.750000px;}
.x50_c00232{left:779.100000px;}
.xa2_c00232{left:782.100000px;}
.x82_c00232{left:785.700000px;}
.xad_c00232{left:789.300000px;}
.x43_c00232{left:794.700000px;}
.xe1_c00232{left:795.750000px;}
.x5e_c00232{left:797.250000px;}
.x32_c00232{left:799.200000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws2_c00232{word-spacing:-3.137255pt;}
.ws3_c00232{word-spacing:0.000000pt;}
.ws1_c00232{word-spacing:2.539683pt;}
.ws0_c00232{word-spacing:70.326797pt;}
.fs0_c00232{font-size:53.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y1d_c00232{bottom:409.333333pt;}
.y1c_c00232{bottom:427.200000pt;}
.y1b_c00232{bottom:445.066667pt;}
.y1a_c00232{bottom:462.533333pt;}
.y19_c00232{bottom:480.400000pt;}
.y18_c00232{bottom:498.933333pt;}
.y17_c00232{bottom:516.533333pt;}
.y16_c00232{bottom:533.733333pt;}
.y15_c00232{bottom:551.333333pt;}
.y14_c00232{bottom:569.066667pt;}
.y13_c00232{bottom:586.666667pt;}
.y12_c00232{bottom:604.533333pt;}
.y11_c00232{bottom:622.400000pt;}
.y10_c00232{bottom:640.000000pt;}
.yf_c00232{bottom:658.133333pt;}
.ye_c00232{bottom:675.733333pt;}
.yd_c00232{bottom:693.600000pt;}
.yc_c00232{bottom:711.466667pt;}
.yb_c00232{bottom:729.066667pt;}
.ya_c00232{bottom:746.933333pt;}
.y9_c00232{bottom:765.066667pt;}
.y8_c00232{bottom:782.666667pt;}
.y7_c00232{bottom:800.533333pt;}
.y6_c00232{bottom:818.400000pt;}
.y5_c00232{bottom:836.266667pt;}
.y4_c00232{bottom:853.866667pt;}
.y3_c00232{bottom:871.733333pt;}
.y2_c00232{bottom:889.333333pt;}
.y1_c00232{bottom:923.466667pt;}
.h2_c00232{height:53.333333pt;}
.h0_c00232{height:1037.119955pt;}
.h1_c00232{height:1037.333333pt;}
.w0_c00232{width:816.640056pt;}
.w1_c00232{width:816.666667pt;}
.x0_c00232{left:0.000000pt;}
.xca_c00232{left:124.666667pt;}
.x5f_c00232{left:125.600000pt;}
.x17_c00232{left:126.800000pt;}
.x1_c00232{left:129.333333pt;}
.xd7_c00232{left:142.800000pt;}
.x7a_c00232{left:146.266667pt;}
.xbf_c00232{left:152.533333pt;}
.x6d_c00232{left:153.600000pt;}
.x3_c00232{left:154.933333pt;}
.x51_c00232{left:162.266667pt;}
.x44_c00232{left:163.333333pt;}
.x33_c00232{left:165.066667pt;}
.xc1_c00232{left:166.133333pt;}
.x60_c00232{left:169.066667pt;}
.x8e_c00232{left:174.933333pt;}
.x24_c00232{left:177.200000pt;}
.x4_c00232{left:178.666667pt;}
.x52_c00232{left:179.866667pt;}
.xc3_c00232{left:180.800000pt;}
.xe2_c00232{left:186.400000pt;}
.xf6_c00232{left:187.333333pt;}
.x18_c00232{left:188.933333pt;}
.x34_c00232{left:192.533333pt;}
.x61_c00232{left:194.666667pt;}
.xb8_c00232{left:196.933333pt;}
.xcb_c00232{left:201.200000pt;}
.xa3_c00232{left:202.133333pt;}
.xa7_c00232{left:203.600000pt;}
.xf7_c00232{left:204.933333pt;}
.x8f_c00232{left:208.800000pt;}
.x96_c00232{left:210.266667pt;}
.x9_c00232{left:211.200000pt;}
.x6e_c00232{left:212.533333pt;}
.xee_c00232{left:214.000000pt;}
.xae_c00232{left:216.533333pt;}
.xc2_c00232{left:217.600000pt;}
.xa4_c00232{left:220.666667pt;}
.x35_c00232{left:223.600000pt;}
.x97_c00232{left:226.266667pt;}
.xc4_c00232{left:227.866667pt;}
.xa_c00232{left:229.733333pt;}
.xb9_c00232{left:231.200000pt;}
.xa5_c00232{left:233.733333pt;}
.x62_c00232{left:234.666667pt;}
.x25_c00232{left:236.133333pt;}
.x5_c00232{left:237.600000pt;}
.xef_c00232{left:239.333333pt;}
.x53_c00232{left:242.533333pt;}
.x36_c00232{left:244.666667pt;}
.xb_c00232{left:246.000000pt;}
.xba_c00232{left:248.800000pt;}
.x98_c00232{left:250.533333pt;}
.xd8_c00232{left:253.600000pt;}
.x45_c00232{left:256.133333pt;}
.xaf_c00232{left:257.466667pt;}
.xc0_c00232{left:260.933333pt;}
.x19_c00232{left:263.866667pt;}
.x26_c00232{left:265.200000pt;}
.xa6_c00232{left:266.666667pt;}
.x46_c00232{left:268.933333pt;}
.xd2_c00232{left:270.666667pt;}
.xd9_c00232{left:272.133333pt;}
.x37_c00232{left:273.200000pt;}
.x6_c00232{left:275.066667pt;}
.x83_c00232{left:277.066667pt;}
.xc_c00232{left:280.533333pt;}
.xeb_c00232{left:285.466667pt;}
.xa8_c00232{left:290.000000pt;}
.x7b_c00232{left:291.200000pt;}
.x99_c00232{left:293.466667pt;}
.x54_c00232{left:295.066667pt;}
.x1a_c00232{left:296.533333pt;}
.xda_c00232{left:297.733333pt;}
.x63_c00232{left:301.200000pt;}
.xcc_c00232{left:304.266667pt;}
.x38_c00232{left:305.200000pt;}
.xb0_c00232{left:308.400000pt;}
.x6f_c00232{left:309.866667pt;}
.x1b_c00232{left:311.600000pt;}
.x84_c00232{left:313.866667pt;}
.x7_c00232{left:314.800000pt;}
.x27_c00232{left:318.000000pt;}
.x7c_c00232{left:319.333333pt;}
.x70_c00232{left:324.266667pt;}
.x9a_c00232{left:325.200000pt;}
.xb1_c00232{left:327.333333pt;}
.xe3_c00232{left:328.533333pt;}
.xd_c00232{left:330.800000pt;}
.x55_c00232{left:332.800000pt;}
.xc5_c00232{left:334.933333pt;}
.x9b_c00232{left:338.266667pt;}
.x64_c00232{left:341.200000pt;}
.xf8_c00232{left:342.266667pt;}
.x39_c00232{left:343.600000pt;}
.xe_c00232{left:345.866667pt;}
.xb2_c00232{left:347.200000pt;}
.x8_c00232{left:349.333333pt;}
.x1c_c00232{left:353.866667pt;}
.xbb_c00232{left:355.733333pt;}
.xcd_c00232{left:358.400000pt;}
.x90_c00232{left:359.866667pt;}
.x47_c00232{left:361.066667pt;}
.x3a_c00232{left:364.400000pt;}
.xc6_c00232{left:365.333333pt;}
.x1d_c00232{left:366.666667pt;}
.xe4_c00232{left:367.866667pt;}
.xd3_c00232{left:370.800000pt;}
.xb3_c00232{left:372.133333pt;}
.x28_c00232{left:373.600000pt;}
.x9c_c00232{left:376.400000pt;}
.x71_c00232{left:378.666667pt;}
.xdb_c00232{left:380.266667pt;}
.xf_c00232{left:381.733333pt;}
.xf9_c00232{left:382.666667pt;}
.xce_c00232{left:384.000000pt;}
.x56_c00232{left:386.266667pt;}
.x85_c00232{left:387.866667pt;}
.xf0_c00232{left:389.733333pt;}
.x9d_c00232{left:392.133333pt;}
.x2_c00232{left:393.066667pt;}
.xdc_c00232{left:396.000000pt;}
.xbc_c00232{left:398.000000pt;}
.x48_c00232{left:399.466667pt;}
.x65_c00232{left:402.266667pt;}
.x72_c00232{left:403.600000pt;}
.x10_c00232{left:405.066667pt;}
.xec_c00232{left:410.000000pt;}
.x3b_c00232{left:411.066667pt;}
.x57_c00232{left:412.133333pt;}
.x29_c00232{left:415.866667pt;}
.xdd_c00232{left:420.266667pt;}
.x91_c00232{left:422.266667pt;}
.x9e_c00232{left:423.200000pt;}
.xe5_c00232{left:430.266667pt;}
.xb4_c00232{left:431.333333pt;}
.xd4_c00232{left:432.266667pt;}
.x49_c00232{left:435.600000pt;}
.xf1_c00232{left:437.066667pt;}
.xc7_c00232{left:438.000000pt;}
.x86_c00232{left:439.333333pt;}
.x92_c00232{left:442.133333pt;}
.x1e_c00232{left:443.733333pt;}
.x3c_c00232{left:446.933333pt;}
.x7d_c00232{left:448.000000pt;}
.xb5_c00232{left:450.266667pt;}
.x4a_c00232{left:451.600000pt;}
.xcf_c00232{left:452.533333pt;}
.xc8_c00232{left:455.600000pt;}
.x87_c00232{left:456.666667pt;}
.x2a_c00232{left:458.400000pt;}
.x1f_c00232{left:462.933333pt;}
.x11_c00232{left:464.000000pt;}
.x66_c00232{left:465.600000pt;}
.x4b_c00232{left:469.866667pt;}
.x58_c00232{left:471.333333pt;}
.x88_c00232{left:472.400000pt;}
.x2b_c00232{left:475.333333pt;}
.x67_c00232{left:476.533333pt;}
.x3d_c00232{left:479.200000pt;}
.x73_c00232{left:480.133333pt;}
.x7e_c00232{left:484.133333pt;}
.xe6_c00232{left:487.866667pt;}
.x9f_c00232{left:489.733333pt;}
.xfa_c00232{left:492.133333pt;}
.x74_c00232{left:495.466667pt;}
.x59_c00232{left:496.933333pt;}
.x89_c00232{left:498.266667pt;}
.xd0_c00232{left:502.133333pt;}
.xed_c00232{left:509.200000pt;}
.xa9_c00232{left:510.133333pt;}
.xde_c00232{left:512.400000pt;}
.x93_c00232{left:513.466667pt;}
.x2c_c00232{left:515.600000pt;}
.x12_c00232{left:520.266667pt;}
.x20_c00232{left:522.800000pt;}
.xaa_c00232{left:525.866667pt;}
.x3e_c00232{left:529.066667pt;}
.xdf_c00232{left:530.000000pt;}
.x68_c00232{left:532.266667pt;}
.x2d_c00232{left:535.066667pt;}
.x8a_c00232{left:536.933333pt;}
.x5a_c00232{left:542.666667pt;}
.x4c_c00232{left:544.800000pt;}
.x13_c00232{left:548.800000pt;}
.x7f_c00232{left:550.666667pt;}
.x8b_c00232{left:552.933333pt;}
.xe0_c00232{left:555.333333pt;}
.x69_c00232{left:556.933333pt;}
.xa0_c00232{left:557.866667pt;}
.x21_c00232{left:558.933333pt;}
.xab_c00232{left:560.400000pt;}
.xe7_c00232{left:562.666667pt;}
.x75_c00232{left:564.533333pt;}
.x3f_c00232{left:565.600000pt;}
.xb6_c00232{left:570.533333pt;}
.xf2_c00232{left:573.733333pt;}
.x2e_c00232{left:575.733333pt;}
.xd1_c00232{left:578.933333pt;}
.x5b_c00232{left:581.333333pt;}
.xa1_c00232{left:587.333333pt;}
.xc9_c00232{left:591.200000pt;}
.x76_c00232{left:592.400000pt;}
.x40_c00232{left:593.733333pt;}
.x2f_c00232{left:595.866667pt;}
.x5c_c00232{left:597.333333pt;}
.x22_c00232{left:598.666667pt;}
.xf4_c00232{left:600.266667pt;}
.xf3_c00232{left:605.466667pt;}
.x8c_c00232{left:609.200000pt;}
.x94_c00232{left:612.000000pt;}
.x4d_c00232{left:612.933333pt;}
.x30_c00232{left:621.466667pt;}
.xd5_c00232{left:624.800000pt;}
.x80_c00232{left:625.866667pt;}
.xe8_c00232{left:629.866667pt;}
.x8d_c00232{left:632.933333pt;}
.x14_c00232{left:634.266667pt;}
.xb7_c00232{left:636.800000pt;}
.x77_c00232{left:638.133333pt;}
.x6a_c00232{left:639.466667pt;}
.xf5_c00232{left:640.533333pt;}
.x4e_c00232{left:642.000000pt;}
.x23_c00232{left:643.466667pt;}
.xbd_c00232{left:646.933333pt;}
.x41_c00232{left:649.733333pt;}
.x78_c00232{left:654.133333pt;}
.x6b_c00232{left:655.200000pt;}
.xac_c00232{left:657.066667pt;}
.x81_c00232{left:658.133333pt;}
.x15_c00232{left:661.200000pt;}
.x5d_c00232{left:663.866667pt;}
.x4f_c00232{left:665.333333pt;}
.xe9_c00232{left:668.266667pt;}
.x31_c00232{left:672.933333pt;}
.xbe_c00232{left:675.733333pt;}
.x95_c00232{left:676.933333pt;}
.x42_c00232{left:678.533333pt;}
.x79_c00232{left:681.600000pt;}
.xea_c00232{left:686.133333pt;}
.x6c_c00232{left:688.133333pt;}
.x16_c00232{left:689.333333pt;}
.xd6_c00232{left:691.333333pt;}
.x50_c00232{left:692.533333pt;}
.xa2_c00232{left:695.200000pt;}
.x82_c00232{left:698.400000pt;}
.xad_c00232{left:701.600000pt;}
.x43_c00232{left:706.400000pt;}
.xe1_c00232{left:707.333333pt;}
.x5e_c00232{left:708.666667pt;}
.x32_c00232{left:710.400000pt;}
}





/* 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_c00233 {
    display:none;
  }
  .loading-indicator_c00233.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00233 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_c00233 { 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_c00233" -> "#page-container .classname_c00233")
 */
.pf_c00233 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00233 { /* 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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00233 { /* 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_c00233 { /* 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_c00233 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00233 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00233 {overflow:visible;}
  }
}
.c_c00233 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00233 { /* 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_c00233:after { /* webkit #35443 */
  content: '';
}
.t_c00233:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00233 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 */
}
.__c00233 { /* 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_c00233 { /* info for Javascript */
  display:none;
}
.l_c00233 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00233 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00233 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00233: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_c00233 {
    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_c00233.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00233.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_c00233 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00233{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00233;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.000000;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;}
.m2c_c00233{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00233{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00233{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m30_c00233{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00233{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3_c00233{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m23_c00233{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m21_c00233{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m13_c00233{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md_c00233{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00233{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00233{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10_c00233{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00233{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2_c00233{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00233{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25_c00233{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4_c00233{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m27_c00233{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m22_c00233{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m29_c00233{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353000,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00233{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.m28_c00233{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m24_c00233{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.m26_c00233{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m20_c00233{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c00233{vertical-align:0.000000px;}
.ls0_c00233{letter-spacing:0.000000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{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__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00233{word-spacing:-30.000000px;}
.ws0_c00233{word-spacing:-18.000000px;}
.ws2_c00233{word-spacing:0.000000px;}
._2_c00233{margin-left:-220.000000px;}
._0_c00233{margin-left:-169.125000px;}
._1_c00233{margin-left:-48.576923px;}
.fc0_c00233{color:transparent;}
.fs3_c00233{font-size:30.000000px;}
.fs0_c00233{font-size:36.000000px;}
.fs2_c00233{font-size:42.000000px;}
.fs4_c00233{font-size:48.000000px;}
.fs6_c00233{font-size:60.000000px;}
.fs1_c00233{font-size:102.000000px;}
.fs5_c00233{font-size:288.000000px;}
.y0_c00233{bottom:0.000000px;}
.yc_c00233{bottom:57.600000px;}
.y7_c00233{bottom:86.400000px;}
.y8_c00233{bottom:98.250000px;}
.y2_c00233{bottom:114.150000px;}
.y1_c00233{bottom:115.200000px;}
.y9_c00233{bottom:120.300000px;}
.ya_c00233{bottom:133.500000px;}
.yb_c00233{bottom:156.150000px;}
.y3_c00233{bottom:166.350000px;}
.y5_c00233{bottom:169.200000px;}
.y6_c00233{bottom:181.800000px;}
.ye_c00233{bottom:188.250000px;}
.y4_c00233{bottom:194.100000px;}
.yd_c00233{bottom:221.700000px;}
.yf_c00233{bottom:619.500000px;}
.h5_c00233{height:30.000000px;}
.h2_c00233{height:36.000000px;}
.h4_c00233{height:42.000000px;}
.h6_c00233{height:48.000000px;}
.h8_c00233{height:60.000000px;}
.h3_c00233{height:102.000000px;}
.h7_c00233{height:288.000000px;}
.h0_c00233{height:1166.759949px;}
.h1_c00233{height:1167.000000px;}
.w0_c00233{width:918.720063px;}
.w1_c00233{width:918.750000px;}
.x0_c00233{left:0.000000px;}
.x2c_c00233{left:44.700000px;}
.x40_c00233{left:48.300000px;}
.x3f_c00233{left:57.600000px;}
.x3e_c00233{left:69.900000px;}
.x28_c00233{left:84.900000px;}
.x25_c00233{left:95.400000px;}
.x3d_c00233{left:108.000000px;}
.x2b_c00233{left:113.250000px;}
.x24_c00233{left:121.350000px;}
.x1d_c00233{left:127.050000px;}
.x1c_c00233{left:128.550000px;}
.x2a_c00233{left:141.750000px;}
.x3c_c00233{left:160.200000px;}
.x23_c00233{left:163.800000px;}
.x29_c00233{left:166.200000px;}
.x27_c00233{left:174.900000px;}
.x1b_c00233{left:182.850000px;}
.x22_c00233{left:196.500000px;}
.x21_c00233{left:225.000000px;}
.x26_c00233{left:239.400000px;}
.x20_c00233{left:277.200000px;}
.x3b_c00233{left:279.750000px;}
.x1f_c00233{left:284.400000px;}
.x3a_c00233{left:295.200000px;}
.x1e_c00233{left:312.900000px;}
.x39_c00233{left:329.700000px;}
.x38_c00233{left:338.400000px;}
.x37_c00233{left:348.150000px;}
.x18_c00233{left:356.550000px;}
.x36_c00233{left:360.750000px;}
.x17_c00233{left:365.550000px;}
.x16_c00233{left:374.850000px;}
.x1a_c00233{left:384.150000px;}
.x19_c00233{left:390.300000px;}
.x15_c00233{left:391.350000px;}
.x14_c00233{left:400.650000px;}
.x13_c00233{left:412.200000px;}
.x12_c00233{left:419.100000px;}
.xc_c00233{left:477.000000px;}
.xb_c00233{left:499.350000px;}
.x35_c00233{left:505.500000px;}
.xa_c00233{left:519.150000px;}
.x34_c00233{left:531.450000px;}
.x33_c00233{left:541.500000px;}
.x9_c00233{left:563.100000px;}
.x32_c00233{left:576.750000px;}
.x8_c00233{left:585.450000px;}
.x7_c00233{left:607.050000px;}
.x6_c00233{left:628.950000px;}
.x31_c00233{left:635.400000px;}
.x30_c00233{left:645.150000px;}
.x2f_c00233{left:653.400000px;}
.x2e_c00233{left:670.050000px;}
.x5_c00233{left:673.800000px;}
.x4_c00233{left:695.400000px;}
.x11_c00233{left:700.500000px;}
.x2d_c00233{left:716.100000px;}
.x3_c00233{left:717.300000px;}
.xf_c00233{left:739.350000px;}
.x2_c00233{left:741.000000px;}
.x1_c00233{left:762.900000px;}
.xe_c00233{left:767.850000px;}
.x10_c00233{left:778.650000px;}
.x45_c00233{left:810.000000px;}
.x44_c00233{left:814.650000px;}
.x43_c00233{left:820.800000px;}
.xd_c00233{left:825.450000px;}
.x42_c00233{left:838.800000px;}
.x41_c00233{left:847.500000px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls0_c00233{letter-spacing:0.000000pt;}
.ws1_c00233{word-spacing:-26.666667pt;}
.ws0_c00233{word-spacing:-16.000000pt;}
.ws2_c00233{word-spacing:0.000000pt;}
._2_c00233{margin-left:-195.555556pt;}
._0_c00233{margin-left:-150.333333pt;}
._1_c00233{margin-left:-43.179487pt;}
.fs3_c00233{font-size:26.666667pt;}
.fs0_c00233{font-size:32.000000pt;}
.fs2_c00233{font-size:37.333333pt;}
.fs4_c00233{font-size:42.666667pt;}
.fs6_c00233{font-size:53.333333pt;}
.fs1_c00233{font-size:90.666667pt;}
.fs5_c00233{font-size:256.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.yc_c00233{bottom:51.200000pt;}
.y7_c00233{bottom:76.800000pt;}
.y8_c00233{bottom:87.333333pt;}
.y2_c00233{bottom:101.466667pt;}
.y1_c00233{bottom:102.400000pt;}
.y9_c00233{bottom:106.933333pt;}
.ya_c00233{bottom:118.666667pt;}
.yb_c00233{bottom:138.800000pt;}
.y3_c00233{bottom:147.866667pt;}
.y5_c00233{bottom:150.400000pt;}
.y6_c00233{bottom:161.600000pt;}
.ye_c00233{bottom:167.333333pt;}
.y4_c00233{bottom:172.533333pt;}
.yd_c00233{bottom:197.066667pt;}
.yf_c00233{bottom:550.666667pt;}
.h5_c00233{height:26.666667pt;}
.h2_c00233{height:32.000000pt;}
.h4_c00233{height:37.333333pt;}
.h6_c00233{height:42.666667pt;}
.h8_c00233{height:53.333333pt;}
.h3_c00233{height:90.666667pt;}
.h7_c00233{height:256.000000pt;}
.h0_c00233{height:1037.119955pt;}
.h1_c00233{height:1037.333333pt;}
.w0_c00233{width:816.640056pt;}
.w1_c00233{width:816.666667pt;}
.x0_c00233{left:0.000000pt;}
.x2c_c00233{left:39.733333pt;}
.x40_c00233{left:42.933333pt;}
.x3f_c00233{left:51.200000pt;}
.x3e_c00233{left:62.133333pt;}
.x28_c00233{left:75.466667pt;}
.x25_c00233{left:84.800000pt;}
.x3d_c00233{left:96.000000pt;}
.x2b_c00233{left:100.666667pt;}
.x24_c00233{left:107.866667pt;}
.x1d_c00233{left:112.933333pt;}
.x1c_c00233{left:114.266667pt;}
.x2a_c00233{left:126.000000pt;}
.x3c_c00233{left:142.400000pt;}
.x23_c00233{left:145.600000pt;}
.x29_c00233{left:147.733333pt;}
.x27_c00233{left:155.466667pt;}
.x1b_c00233{left:162.533333pt;}
.x22_c00233{left:174.666667pt;}
.x21_c00233{left:200.000000pt;}
.x26_c00233{left:212.800000pt;}
.x20_c00233{left:246.400000pt;}
.x3b_c00233{left:248.666667pt;}
.x1f_c00233{left:252.800000pt;}
.x3a_c00233{left:262.400000pt;}
.x1e_c00233{left:278.133333pt;}
.x39_c00233{left:293.066667pt;}
.x38_c00233{left:300.800000pt;}
.x37_c00233{left:309.466667pt;}
.x18_c00233{left:316.933333pt;}
.x36_c00233{left:320.666667pt;}
.x17_c00233{left:324.933333pt;}
.x16_c00233{left:333.200000pt;}
.x1a_c00233{left:341.466667pt;}
.x19_c00233{left:346.933333pt;}
.x15_c00233{left:347.866667pt;}
.x14_c00233{left:356.133333pt;}
.x13_c00233{left:366.400000pt;}
.x12_c00233{left:372.533333pt;}
.xc_c00233{left:424.000000pt;}
.xb_c00233{left:443.866667pt;}
.x35_c00233{left:449.333333pt;}
.xa_c00233{left:461.466667pt;}
.x34_c00233{left:472.400000pt;}
.x33_c00233{left:481.333333pt;}
.x9_c00233{left:500.533333pt;}
.x32_c00233{left:512.666667pt;}
.x8_c00233{left:520.400000pt;}
.x7_c00233{left:539.600000pt;}
.x6_c00233{left:559.066667pt;}
.x31_c00233{left:564.800000pt;}
.x30_c00233{left:573.466667pt;}
.x2f_c00233{left:580.800000pt;}
.x2e_c00233{left:595.600000pt;}
.x5_c00233{left:598.933333pt;}
.x4_c00233{left:618.133333pt;}
.x11_c00233{left:622.666667pt;}
.x2d_c00233{left:636.533333pt;}
.x3_c00233{left:637.600000pt;}
.xf_c00233{left:657.200000pt;}
.x2_c00233{left:658.666667pt;}
.x1_c00233{left:678.133333pt;}
.xe_c00233{left:682.533333pt;}
.x10_c00233{left:692.133333pt;}
.x45_c00233{left:720.000000pt;}
.x44_c00233{left:724.133333pt;}
.x43_c00233{left:729.600000pt;}
.xd_c00233{left:733.733333pt;}
.x42_c00233{left:745.600000pt;}
.x41_c00233{left:753.333333pt;}
}





/* 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_c00234 {
    display:none;
  }
  .loading-indicator_c00234.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00234 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_c00234 { 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_c00234" -> "#page-container .classname_c00234")
 */
.pf_c00234 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00234 { /* 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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00234 { /* 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_c00234 { /* 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_c00234 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00234 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00234 {overflow:visible;}
  }
}
.c_c00234 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00234 { /* 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_c00234:after { /* webkit #35443 */
  content: '';
}
.t_c00234:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00234 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 */
}
.__c00234 { /* 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_c00234 { /* info for Javascript */
  display:none;
}
.l_c00234 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00234 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00234 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00234: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_c00234 {
    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_c00234.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00234.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_c00234 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00234{font-family:sans-serif;visibility:hidden;}
.sc__c00234{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
}
.y0_c00234{bottom:0.000000px;}
.h0_c00234{height:1166.759949px;}
.h1_c00234{height:1167.000000px;}
.w0_c00234{width:918.720063px;}
.w1_c00234{width:918.750000px;}
.x0_c00234{left:0.000000px;}
@media print{
.y0_c00234{bottom:0.000000pt;}
.h0_c00234{height:1037.119955pt;}
.h1_c00234{height:1037.333333pt;}
.w0_c00234{width:816.640056pt;}
.w1_c00234{width:816.666667pt;}
.x0_c00234{left:0.000000pt;}
}





/* 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_c00235 {
    display:none;
  }
  .loading-indicator_c00235.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00235 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_c00235 { 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_c00235" -> "#page-container .classname_c00235")
 */
.pf_c00235 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00235 { /* 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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00235 { /* 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_c00235 { /* 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_c00235 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00235 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00235 {overflow:visible;}
  }
}
.c_c00235 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00235 { /* 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_c00235:after { /* webkit #35443 */
  content: '';
}
.t_c00235:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00235 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 */
}
.__c00235 { /* 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_c00235 { /* info for Javascript */
  display:none;
}
.l_c00235 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00235 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00235 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00235: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_c00235 {
    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_c00235.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00235.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_c00235 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00235{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.000000;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;}
.m84_c00235{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m82_c00235{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c00235{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00235{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m39_c00235{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m63_c00235{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m71_c00235{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m85_c00235{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m59_c00235{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m68_c00235{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m73_c00235{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m43_c00235{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m30_c00235{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00235{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m80_c00235{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00235{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m28_c00235{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00235{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m72_c00235{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m47_c00235{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m29_c00235{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00235{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m34_c00235{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m42_c00235{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m46_c00235{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m56_c00235{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00235{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12_c00235{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m67_c00235{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m41_c00235{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m49_c00235{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m75_c00235{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m52_c00235{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m66_c00235{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m90_c00235{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m48_c00235{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00235{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00235{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00235{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m74_c00235{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m87_c00235{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00235{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m40_c00235{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00235{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00235{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00235{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m65_c00235{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m25_c00235{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m53_c00235{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00235{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m24_c00235{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m23_c00235{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00235{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00235{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00235{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m89_c00235{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00235{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m51_c00235{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00235{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00235{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m16_c00235{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00235{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m62_c00235{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00235{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00235{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00235{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m61_c00235{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00235{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m54_c00235{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00235{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00235{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m15_c00235{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m95_c00235{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m27_c00235{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m37_c00235{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m77_c00235{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m86_c00235{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00235{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00235{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00235{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m76_c00235{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00235{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m78_c00235{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00235{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00235{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m69_c00235{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10_c00235{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00235{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m70_c00235{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8_c00235{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m33_c00235{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00235{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m35_c00235{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00235{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m20_c00235{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00235{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m88_c00235{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m57_c00235{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00235{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc_c00235{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m96_c00235{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m79_c00235{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m14_c00235{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00235{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m26_c00235{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m31_c00235{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00235{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00235{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17_c00235{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00235{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m21_c00235{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00235{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);}
.m97_c00235{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma_c00235{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00235{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m81_c00235{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m19_c00235{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m94_c00235{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00235{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m22_c00235{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m50_c00235{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00235{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00235{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00235{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00235{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00235{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m98_c00235{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00235{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m83_c00235{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m38_c00235{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00235{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m44_c00235{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf_c00235{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m7_c00235{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00235{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m92_c00235{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m32_c00235{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m36_c00235{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m13_c00235{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m93_c00235{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m60_c00235{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00235{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m11_c00235{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.mb_c00235{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.me_c00235{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m5_c00235{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m9_c00235{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{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__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:-5.277778px;}
.ws3_c00235{word-spacing:-1.764706px;}
.ws4_c00235{word-spacing:0.000000px;}
.ws2_c00235{word-spacing:10.000000px;}
.ws0_c00235{word-spacing:15.882353px;}
._0_c00235{width:51.029412px;}
.fc0_c00235{color:transparent;}
.fs0_c00235{font-size:60.000000px;}
.y0_c00235{bottom:0.000000px;}
.y23_c00235{bottom:154.500000px;}
.y22_c00235{bottom:174.600000px;}
.y21_c00235{bottom:194.400000px;}
.y20_c00235{bottom:214.200000px;}
.y1f_c00235{bottom:234.300000px;}
.y1e_c00235{bottom:254.100000px;}
.y1d_c00235{bottom:274.200000px;}
.y1c_c00235{bottom:294.000000px;}
.y1b_c00235{bottom:314.100000px;}
.y1a_c00235{bottom:334.200000px;}
.y19_c00235{bottom:354.000000px;}
.y18_c00235{bottom:374.100000px;}
.y17_c00235{bottom:394.200000px;}
.y16_c00235{bottom:414.150000px;}
.y15_c00235{bottom:434.250000px;}
.y14_c00235{bottom:454.350000px;}
.y13_c00235{bottom:474.150000px;}
.y12_c00235{bottom:494.250000px;}
.y11_c00235{bottom:513.750000px;}
.y10_c00235{bottom:533.850000px;}
.yf_c00235{bottom:553.650000px;}
.ye_c00235{bottom:593.700000px;}
.yd_c00235{bottom:613.800000px;}
.yc_c00235{bottom:634.200000px;}
.yb_c00235{bottom:654.000000px;}
.ya_c00235{bottom:674.100000px;}
.y9_c00235{bottom:693.900000px;}
.y8_c00235{bottom:714.000000px;}
.y7_c00235{bottom:733.800000px;}
.y6_c00235{bottom:753.900000px;}
.y5_c00235{bottom:773.700000px;}
.y4_c00235{bottom:793.800000px;}
.y3_c00235{bottom:826.950000px;}
.y2_c00235{bottom:860.100000px;}
.y1_c00235{bottom:1054.050000px;}
.h2_c00235{height:60.000000px;}
.h0_c00235{height:1166.759949px;}
.h1_c00235{height:1167.000000px;}
.w0_c00235{width:918.720063px;}
.w1_c00235{width:918.750000px;}
.x0_c00235{left:0.000000px;}
.xff_c00235{left:97.500000px;}
.xd0_c00235{left:98.700000px;}
.x86_c00235{left:100.050000px;}
.x20_c00235{left:102.000000px;}
.xe_c00235{left:103.350000px;}
.xa6_c00235{left:112.500000px;}
.xb3_c00235{left:120.600000px;}
.x55_c00235{left:122.550000px;}
.x47_c00235{left:124.650000px;}
.x63_c00235{left:128.550000px;}
.x87_c00235{left:129.600000px;}
.x88_c00235{left:131.400000px;}
.x7a_c00235{left:132.900000px;}
.x21_c00235{left:142.350000px;}
.xb4_c00235{left:145.050000px;}
.x9b_c00235{left:146.850000px;}
.x3a_c00235{left:148.950000px;}
.xd1_c00235{left:151.650000px;}
.x2d_c00235{left:155.700000px;}
.xe5_c00235{left:157.200000px;}
.xe9_c00235{left:159.450000px;}
.x56_c00235{left:161.400000px;}
.x6d_c00235{left:163.800000px;}
.xe6_c00235{left:164.850000px;}
.x9c_c00235{left:171.000000px;}
.xbc_c00235{left:172.950000px;}
.xf_c00235{left:177.450000px;}
.xef_c00235{left:179.550000px;}
.x2e_c00235{left:181.200000px;}
.x48_c00235{left:187.350000px;}
.xf9_c00235{left:188.400000px;}
.x93_c00235{left:189.750000px;}
.xf5_c00235{left:193.350000px;}
.x10_c00235{left:194.400000px;}
.xab_c00235{left:197.700000px;}
.x9d_c00235{left:204.900000px;}
.x4_c00235{left:207.000000px;}
.x7b_c00235{left:209.250000px;}
.x78_c00235{left:210.900000px;}
.x49_c00235{left:212.550000px;}
.xd5_c00235{left:216.300000px;}
.x6e_c00235{left:221.100000px;}
.x2f_c00235{left:224.100000px;}
.x22_c00235{left:225.450000px;}
.x3b_c00235{left:230.400000px;}
.x89_c00235{left:232.500000px;}
.x94_c00235{left:234.750000px;}
.xd6_c00235{left:235.800000px;}
.x7c_c00235{left:238.050000px;}
.x6f_c00235{left:240.900000px;}
.x57_c00235{left:242.850000px;}
.x11_c00235{left:244.500000px;}
.xf0_c00235{left:251.250000px;}
.x79_c00235{left:253.350000px;}
.x64_c00235{left:255.900000px;}
.xbd_c00235{left:258.000000px;}
.x3c_c00235{left:259.950000px;}
.xac_c00235{left:262.200000px;}
.x8a_c00235{left:265.200000px;}
.x70_c00235{left:268.950000px;}
.xfa_c00235{left:270.000000px;}
.x12_c00235{left:277.950000px;}
.x7d_c00235{left:279.450000px;}
.xd7_c00235{left:280.500000px;}
.x5_c00235{left:282.900000px;}
.x30_c00235{left:284.100000px;}
.x4a_c00235{left:285.600000px;}
.xea_c00235{left:286.950000px;}
.x3d_c00235{left:292.350000px;}
.x9e_c00235{left:293.850000px;}
.xfb_c00235{left:299.100000px;}
.x58_c00235{left:301.200000px;}
.x23_c00235{left:305.700000px;}
.x95_c00235{left:308.550000px;}
.x3e_c00235{left:310.650000px;}
.xb5_c00235{left:312.750000px;}
.xad_c00235{left:314.850000px;}
.xe3_c00235{left:317.250000px;}
.x4b_c00235{left:320.550000px;}
.x13_c00235{left:321.900000px;}
.x3f_c00235{left:326.850000px;}
.x100_c00235{left:328.500000px;}
.x31_c00235{left:331.200000px;}
.x96_c00235{left:332.250000px;}
.x7e_c00235{left:333.900000px;}
.x59_c00235{left:335.100000px;}
.xc5_c00235{left:336.150000px;}
.x14_c00235{left:337.800000px;}
.x71_c00235{left:340.650000px;}
.x6_c00235{left:342.600000px;}
.xd2_c00235{left:343.800000px;}
.x24_c00235{left:346.350000px;}
.x101_c00235{left:349.050000px;}
.xca_c00235{left:350.100000px;}
.xdd_c00235{left:351.300000px;}
.x5a_c00235{left:352.800000px;}
.xf6_c00235{left:354.300000px;}
.x15_c00235{left:357.300000px;}
.x7_c00235{left:360.300000px;}
.x8b_c00235{left:361.950000px;}
.xde_c00235{left:364.200000px;}
.x7f_c00235{left:368.850000px;}
.xb6_c00235{left:373.650000px;}
.x2_c00235{left:374.700000px;}
.x25_c00235{left:378.000000px;}
.x5b_c00235{left:380.100000px;}
.xe4_c00235{left:382.800000px;}
.xeb_c00235{left:384.750000px;}
.xa7_c00235{left:385.800000px;}
.xbe_c00235{left:386.850000px;}
.x16_c00235{left:389.400000px;}
.x40_c00235{left:391.950000px;}
.x65_c00235{left:394.200000px;}
.x4c_c00235{left:395.550000px;}
.x72_c00235{left:397.950000px;}
.xae_c00235{left:400.950000px;}
.xd8_c00235{left:402.900000px;}
.x8_c00235{left:404.250000px;}
.x32_c00235{left:407.100000px;}
.xec_c00235{left:409.950000px;}
.x17_c00235{left:411.300000px;}
.x5c_c00235{left:415.350000px;}
.x66_c00235{left:416.850000px;}
.x73_c00235{left:418.050000px;}
.x8c_c00235{left:424.650000px;}
.x1_c00235{left:425.850000px;}
.xb7_c00235{left:429.150000px;}
.x9f_c00235{left:430.950000px;}
.x4d_c00235{left:433.350000px;}
.x9_c00235{left:434.850000px;}
.x80_c00235{left:437.250000px;}
.xfc_c00235{left:439.200000px;}
.xcb_c00235{left:442.650000px;}
.x5d_c00235{left:443.850000px;}
.xed_c00235{left:445.200000px;}
.xf1_c00235{left:448.200000px;}
.x67_c00235{left:451.050000px;}
.x81_c00235{left:458.550000px;}
.xb8_c00235{left:459.750000px;}
.x26_c00235{left:460.800000px;}
.x3_c00235{left:461.850000px;}
.xbf_c00235{left:467.100000px;}
.x5e_c00235{left:469.800000px;}
.x4e_c00235{left:471.150000px;}
.xa_c00235{left:472.350000px;}
.x41_c00235{left:475.950000px;}
.xa8_c00235{left:477.600000px;}
.x33_c00235{left:480.150000px;}
.x18_c00235{left:483.600000px;}
.x97_c00235{left:486.000000px;}
.xd3_c00235{left:488.100000px;}
.xb_c00235{left:489.600000px;}
.x102_c00235{left:490.950000px;}
.xa0_c00235{left:493.650000px;}
.xc0_c00235{left:495.150000px;}
.x4f_c00235{left:496.650000px;}
.x42_c00235{left:497.850000px;}
.xf7_c00235{left:499.050000px;}
.xdf_c00235{left:500.700000px;}
.x8d_c00235{left:502.350000px;}
.xe7_c00235{left:503.850000px;}
.xf2_c00235{left:505.200000px;}
.xfd_c00235{left:509.400000px;}
.x27_c00235{left:510.900000px;}
.xaf_c00235{left:512.250000px;}
.x98_c00235{left:513.300000px;}
.xb9_c00235{left:515.250000px;}
.xcc_c00235{left:517.500000px;}
.x8e_c00235{left:521.850000px;}
.xa1_c00235{left:526.050000px;}
.x74_c00235{left:529.050000px;}
.xb0_c00235{left:532.350000px;}
.xc1_c00235{left:534.000000px;}
.xc6_c00235{left:535.200000px;}
.x5f_c00235{left:536.400000px;}
.x103_c00235{left:540.300000px;}
.x68_c00235{left:541.500000px;}
.x19_c00235{left:545.100000px;}
.x34_c00235{left:547.800000px;}
.xd9_c00235{left:551.550000px;}
.xd4_c00235{left:553.650000px;}
.xc_c00235{left:559.800000px;}
.x1a_c00235{left:562.050000px;}
.x104_c00235{left:563.400000px;}
.x43_c00235{left:565.200000px;}
.x28_c00235{left:567.450000px;}
.x82_c00235{left:569.850000px;}
.xda_c00235{left:571.350000px;}
.x99_c00235{left:572.700000px;}
.xd_c00235{left:576.300000px;}
.xa2_c00235{left:581.550000px;}
.x75_c00235{left:583.500000px;}
.xba_c00235{left:586.500000px;}
.x35_c00235{left:589.200000px;}
.x29_c00235{left:591.150000px;}
.x69_c00235{left:592.650000px;}
.xc2_c00235{left:593.700000px;}
.xc7_c00235{left:599.250000px;}
.xb1_c00235{left:602.250000px;}
.x60_c00235{left:604.800000px;}
.xa3_c00235{left:607.500000px;}
.x1b_c00235{left:608.550000px;}
.xe0_c00235{left:610.200000px;}
.x6a_c00235{left:612.450000px;}
.xc3_c00235{left:615.300000px;}
.x50_c00235{left:620.550000px;}
.x44_c00235{left:621.750000px;}
.x2a_c00235{left:622.800000px;}
.xdb_c00235{left:624.300000px;}
.xe1_c00235{left:627.450000px;}
.x8f_c00235{left:633.750000px;}
.x1c_c00235{left:636.600000px;}
.xcd_c00235{left:638.400000px;}
.xbb_c00235{left:639.450000px;}
.x83_c00235{left:641.850000px;}
.x51_c00235{left:644.250000px;}
.x6b_c00235{left:646.650000px;}
.x90_c00235{left:653.550000px;}
.x36_c00235{left:654.750000px;}
.xe2_c00235{left:655.950000px;}
.xf3_c00235{left:657.000000px;}
.xa9_c00235{left:659.550000px;}
.x45_c00235{left:662.400000px;}
.xc8_c00235{left:663.750000px;}
.xb2_c00235{left:664.950000px;}
.xce_c00235{left:666.450000px;}
.x6c_c00235{left:670.050000px;}
.x2b_c00235{left:671.100000px;}
.x61_c00235{left:673.200000px;}
.x1d_c00235{left:675.450000px;}
.xa4_c00235{left:677.100000px;}
.xf4_c00235{left:678.600000px;}
.x46_c00235{left:682.950000px;}
.xc9_c00235{left:685.050000px;}
.x9a_c00235{left:687.900000px;}
.x37_c00235{left:690.000000px;}
.x52_c00235{left:691.350000px;}
.xaa_c00235{left:694.050000px;}
.xf8_c00235{left:699.300000px;}
.xc4_c00235{left:700.650000px;}
.x84_c00235{left:703.050000px;}
.x62_c00235{left:704.100000px;}
.x91_c00235{left:706.050000px;}
.x1e_c00235{left:713.250000px;}
.xdc_c00235{left:714.600000px;}
.x76_c00235{left:716.700000px;}
.x53_c00235{left:720.450000px;}
.xe8_c00235{left:722.100000px;}
.xa5_c00235{left:723.150000px;}
.xcf_c00235{left:724.350000px;}
.x92_c00235{left:725.850000px;}
.x38_c00235{left:727.500000px;}
.xee_c00235{left:729.600000px;}
.x77_c00235{left:736.800000px;}
.x54_c00235{left:738.150000px;}
.x2c_c00235{left:739.500000px;}
.x85_c00235{left:743.400000px;}
.xfe_c00235{left:746.550000px;}
.x39_c00235{left:748.800000px;}
.x105_c00235{left:754.500000px;}
.x1f_c00235{left:757.200000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws1_c00235{word-spacing:-4.691358pt;}
.ws3_c00235{word-spacing:-1.568627pt;}
.ws4_c00235{word-spacing:0.000000pt;}
.ws2_c00235{word-spacing:8.888889pt;}
.ws0_c00235{word-spacing:14.117647pt;}
._0_c00235{width:45.359477pt;}
.fs0_c00235{font-size:53.333333pt;}
.y0_c00235{bottom:0.000000pt;}
.y23_c00235{bottom:137.333333pt;}
.y22_c00235{bottom:155.200000pt;}
.y21_c00235{bottom:172.800000pt;}
.y20_c00235{bottom:190.400000pt;}
.y1f_c00235{bottom:208.266667pt;}
.y1e_c00235{bottom:225.866667pt;}
.y1d_c00235{bottom:243.733333pt;}
.y1c_c00235{bottom:261.333333pt;}
.y1b_c00235{bottom:279.200000pt;}
.y1a_c00235{bottom:297.066667pt;}
.y19_c00235{bottom:314.666667pt;}
.y18_c00235{bottom:332.533333pt;}
.y17_c00235{bottom:350.400000pt;}
.y16_c00235{bottom:368.133333pt;}
.y15_c00235{bottom:386.000000pt;}
.y14_c00235{bottom:403.866667pt;}
.y13_c00235{bottom:421.466667pt;}
.y12_c00235{bottom:439.333333pt;}
.y11_c00235{bottom:456.666667pt;}
.y10_c00235{bottom:474.533333pt;}
.yf_c00235{bottom:492.133333pt;}
.ye_c00235{bottom:527.733333pt;}
.yd_c00235{bottom:545.600000pt;}
.yc_c00235{bottom:563.733333pt;}
.yb_c00235{bottom:581.333333pt;}
.ya_c00235{bottom:599.200000pt;}
.y9_c00235{bottom:616.800000pt;}
.y8_c00235{bottom:634.666667pt;}
.y7_c00235{bottom:652.266667pt;}
.y6_c00235{bottom:670.133333pt;}
.y5_c00235{bottom:687.733333pt;}
.y4_c00235{bottom:705.600000pt;}
.y3_c00235{bottom:735.066667pt;}
.y2_c00235{bottom:764.533333pt;}
.y1_c00235{bottom:936.933333pt;}
.h2_c00235{height:53.333333pt;}
.h0_c00235{height:1037.119955pt;}
.h1_c00235{height:1037.333333pt;}
.w0_c00235{width:816.640056pt;}
.w1_c00235{width:816.666667pt;}
.x0_c00235{left:0.000000pt;}
.xff_c00235{left:86.666667pt;}
.xd0_c00235{left:87.733333pt;}
.x86_c00235{left:88.933333pt;}
.x20_c00235{left:90.666667pt;}
.xe_c00235{left:91.866667pt;}
.xa6_c00235{left:100.000000pt;}
.xb3_c00235{left:107.200000pt;}
.x55_c00235{left:108.933333pt;}
.x47_c00235{left:110.800000pt;}
.x63_c00235{left:114.266667pt;}
.x87_c00235{left:115.200000pt;}
.x88_c00235{left:116.800000pt;}
.x7a_c00235{left:118.133333pt;}
.x21_c00235{left:126.533333pt;}
.xb4_c00235{left:128.933333pt;}
.x9b_c00235{left:130.533333pt;}
.x3a_c00235{left:132.400000pt;}
.xd1_c00235{left:134.800000pt;}
.x2d_c00235{left:138.400000pt;}
.xe5_c00235{left:139.733333pt;}
.xe9_c00235{left:141.733333pt;}
.x56_c00235{left:143.466667pt;}
.x6d_c00235{left:145.600000pt;}
.xe6_c00235{left:146.533333pt;}
.x9c_c00235{left:152.000000pt;}
.xbc_c00235{left:153.733333pt;}
.xf_c00235{left:157.733333pt;}
.xef_c00235{left:159.600000pt;}
.x2e_c00235{left:161.066667pt;}
.x48_c00235{left:166.533333pt;}
.xf9_c00235{left:167.466667pt;}
.x93_c00235{left:168.666667pt;}
.xf5_c00235{left:171.866667pt;}
.x10_c00235{left:172.800000pt;}
.xab_c00235{left:175.733333pt;}
.x9d_c00235{left:182.133333pt;}
.x4_c00235{left:184.000000pt;}
.x7b_c00235{left:186.000000pt;}
.x78_c00235{left:187.466667pt;}
.x49_c00235{left:188.933333pt;}
.xd5_c00235{left:192.266667pt;}
.x6e_c00235{left:196.533333pt;}
.x2f_c00235{left:199.200000pt;}
.x22_c00235{left:200.400000pt;}
.x3b_c00235{left:204.800000pt;}
.x89_c00235{left:206.666667pt;}
.x94_c00235{left:208.666667pt;}
.xd6_c00235{left:209.600000pt;}
.x7c_c00235{left:211.600000pt;}
.x6f_c00235{left:214.133333pt;}
.x57_c00235{left:215.866667pt;}
.x11_c00235{left:217.333333pt;}
.xf0_c00235{left:223.333333pt;}
.x79_c00235{left:225.200000pt;}
.x64_c00235{left:227.466667pt;}
.xbd_c00235{left:229.333333pt;}
.x3c_c00235{left:231.066667pt;}
.xac_c00235{left:233.066667pt;}
.x8a_c00235{left:235.733333pt;}
.x70_c00235{left:239.066667pt;}
.xfa_c00235{left:240.000000pt;}
.x12_c00235{left:247.066667pt;}
.x7d_c00235{left:248.400000pt;}
.xd7_c00235{left:249.333333pt;}
.x5_c00235{left:251.466667pt;}
.x30_c00235{left:252.533333pt;}
.x4a_c00235{left:253.866667pt;}
.xea_c00235{left:255.066667pt;}
.x3d_c00235{left:259.866667pt;}
.x9e_c00235{left:261.200000pt;}
.xfb_c00235{left:265.866667pt;}
.x58_c00235{left:267.733333pt;}
.x23_c00235{left:271.733333pt;}
.x95_c00235{left:274.266667pt;}
.x3e_c00235{left:276.133333pt;}
.xb5_c00235{left:278.000000pt;}
.xad_c00235{left:279.866667pt;}
.xe3_c00235{left:282.000000pt;}
.x4b_c00235{left:284.933333pt;}
.x13_c00235{left:286.133333pt;}
.x3f_c00235{left:290.533333pt;}
.x100_c00235{left:292.000000pt;}
.x31_c00235{left:294.400000pt;}
.x96_c00235{left:295.333333pt;}
.x7e_c00235{left:296.800000pt;}
.x59_c00235{left:297.866667pt;}
.xc5_c00235{left:298.800000pt;}
.x14_c00235{left:300.266667pt;}
.x71_c00235{left:302.800000pt;}
.x6_c00235{left:304.533333pt;}
.xd2_c00235{left:305.600000pt;}
.x24_c00235{left:307.866667pt;}
.x101_c00235{left:310.266667pt;}
.xca_c00235{left:311.200000pt;}
.xdd_c00235{left:312.266667pt;}
.x5a_c00235{left:313.600000pt;}
.xf6_c00235{left:314.933333pt;}
.x15_c00235{left:317.600000pt;}
.x7_c00235{left:320.266667pt;}
.x8b_c00235{left:321.733333pt;}
.xde_c00235{left:323.733333pt;}
.x7f_c00235{left:327.866667pt;}
.xb6_c00235{left:332.133333pt;}
.x2_c00235{left:333.066667pt;}
.x25_c00235{left:336.000000pt;}
.x5b_c00235{left:337.866667pt;}
.xe4_c00235{left:340.266667pt;}
.xeb_c00235{left:342.000000pt;}
.xa7_c00235{left:342.933333pt;}
.xbe_c00235{left:343.866667pt;}
.x16_c00235{left:346.133333pt;}
.x40_c00235{left:348.400000pt;}
.x65_c00235{left:350.400000pt;}
.x4c_c00235{left:351.600000pt;}
.x72_c00235{left:353.733333pt;}
.xae_c00235{left:356.400000pt;}
.xd8_c00235{left:358.133333pt;}
.x8_c00235{left:359.333333pt;}
.x32_c00235{left:361.866667pt;}
.xec_c00235{left:364.400000pt;}
.x17_c00235{left:365.600000pt;}
.x5c_c00235{left:369.200000pt;}
.x66_c00235{left:370.533333pt;}
.x73_c00235{left:371.600000pt;}
.x8c_c00235{left:377.466667pt;}
.x1_c00235{left:378.533333pt;}
.xb7_c00235{left:381.466667pt;}
.x9f_c00235{left:383.066667pt;}
.x4d_c00235{left:385.200000pt;}
.x9_c00235{left:386.533333pt;}
.x80_c00235{left:388.666667pt;}
.xfc_c00235{left:390.400000pt;}
.xcb_c00235{left:393.466667pt;}
.x5d_c00235{left:394.533333pt;}
.xed_c00235{left:395.733333pt;}
.xf1_c00235{left:398.400000pt;}
.x67_c00235{left:400.933333pt;}
.x81_c00235{left:407.600000pt;}
.xb8_c00235{left:408.666667pt;}
.x26_c00235{left:409.600000pt;}
.x3_c00235{left:410.533333pt;}
.xbf_c00235{left:415.200000pt;}
.x5e_c00235{left:417.600000pt;}
.x4e_c00235{left:418.800000pt;}
.xa_c00235{left:419.866667pt;}
.x41_c00235{left:423.066667pt;}
.xa8_c00235{left:424.533333pt;}
.x33_c00235{left:426.800000pt;}
.x18_c00235{left:429.866667pt;}
.x97_c00235{left:432.000000pt;}
.xd3_c00235{left:433.866667pt;}
.xb_c00235{left:435.200000pt;}
.x102_c00235{left:436.400000pt;}
.xa0_c00235{left:438.800000pt;}
.xc0_c00235{left:440.133333pt;}
.x4f_c00235{left:441.466667pt;}
.x42_c00235{left:442.533333pt;}
.xf7_c00235{left:443.600000pt;}
.xdf_c00235{left:445.066667pt;}
.x8d_c00235{left:446.533333pt;}
.xe7_c00235{left:447.866667pt;}
.xf2_c00235{left:449.066667pt;}
.xfd_c00235{left:452.800000pt;}
.x27_c00235{left:454.133333pt;}
.xaf_c00235{left:455.333333pt;}
.x98_c00235{left:456.266667pt;}
.xb9_c00235{left:458.000000pt;}
.xcc_c00235{left:460.000000pt;}
.x8e_c00235{left:463.866667pt;}
.xa1_c00235{left:467.600000pt;}
.x74_c00235{left:470.266667pt;}
.xb0_c00235{left:473.200000pt;}
.xc1_c00235{left:474.666667pt;}
.xc6_c00235{left:475.733333pt;}
.x5f_c00235{left:476.800000pt;}
.x103_c00235{left:480.266667pt;}
.x68_c00235{left:481.333333pt;}
.x19_c00235{left:484.533333pt;}
.x34_c00235{left:486.933333pt;}
.xd9_c00235{left:490.266667pt;}
.xd4_c00235{left:492.133333pt;}
.xc_c00235{left:497.600000pt;}
.x1a_c00235{left:499.600000pt;}
.x104_c00235{left:500.800000pt;}
.x43_c00235{left:502.400000pt;}
.x28_c00235{left:504.400000pt;}
.x82_c00235{left:506.533333pt;}
.xda_c00235{left:507.866667pt;}
.x99_c00235{left:509.066667pt;}
.xd_c00235{left:512.266667pt;}
.xa2_c00235{left:516.933333pt;}
.x75_c00235{left:518.666667pt;}
.xba_c00235{left:521.333333pt;}
.x35_c00235{left:523.733333pt;}
.x29_c00235{left:525.466667pt;}
.x69_c00235{left:526.800000pt;}
.xc2_c00235{left:527.733333pt;}
.xc7_c00235{left:532.666667pt;}
.xb1_c00235{left:535.333333pt;}
.x60_c00235{left:537.600000pt;}
.xa3_c00235{left:540.000000pt;}
.x1b_c00235{left:540.933333pt;}
.xe0_c00235{left:542.400000pt;}
.x6a_c00235{left:544.400000pt;}
.xc3_c00235{left:546.933333pt;}
.x50_c00235{left:551.600000pt;}
.x44_c00235{left:552.666667pt;}
.x2a_c00235{left:553.600000pt;}
.xdb_c00235{left:554.933333pt;}
.xe1_c00235{left:557.733333pt;}
.x8f_c00235{left:563.333333pt;}
.x1c_c00235{left:565.866667pt;}
.xcd_c00235{left:567.466667pt;}
.xbb_c00235{left:568.400000pt;}
.x83_c00235{left:570.533333pt;}
.x51_c00235{left:572.666667pt;}
.x6b_c00235{left:574.800000pt;}
.x90_c00235{left:580.933333pt;}
.x36_c00235{left:582.000000pt;}
.xe2_c00235{left:583.066667pt;}
.xf3_c00235{left:584.000000pt;}
.xa9_c00235{left:586.266667pt;}
.x45_c00235{left:588.800000pt;}
.xc8_c00235{left:590.000000pt;}
.xb2_c00235{left:591.066667pt;}
.xce_c00235{left:592.400000pt;}
.x6c_c00235{left:595.600000pt;}
.x2b_c00235{left:596.533333pt;}
.x61_c00235{left:598.400000pt;}
.x1d_c00235{left:600.400000pt;}
.xa4_c00235{left:601.866667pt;}
.xf4_c00235{left:603.200000pt;}
.x46_c00235{left:607.066667pt;}
.xc9_c00235{left:608.933333pt;}
.x9a_c00235{left:611.466667pt;}
.x37_c00235{left:613.333333pt;}
.x52_c00235{left:614.533333pt;}
.xaa_c00235{left:616.933333pt;}
.xf8_c00235{left:621.600000pt;}
.xc4_c00235{left:622.800000pt;}
.x84_c00235{left:624.933333pt;}
.x62_c00235{left:625.866667pt;}
.x91_c00235{left:627.600000pt;}
.x1e_c00235{left:634.000000pt;}
.xdc_c00235{left:635.200000pt;}
.x76_c00235{left:637.066667pt;}
.x53_c00235{left:640.400000pt;}
.xe8_c00235{left:641.866667pt;}
.xa5_c00235{left:642.800000pt;}
.xcf_c00235{left:643.866667pt;}
.x92_c00235{left:645.200000pt;}
.x38_c00235{left:646.666667pt;}
.xee_c00235{left:648.533333pt;}
.x77_c00235{left:654.933333pt;}
.x54_c00235{left:656.133333pt;}
.x2c_c00235{left:657.333333pt;}
.x85_c00235{left:660.800000pt;}
.xfe_c00235{left:663.600000pt;}
.x39_c00235{left:665.600000pt;}
.x105_c00235{left:670.666667pt;}
.x1f_c00235{left:673.066667pt;}
}





/* 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_c00236 {
    display:none;
  }
  .loading-indicator_c00236.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00236 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_c00236 { 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_c00236" -> "#page-container .classname_c00236")
 */
.pf_c00236 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00236 { /* 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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00236 { /* 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_c00236 { /* 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_c00236 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00236 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00236 {overflow:visible;}
  }
}
.c_c00236 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00236 { /* 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_c00236:after { /* webkit #35443 */
  content: '';
}
.t_c00236:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00236 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 */
}
.__c00236 { /* 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_c00236 { /* info for Javascript */
  display:none;
}
.l_c00236 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00236 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00236 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00236: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_c00236 {
    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_c00236.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00236.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_c00236 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00236{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00236;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.000000;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;}
.mc2_c00236{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00236{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00236{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00236{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00236{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00236{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.mba_c00236{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00236{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00236{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mad_c00236{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00236{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00236{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00236{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00236{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m61_c00236{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m21_c00236{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m85_c00236{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m37_c00236{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m86_c00236{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mae_c00236{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m23_c00236{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00236{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00236{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00236{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00236{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m87_c00236{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00236{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m14_c00236{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00236{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00236{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00236{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00236{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00236{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00236{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m95_c00236{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m34_c00236{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m69_c00236{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00236{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00236{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00236{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9_c00236{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m17_c00236{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00236{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00236{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m41_c00236{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m58_c00236{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m35_c00236{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00236{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00236{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00236{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00236{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00236{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m16_c00236{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m71_c00236{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.maa_c00236{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m10_c00236{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00236{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00236{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m98_c00236{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m72_c00236{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00236{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m65_c00236{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m83_c00236{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00236{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00236{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m24_c00236{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m47_c00236{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m27_c00236{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00236{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m60_c00236{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6_c00236{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00236{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00236{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00236{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m64_c00236{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00236{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00236{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb_c00236{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00236{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mab_c00236{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.maf_c00236{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc_c00236{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mac_c00236{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2_c00236{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5_c00236{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00236{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00236{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00236{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m18_c00236{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m84_c00236{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00236{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md_c00236{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00236{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00236{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00236{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m40_c00236{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00236{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me_c00236{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m42_c00236{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00236{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00236{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m19_c00236{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00236{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00236{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00236{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m79_c00236{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m56_c00236{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00236{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00236{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m52_c00236{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00236{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma_c00236{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m88_c00236{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00236{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m76_c00236{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m90_c00236{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m43_c00236{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m29_c00236{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00236{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m45_c00236{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m92_c00236{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m48_c00236{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00236{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00236{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00236{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00236{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00236{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m75_c00236{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00236{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m26_c00236{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00236{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m68_c00236{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00236{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m44_c00236{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m15_c00236{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m62_c00236{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00236{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00236{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00236{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m28_c00236{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m25_c00236{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m70_c00236{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m53_c00236{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m74_c00236{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c00236{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00236{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m57_c00236{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m30_c00236{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m59_c00236{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m93_c00236{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m38_c00236{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m63_c00236{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);}
.mb6_c00236{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00236{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00236{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00236{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00236{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m13_c00236{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00236{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7_c00236{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00236{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m66_c00236{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m12_c00236{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00236{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00236{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00236{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m77_c00236{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00236{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m51_c00236{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m67_c00236{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mf_c00236{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m96_c00236{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00236{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m20_c00236{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00236{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m73_c00236{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m49_c00236{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00236{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m31_c00236{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m94_c00236{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00236{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m39_c00236{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00236{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m55_c00236{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m33_c00236{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00236{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00236{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m78_c00236{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00236{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00236{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00236{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m89_c00236{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1_c00236{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m80_c00236{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m97_c00236{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m54_c00236{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00236{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m50_c00236{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00236{vertical-align:0.000000px;}
.ls0_c00236{letter-spacing:0.000000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{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__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00236{word-spacing:-1.666667px;}
.ws9_c00236{word-spacing:0.000000px;}
.ws2_c00236{word-spacing:0.277778px;}
.ws0_c00236{word-spacing:1.041667px;}
.ws5_c00236{word-spacing:1.666667px;}
.ws1_c00236{word-spacing:5.000000px;}
.ws8_c00236{word-spacing:6.527778px;}
.ws6_c00236{word-spacing:7.232143px;}
.ws7_c00236{word-spacing:10.735294px;}
.ws4_c00236{word-spacing:13.472222px;}
._1_c00236{width:42.894737px;}
._0_c00236{width:74.473684px;}
.fc0_c00236{color:transparent;}
.fs0_c00236{font-size:54.000000px;}
.fs1_c00236{font-size:60.000000px;}
.y0_c00236{bottom:0.000000px;}
.y2c_c00236{bottom:155.100000px;}
.y2b_c00236{bottom:170.700000px;}
.y2a_c00236{bottom:186.900000px;}
.y29_c00236{bottom:202.350000px;}
.y28_c00236{bottom:254.550000px;}
.y27_c00236{bottom:274.950000px;}
.y26_c00236{bottom:294.750000px;}
.y25_c00236{bottom:314.850000px;}
.y24_c00236{bottom:334.950000px;}
.y23_c00236{bottom:355.050000px;}
.y22_c00236{bottom:374.850000px;}
.y21_c00236{bottom:394.950000px;}
.y20_c00236{bottom:415.050000px;}
.y1f_c00236{bottom:434.850000px;}
.y1e_c00236{bottom:454.050000px;}
.y1d_c00236{bottom:474.600000px;}
.y1c_c00236{bottom:494.700000px;}
.y1b_c00236{bottom:514.500000px;}
.y1a_c00236{bottom:534.150000px;}
.y19_c00236{bottom:554.700000px;}
.y18_c00236{bottom:574.500000px;}
.y17_c00236{bottom:594.600000px;}
.y16_c00236{bottom:614.100000px;}
.y15_c00236{bottom:634.200000px;}
.y14_c00236{bottom:654.000000px;}
.y13_c00236{bottom:674.100000px;}
.y12_c00236{bottom:694.200000px;}
.y11_c00236{bottom:714.000000px;}
.y10_c00236{bottom:734.100000px;}
.yf_c00236{bottom:753.900000px;}
.ye_c00236{bottom:774.450000px;}
.yd_c00236{bottom:794.250000px;}
.yc_c00236{bottom:814.050000px;}
.yb_c00236{bottom:834.150000px;}
.ya_c00236{bottom:854.250000px;}
.y9_c00236{bottom:874.200000px;}
.y8_c00236{bottom:894.300000px;}
.y7_c00236{bottom:914.100000px;}
.y6_c00236{bottom:933.900000px;}
.y5_c00236{bottom:954.000000px;}
.y4_c00236{bottom:974.100000px;}
.y3_c00236{bottom:993.600000px;}
.y2_c00236{bottom:1013.700000px;}
.y1_c00236{bottom:1052.700000px;}
.h2_c00236{height:54.000000px;}
.h3_c00236{height:60.000000px;}
.h0_c00236{height:1166.759949px;}
.h1_c00236{height:1167.000000px;}
.w0_c00236{width:918.720063px;}
.w1_c00236{width:918.750000px;}
.x0_c00236{left:0.000000px;}
.x1d_c00236{left:140.100000px;}
.x1_c00236{left:141.150000px;}
.xfe_c00236{left:142.350000px;}
.x112_c00236{left:144.300000px;}
.x113_c00236{left:156.150000px;}
.x88_c00236{left:159.150000px;}
.xf8_c00236{left:160.350000px;}
.xc3_c00236{left:163.050000px;}
.x91_c00236{left:164.700000px;}
.x1e_c00236{left:166.350000px;}
.x56_c00236{left:167.550000px;}
.xff_c00236{left:170.400000px;}
.x5f_c00236{left:172.050000px;}
.xf1_c00236{left:173.550000px;}
.x128_c00236{left:174.600000px;}
.x34_c00236{left:175.950000px;}
.x2a_c00236{left:177.300000px;}
.x120_c00236{left:179.100000px;}
.x9d_c00236{left:181.800000px;}
.x60_c00236{left:184.350000px;}
.x57_c00236{left:185.850000px;}
.x10_c00236{left:188.700000px;}
.x2b_c00236{left:195.000000px;}
.xe6_c00236{left:197.700000px;}
.x6e_c00236{left:200.550000px;}
.xf2_c00236{left:201.600000px;}
.x129_c00236{left:204.900000px;}
.x1f_c00236{left:206.250000px;}
.x122_c00236{left:207.300000px;}
.x118_c00236{left:209.400000px;}
.x58_c00236{left:211.350000px;}
.x35_c00236{left:213.450000px;}
.xd6_c00236{left:215.400000px;}
.x7c_c00236{left:217.350000px;}
.xef_c00236{left:219.150000px;}
.xa5_c00236{left:221.100000px;}
.xc4_c00236{left:223.500000px;}
.x61_c00236{left:224.700000px;}
.x133_c00236{left:226.200000px;}
.x2c_c00236{left:227.400000px;}
.xde_c00236{left:228.600000px;}
.x4b_c00236{left:229.800000px;}
.x121_c00236{left:231.000000px;}
.x36_c00236{left:232.950000px;}
.x3_c00236{left:234.000000px;}
.xe7_c00236{left:235.800000px;}
.x105_c00236{left:238.050000px;}
.x6f_c00236{left:240.150000px;}
.xa6_c00236{left:243.450000px;}
.xf9_c00236{left:245.250000px;}
.x89_c00236{left:247.050000px;}
.x9e_c00236{left:249.450000px;}
.x20_c00236{left:250.500000px;}
.x62_c00236{left:251.700000px;}
.xb9_c00236{left:254.850000px;}
.x7d_c00236{left:256.950000px;}
.x43_c00236{left:258.750000px;}
.xd0_c00236{left:261.000000px;}
.x8a_c00236{left:262.950000px;}
.x109_c00236{left:264.600000px;}
.x12a_c00236{left:266.400000px;}
.x59_c00236{left:268.650000px;}
.x11_c00236{left:269.700000px;}
.x2d_c00236{left:271.650000px;}
.x4c_c00236{left:274.800000px;}
.xd7_c00236{left:275.850000px;}
.x92_c00236{left:279.150000px;}
.x4_c00236{left:283.350000px;}
.x70_c00236{left:286.650000px;}
.x100_c00236{left:289.500000px;}
.x114_c00236{left:291.300000px;}
.x9f_c00236{left:292.950000px;}
.x93_c00236{left:294.300000px;}
.xba_c00236{left:295.500000px;}
.xfa_c00236{left:297.450000px;}
.xc5_c00236{left:300.900000px;}
.x12_c00236{left:303.900000px;}
.x12e_c00236{left:304.950000px;}
.x63_c00236{left:307.500000px;}
.x71_c00236{left:309.750000px;}
.x7e_c00236{left:310.950000px;}
.xdf_c00236{left:312.900000px;}
.xbb_c00236{left:315.300000px;}
.x12f_c00236{left:316.500000px;}
.xe2_c00236{left:318.150000px;}
.x44_c00236{left:319.950000px;}
.x37_c00236{left:322.950000px;}
.x5_c00236{left:324.000000px;}
.x4d_c00236{left:325.200000px;}
.x21_c00236{left:327.150000px;}
.x13_c00236{left:331.950000px;}
.x139_c00236{left:333.450000px;}
.x38_c00236{left:334.500000px;}
.x2e_c00236{left:335.700000px;}
.xa7_c00236{left:337.350000px;}
.xe3_c00236{left:339.450000px;}
.xad_c00236{left:340.500000px;}
.x22_c00236{left:342.300000px;}
.x4e_c00236{left:345.300000px;}
.x64_c00236{left:348.900000px;}
.x5a_c00236{left:351.000000px;}
.xd8_c00236{left:352.200000px;}
.x8b_c00236{left:353.700000px;}
.x2f_c00236{left:355.800000px;}
.xfb_c00236{left:358.650000px;}
.xae_c00236{left:361.050000px;}
.xa0_c00236{left:363.150000px;}
.x72_c00236{left:365.550000px;}
.xc6_c00236{left:366.750000px;}
.x39_c00236{left:369.450000px;}
.xe8_c00236{left:371.550000px;}
.xd9_c00236{left:373.500000px;}
.x65_c00236{left:375.150000px;}
.x30_c00236{left:376.350000px;}
.x14_c00236{left:377.700000px;}
.xa8_c00236{left:379.500000px;}
.x23_c00236{left:381.600000px;}
.xf0_c00236{left:383.550000px;}
.x10d_c00236{left:384.750000px;}
.x73_c00236{left:386.400000px;}
.xbc_c00236{left:388.500000px;}
.x94_c00236{left:390.300000px;}
.xe4_c00236{left:393.750000px;}
.xe9_c00236{left:396.000000px;}
.xbd_c00236{left:399.600000px;}
.x10e_c00236{left:402.750000px;}
.x4f_c00236{left:403.950000px;}
.x7f_c00236{left:406.800000px;}
.x11e_c00236{left:407.850000px;}
.x3a_c00236{left:409.800000px;}
.xc7_c00236{left:412.200000px;}
.xa1_c00236{left:414.600000px;}
.x95_c00236{left:417.600000px;}
.x6_c00236{left:419.700000px;}
.x5b_c00236{left:421.200000px;}
.xf3_c00236{left:422.400000px;}
.x10a_c00236{left:425.850000px;}
.x66_c00236{left:428.400000px;}
.xbe_c00236{left:432.000000px;}
.xe5_c00236{left:433.350000px;}
.x80_c00236{left:434.550000px;}
.x2_c00236{left:439.200000px;}
.x24_c00236{left:441.300000px;}
.x74_c00236{left:444.000000px;}
.xc8_c00236{left:445.650000px;}
.x15_c00236{left:446.850000px;}
.x67_c00236{left:447.900000px;}
.xa2_c00236{left:449.100000px;}
.xea_c00236{left:452.100000px;}
.x81_c00236{left:454.350000px;}
.x124_c00236{left:457.350000px;}
.x3b_c00236{left:458.400000px;}
.x68_c00236{left:460.200000px;}
.x50_c00236{left:462.600000px;}
.xf4_c00236{left:464.550000px;}
.x25_c00236{left:466.800000px;}
.x82_c00236{left:471.300000px;}
.x75_c00236{left:474.900000px;}
.x12b_c00236{left:476.700000px;}
.x3c_c00236{left:478.200000px;}
.xa9_c00236{left:481.050000px;}
.xc9_c00236{left:483.150000px;}
.xe0_c00236{left:484.500000px;}
.x130_c00236{left:486.000000px;}
.xbf_c00236{left:488.100000px;}
.xaf_c00236{left:490.650000px;}
.x8c_c00236{left:492.600000px;}
.x5c_c00236{left:495.000000px;}
.x51_c00236{left:496.500000px;}
.x7_c00236{left:497.850000px;}
.x115_c00236{left:501.900000px;}
.x69_c00236{left:503.400000px;}
.x45_c00236{left:505.050000px;}
.xeb_c00236{left:507.150000px;}
.x137_c00236{left:509.250000px;}
.x96_c00236{left:512.700000px;}
.xca_c00236{left:516.300000px;}
.xd1_c00236{left:519.150000px;}
.x8d_c00236{left:520.650000px;}
.x52_c00236{left:522.000000px;}
.x5d_c00236{left:523.500000px;}
.x119_c00236{left:525.150000px;}
.xb0_c00236{left:528.750000px;}
.xb5_c00236{left:531.150000px;}
.x3d_c00236{left:533.700000px;}
.x106_c00236{left:537.450000px;}
.x46_c00236{left:540.300000px;}
.x83_c00236{left:541.500000px;}
.x16_c00236{left:543.300000px;}
.xaa_c00236{left:545.100000px;}
.x8_c00236{left:546.750000px;}
.x5e_c00236{left:548.700000px;}
.x10f_c00236{left:549.750000px;}
.x97_c00236{left:550.800000px;}
.xcb_c00236{left:552.000000px;}
.xd2_c00236{left:554.850000px;}
.xb1_c00236{left:556.800000px;}
.x125_c00236{left:558.750000px;}
.xec_c00236{left:561.150000px;}
.x26_c00236{left:562.200000px;}
.x17_c00236{left:565.200000px;}
.x3e_c00236{left:567.900000px;}
.xfc_c00236{left:570.300000px;}
.x134_c00236{left:573.600000px;}
.x101_c00236{left:574.800000px;}
.x126_c00236{left:576.450000px;}
.xcc_c00236{left:578.700000px;}
.x11f_c00236{left:584.550000px;}
.xa3_c00236{left:585.600000px;}
.x18_c00236{left:587.550000px;}
.x47_c00236{left:588.600000px;}
.xed_c00236{left:589.950000px;}
.x27_c00236{left:591.000000px;}
.x3f_c00236{left:592.800000px;}
.xf5_c00236{left:596.250000px;}
.x9_c00236{left:598.200000px;}
.x76_c00236{left:599.550000px;}
.x40_c00236{left:602.850000px;}
.xb2_c00236{left:605.400000px;}
.x138_c00236{left:606.750000px;}
.x84_c00236{left:608.850000px;}
.x10b_c00236{left:612.300000px;}
.x98_c00236{left:614.100000px;}
.x12c_c00236{left:617.550000px;}
.xa_c00236{left:619.500000px;}
.xb3_c00236{left:624.900000px;}
.x107_c00236{left:627.150000px;}
.x6a_c00236{left:629.400000px;}
.xc0_c00236{left:632.100000px;}
.x99_c00236{left:633.900000px;}
.x19_c00236{left:635.100000px;}
.x41_c00236{left:637.800000px;}
.xd3_c00236{left:639.450000px;}
.xf6_c00236{left:640.950000px;}
.xb_c00236{left:642.900000px;}
.xda_c00236{left:645.600000px;}
.x31_c00236{left:648.750000px;}
.x11a_c00236{left:649.800000px;}
.x53_c00236{left:652.800000px;}
.xb6_c00236{left:655.350000px;}
.xd4_c00236{left:657.750000px;}
.xc_c00236{left:659.100000px;}
.x28_c00236{left:660.150000px;}
.x8e_c00236{left:664.200000px;}
.xdb_c00236{left:667.500000px;}
.x127_c00236{left:670.800000px;}
.xcd_c00236{left:672.300000px;}
.x77_c00236{left:674.850000px;}
.x102_c00236{left:676.350000px;}
.x11b_c00236{left:678.600000px;}
.x32_c00236{left:679.650000px;}
.x1a_c00236{left:681.600000px;}
.x54_c00236{left:683.700000px;}
.x85_c00236{left:686.250000px;}
.xab_c00236{left:687.450000px;}
.xf7_c00236{left:688.500000px;}
.x6b_c00236{left:689.550000px;}
.x131_c00236{left:691.500000px;}
.xc1_c00236{left:692.550000px;}
.xce_c00236{left:693.900000px;}
.x78_c00236{left:696.450000px;}
.x103_c00236{left:697.650000px;}
.x116_c00236{left:698.850000px;}
.x8f_c00236{left:699.900000px;}
.xfd_c00236{left:701.400000px;}
.x13a_c00236{left:703.950000px;}
.xee_c00236{left:705.450000px;}
.x10c_c00236{left:706.650000px;}
.x1b_c00236{left:710.400000px;}
.xd_c00236{left:712.800000px;}
.x6c_c00236{left:715.050000px;}
.x86_c00236{left:717.600000px;}
.x9a_c00236{left:718.800000px;}
.xc2_c00236{left:721.350000px;}
.x48_c00236{left:723.000000px;}
.x79_c00236{left:724.500000px;}
.x104_c00236{left:726.150000px;}
.x108_c00236{left:728.400000px;}
.x11c_c00236{left:730.050000px;}
.x135_c00236{left:731.400000px;}
.xe_c00236{left:732.600000px;}
.xdc_c00236{left:735.150000px;}
.x9b_c00236{left:736.500000px;}
.xb4_c00236{left:737.550000px;}
.x6d_c00236{left:740.550000px;}
.xcf_c00236{left:742.500000px;}
.x29_c00236{left:746.250000px;}
.xb7_c00236{left:747.450000px;}
.x49_c00236{left:748.500000px;}
.x110_c00236{left:750.900000px;}
.x13b_c00236{left:752.550000px;}
.x87_c00236{left:753.600000px;}
.x136_c00236{left:755.100000px;}
.x12d_c00236{left:757.500000px;}
.x117_c00236{left:758.850000px;}
.x55_c00236{left:760.050000px;}
.xf_c00236{left:761.100000px;}
.x7a_c00236{left:768.000000px;}
.xe1_c00236{left:770.250000px;}
.x33_c00236{left:775.350000px;}
.xb8_c00236{left:776.550000px;}
.xa4_c00236{left:777.600000px;}
.x1c_c00236{left:779.850000px;}
.x132_c00236{left:782.100000px;}
.xac_c00236{left:784.650000px;}
.xdd_c00236{left:786.300000px;}
.x7b_c00236{left:788.100000px;}
.x90_c00236{left:789.300000px;}
.x123_c00236{left:790.950000px;}
.x9c_c00236{left:792.300000px;}
.x4a_c00236{left:795.000000px;}
.x11d_c00236{left:798.750000px;}
.xd5_c00236{left:802.800000px;}
.x42_c00236{left:804.450000px;}
.x111_c00236{left:807.000000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws3_c00236{word-spacing:-1.481481pt;}
.ws9_c00236{word-spacing:0.000000pt;}
.ws2_c00236{word-spacing:0.246914pt;}
.ws0_c00236{word-spacing:0.925926pt;}
.ws5_c00236{word-spacing:1.481481pt;}
.ws1_c00236{word-spacing:4.444444pt;}
.ws8_c00236{word-spacing:5.802469pt;}
.ws6_c00236{word-spacing:6.428571pt;}
.ws7_c00236{word-spacing:9.542484pt;}
.ws4_c00236{word-spacing:11.975309pt;}
._1_c00236{width:38.128655pt;}
._0_c00236{width:66.198830pt;}
.fs0_c00236{font-size:48.000000pt;}
.fs1_c00236{font-size:53.333333pt;}
.y0_c00236{bottom:0.000000pt;}
.y2c_c00236{bottom:137.866667pt;}
.y2b_c00236{bottom:151.733333pt;}
.y2a_c00236{bottom:166.133333pt;}
.y29_c00236{bottom:179.866667pt;}
.y28_c00236{bottom:226.266667pt;}
.y27_c00236{bottom:244.400000pt;}
.y26_c00236{bottom:262.000000pt;}
.y25_c00236{bottom:279.866667pt;}
.y24_c00236{bottom:297.733333pt;}
.y23_c00236{bottom:315.600000pt;}
.y22_c00236{bottom:333.200000pt;}
.y21_c00236{bottom:351.066667pt;}
.y20_c00236{bottom:368.933333pt;}
.y1f_c00236{bottom:386.533333pt;}
.y1e_c00236{bottom:403.600000pt;}
.y1d_c00236{bottom:421.866667pt;}
.y1c_c00236{bottom:439.733333pt;}
.y1b_c00236{bottom:457.333333pt;}
.y1a_c00236{bottom:474.800000pt;}
.y19_c00236{bottom:493.066667pt;}
.y18_c00236{bottom:510.666667pt;}
.y17_c00236{bottom:528.533333pt;}
.y16_c00236{bottom:545.866667pt;}
.y15_c00236{bottom:563.733333pt;}
.y14_c00236{bottom:581.333333pt;}
.y13_c00236{bottom:599.200000pt;}
.y12_c00236{bottom:617.066667pt;}
.y11_c00236{bottom:634.666667pt;}
.y10_c00236{bottom:652.533333pt;}
.yf_c00236{bottom:670.133333pt;}
.ye_c00236{bottom:688.400000pt;}
.yd_c00236{bottom:706.000000pt;}
.yc_c00236{bottom:723.600000pt;}
.yb_c00236{bottom:741.466667pt;}
.ya_c00236{bottom:759.333333pt;}
.y9_c00236{bottom:777.066667pt;}
.y8_c00236{bottom:794.933333pt;}
.y7_c00236{bottom:812.533333pt;}
.y6_c00236{bottom:830.133333pt;}
.y5_c00236{bottom:848.000000pt;}
.y4_c00236{bottom:865.866667pt;}
.y3_c00236{bottom:883.200000pt;}
.y2_c00236{bottom:901.066667pt;}
.y1_c00236{bottom:935.733333pt;}
.h2_c00236{height:48.000000pt;}
.h3_c00236{height:53.333333pt;}
.h0_c00236{height:1037.119955pt;}
.h1_c00236{height:1037.333333pt;}
.w0_c00236{width:816.640056pt;}
.w1_c00236{width:816.666667pt;}
.x0_c00236{left:0.000000pt;}
.x1d_c00236{left:124.533333pt;}
.x1_c00236{left:125.466667pt;}
.xfe_c00236{left:126.533333pt;}
.x112_c00236{left:128.266667pt;}
.x113_c00236{left:138.800000pt;}
.x88_c00236{left:141.466667pt;}
.xf8_c00236{left:142.533333pt;}
.xc3_c00236{left:144.933333pt;}
.x91_c00236{left:146.400000pt;}
.x1e_c00236{left:147.866667pt;}
.x56_c00236{left:148.933333pt;}
.xff_c00236{left:151.466667pt;}
.x5f_c00236{left:152.933333pt;}
.xf1_c00236{left:154.266667pt;}
.x128_c00236{left:155.200000pt;}
.x34_c00236{left:156.400000pt;}
.x2a_c00236{left:157.600000pt;}
.x120_c00236{left:159.200000pt;}
.x9d_c00236{left:161.600000pt;}
.x60_c00236{left:163.866667pt;}
.x57_c00236{left:165.200000pt;}
.x10_c00236{left:167.733333pt;}
.x2b_c00236{left:173.333333pt;}
.xe6_c00236{left:175.733333pt;}
.x6e_c00236{left:178.266667pt;}
.xf2_c00236{left:179.200000pt;}
.x129_c00236{left:182.133333pt;}
.x1f_c00236{left:183.333333pt;}
.x122_c00236{left:184.266667pt;}
.x118_c00236{left:186.133333pt;}
.x58_c00236{left:187.866667pt;}
.x35_c00236{left:189.733333pt;}
.xd6_c00236{left:191.466667pt;}
.x7c_c00236{left:193.200000pt;}
.xef_c00236{left:194.800000pt;}
.xa5_c00236{left:196.533333pt;}
.xc4_c00236{left:198.666667pt;}
.x61_c00236{left:199.733333pt;}
.x133_c00236{left:201.066667pt;}
.x2c_c00236{left:202.133333pt;}
.xde_c00236{left:203.200000pt;}
.x4b_c00236{left:204.266667pt;}
.x121_c00236{left:205.333333pt;}
.x36_c00236{left:207.066667pt;}
.x3_c00236{left:208.000000pt;}
.xe7_c00236{left:209.600000pt;}
.x105_c00236{left:211.600000pt;}
.x6f_c00236{left:213.466667pt;}
.xa6_c00236{left:216.400000pt;}
.xf9_c00236{left:218.000000pt;}
.x89_c00236{left:219.600000pt;}
.x9e_c00236{left:221.733333pt;}
.x20_c00236{left:222.666667pt;}
.x62_c00236{left:223.733333pt;}
.xb9_c00236{left:226.533333pt;}
.x7d_c00236{left:228.400000pt;}
.x43_c00236{left:230.000000pt;}
.xd0_c00236{left:232.000000pt;}
.x8a_c00236{left:233.733333pt;}
.x109_c00236{left:235.200000pt;}
.x12a_c00236{left:236.800000pt;}
.x59_c00236{left:238.800000pt;}
.x11_c00236{left:239.733333pt;}
.x2d_c00236{left:241.466667pt;}
.x4c_c00236{left:244.266667pt;}
.xd7_c00236{left:245.200000pt;}
.x92_c00236{left:248.133333pt;}
.x4_c00236{left:251.866667pt;}
.x70_c00236{left:254.800000pt;}
.x100_c00236{left:257.333333pt;}
.x114_c00236{left:258.933333pt;}
.x9f_c00236{left:260.400000pt;}
.x93_c00236{left:261.600000pt;}
.xba_c00236{left:262.666667pt;}
.xfa_c00236{left:264.400000pt;}
.xc5_c00236{left:267.466667pt;}
.x12_c00236{left:270.133333pt;}
.x12e_c00236{left:271.066667pt;}
.x63_c00236{left:273.333333pt;}
.x71_c00236{left:275.333333pt;}
.x7e_c00236{left:276.400000pt;}
.xdf_c00236{left:278.133333pt;}
.xbb_c00236{left:280.266667pt;}
.x12f_c00236{left:281.333333pt;}
.xe2_c00236{left:282.800000pt;}
.x44_c00236{left:284.400000pt;}
.x37_c00236{left:287.066667pt;}
.x5_c00236{left:288.000000pt;}
.x4d_c00236{left:289.066667pt;}
.x21_c00236{left:290.800000pt;}
.x13_c00236{left:295.066667pt;}
.x139_c00236{left:296.400000pt;}
.x38_c00236{left:297.333333pt;}
.x2e_c00236{left:298.400000pt;}
.xa7_c00236{left:299.866667pt;}
.xe3_c00236{left:301.733333pt;}
.xad_c00236{left:302.666667pt;}
.x22_c00236{left:304.266667pt;}
.x4e_c00236{left:306.933333pt;}
.x64_c00236{left:310.133333pt;}
.x5a_c00236{left:312.000000pt;}
.xd8_c00236{left:313.066667pt;}
.x8b_c00236{left:314.400000pt;}
.x2f_c00236{left:316.266667pt;}
.xfb_c00236{left:318.800000pt;}
.xae_c00236{left:320.933333pt;}
.xa0_c00236{left:322.800000pt;}
.x72_c00236{left:324.933333pt;}
.xc6_c00236{left:326.000000pt;}
.x39_c00236{left:328.400000pt;}
.xe8_c00236{left:330.266667pt;}
.xd9_c00236{left:332.000000pt;}
.x65_c00236{left:333.466667pt;}
.x30_c00236{left:334.533333pt;}
.x14_c00236{left:335.733333pt;}
.xa8_c00236{left:337.333333pt;}
.x23_c00236{left:339.200000pt;}
.xf0_c00236{left:340.933333pt;}
.x10d_c00236{left:342.000000pt;}
.x73_c00236{left:343.466667pt;}
.xbc_c00236{left:345.333333pt;}
.x94_c00236{left:346.933333pt;}
.xe4_c00236{left:350.000000pt;}
.xe9_c00236{left:352.000000pt;}
.xbd_c00236{left:355.200000pt;}
.x10e_c00236{left:358.000000pt;}
.x4f_c00236{left:359.066667pt;}
.x7f_c00236{left:361.600000pt;}
.x11e_c00236{left:362.533333pt;}
.x3a_c00236{left:364.266667pt;}
.xc7_c00236{left:366.400000pt;}
.xa1_c00236{left:368.533333pt;}
.x95_c00236{left:371.200000pt;}
.x6_c00236{left:373.066667pt;}
.x5b_c00236{left:374.400000pt;}
.xf3_c00236{left:375.466667pt;}
.x10a_c00236{left:378.533333pt;}
.x66_c00236{left:380.800000pt;}
.xbe_c00236{left:384.000000pt;}
.xe5_c00236{left:385.200000pt;}
.x80_c00236{left:386.266667pt;}
.x2_c00236{left:390.400000pt;}
.x24_c00236{left:392.266667pt;}
.x74_c00236{left:394.666667pt;}
.xc8_c00236{left:396.133333pt;}
.x15_c00236{left:397.200000pt;}
.x67_c00236{left:398.133333pt;}
.xa2_c00236{left:399.200000pt;}
.xea_c00236{left:401.866667pt;}
.x81_c00236{left:403.866667pt;}
.x124_c00236{left:406.533333pt;}
.x3b_c00236{left:407.466667pt;}
.x68_c00236{left:409.066667pt;}
.x50_c00236{left:411.200000pt;}
.xf4_c00236{left:412.933333pt;}
.x25_c00236{left:414.933333pt;}
.x82_c00236{left:418.933333pt;}
.x75_c00236{left:422.133333pt;}
.x12b_c00236{left:423.733333pt;}
.x3c_c00236{left:425.066667pt;}
.xa9_c00236{left:427.600000pt;}
.xc9_c00236{left:429.466667pt;}
.xe0_c00236{left:430.666667pt;}
.x130_c00236{left:432.000000pt;}
.xbf_c00236{left:433.866667pt;}
.xaf_c00236{left:436.133333pt;}
.x8c_c00236{left:437.866667pt;}
.x5c_c00236{left:440.000000pt;}
.x51_c00236{left:441.333333pt;}
.x7_c00236{left:442.533333pt;}
.x115_c00236{left:446.133333pt;}
.x69_c00236{left:447.466667pt;}
.x45_c00236{left:448.933333pt;}
.xeb_c00236{left:450.800000pt;}
.x137_c00236{left:452.666667pt;}
.x96_c00236{left:455.733333pt;}
.xca_c00236{left:458.933333pt;}
.xd1_c00236{left:461.466667pt;}
.x8d_c00236{left:462.800000pt;}
.x52_c00236{left:464.000000pt;}
.x5d_c00236{left:465.333333pt;}
.x119_c00236{left:466.800000pt;}
.xb0_c00236{left:470.000000pt;}
.xb5_c00236{left:472.133333pt;}
.x3d_c00236{left:474.400000pt;}
.x106_c00236{left:477.733333pt;}
.x46_c00236{left:480.266667pt;}
.x83_c00236{left:481.333333pt;}
.x16_c00236{left:482.933333pt;}
.xaa_c00236{left:484.533333pt;}
.x8_c00236{left:486.000000pt;}
.x5e_c00236{left:487.733333pt;}
.x10f_c00236{left:488.666667pt;}
.x97_c00236{left:489.600000pt;}
.xcb_c00236{left:490.666667pt;}
.xd2_c00236{left:493.200000pt;}
.xb1_c00236{left:494.933333pt;}
.x125_c00236{left:496.666667pt;}
.xec_c00236{left:498.800000pt;}
.x26_c00236{left:499.733333pt;}
.x17_c00236{left:502.400000pt;}
.x3e_c00236{left:504.800000pt;}
.xfc_c00236{left:506.933333pt;}
.x134_c00236{left:509.866667pt;}
.x101_c00236{left:510.933333pt;}
.x126_c00236{left:512.400000pt;}
.xcc_c00236{left:514.400000pt;}
.x11f_c00236{left:519.600000pt;}
.xa3_c00236{left:520.533333pt;}
.x18_c00236{left:522.266667pt;}
.x47_c00236{left:523.200000pt;}
.xed_c00236{left:524.400000pt;}
.x27_c00236{left:525.333333pt;}
.x3f_c00236{left:526.933333pt;}
.xf5_c00236{left:530.000000pt;}
.x9_c00236{left:531.733333pt;}
.x76_c00236{left:532.933333pt;}
.x40_c00236{left:535.866667pt;}
.xb2_c00236{left:538.133333pt;}
.x138_c00236{left:539.333333pt;}
.x84_c00236{left:541.200000pt;}
.x10b_c00236{left:544.266667pt;}
.x98_c00236{left:545.866667pt;}
.x12c_c00236{left:548.933333pt;}
.xa_c00236{left:550.666667pt;}
.xb3_c00236{left:555.466667pt;}
.x107_c00236{left:557.466667pt;}
.x6a_c00236{left:559.466667pt;}
.xc0_c00236{left:561.866667pt;}
.x99_c00236{left:563.466667pt;}
.x19_c00236{left:564.533333pt;}
.x41_c00236{left:566.933333pt;}
.xd3_c00236{left:568.400000pt;}
.xf6_c00236{left:569.733333pt;}
.xb_c00236{left:571.466667pt;}
.xda_c00236{left:573.866667pt;}
.x31_c00236{left:576.666667pt;}
.x11a_c00236{left:577.600000pt;}
.x53_c00236{left:580.266667pt;}
.xb6_c00236{left:582.533333pt;}
.xd4_c00236{left:584.666667pt;}
.xc_c00236{left:585.866667pt;}
.x28_c00236{left:586.800000pt;}
.x8e_c00236{left:590.400000pt;}
.xdb_c00236{left:593.333333pt;}
.x127_c00236{left:596.266667pt;}
.xcd_c00236{left:597.600000pt;}
.x77_c00236{left:599.866667pt;}
.x102_c00236{left:601.200000pt;}
.x11b_c00236{left:603.200000pt;}
.x32_c00236{left:604.133333pt;}
.x1a_c00236{left:605.866667pt;}
.x54_c00236{left:607.733333pt;}
.x85_c00236{left:610.000000pt;}
.xab_c00236{left:611.066667pt;}
.xf7_c00236{left:612.000000pt;}
.x6b_c00236{left:612.933333pt;}
.x131_c00236{left:614.666667pt;}
.xc1_c00236{left:615.600000pt;}
.xce_c00236{left:616.800000pt;}
.x78_c00236{left:619.066667pt;}
.x103_c00236{left:620.133333pt;}
.x116_c00236{left:621.200000pt;}
.x8f_c00236{left:622.133333pt;}
.xfd_c00236{left:623.466667pt;}
.x13a_c00236{left:625.733333pt;}
.xee_c00236{left:627.066667pt;}
.x10c_c00236{left:628.133333pt;}
.x1b_c00236{left:631.466667pt;}
.xd_c00236{left:633.600000pt;}
.x6c_c00236{left:635.600000pt;}
.x86_c00236{left:637.866667pt;}
.x9a_c00236{left:638.933333pt;}
.xc2_c00236{left:641.200000pt;}
.x48_c00236{left:642.666667pt;}
.x79_c00236{left:644.000000pt;}
.x104_c00236{left:645.466667pt;}
.x108_c00236{left:647.466667pt;}
.x11c_c00236{left:648.933333pt;}
.x135_c00236{left:650.133333pt;}
.xe_c00236{left:651.200000pt;}
.xdc_c00236{left:653.466667pt;}
.x9b_c00236{left:654.666667pt;}
.xb4_c00236{left:655.600000pt;}
.x6d_c00236{left:658.266667pt;}
.xcf_c00236{left:660.000000pt;}
.x29_c00236{left:663.333333pt;}
.xb7_c00236{left:664.400000pt;}
.x49_c00236{left:665.333333pt;}
.x110_c00236{left:667.466667pt;}
.x13b_c00236{left:668.933333pt;}
.x87_c00236{left:669.866667pt;}
.x136_c00236{left:671.200000pt;}
.x12d_c00236{left:673.333333pt;}
.x117_c00236{left:674.533333pt;}
.x55_c00236{left:675.600000pt;}
.xf_c00236{left:676.533333pt;}
.x7a_c00236{left:682.666667pt;}
.xe1_c00236{left:684.666667pt;}
.x33_c00236{left:689.200000pt;}
.xb8_c00236{left:690.266667pt;}
.xa4_c00236{left:691.200000pt;}
.x1c_c00236{left:693.200000pt;}
.x132_c00236{left:695.200000pt;}
.xac_c00236{left:697.466667pt;}
.xdd_c00236{left:698.933333pt;}
.x7b_c00236{left:700.533333pt;}
.x90_c00236{left:701.600000pt;}
.x123_c00236{left:703.066667pt;}
.x9c_c00236{left:704.266667pt;}
.x4a_c00236{left:706.666667pt;}
.x11d_c00236{left:710.000000pt;}
.xd5_c00236{left:713.600000pt;}
.x42_c00236{left:715.066667pt;}
.x111_c00236{left:717.333333pt;}
}





/* 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_c00237 {
    display:none;
  }
  .loading-indicator_c00237.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00237 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_c00237 { 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_c00237" -> "#page-container .classname_c00237")
 */
.pf_c00237 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00237 { /* 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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00237 { /* 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_c00237 { /* 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_c00237 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00237 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00237 {overflow:visible;}
  }
}
.c_c00237 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00237 { /* 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_c00237:after { /* webkit #35443 */
  content: '';
}
.t_c00237:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00237 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 */
}
.__c00237 { /* 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_c00237 { /* info for Javascript */
  display:none;
}
.l_c00237 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00237 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00237 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00237: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_c00237 {
    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_c00237.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00237.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_c00237 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00237{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.000000;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;}
.m51_c00237{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00237{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m86_c00237{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00237{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00237{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m82_c00237{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m35_c00237{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00237{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00237{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m68_c00237{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00237{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00237{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00237{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mab_c00237{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00237{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m54_c00237{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00237{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00237{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m85_c00237{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m84_c00237{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00237{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00237{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m30_c00237{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m80_c00237{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m64_c00237{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00237{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m42_c00237{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00237{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m40_c00237{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m15_c00237{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m62_c00237{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m95_c00237{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m76_c00237{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00237{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00237{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m27_c00237{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m75_c00237{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00237{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.maa_c00237{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m88_c00237{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m50_c00237{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00237{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m99_c00237{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m61_c00237{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m65_c00237{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00237{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00237{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00237{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00237{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m24_c00237{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00237{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00237{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m37_c00237{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00237{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m28_c00237{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.md_c00237{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00237{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00237{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00237{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00237{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m81_c00237{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00237{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m52_c00237{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m96_c00237{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m34_c00237{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m47_c00237{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m31_c00237{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m48_c00237{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00237{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00237{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00237{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m32_c00237{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);}
.m10_c00237{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m83_c00237{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m39_c00237{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m94_c00237{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc_c00237{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00237{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m69_c00237{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00237{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00237{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m49_c00237{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m92_c00237{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m56_c00237{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m91_c00237{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m57_c00237{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m63_c00237{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00237{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00237{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m23_c00237{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4_c00237{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00237{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00237{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m26_c00237{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m60_c00237{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00237{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mb_c00237{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00237{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m78_c00237{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00237{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00237{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m18_c00237{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m46_c00237{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m66_c00237{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m17_c00237{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00237{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00237{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00237{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00237{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m59_c00237{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00237{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00237{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00237{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m71_c00237{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5_c00237{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m87_c00237{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m73_c00237{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m79_c00237{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00237{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m74_c00237{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00237{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m93_c00237{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00237{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00237{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m36_c00237{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m98_c00237{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m70_c00237{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00237{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00237{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m58_c00237{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m44_c00237{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m77_c00237{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m97_c00237{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m72_c00237{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00237{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m38_c00237{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m90_c00237{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m41_c00237{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m67_c00237{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m43_c00237{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00237{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{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__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00237{word-spacing:-11.156250px;}
.ws3_c00237{word-spacing:0.000000px;}
.ws1_c00237{word-spacing:1.082474px;}
.ws0_c00237{word-spacing:10.392857px;}
.fc0_c00237{color:transparent;}
.fs0_c00237{font-size:54.000000px;}
.y0_c00237{bottom:0.000000px;}
.y2c_c00237{bottom:141.450000px;}
.y2b_c00237{bottom:158.400000px;}
.y2a_c00237{bottom:189.900000px;}
.y29_c00237{bottom:210.000000px;}
.y28_c00237{bottom:229.800000px;}
.y27_c00237{bottom:249.600000px;}
.y26_c00237{bottom:269.400000px;}
.y25_c00237{bottom:289.500000px;}
.y24_c00237{bottom:324.900000px;}
.y23_c00237{bottom:345.000000px;}
.y22_c00237{bottom:364.800000px;}
.y21_c00237{bottom:384.600000px;}
.y20_c00237{bottom:404.700000px;}
.y1f_c00237{bottom:424.500000px;}
.y1e_c00237{bottom:444.300000px;}
.y1d_c00237{bottom:464.400000px;}
.y1c_c00237{bottom:484.200000px;}
.y1b_c00237{bottom:504.300000px;}
.y1a_c00237{bottom:523.800000px;}
.y19_c00237{bottom:543.600000px;}
.y18_c00237{bottom:563.700000px;}
.y17_c00237{bottom:583.950000px;}
.y16_c00237{bottom:604.050000px;}
.y15_c00237{bottom:624.000000px;}
.y14_c00237{bottom:644.100000px;}
.y13_c00237{bottom:663.900000px;}
.y12_c00237{bottom:683.700000px;}
.y11_c00237{bottom:703.800000px;}
.y10_c00237{bottom:723.600000px;}
.yf_c00237{bottom:743.550000px;}
.ye_c00237{bottom:763.350000px;}
.yd_c00237{bottom:783.450000px;}
.yc_c00237{bottom:803.250000px;}
.yb_c00237{bottom:823.350000px;}
.ya_c00237{bottom:843.150000px;}
.y9_c00237{bottom:863.400000px;}
.y8_c00237{bottom:883.500000px;}
.y7_c00237{bottom:903.600000px;}
.y6_c00237{bottom:923.400000px;}
.y5_c00237{bottom:943.500000px;}
.y4_c00237{bottom:963.300000px;}
.y3_c00237{bottom:983.100000px;}
.y2_c00237{bottom:1002.900000px;}
.y1_c00237{bottom:1041.900000px;}
.h2_c00237{height:54.000000px;}
.h0_c00237{height:1166.759949px;}
.h1_c00237{height:1167.000000px;}
.w0_c00237{width:918.720063px;}
.w1_c00237{width:918.750000px;}
.x0_c00237{left:0.000000px;}
.x99_c00237{left:102.600000px;}
.x3_c00237{left:103.650000px;}
.xca_c00237{left:104.700000px;}
.x136_c00237{left:105.900000px;}
.x6e_c00237{left:120.300000px;}
.x12b_c00237{left:125.550000px;}
.x15_c00237{left:129.150000px;}
.x4_c00237{left:131.400000px;}
.x44_c00237{left:135.000000px;}
.xdb_c00237{left:136.050000px;}
.x50_c00237{left:137.550000px;}
.x41_c00237{left:138.900000px;}
.x5c_c00237{left:140.250000px;}
.x35_c00237{left:141.300000px;}
.xfd_c00237{left:144.900000px;}
.x110_c00237{left:146.850000px;}
.x45_c00237{left:151.500000px;}
.x85_c00237{left:153.450000px;}
.x8f_c00237{left:154.800000px;}
.xa7_c00237{left:155.850000px;}
.xba_c00237{left:158.100000px;}
.x16_c00237{left:160.800000px;}
.xa0_c00237{left:162.000000px;}
.x12c_c00237{left:164.100000px;}
.xdc_c00237{left:165.900000px;}
.x6f_c00237{left:168.150000px;}
.x5d_c00237{left:170.550000px;}
.x7a_c00237{left:177.300000px;}
.x5_c00237{left:178.500000px;}
.xea_c00237{left:182.100000px;}
.x137_c00237{left:183.600000px;}
.x5e_c00237{left:185.250000px;}
.x114_c00237{left:186.900000px;}
.xcb_c00237{left:188.250000px;}
.x90_c00237{left:189.300000px;}
.x27_c00237{left:190.800000px;}
.x51_c00237{left:192.600000px;}
.x65_c00237{left:193.650000px;}
.x104_c00237{left:196.500000px;}
.x42_c00237{left:198.300000px;}
.x5f_c00237{left:200.700000px;}
.x91_c00237{left:202.950000px;}
.x86_c00237{left:204.300000px;}
.x10a_c00237{left:208.050000px;}
.x36_c00237{left:210.450000px;}
.x60_c00237{left:213.000000px;}
.xb2_c00237{left:214.950000px;}
.x46_c00237{left:216.000000px;}
.x138_c00237{left:217.500000px;}
.xf8_c00237{left:219.750000px;}
.x11e_c00237{left:220.800000px;}
.x115_c00237{left:222.150000px;}
.x7b_c00237{left:224.850000px;}
.x125_c00237{left:226.650000px;}
.x17_c00237{left:227.700000px;}
.x43_c00237{left:230.700000px;}
.xf0_c00237{left:232.050000px;}
.x11b_c00237{left:233.100000px;}
.x9a_c00237{left:237.300000px;}
.x10b_c00237{left:238.350000px;}
.x52_c00237{left:240.600000px;}
.xa8_c00237{left:241.800000px;}
.x12d_c00237{left:244.800000px;}
.xc2_c00237{left:246.450000px;}
.xfe_c00237{left:247.800000px;}
.xe2_c00237{left:249.150000px;}
.x28_c00237{left:250.950000px;}
.x11c_c00237{left:252.600000px;}
.x6_c00237{left:255.600000px;}
.x70_c00237{left:258.600000px;}
.x87_c00237{left:260.100000px;}
.x12e_c00237{left:262.500000px;}
.xd2_c00237{left:264.150000px;}
.x18_c00237{left:265.800000px;}
.x7c_c00237{left:267.300000px;}
.x47_c00237{left:268.950000px;}
.xf1_c00237{left:271.350000px;}
.x105_c00237{left:273.900000px;}
.xb3_c00237{left:275.850000px;}
.xa9_c00237{left:277.500000px;}
.x71_c00237{left:279.150000px;}
.x88_c00237{left:280.950000px;}
.xa1_c00237{left:282.000000px;}
.xbb_c00237{left:283.050000px;}
.x29_c00237{left:284.100000px;}
.x7_c00237{left:286.500000px;}
.x48_c00237{left:288.450000px;}
.xb4_c00237{left:291.300000px;}
.x19_c00237{left:293.550000px;}
.xe3_c00237{left:298.500000px;}
.xeb_c00237{left:300.450000px;}
.x37_c00237{left:301.500000px;}
.x2a_c00237{left:303.600000px;}
.x53_c00237{left:306.150000px;}
.x9b_c00237{left:307.500000px;}
.x72_c00237{left:309.000000px;}
.xcc_c00237{left:310.650000px;}
.xa2_c00237{left:311.850000px;}
.x8_c00237{left:314.550000px;}
.x13b_c00237{left:317.400000px;}
.xf9_c00237{left:319.500000px;}
.x89_c00237{left:320.850000px;}
.xaa_c00237{left:322.200000px;}
.x11f_c00237{left:323.700000px;}
.x1a_c00237{left:325.950000px;}
.x139_c00237{left:327.600000px;}
.x92_c00237{left:328.950000px;}
.x2b_c00237{left:332.100000px;}
.xff_c00237{left:334.500000px;}
.x61_c00237{left:335.850000px;}
.x9c_c00237{left:337.350000px;}
.x134_c00237{left:340.650000px;}
.x126_c00237{left:342.600000px;}
.xd3_c00237{left:343.800000px;}
.x7d_c00237{left:345.000000px;}
.x1b_c00237{left:347.250000px;}
.xee_c00237{left:348.750000px;}
.x9_c00237{left:349.800000px;}
.x54_c00237{left:353.250000px;}
.xbc_c00237{left:354.300000px;}
.xab_c00237{left:355.650000px;}
.x38_c00237{left:360.900000px;}
.x8a_c00237{left:361.950000px;}
.x111_c00237{left:363.150000px;}
.x120_c00237{left:365.400000px;}
.x93_c00237{left:368.550000px;}
.x1c_c00237{left:369.900000px;}
.x131_c00237{left:371.100000px;}
.xc3_c00237{left:372.450000px;}
.xbd_c00237{left:374.100000px;}
.x2c_c00237{left:377.100000px;}
.xec_c00237{left:379.200000px;}
.xf4_c00237{left:380.700000px;}
.x9d_c00237{left:384.150000px;}
.x7e_c00237{left:385.650000px;}
.x94_c00237{left:389.100000px;}
.x39_c00237{left:391.800000px;}
.xdd_c00237{left:395.700000px;}
.x112_c00237{left:398.100000px;}
.x49_c00237{left:399.300000px;}
.x55_c00237{left:404.400000px;}
.xef_c00237{left:408.150000px;}
.xa_c00237{left:409.200000px;}
.x62_c00237{left:410.400000px;}
.xd4_c00237{left:412.200000px;}
.x1_c00237{left:413.700000px;}
.x11d_c00237{left:415.650000px;}
.x95_c00237{left:416.850000px;}
.x66_c00237{left:418.200000px;}
.x73_c00237{left:419.550000px;}
.xe4_c00237{left:421.950000px;}
.x116_c00237{left:425.100000px;}
.x2d_c00237{left:428.550000px;}
.x10c_c00237{left:429.750000px;}
.xac_c00237{left:433.350000px;}
.x1d_c00237{left:435.000000px;}
.xcd_c00237{left:436.650000px;}
.xed_c00237{left:439.950000px;}
.x4a_c00237{left:442.800000px;}
.xc4_c00237{left:444.150000px;}
.x8b_c00237{left:445.500000px;}
.x13a_c00237{left:448.800000px;}
.x117_c00237{left:450.600000px;}
.xe5_c00237{left:451.800000px;}
.x132_c00237{left:453.150000px;}
.x74_c00237{left:454.800000px;}
.x106_c00237{left:456.150000px;}
.xce_c00237{left:457.200000px;}
.x1e_c00237{left:458.700000px;}
.x12f_c00237{left:459.750000px;}
.xa3_c00237{left:460.950000px;}
.xc5_c00237{left:463.950000px;}
.x7f_c00237{left:465.600000px;}
.x3a_c00237{left:467.100000px;}
.xb_c00237{left:469.350000px;}
.x67_c00237{left:475.050000px;}
.xe6_c00237{left:476.250000px;}
.xf2_c00237{left:477.300000px;}
.xb5_c00237{left:481.650000px;}
.x56_c00237{left:483.150000px;}
.x1f_c00237{left:484.200000px;}
.xf5_c00237{left:486.150000px;}
.xc_c00237{left:489.450000px;}
.x96_c00237{left:491.700000px;}
.x63_c00237{left:493.950000px;}
.xd5_c00237{left:495.450000px;}
.x118_c00237{left:497.400000px;}
.x3b_c00237{left:498.450000px;}
.x75_c00237{left:500.550000px;}
.x2e_c00237{left:503.400000px;}
.x127_c00237{left:505.050000px;}
.x10d_c00237{left:506.400000px;}
.xb6_c00237{left:507.900000px;}
.xf6_c00237{left:509.850000px;}
.x57_c00237{left:513.000000px;}
.xad_c00237{left:514.800000px;}
.x121_c00237{left:517.050000px;}
.x8c_c00237{left:518.550000px;}
.xd8_c00237{left:520.350000px;}
.x76_c00237{left:521.400000px;}
.xde_c00237{left:523.950000px;}
.xfa_c00237{left:525.600000px;}
.xd_c00237{left:527.250000px;}
.x64_c00237{left:528.450000px;}
.x68_c00237{left:530.100000px;}
.xa4_c00237{left:534.750000px;}
.xf3_c00237{left:536.700000px;}
.x100_c00237{left:538.650000px;}
.x2f_c00237{left:540.150000px;}
.x113_c00237{left:542.400000px;}
.x3c_c00237{left:545.550000px;}
.xc6_c00237{left:547.050000px;}
.xe_c00237{left:549.150000px;}
.x77_c00237{left:551.250000px;}
.xe7_c00237{left:552.600000px;}
.xdf_c00237{left:554.550000px;}
.xd9_c00237{left:556.050000px;}
.x20_c00237{left:557.250000px;}
.x80_c00237{left:558.900000px;}
.x9e_c00237{left:561.000000px;}
.xbe_c00237{left:562.050000px;}
.x69_c00237{left:563.550000px;}
.x8d_c00237{left:566.400000px;}
.x4b_c00237{left:569.550000px;}
.x58_c00237{left:572.100000px;}
.x3d_c00237{left:574.050000px;}
.xcf_c00237{left:575.550000px;}
.xf_c00237{left:576.900000px;}
.x9f_c00237{left:577.950000px;}
.xae_c00237{left:579.600000px;}
.xda_c00237{left:582.000000px;}
.x81_c00237{left:587.700000px;}
.x30_c00237{left:590.850000px;}
.x107_c00237{left:592.950000px;}
.x122_c00237{left:594.150000px;}
.x8e_c00237{left:595.500000px;}
.x78_c00237{left:596.550000px;}
.xe8_c00237{left:599.700000px;}
.xd0_c00237{left:601.500000px;}
.xc7_c00237{left:602.550000px;}
.xe0_c00237{left:605.700000px;}
.x21_c00237{left:607.350000px;}
.x82_c00237{left:608.550000px;}
.x123_c00237{left:609.600000px;}
.x31_c00237{left:611.700000px;}
.x6a_c00237{left:613.950000px;}
.x4c_c00237{left:615.300000px;}
.x59_c00237{left:616.350000px;}
.x101_c00237{left:618.300000px;}
.x128_c00237{left:620.550000px;}
.xb7_c00237{left:622.800000px;}
.x79_c00237{left:626.400000px;}
.x10_c00237{left:629.400000px;}
.x4d_c00237{left:630.750000px;}
.xbf_c00237{left:632.250000px;}
.x22_c00237{left:634.350000px;}
.x13c_c00237{left:636.900000px;}
.x32_c00237{left:639.000000px;}
.x119_c00237{left:642.600000px;}
.x6b_c00237{left:644.550000px;}
.xaf_c00237{left:646.200000px;}
.x5a_c00237{left:647.250000px;}
.xe9_c00237{left:649.350000px;}
.xc8_c00237{left:651.150000px;}
.x3e_c00237{left:655.500000px;}
.xa5_c00237{left:656.850000px;}
.x23_c00237{left:658.800000px;}
.x33_c00237{left:659.850000px;}
.xc0_c00237{left:661.800000px;}
.xd6_c00237{left:664.950000px;}
.xb8_c00237{left:667.050000px;}
.xd1_c00237{left:668.400000px;}
.x11_c00237{left:669.750000px;}
.xfb_c00237{left:671.250000px;}
.xe1_c00237{left:672.300000px;}
.x108_c00237{left:673.350000px;}
.x3f_c00237{left:675.300000px;}
.x10e_c00237{left:677.100000px;}
.xb0_c00237{left:678.600000px;}
.xc9_c00237{left:679.650000px;}
.x83_c00237{left:680.850000px;}
.xb9_c00237{left:682.200000px;}
.x130_c00237{left:684.000000px;}
.x24_c00237{left:685.500000px;}
.x6c_c00237{left:687.000000px;}
.x34_c00237{left:689.700000px;}
.x12_c00237{left:691.050000px;}
.xf7_c00237{left:697.350000px;}
.xd7_c00237{left:699.150000px;}
.x4e_c00237{left:703.050000px;}
.x40_c00237{left:704.100000px;}
.x129_c00237{left:705.450000px;}
.x135_c00237{left:707.850000px;}
.x10f_c00237{left:709.200000px;}
.x102_c00237{left:711.600000px;}
.x11a_c00237{left:712.800000px;}
.xa6_c00237{left:714.150000px;}
.x13_c00237{left:717.750000px;}
.xfc_c00237{left:718.800000px;}
.x109_c00237{left:720.450000px;}
.x97_c00237{left:722.400000px;}
.x4f_c00237{left:725.400000px;}
.xc1_c00237{left:728.400000px;}
.x25_c00237{left:729.750000px;}
.x12a_c00237{left:730.950000px;}
.x5b_c00237{left:732.150000px;}
.x84_c00237{left:735.600000px;}
.x103_c00237{left:739.650000px;}
.x133_c00237{left:741.000000px;}
.x6d_c00237{left:742.050000px;}
.x124_c00237{left:743.400000px;}
.x2_c00237{left:745.650000px;}
.xb1_c00237{left:746.700000px;}
.x26_c00237{left:747.750000px;}
.x98_c00237{left:756.300000px;}
.x14_c00237{left:758.850000px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws2_c00237{word-spacing:-9.916667pt;}
.ws3_c00237{word-spacing:0.000000pt;}
.ws1_c00237{word-spacing:0.962199pt;}
.ws0_c00237{word-spacing:9.238095pt;}
.fs0_c00237{font-size:48.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y2c_c00237{bottom:125.733333pt;}
.y2b_c00237{bottom:140.800000pt;}
.y2a_c00237{bottom:168.800000pt;}
.y29_c00237{bottom:186.666667pt;}
.y28_c00237{bottom:204.266667pt;}
.y27_c00237{bottom:221.866667pt;}
.y26_c00237{bottom:239.466667pt;}
.y25_c00237{bottom:257.333333pt;}
.y24_c00237{bottom:288.800000pt;}
.y23_c00237{bottom:306.666667pt;}
.y22_c00237{bottom:324.266667pt;}
.y21_c00237{bottom:341.866667pt;}
.y20_c00237{bottom:359.733333pt;}
.y1f_c00237{bottom:377.333333pt;}
.y1e_c00237{bottom:394.933333pt;}
.y1d_c00237{bottom:412.800000pt;}
.y1c_c00237{bottom:430.400000pt;}
.y1b_c00237{bottom:448.266667pt;}
.y1a_c00237{bottom:465.600000pt;}
.y19_c00237{bottom:483.200000pt;}
.y18_c00237{bottom:501.066667pt;}
.y17_c00237{bottom:519.066667pt;}
.y16_c00237{bottom:536.933333pt;}
.y15_c00237{bottom:554.666667pt;}
.y14_c00237{bottom:572.533333pt;}
.y13_c00237{bottom:590.133333pt;}
.y12_c00237{bottom:607.733333pt;}
.y11_c00237{bottom:625.600000pt;}
.y10_c00237{bottom:643.200000pt;}
.yf_c00237{bottom:660.933333pt;}
.ye_c00237{bottom:678.533333pt;}
.yd_c00237{bottom:696.400000pt;}
.yc_c00237{bottom:714.000000pt;}
.yb_c00237{bottom:731.866667pt;}
.ya_c00237{bottom:749.466667pt;}
.y9_c00237{bottom:767.466667pt;}
.y8_c00237{bottom:785.333333pt;}
.y7_c00237{bottom:803.200000pt;}
.y6_c00237{bottom:820.800000pt;}
.y5_c00237{bottom:838.666667pt;}
.y4_c00237{bottom:856.266667pt;}
.y3_c00237{bottom:873.866667pt;}
.y2_c00237{bottom:891.466667pt;}
.y1_c00237{bottom:926.133333pt;}
.h2_c00237{height:48.000000pt;}
.h0_c00237{height:1037.119955pt;}
.h1_c00237{height:1037.333333pt;}
.w0_c00237{width:816.640056pt;}
.w1_c00237{width:816.666667pt;}
.x0_c00237{left:0.000000pt;}
.x99_c00237{left:91.200000pt;}
.x3_c00237{left:92.133333pt;}
.xca_c00237{left:93.066667pt;}
.x136_c00237{left:94.133333pt;}
.x6e_c00237{left:106.933333pt;}
.x12b_c00237{left:111.600000pt;}
.x15_c00237{left:114.800000pt;}
.x4_c00237{left:116.800000pt;}
.x44_c00237{left:120.000000pt;}
.xdb_c00237{left:120.933333pt;}
.x50_c00237{left:122.266667pt;}
.x41_c00237{left:123.466667pt;}
.x5c_c00237{left:124.666667pt;}
.x35_c00237{left:125.600000pt;}
.xfd_c00237{left:128.800000pt;}
.x110_c00237{left:130.533333pt;}
.x45_c00237{left:134.666667pt;}
.x85_c00237{left:136.400000pt;}
.x8f_c00237{left:137.600000pt;}
.xa7_c00237{left:138.533333pt;}
.xba_c00237{left:140.533333pt;}
.x16_c00237{left:142.933333pt;}
.xa0_c00237{left:144.000000pt;}
.x12c_c00237{left:145.866667pt;}
.xdc_c00237{left:147.466667pt;}
.x6f_c00237{left:149.466667pt;}
.x5d_c00237{left:151.600000pt;}
.x7a_c00237{left:157.600000pt;}
.x5_c00237{left:158.666667pt;}
.xea_c00237{left:161.866667pt;}
.x137_c00237{left:163.200000pt;}
.x5e_c00237{left:164.666667pt;}
.x114_c00237{left:166.133333pt;}
.xcb_c00237{left:167.333333pt;}
.x90_c00237{left:168.266667pt;}
.x27_c00237{left:169.600000pt;}
.x51_c00237{left:171.200000pt;}
.x65_c00237{left:172.133333pt;}
.x104_c00237{left:174.666667pt;}
.x42_c00237{left:176.266667pt;}
.x5f_c00237{left:178.400000pt;}
.x91_c00237{left:180.400000pt;}
.x86_c00237{left:181.600000pt;}
.x10a_c00237{left:184.933333pt;}
.x36_c00237{left:187.066667pt;}
.x60_c00237{left:189.333333pt;}
.xb2_c00237{left:191.066667pt;}
.x46_c00237{left:192.000000pt;}
.x138_c00237{left:193.333333pt;}
.xf8_c00237{left:195.333333pt;}
.x11e_c00237{left:196.266667pt;}
.x115_c00237{left:197.466667pt;}
.x7b_c00237{left:199.866667pt;}
.x125_c00237{left:201.466667pt;}
.x17_c00237{left:202.400000pt;}
.x43_c00237{left:205.066667pt;}
.xf0_c00237{left:206.266667pt;}
.x11b_c00237{left:207.200000pt;}
.x9a_c00237{left:210.933333pt;}
.x10b_c00237{left:211.866667pt;}
.x52_c00237{left:213.866667pt;}
.xa8_c00237{left:214.933333pt;}
.x12d_c00237{left:217.600000pt;}
.xc2_c00237{left:219.066667pt;}
.xfe_c00237{left:220.266667pt;}
.xe2_c00237{left:221.466667pt;}
.x28_c00237{left:223.066667pt;}
.x11c_c00237{left:224.533333pt;}
.x6_c00237{left:227.200000pt;}
.x70_c00237{left:229.866667pt;}
.x87_c00237{left:231.200000pt;}
.x12e_c00237{left:233.333333pt;}
.xd2_c00237{left:234.800000pt;}
.x18_c00237{left:236.266667pt;}
.x7c_c00237{left:237.600000pt;}
.x47_c00237{left:239.066667pt;}
.xf1_c00237{left:241.200000pt;}
.x105_c00237{left:243.466667pt;}
.xb3_c00237{left:245.200000pt;}
.xa9_c00237{left:246.666667pt;}
.x71_c00237{left:248.133333pt;}
.x88_c00237{left:249.733333pt;}
.xa1_c00237{left:250.666667pt;}
.xbb_c00237{left:251.600000pt;}
.x29_c00237{left:252.533333pt;}
.x7_c00237{left:254.666667pt;}
.x48_c00237{left:256.400000pt;}
.xb4_c00237{left:258.933333pt;}
.x19_c00237{left:260.933333pt;}
.xe3_c00237{left:265.333333pt;}
.xeb_c00237{left:267.066667pt;}
.x37_c00237{left:268.000000pt;}
.x2a_c00237{left:269.866667pt;}
.x53_c00237{left:272.133333pt;}
.x9b_c00237{left:273.333333pt;}
.x72_c00237{left:274.666667pt;}
.xcc_c00237{left:276.133333pt;}
.xa2_c00237{left:277.200000pt;}
.x8_c00237{left:279.600000pt;}
.x13b_c00237{left:282.133333pt;}
.xf9_c00237{left:284.000000pt;}
.x89_c00237{left:285.200000pt;}
.xaa_c00237{left:286.400000pt;}
.x11f_c00237{left:287.733333pt;}
.x1a_c00237{left:289.733333pt;}
.x139_c00237{left:291.200000pt;}
.x92_c00237{left:292.400000pt;}
.x2b_c00237{left:295.200000pt;}
.xff_c00237{left:297.333333pt;}
.x61_c00237{left:298.533333pt;}
.x9c_c00237{left:299.866667pt;}
.x134_c00237{left:302.800000pt;}
.x126_c00237{left:304.533333pt;}
.xd3_c00237{left:305.600000pt;}
.x7d_c00237{left:306.666667pt;}
.x1b_c00237{left:308.666667pt;}
.xee_c00237{left:310.000000pt;}
.x9_c00237{left:310.933333pt;}
.x54_c00237{left:314.000000pt;}
.xbc_c00237{left:314.933333pt;}
.xab_c00237{left:316.133333pt;}
.x38_c00237{left:320.800000pt;}
.x8a_c00237{left:321.733333pt;}
.x111_c00237{left:322.800000pt;}
.x120_c00237{left:324.800000pt;}
.x93_c00237{left:327.600000pt;}
.x1c_c00237{left:328.800000pt;}
.x131_c00237{left:329.866667pt;}
.xc3_c00237{left:331.066667pt;}
.xbd_c00237{left:332.533333pt;}
.x2c_c00237{left:335.200000pt;}
.xec_c00237{left:337.066667pt;}
.xf4_c00237{left:338.400000pt;}
.x9d_c00237{left:341.466667pt;}
.x7e_c00237{left:342.800000pt;}
.x94_c00237{left:345.866667pt;}
.x39_c00237{left:348.266667pt;}
.xdd_c00237{left:351.733333pt;}
.x112_c00237{left:353.866667pt;}
.x49_c00237{left:354.933333pt;}
.x55_c00237{left:359.466667pt;}
.xef_c00237{left:362.800000pt;}
.xa_c00237{left:363.733333pt;}
.x62_c00237{left:364.800000pt;}
.xd4_c00237{left:366.400000pt;}
.x1_c00237{left:367.733333pt;}
.x11d_c00237{left:369.466667pt;}
.x95_c00237{left:370.533333pt;}
.x66_c00237{left:371.733333pt;}
.x73_c00237{left:372.933333pt;}
.xe4_c00237{left:375.066667pt;}
.x116_c00237{left:377.866667pt;}
.x2d_c00237{left:380.933333pt;}
.x10c_c00237{left:382.000000pt;}
.xac_c00237{left:385.200000pt;}
.x1d_c00237{left:386.666667pt;}
.xcd_c00237{left:388.133333pt;}
.xed_c00237{left:391.066667pt;}
.x4a_c00237{left:393.600000pt;}
.xc4_c00237{left:394.800000pt;}
.x8b_c00237{left:396.000000pt;}
.x13a_c00237{left:398.933333pt;}
.x117_c00237{left:400.533333pt;}
.xe5_c00237{left:401.600000pt;}
.x132_c00237{left:402.800000pt;}
.x74_c00237{left:404.266667pt;}
.x106_c00237{left:405.466667pt;}
.xce_c00237{left:406.400000pt;}
.x1e_c00237{left:407.733333pt;}
.x12f_c00237{left:408.666667pt;}
.xa3_c00237{left:409.733333pt;}
.xc5_c00237{left:412.400000pt;}
.x7f_c00237{left:413.866667pt;}
.x3a_c00237{left:415.200000pt;}
.xb_c00237{left:417.200000pt;}
.x67_c00237{left:422.266667pt;}
.xe6_c00237{left:423.333333pt;}
.xf2_c00237{left:424.266667pt;}
.xb5_c00237{left:428.133333pt;}
.x56_c00237{left:429.466667pt;}
.x1f_c00237{left:430.400000pt;}
.xf5_c00237{left:432.133333pt;}
.xc_c00237{left:435.066667pt;}
.x96_c00237{left:437.066667pt;}
.x63_c00237{left:439.066667pt;}
.xd5_c00237{left:440.400000pt;}
.x118_c00237{left:442.133333pt;}
.x3b_c00237{left:443.066667pt;}
.x75_c00237{left:444.933333pt;}
.x2e_c00237{left:447.466667pt;}
.x127_c00237{left:448.933333pt;}
.x10d_c00237{left:450.133333pt;}
.xb6_c00237{left:451.466667pt;}
.xf6_c00237{left:453.200000pt;}
.x57_c00237{left:456.000000pt;}
.xad_c00237{left:457.600000pt;}
.x121_c00237{left:459.600000pt;}
.x8c_c00237{left:460.933333pt;}
.xd8_c00237{left:462.533333pt;}
.x76_c00237{left:463.466667pt;}
.xde_c00237{left:465.733333pt;}
.xfa_c00237{left:467.200000pt;}
.xd_c00237{left:468.666667pt;}
.x64_c00237{left:469.733333pt;}
.x68_c00237{left:471.200000pt;}
.xa4_c00237{left:475.333333pt;}
.xf3_c00237{left:477.066667pt;}
.x100_c00237{left:478.800000pt;}
.x2f_c00237{left:480.133333pt;}
.x113_c00237{left:482.133333pt;}
.x3c_c00237{left:484.933333pt;}
.xc6_c00237{left:486.266667pt;}
.xe_c00237{left:488.133333pt;}
.x77_c00237{left:490.000000pt;}
.xe7_c00237{left:491.200000pt;}
.xdf_c00237{left:492.933333pt;}
.xd9_c00237{left:494.266667pt;}
.x20_c00237{left:495.333333pt;}
.x80_c00237{left:496.800000pt;}
.x9e_c00237{left:498.666667pt;}
.xbe_c00237{left:499.600000pt;}
.x69_c00237{left:500.933333pt;}
.x8d_c00237{left:503.466667pt;}
.x4b_c00237{left:506.266667pt;}
.x58_c00237{left:508.533333pt;}
.x3d_c00237{left:510.266667pt;}
.xcf_c00237{left:511.600000pt;}
.xf_c00237{left:512.800000pt;}
.x9f_c00237{left:513.733333pt;}
.xae_c00237{left:515.200000pt;}
.xda_c00237{left:517.333333pt;}
.x81_c00237{left:522.400000pt;}
.x30_c00237{left:525.200000pt;}
.x107_c00237{left:527.066667pt;}
.x122_c00237{left:528.133333pt;}
.x8e_c00237{left:529.333333pt;}
.x78_c00237{left:530.266667pt;}
.xe8_c00237{left:533.066667pt;}
.xd0_c00237{left:534.666667pt;}
.xc7_c00237{left:535.600000pt;}
.xe0_c00237{left:538.400000pt;}
.x21_c00237{left:539.866667pt;}
.x82_c00237{left:540.933333pt;}
.x123_c00237{left:541.866667pt;}
.x31_c00237{left:543.733333pt;}
.x6a_c00237{left:545.733333pt;}
.x4c_c00237{left:546.933333pt;}
.x59_c00237{left:547.866667pt;}
.x101_c00237{left:549.600000pt;}
.x128_c00237{left:551.600000pt;}
.xb7_c00237{left:553.600000pt;}
.x79_c00237{left:556.800000pt;}
.x10_c00237{left:559.466667pt;}
.x4d_c00237{left:560.666667pt;}
.xbf_c00237{left:562.000000pt;}
.x22_c00237{left:563.866667pt;}
.x13c_c00237{left:566.133333pt;}
.x32_c00237{left:568.000000pt;}
.x119_c00237{left:571.200000pt;}
.x6b_c00237{left:572.933333pt;}
.xaf_c00237{left:574.400000pt;}
.x5a_c00237{left:575.333333pt;}
.xe9_c00237{left:577.200000pt;}
.xc8_c00237{left:578.800000pt;}
.x3e_c00237{left:582.666667pt;}
.xa5_c00237{left:583.866667pt;}
.x23_c00237{left:585.600000pt;}
.x33_c00237{left:586.533333pt;}
.xc0_c00237{left:588.266667pt;}
.xd6_c00237{left:591.066667pt;}
.xb8_c00237{left:592.933333pt;}
.xd1_c00237{left:594.133333pt;}
.x11_c00237{left:595.333333pt;}
.xfb_c00237{left:596.666667pt;}
.xe1_c00237{left:597.600000pt;}
.x108_c00237{left:598.533333pt;}
.x3f_c00237{left:600.266667pt;}
.x10e_c00237{left:601.866667pt;}
.xb0_c00237{left:603.200000pt;}
.xc9_c00237{left:604.133333pt;}
.x83_c00237{left:605.200000pt;}
.xb9_c00237{left:606.400000pt;}
.x130_c00237{left:608.000000pt;}
.x24_c00237{left:609.333333pt;}
.x6c_c00237{left:610.666667pt;}
.x34_c00237{left:613.066667pt;}
.x12_c00237{left:614.266667pt;}
.xf7_c00237{left:619.866667pt;}
.xd7_c00237{left:621.466667pt;}
.x4e_c00237{left:624.933333pt;}
.x40_c00237{left:625.866667pt;}
.x129_c00237{left:627.066667pt;}
.x135_c00237{left:629.200000pt;}
.x10f_c00237{left:630.400000pt;}
.x102_c00237{left:632.533333pt;}
.x11a_c00237{left:633.600000pt;}
.xa6_c00237{left:634.800000pt;}
.x13_c00237{left:638.000000pt;}
.xfc_c00237{left:638.933333pt;}
.x109_c00237{left:640.400000pt;}
.x97_c00237{left:642.133333pt;}
.x4f_c00237{left:644.800000pt;}
.xc1_c00237{left:647.466667pt;}
.x25_c00237{left:648.666667pt;}
.x12a_c00237{left:649.733333pt;}
.x5b_c00237{left:650.800000pt;}
.x84_c00237{left:653.866667pt;}
.x103_c00237{left:657.466667pt;}
.x133_c00237{left:658.666667pt;}
.x6d_c00237{left:659.600000pt;}
.x124_c00237{left:660.800000pt;}
.x2_c00237{left:662.800000pt;}
.xb1_c00237{left:663.733333pt;}
.x26_c00237{left:664.666667pt;}
.x98_c00237{left:672.266667pt;}
.x14_c00237{left:674.533333pt;}
}





/* 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_c00238 {
    display:none;
  }
  .loading-indicator_c00238.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00238 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_c00238 { 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_c00238" -> "#page-container .classname_c00238")
 */
.pf_c00238 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00238 { /* 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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00238 { /* 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_c00238 { /* 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_c00238 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00238 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00238 {overflow:visible;}
  }
}
.c_c00238 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00238 { /* 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_c00238:after { /* webkit #35443 */
  content: '';
}
.t_c00238:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00238 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 */
}
.__c00238 { /* 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_c00238 { /* info for Javascript */
  display:none;
}
.l_c00238 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00238 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00238 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00238: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_c00238 {
    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_c00238.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00238.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_c00238 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00238{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00238;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.000000;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;}
.m50_c00238{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00238{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00238{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00238{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00238{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m97_c00238{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m65_c00238{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00238{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00238{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00238{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00238{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00238{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00238{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m83_c00238{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m71_c00238{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00238{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00238{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00238{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00238{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00238{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m92_c00238{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00238{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00238{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00238{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00238{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00238{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00238{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00238{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00238{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m47_c00238{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m90_c00238{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m66_c00238{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00238{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m16_c00238{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m84_c00238{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m99_c00238{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m43_c00238{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m49_c00238{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00238{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00238{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00238{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m24_c00238{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00238{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m56_c00238{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m81_c00238{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00238{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m30_c00238{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00238{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00238{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9_c00238{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m45_c00238{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00238{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m26_c00238{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00238{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m41_c00238{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m44_c00238{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00238{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m74_c00238{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m54_c00238{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m48_c00238{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00238{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.md_c00238{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00238{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7_c00238{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m85_c00238{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m35_c00238{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00238{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m91_c00238{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00238{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m46_c00238{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00238{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m75_c00238{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00238{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00238{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m21_c00238{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00238{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13_c00238{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19_c00238{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m89_c00238{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m63_c00238{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17_c00238{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00238{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00238{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00238{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);}
.m5f_c00238{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20_c00238{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00238{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m60_c00238{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m39_c00238{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00238{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00238{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m18_c00238{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m69_c00238{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00238{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00238{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m55_c00238{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00238{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00238{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m36_c00238{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m22_c00238{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m40_c00238{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.mc_c00238{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00238{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m76_c00238{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00238{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m12_c00238{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m72_c00238{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m33_c00238{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m29_c00238{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00238{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m61_c00238{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m77_c00238{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m86_c00238{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m88_c00238{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m62_c00238{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m37_c00238{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00238{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m73_c00238{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m67_c00238{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m23_c00238{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m15_c00238{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m51_c00238{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m94_c00238{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m80_c00238{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m52_c00238{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m98_c00238{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m82_c00238{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m28_c00238{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m38_c00238{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00238{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m70_c00238{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10_c00238{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00238{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m25_c00238{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m42_c00238{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m58_c00238{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m14_c00238{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m34_c00238{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00238{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m32_c00238{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m11_c00238{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m96_c00238{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m93_c00238{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00238{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m53_c00238{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m31_c00238{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m59_c00238{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00238{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00238{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m57_c00238{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00238{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00238{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m87_c00238{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m78_c00238{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m95_c00238{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m64_c00238{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{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__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00238{word-spacing:-9.125000px;}
.ws4_c00238{word-spacing:-6.642857px;}
.ws9_c00238{word-spacing:-3.260870px;}
.ws6_c00238{word-spacing:-2.713161px;}
.wsd_c00238{word-spacing:0.000000px;}
.ws5_c00238{word-spacing:0.500000px;}
.ws2_c00238{word-spacing:6.250000px;}
.wsb_c00238{word-spacing:6.654162px;}
.wsa_c00238{word-spacing:7.750000px;}
.ws3_c00238{word-spacing:8.331770px;}
.wsc_c00238{word-spacing:9.211687px;}
.ws0_c00238{word-spacing:9.250000px;}
.ws8_c00238{word-spacing:9.578831px;}
.ws1_c00238{word-spacing:10.674699px;}
.fc0_c00238{color:transparent;}
.fs0_c00238{font-size:54.000000px;}
.y0_c00238{bottom:0.000000px;}
.y2d_c00238{bottom:149.400000px;}
.y2c_c00238{bottom:165.600000px;}
.y2b_c00238{bottom:181.050000px;}
.y2a_c00238{bottom:196.500000px;}
.y29_c00238{bottom:228.300000px;}
.y28_c00238{bottom:248.400000px;}
.y27_c00238{bottom:268.350000px;}
.y26_c00238{bottom:288.450000px;}
.y25_c00238{bottom:308.550000px;}
.y24_c00238{bottom:328.350000px;}
.y23_c00238{bottom:348.450000px;}
.y22_c00238{bottom:368.400000px;}
.y21_c00238{bottom:388.500000px;}
.y20_c00238{bottom:408.600000px;}
.y1f_c00238{bottom:428.400000px;}
.y1e_c00238{bottom:448.200000px;}
.y1d_c00238{bottom:468.300000px;}
.y1c_c00238{bottom:488.100000px;}
.y1b_c00238{bottom:508.200000px;}
.y1a_c00238{bottom:528.300000px;}
.y19_c00238{bottom:548.100000px;}
.y18_c00238{bottom:568.200000px;}
.y17_c00238{bottom:587.700000px;}
.y16_c00238{bottom:607.800000px;}
.y15_c00238{bottom:627.600000px;}
.y14_c00238{bottom:647.700000px;}
.y13_c00238{bottom:667.500000px;}
.y12_c00238{bottom:687.000000px;}
.y11_c00238{bottom:707.550000px;}
.y10_c00238{bottom:727.350000px;}
.yf_c00238{bottom:747.150000px;}
.ye_c00238{bottom:767.250000px;}
.yd_c00238{bottom:787.050000px;}
.yc_c00238{bottom:807.150000px;}
.yb_c00238{bottom:826.650000px;}
.ya_c00238{bottom:847.200000px;}
.y9_c00238{bottom:867.000000px;}
.y8_c00238{bottom:886.800000px;}
.y7_c00238{bottom:906.900000px;}
.y6_c00238{bottom:926.700000px;}
.y5_c00238{bottom:946.800000px;}
.y4_c00238{bottom:966.600000px;}
.y3_c00238{bottom:986.700000px;}
.y2_c00238{bottom:1006.500000px;}
.y1_c00238{bottom:1045.050000px;}
.h2_c00238{height:54.000000px;}
.h0_c00238{height:1166.759949px;}
.h1_c00238{height:1167.000000px;}
.w0_c00238{width:918.720063px;}
.w1_c00238{width:918.750000px;}
.x0_c00238{left:0.000000px;}
.x12_c00238{left:149.400000px;}
.x49_c00238{left:150.450000px;}
.x1_c00238{left:151.500000px;}
.xcc_c00238{left:167.250000px;}
.x123_c00238{left:168.450000px;}
.xb6_c00238{left:169.950000px;}
.xe0_c00238{left:172.050000px;}
.x3_c00238{left:181.050000px;}
.xcd_c00238{left:182.700000px;}
.x3b_c00238{left:184.050000px;}
.x10e_c00238{left:185.100000px;}
.xe1_c00238{left:186.750000px;}
.x130_c00238{left:188.250000px;}
.xa6_c00238{left:189.300000px;}
.x118_c00238{left:192.000000px;}
.xd6_c00238{left:194.850000px;}
.x4a_c00238{left:197.250000px;}
.x74_c00238{left:200.700000px;}
.x7c_c00238{left:201.750000px;}
.xab_c00238{left:203.400000px;}
.x10f_c00238{left:205.200000px;}
.x2f_c00238{left:206.700000px;}
.xf7_c00238{left:208.950000px;}
.x13_c00238{left:210.900000px;}
.x8f_c00238{left:212.700000px;}
.x4_c00238{left:213.750000px;}
.xd7_c00238{left:215.700000px;}
.x101_c00238{left:216.750000px;}
.x4b_c00238{left:218.100000px;}
.xac_c00238{left:220.650000px;}
.xdc_c00238{left:221.850000px;}
.xf1_c00238{left:224.100000px;}
.xa7_c00238{left:225.300000px;}
.x20_c00238{left:226.350000px;}
.x87_c00238{left:228.600000px;}
.x9d_c00238{left:229.950000px;}
.xce_c00238{left:231.000000px;}
.x3c_c00238{left:232.650000px;}
.x90_c00238{left:234.000000px;}
.xb7_c00238{left:237.300000px;}
.x3f_c00238{left:238.350000px;}
.x14_c00238{left:241.800000px;}
.x30_c00238{left:243.750000px;}
.xbe_c00238{left:245.550000px;}
.xcf_c00238{left:247.950000px;}
.x120_c00238{left:249.150000px;}
.x3d_c00238{left:250.350000px;}
.xa8_c00238{left:256.200000px;}
.x6a_c00238{left:258.150000px;}
.x91_c00238{left:259.500000px;}
.x5_c00238{left:260.550000px;}
.x4c_c00238{left:263.850000px;}
.x61_c00238{left:265.800000px;}
.xd0_c00238{left:267.750000px;}
.xc5_c00238{left:269.550000px;}
.x12a_c00238{left:272.700000px;}
.x7d_c00238{left:274.050000px;}
.x21_c00238{left:277.050000px;}
.x6_c00238{left:278.550000px;}
.x15_c00238{left:281.400000px;}
.x119_c00238{left:283.800000px;}
.x4d_c00238{left:285.150000px;}
.xa9_c00238{left:286.800000px;}
.xc6_c00238{left:290.400000px;}
.x58_c00238{left:293.400000px;}
.xea_c00238{left:296.250000px;}
.x109_c00238{left:298.650000px;}
.x6b_c00238{left:300.600000px;}
.x88_c00238{left:303.000000px;}
.x22_c00238{left:305.550000px;}
.xf2_c00238{left:307.950000px;}
.x40_c00238{left:309.300000px;}
.xbf_c00238{left:311.100000px;}
.x92_c00238{left:312.450000px;}
.xe2_c00238{left:315.750000px;}
.xb8_c00238{left:317.250000px;}
.x16_c00238{left:318.450000px;}
.xd8_c00238{left:320.400000px;}
.x11a_c00238{left:321.600000px;}
.x4e_c00238{left:323.700000px;}
.xaa_c00238{left:324.900000px;}
.x6c_c00238{left:326.100000px;}
.xc0_c00238{left:329.400000px;}
.x7e_c00238{left:331.350000px;}
.x75_c00238{left:334.350000px;}
.x62_c00238{left:336.300000px;}
.xeb_c00238{left:337.350000px;}
.xad_c00238{left:338.400000px;}
.x12d_c00238{left:339.450000px;}
.x93_c00238{left:340.500000px;}
.x31_c00238{left:343.200000px;}
.x4f_c00238{left:344.550000px;}
.x131_c00238{left:348.450000px;}
.x110_c00238{left:349.800000px;}
.x7_c00238{left:350.850000px;}
.x6d_c00238{left:353.100000px;}
.xd1_c00238{left:354.900000px;}
.x23_c00238{left:356.250000px;}
.x114_c00238{left:360.900000px;}
.xb9_c00238{left:361.950000px;}
.x32_c00238{left:363.300000px;}
.xfa_c00238{left:366.600000px;}
.x41_c00238{left:369.450000px;}
.x12b_c00238{left:372.750000px;}
.x3e_c00238{left:373.800000px;}
.xae_c00238{left:376.200000px;}
.xfb_c00238{left:378.450000px;}
.x33_c00238{left:379.500000px;}
.x9e_c00238{left:382.350000px;}
.x59_c00238{left:383.400000px;}
.xf3_c00238{left:387.150000px;}
.x63_c00238{left:388.200000px;}
.x102_c00238{left:391.800000px;}
.x17_c00238{left:393.300000px;}
.xdd_c00238{left:395.250000px;}
.x42_c00238{left:396.450000px;}
.x94_c00238{left:398.400000px;}
.x5a_c00238{left:400.650000px;}
.x106_c00238{left:405.000000px;}
.xf4_c00238{left:408.450000px;}
.x24_c00238{left:409.950000px;}
.x8_c00238{left:411.300000px;}
.xe3_c00238{left:413.700000px;}
.x10a_c00238{left:415.050000px;}
.xd2_c00238{left:416.550000px;}
.xc7_c00238{left:419.400000px;}
.x111_c00238{left:421.050000px;}
.x89_c00238{left:423.150000px;}
.x115_c00238{left:424.950000px;}
.x50_c00238{left:427.350000px;}
.x11b_c00238{left:428.400000px;}
.x76_c00238{left:430.050000px;}
.xaf_c00238{left:432.300000px;}
.xe4_c00238{left:434.250000px;}
.x9f_c00238{left:436.650000px;}
.x25_c00238{left:439.050000px;}
.x12e_c00238{left:440.250000px;}
.x95_c00238{left:441.300000px;}
.x11e_c00238{left:442.650000px;}
.x43_c00238{left:444.000000px;}
.x132_c00238{left:446.400000px;}
.x2_c00238{left:447.450000px;}
.x6e_c00238{left:449.250000px;}
.x7f_c00238{left:451.800000px;}
.x8a_c00238{left:454.500000px;}
.x64_c00238{left:458.700000px;}
.xe5_c00238{left:460.200000px;}
.x34_c00238{left:461.250000px;}
.x11f_c00238{left:462.450000px;}
.xa0_c00238{left:468.000000px;}
.xb0_c00238{left:469.050000px;}
.x51_c00238{left:470.550000px;}
.x5b_c00238{left:471.600000px;}
.x96_c00238{left:472.650000px;}
.xc1_c00238{left:475.950000px;}
.x26_c00238{left:477.150000px;}
.x80_c00238{left:480.300000px;}
.xfc_c00238{left:482.400000px;}
.x35_c00238{left:483.600000px;}
.x9_c00238{left:485.850000px;}
.x6f_c00238{left:487.800000px;}
.xc8_c00238{left:490.200000px;}
.x8b_c00238{left:492.000000px;}
.x52_c00238{left:493.200000px;}
.xc2_c00238{left:495.750000px;}
.xfd_c00238{left:500.100000px;}
.xec_c00238{left:502.500000px;}
.xb1_c00238{left:503.550000px;}
.x77_c00238{left:504.600000px;}
.xa_c00238{left:507.450000px;}
.x65_c00238{left:510.900000px;}
.xd3_c00238{left:511.950000px;}
.x44_c00238{left:513.450000px;}
.xd9_c00238{left:514.800000px;}
.x70_c00238{left:515.850000px;}
.x78_c00238{left:516.900000px;}
.xba_c00238{left:519.600000px;}
.xc3_c00238{left:524.850000px;}
.x124_c00238{left:525.900000px;}
.x11d_c00238{left:529.200000px;}
.x81_c00238{left:530.700000px;}
.x36_c00238{left:531.900000px;}
.x97_c00238{left:534.150000px;}
.xb_c00238{left:535.500000px;}
.xe6_c00238{left:536.550000px;}
.xbb_c00238{left:537.600000px;}
.x107_c00238{left:540.600000px;}
.xda_c00238{left:541.800000px;}
.x125_c00238{left:542.850000px;}
.x8c_c00238{left:544.200000px;}
.x27_c00238{left:545.550000px;}
.x18_c00238{left:547.800000px;}
.xed_c00238{left:549.000000px;}
.x103_c00238{left:550.500000px;}
.xc9_c00238{left:551.850000px;}
.x53_c00238{left:554.100000px;}
.x10b_c00238{left:555.150000px;}
.xdb_c00238{left:557.250000px;}
.x82_c00238{left:558.450000px;}
.x12f_c00238{left:560.550000px;}
.x19_c00238{left:565.050000px;}
.xb2_c00238{left:566.550000px;}
.x121_c00238{left:569.700000px;}
.x98_c00238{left:571.950000px;}
.x66_c00238{left:573.600000px;}
.x28_c00238{left:575.400000px;}
.xee_c00238{left:576.750000px;}
.x126_c00238{left:578.550000px;}
.x5c_c00238{left:579.600000px;}
.x79_c00238{left:582.150000px;}
.xde_c00238{left:583.200000px;}
.x37_c00238{left:584.400000px;}
.xc_c00238{left:586.200000px;}
.x45_c00238{left:587.250000px;}
.x122_c00238{left:588.450000px;}
.xf8_c00238{left:590.250000px;}
.x99_c00238{left:593.850000px;}
.x112_c00238{left:595.050000px;}
.xf5_c00238{left:596.400000px;}
.x54_c00238{left:600.150000px;}
.x29_c00238{left:603.450000px;}
.x8d_c00238{left:604.650000px;}
.x1a_c00238{left:607.500000px;}
.xd4_c00238{left:609.150000px;}
.x7a_c00238{left:613.500000px;}
.x83_c00238{left:614.850000px;}
.x38_c00238{left:616.500000px;}
.xb3_c00238{left:617.700000px;}
.x9a_c00238{left:619.800000px;}
.x71_c00238{left:620.850000px;}
.x1b_c00238{left:627.300000px;}
.x12c_c00238{left:628.650000px;}
.x11c_c00238{left:632.250000px;}
.x127_c00238{left:634.050000px;}
.xef_c00238{left:635.400000px;}
.xfe_c00238{left:636.900000px;}
.xa1_c00238{left:641.400000px;}
.x108_c00238{left:645.000000px;}
.x9b_c00238{left:647.550000px;}
.x55_c00238{left:649.500000px;}
.x2a_c00238{left:651.300000px;}
.x84_c00238{left:652.950000px;}
.xf9_c00238{left:654.300000px;}
.x1c_c00238{left:655.350000px;}
.x39_c00238{left:656.400000px;}
.xd_c00238{left:661.500000px;}
.x9c_c00238{left:664.800000px;}
.xca_c00238{left:666.300000px;}
.x128_c00238{left:667.950000px;}
.x116_c00238{left:669.000000px;}
.x46_c00238{left:670.050000px;}
.x5d_c00238{left:671.700000px;}
.x2b_c00238{left:675.750000px;}
.xbc_c00238{left:676.950000px;}
.xe_c00238{left:679.500000px;}
.xff_c00238{left:682.200000px;}
.x7b_c00238{left:684.450000px;}
.xa2_c00238{left:685.650000px;}
.xf0_c00238{left:687.600000px;}
.x5e_c00238{left:688.950000px;}
.x10c_c00238{left:690.150000px;}
.x67_c00238{left:691.350000px;}
.x3a_c00238{left:695.250000px;}
.x1d_c00238{left:697.800000px;}
.x104_c00238{left:699.600000px;}
.x85_c00238{left:701.550000px;}
.xe7_c00238{left:703.200000px;}
.x47_c00238{left:705.300000px;}
.x72_c00238{left:710.850000px;}
.x1e_c00238{left:717.600000px;}
.x100_c00238{left:718.950000px;}
.xdf_c00238{left:720.600000px;}
.x8e_c00238{left:721.650000px;}
.xf_c00238{left:723.750000px;}
.x2c_c00238{left:725.100000px;}
.xb4_c00238{left:727.200000px;}
.x56_c00238{left:728.250000px;}
.xa3_c00238{left:731.700000px;}
.xcb_c00238{left:733.950000px;}
.x86_c00238{left:736.800000px;}
.x68_c00238{left:744.600000px;}
.x1f_c00238{left:746.100000px;}
.x129_c00238{left:747.150000px;}
.xe8_c00238{left:755.400000px;}
.x10d_c00238{left:757.050000px;}
.xa4_c00238{left:760.200000px;}
.x73_c00238{left:763.800000px;}
.x69_c00238{left:765.450000px;}
.xc4_c00238{left:766.650000px;}
.xb5_c00238{left:770.700000px;}
.x2d_c00238{left:772.650000px;}
.x10_c00238{left:774.450000px;}
.x48_c00238{left:776.550000px;}
.x105_c00238{left:777.750000px;}
.x57_c00238{left:779.700000px;}
.x5f_c00238{left:781.950000px;}
.xe9_c00238{left:783.450000px;}
.xf6_c00238{left:784.950000px;}
.xd5_c00238{left:786.000000px;}
.x113_c00238{left:789.000000px;}
.x11_c00238{left:791.700000px;}
.x117_c00238{left:793.200000px;}
.xa5_c00238{left:794.400000px;}
.x2e_c00238{left:797.100000px;}
.xbd_c00238{left:805.800000px;}
.x60_c00238{left:811.500000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws7_c00238{word-spacing:-8.111111pt;}
.ws4_c00238{word-spacing:-5.904762pt;}
.ws9_c00238{word-spacing:-2.898551pt;}
.ws6_c00238{word-spacing:-2.411699pt;}
.wsd_c00238{word-spacing:0.000000pt;}
.ws5_c00238{word-spacing:0.444444pt;}
.ws2_c00238{word-spacing:5.555556pt;}
.wsb_c00238{word-spacing:5.914810pt;}
.wsa_c00238{word-spacing:6.888889pt;}
.ws3_c00238{word-spacing:7.406018pt;}
.wsc_c00238{word-spacing:8.188166pt;}
.ws0_c00238{word-spacing:8.222222pt;}
.ws8_c00238{word-spacing:8.514517pt;}
.ws1_c00238{word-spacing:9.488621pt;}
.fs0_c00238{font-size:48.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y2d_c00238{bottom:132.800000pt;}
.y2c_c00238{bottom:147.200000pt;}
.y2b_c00238{bottom:160.933333pt;}
.y2a_c00238{bottom:174.666667pt;}
.y29_c00238{bottom:202.933333pt;}
.y28_c00238{bottom:220.800000pt;}
.y27_c00238{bottom:238.533333pt;}
.y26_c00238{bottom:256.400000pt;}
.y25_c00238{bottom:274.266667pt;}
.y24_c00238{bottom:291.866667pt;}
.y23_c00238{bottom:309.733333pt;}
.y22_c00238{bottom:327.466667pt;}
.y21_c00238{bottom:345.333333pt;}
.y20_c00238{bottom:363.200000pt;}
.y1f_c00238{bottom:380.800000pt;}
.y1e_c00238{bottom:398.400000pt;}
.y1d_c00238{bottom:416.266667pt;}
.y1c_c00238{bottom:433.866667pt;}
.y1b_c00238{bottom:451.733333pt;}
.y1a_c00238{bottom:469.600000pt;}
.y19_c00238{bottom:487.200000pt;}
.y18_c00238{bottom:505.066667pt;}
.y17_c00238{bottom:522.400000pt;}
.y16_c00238{bottom:540.266667pt;}
.y15_c00238{bottom:557.866667pt;}
.y14_c00238{bottom:575.733333pt;}
.y13_c00238{bottom:593.333333pt;}
.y12_c00238{bottom:610.666667pt;}
.y11_c00238{bottom:628.933333pt;}
.y10_c00238{bottom:646.533333pt;}
.yf_c00238{bottom:664.133333pt;}
.ye_c00238{bottom:682.000000pt;}
.yd_c00238{bottom:699.600000pt;}
.yc_c00238{bottom:717.466667pt;}
.yb_c00238{bottom:734.800000pt;}
.ya_c00238{bottom:753.066667pt;}
.y9_c00238{bottom:770.666667pt;}
.y8_c00238{bottom:788.266667pt;}
.y7_c00238{bottom:806.133333pt;}
.y6_c00238{bottom:823.733333pt;}
.y5_c00238{bottom:841.600000pt;}
.y4_c00238{bottom:859.200000pt;}
.y3_c00238{bottom:877.066667pt;}
.y2_c00238{bottom:894.666667pt;}
.y1_c00238{bottom:928.933333pt;}
.h2_c00238{height:48.000000pt;}
.h0_c00238{height:1037.119955pt;}
.h1_c00238{height:1037.333333pt;}
.w0_c00238{width:816.640056pt;}
.w1_c00238{width:816.666667pt;}
.x0_c00238{left:0.000000pt;}
.x12_c00238{left:132.800000pt;}
.x49_c00238{left:133.733333pt;}
.x1_c00238{left:134.666667pt;}
.xcc_c00238{left:148.666667pt;}
.x123_c00238{left:149.733333pt;}
.xb6_c00238{left:151.066667pt;}
.xe0_c00238{left:152.933333pt;}
.x3_c00238{left:160.933333pt;}
.xcd_c00238{left:162.400000pt;}
.x3b_c00238{left:163.600000pt;}
.x10e_c00238{left:164.533333pt;}
.xe1_c00238{left:166.000000pt;}
.x130_c00238{left:167.333333pt;}
.xa6_c00238{left:168.266667pt;}
.x118_c00238{left:170.666667pt;}
.xd6_c00238{left:173.200000pt;}
.x4a_c00238{left:175.333333pt;}
.x74_c00238{left:178.400000pt;}
.x7c_c00238{left:179.333333pt;}
.xab_c00238{left:180.800000pt;}
.x10f_c00238{left:182.400000pt;}
.x2f_c00238{left:183.733333pt;}
.xf7_c00238{left:185.733333pt;}
.x13_c00238{left:187.466667pt;}
.x8f_c00238{left:189.066667pt;}
.x4_c00238{left:190.000000pt;}
.xd7_c00238{left:191.733333pt;}
.x101_c00238{left:192.666667pt;}
.x4b_c00238{left:193.866667pt;}
.xac_c00238{left:196.133333pt;}
.xdc_c00238{left:197.200000pt;}
.xf1_c00238{left:199.200000pt;}
.xa7_c00238{left:200.266667pt;}
.x20_c00238{left:201.200000pt;}
.x87_c00238{left:203.200000pt;}
.x9d_c00238{left:204.400000pt;}
.xce_c00238{left:205.333333pt;}
.x3c_c00238{left:206.800000pt;}
.x90_c00238{left:208.000000pt;}
.xb7_c00238{left:210.933333pt;}
.x3f_c00238{left:211.866667pt;}
.x14_c00238{left:214.933333pt;}
.x30_c00238{left:216.666667pt;}
.xbe_c00238{left:218.266667pt;}
.xcf_c00238{left:220.400000pt;}
.x120_c00238{left:221.466667pt;}
.x3d_c00238{left:222.533333pt;}
.xa8_c00238{left:227.733333pt;}
.x6a_c00238{left:229.466667pt;}
.x91_c00238{left:230.666667pt;}
.x5_c00238{left:231.600000pt;}
.x4c_c00238{left:234.533333pt;}
.x61_c00238{left:236.266667pt;}
.xd0_c00238{left:238.000000pt;}
.xc5_c00238{left:239.600000pt;}
.x12a_c00238{left:242.400000pt;}
.x7d_c00238{left:243.600000pt;}
.x21_c00238{left:246.266667pt;}
.x6_c00238{left:247.600000pt;}
.x15_c00238{left:250.133333pt;}
.x119_c00238{left:252.266667pt;}
.x4d_c00238{left:253.466667pt;}
.xa9_c00238{left:254.933333pt;}
.xc6_c00238{left:258.133333pt;}
.x58_c00238{left:260.800000pt;}
.xea_c00238{left:263.333333pt;}
.x109_c00238{left:265.466667pt;}
.x6b_c00238{left:267.200000pt;}
.x88_c00238{left:269.333333pt;}
.x22_c00238{left:271.600000pt;}
.xf2_c00238{left:273.733333pt;}
.x40_c00238{left:274.933333pt;}
.xbf_c00238{left:276.533333pt;}
.x92_c00238{left:277.733333pt;}
.xe2_c00238{left:280.666667pt;}
.xb8_c00238{left:282.000000pt;}
.x16_c00238{left:283.066667pt;}
.xd8_c00238{left:284.800000pt;}
.x11a_c00238{left:285.866667pt;}
.x4e_c00238{left:287.733333pt;}
.xaa_c00238{left:288.800000pt;}
.x6c_c00238{left:289.866667pt;}
.xc0_c00238{left:292.800000pt;}
.x7e_c00238{left:294.533333pt;}
.x75_c00238{left:297.200000pt;}
.x62_c00238{left:298.933333pt;}
.xeb_c00238{left:299.866667pt;}
.xad_c00238{left:300.800000pt;}
.x12d_c00238{left:301.733333pt;}
.x93_c00238{left:302.666667pt;}
.x31_c00238{left:305.066667pt;}
.x4f_c00238{left:306.266667pt;}
.x131_c00238{left:309.733333pt;}
.x110_c00238{left:310.933333pt;}
.x7_c00238{left:311.866667pt;}
.x6d_c00238{left:313.866667pt;}
.xd1_c00238{left:315.466667pt;}
.x23_c00238{left:316.666667pt;}
.x114_c00238{left:320.800000pt;}
.xb9_c00238{left:321.733333pt;}
.x32_c00238{left:322.933333pt;}
.xfa_c00238{left:325.866667pt;}
.x41_c00238{left:328.400000pt;}
.x12b_c00238{left:331.333333pt;}
.x3e_c00238{left:332.266667pt;}
.xae_c00238{left:334.400000pt;}
.xfb_c00238{left:336.400000pt;}
.x33_c00238{left:337.333333pt;}
.x9e_c00238{left:339.866667pt;}
.x59_c00238{left:340.800000pt;}
.xf3_c00238{left:344.133333pt;}
.x63_c00238{left:345.066667pt;}
.x102_c00238{left:348.266667pt;}
.x17_c00238{left:349.600000pt;}
.xdd_c00238{left:351.333333pt;}
.x42_c00238{left:352.400000pt;}
.x94_c00238{left:354.133333pt;}
.x5a_c00238{left:356.133333pt;}
.x106_c00238{left:360.000000pt;}
.xf4_c00238{left:363.066667pt;}
.x24_c00238{left:364.400000pt;}
.x8_c00238{left:365.600000pt;}
.xe3_c00238{left:367.733333pt;}
.x10a_c00238{left:368.933333pt;}
.xd2_c00238{left:370.266667pt;}
.xc7_c00238{left:372.800000pt;}
.x111_c00238{left:374.266667pt;}
.x89_c00238{left:376.133333pt;}
.x115_c00238{left:377.733333pt;}
.x50_c00238{left:379.866667pt;}
.x11b_c00238{left:380.800000pt;}
.x76_c00238{left:382.266667pt;}
.xaf_c00238{left:384.266667pt;}
.xe4_c00238{left:386.000000pt;}
.x9f_c00238{left:388.133333pt;}
.x25_c00238{left:390.266667pt;}
.x12e_c00238{left:391.333333pt;}
.x95_c00238{left:392.266667pt;}
.x11e_c00238{left:393.466667pt;}
.x43_c00238{left:394.666667pt;}
.x132_c00238{left:396.800000pt;}
.x2_c00238{left:397.733333pt;}
.x6e_c00238{left:399.333333pt;}
.x7f_c00238{left:401.600000pt;}
.x8a_c00238{left:404.000000pt;}
.x64_c00238{left:407.733333pt;}
.xe5_c00238{left:409.066667pt;}
.x34_c00238{left:410.000000pt;}
.x11f_c00238{left:411.066667pt;}
.xa0_c00238{left:416.000000pt;}
.xb0_c00238{left:416.933333pt;}
.x51_c00238{left:418.266667pt;}
.x5b_c00238{left:419.200000pt;}
.x96_c00238{left:420.133333pt;}
.xc1_c00238{left:423.066667pt;}
.x26_c00238{left:424.133333pt;}
.x80_c00238{left:426.933333pt;}
.xfc_c00238{left:428.800000pt;}
.x35_c00238{left:429.866667pt;}
.x9_c00238{left:431.866667pt;}
.x6f_c00238{left:433.600000pt;}
.xc8_c00238{left:435.733333pt;}
.x8b_c00238{left:437.333333pt;}
.x52_c00238{left:438.400000pt;}
.xc2_c00238{left:440.666667pt;}
.xfd_c00238{left:444.533333pt;}
.xec_c00238{left:446.666667pt;}
.xb1_c00238{left:447.600000pt;}
.x77_c00238{left:448.533333pt;}
.xa_c00238{left:451.066667pt;}
.x65_c00238{left:454.133333pt;}
.xd3_c00238{left:455.066667pt;}
.x44_c00238{left:456.400000pt;}
.xd9_c00238{left:457.600000pt;}
.x70_c00238{left:458.533333pt;}
.x78_c00238{left:459.466667pt;}
.xba_c00238{left:461.866667pt;}
.xc3_c00238{left:466.533333pt;}
.x124_c00238{left:467.466667pt;}
.x11d_c00238{left:470.400000pt;}
.x81_c00238{left:471.733333pt;}
.x36_c00238{left:472.800000pt;}
.x97_c00238{left:474.800000pt;}
.xb_c00238{left:476.000000pt;}
.xe6_c00238{left:476.933333pt;}
.xbb_c00238{left:477.866667pt;}
.x107_c00238{left:480.533333pt;}
.xda_c00238{left:481.600000pt;}
.x125_c00238{left:482.533333pt;}
.x8c_c00238{left:483.733333pt;}
.x27_c00238{left:484.933333pt;}
.x18_c00238{left:486.933333pt;}
.xed_c00238{left:488.000000pt;}
.x103_c00238{left:489.333333pt;}
.xc9_c00238{left:490.533333pt;}
.x53_c00238{left:492.533333pt;}
.x10b_c00238{left:493.466667pt;}
.xdb_c00238{left:495.333333pt;}
.x82_c00238{left:496.400000pt;}
.x12f_c00238{left:498.266667pt;}
.x19_c00238{left:502.266667pt;}
.xb2_c00238{left:503.600000pt;}
.x121_c00238{left:506.400000pt;}
.x98_c00238{left:508.400000pt;}
.x66_c00238{left:509.866667pt;}
.x28_c00238{left:511.466667pt;}
.xee_c00238{left:512.666667pt;}
.x126_c00238{left:514.266667pt;}
.x5c_c00238{left:515.200000pt;}
.x79_c00238{left:517.466667pt;}
.xde_c00238{left:518.400000pt;}
.x37_c00238{left:519.466667pt;}
.xc_c00238{left:521.066667pt;}
.x45_c00238{left:522.000000pt;}
.x122_c00238{left:523.066667pt;}
.xf8_c00238{left:524.666667pt;}
.x99_c00238{left:527.866667pt;}
.x112_c00238{left:528.933333pt;}
.xf5_c00238{left:530.133333pt;}
.x54_c00238{left:533.466667pt;}
.x29_c00238{left:536.400000pt;}
.x8d_c00238{left:537.466667pt;}
.x1a_c00238{left:540.000000pt;}
.xd4_c00238{left:541.466667pt;}
.x7a_c00238{left:545.333333pt;}
.x83_c00238{left:546.533333pt;}
.x38_c00238{left:548.000000pt;}
.xb3_c00238{left:549.066667pt;}
.x9a_c00238{left:550.933333pt;}
.x71_c00238{left:551.866667pt;}
.x1b_c00238{left:557.600000pt;}
.x12c_c00238{left:558.800000pt;}
.x11c_c00238{left:562.000000pt;}
.x127_c00238{left:563.600000pt;}
.xef_c00238{left:564.800000pt;}
.xfe_c00238{left:566.133333pt;}
.xa1_c00238{left:570.133333pt;}
.x108_c00238{left:573.333333pt;}
.x9b_c00238{left:575.600000pt;}
.x55_c00238{left:577.333333pt;}
.x2a_c00238{left:578.933333pt;}
.x84_c00238{left:580.400000pt;}
.xf9_c00238{left:581.600000pt;}
.x1c_c00238{left:582.533333pt;}
.x39_c00238{left:583.466667pt;}
.xd_c00238{left:588.000000pt;}
.x9c_c00238{left:590.933333pt;}
.xca_c00238{left:592.266667pt;}
.x128_c00238{left:593.733333pt;}
.x116_c00238{left:594.666667pt;}
.x46_c00238{left:595.600000pt;}
.x5d_c00238{left:597.066667pt;}
.x2b_c00238{left:600.666667pt;}
.xbc_c00238{left:601.733333pt;}
.xe_c00238{left:604.000000pt;}
.xff_c00238{left:606.400000pt;}
.x7b_c00238{left:608.400000pt;}
.xa2_c00238{left:609.466667pt;}
.xf0_c00238{left:611.200000pt;}
.x5e_c00238{left:612.400000pt;}
.x10c_c00238{left:613.466667pt;}
.x67_c00238{left:614.533333pt;}
.x3a_c00238{left:618.000000pt;}
.x1d_c00238{left:620.266667pt;}
.x104_c00238{left:621.866667pt;}
.x85_c00238{left:623.600000pt;}
.xe7_c00238{left:625.066667pt;}
.x47_c00238{left:626.933333pt;}
.x72_c00238{left:631.866667pt;}
.x1e_c00238{left:637.866667pt;}
.x100_c00238{left:639.066667pt;}
.xdf_c00238{left:640.533333pt;}
.x8e_c00238{left:641.466667pt;}
.xf_c00238{left:643.333333pt;}
.x2c_c00238{left:644.533333pt;}
.xb4_c00238{left:646.400000pt;}
.x56_c00238{left:647.333333pt;}
.xa3_c00238{left:650.400000pt;}
.xcb_c00238{left:652.400000pt;}
.x86_c00238{left:654.933333pt;}
.x68_c00238{left:661.866667pt;}
.x1f_c00238{left:663.200000pt;}
.x129_c00238{left:664.133333pt;}
.xe8_c00238{left:671.466667pt;}
.x10d_c00238{left:672.933333pt;}
.xa4_c00238{left:675.733333pt;}
.x73_c00238{left:678.933333pt;}
.x69_c00238{left:680.400000pt;}
.xc4_c00238{left:681.466667pt;}
.xb5_c00238{left:685.066667pt;}
.x2d_c00238{left:686.800000pt;}
.x10_c00238{left:688.400000pt;}
.x48_c00238{left:690.266667pt;}
.x105_c00238{left:691.333333pt;}
.x57_c00238{left:693.066667pt;}
.x5f_c00238{left:695.066667pt;}
.xe9_c00238{left:696.400000pt;}
.xf6_c00238{left:697.733333pt;}
.xd5_c00238{left:698.666667pt;}
.x113_c00238{left:701.333333pt;}
.x11_c00238{left:703.733333pt;}
.x117_c00238{left:705.066667pt;}
.xa5_c00238{left:706.133333pt;}
.x2e_c00238{left:708.533333pt;}
.xbd_c00238{left:716.266667pt;}
.x60_c00238{left:721.333333pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00239 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00239 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00239 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00239 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* 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_c00240 {
    display:none;
  }
  .loading-indicator_c00240.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00240 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_c00240 { 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_c00240" -> "#page-container .classname_c00240")
 */
.pf_c00240 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00240 { /* 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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00240 { /* 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_c00240 { /* 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_c00240 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00240 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00240 {overflow:visible;}
  }
}
.c_c00240 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00240 { /* 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_c00240:after { /* webkit #35443 */
  content: '';
}
.t_c00240:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00240 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 */
}
.__c00240 { /* 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_c00240 { /* info for Javascript */
  display:none;
}
.l_c00240 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00240 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00240 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00240: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_c00240 {
    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_c00240.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00240.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_c00240 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00240{font-family:sans-serif;visibility:hidden;}
.sc__c00240{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
}
.y0_c00240{bottom:0.000000px;}
.h0_c00240{height:1166.759949px;}
.h1_c00240{height:1167.000000px;}
.w0_c00240{width:918.720063px;}
.w1_c00240{width:918.750000px;}
.x0_c00240{left:0.000000px;}
@media print{
.y0_c00240{bottom:0.000000pt;}
.h0_c00240{height:1037.119955pt;}
.h1_c00240{height:1037.333333pt;}
.w0_c00240{width:816.640056pt;}
.w1_c00240{width:816.666667pt;}
.x0_c00240{left:0.000000pt;}
}





/* 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_c00241 {
    display:none;
  }
  .loading-indicator_c00241.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00241 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_c00241 { 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_c00241" -> "#page-container .classname_c00241")
 */
.pf_c00241 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00241 { /* 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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00241 { /* 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_c00241 { /* 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_c00241 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00241 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00241 {overflow:visible;}
  }
}
.c_c00241 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00241 { /* 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_c00241:after { /* webkit #35443 */
  content: '';
}
.t_c00241:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00241 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 */
}
.__c00241 { /* 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_c00241 { /* info for Javascript */
  display:none;
}
.l_c00241 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00241 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00241 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00241: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_c00241 {
    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_c00241.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00241.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_c00241 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00241{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00241;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.000000;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;}
.m46_c00241{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m38_c00241{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00241{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00241{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m65_c00241{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m77_c00241{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m47_c00241{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m54_c00241{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00241{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00241{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00241{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m10_c00241{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m72_c00241{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00241{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m58_c00241{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00241{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m41_c00241{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00241{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00241{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m70_c00241{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m43_c00241{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m28_c00241{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00241{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00241{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00241{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m59_c00241{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00241{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m21_c00241{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00241{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00241{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00241{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m88_c00241{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00241{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m31_c00241{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4_c00241{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00241{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m98_c00241{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m52_c00241{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00241{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m20_c00241{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m92_c00241{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00241{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m61_c00241{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00241{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00241{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00241{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m53_c00241{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m81_c00241{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m44_c00241{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00241{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m73_c00241{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m48_c00241{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00241{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00241{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3_c00241{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m60_c00241{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m39_c00241{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00241{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m19_c00241{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m82_c00241{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00241{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00241{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00241{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c00241{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00241{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00241{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.md_c00241{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9_c00241{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m62_c00241{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m89_c00241{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m57_c00241{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);}
.m78_c00241{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m33_c00241{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23_c00241{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m69_c00241{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8_c00241{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6_c00241{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m99_c00241{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m95_c00241{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m75_c00241{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m76_c00241{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00241{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m80_c00241{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m49_c00241{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00241{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00241{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m18_c00241{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00241{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00241{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00241{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00241{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m45_c00241{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m66_c00241{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00241{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m42_c00241{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m97_c00241{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m34_c00241{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m91_c00241{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m25_c00241{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m17_c00241{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m22_c00241{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m71_c00241{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m30_c00241{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m1_c00241{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00241{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00241{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m79_c00241{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m64_c00241{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m85_c00241{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m16_c00241{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00241{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m63_c00241{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m40_c00241{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m50_c00241{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00241{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m67_c00241{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m84_c00241{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m51_c00241{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m87_c00241{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m27_c00241{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00241{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m96_c00241{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m26_c00241{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m74_c00241{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m35_c00241{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00241{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00241{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m32_c00241{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00241{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m90_c00241{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m94_c00241{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00241{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00241{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00241{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00241{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00241{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00241{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m15_c00241{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m36_c00241{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m24_c00241{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m37_c00241{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00241{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00241{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m93_c00241{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m13_c00241{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m29_c00241{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m55_c00241{transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.493250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00241{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m86_c00241{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00241{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m12_c00241{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m83_c00241{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls0_c00241{letter-spacing:0.000000px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{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__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00241{word-spacing:-6.087464px;}
.ws8_c00241{word-spacing:-4.846154px;}
.ws9_c00241{word-spacing:-4.250000px;}
.ws7_c00241{word-spacing:-0.681818px;}
.wsb_c00241{word-spacing:0.000000px;}
.ws6_c00241{word-spacing:5.357143px;}
.wsa_c00241{word-spacing:6.654162px;}
.ws1_c00241{word-spacing:7.177493px;}
.ws3_c00241{word-spacing:7.821931px;}
.ws0_c00241{word-spacing:15.250000px;}
.ws4_c00241{word-spacing:20.071512px;}
.ws2_c00241{word-spacing:28.625000px;}
.fc0_c00241{color:transparent;}
.fs1_c00241{font-size:54.000000px;}
.fs0_c00241{font-size:60.000000px;}
.y0_c00241{bottom:0.000000px;}
.y2d_c00241{bottom:142.650000px;}
.y2c_c00241{bottom:158.100000px;}
.y2b_c00241{bottom:184.800000px;}
.y2a_c00241{bottom:204.600000px;}
.y29_c00241{bottom:224.400000px;}
.y28_c00241{bottom:244.500000px;}
.y27_c00241{bottom:264.300000px;}
.y26_c00241{bottom:284.100000px;}
.y25_c00241{bottom:304.200000px;}
.y24_c00241{bottom:324.000000px;}
.y23_c00241{bottom:343.800000px;}
.y22_c00241{bottom:363.600000px;}
.y21_c00241{bottom:383.700000px;}
.y20_c00241{bottom:403.500000px;}
.y1f_c00241{bottom:423.450000px;}
.y1e_c00241{bottom:443.550000px;}
.y1d_c00241{bottom:463.500000px;}
.y1c_c00241{bottom:483.600000px;}
.y1b_c00241{bottom:503.400000px;}
.y1a_c00241{bottom:523.200000px;}
.y19_c00241{bottom:543.000000px;}
.y18_c00241{bottom:562.800000px;}
.y17_c00241{bottom:582.900000px;}
.y16_c00241{bottom:602.700000px;}
.y15_c00241{bottom:622.200000px;}
.y14_c00241{bottom:642.300000px;}
.y13_c00241{bottom:662.400000px;}
.y12_c00241{bottom:681.900000px;}
.y11_c00241{bottom:702.000000px;}
.y10_c00241{bottom:722.100000px;}
.yf_c00241{bottom:741.600000px;}
.ye_c00241{bottom:761.850000px;}
.yd_c00241{bottom:781.950000px;}
.yc_c00241{bottom:801.750000px;}
.yb_c00241{bottom:821.550000px;}
.ya_c00241{bottom:841.350000px;}
.y9_c00241{bottom:861.900000px;}
.y8_c00241{bottom:881.700000px;}
.y7_c00241{bottom:901.500000px;}
.y6_c00241{bottom:921.600000px;}
.y5_c00241{bottom:941.700000px;}
.y4_c00241{bottom:961.500000px;}
.y3_c00241{bottom:981.750000px;}
.y2_c00241{bottom:1001.850000px;}
.y1_c00241{bottom:1038.900000px;}
.h3_c00241{height:54.000000px;}
.h2_c00241{height:60.000000px;}
.h0_c00241{height:1166.759949px;}
.h1_c00241{height:1167.000000px;}
.w0_c00241{width:918.720063px;}
.w1_c00241{width:918.750000px;}
.x0_c00241{left:0.000000px;}
.x3_c00241{left:97.500000px;}
.x8b_c00241{left:98.700000px;}
.xdb_c00241{left:117.150000px;}
.x7d_c00241{left:118.500000px;}
.xc7_c00241{left:123.900000px;}
.x4c_c00241{left:125.400000px;}
.xbc_c00241{left:126.750000px;}
.x14_c00241{left:129.600000px;}
.x126_c00241{left:130.650000px;}
.x114_c00241{left:133.050000px;}
.x97_c00241{left:141.600000px;}
.x7e_c00241{left:146.550000px;}
.x11_c00241{left:148.500000px;}
.xf7_c00241{left:150.150000px;}
.x69_c00241{left:152.700000px;}
.x40_c00241{left:154.050000px;}
.x124_c00241{left:155.100000px;}
.x4d_c00241{left:156.300000px;}
.x4_c00241{left:157.950000px;}
.xbd_c00241{left:163.500000px;}
.xb5_c00241{left:165.900000px;}
.x2d_c00241{left:169.350000px;}
.xe1_c00241{left:172.350000px;}
.x6a_c00241{left:175.350000px;}
.x127_c00241{left:176.700000px;}
.x5_c00241{left:177.750000px;}
.x15_c00241{left:178.950000px;}
.xe6_c00241{left:180.900000px;}
.x74_c00241{left:182.250000px;}
.xc8_c00241{left:184.350000px;}
.xdc_c00241{left:187.050000px;}
.x12_c00241{left:189.900000px;}
.x8c_c00241{left:193.350000px;}
.x10e_c00241{left:194.400000px;}
.x2e_c00241{left:197.850000px;}
.xec_c00241{left:199.800000px;}
.x20_c00241{left:201.450000px;}
.x16_c00241{left:203.100000px;}
.xbe_c00241{left:204.150000px;}
.x6b_c00241{left:206.700000px;}
.xa5_c00241{left:208.650000px;}
.xe7_c00241{left:212.250000px;}
.x7f_c00241{left:213.900000px;}
.x102_c00241{left:216.900000px;}
.x75_c00241{left:219.750000px;}
.x5f_c00241{left:222.000000px;}
.x11c_c00241{left:223.350000px;}
.x41_c00241{left:224.550000px;}
.x2f_c00241{left:226.350000px;}
.x6_c00241{left:228.900000px;}
.x4e_c00241{left:230.700000px;}
.x32_c00241{left:236.850000px;}
.xad_c00241{left:237.900000px;}
.xdd_c00241{left:239.700000px;}
.x30_c00241{left:244.050000px;}
.x6c_c00241{left:245.550000px;}
.x115_c00241{left:248.550000px;}
.xc9_c00241{left:250.950000px;}
.x120_c00241{left:252.000000px;}
.x33_c00241{left:253.050000px;}
.x42_c00241{left:258.000000px;}
.xa6_c00241{left:261.150000px;}
.x21_c00241{left:262.950000px;}
.x8d_c00241{left:265.050000px;}
.x128_c00241{left:267.000000px;}
.xfb_c00241{left:269.100000px;}
.x7_c00241{left:271.350000px;}
.x98_c00241{left:274.200000px;}
.x60_c00241{left:275.700000px;}
.x57_c00241{left:279.000000px;}
.x22_c00241{left:280.650000px;}
.xa7_c00241{left:281.700000px;}
.x17_c00241{left:283.800000px;}
.xd4_c00241{left:285.000000px;}
.x31_c00241{left:286.200000px;}
.xb6_c00241{left:288.600000px;}
.x34_c00241{left:289.800000px;}
.x99_c00241{left:291.900000px;}
.x76_c00241{left:293.550000px;}
.xe2_c00241{left:294.900000px;}
.x82_c00241{left:296.400000px;}
.xca_c00241{left:297.750000px;}
.x18_c00241{left:299.700000px;}
.xfc_c00241{left:300.750000px;}
.x13_c00241{left:304.350000px;}
.xed_c00241{left:305.550000px;}
.x61_c00241{left:307.050000px;}
.x12b_c00241{left:308.100000px;}
.x43_c00241{left:310.500000px;}
.x83_c00241{left:311.550000px;}
.x8e_c00241{left:314.100000px;}
.x9e_c00241{left:317.850000px;}
.x23_c00241{left:320.250000px;}
.xfd_c00241{left:321.600000px;}
.x8_c00241{left:323.550000px;}
.xcb_c00241{left:326.250000px;}
.xb7_c00241{left:327.900000px;}
.xf4_c00241{left:329.400000px;}
.x9a_c00241{left:331.500000px;}
.x19_c00241{left:334.950000px;}
.x103_c00241{left:337.800000px;}
.x44_c00241{left:342.150000px;}
.xbf_c00241{left:343.650000px;}
.xd5_c00241{left:346.650000px;}
.xde_c00241{left:348.000000px;}
.xee_c00241{left:350.850000px;}
.x84_c00241{left:352.200000px;}
.x4f_c00241{left:353.550000px;}
.x109_c00241{left:354.600000px;}
.x35_c00241{left:355.650000px;}
.x10f_c00241{left:357.450000px;}
.x6d_c00241{left:358.950000px;}
.xb8_c00241{left:360.300000px;}
.x104_c00241{left:363.300000px;}
.xae_c00241{left:364.950000px;}
.x77_c00241{left:368.400000px;}
.xcc_c00241{left:370.200000px;}
.x80_c00241{left:371.550000px;}
.xfe_c00241{left:374.100000px;}
.x9f_c00241{left:376.500000px;}
.x62_c00241{left:378.000000px;}
.x125_c00241{left:380.400000px;}
.xf5_c00241{left:381.900000px;}
.x8f_c00241{left:384.300000px;}
.xe8_c00241{left:386.100000px;}
.x24_c00241{left:387.600000px;}
.xcd_c00241{left:388.950000px;}
.x36_c00241{left:390.900000px;}
.x1_c00241{left:393.150000px;}
.xc0_c00241{left:394.350000px;}
.x50_c00241{left:397.050000px;}
.x1a_c00241{left:398.700000px;}
.xf8_c00241{left:399.750000px;}
.x12c_c00241{left:401.100000px;}
.x90_c00241{left:402.600000px;}
.xb9_c00241{left:404.550000px;}
.xa0_c00241{left:408.600000px;}
.x121_c00241{left:409.650000px;}
.x37_c00241{left:410.700000px;}
.x78_c00241{left:412.650000px;}
.xd6_c00241{left:413.850000px;}
.x9_c00241{left:415.650000px;}
.xce_c00241{left:416.700000px;}
.x85_c00241{left:418.500000px;}
.xff_c00241{left:422.700000px;}
.x25_c00241{left:423.900000px;}
.x63_c00241{left:426.600000px;}
.x1b_c00241{left:431.850000px;}
.x116_c00241{left:433.200000px;}
.xe9_c00241{left:435.450000px;}
.xa1_c00241{left:436.650000px;}
.xd7_c00241{left:439.050000px;}
.x58_c00241{left:440.250000px;}
.x51_c00241{left:441.300000px;}
.x91_c00241{left:443.700000px;}
.xba_c00241{left:444.900000px;}
.x10a_c00241{left:446.100000px;}
.x9b_c00241{left:447.750000px;}
.xa_c00241{left:449.100000px;}
.x38_c00241{left:451.800000px;}
.x86_c00241{left:454.500000px;}
.xcf_c00241{left:455.550000px;}
.x122_c00241{left:456.750000px;}
.x6e_c00241{left:458.250000px;}
.x110_c00241{left:460.050000px;}
.x1c_c00241{left:462.750000px;}
.x81_c00241{left:465.150000px;}
.xb_c00241{left:471.000000px;}
.x59_c00241{left:472.650000px;}
.xa8_c00241{left:474.000000px;}
.x87_c00241{left:476.100000px;}
.xea_c00241{left:479.400000px;}
.x26_c00241{left:480.450000px;}
.x64_c00241{left:482.400000px;}
.xef_c00241{left:483.600000px;}
.x100_c00241{left:484.950000px;}
.x9c_c00241{left:487.350000px;}
.x45_c00241{left:494.100000px;}
.xa9_c00241{left:496.350000px;}
.x92_c00241{left:497.400000px;}
.xc1_c00241{left:499.050000px;}
.x27_c00241{left:500.550000px;}
.xc_c00241{left:501.600000px;}
.x79_c00241{left:502.650000px;}
.xd0_c00241{left:504.900000px;}
.x1d_c00241{left:508.050000px;}
.x111_c00241{left:509.400000px;}
.x123_c00241{left:511.050000px;}
.xf0_c00241{left:512.100000px;}
.xaf_c00241{left:514.050000px;}
.xe3_c00241{left:515.550000px;}
.xb1_c00241{left:518.250000px;}
.x52_c00241{left:520.050000px;}
.x129_c00241{left:521.100000px;}
.x105_c00241{left:522.450000px;}
.xeb_c00241{left:524.100000px;}
.x39_c00241{left:526.200000px;}
.xc2_c00241{left:527.850000px;}
.x118_c00241{left:530.250000px;}
.xb0_c00241{left:532.050000px;}
.x5a_c00241{left:533.550000px;}
.x6f_c00241{left:535.350000px;}
.x88_c00241{left:537.750000px;}
.x11d_c00241{left:538.950000px;}
.xd_c00241{left:540.150000px;}
.x1e_c00241{left:544.800000px;}
.x106_c00241{left:547.650000px;}
.x3a_c00241{left:548.850000px;}
.xf1_c00241{left:549.900000px;}
.x53_c00241{left:550.950000px;}
.x93_c00241{left:552.900000px;}
.x7a_c00241{left:555.600000px;}
.x112_c00241{left:558.300000px;}
.xa2_c00241{left:559.800000px;}
.xaa_c00241{left:561.900000px;}
.xdf_c00241{left:564.000000px;}
.xb2_c00241{left:566.100000px;}
.x70_c00241{left:570.300000px;}
.x46_c00241{left:575.400000px;}
.x11b_c00241{left:576.900000px;}
.x3b_c00241{left:578.400000px;}
.x5b_c00241{left:582.900000px;}
.x94_c00241{left:584.250000px;}
.x11e_c00241{left:587.850000px;}
.x1f_c00241{left:589.800000px;}
.xe_c00241{left:591.300000px;}
.x89_c00241{left:593.250000px;}
.xd8_c00241{left:594.450000px;}
.x47_c00241{left:595.500000px;}
.x28_c00241{left:597.750000px;}
.xc3_c00241{left:599.850000px;}
.x71_c00241{left:604.800000px;}
.x65_c00241{left:606.600000px;}
.x119_c00241{left:607.650000px;}
.xb3_c00241{left:609.000000px;}
.xd1_c00241{left:614.400000px;}
.x3c_c00241{left:616.200000px;}
.x54_c00241{left:620.400000px;}
.x48_c00241{left:624.300000px;}
.x29_c00241{left:627.600000px;}
.xc4_c00241{left:630.450000px;}
.x5c_c00241{left:634.050000px;}
.xd2_c00241{left:636.000000px;}
.x66_c00241{left:637.950000px;}
.xb4_c00241{left:639.300000px;}
.x55_c00241{left:640.950000px;}
.x7b_c00241{left:642.750000px;}
.xab_c00241{left:644.100000px;}
.x11f_c00241{left:646.500000px;}
.x2a_c00241{left:648.450000px;}
.xf9_c00241{left:652.200000px;}
.x5d_c00241{left:654.150000px;}
.x117_c00241{left:657.000000px;}
.xd9_c00241{left:658.200000px;}
.xf_c00241{left:660.750000px;}
.x101_c00241{left:662.100000px;}
.x49_c00241{left:663.150000px;}
.x67_c00241{left:667.050000px;}
.x107_c00241{left:668.250000px;}
.x12a_c00241{left:669.750000px;}
.x72_c00241{left:672.450000px;}
.xc5_c00241{left:673.650000px;}
.x3d_c00241{left:675.600000px;}
.xf6_c00241{left:677.550000px;}
.xd3_c00241{left:681.000000px;}
.x4a_c00241{left:683.250000px;}
.x2b_c00241{left:684.450000px;}
.x56_c00241{left:685.950000px;}
.x10b_c00241{left:690.600000px;}
.xa3_c00241{left:693.000000px;}
.x95_c00241{left:694.050000px;}
.x7c_c00241{left:696.000000px;}
.xc6_c00241{left:699.600000px;}
.xbb_c00241{left:700.950000px;}
.xf2_c00241{left:703.350000px;}
.xe4_c00241{left:705.450000px;}
.x3e_c00241{left:706.500000px;}
.x10c_c00241{left:707.850000px;}
.xfa_c00241{left:714.450000px;}
.xda_c00241{left:716.550000px;}
.xa4_c00241{left:718.500000px;}
.x113_c00241{left:720.300000px;}
.x10d_c00241{left:721.500000px;}
.x10_c00241{left:723.750000px;}
.xac_c00241{left:725.400000px;}
.x3f_c00241{left:727.800000px;}
.x108_c00241{left:729.150000px;}
.x68_c00241{left:733.350000px;}
.x2c_c00241{left:734.550000px;}
.xe5_c00241{left:736.050000px;}
.x73_c00241{left:738.000000px;}
.x5e_c00241{left:739.050000px;}
.x2_c00241{left:741.300000px;}
.x8a_c00241{left:743.100000px;}
.x9d_c00241{left:744.450000px;}
.xe0_c00241{left:746.550000px;}
.xf3_c00241{left:750.450000px;}
.x11a_c00241{left:752.700000px;}
.x96_c00241{left:754.950000px;}
.x4b_c00241{left:762.900000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws5_c00241{word-spacing:-5.411079pt;}
.ws8_c00241{word-spacing:-4.307692pt;}
.ws9_c00241{word-spacing:-3.777778pt;}
.ws7_c00241{word-spacing:-0.606061pt;}
.wsb_c00241{word-spacing:0.000000pt;}
.ws6_c00241{word-spacing:4.761905pt;}
.wsa_c00241{word-spacing:5.914810pt;}
.ws1_c00241{word-spacing:6.379994pt;}
.ws3_c00241{word-spacing:6.952827pt;}
.ws0_c00241{word-spacing:13.555556pt;}
.ws4_c00241{word-spacing:17.841344pt;}
.ws2_c00241{word-spacing:25.444444pt;}
.fs1_c00241{font-size:48.000000pt;}
.fs0_c00241{font-size:53.333333pt;}
.y0_c00241{bottom:0.000000pt;}
.y2d_c00241{bottom:126.800000pt;}
.y2c_c00241{bottom:140.533333pt;}
.y2b_c00241{bottom:164.266667pt;}
.y2a_c00241{bottom:181.866667pt;}
.y29_c00241{bottom:199.466667pt;}
.y28_c00241{bottom:217.333333pt;}
.y27_c00241{bottom:234.933333pt;}
.y26_c00241{bottom:252.533333pt;}
.y25_c00241{bottom:270.400000pt;}
.y24_c00241{bottom:288.000000pt;}
.y23_c00241{bottom:305.600000pt;}
.y22_c00241{bottom:323.200000pt;}
.y21_c00241{bottom:341.066667pt;}
.y20_c00241{bottom:358.666667pt;}
.y1f_c00241{bottom:376.400000pt;}
.y1e_c00241{bottom:394.266667pt;}
.y1d_c00241{bottom:412.000000pt;}
.y1c_c00241{bottom:429.866667pt;}
.y1b_c00241{bottom:447.466667pt;}
.y1a_c00241{bottom:465.066667pt;}
.y19_c00241{bottom:482.666667pt;}
.y18_c00241{bottom:500.266667pt;}
.y17_c00241{bottom:518.133333pt;}
.y16_c00241{bottom:535.733333pt;}
.y15_c00241{bottom:553.066667pt;}
.y14_c00241{bottom:570.933333pt;}
.y13_c00241{bottom:588.800000pt;}
.y12_c00241{bottom:606.133333pt;}
.y11_c00241{bottom:624.000000pt;}
.y10_c00241{bottom:641.866667pt;}
.yf_c00241{bottom:659.200000pt;}
.ye_c00241{bottom:677.200000pt;}
.yd_c00241{bottom:695.066667pt;}
.yc_c00241{bottom:712.666667pt;}
.yb_c00241{bottom:730.266667pt;}
.ya_c00241{bottom:747.866667pt;}
.y9_c00241{bottom:766.133333pt;}
.y8_c00241{bottom:783.733333pt;}
.y7_c00241{bottom:801.333333pt;}
.y6_c00241{bottom:819.200000pt;}
.y5_c00241{bottom:837.066667pt;}
.y4_c00241{bottom:854.666667pt;}
.y3_c00241{bottom:872.666667pt;}
.y2_c00241{bottom:890.533333pt;}
.y1_c00241{bottom:923.466667pt;}
.h3_c00241{height:48.000000pt;}
.h2_c00241{height:53.333333pt;}
.h0_c00241{height:1037.119955pt;}
.h1_c00241{height:1037.333333pt;}
.w0_c00241{width:816.640056pt;}
.w1_c00241{width:816.666667pt;}
.x0_c00241{left:0.000000pt;}
.x3_c00241{left:86.666667pt;}
.x8b_c00241{left:87.733333pt;}
.xdb_c00241{left:104.133333pt;}
.x7d_c00241{left:105.333333pt;}
.xc7_c00241{left:110.133333pt;}
.x4c_c00241{left:111.466667pt;}
.xbc_c00241{left:112.666667pt;}
.x14_c00241{left:115.200000pt;}
.x126_c00241{left:116.133333pt;}
.x114_c00241{left:118.266667pt;}
.x97_c00241{left:125.866667pt;}
.x7e_c00241{left:130.266667pt;}
.x11_c00241{left:132.000000pt;}
.xf7_c00241{left:133.466667pt;}
.x69_c00241{left:135.733333pt;}
.x40_c00241{left:136.933333pt;}
.x124_c00241{left:137.866667pt;}
.x4d_c00241{left:138.933333pt;}
.x4_c00241{left:140.400000pt;}
.xbd_c00241{left:145.333333pt;}
.xb5_c00241{left:147.466667pt;}
.x2d_c00241{left:150.533333pt;}
.xe1_c00241{left:153.200000pt;}
.x6a_c00241{left:155.866667pt;}
.x127_c00241{left:157.066667pt;}
.x5_c00241{left:158.000000pt;}
.x15_c00241{left:159.066667pt;}
.xe6_c00241{left:160.800000pt;}
.x74_c00241{left:162.000000pt;}
.xc8_c00241{left:163.866667pt;}
.xdc_c00241{left:166.266667pt;}
.x12_c00241{left:168.800000pt;}
.x8c_c00241{left:171.866667pt;}
.x10e_c00241{left:172.800000pt;}
.x2e_c00241{left:175.866667pt;}
.xec_c00241{left:177.600000pt;}
.x20_c00241{left:179.066667pt;}
.x16_c00241{left:180.533333pt;}
.xbe_c00241{left:181.466667pt;}
.x6b_c00241{left:183.733333pt;}
.xa5_c00241{left:185.466667pt;}
.xe7_c00241{left:188.666667pt;}
.x7f_c00241{left:190.133333pt;}
.x102_c00241{left:192.800000pt;}
.x75_c00241{left:195.333333pt;}
.x5f_c00241{left:197.333333pt;}
.x11c_c00241{left:198.533333pt;}
.x41_c00241{left:199.600000pt;}
.x2f_c00241{left:201.200000pt;}
.x6_c00241{left:203.466667pt;}
.x4e_c00241{left:205.066667pt;}
.x32_c00241{left:210.533333pt;}
.xad_c00241{left:211.466667pt;}
.xdd_c00241{left:213.066667pt;}
.x30_c00241{left:216.933333pt;}
.x6c_c00241{left:218.266667pt;}
.x115_c00241{left:220.933333pt;}
.xc9_c00241{left:223.066667pt;}
.x120_c00241{left:224.000000pt;}
.x33_c00241{left:224.933333pt;}
.x42_c00241{left:229.333333pt;}
.xa6_c00241{left:232.133333pt;}
.x21_c00241{left:233.733333pt;}
.x8d_c00241{left:235.600000pt;}
.x128_c00241{left:237.333333pt;}
.xfb_c00241{left:239.200000pt;}
.x7_c00241{left:241.200000pt;}
.x98_c00241{left:243.733333pt;}
.x60_c00241{left:245.066667pt;}
.x57_c00241{left:248.000000pt;}
.x22_c00241{left:249.466667pt;}
.xa7_c00241{left:250.400000pt;}
.x17_c00241{left:252.266667pt;}
.xd4_c00241{left:253.333333pt;}
.x31_c00241{left:254.400000pt;}
.xb6_c00241{left:256.533333pt;}
.x34_c00241{left:257.600000pt;}
.x99_c00241{left:259.466667pt;}
.x76_c00241{left:260.933333pt;}
.xe2_c00241{left:262.133333pt;}
.x82_c00241{left:263.466667pt;}
.xca_c00241{left:264.666667pt;}
.x18_c00241{left:266.400000pt;}
.xfc_c00241{left:267.333333pt;}
.x13_c00241{left:270.533333pt;}
.xed_c00241{left:271.600000pt;}
.x61_c00241{left:272.933333pt;}
.x12b_c00241{left:273.866667pt;}
.x43_c00241{left:276.000000pt;}
.x83_c00241{left:276.933333pt;}
.x8e_c00241{left:279.200000pt;}
.x9e_c00241{left:282.533333pt;}
.x23_c00241{left:284.666667pt;}
.xfd_c00241{left:285.866667pt;}
.x8_c00241{left:287.600000pt;}
.xcb_c00241{left:290.000000pt;}
.xb7_c00241{left:291.466667pt;}
.xf4_c00241{left:292.800000pt;}
.x9a_c00241{left:294.666667pt;}
.x19_c00241{left:297.733333pt;}
.x103_c00241{left:300.266667pt;}
.x44_c00241{left:304.133333pt;}
.xbf_c00241{left:305.466667pt;}
.xd5_c00241{left:308.133333pt;}
.xde_c00241{left:309.333333pt;}
.xee_c00241{left:311.866667pt;}
.x84_c00241{left:313.066667pt;}
.x4f_c00241{left:314.266667pt;}
.x109_c00241{left:315.200000pt;}
.x35_c00241{left:316.133333pt;}
.x10f_c00241{left:317.733333pt;}
.x6d_c00241{left:319.066667pt;}
.xb8_c00241{left:320.266667pt;}
.x104_c00241{left:322.933333pt;}
.xae_c00241{left:324.400000pt;}
.x77_c00241{left:327.466667pt;}
.xcc_c00241{left:329.066667pt;}
.x80_c00241{left:330.266667pt;}
.xfe_c00241{left:332.533333pt;}
.x9f_c00241{left:334.666667pt;}
.x62_c00241{left:336.000000pt;}
.x125_c00241{left:338.133333pt;}
.xf5_c00241{left:339.466667pt;}
.x8f_c00241{left:341.600000pt;}
.xe8_c00241{left:343.200000pt;}
.x24_c00241{left:344.533333pt;}
.xcd_c00241{left:345.733333pt;}
.x36_c00241{left:347.466667pt;}
.x1_c00241{left:349.466667pt;}
.xc0_c00241{left:350.533333pt;}
.x50_c00241{left:352.933333pt;}
.x1a_c00241{left:354.400000pt;}
.xf8_c00241{left:355.333333pt;}
.x12c_c00241{left:356.533333pt;}
.x90_c00241{left:357.866667pt;}
.xb9_c00241{left:359.600000pt;}
.xa0_c00241{left:363.200000pt;}
.x121_c00241{left:364.133333pt;}
.x37_c00241{left:365.066667pt;}
.x78_c00241{left:366.800000pt;}
.xd6_c00241{left:367.866667pt;}
.x9_c00241{left:369.466667pt;}
.xce_c00241{left:370.400000pt;}
.x85_c00241{left:372.000000pt;}
.xff_c00241{left:375.733333pt;}
.x25_c00241{left:376.800000pt;}
.x63_c00241{left:379.200000pt;}
.x1b_c00241{left:383.866667pt;}
.x116_c00241{left:385.066667pt;}
.xe9_c00241{left:387.066667pt;}
.xa1_c00241{left:388.133333pt;}
.xd7_c00241{left:390.266667pt;}
.x58_c00241{left:391.333333pt;}
.x51_c00241{left:392.266667pt;}
.x91_c00241{left:394.400000pt;}
.xba_c00241{left:395.466667pt;}
.x10a_c00241{left:396.533333pt;}
.x9b_c00241{left:398.000000pt;}
.xa_c00241{left:399.200000pt;}
.x38_c00241{left:401.600000pt;}
.x86_c00241{left:404.000000pt;}
.xcf_c00241{left:404.933333pt;}
.x122_c00241{left:406.000000pt;}
.x6e_c00241{left:407.333333pt;}
.x110_c00241{left:408.933333pt;}
.x1c_c00241{left:411.333333pt;}
.x81_c00241{left:413.466667pt;}
.xb_c00241{left:418.666667pt;}
.x59_c00241{left:420.133333pt;}
.xa8_c00241{left:421.333333pt;}
.x87_c00241{left:423.200000pt;}
.xea_c00241{left:426.133333pt;}
.x26_c00241{left:427.066667pt;}
.x64_c00241{left:428.800000pt;}
.xef_c00241{left:429.866667pt;}
.x100_c00241{left:431.066667pt;}
.x9c_c00241{left:433.200000pt;}
.x45_c00241{left:439.200000pt;}
.xa9_c00241{left:441.200000pt;}
.x92_c00241{left:442.133333pt;}
.xc1_c00241{left:443.600000pt;}
.x27_c00241{left:444.933333pt;}
.xc_c00241{left:445.866667pt;}
.x79_c00241{left:446.800000pt;}
.xd0_c00241{left:448.800000pt;}
.x1d_c00241{left:451.600000pt;}
.x111_c00241{left:452.800000pt;}
.x123_c00241{left:454.266667pt;}
.xf0_c00241{left:455.200000pt;}
.xaf_c00241{left:456.933333pt;}
.xe3_c00241{left:458.266667pt;}
.xb1_c00241{left:460.666667pt;}
.x52_c00241{left:462.266667pt;}
.x129_c00241{left:463.200000pt;}
.x105_c00241{left:464.400000pt;}
.xeb_c00241{left:465.866667pt;}
.x39_c00241{left:467.733333pt;}
.xc2_c00241{left:469.200000pt;}
.x118_c00241{left:471.333333pt;}
.xb0_c00241{left:472.933333pt;}
.x5a_c00241{left:474.266667pt;}
.x6f_c00241{left:475.866667pt;}
.x88_c00241{left:478.000000pt;}
.x11d_c00241{left:479.066667pt;}
.xd_c00241{left:480.133333pt;}
.x1e_c00241{left:484.266667pt;}
.x106_c00241{left:486.800000pt;}
.x3a_c00241{left:487.866667pt;}
.xf1_c00241{left:488.800000pt;}
.x53_c00241{left:489.733333pt;}
.x93_c00241{left:491.466667pt;}
.x7a_c00241{left:493.866667pt;}
.x112_c00241{left:496.266667pt;}
.xa2_c00241{left:497.600000pt;}
.xaa_c00241{left:499.466667pt;}
.xdf_c00241{left:501.333333pt;}
.xb2_c00241{left:503.200000pt;}
.x70_c00241{left:506.933333pt;}
.x46_c00241{left:511.466667pt;}
.x11b_c00241{left:512.800000pt;}
.x3b_c00241{left:514.133333pt;}
.x5b_c00241{left:518.133333pt;}
.x94_c00241{left:519.333333pt;}
.x11e_c00241{left:522.533333pt;}
.x1f_c00241{left:524.266667pt;}
.xe_c00241{left:525.600000pt;}
.x89_c00241{left:527.333333pt;}
.xd8_c00241{left:528.400000pt;}
.x47_c00241{left:529.333333pt;}
.x28_c00241{left:531.333333pt;}
.xc3_c00241{left:533.200000pt;}
.x71_c00241{left:537.600000pt;}
.x65_c00241{left:539.200000pt;}
.x119_c00241{left:540.133333pt;}
.xb3_c00241{left:541.333333pt;}
.xd1_c00241{left:546.133333pt;}
.x3c_c00241{left:547.733333pt;}
.x54_c00241{left:551.466667pt;}
.x48_c00241{left:554.933333pt;}
.x29_c00241{left:557.866667pt;}
.xc4_c00241{left:560.400000pt;}
.x5c_c00241{left:563.600000pt;}
.xd2_c00241{left:565.333333pt;}
.x66_c00241{left:567.066667pt;}
.xb4_c00241{left:568.266667pt;}
.x55_c00241{left:569.733333pt;}
.x7b_c00241{left:571.333333pt;}
.xab_c00241{left:572.533333pt;}
.x11f_c00241{left:574.666667pt;}
.x2a_c00241{left:576.400000pt;}
.xf9_c00241{left:579.733333pt;}
.x5d_c00241{left:581.466667pt;}
.x117_c00241{left:584.000000pt;}
.xd9_c00241{left:585.066667pt;}
.xf_c00241{left:587.333333pt;}
.x101_c00241{left:588.533333pt;}
.x49_c00241{left:589.466667pt;}
.x67_c00241{left:592.933333pt;}
.x107_c00241{left:594.000000pt;}
.x12a_c00241{left:595.333333pt;}
.x72_c00241{left:597.733333pt;}
.xc5_c00241{left:598.800000pt;}
.x3d_c00241{left:600.533333pt;}
.xf6_c00241{left:602.266667pt;}
.xd3_c00241{left:605.333333pt;}
.x4a_c00241{left:607.333333pt;}
.x2b_c00241{left:608.400000pt;}
.x56_c00241{left:609.733333pt;}
.x10b_c00241{left:613.866667pt;}
.xa3_c00241{left:616.000000pt;}
.x95_c00241{left:616.933333pt;}
.x7c_c00241{left:618.666667pt;}
.xc6_c00241{left:621.866667pt;}
.xbb_c00241{left:623.066667pt;}
.xf2_c00241{left:625.200000pt;}
.xe4_c00241{left:627.066667pt;}
.x3e_c00241{left:628.000000pt;}
.x10c_c00241{left:629.200000pt;}
.xfa_c00241{left:635.066667pt;}
.xda_c00241{left:636.933333pt;}
.xa4_c00241{left:638.666667pt;}
.x113_c00241{left:640.266667pt;}
.x10d_c00241{left:641.333333pt;}
.x10_c00241{left:643.333333pt;}
.xac_c00241{left:644.800000pt;}
.x3f_c00241{left:646.933333pt;}
.x108_c00241{left:648.133333pt;}
.x68_c00241{left:651.866667pt;}
.x2c_c00241{left:652.933333pt;}
.xe5_c00241{left:654.266667pt;}
.x73_c00241{left:656.000000pt;}
.x5e_c00241{left:656.933333pt;}
.x2_c00241{left:658.933333pt;}
.x8a_c00241{left:660.533333pt;}
.x9d_c00241{left:661.733333pt;}
.xe0_c00241{left:663.600000pt;}
.xf3_c00241{left:667.066667pt;}
.x11a_c00241{left:669.066667pt;}
.x96_c00241{left:671.066667pt;}
.x4b_c00241{left:678.133333pt;}
}





/* 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_c00242 {
    display:none;
  }
  .loading-indicator_c00242.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00242 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_c00242 { 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_c00242" -> "#page-container .classname_c00242")
 */
.pf_c00242 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00242 { /* 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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00242 { /* 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_c00242 { /* 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_c00242 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00242 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00242 {overflow:visible;}
  }
}
.c_c00242 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00242 { /* 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_c00242:after { /* webkit #35443 */
  content: '';
}
.t_c00242:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00242 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 */
}
.__c00242 { /* 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_c00242 { /* info for Javascript */
  display:none;
}
.l_c00242 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00242 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00242 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00242: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_c00242 {
    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_c00242.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00242.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_c00242 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00242{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00242;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.000000;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;}
.m12_c00242{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m25_c00242{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m35_c00242{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m31_c00242{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m71_c00242{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m68_c00242{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00242{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00242{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m73_c00242{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00242{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m74_c00242{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m23_c00242{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m67_c00242{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3_c00242{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m72_c00242{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m33_c00242{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m38_c00242{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00242{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00242{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m29_c00242{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00242{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00242{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00242{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00242{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00242{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00242{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00242{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00242{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00242{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m64_c00242{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00242{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m60_c00242{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00242{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m37_c00242{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m50_c00242{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00242{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m70_c00242{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf_c00242{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10_c00242{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m59_c00242{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00242{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00242{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00242{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m45_c00242{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9_c00242{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m69_c00242{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00242{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00242{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m65_c00242{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00242{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m49_c00242{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m41_c00242{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m22_c00242{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00242{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00242{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);}
.m11_c00242{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00242{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m30_c00242{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m40_c00242{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m20_c00242{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00242{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m62_c00242{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m18_c00242{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m28_c00242{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m21_c00242{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00242{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00242{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00242{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00242{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00242{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m46_c00242{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m26_c00242{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m51_c00242{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m48_c00242{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m15_c00242{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00242{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00242{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00242{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m52_c00242{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00242{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4_c00242{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m13_c00242{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00242{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m32_c00242{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m54_c00242{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m14_c00242{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m57_c00242{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m19_c00242{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m39_c00242{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00242{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m17_c00242{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m16_c00242{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00242{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m34_c00242{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m63_c00242{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m47_c00242{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00242{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m44_c00242{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00242{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2_c00242{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m43_c00242{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m61_c00242{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00242{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m53_c00242{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m66_c00242{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m36_c00242{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.ls0_c00242{letter-spacing:0.000000px;}
.sc__c00242{text-shadow:none;}
.sc0_c00242{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__c00242{-webkit-text-stroke:0px transparent;}
.sc0_c00242{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00242{word-spacing:-6.000000px;}
.ws4_c00242{word-spacing:0.000000px;}
.ws2_c00242{word-spacing:13.579132px;}
.ws3_c00242{word-spacing:16.265230px;}
.ws0_c00242{word-spacing:20.335171px;}
.fc0_c00242{color:transparent;}
.fs0_c00242{font-size:54.000000px;}
.y0_c00242{bottom:0.000000px;}
.y15_c00242{bottom:602.250000px;}
.y14_c00242{bottom:629.250000px;}
.y13_c00242{bottom:649.050000px;}
.y12_c00242{bottom:670.350000px;}
.y11_c00242{bottom:689.850000px;}
.y10_c00242{bottom:709.650000px;}
.yf_c00242{bottom:729.450000px;}
.ye_c00242{bottom:749.550000px;}
.yd_c00242{bottom:769.350000px;}
.yc_c00242{bottom:789.150000px;}
.yb_c00242{bottom:809.250000px;}
.ya_c00242{bottom:829.050000px;}
.y9_c00242{bottom:849.000000px;}
.y8_c00242{bottom:869.100000px;}
.y7_c00242{bottom:889.650000px;}
.y6_c00242{bottom:909.750000px;}
.y5_c00242{bottom:929.550000px;}
.y4_c00242{bottom:949.650000px;}
.y3_c00242{bottom:969.450000px;}
.y2_c00242{bottom:1002.900000px;}
.y1_c00242{bottom:1040.700000px;}
.h2_c00242{height:54.000000px;}
.h0_c00242{height:1166.759949px;}
.h1_c00242{height:1167.000000px;}
.w0_c00242{width:918.720063px;}
.w1_c00242{width:918.750000px;}
.x0_c00242{left:0.000000px;}
.xad_c00242{left:143.250000px;}
.x17_c00242{left:144.600000px;}
.x1_c00242{left:146.550000px;}
.x18_c00242{left:161.850000px;}
.x99_c00242{left:164.250000px;}
.x6e_c00242{left:165.450000px;}
.x7d_c00242{left:166.500000px;}
.xae_c00242{left:171.300000px;}
.xb6_c00242{left:175.650000px;}
.x3_c00242{left:176.700000px;}
.x87_c00242{left:178.050000px;}
.x25_c00242{left:184.800000px;}
.x19_c00242{left:189.900000px;}
.x9a_c00242{left:192.000000px;}
.x4f_c00242{left:198.600000px;}
.x42_c00242{left:200.250000px;}
.x64_c00242{left:201.900000px;}
.x32_c00242{left:204.900000px;}
.x91_c00242{left:217.650000px;}
.x5b_c00242{left:220.500000px;}
.x33_c00242{left:224.700000px;}
.x4_c00242{left:226.050000px;}
.x6f_c00242{left:234.150000px;}
.x92_c00242{left:235.350000px;}
.xa1_c00242{left:239.550000px;}
.xa8_c00242{left:249.150000px;}
.x5_c00242{left:252.300000px;}
.x34_c00242{left:254.250000px;}
.x50_c00242{left:258.300000px;}
.x93_c00242{left:260.850000px;}
.x9b_c00242{left:262.200000px;}
.x26_c00242{left:264.300000px;}
.x43_c00242{left:267.150000px;}
.x1a_c00242{left:270.150000px;}
.x65_c00242{left:273.150000px;}
.xd_c00242{left:277.200000px;}
.xaf_c00242{left:284.400000px;}
.x70_c00242{left:285.600000px;}
.x44_c00242{left:288.750000px;}
.x88_c00242{left:292.200000px;}
.x35_c00242{left:297.450000px;}
.x66_c00242{left:301.950000px;}
.x5c_c00242{left:306.900000px;}
.x51_c00242{left:307.950000px;}
.x45_c00242{left:315.000000px;}
.x7e_c00242{left:319.350000px;}
.x9c_c00242{left:320.550000px;}
.x89_c00242{left:322.800000px;}
.x27_c00242{left:324.000000px;}
.x1b_c00242{left:325.200000px;}
.xa2_c00242{left:333.450000px;}
.x6_c00242{left:335.400000px;}
.x7f_c00242{left:338.850000px;}
.xbd_c00242{left:345.600000px;}
.x7_c00242{left:350.850000px;}
.xb7_c00242{left:354.300000px;}
.x46_c00242{left:358.200000px;}
.x36_c00242{left:360.750000px;}
.x71_c00242{left:368.100000px;}
.x80_c00242{left:369.750000px;}
.x1c_c00242{left:373.050000px;}
.x67_c00242{left:375.000000px;}
.x47_c00242{left:376.200000px;}
.x5d_c00242{left:377.850000px;}
.x28_c00242{left:379.800000px;}
.x94_c00242{left:382.200000px;}
.x8_c00242{left:384.300000px;}
.x72_c00242{left:389.700000px;}
.x5e_c00242{left:395.850000px;}
.x95_c00242{left:402.300000px;}
.x48_c00242{left:405.000000px;}
.x8a_c00242{left:410.250000px;}
.x37_c00242{left:412.950000px;}
.x5f_c00242{left:417.150000px;}
.x81_c00242{left:422.250000px;}
.xe_c00242{left:423.300000px;}
.x52_c00242{left:427.500000px;}
.xb0_c00242{left:432.000000px;}
.x73_c00242{left:433.650000px;}
.x29_c00242{left:434.850000px;}
.x9_c00242{left:439.050000px;}
.x9d_c00242{left:442.500000px;}
.x2_c00242{left:444.600000px;}
.x8b_c00242{left:450.150000px;}
.x38_c00242{left:451.800000px;}
.x74_c00242{left:456.000000px;}
.x1d_c00242{left:460.950000px;}
.xa3_c00242{left:463.500000px;}
.xf_c00242{left:465.750000px;}
.x96_c00242{left:468.150000px;}
.x82_c00242{left:470.850000px;}
.x39_c00242{left:471.900000px;}
.x68_c00242{left:475.800000px;}
.x49_c00242{left:486.000000px;}
.xb1_c00242{left:489.600000px;}
.x60_c00242{left:492.450000px;}
.x69_c00242{left:495.600000px;}
.x53_c00242{left:499.200000px;}
.x2a_c00242{left:501.150000px;}
.x10_c00242{left:502.800000px;}
.x1e_c00242{left:505.200000px;}
.xa9_c00242{left:511.950000px;}
.xa_c00242{left:513.900000px;}
.x75_c00242{left:515.400000px;}
.x4a_c00242{left:517.650000px;}
.x61_c00242{left:520.200000px;}
.x97_c00242{left:526.500000px;}
.x2b_c00242{left:529.650000px;}
.x11_c00242{left:533.100000px;}
.x8c_c00242{left:537.000000px;}
.x4b_c00242{left:546.150000px;}
.x76_c00242{left:547.800000px;}
.x98_c00242{left:549.150000px;}
.xb8_c00242{left:550.500000px;}
.x6a_c00242{left:552.900000px;}
.x54_c00242{left:555.750000px;}
.x8d_c00242{left:561.150000px;}
.xb_c00242{left:564.000000px;}
.x77_c00242{left:565.050000px;}
.x12_c00242{left:567.600000px;}
.xa4_c00242{left:570.750000px;}
.x3a_c00242{left:572.100000px;}
.x62_c00242{left:576.750000px;}
.x83_c00242{left:578.100000px;}
.x55_c00242{left:580.650000px;}
.xaa_c00242{left:583.500000px;}
.x3b_c00242{left:588.300000px;}
.x9e_c00242{left:593.700000px;}
.xb9_c00242{left:595.200000px;}
.x63_c00242{left:597.600000px;}
.x2c_c00242{left:601.950000px;}
.x1f_c00242{left:604.500000px;}
.x78_c00242{left:607.500000px;}
.xb2_c00242{left:613.050000px;}
.x6b_c00242{left:616.650000px;}
.x3c_c00242{left:619.200000px;}
.xc_c00242{left:621.600000px;}
.x13_c00242{left:624.450000px;}
.x2d_c00242{left:626.100000px;}
.x8e_c00242{left:628.050000px;}
.xb3_c00242{left:630.000000px;}
.x6c_c00242{left:631.350000px;}
.x84_c00242{left:632.400000px;}
.xa5_c00242{left:634.350000px;}
.x4c_c00242{left:636.150000px;}
.x79_c00242{left:638.400000px;}
.xba_c00242{left:640.500000px;}
.x56_c00242{left:644.700000px;}
.x20_c00242{left:650.850000px;}
.x3d_c00242{left:653.100000px;}
.xb4_c00242{left:655.500000px;}
.x2e_c00242{left:657.000000px;}
.x8f_c00242{left:659.400000px;}
.x57_c00242{left:666.600000px;}
.x7a_c00242{left:672.300000px;}
.x85_c00242{left:674.550000px;}
.x3e_c00242{left:678.600000px;}
.x21_c00242{left:684.000000px;}
.x2f_c00242{left:693.300000px;}
.x58_c00242{left:697.200000px;}
.xab_c00242{left:699.450000px;}
.xbb_c00242{left:702.450000px;}
.x4d_c00242{left:704.550000px;}
.x9f_c00242{left:706.800000px;}
.xb5_c00242{left:708.000000px;}
.x22_c00242{left:712.500000px;}
.x7b_c00242{left:716.550000px;}
.x6d_c00242{left:718.800000px;}
.x14_c00242{left:719.850000px;}
.x86_c00242{left:721.650000px;}
.xbc_c00242{left:723.300000px;}
.xa6_c00242{left:724.350000px;}
.x30_c00242{left:731.100000px;}
.x7c_c00242{left:736.350000px;}
.x3f_c00242{left:737.700000px;}
.x15_c00242{left:739.650000px;}
.xac_c00242{left:743.700000px;}
.x31_c00242{left:748.050000px;}
.xa0_c00242{left:753.600000px;}
.x59_c00242{left:754.800000px;}
.x40_c00242{left:760.050000px;}
.x90_c00242{left:765.300000px;}
.x4e_c00242{left:767.850000px;}
.x23_c00242{left:769.800000px;}
.x16_c00242{left:771.300000px;}
.x41_c00242{left:786.000000px;}
.x5a_c00242{left:787.500000px;}
.xa7_c00242{left:790.950000px;}
.x24_c00242{left:792.900000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls0_c00242{letter-spacing:0.000000pt;}
.ws1_c00242{word-spacing:-5.333333pt;}
.ws4_c00242{word-spacing:0.000000pt;}
.ws2_c00242{word-spacing:12.070340pt;}
.ws3_c00242{word-spacing:14.457982pt;}
.ws0_c00242{word-spacing:18.075707pt;}
.fs0_c00242{font-size:48.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y15_c00242{bottom:535.333333pt;}
.y14_c00242{bottom:559.333333pt;}
.y13_c00242{bottom:576.933333pt;}
.y12_c00242{bottom:595.866667pt;}
.y11_c00242{bottom:613.200000pt;}
.y10_c00242{bottom:630.800000pt;}
.yf_c00242{bottom:648.400000pt;}
.ye_c00242{bottom:666.266667pt;}
.yd_c00242{bottom:683.866667pt;}
.yc_c00242{bottom:701.466667pt;}
.yb_c00242{bottom:719.333333pt;}
.ya_c00242{bottom:736.933333pt;}
.y9_c00242{bottom:754.666667pt;}
.y8_c00242{bottom:772.533333pt;}
.y7_c00242{bottom:790.800000pt;}
.y6_c00242{bottom:808.666667pt;}
.y5_c00242{bottom:826.266667pt;}
.y4_c00242{bottom:844.133333pt;}
.y3_c00242{bottom:861.733333pt;}
.y2_c00242{bottom:891.466667pt;}
.y1_c00242{bottom:925.066667pt;}
.h2_c00242{height:48.000000pt;}
.h0_c00242{height:1037.119955pt;}
.h1_c00242{height:1037.333333pt;}
.w0_c00242{width:816.640056pt;}
.w1_c00242{width:816.666667pt;}
.x0_c00242{left:0.000000pt;}
.xad_c00242{left:127.333333pt;}
.x17_c00242{left:128.533333pt;}
.x1_c00242{left:130.266667pt;}
.x18_c00242{left:143.866667pt;}
.x99_c00242{left:146.000000pt;}
.x6e_c00242{left:147.066667pt;}
.x7d_c00242{left:148.000000pt;}
.xae_c00242{left:152.266667pt;}
.xb6_c00242{left:156.133333pt;}
.x3_c00242{left:157.066667pt;}
.x87_c00242{left:158.266667pt;}
.x25_c00242{left:164.266667pt;}
.x19_c00242{left:168.800000pt;}
.x9a_c00242{left:170.666667pt;}
.x4f_c00242{left:176.533333pt;}
.x42_c00242{left:178.000000pt;}
.x64_c00242{left:179.466667pt;}
.x32_c00242{left:182.133333pt;}
.x91_c00242{left:193.466667pt;}
.x5b_c00242{left:196.000000pt;}
.x33_c00242{left:199.733333pt;}
.x4_c00242{left:200.933333pt;}
.x6f_c00242{left:208.133333pt;}
.x92_c00242{left:209.200000pt;}
.xa1_c00242{left:212.933333pt;}
.xa8_c00242{left:221.466667pt;}
.x5_c00242{left:224.266667pt;}
.x34_c00242{left:226.000000pt;}
.x50_c00242{left:229.600000pt;}
.x93_c00242{left:231.866667pt;}
.x9b_c00242{left:233.066667pt;}
.x26_c00242{left:234.933333pt;}
.x43_c00242{left:237.466667pt;}
.x1a_c00242{left:240.133333pt;}
.x65_c00242{left:242.800000pt;}
.xd_c00242{left:246.400000pt;}
.xaf_c00242{left:252.800000pt;}
.x70_c00242{left:253.866667pt;}
.x44_c00242{left:256.666667pt;}
.x88_c00242{left:259.733333pt;}
.x35_c00242{left:264.400000pt;}
.x66_c00242{left:268.400000pt;}
.x5c_c00242{left:272.800000pt;}
.x51_c00242{left:273.733333pt;}
.x45_c00242{left:280.000000pt;}
.x7e_c00242{left:283.866667pt;}
.x9c_c00242{left:284.933333pt;}
.x89_c00242{left:286.933333pt;}
.x27_c00242{left:288.000000pt;}
.x1b_c00242{left:289.066667pt;}
.xa2_c00242{left:296.400000pt;}
.x6_c00242{left:298.133333pt;}
.x7f_c00242{left:301.200000pt;}
.xbd_c00242{left:307.200000pt;}
.x7_c00242{left:311.866667pt;}
.xb7_c00242{left:314.933333pt;}
.x46_c00242{left:318.400000pt;}
.x36_c00242{left:320.666667pt;}
.x71_c00242{left:327.200000pt;}
.x80_c00242{left:328.666667pt;}
.x1c_c00242{left:331.600000pt;}
.x67_c00242{left:333.333333pt;}
.x47_c00242{left:334.400000pt;}
.x5d_c00242{left:335.866667pt;}
.x28_c00242{left:337.600000pt;}
.x94_c00242{left:339.733333pt;}
.x8_c00242{left:341.600000pt;}
.x72_c00242{left:346.400000pt;}
.x5e_c00242{left:351.866667pt;}
.x95_c00242{left:357.600000pt;}
.x48_c00242{left:360.000000pt;}
.x8a_c00242{left:364.666667pt;}
.x37_c00242{left:367.066667pt;}
.x5f_c00242{left:370.800000pt;}
.x81_c00242{left:375.333333pt;}
.xe_c00242{left:376.266667pt;}
.x52_c00242{left:380.000000pt;}
.xb0_c00242{left:384.000000pt;}
.x73_c00242{left:385.466667pt;}
.x29_c00242{left:386.533333pt;}
.x9_c00242{left:390.266667pt;}
.x9d_c00242{left:393.333333pt;}
.x2_c00242{left:395.200000pt;}
.x8b_c00242{left:400.133333pt;}
.x38_c00242{left:401.600000pt;}
.x74_c00242{left:405.333333pt;}
.x1d_c00242{left:409.733333pt;}
.xa3_c00242{left:412.000000pt;}
.xf_c00242{left:414.000000pt;}
.x96_c00242{left:416.133333pt;}
.x82_c00242{left:418.533333pt;}
.x39_c00242{left:419.466667pt;}
.x68_c00242{left:422.933333pt;}
.x49_c00242{left:432.000000pt;}
.xb1_c00242{left:435.200000pt;}
.x60_c00242{left:437.733333pt;}
.x69_c00242{left:440.533333pt;}
.x53_c00242{left:443.733333pt;}
.x2a_c00242{left:445.466667pt;}
.x10_c00242{left:446.933333pt;}
.x1e_c00242{left:449.066667pt;}
.xa9_c00242{left:455.066667pt;}
.xa_c00242{left:456.800000pt;}
.x75_c00242{left:458.133333pt;}
.x4a_c00242{left:460.133333pt;}
.x61_c00242{left:462.400000pt;}
.x97_c00242{left:468.000000pt;}
.x2b_c00242{left:470.800000pt;}
.x11_c00242{left:473.866667pt;}
.x8c_c00242{left:477.333333pt;}
.x4b_c00242{left:485.466667pt;}
.x76_c00242{left:486.933333pt;}
.x98_c00242{left:488.133333pt;}
.xb8_c00242{left:489.333333pt;}
.x6a_c00242{left:491.466667pt;}
.x54_c00242{left:494.000000pt;}
.x8d_c00242{left:498.800000pt;}
.xb_c00242{left:501.333333pt;}
.x77_c00242{left:502.266667pt;}
.x12_c00242{left:504.533333pt;}
.xa4_c00242{left:507.333333pt;}
.x3a_c00242{left:508.533333pt;}
.x62_c00242{left:512.666667pt;}
.x83_c00242{left:513.866667pt;}
.x55_c00242{left:516.133333pt;}
.xaa_c00242{left:518.666667pt;}
.x3b_c00242{left:522.933333pt;}
.x9e_c00242{left:527.733333pt;}
.xb9_c00242{left:529.066667pt;}
.x63_c00242{left:531.200000pt;}
.x2c_c00242{left:535.066667pt;}
.x1f_c00242{left:537.333333pt;}
.x78_c00242{left:540.000000pt;}
.xb2_c00242{left:544.933333pt;}
.x6b_c00242{left:548.133333pt;}
.x3c_c00242{left:550.400000pt;}
.xc_c00242{left:552.533333pt;}
.x13_c00242{left:555.066667pt;}
.x2d_c00242{left:556.533333pt;}
.x8e_c00242{left:558.266667pt;}
.xb3_c00242{left:560.000000pt;}
.x6c_c00242{left:561.200000pt;}
.x84_c00242{left:562.133333pt;}
.xa5_c00242{left:563.866667pt;}
.x4c_c00242{left:565.466667pt;}
.x79_c00242{left:567.466667pt;}
.xba_c00242{left:569.333333pt;}
.x56_c00242{left:573.066667pt;}
.x20_c00242{left:578.533333pt;}
.x3d_c00242{left:580.533333pt;}
.xb4_c00242{left:582.666667pt;}
.x2e_c00242{left:584.000000pt;}
.x8f_c00242{left:586.133333pt;}
.x57_c00242{left:592.533333pt;}
.x7a_c00242{left:597.600000pt;}
.x85_c00242{left:599.600000pt;}
.x3e_c00242{left:603.200000pt;}
.x21_c00242{left:608.000000pt;}
.x2f_c00242{left:616.266667pt;}
.x58_c00242{left:619.733333pt;}
.xab_c00242{left:621.733333pt;}
.xbb_c00242{left:624.400000pt;}
.x4d_c00242{left:626.266667pt;}
.x9f_c00242{left:628.266667pt;}
.xb5_c00242{left:629.333333pt;}
.x22_c00242{left:633.333333pt;}
.x7b_c00242{left:636.933333pt;}
.x6d_c00242{left:638.933333pt;}
.x14_c00242{left:639.866667pt;}
.x86_c00242{left:641.466667pt;}
.xbc_c00242{left:642.933333pt;}
.xa6_c00242{left:643.866667pt;}
.x30_c00242{left:649.866667pt;}
.x7c_c00242{left:654.533333pt;}
.x3f_c00242{left:655.733333pt;}
.x15_c00242{left:657.466667pt;}
.xac_c00242{left:661.066667pt;}
.x31_c00242{left:664.933333pt;}
.xa0_c00242{left:669.866667pt;}
.x59_c00242{left:670.933333pt;}
.x40_c00242{left:675.600000pt;}
.x90_c00242{left:680.266667pt;}
.x4e_c00242{left:682.533333pt;}
.x23_c00242{left:684.266667pt;}
.x16_c00242{left:685.600000pt;}
.x41_c00242{left:698.666667pt;}
.x5a_c00242{left:700.000000pt;}
.xa7_c00242{left:703.066667pt;}
.x24_c00242{left:704.800000pt;}
}





/* 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_c00243 {
    display:none;
  }
  .loading-indicator_c00243.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00243 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_c00243 { 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_c00243" -> "#page-container .classname_c00243")
 */
.pf_c00243 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00243 { /* 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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00243 { /* 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_c00243 { /* 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_c00243 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00243 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00243 {overflow:visible;}
  }
}
.c_c00243 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00243 { /* 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_c00243:after { /* webkit #35443 */
  content: '';
}
.t_c00243:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00243 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 */
}
.__c00243 { /* 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_c00243 { /* info for Javascript */
  display:none;
}
.l_c00243 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00243 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00243 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00243: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_c00243 {
    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_c00243.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00243.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_c00243 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00243{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00243;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.000000;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;}
.m83_c00243{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00243{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00243{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m99_c00243{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00243{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m95_c00243{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m44_c00243{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m97_c00243{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m45_c00243{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00243{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m93_c00243{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m17_c00243{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m78_c00243{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00243{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m57_c00243{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00243{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m92_c00243{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m34_c00243{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m66_c00243{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00243{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m16_c00243{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00243{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m89_c00243{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m87_c00243{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00243{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m64_c00243{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00243{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00243{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m75_c00243{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m91_c00243{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m58_c00243{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00243{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00243{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m35_c00243{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m74_c00243{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m96_c00243{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m88_c00243{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00243{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m49_c00243{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00243{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m80_c00243{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00243{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00243{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00243{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m56_c00243{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00243{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m48_c00243{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00243{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00243{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00243{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00243{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m21_c00243{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m72_c00243{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00243{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00243{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00243{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00243{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m47_c00243{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00243{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m52_c00243{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00243{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m22_c00243{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00243{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00243{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00243{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00243{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00243{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00243{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00243{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m70_c00243{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m32_c00243{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00243{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m63_c00243{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00243{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00243{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m69_c00243{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m13_c00243{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m23_c00243{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m84_c00243{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m61_c00243{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00243{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00243{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m71_c00243{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00243{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00243{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00243{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00243{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00243{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m29_c00243{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00243{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00243{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m73_c00243{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m27_c00243{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m36_c00243{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m28_c00243{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00243{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00243{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m40_c00243{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m18_c00243{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00243{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m41_c00243{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m25_c00243{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m60_c00243{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m54_c00243{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m39_c00243{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m38_c00243{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00243{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m24_c00243{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m42_c00243{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m81_c00243{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m65_c00243{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00243{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00243{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m51_c00243{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00243{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00243{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00243{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00243{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00243{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00243{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m86_c00243{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00243{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m53_c00243{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00243{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m55_c00243{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00243{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m82_c00243{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00243{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m14_c00243{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m59_c00243{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m30_c00243{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00243{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m31_c00243{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m46_c00243{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m94_c00243{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m0_c00243{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m77_c00243{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00243{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m15_c00243{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m98_c00243{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00243{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m2_c00243{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00243{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00243{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md_c00243{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m50_c00243{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00243{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00243{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m68_c00243{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00243{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4_c00243{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m12_c00243{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.ma_c00243{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c00243{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mc_c00243{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.mf_c00243{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m9_c00243{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m1_c00243{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m10_c00243{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.mb_c00243{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m3_c00243{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00243{transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);}
.m6_c00243{transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);}
.me_c00243{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m67_c00243{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m7_c00243{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.v0_c00243{vertical-align:0.000000px;}
.ls0_c00243{letter-spacing:0.000000px;}
.sc__c00243{text-shadow:none;}
.sc0_c00243{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__c00243{-webkit-text-stroke:0px transparent;}
.sc0_c00243{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00243{word-spacing:-2.946429px;}
.ws4_c00243{word-spacing:0.000000px;}
.ws2_c00243{word-spacing:3.518519px;}
.ws0_c00243{word-spacing:6.527778px;}
.ws3_c00243{word-spacing:10.664062px;}
._0_c00243{width:37.232143px;}
.fc0_c00243{color:transparent;}
.fs1_c00243{font-size:42.000000px;}
.fs0_c00243{font-size:60.000000px;}
.y0_c00243{bottom:0.000000px;}
.y25_c00243{bottom:138.750000px;}
.y24_c00243{bottom:158.850000px;}
.y23_c00243{bottom:178.650000px;}
.y22_c00243{bottom:198.450000px;}
.y21_c00243{bottom:218.550000px;}
.y20_c00243{bottom:238.500000px;}
.y1f_c00243{bottom:258.600000px;}
.y1e_c00243{bottom:278.700000px;}
.y1d_c00243{bottom:298.500000px;}
.y1c_c00243{bottom:318.000000px;}
.y1b_c00243{bottom:338.100000px;}
.y1a_c00243{bottom:357.900000px;}
.y19_c00243{bottom:378.000000px;}
.y18_c00243{bottom:397.800000px;}
.y17_c00243{bottom:417.600000px;}
.y16_c00243{bottom:437.700000px;}
.y15_c00243{bottom:457.500000px;}
.y14_c00243{bottom:477.750000px;}
.y13_c00243{bottom:497.550000px;}
.y12_c00243{bottom:517.350000px;}
.y11_c00243{bottom:537.150000px;}
.y10_c00243{bottom:557.250000px;}
.yf_c00243{bottom:576.900000px;}
.ye_c00243{bottom:597.000000px;}
.yd_c00243{bottom:617.100000px;}
.yc_c00243{bottom:636.900000px;}
.yb_c00243{bottom:656.400000px;}
.ya_c00243{bottom:676.500000px;}
.y9_c00243{bottom:696.300000px;}
.y8_c00243{bottom:716.400000px;}
.y7_c00243{bottom:736.200000px;}
.y6_c00243{bottom:756.000000px;}
.y5_c00243{bottom:776.100000px;}
.y4_c00243{bottom:810.000000px;}
.y3_c00243{bottom:829.800000px;}
.y2_c00243{bottom:858.600000px;}
.y1_c00243{bottom:1040.400000px;}
.h3_c00243{height:42.000000px;}
.h2_c00243{height:60.000000px;}
.h0_c00243{height:1166.759949px;}
.h1_c00243{height:1167.000000px;}
.w0_c00243{width:918.720063px;}
.w1_c00243{width:918.750000px;}
.x0_c00243{left:0.000000px;}
.xc2_c00243{left:112.350000px;}
.x13_c00243{left:113.400000px;}
.xd8_c00243{left:134.250000px;}
.x87_c00243{left:144.750000px;}
.xc3_c00243{left:146.250000px;}
.xe7_c00243{left:147.900000px;}
.x53_c00243{left:150.900000px;}
.x4_c00243{left:154.050000px;}
.xdd_c00243{left:157.350000px;}
.x104_c00243{left:160.200000px;}
.xa6_c00243{left:163.200000px;}
.x47_c00243{left:165.000000px;}
.x64_c00243{left:168.000000px;}
.x1e_c00243{left:169.200000px;}
.xc9_c00243{left:170.400000px;}
.xb7_c00243{left:172.350000px;}
.xa0_c00243{left:173.400000px;}
.x95_c00243{left:175.200000px;}
.x39_c00243{left:176.850000px;}
.xca_c00243{left:181.950000px;}
.xff_c00243{left:183.750000px;}
.xe2_c00243{left:184.950000px;}
.x76_c00243{left:191.100000px;}
.x54_c00243{left:193.050000px;}
.x14_c00243{left:194.400000px;}
.x83_c00243{left:197.700000px;}
.xa1_c00243{left:201.150000px;}
.x107_c00243{left:202.350000px;}
.x2b_c00243{left:204.600000px;}
.x3a_c00243{left:210.750000px;}
.xbe_c00243{left:211.800000px;}
.x96_c00243{left:213.300000px;}
.x55_c00243{left:214.350000px;}
.xa7_c00243{left:217.500000px;}
.x2c_c00243{left:224.100000px;}
.x88_c00243{left:227.550000px;}
.x5_c00243{left:229.650000px;}
.x97_c00243{left:231.600000px;}
.xb2_c00243{left:232.800000px;}
.x5e_c00243{left:237.300000px;}
.x1f_c00243{left:238.350000px;}
.x56_c00243{left:239.850000px;}
.x48_c00243{left:243.150000px;}
.xfb_c00243{left:244.200000px;}
.x15_c00243{left:247.350000px;}
.xf7_c00243{left:250.500000px;}
.x98_c00243{left:252.450000px;}
.xe8_c00243{left:255.900000px;}
.x3b_c00243{left:257.250000px;}
.xb1_c00243{left:259.200000px;}
.x65_c00243{left:260.250000px;}
.x77_c00243{left:261.600000px;}
.x2d_c00243{left:263.400000px;}
.x20_c00243{left:268.200000px;}
.xa2_c00243{left:270.600000px;}
.xef_c00243{left:273.300000px;}
.xb8_c00243{left:276.150000px;}
.x84_c00243{left:278.250000px;}
.x49_c00243{left:279.450000px;}
.xe9_c00243{left:281.400000px;}
.xb3_c00243{left:283.950000px;}
.x89_c00243{left:286.950000px;}
.x16_c00243{left:288.750000px;}
.x6_c00243{left:291.600000px;}
.xa8_c00243{left:293.850000px;}
.x2e_c00243{left:298.350000px;}
.x57_c00243{left:300.750000px;}
.x7_c00243{left:303.150000px;}
.x78_c00243{left:305.550000px;}
.xf0_c00243{left:307.500000px;}
.x4a_c00243{left:309.750000px;}
.x3c_c00243{left:315.900000px;}
.xd2_c00243{left:318.300000px;}
.x21_c00243{left:319.350000px;}
.xcb_c00243{left:320.550000px;}
.x6e_c00243{left:322.350000px;}
.xea_c00243{left:324.600000px;}
.x8a_c00243{left:326.250000px;}
.x2f_c00243{left:328.650000px;}
.x66_c00243{left:330.150000px;}
.x99_c00243{left:332.700000px;}
.x17_c00243{left:334.500000px;}
.xf1_c00243{left:336.000000px;}
.x8_c00243{left:337.350000px;}
.xa9_c00243{left:340.950000px;}
.x79_c00243{left:342.600000px;}
.xc4_c00243{left:343.800000px;}
.x3d_c00243{left:345.750000px;}
.x9a_c00243{left:347.100000px;}
.x10_c00243{left:349.950000px;}
.x9_c00243{left:355.050000px;}
.xd9_c00243{left:359.250000px;}
.xaa_c00243{left:361.800000px;}
.xbf_c00243{left:363.750000px;}
.x8b_c00243{left:365.550000px;}
.xa3_c00243{left:367.500000px;}
.x18_c00243{left:368.700000px;}
.x22_c00243{left:372.600000px;}
.x7a_c00243{left:378.900000px;}
.x58_c00243{left:381.000000px;}
.xd3_c00243{left:382.050000px;}
.x30_c00243{left:384.150000px;}
.x3e_c00243{left:385.350000px;}
.x2_c00243{left:386.700000px;}
.x67_c00243{left:388.800000px;}
.xde_c00243{left:390.150000px;}
.x4b_c00243{left:392.550000px;}
.xf2_c00243{left:396.150000px;}
.x59_c00243{left:398.700000px;}
.x100_c00243{left:399.750000px;}
.x6f_c00243{left:402.750000px;}
.xd4_c00243{left:406.200000px;}
.x31_c00243{left:408.300000px;}
.x8c_c00243{left:409.500000px;}
.x19_c00243{left:411.600000px;}
.x5f_c00243{left:413.850000px;}
.x3f_c00243{left:416.250000px;}
.x108_c00243{left:417.450000px;}
.xb4_c00243{left:418.500000px;}
.x4c_c00243{left:421.050000px;}
.xdf_c00243{left:422.250000px;}
.x23_c00243{left:426.600000px;}
.x8d_c00243{left:429.000000px;}
.x11_c00243{left:432.750000px;}
.x5a_c00243{left:434.700000px;}
.x1_c00243{left:435.900000px;}
.xa4_c00243{left:439.500000px;}
.x8e_c00243{left:443.700000px;}
.xf8_c00243{left:444.900000px;}
.x24_c00243{left:446.400000px;}
.x7b_c00243{left:448.050000px;}
.x60_c00243{left:450.600000px;}
.x85_c00243{left:453.150000px;}
.xab_c00243{left:455.700000px;}
.xe0_c00243{left:457.950000px;}
.x32_c00243{left:459.450000px;}
.xda_c00243{left:461.850000px;}
.x70_c00243{left:463.650000px;}
.xeb_c00243{left:466.500000px;}
.x4d_c00243{left:469.650000px;}
.x3_c00243{left:471.000000px;}
.x68_c00243{left:474.000000px;}
.xe1_c00243{left:475.200000px;}
.xb5_c00243{left:477.150000px;}
.x9b_c00243{left:479.550000px;}
.x8f_c00243{left:484.050000px;}
.x109_c00243{left:486.150000px;}
.x25_c00243{left:489.300000px;}
.x86_c00243{left:490.650000px;}
.xa_c00243{left:493.350000px;}
.xac_c00243{left:494.550000px;}
.x40_c00243{left:498.000000px;}
.xdb_c00243{left:501.150000px;}
.x61_c00243{left:502.500000px;}
.x7c_c00243{left:505.950000px;}
.x33_c00243{left:509.550000px;}
.xb9_c00243{left:512.250000px;}
.x5b_c00243{left:516.450000px;}
.x90_c00243{left:519.000000px;}
.x12_c00243{left:523.050000px;}
.xe3_c00243{left:524.400000px;}
.xb_c00243{left:526.500000px;}
.x26_c00243{left:528.150000px;}
.x7d_c00243{left:529.650000px;}
.x69_c00243{left:531.600000px;}
.x71_c00243{left:533.100000px;}
.xad_c00243{left:534.450000px;}
.x1a_c00243{left:537.600000px;}
.x34_c00243{left:539.400000px;}
.xc0_c00243{left:541.200000px;}
.xc5_c00243{left:544.500000px;}
.xd5_c00243{left:545.700000px;}
.x101_c00243{left:549.450000px;}
.x4e_c00243{left:552.750000px;}
.xe4_c00243{left:554.700000px;}
.x7e_c00243{left:555.900000px;}
.xfc_c00243{left:557.250000px;}
.x41_c00243{left:558.900000px;}
.x72_c00243{left:561.600000px;}
.xc6_c00243{left:562.800000px;}
.x4f_c00243{left:563.850000px;}
.x27_c00243{left:565.650000px;}
.xdc_c00243{left:567.750000px;}
.xc_c00243{left:570.000000px;}
.x5c_c00243{left:572.550000px;}
.xcc_c00243{left:574.950000px;}
.xba_c00243{left:576.750000px;}
.x42_c00243{left:580.200000px;}
.xf9_c00243{left:582.150000px;}
.x6a_c00243{left:584.550000px;}
.xec_c00243{left:586.350000px;}
.x9c_c00243{left:587.550000px;}
.x91_c00243{left:589.500000px;}
.xf3_c00243{left:590.700000px;}
.x50_c00243{left:591.900000px;}
.xc1_c00243{left:592.950000px;}
.x73_c00243{left:597.300000px;}
.x7f_c00243{left:598.800000px;}
.x9d_c00243{left:605.250000px;}
.x43_c00243{left:606.900000px;}
.x35_c00243{left:611.400000px;}
.xcd_c00243{left:613.500000px;}
.x102_c00243{left:614.550000px;}
.xe5_c00243{left:616.950000px;}
.xd_c00243{left:618.900000px;}
.xa5_c00243{left:623.100000px;}
.x9e_c00243{left:625.350000px;}
.xed_c00243{left:627.750000px;}
.xae_c00243{left:629.100000px;}
.x6b_c00243{left:630.300000px;}
.xe_c00243{left:637.200000px;}
.x92_c00243{left:641.700000px;}
.xfa_c00243{left:646.350000px;}
.x80_c00243{left:647.400000px;}
.xce_c00243{left:649.200000px;}
.xd6_c00243{left:651.600000px;}
.x1b_c00243{left:656.400000px;}
.x93_c00243{left:661.800000px;}
.x9f_c00243{left:662.850000px;}
.x62_c00243{left:664.800000px;}
.x28_c00243{left:666.450000px;}
.x6c_c00243{left:670.950000px;}
.x74_c00243{left:674.400000px;}
.xf4_c00243{left:676.650000px;}
.xbb_c00243{left:679.350000px;}
.xcf_c00243{left:680.550000px;}
.xf_c00243{left:683.250000px;}
.x44_c00243{left:688.200000px;}
.x81_c00243{left:689.550000px;}
.xc7_c00243{left:691.350000px;}
.x51_c00243{left:692.700000px;}
.xfd_c00243{left:694.500000px;}
.x5d_c00243{left:696.000000px;}
.x75_c00243{left:698.550000px;}
.x36_c00243{left:700.350000px;}
.xbc_c00243{left:702.000000px;}
.xd0_c00243{left:706.050000px;}
.x45_c00243{left:708.000000px;}
.x82_c00243{left:709.650000px;}
.xee_c00243{left:711.600000px;}
.x103_c00243{left:712.800000px;}
.xf5_c00243{left:714.150000px;}
.x6d_c00243{left:717.150000px;}
.x29_c00243{left:719.850000px;}
.x37_c00243{left:721.650000px;}
.x10a_c00243{left:723.600000px;}
.xc8_c00243{left:724.800000px;}
.x1c_c00243{left:725.850000px;}
.xaf_c00243{left:730.200000px;}
.x105_c00243{left:732.600000px;}
.xf6_c00243{left:735.000000px;}
.xe6_c00243{left:736.500000px;}
.xd7_c00243{left:738.000000px;}
.xd1_c00243{left:740.250000px;}
.xbd_c00243{left:743.100000px;}
.xfe_c00243{left:745.650000px;}
.xb6_c00243{left:747.750000px;}
.x1d_c00243{left:749.550000px;}
.x38_c00243{left:750.750000px;}
.x52_c00243{left:752.100000px;}
.x46_c00243{left:758.700000px;}
.x94_c00243{left:759.750000px;}
.x2a_c00243{left:761.550000px;}
.xb0_c00243{left:768.750000px;}
.x63_c00243{left:769.950000px;}
.x106_c00243{left:776.550000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws1_c00243{word-spacing:-2.619048pt;}
.ws4_c00243{word-spacing:0.000000pt;}
.ws2_c00243{word-spacing:3.127572pt;}
.ws0_c00243{word-spacing:5.802469pt;}
.ws3_c00243{word-spacing:9.479167pt;}
._0_c00243{width:33.095238pt;}
.fs1_c00243{font-size:37.333333pt;}
.fs0_c00243{font-size:53.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y25_c00243{bottom:123.333333pt;}
.y24_c00243{bottom:141.200000pt;}
.y23_c00243{bottom:158.800000pt;}
.y22_c00243{bottom:176.400000pt;}
.y21_c00243{bottom:194.266667pt;}
.y20_c00243{bottom:212.000000pt;}
.y1f_c00243{bottom:229.866667pt;}
.y1e_c00243{bottom:247.733333pt;}
.y1d_c00243{bottom:265.333333pt;}
.y1c_c00243{bottom:282.666667pt;}
.y1b_c00243{bottom:300.533333pt;}
.y1a_c00243{bottom:318.133333pt;}
.y19_c00243{bottom:336.000000pt;}
.y18_c00243{bottom:353.600000pt;}
.y17_c00243{bottom:371.200000pt;}
.y16_c00243{bottom:389.066667pt;}
.y15_c00243{bottom:406.666667pt;}
.y14_c00243{bottom:424.666667pt;}
.y13_c00243{bottom:442.266667pt;}
.y12_c00243{bottom:459.866667pt;}
.y11_c00243{bottom:477.466667pt;}
.y10_c00243{bottom:495.333333pt;}
.yf_c00243{bottom:512.800000pt;}
.ye_c00243{bottom:530.666667pt;}
.yd_c00243{bottom:548.533333pt;}
.yc_c00243{bottom:566.133333pt;}
.yb_c00243{bottom:583.466667pt;}
.ya_c00243{bottom:601.333333pt;}
.y9_c00243{bottom:618.933333pt;}
.y8_c00243{bottom:636.800000pt;}
.y7_c00243{bottom:654.400000pt;}
.y6_c00243{bottom:672.000000pt;}
.y5_c00243{bottom:689.866667pt;}
.y4_c00243{bottom:720.000000pt;}
.y3_c00243{bottom:737.600000pt;}
.y2_c00243{bottom:763.200000pt;}
.y1_c00243{bottom:924.800000pt;}
.h3_c00243{height:37.333333pt;}
.h2_c00243{height:53.333333pt;}
.h0_c00243{height:1037.119955pt;}
.h1_c00243{height:1037.333333pt;}
.w0_c00243{width:816.640056pt;}
.w1_c00243{width:816.666667pt;}
.x0_c00243{left:0.000000pt;}
.xc2_c00243{left:99.866667pt;}
.x13_c00243{left:100.800000pt;}
.xd8_c00243{left:119.333333pt;}
.x87_c00243{left:128.666667pt;}
.xc3_c00243{left:130.000000pt;}
.xe7_c00243{left:131.466667pt;}
.x53_c00243{left:134.133333pt;}
.x4_c00243{left:136.933333pt;}
.xdd_c00243{left:139.866667pt;}
.x104_c00243{left:142.400000pt;}
.xa6_c00243{left:145.066667pt;}
.x47_c00243{left:146.666667pt;}
.x64_c00243{left:149.333333pt;}
.x1e_c00243{left:150.400000pt;}
.xc9_c00243{left:151.466667pt;}
.xb7_c00243{left:153.200000pt;}
.xa0_c00243{left:154.133333pt;}
.x95_c00243{left:155.733333pt;}
.x39_c00243{left:157.200000pt;}
.xca_c00243{left:161.733333pt;}
.xff_c00243{left:163.333333pt;}
.xe2_c00243{left:164.400000pt;}
.x76_c00243{left:169.866667pt;}
.x54_c00243{left:171.600000pt;}
.x14_c00243{left:172.800000pt;}
.x83_c00243{left:175.733333pt;}
.xa1_c00243{left:178.800000pt;}
.x107_c00243{left:179.866667pt;}
.x2b_c00243{left:181.866667pt;}
.x3a_c00243{left:187.333333pt;}
.xbe_c00243{left:188.266667pt;}
.x96_c00243{left:189.600000pt;}
.x55_c00243{left:190.533333pt;}
.xa7_c00243{left:193.333333pt;}
.x2c_c00243{left:199.200000pt;}
.x88_c00243{left:202.266667pt;}
.x5_c00243{left:204.133333pt;}
.x97_c00243{left:205.866667pt;}
.xb2_c00243{left:206.933333pt;}
.x5e_c00243{left:210.933333pt;}
.x1f_c00243{left:211.866667pt;}
.x56_c00243{left:213.200000pt;}
.x48_c00243{left:216.133333pt;}
.xfb_c00243{left:217.066667pt;}
.x15_c00243{left:219.866667pt;}
.xf7_c00243{left:222.666667pt;}
.x98_c00243{left:224.400000pt;}
.xe8_c00243{left:227.466667pt;}
.x3b_c00243{left:228.666667pt;}
.xb1_c00243{left:230.400000pt;}
.x65_c00243{left:231.333333pt;}
.x77_c00243{left:232.533333pt;}
.x2d_c00243{left:234.133333pt;}
.x20_c00243{left:238.400000pt;}
.xa2_c00243{left:240.533333pt;}
.xef_c00243{left:242.933333pt;}
.xb8_c00243{left:245.466667pt;}
.x84_c00243{left:247.333333pt;}
.x49_c00243{left:248.400000pt;}
.xe9_c00243{left:250.133333pt;}
.xb3_c00243{left:252.400000pt;}
.x89_c00243{left:255.066667pt;}
.x16_c00243{left:256.666667pt;}
.x6_c00243{left:259.200000pt;}
.xa8_c00243{left:261.200000pt;}
.x2e_c00243{left:265.200000pt;}
.x57_c00243{left:267.333333pt;}
.x7_c00243{left:269.466667pt;}
.x78_c00243{left:271.600000pt;}
.xf0_c00243{left:273.333333pt;}
.x4a_c00243{left:275.333333pt;}
.x3c_c00243{left:280.800000pt;}
.xd2_c00243{left:282.933333pt;}
.x21_c00243{left:283.866667pt;}
.xcb_c00243{left:284.933333pt;}
.x6e_c00243{left:286.533333pt;}
.xea_c00243{left:288.533333pt;}
.x8a_c00243{left:290.000000pt;}
.x2f_c00243{left:292.133333pt;}
.x66_c00243{left:293.466667pt;}
.x99_c00243{left:295.733333pt;}
.x17_c00243{left:297.333333pt;}
.xf1_c00243{left:298.666667pt;}
.x8_c00243{left:299.866667pt;}
.xa9_c00243{left:303.066667pt;}
.x79_c00243{left:304.533333pt;}
.xc4_c00243{left:305.600000pt;}
.x3d_c00243{left:307.333333pt;}
.x9a_c00243{left:308.533333pt;}
.x10_c00243{left:311.066667pt;}
.x9_c00243{left:315.600000pt;}
.xd9_c00243{left:319.333333pt;}
.xaa_c00243{left:321.600000pt;}
.xbf_c00243{left:323.333333pt;}
.x8b_c00243{left:324.933333pt;}
.xa3_c00243{left:326.666667pt;}
.x18_c00243{left:327.733333pt;}
.x22_c00243{left:331.200000pt;}
.x7a_c00243{left:336.800000pt;}
.x58_c00243{left:338.666667pt;}
.xd3_c00243{left:339.600000pt;}
.x30_c00243{left:341.466667pt;}
.x3e_c00243{left:342.533333pt;}
.x2_c00243{left:343.733333pt;}
.x67_c00243{left:345.600000pt;}
.xde_c00243{left:346.800000pt;}
.x4b_c00243{left:348.933333pt;}
.xf2_c00243{left:352.133333pt;}
.x59_c00243{left:354.400000pt;}
.x100_c00243{left:355.333333pt;}
.x6f_c00243{left:358.000000pt;}
.xd4_c00243{left:361.066667pt;}
.x31_c00243{left:362.933333pt;}
.x8c_c00243{left:364.000000pt;}
.x19_c00243{left:365.866667pt;}
.x5f_c00243{left:367.866667pt;}
.x3f_c00243{left:370.000000pt;}
.x108_c00243{left:371.066667pt;}
.xb4_c00243{left:372.000000pt;}
.x4c_c00243{left:374.266667pt;}
.xdf_c00243{left:375.333333pt;}
.x23_c00243{left:379.200000pt;}
.x8d_c00243{left:381.333333pt;}
.x11_c00243{left:384.666667pt;}
.x5a_c00243{left:386.400000pt;}
.x1_c00243{left:387.466667pt;}
.xa4_c00243{left:390.666667pt;}
.x8e_c00243{left:394.400000pt;}
.xf8_c00243{left:395.466667pt;}
.x24_c00243{left:396.800000pt;}
.x7b_c00243{left:398.266667pt;}
.x60_c00243{left:400.533333pt;}
.x85_c00243{left:402.800000pt;}
.xab_c00243{left:405.066667pt;}
.xe0_c00243{left:407.066667pt;}
.x32_c00243{left:408.400000pt;}
.xda_c00243{left:410.533333pt;}
.x70_c00243{left:412.133333pt;}
.xeb_c00243{left:414.666667pt;}
.x4d_c00243{left:417.466667pt;}
.x3_c00243{left:418.666667pt;}
.x68_c00243{left:421.333333pt;}
.xe1_c00243{left:422.400000pt;}
.xb5_c00243{left:424.133333pt;}
.x9b_c00243{left:426.266667pt;}
.x8f_c00243{left:430.266667pt;}
.x109_c00243{left:432.133333pt;}
.x25_c00243{left:434.933333pt;}
.x86_c00243{left:436.133333pt;}
.xa_c00243{left:438.533333pt;}
.xac_c00243{left:439.600000pt;}
.x40_c00243{left:442.666667pt;}
.xdb_c00243{left:445.466667pt;}
.x61_c00243{left:446.666667pt;}
.x7c_c00243{left:449.733333pt;}
.x33_c00243{left:452.933333pt;}
.xb9_c00243{left:455.333333pt;}
.x5b_c00243{left:459.066667pt;}
.x90_c00243{left:461.333333pt;}
.x12_c00243{left:464.933333pt;}
.xe3_c00243{left:466.133333pt;}
.xb_c00243{left:468.000000pt;}
.x26_c00243{left:469.466667pt;}
.x7d_c00243{left:470.800000pt;}
.x69_c00243{left:472.533333pt;}
.x71_c00243{left:473.866667pt;}
.xad_c00243{left:475.066667pt;}
.x1a_c00243{left:477.866667pt;}
.x34_c00243{left:479.466667pt;}
.xc0_c00243{left:481.066667pt;}
.xc5_c00243{left:484.000000pt;}
.xd5_c00243{left:485.066667pt;}
.x101_c00243{left:488.400000pt;}
.x4e_c00243{left:491.333333pt;}
.xe4_c00243{left:493.066667pt;}
.x7e_c00243{left:494.133333pt;}
.xfc_c00243{left:495.333333pt;}
.x41_c00243{left:496.800000pt;}
.x72_c00243{left:499.200000pt;}
.xc6_c00243{left:500.266667pt;}
.x4f_c00243{left:501.200000pt;}
.x27_c00243{left:502.800000pt;}
.xdc_c00243{left:504.666667pt;}
.xc_c00243{left:506.666667pt;}
.x5c_c00243{left:508.933333pt;}
.xcc_c00243{left:511.066667pt;}
.xba_c00243{left:512.666667pt;}
.x42_c00243{left:515.733333pt;}
.xf9_c00243{left:517.466667pt;}
.x6a_c00243{left:519.600000pt;}
.xec_c00243{left:521.200000pt;}
.x9c_c00243{left:522.266667pt;}
.x91_c00243{left:524.000000pt;}
.xf3_c00243{left:525.066667pt;}
.x50_c00243{left:526.133333pt;}
.xc1_c00243{left:527.066667pt;}
.x73_c00243{left:530.933333pt;}
.x7f_c00243{left:532.266667pt;}
.x9d_c00243{left:538.000000pt;}
.x43_c00243{left:539.466667pt;}
.x35_c00243{left:543.466667pt;}
.xcd_c00243{left:545.333333pt;}
.x102_c00243{left:546.266667pt;}
.xe5_c00243{left:548.400000pt;}
.xd_c00243{left:550.133333pt;}
.xa5_c00243{left:553.866667pt;}
.x9e_c00243{left:555.866667pt;}
.xed_c00243{left:558.000000pt;}
.xae_c00243{left:559.200000pt;}
.x6b_c00243{left:560.266667pt;}
.xe_c00243{left:566.400000pt;}
.x92_c00243{left:570.400000pt;}
.xfa_c00243{left:574.533333pt;}
.x80_c00243{left:575.466667pt;}
.xce_c00243{left:577.066667pt;}
.xd6_c00243{left:579.200000pt;}
.x1b_c00243{left:583.466667pt;}
.x93_c00243{left:588.266667pt;}
.x9f_c00243{left:589.200000pt;}
.x62_c00243{left:590.933333pt;}
.x28_c00243{left:592.400000pt;}
.x6c_c00243{left:596.400000pt;}
.x74_c00243{left:599.466667pt;}
.xf4_c00243{left:601.466667pt;}
.xbb_c00243{left:603.866667pt;}
.xcf_c00243{left:604.933333pt;}
.xf_c00243{left:607.333333pt;}
.x44_c00243{left:611.733333pt;}
.x81_c00243{left:612.933333pt;}
.xc7_c00243{left:614.533333pt;}
.x51_c00243{left:615.733333pt;}
.xfd_c00243{left:617.333333pt;}
.x5d_c00243{left:618.666667pt;}
.x75_c00243{left:620.933333pt;}
.x36_c00243{left:622.533333pt;}
.xbc_c00243{left:624.000000pt;}
.xd0_c00243{left:627.600000pt;}
.x45_c00243{left:629.333333pt;}
.x82_c00243{left:630.800000pt;}
.xee_c00243{left:632.533333pt;}
.x103_c00243{left:633.600000pt;}
.xf5_c00243{left:634.800000pt;}
.x6d_c00243{left:637.466667pt;}
.x29_c00243{left:639.866667pt;}
.x37_c00243{left:641.466667pt;}
.x10a_c00243{left:643.200000pt;}
.xc8_c00243{left:644.266667pt;}
.x1c_c00243{left:645.200000pt;}
.xaf_c00243{left:649.066667pt;}
.x105_c00243{left:651.200000pt;}
.xf6_c00243{left:653.333333pt;}
.xe6_c00243{left:654.666667pt;}
.xd7_c00243{left:656.000000pt;}
.xd1_c00243{left:658.000000pt;}
.xbd_c00243{left:660.533333pt;}
.xfe_c00243{left:662.800000pt;}
.xb6_c00243{left:664.666667pt;}
.x1d_c00243{left:666.266667pt;}
.x38_c00243{left:667.333333pt;}
.x52_c00243{left:668.533333pt;}
.x46_c00243{left:674.400000pt;}
.x94_c00243{left:675.333333pt;}
.x2a_c00243{left:676.933333pt;}
.xb0_c00243{left:683.333333pt;}
.x63_c00243{left:684.400000pt;}
.x106_c00243{left:690.266667pt;}
}





/* 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_c00244 {
    display:none;
  }
  .loading-indicator_c00244.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00244 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_c00244 { 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_c00244" -> "#page-container .classname_c00244")
 */
.pf_c00244 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00244 { /* 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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00244 { /* 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_c00244 { /* 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_c00244 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00244 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00244 {overflow:visible;}
  }
}
.c_c00244 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00244 { /* 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_c00244:after { /* webkit #35443 */
  content: '';
}
.t_c00244:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00244 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 */
}
.__c00244 { /* 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_c00244 { /* info for Javascript */
  display:none;
}
.l_c00244 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00244 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00244 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00244: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_c00244 {
    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_c00244.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00244.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_c00244 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00244{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00244;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.000000;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;}
.m22_c00244{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m98_c00244{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m7_c00244{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mae_c00244{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mad_c00244{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40_c00244{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00244{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m35_c00244{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00244{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00244{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3_c00244{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00244{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00244{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00244{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.me_c00244{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m64_c00244{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mac_c00244{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00244{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mb_c00244{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00244{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m49_c00244{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.mab_c00244{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m74_c00244{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00244{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m75_c00244{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00244{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mf_c00244{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.maa_c00244{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00244{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m86_c00244{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00244{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00244{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m82_c00244{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00244{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00244{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00244{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00244{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m67_c00244{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6_c00244{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m31_c00244{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00244{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m42_c00244{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m23_c00244{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m14_c00244{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m80_c00244{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m78_c00244{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m58_c00244{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00244{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00244{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m83_c00244{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00244{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m60_c00244{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00244{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m48_c00244{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00244{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00244{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00244{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00244{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2_c00244{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m41_c00244{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m81_c00244{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00244{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00244{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00244{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00244{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00244{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m63_c00244{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m18_c00244{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4_c00244{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00244{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m52_c00244{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m84_c00244{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m89_c00244{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00244{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m61_c00244{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m46_c00244{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m57_c00244{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00244{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00244{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m99_c00244{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13_c00244{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00244{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00244{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00244{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m11_c00244{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12_c00244{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m43_c00244{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m45_c00244{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m91_c00244{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00244{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m50_c00244{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m37_c00244{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8_c00244{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m24_c00244{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00244{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00244{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m10_c00244{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m47_c00244{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m16_c00244{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00244{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00244{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00244{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00244{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m38_c00244{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma_c00244{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m28_c00244{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m39_c00244{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00244{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00244{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9_c00244{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m72_c00244{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00244{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m51_c00244{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00244{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00244{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m76_c00244{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m19_c00244{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00244{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00244{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00244{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m33_c00244{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m26_c00244{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m32_c00244{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00244{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m55_c00244{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m44_c00244{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25_c00244{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00244{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00244{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m77_c00244{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m20_c00244{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00244{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);}
.m6f_c00244{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00244{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m27_c00244{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m94_c00244{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00244{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m21_c00244{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00244{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mc_c00244{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m68_c00244{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m71_c00244{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00244{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m93_c00244{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00244{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00244{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00244{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m92_c00244{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m85_c00244{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m30_c00244{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m53_c00244{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m69_c00244{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00244{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m54_c00244{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m88_c00244{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.md_c00244{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00244{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m56_c00244{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m66_c00244{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5_c00244{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m73_c00244{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m97_c00244{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m0_c00244{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m65_c00244{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00244{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m87_c00244{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m62_c00244{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m96_c00244{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1_c00244{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00244{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00244{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00244{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m29_c00244{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00244{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00244{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00244{vertical-align:0.000000px;}
.ls0_c00244{letter-spacing:0.000000px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{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__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00244{word-spacing:-11.527778px;}
.ws6_c00244{word-spacing:-9.772727px;}
.ws7_c00244{word-spacing:-6.944444px;}
.ws1_c00244{word-spacing:-4.419643px;}
.wsb_c00244{word-spacing:0.000000px;}
.ws8_c00244{word-spacing:2.109375px;}
.ws4_c00244{word-spacing:3.472222px;}
.ws0_c00244{word-spacing:6.944444px;}
.ws9_c00244{word-spacing:9.285714px;}
.wsa_c00244{word-spacing:10.000000px;}
.ws3_c00244{word-spacing:11.666667px;}
.ws2_c00244{word-spacing:19.259259px;}
.fc0_c00244{color:transparent;}
.fs0_c00244{font-size:60.000000px;}
.y0_c00244{bottom:0.000000px;}
.y2c_c00244{bottom:150.150000px;}
.y2b_c00244{bottom:165.900000px;}
.y2a_c00244{bottom:210.600000px;}
.y29_c00244{bottom:230.400000px;}
.y28_c00244{bottom:250.200000px;}
.y27_c00244{bottom:270.300000px;}
.y26_c00244{bottom:289.950000px;}
.y25_c00244{bottom:310.800000px;}
.y24_c00244{bottom:330.300000px;}
.y23_c00244{bottom:350.400000px;}
.y22_c00244{bottom:370.500000px;}
.y21_c00244{bottom:390.300000px;}
.y20_c00244{bottom:410.400000px;}
.y1f_c00244{bottom:430.200000px;}
.y1e_c00244{bottom:450.000000px;}
.y1d_c00244{bottom:469.950000px;}
.y1c_c00244{bottom:489.750000px;}
.y1b_c00244{bottom:509.850000px;}
.y1a_c00244{bottom:529.650000px;}
.y19_c00244{bottom:549.750000px;}
.y18_c00244{bottom:569.550000px;}
.y17_c00244{bottom:589.350000px;}
.y16_c00244{bottom:609.150000px;}
.y15_c00244{bottom:628.950000px;}
.y14_c00244{bottom:648.450000px;}
.y13_c00244{bottom:669.000000px;}
.y12_c00244{bottom:688.800000px;}
.y11_c00244{bottom:708.900000px;}
.y10_c00244{bottom:729.000000px;}
.yf_c00244{bottom:748.800000px;}
.ye_c00244{bottom:768.600000px;}
.yd_c00244{bottom:788.700000px;}
.yc_c00244{bottom:809.100000px;}
.yb_c00244{bottom:829.200000px;}
.ya_c00244{bottom:848.250000px;}
.y9_c00244{bottom:868.350000px;}
.y8_c00244{bottom:888.150000px;}
.y7_c00244{bottom:907.950000px;}
.y6_c00244{bottom:928.050000px;}
.y5_c00244{bottom:948.600000px;}
.y4_c00244{bottom:967.200000px;}
.y3_c00244{bottom:988.500000px;}
.y2_c00244{bottom:1008.300000px;}
.y1_c00244{bottom:1046.550000px;}
.h2_c00244{height:60.000000px;}
.h0_c00244{height:1166.759949px;}
.h1_c00244{height:1167.000000px;}
.w0_c00244{width:918.720063px;}
.w1_c00244{width:918.750000px;}
.x0_c00244{left:0.000000px;}
.x47_c00244{left:136.800000px;}
.x3_c00244{left:138.300000px;}
.x1_c00244{left:139.650000px;}
.x94_c00244{left:155.700000px;}
.x1e_c00244{left:157.200000px;}
.x127_c00244{left:159.900000px;}
.x106_c00244{left:160.950000px;}
.xd1_c00244{left:162.450000px;}
.x39_c00244{left:166.500000px;}
.x53_c00244{left:167.700000px;}
.x1f_c00244{left:169.500000px;}
.xb6_c00244{left:171.150000px;}
.x6d_c00244{left:172.650000px;}
.xb0_c00244{left:173.850000px;}
.xd7_c00244{left:175.200000px;}
.xc8_c00244{left:178.050000px;}
.xdf_c00244{left:179.700000px;}
.x12_c00244{left:181.050000px;}
.xf4_c00244{left:183.300000px;}
.x107_c00244{left:184.650000px;}
.x3a_c00244{left:186.600000px;}
.x8a_c00244{left:188.100000px;}
.x4_c00244{left:193.050000px;}
.x20_c00244{left:195.750000px;}
.xb7_c00244{left:197.100000px;}
.xbb_c00244{left:198.750000px;}
.xd2_c00244{left:200.550000px;}
.xa1_c00244{left:202.050000px;}
.x118_c00244{left:203.100000px;}
.xa9_c00244{left:204.750000px;}
.x13_c00244{left:209.100000px;}
.x5e_c00244{left:210.450000px;}
.xd8_c00244{left:213.300000px;}
.xc3_c00244{left:214.950000px;}
.x83_c00244{left:216.300000px;}
.x128_c00244{left:217.500000px;}
.x2e_c00244{left:219.600000px;}
.x101_c00244{left:220.800000px;}
.x95_c00244{left:224.100000px;}
.x48_c00244{left:226.050000px;}
.x5_c00244{left:227.550000px;}
.x5f_c00244{left:229.500000px;}
.x8b_c00244{left:230.550000px;}
.xec_c00244{left:231.900000px;}
.xa2_c00244{left:233.400000px;}
.x119_c00244{left:236.250000px;}
.xc9_c00244{left:237.450000px;}
.xfb_c00244{left:239.250000px;}
.x3b_c00244{left:240.900000px;}
.x6_c00244{left:242.250000px;}
.x54_c00244{left:244.800000px;}
.xbc_c00244{left:245.850000px;}
.x60_c00244{left:247.800000px;}
.x8c_c00244{left:250.050000px;}
.x7b_c00244{left:256.800000px;}
.xe0_c00244{left:257.850000px;}
.x3c_c00244{left:261.000000px;}
.x21_c00244{left:263.100000px;}
.x14_c00244{left:264.150000px;}
.x12b_c00244{left:265.650000px;}
.xe7_c00244{left:266.850000px;}
.xd9_c00244{left:274.500000px;}
.x61_c00244{left:276.600000px;}
.x10a_c00244{left:277.800000px;}
.x78_c00244{left:279.300000px;}
.x7_c00244{left:283.650000px;}
.xb8_c00244{left:284.700000px;}
.xe8_c00244{left:286.650000px;}
.x96_c00244{left:288.150000px;}
.x55_c00244{left:291.900000px;}
.xf5_c00244{left:293.400000px;}
.x3d_c00244{left:298.800000px;}
.x62_c00244{left:300.000000px;}
.x49_c00244{left:305.250000px;}
.x11a_c00244{left:306.450000px;}
.xd3_c00244{left:308.550000px;}
.x8_c00244{left:310.950000px;}
.xda_c00244{left:312.600000px;}
.x6e_c00244{left:314.100000px;}
.xca_c00244{left:316.200000px;}
.x8d_c00244{left:318.150000px;}
.x79_c00244{left:319.200000px;}
.xbd_c00244{left:321.900000px;}
.x97_c00244{left:323.400000px;}
.xdb_c00244{left:326.250000px;}
.x129_c00244{left:328.650000px;}
.xaa_c00244{left:330.000000px;}
.x6f_c00244{left:333.150000px;}
.x113_c00244{left:334.350000px;}
.x3e_c00244{left:336.300000px;}
.x124_c00244{left:337.650000px;}
.xa3_c00244{left:339.600000px;}
.x4a_c00244{left:340.950000px;}
.x11f_c00244{left:342.600000px;}
.x9_c00244{left:344.400000px;}
.xab_c00244{left:345.900000px;}
.x11b_c00244{left:347.250000px;}
.xbe_c00244{left:351.150000px;}
.x98_c00244{left:352.950000px;}
.x2f_c00244{left:354.300000px;}
.xdc_c00244{left:355.350000px;}
.x22_c00244{left:356.400000px;}
.x15_c00244{left:358.800000px;}
.xf6_c00244{left:360.600000px;}
.xd4_c00244{left:362.850000px;}
.x56_c00244{left:364.950000px;}
.x63_c00244{left:367.200000px;}
.x120_c00244{left:368.850000px;}
.x30_c00244{left:371.550000px;}
.xe9_c00244{left:373.350000px;}
.xa4_c00244{left:374.550000px;}
.x16_c00244{left:376.800000px;}
.xcb_c00244{left:378.900000px;}
.xac_c00244{left:381.150000px;}
.x64_c00244{left:382.650000px;}
.xc4_c00244{left:384.900000px;}
.x31_c00244{left:386.250000px;}
.x8e_c00244{left:388.350000px;}
.xf7_c00244{left:390.900000px;}
.xbf_c00244{left:392.250000px;}
.x84_c00244{left:393.450000px;}
.x7c_c00244{left:395.700000px;}
.x4b_c00244{left:397.800000px;}
.x125_c00244{left:402.750000px;}
.x99_c00244{left:404.850000px;}
.x10b_c00244{left:408.450000px;}
.xb1_c00244{left:409.650000px;}
.xed_c00244{left:411.450000px;}
.x32_c00244{left:413.250000px;}
.x23_c00244{left:414.600000px;}
.x65_c00244{left:418.950000px;}
.x7a_c00244{left:421.350000px;}
.xa_c00244{left:423.300000px;}
.x111_c00244{left:424.650000px;}
.x3f_c00244{left:427.350000px;}
.x102_c00244{left:430.500000px;}
.xcc_c00244{left:432.900000px;}
.x85_c00244{left:435.150000px;}
.x2_c00244{left:436.650000px;}
.xb9_c00244{left:439.800000px;}
.xee_c00244{left:446.400000px;}
.xea_c00244{left:447.750000px;}
.x24_c00244{left:452.700000px;}
.x121_c00244{left:456.750000px;}
.x11c_c00244{left:457.800000px;}
.x66_c00244{left:459.300000px;}
.x7d_c00244{left:460.500000px;}
.xa5_c00244{left:463.500000px;}
.x114_c00244{left:465.750000px;}
.x17_c00244{left:467.850000px;}
.x33_c00244{left:472.950000px;}
.x4c_c00244{left:475.950000px;}
.x70_c00244{left:477.150000px;}
.x9a_c00244{left:480.150000px;}
.x40_c00244{left:482.700000px;}
.xb_c00244{left:484.500000px;}
.x8f_c00244{left:486.600000px;}
.x18_c00244{left:487.950000px;}
.xc0_c00244{left:490.500000px;}
.xa6_c00244{left:492.300000px;}
.xf8_c00244{left:494.250000px;}
.xeb_c00244{left:495.600000px;}
.xad_c00244{left:498.450000px;}
.x71_c00244{left:499.800000px;}
.x7e_c00244{left:501.600000px;}
.xfc_c00244{left:502.950000px;}
.x57_c00244{left:506.100000px;}
.xdd_c00244{left:507.300000px;}
.xc1_c00244{left:508.500000px;}
.x19_c00244{left:511.050000px;}
.xcd_c00244{left:513.150000px;}
.xe5_c00244{left:515.550000px;}
.x10c_c00244{left:516.900000px;}
.x25_c00244{left:518.250000px;}
.x9b_c00244{left:520.500000px;}
.x103_c00244{left:522.300000px;}
.x90_c00244{left:525.900000px;}
.xc5_c00244{left:527.700000px;}
.x26_c00244{left:529.350000px;}
.x72_c00244{left:530.400000px;}
.x41_c00244{left:536.700000px;}
.xe1_c00244{left:538.650000px;}
.x10d_c00244{left:540.300000px;}
.x115_c00244{left:541.350000px;}
.x58_c00244{left:542.400000px;}
.x34_c00244{left:543.900000px;}
.x9c_c00244{left:547.800000px;}
.x67_c00244{left:549.600000px;}
.x27_c00244{left:550.950000px;}
.x4d_c00244{left:554.850000px;}
.xb2_c00244{left:556.650000px;}
.x91_c00244{left:561.900000px;}
.x59_c00244{left:562.950000px;}
.xde_c00244{left:565.200000px;}
.x104_c00244{left:569.100000px;}
.xd5_c00244{left:570.600000px;}
.xba_c00244{left:572.850000px;}
.x4e_c00244{left:574.650000px;}
.xef_c00244{left:578.100000px;}
.x86_c00244{left:581.550000px;}
.xc6_c00244{left:582.750000px;}
.xae_c00244{left:585.600000px;}
.x28_c00244{left:586.950000px;}
.xfd_c00244{left:588.600000px;}
.x7f_c00244{left:590.400000px;}
.x5a_c00244{left:593.850000px;}
.x1a_c00244{left:596.700000px;}
.xc_c00244{left:599.400000px;}
.xb3_c00244{left:603.450000px;}
.x4f_c00244{left:604.500000px;}
.x29_c00244{left:609.300000px;}
.x68_c00244{left:610.800000px;}
.xf0_c00244{left:613.050000px;}
.x80_c00244{left:614.100000px;}
.x92_c00244{left:616.650000px;}
.x35_c00244{left:618.750000px;}
.x42_c00244{left:621.900000px;}
.x50_c00244{left:624.300000px;}
.x10e_c00244{left:626.400000px;}
.x73_c00244{left:630.450000px;}
.x9d_c00244{left:632.100000px;}
.x1b_c00244{left:633.750000px;}
.x116_c00244{left:635.700000px;}
.xaf_c00244{left:636.750000px;}
.xd_c00244{left:637.950000px;}
.x69_c00244{left:639.300000px;}
.xd6_c00244{left:640.350000px;}
.x43_c00244{left:644.550000px;}
.xe2_c00244{left:648.450000px;}
.xce_c00244{left:650.700000px;}
.x51_c00244{left:652.800000px;}
.x122_c00244{left:656.400000px;}
.x5b_c00244{left:657.600000px;}
.x11d_c00244{left:659.100000px;}
.x74_c00244{left:661.050000px;}
.x36_c00244{left:663.000000px;}
.x10f_c00244{left:664.500000px;}
.xb4_c00244{left:666.450000px;}
.x2a_c00244{left:667.650000px;}
.xcf_c00244{left:668.700000px;}
.xe_c00244{left:670.650000px;}
.x1c_c00244{left:673.050000px;}
.x87_c00244{left:675.150000px;}
.x5c_c00244{left:677.700000px;}
.xf9_c00244{left:679.050000px;}
.xe3_c00244{left:680.100000px;}
.xf1_c00244{left:682.950000px;}
.x44_c00244{left:685.200000px;}
.x105_c00244{left:686.550000px;}
.x75_c00244{left:688.350000px;}
.x6a_c00244{left:689.400000px;}
.x108_c00244{left:692.100000px;}
.x123_c00244{left:693.450000px;}
.xc2_c00244{left:695.700000px;}
.x11e_c00244{left:696.900000px;}
.xfe_c00244{left:700.200000px;}
.x81_c00244{left:702.000000px;}
.x2b_c00244{left:704.700000px;}
.x52_c00244{left:707.100000px;}
.x117_c00244{left:708.150000px;}
.x109_c00244{left:709.350000px;}
.x9e_c00244{left:710.850000px;}
.x37_c00244{left:714.450000px;}
.x88_c00244{left:715.500000px;}
.x6b_c00244{left:717.900000px;}
.xf_c00244{left:719.550000px;}
.xb5_c00244{left:721.950000px;}
.xf2_c00244{left:724.350000px;}
.x45_c00244{left:725.850000px;}
.x1d_c00244{left:727.050000px;}
.x76_c00244{left:729.000000px;}
.x2c_c00244{left:732.000000px;}
.xff_c00244{left:733.350000px;}
.x112_c00244{left:736.350000px;}
.x110_c00244{left:738.900000px;}
.xa7_c00244{left:739.950000px;}
.x6c_c00244{left:743.850000px;}
.x38_c00244{left:745.800000px;}
.x82_c00244{left:753.900000px;}
.x12a_c00244{left:755.700000px;}
.x10_c00244{left:757.050000px;}
.x77_c00244{left:760.650000px;}
.x5d_c00244{left:764.100000px;}
.x9f_c00244{left:766.650000px;}
.xa8_c00244{left:768.750000px;}
.x2d_c00244{left:770.100000px;}
.xe4_c00244{left:773.700000px;}
.xe6_c00244{left:775.950000px;}
.x11_c00244{left:777.150000px;}
.x126_c00244{left:778.200000px;}
.xfa_c00244{left:779.250000px;}
.x93_c00244{left:783.600000px;}
.x89_c00244{left:785.100000px;}
.xa0_c00244{left:786.750000px;}
.xd0_c00244{left:787.800000px;}
.x46_c00244{left:789.900000px;}
.x100_c00244{left:792.000000px;}
.xc7_c00244{left:795.000000px;}
.xf3_c00244{left:796.050000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws5_c00244{word-spacing:-10.246914pt;}
.ws6_c00244{word-spacing:-8.686869pt;}
.ws7_c00244{word-spacing:-6.172840pt;}
.ws1_c00244{word-spacing:-3.928571pt;}
.wsb_c00244{word-spacing:0.000000pt;}
.ws8_c00244{word-spacing:1.875000pt;}
.ws4_c00244{word-spacing:3.086420pt;}
.ws0_c00244{word-spacing:6.172840pt;}
.ws9_c00244{word-spacing:8.253968pt;}
.wsa_c00244{word-spacing:8.888889pt;}
.ws3_c00244{word-spacing:10.370370pt;}
.ws2_c00244{word-spacing:17.119342pt;}
.fs0_c00244{font-size:53.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y2c_c00244{bottom:133.466667pt;}
.y2b_c00244{bottom:147.466667pt;}
.y2a_c00244{bottom:187.200000pt;}
.y29_c00244{bottom:204.800000pt;}
.y28_c00244{bottom:222.400000pt;}
.y27_c00244{bottom:240.266667pt;}
.y26_c00244{bottom:257.733333pt;}
.y25_c00244{bottom:276.266667pt;}
.y24_c00244{bottom:293.600000pt;}
.y23_c00244{bottom:311.466667pt;}
.y22_c00244{bottom:329.333333pt;}
.y21_c00244{bottom:346.933333pt;}
.y20_c00244{bottom:364.800000pt;}
.y1f_c00244{bottom:382.400000pt;}
.y1e_c00244{bottom:400.000000pt;}
.y1d_c00244{bottom:417.733333pt;}
.y1c_c00244{bottom:435.333333pt;}
.y1b_c00244{bottom:453.200000pt;}
.y1a_c00244{bottom:470.800000pt;}
.y19_c00244{bottom:488.666667pt;}
.y18_c00244{bottom:506.266667pt;}
.y17_c00244{bottom:523.866667pt;}
.y16_c00244{bottom:541.466667pt;}
.y15_c00244{bottom:559.066667pt;}
.y14_c00244{bottom:576.400000pt;}
.y13_c00244{bottom:594.666667pt;}
.y12_c00244{bottom:612.266667pt;}
.y11_c00244{bottom:630.133333pt;}
.y10_c00244{bottom:648.000000pt;}
.yf_c00244{bottom:665.600000pt;}
.ye_c00244{bottom:683.200000pt;}
.yd_c00244{bottom:701.066667pt;}
.yc_c00244{bottom:719.200000pt;}
.yb_c00244{bottom:737.066667pt;}
.ya_c00244{bottom:754.000000pt;}
.y9_c00244{bottom:771.866667pt;}
.y8_c00244{bottom:789.466667pt;}
.y7_c00244{bottom:807.066667pt;}
.y6_c00244{bottom:824.933333pt;}
.y5_c00244{bottom:843.200000pt;}
.y4_c00244{bottom:859.733333pt;}
.y3_c00244{bottom:878.666667pt;}
.y2_c00244{bottom:896.266667pt;}
.y1_c00244{bottom:930.266667pt;}
.h2_c00244{height:53.333333pt;}
.h0_c00244{height:1037.119955pt;}
.h1_c00244{height:1037.333333pt;}
.w0_c00244{width:816.640056pt;}
.w1_c00244{width:816.666667pt;}
.x0_c00244{left:0.000000pt;}
.x47_c00244{left:121.600000pt;}
.x3_c00244{left:122.933333pt;}
.x1_c00244{left:124.133333pt;}
.x94_c00244{left:138.400000pt;}
.x1e_c00244{left:139.733333pt;}
.x127_c00244{left:142.133333pt;}
.x106_c00244{left:143.066667pt;}
.xd1_c00244{left:144.400000pt;}
.x39_c00244{left:148.000000pt;}
.x53_c00244{left:149.066667pt;}
.x1f_c00244{left:150.666667pt;}
.xb6_c00244{left:152.133333pt;}
.x6d_c00244{left:153.466667pt;}
.xb0_c00244{left:154.533333pt;}
.xd7_c00244{left:155.733333pt;}
.xc8_c00244{left:158.266667pt;}
.xdf_c00244{left:159.733333pt;}
.x12_c00244{left:160.933333pt;}
.xf4_c00244{left:162.933333pt;}
.x107_c00244{left:164.133333pt;}
.x3a_c00244{left:165.866667pt;}
.x8a_c00244{left:167.200000pt;}
.x4_c00244{left:171.600000pt;}
.x20_c00244{left:174.000000pt;}
.xb7_c00244{left:175.200000pt;}
.xbb_c00244{left:176.666667pt;}
.xd2_c00244{left:178.266667pt;}
.xa1_c00244{left:179.600000pt;}
.x118_c00244{left:180.533333pt;}
.xa9_c00244{left:182.000000pt;}
.x13_c00244{left:185.866667pt;}
.x5e_c00244{left:187.066667pt;}
.xd8_c00244{left:189.600000pt;}
.xc3_c00244{left:191.066667pt;}
.x83_c00244{left:192.266667pt;}
.x128_c00244{left:193.333333pt;}
.x2e_c00244{left:195.200000pt;}
.x101_c00244{left:196.266667pt;}
.x95_c00244{left:199.200000pt;}
.x48_c00244{left:200.933333pt;}
.x5_c00244{left:202.266667pt;}
.x5f_c00244{left:204.000000pt;}
.x8b_c00244{left:204.933333pt;}
.xec_c00244{left:206.133333pt;}
.xa2_c00244{left:207.466667pt;}
.x119_c00244{left:210.000000pt;}
.xc9_c00244{left:211.066667pt;}
.xfb_c00244{left:212.666667pt;}
.x3b_c00244{left:214.133333pt;}
.x6_c00244{left:215.333333pt;}
.x54_c00244{left:217.600000pt;}
.xbc_c00244{left:218.533333pt;}
.x60_c00244{left:220.266667pt;}
.x8c_c00244{left:222.266667pt;}
.x7b_c00244{left:228.266667pt;}
.xe0_c00244{left:229.200000pt;}
.x3c_c00244{left:232.000000pt;}
.x21_c00244{left:233.866667pt;}
.x14_c00244{left:234.800000pt;}
.x12b_c00244{left:236.133333pt;}
.xe7_c00244{left:237.200000pt;}
.xd9_c00244{left:244.000000pt;}
.x61_c00244{left:245.866667pt;}
.x10a_c00244{left:246.933333pt;}
.x78_c00244{left:248.266667pt;}
.x7_c00244{left:252.133333pt;}
.xb8_c00244{left:253.066667pt;}
.xe8_c00244{left:254.800000pt;}
.x96_c00244{left:256.133333pt;}
.x55_c00244{left:259.466667pt;}
.xf5_c00244{left:260.800000pt;}
.x3d_c00244{left:265.600000pt;}
.x62_c00244{left:266.666667pt;}
.x49_c00244{left:271.333333pt;}
.x11a_c00244{left:272.400000pt;}
.xd3_c00244{left:274.266667pt;}
.x8_c00244{left:276.400000pt;}
.xda_c00244{left:277.866667pt;}
.x6e_c00244{left:279.200000pt;}
.xca_c00244{left:281.066667pt;}
.x8d_c00244{left:282.800000pt;}
.x79_c00244{left:283.733333pt;}
.xbd_c00244{left:286.133333pt;}
.x97_c00244{left:287.466667pt;}
.xdb_c00244{left:290.000000pt;}
.x129_c00244{left:292.133333pt;}
.xaa_c00244{left:293.333333pt;}
.x6f_c00244{left:296.133333pt;}
.x113_c00244{left:297.200000pt;}
.x3e_c00244{left:298.933333pt;}
.x124_c00244{left:300.133333pt;}
.xa3_c00244{left:301.866667pt;}
.x4a_c00244{left:303.066667pt;}
.x11f_c00244{left:304.533333pt;}
.x9_c00244{left:306.133333pt;}
.xab_c00244{left:307.466667pt;}
.x11b_c00244{left:308.666667pt;}
.xbe_c00244{left:312.133333pt;}
.x98_c00244{left:313.733333pt;}
.x2f_c00244{left:314.933333pt;}
.xdc_c00244{left:315.866667pt;}
.x22_c00244{left:316.800000pt;}
.x15_c00244{left:318.933333pt;}
.xf6_c00244{left:320.533333pt;}
.xd4_c00244{left:322.533333pt;}
.x56_c00244{left:324.400000pt;}
.x63_c00244{left:326.400000pt;}
.x120_c00244{left:327.866667pt;}
.x30_c00244{left:330.266667pt;}
.xe9_c00244{left:331.866667pt;}
.xa4_c00244{left:332.933333pt;}
.x16_c00244{left:334.933333pt;}
.xcb_c00244{left:336.800000pt;}
.xac_c00244{left:338.800000pt;}
.x64_c00244{left:340.133333pt;}
.xc4_c00244{left:342.133333pt;}
.x31_c00244{left:343.333333pt;}
.x8e_c00244{left:345.200000pt;}
.xf7_c00244{left:347.466667pt;}
.xbf_c00244{left:348.666667pt;}
.x84_c00244{left:349.733333pt;}
.x7c_c00244{left:351.733333pt;}
.x4b_c00244{left:353.600000pt;}
.x125_c00244{left:358.000000pt;}
.x99_c00244{left:359.866667pt;}
.x10b_c00244{left:363.066667pt;}
.xb1_c00244{left:364.133333pt;}
.xed_c00244{left:365.733333pt;}
.x32_c00244{left:367.333333pt;}
.x23_c00244{left:368.533333pt;}
.x65_c00244{left:372.400000pt;}
.x7a_c00244{left:374.533333pt;}
.xa_c00244{left:376.266667pt;}
.x111_c00244{left:377.466667pt;}
.x3f_c00244{left:379.866667pt;}
.x102_c00244{left:382.666667pt;}
.xcc_c00244{left:384.800000pt;}
.x85_c00244{left:386.800000pt;}
.x2_c00244{left:388.133333pt;}
.xb9_c00244{left:390.933333pt;}
.xee_c00244{left:396.800000pt;}
.xea_c00244{left:398.000000pt;}
.x24_c00244{left:402.400000pt;}
.x121_c00244{left:406.000000pt;}
.x11c_c00244{left:406.933333pt;}
.x66_c00244{left:408.266667pt;}
.x7d_c00244{left:409.333333pt;}
.xa5_c00244{left:412.000000pt;}
.x114_c00244{left:414.000000pt;}
.x17_c00244{left:415.866667pt;}
.x33_c00244{left:420.400000pt;}
.x4c_c00244{left:423.066667pt;}
.x70_c00244{left:424.133333pt;}
.x9a_c00244{left:426.800000pt;}
.x40_c00244{left:429.066667pt;}
.xb_c00244{left:430.666667pt;}
.x8f_c00244{left:432.533333pt;}
.x18_c00244{left:433.733333pt;}
.xc0_c00244{left:436.000000pt;}
.xa6_c00244{left:437.600000pt;}
.xf8_c00244{left:439.333333pt;}
.xeb_c00244{left:440.533333pt;}
.xad_c00244{left:443.066667pt;}
.x71_c00244{left:444.266667pt;}
.x7e_c00244{left:445.866667pt;}
.xfc_c00244{left:447.066667pt;}
.x57_c00244{left:449.866667pt;}
.xdd_c00244{left:450.933333pt;}
.xc1_c00244{left:452.000000pt;}
.x19_c00244{left:454.266667pt;}
.xcd_c00244{left:456.133333pt;}
.xe5_c00244{left:458.266667pt;}
.x10c_c00244{left:459.466667pt;}
.x25_c00244{left:460.666667pt;}
.x9b_c00244{left:462.666667pt;}
.x103_c00244{left:464.266667pt;}
.x90_c00244{left:467.466667pt;}
.xc5_c00244{left:469.066667pt;}
.x26_c00244{left:470.533333pt;}
.x72_c00244{left:471.466667pt;}
.x41_c00244{left:477.066667pt;}
.xe1_c00244{left:478.800000pt;}
.x10d_c00244{left:480.266667pt;}
.x115_c00244{left:481.200000pt;}
.x58_c00244{left:482.133333pt;}
.x34_c00244{left:483.466667pt;}
.x9c_c00244{left:486.933333pt;}
.x67_c00244{left:488.533333pt;}
.x27_c00244{left:489.733333pt;}
.x4d_c00244{left:493.200000pt;}
.xb2_c00244{left:494.800000pt;}
.x91_c00244{left:499.466667pt;}
.x59_c00244{left:500.400000pt;}
.xde_c00244{left:502.400000pt;}
.x104_c00244{left:505.866667pt;}
.xd5_c00244{left:507.200000pt;}
.xba_c00244{left:509.200000pt;}
.x4e_c00244{left:510.800000pt;}
.xef_c00244{left:513.866667pt;}
.x86_c00244{left:516.933333pt;}
.xc6_c00244{left:518.000000pt;}
.xae_c00244{left:520.533333pt;}
.x28_c00244{left:521.733333pt;}
.xfd_c00244{left:523.200000pt;}
.x7f_c00244{left:524.800000pt;}
.x5a_c00244{left:527.866667pt;}
.x1a_c00244{left:530.400000pt;}
.xc_c00244{left:532.800000pt;}
.xb3_c00244{left:536.400000pt;}
.x4f_c00244{left:537.333333pt;}
.x29_c00244{left:541.600000pt;}
.x68_c00244{left:542.933333pt;}
.xf0_c00244{left:544.933333pt;}
.x80_c00244{left:545.866667pt;}
.x92_c00244{left:548.133333pt;}
.x35_c00244{left:550.000000pt;}
.x42_c00244{left:552.800000pt;}
.x50_c00244{left:554.933333pt;}
.x10e_c00244{left:556.800000pt;}
.x73_c00244{left:560.400000pt;}
.x9d_c00244{left:561.866667pt;}
.x1b_c00244{left:563.333333pt;}
.x116_c00244{left:565.066667pt;}
.xaf_c00244{left:566.000000pt;}
.xd_c00244{left:567.066667pt;}
.x69_c00244{left:568.266667pt;}
.xd6_c00244{left:569.200000pt;}
.x43_c00244{left:572.933333pt;}
.xe2_c00244{left:576.400000pt;}
.xce_c00244{left:578.400000pt;}
.x51_c00244{left:580.266667pt;}
.x122_c00244{left:583.466667pt;}
.x5b_c00244{left:584.533333pt;}
.x11d_c00244{left:585.866667pt;}
.x74_c00244{left:587.600000pt;}
.x36_c00244{left:589.333333pt;}
.x10f_c00244{left:590.666667pt;}
.xb4_c00244{left:592.400000pt;}
.x2a_c00244{left:593.466667pt;}
.xcf_c00244{left:594.400000pt;}
.xe_c00244{left:596.133333pt;}
.x1c_c00244{left:598.266667pt;}
.x87_c00244{left:600.133333pt;}
.x5c_c00244{left:602.400000pt;}
.xf9_c00244{left:603.600000pt;}
.xe3_c00244{left:604.533333pt;}
.xf1_c00244{left:607.066667pt;}
.x44_c00244{left:609.066667pt;}
.x105_c00244{left:610.266667pt;}
.x75_c00244{left:611.866667pt;}
.x6a_c00244{left:612.800000pt;}
.x108_c00244{left:615.200000pt;}
.x123_c00244{left:616.400000pt;}
.xc2_c00244{left:618.400000pt;}
.x11e_c00244{left:619.466667pt;}
.xfe_c00244{left:622.400000pt;}
.x81_c00244{left:624.000000pt;}
.x2b_c00244{left:626.400000pt;}
.x52_c00244{left:628.533333pt;}
.x117_c00244{left:629.466667pt;}
.x109_c00244{left:630.533333pt;}
.x9e_c00244{left:631.866667pt;}
.x37_c00244{left:635.066667pt;}
.x88_c00244{left:636.000000pt;}
.x6b_c00244{left:638.133333pt;}
.xf_c00244{left:639.600000pt;}
.xb5_c00244{left:641.733333pt;}
.xf2_c00244{left:643.866667pt;}
.x45_c00244{left:645.200000pt;}
.x1d_c00244{left:646.266667pt;}
.x76_c00244{left:648.000000pt;}
.x2c_c00244{left:650.666667pt;}
.xff_c00244{left:651.866667pt;}
.x112_c00244{left:654.533333pt;}
.x110_c00244{left:656.800000pt;}
.xa7_c00244{left:657.733333pt;}
.x6c_c00244{left:661.200000pt;}
.x38_c00244{left:662.933333pt;}
.x82_c00244{left:670.133333pt;}
.x12a_c00244{left:671.733333pt;}
.x10_c00244{left:672.933333pt;}
.x77_c00244{left:676.133333pt;}
.x5d_c00244{left:679.200000pt;}
.x9f_c00244{left:681.466667pt;}
.xa8_c00244{left:683.333333pt;}
.x2d_c00244{left:684.533333pt;}
.xe4_c00244{left:687.733333pt;}
.xe6_c00244{left:689.733333pt;}
.x11_c00244{left:690.800000pt;}
.x126_c00244{left:691.733333pt;}
.xfa_c00244{left:692.666667pt;}
.x93_c00244{left:696.533333pt;}
.x89_c00244{left:697.866667pt;}
.xa0_c00244{left:699.333333pt;}
.xd0_c00244{left:700.266667pt;}
.x46_c00244{left:702.133333pt;}
.x100_c00244{left:704.000000pt;}
.xc7_c00244{left:706.666667pt;}
.xf3_c00244{left:707.600000pt;}
}





/* 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_c00245 {
    display:none;
  }
  .loading-indicator_c00245.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00245 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_c00245 { 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_c00245" -> "#page-container .classname_c00245")
 */
.pf_c00245 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00245 { /* 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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00245 { /* 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_c00245 { /* 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_c00245 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00245 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00245 {overflow:visible;}
  }
}
.c_c00245 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00245 { /* 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_c00245:after { /* webkit #35443 */
  content: '';
}
.t_c00245:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00245 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 */
}
.__c00245 { /* 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_c00245 { /* info for Javascript */
  display:none;
}
.l_c00245 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00245 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00245 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00245: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_c00245 {
    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_c00245.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00245.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_c00245 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00245{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.000000;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;}
.m15_c00245{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m16_c00245{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m14_c00245{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.md_c00245{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me_c00245{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m13_c00245{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m11_c00245{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00245{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mf_c00245{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00245{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc_c00245{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c00245{transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.508750,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{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__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:-5.000000px;}
.ws3_c00245{word-spacing:0.000000px;}
.ws1_c00245{word-spacing:37.000000px;}
.ws2_c00245{word-spacing:215.000000px;}
._1_c00245{width:507.500000px;}
._0_c00245{width:1295.000000px;}
.fc0_c00245{color:transparent;}
.fs3_c00245{font-size:30.000000px;}
.fs2_c00245{font-size:36.000000px;}
.fs0_c00245{font-size:42.000000px;}
.fs4_c00245{font-size:60.000000px;}
.fs1_c00245{font-size:228.000000px;}
.y0_c00245{bottom:0.000000px;}
.y7_c00245{bottom:37.800000px;}
.y5_c00245{bottom:475.950000px;}
.y4_c00245{bottom:484.950000px;}
.y3_c00245{bottom:507.300000px;}
.y6_c00245{bottom:519.900000px;}
.y2_c00245{bottom:630.300000px;}
.y1_c00245{bottom:639.300000px;}
.h5_c00245{height:30.000000px;}
.h4_c00245{height:36.000000px;}
.h2_c00245{height:42.000000px;}
.h6_c00245{height:60.000000px;}
.h3_c00245{height:228.000000px;}
.h0_c00245{height:1166.759949px;}
.h1_c00245{height:1167.000000px;}
.w0_c00245{width:918.720063px;}
.w1_c00245{width:918.750000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:104.700000px;}
.x3_c00245{left:204.150000px;}
.x4_c00245{left:228.600000px;}
.x8_c00245{left:236.550000px;}
.x9_c00245{left:245.250000px;}
.x5_c00245{left:285.000000px;}
.xa_c00245{left:292.350000px;}
.x6_c00245{left:323.550000px;}
.x7_c00245{left:339.750000px;}
.x2_c00245{left:473.100000px;}
.xb_c00245{left:549.750000px;}
.xc_c00245{left:570.600000px;}
.xd_c00245{left:588.900000px;}
.xe_c00245{left:594.300000px;}
.xf_c00245{left:638.850000px;}
.x10_c00245{left:658.350000px;}
.x11_c00245{left:704.100000px;}
.x12_c00245{left:721.350000px;}
.x13_c00245{left:725.250000px;}
.x14_c00245{left:748.650000px;}
.x15_c00245{left:771.000000px;}
.x16_c00245{left:793.350000px;}
.x17_c00245{left:797.400000px;}
.x18_c00245{left:806.100000px;}
.x19_c00245{left:841.200000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:-4.444444pt;}
.ws3_c00245{word-spacing:0.000000pt;}
.ws1_c00245{word-spacing:32.888889pt;}
.ws2_c00245{word-spacing:191.111111pt;}
._1_c00245{width:451.111111pt;}
._0_c00245{width:1151.111111pt;}
.fs3_c00245{font-size:26.666667pt;}
.fs2_c00245{font-size:32.000000pt;}
.fs0_c00245{font-size:37.333333pt;}
.fs4_c00245{font-size:53.333333pt;}
.fs1_c00245{font-size:202.666667pt;}
.y0_c00245{bottom:0.000000pt;}
.y7_c00245{bottom:33.600000pt;}
.y5_c00245{bottom:423.066667pt;}
.y4_c00245{bottom:431.066667pt;}
.y3_c00245{bottom:450.933333pt;}
.y6_c00245{bottom:462.133333pt;}
.y2_c00245{bottom:560.266667pt;}
.y1_c00245{bottom:568.266667pt;}
.h5_c00245{height:26.666667pt;}
.h4_c00245{height:32.000000pt;}
.h2_c00245{height:37.333333pt;}
.h6_c00245{height:53.333333pt;}
.h3_c00245{height:202.666667pt;}
.h0_c00245{height:1037.119955pt;}
.h1_c00245{height:1037.333333pt;}
.w0_c00245{width:816.640056pt;}
.w1_c00245{width:816.666667pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:93.066667pt;}
.x3_c00245{left:181.466667pt;}
.x4_c00245{left:203.200000pt;}
.x8_c00245{left:210.266667pt;}
.x9_c00245{left:218.000000pt;}
.x5_c00245{left:253.333333pt;}
.xa_c00245{left:259.866667pt;}
.x6_c00245{left:287.600000pt;}
.x7_c00245{left:302.000000pt;}
.x2_c00245{left:420.533333pt;}
.xb_c00245{left:488.666667pt;}
.xc_c00245{left:507.200000pt;}
.xd_c00245{left:523.466667pt;}
.xe_c00245{left:528.266667pt;}
.xf_c00245{left:567.866667pt;}
.x10_c00245{left:585.200000pt;}
.x11_c00245{left:625.866667pt;}
.x12_c00245{left:641.200000pt;}
.x13_c00245{left:644.666667pt;}
.x14_c00245{left:665.466667pt;}
.x15_c00245{left:685.333333pt;}
.x16_c00245{left:705.200000pt;}
.x17_c00245{left:708.800000pt;}
.x18_c00245{left:716.533333pt;}
.x19_c00245{left:747.733333pt;}
}





/* 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_c00246 {
    display:none;
  }
  .loading-indicator_c00246.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00246 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_c00246 { 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_c00246" -> "#page-container .classname_c00246")
 */
.pf_c00246 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00246 { /* 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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00246 { /* 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_c00246 { /* 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_c00246 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00246 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00246 {overflow:visible;}
  }
}
.c_c00246 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00246 { /* 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_c00246:after { /* webkit #35443 */
  content: '';
}
.t_c00246:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00246 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 */
}
.__c00246 { /* 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_c00246 { /* info for Javascript */
  display:none;
}
.l_c00246 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00246 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00246 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00246: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_c00246 {
    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_c00246.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00246.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_c00246 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00246{font-family:sans-serif;visibility:hidden;}
.sc__c00246{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
}
.y0_c00246{bottom:0.000000px;}
.h0_c00246{height:1166.759949px;}
.h1_c00246{height:1167.000000px;}
.w0_c00246{width:918.720063px;}
.w1_c00246{width:918.750000px;}
.x0_c00246{left:0.000000px;}
@media print{
.y0_c00246{bottom:0.000000pt;}
.h0_c00246{height:1037.119955pt;}
.h1_c00246{height:1037.333333pt;}
.w0_c00246{width:816.640056pt;}
.w1_c00246{width:816.666667pt;}
.x0_c00246{left:0.000000pt;}
}





/* 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_c00247 {
    display:none;
  }
  .loading-indicator_c00247.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00247 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_c00247 { 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_c00247" -> "#page-container .classname_c00247")
 */
.pf_c00247 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00247 { /* 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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00247 { /* 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_c00247 { /* 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_c00247 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00247 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00247 {overflow:visible;}
  }
}
.c_c00247 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00247 { /* 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_c00247:after { /* webkit #35443 */
  content: '';
}
.t_c00247:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00247 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 */
}
.__c00247 { /* 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_c00247 { /* info for Javascript */
  display:none;
}
.l_c00247 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00247 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00247 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00247: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_c00247 {
    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_c00247.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00247.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_c00247 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00247{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00247;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.000000;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;}
.m73_c00247{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m72_c00247{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.maf_c00247{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00247{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00247{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00247{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.ma_c00247{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00247{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00247{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m37_c00247{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m31_c00247{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m97_c00247{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3_c00247{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00247{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m33_c00247{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00247{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00247{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00247{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m71_c00247{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m59_c00247{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00247{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m95_c00247{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m82_c00247{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m53_c00247{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00247{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00247{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m5_c00247{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00247{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m56_c00247{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00247{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m12_c00247{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00247{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00247{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m68_c00247{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00247{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m67_c00247{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7_c00247{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00247{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00247{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00247{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m87_c00247{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m11_c00247{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00247{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00247{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m27_c00247{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00247{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m44_c00247{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m77_c00247{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00247{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00247{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00247{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m46_c00247{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m83_c00247{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m48_c00247{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00247{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m18_c00247{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m20_c00247{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00247{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00247{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m22_c00247{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00247{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mae_c00247{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m58_c00247{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m23_c00247{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m60_c00247{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m61_c00247{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00247{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m57_c00247{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00247{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00247{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m50_c00247{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14_c00247{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00247{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m30_c00247{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m38_c00247{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m45_c00247{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m78_c00247{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00247{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00247{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m91_c00247{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m41_c00247{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m34_c00247{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m29_c00247{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mab_c00247{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4_c00247{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m74_c00247{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00247{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m65_c00247{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00247{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00247{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m99_c00247{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00247{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00247{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m26_c00247{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m79_c00247{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m52_c00247{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00247{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00247{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00247{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb_c00247{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m54_c00247{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00247{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m16_c00247{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00247{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9_c00247{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m39_c00247{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m64_c00247{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00247{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00247{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m43_c00247{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00247{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m85_c00247{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m81_c00247{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6_c00247{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00247{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00247{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00247{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00247{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00247{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m25_c00247{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00247{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mad_c00247{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m55_c00247{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m35_c00247{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m21_c00247{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00247{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00247{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m32_c00247{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m66_c00247{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00247{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);}
.m24_c00247{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00247{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00247{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m63_c00247{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m69_c00247{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00247{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00247{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00247{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m51_c00247{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m40_c00247{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00247{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m90_c00247{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m36_c00247{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m80_c00247{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00247{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mf_c00247{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00247{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00247{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00247{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m92_c00247{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m47_c00247{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00247{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m88_c00247{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00247{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m84_c00247{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m75_c00247{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.maa_c00247{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m93_c00247{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m86_c00247{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m70_c00247{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00247{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00247{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m76_c00247{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00247{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m89_c00247{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00247{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00247{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m94_c00247{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m96_c00247{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m98_c00247{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00247{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00247{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00247{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00247{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00247{vertical-align:0.000000px;}
.ls0_c00247{letter-spacing:0.000000px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{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__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00247{word-spacing:-2.500000px;}
.ws6_c00247{word-spacing:0.000000px;}
.ws3_c00247{word-spacing:0.119048px;}
.ws0_c00247{word-spacing:4.473684px;}
.ws2_c00247{word-spacing:4.794521px;}
.ws1_c00247{word-spacing:18.378378px;}
.ws5_c00247{word-spacing:20.138889px;}
.fc0_c00247{color:transparent;}
.fs0_c00247{font-size:48.000000px;}
.fs1_c00247{font-size:60.000000px;}
.y0_c00247{bottom:0.000000px;}
.y2c_c00247{bottom:156.900000px;}
.y2b_c00247{bottom:172.500000px;}
.y2a_c00247{bottom:187.950000px;}
.y29_c00247{bottom:203.400000px;}
.y28_c00247{bottom:250.200000px;}
.y27_c00247{bottom:270.300000px;}
.y26_c00247{bottom:290.100000px;}
.y25_c00247{bottom:309.900000px;}
.y24_c00247{bottom:329.700000px;}
.y23_c00247{bottom:350.250000px;}
.y22_c00247{bottom:370.050000px;}
.y21_c00247{bottom:389.850000px;}
.y20_c00247{bottom:409.950000px;}
.y1f_c00247{bottom:430.050000px;}
.y1e_c00247{bottom:449.850000px;}
.y1d_c00247{bottom:469.650000px;}
.y1c_c00247{bottom:489.750000px;}
.y1b_c00247{bottom:509.850000px;}
.y1a_c00247{bottom:529.650000px;}
.y19_c00247{bottom:549.750000px;}
.y18_c00247{bottom:569.400000px;}
.y17_c00247{bottom:589.950000px;}
.y16_c00247{bottom:609.750000px;}
.y15_c00247{bottom:629.550000px;}
.y14_c00247{bottom:649.650000px;}
.y13_c00247{bottom:669.450000px;}
.y12_c00247{bottom:689.250000px;}
.y11_c00247{bottom:709.050000px;}
.y10_c00247{bottom:728.850000px;}
.yf_c00247{bottom:748.950000px;}
.ye_c00247{bottom:768.750000px;}
.yd_c00247{bottom:788.850000px;}
.yc_c00247{bottom:808.950000px;}
.yb_c00247{bottom:828.750000px;}
.ya_c00247{bottom:848.550000px;}
.y9_c00247{bottom:868.650000px;}
.y8_c00247{bottom:888.900000px;}
.y7_c00247{bottom:908.700000px;}
.y6_c00247{bottom:928.800000px;}
.y5_c00247{bottom:948.900000px;}
.y4_c00247{bottom:969.300000px;}
.y3_c00247{bottom:989.400000px;}
.y2_c00247{bottom:1009.500000px;}
.y1_c00247{bottom:1047.300000px;}
.h2_c00247{height:48.000000px;}
.h3_c00247{height:60.000000px;}
.h0_c00247{height:1166.759949px;}
.h1_c00247{height:1167.000000px;}
.w0_c00247{width:918.720063px;}
.w1_c00247{width:918.750000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:103.650000px;}
.xa6_c00247{left:104.850000px;}
.xd2_c00247{left:106.200000px;}
.x131_c00247{left:120.600000px;}
.x41_c00247{left:123.150000px;}
.x24_c00247{left:124.800000px;}
.x14_c00247{left:128.700000px;}
.xf4_c00247{left:131.550000px;}
.x27_c00247{left:135.300000px;}
.x90_c00247{left:136.800000px;}
.xfb_c00247{left:138.450000px;}
.x12b_c00247{left:140.400000px;}
.x66_c00247{left:142.500000px;}
.x25_c00247{left:143.550000px;}
.x33_c00247{left:145.500000px;}
.x52_c00247{left:146.700000px;}
.x42_c00247{left:150.900000px;}
.xc7_c00247{left:152.550000px;}
.x127_c00247{left:154.350000px;}
.x4_c00247{left:155.550000px;}
.xe6_c00247{left:157.350000px;}
.xd7_c00247{left:159.150000px;}
.xa7_c00247{left:160.950000px;}
.xbf_c00247{left:162.300000px;}
.x34_c00247{left:164.250000px;}
.x88_c00247{left:165.300000px;}
.x53_c00247{left:168.000000px;}
.x128_c00247{left:169.800000px;}
.x5_c00247{left:171.750000px;}
.x59_c00247{left:173.100000px;}
.xed_c00247{left:174.300000px;}
.x80_c00247{left:175.950000px;}
.x11e_c00247{left:178.050000px;}
.x26_c00247{left:179.550000px;}
.x71_c00247{left:181.050000px;}
.x123_c00247{left:182.100000px;}
.x9b_c00247{left:183.900000px;}
.x115_c00247{left:185.850000px;}
.x28_c00247{left:188.850000px;}
.x43_c00247{left:192.600000px;}
.xd8_c00247{left:193.650000px;}
.x6_c00247{left:199.500000px;}
.x35_c00247{left:200.550000px;}
.x15_c00247{left:202.500000px;}
.x5a_c00247{left:204.750000px;}
.xc0_c00247{left:208.800000px;}
.xdc_c00247{left:210.600000px;}
.x44_c00247{left:211.650000px;}
.xd9_c00247{left:213.150000px;}
.xcf_c00247{left:214.800000px;}
.xb5_c00247{left:216.900000px;}
.x5b_c00247{left:219.150000px;}
.xfc_c00247{left:220.200000px;}
.xe7_c00247{left:221.400000px;}
.x107_c00247{left:222.600000px;}
.xdd_c00247{left:225.300000px;}
.x11f_c00247{left:229.950000px;}
.x16_c00247{left:231.000000px;}
.xc8_c00247{left:233.850000px;}
.xfd_c00247{left:234.900000px;}
.x91_c00247{left:236.100000px;}
.x116_c00247{left:238.350000px;}
.xda_c00247{left:241.200000px;}
.xe8_c00247{left:242.250000px;}
.x129_c00247{left:244.050000px;}
.xee_c00247{left:245.850000px;}
.xa8_c00247{left:247.050000px;}
.x29_c00247{left:249.750000px;}
.x72_c00247{left:251.700000px;}
.xaf_c00247{left:253.350000px;}
.x92_c00247{left:255.900000px;}
.x7_c00247{left:258.600000px;}
.x89_c00247{left:259.650000px;}
.x67_c00247{left:262.650000px;}
.x54_c00247{left:265.950000px;}
.x124_c00247{left:267.150000px;}
.x45_c00247{left:268.200000px;}
.x108_c00247{left:269.700000px;}
.x120_c00247{left:272.100000px;}
.xb6_c00247{left:273.450000px;}
.x101_c00247{left:275.100000px;}
.x36_c00247{left:278.250000px;}
.x2a_c00247{left:279.300000px;}
.x73_c00247{left:280.500000px;}
.x17_c00247{left:282.450000px;}
.xf5_c00247{left:283.800000px;}
.x46_c00247{left:287.700000px;}
.x5c_c00247{left:291.450000px;}
.x55_c00247{left:298.350000px;}
.x8_c00247{left:302.550000px;}
.x74_c00247{left:306.450000px;}
.xef_c00247{left:309.600000px;}
.x81_c00247{left:311.700000px;}
.x47_c00247{left:315.450000px;}
.xa9_c00247{left:317.700000px;}
.x9c_c00247{left:319.200000px;}
.x9_c00247{left:322.050000px;}
.xf0_c00247{left:323.250000px;}
.x18_c00247{left:324.600000px;}
.xb7_c00247{left:325.950000px;}
.x109_c00247{left:327.750000px;}
.x12f_c00247{left:329.400000px;}
.x75_c00247{left:331.350000px;}
.xc9_c00247{left:334.800000px;}
.x9d_c00247{left:336.900000px;}
.x93_c00247{left:339.000000px;}
.x8a_c00247{left:340.350000px;}
.x2b_c00247{left:343.350000px;}
.x121_c00247{left:344.850000px;}
.xc1_c00247{left:348.900000px;}
.xa_c00247{left:351.900000px;}
.xde_c00247{left:354.600000px;}
.xd3_c00247{left:355.950000px;}
.x37_c00247{left:357.150000px;}
.x68_c00247{left:358.800000px;}
.x19_c00247{left:360.900000px;}
.x56_c00247{left:362.100000px;}
.x76_c00247{left:364.800000px;}
.x9e_c00247{left:368.250000px;}
.x2c_c00247{left:370.050000px;}
.xca_c00247{left:371.550000px;}
.x48_c00247{left:373.050000px;}
.xf6_c00247{left:375.600000px;}
.x102_c00247{left:378.150000px;}
.x1_c00247{left:380.550000px;}
.x10f_c00247{left:381.900000px;}
.x82_c00247{left:386.250000px;}
.x94_c00247{left:388.650000px;}
.x38_c00247{left:391.050000px;}
.xcb_c00247{left:392.400000px;}
.xdf_c00247{left:393.900000px;}
.x11c_c00247{left:394.950000px;}
.x111_c00247{left:396.150000px;}
.x9f_c00247{left:397.800000px;}
.x49_c00247{left:399.000000px;}
.x69_c00247{left:400.500000px;}
.xaa_c00247{left:402.000000px;}
.x77_c00247{left:403.650000px;}
.x103_c00247{left:405.150000px;}
.x1a_c00247{left:406.650000px;}
.x5d_c00247{left:408.150000px;}
.xb_c00247{left:410.550000px;}
.x39_c00247{left:411.600000px;}
.x12a_c00247{left:414.300000px;}
.x2d_c00247{left:416.550000px;}
.xdb_c00247{left:421.500000px;}
.xb8_c00247{left:423.150000px;}
.xb0_c00247{left:425.400000px;}
.xc_c00247{left:427.800000px;}
.x8b_c00247{left:428.850000px;}
.x10a_c00247{left:430.050000px;}
.x11d_c00247{left:431.250000px;}
.x95_c00247{left:434.700000px;}
.x4a_c00247{left:436.500000px;}
.xcc_c00247{left:439.200000px;}
.x3a_c00247{left:442.500000px;}
.x57_c00247{left:444.600000px;}
.x5e_c00247{left:447.000000px;}
.xfe_c00247{left:448.650000px;}
.xd4_c00247{left:451.350000px;}
.xd0_c00247{left:452.400000px;}
.x1b_c00247{left:457.050000px;}
.xe0_c00247{left:459.000000px;}
.x78_c00247{left:460.200000px;}
.xe9_c00247{left:462.300000px;}
.x83_c00247{left:464.700000px;}
.x10b_c00247{left:466.050000px;}
.x117_c00247{left:468.450000px;}
.x2e_c00247{left:469.500000px;}
.x96_c00247{left:471.000000px;}
.x6a_c00247{left:472.200000px;}
.xa0_c00247{left:474.900000px;}
.x122_c00247{left:478.950000px;}
.x130_c00247{left:480.000000px;}
.x12c_c00247{left:481.800000px;}
.x79_c00247{left:482.850000px;}
.x112_c00247{left:484.050000px;}
.xea_c00247{left:485.400000px;}
.x3b_c00247{left:486.450000px;}
.xe1_c00247{left:488.550000px;}
.xd_c00247{left:491.100000px;}
.x104_c00247{left:492.750000px;}
.xa1_c00247{left:494.700000px;}
.x5f_c00247{left:496.050000px;}
.xb9_c00247{left:498.000000px;}
.x4b_c00247{left:503.400000px;}
.x1c_c00247{left:505.350000px;}
.xcd_c00247{left:506.850000px;}
.xc2_c00247{left:508.650000px;}
.x58_c00247{left:509.700000px;}
.xab_c00247{left:510.750000px;}
.x125_c00247{left:512.700000px;}
.xf7_c00247{left:514.650000px;}
.x84_c00247{left:517.350000px;}
.x2f_c00247{left:519.900000px;}
.xe_c00247{left:521.700000px;}
.x3c_c00247{left:526.800000px;}
.x60_c00247{left:529.200000px;}
.x1d_c00247{left:531.300000px;}
.xa2_c00247{left:533.250000px;}
.xc3_c00247{left:535.650000px;}
.x7a_c00247{left:537.900000px;}
.x118_c00247{left:541.200000px;}
.x4c_c00247{left:542.250000px;}
.x6b_c00247{left:544.500000px;}
.x85_c00247{left:545.850000px;}
.xce_c00247{left:550.800000px;}
.xe2_c00247{left:552.600000px;}
.xf1_c00247{left:554.400000px;}
.xac_c00247{left:555.450000px;}
.x8c_c00247{left:558.000000px;}
.x119_c00247{left:559.500000px;}
.xc4_c00247{left:563.700000px;}
.x97_c00247{left:566.400000px;}
.xba_c00247{left:567.450000px;}
.xf_c00247{left:569.250000px;}
.xa3_c00247{left:570.300000px;}
.x4d_c00247{left:574.950000px;}
.xbc_c00247{left:576.900000px;}
.xd5_c00247{left:578.550000px;}
.x1e_c00247{left:581.400000px;}
.x12d_c00247{left:583.350000px;}
.x7b_c00247{left:585.000000px;}
.x10_c00247{left:586.950000px;}
.x30_c00247{left:588.300000px;}
.x113_c00247{left:590.850000px;}
.x4e_c00247{left:592.650000px;}
.x61_c00247{left:595.050000px;}
.xd1_c00247{left:596.100000px;}
.xff_c00247{left:599.850000px;}
.xc5_c00247{left:601.800000px;}
.x3d_c00247{left:603.450000px;}
.x7c_c00247{left:608.400000px;}
.x1f_c00247{left:610.200000px;}
.x11_c00247{left:613.200000px;}
.x6c_c00247{left:614.400000px;}
.x8d_c00247{left:615.900000px;}
.x105_c00247{left:617.400000px;}
.x86_c00247{left:618.450000px;}
.x4f_c00247{left:621.150000px;}
.x10c_c00247{left:622.650000px;}
.x11a_c00247{left:624.900000px;}
.xeb_c00247{left:626.550000px;}
.xd6_c00247{left:627.900000px;}
.x62_c00247{left:630.000000px;}
.xad_c00247{left:631.800000px;}
.x6d_c00247{left:635.250000px;}
.xe3_c00247{left:637.950000px;}
.xbd_c00247{left:641.400000px;}
.x98_c00247{left:643.500000px;}
.x20_c00247{left:646.950000px;}
.x100_c00247{left:648.450000px;}
.x12_c00247{left:650.700000px;}
.x63_c00247{left:653.100000px;}
.x110_c00247{left:654.750000px;}
.x6e_c00247{left:655.800000px;}
.x50_c00247{left:658.200000px;}
.x8e_c00247{left:660.150000px;}
.xf8_c00247{left:662.850000px;}
.x114_c00247{left:664.650000px;}
.xb1_c00247{left:667.050000px;}
.x7d_c00247{left:670.650000px;}
.xf2_c00247{left:672.150000px;}
.x99_c00247{left:673.350000px;}
.xe4_c00247{left:674.700000px;}
.x12e_c00247{left:676.200000px;}
.x3e_c00247{left:677.550000px;}
.xbb_c00247{left:679.350000px;}
.x6f_c00247{left:682.800000px;}
.xa4_c00247{left:685.050000px;}
.x21_c00247{left:686.850000px;}
.x51_c00247{left:688.500000px;}
.x31_c00247{left:690.150000px;}
.x106_c00247{left:691.200000px;}
.x3f_c00247{left:693.000000px;}
.x8f_c00247{left:695.400000px;}
.x10d_c00247{left:696.450000px;}
.xf9_c00247{left:697.800000px;}
.xec_c00247{left:699.600000px;}
.x7e_c00247{left:703.050000px;}
.xa5_c00247{left:704.550000px;}
.x22_c00247{left:706.950000px;}
.xb2_c00247{left:708.750000px;}
.xe5_c00247{left:713.250000px;}
.x32_c00247{left:716.850000px;}
.x64_c00247{left:718.200000px;}
.x13_c00247{left:722.400000px;}
.x40_c00247{left:724.650000px;}
.x11b_c00247{left:725.700000px;}
.x10e_c00247{left:728.550000px;}
.xb3_c00247{left:730.350000px;}
.x23_c00247{left:733.650000px;}
.xbe_c00247{left:736.050000px;}
.xc6_c00247{left:737.850000px;}
.x9a_c00247{left:741.750000px;}
.x87_c00247{left:743.400000px;}
.x2_c00247{left:746.250000px;}
.xae_c00247{left:747.600000px;}
.x126_c00247{left:751.050000px;}
.xb4_c00247{left:753.750000px;}
.x65_c00247{left:757.050000px;}
.x7f_c00247{left:758.100000px;}
.xf3_c00247{left:759.300000px;}
.x70_c00247{left:761.250000px;}
.xfa_c00247{left:770.550000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws4_c00247{word-spacing:-2.222222pt;}
.ws6_c00247{word-spacing:0.000000pt;}
.ws3_c00247{word-spacing:0.105820pt;}
.ws0_c00247{word-spacing:3.976608pt;}
.ws2_c00247{word-spacing:4.261796pt;}
.ws1_c00247{word-spacing:16.336336pt;}
.ws5_c00247{word-spacing:17.901235pt;}
.fs0_c00247{font-size:42.666667pt;}
.fs1_c00247{font-size:53.333333pt;}
.y0_c00247{bottom:0.000000pt;}
.y2c_c00247{bottom:139.466667pt;}
.y2b_c00247{bottom:153.333333pt;}
.y2a_c00247{bottom:167.066667pt;}
.y29_c00247{bottom:180.800000pt;}
.y28_c00247{bottom:222.400000pt;}
.y27_c00247{bottom:240.266667pt;}
.y26_c00247{bottom:257.866667pt;}
.y25_c00247{bottom:275.466667pt;}
.y24_c00247{bottom:293.066667pt;}
.y23_c00247{bottom:311.333333pt;}
.y22_c00247{bottom:328.933333pt;}
.y21_c00247{bottom:346.533333pt;}
.y20_c00247{bottom:364.400000pt;}
.y1f_c00247{bottom:382.266667pt;}
.y1e_c00247{bottom:399.866667pt;}
.y1d_c00247{bottom:417.466667pt;}
.y1c_c00247{bottom:435.333333pt;}
.y1b_c00247{bottom:453.200000pt;}
.y1a_c00247{bottom:470.800000pt;}
.y19_c00247{bottom:488.666667pt;}
.y18_c00247{bottom:506.133333pt;}
.y17_c00247{bottom:524.400000pt;}
.y16_c00247{bottom:542.000000pt;}
.y15_c00247{bottom:559.600000pt;}
.y14_c00247{bottom:577.466667pt;}
.y13_c00247{bottom:595.066667pt;}
.y12_c00247{bottom:612.666667pt;}
.y11_c00247{bottom:630.266667pt;}
.y10_c00247{bottom:647.866667pt;}
.yf_c00247{bottom:665.733333pt;}
.ye_c00247{bottom:683.333333pt;}
.yd_c00247{bottom:701.200000pt;}
.yc_c00247{bottom:719.066667pt;}
.yb_c00247{bottom:736.666667pt;}
.ya_c00247{bottom:754.266667pt;}
.y9_c00247{bottom:772.133333pt;}
.y8_c00247{bottom:790.133333pt;}
.y7_c00247{bottom:807.733333pt;}
.y6_c00247{bottom:825.600000pt;}
.y5_c00247{bottom:843.466667pt;}
.y4_c00247{bottom:861.600000pt;}
.y3_c00247{bottom:879.466667pt;}
.y2_c00247{bottom:897.333333pt;}
.y1_c00247{bottom:930.933333pt;}
.h2_c00247{height:42.666667pt;}
.h3_c00247{height:53.333333pt;}
.h0_c00247{height:1037.119955pt;}
.h1_c00247{height:1037.333333pt;}
.w0_c00247{width:816.640056pt;}
.w1_c00247{width:816.666667pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:92.133333pt;}
.xa6_c00247{left:93.200000pt;}
.xd2_c00247{left:94.400000pt;}
.x131_c00247{left:107.200000pt;}
.x41_c00247{left:109.466667pt;}
.x24_c00247{left:110.933333pt;}
.x14_c00247{left:114.400000pt;}
.xf4_c00247{left:116.933333pt;}
.x27_c00247{left:120.266667pt;}
.x90_c00247{left:121.600000pt;}
.xfb_c00247{left:123.066667pt;}
.x12b_c00247{left:124.800000pt;}
.x66_c00247{left:126.666667pt;}
.x25_c00247{left:127.600000pt;}
.x33_c00247{left:129.333333pt;}
.x52_c00247{left:130.400000pt;}
.x42_c00247{left:134.133333pt;}
.xc7_c00247{left:135.600000pt;}
.x127_c00247{left:137.200000pt;}
.x4_c00247{left:138.266667pt;}
.xe6_c00247{left:139.866667pt;}
.xd7_c00247{left:141.466667pt;}
.xa7_c00247{left:143.066667pt;}
.xbf_c00247{left:144.266667pt;}
.x34_c00247{left:146.000000pt;}
.x88_c00247{left:146.933333pt;}
.x53_c00247{left:149.333333pt;}
.x128_c00247{left:150.933333pt;}
.x5_c00247{left:152.666667pt;}
.x59_c00247{left:153.866667pt;}
.xed_c00247{left:154.933333pt;}
.x80_c00247{left:156.400000pt;}
.x11e_c00247{left:158.266667pt;}
.x26_c00247{left:159.600000pt;}
.x71_c00247{left:160.933333pt;}
.x123_c00247{left:161.866667pt;}
.x9b_c00247{left:163.466667pt;}
.x115_c00247{left:165.200000pt;}
.x28_c00247{left:167.866667pt;}
.x43_c00247{left:171.200000pt;}
.xd8_c00247{left:172.133333pt;}
.x6_c00247{left:177.333333pt;}
.x35_c00247{left:178.266667pt;}
.x15_c00247{left:180.000000pt;}
.x5a_c00247{left:182.000000pt;}
.xc0_c00247{left:185.600000pt;}
.xdc_c00247{left:187.200000pt;}
.x44_c00247{left:188.133333pt;}
.xd9_c00247{left:189.466667pt;}
.xcf_c00247{left:190.933333pt;}
.xb5_c00247{left:192.800000pt;}
.x5b_c00247{left:194.800000pt;}
.xfc_c00247{left:195.733333pt;}
.xe7_c00247{left:196.800000pt;}
.x107_c00247{left:197.866667pt;}
.xdd_c00247{left:200.266667pt;}
.x11f_c00247{left:204.400000pt;}
.x16_c00247{left:205.333333pt;}
.xc8_c00247{left:207.866667pt;}
.xfd_c00247{left:208.800000pt;}
.x91_c00247{left:209.866667pt;}
.x116_c00247{left:211.866667pt;}
.xda_c00247{left:214.400000pt;}
.xe8_c00247{left:215.333333pt;}
.x129_c00247{left:216.933333pt;}
.xee_c00247{left:218.533333pt;}
.xa8_c00247{left:219.600000pt;}
.x29_c00247{left:222.000000pt;}
.x72_c00247{left:223.733333pt;}
.xaf_c00247{left:225.200000pt;}
.x92_c00247{left:227.466667pt;}
.x7_c00247{left:229.866667pt;}
.x89_c00247{left:230.800000pt;}
.x67_c00247{left:233.466667pt;}
.x54_c00247{left:236.400000pt;}
.x124_c00247{left:237.466667pt;}
.x45_c00247{left:238.400000pt;}
.x108_c00247{left:239.733333pt;}
.x120_c00247{left:241.866667pt;}
.xb6_c00247{left:243.066667pt;}
.x101_c00247{left:244.533333pt;}
.x36_c00247{left:247.333333pt;}
.x2a_c00247{left:248.266667pt;}
.x73_c00247{left:249.333333pt;}
.x17_c00247{left:251.066667pt;}
.xf5_c00247{left:252.266667pt;}
.x46_c00247{left:255.733333pt;}
.x5c_c00247{left:259.066667pt;}
.x55_c00247{left:265.200000pt;}
.x8_c00247{left:268.933333pt;}
.x74_c00247{left:272.400000pt;}
.xef_c00247{left:275.200000pt;}
.x81_c00247{left:277.066667pt;}
.x47_c00247{left:280.400000pt;}
.xa9_c00247{left:282.400000pt;}
.x9c_c00247{left:283.733333pt;}
.x9_c00247{left:286.266667pt;}
.xf0_c00247{left:287.333333pt;}
.x18_c00247{left:288.533333pt;}
.xb7_c00247{left:289.733333pt;}
.x109_c00247{left:291.333333pt;}
.x12f_c00247{left:292.800000pt;}
.x75_c00247{left:294.533333pt;}
.xc9_c00247{left:297.600000pt;}
.x9d_c00247{left:299.466667pt;}
.x93_c00247{left:301.333333pt;}
.x8a_c00247{left:302.533333pt;}
.x2b_c00247{left:305.200000pt;}
.x121_c00247{left:306.533333pt;}
.xc1_c00247{left:310.133333pt;}
.xa_c00247{left:312.800000pt;}
.xde_c00247{left:315.200000pt;}
.xd3_c00247{left:316.400000pt;}
.x37_c00247{left:317.466667pt;}
.x68_c00247{left:318.933333pt;}
.x19_c00247{left:320.800000pt;}
.x56_c00247{left:321.866667pt;}
.x76_c00247{left:324.266667pt;}
.x9e_c00247{left:327.333333pt;}
.x2c_c00247{left:328.933333pt;}
.xca_c00247{left:330.266667pt;}
.x48_c00247{left:331.600000pt;}
.xf6_c00247{left:333.866667pt;}
.x102_c00247{left:336.133333pt;}
.x1_c00247{left:338.266667pt;}
.x10f_c00247{left:339.466667pt;}
.x82_c00247{left:343.333333pt;}
.x94_c00247{left:345.466667pt;}
.x38_c00247{left:347.600000pt;}
.xcb_c00247{left:348.800000pt;}
.xdf_c00247{left:350.133333pt;}
.x11c_c00247{left:351.066667pt;}
.x111_c00247{left:352.133333pt;}
.x9f_c00247{left:353.600000pt;}
.x49_c00247{left:354.666667pt;}
.x69_c00247{left:356.000000pt;}
.xaa_c00247{left:357.333333pt;}
.x77_c00247{left:358.800000pt;}
.x103_c00247{left:360.133333pt;}
.x1a_c00247{left:361.466667pt;}
.x5d_c00247{left:362.800000pt;}
.xb_c00247{left:364.933333pt;}
.x39_c00247{left:365.866667pt;}
.x12a_c00247{left:368.266667pt;}
.x2d_c00247{left:370.266667pt;}
.xdb_c00247{left:374.666667pt;}
.xb8_c00247{left:376.133333pt;}
.xb0_c00247{left:378.133333pt;}
.xc_c00247{left:380.266667pt;}
.x8b_c00247{left:381.200000pt;}
.x10a_c00247{left:382.266667pt;}
.x11d_c00247{left:383.333333pt;}
.x95_c00247{left:386.400000pt;}
.x4a_c00247{left:388.000000pt;}
.xcc_c00247{left:390.400000pt;}
.x3a_c00247{left:393.333333pt;}
.x57_c00247{left:395.200000pt;}
.x5e_c00247{left:397.333333pt;}
.xfe_c00247{left:398.800000pt;}
.xd4_c00247{left:401.200000pt;}
.xd0_c00247{left:402.133333pt;}
.x1b_c00247{left:406.266667pt;}
.xe0_c00247{left:408.000000pt;}
.x78_c00247{left:409.066667pt;}
.xe9_c00247{left:410.933333pt;}
.x83_c00247{left:413.066667pt;}
.x10b_c00247{left:414.266667pt;}
.x117_c00247{left:416.400000pt;}
.x2e_c00247{left:417.333333pt;}
.x96_c00247{left:418.666667pt;}
.x6a_c00247{left:419.733333pt;}
.xa0_c00247{left:422.133333pt;}
.x122_c00247{left:425.733333pt;}
.x130_c00247{left:426.666667pt;}
.x12c_c00247{left:428.266667pt;}
.x79_c00247{left:429.200000pt;}
.x112_c00247{left:430.266667pt;}
.xea_c00247{left:431.466667pt;}
.x3b_c00247{left:432.400000pt;}
.xe1_c00247{left:434.266667pt;}
.xd_c00247{left:436.533333pt;}
.x104_c00247{left:438.000000pt;}
.xa1_c00247{left:439.733333pt;}
.x5f_c00247{left:440.933333pt;}
.xb9_c00247{left:442.666667pt;}
.x4b_c00247{left:447.466667pt;}
.x1c_c00247{left:449.200000pt;}
.xcd_c00247{left:450.533333pt;}
.xc2_c00247{left:452.133333pt;}
.x58_c00247{left:453.066667pt;}
.xab_c00247{left:454.000000pt;}
.x125_c00247{left:455.733333pt;}
.xf7_c00247{left:457.466667pt;}
.x84_c00247{left:459.866667pt;}
.x2f_c00247{left:462.133333pt;}
.xe_c00247{left:463.733333pt;}
.x3c_c00247{left:468.266667pt;}
.x60_c00247{left:470.400000pt;}
.x1d_c00247{left:472.266667pt;}
.xa2_c00247{left:474.000000pt;}
.xc3_c00247{left:476.133333pt;}
.x7a_c00247{left:478.133333pt;}
.x118_c00247{left:481.066667pt;}
.x4c_c00247{left:482.000000pt;}
.x6b_c00247{left:484.000000pt;}
.x85_c00247{left:485.200000pt;}
.xce_c00247{left:489.600000pt;}
.xe2_c00247{left:491.200000pt;}
.xf1_c00247{left:492.800000pt;}
.xac_c00247{left:493.733333pt;}
.x8c_c00247{left:496.000000pt;}
.x119_c00247{left:497.333333pt;}
.xc4_c00247{left:501.066667pt;}
.x97_c00247{left:503.466667pt;}
.xba_c00247{left:504.400000pt;}
.xf_c00247{left:506.000000pt;}
.xa3_c00247{left:506.933333pt;}
.x4d_c00247{left:511.066667pt;}
.xbc_c00247{left:512.800000pt;}
.xd5_c00247{left:514.266667pt;}
.x1e_c00247{left:516.800000pt;}
.x12d_c00247{left:518.533333pt;}
.x7b_c00247{left:520.000000pt;}
.x10_c00247{left:521.733333pt;}
.x30_c00247{left:522.933333pt;}
.x113_c00247{left:525.200000pt;}
.x4e_c00247{left:526.800000pt;}
.x61_c00247{left:528.933333pt;}
.xd1_c00247{left:529.866667pt;}
.xff_c00247{left:533.200000pt;}
.xc5_c00247{left:534.933333pt;}
.x3d_c00247{left:536.400000pt;}
.x7c_c00247{left:540.800000pt;}
.x1f_c00247{left:542.400000pt;}
.x11_c00247{left:545.066667pt;}
.x6c_c00247{left:546.133333pt;}
.x8d_c00247{left:547.466667pt;}
.x105_c00247{left:548.800000pt;}
.x86_c00247{left:549.733333pt;}
.x4f_c00247{left:552.133333pt;}
.x10c_c00247{left:553.466667pt;}
.x11a_c00247{left:555.466667pt;}
.xeb_c00247{left:556.933333pt;}
.xd6_c00247{left:558.133333pt;}
.x62_c00247{left:560.000000pt;}
.xad_c00247{left:561.600000pt;}
.x6d_c00247{left:564.666667pt;}
.xe3_c00247{left:567.066667pt;}
.xbd_c00247{left:570.133333pt;}
.x98_c00247{left:572.000000pt;}
.x20_c00247{left:575.066667pt;}
.x100_c00247{left:576.400000pt;}
.x12_c00247{left:578.400000pt;}
.x63_c00247{left:580.533333pt;}
.x110_c00247{left:582.000000pt;}
.x6e_c00247{left:582.933333pt;}
.x50_c00247{left:585.066667pt;}
.x8e_c00247{left:586.800000pt;}
.xf8_c00247{left:589.200000pt;}
.x114_c00247{left:590.800000pt;}
.xb1_c00247{left:592.933333pt;}
.x7d_c00247{left:596.133333pt;}
.xf2_c00247{left:597.466667pt;}
.x99_c00247{left:598.533333pt;}
.xe4_c00247{left:599.733333pt;}
.x12e_c00247{left:601.066667pt;}
.x3e_c00247{left:602.266667pt;}
.xbb_c00247{left:603.866667pt;}
.x6f_c00247{left:606.933333pt;}
.xa4_c00247{left:608.933333pt;}
.x21_c00247{left:610.533333pt;}
.x51_c00247{left:612.000000pt;}
.x31_c00247{left:613.466667pt;}
.x106_c00247{left:614.400000pt;}
.x3f_c00247{left:616.000000pt;}
.x8f_c00247{left:618.133333pt;}
.x10d_c00247{left:619.066667pt;}
.xf9_c00247{left:620.266667pt;}
.xec_c00247{left:621.866667pt;}
.x7e_c00247{left:624.933333pt;}
.xa5_c00247{left:626.266667pt;}
.x22_c00247{left:628.400000pt;}
.xb2_c00247{left:630.000000pt;}
.xe5_c00247{left:634.000000pt;}
.x32_c00247{left:637.200000pt;}
.x64_c00247{left:638.400000pt;}
.x13_c00247{left:642.133333pt;}
.x40_c00247{left:644.133333pt;}
.x11b_c00247{left:645.066667pt;}
.x10e_c00247{left:647.600000pt;}
.xb3_c00247{left:649.200000pt;}
.x23_c00247{left:652.133333pt;}
.xbe_c00247{left:654.266667pt;}
.xc6_c00247{left:655.866667pt;}
.x9a_c00247{left:659.333333pt;}
.x87_c00247{left:660.800000pt;}
.x2_c00247{left:663.333333pt;}
.xae_c00247{left:664.533333pt;}
.x126_c00247{left:667.600000pt;}
.xb4_c00247{left:670.000000pt;}
.x65_c00247{left:672.933333pt;}
.x7f_c00247{left:673.866667pt;}
.xf3_c00247{left:674.933333pt;}
.x70_c00247{left:676.666667pt;}
.xfa_c00247{left:684.933333pt;}
}





/* 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_c00248 {
    display:none;
  }
  .loading-indicator_c00248.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00248 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_c00248 { 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_c00248" -> "#page-container .classname_c00248")
 */
.pf_c00248 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00248 { /* 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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00248 { /* 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_c00248 { /* 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_c00248 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00248 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00248 {overflow:visible;}
  }
}
.c_c00248 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00248 { /* 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_c00248:after { /* webkit #35443 */
  content: '';
}
.t_c00248:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00248 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 */
}
.__c00248 { /* 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_c00248 { /* info for Javascript */
  display:none;
}
.l_c00248 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00248 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00248 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00248: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_c00248 {
    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_c00248.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00248.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_c00248 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00248{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00248;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.000000;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;}
.m1d_c00248{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m41_c00248{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m79_c00248{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m19_c00248{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m45_c00248{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m13_c00248{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00248{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m10_c00248{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00248{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00248{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m86_c00248{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00248{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00248{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mf_c00248{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m16_c00248{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m84_c00248{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m82_c00248{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m83_c00248{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00248{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00248{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00248{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m87_c00248{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00248{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5_c00248{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md_c00248{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m62_c00248{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m42_c00248{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m61_c00248{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00248{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m85_c00248{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m40_c00248{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00248{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m23_c00248{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m30_c00248{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m29_c00248{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00248{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m81_c00248{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma_c00248{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m53_c00248{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m57_c00248{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00248{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00248{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m47_c00248{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m26_c00248{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00248{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m17_c00248{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m31_c00248{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m49_c00248{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m35_c00248{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00248{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m70_c00248{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m34_c00248{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00248{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00248{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00248{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00248{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00248{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00248{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00248{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m22_c00248{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m64_c00248{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00248{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00248{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00248{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00248{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00248{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m56_c00248{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m59_c00248{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00248{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m51_c00248{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00248{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9_c00248{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m71_c00248{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00248{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m52_c00248{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m37_c00248{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m20_c00248{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m14_c00248{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m65_c00248{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m75_c00248{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m77_c00248{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m74_c00248{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m25_c00248{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00248{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00248{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m76_c00248{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00248{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00248{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m27_c00248{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m66_c00248{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m68_c00248{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00248{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00248{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m28_c00248{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m12_c00248{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc_c00248{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00248{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m60_c00248{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m46_c00248{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m48_c00248{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m58_c00248{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m78_c00248{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m50_c00248{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00248{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m72_c00248{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m38_c00248{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m43_c00248{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m67_c00248{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m33_c00248{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00248{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00248{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18_c00248{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00248{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00248{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m32_c00248{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m55_c00248{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00248{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00248{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m11_c00248{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m21_c00248{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me_c00248{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00248{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m63_c00248{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m15_c00248{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m69_c00248{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00248{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c00248{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00248{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00248{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00248{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00248{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00248{vertical-align:0.000000px;}
.ls0_c00248{letter-spacing:0.000000px;}
.sc__c00248{text-shadow:none;}
.sc0_c00248{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__c00248{-webkit-text-stroke:0px transparent;}
.sc0_c00248{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00248{word-spacing:-10.138889px;}
.ws5_c00248{word-spacing:0.000000px;}
.ws0_c00248{word-spacing:0.277778px;}
.ws1_c00248{word-spacing:4.722222px;}
.ws2_c00248{word-spacing:15.135135px;}
.ws4_c00248{word-spacing:22.962963px;}
.fc0_c00248{color:transparent;}
.fs1_c00248{font-size:42.000000px;}
.fs0_c00248{font-size:60.000000px;}
.y0_c00248{bottom:0.000000px;}
.y1a_c00248{bottom:142.950000px;}
.y19_c00248{bottom:159.450000px;}
.y18_c00248{bottom:174.900000px;}
.y17_c00248{bottom:206.700000px;}
.y16_c00248{bottom:226.650000px;}
.y15_c00248{bottom:246.450000px;}
.y14_c00248{bottom:266.550000px;}
.y13_c00248{bottom:286.650000px;}
.y12_c00248{bottom:306.450000px;}
.y11_c00248{bottom:326.250000px;}
.y10_c00248{bottom:346.050000px;}
.yf_c00248{bottom:366.150000px;}
.ye_c00248{bottom:386.250000px;}
.yd_c00248{bottom:406.500000px;}
.yc_c00248{bottom:426.300000px;}
.yb_c00248{bottom:462.300000px;}
.ya_c00248{bottom:849.300000px;}
.y9_c00248{bottom:869.850000px;}
.y8_c00248{bottom:889.950000px;}
.y7_c00248{bottom:909.450000px;}
.y6_c00248{bottom:929.550000px;}
.y5_c00248{bottom:949.650000px;}
.y4_c00248{bottom:969.450000px;}
.y3_c00248{bottom:988.950000px;}
.y2_c00248{bottom:1009.500000px;}
.y1_c00248{bottom:1048.350000px;}
.h3_c00248{height:42.000000px;}
.h2_c00248{height:60.000000px;}
.h0_c00248{height:1166.759949px;}
.h1_c00248{height:1167.000000px;}
.w0_c00248{width:918.720063px;}
.w1_c00248{width:918.750000px;}
.x0_c00248{left:0.000000px;}
.xa3_c00248{left:139.650000px;}
.x46_c00248{left:140.700000px;}
.x3_c00248{left:141.900000px;}
.x1_c00248{left:143.700000px;}
.xbb_c00248{left:154.650000px;}
.xde_c00248{left:159.900000px;}
.xa4_c00248{left:163.050000px;}
.x6e_c00248{left:167.850000px;}
.x84_c00248{left:171.300000px;}
.x19_c00248{left:172.800000px;}
.xc1_c00248{left:173.850000px;}
.x2c_c00248{left:175.800000px;}
.xca_c00248{left:177.450000px;}
.x17_c00248{left:181.950000px;}
.x7b_c00248{left:186.900000px;}
.x47_c00248{left:195.000000px;}
.x4_c00248{left:197.400000px;}
.xc2_c00248{left:199.800000px;}
.x2d_c00248{left:201.750000px;}
.x56_c00248{left:207.000000px;}
.x3b_c00248{left:209.850000px;}
.x99_c00248{left:211.500000px;}
.x75_c00248{left:213.450000px;}
.x5_c00248{left:214.650000px;}
.xdf_c00248{left:215.700000px;}
.x1a_c00248{left:216.750000px;}
.x48_c00248{left:218.700000px;}
.xcb_c00248{left:220.650000px;}
.x7c_c00248{left:224.400000px;}
.x85_c00248{left:226.350000px;}
.x63_c00248{left:227.400000px;}
.x6f_c00248{left:229.350000px;}
.x76_c00248{left:231.450000px;}
.x1b_c00248{left:235.050000px;}
.xbc_c00248{left:237.750000px;}
.x18_c00248{left:239.250000px;}
.x57_c00248{left:244.500000px;}
.xa5_c00248{left:246.150000px;}
.xaf_c00248{left:247.200000px;}
.x86_c00248{left:249.000000px;}
.x6_c00248{left:250.650000px;}
.xe5_c00248{left:252.900000px;}
.x9a_c00248{left:256.200000px;}
.x49_c00248{left:260.850000px;}
.x2e_c00248{left:264.000000px;}
.x1c_c00248{left:265.950000px;}
.xa6_c00248{left:269.850000px;}
.x58_c00248{left:272.550000px;}
.x64_c00248{left:276.000000px;}
.x7_c00248{left:277.350000px;}
.xb6_c00248{left:278.550000px;}
.xb0_c00248{left:280.650000px;}
.x4a_c00248{left:282.450000px;}
.xcc_c00248{left:284.700000px;}
.xc3_c00248{left:285.900000px;}
.x87_c00248{left:288.300000px;}
.x1d_c00248{left:293.250000px;}
.x7d_c00248{left:296.100000px;}
.xe6_c00248{left:302.550000px;}
.x4b_c00248{left:304.800000px;}
.xd3_c00248{left:306.900000px;}
.x3c_c00248{left:309.150000px;}
.x2f_c00248{left:312.300000px;}
.x8_c00248{left:316.200000px;}
.x7e_c00248{left:317.400000px;}
.x77_c00248{left:321.450000px;}
.xc4_c00248{left:323.250000px;}
.x59_c00248{left:325.500000px;}
.xe0_c00248{left:327.300000px;}
.x65_c00248{left:328.500000px;}
.x1e_c00248{left:330.750000px;}
.x9_c00248{left:336.750000px;}
.x5a_c00248{left:346.050000px;}
.x88_c00248{left:347.400000px;}
.x9b_c00248{left:351.600000px;}
.xe1_c00248{left:354.300000px;}
.xd4_c00248{left:357.600000px;}
.x4c_c00248{left:360.900000px;}
.x9c_c00248{left:362.400000px;}
.xcd_c00248{left:364.200000px;}
.x3d_c00248{left:371.100000px;}
.xe7_c00248{left:373.050000px;}
.x30_c00248{left:375.600000px;}
.xa_c00248{left:377.850000px;}
.x1f_c00248{left:381.150000px;}
.x70_c00248{left:383.100000px;}
.xce_c00248{left:384.750000px;}
.x78_c00248{left:390.600000px;}
.x3e_c00248{left:391.650000px;}
.x20_c00248{left:393.450000px;}
.xb1_c00248{left:394.650000px;}
.xd5_c00248{left:396.900000px;}
.xe8_c00248{left:400.350000px;}
.x71_c00248{left:403.650000px;}
.x4d_c00248{left:406.650000px;}
.xa7_c00248{left:408.000000px;}
.x31_c00248{left:409.500000px;}
.x5b_c00248{left:414.450000px;}
.x72_c00248{left:415.950000px;}
.x90_c00248{left:417.300000px;}
.x9d_c00248{left:419.250000px;}
.xc5_c00248{left:422.250000px;}
.x21_c00248{left:427.950000px;}
.x66_c00248{left:429.300000px;}
.xb_c00248{left:433.650000px;}
.x5c_c00248{left:436.800000px;}
.x3f_c00248{left:438.750000px;}
.x2_c00248{left:440.700000px;}
.x32_c00248{left:444.450000px;}
.xa8_c00248{left:446.550000px;}
.x89_c00248{left:451.350000px;}
.x22_c00248{left:453.450000px;}
.xc_c00248{left:454.950000px;}
.x9e_c00248{left:456.000000px;}
.xd6_c00248{left:457.050000px;}
.xbd_c00248{left:458.250000px;}
.x33_c00248{left:465.000000px;}
.xa9_c00248{left:467.400000px;}
.x7f_c00248{left:473.550000px;}
.xcf_c00248{left:474.750000px;}
.x5d_c00248{left:476.400000px;}
.xd_c00248{left:478.050000px;}
.x4e_c00248{left:480.150000px;}
.xe9_c00248{left:483.900000px;}
.x8a_c00248{left:485.850000px;}
.x79_c00248{left:487.350000px;}
.x73_c00248{left:489.450000px;}
.x34_c00248{left:493.050000px;}
.x67_c00248{left:494.400000px;}
.xc6_c00248{left:497.250000px;}
.x91_c00248{left:504.450000px;}
.xb7_c00248{left:506.100000px;}
.xe2_c00248{left:509.850000px;}
.x4f_c00248{left:511.050000px;}
.x40_c00248{left:513.600000px;}
.x23_c00248{left:514.650000px;}
.x8b_c00248{left:520.050000px;}
.xbe_c00248{left:522.000000px;}
.x92_c00248{left:523.950000px;}
.xd7_c00248{left:525.150000px;}
.xaa_c00248{left:526.350000px;}
.x74_c00248{left:531.600000px;}
.x50_c00248{left:533.400000px;}
.x80_c00248{left:535.500000px;}
.xe_c00248{left:541.050000px;}
.x41_c00248{left:546.300000px;}
.xb2_c00248{left:549.750000px;}
.x5e_c00248{left:550.950000px;}
.xd8_c00248{left:553.650000px;}
.x35_c00248{left:555.750000px;}
.x68_c00248{left:560.700000px;}
.x51_c00248{left:566.100000px;}
.x93_c00248{left:572.550000px;}
.x9f_c00248{left:574.350000px;}
.x42_c00248{left:577.200000px;}
.x81_c00248{left:579.000000px;}
.xc7_c00248{left:580.800000px;}
.x24_c00248{left:582.000000px;}
.xe3_c00248{left:585.450000px;}
.xb8_c00248{left:586.800000px;}
.x69_c00248{left:588.450000px;}
.xd0_c00248{left:590.550000px;}
.x8c_c00248{left:594.150000px;}
.xf_c00248{left:595.350000px;}
.x43_c00248{left:600.300000px;}
.xab_c00248{left:601.650000px;}
.x36_c00248{left:602.850000px;}
.x82_c00248{left:605.700000px;}
.x52_c00248{left:610.350000px;}
.x5f_c00248{left:611.400000px;}
.xb3_c00248{left:614.850000px;}
.xd9_c00248{left:617.400000px;}
.x94_c00248{left:619.800000px;}
.x37_c00248{left:623.400000px;}
.x25_c00248{left:626.250000px;}
.x10_c00248{left:628.050000px;}
.xbf_c00248{left:630.450000px;}
.xb9_c00248{left:632.100000px;}
.x95_c00248{left:635.250000px;}
.x6a_c00248{left:638.850000px;}
.x26_c00248{left:641.400000px;}
.xd1_c00248{left:643.500000px;}
.x83_c00248{left:646.800000px;}
.x11_c00248{left:647.850000px;}
.xda_c00248{left:650.100000px;}
.x38_c00248{left:651.450000px;}
.x60_c00248{left:652.500000px;}
.xac_c00248{left:654.150000px;}
.xd2_c00248{left:655.800000px;}
.x8d_c00248{left:657.900000px;}
.xb4_c00248{left:663.750000px;}
.xdb_c00248{left:665.250000px;}
.x12_c00248{left:671.250000px;}
.xea_c00248{left:673.650000px;}
.x44_c00248{left:675.600000px;}
.xc8_c00248{left:677.250000px;}
.x61_c00248{left:683.100000px;}
.xa0_c00248{left:685.350000px;}
.x8e_c00248{left:689.250000px;}
.x27_c00248{left:692.850000px;}
.x53_c00248{left:697.050000px;}
.x96_c00248{left:700.350000px;}
.xc9_c00248{left:702.750000px;}
.x7a_c00248{left:704.100000px;}
.x45_c00248{left:705.900000px;}
.x28_c00248{left:710.550000px;}
.xa1_c00248{left:715.650000px;}
.xad_c00248{left:718.200000px;}
.x13_c00248{left:719.550000px;}
.x54_c00248{left:723.300000px;}
.xeb_c00248{left:724.800000px;}
.x6b_c00248{left:726.600000px;}
.xdc_c00248{left:731.100000px;}
.xba_c00248{left:734.400000px;}
.x29_c00248{left:736.050000px;}
.xe4_c00248{left:737.550000px;}
.x39_c00248{left:738.900000px;}
.x14_c00248{left:741.900000px;}
.x62_c00248{left:744.300000px;}
.x97_c00248{left:745.350000px;}
.xc0_c00248{left:749.850000px;}
.xa2_c00248{left:750.900000px;}
.x6c_c00248{left:753.900000px;}
.xb5_c00248{left:757.800000px;}
.x3a_c00248{left:766.200000px;}
.x98_c00248{left:769.500000px;}
.x55_c00248{left:772.200000px;}
.x2a_c00248{left:773.850000px;}
.x15_c00248{left:786.150000px;}
.x8f_c00248{left:788.250000px;}
.xae_c00248{left:795.900000px;}
.x6d_c00248{left:797.850000px;}
.xdd_c00248{left:799.500000px;}
.x16_c00248{left:803.400000px;}
.x2b_c00248{left:806.550000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws3_c00248{word-spacing:-9.012346pt;}
.ws5_c00248{word-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.246914pt;}
.ws1_c00248{word-spacing:4.197531pt;}
.ws2_c00248{word-spacing:13.453453pt;}
.ws4_c00248{word-spacing:20.411523pt;}
.fs1_c00248{font-size:37.333333pt;}
.fs0_c00248{font-size:53.333333pt;}
.y0_c00248{bottom:0.000000pt;}
.y1a_c00248{bottom:127.066667pt;}
.y19_c00248{bottom:141.733333pt;}
.y18_c00248{bottom:155.466667pt;}
.y17_c00248{bottom:183.733333pt;}
.y16_c00248{bottom:201.466667pt;}
.y15_c00248{bottom:219.066667pt;}
.y14_c00248{bottom:236.933333pt;}
.y13_c00248{bottom:254.800000pt;}
.y12_c00248{bottom:272.400000pt;}
.y11_c00248{bottom:290.000000pt;}
.y10_c00248{bottom:307.600000pt;}
.yf_c00248{bottom:325.466667pt;}
.ye_c00248{bottom:343.333333pt;}
.yd_c00248{bottom:361.333333pt;}
.yc_c00248{bottom:378.933333pt;}
.yb_c00248{bottom:410.933333pt;}
.ya_c00248{bottom:754.933333pt;}
.y9_c00248{bottom:773.200000pt;}
.y8_c00248{bottom:791.066667pt;}
.y7_c00248{bottom:808.400000pt;}
.y6_c00248{bottom:826.266667pt;}
.y5_c00248{bottom:844.133333pt;}
.y4_c00248{bottom:861.733333pt;}
.y3_c00248{bottom:879.066667pt;}
.y2_c00248{bottom:897.333333pt;}
.y1_c00248{bottom:931.866667pt;}
.h3_c00248{height:37.333333pt;}
.h2_c00248{height:53.333333pt;}
.h0_c00248{height:1037.119955pt;}
.h1_c00248{height:1037.333333pt;}
.w0_c00248{width:816.640056pt;}
.w1_c00248{width:816.666667pt;}
.x0_c00248{left:0.000000pt;}
.xa3_c00248{left:124.133333pt;}
.x46_c00248{left:125.066667pt;}
.x3_c00248{left:126.133333pt;}
.x1_c00248{left:127.733333pt;}
.xbb_c00248{left:137.466667pt;}
.xde_c00248{left:142.133333pt;}
.xa4_c00248{left:144.933333pt;}
.x6e_c00248{left:149.200000pt;}
.x84_c00248{left:152.266667pt;}
.x19_c00248{left:153.600000pt;}
.xc1_c00248{left:154.533333pt;}
.x2c_c00248{left:156.266667pt;}
.xca_c00248{left:157.733333pt;}
.x17_c00248{left:161.733333pt;}
.x7b_c00248{left:166.133333pt;}
.x47_c00248{left:173.333333pt;}
.x4_c00248{left:175.466667pt;}
.xc2_c00248{left:177.600000pt;}
.x2d_c00248{left:179.333333pt;}
.x56_c00248{left:184.000000pt;}
.x3b_c00248{left:186.533333pt;}
.x99_c00248{left:188.000000pt;}
.x75_c00248{left:189.733333pt;}
.x5_c00248{left:190.800000pt;}
.xdf_c00248{left:191.733333pt;}
.x1a_c00248{left:192.666667pt;}
.x48_c00248{left:194.400000pt;}
.xcb_c00248{left:196.133333pt;}
.x7c_c00248{left:199.466667pt;}
.x85_c00248{left:201.200000pt;}
.x63_c00248{left:202.133333pt;}
.x6f_c00248{left:203.866667pt;}
.x76_c00248{left:205.733333pt;}
.x1b_c00248{left:208.933333pt;}
.xbc_c00248{left:211.333333pt;}
.x18_c00248{left:212.666667pt;}
.x57_c00248{left:217.333333pt;}
.xa5_c00248{left:218.800000pt;}
.xaf_c00248{left:219.733333pt;}
.x86_c00248{left:221.333333pt;}
.x6_c00248{left:222.800000pt;}
.xe5_c00248{left:224.800000pt;}
.x9a_c00248{left:227.733333pt;}
.x49_c00248{left:231.866667pt;}
.x2e_c00248{left:234.666667pt;}
.x1c_c00248{left:236.400000pt;}
.xa6_c00248{left:239.866667pt;}
.x58_c00248{left:242.266667pt;}
.x64_c00248{left:245.333333pt;}
.x7_c00248{left:246.533333pt;}
.xb6_c00248{left:247.600000pt;}
.xb0_c00248{left:249.466667pt;}
.x4a_c00248{left:251.066667pt;}
.xcc_c00248{left:253.066667pt;}
.xc3_c00248{left:254.133333pt;}
.x87_c00248{left:256.266667pt;}
.x1d_c00248{left:260.666667pt;}
.x7d_c00248{left:263.200000pt;}
.xe6_c00248{left:268.933333pt;}
.x4b_c00248{left:270.933333pt;}
.xd3_c00248{left:272.800000pt;}
.x3c_c00248{left:274.800000pt;}
.x2f_c00248{left:277.600000pt;}
.x8_c00248{left:281.066667pt;}
.x7e_c00248{left:282.133333pt;}
.x77_c00248{left:285.733333pt;}
.xc4_c00248{left:287.333333pt;}
.x59_c00248{left:289.333333pt;}
.xe0_c00248{left:290.933333pt;}
.x65_c00248{left:292.000000pt;}
.x1e_c00248{left:294.000000pt;}
.x9_c00248{left:299.333333pt;}
.x5a_c00248{left:307.600000pt;}
.x88_c00248{left:308.800000pt;}
.x9b_c00248{left:312.533333pt;}
.xe1_c00248{left:314.933333pt;}
.xd4_c00248{left:317.866667pt;}
.x4c_c00248{left:320.800000pt;}
.x9c_c00248{left:322.133333pt;}
.xcd_c00248{left:323.733333pt;}
.x3d_c00248{left:329.866667pt;}
.xe7_c00248{left:331.600000pt;}
.x30_c00248{left:333.866667pt;}
.xa_c00248{left:335.866667pt;}
.x1f_c00248{left:338.800000pt;}
.x70_c00248{left:340.533333pt;}
.xce_c00248{left:342.000000pt;}
.x78_c00248{left:347.200000pt;}
.x3e_c00248{left:348.133333pt;}
.x20_c00248{left:349.733333pt;}
.xb1_c00248{left:350.800000pt;}
.xd5_c00248{left:352.800000pt;}
.xe8_c00248{left:355.866667pt;}
.x71_c00248{left:358.800000pt;}
.x4d_c00248{left:361.466667pt;}
.xa7_c00248{left:362.666667pt;}
.x31_c00248{left:364.000000pt;}
.x5b_c00248{left:368.400000pt;}
.x72_c00248{left:369.733333pt;}
.x90_c00248{left:370.933333pt;}
.x9d_c00248{left:372.666667pt;}
.xc5_c00248{left:375.333333pt;}
.x21_c00248{left:380.400000pt;}
.x66_c00248{left:381.600000pt;}
.xb_c00248{left:385.466667pt;}
.x5c_c00248{left:388.266667pt;}
.x3f_c00248{left:390.000000pt;}
.x2_c00248{left:391.733333pt;}
.x32_c00248{left:395.066667pt;}
.xa8_c00248{left:396.933333pt;}
.x89_c00248{left:401.200000pt;}
.x22_c00248{left:403.066667pt;}
.xc_c00248{left:404.400000pt;}
.x9e_c00248{left:405.333333pt;}
.xd6_c00248{left:406.266667pt;}
.xbd_c00248{left:407.333333pt;}
.x33_c00248{left:413.333333pt;}
.xa9_c00248{left:415.466667pt;}
.x7f_c00248{left:420.933333pt;}
.xcf_c00248{left:422.000000pt;}
.x5d_c00248{left:423.466667pt;}
.xd_c00248{left:424.933333pt;}
.x4e_c00248{left:426.800000pt;}
.xe9_c00248{left:430.133333pt;}
.x8a_c00248{left:431.866667pt;}
.x79_c00248{left:433.200000pt;}
.x73_c00248{left:435.066667pt;}
.x34_c00248{left:438.266667pt;}
.x67_c00248{left:439.466667pt;}
.xc6_c00248{left:442.000000pt;}
.x91_c00248{left:448.400000pt;}
.xb7_c00248{left:449.866667pt;}
.xe2_c00248{left:453.200000pt;}
.x4f_c00248{left:454.266667pt;}
.x40_c00248{left:456.533333pt;}
.x23_c00248{left:457.466667pt;}
.x8b_c00248{left:462.266667pt;}
.xbe_c00248{left:464.000000pt;}
.x92_c00248{left:465.733333pt;}
.xd7_c00248{left:466.800000pt;}
.xaa_c00248{left:467.866667pt;}
.x74_c00248{left:472.533333pt;}
.x50_c00248{left:474.133333pt;}
.x80_c00248{left:476.000000pt;}
.xe_c00248{left:480.933333pt;}
.x41_c00248{left:485.600000pt;}
.xb2_c00248{left:488.666667pt;}
.x5e_c00248{left:489.733333pt;}
.xd8_c00248{left:492.133333pt;}
.x35_c00248{left:494.000000pt;}
.x68_c00248{left:498.400000pt;}
.x51_c00248{left:503.200000pt;}
.x93_c00248{left:508.933333pt;}
.x9f_c00248{left:510.533333pt;}
.x42_c00248{left:513.066667pt;}
.x81_c00248{left:514.666667pt;}
.xc7_c00248{left:516.266667pt;}
.x24_c00248{left:517.333333pt;}
.xe3_c00248{left:520.400000pt;}
.xb8_c00248{left:521.600000pt;}
.x69_c00248{left:523.066667pt;}
.xd0_c00248{left:524.933333pt;}
.x8c_c00248{left:528.133333pt;}
.xf_c00248{left:529.200000pt;}
.x43_c00248{left:533.600000pt;}
.xab_c00248{left:534.800000pt;}
.x36_c00248{left:535.866667pt;}
.x82_c00248{left:538.400000pt;}
.x52_c00248{left:542.533333pt;}
.x5f_c00248{left:543.466667pt;}
.xb3_c00248{left:546.533333pt;}
.xd9_c00248{left:548.800000pt;}
.x94_c00248{left:550.933333pt;}
.x37_c00248{left:554.133333pt;}
.x25_c00248{left:556.666667pt;}
.x10_c00248{left:558.266667pt;}
.xbf_c00248{left:560.400000pt;}
.xb9_c00248{left:561.866667pt;}
.x95_c00248{left:564.666667pt;}
.x6a_c00248{left:567.866667pt;}
.x26_c00248{left:570.133333pt;}
.xd1_c00248{left:572.000000pt;}
.x83_c00248{left:574.933333pt;}
.x11_c00248{left:575.866667pt;}
.xda_c00248{left:577.866667pt;}
.x38_c00248{left:579.066667pt;}
.x60_c00248{left:580.000000pt;}
.xac_c00248{left:581.466667pt;}
.xd2_c00248{left:582.933333pt;}
.x8d_c00248{left:584.800000pt;}
.xb4_c00248{left:590.000000pt;}
.xdb_c00248{left:591.333333pt;}
.x12_c00248{left:596.666667pt;}
.xea_c00248{left:598.800000pt;}
.x44_c00248{left:600.533333pt;}
.xc8_c00248{left:602.000000pt;}
.x61_c00248{left:607.200000pt;}
.xa0_c00248{left:609.200000pt;}
.x8e_c00248{left:612.666667pt;}
.x27_c00248{left:615.866667pt;}
.x53_c00248{left:619.600000pt;}
.x96_c00248{left:622.533333pt;}
.xc9_c00248{left:624.666667pt;}
.x7a_c00248{left:625.866667pt;}
.x45_c00248{left:627.466667pt;}
.x28_c00248{left:631.600000pt;}
.xa1_c00248{left:636.133333pt;}
.xad_c00248{left:638.400000pt;}
.x13_c00248{left:639.600000pt;}
.x54_c00248{left:642.933333pt;}
.xeb_c00248{left:644.266667pt;}
.x6b_c00248{left:645.866667pt;}
.xdc_c00248{left:649.866667pt;}
.xba_c00248{left:652.800000pt;}
.x29_c00248{left:654.266667pt;}
.xe4_c00248{left:655.600000pt;}
.x39_c00248{left:656.800000pt;}
.x14_c00248{left:659.466667pt;}
.x62_c00248{left:661.600000pt;}
.x97_c00248{left:662.533333pt;}
.xc0_c00248{left:666.533333pt;}
.xa2_c00248{left:667.466667pt;}
.x6c_c00248{left:670.133333pt;}
.xb5_c00248{left:673.600000pt;}
.x3a_c00248{left:681.066667pt;}
.x98_c00248{left:684.000000pt;}
.x55_c00248{left:686.400000pt;}
.x2a_c00248{left:687.866667pt;}
.x15_c00248{left:698.800000pt;}
.x8f_c00248{left:700.666667pt;}
.xae_c00248{left:707.466667pt;}
.x6d_c00248{left:709.200000pt;}
.xdd_c00248{left:710.666667pt;}
.x16_c00248{left:714.133333pt;}
.x2b_c00248{left:716.933333pt;}
}





/* 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_c00249 {
    display:none;
  }
  .loading-indicator_c00249.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00249 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_c00249 { 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_c00249" -> "#page-container .classname_c00249")
 */
.pf_c00249 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00249 { /* 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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00249 { /* 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_c00249 { /* 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_c00249 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00249 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00249 {overflow:visible;}
  }
}
.c_c00249 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00249 { /* 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_c00249:after { /* webkit #35443 */
  content: '';
}
.t_c00249:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00249 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 */
}
.__c00249 { /* 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_c00249 { /* info for Javascript */
  display:none;
}
.l_c00249 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00249 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00249 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00249: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_c00249 {
    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_c00249.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00249.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_c00249 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00249{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.000000;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;}
.m34_c00249{transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00249{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m16_c00249{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00249{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m32_c00249{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m31_c00249{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m28_c00249{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m15_c00249{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m12_c00249{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.md_c00249{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00249{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9_c00249{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m19_c00249{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m29_c00249{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m14_c00249{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7_c00249{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00249{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m38_c00249{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m21_c00249{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m10_c00249{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00249{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me_c00249{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00249{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00249{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m24_c00249{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00249{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m17_c00249{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00249{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m33_c00249{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m25_c00249{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m36_c00249{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m27_c00249{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00249{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m26_c00249{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m35_c00249{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m39_c00249{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m30_c00249{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00249{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m37_c00249{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00249{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00249{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{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__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:transparent;}
.fs2_c00249{font-size:42.000000px;}
.fs0_c00249{font-size:48.000000px;}
.fs1_c00249{font-size:60.000000px;}
.y0_c00249{bottom:0.000000px;}
.yb_c00249{bottom:146.850000px;}
.ya_c00249{bottom:185.400000px;}
.y9_c00249{bottom:533.550000px;}
.y8_c00249{bottom:553.650000px;}
.y7_c00249{bottom:573.450000px;}
.y6_c00249{bottom:604.050000px;}
.y5_c00249{bottom:604.800000px;}
.y4_c00249{bottom:989.400000px;}
.y3_c00249{bottom:1009.500000px;}
.y2_c00249{bottom:1046.850000px;}
.y1_c00249{bottom:1047.900000px;}
.h4_c00249{height:42.000000px;}
.h2_c00249{height:48.000000px;}
.h3_c00249{height:60.000000px;}
.h0_c00249{height:1166.759949px;}
.h1_c00249{height:1167.000000px;}
.w0_c00249{width:918.720063px;}
.w1_c00249{width:918.750000px;}
.x0_c00249{left:0.000000px;}
.x30_c00249{left:95.400000px;}
.x3_c00249{left:97.200000px;}
.x22_c00249{left:126.750000px;}
.x4_c00249{left:144.000000px;}
.x18_c00249{left:149.700000px;}
.x23_c00249{left:160.200000px;}
.x31_c00249{left:163.500000px;}
.x12_c00249{left:165.150000px;}
.x19_c00249{left:170.250000px;}
.x24_c00249{left:175.350000px;}
.x1a_c00249{left:181.050000px;}
.x5_c00249{left:185.100000px;}
.x25_c00249{left:193.050000px;}
.x3e_c00249{left:205.500000px;}
.x6_c00249{left:215.400000px;}
.x3f_c00249{left:218.100000px;}
.x13_c00249{left:221.250000px;}
.x26_c00249{left:240.600000px;}
.x47_c00249{left:251.700000px;}
.x32_c00249{left:254.700000px;}
.x40_c00249{left:257.400000px;}
.x1b_c00249{left:262.800000px;}
.x48_c00249{left:265.050000px;}
.x14_c00249{left:266.550000px;}
.x27_c00249{left:276.900000px;}
.x15_c00249{left:284.550000px;}
.x33_c00249{left:292.800000px;}
.x41_c00249{left:298.800000px;}
.x28_c00249{left:302.850000px;}
.x7_c00249{left:304.650000px;}
.x16_c00249{left:311.850000px;}
.x8_c00249{left:329.550000px;}
.x29_c00249{left:342.150000px;}
.x49_c00249{left:343.950000px;}
.x34_c00249{left:351.900000px;}
.x4a_c00249{left:352.950000px;}
.x9_c00249{left:362.700000px;}
.x17_c00249{left:373.350000px;}
.x4b_c00249{left:391.800000px;}
.x1_c00249{left:396.000000px;}
.x35_c00249{left:407.700000px;}
.x36_c00249{left:431.400000px;}
.xa_c00249{left:432.900000px;}
.x2a_c00249{left:443.700000px;}
.xb_c00249{left:456.600000px;}
.x37_c00249{left:473.550000px;}
.x4c_c00249{left:477.450000px;}
.xc_c00249{left:485.400000px;}
.x1c_c00249{left:486.750000px;}
.x2b_c00249{left:492.600000px;}
.x4d_c00249{left:505.500000px;}
.x1d_c00249{left:507.600000px;}
.x2c_c00249{left:514.500000px;}
.xd_c00249{left:516.750000px;}
.x1e_c00249{left:519.450000px;}
.x4e_c00249{left:520.650000px;}
.x42_c00249{left:535.650000px;}
.x38_c00249{left:536.850000px;}
.x2d_c00249{left:543.600000px;}
.x43_c00249{left:556.200000px;}
.x1f_c00249{left:561.900000px;}
.x44_c00249{left:568.050000px;}
.x39_c00249{left:574.350000px;}
.x4f_c00249{left:581.550000px;}
.xe_c00249{left:586.650000px;}
.xf_c00249{left:597.750000px;}
.x20_c00249{left:600.750000px;}
.x45_c00249{left:607.350000px;}
.x21_c00249{left:642.450000px;}
.x46_c00249{left:648.750000px;}
.x3a_c00249{left:649.950000px;}
.x2e_c00249{left:651.900000px;}
.x3b_c00249{left:671.550000px;}
.x10_c00249{left:683.850000px;}
.x3c_c00249{left:700.050000px;}
.x2f_c00249{left:714.600000px;}
.x3d_c00249{left:736.800000px;}
.x2_c00249{left:739.500000px;}
.x11_c00249{left:754.800000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs2_c00249{font-size:37.333333pt;}
.fs0_c00249{font-size:42.666667pt;}
.fs1_c00249{font-size:53.333333pt;}
.y0_c00249{bottom:0.000000pt;}
.yb_c00249{bottom:130.533333pt;}
.ya_c00249{bottom:164.800000pt;}
.y9_c00249{bottom:474.266667pt;}
.y8_c00249{bottom:492.133333pt;}
.y7_c00249{bottom:509.733333pt;}
.y6_c00249{bottom:536.933333pt;}
.y5_c00249{bottom:537.600000pt;}
.y4_c00249{bottom:879.466667pt;}
.y3_c00249{bottom:897.333333pt;}
.y2_c00249{bottom:930.533333pt;}
.y1_c00249{bottom:931.466667pt;}
.h4_c00249{height:37.333333pt;}
.h2_c00249{height:42.666667pt;}
.h3_c00249{height:53.333333pt;}
.h0_c00249{height:1037.119955pt;}
.h1_c00249{height:1037.333333pt;}
.w0_c00249{width:816.640056pt;}
.w1_c00249{width:816.666667pt;}
.x0_c00249{left:0.000000pt;}
.x30_c00249{left:84.800000pt;}
.x3_c00249{left:86.400000pt;}
.x22_c00249{left:112.666667pt;}
.x4_c00249{left:128.000000pt;}
.x18_c00249{left:133.066667pt;}
.x23_c00249{left:142.400000pt;}
.x31_c00249{left:145.333333pt;}
.x12_c00249{left:146.800000pt;}
.x19_c00249{left:151.333333pt;}
.x24_c00249{left:155.866667pt;}
.x1a_c00249{left:160.933333pt;}
.x5_c00249{left:164.533333pt;}
.x25_c00249{left:171.600000pt;}
.x3e_c00249{left:182.666667pt;}
.x6_c00249{left:191.466667pt;}
.x3f_c00249{left:193.866667pt;}
.x13_c00249{left:196.666667pt;}
.x26_c00249{left:213.866667pt;}
.x47_c00249{left:223.733333pt;}
.x32_c00249{left:226.400000pt;}
.x40_c00249{left:228.800000pt;}
.x1b_c00249{left:233.600000pt;}
.x48_c00249{left:235.600000pt;}
.x14_c00249{left:236.933333pt;}
.x27_c00249{left:246.133333pt;}
.x15_c00249{left:252.933333pt;}
.x33_c00249{left:260.266667pt;}
.x41_c00249{left:265.600000pt;}
.x28_c00249{left:269.200000pt;}
.x7_c00249{left:270.800000pt;}
.x16_c00249{left:277.200000pt;}
.x8_c00249{left:292.933333pt;}
.x29_c00249{left:304.133333pt;}
.x49_c00249{left:305.733333pt;}
.x34_c00249{left:312.800000pt;}
.x4a_c00249{left:313.733333pt;}
.x9_c00249{left:322.400000pt;}
.x17_c00249{left:331.866667pt;}
.x4b_c00249{left:348.266667pt;}
.x1_c00249{left:352.000000pt;}
.x35_c00249{left:362.400000pt;}
.x36_c00249{left:383.466667pt;}
.xa_c00249{left:384.800000pt;}
.x2a_c00249{left:394.400000pt;}
.xb_c00249{left:405.866667pt;}
.x37_c00249{left:420.933333pt;}
.x4c_c00249{left:424.400000pt;}
.xc_c00249{left:431.466667pt;}
.x1c_c00249{left:432.666667pt;}
.x2b_c00249{left:437.866667pt;}
.x4d_c00249{left:449.333333pt;}
.x1d_c00249{left:451.200000pt;}
.x2c_c00249{left:457.333333pt;}
.xd_c00249{left:459.333333pt;}
.x1e_c00249{left:461.733333pt;}
.x4e_c00249{left:462.800000pt;}
.x42_c00249{left:476.133333pt;}
.x38_c00249{left:477.200000pt;}
.x2d_c00249{left:483.200000pt;}
.x43_c00249{left:494.400000pt;}
.x1f_c00249{left:499.466667pt;}
.x44_c00249{left:504.933333pt;}
.x39_c00249{left:510.533333pt;}
.x4f_c00249{left:516.933333pt;}
.xe_c00249{left:521.466667pt;}
.xf_c00249{left:531.333333pt;}
.x20_c00249{left:534.000000pt;}
.x45_c00249{left:539.866667pt;}
.x21_c00249{left:571.066667pt;}
.x46_c00249{left:576.666667pt;}
.x3a_c00249{left:577.733333pt;}
.x2e_c00249{left:579.466667pt;}
.x3b_c00249{left:596.933333pt;}
.x10_c00249{left:607.866667pt;}
.x3c_c00249{left:622.266667pt;}
.x2f_c00249{left:635.200000pt;}
.x3d_c00249{left:654.933333pt;}
.x2_c00249{left:657.333333pt;}
.x11_c00249{left:670.933333pt;}
}





/* 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_c00250 {
    display:none;
  }
  .loading-indicator_c00250.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00250 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_c00250 { 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_c00250" -> "#page-container .classname_c00250")
 */
.pf_c00250 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00250 { /* 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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00250 { /* 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_c00250 { /* 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_c00250 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00250 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00250 {overflow:visible;}
  }
}
.c_c00250 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00250 { /* 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_c00250:after { /* webkit #35443 */
  content: '';
}
.t_c00250:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00250 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 */
}
.__c00250 { /* 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_c00250 { /* info for Javascript */
  display:none;
}
.l_c00250 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00250 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00250 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00250: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_c00250 {
    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_c00250.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00250.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_c00250 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00250{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00250;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.000000;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;}
.m11_c00250{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m13_c00250{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00250{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m9_c00250{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00250{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mf_c00250{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00250{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m12_c00250{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00250{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00250{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00250{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00250{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m18_c00250{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.me_c00250{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4_c00250{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00250{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2_c00250{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mc_c00250{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00250{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m30_c00250{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00250{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5_c00250{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m17_c00250{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00250{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m29_c00250{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00250{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m25_c00250{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00250{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m24_c00250{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m28_c00250{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m21_c00250{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m23_c00250{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00250{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m20_c00250{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m26_c00250{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00250{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00250{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27_c00250{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_c00250{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3_c00250{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00250{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m19_c00250{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m22_c00250{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00250{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m0_c00250{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7_c00250{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md_c00250{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m1_c00250{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m10_c00250{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.v0_c00250{vertical-align:0.000000px;}
.ls0_c00250{letter-spacing:0.000000px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{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__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-9.342105px;}
.ws1_c00250{word-spacing:0.000000px;}
.fc0_c00250{color:transparent;}
.fs2_c00250{font-size:30.000000px;}
.fs4_c00250{font-size:42.000000px;}
.fs1_c00250{font-size:48.000000px;}
.fs3_c00250{font-size:54.000000px;}
.fs0_c00250{font-size:60.000000px;}
.y0_c00250{bottom:0.000000px;}
.yd_c00250{bottom:144.750000px;}
.yc_c00250{bottom:145.500000px;}
.yb_c00250{bottom:524.550000px;}
.ya_c00250{bottom:540.750000px;}
.y9_c00250{bottom:559.800000px;}
.y8_c00250{bottom:579.900000px;}
.y7_c00250{bottom:617.400000px;}
.y6_c00250{bottom:637.200000px;}
.y5_c00250{bottom:645.150000px;}
.y4_c00250{bottom:987.900000px;}
.y3_c00250{bottom:1008.000000px;}
.y2_c00250{bottom:1045.800000px;}
.y1_c00250{bottom:1046.850000px;}
.h4_c00250{height:30.000000px;}
.h6_c00250{height:42.000000px;}
.h3_c00250{height:48.000000px;}
.h5_c00250{height:54.000000px;}
.h2_c00250{height:60.000000px;}
.h0_c00250{height:1166.759949px;}
.h1_c00250{height:1167.000000px;}
.w0_c00250{width:918.720063px;}
.w1_c00250{width:918.750000px;}
.x0_c00250{left:0.000000px;}
.x36_c00250{left:152.550000px;}
.x1_c00250{left:155.550000px;}
.x12_c00250{left:166.950000px;}
.x1a_c00250{left:169.950000px;}
.x37_c00250{left:172.650000px;}
.x3_c00250{left:184.650000px;}
.x1b_c00250{left:189.450000px;}
.x1c_c00250{left:201.750000px;}
.x38_c00250{left:216.600000px;}
.x27_c00250{left:218.400000px;}
.x4_c00250{left:222.450000px;}
.x41_c00250{left:224.250000px;}
.x1d_c00250{left:231.300000px;}
.x28_c00250{left:233.850000px;}
.x13_c00250{left:237.150000px;}
.x5_c00250{left:240.750000px;}
.x42_c00250{left:244.800000px;}
.x39_c00250{left:248.250000px;}
.x29_c00250{left:250.350000px;}
.x14_c00250{left:258.000000px;}
.x1e_c00250{left:277.350000px;}
.x17_c00250{left:283.350000px;}
.x15_c00250{left:287.550000px;}
.x3a_c00250{left:296.100000px;}
.x18_c00250{left:300.600000px;}
.x19_c00250{left:303.900000px;}
.x43_c00250{left:305.400000px;}
.x6_c00250{left:315.600000px;}
.x44_c00250{left:328.050000px;}
.x2a_c00250{left:331.800000px;}
.x16_c00250{left:341.250000px;}
.x7_c00250{left:344.700000px;}
.x1f_c00250{left:347.550000px;}
.x3b_c00250{left:360.600000px;}
.x2b_c00250{left:369.900000px;}
.x8_c00250{left:383.550000px;}
.x20_c00250{left:388.200000px;}
.x9_c00250{left:403.350000px;}
.x3c_c00250{left:428.700000px;}
.xa_c00250{left:432.900000px;}
.x2c_c00250{left:447.300000px;}
.x2_c00250{left:451.050000px;}
.x2d_c00250{left:479.400000px;}
.x3d_c00250{left:496.050000px;}
.xb_c00250{left:510.300000px;}
.x21_c00250{left:532.050000px;}
.x22_c00250{left:544.350000px;}
.x2e_c00250{left:552.900000px;}
.xc_c00250{left:573.600000px;}
.x23_c00250{left:574.650000px;}
.x45_c00250{left:578.850000px;}
.x2f_c00250{left:580.950000px;}
.x46_c00250{left:598.950000px;}
.x3e_c00250{left:602.850000px;}
.xd_c00250{left:605.700000px;}
.x47_c00250{left:611.250000px;}
.x30_c00250{left:617.700000px;}
.x24_c00250{left:620.700000px;}
.xe_c00250{left:623.400000px;}
.x31_c00250{left:637.200000px;}
.x3f_c00250{left:647.550000px;}
.x32_c00250{left:652.650000px;}
.x48_c00250{left:666.300000px;}
.x25_c00250{left:667.500000px;}
.xf_c00250{left:670.200000px;}
.x26_c00250{left:705.300000px;}
.x10_c00250{left:706.950000px;}
.x33_c00250{left:719.250000px;}
.x40_c00250{left:745.050000px;}
.x34_c00250{left:758.100000px;}
.x11_c00250{left:774.300000px;}
.x35_c00250{left:785.850000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:-8.304094pt;}
.ws1_c00250{word-spacing:0.000000pt;}
.fs2_c00250{font-size:26.666667pt;}
.fs4_c00250{font-size:37.333333pt;}
.fs1_c00250{font-size:42.666667pt;}
.fs3_c00250{font-size:48.000000pt;}
.fs0_c00250{font-size:53.333333pt;}
.y0_c00250{bottom:0.000000pt;}
.yd_c00250{bottom:128.666667pt;}
.yc_c00250{bottom:129.333333pt;}
.yb_c00250{bottom:466.266667pt;}
.ya_c00250{bottom:480.666667pt;}
.y9_c00250{bottom:497.600000pt;}
.y8_c00250{bottom:515.466667pt;}
.y7_c00250{bottom:548.800000pt;}
.y6_c00250{bottom:566.400000pt;}
.y5_c00250{bottom:573.466667pt;}
.y4_c00250{bottom:878.133333pt;}
.y3_c00250{bottom:896.000000pt;}
.y2_c00250{bottom:929.600000pt;}
.y1_c00250{bottom:930.533333pt;}
.h4_c00250{height:26.666667pt;}
.h6_c00250{height:37.333333pt;}
.h3_c00250{height:42.666667pt;}
.h5_c00250{height:48.000000pt;}
.h2_c00250{height:53.333333pt;}
.h0_c00250{height:1037.119955pt;}
.h1_c00250{height:1037.333333pt;}
.w0_c00250{width:816.640056pt;}
.w1_c00250{width:816.666667pt;}
.x0_c00250{left:0.000000pt;}
.x36_c00250{left:135.600000pt;}
.x1_c00250{left:138.266667pt;}
.x12_c00250{left:148.400000pt;}
.x1a_c00250{left:151.066667pt;}
.x37_c00250{left:153.466667pt;}
.x3_c00250{left:164.133333pt;}
.x1b_c00250{left:168.400000pt;}
.x1c_c00250{left:179.333333pt;}
.x38_c00250{left:192.533333pt;}
.x27_c00250{left:194.133333pt;}
.x4_c00250{left:197.733333pt;}
.x41_c00250{left:199.333333pt;}
.x1d_c00250{left:205.600000pt;}
.x28_c00250{left:207.866667pt;}
.x13_c00250{left:210.800000pt;}
.x5_c00250{left:214.000000pt;}
.x42_c00250{left:217.600000pt;}
.x39_c00250{left:220.666667pt;}
.x29_c00250{left:222.533333pt;}
.x14_c00250{left:229.333333pt;}
.x1e_c00250{left:246.533333pt;}
.x17_c00250{left:251.866667pt;}
.x15_c00250{left:255.600000pt;}
.x3a_c00250{left:263.200000pt;}
.x18_c00250{left:267.200000pt;}
.x19_c00250{left:270.133333pt;}
.x43_c00250{left:271.466667pt;}
.x6_c00250{left:280.533333pt;}
.x44_c00250{left:291.600000pt;}
.x2a_c00250{left:294.933333pt;}
.x16_c00250{left:303.333333pt;}
.x7_c00250{left:306.400000pt;}
.x1f_c00250{left:308.933333pt;}
.x3b_c00250{left:320.533333pt;}
.x2b_c00250{left:328.800000pt;}
.x8_c00250{left:340.933333pt;}
.x20_c00250{left:345.066667pt;}
.x9_c00250{left:358.533333pt;}
.x3c_c00250{left:381.066667pt;}
.xa_c00250{left:384.800000pt;}
.x2c_c00250{left:397.600000pt;}
.x2_c00250{left:400.933333pt;}
.x2d_c00250{left:426.133333pt;}
.x3d_c00250{left:440.933333pt;}
.xb_c00250{left:453.600000pt;}
.x21_c00250{left:472.933333pt;}
.x22_c00250{left:483.866667pt;}
.x2e_c00250{left:491.466667pt;}
.xc_c00250{left:509.866667pt;}
.x23_c00250{left:510.800000pt;}
.x45_c00250{left:514.533333pt;}
.x2f_c00250{left:516.400000pt;}
.x46_c00250{left:532.400000pt;}
.x3e_c00250{left:535.866667pt;}
.xd_c00250{left:538.400000pt;}
.x47_c00250{left:543.333333pt;}
.x30_c00250{left:549.066667pt;}
.x24_c00250{left:551.733333pt;}
.xe_c00250{left:554.133333pt;}
.x31_c00250{left:566.400000pt;}
.x3f_c00250{left:575.600000pt;}
.x32_c00250{left:580.133333pt;}
.x48_c00250{left:592.266667pt;}
.x25_c00250{left:593.333333pt;}
.xf_c00250{left:595.733333pt;}
.x26_c00250{left:626.933333pt;}
.x10_c00250{left:628.400000pt;}
.x33_c00250{left:639.333333pt;}
.x40_c00250{left:662.266667pt;}
.x34_c00250{left:673.866667pt;}
.x11_c00250{left:688.266667pt;}
.x35_c00250{left:698.533333pt;}
}





/* 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_c00251 {
    display:none;
  }
  .loading-indicator_c00251.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00251 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_c00251 { 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_c00251" -> "#page-container .classname_c00251")
 */
.pf_c00251 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00251 { /* 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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00251 { /* 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_c00251 { /* 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_c00251 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00251 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00251 {overflow:visible;}
  }
}
.c_c00251 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00251 { /* 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_c00251:after { /* webkit #35443 */
  content: '';
}
.t_c00251:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00251 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 */
}
.__c00251 { /* 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_c00251 { /* info for Javascript */
  display:none;
}
.l_c00251 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00251 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00251 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00251: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_c00251 {
    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_c00251.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00251.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_c00251 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00251{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.000000;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;}
.m56_c00251{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m65_c00251{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m85_c00251{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m82_c00251{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00251{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00251{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m44_c00251{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m55_c00251{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m50_c00251{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m66_c00251{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m81_c00251{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m23_c00251{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m99_c00251{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m2_c00251{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m84_c00251{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m79_c00251{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m97_c00251{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m52_c00251{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00251{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00251{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m10_c00251{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00251{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m59_c00251{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00251{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00251{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00251{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00251{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m60_c00251{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00251{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m48_c00251{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00251{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m73_c00251{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8_c00251{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m91_c00251{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m61_c00251{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m31_c00251{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m70_c00251{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00251{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m46_c00251{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00251{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00251{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m26_c00251{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00251{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m32_c00251{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00251{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m19_c00251{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00251{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00251{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m77_c00251{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m62_c00251{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00251{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7_c00251{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00251{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.me_c00251{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00251{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m57_c00251{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6_c00251{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00251{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m95_c00251{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m86_c00251{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00251{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m16_c00251{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00251{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m92_c00251{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb_c00251{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m53_c00251{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m64_c00251{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m14_c00251{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m34_c00251{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m41_c00251{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m40_c00251{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m47_c00251{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9_c00251{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mf_c00251{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5_c00251{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00251{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00251{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m58_c00251{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m72_c00251{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m15_c00251{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m39_c00251{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00251{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m18_c00251{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m96_c00251{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00251{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00251{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m67_c00251{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00251{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m38_c00251{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m24_c00251{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m13_c00251{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00251{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m88_c00251{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma_c00251{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00251{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00251{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m49_c00251{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00251{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00251{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00251{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00251{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m30_c00251{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00251{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m98_c00251{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m90_c00251{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00251{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m68_c00251{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mc_c00251{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m78_c00251{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00251{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m25_c00251{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m43_c00251{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m63_c00251{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m22_c00251{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m69_c00251{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00251{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00251{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m94_c00251{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m28_c00251{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00251{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00251{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00251{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00251{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00251{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00251{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00251{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m87_c00251{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m35_c00251{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00251{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00251{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m33_c00251{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m76_c00251{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00251{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m75_c00251{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11_c00251{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m36_c00251{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);}
.m4_c00251{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12_c00251{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00251{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00251{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00251{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m42_c00251{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00251{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00251{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m83_c00251{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m27_c00251{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00251{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m17_c00251{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00251{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m21_c00251{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00251{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m54_c00251{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00251{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m37_c00251{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00251{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00251{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m29_c00251{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00251{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00251{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m51_c00251{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00251{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00251{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00251{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00251{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls0_c00251{letter-spacing:0.000000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{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__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00251{word-spacing:0.000000px;}
.ws4_c00251{word-spacing:1.666667px;}
.ws2_c00251{word-spacing:2.796318px;}
.ws9_c00251{word-spacing:3.472222px;}
.ws3_c00251{word-spacing:4.047619px;}
.ws6_c00251{word-spacing:4.722222px;}
.ws7_c00251{word-spacing:6.805556px;}
.ws1_c00251{word-spacing:6.944444px;}
.wsb_c00251{word-spacing:11.388889px;}
.ws8_c00251{word-spacing:14.855769px;}
.wsa_c00251{word-spacing:14.861111px;}
.ws0_c00251{word-spacing:16.338673px;}
.ws5_c00251{word-spacing:30.192308px;}
._0_c00251{width:39.861111px;}
.fc0_c00251{color:transparent;}
.fs0_c00251{font-size:60.000000px;}
.y0_c00251{bottom:0.000000px;}
.y2c_c00251{bottom:137.850000px;}
.y2b_c00251{bottom:180.900000px;}
.y2a_c00251{bottom:200.700000px;}
.y29_c00251{bottom:220.500000px;}
.y28_c00251{bottom:240.300000px;}
.y27_c00251{bottom:260.400000px;}
.y26_c00251{bottom:280.500000px;}
.y25_c00251{bottom:300.300000px;}
.y24_c00251{bottom:320.400000px;}
.y23_c00251{bottom:340.200000px;}
.y22_c00251{bottom:360.000000px;}
.y21_c00251{bottom:380.550000px;}
.y20_c00251{bottom:400.650000px;}
.y1f_c00251{bottom:420.450000px;}
.y1e_c00251{bottom:440.550000px;}
.y1d_c00251{bottom:460.650000px;}
.y1c_c00251{bottom:480.450000px;}
.y1b_c00251{bottom:500.550000px;}
.y1a_c00251{bottom:520.350000px;}
.y19_c00251{bottom:540.150000px;}
.y18_c00251{bottom:559.950000px;}
.y17_c00251{bottom:580.050000px;}
.y16_c00251{bottom:600.150000px;}
.y15_c00251{bottom:619.950000px;}
.y14_c00251{bottom:639.750000px;}
.y13_c00251{bottom:660.000000px;}
.y12_c00251{bottom:680.100000px;}
.y11_c00251{bottom:699.900000px;}
.y10_c00251{bottom:720.000000px;}
.yf_c00251{bottom:739.800000px;}
.ye_c00251{bottom:759.900000px;}
.yd_c00251{bottom:780.000000px;}
.yc_c00251{bottom:800.100000px;}
.yb_c00251{bottom:819.900000px;}
.ya_c00251{bottom:840.000000px;}
.y9_c00251{bottom:859.800000px;}
.y8_c00251{bottom:879.600000px;}
.y7_c00251{bottom:899.700000px;}
.y6_c00251{bottom:919.800000px;}
.y5_c00251{bottom:939.750000px;}
.y4_c00251{bottom:959.850000px;}
.y3_c00251{bottom:979.950000px;}
.y2_c00251{bottom:999.750000px;}
.y1_c00251{bottom:1038.600000px;}
.h2_c00251{height:60.000000px;}
.h0_c00251{height:1166.759949px;}
.h1_c00251{height:1167.000000px;}
.w0_c00251{width:918.720063px;}
.w1_c00251{width:918.750000px;}
.x0_c00251{left:0.000000px;}
.x21_c00251{left:109.050000px;}
.xe5_c00251{left:110.250000px;}
.xc6_c00251{left:121.050000px;}
.xfc_c00251{left:124.200000px;}
.x7f_c00251{left:129.000000px;}
.x2e_c00251{left:130.500000px;}
.x44_c00251{left:134.850000px;}
.x109_c00251{left:136.800000px;}
.x6e_c00251{left:138.150000px;}
.x89_c00251{left:139.200000px;}
.x3_c00251{left:140.700000px;}
.x2f_c00251{left:142.800000px;}
.x123_c00251{left:144.300000px;}
.xf5_c00251{left:147.750000px;}
.x80_c00251{left:149.100000px;}
.x11d_c00251{left:150.300000px;}
.x22_c00251{left:153.300000px;}
.x63_c00251{left:155.850000px;}
.x119_c00251{left:156.900000px;}
.xa6_c00251{left:160.950000px;}
.x5c_c00251{left:164.550000px;}
.x52_c00251{left:166.500000px;}
.xcd_c00251{left:168.300000px;}
.x4_c00251{left:173.100000px;}
.x13_c00251{left:174.300000px;}
.xb5_c00251{left:175.650000px;}
.x23_c00251{left:183.150000px;}
.xe6_c00251{left:184.800000px;}
.x8a_c00251{left:186.750000px;}
.xd4_c00251{left:190.200000px;}
.x9d_c00251{left:191.250000px;}
.x45_c00251{left:193.950000px;}
.x24_c00251{left:196.500000px;}
.x64_c00251{left:197.550000px;}
.x5d_c00251{left:200.250000px;}
.x11a_c00251{left:201.600000px;}
.xce_c00251{left:203.250000px;}
.x10f_c00251{left:204.600000px;}
.xdc_c00251{left:206.100000px;}
.xc7_c00251{left:207.450000px;}
.x30_c00251{left:209.850000px;}
.x5_c00251{left:211.950000px;}
.xe7_c00251{left:214.350000px;}
.xbe_c00251{left:215.400000px;}
.xed_c00251{left:218.250000px;}
.x75_c00251{left:220.500000px;}
.x101_c00251{left:221.550000px;}
.x81_c00251{left:222.600000px;}
.x65_c00251{left:224.550000px;}
.x5e_c00251{left:229.350000px;}
.x8b_c00251{left:233.550000px;}
.x46_c00251{left:235.350000px;}
.x14_c00251{left:237.000000px;}
.xf6_c00251{left:241.050000px;}
.x6_c00251{left:242.550000px;}
.x37_c00251{left:245.550000px;}
.xb6_c00251{left:246.600000px;}
.x6f_c00251{left:247.950000px;}
.x8f_c00251{left:249.600000px;}
.x25_c00251{left:251.250000px;}
.x97_c00251{left:253.050000px;}
.x53_c00251{left:256.200000px;}
.xdf_c00251{left:258.150000px;}
.x8c_c00251{left:260.850000px;}
.x47_c00251{left:263.400000px;}
.x9e_c00251{left:264.600000px;}
.x82_c00251{left:266.850000px;}
.xaf_c00251{left:270.000000px;}
.x5f_c00251{left:273.300000px;}
.x113_c00251{left:275.700000px;}
.xa7_c00251{left:278.250000px;}
.x98_c00251{left:280.050000px;}
.xf8_c00251{left:281.100000px;}
.x83_c00251{left:282.750000px;}
.xc3_c00251{left:285.150000px;}
.x15_c00251{left:287.100000px;}
.x76_c00251{left:291.450000px;}
.xb7_c00251{left:294.450000px;}
.x48_c00251{left:295.500000px;}
.x31_c00251{left:297.750000px;}
.xcf_c00251{left:300.750000px;}
.x7_c00251{left:303.000000px;}
.xc8_c00251{left:305.100000px;}
.x66_c00251{left:307.650000px;}
.xa8_c00251{left:309.900000px;}
.x38_c00251{left:312.450000px;}
.x110_c00251{left:313.800000px;}
.x49_c00251{left:315.300000px;}
.xb8_c00251{left:317.850000px;}
.x54_c00251{left:319.950000px;}
.xbf_c00251{left:321.600000px;}
.x11e_c00251{left:323.400000px;}
.x32_c00251{left:324.750000px;}
.x9f_c00251{left:325.800000px;}
.x16_c00251{left:327.450000px;}
.xf9_c00251{left:331.200000px;}
.x70_c00251{left:333.150000px;}
.x8d_c00251{left:334.950000px;}
.xa9_c00251{left:337.200000px;}
.xee_c00251{left:338.550000px;}
.x39_c00251{left:340.500000px;}
.x102_c00251{left:341.700000px;}
.x8_c00251{left:343.350000px;}
.x11b_c00251{left:345.000000px;}
.x33_c00251{left:346.350000px;}
.x26_c00251{left:348.150000px;}
.x55_c00251{left:352.350000px;}
.x4a_c00251{left:353.400000px;}
.x67_c00251{left:354.450000px;}
.x17_c00251{left:357.000000px;}
.x104_c00251{left:359.250000px;}
.xc0_c00251{left:360.900000px;}
.x9_c00251{left:370.050000px;}
.xc4_c00251{left:372.300000px;}
.x3a_c00251{left:374.700000px;}
.x120_c00251{left:377.250000px;}
.xaa_c00251{left:378.900000px;}
.x56_c00251{left:380.400000px;}
.x4b_c00251{left:382.500000px;}
.xd5_c00251{left:384.300000px;}
.xfd_c00251{left:386.700000px;}
.xc9_c00251{left:388.650000px;}
.x84_c00251{left:391.800000px;}
.x8e_c00251{left:392.850000px;}
.x34_c00251{left:394.650000px;}
.x77_c00251{left:396.750000px;}
.x90_c00251{left:398.250000px;}
.x105_c00251{left:399.600000px;}
.xc5_c00251{left:401.100000px;}
.xb0_c00251{left:404.700000px;}
.x127_c00251{left:405.750000px;}
.x1_c00251{left:406.800000px;}
.x71_c00251{left:410.850000px;}
.x78_c00251{left:414.000000px;}
.x10a_c00251{left:415.950000px;}
.xe0_c00251{left:418.800000px;}
.xa_c00251{left:420.750000px;}
.x35_c00251{left:423.150000px;}
.x79_c00251{left:426.900000px;}
.x68_c00251{left:429.000000px;}
.xc1_c00251{left:431.400000px;}
.xab_c00251{left:433.200000px;}
.x91_c00251{left:434.550000px;}
.xa0_c00251{left:435.600000px;}
.x10b_c00251{left:436.800000px;}
.x4c_c00251{left:438.000000px;}
.x3b_c00251{left:439.500000px;}
.xb_c00251{left:440.550000px;}
.x18_c00251{left:442.650000px;}
.xef_c00251{left:443.700000px;}
.x27_c00251{left:446.700000px;}
.x114_c00251{left:448.350000px;}
.x128_c00251{left:450.750000px;}
.xb1_c00251{left:452.550000px;}
.x57_c00251{left:455.250000px;}
.xd6_c00251{left:457.050000px;}
.x19_c00251{left:458.850000px;}
.x124_c00251{left:460.650000px;}
.xc2_c00251{left:462.300000px;}
.x3c_c00251{left:464.700000px;}
.xb9_c00251{left:465.900000px;}
.xc_c00251{left:467.250000px;}
.xac_c00251{left:469.950000px;}
.x60_c00251{left:471.750000px;}
.x92_c00251{left:473.850000px;}
.x129_c00251{left:478.050000px;}
.xd7_c00251{left:483.300000px;}
.x36_c00251{left:484.350000px;}
.x69_c00251{left:486.300000px;}
.x4d_c00251{left:488.400000px;}
.xe1_c00251{left:490.800000px;}
.x99_c00251{left:493.500000px;}
.x10e_c00251{left:495.150000px;}
.x28_c00251{left:496.350000px;}
.xd0_c00251{left:497.700000px;}
.x103_c00251{left:498.750000px;}
.x3d_c00251{left:502.800000px;}
.x6a_c00251{left:504.000000px;}
.x7a_c00251{left:505.650000px;}
.x115_c00251{left:506.700000px;}
.xfe_c00251{left:511.500000px;}
.x1a_c00251{left:513.900000px;}
.xdd_c00251{left:515.100000px;}
.x29_c00251{left:516.900000px;}
.xb2_c00251{left:521.550000px;}
.xd_c00251{left:522.750000px;}
.x93_c00251{left:523.950000px;}
.xa1_c00251{left:525.300000px;}
.xe2_c00251{left:528.600000px;}
.xca_c00251{left:529.650000px;}
.xff_c00251{left:533.400000px;}
.xe8_c00251{left:535.800000px;}
.x2a_c00251{left:537.450000px;}
.xb3_c00251{left:540.600000px;}
.xe_c00251{left:542.250000px;}
.x10c_c00251{left:543.300000px;}
.x111_c00251{left:544.500000px;}
.xba_c00251{left:546.600000px;}
.x4e_c00251{left:547.800000px;}
.xe9_c00251{left:552.300000px;}
.x72_c00251{left:554.850000px;}
.x125_c00251{left:558.900000px;}
.x6b_c00251{left:560.550000px;}
.xa2_c00251{left:562.800000px;}
.x2b_c00251{left:565.200000px;}
.x58_c00251{left:568.200000px;}
.x1b_c00251{left:572.250000px;}
.x11c_c00251{left:575.100000px;}
.x7b_c00251{left:576.300000px;}
.x9a_c00251{left:577.650000px;}
.x3e_c00251{left:580.950000px;}
.xd8_c00251{left:582.300000px;}
.x112_c00251{left:583.650000px;}
.xcb_c00251{left:586.500000px;}
.xea_c00251{left:589.050000px;}
.xa3_c00251{left:590.550000px;}
.xf0_c00251{left:592.050000px;}
.x1c_c00251{left:593.100000px;}
.x116_c00251{left:597.450000px;}
.x61_c00251{left:599.850000px;}
.x106_c00251{left:600.900000px;}
.x126_c00251{left:602.400000px;}
.x3f_c00251{left:603.600000px;}
.xeb_c00251{left:605.550000px;}
.x59_c00251{left:607.800000px;}
.xbb_c00251{left:610.650000px;}
.xe3_c00251{left:613.200000px;}
.xf_c00251{left:614.250000px;}
.x85_c00251{left:617.850000px;}
.x117_c00251{left:622.650000px;}
.xf1_c00251{left:623.700000px;}
.x6c_c00251{left:625.650000px;}
.x40_c00251{left:627.300000px;}
.x7c_c00251{left:629.100000px;}
.x73_c00251{left:630.150000px;}
.xd9_c00251{left:631.200000px;}
.x1d_c00251{left:636.000000px;}
.x10d_c00251{left:637.350000px;}
.xb4_c00251{left:639.600000px;}
.x94_c00251{left:640.950000px;}
.x11f_c00251{left:642.000000px;}
.x7d_c00251{left:643.200000px;}
.x10_c00251{left:644.550000px;}
.xf7_c00251{left:646.800000px;}
.x9b_c00251{left:647.850000px;}
.x86_c00251{left:649.500000px;}
.xd1_c00251{left:651.000000px;}
.xfa_c00251{left:652.350000px;}
.x1e_c00251{left:653.700000px;}
.x41_c00251{left:655.800000px;}
.xbc_c00251{left:658.200000px;}
.xf2_c00251{left:660.450000px;}
.x2c_c00251{left:666.300000px;}
.xec_c00251{left:667.800000px;}
.x62_c00251{left:669.300000px;}
.x74_c00251{left:670.800000px;}
.xda_c00251{left:672.600000px;}
.xde_c00251{left:677.850000px;}
.xd2_c00251{left:679.050000px;}
.x4f_c00251{left:680.250000px;}
.xfb_c00251{left:681.450000px;}
.x5a_c00251{left:684.150000px;}
.x121_c00251{left:685.800000px;}
.x42_c00251{left:691.800000px;}
.x87_c00251{left:693.150000px;}
.x100_c00251{left:696.150000px;}
.x118_c00251{left:697.200000px;}
.x95_c00251{left:699.900000px;}
.x11_c00251{left:701.100000px;}
.xe4_c00251{left:705.000000px;}
.x50_c00251{left:706.950000px;}
.x1f_c00251{left:708.750000px;}
.xbd_c00251{left:711.150000px;}
.x107_c00251{left:712.800000px;}
.xad_c00251{left:715.050000px;}
.xcc_c00251{left:716.100000px;}
.x122_c00251{left:717.450000px;}
.x9c_c00251{left:718.500000px;}
.x12_c00251{left:720.150000px;}
.xf3_c00251{left:723.750000px;}
.x96_c00251{left:727.200000px;}
.x7e_c00251{left:728.850000px;}
.x88_c00251{left:730.650000px;}
.x51_c00251{left:732.450000px;}
.xd3_c00251{left:734.850000px;}
.xa4_c00251{left:735.900000px;}
.xdb_c00251{left:737.850000px;}
.x2d_c00251{left:740.400000px;}
.x5b_c00251{left:745.650000px;}
.x43_c00251{left:747.600000px;}
.x2_c00251{left:751.650000px;}
.xae_c00251{left:756.750000px;}
.xf4_c00251{left:758.700000px;}
.x6d_c00251{left:762.750000px;}
.x20_c00251{left:766.350000px;}
.x108_c00251{left:768.600000px;}
.xa5_c00251{left:774.450000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls0_c00251{letter-spacing:0.000000pt;}
.wsc_c00251{word-spacing:0.000000pt;}
.ws4_c00251{word-spacing:1.481481pt;}
.ws2_c00251{word-spacing:2.485616pt;}
.ws9_c00251{word-spacing:3.086420pt;}
.ws3_c00251{word-spacing:3.597884pt;}
.ws6_c00251{word-spacing:4.197531pt;}
.ws7_c00251{word-spacing:6.049383pt;}
.ws1_c00251{word-spacing:6.172840pt;}
.wsb_c00251{word-spacing:10.123457pt;}
.ws8_c00251{word-spacing:13.205128pt;}
.wsa_c00251{word-spacing:13.209877pt;}
.ws0_c00251{word-spacing:14.523265pt;}
.ws5_c00251{word-spacing:26.837607pt;}
._0_c00251{width:35.432099pt;}
.fs0_c00251{font-size:53.333333pt;}
.y0_c00251{bottom:0.000000pt;}
.y2c_c00251{bottom:122.533333pt;}
.y2b_c00251{bottom:160.800000pt;}
.y2a_c00251{bottom:178.400000pt;}
.y29_c00251{bottom:196.000000pt;}
.y28_c00251{bottom:213.600000pt;}
.y27_c00251{bottom:231.466667pt;}
.y26_c00251{bottom:249.333333pt;}
.y25_c00251{bottom:266.933333pt;}
.y24_c00251{bottom:284.800000pt;}
.y23_c00251{bottom:302.400000pt;}
.y22_c00251{bottom:320.000000pt;}
.y21_c00251{bottom:338.266667pt;}
.y20_c00251{bottom:356.133333pt;}
.y1f_c00251{bottom:373.733333pt;}
.y1e_c00251{bottom:391.600000pt;}
.y1d_c00251{bottom:409.466667pt;}
.y1c_c00251{bottom:427.066667pt;}
.y1b_c00251{bottom:444.933333pt;}
.y1a_c00251{bottom:462.533333pt;}
.y19_c00251{bottom:480.133333pt;}
.y18_c00251{bottom:497.733333pt;}
.y17_c00251{bottom:515.600000pt;}
.y16_c00251{bottom:533.466667pt;}
.y15_c00251{bottom:551.066667pt;}
.y14_c00251{bottom:568.666667pt;}
.y13_c00251{bottom:586.666667pt;}
.y12_c00251{bottom:604.533333pt;}
.y11_c00251{bottom:622.133333pt;}
.y10_c00251{bottom:640.000000pt;}
.yf_c00251{bottom:657.600000pt;}
.ye_c00251{bottom:675.466667pt;}
.yd_c00251{bottom:693.333333pt;}
.yc_c00251{bottom:711.200000pt;}
.yb_c00251{bottom:728.800000pt;}
.ya_c00251{bottom:746.666667pt;}
.y9_c00251{bottom:764.266667pt;}
.y8_c00251{bottom:781.866667pt;}
.y7_c00251{bottom:799.733333pt;}
.y6_c00251{bottom:817.600000pt;}
.y5_c00251{bottom:835.333333pt;}
.y4_c00251{bottom:853.200000pt;}
.y3_c00251{bottom:871.066667pt;}
.y2_c00251{bottom:888.666667pt;}
.y1_c00251{bottom:923.200000pt;}
.h2_c00251{height:53.333333pt;}
.h0_c00251{height:1037.119955pt;}
.h1_c00251{height:1037.333333pt;}
.w0_c00251{width:816.640056pt;}
.w1_c00251{width:816.666667pt;}
.x0_c00251{left:0.000000pt;}
.x21_c00251{left:96.933333pt;}
.xe5_c00251{left:98.000000pt;}
.xc6_c00251{left:107.600000pt;}
.xfc_c00251{left:110.400000pt;}
.x7f_c00251{left:114.666667pt;}
.x2e_c00251{left:116.000000pt;}
.x44_c00251{left:119.866667pt;}
.x109_c00251{left:121.600000pt;}
.x6e_c00251{left:122.800000pt;}
.x89_c00251{left:123.733333pt;}
.x3_c00251{left:125.066667pt;}
.x2f_c00251{left:126.933333pt;}
.x123_c00251{left:128.266667pt;}
.xf5_c00251{left:131.333333pt;}
.x80_c00251{left:132.533333pt;}
.x11d_c00251{left:133.600000pt;}
.x22_c00251{left:136.266667pt;}
.x63_c00251{left:138.533333pt;}
.x119_c00251{left:139.466667pt;}
.xa6_c00251{left:143.066667pt;}
.x5c_c00251{left:146.266667pt;}
.x52_c00251{left:148.000000pt;}
.xcd_c00251{left:149.600000pt;}
.x4_c00251{left:153.866667pt;}
.x13_c00251{left:154.933333pt;}
.xb5_c00251{left:156.133333pt;}
.x23_c00251{left:162.800000pt;}
.xe6_c00251{left:164.266667pt;}
.x8a_c00251{left:166.000000pt;}
.xd4_c00251{left:169.066667pt;}
.x9d_c00251{left:170.000000pt;}
.x45_c00251{left:172.400000pt;}
.x24_c00251{left:174.666667pt;}
.x64_c00251{left:175.600000pt;}
.x5d_c00251{left:178.000000pt;}
.x11a_c00251{left:179.200000pt;}
.xce_c00251{left:180.666667pt;}
.x10f_c00251{left:181.866667pt;}
.xdc_c00251{left:183.200000pt;}
.xc7_c00251{left:184.400000pt;}
.x30_c00251{left:186.533333pt;}
.x5_c00251{left:188.400000pt;}
.xe7_c00251{left:190.533333pt;}
.xbe_c00251{left:191.466667pt;}
.xed_c00251{left:194.000000pt;}
.x75_c00251{left:196.000000pt;}
.x101_c00251{left:196.933333pt;}
.x81_c00251{left:197.866667pt;}
.x65_c00251{left:199.600000pt;}
.x5e_c00251{left:203.866667pt;}
.x8b_c00251{left:207.600000pt;}
.x46_c00251{left:209.200000pt;}
.x14_c00251{left:210.666667pt;}
.xf6_c00251{left:214.266667pt;}
.x6_c00251{left:215.600000pt;}
.x37_c00251{left:218.266667pt;}
.xb6_c00251{left:219.200000pt;}
.x6f_c00251{left:220.400000pt;}
.x8f_c00251{left:221.866667pt;}
.x25_c00251{left:223.333333pt;}
.x97_c00251{left:224.933333pt;}
.x53_c00251{left:227.733333pt;}
.xdf_c00251{left:229.466667pt;}
.x8c_c00251{left:231.866667pt;}
.x47_c00251{left:234.133333pt;}
.x9e_c00251{left:235.200000pt;}
.x82_c00251{left:237.200000pt;}
.xaf_c00251{left:240.000000pt;}
.x5f_c00251{left:242.933333pt;}
.x113_c00251{left:245.066667pt;}
.xa7_c00251{left:247.333333pt;}
.x98_c00251{left:248.933333pt;}
.xf8_c00251{left:249.866667pt;}
.x83_c00251{left:251.333333pt;}
.xc3_c00251{left:253.466667pt;}
.x15_c00251{left:255.200000pt;}
.x76_c00251{left:259.066667pt;}
.xb7_c00251{left:261.733333pt;}
.x48_c00251{left:262.666667pt;}
.x31_c00251{left:264.666667pt;}
.xcf_c00251{left:267.333333pt;}
.x7_c00251{left:269.333333pt;}
.xc8_c00251{left:271.200000pt;}
.x66_c00251{left:273.466667pt;}
.xa8_c00251{left:275.466667pt;}
.x38_c00251{left:277.733333pt;}
.x110_c00251{left:278.933333pt;}
.x49_c00251{left:280.266667pt;}
.xb8_c00251{left:282.533333pt;}
.x54_c00251{left:284.400000pt;}
.xbf_c00251{left:285.866667pt;}
.x11e_c00251{left:287.466667pt;}
.x32_c00251{left:288.666667pt;}
.x9f_c00251{left:289.600000pt;}
.x16_c00251{left:291.066667pt;}
.xf9_c00251{left:294.400000pt;}
.x70_c00251{left:296.133333pt;}
.x8d_c00251{left:297.733333pt;}
.xa9_c00251{left:299.733333pt;}
.xee_c00251{left:300.933333pt;}
.x39_c00251{left:302.666667pt;}
.x102_c00251{left:303.733333pt;}
.x8_c00251{left:305.200000pt;}
.x11b_c00251{left:306.666667pt;}
.x33_c00251{left:307.866667pt;}
.x26_c00251{left:309.466667pt;}
.x55_c00251{left:313.200000pt;}
.x4a_c00251{left:314.133333pt;}
.x67_c00251{left:315.066667pt;}
.x17_c00251{left:317.333333pt;}
.x104_c00251{left:319.333333pt;}
.xc0_c00251{left:320.800000pt;}
.x9_c00251{left:328.933333pt;}
.xc4_c00251{left:330.933333pt;}
.x3a_c00251{left:333.066667pt;}
.x120_c00251{left:335.333333pt;}
.xaa_c00251{left:336.800000pt;}
.x56_c00251{left:338.133333pt;}
.x4b_c00251{left:340.000000pt;}
.xd5_c00251{left:341.600000pt;}
.xfd_c00251{left:343.733333pt;}
.xc9_c00251{left:345.466667pt;}
.x84_c00251{left:348.266667pt;}
.x8e_c00251{left:349.200000pt;}
.x34_c00251{left:350.800000pt;}
.x77_c00251{left:352.666667pt;}
.x90_c00251{left:354.000000pt;}
.x105_c00251{left:355.200000pt;}
.xc5_c00251{left:356.533333pt;}
.xb0_c00251{left:359.733333pt;}
.x127_c00251{left:360.666667pt;}
.x1_c00251{left:361.600000pt;}
.x71_c00251{left:365.200000pt;}
.x78_c00251{left:368.000000pt;}
.x10a_c00251{left:369.733333pt;}
.xe0_c00251{left:372.266667pt;}
.xa_c00251{left:374.000000pt;}
.x35_c00251{left:376.133333pt;}
.x79_c00251{left:379.466667pt;}
.x68_c00251{left:381.333333pt;}
.xc1_c00251{left:383.466667pt;}
.xab_c00251{left:385.066667pt;}
.x91_c00251{left:386.266667pt;}
.xa0_c00251{left:387.200000pt;}
.x10b_c00251{left:388.266667pt;}
.x4c_c00251{left:389.333333pt;}
.x3b_c00251{left:390.666667pt;}
.xb_c00251{left:391.600000pt;}
.x18_c00251{left:393.466667pt;}
.xef_c00251{left:394.400000pt;}
.x27_c00251{left:397.066667pt;}
.x114_c00251{left:398.533333pt;}
.x128_c00251{left:400.666667pt;}
.xb1_c00251{left:402.266667pt;}
.x57_c00251{left:404.666667pt;}
.xd6_c00251{left:406.266667pt;}
.x19_c00251{left:407.866667pt;}
.x124_c00251{left:409.466667pt;}
.xc2_c00251{left:410.933333pt;}
.x3c_c00251{left:413.066667pt;}
.xb9_c00251{left:414.133333pt;}
.xc_c00251{left:415.333333pt;}
.xac_c00251{left:417.733333pt;}
.x60_c00251{left:419.333333pt;}
.x92_c00251{left:421.200000pt;}
.x129_c00251{left:424.933333pt;}
.xd7_c00251{left:429.600000pt;}
.x36_c00251{left:430.533333pt;}
.x69_c00251{left:432.266667pt;}
.x4d_c00251{left:434.133333pt;}
.xe1_c00251{left:436.266667pt;}
.x99_c00251{left:438.666667pt;}
.x10e_c00251{left:440.133333pt;}
.x28_c00251{left:441.200000pt;}
.xd0_c00251{left:442.400000pt;}
.x103_c00251{left:443.333333pt;}
.x3d_c00251{left:446.933333pt;}
.x6a_c00251{left:448.000000pt;}
.x7a_c00251{left:449.466667pt;}
.x115_c00251{left:450.400000pt;}
.xfe_c00251{left:454.666667pt;}
.x1a_c00251{left:456.800000pt;}
.xdd_c00251{left:457.866667pt;}
.x29_c00251{left:459.466667pt;}
.xb2_c00251{left:463.600000pt;}
.xd_c00251{left:464.666667pt;}
.x93_c00251{left:465.733333pt;}
.xa1_c00251{left:466.933333pt;}
.xe2_c00251{left:469.866667pt;}
.xca_c00251{left:470.800000pt;}
.xff_c00251{left:474.133333pt;}
.xe8_c00251{left:476.266667pt;}
.x2a_c00251{left:477.733333pt;}
.xb3_c00251{left:480.533333pt;}
.xe_c00251{left:482.000000pt;}
.x10c_c00251{left:482.933333pt;}
.x111_c00251{left:484.000000pt;}
.xba_c00251{left:485.866667pt;}
.x4e_c00251{left:486.933333pt;}
.xe9_c00251{left:490.933333pt;}
.x72_c00251{left:493.200000pt;}
.x125_c00251{left:496.800000pt;}
.x6b_c00251{left:498.266667pt;}
.xa2_c00251{left:500.266667pt;}
.x2b_c00251{left:502.400000pt;}
.x58_c00251{left:505.066667pt;}
.x1b_c00251{left:508.666667pt;}
.x11c_c00251{left:511.200000pt;}
.x7b_c00251{left:512.266667pt;}
.x9a_c00251{left:513.466667pt;}
.x3e_c00251{left:516.400000pt;}
.xd8_c00251{left:517.600000pt;}
.x112_c00251{left:518.800000pt;}
.xcb_c00251{left:521.333333pt;}
.xea_c00251{left:523.600000pt;}
.xa3_c00251{left:524.933333pt;}
.xf0_c00251{left:526.266667pt;}
.x1c_c00251{left:527.200000pt;}
.x116_c00251{left:531.066667pt;}
.x61_c00251{left:533.200000pt;}
.x106_c00251{left:534.133333pt;}
.x126_c00251{left:535.466667pt;}
.x3f_c00251{left:536.533333pt;}
.xeb_c00251{left:538.266667pt;}
.x59_c00251{left:540.266667pt;}
.xbb_c00251{left:542.800000pt;}
.xe3_c00251{left:545.066667pt;}
.xf_c00251{left:546.000000pt;}
.x85_c00251{left:549.200000pt;}
.x117_c00251{left:553.466667pt;}
.xf1_c00251{left:554.400000pt;}
.x6c_c00251{left:556.133333pt;}
.x40_c00251{left:557.600000pt;}
.x7c_c00251{left:559.200000pt;}
.x73_c00251{left:560.133333pt;}
.xd9_c00251{left:561.066667pt;}
.x1d_c00251{left:565.333333pt;}
.x10d_c00251{left:566.533333pt;}
.xb4_c00251{left:568.533333pt;}
.x94_c00251{left:569.733333pt;}
.x11f_c00251{left:570.666667pt;}
.x7d_c00251{left:571.733333pt;}
.x10_c00251{left:572.933333pt;}
.xf7_c00251{left:574.933333pt;}
.x9b_c00251{left:575.866667pt;}
.x86_c00251{left:577.333333pt;}
.xd1_c00251{left:578.666667pt;}
.xfa_c00251{left:579.866667pt;}
.x1e_c00251{left:581.066667pt;}
.x41_c00251{left:582.933333pt;}
.xbc_c00251{left:585.066667pt;}
.xf2_c00251{left:587.066667pt;}
.x2c_c00251{left:592.266667pt;}
.xec_c00251{left:593.600000pt;}
.x62_c00251{left:594.933333pt;}
.x74_c00251{left:596.266667pt;}
.xda_c00251{left:597.866667pt;}
.xde_c00251{left:602.533333pt;}
.xd2_c00251{left:603.600000pt;}
.x4f_c00251{left:604.666667pt;}
.xfb_c00251{left:605.733333pt;}
.x5a_c00251{left:608.133333pt;}
.x121_c00251{left:609.600000pt;}
.x42_c00251{left:614.933333pt;}
.x87_c00251{left:616.133333pt;}
.x100_c00251{left:618.800000pt;}
.x118_c00251{left:619.733333pt;}
.x95_c00251{left:622.133333pt;}
.x11_c00251{left:623.200000pt;}
.xe4_c00251{left:626.666667pt;}
.x50_c00251{left:628.400000pt;}
.x1f_c00251{left:630.000000pt;}
.xbd_c00251{left:632.133333pt;}
.x107_c00251{left:633.600000pt;}
.xad_c00251{left:635.600000pt;}
.xcc_c00251{left:636.533333pt;}
.x122_c00251{left:637.733333pt;}
.x9c_c00251{left:638.666667pt;}
.x12_c00251{left:640.133333pt;}
.xf3_c00251{left:643.333333pt;}
.x96_c00251{left:646.400000pt;}
.x7e_c00251{left:647.866667pt;}
.x88_c00251{left:649.466667pt;}
.x51_c00251{left:651.066667pt;}
.xd3_c00251{left:653.200000pt;}
.xa4_c00251{left:654.133333pt;}
.xdb_c00251{left:655.866667pt;}
.x2d_c00251{left:658.133333pt;}
.x5b_c00251{left:662.800000pt;}
.x43_c00251{left:664.533333pt;}
.x2_c00251{left:668.133333pt;}
.xae_c00251{left:672.666667pt;}
.xf4_c00251{left:674.400000pt;}
.x6d_c00251{left:678.000000pt;}
.x20_c00251{left:681.200000pt;}
.x108_c00251{left:683.200000pt;}
.xa5_c00251{left:688.400000pt;}
}





/* 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_c00252 {
    display:none;
  }
  .loading-indicator_c00252.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00252 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_c00252 { 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_c00252" -> "#page-container .classname_c00252")
 */
.pf_c00252 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00252 { /* 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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00252 { /* 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_c00252 { /* 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_c00252 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00252 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00252 {overflow:visible;}
  }
}
.c_c00252 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00252 { /* 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_c00252:after { /* webkit #35443 */
  content: '';
}
.t_c00252:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00252 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 */
}
.__c00252 { /* 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_c00252 { /* info for Javascript */
  display:none;
}
.l_c00252 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00252 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00252 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00252: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_c00252 {
    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_c00252.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00252.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_c00252 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00252{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00252;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.000000;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;}
.m5c_c00252{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m15_c00252{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00252{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c00252{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00252{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00252{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00252{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m48_c00252{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m45_c00252{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.me_c00252{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m72_c00252{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00252{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00252{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00252{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mac_c00252{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00252{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maa_c00252{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.mab_c00252{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00252{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00252{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mad_c00252{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m83_c00252{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00252{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m81_c00252{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00252{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m87_c00252{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m43_c00252{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m77_c00252{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00252{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m25_c00252{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.md_c00252{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00252{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m98_c00252{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m75_c00252{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00252{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m3_c00252{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m55_c00252{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m67_c00252{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m94_c00252{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00252{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00252{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00252{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m95_c00252{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00252{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m32_c00252{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00252{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m70_c00252{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00252{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m50_c00252{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00252{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00252{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00252{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m71_c00252{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma_c00252{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00252{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m73_c00252{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00252{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m76_c00252{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00252{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m23_c00252{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mc_c00252{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m11_c00252{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00252{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00252{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m9_c00252{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m42_c00252{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00252{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00252{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00252{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00252{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00252{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00252{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m52_c00252{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00252{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00252{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00252{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00252{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m91_c00252{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m62_c00252{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00252{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00252{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00252{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m36_c00252{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m40_c00252{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m33_c00252{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m27_c00252{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00252{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m69_c00252{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00252{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m28_c00252{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7_c00252{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m84_c00252{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m92_c00252{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m56_c00252{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00252{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00252{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mf_c00252{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m53_c00252{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m14_c00252{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m22_c00252{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m74_c00252{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m16_c00252{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m60_c00252{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00252{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5_c00252{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00252{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m38_c00252{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m99_c00252{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00252{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m44_c00252{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00252{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00252{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m80_c00252{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00252{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m79_c00252{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m41_c00252{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m26_c00252{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00252{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2_c00252{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m90_c00252{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m30_c00252{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m34_c00252{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m47_c00252{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m58_c00252{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00252{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m10_c00252{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00252{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m29_c00252{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8_c00252{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19_c00252{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00252{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m63_c00252{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m78_c00252{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m66_c00252{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00252{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m86_c00252{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m31_c00252{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00252{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00252{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00252{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00252{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m61_c00252{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00252{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m21_c00252{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00252{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m88_c00252{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00252{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00252{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00252{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m49_c00252{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00252{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m59_c00252{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m97_c00252{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00252{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m89_c00252{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m24_c00252{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m57_c00252{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00252{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m82_c00252{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m0_c00252{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m17_c00252{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00252{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00252{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m46_c00252{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m93_c00252{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00252{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m6_c00252{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m18_c00252{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00252{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m1_c00252{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00252{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m68_c00252{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m35_c00252{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m54_c00252{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.v0_c00252{vertical-align:0.000000px;}
.ls0_c00252{letter-spacing:0.000000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{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__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00252{word-spacing:-11.666667px;}
.ws6_c00252{word-spacing:-1.666667px;}
.ws8_c00252{word-spacing:0.000000px;}
.ws1_c00252{word-spacing:3.055556px;}
.ws3_c00252{word-spacing:4.473684px;}
.ws0_c00252{word-spacing:8.333333px;}
.ws5_c00252{word-spacing:10.277778px;}
.ws2_c00252{word-spacing:11.184211px;}
.ws4_c00252{word-spacing:18.055556px;}
._1_c00252{width:31.666667px;}
._0_c00252{width:36.052632px;}
.fc0_c00252{color:transparent;}
.fs0_c00252{font-size:60.000000px;}
.y0_c00252{bottom:0.000000px;}
.y2c_c00252{bottom:145.050000px;}
.y2b_c00252{bottom:161.700000px;}
.y2a_c00252{bottom:206.100000px;}
.y29_c00252{bottom:226.200000px;}
.y28_c00252{bottom:246.300000px;}
.y27_c00252{bottom:265.800000px;}
.y26_c00252{bottom:285.900000px;}
.y25_c00252{bottom:305.700000px;}
.y24_c00252{bottom:325.800000px;}
.y23_c00252{bottom:344.700000px;}
.y22_c00252{bottom:365.550000px;}
.y21_c00252{bottom:385.350000px;}
.y20_c00252{bottom:405.450000px;}
.y1f_c00252{bottom:425.250000px;}
.y1e_c00252{bottom:445.350000px;}
.y1d_c00252{bottom:465.150000px;}
.y1c_c00252{bottom:484.950000px;}
.y1b_c00252{bottom:505.050000px;}
.y1a_c00252{bottom:525.150000px;}
.y19_c00252{bottom:544.650000px;}
.y18_c00252{bottom:564.750000px;}
.y17_c00252{bottom:584.550000px;}
.y16_c00252{bottom:604.350000px;}
.y15_c00252{bottom:624.150000px;}
.y14_c00252{bottom:644.700000px;}
.y13_c00252{bottom:664.500000px;}
.y12_c00252{bottom:684.300000px;}
.y11_c00252{bottom:704.100000px;}
.y10_c00252{bottom:723.900000px;}
.yf_c00252{bottom:743.850000px;}
.ye_c00252{bottom:763.950000px;}
.yd_c00252{bottom:783.750000px;}
.yc_c00252{bottom:803.550000px;}
.yb_c00252{bottom:823.350000px;}
.ya_c00252{bottom:843.150000px;}
.y9_c00252{bottom:863.250000px;}
.y8_c00252{bottom:883.050000px;}
.y7_c00252{bottom:903.450000px;}
.y6_c00252{bottom:923.550000px;}
.y5_c00252{bottom:943.350000px;}
.y4_c00252{bottom:963.450000px;}
.y3_c00252{bottom:983.550000px;}
.y2_c00252{bottom:1003.350000px;}
.y1_c00252{bottom:1041.150000px;}
.h2_c00252{height:60.000000px;}
.h0_c00252{height:1166.759949px;}
.h1_c00252{height:1167.000000px;}
.w0_c00252{width:918.720063px;}
.w1_c00252{width:918.750000px;}
.x0_c00252{left:0.000000px;}
.x11d_c00252{left:142.950000px;}
.xe6_c00252{left:144.000000px;}
.xdd_c00252{left:145.800000px;}
.xa1_c00252{left:146.850000px;}
.x38_c00252{left:147.900000px;}
.x3_c00252{left:149.100000px;}
.x1_c00252{left:151.200000px;}
.x123_c00252{left:162.300000px;}
.xff_c00252{left:166.500000px;}
.x74_c00252{left:167.550000px;}
.x94_c00252{left:170.250000px;}
.x7d_c00252{left:171.600000px;}
.x124_c00252{left:173.400000px;}
.xa8_c00252{left:174.750000px;}
.xb5_c00252{left:176.850000px;}
.x41_c00252{left:179.250000px;}
.xb0_c00252{left:182.400000px;}
.x65_c00252{left:183.900000px;}
.x4_c00252{left:186.600000px;}
.x2f_c00252{left:188.400000px;}
.x22_c00252{left:190.050000px;}
.x12_c00252{left:192.900000px;}
.x128_c00252{left:194.100000px;}
.xcd_c00252{left:197.700000px;}
.x7e_c00252{left:199.350000px;}
.xe7_c00252{left:201.600000px;}
.x10e_c00252{left:203.850000px;}
.x23_c00252{left:205.200000px;}
.x5_c00252{left:207.150000px;}
.x98_c00252{left:211.500000px;}
.x58_c00252{left:213.300000px;}
.xb6_c00252{left:215.700000px;}
.x66_c00252{left:217.050000px;}
.xde_c00252{left:219.600000px;}
.xa9_c00252{left:221.250000px;}
.x13_c00252{left:222.450000px;}
.x89_c00252{left:223.950000px;}
.xd1_c00252{left:226.200000px;}
.xce_c00252{left:228.600000px;}
.x7f_c00252{left:231.000000px;}
.x30_c00252{left:232.650000px;}
.xfa_c00252{left:233.850000px;}
.x40_c00252{left:235.650000px;}
.xc6_c00252{left:236.700000px;}
.x125_c00252{left:237.900000px;}
.x59_c00252{left:240.000000px;}
.x24_c00252{left:241.500000px;}
.xf3_c00252{left:243.150000px;}
.x67_c00252{left:244.350000px;}
.xd2_c00252{left:246.750000px;}
.x42_c00252{left:248.700000px;}
.xe2_c00252{left:250.200000px;}
.xfb_c00252{left:252.150000px;}
.x31_c00252{left:253.200000px;}
.xee_c00252{left:255.300000px;}
.x14_c00252{left:256.650000px;}
.xbd_c00252{left:258.300000px;}
.x6_c00252{left:261.900000px;}
.x68_c00252{left:264.450000px;}
.xc7_c00252{left:268.350000px;}
.x104_c00252{left:269.700000px;}
.x4d_c00252{left:271.050000px;}
.x8a_c00252{left:272.850000px;}
.x15_c00252{left:275.700000px;}
.x113_c00252{left:279.600000px;}
.x99_c00252{left:282.150000px;}
.x119_c00252{left:283.800000px;}
.x80_c00252{left:285.450000px;}
.x8b_c00252{left:286.500000px;}
.x4e_c00252{left:288.300000px;}
.x43_c00252{left:290.400000px;}
.xaa_c00252{left:291.450000px;}
.x5a_c00252{left:292.950000px;}
.xd3_c00252{left:295.050000px;}
.x75_c00252{left:296.100000px;}
.x9a_c00252{left:303.450000px;}
.x69_c00252{left:308.700000px;}
.x44_c00252{left:311.250000px;}
.xf4_c00252{left:312.300000px;}
.x100_c00252{left:314.850000px;}
.xdf_c00252{left:315.900000px;}
.x114_c00252{left:318.450000px;}
.x7_c00252{left:320.250000px;}
.x39_c00252{left:328.200000px;}
.xc8_c00252{left:329.550000px;}
.xe8_c00252{left:330.900000px;}
.x9b_c00252{left:333.000000px;}
.xe0_c00252{left:336.000000px;}
.x10f_c00252{left:337.350000px;}
.xa2_c00252{left:338.400000px;}
.x4f_c00252{left:340.800000px;}
.x6a_c00252{left:343.950000px;}
.x8_c00252{left:348.750000px;}
.xd4_c00252{left:352.350000px;}
.x105_c00252{left:354.300000px;}
.xe3_c00252{left:357.150000px;}
.xe9_c00252{left:359.400000px;}
.x16_c00252{left:361.050000px;}
.xcf_c00252{left:362.400000px;}
.x11a_c00252{left:365.550000px;}
.xf5_c00252{left:366.600000px;}
.x101_c00252{left:368.100000px;}
.x25_c00252{left:371.100000px;}
.x81_c00252{left:372.300000px;}
.x90_c00252{left:373.350000px;}
.x129_c00252{left:375.150000px;}
.x5b_c00252{left:377.550000px;}
.xfc_c00252{left:379.950000px;}
.x95_c00252{left:382.350000px;}
.xf6_c00252{left:385.350000px;}
.x11b_c00252{left:386.400000px;}
.xb1_c00252{left:389.700000px;}
.x76_c00252{left:391.050000px;}
.xef_c00252{left:392.100000px;}
.x17_c00252{left:393.450000px;}
.x5c_c00252{left:394.500000px;}
.xab_c00252{left:395.850000px;}
.x45_c00252{left:396.900000px;}
.x106_c00252{left:398.550000px;}
.x9c_c00252{left:400.650000px;}
.x9_c00252{left:402.000000px;}
.x3a_c00252{left:403.800000px;}
.x11e_c00252{left:406.800000px;}
.x110_c00252{left:408.600000px;}
.x91_c00252{left:410.100000px;}
.x26_c00252{left:411.450000px;}
.xd0_c00252{left:416.700000px;}
.x77_c00252{left:420.600000px;}
.x82_c00252{left:423.000000px;}
.x18_c00252{left:430.200000px;}
.xb2_c00252{left:431.850000px;}
.x32_c00252{left:433.050000px;}
.x121_c00252{left:434.250000px;}
.x5d_c00252{left:435.600000px;}
.x12a_c00252{left:436.650000px;}
.x2_c00252{left:438.450000px;}
.x50_c00252{left:439.800000px;}
.x92_c00252{left:441.000000px;}
.xa_c00252{left:442.350000px;}
.xf7_c00252{left:445.500000px;}
.x9d_c00252{left:447.000000px;}
.xbe_c00252{left:449.850000px;}
.xe1_c00252{left:451.950000px;}
.x33_c00252{left:453.150000px;}
.x27_c00252{left:454.950000px;}
.xb7_c00252{left:456.900000px;}
.x6b_c00252{left:458.100000px;}
.x19_c00252{left:459.750000px;}
.x51_c00252{left:461.100000px;}
.xac_c00252{left:466.050000px;}
.xc9_c00252{left:470.100000px;}
.xbf_c00252{left:471.150000px;}
.xf8_c00252{left:474.600000px;}
.x11f_c00252{left:476.250000px;}
.x8c_c00252{left:478.050000px;}
.x28_c00252{left:481.200000px;}
.x111_c00252{left:486.000000px;}
.x5e_c00252{left:488.100000px;}
.x52_c00252{left:489.900000px;}
.x8d_c00252{left:492.450000px;}
.x107_c00252{left:496.200000px;}
.xb3_c00252{left:497.400000px;}
.xf9_c00252{left:499.500000px;}
.xc0_c00252{left:500.700000px;}
.x3b_c00252{left:503.250000px;}
.xb_c00252{left:505.050000px;}
.x116_c00252{left:507.300000px;}
.x5f_c00252{left:510.750000px;}
.xf0_c00252{left:512.700000px;}
.x83_c00252{left:516.000000px;}
.x46_c00252{left:517.200000px;}
.xd5_c00252{left:519.750000px;}
.x9e_c00252{left:520.800000px;}
.x6c_c00252{left:523.200000px;}
.xea_c00252{left:527.100000px;}
.x1a_c00252{left:530.700000px;}
.x3c_c00252{left:533.850000px;}
.xc1_c00252{left:537.000000px;}
.xeb_c00252{left:538.200000px;}
.x12b_c00252{left:539.550000px;}
.x60_c00252{left:543.450000px;}
.xd6_c00252{left:545.700000px;}
.x8e_c00252{left:546.750000px;}
.x47_c00252{left:549.600000px;}
.x6d_c00252{left:551.250000px;}
.x93_c00252{left:553.200000px;}
.x53_c00252{left:554.700000px;}
.xb8_c00252{left:556.950000px;}
.x102_c00252{left:561.450000px;}
.x1b_c00252{left:563.100000px;}
.xc_c00252{left:564.450000px;}
.x126_c00252{left:565.650000px;}
.x84_c00252{left:568.800000px;}
.x96_c00252{left:570.750000px;}
.x108_c00252{left:573.450000px;}
.x1c_c00252{left:574.950000px;}
.xf1_c00252{left:577.500000px;}
.x78_c00252{left:580.050000px;}
.xca_c00252{left:582.150000px;}
.xc2_c00252{left:585.900000px;}
.xd7_c00252{left:587.850000px;}
.x34_c00252{left:589.950000px;}
.x6e_c00252{left:592.650000px;}
.x118_c00252{left:593.700000px;}
.xe4_c00252{left:594.900000px;}
.x54_c00252{left:596.100000px;}
.x8f_c00252{left:598.650000px;}
.x79_c00252{left:600.600000px;}
.x10d_c00252{left:603.150000px;}
.x1d_c00252{left:604.800000px;}
.x29_c00252{left:605.850000px;}
.x6f_c00252{left:607.350000px;}
.x3d_c00252{left:608.700000px;}
.x35_c00252{left:610.050000px;}
.x85_c00252{left:612.000000px;}
.x122_c00252{left:614.550000px;}
.xec_c00252{left:618.600000px;}
.x55_c00252{left:619.800000px;}
.x117_c00252{left:621.450000px;}
.xad_c00252{left:622.950000px;}
.xd_c00252{left:624.900000px;}
.x2a_c00252{left:626.700000px;}
.xb9_c00252{left:628.650000px;}
.x7a_c00252{left:630.150000px;}
.x48_c00252{left:631.350000px;}
.xcb_c00252{left:633.300000px;}
.xd8_c00252{left:636.150000px;}
.xfd_c00252{left:637.350000px;}
.xc3_c00252{left:638.850000px;}
.xe5_c00252{left:640.200000px;}
.xa3_c00252{left:643.200000px;}
.x70_c00252{left:646.650000px;}
.x1e_c00252{left:648.000000px;}
.x56_c00252{left:650.100000px;}
.x86_c00252{left:652.650000px;}
.x61_c00252{left:654.300000px;}
.xe_c00252{left:655.500000px;}
.xed_c00252{left:657.900000px;}
.x49_c00252{left:660.450000px;}
.xa4_c00252{left:662.250000px;}
.x2b_c00252{left:663.450000px;}
.xba_c00252{left:666.150000px;}
.x3e_c00252{left:668.400000px;}
.xae_c00252{left:671.250000px;}
.x1f_c00252{left:673.500000px;}
.xf2_c00252{left:676.200000px;}
.xd9_c00252{left:678.600000px;}
.x109_c00252{left:680.700000px;}
.x2c_c00252{left:682.500000px;}
.x11c_c00252{left:684.900000px;}
.x112_c00252{left:686.400000px;}
.xa5_c00252{left:691.050000px;}
.x10a_c00252{left:693.300000px;}
.x103_c00252{left:694.650000px;}
.x7b_c00252{left:697.500000px;}
.x4a_c00252{left:699.000000px;}
.xcc_c00252{left:705.300000px;}
.x36_c00252{left:709.800000px;}
.x57_c00252{left:711.300000px;}
.x2d_c00252{left:714.150000px;}
.x20_c00252{left:715.650000px;}
.x87_c00252{left:718.500000px;}
.xda_c00252{left:720.000000px;}
.x10b_c00252{left:725.400000px;}
.x71_c00252{left:726.900000px;}
.xbb_c00252{left:728.850000px;}
.xf_c00252{left:731.100000px;}
.xc4_c00252{left:733.200000px;}
.x97_c00252{left:734.250000px;}
.x62_c00252{left:735.600000px;}
.xaf_c00252{left:738.900000px;}
.xa6_c00252{left:739.950000px;}
.xfe_c00252{left:743.250000px;}
.x10c_c00252{left:744.900000px;}
.x72_c00252{left:747.450000px;}
.xdb_c00252{left:749.550000px;}
.x21_c00252{left:750.900000px;}
.x7c_c00252{left:753.300000px;}
.x88_c00252{left:757.050000px;}
.x4b_c00252{left:759.150000px;}
.x127_c00252{left:760.500000px;}
.x63_c00252{left:765.150000px;}
.x10_c00252{left:766.350000px;}
.xbc_c00252{left:767.700000px;}
.x3f_c00252{left:769.500000px;}
.x37_c00252{left:771.000000px;}
.xa7_c00252{left:772.350000px;}
.x73_c00252{left:775.950000px;}
.x9f_c00252{left:779.250000px;}
.xc5_c00252{left:784.650000px;}
.xb4_c00252{left:788.850000px;}
.x64_c00252{left:790.050000px;}
.xa0_c00252{left:791.550000px;}
.xdc_c00252{left:793.050000px;}
.x120_c00252{left:794.550000px;}
.x4c_c00252{left:796.200000px;}
.x2e_c00252{left:798.000000px;}
.x115_c00252{left:799.650000px;}
.x11_c00252{left:802.350000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws7_c00252{word-spacing:-10.370370pt;}
.ws6_c00252{word-spacing:-1.481481pt;}
.ws8_c00252{word-spacing:0.000000pt;}
.ws1_c00252{word-spacing:2.716049pt;}
.ws3_c00252{word-spacing:3.976608pt;}
.ws0_c00252{word-spacing:7.407407pt;}
.ws5_c00252{word-spacing:9.135802pt;}
.ws2_c00252{word-spacing:9.941520pt;}
.ws4_c00252{word-spacing:16.049383pt;}
._1_c00252{width:28.148148pt;}
._0_c00252{width:32.046784pt;}
.fs0_c00252{font-size:53.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y2c_c00252{bottom:128.933333pt;}
.y2b_c00252{bottom:143.733333pt;}
.y2a_c00252{bottom:183.200000pt;}
.y29_c00252{bottom:201.066667pt;}
.y28_c00252{bottom:218.933333pt;}
.y27_c00252{bottom:236.266667pt;}
.y26_c00252{bottom:254.133333pt;}
.y25_c00252{bottom:271.733333pt;}
.y24_c00252{bottom:289.600000pt;}
.y23_c00252{bottom:306.400000pt;}
.y22_c00252{bottom:324.933333pt;}
.y21_c00252{bottom:342.533333pt;}
.y20_c00252{bottom:360.400000pt;}
.y1f_c00252{bottom:378.000000pt;}
.y1e_c00252{bottom:395.866667pt;}
.y1d_c00252{bottom:413.466667pt;}
.y1c_c00252{bottom:431.066667pt;}
.y1b_c00252{bottom:448.933333pt;}
.y1a_c00252{bottom:466.800000pt;}
.y19_c00252{bottom:484.133333pt;}
.y18_c00252{bottom:502.000000pt;}
.y17_c00252{bottom:519.600000pt;}
.y16_c00252{bottom:537.200000pt;}
.y15_c00252{bottom:554.800000pt;}
.y14_c00252{bottom:573.066667pt;}
.y13_c00252{bottom:590.666667pt;}
.y12_c00252{bottom:608.266667pt;}
.y11_c00252{bottom:625.866667pt;}
.y10_c00252{bottom:643.466667pt;}
.yf_c00252{bottom:661.200000pt;}
.ye_c00252{bottom:679.066667pt;}
.yd_c00252{bottom:696.666667pt;}
.yc_c00252{bottom:714.266667pt;}
.yb_c00252{bottom:731.866667pt;}
.ya_c00252{bottom:749.466667pt;}
.y9_c00252{bottom:767.333333pt;}
.y8_c00252{bottom:784.933333pt;}
.y7_c00252{bottom:803.066667pt;}
.y6_c00252{bottom:820.933333pt;}
.y5_c00252{bottom:838.533333pt;}
.y4_c00252{bottom:856.400000pt;}
.y3_c00252{bottom:874.266667pt;}
.y2_c00252{bottom:891.866667pt;}
.y1_c00252{bottom:925.466667pt;}
.h2_c00252{height:53.333333pt;}
.h0_c00252{height:1037.119955pt;}
.h1_c00252{height:1037.333333pt;}
.w0_c00252{width:816.640056pt;}
.w1_c00252{width:816.666667pt;}
.x0_c00252{left:0.000000pt;}
.x11d_c00252{left:127.066667pt;}
.xe6_c00252{left:128.000000pt;}
.xdd_c00252{left:129.600000pt;}
.xa1_c00252{left:130.533333pt;}
.x38_c00252{left:131.466667pt;}
.x3_c00252{left:132.533333pt;}
.x1_c00252{left:134.400000pt;}
.x123_c00252{left:144.266667pt;}
.xff_c00252{left:148.000000pt;}
.x74_c00252{left:148.933333pt;}
.x94_c00252{left:151.333333pt;}
.x7d_c00252{left:152.533333pt;}
.x124_c00252{left:154.133333pt;}
.xa8_c00252{left:155.333333pt;}
.xb5_c00252{left:157.200000pt;}
.x41_c00252{left:159.333333pt;}
.xb0_c00252{left:162.133333pt;}
.x65_c00252{left:163.466667pt;}
.x4_c00252{left:165.866667pt;}
.x2f_c00252{left:167.466667pt;}
.x22_c00252{left:168.933333pt;}
.x12_c00252{left:171.466667pt;}
.x128_c00252{left:172.533333pt;}
.xcd_c00252{left:175.733333pt;}
.x7e_c00252{left:177.200000pt;}
.xe7_c00252{left:179.200000pt;}
.x10e_c00252{left:181.200000pt;}
.x23_c00252{left:182.400000pt;}
.x5_c00252{left:184.133333pt;}
.x98_c00252{left:188.000000pt;}
.x58_c00252{left:189.600000pt;}
.xb6_c00252{left:191.733333pt;}
.x66_c00252{left:192.933333pt;}
.xde_c00252{left:195.200000pt;}
.xa9_c00252{left:196.666667pt;}
.x13_c00252{left:197.733333pt;}
.x89_c00252{left:199.066667pt;}
.xd1_c00252{left:201.066667pt;}
.xce_c00252{left:203.200000pt;}
.x7f_c00252{left:205.333333pt;}
.x30_c00252{left:206.800000pt;}
.xfa_c00252{left:207.866667pt;}
.x40_c00252{left:209.466667pt;}
.xc6_c00252{left:210.400000pt;}
.x125_c00252{left:211.466667pt;}
.x59_c00252{left:213.333333pt;}
.x24_c00252{left:214.666667pt;}
.xf3_c00252{left:216.133333pt;}
.x67_c00252{left:217.200000pt;}
.xd2_c00252{left:219.333333pt;}
.x42_c00252{left:221.066667pt;}
.xe2_c00252{left:222.400000pt;}
.xfb_c00252{left:224.133333pt;}
.x31_c00252{left:225.066667pt;}
.xee_c00252{left:226.933333pt;}
.x14_c00252{left:228.133333pt;}
.xbd_c00252{left:229.600000pt;}
.x6_c00252{left:232.800000pt;}
.x68_c00252{left:235.066667pt;}
.xc7_c00252{left:238.533333pt;}
.x104_c00252{left:239.733333pt;}
.x4d_c00252{left:240.933333pt;}
.x8a_c00252{left:242.533333pt;}
.x15_c00252{left:245.066667pt;}
.x113_c00252{left:248.533333pt;}
.x99_c00252{left:250.800000pt;}
.x119_c00252{left:252.266667pt;}
.x80_c00252{left:253.733333pt;}
.x8b_c00252{left:254.666667pt;}
.x4e_c00252{left:256.266667pt;}
.x43_c00252{left:258.133333pt;}
.xaa_c00252{left:259.066667pt;}
.x5a_c00252{left:260.400000pt;}
.xd3_c00252{left:262.266667pt;}
.x75_c00252{left:263.200000pt;}
.x9a_c00252{left:269.733333pt;}
.x69_c00252{left:274.400000pt;}
.x44_c00252{left:276.666667pt;}
.xf4_c00252{left:277.600000pt;}
.x100_c00252{left:279.866667pt;}
.xdf_c00252{left:280.800000pt;}
.x114_c00252{left:283.066667pt;}
.x7_c00252{left:284.666667pt;}
.x39_c00252{left:291.733333pt;}
.xc8_c00252{left:292.933333pt;}
.xe8_c00252{left:294.133333pt;}
.x9b_c00252{left:296.000000pt;}
.xe0_c00252{left:298.666667pt;}
.x10f_c00252{left:299.866667pt;}
.xa2_c00252{left:300.800000pt;}
.x4f_c00252{left:302.933333pt;}
.x6a_c00252{left:305.733333pt;}
.x8_c00252{left:310.000000pt;}
.xd4_c00252{left:313.200000pt;}
.x105_c00252{left:314.933333pt;}
.xe3_c00252{left:317.466667pt;}
.xe9_c00252{left:319.466667pt;}
.x16_c00252{left:320.933333pt;}
.xcf_c00252{left:322.133333pt;}
.x11a_c00252{left:324.933333pt;}
.xf5_c00252{left:325.866667pt;}
.x101_c00252{left:327.200000pt;}
.x25_c00252{left:329.866667pt;}
.x81_c00252{left:330.933333pt;}
.x90_c00252{left:331.866667pt;}
.x129_c00252{left:333.466667pt;}
.x5b_c00252{left:335.600000pt;}
.xfc_c00252{left:337.733333pt;}
.x95_c00252{left:339.866667pt;}
.xf6_c00252{left:342.533333pt;}
.x11b_c00252{left:343.466667pt;}
.xb1_c00252{left:346.400000pt;}
.x76_c00252{left:347.600000pt;}
.xef_c00252{left:348.533333pt;}
.x17_c00252{left:349.733333pt;}
.x5c_c00252{left:350.666667pt;}
.xab_c00252{left:351.866667pt;}
.x45_c00252{left:352.800000pt;}
.x106_c00252{left:354.266667pt;}
.x9c_c00252{left:356.133333pt;}
.x9_c00252{left:357.333333pt;}
.x3a_c00252{left:358.933333pt;}
.x11e_c00252{left:361.600000pt;}
.x110_c00252{left:363.200000pt;}
.x91_c00252{left:364.533333pt;}
.x26_c00252{left:365.733333pt;}
.xd0_c00252{left:370.400000pt;}
.x77_c00252{left:373.866667pt;}
.x82_c00252{left:376.000000pt;}
.x18_c00252{left:382.400000pt;}
.xb2_c00252{left:383.866667pt;}
.x32_c00252{left:384.933333pt;}
.x121_c00252{left:386.000000pt;}
.x5d_c00252{left:387.200000pt;}
.x12a_c00252{left:388.133333pt;}
.x2_c00252{left:389.733333pt;}
.x50_c00252{left:390.933333pt;}
.x92_c00252{left:392.000000pt;}
.xa_c00252{left:393.200000pt;}
.xf7_c00252{left:396.000000pt;}
.x9d_c00252{left:397.333333pt;}
.xbe_c00252{left:399.866667pt;}
.xe1_c00252{left:401.733333pt;}
.x33_c00252{left:402.800000pt;}
.x27_c00252{left:404.400000pt;}
.xb7_c00252{left:406.133333pt;}
.x6b_c00252{left:407.200000pt;}
.x19_c00252{left:408.666667pt;}
.x51_c00252{left:409.866667pt;}
.xac_c00252{left:414.266667pt;}
.xc9_c00252{left:417.866667pt;}
.xbf_c00252{left:418.800000pt;}
.xf8_c00252{left:421.866667pt;}
.x11f_c00252{left:423.333333pt;}
.x8c_c00252{left:424.933333pt;}
.x28_c00252{left:427.733333pt;}
.x111_c00252{left:432.000000pt;}
.x5e_c00252{left:433.866667pt;}
.x52_c00252{left:435.466667pt;}
.x8d_c00252{left:437.733333pt;}
.x107_c00252{left:441.066667pt;}
.xb3_c00252{left:442.133333pt;}
.xf9_c00252{left:444.000000pt;}
.xc0_c00252{left:445.066667pt;}
.x3b_c00252{left:447.333333pt;}
.xb_c00252{left:448.933333pt;}
.x116_c00252{left:450.933333pt;}
.x5f_c00252{left:454.000000pt;}
.xf0_c00252{left:455.733333pt;}
.x83_c00252{left:458.666667pt;}
.x46_c00252{left:459.733333pt;}
.xd5_c00252{left:462.000000pt;}
.x9e_c00252{left:462.933333pt;}
.x6c_c00252{left:465.066667pt;}
.xea_c00252{left:468.533333pt;}
.x1a_c00252{left:471.733333pt;}
.x3c_c00252{left:474.533333pt;}
.xc1_c00252{left:477.333333pt;}
.xeb_c00252{left:478.400000pt;}
.x12b_c00252{left:479.600000pt;}
.x60_c00252{left:483.066667pt;}
.xd6_c00252{left:485.066667pt;}
.x8e_c00252{left:486.000000pt;}
.x47_c00252{left:488.533333pt;}
.x6d_c00252{left:490.000000pt;}
.x93_c00252{left:491.733333pt;}
.x53_c00252{left:493.066667pt;}
.xb8_c00252{left:495.066667pt;}
.x102_c00252{left:499.066667pt;}
.x1b_c00252{left:500.533333pt;}
.xc_c00252{left:501.733333pt;}
.x126_c00252{left:502.800000pt;}
.x84_c00252{left:505.600000pt;}
.x96_c00252{left:507.333333pt;}
.x108_c00252{left:509.733333pt;}
.x1c_c00252{left:511.066667pt;}
.xf1_c00252{left:513.333333pt;}
.x78_c00252{left:515.600000pt;}
.xca_c00252{left:517.466667pt;}
.xc2_c00252{left:520.800000pt;}
.xd7_c00252{left:522.533333pt;}
.x34_c00252{left:524.400000pt;}
.x6e_c00252{left:526.800000pt;}
.x118_c00252{left:527.733333pt;}
.xe4_c00252{left:528.800000pt;}
.x54_c00252{left:529.866667pt;}
.x8f_c00252{left:532.133333pt;}
.x79_c00252{left:533.866667pt;}
.x10d_c00252{left:536.133333pt;}
.x1d_c00252{left:537.600000pt;}
.x29_c00252{left:538.533333pt;}
.x6f_c00252{left:539.866667pt;}
.x3d_c00252{left:541.066667pt;}
.x35_c00252{left:542.266667pt;}
.x85_c00252{left:544.000000pt;}
.x122_c00252{left:546.266667pt;}
.xec_c00252{left:549.866667pt;}
.x55_c00252{left:550.933333pt;}
.x117_c00252{left:552.400000pt;}
.xad_c00252{left:553.733333pt;}
.xd_c00252{left:555.466667pt;}
.x2a_c00252{left:557.066667pt;}
.xb9_c00252{left:558.800000pt;}
.x7a_c00252{left:560.133333pt;}
.x48_c00252{left:561.200000pt;}
.xcb_c00252{left:562.933333pt;}
.xd8_c00252{left:565.466667pt;}
.xfd_c00252{left:566.533333pt;}
.xc3_c00252{left:567.866667pt;}
.xe5_c00252{left:569.066667pt;}
.xa3_c00252{left:571.733333pt;}
.x70_c00252{left:574.800000pt;}
.x1e_c00252{left:576.000000pt;}
.x56_c00252{left:577.866667pt;}
.x86_c00252{left:580.133333pt;}
.x61_c00252{left:581.600000pt;}
.xe_c00252{left:582.666667pt;}
.xed_c00252{left:584.800000pt;}
.x49_c00252{left:587.066667pt;}
.xa4_c00252{left:588.666667pt;}
.x2b_c00252{left:589.733333pt;}
.xba_c00252{left:592.133333pt;}
.x3e_c00252{left:594.133333pt;}
.xae_c00252{left:596.666667pt;}
.x1f_c00252{left:598.666667pt;}
.xf2_c00252{left:601.066667pt;}
.xd9_c00252{left:603.200000pt;}
.x109_c00252{left:605.066667pt;}
.x2c_c00252{left:606.666667pt;}
.x11c_c00252{left:608.800000pt;}
.x112_c00252{left:610.133333pt;}
.xa5_c00252{left:614.266667pt;}
.x10a_c00252{left:616.266667pt;}
.x103_c00252{left:617.466667pt;}
.x7b_c00252{left:620.000000pt;}
.x4a_c00252{left:621.333333pt;}
.xcc_c00252{left:626.933333pt;}
.x36_c00252{left:630.933333pt;}
.x57_c00252{left:632.266667pt;}
.x2d_c00252{left:634.800000pt;}
.x20_c00252{left:636.133333pt;}
.x87_c00252{left:638.666667pt;}
.xda_c00252{left:640.000000pt;}
.x10b_c00252{left:644.800000pt;}
.x71_c00252{left:646.133333pt;}
.xbb_c00252{left:647.866667pt;}
.xf_c00252{left:649.866667pt;}
.xc4_c00252{left:651.733333pt;}
.x97_c00252{left:652.666667pt;}
.x62_c00252{left:653.866667pt;}
.xaf_c00252{left:656.800000pt;}
.xa6_c00252{left:657.733333pt;}
.xfe_c00252{left:660.666667pt;}
.x10c_c00252{left:662.133333pt;}
.x72_c00252{left:664.400000pt;}
.xdb_c00252{left:666.266667pt;}
.x21_c00252{left:667.466667pt;}
.x7c_c00252{left:669.600000pt;}
.x88_c00252{left:672.933333pt;}
.x4b_c00252{left:674.800000pt;}
.x127_c00252{left:676.000000pt;}
.x63_c00252{left:680.133333pt;}
.x10_c00252{left:681.200000pt;}
.xbc_c00252{left:682.400000pt;}
.x3f_c00252{left:684.000000pt;}
.x37_c00252{left:685.333333pt;}
.xa7_c00252{left:686.533333pt;}
.x73_c00252{left:689.733333pt;}
.x9f_c00252{left:692.666667pt;}
.xc5_c00252{left:697.466667pt;}
.xb4_c00252{left:701.200000pt;}
.x64_c00252{left:702.266667pt;}
.xa0_c00252{left:703.600000pt;}
.xdc_c00252{left:704.933333pt;}
.x120_c00252{left:706.266667pt;}
.x4c_c00252{left:707.733333pt;}
.x2e_c00252{left:709.333333pt;}
.x115_c00252{left:710.800000pt;}
.x11_c00252{left:713.200000pt;}
}





/* 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_c00253 {
    display:none;
  }
  .loading-indicator_c00253.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00253 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_c00253 { 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_c00253" -> "#page-container .classname_c00253")
 */
.pf_c00253 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00253 { /* 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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00253 { /* 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_c00253 { /* 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_c00253 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00253 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00253 {overflow:visible;}
  }
}
.c_c00253 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00253 { /* 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_c00253:after { /* webkit #35443 */
  content: '';
}
.t_c00253:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00253 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 */
}
.__c00253 { /* 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_c00253 { /* info for Javascript */
  display:none;
}
.l_c00253 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00253 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00253 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00253: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_c00253 {
    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_c00253.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00253.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_c00253 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00253{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00253;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.000000;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;}
.m6e_c00253{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00253{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m51_c00253{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00253{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00253{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00253{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00253{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m18_c00253{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00253{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m31_c00253{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m86_c00253{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m79_c00253{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00253{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00253{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00253{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00253{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m81_c00253{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00253{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00253{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m80_c00253{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00253{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00253{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00253{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00253{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00253{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m66_c00253{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m67_c00253{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m65_c00253{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m57_c00253{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00253{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m47_c00253{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m28_c00253{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m34_c00253{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m20_c00253{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00253{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m74_c00253{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00253{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m77_c00253{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m70_c00253{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00253{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m37_c00253{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00253{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00253{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m24_c00253{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m96_c00253{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00253{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m89_c00253{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.me_c00253{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00253{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00253{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m91_c00253{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12_c00253{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m92_c00253{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00253{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00253{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m26_c00253{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00253{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00253{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m93_c00253{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00253{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00253{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m73_c00253{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00253{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m84_c00253{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m44_c00253{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m62_c00253{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00253{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m75_c00253{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00253{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00253{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m56_c00253{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00253{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m29_c00253{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00253{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m95_c00253{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m30_c00253{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mc_c00253{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00253{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00253{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m36_c00253{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m71_c00253{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m33_c00253{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m87_c00253{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22_c00253{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md_c00253{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00253{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00253{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00253{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m32_c00253{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m42_c00253{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00253{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m94_c00253{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m54_c00253{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00253{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00253{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m90_c00253{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m68_c00253{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m60_c00253{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00253{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00253{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m82_c00253{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m48_c00253{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m41_c00253{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3_c00253{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf_c00253{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m27_c00253{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m49_c00253{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m45_c00253{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00253{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.mb_c00253{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m61_c00253{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00253{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m55_c00253{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00253{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m14_c00253{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m88_c00253{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m38_c00253{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00253{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00253{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m78_c00253{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m35_c00253{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m97_c00253{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m76_c00253{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m25_c00253{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00253{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00253{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m13_c00253{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m40_c00253{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m83_c00253{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m17_c00253{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m85_c00253{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00253{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m64_c00253{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m98_c00253{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11_c00253{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00253{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m23_c00253{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00253{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00253{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m0_c00253{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00253{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m53_c00253{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m63_c00253{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00253{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00253{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m50_c00253{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2_c00253{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m46_c00253{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m43_c00253{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00253{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m52_c00253{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00253{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m39_c00253{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m72_c00253{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m19_c00253{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m59_c00253{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m58_c00253{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m69_c00253{transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391000,0.000000,0.000000,0.250000,0,0);}
.v0_c00253{vertical-align:0.000000px;}
.ls0_c00253{letter-spacing:0.000000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{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__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00253{word-spacing:-8.547315px;}
.ws9_c00253{word-spacing:0.000000px;}
.ws6_c00253{word-spacing:7.662651px;}
.ws2_c00253{word-spacing:8.750000px;}
.ws4_c00253{word-spacing:8.783810px;}
.ws0_c00253{word-spacing:9.578831px;}
.ws3_c00253{word-spacing:11.875000px;}
.ws5_c00253{word-spacing:12.250000px;}
.ws7_c00253{word-spacing:14.013820px;}
.ws1_c00253{word-spacing:20.666667px;}
.fc0_c00253{color:transparent;}
.fs0_c00253{font-size:54.000000px;}
.y0_c00253{bottom:0.000000px;}
.y2d_c00253{bottom:142.950000px;}
.y2c_c00253{bottom:162.750000px;}
.y2b_c00253{bottom:181.200000px;}
.y2a_c00253{bottom:202.800000px;}
.y29_c00253{bottom:222.900000px;}
.y28_c00253{bottom:242.700000px;}
.y27_c00253{bottom:261.750000px;}
.y26_c00253{bottom:282.600000px;}
.y25_c00253{bottom:302.700000px;}
.y24_c00253{bottom:322.650000px;}
.y23_c00253{bottom:342.750000px;}
.y22_c00253{bottom:362.550000px;}
.y21_c00253{bottom:380.850000px;}
.y20_c00253{bottom:400.650000px;}
.y1f_c00253{bottom:422.250000px;}
.y1e_c00253{bottom:441.750000px;}
.y1d_c00253{bottom:462.300000px;}
.y1c_c00253{bottom:482.100000px;}
.y1b_c00253{bottom:500.850000px;}
.y1a_c00253{bottom:521.700000px;}
.y19_c00253{bottom:540.300000px;}
.y18_c00253{bottom:562.200000px;}
.y17_c00253{bottom:582.000000px;}
.y16_c00253{bottom:601.800000px;}
.y15_c00253{bottom:621.900000px;}
.y14_c00253{bottom:641.400000px;}
.y13_c00253{bottom:663.750000px;}
.y12_c00253{bottom:681.000000px;}
.y11_c00253{bottom:701.100000px;}
.y10_c00253{bottom:720.900000px;}
.yf_c00253{bottom:740.700000px;}
.ye_c00253{bottom:760.800000px;}
.yd_c00253{bottom:780.900000px;}
.yc_c00253{bottom:800.700000px;}
.yb_c00253{bottom:821.250000px;}
.ya_c00253{bottom:840.750000px;}
.y9_c00253{bottom:860.850000px;}
.y8_c00253{bottom:880.950000px;}
.y7_c00253{bottom:900.900000px;}
.y6_c00253{bottom:921.000000px;}
.y5_c00253{bottom:941.100000px;}
.y4_c00253{bottom:960.900000px;}
.y3_c00253{bottom:980.700000px;}
.y2_c00253{bottom:1000.800000px;}
.y1_c00253{bottom:1038.300000px;}
.h2_c00253{height:54.000000px;}
.h0_c00253{height:1166.759949px;}
.h1_c00253{height:1167.000000px;}
.w0_c00253{width:918.720063px;}
.w1_c00253{width:918.750000px;}
.x0_c00253{left:0.000000px;}
.x12b_c00253{left:103.650000px;}
.x121_c00253{left:104.700000px;}
.x107_c00253{left:105.900000px;}
.xbe_c00253{left:107.700000px;}
.x8b_c00253{left:108.750000px;}
.x5e_c00253{left:110.250000px;}
.x7_c00253{left:111.600000px;}
.x118_c00253{left:119.400000px;}
.x12c_c00253{left:121.350000px;}
.xa6_c00253{left:125.850000px;}
.x113_c00253{left:127.800000px;}
.x81_c00253{left:130.500000px;}
.x119_c00253{left:134.550000px;}
.xdb_c00253{left:135.900000px;}
.xe0_c00253{left:137.100000px;}
.xea_c00253{left:138.300000px;}
.x124_c00253{left:139.650000px;}
.x24_c00253{left:142.800000px;}
.x40_c00253{left:150.450000px;}
.x8c_c00253{left:153.750000px;}
.xd5_c00253{left:155.700000px;}
.x100_c00253{left:157.350000px;}
.x8_c00253{left:158.400000px;}
.xbf_c00253{left:159.600000px;}
.x6f_c00253{left:161.700000px;}
.x4c_c00253{left:163.500000px;}
.x125_c00253{left:164.850000px;}
.x82_c00253{left:166.800000px;}
.x79_c00253{left:168.600000px;}
.x17_c00253{left:169.800000px;}
.x41_c00253{left:171.750000px;}
.x51_c00253{left:172.800000px;}
.xc8_c00253{left:175.350000px;}
.x9_c00253{left:178.200000px;}
.xa7_c00253{left:180.900000px;}
.x114_c00253{left:182.100000px;}
.xd6_c00253{left:183.450000px;}
.x33_c00253{left:186.150000px;}
.xf5_c00253{left:188.400000px;}
.x11a_c00253{left:190.050000px;}
.x97_c00253{left:192.000000px;}
.x5f_c00253{left:193.350000px;}
.x52_c00253{left:195.450000px;}
.x70_c00253{left:196.650000px;}
.x25_c00253{left:198.600000px;}
.xdc_c00253{left:199.950000px;}
.xfe_c00253{left:202.500000px;}
.xe1_c00253{left:204.150000px;}
.xc0_c00253{left:206.400000px;}
.x18_c00253{left:207.900000px;}
.xfb_c00253{left:210.150000px;}
.xf6_c00253{left:211.800000px;}
.xb0_c00253{left:214.350000px;}
.xe6_c00253{left:215.400000px;}
.x26_c00253{left:216.900000px;}
.x4d_c00253{left:219.300000px;}
.x83_c00253{left:220.800000px;}
.xe2_c00253{left:222.450000px;}
.x60_c00253{left:224.700000px;}
.x130_c00253{left:226.950000px;}
.x98_c00253{left:228.300000px;}
.x34_c00253{left:230.850000px;}
.x12d_c00253{left:231.900000px;}
.xa8_c00253{left:233.400000px;}
.x122_c00253{left:237.150000px;}
.x27_c00253{left:239.550000px;}
.x84_c00253{left:241.650000px;}
.x4e_c00253{left:243.450000px;}
.x110_c00253{left:245.250000px;}
.x19_c00253{left:246.450000px;}
.xb8_c00253{left:249.300000px;}
.x35_c00253{left:251.700000px;}
.x101_c00253{left:254.550000px;}
.x53_c00253{left:258.000000px;}
.xff_c00253{left:259.050000px;}
.x7a_c00253{left:261.000000px;}
.xa_c00253{left:263.100000px;}
.xeb_c00253{left:265.350000px;}
.x10d_c00253{left:266.400000px;}
.x67_c00253{left:268.350000px;}
.x99_c00253{left:270.450000px;}
.xe7_c00253{left:273.000000px;}
.x126_c00253{left:274.200000px;}
.x28_c00253{left:278.850000px;}
.x71_c00253{left:280.950000px;}
.xb1_c00253{left:282.450000px;}
.xb_c00253{left:285.000000px;}
.xd7_c00253{left:287.850000px;}
.xa9_c00253{left:289.200000px;}
.x108_c00253{left:292.800000px;}
.x36_c00253{left:293.850000px;}
.x4f_c00253{left:294.900000px;}
.x11b_c00253{left:296.550000px;}
.x42_c00253{left:299.250000px;}
.xec_c00253{left:301.050000px;}
.x102_c00253{left:304.650000px;}
.x85_c00253{left:309.000000px;}
.x127_c00253{left:310.200000px;}
.x72_c00253{left:313.650000px;}
.x54_c00253{left:316.350000px;}
.x8d_c00253{left:317.850000px;}
.xe8_c00253{left:321.300000px;}
.x1a_c00253{left:322.500000px;}
.xd8_c00253{left:325.650000px;}
.x1_c00253{left:326.850000px;}
.x128_c00253{left:327.900000px;}
.x29_c00253{left:328.950000px;}
.xc1_c00253{left:330.450000px;}
.xc9_c00253{left:332.400000px;}
.x50_c00253{left:333.450000px;}
.x37_c00253{left:336.000000px;}
.xed_c00253{left:338.100000px;}
.xf7_c00253{left:340.050000px;}
.xaa_c00253{left:343.500000px;}
.x8e_c00253{left:345.900000px;}
.xc_c00253{left:348.000000px;}
.x7b_c00253{left:349.500000px;}
.x103_c00253{left:351.450000px;}
.x38_c00253{left:353.700000px;}
.x1b_c00253{left:355.650000px;}
.x55_c00253{left:358.800000px;}
.x43_c00253{left:361.500000px;}
.xca_c00253{left:363.750000px;}
.x61_c00253{left:365.700000px;}
.x68_c00253{left:368.400000px;}
.xa0_c00253{left:370.350000px;}
.xf1_c00253{left:372.300000px;}
.x86_c00253{left:375.300000px;}
.xe9_c00253{left:377.700000px;}
.x8f_c00253{left:381.150000px;}
.xab_c00253{left:382.800000px;}
.x39_c00253{left:387.600000px;}
.x2_c00253{left:389.100000px;}
.x1c_c00253{left:392.700000px;}
.xd_c00253{left:393.750000px;}
.xb9_c00253{left:397.800000px;}
.x2a_c00253{left:399.450000px;}
.x109_c00253{left:400.800000px;}
.x73_c00253{left:402.900000px;}
.xcb_c00253{left:405.150000px;}
.x11c_c00253{left:406.650000px;}
.x3a_c00253{left:407.700000px;}
.x56_c00253{left:409.950000px;}
.xd2_c00253{left:412.800000px;}
.xe_c00253{left:416.100000px;}
.xa1_c00253{left:417.450000px;}
.x7c_c00253{left:422.250000px;}
.x1d_c00253{left:424.050000px;}
.x62_c00253{left:425.100000px;}
.x3_c00253{left:426.600000px;}
.x87_c00253{left:431.100000px;}
.x115_c00253{left:433.950000px;}
.x69_c00253{left:435.750000px;}
.x131_c00253{left:437.100000px;}
.x9a_c00253{left:439.950000px;}
.x10e_c00253{left:441.000000px;}
.xb2_c00253{left:442.350000px;}
.xfc_c00253{left:446.850000px;}
.x57_c00253{left:450.300000px;}
.x90_c00253{left:451.650000px;}
.x44_c00253{left:453.600000px;}
.x10a_c00253{left:455.550000px;}
.xf_c00253{left:456.750000px;}
.x88_c00253{left:460.650000px;}
.xc2_c00253{left:461.850000px;}
.x9b_c00253{left:463.350000px;}
.x2b_c00253{left:468.300000px;}
.xf8_c00253{left:470.400000px;}
.x91_c00253{left:472.950000px;}
.x4_c00253{left:474.900000px;}
.x45_c00253{left:475.950000px;}
.x10b_c00253{left:477.900000px;}
.x6a_c00253{left:479.550000px;}
.xb3_c00253{left:482.700000px;}
.x10_c00253{left:485.250000px;}
.xee_c00253{left:486.300000px;}
.xc3_c00253{left:487.800000px;}
.x116_c00253{left:490.500000px;}
.x11e_c00253{left:494.100000px;}
.xcc_c00253{left:495.150000px;}
.x129_c00253{left:499.050000px;}
.x74_c00253{left:500.850000px;}
.x2c_c00253{left:502.200000px;}
.xd9_c00253{left:504.150000px;}
.xdd_c00253{left:505.350000px;}
.x1e_c00253{left:507.600000px;}
.xd3_c00253{left:509.250000px;}
.x11d_c00253{left:513.150000px;}
.xcd_c00253{left:514.950000px;}
.xac_c00253{left:517.200000px;}
.x7d_c00253{left:521.250000px;}
.x2d_c00253{left:522.750000px;}
.x92_c00253{left:524.100000px;}
.x46_c00253{left:526.050000px;}
.xe3_c00253{left:529.200000px;}
.x5_c00253{left:532.200000px;}
.xb4_c00253{left:533.850000px;}
.x58_c00253{left:534.900000px;}
.xba_c00253{left:535.950000px;}
.x63_c00253{left:538.200000px;}
.xce_c00253{left:543.000000px;}
.x1f_c00253{left:544.350000px;}
.x47_c00253{left:545.550000px;}
.x11_c00253{left:548.550000px;}
.x2e_c00253{left:550.800000px;}
.x104_c00253{left:552.300000px;}
.xc4_c00253{left:553.650000px;}
.xa2_c00253{left:555.750000px;}
.x59_c00253{left:558.600000px;}
.x6b_c00253{left:560.250000px;}
.xef_c00253{left:562.650000px;}
.x93_c00253{left:564.750000px;}
.x12e_c00253{left:566.250000px;}
.x6c_c00253{left:569.250000px;}
.xe4_c00253{left:571.650000px;}
.x48_c00253{left:573.600000px;}
.x20_c00253{left:577.500000px;}
.xfd_c00253{left:578.700000px;}
.x9c_c00253{left:582.150000px;}
.x123_c00253{left:584.100000px;}
.x12_c00253{left:585.600000px;}
.xad_c00253{left:586.650000px;}
.x75_c00253{left:587.700000px;}
.x3b_c00253{left:589.500000px;}
.xbb_c00253{left:592.050000px;}
.xcf_c00253{left:594.450000px;}
.x21_c00253{left:597.600000px;}
.x10f_c00253{left:598.650000px;}
.x111_c00253{left:599.700000px;}
.xf2_c00253{left:602.550000px;}
.xae_c00253{left:604.650000px;}
.x7e_c00253{left:607.950000px;}
.x22_c00253{left:609.450000px;}
.x117_c00253{left:611.100000px;}
.x132_c00253{left:612.450000px;}
.x2f_c00253{left:613.500000px;}
.x112_c00253{left:617.400000px;}
.x6d_c00253{left:619.950000px;}
.x64_c00253{left:621.300000px;}
.x13_c00253{left:623.700000px;}
.xb5_c00253{left:624.900000px;}
.x9d_c00253{left:626.100000px;}
.x7f_c00253{left:627.750000px;}
.x11f_c00253{left:630.300000px;}
.x94_c00253{left:631.650000px;}
.x30_c00253{left:633.600000px;}
.x5a_c00253{left:634.950000px;}
.xa3_c00253{left:637.500000px;}
.x105_c00253{left:641.250000px;}
.x89_c00253{left:643.350000px;}
.xbc_c00253{left:644.550000px;}
.x9e_c00253{left:645.900000px;}
.xd0_c00253{left:646.950000px;}
.x23_c00253{left:648.300000px;}
.xc5_c00253{left:654.000000px;}
.x76_c00253{left:656.700000px;}
.x3c_c00253{left:659.400000px;}
.xb6_c00253{left:661.950000px;}
.x31_c00253{left:663.900000px;}
.xa4_c00253{left:665.250000px;}
.xd1_c00253{left:668.250000px;}
.x49_c00253{left:670.050000px;}
.xc6_c00253{left:671.250000px;}
.x65_c00253{left:673.500000px;}
.x5b_c00253{left:677.100000px;}
.x14_c00253{left:678.450000px;}
.xf0_c00253{left:679.650000px;}
.xe5_c00253{left:681.900000px;}
.x12a_c00253{left:685.800000px;}
.x80_c00253{left:687.150000px;}
.xbd_c00253{left:688.800000px;}
.xaf_c00253{left:690.750000px;}
.x3d_c00253{left:695.100000px;}
.xa5_c00253{left:696.150000px;}
.x95_c00253{left:699.000000px;}
.x4a_c00253{left:700.950000px;}
.xf3_c00253{left:702.300000px;}
.x9f_c00253{left:707.400000px;}
.xde_c00253{left:708.750000px;}
.x6e_c00253{left:712.500000px;}
.xf9_c00253{left:713.700000px;}
.x15_c00253{left:715.200000px;}
.x3e_c00253{left:716.700000px;}
.x106_c00253{left:719.400000px;}
.xd4_c00253{left:720.900000px;}
.x120_c00253{left:723.150000px;}
.x12f_c00253{left:724.800000px;}
.x8a_c00253{left:726.900000px;}
.x133_c00253{left:727.950000px;}
.x4b_c00253{left:730.500000px;}
.xc7_c00253{left:732.150000px;}
.x77_c00253{left:734.100000px;}
.x32_c00253{left:736.200000px;}
.x5c_c00253{left:738.000000px;}
.x10c_c00253{left:741.000000px;}
.xb7_c00253{left:742.200000px;}
.x3f_c00253{left:744.750000px;}
.x16_c00253{left:747.300000px;}
.x66_c00253{left:749.400000px;}
.xdf_c00253{left:751.650000px;}
.xfa_c00253{left:754.050000px;}
.x6_c00253{left:755.100000px;}
.xf4_c00253{left:756.600000px;}
.xda_c00253{left:762.300000px;}
.x134_c00253{left:765.450000px;}
.x5d_c00253{left:766.500000px;}
.x96_c00253{left:767.850000px;}
.x78_c00253{left:770.400000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws8_c00253{word-spacing:-7.597613pt;}
.ws9_c00253{word-spacing:0.000000pt;}
.ws6_c00253{word-spacing:6.811245pt;}
.ws2_c00253{word-spacing:7.777778pt;}
.ws4_c00253{word-spacing:7.807832pt;}
.ws0_c00253{word-spacing:8.514517pt;}
.ws3_c00253{word-spacing:10.555556pt;}
.ws5_c00253{word-spacing:10.888889pt;}
.ws7_c00253{word-spacing:12.456729pt;}
.ws1_c00253{word-spacing:18.370370pt;}
.fs0_c00253{font-size:48.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y2d_c00253{bottom:127.066667pt;}
.y2c_c00253{bottom:144.666667pt;}
.y2b_c00253{bottom:161.066667pt;}
.y2a_c00253{bottom:180.266667pt;}
.y29_c00253{bottom:198.133333pt;}
.y28_c00253{bottom:215.733333pt;}
.y27_c00253{bottom:232.666667pt;}
.y26_c00253{bottom:251.200000pt;}
.y25_c00253{bottom:269.066667pt;}
.y24_c00253{bottom:286.800000pt;}
.y23_c00253{bottom:304.666667pt;}
.y22_c00253{bottom:322.266667pt;}
.y21_c00253{bottom:338.533333pt;}
.y20_c00253{bottom:356.133333pt;}
.y1f_c00253{bottom:375.333333pt;}
.y1e_c00253{bottom:392.666667pt;}
.y1d_c00253{bottom:410.933333pt;}
.y1c_c00253{bottom:428.533333pt;}
.y1b_c00253{bottom:445.200000pt;}
.y1a_c00253{bottom:463.733333pt;}
.y19_c00253{bottom:480.266667pt;}
.y18_c00253{bottom:499.733333pt;}
.y17_c00253{bottom:517.333333pt;}
.y16_c00253{bottom:534.933333pt;}
.y15_c00253{bottom:552.800000pt;}
.y14_c00253{bottom:570.133333pt;}
.y13_c00253{bottom:590.000000pt;}
.y12_c00253{bottom:605.333333pt;}
.y11_c00253{bottom:623.200000pt;}
.y10_c00253{bottom:640.800000pt;}
.yf_c00253{bottom:658.400000pt;}
.ye_c00253{bottom:676.266667pt;}
.yd_c00253{bottom:694.133333pt;}
.yc_c00253{bottom:711.733333pt;}
.yb_c00253{bottom:730.000000pt;}
.ya_c00253{bottom:747.333333pt;}
.y9_c00253{bottom:765.200000pt;}
.y8_c00253{bottom:783.066667pt;}
.y7_c00253{bottom:800.800000pt;}
.y6_c00253{bottom:818.666667pt;}
.y5_c00253{bottom:836.533333pt;}
.y4_c00253{bottom:854.133333pt;}
.y3_c00253{bottom:871.733333pt;}
.y2_c00253{bottom:889.600000pt;}
.y1_c00253{bottom:922.933333pt;}
.h2_c00253{height:48.000000pt;}
.h0_c00253{height:1037.119955pt;}
.h1_c00253{height:1037.333333pt;}
.w0_c00253{width:816.640056pt;}
.w1_c00253{width:816.666667pt;}
.x0_c00253{left:0.000000pt;}
.x12b_c00253{left:92.133333pt;}
.x121_c00253{left:93.066667pt;}
.x107_c00253{left:94.133333pt;}
.xbe_c00253{left:95.733333pt;}
.x8b_c00253{left:96.666667pt;}
.x5e_c00253{left:98.000000pt;}
.x7_c00253{left:99.200000pt;}
.x118_c00253{left:106.133333pt;}
.x12c_c00253{left:107.866667pt;}
.xa6_c00253{left:111.866667pt;}
.x113_c00253{left:113.600000pt;}
.x81_c00253{left:116.000000pt;}
.x119_c00253{left:119.600000pt;}
.xdb_c00253{left:120.800000pt;}
.xe0_c00253{left:121.866667pt;}
.xea_c00253{left:122.933333pt;}
.x124_c00253{left:124.133333pt;}
.x24_c00253{left:126.933333pt;}
.x40_c00253{left:133.733333pt;}
.x8c_c00253{left:136.666667pt;}
.xd5_c00253{left:138.400000pt;}
.x100_c00253{left:139.866667pt;}
.x8_c00253{left:140.800000pt;}
.xbf_c00253{left:141.866667pt;}
.x6f_c00253{left:143.733333pt;}
.x4c_c00253{left:145.333333pt;}
.x125_c00253{left:146.533333pt;}
.x82_c00253{left:148.266667pt;}
.x79_c00253{left:149.866667pt;}
.x17_c00253{left:150.933333pt;}
.x41_c00253{left:152.666667pt;}
.x51_c00253{left:153.600000pt;}
.xc8_c00253{left:155.866667pt;}
.x9_c00253{left:158.400000pt;}
.xa7_c00253{left:160.800000pt;}
.x114_c00253{left:161.866667pt;}
.xd6_c00253{left:163.066667pt;}
.x33_c00253{left:165.466667pt;}
.xf5_c00253{left:167.466667pt;}
.x11a_c00253{left:168.933333pt;}
.x97_c00253{left:170.666667pt;}
.x5f_c00253{left:171.866667pt;}
.x52_c00253{left:173.733333pt;}
.x70_c00253{left:174.800000pt;}
.x25_c00253{left:176.533333pt;}
.xdc_c00253{left:177.733333pt;}
.xfe_c00253{left:180.000000pt;}
.xe1_c00253{left:181.466667pt;}
.xc0_c00253{left:183.466667pt;}
.x18_c00253{left:184.800000pt;}
.xfb_c00253{left:186.800000pt;}
.xf6_c00253{left:188.266667pt;}
.xb0_c00253{left:190.533333pt;}
.xe6_c00253{left:191.466667pt;}
.x26_c00253{left:192.800000pt;}
.x4d_c00253{left:194.933333pt;}
.x83_c00253{left:196.266667pt;}
.xe2_c00253{left:197.733333pt;}
.x60_c00253{left:199.733333pt;}
.x130_c00253{left:201.733333pt;}
.x98_c00253{left:202.933333pt;}
.x34_c00253{left:205.200000pt;}
.x12d_c00253{left:206.133333pt;}
.xa8_c00253{left:207.466667pt;}
.x122_c00253{left:210.800000pt;}
.x27_c00253{left:212.933333pt;}
.x84_c00253{left:214.800000pt;}
.x4e_c00253{left:216.400000pt;}
.x110_c00253{left:218.000000pt;}
.x19_c00253{left:219.066667pt;}
.xb8_c00253{left:221.600000pt;}
.x35_c00253{left:223.733333pt;}
.x101_c00253{left:226.266667pt;}
.x53_c00253{left:229.333333pt;}
.xff_c00253{left:230.266667pt;}
.x7a_c00253{left:232.000000pt;}
.xa_c00253{left:233.866667pt;}
.xeb_c00253{left:235.866667pt;}
.x10d_c00253{left:236.800000pt;}
.x67_c00253{left:238.533333pt;}
.x99_c00253{left:240.400000pt;}
.xe7_c00253{left:242.666667pt;}
.x126_c00253{left:243.733333pt;}
.x28_c00253{left:247.866667pt;}
.x71_c00253{left:249.733333pt;}
.xb1_c00253{left:251.066667pt;}
.xb_c00253{left:253.333333pt;}
.xd7_c00253{left:255.866667pt;}
.xa9_c00253{left:257.066667pt;}
.x108_c00253{left:260.266667pt;}
.x36_c00253{left:261.200000pt;}
.x4f_c00253{left:262.133333pt;}
.x11b_c00253{left:263.600000pt;}
.x42_c00253{left:266.000000pt;}
.xec_c00253{left:267.600000pt;}
.x102_c00253{left:270.800000pt;}
.x85_c00253{left:274.666667pt;}
.x127_c00253{left:275.733333pt;}
.x72_c00253{left:278.800000pt;}
.x54_c00253{left:281.200000pt;}
.x8d_c00253{left:282.533333pt;}
.xe8_c00253{left:285.600000pt;}
.x1a_c00253{left:286.666667pt;}
.xd8_c00253{left:289.466667pt;}
.x1_c00253{left:290.533333pt;}
.x128_c00253{left:291.466667pt;}
.x29_c00253{left:292.400000pt;}
.xc1_c00253{left:293.733333pt;}
.xc9_c00253{left:295.466667pt;}
.x50_c00253{left:296.400000pt;}
.x37_c00253{left:298.666667pt;}
.xed_c00253{left:300.533333pt;}
.xf7_c00253{left:302.266667pt;}
.xaa_c00253{left:305.333333pt;}
.x8e_c00253{left:307.466667pt;}
.xc_c00253{left:309.333333pt;}
.x7b_c00253{left:310.666667pt;}
.x103_c00253{left:312.400000pt;}
.x38_c00253{left:314.400000pt;}
.x1b_c00253{left:316.133333pt;}
.x55_c00253{left:318.933333pt;}
.x43_c00253{left:321.333333pt;}
.xca_c00253{left:323.333333pt;}
.x61_c00253{left:325.066667pt;}
.x68_c00253{left:327.466667pt;}
.xa0_c00253{left:329.200000pt;}
.xf1_c00253{left:330.933333pt;}
.x86_c00253{left:333.600000pt;}
.xe9_c00253{left:335.733333pt;}
.x8f_c00253{left:338.800000pt;}
.xab_c00253{left:340.266667pt;}
.x39_c00253{left:344.533333pt;}
.x2_c00253{left:345.866667pt;}
.x1c_c00253{left:349.066667pt;}
.xd_c00253{left:350.000000pt;}
.xb9_c00253{left:353.600000pt;}
.x2a_c00253{left:355.066667pt;}
.x109_c00253{left:356.266667pt;}
.x73_c00253{left:358.133333pt;}
.xcb_c00253{left:360.133333pt;}
.x11c_c00253{left:361.466667pt;}
.x3a_c00253{left:362.400000pt;}
.x56_c00253{left:364.400000pt;}
.xd2_c00253{left:366.933333pt;}
.xe_c00253{left:369.866667pt;}
.xa1_c00253{left:371.066667pt;}
.x7c_c00253{left:375.333333pt;}
.x1d_c00253{left:376.933333pt;}
.x62_c00253{left:377.866667pt;}
.x3_c00253{left:379.200000pt;}
.x87_c00253{left:383.200000pt;}
.x115_c00253{left:385.733333pt;}
.x69_c00253{left:387.333333pt;}
.x131_c00253{left:388.533333pt;}
.x9a_c00253{left:391.066667pt;}
.x10e_c00253{left:392.000000pt;}
.xb2_c00253{left:393.200000pt;}
.xfc_c00253{left:397.200000pt;}
.x57_c00253{left:400.266667pt;}
.x90_c00253{left:401.466667pt;}
.x44_c00253{left:403.200000pt;}
.x10a_c00253{left:404.933333pt;}
.xf_c00253{left:406.000000pt;}
.x88_c00253{left:409.466667pt;}
.xc2_c00253{left:410.533333pt;}
.x9b_c00253{left:411.866667pt;}
.x2b_c00253{left:416.266667pt;}
.xf8_c00253{left:418.133333pt;}
.x91_c00253{left:420.400000pt;}
.x4_c00253{left:422.133333pt;}
.x45_c00253{left:423.066667pt;}
.x10b_c00253{left:424.800000pt;}
.x6a_c00253{left:426.266667pt;}
.xb3_c00253{left:429.066667pt;}
.x10_c00253{left:431.333333pt;}
.xee_c00253{left:432.266667pt;}
.xc3_c00253{left:433.600000pt;}
.x116_c00253{left:436.000000pt;}
.x11e_c00253{left:439.200000pt;}
.xcc_c00253{left:440.133333pt;}
.x129_c00253{left:443.600000pt;}
.x74_c00253{left:445.200000pt;}
.x2c_c00253{left:446.400000pt;}
.xd9_c00253{left:448.133333pt;}
.xdd_c00253{left:449.200000pt;}
.x1e_c00253{left:451.200000pt;}
.xd3_c00253{left:452.666667pt;}
.x11d_c00253{left:456.133333pt;}
.xcd_c00253{left:457.733333pt;}
.xac_c00253{left:459.733333pt;}
.x7d_c00253{left:463.333333pt;}
.x2d_c00253{left:464.666667pt;}
.x92_c00253{left:465.866667pt;}
.x46_c00253{left:467.600000pt;}
.xe3_c00253{left:470.400000pt;}
.x5_c00253{left:473.066667pt;}
.xb4_c00253{left:474.533333pt;}
.x58_c00253{left:475.466667pt;}
.xba_c00253{left:476.400000pt;}
.x63_c00253{left:478.400000pt;}
.xce_c00253{left:482.666667pt;}
.x1f_c00253{left:483.866667pt;}
.x47_c00253{left:484.933333pt;}
.x11_c00253{left:487.600000pt;}
.x2e_c00253{left:489.600000pt;}
.x104_c00253{left:490.933333pt;}
.xc4_c00253{left:492.133333pt;}
.xa2_c00253{left:494.000000pt;}
.x59_c00253{left:496.533333pt;}
.x6b_c00253{left:498.000000pt;}
.xef_c00253{left:500.133333pt;}
.x93_c00253{left:502.000000pt;}
.x12e_c00253{left:503.333333pt;}
.x6c_c00253{left:506.000000pt;}
.xe4_c00253{left:508.133333pt;}
.x48_c00253{left:509.866667pt;}
.x20_c00253{left:513.333333pt;}
.xfd_c00253{left:514.400000pt;}
.x9c_c00253{left:517.466667pt;}
.x123_c00253{left:519.200000pt;}
.x12_c00253{left:520.533333pt;}
.xad_c00253{left:521.466667pt;}
.x75_c00253{left:522.400000pt;}
.x3b_c00253{left:524.000000pt;}
.xbb_c00253{left:526.266667pt;}
.xcf_c00253{left:528.400000pt;}
.x21_c00253{left:531.200000pt;}
.x10f_c00253{left:532.133333pt;}
.x111_c00253{left:533.066667pt;}
.xf2_c00253{left:535.600000pt;}
.xae_c00253{left:537.466667pt;}
.x7e_c00253{left:540.400000pt;}
.x22_c00253{left:541.733333pt;}
.x117_c00253{left:543.200000pt;}
.x132_c00253{left:544.400000pt;}
.x2f_c00253{left:545.333333pt;}
.x112_c00253{left:548.800000pt;}
.x6d_c00253{left:551.066667pt;}
.x64_c00253{left:552.266667pt;}
.x13_c00253{left:554.400000pt;}
.xb5_c00253{left:555.466667pt;}
.x9d_c00253{left:556.533333pt;}
.x7f_c00253{left:558.000000pt;}
.x11f_c00253{left:560.266667pt;}
.x94_c00253{left:561.466667pt;}
.x30_c00253{left:563.200000pt;}
.x5a_c00253{left:564.400000pt;}
.xa3_c00253{left:566.666667pt;}
.x105_c00253{left:570.000000pt;}
.x89_c00253{left:571.866667pt;}
.xbc_c00253{left:572.933333pt;}
.x9e_c00253{left:574.133333pt;}
.xd0_c00253{left:575.066667pt;}
.x23_c00253{left:576.266667pt;}
.xc5_c00253{left:581.333333pt;}
.x76_c00253{left:583.733333pt;}
.x3c_c00253{left:586.133333pt;}
.xb6_c00253{left:588.400000pt;}
.x31_c00253{left:590.133333pt;}
.xa4_c00253{left:591.333333pt;}
.xd1_c00253{left:594.000000pt;}
.x49_c00253{left:595.600000pt;}
.xc6_c00253{left:596.666667pt;}
.x65_c00253{left:598.666667pt;}
.x5b_c00253{left:601.866667pt;}
.x14_c00253{left:603.066667pt;}
.xf0_c00253{left:604.133333pt;}
.xe5_c00253{left:606.133333pt;}
.x12a_c00253{left:609.600000pt;}
.x80_c00253{left:610.800000pt;}
.xbd_c00253{left:612.266667pt;}
.xaf_c00253{left:614.000000pt;}
.x3d_c00253{left:617.866667pt;}
.xa5_c00253{left:618.800000pt;}
.x95_c00253{left:621.333333pt;}
.x4a_c00253{left:623.066667pt;}
.xf3_c00253{left:624.266667pt;}
.x9f_c00253{left:628.800000pt;}
.xde_c00253{left:630.000000pt;}
.x6e_c00253{left:633.333333pt;}
.xf9_c00253{left:634.400000pt;}
.x15_c00253{left:635.733333pt;}
.x3e_c00253{left:637.066667pt;}
.x106_c00253{left:639.466667pt;}
.xd4_c00253{left:640.800000pt;}
.x120_c00253{left:642.800000pt;}
.x12f_c00253{left:644.266667pt;}
.x8a_c00253{left:646.133333pt;}
.x133_c00253{left:647.066667pt;}
.x4b_c00253{left:649.333333pt;}
.xc7_c00253{left:650.800000pt;}
.x77_c00253{left:652.533333pt;}
.x32_c00253{left:654.400000pt;}
.x5c_c00253{left:656.000000pt;}
.x10c_c00253{left:658.666667pt;}
.xb7_c00253{left:659.733333pt;}
.x3f_c00253{left:662.000000pt;}
.x16_c00253{left:664.266667pt;}
.x66_c00253{left:666.133333pt;}
.xdf_c00253{left:668.133333pt;}
.xfa_c00253{left:670.266667pt;}
.x6_c00253{left:671.200000pt;}
.xf4_c00253{left:672.533333pt;}
.xda_c00253{left:677.600000pt;}
.x134_c00253{left:680.400000pt;}
.x5d_c00253{left:681.333333pt;}
.x96_c00253{left:682.533333pt;}
.x78_c00253{left:684.800000pt;}
}





/* 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_c00254 {
    display:none;
  }
  .loading-indicator_c00254.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00254 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_c00254 { 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_c00254" -> "#page-container .classname_c00254")
 */
.pf_c00254 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00254 { /* 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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00254 { /* 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_c00254 { /* 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_c00254 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00254 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00254 {overflow:visible;}
  }
}
.c_c00254 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00254 { /* 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_c00254:after { /* webkit #35443 */
  content: '';
}
.t_c00254:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00254 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 */
}
.__c00254 { /* 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_c00254 { /* info for Javascript */
  display:none;
}
.l_c00254 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00254 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00254 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00254: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_c00254 {
    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_c00254.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00254.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_c00254 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00254{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00254;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.000000;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;}
.m97_c00254{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00254{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m76_c00254{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00254{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00254{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m64_c00254{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00254{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00254{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m77_c00254{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m23_c00254{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m29_c00254{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00254{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m51_c00254{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m80_c00254{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00254{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m43_c00254{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00254{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00254{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m63_c00254{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m54_c00254{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m74_c00254{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8_c00254{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m68_c00254{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m95_c00254{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00254{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m32_c00254{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mb_c00254{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00254{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00254{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m56_c00254{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00254{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m57_c00254{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m30_c00254{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m75_c00254{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m28_c00254{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m17_c00254{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00254{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m21_c00254{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00254{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00254{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m44_c00254{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00254{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m93_c00254{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m79_c00254{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00254{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00254{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00254{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m14_c00254{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00254{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00254{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7_c00254{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00254{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m94_c00254{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m34_c00254{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00254{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md_c00254{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00254{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00254{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00254{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00254{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m78_c00254{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00254{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma_c00254{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5_c00254{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m89_c00254{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26_c00254{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00254{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12_c00254{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m82_c00254{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00254{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00254{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m24_c00254{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m47_c00254{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m37_c00254{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15_c00254{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m99_c00254{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m73_c00254{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m84_c00254{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);}
.m55_c00254{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00254{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00254{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m81_c00254{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m71_c00254{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00254{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m52_c00254{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m27_c00254{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m58_c00254{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00254{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m70_c00254{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m67_c00254{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3_c00254{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00254{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m72_c00254{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m62_c00254{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m41_c00254{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00254{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m36_c00254{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m10_c00254{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00254{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m35_c00254{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m61_c00254{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m98_c00254{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00254{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m53_c00254{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00254{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m60_c00254{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m88_c00254{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m91_c00254{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m25_c00254{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00254{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m9_c00254{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m65_c00254{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m42_c00254{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00254{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m83_c00254{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00254{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00254{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m50_c00254{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m86_c00254{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m16_c00254{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m31_c00254{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.me_c00254{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m45_c00254{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m22_c00254{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m40_c00254{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00254{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00254{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4_c00254{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m18_c00254{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00254{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m49_c00254{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00254{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mf_c00254{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2_c00254{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m38_c00254{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m13_c00254{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m46_c00254{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m85_c00254{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00254{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m33_c00254{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m19_c00254{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m48_c00254{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m87_c00254{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00254{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m92_c00254{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m90_c00254{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00254{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00254{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00254{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00254{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m96_c00254{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00254{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00254{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00254{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m66_c00254{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00254{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00254{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00254{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00254{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00254{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00254{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00254{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00254{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m39_c00254{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00254{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00254{vertical-align:0.000000px;}
.ls0_c00254{letter-spacing:0.000000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{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__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00254{word-spacing:-9.125000px;}
.ws5_c00254{word-spacing:-8.156415px;}
.ws3_c00254{word-spacing:-5.690722px;}
.ws0_c00254{word-spacing:-0.771084px;}
.ws9_c00254{word-spacing:0.000000px;}
.ws8_c00254{word-spacing:2.357143px;}
.ws4_c00254{word-spacing:4.625000px;}
.ws1_c00254{word-spacing:6.250000px;}
.ws6_c00254{word-spacing:12.250000px;}
.ws7_c00254{word-spacing:13.462043px;}
.fc0_c00254{color:transparent;}
.fs0_c00254{font-size:54.000000px;}
.y0_c00254{bottom:0.000000px;}
.y2d_c00254{bottom:141.900000px;}
.y2c_c00254{bottom:161.700000px;}
.y2b_c00254{bottom:181.500000px;}
.y2a_c00254{bottom:201.300000px;}
.y29_c00254{bottom:221.400000px;}
.y28_c00254{bottom:241.500000px;}
.y27_c00254{bottom:261.600000px;}
.y26_c00254{bottom:281.400000px;}
.y25_c00254{bottom:301.200000px;}
.y24_c00254{bottom:321.300000px;}
.y23_c00254{bottom:341.400000px;}
.y22_c00254{bottom:360.900000px;}
.y21_c00254{bottom:381.000000px;}
.y20_c00254{bottom:400.800000px;}
.y1f_c00254{bottom:420.600000px;}
.y1e_c00254{bottom:440.700000px;}
.y1d_c00254{bottom:460.800000px;}
.y1c_c00254{bottom:480.150000px;}
.y1b_c00254{bottom:500.700000px;}
.y1a_c00254{bottom:520.200000px;}
.y19_c00254{bottom:539.550000px;}
.y18_c00254{bottom:560.100000px;}
.y17_c00254{bottom:579.900000px;}
.y16_c00254{bottom:599.700000px;}
.y15_c00254{bottom:619.500000px;}
.y14_c00254{bottom:639.450000px;}
.y13_c00254{bottom:659.250000px;}
.y12_c00254{bottom:679.350000px;}
.y11_c00254{bottom:699.600000px;}
.y10_c00254{bottom:719.700000px;}
.yf_c00254{bottom:739.800000px;}
.ye_c00254{bottom:759.900000px;}
.yd_c00254{bottom:779.700000px;}
.yc_c00254{bottom:799.800000px;}
.yb_c00254{bottom:819.600000px;}
.ya_c00254{bottom:839.400000px;}
.y9_c00254{bottom:859.500000px;}
.y8_c00254{bottom:879.300000px;}
.y7_c00254{bottom:899.400000px;}
.y6_c00254{bottom:919.500000px;}
.y5_c00254{bottom:939.300000px;}
.y4_c00254{bottom:959.400000px;}
.y3_c00254{bottom:979.200000px;}
.y2_c00254{bottom:999.000000px;}
.y1_c00254{bottom:1037.100000px;}
.h2_c00254{height:54.000000px;}
.h0_c00254{height:1166.759949px;}
.h1_c00254{height:1167.000000px;}
.w0_c00254{width:918.720063px;}
.w1_c00254{width:918.750000px;}
.x0_c00254{left:0.000000px;}
.xb3_c00254{left:137.850000px;}
.x3_c00254{left:138.900000px;}
.x1_c00254{left:140.700000px;}
.x85_c00254{left:156.300000px;}
.x5e_c00254{left:157.950000px;}
.x10a_c00254{left:159.450000px;}
.xc9_c00254{left:160.800000px;}
.x4f_c00254{left:165.000000px;}
.xe2_c00254{left:168.900000px;}
.xb7_c00254{left:169.950000px;}
.x6c_c00254{left:172.200000px;}
.xe1_c00254{left:173.700000px;}
.x94_c00254{left:176.100000px;}
.xf0_c00254{left:177.900000px;}
.x2d_c00254{left:181.350000px;}
.x10f_c00254{left:182.850000px;}
.x5f_c00254{left:183.900000px;}
.x4_c00254{left:185.700000px;}
.xe8_c00254{left:187.800000px;}
.xcc_c00254{left:189.000000px;}
.xb8_c00254{left:191.850000px;}
.x14_c00254{left:193.200000px;}
.x86_c00254{left:195.150000px;}
.x127_c00254{left:196.950000px;}
.x3f_c00254{left:198.600000px;}
.xb4_c00254{left:200.100000px;}
.x6d_c00254{left:201.300000px;}
.x78_c00254{left:202.950000px;}
.xab_c00254{left:204.300000px;}
.x104_c00254{left:205.950000px;}
.x119_c00254{left:208.650000px;}
.xda_c00254{left:210.000000px;}
.xca_c00254{left:211.950000px;}
.x15_c00254{left:216.300000px;}
.x95_c00254{left:218.550000px;}
.x50_c00254{left:219.750000px;}
.xd7_c00254{left:220.800000px;}
.x5_c00254{left:222.000000px;}
.xc0_c00254{left:223.650000px;}
.x2e_c00254{left:225.300000px;}
.x79_c00254{left:227.850000px;}
.x131_c00254{left:229.050000px;}
.xf8_c00254{left:230.100000px;}
.x21_c00254{left:232.200000px;}
.x12d_c00254{left:236.850000px;}
.x10b_c00254{left:237.900000px;}
.x87_c00254{left:240.450000px;}
.x40_c00254{left:241.500000px;}
.x60_c00254{left:243.600000px;}
.x11e_c00254{left:246.150000px;}
.xf1_c00254{left:247.800000px;}
.x22_c00254{left:249.900000px;}
.xcb_c00254{left:251.250000px;}
.xfb_c00254{left:253.650000px;}
.x2f_c00254{left:256.650000px;}
.x51_c00254{left:259.050000px;}
.x7a_c00254{left:262.050000px;}
.xb9_c00254{left:263.100000px;}
.x23_c00254{left:264.600000px;}
.x105_c00254{left:266.400000px;}
.x61_c00254{left:271.350000px;}
.x100_c00254{left:272.550000px;}
.x16_c00254{left:274.650000px;}
.x6_c00254{left:275.700000px;}
.x88_c00254{left:277.200000px;}
.x52_c00254{left:278.850000px;}
.x8f_c00254{left:281.550000px;}
.x30_c00254{left:283.350000px;}
.xcd_c00254{left:285.150000px;}
.x10d_c00254{left:286.200000px;}
.x6e_c00254{left:287.700000px;}
.xe3_c00254{left:289.200000px;}
.x41_c00254{left:291.600000px;}
.x132_c00254{left:293.550000px;}
.x7b_c00254{left:296.250000px;}
.x123_c00254{left:299.100000px;}
.x24_c00254{left:302.400000px;}
.x7_c00254{left:304.200000px;}
.x6f_c00254{left:306.000000px;}
.x62_c00254{left:307.650000px;}
.xf2_c00254{left:308.700000px;}
.x7c_c00254{left:310.650000px;}
.x42_c00254{left:311.700000px;}
.x31_c00254{left:313.950000px;}
.xdb_c00254{left:315.450000px;}
.x90_c00254{left:316.800000px;}
.xe9_c00254{left:319.500000px;}
.x133_c00254{left:322.050000px;}
.xa4_c00254{left:326.100000px;}
.x70_c00254{left:327.600000px;}
.xb5_c00254{left:328.800000px;}
.x17_c00254{left:331.500000px;}
.x25_c00254{left:334.050000px;}
.x7d_c00254{left:336.150000px;}
.x32_c00254{left:338.100000px;}
.x9d_c00254{left:339.150000px;}
.x96_c00254{left:345.600000px;}
.xd8_c00254{left:347.550000px;}
.xf3_c00254{left:348.600000px;}
.x8_c00254{left:349.950000px;}
.x11f_c00254{left:351.000000px;}
.x11a_c00254{left:352.650000px;}
.x63_c00254{left:354.150000px;}
.xce_c00254{left:355.350000px;}
.xd4_c00254{left:357.150000px;}
.x89_c00254{left:358.500000px;}
.x43_c00254{left:361.650000px;}
.x12b_c00254{left:363.000000px;}
.x101_c00254{left:366.900000px;}
.xea_c00254{left:368.850000px;}
.xba_c00254{left:369.900000px;}
.x106_c00254{left:372.900000px;}
.x18_c00254{left:374.700000px;}
.xb6_c00254{left:376.350000px;}
.xdc_c00254{left:377.400000px;}
.x112_c00254{left:378.600000px;}
.x97_c00254{left:379.800000px;}
.x33_c00254{left:382.050000px;}
.x9_c00254{left:384.150000px;}
.x124_c00254{left:385.500000px;}
.x9e_c00254{left:388.050000px;}
.x64_c00254{left:391.200000px;}
.xfc_c00254{left:393.750000px;}
.xe4_c00254{left:395.550000px;}
.xa_c00254{left:399.300000px;}
.x115_c00254{left:400.800000px;}
.x7e_c00254{left:402.000000px;}
.x19_c00254{left:404.550000px;}
.xf9_c00254{left:406.650000px;}
.x34_c00254{left:411.600000px;}
.x91_c00254{left:414.000000px;}
.xfd_c00254{left:415.050000px;}
.xac_c00254{left:417.000000px;}
.x71_c00254{left:418.050000px;}
.x53_c00254{left:420.750000px;}
.xa5_c00254{left:422.250000px;}
.x125_c00254{left:424.050000px;}
.x26_c00254{left:425.400000px;}
.x11b_c00254{left:428.700000px;}
.x44_c00254{left:430.350000px;}
.xb_c00254{left:434.250000px;}
.xc1_c00254{left:437.550000px;}
.x2_c00254{left:440.550000px;}
.x134_c00254{left:441.600000px;}
.xd5_c00254{left:444.300000px;}
.x7f_c00254{left:448.800000px;}
.x8a_c00254{left:450.300000px;}
.xeb_c00254{left:451.650000px;}
.xad_c00254{left:454.500000px;}
.x65_c00254{left:455.700000px;}
.x98_c00254{left:457.200000px;}
.x45_c00254{left:458.850000px;}
.x54_c00254{left:460.350000px;}
.x9f_c00254{left:461.550000px;}
.x126_c00254{left:463.350000px;}
.x72_c00254{left:464.850000px;}
.x116_c00254{left:465.900000px;}
.x113_c00254{left:467.250000px;}
.x1a_c00254{left:468.300000px;}
.xbb_c00254{left:469.650000px;}
.xe5_c00254{left:470.850000px;}
.xc2_c00254{left:473.550000px;}
.x107_c00254{left:477.000000px;}
.xcf_c00254{left:479.550000px;}
.x92_c00254{left:481.350000px;}
.x8b_c00254{left:484.200000px;}
.x27_c00254{left:486.300000px;}
.xc_c00254{left:488.550000px;}
.x120_c00254{left:494.550000px;}
.x46_c00254{left:495.600000px;}
.x35_c00254{left:498.000000px;}
.xf4_c00254{left:499.950000px;}
.x73_c00254{left:501.150000px;}
.xe6_c00254{left:502.500000px;}
.x110_c00254{left:505.650000px;}
.x80_c00254{left:507.450000px;}
.xc3_c00254{left:509.250000px;}
.x66_c00254{left:512.250000px;}
.xd_c00254{left:514.500000px;}
.xae_c00254{left:515.700000px;}
.xf5_c00254{left:519.450000px;}
.xd0_c00254{left:520.650000px;}
.x1b_c00254{left:524.400000px;}
.x55_c00254{left:526.500000px;}
.x12e_c00254{left:529.350000px;}
.x47_c00254{left:530.550000px;}
.x74_c00254{left:532.050000px;}
.xfe_c00254{left:533.250000px;}
.xc4_c00254{left:534.450000px;}
.xf6_c00254{left:535.650000px;}
.x28_c00254{left:536.700000px;}
.x128_c00254{left:541.800000px;}
.x56_c00254{left:543.750000px;}
.x36_c00254{left:545.550000px;}
.x99_c00254{left:547.500000px;}
.x108_c00254{left:549.000000px;}
.x67_c00254{left:551.100000px;}
.x1c_c00254{left:554.250000px;}
.x81_c00254{left:555.450000px;}
.x29_c00254{left:557.250000px;}
.xaf_c00254{left:560.400000px;}
.x48_c00254{left:565.050000px;}
.xa0_c00254{left:566.700000px;}
.x10e_c00254{left:569.100000px;}
.xc5_c00254{left:570.150000px;}
.xe_c00254{left:571.800000px;}
.x8c_c00254{left:576.000000px;}
.x111_c00254{left:579.450000px;}
.x37_c00254{left:583.050000px;}
.x75_c00254{left:585.300000px;}
.x49_c00254{left:586.650000px;}
.xa6_c00254{left:588.750000px;}
.xc6_c00254{left:589.950000px;}
.x117_c00254{left:592.650000px;}
.xec_c00254{left:594.900000px;}
.x121_c00254{left:596.850000px;}
.x4a_c00254{left:598.500000px;}
.xdd_c00254{left:600.000000px;}
.x57_c00254{left:601.650000px;}
.xa1_c00254{left:603.450000px;}
.x12c_c00254{left:604.650000px;}
.xf_c00254{left:606.000000px;}
.x2a_c00254{left:609.450000px;}
.x68_c00254{left:611.550000px;}
.x129_c00254{left:614.100000px;}
.xc7_c00254{left:615.450000px;}
.x58_c00254{left:617.100000px;}
.x9a_c00254{left:618.150000px;}
.x38_c00254{left:620.100000px;}
.xf7_c00254{left:623.550000px;}
.x11c_c00254{left:628.200000px;}
.x135_c00254{left:630.600000px;}
.xb0_c00254{left:632.700000px;}
.xd6_c00254{left:634.350000px;}
.x8d_c00254{left:636.450000px;}
.xbc_c00254{left:637.650000px;}
.x82_c00254{left:640.350000px;}
.x76_c00254{left:645.450000px;}
.x1d_c00254{left:647.250000px;}
.xa7_c00254{left:648.450000px;}
.x39_c00254{left:651.000000px;}
.x136_c00254{left:653.250000px;}
.xd9_c00254{left:654.600000px;}
.x69_c00254{left:660.450000px;}
.x109_c00254{left:661.800000px;}
.xc8_c00254{left:663.000000px;}
.x59_c00254{left:664.350000px;}
.x12f_c00254{left:665.400000px;}
.xed_c00254{left:667.200000px;}
.x1e_c00254{left:669.900000px;}
.x83_c00254{left:671.700000px;}
.x3a_c00254{left:673.650000px;}
.xbd_c00254{left:675.450000px;}
.x10_c00254{left:681.300000px;}
.xa8_c00254{left:682.650000px;}
.x4b_c00254{left:684.900000px;}
.x2b_c00254{left:686.850000px;}
.xd1_c00254{left:690.750000px;}
.x9b_c00254{left:692.400000px;}
.x5a_c00254{left:694.950000px;}
.xee_c00254{left:698.100000px;}
.xbe_c00254{left:700.950000px;}
.x4c_c00254{left:702.600000px;}
.x6a_c00254{left:704.700000px;}
.x5b_c00254{left:707.250000px;}
.xde_c00254{left:708.750000px;}
.x114_c00254{left:710.100000px;}
.xa9_c00254{left:711.150000px;}
.x11_c00254{left:712.650000px;}
.x8e_c00254{left:714.150000px;}
.x3b_c00254{left:715.350000px;}
.x122_c00254{left:716.700000px;}
.x11d_c00254{left:717.900000px;}
.x93_c00254{left:718.950000px;}
.xff_c00254{left:721.500000px;}
.xe7_c00254{left:723.150000px;}
.x3c_c00254{left:726.450000px;}
.x4d_c00254{left:728.100000px;}
.xfa_c00254{left:729.300000px;}
.x102_c00254{left:731.550000px;}
.xa2_c00254{left:733.500000px;}
.x9c_c00254{left:735.900000px;}
.x1f_c00254{left:740.100000px;}
.xdf_c00254{left:741.150000px;}
.xb1_c00254{left:744.900000px;}
.x84_c00254{left:747.000000px;}
.x12_c00254{left:749.700000px;}
.x2c_c00254{left:753.750000px;}
.x5c_c00254{left:756.150000px;}
.x3d_c00254{left:757.350000px;}
.xe0_c00254{left:758.400000px;}
.xd2_c00254{left:762.750000px;}
.x6b_c00254{left:764.850000px;}
.x20_c00254{left:768.600000px;}
.x77_c00254{left:770.700000px;}
.xef_c00254{left:771.900000px;}
.x5d_c00254{left:773.100000px;}
.x4e_c00254{left:774.150000px;}
.xd3_c00254{left:777.450000px;}
.xbf_c00254{left:779.100000px;}
.xaa_c00254{left:781.350000px;}
.x12a_c00254{left:782.700000px;}
.x3e_c00254{left:785.100000px;}
.x10c_c00254{left:786.750000px;}
.xb2_c00254{left:788.400000px;}
.x130_c00254{left:793.950000px;}
.x103_c00254{left:795.600000px;}
.xa3_c00254{left:796.800000px;}
.x13_c00254{left:798.000000px;}
.x118_c00254{left:799.800000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws2_c00254{word-spacing:-8.111111pt;}
.ws5_c00254{word-spacing:-7.250146pt;}
.ws3_c00254{word-spacing:-5.058419pt;}
.ws0_c00254{word-spacing:-0.685408pt;}
.ws9_c00254{word-spacing:0.000000pt;}
.ws8_c00254{word-spacing:2.095238pt;}
.ws4_c00254{word-spacing:4.111111pt;}
.ws1_c00254{word-spacing:5.555556pt;}
.ws6_c00254{word-spacing:10.888889pt;}
.ws7_c00254{word-spacing:11.966261pt;}
.fs0_c00254{font-size:48.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y2d_c00254{bottom:126.133333pt;}
.y2c_c00254{bottom:143.733333pt;}
.y2b_c00254{bottom:161.333333pt;}
.y2a_c00254{bottom:178.933333pt;}
.y29_c00254{bottom:196.800000pt;}
.y28_c00254{bottom:214.666667pt;}
.y27_c00254{bottom:232.533333pt;}
.y26_c00254{bottom:250.133333pt;}
.y25_c00254{bottom:267.733333pt;}
.y24_c00254{bottom:285.600000pt;}
.y23_c00254{bottom:303.466667pt;}
.y22_c00254{bottom:320.800000pt;}
.y21_c00254{bottom:338.666667pt;}
.y20_c00254{bottom:356.266667pt;}
.y1f_c00254{bottom:373.866667pt;}
.y1e_c00254{bottom:391.733333pt;}
.y1d_c00254{bottom:409.600000pt;}
.y1c_c00254{bottom:426.800000pt;}
.y1b_c00254{bottom:445.066667pt;}
.y1a_c00254{bottom:462.400000pt;}
.y19_c00254{bottom:479.600000pt;}
.y18_c00254{bottom:497.866667pt;}
.y17_c00254{bottom:515.466667pt;}
.y16_c00254{bottom:533.066667pt;}
.y15_c00254{bottom:550.666667pt;}
.y14_c00254{bottom:568.400000pt;}
.y13_c00254{bottom:586.000000pt;}
.y12_c00254{bottom:603.866667pt;}
.y11_c00254{bottom:621.866667pt;}
.y10_c00254{bottom:639.733333pt;}
.yf_c00254{bottom:657.600000pt;}
.ye_c00254{bottom:675.466667pt;}
.yd_c00254{bottom:693.066667pt;}
.yc_c00254{bottom:710.933333pt;}
.yb_c00254{bottom:728.533333pt;}
.ya_c00254{bottom:746.133333pt;}
.y9_c00254{bottom:764.000000pt;}
.y8_c00254{bottom:781.600000pt;}
.y7_c00254{bottom:799.466667pt;}
.y6_c00254{bottom:817.333333pt;}
.y5_c00254{bottom:834.933333pt;}
.y4_c00254{bottom:852.800000pt;}
.y3_c00254{bottom:870.400000pt;}
.y2_c00254{bottom:888.000000pt;}
.y1_c00254{bottom:921.866667pt;}
.h2_c00254{height:48.000000pt;}
.h0_c00254{height:1037.119955pt;}
.h1_c00254{height:1037.333333pt;}
.w0_c00254{width:816.640056pt;}
.w1_c00254{width:816.666667pt;}
.x0_c00254{left:0.000000pt;}
.xb3_c00254{left:122.533333pt;}
.x3_c00254{left:123.466667pt;}
.x1_c00254{left:125.066667pt;}
.x85_c00254{left:138.933333pt;}
.x5e_c00254{left:140.400000pt;}
.x10a_c00254{left:141.733333pt;}
.xc9_c00254{left:142.933333pt;}
.x4f_c00254{left:146.666667pt;}
.xe2_c00254{left:150.133333pt;}
.xb7_c00254{left:151.066667pt;}
.x6c_c00254{left:153.066667pt;}
.xe1_c00254{left:154.400000pt;}
.x94_c00254{left:156.533333pt;}
.xf0_c00254{left:158.133333pt;}
.x2d_c00254{left:161.200000pt;}
.x10f_c00254{left:162.533333pt;}
.x5f_c00254{left:163.466667pt;}
.x4_c00254{left:165.066667pt;}
.xe8_c00254{left:166.933333pt;}
.xcc_c00254{left:168.000000pt;}
.xb8_c00254{left:170.533333pt;}
.x14_c00254{left:171.733333pt;}
.x86_c00254{left:173.466667pt;}
.x127_c00254{left:175.066667pt;}
.x3f_c00254{left:176.533333pt;}
.xb4_c00254{left:177.866667pt;}
.x6d_c00254{left:178.933333pt;}
.x78_c00254{left:180.400000pt;}
.xab_c00254{left:181.600000pt;}
.x104_c00254{left:183.066667pt;}
.x119_c00254{left:185.466667pt;}
.xda_c00254{left:186.666667pt;}
.xca_c00254{left:188.400000pt;}
.x15_c00254{left:192.266667pt;}
.x95_c00254{left:194.266667pt;}
.x50_c00254{left:195.333333pt;}
.xd7_c00254{left:196.266667pt;}
.x5_c00254{left:197.333333pt;}
.xc0_c00254{left:198.800000pt;}
.x2e_c00254{left:200.266667pt;}
.x79_c00254{left:202.533333pt;}
.x131_c00254{left:203.600000pt;}
.xf8_c00254{left:204.533333pt;}
.x21_c00254{left:206.400000pt;}
.x12d_c00254{left:210.533333pt;}
.x10b_c00254{left:211.466667pt;}
.x87_c00254{left:213.733333pt;}
.x40_c00254{left:214.666667pt;}
.x60_c00254{left:216.533333pt;}
.x11e_c00254{left:218.800000pt;}
.xf1_c00254{left:220.266667pt;}
.x22_c00254{left:222.133333pt;}
.xcb_c00254{left:223.333333pt;}
.xfb_c00254{left:225.466667pt;}
.x2f_c00254{left:228.133333pt;}
.x51_c00254{left:230.266667pt;}
.x7a_c00254{left:232.933333pt;}
.xb9_c00254{left:233.866667pt;}
.x23_c00254{left:235.200000pt;}
.x105_c00254{left:236.800000pt;}
.x61_c00254{left:241.200000pt;}
.x100_c00254{left:242.266667pt;}
.x16_c00254{left:244.133333pt;}
.x6_c00254{left:245.066667pt;}
.x88_c00254{left:246.400000pt;}
.x52_c00254{left:247.866667pt;}
.x8f_c00254{left:250.266667pt;}
.x30_c00254{left:251.866667pt;}
.xcd_c00254{left:253.466667pt;}
.x10d_c00254{left:254.400000pt;}
.x6e_c00254{left:255.733333pt;}
.xe3_c00254{left:257.066667pt;}
.x41_c00254{left:259.200000pt;}
.x132_c00254{left:260.933333pt;}
.x7b_c00254{left:263.333333pt;}
.x123_c00254{left:265.866667pt;}
.x24_c00254{left:268.800000pt;}
.x7_c00254{left:270.400000pt;}
.x6f_c00254{left:272.000000pt;}
.x62_c00254{left:273.466667pt;}
.xf2_c00254{left:274.400000pt;}
.x7c_c00254{left:276.133333pt;}
.x42_c00254{left:277.066667pt;}
.x31_c00254{left:279.066667pt;}
.xdb_c00254{left:280.400000pt;}
.x90_c00254{left:281.600000pt;}
.xe9_c00254{left:284.000000pt;}
.x133_c00254{left:286.266667pt;}
.xa4_c00254{left:289.866667pt;}
.x70_c00254{left:291.200000pt;}
.xb5_c00254{left:292.266667pt;}
.x17_c00254{left:294.666667pt;}
.x25_c00254{left:296.933333pt;}
.x7d_c00254{left:298.800000pt;}
.x32_c00254{left:300.533333pt;}
.x9d_c00254{left:301.466667pt;}
.x96_c00254{left:307.200000pt;}
.xd8_c00254{left:308.933333pt;}
.xf3_c00254{left:309.866667pt;}
.x8_c00254{left:311.066667pt;}
.x11f_c00254{left:312.000000pt;}
.x11a_c00254{left:313.466667pt;}
.x63_c00254{left:314.800000pt;}
.xce_c00254{left:315.866667pt;}
.xd4_c00254{left:317.466667pt;}
.x89_c00254{left:318.666667pt;}
.x43_c00254{left:321.466667pt;}
.x12b_c00254{left:322.666667pt;}
.x101_c00254{left:326.133333pt;}
.xea_c00254{left:327.866667pt;}
.xba_c00254{left:328.800000pt;}
.x106_c00254{left:331.466667pt;}
.x18_c00254{left:333.066667pt;}
.xb6_c00254{left:334.533333pt;}
.xdc_c00254{left:335.466667pt;}
.x112_c00254{left:336.533333pt;}
.x97_c00254{left:337.600000pt;}
.x33_c00254{left:339.600000pt;}
.x9_c00254{left:341.466667pt;}
.x124_c00254{left:342.666667pt;}
.x9e_c00254{left:344.933333pt;}
.x64_c00254{left:347.733333pt;}
.xfc_c00254{left:350.000000pt;}
.xe4_c00254{left:351.600000pt;}
.xa_c00254{left:354.933333pt;}
.x115_c00254{left:356.266667pt;}
.x7e_c00254{left:357.333333pt;}
.x19_c00254{left:359.600000pt;}
.xf9_c00254{left:361.466667pt;}
.x34_c00254{left:365.866667pt;}
.x91_c00254{left:368.000000pt;}
.xfd_c00254{left:368.933333pt;}
.xac_c00254{left:370.666667pt;}
.x71_c00254{left:371.600000pt;}
.x53_c00254{left:374.000000pt;}
.xa5_c00254{left:375.333333pt;}
.x125_c00254{left:376.933333pt;}
.x26_c00254{left:378.133333pt;}
.x11b_c00254{left:381.066667pt;}
.x44_c00254{left:382.533333pt;}
.xb_c00254{left:386.000000pt;}
.xc1_c00254{left:388.933333pt;}
.x2_c00254{left:391.600000pt;}
.x134_c00254{left:392.533333pt;}
.xd5_c00254{left:394.933333pt;}
.x7f_c00254{left:398.933333pt;}
.x8a_c00254{left:400.266667pt;}
.xeb_c00254{left:401.466667pt;}
.xad_c00254{left:404.000000pt;}
.x65_c00254{left:405.066667pt;}
.x98_c00254{left:406.400000pt;}
.x45_c00254{left:407.866667pt;}
.x54_c00254{left:409.200000pt;}
.x9f_c00254{left:410.266667pt;}
.x126_c00254{left:411.866667pt;}
.x72_c00254{left:413.200000pt;}
.x116_c00254{left:414.133333pt;}
.x113_c00254{left:415.333333pt;}
.x1a_c00254{left:416.266667pt;}
.xbb_c00254{left:417.466667pt;}
.xe5_c00254{left:418.533333pt;}
.xc2_c00254{left:420.933333pt;}
.x107_c00254{left:424.000000pt;}
.xcf_c00254{left:426.266667pt;}
.x92_c00254{left:427.866667pt;}
.x8b_c00254{left:430.400000pt;}
.x27_c00254{left:432.266667pt;}
.xc_c00254{left:434.266667pt;}
.x120_c00254{left:439.600000pt;}
.x46_c00254{left:440.533333pt;}
.x35_c00254{left:442.666667pt;}
.xf4_c00254{left:444.400000pt;}
.x73_c00254{left:445.466667pt;}
.xe6_c00254{left:446.666667pt;}
.x110_c00254{left:449.466667pt;}
.x80_c00254{left:451.066667pt;}
.xc3_c00254{left:452.666667pt;}
.x66_c00254{left:455.333333pt;}
.xd_c00254{left:457.333333pt;}
.xae_c00254{left:458.400000pt;}
.xf5_c00254{left:461.733333pt;}
.xd0_c00254{left:462.800000pt;}
.x1b_c00254{left:466.133333pt;}
.x55_c00254{left:468.000000pt;}
.x12e_c00254{left:470.533333pt;}
.x47_c00254{left:471.600000pt;}
.x74_c00254{left:472.933333pt;}
.xfe_c00254{left:474.000000pt;}
.xc4_c00254{left:475.066667pt;}
.xf6_c00254{left:476.133333pt;}
.x28_c00254{left:477.066667pt;}
.x128_c00254{left:481.600000pt;}
.x56_c00254{left:483.333333pt;}
.x36_c00254{left:484.933333pt;}
.x99_c00254{left:486.666667pt;}
.x108_c00254{left:488.000000pt;}
.x67_c00254{left:489.866667pt;}
.x1c_c00254{left:492.666667pt;}
.x81_c00254{left:493.733333pt;}
.x29_c00254{left:495.333333pt;}
.xaf_c00254{left:498.133333pt;}
.x48_c00254{left:502.266667pt;}
.xa0_c00254{left:503.733333pt;}
.x10e_c00254{left:505.866667pt;}
.xc5_c00254{left:506.800000pt;}
.xe_c00254{left:508.266667pt;}
.x8c_c00254{left:512.000000pt;}
.x111_c00254{left:515.066667pt;}
.x37_c00254{left:518.266667pt;}
.x75_c00254{left:520.266667pt;}
.x49_c00254{left:521.466667pt;}
.xa6_c00254{left:523.333333pt;}
.xc6_c00254{left:524.400000pt;}
.x117_c00254{left:526.800000pt;}
.xec_c00254{left:528.800000pt;}
.x121_c00254{left:530.533333pt;}
.x4a_c00254{left:532.000000pt;}
.xdd_c00254{left:533.333333pt;}
.x57_c00254{left:534.800000pt;}
.xa1_c00254{left:536.400000pt;}
.x12c_c00254{left:537.466667pt;}
.xf_c00254{left:538.666667pt;}
.x2a_c00254{left:541.733333pt;}
.x68_c00254{left:543.600000pt;}
.x129_c00254{left:545.866667pt;}
.xc7_c00254{left:547.066667pt;}
.x58_c00254{left:548.533333pt;}
.x9a_c00254{left:549.466667pt;}
.x38_c00254{left:551.200000pt;}
.xf7_c00254{left:554.266667pt;}
.x11c_c00254{left:558.400000pt;}
.x135_c00254{left:560.533333pt;}
.xb0_c00254{left:562.400000pt;}
.xd6_c00254{left:563.866667pt;}
.x8d_c00254{left:565.733333pt;}
.xbc_c00254{left:566.800000pt;}
.x82_c00254{left:569.200000pt;}
.x76_c00254{left:573.733333pt;}
.x1d_c00254{left:575.333333pt;}
.xa7_c00254{left:576.400000pt;}
.x39_c00254{left:578.666667pt;}
.x136_c00254{left:580.666667pt;}
.xd9_c00254{left:581.866667pt;}
.x69_c00254{left:587.066667pt;}
.x109_c00254{left:588.266667pt;}
.xc8_c00254{left:589.333333pt;}
.x59_c00254{left:590.533333pt;}
.x12f_c00254{left:591.466667pt;}
.xed_c00254{left:593.066667pt;}
.x1e_c00254{left:595.466667pt;}
.x83_c00254{left:597.066667pt;}
.x3a_c00254{left:598.800000pt;}
.xbd_c00254{left:600.400000pt;}
.x10_c00254{left:605.600000pt;}
.xa8_c00254{left:606.800000pt;}
.x4b_c00254{left:608.800000pt;}
.x2b_c00254{left:610.533333pt;}
.xd1_c00254{left:614.000000pt;}
.x9b_c00254{left:615.466667pt;}
.x5a_c00254{left:617.733333pt;}
.xee_c00254{left:620.533333pt;}
.xbe_c00254{left:623.066667pt;}
.x4c_c00254{left:624.533333pt;}
.x6a_c00254{left:626.400000pt;}
.x5b_c00254{left:628.666667pt;}
.xde_c00254{left:630.000000pt;}
.x114_c00254{left:631.200000pt;}
.xa9_c00254{left:632.133333pt;}
.x11_c00254{left:633.466667pt;}
.x8e_c00254{left:634.800000pt;}
.x3b_c00254{left:635.866667pt;}
.x122_c00254{left:637.066667pt;}
.x11d_c00254{left:638.133333pt;}
.x93_c00254{left:639.066667pt;}
.xff_c00254{left:641.333333pt;}
.xe7_c00254{left:642.800000pt;}
.x3c_c00254{left:645.733333pt;}
.x4d_c00254{left:647.200000pt;}
.xfa_c00254{left:648.266667pt;}
.x102_c00254{left:650.266667pt;}
.xa2_c00254{left:652.000000pt;}
.x9c_c00254{left:654.133333pt;}
.x1f_c00254{left:657.866667pt;}
.xdf_c00254{left:658.800000pt;}
.xb1_c00254{left:662.133333pt;}
.x84_c00254{left:664.000000pt;}
.x12_c00254{left:666.400000pt;}
.x2c_c00254{left:670.000000pt;}
.x5c_c00254{left:672.133333pt;}
.x3d_c00254{left:673.200000pt;}
.xe0_c00254{left:674.133333pt;}
.xd2_c00254{left:678.000000pt;}
.x6b_c00254{left:679.866667pt;}
.x20_c00254{left:683.200000pt;}
.x77_c00254{left:685.066667pt;}
.xef_c00254{left:686.133333pt;}
.x5d_c00254{left:687.200000pt;}
.x4e_c00254{left:688.133333pt;}
.xd3_c00254{left:691.066667pt;}
.xbf_c00254{left:692.533333pt;}
.xaa_c00254{left:694.533333pt;}
.x12a_c00254{left:695.733333pt;}
.x3e_c00254{left:697.866667pt;}
.x10c_c00254{left:699.333333pt;}
.xb2_c00254{left:700.800000pt;}
.x130_c00254{left:705.733333pt;}
.x103_c00254{left:707.200000pt;}
.xa3_c00254{left:708.266667pt;}
.x13_c00254{left:709.333333pt;}
.x118_c00254{left:710.933333pt;}
}





/* 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_c00255 {
    display:none;
  }
  .loading-indicator_c00255.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00255 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_c00255 { 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_c00255" -> "#page-container .classname_c00255")
 */
.pf_c00255 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00255 { /* 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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00255 { /* 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_c00255 { /* 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_c00255 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00255 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00255 {overflow:visible;}
  }
}
.c_c00255 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00255 { /* 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_c00255:after { /* webkit #35443 */
  content: '';
}
.t_c00255:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00255 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 */
}
.__c00255 { /* 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_c00255 { /* info for Javascript */
  display:none;
}
.l_c00255 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00255 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00255 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00255: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_c00255 {
    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_c00255.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00255.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_c00255 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00255{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00255;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.000000;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;}
.m7f_c00255{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00255{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00255{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00255{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m38_c00255{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m74_c00255{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m68_c00255{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m56_c00255{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00255{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m39_c00255{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00255{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m65_c00255{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00255{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00255{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00255{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00255{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00255{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00255{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00255{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m57_c00255{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00255{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m87_c00255{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m71_c00255{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00255{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m30_c00255{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00255{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00255{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m62_c00255{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m25_c00255{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m79_c00255{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m72_c00255{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00255{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00255{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00255{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m90_c00255{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00255{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m66_c00255{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00255{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m93_c00255{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00255{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m41_c00255{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m24_c00255{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00255{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m35_c00255{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m52_c00255{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00255{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m85_c00255{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00255{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00255{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00255{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00255{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m63_c00255{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m44_c00255{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00255{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m49_c00255{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m42_c00255{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00255{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m45_c00255{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m51_c00255{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00255{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00255{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00255{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00255{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00255{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m84_c00255{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00255{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m98_c00255{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00255{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00255{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m88_c00255{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m14_c00255{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00255{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00255{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m86_c00255{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00255{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m40_c00255{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m47_c00255{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00255{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m17_c00255{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m94_c00255{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00255{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00255{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m48_c00255{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m32_c00255{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m22_c00255{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m80_c00255{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m33_c00255{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00255{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m83_c00255{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00255{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m81_c00255{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m34_c00255{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00255{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m96_c00255{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m61_c00255{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m54_c00255{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m69_c00255{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m43_c00255{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00255{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m70_c00255{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m97_c00255{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00255{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26_c00255{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m92_c00255{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m75_c00255{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28_c00255{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00255{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);}
.m15_c00255{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00255{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m60_c00255{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00255{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00255{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00255{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m21_c00255{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m58_c00255{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00255{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00255{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00255{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00255{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me_c00255{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m29_c00255{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m89_c00255{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md_c00255{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00255{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m50_c00255{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m77_c00255{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m99_c00255{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3_c00255{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m4_c00255{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00255{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m31_c00255{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m23_c00255{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00255{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00255{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00255{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m78_c00255{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m82_c00255{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m27_c00255{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m20_c00255{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00255{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00255{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m37_c00255{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00255{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00255{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m95_c00255{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m55_c00255{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00255{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00255{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00255{vertical-align:0.000000px;}
.ls0_c00255{letter-spacing:0.000000px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{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__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00255{word-spacing:-7.432432px;}
.ws0_c00255{word-spacing:-6.184211px;}
.ws5_c00255{word-spacing:-3.125000px;}
.ws9_c00255{word-spacing:0.000000px;}
.ws3_c00255{word-spacing:0.267857px;}
.ws7_c00255{word-spacing:4.318182px;}
.ws1_c00255{word-spacing:6.250000px;}
.ws6_c00255{word-spacing:7.500000px;}
.ws8_c00255{word-spacing:10.000000px;}
.ws4_c00255{word-spacing:14.629630px;}
._0_c00255{width:37.500000px;}
.fc0_c00255{color:transparent;}
.fs0_c00255{font-size:54.000000px;}
.fs1_c00255{font-size:60.000000px;}
.y0_c00255{bottom:0.000000px;}
.y2b_c00255{bottom:177.000000px;}
.y2a_c00255{bottom:197.100000px;}
.y29_c00255{bottom:217.200000px;}
.y28_c00255{bottom:237.000000px;}
.y27_c00255{bottom:257.100000px;}
.y26_c00255{bottom:276.900000px;}
.y25_c00255{bottom:297.000000px;}
.y24_c00255{bottom:316.800000px;}
.y23_c00255{bottom:336.900000px;}
.y22_c00255{bottom:356.700000px;}
.y21_c00255{bottom:396.750000px;}
.y20_c00255{bottom:417.300000px;}
.y1f_c00255{bottom:437.100000px;}
.y1e_c00255{bottom:457.200000px;}
.y1d_c00255{bottom:477.300000px;}
.y1c_c00255{bottom:496.800000px;}
.y1b_c00255{bottom:516.900000px;}
.y1a_c00255{bottom:536.700000px;}
.y19_c00255{bottom:556.500000px;}
.y18_c00255{bottom:576.300000px;}
.y17_c00255{bottom:596.400000px;}
.y16_c00255{bottom:616.500000px;}
.y15_c00255{bottom:636.300000px;}
.y14_c00255{bottom:656.400000px;}
.y13_c00255{bottom:676.500000px;}
.y12_c00255{bottom:696.150000px;}
.y11_c00255{bottom:716.700000px;}
.y10_c00255{bottom:736.500000px;}
.yf_c00255{bottom:756.600000px;}
.ye_c00255{bottom:776.700000px;}
.yd_c00255{bottom:796.800000px;}
.yc_c00255{bottom:816.900000px;}
.yb_c00255{bottom:837.000000px;}
.ya_c00255{bottom:856.800000px;}
.y9_c00255{bottom:876.600000px;}
.y8_c00255{bottom:896.700000px;}
.y7_c00255{bottom:917.250000px;}
.y6_c00255{bottom:937.050000px;}
.y5_c00255{bottom:957.000000px;}
.y4_c00255{bottom:976.800000px;}
.y3_c00255{bottom:996.900000px;}
.y2_c00255{bottom:1017.000000px;}
.y1_c00255{bottom:1055.550000px;}
.h2_c00255{height:54.000000px;}
.h3_c00255{height:60.000000px;}
.h0_c00255{height:1166.759949px;}
.h1_c00255{height:1167.000000px;}
.w0_c00255{width:918.720063px;}
.w1_c00255{width:918.750000px;}
.x0_c00255{left:0.000000px;}
.x7_c00255{left:117.750000px;}
.xec_c00255{left:118.950000px;}
.x12e_c00255{left:120.000000px;}
.x18_c00255{left:138.450000px;}
.x113_c00255{left:139.500000px;}
.xf6_c00255{left:145.200000px;}
.x108_c00255{left:146.850000px;}
.x27_c00255{left:149.100000px;}
.xc1_c00255{left:150.450000px;}
.xb5_c00255{left:152.100000px;}
.x7e_c00255{left:153.450000px;}
.x59_c00255{left:155.400000px;}
.x36_c00255{left:156.900000px;}
.x139_c00255{left:159.450000px;}
.x19_c00255{left:163.650000px;}
.x8_c00255{left:165.300000px;}
.xed_c00255{left:166.500000px;}
.x12f_c00255{left:168.600000px;}
.x7f_c00255{left:171.450000px;}
.xd0_c00255{left:172.950000px;}
.xbd_c00255{left:174.600000px;}
.x3f_c00255{left:176.100000px;}
.xcb_c00255{left:178.650000px;}
.x28_c00255{left:180.000000px;}
.x13a_c00255{left:181.800000px;}
.x80_c00255{left:183.300000px;}
.x11a_c00255{left:185.400000px;}
.x65_c00255{left:187.350000px;}
.xf1_c00255{left:188.850000px;}
.x127_c00255{left:190.500000px;}
.x9d_c00255{left:192.750000px;}
.x141_c00255{left:193.800000px;}
.x9_c00255{left:194.850000px;}
.x70_c00255{left:196.500000px;}
.x4a_c00255{left:197.850000px;}
.x5a_c00255{left:198.900000px;}
.x1a_c00255{left:202.500000px;}
.x66_c00255{left:204.600000px;}
.x13d_c00255{left:206.100000px;}
.x29_c00255{left:207.300000px;}
.x89_c00255{left:208.500000px;}
.x132_c00255{left:210.900000px;}
.x11f_c00255{left:213.450000px;}
.xb6_c00255{left:215.100000px;}
.x117_c00255{left:217.200000px;}
.xa_c00255{left:218.550000px;}
.xf2_c00255{left:219.750000px;}
.x109_c00255{left:221.400000px;}
.x37_c00255{left:223.200000px;}
.x71_c00255{left:224.550000px;}
.x4b_c00255{left:226.350000px;}
.xa6_c00255{left:228.150000px;}
.x81_c00255{left:230.400000px;}
.xbe_c00255{left:232.200000px;}
.xff_c00255{left:234.300000px;}
.xb_c00255{left:235.500000px;}
.xf7_c00255{left:236.550000px;}
.x93_c00255{left:238.500000px;}
.xdd_c00255{left:242.400000px;}
.x1b_c00255{left:243.600000px;}
.xd1_c00255{left:245.400000px;}
.xc2_c00255{left:246.600000px;}
.xac_c00255{left:249.750000px;}
.x40_c00255{left:250.950000px;}
.x67_c00255{left:252.150000px;}
.xc_c00255{left:255.600000px;}
.xb7_c00255{left:257.550000px;}
.x5b_c00255{left:261.900000px;}
.xd7_c00255{left:264.450000px;}
.x122_c00255{left:265.650000px;}
.x100_c00255{left:268.800000px;}
.x1c_c00255{left:269.850000px;}
.x2a_c00255{left:271.050000px;}
.xde_c00255{left:273.300000px;}
.xee_c00255{left:274.500000px;}
.x9e_c00255{left:276.900000px;}
.xa7_c00255{left:278.250000px;}
.x41_c00255{left:279.750000px;}
.x5c_c00255{left:282.000000px;}
.x8a_c00255{left:286.200000px;}
.x4c_c00255{left:287.250000px;}
.x72_c00255{left:289.050000px;}
.x94_c00255{left:291.000000px;}
.xd_c00255{left:294.150000px;}
.xe6_c00255{left:296.400000px;}
.xbf_c00255{left:297.450000px;}
.xa8_c00255{left:299.100000px;}
.x38_c00255{left:300.600000px;}
.xad_c00255{left:301.650000px;}
.x9f_c00255{left:305.700000px;}
.x1d_c00255{left:308.100000px;}
.x5d_c00255{left:310.050000px;}
.xe_c00255{left:311.850000px;}
.x13b_c00255{left:314.550000px;}
.x135_c00255{left:317.850000px;}
.x82_c00255{left:320.100000px;}
.xc3_c00255{left:321.150000px;}
.x68_c00255{left:322.350000px;}
.xd8_c00255{left:323.400000px;}
.x10e_c00255{left:327.600000px;}
.x95_c00255{left:329.100000px;}
.x101_c00255{left:330.750000px;}
.x42_c00255{left:332.250000px;}
.x1_c00255{left:335.850000px;}
.xf_c00255{left:339.900000px;}
.x73_c00255{left:343.350000px;}
.x2b_c00255{left:344.850000px;}
.xfc_c00255{left:345.900000px;}
.x136_c00255{left:347.700000px;}
.x96_c00255{left:349.200000px;}
.x1e_c00255{left:351.300000px;}
.xc4_c00255{left:352.500000px;}
.xd9_c00255{left:354.000000px;}
.x69_c00255{left:355.500000px;}
.x102_c00255{left:357.450000px;}
.x4d_c00255{left:358.500000px;}
.xae_c00255{left:360.300000px;}
.xb8_c00255{left:361.350000px;}
.x83_c00255{left:363.600000px;}
.xa0_c00255{left:365.850000px;}
.xdf_c00255{left:366.900000px;}
.x6a_c00255{left:368.850000px;}
.x8b_c00255{left:370.350000px;}
.x43_c00255{left:372.150000px;}
.xc5_c00255{left:373.800000px;}
.x2c_c00255{left:375.150000px;}
.x39_c00255{left:377.700000px;}
.x130_c00255{left:378.900000px;}
.x4e_c00255{left:381.600000px;}
.x10f_c00255{left:383.700000px;}
.xe7_c00255{left:386.100000px;}
.x142_c00255{left:391.500000px;}
.x5e_c00255{left:392.850000px;}
.x118_c00255{left:394.650000px;}
.x74_c00255{left:396.300000px;}
.x2_c00255{left:398.550000px;}
.x3a_c00255{left:401.400000px;}
.xa1_c00255{left:403.350000px;}
.xb9_c00255{left:406.050000px;}
.x8c_c00255{left:407.400000px;}
.x84_c00255{left:409.200000px;}
.x10_c00255{left:410.400000px;}
.x5f_c00255{left:412.350000px;}
.x1f_c00255{left:414.000000px;}
.x2d_c00255{left:415.050000px;}
.xc0_c00255{left:418.800000px;}
.xe8_c00255{left:420.000000px;}
.x110_c00255{left:422.850000px;}
.x6b_c00255{left:423.900000px;}
.x4f_c00255{left:425.100000px;}
.x123_c00255{left:426.150000px;}
.xba_c00255{left:427.350000px;}
.x97_c00255{left:429.750000px;}
.xa2_c00255{left:432.450000px;}
.xaf_c00255{left:434.100000px;}
.x3_c00255{left:436.650000px;}
.xc6_c00255{left:438.900000px;}
.x8d_c00255{left:440.100000px;}
.x11_c00255{left:441.300000px;}
.x10a_c00255{left:442.500000px;}
.xe0_c00255{left:446.850000px;}
.xf3_c00255{left:449.400000px;}
.x120_c00255{left:451.950000px;}
.x2e_c00255{left:453.150000px;}
.xb0_c00255{left:454.200000px;}
.x20_c00255{left:457.200000px;}
.x50_c00255{left:459.000000px;}
.x137_c00255{left:460.800000px;}
.x60_c00255{left:462.000000px;}
.x103_c00255{left:463.050000px;}
.x111_c00255{left:464.550000px;}
.x44_c00255{left:465.750000px;}
.x13c_c00255{left:466.800000px;}
.xef_c00255{left:469.950000px;}
.x75_c00255{left:471.150000px;}
.x3b_c00255{left:473.100000px;}
.x8e_c00255{left:475.350000px;}
.xda_c00255{left:476.400000px;}
.xb1_c00255{left:477.600000px;}
.x104_c00255{left:480.300000px;}
.xe1_c00255{left:481.350000px;}
.x4_c00255{left:484.500000px;}
.x13e_c00255{left:485.550000px;}
.x51_c00255{left:487.050000px;}
.xcc_c00255{left:489.000000px;}
.x76_c00255{left:491.250000px;}
.xf8_c00255{left:492.450000px;}
.x98_c00255{left:494.550000px;}
.x3c_c00255{left:496.200000px;}
.xd2_c00255{left:500.250000px;}
.x85_c00255{left:503.550000px;}
.x12_c00255{left:505.350000px;}
.x2f_c00255{left:506.850000px;}
.x124_c00255{left:508.350000px;}
.x21_c00255{left:509.850000px;}
.x99_c00255{left:514.050000px;}
.x114_c00255{left:516.300000px;}
.x77_c00255{left:520.050000px;}
.xe2_c00255{left:521.250000px;}
.xf4_c00255{left:523.200000px;}
.xa9_c00255{left:524.850000px;}
.x86_c00255{left:527.700000px;}
.xfd_c00255{left:529.050000px;}
.x119_c00255{left:530.400000px;}
.xf9_c00255{left:531.750000px;}
.x52_c00255{left:533.100000px;}
.xd3_c00255{left:534.150000px;}
.x128_c00255{left:535.800000px;}
.x115_c00255{left:537.150000px;}
.x45_c00255{left:539.850000px;}
.xe9_c00255{left:541.650000px;}
.x5_c00255{left:542.850000px;}
.x13_c00255{left:544.200000px;}
.x10b_c00255{left:545.400000px;}
.xc7_c00255{left:546.900000px;}
.x30_c00255{left:548.550000px;}
.x61_c00255{left:549.900000px;}
.xfa_c00255{left:551.850000px;}
.x3d_c00255{left:554.100000px;}
.x78_c00255{left:555.300000px;}
.x105_c00255{left:558.150000px;}
.x8f_c00255{left:561.000000px;}
.x133_c00255{left:562.200000px;}
.xbb_c00255{left:564.150000px;}
.x6c_c00255{left:566.550000px;}
.x10c_c00255{left:567.750000px;}
.x112_c00255{left:569.250000px;}
.x53_c00255{left:571.200000px;}
.x121_c00255{left:572.550000px;}
.x79_c00255{left:574.800000px;}
.x46_c00255{left:578.400000px;}
.x125_c00255{left:580.800000px;}
.xb2_c00255{left:582.000000px;}
.xdb_c00255{left:583.950000px;}
.x31_c00255{left:586.050000px;}
.xea_c00255{left:588.450000px;}
.x3e_c00255{left:589.800000px;}
.x14_c00255{left:592.050000px;}
.x6d_c00255{left:596.100000px;}
.x11b_c00255{left:599.850000px;}
.x7a_c00255{left:602.850000px;}
.x129_c00255{left:606.000000px;}
.x87_c00255{left:607.950000px;}
.x90_c00255{left:609.600000px;}
.x131_c00255{left:611.100000px;}
.xfe_c00255{left:613.050000px;}
.xc8_c00255{left:615.300000px;}
.x22_c00255{left:617.850000px;}
.x32_c00255{left:620.250000px;}
.x106_c00255{left:622.650000px;}
.x54_c00255{left:623.700000px;}
.xd4_c00255{left:624.900000px;}
.xe3_c00255{left:626.400000px;}
.x12a_c00255{left:628.650000px;}
.x62_c00255{left:629.850000px;}
.xbc_c00255{left:633.900000px;}
.x9a_c00255{left:636.900000px;}
.x15_c00255{left:639.150000px;}
.x23_c00255{left:640.500000px;}
.x55_c00255{left:645.300000px;}
.x6e_c00255{left:647.250000px;}
.xa3_c00255{left:649.050000px;}
.x47_c00255{left:650.400000px;}
.x63_c00255{left:652.500000px;}
.xaa_c00255{left:654.000000px;}
.x116_c00255{left:655.350000px;}
.xcd_c00255{left:656.400000px;}
.x33_c00255{left:657.750000px;}
.x11c_c00255{left:658.950000px;}
.x143_c00255{left:662.400000px;}
.x9b_c00255{left:663.600000px;}
.xe4_c00255{left:667.050000px;}
.xd5_c00255{left:668.850000px;}
.xf0_c00255{left:671.850000px;}
.x24_c00255{left:673.200000px;}
.x6f_c00255{left:674.250000px;}
.x126_c00255{left:675.600000px;}
.x16_c00255{left:678.750000px;}
.x12b_c00255{left:680.550000px;}
.x91_c00255{left:681.600000px;}
.x64_c00255{left:683.100000px;}
.x107_c00255{left:686.700000px;}
.x10d_c00255{left:689.400000px;}
.xa4_c00255{left:691.950000px;}
.xce_c00255{left:693.900000px;}
.x12c_c00255{left:695.250000px;}
.x11d_c00255{left:696.750000px;}
.xb3_c00255{left:698.250000px;}
.x88_c00255{left:700.500000px;}
.x48_c00255{left:702.600000px;}
.x56_c00255{left:703.650000px;}
.xeb_c00255{left:704.700000px;}
.x13f_c00255{left:705.750000px;}
.x7b_c00255{left:709.050000px;}
.x12d_c00255{left:710.400000px;}
.xf5_c00255{left:711.450000px;}
.x134_c00255{left:713.550000px;}
.xc9_c00255{left:715.050000px;}
.xb4_c00255{left:716.550000px;}
.x25_c00255{left:719.700000px;}
.x34_c00255{left:721.050000px;}
.x49_c00255{left:722.700000px;}
.x57_c00255{left:724.950000px;}
.xa5_c00255{left:726.450000px;}
.xdc_c00255{left:727.950000px;}
.x7c_c00255{left:729.150000px;}
.x138_c00255{left:732.150000px;}
.x17_c00255{left:734.250000px;}
.x9c_c00255{left:737.100000px;}
.xca_c00255{left:738.750000px;}
.x35_c00255{left:741.900000px;}
.xab_c00255{left:742.950000px;}
.xfb_c00255{left:744.900000px;}
.x26_c00255{left:745.950000px;}
.x92_c00255{left:747.450000px;}
.xe5_c00255{left:755.400000px;}
.x58_c00255{left:756.600000px;}
.x6_c00255{left:760.950000px;}
.x140_c00255{left:762.300000px;}
.x7d_c00255{left:763.350000px;}
.xcf_c00255{left:765.900000px;}
.xd6_c00255{left:773.850000px;}
.x11e_c00255{left:774.900000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws2_c00255{word-spacing:-6.606607pt;}
.ws0_c00255{word-spacing:-5.497076pt;}
.ws5_c00255{word-spacing:-2.777778pt;}
.ws9_c00255{word-spacing:0.000000pt;}
.ws3_c00255{word-spacing:0.238095pt;}
.ws7_c00255{word-spacing:3.838384pt;}
.ws1_c00255{word-spacing:5.555556pt;}
.ws6_c00255{word-spacing:6.666667pt;}
.ws8_c00255{word-spacing:8.888889pt;}
.ws4_c00255{word-spacing:13.004115pt;}
._0_c00255{width:33.333333pt;}
.fs0_c00255{font-size:48.000000pt;}
.fs1_c00255{font-size:53.333333pt;}
.y0_c00255{bottom:0.000000pt;}
.y2b_c00255{bottom:157.333333pt;}
.y2a_c00255{bottom:175.200000pt;}
.y29_c00255{bottom:193.066667pt;}
.y28_c00255{bottom:210.666667pt;}
.y27_c00255{bottom:228.533333pt;}
.y26_c00255{bottom:246.133333pt;}
.y25_c00255{bottom:264.000000pt;}
.y24_c00255{bottom:281.600000pt;}
.y23_c00255{bottom:299.466667pt;}
.y22_c00255{bottom:317.066667pt;}
.y21_c00255{bottom:352.666667pt;}
.y20_c00255{bottom:370.933333pt;}
.y1f_c00255{bottom:388.533333pt;}
.y1e_c00255{bottom:406.400000pt;}
.y1d_c00255{bottom:424.266667pt;}
.y1c_c00255{bottom:441.600000pt;}
.y1b_c00255{bottom:459.466667pt;}
.y1a_c00255{bottom:477.066667pt;}
.y19_c00255{bottom:494.666667pt;}
.y18_c00255{bottom:512.266667pt;}
.y17_c00255{bottom:530.133333pt;}
.y16_c00255{bottom:548.000000pt;}
.y15_c00255{bottom:565.600000pt;}
.y14_c00255{bottom:583.466667pt;}
.y13_c00255{bottom:601.333333pt;}
.y12_c00255{bottom:618.800000pt;}
.y11_c00255{bottom:637.066667pt;}
.y10_c00255{bottom:654.666667pt;}
.yf_c00255{bottom:672.533333pt;}
.ye_c00255{bottom:690.400000pt;}
.yd_c00255{bottom:708.266667pt;}
.yc_c00255{bottom:726.133333pt;}
.yb_c00255{bottom:744.000000pt;}
.ya_c00255{bottom:761.600000pt;}
.y9_c00255{bottom:779.200000pt;}
.y8_c00255{bottom:797.066667pt;}
.y7_c00255{bottom:815.333333pt;}
.y6_c00255{bottom:832.933333pt;}
.y5_c00255{bottom:850.666667pt;}
.y4_c00255{bottom:868.266667pt;}
.y3_c00255{bottom:886.133333pt;}
.y2_c00255{bottom:904.000000pt;}
.y1_c00255{bottom:938.266667pt;}
.h2_c00255{height:48.000000pt;}
.h3_c00255{height:53.333333pt;}
.h0_c00255{height:1037.119955pt;}
.h1_c00255{height:1037.333333pt;}
.w0_c00255{width:816.640056pt;}
.w1_c00255{width:816.666667pt;}
.x0_c00255{left:0.000000pt;}
.x7_c00255{left:104.666667pt;}
.xec_c00255{left:105.733333pt;}
.x12e_c00255{left:106.666667pt;}
.x18_c00255{left:123.066667pt;}
.x113_c00255{left:124.000000pt;}
.xf6_c00255{left:129.066667pt;}
.x108_c00255{left:130.533333pt;}
.x27_c00255{left:132.533333pt;}
.xc1_c00255{left:133.733333pt;}
.xb5_c00255{left:135.200000pt;}
.x7e_c00255{left:136.400000pt;}
.x59_c00255{left:138.133333pt;}
.x36_c00255{left:139.466667pt;}
.x139_c00255{left:141.733333pt;}
.x19_c00255{left:145.466667pt;}
.x8_c00255{left:146.933333pt;}
.xed_c00255{left:148.000000pt;}
.x12f_c00255{left:149.866667pt;}
.x7f_c00255{left:152.400000pt;}
.xd0_c00255{left:153.733333pt;}
.xbd_c00255{left:155.200000pt;}
.x3f_c00255{left:156.533333pt;}
.xcb_c00255{left:158.800000pt;}
.x28_c00255{left:160.000000pt;}
.x13a_c00255{left:161.600000pt;}
.x80_c00255{left:162.933333pt;}
.x11a_c00255{left:164.800000pt;}
.x65_c00255{left:166.533333pt;}
.xf1_c00255{left:167.866667pt;}
.x127_c00255{left:169.333333pt;}
.x9d_c00255{left:171.333333pt;}
.x141_c00255{left:172.266667pt;}
.x9_c00255{left:173.200000pt;}
.x70_c00255{left:174.666667pt;}
.x4a_c00255{left:175.866667pt;}
.x5a_c00255{left:176.800000pt;}
.x1a_c00255{left:180.000000pt;}
.x66_c00255{left:181.866667pt;}
.x13d_c00255{left:183.200000pt;}
.x29_c00255{left:184.266667pt;}
.x89_c00255{left:185.333333pt;}
.x132_c00255{left:187.466667pt;}
.x11f_c00255{left:189.733333pt;}
.xb6_c00255{left:191.200000pt;}
.x117_c00255{left:193.066667pt;}
.xa_c00255{left:194.266667pt;}
.xf2_c00255{left:195.333333pt;}
.x109_c00255{left:196.800000pt;}
.x37_c00255{left:198.400000pt;}
.x71_c00255{left:199.600000pt;}
.x4b_c00255{left:201.200000pt;}
.xa6_c00255{left:202.800000pt;}
.x81_c00255{left:204.800000pt;}
.xbe_c00255{left:206.400000pt;}
.xff_c00255{left:208.266667pt;}
.xb_c00255{left:209.333333pt;}
.xf7_c00255{left:210.266667pt;}
.x93_c00255{left:212.000000pt;}
.xdd_c00255{left:215.466667pt;}
.x1b_c00255{left:216.533333pt;}
.xd1_c00255{left:218.133333pt;}
.xc2_c00255{left:219.200000pt;}
.xac_c00255{left:222.000000pt;}
.x40_c00255{left:223.066667pt;}
.x67_c00255{left:224.133333pt;}
.xc_c00255{left:227.200000pt;}
.xb7_c00255{left:228.933333pt;}
.x5b_c00255{left:232.800000pt;}
.xd7_c00255{left:235.066667pt;}
.x122_c00255{left:236.133333pt;}
.x100_c00255{left:238.933333pt;}
.x1c_c00255{left:239.866667pt;}
.x2a_c00255{left:240.933333pt;}
.xde_c00255{left:242.933333pt;}
.xee_c00255{left:244.000000pt;}
.x9e_c00255{left:246.133333pt;}
.xa7_c00255{left:247.333333pt;}
.x41_c00255{left:248.666667pt;}
.x5c_c00255{left:250.666667pt;}
.x8a_c00255{left:254.400000pt;}
.x4c_c00255{left:255.333333pt;}
.x72_c00255{left:256.933333pt;}
.x94_c00255{left:258.666667pt;}
.xd_c00255{left:261.466667pt;}
.xe6_c00255{left:263.466667pt;}
.xbf_c00255{left:264.400000pt;}
.xa8_c00255{left:265.866667pt;}
.x38_c00255{left:267.200000pt;}
.xad_c00255{left:268.133333pt;}
.x9f_c00255{left:271.733333pt;}
.x1d_c00255{left:273.866667pt;}
.x5d_c00255{left:275.600000pt;}
.xe_c00255{left:277.200000pt;}
.x13b_c00255{left:279.600000pt;}
.x135_c00255{left:282.533333pt;}
.x82_c00255{left:284.533333pt;}
.xc3_c00255{left:285.466667pt;}
.x68_c00255{left:286.533333pt;}
.xd8_c00255{left:287.466667pt;}
.x10e_c00255{left:291.200000pt;}
.x95_c00255{left:292.533333pt;}
.x101_c00255{left:294.000000pt;}
.x42_c00255{left:295.333333pt;}
.x1_c00255{left:298.533333pt;}
.xf_c00255{left:302.133333pt;}
.x73_c00255{left:305.200000pt;}
.x2b_c00255{left:306.533333pt;}
.xfc_c00255{left:307.466667pt;}
.x136_c00255{left:309.066667pt;}
.x96_c00255{left:310.400000pt;}
.x1e_c00255{left:312.266667pt;}
.xc4_c00255{left:313.333333pt;}
.xd9_c00255{left:314.666667pt;}
.x69_c00255{left:316.000000pt;}
.x102_c00255{left:317.733333pt;}
.x4d_c00255{left:318.666667pt;}
.xae_c00255{left:320.266667pt;}
.xb8_c00255{left:321.200000pt;}
.x83_c00255{left:323.200000pt;}
.xa0_c00255{left:325.200000pt;}
.xdf_c00255{left:326.133333pt;}
.x6a_c00255{left:327.866667pt;}
.x8b_c00255{left:329.200000pt;}
.x43_c00255{left:330.800000pt;}
.xc5_c00255{left:332.266667pt;}
.x2c_c00255{left:333.466667pt;}
.x39_c00255{left:335.733333pt;}
.x130_c00255{left:336.800000pt;}
.x4e_c00255{left:339.200000pt;}
.x10f_c00255{left:341.066667pt;}
.xe7_c00255{left:343.200000pt;}
.x142_c00255{left:348.000000pt;}
.x5e_c00255{left:349.200000pt;}
.x118_c00255{left:350.800000pt;}
.x74_c00255{left:352.266667pt;}
.x2_c00255{left:354.266667pt;}
.x3a_c00255{left:356.800000pt;}
.xa1_c00255{left:358.533333pt;}
.xb9_c00255{left:360.933333pt;}
.x8c_c00255{left:362.133333pt;}
.x84_c00255{left:363.733333pt;}
.x10_c00255{left:364.800000pt;}
.x5f_c00255{left:366.533333pt;}
.x1f_c00255{left:368.000000pt;}
.x2d_c00255{left:368.933333pt;}
.xc0_c00255{left:372.266667pt;}
.xe8_c00255{left:373.333333pt;}
.x110_c00255{left:375.866667pt;}
.x6b_c00255{left:376.800000pt;}
.x4f_c00255{left:377.866667pt;}
.x123_c00255{left:378.800000pt;}
.xba_c00255{left:379.866667pt;}
.x97_c00255{left:382.000000pt;}
.xa2_c00255{left:384.400000pt;}
.xaf_c00255{left:385.866667pt;}
.x3_c00255{left:388.133333pt;}
.xc6_c00255{left:390.133333pt;}
.x8d_c00255{left:391.200000pt;}
.x11_c00255{left:392.266667pt;}
.x10a_c00255{left:393.333333pt;}
.xe0_c00255{left:397.200000pt;}
.xf3_c00255{left:399.466667pt;}
.x120_c00255{left:401.733333pt;}
.x2e_c00255{left:402.800000pt;}
.xb0_c00255{left:403.733333pt;}
.x20_c00255{left:406.400000pt;}
.x50_c00255{left:408.000000pt;}
.x137_c00255{left:409.600000pt;}
.x60_c00255{left:410.666667pt;}
.x103_c00255{left:411.600000pt;}
.x111_c00255{left:412.933333pt;}
.x44_c00255{left:414.000000pt;}
.x13c_c00255{left:414.933333pt;}
.xef_c00255{left:417.733333pt;}
.x75_c00255{left:418.800000pt;}
.x3b_c00255{left:420.533333pt;}
.x8e_c00255{left:422.533333pt;}
.xda_c00255{left:423.466667pt;}
.xb1_c00255{left:424.533333pt;}
.x104_c00255{left:426.933333pt;}
.xe1_c00255{left:427.866667pt;}
.x4_c00255{left:430.666667pt;}
.x13e_c00255{left:431.600000pt;}
.x51_c00255{left:432.933333pt;}
.xcc_c00255{left:434.666667pt;}
.x76_c00255{left:436.666667pt;}
.xf8_c00255{left:437.733333pt;}
.x98_c00255{left:439.600000pt;}
.x3c_c00255{left:441.066667pt;}
.xd2_c00255{left:444.666667pt;}
.x85_c00255{left:447.600000pt;}
.x12_c00255{left:449.200000pt;}
.x2f_c00255{left:450.533333pt;}
.x124_c00255{left:451.866667pt;}
.x21_c00255{left:453.200000pt;}
.x99_c00255{left:456.933333pt;}
.x114_c00255{left:458.933333pt;}
.x77_c00255{left:462.266667pt;}
.xe2_c00255{left:463.333333pt;}
.xf4_c00255{left:465.066667pt;}
.xa9_c00255{left:466.533333pt;}
.x86_c00255{left:469.066667pt;}
.xfd_c00255{left:470.266667pt;}
.x119_c00255{left:471.466667pt;}
.xf9_c00255{left:472.666667pt;}
.x52_c00255{left:473.866667pt;}
.xd3_c00255{left:474.800000pt;}
.x128_c00255{left:476.266667pt;}
.x115_c00255{left:477.466667pt;}
.x45_c00255{left:479.866667pt;}
.xe9_c00255{left:481.466667pt;}
.x5_c00255{left:482.533333pt;}
.x13_c00255{left:483.733333pt;}
.x10b_c00255{left:484.800000pt;}
.xc7_c00255{left:486.133333pt;}
.x30_c00255{left:487.600000pt;}
.x61_c00255{left:488.800000pt;}
.xfa_c00255{left:490.533333pt;}
.x3d_c00255{left:492.533333pt;}
.x78_c00255{left:493.600000pt;}
.x105_c00255{left:496.133333pt;}
.x8f_c00255{left:498.666667pt;}
.x133_c00255{left:499.733333pt;}
.xbb_c00255{left:501.466667pt;}
.x6c_c00255{left:503.600000pt;}
.x10c_c00255{left:504.666667pt;}
.x112_c00255{left:506.000000pt;}
.x53_c00255{left:507.733333pt;}
.x121_c00255{left:508.933333pt;}
.x79_c00255{left:510.933333pt;}
.x46_c00255{left:514.133333pt;}
.x125_c00255{left:516.266667pt;}
.xb2_c00255{left:517.333333pt;}
.xdb_c00255{left:519.066667pt;}
.x31_c00255{left:520.933333pt;}
.xea_c00255{left:523.066667pt;}
.x3e_c00255{left:524.266667pt;}
.x14_c00255{left:526.266667pt;}
.x6d_c00255{left:529.866667pt;}
.x11b_c00255{left:533.200000pt;}
.x7a_c00255{left:535.866667pt;}
.x129_c00255{left:538.666667pt;}
.x87_c00255{left:540.400000pt;}
.x90_c00255{left:541.866667pt;}
.x131_c00255{left:543.200000pt;}
.xfe_c00255{left:544.933333pt;}
.xc8_c00255{left:546.933333pt;}
.x22_c00255{left:549.200000pt;}
.x32_c00255{left:551.333333pt;}
.x106_c00255{left:553.466667pt;}
.x54_c00255{left:554.400000pt;}
.xd4_c00255{left:555.466667pt;}
.xe3_c00255{left:556.800000pt;}
.x12a_c00255{left:558.800000pt;}
.x62_c00255{left:559.866667pt;}
.xbc_c00255{left:563.466667pt;}
.x9a_c00255{left:566.133333pt;}
.x15_c00255{left:568.133333pt;}
.x23_c00255{left:569.333333pt;}
.x55_c00255{left:573.600000pt;}
.x6e_c00255{left:575.333333pt;}
.xa3_c00255{left:576.933333pt;}
.x47_c00255{left:578.133333pt;}
.x63_c00255{left:580.000000pt;}
.xaa_c00255{left:581.333333pt;}
.x116_c00255{left:582.533333pt;}
.xcd_c00255{left:583.466667pt;}
.x33_c00255{left:584.666667pt;}
.x11c_c00255{left:585.733333pt;}
.x143_c00255{left:588.800000pt;}
.x9b_c00255{left:589.866667pt;}
.xe4_c00255{left:592.933333pt;}
.xd5_c00255{left:594.533333pt;}
.xf0_c00255{left:597.200000pt;}
.x24_c00255{left:598.400000pt;}
.x6f_c00255{left:599.333333pt;}
.x126_c00255{left:600.533333pt;}
.x16_c00255{left:603.333333pt;}
.x12b_c00255{left:604.933333pt;}
.x91_c00255{left:605.866667pt;}
.x64_c00255{left:607.200000pt;}
.x107_c00255{left:610.400000pt;}
.x10d_c00255{left:612.800000pt;}
.xa4_c00255{left:615.066667pt;}
.xce_c00255{left:616.800000pt;}
.x12c_c00255{left:618.000000pt;}
.x11d_c00255{left:619.333333pt;}
.xb3_c00255{left:620.666667pt;}
.x88_c00255{left:622.666667pt;}
.x48_c00255{left:624.533333pt;}
.x56_c00255{left:625.466667pt;}
.xeb_c00255{left:626.400000pt;}
.x13f_c00255{left:627.333333pt;}
.x7b_c00255{left:630.266667pt;}
.x12d_c00255{left:631.466667pt;}
.xf5_c00255{left:632.400000pt;}
.x134_c00255{left:634.266667pt;}
.xc9_c00255{left:635.600000pt;}
.xb4_c00255{left:636.933333pt;}
.x25_c00255{left:639.733333pt;}
.x34_c00255{left:640.933333pt;}
.x49_c00255{left:642.400000pt;}
.x57_c00255{left:644.400000pt;}
.xa5_c00255{left:645.733333pt;}
.xdc_c00255{left:647.066667pt;}
.x7c_c00255{left:648.133333pt;}
.x138_c00255{left:650.800000pt;}
.x17_c00255{left:652.666667pt;}
.x9c_c00255{left:655.200000pt;}
.xca_c00255{left:656.666667pt;}
.x35_c00255{left:659.466667pt;}
.xab_c00255{left:660.400000pt;}
.xfb_c00255{left:662.133333pt;}
.x26_c00255{left:663.066667pt;}
.x92_c00255{left:664.400000pt;}
.xe5_c00255{left:671.466667pt;}
.x58_c00255{left:672.533333pt;}
.x6_c00255{left:676.400000pt;}
.x140_c00255{left:677.600000pt;}
.x7d_c00255{left:678.533333pt;}
.xcf_c00255{left:680.800000pt;}
.xd6_c00255{left:687.866667pt;}
.x11e_c00255{left:688.800000pt;}
}





/* 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_c00256 {
    display:none;
  }
  .loading-indicator_c00256.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00256 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_c00256 { 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_c00256" -> "#page-container .classname_c00256")
 */
.pf_c00256 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00256 { /* 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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00256 { /* 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_c00256 { /* 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_c00256 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00256 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00256 {overflow:visible;}
  }
}
.c_c00256 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00256 { /* 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_c00256:after { /* webkit #35443 */
  content: '';
}
.t_c00256:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00256 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 */
}
.__c00256 { /* 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_c00256 { /* info for Javascript */
  display:none;
}
.l_c00256 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00256 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00256 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00256: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_c00256 {
    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_c00256.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00256.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_c00256 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00256{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00256;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.000000;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;}
.m82_c00256{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00256{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00256{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00256{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m70_c00256{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00256{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m32_c00256{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m20_c00256{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00256{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00256{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m90_c00256{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00256{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00256{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m47_c00256{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m89_c00256{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00256{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m88_c00256{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m66_c00256{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00256{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00256{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m60_c00256{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00256{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m78_c00256{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m40_c00256{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m52_c00256{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m87_c00256{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m41_c00256{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m16_c00256{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00256{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m61_c00256{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m49_c00256{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md_c00256{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00256{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m46_c00256{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00256{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m72_c00256{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m81_c00256{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m77_c00256{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m18_c00256{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m26_c00256{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m71_c00256{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m51_c00256{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00256{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2_c00256{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m64_c00256{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.me_c00256{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m13_c00256{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00256{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00256{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m69_c00256{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m68_c00256{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mf_c00256{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00256{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m24_c00256{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00256{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m54_c00256{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00256{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m50_c00256{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00256{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9_c00256{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00256{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00256{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m19_c00256{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m28_c00256{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4_c00256{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m21_c00256{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00256{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m43_c00256{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m30_c00256{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m37_c00256{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m65_c00256{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m31_c00256{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6_c00256{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00256{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00256{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00256{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mc_c00256{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00256{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m15_c00256{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00256{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00256{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m79_c00256{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m42_c00256{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00256{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00256{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m74_c00256{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m35_c00256{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00256{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10_c00256{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00256{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m86_c00256{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m39_c00256{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m38_c00256{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb_c00256{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00256{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m17_c00256{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m58_c00256{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m34_c00256{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7_c00256{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00256{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m29_c00256{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00256{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m45_c00256{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m11_c00256{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00256{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00256{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m73_c00256{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12_c00256{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00256{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m25_c00256{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00256{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00256{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m83_c00256{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m36_c00256{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00256{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3_c00256{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m85_c00256{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m44_c00256{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m57_c00256{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m27_c00256{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m22_c00256{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00256{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00256{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5_c00256{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m75_c00256{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m56_c00256{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8_c00256{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m76_c00256{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m14_c00256{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00256{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00256{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00256{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00256{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m59_c00256{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m84_c00256{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m0_c00256{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00256{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c00256{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m23_c00256{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00256{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m55_c00256{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00256{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00256{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m80_c00256{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00256{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{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__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00256{word-spacing:-5.984655px;}
.wsb_c00256{word-spacing:0.000000px;}
.ws3_c00256{word-spacing:0.277778px;}
.ws1_c00256{word-spacing:5.052632px;}
.ws7_c00256{word-spacing:8.809524px;}
.ws8_c00256{word-spacing:8.823529px;}
.ws0_c00256{word-spacing:10.735294px;}
.ws5_c00256{word-spacing:15.882353px;}
.ws4_c00256{word-spacing:17.352941px;}
.ws6_c00256{word-spacing:17.946429px;}
.ws9_c00256{word-spacing:19.259259px;}
.ws2_c00256{word-spacing:27.105263px;}
.fc0_c00256{color:transparent;}
.fs0_c00256{font-size:60.000000px;}
.y0_c00256{bottom:0.000000px;}
.y20_c00256{bottom:376.500000px;}
.y1f_c00256{bottom:393.900000px;}
.y1e_c00256{bottom:411.150000px;}
.y1d_c00256{bottom:458.400000px;}
.y1c_c00256{bottom:478.200000px;}
.y1b_c00256{bottom:498.300000px;}
.y1a_c00256{bottom:518.100000px;}
.y19_c00256{bottom:537.900000px;}
.y18_c00256{bottom:558.000000px;}
.y17_c00256{bottom:577.800000px;}
.y16_c00256{bottom:597.900000px;}
.y15_c00256{bottom:637.800000px;}
.y14_c00256{bottom:657.900000px;}
.y13_c00256{bottom:677.700000px;}
.y12_c00256{bottom:697.800000px;}
.y11_c00256{bottom:717.600000px;}
.y10_c00256{bottom:737.700000px;}
.yf_c00256{bottom:757.800000px;}
.ye_c00256{bottom:777.600000px;}
.yd_c00256{bottom:797.700000px;}
.yc_c00256{bottom:817.800000px;}
.yb_c00256{bottom:837.600000px;}
.ya_c00256{bottom:857.400000px;}
.y9_c00256{bottom:877.500000px;}
.y8_c00256{bottom:897.600000px;}
.y7_c00256{bottom:917.400000px;}
.y6_c00256{bottom:937.500000px;}
.y5_c00256{bottom:957.300000px;}
.y4_c00256{bottom:977.100000px;}
.y3_c00256{bottom:997.200000px;}
.y2_c00256{bottom:1016.700000px;}
.y1_c00256{bottom:1055.850000px;}
.h2_c00256{height:60.000000px;}
.h0_c00256{height:1166.759949px;}
.h1_c00256{height:1167.000000px;}
.w0_c00256{width:918.720063px;}
.w1_c00256{width:918.750000px;}
.x0_c00256{left:0.000000px;}
.xd2_c00256{left:135.450000px;}
.x3_c00256{left:136.800000px;}
.x1_c00256{left:139.650000px;}
.x2c_c00256{left:158.550000px;}
.xdb_c00256{left:160.650000px;}
.x79_c00256{left:166.650000px;}
.x1d_c00256{left:168.450000px;}
.xd6_c00256{left:171.000000px;}
.x12_c00256{left:172.800000px;}
.x46_c00256{left:174.450000px;}
.xb6_c00256{left:175.950000px;}
.xa2_c00256{left:178.200000px;}
.x70_c00256{left:180.300000px;}
.x38_c00256{left:187.350000px;}
.x66_c00256{left:190.800000px;}
.xbd_c00256{left:191.850000px;}
.x1e_c00256{left:193.350000px;}
.xc9_c00256{left:195.000000px;}
.x2d_c00256{left:199.950000px;}
.x13_c00256{left:202.350000px;}
.x8a_c00256{left:204.450000px;}
.x99_c00256{left:209.550000px;}
.xc5_c00256{left:213.450000px;}
.x39_c00256{left:216.900000px;}
.xa3_c00256{left:218.850000px;}
.x2e_c00256{left:220.800000px;}
.x4_c00256{left:222.150000px;}
.xe2_c00256{left:223.950000px;}
.x81_c00256{left:226.800000px;}
.xc4_c00256{left:229.050000px;}
.x9a_c00256{left:231.450000px;}
.xd7_c00256{left:232.950000px;}
.x67_c00256{left:234.000000px;}
.x71_c00256{left:235.800000px;}
.xbe_c00256{left:237.900000px;}
.xc6_c00256{left:241.950000px;}
.x51_c00256{left:244.500000px;}
.x5_c00256{left:247.050000px;}
.x47_c00256{left:249.300000px;}
.x7a_c00256{left:251.250000px;}
.x1f_c00256{left:254.250000px;}
.x8e_c00256{left:255.450000px;}
.x68_c00256{left:257.400000px;}
.x82_c00256{left:262.800000px;}
.xdc_c00256{left:267.600000px;}
.x52_c00256{left:268.650000px;}
.x14_c00256{left:270.450000px;}
.xa4_c00256{left:272.850000px;}
.x3a_c00256{left:277.350000px;}
.x48_c00256{left:279.900000px;}
.x20_c00256{left:284.100000px;}
.x5c_c00256{left:287.550000px;}
.xae_c00256{left:289.650000px;}
.xd3_c00256{left:291.000000px;}
.xea_c00256{left:293.400000px;}
.xe7_c00256{left:295.200000px;}
.x3b_c00256{left:298.200000px;}
.x6_c00256{left:302.550000px;}
.x72_c00256{left:306.300000px;}
.xbf_c00256{left:307.950000px;}
.x15_c00256{left:309.750000px;}
.x83_c00256{left:311.400000px;}
.xdd_c00256{left:315.150000px;}
.xa5_c00256{left:316.350000px;}
.x49_c00256{left:317.400000px;}
.x21_c00256{left:319.350000px;}
.xb7_c00256{left:322.350000px;}
.x5d_c00256{left:326.100000px;}
.x3c_c00256{left:327.300000px;}
.xde_c00256{left:331.650000px;}
.xaf_c00256{left:333.150000px;}
.x7_c00256{left:334.950000px;}
.x69_c00256{left:338.400000px;}
.x8f_c00256{left:343.650000px;}
.xa6_c00256{left:345.150000px;}
.x53_c00256{left:348.900000px;}
.x9b_c00256{left:349.950000px;}
.x7b_c00256{left:354.150000px;}
.x16_c00256{left:357.600000px;}
.x22_c00256{left:359.250000px;}
.x73_c00256{left:361.800000px;}
.xe8_c00256{left:362.850000px;}
.x8_c00256{left:364.050000px;}
.xeb_c00256{left:370.050000px;}
.xa7_c00256{left:381.150000px;}
.xb0_c00256{left:382.500000px;}
.xc0_c00256{left:385.050000px;}
.x4a_c00256{left:386.550000px;}
.xb8_c00256{left:387.900000px;}
.x17_c00256{left:390.000000px;}
.x23_c00256{left:393.150000px;}
.x54_c00256{left:395.700000px;}
.x84_c00256{left:399.300000px;}
.x74_c00256{left:400.650000px;}
.x5e_c00256{left:401.700000px;}
.x8b_c00256{left:406.050000px;}
.xb9_c00256{left:408.450000px;}
.x2f_c00256{left:410.550000px;}
.x6a_c00256{left:412.500000px;}
.xec_c00256{left:414.750000px;}
.x9c_c00256{left:416.850000px;}
.x18_c00256{left:419.850000px;}
.x90_c00256{left:425.100000px;}
.xcd_c00256{left:426.450000px;}
.xc7_c00256{left:429.300000px;}
.xc1_c00256{left:432.150000px;}
.x2_c00256{left:435.900000px;}
.x24_c00256{left:439.950000px;}
.x30_c00256{left:441.150000px;}
.x9d_c00256{left:443.100000px;}
.x91_c00256{left:445.200000px;}
.x3d_c00256{left:446.850000px;}
.x19_c00256{left:452.550000px;}
.x4b_c00256{left:457.500000px;}
.x9_c00256{left:460.200000px;}
.x5f_c00256{left:461.400000px;}
.x92_c00256{left:463.200000px;}
.x75_c00256{left:465.750000px;}
.xe3_c00256{left:466.950000px;}
.xef_c00256{left:469.800000px;}
.xa8_c00256{left:472.650000px;}
.x7c_c00256{left:475.350000px;}
.xdf_c00256{left:477.750000px;}
.x3e_c00256{left:479.550000px;}
.x55_c00256{left:482.850000px;}
.x6b_c00256{left:485.250000px;}
.xed_c00256{left:487.800000px;}
.x60_c00256{left:489.900000px;}
.xa9_c00256{left:492.450000px;}
.xce_c00256{left:493.800000px;}
.xe4_c00256{left:495.000000px;}
.x1a_c00256{left:497.250000px;}
.xa_c00256{left:500.850000px;}
.x9e_c00256{left:503.250000px;}
.x76_c00256{left:505.350000px;}
.x4c_c00256{left:507.900000px;}
.x85_c00256{left:512.700000px;}
.x93_c00256{left:515.100000px;}
.x1b_c00256{left:518.550000px;}
.xb_c00256{left:521.400000px;}
.xe5_c00256{left:524.550000px;}
.x25_c00256{left:526.800000px;}
.xba_c00256{left:528.300000px;}
.x3f_c00256{left:529.650000px;}
.x61_c00256{left:531.600000px;}
.xe0_c00256{left:533.550000px;}
.x77_c00256{left:535.950000px;}
.x94_c00256{left:537.450000px;}
.xd8_c00256{left:539.700000px;}
.x31_c00256{left:540.900000px;}
.x56_c00256{left:541.950000px;}
.x86_c00256{left:543.600000px;}
.x1c_c00256{left:548.100000px;}
.x6c_c00256{left:550.800000px;}
.xb1_c00256{left:555.600000px;}
.xbb_c00256{left:560.400000px;}
.xe9_c00256{left:562.200000px;}
.x40_c00256{left:563.550000px;}
.x4d_c00256{left:565.800000px;}
.x87_c00256{left:569.550000px;}
.xb2_c00256{left:574.650000px;}
.x26_c00256{left:575.700000px;}
.xcf_c00256{left:578.400000px;}
.x7d_c00256{left:582.600000px;}
.x41_c00256{left:584.400000px;}
.x9f_c00256{left:588.900000px;}
.xc2_c00256{left:590.550000px;}
.xc_c00256{left:592.650000px;}
.xe1_c00256{left:594.000000px;}
.x32_c00256{left:597.000000px;}
.xee_c00256{left:598.350000px;}
.x57_c00256{left:600.000000px;}
.xaa_c00256{left:601.500000px;}
.x78_c00256{left:610.500000px;}
.xb3_c00256{left:612.150000px;}
.x7e_c00256{left:613.200000px;}
.xd4_c00256{left:614.700000px;}
.x88_c00256{left:616.350000px;}
.xa0_c00256{left:618.000000px;}
.x62_c00256{left:620.400000px;}
.x27_c00256{left:623.250000px;}
.x8c_c00256{left:627.150000px;}
.x6d_c00256{left:628.500000px;}
.x95_c00256{left:629.700000px;}
.xd_c00256{left:630.750000px;}
.xb4_c00256{left:633.450000px;}
.x4e_c00256{left:635.700000px;}
.x33_c00256{left:638.700000px;}
.xca_c00256{left:641.850000px;}
.x28_c00256{left:644.550000px;}
.x89_c00256{left:646.650000px;}
.x6e_c00256{left:653.400000px;}
.xd5_c00256{left:654.600000px;}
.xb5_c00256{left:657.900000px;}
.x34_c00256{left:660.000000px;}
.x58_c00256{left:663.000000px;}
.x4f_c00256{left:665.250000px;}
.x7f_c00256{left:667.200000px;}
.xd0_c00256{left:668.700000px;}
.x42_c00256{left:680.550000px;}
.xbc_c00256{left:685.650000px;}
.xe_c00256{left:687.600000px;}
.x80_c00256{left:689.100000px;}
.x35_c00256{left:690.300000px;}
.xc3_c00256{left:692.700000px;}
.xc8_c00256{left:694.350000px;}
.x29_c00256{left:696.450000px;}
.x43_c00256{left:698.250000px;}
.x96_c00256{left:699.600000px;}
.xd1_c00256{left:701.850000px;}
.xab_c00256{left:703.350000px;}
.xf_c00256{left:709.200000px;}
.xcb_c00256{left:714.900000px;}
.x50_c00256{left:720.300000px;}
.xd9_c00256{left:723.000000px;}
.x63_c00256{left:725.100000px;}
.xac_c00256{left:726.450000px;}
.x2a_c00256{left:729.150000px;}
.x97_c00256{left:732.000000px;}
.x59_c00256{left:734.250000px;}
.x44_c00256{left:736.800000px;}
.x10_c00256{left:738.300000px;}
.x36_c00256{left:744.600000px;}
.x98_c00256{left:750.000000px;}
.x5a_c00256{left:753.750000px;}
.xa1_c00256{left:756.300000px;}
.x64_c00256{left:758.550000px;}
.xe6_c00256{left:761.400000px;}
.x2b_c00256{left:762.600000px;}
.x37_c00256{left:765.900000px;}
.xda_c00256{left:770.850000px;}
.x6f_c00256{left:774.300000px;}
.x45_c00256{left:775.650000px;}
.x11_c00256{left:779.700000px;}
.x5b_c00256{left:781.800000px;}
.x8d_c00256{left:783.450000px;}
.xcc_c00256{left:785.850000px;}
.x65_c00256{left:791.700000px;}
.xad_c00256{left:794.100000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.wsa_c00256{word-spacing:-5.319693pt;}
.wsb_c00256{word-spacing:0.000000pt;}
.ws3_c00256{word-spacing:0.246914pt;}
.ws1_c00256{word-spacing:4.491228pt;}
.ws7_c00256{word-spacing:7.830688pt;}
.ws8_c00256{word-spacing:7.843137pt;}
.ws0_c00256{word-spacing:9.542484pt;}
.ws5_c00256{word-spacing:14.117647pt;}
.ws4_c00256{word-spacing:15.424837pt;}
.ws6_c00256{word-spacing:15.952381pt;}
.ws9_c00256{word-spacing:17.119342pt;}
.ws2_c00256{word-spacing:24.093567pt;}
.fs0_c00256{font-size:53.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y20_c00256{bottom:334.666667pt;}
.y1f_c00256{bottom:350.133333pt;}
.y1e_c00256{bottom:365.466667pt;}
.y1d_c00256{bottom:407.466667pt;}
.y1c_c00256{bottom:425.066667pt;}
.y1b_c00256{bottom:442.933333pt;}
.y1a_c00256{bottom:460.533333pt;}
.y19_c00256{bottom:478.133333pt;}
.y18_c00256{bottom:496.000000pt;}
.y17_c00256{bottom:513.600000pt;}
.y16_c00256{bottom:531.466667pt;}
.y15_c00256{bottom:566.933333pt;}
.y14_c00256{bottom:584.800000pt;}
.y13_c00256{bottom:602.400000pt;}
.y12_c00256{bottom:620.266667pt;}
.y11_c00256{bottom:637.866667pt;}
.y10_c00256{bottom:655.733333pt;}
.yf_c00256{bottom:673.600000pt;}
.ye_c00256{bottom:691.200000pt;}
.yd_c00256{bottom:709.066667pt;}
.yc_c00256{bottom:726.933333pt;}
.yb_c00256{bottom:744.533333pt;}
.ya_c00256{bottom:762.133333pt;}
.y9_c00256{bottom:780.000000pt;}
.y8_c00256{bottom:797.866667pt;}
.y7_c00256{bottom:815.466667pt;}
.y6_c00256{bottom:833.333333pt;}
.y5_c00256{bottom:850.933333pt;}
.y4_c00256{bottom:868.533333pt;}
.y3_c00256{bottom:886.400000pt;}
.y2_c00256{bottom:903.733333pt;}
.y1_c00256{bottom:938.533333pt;}
.h2_c00256{height:53.333333pt;}
.h0_c00256{height:1037.119955pt;}
.h1_c00256{height:1037.333333pt;}
.w0_c00256{width:816.640056pt;}
.w1_c00256{width:816.666667pt;}
.x0_c00256{left:0.000000pt;}
.xd2_c00256{left:120.400000pt;}
.x3_c00256{left:121.600000pt;}
.x1_c00256{left:124.133333pt;}
.x2c_c00256{left:140.933333pt;}
.xdb_c00256{left:142.800000pt;}
.x79_c00256{left:148.133333pt;}
.x1d_c00256{left:149.733333pt;}
.xd6_c00256{left:152.000000pt;}
.x12_c00256{left:153.600000pt;}
.x46_c00256{left:155.066667pt;}
.xb6_c00256{left:156.400000pt;}
.xa2_c00256{left:158.400000pt;}
.x70_c00256{left:160.266667pt;}
.x38_c00256{left:166.533333pt;}
.x66_c00256{left:169.600000pt;}
.xbd_c00256{left:170.533333pt;}
.x1e_c00256{left:171.866667pt;}
.xc9_c00256{left:173.333333pt;}
.x2d_c00256{left:177.733333pt;}
.x13_c00256{left:179.866667pt;}
.x8a_c00256{left:181.733333pt;}
.x99_c00256{left:186.266667pt;}
.xc5_c00256{left:189.733333pt;}
.x39_c00256{left:192.800000pt;}
.xa3_c00256{left:194.533333pt;}
.x2e_c00256{left:196.266667pt;}
.x4_c00256{left:197.466667pt;}
.xe2_c00256{left:199.066667pt;}
.x81_c00256{left:201.600000pt;}
.xc4_c00256{left:203.600000pt;}
.x9a_c00256{left:205.733333pt;}
.xd7_c00256{left:207.066667pt;}
.x67_c00256{left:208.000000pt;}
.x71_c00256{left:209.600000pt;}
.xbe_c00256{left:211.466667pt;}
.xc6_c00256{left:215.066667pt;}
.x51_c00256{left:217.333333pt;}
.x5_c00256{left:219.600000pt;}
.x47_c00256{left:221.600000pt;}
.x7a_c00256{left:223.333333pt;}
.x1f_c00256{left:226.000000pt;}
.x8e_c00256{left:227.066667pt;}
.x68_c00256{left:228.800000pt;}
.x82_c00256{left:233.600000pt;}
.xdc_c00256{left:237.866667pt;}
.x52_c00256{left:238.800000pt;}
.x14_c00256{left:240.400000pt;}
.xa4_c00256{left:242.533333pt;}
.x3a_c00256{left:246.533333pt;}
.x48_c00256{left:248.800000pt;}
.x20_c00256{left:252.533333pt;}
.x5c_c00256{left:255.600000pt;}
.xae_c00256{left:257.466667pt;}
.xd3_c00256{left:258.666667pt;}
.xea_c00256{left:260.800000pt;}
.xe7_c00256{left:262.400000pt;}
.x3b_c00256{left:265.066667pt;}
.x6_c00256{left:268.933333pt;}
.x72_c00256{left:272.266667pt;}
.xbf_c00256{left:273.733333pt;}
.x15_c00256{left:275.333333pt;}
.x83_c00256{left:276.800000pt;}
.xdd_c00256{left:280.133333pt;}
.xa5_c00256{left:281.200000pt;}
.x49_c00256{left:282.133333pt;}
.x21_c00256{left:283.866667pt;}
.xb7_c00256{left:286.533333pt;}
.x5d_c00256{left:289.866667pt;}
.x3c_c00256{left:290.933333pt;}
.xde_c00256{left:294.800000pt;}
.xaf_c00256{left:296.133333pt;}
.x7_c00256{left:297.733333pt;}
.x69_c00256{left:300.800000pt;}
.x8f_c00256{left:305.466667pt;}
.xa6_c00256{left:306.800000pt;}
.x53_c00256{left:310.133333pt;}
.x9b_c00256{left:311.066667pt;}
.x7b_c00256{left:314.800000pt;}
.x16_c00256{left:317.866667pt;}
.x22_c00256{left:319.333333pt;}
.x73_c00256{left:321.600000pt;}
.xe8_c00256{left:322.533333pt;}
.x8_c00256{left:323.600000pt;}
.xeb_c00256{left:328.933333pt;}
.xa7_c00256{left:338.800000pt;}
.xb0_c00256{left:340.000000pt;}
.xc0_c00256{left:342.266667pt;}
.x4a_c00256{left:343.600000pt;}
.xb8_c00256{left:344.800000pt;}
.x17_c00256{left:346.666667pt;}
.x23_c00256{left:349.466667pt;}
.x54_c00256{left:351.733333pt;}
.x84_c00256{left:354.933333pt;}
.x74_c00256{left:356.133333pt;}
.x5e_c00256{left:357.066667pt;}
.x8b_c00256{left:360.933333pt;}
.xb9_c00256{left:363.066667pt;}
.x2f_c00256{left:364.933333pt;}
.x6a_c00256{left:366.666667pt;}
.xec_c00256{left:368.666667pt;}
.x9c_c00256{left:370.533333pt;}
.x18_c00256{left:373.200000pt;}
.x90_c00256{left:377.866667pt;}
.xcd_c00256{left:379.066667pt;}
.xc7_c00256{left:381.600000pt;}
.xc1_c00256{left:384.133333pt;}
.x2_c00256{left:387.466667pt;}
.x24_c00256{left:391.066667pt;}
.x30_c00256{left:392.133333pt;}
.x9d_c00256{left:393.866667pt;}
.x91_c00256{left:395.733333pt;}
.x3d_c00256{left:397.200000pt;}
.x19_c00256{left:402.266667pt;}
.x4b_c00256{left:406.666667pt;}
.x9_c00256{left:409.066667pt;}
.x5f_c00256{left:410.133333pt;}
.x92_c00256{left:411.733333pt;}
.x75_c00256{left:414.000000pt;}
.xe3_c00256{left:415.066667pt;}
.xef_c00256{left:417.600000pt;}
.xa8_c00256{left:420.133333pt;}
.x7c_c00256{left:422.533333pt;}
.xdf_c00256{left:424.666667pt;}
.x3e_c00256{left:426.266667pt;}
.x55_c00256{left:429.200000pt;}
.x6b_c00256{left:431.333333pt;}
.xed_c00256{left:433.600000pt;}
.x60_c00256{left:435.466667pt;}
.xa9_c00256{left:437.733333pt;}
.xce_c00256{left:438.933333pt;}
.xe4_c00256{left:440.000000pt;}
.x1a_c00256{left:442.000000pt;}
.xa_c00256{left:445.200000pt;}
.x9e_c00256{left:447.333333pt;}
.x76_c00256{left:449.200000pt;}
.x4c_c00256{left:451.466667pt;}
.x85_c00256{left:455.733333pt;}
.x93_c00256{left:457.866667pt;}
.x1b_c00256{left:460.933333pt;}
.xb_c00256{left:463.466667pt;}
.xe5_c00256{left:466.266667pt;}
.x25_c00256{left:468.266667pt;}
.xba_c00256{left:469.600000pt;}
.x3f_c00256{left:470.800000pt;}
.x61_c00256{left:472.533333pt;}
.xe0_c00256{left:474.266667pt;}
.x77_c00256{left:476.400000pt;}
.x94_c00256{left:477.733333pt;}
.xd8_c00256{left:479.733333pt;}
.x31_c00256{left:480.800000pt;}
.x56_c00256{left:481.733333pt;}
.x86_c00256{left:483.200000pt;}
.x1c_c00256{left:487.200000pt;}
.x6c_c00256{left:489.600000pt;}
.xb1_c00256{left:493.866667pt;}
.xbb_c00256{left:498.133333pt;}
.xe9_c00256{left:499.733333pt;}
.x40_c00256{left:500.933333pt;}
.x4d_c00256{left:502.933333pt;}
.x87_c00256{left:506.266667pt;}
.xb2_c00256{left:510.800000pt;}
.x26_c00256{left:511.733333pt;}
.xcf_c00256{left:514.133333pt;}
.x7d_c00256{left:517.866667pt;}
.x41_c00256{left:519.466667pt;}
.x9f_c00256{left:523.466667pt;}
.xc2_c00256{left:524.933333pt;}
.xc_c00256{left:526.800000pt;}
.xe1_c00256{left:528.000000pt;}
.x32_c00256{left:530.666667pt;}
.xee_c00256{left:531.866667pt;}
.x57_c00256{left:533.333333pt;}
.xaa_c00256{left:534.666667pt;}
.x78_c00256{left:542.666667pt;}
.xb3_c00256{left:544.133333pt;}
.x7e_c00256{left:545.066667pt;}
.xd4_c00256{left:546.400000pt;}
.x88_c00256{left:547.866667pt;}
.xa0_c00256{left:549.333333pt;}
.x62_c00256{left:551.466667pt;}
.x27_c00256{left:554.000000pt;}
.x8c_c00256{left:557.466667pt;}
.x6d_c00256{left:558.666667pt;}
.x95_c00256{left:559.733333pt;}
.xd_c00256{left:560.666667pt;}
.xb4_c00256{left:563.066667pt;}
.x4e_c00256{left:565.066667pt;}
.x33_c00256{left:567.733333pt;}
.xca_c00256{left:570.533333pt;}
.x28_c00256{left:572.933333pt;}
.x89_c00256{left:574.800000pt;}
.x6e_c00256{left:580.800000pt;}
.xd5_c00256{left:581.866667pt;}
.xb5_c00256{left:584.800000pt;}
.x34_c00256{left:586.666667pt;}
.x58_c00256{left:589.333333pt;}
.x4f_c00256{left:591.333333pt;}
.x7f_c00256{left:593.066667pt;}
.xd0_c00256{left:594.400000pt;}
.x42_c00256{left:604.933333pt;}
.xbc_c00256{left:609.466667pt;}
.xe_c00256{left:611.200000pt;}
.x80_c00256{left:612.533333pt;}
.x35_c00256{left:613.600000pt;}
.xc3_c00256{left:615.733333pt;}
.xc8_c00256{left:617.200000pt;}
.x29_c00256{left:619.066667pt;}
.x43_c00256{left:620.666667pt;}
.x96_c00256{left:621.866667pt;}
.xd1_c00256{left:623.866667pt;}
.xab_c00256{left:625.200000pt;}
.xf_c00256{left:630.400000pt;}
.xcb_c00256{left:635.466667pt;}
.x50_c00256{left:640.266667pt;}
.xd9_c00256{left:642.666667pt;}
.x63_c00256{left:644.533333pt;}
.xac_c00256{left:645.733333pt;}
.x2a_c00256{left:648.133333pt;}
.x97_c00256{left:650.666667pt;}
.x59_c00256{left:652.666667pt;}
.x44_c00256{left:654.933333pt;}
.x10_c00256{left:656.266667pt;}
.x36_c00256{left:661.866667pt;}
.x98_c00256{left:666.666667pt;}
.x5a_c00256{left:670.000000pt;}
.xa1_c00256{left:672.266667pt;}
.x64_c00256{left:674.266667pt;}
.xe6_c00256{left:676.800000pt;}
.x2b_c00256{left:677.866667pt;}
.x37_c00256{left:680.800000pt;}
.xda_c00256{left:685.200000pt;}
.x6f_c00256{left:688.266667pt;}
.x45_c00256{left:689.466667pt;}
.x11_c00256{left:693.066667pt;}
.x5b_c00256{left:694.933333pt;}
.x8d_c00256{left:696.400000pt;}
.xcc_c00256{left:698.533333pt;}
.x65_c00256{left:703.733333pt;}
.xad_c00256{left:705.866667pt;}
}





/* 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_c00257 {
    display:none;
  }
  .loading-indicator_c00257.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00257 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_c00257 { 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_c00257" -> "#page-container .classname_c00257")
 */
.pf_c00257 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00257 { /* 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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00257 { /* 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_c00257 { /* 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_c00257 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00257 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00257 {overflow:visible;}
  }
}
.c_c00257 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00257 { /* 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_c00257:after { /* webkit #35443 */
  content: '';
}
.t_c00257:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00257 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 */
}
.__c00257 { /* 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_c00257 { /* info for Javascript */
  display:none;
}
.l_c00257 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00257 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00257 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00257: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_c00257 {
    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_c00257.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00257.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_c00257 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00257{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00257;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.000000;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;}
.m83_c00257{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m97_c00257{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00257{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m38_c00257{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m43_c00257{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00257{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00257{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m98_c00257{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00257{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m99_c00257{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m72_c00257{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00257{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00257{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00257{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00257{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m96_c00257{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00257{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m76_c00257{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00257{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00257{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m69_c00257{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m36_c00257{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00257{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m44_c00257{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00257{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m50_c00257{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00257{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m45_c00257{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m87_c00257{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m31_c00257{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m89_c00257{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00257{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00257{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m35_c00257{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m57_c00257{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m19_c00257{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00257{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m75_c00257{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00257{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00257{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00257{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00257{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m92_c00257{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m21_c00257{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00257{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m59_c00257{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m68_c00257{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00257{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m74_c00257{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m25_c00257{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m28_c00257{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00257{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m80_c00257{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m24_c00257{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m47_c00257{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m53_c00257{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00257{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00257{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m86_c00257{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m39_c00257{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00257{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m29_c00257{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00257{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.ma_c00257{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m27_c00257{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00257{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23_c00257{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m84_c00257{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20_c00257{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m48_c00257{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);}
.m46_c00257{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00257{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00257{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00257{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m95_c00257{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00257{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00257{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m14_c00257{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m58_c00257{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m34_c00257{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m51_c00257{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m42_c00257{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00257{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m56_c00257{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00257{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m54_c00257{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m55_c00257{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m65_c00257{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m66_c00257{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m94_c00257{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m30_c00257{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m40_c00257{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00257{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00257{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00257{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m73_c00257{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00257{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00257{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m85_c00257{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m32_c00257{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00257{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00257{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m49_c00257{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m90_c00257{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00257{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00257{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m61_c00257{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00257{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m26_c00257{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m77_c00257{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m16_c00257{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m33_c00257{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00257{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m12_c00257{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00257{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00257{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00257{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00257{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m41_c00257{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m62_c00257{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00257{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00257{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00257{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00257{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m93_c00257{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m91_c00257{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m82_c00257{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00257{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00257{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m71_c00257{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m37_c00257{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m70_c00257{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m81_c00257{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00257{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00257{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m60_c00257{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m67_c00257{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m52_c00257{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m78_c00257{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m1_c00257{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00257{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.m6_c00257{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00257{vertical-align:0.000000px;}
.ls0_c00257{letter-spacing:0.000000px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{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__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:-10.375000px;}
.ws4_c00257{word-spacing:-5.997255px;}
.ws7_c00257{word-spacing:0.000000px;}
.ws6_c00257{word-spacing:1.500000px;}
.ws3_c00257{word-spacing:6.000000px;}
.ws1_c00257{word-spacing:9.757033px;}
.ws2_c00257{word-spacing:13.625000px;}
.ws5_c00257{word-spacing:40.666667px;}
.fc0_c00257{color:transparent;}
.fs0_c00257{font-size:54.000000px;}
.y0_c00257{bottom:0.000000px;}
.y23_c00257{bottom:151.200000px;}
.y22_c00257{bottom:167.700000px;}
.y21_c00257{bottom:203.850000px;}
.y20_c00257{bottom:223.650000px;}
.y1f_c00257{bottom:243.450000px;}
.y1e_c00257{bottom:262.950000px;}
.y1d_c00257{bottom:283.050000px;}
.y1c_c00257{bottom:302.850000px;}
.y1b_c00257{bottom:322.950000px;}
.y1a_c00257{bottom:342.750000px;}
.y19_c00257{bottom:362.400000px;}
.y18_c00257{bottom:382.200000px;}
.y17_c00257{bottom:402.300000px;}
.y16_c00257{bottom:421.800000px;}
.y15_c00257{bottom:441.600000px;}
.y14_c00257{bottom:461.700000px;}
.y13_c00257{bottom:481.500000px;}
.y12_c00257{bottom:501.600000px;}
.y11_c00257{bottom:521.400000px;}
.y10_c00257{bottom:541.200000px;}
.yf_c00257{bottom:561.000000px;}
.ye_c00257{bottom:580.800000px;}
.yd_c00257{bottom:600.600000px;}
.yc_c00257{bottom:620.700000px;}
.yb_c00257{bottom:640.500000px;}
.ya_c00257{bottom:660.600000px;}
.y9_c00257{bottom:680.400000px;}
.y8_c00257{bottom:700.200000px;}
.y7_c00257{bottom:720.000000px;}
.y6_c00257{bottom:739.800000px;}
.y5_c00257{bottom:759.900000px;}
.y4_c00257{bottom:779.700000px;}
.y3_c00257{bottom:813.300000px;}
.y2_c00257{bottom:846.000000px;}
.y1_c00257{bottom:1047.600000px;}
.h2_c00257{height:54.000000px;}
.h0_c00257{height:1166.759949px;}
.h1_c00257{height:1167.000000px;}
.w0_c00257{width:918.720063px;}
.w1_c00257{width:918.750000px;}
.x0_c00257{left:0.000000px;}
.xe0_c00257{left:106.200000px;}
.x62_c00257{left:107.550000px;}
.xb_c00257{left:108.750000px;}
.xca_c00257{left:122.850000px;}
.x88_c00257{left:128.400000px;}
.x56_c00257{left:130.650000px;}
.xeb_c00257{left:133.200000px;}
.x31_c00257{left:137.400000px;}
.xd2_c00257{left:139.650000px;}
.xb3_c00257{left:144.000000px;}
.xbd_c00257{left:145.050000px;}
.x102_c00257{left:149.850000px;}
.x57_c00257{left:151.200000px;}
.xc0_c00257{left:153.450000px;}
.x7f_c00257{left:160.650000px;}
.x9a_c00257{left:162.450000px;}
.xaa_c00257{left:164.100000px;}
.xd7_c00257{left:165.150000px;}
.xb4_c00257{left:166.350000px;}
.x76_c00257{left:168.300000px;}
.x63_c00257{left:169.800000px;}
.x89_c00257{left:171.600000px;}
.xdb_c00257{left:173.850000px;}
.x18_c00257{left:175.950000px;}
.x23_c00257{left:177.300000px;}
.x91_c00257{left:178.950000px;}
.x8a_c00257{left:184.500000px;}
.xe1_c00257{left:187.200000px;}
.x9b_c00257{left:188.400000px;}
.x32_c00257{left:189.600000px;}
.x3f_c00257{left:191.400000px;}
.x80_c00257{left:193.350000px;}
.xab_c00257{left:194.700000px;}
.xc_c00257{left:196.200000px;}
.x4a_c00257{left:199.350000px;}
.xc1_c00257{left:201.300000px;}
.xfc_c00257{left:205.050000px;}
.xbe_c00257{left:207.000000px;}
.xf6_c00257{left:210.600000px;}
.x6d_c00257{left:214.800000px;}
.x58_c00257{left:216.600000px;}
.x4_c00257{left:217.800000px;}
.x4b_c00257{left:220.950000px;}
.x109_c00257{left:222.600000px;}
.x24_c00257{left:223.800000px;}
.xd8_c00257{left:224.850000px;}
.x40_c00257{left:226.350000px;}
.x33_c00257{left:227.700000px;}
.xec_c00257{left:229.950000px;}
.x10a_c00257{left:231.300000px;}
.xac_c00257{left:234.000000px;}
.xa4_c00257{left:238.200000px;}
.x9c_c00257{left:242.100000px;}
.x25_c00257{left:243.300000px;}
.x6e_c00257{left:245.100000px;}
.x59_c00257{left:247.200000px;}
.x77_c00257{left:248.550000px;}
.x41_c00257{left:251.250000px;}
.x34_c00257{left:252.900000px;}
.x92_c00257{left:260.250000px;}
.xe2_c00257{left:262.050000px;}
.xcb_c00257{left:266.400000px;}
.xad_c00257{left:268.200000px;}
.xd9_c00257{left:271.350000px;}
.x81_c00257{left:274.350000px;}
.x4c_c00257{left:282.450000px;}
.xd_c00257{left:286.950000px;}
.xd3_c00257{left:288.000000px;}
.xc2_c00257{left:289.200000px;}
.x10b_c00257{left:290.400000px;}
.x35_c00257{left:291.450000px;}
.x5_c00257{left:293.400000px;}
.x26_c00257{left:295.200000px;}
.xdc_c00257{left:297.600000px;}
.x4d_c00257{left:299.700000px;}
.xae_c00257{left:300.900000px;}
.xb5_c00257{left:303.600000px;}
.x64_c00257{left:305.400000px;}
.x93_c00257{left:306.750000px;}
.x78_c00257{left:307.950000px;}
.x6f_c00257{left:311.700000px;}
.x19_c00257{left:313.800000px;}
.x36_c00257{left:320.250000px;}
.xc3_c00257{left:321.600000px;}
.x4e_c00257{left:324.600000px;}
.xe3_c00257{left:325.800000px;}
.x27_c00257{left:328.650000px;}
.xf2_c00257{left:329.700000px;}
.xe_c00257{left:330.900000px;}
.xd4_c00257{left:331.950000px;}
.x82_c00257{left:335.250000px;}
.xda_c00257{left:338.250000px;}
.xaf_c00257{left:342.600000px;}
.xa5_c00257{left:343.650000px;}
.xcc_c00257{left:344.850000px;}
.xb6_c00257{left:347.550000px;}
.xf7_c00257{left:348.900000px;}
.x79_c00257{left:350.100000px;}
.xf3_c00257{left:352.350000px;}
.x5a_c00257{left:353.700000px;}
.x28_c00257{left:357.450000px;}
.x37_c00257{left:359.100000px;}
.x94_c00257{left:360.750000px;}
.x4f_c00257{left:362.700000px;}
.x42_c00257{left:365.250000px;}
.xed_c00257{left:366.300000px;}
.x6_c00257{left:368.700000px;}
.x5b_c00257{left:371.700000px;}
.xb0_c00257{left:372.900000px;}
.xf_c00257{left:374.850000px;}
.xa6_c00257{left:377.550000px;}
.x50_c00257{left:379.650000px;}
.x43_c00257{left:381.450000px;}
.x70_c00257{left:384.450000px;}
.x8b_c00257{left:387.150000px;}
.x2_c00257{left:388.800000px;}
.xfd_c00257{left:390.450000px;}
.x7a_c00257{left:392.250000px;}
.xc4_c00257{left:394.650000px;}
.xa7_c00257{left:397.350000px;}
.x10_c00257{left:399.000000px;}
.x1a_c00257{left:402.750000px;}
.x9d_c00257{left:404.850000px;}
.xdd_c00257{left:408.900000px;}
.xfe_c00257{left:409.950000px;}
.x65_c00257{left:411.300000px;}
.x71_c00257{left:413.250000px;}
.xf4_c00257{left:414.300000px;}
.x29_c00257{left:415.350000px;}
.x103_c00257{left:417.450000px;}
.x38_c00257{left:418.950000px;}
.x7b_c00257{left:422.850000px;}
.x44_c00257{left:424.950000px;}
.x11_c00257{left:426.750000px;}
.x1_c00257{left:430.500000px;}
.xde_c00257{left:433.800000px;}
.x8c_c00257{left:435.750000px;}
.xb1_c00257{left:436.950000px;}
.xff_c00257{left:438.450000px;}
.xf8_c00257{left:440.700000px;}
.x7_c00257{left:441.750000px;}
.x106_c00257{left:442.800000px;}
.x2a_c00257{left:444.900000px;}
.xe8_c00257{left:446.700000px;}
.x1b_c00257{left:450.600000px;}
.x51_c00257{left:451.950000px;}
.x8_c00257{left:459.000000px;}
.xb7_c00257{left:463.800000px;}
.x5c_c00257{left:465.600000px;}
.x107_c00257{left:470.100000px;}
.x95_c00257{left:474.900000px;}
.x3_c00257{left:475.950000px;}
.x72_c00257{left:482.400000px;}
.x1c_c00257{left:484.500000px;}
.x66_c00257{left:486.150000px;}
.x39_c00257{left:489.900000px;}
.x83_c00257{left:493.350000px;}
.x104_c00257{left:498.750000px;}
.xf9_c00257{left:500.100000px;}
.xc5_c00257{left:503.100000px;}
.x52_c00257{left:505.500000px;}
.x3a_c00257{left:506.850000px;}
.x12_c00257{left:508.500000px;}
.x108_c00257{left:509.700000px;}
.x1d_c00257{left:510.750000px;}
.x7c_c00257{left:511.800000px;}
.x9e_c00257{left:515.400000px;}
.x8d_c00257{left:519.600000px;}
.xcd_c00257{left:520.650000px;}
.x73_c00257{left:526.350000px;}
.xe4_c00257{left:527.700000px;}
.x13_c00257{left:529.350000px;}
.xee_c00257{left:532.650000px;}
.xb8_c00257{left:535.200000px;}
.x9f_c00257{left:536.700000px;}
.x53_c00257{left:538.950000px;}
.xd5_c00257{left:541.950000px;}
.x9_c00257{left:543.300000px;}
.xe9_c00257{left:544.650000px;}
.x2b_c00257{left:546.150000px;}
.x96_c00257{left:549.000000px;}
.xc6_c00257{left:555.000000px;}
.x67_c00257{left:556.350000px;}
.x84_c00257{left:557.850000px;}
.x14_c00257{left:558.900000px;}
.xa_c00257{left:560.550000px;}
.xb9_c00257{left:564.000000px;}
.x3b_c00257{left:565.200000px;}
.x2c_c00257{left:567.000000px;}
.x5d_c00257{left:574.950000px;}
.x1e_c00257{left:579.600000px;}
.x100_c00257{left:582.750000px;}
.x68_c00257{left:584.850000px;}
.xd6_c00257{left:586.200000px;}
.x45_c00257{left:587.250000px;}
.xdf_c00257{left:590.700000px;}
.x2d_c00257{left:592.500000px;}
.x8e_c00257{left:594.150000px;}
.xb2_c00257{left:597.150000px;}
.xce_c00257{left:599.400000px;}
.xa0_c00257{left:600.450000px;}
.x101_c00257{left:602.250000px;}
.x3c_c00257{left:603.300000px;}
.xe5_c00257{left:606.900000px;}
.x46_c00257{left:612.750000px;}
.x54_c00257{left:615.300000px;}
.xc7_c00257{left:617.550000px;}
.xcf_c00257{left:620.700000px;}
.x1f_c00257{left:623.100000px;}
.x2e_c00257{left:624.150000px;}
.x69_c00257{left:625.200000px;}
.xef_c00257{left:626.850000px;}
.xa1_c00257{left:630.750000px;}
.xba_c00257{left:632.700000px;}
.x85_c00257{left:634.500000px;}
.x15_c00257{left:636.000000px;}
.xe6_c00257{left:637.200000px;}
.x74_c00257{left:641.250000px;}
.x47_c00257{left:642.600000px;}
.x3d_c00257{left:646.800000px;}
.xfa_c00257{left:651.450000px;}
.x6a_c00257{left:652.500000px;}
.x7d_c00257{left:654.000000px;}
.x20_c00257{left:657.600000px;}
.x5e_c00257{left:659.250000px;}
.x86_c00257{left:662.250000px;}
.xc8_c00257{left:663.300000px;}
.xea_c00257{left:666.300000px;}
.x16_c00257{left:667.350000px;}
.x97_c00257{left:671.700000px;}
.xf5_c00257{left:673.200000px;}
.x6b_c00257{left:674.850000px;}
.x105_c00257{left:675.900000px;}
.xa2_c00257{left:677.550000px;}
.x5f_c00257{left:678.750000px;}
.x55_c00257{left:682.200000px;}
.x7e_c00257{left:684.300000px;}
.x8f_c00257{left:687.300000px;}
.xbf_c00257{left:688.650000px;}
.xbb_c00257{left:691.050000px;}
.x3e_c00257{left:693.150000px;}
.x21_c00257{left:694.650000px;}
.xa8_c00257{left:695.700000px;}
.x2f_c00257{left:697.650000px;}
.xfb_c00257{left:699.300000px;}
.xf0_c00257{left:702.450000px;}
.xd0_c00257{left:707.100000px;}
.xa3_c00257{left:709.650000px;}
.xbc_c00257{left:711.600000px;}
.x30_c00257{left:714.900000px;}
.x87_c00257{left:718.800000px;}
.x48_c00257{left:720.300000px;}
.x60_c00257{left:721.650000px;}
.x98_c00257{left:723.900000px;}
.x90_c00257{left:727.950000px;}
.x6c_c00257{left:730.650000px;}
.x75_c00257{left:737.400000px;}
.xe7_c00257{left:739.050000px;}
.xd1_c00257{left:743.400000px;}
.x22_c00257{left:745.350000px;}
.xf1_c00257{left:746.400000px;}
.x99_c00257{left:750.600000px;}
.x17_c00257{left:752.700000px;}
.x61_c00257{left:753.750000px;}
.xc9_c00257{left:758.700000px;}
.xa9_c00257{left:761.250000px;}
.x49_c00257{left:764.550000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:-9.222222pt;}
.ws4_c00257{word-spacing:-5.330894pt;}
.ws7_c00257{word-spacing:0.000000pt;}
.ws6_c00257{word-spacing:1.333333pt;}
.ws3_c00257{word-spacing:5.333333pt;}
.ws1_c00257{word-spacing:8.672918pt;}
.ws2_c00257{word-spacing:12.111111pt;}
.ws5_c00257{word-spacing:36.148148pt;}
.fs0_c00257{font-size:48.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y23_c00257{bottom:134.400000pt;}
.y22_c00257{bottom:149.066667pt;}
.y21_c00257{bottom:181.200000pt;}
.y20_c00257{bottom:198.800000pt;}
.y1f_c00257{bottom:216.400000pt;}
.y1e_c00257{bottom:233.733333pt;}
.y1d_c00257{bottom:251.600000pt;}
.y1c_c00257{bottom:269.200000pt;}
.y1b_c00257{bottom:287.066667pt;}
.y1a_c00257{bottom:304.666667pt;}
.y19_c00257{bottom:322.133333pt;}
.y18_c00257{bottom:339.733333pt;}
.y17_c00257{bottom:357.600000pt;}
.y16_c00257{bottom:374.933333pt;}
.y15_c00257{bottom:392.533333pt;}
.y14_c00257{bottom:410.400000pt;}
.y13_c00257{bottom:428.000000pt;}
.y12_c00257{bottom:445.866667pt;}
.y11_c00257{bottom:463.466667pt;}
.y10_c00257{bottom:481.066667pt;}
.yf_c00257{bottom:498.666667pt;}
.ye_c00257{bottom:516.266667pt;}
.yd_c00257{bottom:533.866667pt;}
.yc_c00257{bottom:551.733333pt;}
.yb_c00257{bottom:569.333333pt;}
.ya_c00257{bottom:587.200000pt;}
.y9_c00257{bottom:604.800000pt;}
.y8_c00257{bottom:622.400000pt;}
.y7_c00257{bottom:640.000000pt;}
.y6_c00257{bottom:657.600000pt;}
.y5_c00257{bottom:675.466667pt;}
.y4_c00257{bottom:693.066667pt;}
.y3_c00257{bottom:722.933333pt;}
.y2_c00257{bottom:752.000000pt;}
.y1_c00257{bottom:931.200000pt;}
.h2_c00257{height:48.000000pt;}
.h0_c00257{height:1037.119955pt;}
.h1_c00257{height:1037.333333pt;}
.w0_c00257{width:816.640056pt;}
.w1_c00257{width:816.666667pt;}
.x0_c00257{left:0.000000pt;}
.xe0_c00257{left:94.400000pt;}
.x62_c00257{left:95.600000pt;}
.xb_c00257{left:96.666667pt;}
.xca_c00257{left:109.200000pt;}
.x88_c00257{left:114.133333pt;}
.x56_c00257{left:116.133333pt;}
.xeb_c00257{left:118.400000pt;}
.x31_c00257{left:122.133333pt;}
.xd2_c00257{left:124.133333pt;}
.xb3_c00257{left:128.000000pt;}
.xbd_c00257{left:128.933333pt;}
.x102_c00257{left:133.200000pt;}
.x57_c00257{left:134.400000pt;}
.xc0_c00257{left:136.400000pt;}
.x7f_c00257{left:142.800000pt;}
.x9a_c00257{left:144.400000pt;}
.xaa_c00257{left:145.866667pt;}
.xd7_c00257{left:146.800000pt;}
.xb4_c00257{left:147.866667pt;}
.x76_c00257{left:149.600000pt;}
.x63_c00257{left:150.933333pt;}
.x89_c00257{left:152.533333pt;}
.xdb_c00257{left:154.533333pt;}
.x18_c00257{left:156.400000pt;}
.x23_c00257{left:157.600000pt;}
.x91_c00257{left:159.066667pt;}
.x8a_c00257{left:164.000000pt;}
.xe1_c00257{left:166.400000pt;}
.x9b_c00257{left:167.466667pt;}
.x32_c00257{left:168.533333pt;}
.x3f_c00257{left:170.133333pt;}
.x80_c00257{left:171.866667pt;}
.xab_c00257{left:173.066667pt;}
.xc_c00257{left:174.400000pt;}
.x4a_c00257{left:177.200000pt;}
.xc1_c00257{left:178.933333pt;}
.xfc_c00257{left:182.266667pt;}
.xbe_c00257{left:184.000000pt;}
.xf6_c00257{left:187.200000pt;}
.x6d_c00257{left:190.933333pt;}
.x58_c00257{left:192.533333pt;}
.x4_c00257{left:193.600000pt;}
.x4b_c00257{left:196.400000pt;}
.x109_c00257{left:197.866667pt;}
.x24_c00257{left:198.933333pt;}
.xd8_c00257{left:199.866667pt;}
.x40_c00257{left:201.200000pt;}
.x33_c00257{left:202.400000pt;}
.xec_c00257{left:204.400000pt;}
.x10a_c00257{left:205.600000pt;}
.xac_c00257{left:208.000000pt;}
.xa4_c00257{left:211.733333pt;}
.x9c_c00257{left:215.200000pt;}
.x25_c00257{left:216.266667pt;}
.x6e_c00257{left:217.866667pt;}
.x59_c00257{left:219.733333pt;}
.x77_c00257{left:220.933333pt;}
.x41_c00257{left:223.333333pt;}
.x34_c00257{left:224.800000pt;}
.x92_c00257{left:231.333333pt;}
.xe2_c00257{left:232.933333pt;}
.xcb_c00257{left:236.800000pt;}
.xad_c00257{left:238.400000pt;}
.xd9_c00257{left:241.200000pt;}
.x81_c00257{left:243.866667pt;}
.x4c_c00257{left:251.066667pt;}
.xd_c00257{left:255.066667pt;}
.xd3_c00257{left:256.000000pt;}
.xc2_c00257{left:257.066667pt;}
.x10b_c00257{left:258.133333pt;}
.x35_c00257{left:259.066667pt;}
.x5_c00257{left:260.800000pt;}
.x26_c00257{left:262.400000pt;}
.xdc_c00257{left:264.533333pt;}
.x4d_c00257{left:266.400000pt;}
.xae_c00257{left:267.466667pt;}
.xb5_c00257{left:269.866667pt;}
.x64_c00257{left:271.466667pt;}
.x93_c00257{left:272.666667pt;}
.x78_c00257{left:273.733333pt;}
.x6f_c00257{left:277.066667pt;}
.x19_c00257{left:278.933333pt;}
.x36_c00257{left:284.666667pt;}
.xc3_c00257{left:285.866667pt;}
.x4e_c00257{left:288.533333pt;}
.xe3_c00257{left:289.600000pt;}
.x27_c00257{left:292.133333pt;}
.xf2_c00257{left:293.066667pt;}
.xe_c00257{left:294.133333pt;}
.xd4_c00257{left:295.066667pt;}
.x82_c00257{left:298.000000pt;}
.xda_c00257{left:300.666667pt;}
.xaf_c00257{left:304.533333pt;}
.xa5_c00257{left:305.466667pt;}
.xcc_c00257{left:306.533333pt;}
.xb6_c00257{left:308.933333pt;}
.xf7_c00257{left:310.133333pt;}
.x79_c00257{left:311.200000pt;}
.xf3_c00257{left:313.200000pt;}
.x5a_c00257{left:314.400000pt;}
.x28_c00257{left:317.733333pt;}
.x37_c00257{left:319.200000pt;}
.x94_c00257{left:320.666667pt;}
.x4f_c00257{left:322.400000pt;}
.x42_c00257{left:324.666667pt;}
.xed_c00257{left:325.600000pt;}
.x6_c00257{left:327.733333pt;}
.x5b_c00257{left:330.400000pt;}
.xb0_c00257{left:331.466667pt;}
.xf_c00257{left:333.200000pt;}
.xa6_c00257{left:335.600000pt;}
.x50_c00257{left:337.466667pt;}
.x43_c00257{left:339.066667pt;}
.x70_c00257{left:341.733333pt;}
.x8b_c00257{left:344.133333pt;}
.x2_c00257{left:345.600000pt;}
.xfd_c00257{left:347.066667pt;}
.x7a_c00257{left:348.666667pt;}
.xc4_c00257{left:350.800000pt;}
.xa7_c00257{left:353.200000pt;}
.x10_c00257{left:354.666667pt;}
.x1a_c00257{left:358.000000pt;}
.x9d_c00257{left:359.866667pt;}
.xdd_c00257{left:363.466667pt;}
.xfe_c00257{left:364.400000pt;}
.x65_c00257{left:365.600000pt;}
.x71_c00257{left:367.333333pt;}
.xf4_c00257{left:368.266667pt;}
.x29_c00257{left:369.200000pt;}
.x103_c00257{left:371.066667pt;}
.x38_c00257{left:372.400000pt;}
.x7b_c00257{left:375.866667pt;}
.x44_c00257{left:377.733333pt;}
.x11_c00257{left:379.333333pt;}
.x1_c00257{left:382.666667pt;}
.xde_c00257{left:385.600000pt;}
.x8c_c00257{left:387.333333pt;}
.xb1_c00257{left:388.400000pt;}
.xff_c00257{left:389.733333pt;}
.xf8_c00257{left:391.733333pt;}
.x7_c00257{left:392.666667pt;}
.x106_c00257{left:393.600000pt;}
.x2a_c00257{left:395.466667pt;}
.xe8_c00257{left:397.066667pt;}
.x1b_c00257{left:400.533333pt;}
.x51_c00257{left:401.733333pt;}
.x8_c00257{left:408.000000pt;}
.xb7_c00257{left:412.266667pt;}
.x5c_c00257{left:413.866667pt;}
.x107_c00257{left:417.866667pt;}
.x95_c00257{left:422.133333pt;}
.x3_c00257{left:423.066667pt;}
.x72_c00257{left:428.800000pt;}
.x1c_c00257{left:430.666667pt;}
.x66_c00257{left:432.133333pt;}
.x39_c00257{left:435.466667pt;}
.x83_c00257{left:438.533333pt;}
.x104_c00257{left:443.333333pt;}
.xf9_c00257{left:444.533333pt;}
.xc5_c00257{left:447.200000pt;}
.x52_c00257{left:449.333333pt;}
.x3a_c00257{left:450.533333pt;}
.x12_c00257{left:452.000000pt;}
.x108_c00257{left:453.066667pt;}
.x1d_c00257{left:454.000000pt;}
.x7c_c00257{left:454.933333pt;}
.x9e_c00257{left:458.133333pt;}
.x8d_c00257{left:461.866667pt;}
.xcd_c00257{left:462.800000pt;}
.x73_c00257{left:467.866667pt;}
.xe4_c00257{left:469.066667pt;}
.x13_c00257{left:470.533333pt;}
.xee_c00257{left:473.466667pt;}
.xb8_c00257{left:475.733333pt;}
.x9f_c00257{left:477.066667pt;}
.x53_c00257{left:479.066667pt;}
.xd5_c00257{left:481.733333pt;}
.x9_c00257{left:482.933333pt;}
.xe9_c00257{left:484.133333pt;}
.x2b_c00257{left:485.466667pt;}
.x96_c00257{left:488.000000pt;}
.xc6_c00257{left:493.333333pt;}
.x67_c00257{left:494.533333pt;}
.x84_c00257{left:495.866667pt;}
.x14_c00257{left:496.800000pt;}
.xa_c00257{left:498.266667pt;}
.xb9_c00257{left:501.333333pt;}
.x3b_c00257{left:502.400000pt;}
.x2c_c00257{left:504.000000pt;}
.x5d_c00257{left:511.066667pt;}
.x1e_c00257{left:515.200000pt;}
.x100_c00257{left:518.000000pt;}
.x68_c00257{left:519.866667pt;}
.xd6_c00257{left:521.066667pt;}
.x45_c00257{left:522.000000pt;}
.xdf_c00257{left:525.066667pt;}
.x2d_c00257{left:526.666667pt;}
.x8e_c00257{left:528.133333pt;}
.xb2_c00257{left:530.800000pt;}
.xce_c00257{left:532.800000pt;}
.xa0_c00257{left:533.733333pt;}
.x101_c00257{left:535.333333pt;}
.x3c_c00257{left:536.266667pt;}
.xe5_c00257{left:539.466667pt;}
.x46_c00257{left:544.666667pt;}
.x54_c00257{left:546.933333pt;}
.xc7_c00257{left:548.933333pt;}
.xcf_c00257{left:551.733333pt;}
.x1f_c00257{left:553.866667pt;}
.x2e_c00257{left:554.800000pt;}
.x69_c00257{left:555.733333pt;}
.xef_c00257{left:557.200000pt;}
.xa1_c00257{left:560.666667pt;}
.xba_c00257{left:562.400000pt;}
.x85_c00257{left:564.000000pt;}
.x15_c00257{left:565.333333pt;}
.xe6_c00257{left:566.400000pt;}
.x74_c00257{left:570.000000pt;}
.x47_c00257{left:571.200000pt;}
.x3d_c00257{left:574.933333pt;}
.xfa_c00257{left:579.066667pt;}
.x6a_c00257{left:580.000000pt;}
.x7d_c00257{left:581.333333pt;}
.x20_c00257{left:584.533333pt;}
.x5e_c00257{left:586.000000pt;}
.x86_c00257{left:588.666667pt;}
.xc8_c00257{left:589.600000pt;}
.xea_c00257{left:592.266667pt;}
.x16_c00257{left:593.200000pt;}
.x97_c00257{left:597.066667pt;}
.xf5_c00257{left:598.400000pt;}
.x6b_c00257{left:599.866667pt;}
.x105_c00257{left:600.800000pt;}
.xa2_c00257{left:602.266667pt;}
.x5f_c00257{left:603.333333pt;}
.x55_c00257{left:606.400000pt;}
.x7e_c00257{left:608.266667pt;}
.x8f_c00257{left:610.933333pt;}
.xbf_c00257{left:612.133333pt;}
.xbb_c00257{left:614.266667pt;}
.x3e_c00257{left:616.133333pt;}
.x21_c00257{left:617.466667pt;}
.xa8_c00257{left:618.400000pt;}
.x2f_c00257{left:620.133333pt;}
.xfb_c00257{left:621.600000pt;}
.xf0_c00257{left:624.400000pt;}
.xd0_c00257{left:628.533333pt;}
.xa3_c00257{left:630.800000pt;}
.xbc_c00257{left:632.533333pt;}
.x30_c00257{left:635.466667pt;}
.x87_c00257{left:638.933333pt;}
.x48_c00257{left:640.266667pt;}
.x60_c00257{left:641.466667pt;}
.x98_c00257{left:643.466667pt;}
.x90_c00257{left:647.066667pt;}
.x6c_c00257{left:649.466667pt;}
.x75_c00257{left:655.466667pt;}
.xe7_c00257{left:656.933333pt;}
.xd1_c00257{left:660.800000pt;}
.x22_c00257{left:662.533333pt;}
.xf1_c00257{left:663.466667pt;}
.x99_c00257{left:667.200000pt;}
.x17_c00257{left:669.066667pt;}
.x61_c00257{left:670.000000pt;}
.xc9_c00257{left:674.400000pt;}
.xa9_c00257{left:676.666667pt;}
.x49_c00257{left:679.600000pt;}
}





/* 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_c00258 {
    display:none;
  }
  .loading-indicator_c00258.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00258 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_c00258 { 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_c00258" -> "#page-container .classname_c00258")
 */
.pf_c00258 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00258 { /* 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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00258 { /* 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_c00258 { /* 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_c00258 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00258 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00258 {overflow:visible;}
  }
}
.c_c00258 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00258 { /* 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_c00258:after { /* webkit #35443 */
  content: '';
}
.t_c00258:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00258 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 */
}
.__c00258 { /* 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_c00258 { /* info for Javascript */
  display:none;
}
.l_c00258 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00258 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00258 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00258: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_c00258 {
    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_c00258.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00258.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_c00258 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00258{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00258;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.000000;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;}
.m77_c00258{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00258{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00258{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m19_c00258{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m17_c00258{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00258{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc_c00258{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m11_c00258{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m13_c00258{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m71_c00258{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8_c00258{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m66_c00258{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m69_c00258{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00258{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00258{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m75_c00258{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m60_c00258{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00258{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00258{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5_c00258{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00258{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3_c00258{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00258{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00258{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m93_c00258{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m72_c00258{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9_c00258{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00258{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00258{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m56_c00258{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me_c00258{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00258{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00258{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00258{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m94_c00258{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m33_c00258{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m28_c00258{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00258{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00258{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m83_c00258{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m38_c00258{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb_c00258{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m76_c00258{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m32_c00258{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00258{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m24_c00258{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00258{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00258{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00258{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m30_c00258{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7_c00258{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m65_c00258{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m47_c00258{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00258{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m67_c00258{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m97_c00258{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m16_c00258{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00258{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m68_c00258{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m21_c00258{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00258{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00258{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m25_c00258{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00258{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m59_c00258{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m70_c00258{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m55_c00258{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00258{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m12_c00258{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00258{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6_c00258{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m52_c00258{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m20_c00258{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m31_c00258{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00258{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m45_c00258{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00258{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m99_c00258{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00258{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00258{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m57_c00258{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m42_c00258{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m27_c00258{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00258{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m91_c00258{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00258{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m58_c00258{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m26_c00258{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m64_c00258{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m40_c00258{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m88_c00258{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m61_c00258{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00258{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00258{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m34_c00258{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m35_c00258{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00258{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m80_c00258{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m84_c00258{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m15_c00258{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00258{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00258{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00258{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m85_c00258{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m14_c00258{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00258{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m43_c00258{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m18_c00258{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00258{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m73_c00258{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m39_c00258{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m10_c00258{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m87_c00258{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m92_c00258{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00258{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00258{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00258{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00258{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00258{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m48_c00258{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.md_c00258{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00258{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m44_c00258{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m86_c00258{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00258{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00258{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m82_c00258{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m22_c00258{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma_c00258{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00258{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m96_c00258{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m54_c00258{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00258{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf_c00258{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m90_c00258{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m29_c00258{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m23_c00258{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m51_c00258{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m89_c00258{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00258{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m62_c00258{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m50_c00258{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00258{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m81_c00258{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m53_c00258{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m49_c00258{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m37_c00258{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m74_c00258{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m0_c00258{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00258{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m46_c00258{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00258{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00258{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m98_c00258{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m79_c00258{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00258{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m95_c00258{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m63_c00258{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m78_c00258{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00258{vertical-align:0.000000px;}
.ls0_c00258{letter-spacing:0.000000px;}
.sc__c00258{text-shadow:none;}
.sc0_c00258{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__c00258{-webkit-text-stroke:0px transparent;}
.sc0_c00258{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00258{word-spacing:-4.375000px;}
.ws9_c00258{word-spacing:-1.500000px;}
.wsa_c00258{word-spacing:0.000000px;}
.ws2_c00258{word-spacing:1.500000px;}
.ws0_c00258{word-spacing:2.222222px;}
.ws5_c00258{word-spacing:7.385542px;}
.ws8_c00258{word-spacing:7.500000px;}
.ws6_c00258{word-spacing:7.777778px;}
.ws3_c00258{word-spacing:8.096189px;}
.ws4_c00258{word-spacing:10.203390px;}
.ws1_c00258{word-spacing:13.375000px;}
.fc0_c00258{color:transparent;}
.fs0_c00258{font-size:54.000000px;}
.y0_c00258{bottom:0.000000px;}
.y29_c00258{bottom:159.150000px;}
.y28_c00258{bottom:214.650000px;}
.y27_c00258{bottom:233.700000px;}
.y26_c00258{bottom:253.500000px;}
.y25_c00258{bottom:273.300000px;}
.y24_c00258{bottom:293.100000px;}
.y23_c00258{bottom:312.900000px;}
.y22_c00258{bottom:332.400000px;}
.y21_c00258{bottom:352.500000px;}
.y20_c00258{bottom:372.300000px;}
.y1f_c00258{bottom:392.100000px;}
.y1e_c00258{bottom:412.200000px;}
.y1d_c00258{bottom:431.700000px;}
.y1c_c00258{bottom:451.500000px;}
.y1b_c00258{bottom:471.600000px;}
.y1a_c00258{bottom:491.400000px;}
.y19_c00258{bottom:510.900000px;}
.y18_c00258{bottom:531.000000px;}
.y17_c00258{bottom:551.100000px;}
.y16_c00258{bottom:570.900000px;}
.y15_c00258{bottom:590.700000px;}
.y14_c00258{bottom:610.200000px;}
.y13_c00258{bottom:630.750000px;}
.y12_c00258{bottom:650.250000px;}
.y11_c00258{bottom:670.050000px;}
.y10_c00258{bottom:690.150000px;}
.yf_c00258{bottom:709.950000px;}
.ye_c00258{bottom:730.050000px;}
.yd_c00258{bottom:749.850000px;}
.yc_c00258{bottom:769.350000px;}
.yb_c00258{bottom:789.450000px;}
.ya_c00258{bottom:829.050000px;}
.y9_c00258{bottom:848.850000px;}
.y8_c00258{bottom:872.250000px;}
.y7_c00258{bottom:908.700000px;}
.y6_c00258{bottom:928.500000px;}
.y5_c00258{bottom:948.600000px;}
.y4_c00258{bottom:968.400000px;}
.y3_c00258{bottom:988.500000px;}
.y2_c00258{bottom:1008.000000px;}
.y1_c00258{bottom:1046.550000px;}
.h2_c00258{height:54.000000px;}
.h0_c00258{height:1166.759949px;}
.h1_c00258{height:1167.000000px;}
.w0_c00258{width:918.720063px;}
.w1_c00258{width:918.750000px;}
.x0_c00258{left:0.000000px;}
.xe5_c00258{left:143.100000px;}
.xc2_c00258{left:144.300000px;}
.x9c_c00258{left:145.500000px;}
.x44_c00258{left:146.700000px;}
.x3_c00258{left:148.350000px;}
.x1_c00258{left:150.150000px;}
.xec_c00258{left:163.650000px;}
.xa9_c00258{left:166.650000px;}
.x4_c00258{left:168.150000px;}
.xfb_c00258{left:169.350000px;}
.x2f_c00258{left:172.950000px;}
.x5e_c00258{left:174.900000px;}
.xc6_c00258{left:176.100000px;}
.x70_c00258{left:177.450000px;}
.x52_c00258{left:178.500000px;}
.x100_c00258{left:179.550000px;}
.x15_c00258{left:181.500000px;}
.x68_c00258{left:183.450000px;}
.x94_c00258{left:185.400000px;}
.x9d_c00258{left:186.600000px;}
.xc3_c00258{left:188.250000px;}
.xb8_c00258{left:190.800000px;}
.xe2_c00258{left:192.900000px;}
.xef_c00258{left:194.100000px;}
.xd0_c00258{left:195.750000px;}
.x5_c00258{left:199.800000px;}
.x45_c00258{left:202.200000px;}
.x82_c00258{left:204.600000px;}
.xc7_c00258{left:206.700000px;}
.x113_c00258{left:208.200000px;}
.xfc_c00258{left:210.000000px;}
.x101_c00258{left:211.650000px;}
.xd9_c00258{left:213.000000px;}
.x69_c00258{left:214.350000px;}
.x7b_c00258{left:216.150000px;}
.x38_c00258{left:218.400000px;}
.xb2_c00258{left:220.650000px;}
.x22_c00258{left:223.050000px;}
.x95_c00258{left:224.700000px;}
.xe6_c00258{left:227.700000px;}
.x46_c00258{left:231.000000px;}
.x9e_c00258{left:233.400000px;}
.xc4_c00258{left:235.050000px;}
.x16_c00258{left:237.300000px;}
.xaa_c00258{left:240.450000px;}
.x6a_c00258{left:242.400000px;}
.x6_c00258{left:246.300000px;}
.x8b_c00258{left:250.500000px;}
.x102_c00258{left:252.750000px;}
.xc8_c00258{left:254.250000px;}
.xf7_c00258{left:258.750000px;}
.x30_c00258{left:261.150000px;}
.x7_c00258{left:263.550000px;}
.xda_c00258{left:268.050000px;}
.x103_c00258{left:271.050000px;}
.x53_c00258{left:273.600000px;}
.x9f_c00258{left:275.100000px;}
.x106_c00258{left:276.900000px;}
.x7c_c00258{left:278.850000px;}
.x17_c00258{left:281.550000px;}
.x39_c00258{left:283.500000px;}
.xab_c00258{left:285.750000px;}
.x83_c00258{left:289.950000px;}
.x119_c00258{left:291.300000px;}
.x8_c00258{left:292.350000px;}
.x10e_c00258{left:293.700000px;}
.x71_c00258{left:298.350000px;}
.x96_c00258{left:300.000000px;}
.x23_c00258{left:302.250000px;}
.x18_c00258{left:303.900000px;}
.x3a_c00258{left:305.400000px;}
.x7d_c00258{left:307.350000px;}
.x47_c00258{left:308.400000px;}
.x84_c00258{left:310.500000px;}
.x10f_c00258{left:311.700000px;}
.xa0_c00258{left:315.000000px;}
.x24_c00258{left:316.950000px;}
.xd1_c00258{left:318.150000px;}
.x107_c00258{left:319.800000px;}
.xb9_c00258{left:323.250000px;}
.xdb_c00258{left:324.600000px;}
.x111_c00258{left:327.600000px;}
.xc9_c00258{left:331.350000px;}
.x19_c00258{left:332.400000px;}
.x109_c00258{left:333.450000px;}
.xe7_c00258{left:334.650000px;}
.x72_c00258{left:336.150000px;}
.x48_c00258{left:337.500000px;}
.xde_c00258{left:339.300000px;}
.x8c_c00258{left:340.800000px;}
.xc5_c00258{left:342.000000px;}
.x9_c00258{left:346.050000px;}
.xa1_c00258{left:348.900000px;}
.xba_c00258{left:349.950000px;}
.x5f_c00258{left:351.300000px;}
.x25_c00258{left:355.050000px;}
.x3b_c00258{left:357.900000px;}
.xca_c00258{left:359.400000px;}
.xd2_c00258{left:360.600000px;}
.xfd_c00258{left:363.450000px;}
.x8d_c00258{left:365.700000px;}
.x6b_c00258{left:367.200000px;}
.xa2_c00258{left:368.700000px;}
.x54_c00258{left:370.800000px;}
.x1a_c00258{left:373.050000px;}
.x85_c00258{left:374.250000px;}
.xa_c00258{left:375.900000px;}
.x112_c00258{left:378.750000px;}
.x10a_c00258{left:383.400000px;}
.x60_c00258{left:385.200000px;}
.x49_c00258{left:390.000000px;}
.xa3_c00258{left:394.950000px;}
.x7e_c00258{left:396.300000px;}
.xb_c00258{left:397.500000px;}
.x26_c00258{left:399.000000px;}
.x3c_c00258{left:401.100000px;}
.x55_c00258{left:403.200000px;}
.xdf_c00258{left:405.900000px;}
.xd3_c00258{left:407.100000px;}
.x6c_c00258{left:408.600000px;}
.x73_c00258{left:410.250000px;}
.xbb_c00258{left:414.000000px;}
.xf0_c00258{left:416.550000px;}
.x27_c00258{left:420.600000px;}
.xac_c00258{left:425.700000px;}
.xc_c00258{left:427.050000px;}
.x6d_c00258{left:428.700000px;}
.xb3_c00258{left:430.500000px;}
.xbc_c00258{left:431.700000px;}
.x3d_c00258{left:432.750000px;}
.x8e_c00258{left:435.150000px;}
.xe3_c00258{left:436.200000px;}
.x104_c00258{left:439.200000px;}
.x4a_c00258{left:442.500000px;}
.x2_c00258{left:447.150000px;}
.xed_c00258{left:448.500000px;}
.x28_c00258{left:450.150000px;}
.xa4_c00258{left:452.550000px;}
.x86_c00258{left:454.200000px;}
.x31_c00258{left:456.600000px;}
.xad_c00258{left:458.850000px;}
.x74_c00258{left:460.650000px;}
.x110_c00258{left:463.800000px;}
.xbd_c00258{left:466.650000px;}
.x97_c00258{left:468.300000px;}
.xd4_c00258{left:470.100000px;}
.x8f_c00258{left:471.450000px;}
.x32_c00258{left:473.850000px;}
.x114_c00258{left:476.250000px;}
.xa5_c00258{left:481.050000px;}
.xe0_c00258{left:482.550000px;}
.x1b_c00258{left:484.650000px;}
.x56_c00258{left:486.300000px;}
.xf1_c00258{left:491.100000px;}
.x61_c00258{left:492.900000px;}
.x116_c00258{left:494.850000px;}
.x90_c00258{left:499.950000px;}
.x33_c00258{left:501.900000px;}
.xb4_c00258{left:503.550000px;}
.xe8_c00258{left:504.600000px;}
.x4b_c00258{left:505.800000px;}
.x57_c00258{left:507.150000px;}
.x1c_c00258{left:508.350000px;}
.x117_c00258{left:510.000000px;}
.x98_c00258{left:512.550000px;}
.x62_c00258{left:515.250000px;}
.x29_c00258{left:518.250000px;}
.xbe_c00258{left:520.350000px;}
.xee_c00258{left:521.550000px;}
.x75_c00258{left:523.650000px;}
.x4c_c00258{left:525.300000px;}
.xcb_c00258{left:527.850000px;}
.xd_c00258{left:534.000000px;}
.x58_c00258{left:537.000000px;}
.x6e_c00258{left:539.250000px;}
.xae_c00258{left:540.600000px;}
.x87_c00258{left:542.700000px;}
.xf8_c00258{left:544.350000px;}
.xb5_c00258{left:546.450000px;}
.xd5_c00258{left:551.550000px;}
.x4d_c00258{left:554.100000px;}
.x1d_c00258{left:555.900000px;}
.xaf_c00258{left:560.100000px;}
.x63_c00258{left:562.050000px;}
.xf2_c00258{left:566.100000px;}
.x3e_c00258{left:567.450000px;}
.x34_c00258{left:572.400000px;}
.x10b_c00258{left:573.450000px;}
.xb6_c00258{left:577.350000px;}
.xe9_c00258{left:579.600000px;}
.x59_c00258{left:581.250000px;}
.xcc_c00258{left:582.600000px;}
.x64_c00258{left:584.400000px;}
.x99_c00258{left:585.600000px;}
.x88_c00258{left:587.700000px;}
.x1e_c00258{left:589.050000px;}
.x91_c00258{left:590.700000px;}
.xb7_c00258{left:592.050000px;}
.xe_c00258{left:596.700000px;}
.x118_c00258{left:597.900000px;}
.x3f_c00258{left:602.400000px;}
.x7f_c00258{left:604.800000px;}
.x2a_c00258{left:606.750000px;}
.x6f_c00258{left:610.950000px;}
.x105_c00258{left:612.000000px;}
.xf_c00258{left:613.200000px;}
.x65_c00258{left:615.000000px;}
.x4e_c00258{left:616.800000px;}
.xa6_c00258{left:620.400000px;}
.x2b_c00258{left:622.650000px;}
.x76_c00258{left:625.500000px;}
.xf3_c00258{left:631.350000px;}
.x1f_c00258{left:632.550000px;}
.x10_c00258{left:636.300000px;}
.x35_c00258{left:639.000000px;}
.x4f_c00258{left:644.850000px;}
.xd6_c00258{left:647.250000px;}
.x89_c00258{left:648.600000px;}
.x10c_c00258{left:649.800000px;}
.xa7_c00258{left:651.000000px;}
.xcd_c00258{left:652.500000px;}
.x5a_c00258{left:655.050000px;}
.xbf_c00258{left:657.000000px;}
.xe1_c00258{left:661.050000px;}
.x92_c00258{left:662.400000px;}
.xdc_c00258{left:665.400000px;}
.xb0_c00258{left:668.400000px;}
.xd7_c00258{left:669.900000px;}
.x40_c00258{left:671.850000px;}
.xea_c00258{left:673.050000px;}
.x36_c00258{left:676.050000px;}
.xf4_c00258{left:677.850000px;}
.xce_c00258{left:679.500000px;}
.x50_c00258{left:681.600000px;}
.xcf_c00258{left:683.100000px;}
.x77_c00258{left:687.000000px;}
.x20_c00258{left:688.650000px;}
.x2c_c00258{left:690.750000px;}
.x11_c00258{left:693.150000px;}
.xb1_c00258{left:696.900000px;}
.xfe_c00258{left:698.250000px;}
.xd8_c00258{left:700.800000px;}
.x108_c00258{left:702.150000px;}
.x21_c00258{left:709.200000px;}
.xc0_c00258{left:712.800000px;}
.xf9_c00258{left:714.300000px;}
.x66_c00258{left:717.300000px;}
.x10d_c00258{left:718.950000px;}
.x8a_c00258{left:720.900000px;}
.x78_c00258{left:724.800000px;}
.x12_c00258{left:725.850000px;}
.xf5_c00258{left:730.350000px;}
.x5b_c00258{left:733.200000px;}
.x51_c00258{left:735.300000px;}
.x2d_c00258{left:736.800000px;}
.x41_c00258{left:738.150000px;}
.x67_c00258{left:739.650000px;}
.xa8_c00258{left:741.300000px;}
.xdd_c00258{left:743.550000px;}
.x80_c00258{left:747.750000px;}
.x93_c00258{left:750.900000px;}
.xc1_c00258{left:753.900000px;}
.x13_c00258{left:757.200000px;}
.xe4_c00258{left:758.400000px;}
.x9a_c00258{left:761.400000px;}
.x42_c00258{left:762.600000px;}
.x79_c00258{left:765.450000px;}
.x5c_c00258{left:771.000000px;}
.x115_c00258{left:775.050000px;}
.x37_c00258{left:777.150000px;}
.x81_c00258{left:779.850000px;}
.xeb_c00258{left:782.550000px;}
.x2e_c00258{left:784.650000px;}
.xff_c00258{left:786.450000px;}
.xf6_c00258{left:787.650000px;}
.x14_c00258{left:794.250000px;}
.xfa_c00258{left:795.300000px;}
.x43_c00258{left:798.600000px;}
.x9b_c00258{left:801.000000px;}
.x5d_c00258{left:802.350000px;}
.x7a_c00258{left:806.550000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws7_c00258{word-spacing:-3.888889pt;}
.ws9_c00258{word-spacing:-1.333333pt;}
.wsa_c00258{word-spacing:0.000000pt;}
.ws2_c00258{word-spacing:1.333333pt;}
.ws0_c00258{word-spacing:1.975309pt;}
.ws5_c00258{word-spacing:6.564926pt;}
.ws8_c00258{word-spacing:6.666667pt;}
.ws6_c00258{word-spacing:6.913580pt;}
.ws3_c00258{word-spacing:7.196612pt;}
.ws4_c00258{word-spacing:9.069680pt;}
.ws1_c00258{word-spacing:11.888889pt;}
.fs0_c00258{font-size:48.000000pt;}
.y0_c00258{bottom:0.000000pt;}
.y29_c00258{bottom:141.466667pt;}
.y28_c00258{bottom:190.800000pt;}
.y27_c00258{bottom:207.733333pt;}
.y26_c00258{bottom:225.333333pt;}
.y25_c00258{bottom:242.933333pt;}
.y24_c00258{bottom:260.533333pt;}
.y23_c00258{bottom:278.133333pt;}
.y22_c00258{bottom:295.466667pt;}
.y21_c00258{bottom:313.333333pt;}
.y20_c00258{bottom:330.933333pt;}
.y1f_c00258{bottom:348.533333pt;}
.y1e_c00258{bottom:366.400000pt;}
.y1d_c00258{bottom:383.733333pt;}
.y1c_c00258{bottom:401.333333pt;}
.y1b_c00258{bottom:419.200000pt;}
.y1a_c00258{bottom:436.800000pt;}
.y19_c00258{bottom:454.133333pt;}
.y18_c00258{bottom:472.000000pt;}
.y17_c00258{bottom:489.866667pt;}
.y16_c00258{bottom:507.466667pt;}
.y15_c00258{bottom:525.066667pt;}
.y14_c00258{bottom:542.400000pt;}
.y13_c00258{bottom:560.666667pt;}
.y12_c00258{bottom:578.000000pt;}
.y11_c00258{bottom:595.600000pt;}
.y10_c00258{bottom:613.466667pt;}
.yf_c00258{bottom:631.066667pt;}
.ye_c00258{bottom:648.933333pt;}
.yd_c00258{bottom:666.533333pt;}
.yc_c00258{bottom:683.866667pt;}
.yb_c00258{bottom:701.733333pt;}
.ya_c00258{bottom:736.933333pt;}
.y9_c00258{bottom:754.533333pt;}
.y8_c00258{bottom:775.333333pt;}
.y7_c00258{bottom:807.733333pt;}
.y6_c00258{bottom:825.333333pt;}
.y5_c00258{bottom:843.200000pt;}
.y4_c00258{bottom:860.800000pt;}
.y3_c00258{bottom:878.666667pt;}
.y2_c00258{bottom:896.000000pt;}
.y1_c00258{bottom:930.266667pt;}
.h2_c00258{height:48.000000pt;}
.h0_c00258{height:1037.119955pt;}
.h1_c00258{height:1037.333333pt;}
.w0_c00258{width:816.640056pt;}
.w1_c00258{width:816.666667pt;}
.x0_c00258{left:0.000000pt;}
.xe5_c00258{left:127.200000pt;}
.xc2_c00258{left:128.266667pt;}
.x9c_c00258{left:129.333333pt;}
.x44_c00258{left:130.400000pt;}
.x3_c00258{left:131.866667pt;}
.x1_c00258{left:133.466667pt;}
.xec_c00258{left:145.466667pt;}
.xa9_c00258{left:148.133333pt;}
.x4_c00258{left:149.466667pt;}
.xfb_c00258{left:150.533333pt;}
.x2f_c00258{left:153.733333pt;}
.x5e_c00258{left:155.466667pt;}
.xc6_c00258{left:156.533333pt;}
.x70_c00258{left:157.733333pt;}
.x52_c00258{left:158.666667pt;}
.x100_c00258{left:159.600000pt;}
.x15_c00258{left:161.333333pt;}
.x68_c00258{left:163.066667pt;}
.x94_c00258{left:164.800000pt;}
.x9d_c00258{left:165.866667pt;}
.xc3_c00258{left:167.333333pt;}
.xb8_c00258{left:169.600000pt;}
.xe2_c00258{left:171.466667pt;}
.xef_c00258{left:172.533333pt;}
.xd0_c00258{left:174.000000pt;}
.x5_c00258{left:177.600000pt;}
.x45_c00258{left:179.733333pt;}
.x82_c00258{left:181.866667pt;}
.xc7_c00258{left:183.733333pt;}
.x113_c00258{left:185.066667pt;}
.xfc_c00258{left:186.666667pt;}
.x101_c00258{left:188.133333pt;}
.xd9_c00258{left:189.333333pt;}
.x69_c00258{left:190.533333pt;}
.x7b_c00258{left:192.133333pt;}
.x38_c00258{left:194.133333pt;}
.xb2_c00258{left:196.133333pt;}
.x22_c00258{left:198.266667pt;}
.x95_c00258{left:199.733333pt;}
.xe6_c00258{left:202.400000pt;}
.x46_c00258{left:205.333333pt;}
.x9e_c00258{left:207.466667pt;}
.xc4_c00258{left:208.933333pt;}
.x16_c00258{left:210.933333pt;}
.xaa_c00258{left:213.733333pt;}
.x6a_c00258{left:215.466667pt;}
.x6_c00258{left:218.933333pt;}
.x8b_c00258{left:222.666667pt;}
.x102_c00258{left:224.666667pt;}
.xc8_c00258{left:226.000000pt;}
.xf7_c00258{left:230.000000pt;}
.x30_c00258{left:232.133333pt;}
.x7_c00258{left:234.266667pt;}
.xda_c00258{left:238.266667pt;}
.x103_c00258{left:240.933333pt;}
.x53_c00258{left:243.200000pt;}
.x9f_c00258{left:244.533333pt;}
.x106_c00258{left:246.133333pt;}
.x7c_c00258{left:247.866667pt;}
.x17_c00258{left:250.266667pt;}
.x39_c00258{left:252.000000pt;}
.xab_c00258{left:254.000000pt;}
.x83_c00258{left:257.733333pt;}
.x119_c00258{left:258.933333pt;}
.x8_c00258{left:259.866667pt;}
.x10e_c00258{left:261.066667pt;}
.x71_c00258{left:265.200000pt;}
.x96_c00258{left:266.666667pt;}
.x23_c00258{left:268.666667pt;}
.x18_c00258{left:270.133333pt;}
.x3a_c00258{left:271.466667pt;}
.x7d_c00258{left:273.200000pt;}
.x47_c00258{left:274.133333pt;}
.x84_c00258{left:276.000000pt;}
.x10f_c00258{left:277.066667pt;}
.xa0_c00258{left:280.000000pt;}
.x24_c00258{left:281.733333pt;}
.xd1_c00258{left:282.800000pt;}
.x107_c00258{left:284.266667pt;}
.xb9_c00258{left:287.333333pt;}
.xdb_c00258{left:288.533333pt;}
.x111_c00258{left:291.200000pt;}
.xc9_c00258{left:294.533333pt;}
.x19_c00258{left:295.466667pt;}
.x109_c00258{left:296.400000pt;}
.xe7_c00258{left:297.466667pt;}
.x72_c00258{left:298.800000pt;}
.x48_c00258{left:300.000000pt;}
.xde_c00258{left:301.600000pt;}
.x8c_c00258{left:302.933333pt;}
.xc5_c00258{left:304.000000pt;}
.x9_c00258{left:307.600000pt;}
.xa1_c00258{left:310.133333pt;}
.xba_c00258{left:311.066667pt;}
.x5f_c00258{left:312.266667pt;}
.x25_c00258{left:315.600000pt;}
.x3b_c00258{left:318.133333pt;}
.xca_c00258{left:319.466667pt;}
.xd2_c00258{left:320.533333pt;}
.xfd_c00258{left:323.066667pt;}
.x8d_c00258{left:325.066667pt;}
.x6b_c00258{left:326.400000pt;}
.xa2_c00258{left:327.733333pt;}
.x54_c00258{left:329.600000pt;}
.x1a_c00258{left:331.600000pt;}
.x85_c00258{left:332.666667pt;}
.xa_c00258{left:334.133333pt;}
.x112_c00258{left:336.666667pt;}
.x10a_c00258{left:340.800000pt;}
.x60_c00258{left:342.400000pt;}
.x49_c00258{left:346.666667pt;}
.xa3_c00258{left:351.066667pt;}
.x7e_c00258{left:352.266667pt;}
.xb_c00258{left:353.333333pt;}
.x26_c00258{left:354.666667pt;}
.x3c_c00258{left:356.533333pt;}
.x55_c00258{left:358.400000pt;}
.xdf_c00258{left:360.800000pt;}
.xd3_c00258{left:361.866667pt;}
.x6c_c00258{left:363.200000pt;}
.x73_c00258{left:364.666667pt;}
.xbb_c00258{left:368.000000pt;}
.xf0_c00258{left:370.266667pt;}
.x27_c00258{left:373.866667pt;}
.xac_c00258{left:378.400000pt;}
.xc_c00258{left:379.600000pt;}
.x6d_c00258{left:381.066667pt;}
.xb3_c00258{left:382.666667pt;}
.xbc_c00258{left:383.733333pt;}
.x3d_c00258{left:384.666667pt;}
.x8e_c00258{left:386.800000pt;}
.xe3_c00258{left:387.733333pt;}
.x104_c00258{left:390.400000pt;}
.x4a_c00258{left:393.333333pt;}
.x2_c00258{left:397.466667pt;}
.xed_c00258{left:398.666667pt;}
.x28_c00258{left:400.133333pt;}
.xa4_c00258{left:402.266667pt;}
.x86_c00258{left:403.733333pt;}
.x31_c00258{left:405.866667pt;}
.xad_c00258{left:407.866667pt;}
.x74_c00258{left:409.466667pt;}
.x110_c00258{left:412.266667pt;}
.xbd_c00258{left:414.800000pt;}
.x97_c00258{left:416.266667pt;}
.xd4_c00258{left:417.866667pt;}
.x8f_c00258{left:419.066667pt;}
.x32_c00258{left:421.200000pt;}
.x114_c00258{left:423.333333pt;}
.xa5_c00258{left:427.600000pt;}
.xe0_c00258{left:428.933333pt;}
.x1b_c00258{left:430.800000pt;}
.x56_c00258{left:432.266667pt;}
.xf1_c00258{left:436.533333pt;}
.x61_c00258{left:438.133333pt;}
.x116_c00258{left:439.866667pt;}
.x90_c00258{left:444.400000pt;}
.x33_c00258{left:446.133333pt;}
.xb4_c00258{left:447.600000pt;}
.xe8_c00258{left:448.533333pt;}
.x4b_c00258{left:449.600000pt;}
.x57_c00258{left:450.800000pt;}
.x1c_c00258{left:451.866667pt;}
.x117_c00258{left:453.333333pt;}
.x98_c00258{left:455.600000pt;}
.x62_c00258{left:458.000000pt;}
.x29_c00258{left:460.666667pt;}
.xbe_c00258{left:462.533333pt;}
.xee_c00258{left:463.600000pt;}
.x75_c00258{left:465.466667pt;}
.x4c_c00258{left:466.933333pt;}
.xcb_c00258{left:469.200000pt;}
.xd_c00258{left:474.666667pt;}
.x58_c00258{left:477.333333pt;}
.x6e_c00258{left:479.333333pt;}
.xae_c00258{left:480.533333pt;}
.x87_c00258{left:482.400000pt;}
.xf8_c00258{left:483.866667pt;}
.xb5_c00258{left:485.733333pt;}
.xd5_c00258{left:490.266667pt;}
.x4d_c00258{left:492.533333pt;}
.x1d_c00258{left:494.133333pt;}
.xaf_c00258{left:497.866667pt;}
.x63_c00258{left:499.600000pt;}
.xf2_c00258{left:503.200000pt;}
.x3e_c00258{left:504.400000pt;}
.x34_c00258{left:508.800000pt;}
.x10b_c00258{left:509.733333pt;}
.xb6_c00258{left:513.200000pt;}
.xe9_c00258{left:515.200000pt;}
.x59_c00258{left:516.666667pt;}
.xcc_c00258{left:517.866667pt;}
.x64_c00258{left:519.466667pt;}
.x99_c00258{left:520.533333pt;}
.x88_c00258{left:522.400000pt;}
.x1e_c00258{left:523.600000pt;}
.x91_c00258{left:525.066667pt;}
.xb7_c00258{left:526.266667pt;}
.xe_c00258{left:530.400000pt;}
.x118_c00258{left:531.466667pt;}
.x3f_c00258{left:535.466667pt;}
.x7f_c00258{left:537.600000pt;}
.x2a_c00258{left:539.333333pt;}
.x6f_c00258{left:543.066667pt;}
.x105_c00258{left:544.000000pt;}
.xf_c00258{left:545.066667pt;}
.x65_c00258{left:546.666667pt;}
.x4e_c00258{left:548.266667pt;}
.xa6_c00258{left:551.466667pt;}
.x2b_c00258{left:553.466667pt;}
.x76_c00258{left:556.000000pt;}
.xf3_c00258{left:561.200000pt;}
.x1f_c00258{left:562.266667pt;}
.x10_c00258{left:565.600000pt;}
.x35_c00258{left:568.000000pt;}
.x4f_c00258{left:573.200000pt;}
.xd6_c00258{left:575.333333pt;}
.x89_c00258{left:576.533333pt;}
.x10c_c00258{left:577.600000pt;}
.xa7_c00258{left:578.666667pt;}
.xcd_c00258{left:580.000000pt;}
.x5a_c00258{left:582.266667pt;}
.xbf_c00258{left:584.000000pt;}
.xe1_c00258{left:587.600000pt;}
.x92_c00258{left:588.800000pt;}
.xdc_c00258{left:591.466667pt;}
.xb0_c00258{left:594.133333pt;}
.xd7_c00258{left:595.466667pt;}
.x40_c00258{left:597.200000pt;}
.xea_c00258{left:598.266667pt;}
.x36_c00258{left:600.933333pt;}
.xf4_c00258{left:602.533333pt;}
.xce_c00258{left:604.000000pt;}
.x50_c00258{left:605.866667pt;}
.xcf_c00258{left:607.200000pt;}
.x77_c00258{left:610.666667pt;}
.x20_c00258{left:612.133333pt;}
.x2c_c00258{left:614.000000pt;}
.x11_c00258{left:616.133333pt;}
.xb1_c00258{left:619.466667pt;}
.xfe_c00258{left:620.666667pt;}
.xd8_c00258{left:622.933333pt;}
.x108_c00258{left:624.133333pt;}
.x21_c00258{left:630.400000pt;}
.xc0_c00258{left:633.600000pt;}
.xf9_c00258{left:634.933333pt;}
.x66_c00258{left:637.600000pt;}
.x10d_c00258{left:639.066667pt;}
.x8a_c00258{left:640.800000pt;}
.x78_c00258{left:644.266667pt;}
.x12_c00258{left:645.200000pt;}
.xf5_c00258{left:649.200000pt;}
.x5b_c00258{left:651.733333pt;}
.x51_c00258{left:653.600000pt;}
.x2d_c00258{left:654.933333pt;}
.x41_c00258{left:656.133333pt;}
.x67_c00258{left:657.466667pt;}
.xa8_c00258{left:658.933333pt;}
.xdd_c00258{left:660.933333pt;}
.x80_c00258{left:664.666667pt;}
.x93_c00258{left:667.466667pt;}
.xc1_c00258{left:670.133333pt;}
.x13_c00258{left:673.066667pt;}
.xe4_c00258{left:674.133333pt;}
.x9a_c00258{left:676.800000pt;}
.x42_c00258{left:677.866667pt;}
.x79_c00258{left:680.400000pt;}
.x5c_c00258{left:685.333333pt;}
.x115_c00258{left:688.933333pt;}
.x37_c00258{left:690.800000pt;}
.x81_c00258{left:693.200000pt;}
.xeb_c00258{left:695.600000pt;}
.x2e_c00258{left:697.466667pt;}
.xff_c00258{left:699.066667pt;}
.xf6_c00258{left:700.133333pt;}
.x14_c00258{left:706.000000pt;}
.xfa_c00258{left:706.933333pt;}
.x43_c00258{left:709.866667pt;}
.x9b_c00258{left:712.000000pt;}
.x5d_c00258{left:713.200000pt;}
.x7a_c00258{left:716.933333pt;}
}





/* 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_c00259 {
    display:none;
  }
  .loading-indicator_c00259.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00259 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_c00259 { 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_c00259" -> "#page-container .classname_c00259")
 */
.pf_c00259 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00259 { /* 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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00259 { /* 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_c00259 { /* 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_c00259 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00259 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00259 {overflow:visible;}
  }
}
.c_c00259 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00259 { /* 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_c00259:after { /* webkit #35443 */
  content: '';
}
.t_c00259:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00259 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 */
}
.__c00259 { /* 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_c00259 { /* info for Javascript */
  display:none;
}
.l_c00259 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00259 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00259 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00259: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_c00259 {
    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_c00259.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00259.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_c00259 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00259{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00259;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.000000;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;}
.me_c00259{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m31_c00259{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00259{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m29_c00259{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00259{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00259{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00259{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9_c00259{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m26_c00259{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m23_c00259{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m22_c00259{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00259{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m27_c00259{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m30_c00259{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m4_c00259{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m14_c00259{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00259{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m25_c00259{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00259{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00259{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00259{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m33_c00259{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m20_c00259{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m21_c00259{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00259{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m12_c00259{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.mc_c00259{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00259{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m19_c00259{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.v0_c00259{vertical-align:0.000000px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{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__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
.fc0_c00259{color:transparent;}
.fs0_c00259{font-size:54.000000px;}
.y0_c00259{bottom:0.000000px;}
.y9_c00259{bottom:865.200000px;}
.y8_c00259{bottom:886.050000px;}
.y7_c00259{bottom:905.850000px;}
.y6_c00259{bottom:925.950000px;}
.y5_c00259{bottom:945.750000px;}
.y4_c00259{bottom:965.550000px;}
.y3_c00259{bottom:985.350000px;}
.y2_c00259{bottom:1005.150000px;}
.y1_c00259{bottom:1043.250000px;}
.h2_c00259{height:54.000000px;}
.h0_c00259{height:1166.759949px;}
.h1_c00259{height:1167.000000px;}
.w0_c00259{width:918.720063px;}
.w1_c00259{width:918.750000px;}
.x0_c00259{left:0.000000px;}
.x3_c00259{left:102.900000px;}
.x38_c00259{left:125.550000px;}
.x4f_c00259{left:128.550000px;}
.x42_c00259{left:131.700000px;}
.x14_c00259{left:134.550000px;}
.x4_c00259{left:137.100000px;}
.x28_c00259{left:151.050000px;}
.x39_c00259{left:159.750000px;}
.x2b_c00259{left:161.250000px;}
.x43_c00259{left:165.150000px;}
.x5_c00259{left:168.450000px;}
.x1f_c00259{left:172.050000px;}
.x15_c00259{left:186.450000px;}
.x29_c00259{left:193.800000px;}
.x2c_c00259{left:204.150000px;}
.x6_c00259{left:212.700000px;}
.x44_c00259{left:222.000000px;}
.x3a_c00259{left:226.050000px;}
.x16_c00259{left:227.850000px;}
.x2d_c00259{left:234.000000px;}
.x2a_c00259{left:235.950000px;}
.x7_c00259{left:247.650000px;}
.x17_c00259{left:261.000000px;}
.x45_c00259{left:263.100000px;}
.x3b_c00259{left:267.150000px;}
.x8_c00259{left:275.400000px;}
.x20_c00259{left:276.450000px;}
.x2e_c00259{left:295.200000px;}
.x18_c00259{left:299.850000px;}
.x2f_c00259{left:315.000000px;}
.x3c_c00259{left:319.350000px;}
.x9_c00259{left:326.100000px;}
.x21_c00259{left:327.600000px;}
.x46_c00259{left:334.800000px;}
.x19_c00259{left:337.950000px;}
.x30_c00259{left:340.500000px;}
.xa_c00259{left:346.950000px;}
.x47_c00259{left:348.450000px;}
.x3d_c00259{left:365.400000px;}
.x22_c00259{left:367.950000px;}
.x1_c00259{left:373.650000px;}
.xb_c00259{left:376.050000px;}
.x1a_c00259{left:382.200000px;}
.x31_c00259{left:396.300000px;}
.x1b_c00259{left:403.500000px;}
.x48_c00259{left:405.750000px;}
.x23_c00259{left:408.600000px;}
.x3e_c00259{left:420.150000px;}
.x49_c00259{left:426.600000px;}
.x32_c00259{left:431.550000px;}
.x1c_c00259{left:432.600000px;}
.x4a_c00259{left:451.050000px;}
.x33_c00259{left:457.500000px;}
.xc_c00259{left:473.250000px;}
.x4b_c00259{left:486.000000px;}
.xd_c00259{left:503.850000px;}
.x24_c00259{left:510.450000px;}
.x3f_c00259{left:519.450000px;}
.xe_c00259{left:525.150000px;}
.x34_c00259{left:527.700000px;}
.x25_c00259{left:542.100000px;}
.xf_c00259{left:550.650000px;}
.x1d_c00259{left:571.950000px;}
.x4c_c00259{left:598.350000px;}
.x1e_c00259{left:601.800000px;}
.x35_c00259{left:621.600000px;}
.x4d_c00259{left:623.850000px;}
.x10_c00259{left:638.850000px;}
.x11_c00259{left:665.100000px;}
.x40_c00259{left:668.100000px;}
.x26_c00259{left:670.200000px;}
.x41_c00259{left:695.400000px;}
.x36_c00259{left:696.900000px;}
.x27_c00259{left:711.600000px;}
.x37_c00259{left:716.700000px;}
.x12_c00259{left:736.800000px;}
.x2_c00259{left:742.950000px;}
.x4e_c00259{left:744.150000px;}
.x13_c00259{left:755.850000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fs0_c00259{font-size:48.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y9_c00259{bottom:769.066667pt;}
.y8_c00259{bottom:787.600000pt;}
.y7_c00259{bottom:805.200000pt;}
.y6_c00259{bottom:823.066667pt;}
.y5_c00259{bottom:840.666667pt;}
.y4_c00259{bottom:858.266667pt;}
.y3_c00259{bottom:875.866667pt;}
.y2_c00259{bottom:893.466667pt;}
.y1_c00259{bottom:927.333333pt;}
.h2_c00259{height:48.000000pt;}
.h0_c00259{height:1037.119955pt;}
.h1_c00259{height:1037.333333pt;}
.w0_c00259{width:816.640056pt;}
.w1_c00259{width:816.666667pt;}
.x0_c00259{left:0.000000pt;}
.x3_c00259{left:91.466667pt;}
.x38_c00259{left:111.600000pt;}
.x4f_c00259{left:114.266667pt;}
.x42_c00259{left:117.066667pt;}
.x14_c00259{left:119.600000pt;}
.x4_c00259{left:121.866667pt;}
.x28_c00259{left:134.266667pt;}
.x39_c00259{left:142.000000pt;}
.x2b_c00259{left:143.333333pt;}
.x43_c00259{left:146.800000pt;}
.x5_c00259{left:149.733333pt;}
.x1f_c00259{left:152.933333pt;}
.x15_c00259{left:165.733333pt;}
.x29_c00259{left:172.266667pt;}
.x2c_c00259{left:181.466667pt;}
.x6_c00259{left:189.066667pt;}
.x44_c00259{left:197.333333pt;}
.x3a_c00259{left:200.933333pt;}
.x16_c00259{left:202.533333pt;}
.x2d_c00259{left:208.000000pt;}
.x2a_c00259{left:209.733333pt;}
.x7_c00259{left:220.133333pt;}
.x17_c00259{left:232.000000pt;}
.x45_c00259{left:233.866667pt;}
.x3b_c00259{left:237.466667pt;}
.x8_c00259{left:244.800000pt;}
.x20_c00259{left:245.733333pt;}
.x2e_c00259{left:262.400000pt;}
.x18_c00259{left:266.533333pt;}
.x2f_c00259{left:280.000000pt;}
.x3c_c00259{left:283.866667pt;}
.x9_c00259{left:289.866667pt;}
.x21_c00259{left:291.200000pt;}
.x46_c00259{left:297.600000pt;}
.x19_c00259{left:300.400000pt;}
.x30_c00259{left:302.666667pt;}
.xa_c00259{left:308.400000pt;}
.x47_c00259{left:309.733333pt;}
.x3d_c00259{left:324.800000pt;}
.x22_c00259{left:327.066667pt;}
.x1_c00259{left:332.133333pt;}
.xb_c00259{left:334.266667pt;}
.x1a_c00259{left:339.733333pt;}
.x31_c00259{left:352.266667pt;}
.x1b_c00259{left:358.666667pt;}
.x48_c00259{left:360.666667pt;}
.x23_c00259{left:363.200000pt;}
.x3e_c00259{left:373.466667pt;}
.x49_c00259{left:379.200000pt;}
.x32_c00259{left:383.600000pt;}
.x1c_c00259{left:384.533333pt;}
.x4a_c00259{left:400.933333pt;}
.x33_c00259{left:406.666667pt;}
.xc_c00259{left:420.666667pt;}
.x4b_c00259{left:432.000000pt;}
.xd_c00259{left:447.866667pt;}
.x24_c00259{left:453.733333pt;}
.x3f_c00259{left:461.733333pt;}
.xe_c00259{left:466.800000pt;}
.x34_c00259{left:469.066667pt;}
.x25_c00259{left:481.866667pt;}
.xf_c00259{left:489.466667pt;}
.x1d_c00259{left:508.400000pt;}
.x4c_c00259{left:531.866667pt;}
.x1e_c00259{left:534.933333pt;}
.x35_c00259{left:552.533333pt;}
.x4d_c00259{left:554.533333pt;}
.x10_c00259{left:567.866667pt;}
.x11_c00259{left:591.200000pt;}
.x40_c00259{left:593.866667pt;}
.x26_c00259{left:595.733333pt;}
.x41_c00259{left:618.133333pt;}
.x36_c00259{left:619.466667pt;}
.x27_c00259{left:632.533333pt;}
.x37_c00259{left:637.066667pt;}
.x12_c00259{left:654.933333pt;}
.x2_c00259{left:660.400000pt;}
.x4e_c00259{left:661.466667pt;}
.x13_c00259{left:671.866667pt;}
}





/* 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_c00260 {
    display:none;
  }
  .loading-indicator_c00260.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00260 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_c00260 { 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_c00260" -> "#page-container .classname_c00260")
 */
.pf_c00260 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00260 { /* 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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00260 { /* 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_c00260 { /* 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_c00260 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00260 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00260 {overflow:visible;}
  }
}
.c_c00260 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00260 { /* 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_c00260:after { /* webkit #35443 */
  content: '';
}
.t_c00260:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00260 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 */
}
.__c00260 { /* 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_c00260 { /* info for Javascript */
  display:none;
}
.l_c00260 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00260 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00260 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00260: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_c00260 {
    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_c00260.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00260.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_c00260 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00260{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00260;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.000000;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;}
.m4a_c00260{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m84_c00260{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me_c00260{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m49_c00260{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00260{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m47_c00260{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00260{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m89_c00260{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00260{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00260{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m70_c00260{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m50_c00260{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m33_c00260{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00260{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m44_c00260{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m75_c00260{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m91_c00260{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00260{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00260{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m38_c00260{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m55_c00260{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00260{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m10_c00260{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m71_c00260{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m94_c00260{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m81_c00260{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00260{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00260{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);}
.m25_c00260{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00260{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m52_c00260{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m51_c00260{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00260{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00260{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m64_c00260{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00260{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00260{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00260{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m22_c00260{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m58_c00260{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00260{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m24_c00260{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00260{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00260{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m19_c00260{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00260{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m34_c00260{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m86_c00260{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m65_c00260{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m35_c00260{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00260{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00260{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m11_c00260{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00260{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00260{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m14_c00260{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m40_c00260{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9_c00260{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00260{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00260{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m95_c00260{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338750,0.000000,0.000000,0.250000,0,0);}
.m7_c00260{transform:matrix(0.344250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344250,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m3_c00260{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m57_c00260{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00260{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m4_c00260{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12_c00260{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00260{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m77_c00260{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00260{vertical-align:0.000000px;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{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__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00260{word-spacing:-7.607143px;}
.ws4_c00260{word-spacing:-5.673852px;}
.ws7_c00260{word-spacing:-2.504823px;}
.ws9_c00260{word-spacing:-1.172545px;}
.ws0_c00260{word-spacing:0.000000px;}
.ws2_c00260{word-spacing:0.250000px;}
.ws5_c00260{word-spacing:3.125000px;}
.wsa_c00260{word-spacing:4.537019px;}
.ws3_c00260{word-spacing:4.650602px;}
.ws1_c00260{word-spacing:7.250000px;}
.ws8_c00260{word-spacing:15.151976px;}
.fc0_c00260{color:transparent;}
.fs1_c00260{font-size:42.000000px;}
.fs0_c00260{font-size:54.000000px;}
.y0_c00260{bottom:0.000000px;}
.y23_c00260{bottom:143.250000px;}
.y22_c00260{bottom:163.800000px;}
.y21_c00260{bottom:183.600000px;}
.y20_c00260{bottom:203.700000px;}
.y1f_c00260{bottom:223.500000px;}
.y1e_c00260{bottom:243.600000px;}
.y1d_c00260{bottom:263.700000px;}
.y1c_c00260{bottom:283.200000px;}
.y1b_c00260{bottom:303.300000px;}
.y1a_c00260{bottom:323.400000px;}
.y19_c00260{bottom:343.500000px;}
.y18_c00260{bottom:363.300000px;}
.y17_c00260{bottom:383.100000px;}
.y16_c00260{bottom:402.900000px;}
.y15_c00260{bottom:423.000000px;}
.y14_c00260{bottom:442.800000px;}
.y13_c00260{bottom:462.300000px;}
.y12_c00260{bottom:482.100000px;}
.y11_c00260{bottom:501.900000px;}
.y10_c00260{bottom:522.000000px;}
.yf_c00260{bottom:542.100000px;}
.ye_c00260{bottom:561.600000px;}
.yd_c00260{bottom:581.100000px;}
.yc_c00260{bottom:600.900000px;}
.yb_c00260{bottom:621.000000px;}
.ya_c00260{bottom:640.800000px;}
.y9_c00260{bottom:660.750000px;}
.y8_c00260{bottom:680.850000px;}
.y7_c00260{bottom:700.650000px;}
.y6_c00260{bottom:720.750000px;}
.y5_c00260{bottom:749.100000px;}
.y4_c00260{bottom:768.900000px;}
.y3_c00260{bottom:803.550000px;}
.y2_c00260{bottom:835.950000px;}
.y1_c00260{bottom:1041.450000px;}
.h3_c00260{height:42.000000px;}
.h2_c00260{height:54.000000px;}
.h0_c00260{height:1166.759949px;}
.h1_c00260{height:1167.000000px;}
.w0_c00260{width:918.720063px;}
.w1_c00260{width:918.750000px;}
.x0_c00260{left:0.000000px;}
.xa_c00260{left:150.150000px;}
.x19_c00260{left:151.200000px;}
.xf1_c00260{left:165.750000px;}
.x79_c00260{left:169.200000px;}
.xe0_c00260{left:179.250000px;}
.x85_c00260{left:180.300000px;}
.x20_c00260{left:182.100000px;}
.xb4_c00260{left:183.900000px;}
.x97_c00260{left:185.550000px;}
.xb_c00260{left:186.900000px;}
.x4a_c00260{left:188.550000px;}
.x9e_c00260{left:193.050000px;}
.x5a_c00260{left:194.850000px;}
.x3c_c00260{left:197.700000px;}
.xa8_c00260{left:203.250000px;}
.xb5_c00260{left:205.200000px;}
.xe8_c00260{left:209.700000px;}
.xf9_c00260{left:211.650000px;}
.x7a_c00260{left:212.700000px;}
.xc4_c00260{left:216.450000px;}
.x2d_c00260{left:218.250000px;}
.x1a_c00260{left:222.150000px;}
.xda_c00260{left:225.000000px;}
.x3d_c00260{left:226.500000px;}
.x4e_c00260{left:227.850000px;}
.x8e_c00260{left:229.200000px;}
.xce_c00260{left:232.200000px;}
.x5b_c00260{left:233.700000px;}
.xbf_c00260{left:235.350000px;}
.x2e_c00260{left:237.750000px;}
.xc9_c00260{left:241.500000px;}
.xa9_c00260{left:243.600000px;}
.x69_c00260{left:245.700000px;}
.x21_c00260{left:247.950000px;}
.x70_c00260{left:249.750000px;}
.x7b_c00260{left:250.800000px;}
.x3e_c00260{left:252.000000px;}
.x1b_c00260{left:253.500000px;}
.xe1_c00260{left:254.550000px;}
.x4f_c00260{left:255.600000px;}
.x100_c00260{left:256.650000px;}
.x4_c00260{left:257.700000px;}
.x98_c00260{left:260.850000px;}
.xdb_c00260{left:262.350000px;}
.x5c_c00260{left:263.550000px;}
.xaa_c00260{left:264.900000px;}
.xc0_c00260{left:266.250000px;}
.xc5_c00260{left:272.550000px;}
.xb6_c00260{left:274.350000px;}
.x7c_c00260{left:277.050000px;}
.x86_c00260{left:281.400000px;}
.xfa_c00260{left:289.050000px;}
.xc_c00260{left:294.900000px;}
.x3f_c00260{left:298.050000px;}
.x22_c00260{left:299.100000px;}
.x5d_c00260{left:303.150000px;}
.x6a_c00260{left:306.150000px;}
.x50_c00260{left:307.800000px;}
.x9f_c00260{left:309.600000px;}
.xed_c00260{left:312.000000px;}
.xe2_c00260{left:313.650000px;}
.x6b_c00260{left:317.250000px;}
.x4b_c00260{left:319.650000px;}
.x2f_c00260{left:321.600000px;}
.xab_c00260{left:324.300000px;}
.xc6_c00260{left:327.300000px;}
.xdc_c00260{left:331.800000px;}
.xf6_c00260{left:333.750000px;}
.xfb_c00260{left:334.800000px;}
.x7d_c00260{left:338.700000px;}
.x4c_c00260{left:340.500000px;}
.x6c_c00260{left:343.500000px;}
.x40_c00260{left:345.900000px;}
.xd_c00260{left:349.650000px;}
.x30_c00260{left:351.150000px;}
.xa0_c00260{left:352.800000px;}
.xac_c00260{left:354.150000px;}
.x51_c00260{left:358.950000px;}
.x101_c00260{left:360.750000px;}
.x71_c00260{left:364.200000px;}
.x5_c00260{left:365.700000px;}
.xe_c00260{left:368.400000px;}
.x1c_c00260{left:370.500000px;}
.xee_c00260{left:371.700000px;}
.x8f_c00260{left:372.750000px;}
.x23_c00260{left:377.550000px;}
.x52_c00260{left:379.800000px;}
.x31_c00260{left:383.250000px;}
.xf7_c00260{left:388.800000px;}
.xca_c00260{left:390.450000px;}
.xad_c00260{left:393.000000px;}
.x7e_c00260{left:394.200000px;}
.x72_c00260{left:395.550000px;}
.x6_c00260{left:396.600000px;}
.xf2_c00260{left:399.300000px;}
.xa1_c00260{left:400.800000px;}
.xf_c00260{left:401.850000px;}
.xfc_c00260{left:403.500000px;}
.xc1_c00260{left:404.550000px;}
.x4d_c00260{left:405.600000px;}
.x24_c00260{left:411.000000px;}
.x87_c00260{left:412.500000px;}
.x5e_c00260{left:414.750000px;}
.x53_c00260{left:416.550000px;}
.x2_c00260{left:419.400000px;}
.x7f_c00260{left:422.250000px;}
.x1d_c00260{left:429.600000px;}
.xcf_c00260{left:430.650000px;}
.xe9_c00260{left:432.600000px;}
.x90_c00260{left:433.650000px;}
.xc7_c00260{left:435.750000px;}
.xf3_c00260{left:439.200000px;}
.x88_c00260{left:440.550000px;}
.x73_c00260{left:442.050000px;}
.xc2_c00260{left:447.750000px;}
.x32_c00260{left:450.900000px;}
.x41_c00260{left:455.250000px;}
.x10_c00260{left:457.650000px;}
.xd0_c00260{left:459.150000px;}
.xa2_c00260{left:460.950000px;}
.x5f_c00260{left:463.350000px;}
.xd3_c00260{left:468.450000px;}
.x1_c00260{left:471.300000px;}
.x89_c00260{left:472.950000px;}
.xf4_c00260{left:474.150000px;}
.x54_c00260{left:475.650000px;}
.x102_c00260{left:477.300000px;}
.x25_c00260{left:479.100000px;}
.x74_c00260{left:480.600000px;}
.x7_c00260{left:485.100000px;}
.xc3_c00260{left:486.300000px;}
.xc8_c00260{left:488.250000px;}
.x91_c00260{left:495.150000px;}
.x11_c00260{left:497.550000px;}
.x75_c00260{left:500.100000px;}
.x60_c00260{left:502.650000px;}
.x3_c00260{left:505.500000px;}
.x99_c00260{left:507.450000px;}
.x33_c00260{left:508.800000px;}
.xe3_c00260{left:509.850000px;}
.x1e_c00260{left:511.650000px;}
.x42_c00260{left:514.650000px;}
.xae_c00260{left:517.500000px;}
.x55_c00260{left:519.150000px;}
.x26_c00260{left:520.200000px;}
.x76_c00260{left:521.700000px;}
.x103_c00260{left:526.500000px;}
.x34_c00260{left:527.550000px;}
.x12_c00260{left:528.900000px;}
.xb7_c00260{left:531.300000px;}
.x43_c00260{left:535.500000px;}
.xd5_c00260{left:537.600000px;}
.x61_c00260{left:538.650000px;}
.x8_c00260{left:543.450000px;}
.x35_c00260{left:545.550000px;}
.x77_c00260{left:549.000000px;}
.x27_c00260{left:550.800000px;}
.xb8_c00260{left:553.950000px;}
.x80_c00260{left:555.150000px;}
.x9a_c00260{left:556.350000px;}
.x44_c00260{left:561.750000px;}
.x36_c00260{left:566.400000px;}
.xe4_c00260{left:570.750000px;}
.x92_c00260{left:571.800000px;}
.x1f_c00260{left:573.900000px;}
.xd6_c00260{left:575.100000px;}
.xfd_c00260{left:579.900000px;}
.x62_c00260{left:583.350000px;}
.x28_c00260{left:586.500000px;}
.x37_c00260{left:590.100000px;}
.x13_c00260{left:596.250000px;}
.xa3_c00260{left:601.350000px;}
.x93_c00260{left:603.150000px;}
.xd7_c00260{left:605.400000px;}
.x6d_c00260{left:608.700000px;}
.x104_c00260{left:609.750000px;}
.x45_c00260{left:613.650000px;}
.x9_c00260{left:614.700000px;}
.x63_c00260{left:619.050000px;}
.xcb_c00260{left:621.150000px;}
.x14_c00260{left:624.300000px;}
.xf8_c00260{left:626.100000px;}
.x6e_c00260{left:628.800000px;}
.x56_c00260{left:630.750000px;}
.xd4_c00260{left:632.700000px;}
.xb9_c00260{left:633.900000px;}
.x81_c00260{left:635.100000px;}
.xaf_c00260{left:637.350000px;}
.x46_c00260{left:639.150000px;}
.xd1_c00260{left:640.200000px;}
.x29_c00260{left:641.250000px;}
.x8a_c00260{left:644.250000px;}
.x64_c00260{left:645.300000px;}
.x94_c00260{left:647.400000px;}
.xdd_c00260{left:649.800000px;}
.x9b_c00260{left:651.300000px;}
.x38_c00260{left:654.600000px;}
.xea_c00260{left:656.550000px;}
.xe5_c00260{left:657.900000px;}
.x78_c00260{left:661.350000px;}
.x15_c00260{left:662.400000px;}
.x57_c00260{left:663.900000px;}
.xb0_c00260{left:668.700000px;}
.xfe_c00260{left:671.100000px;}
.xba_c00260{left:673.200000px;}
.x8b_c00260{left:675.600000px;}
.xeb_c00260{left:678.150000px;}
.x2a_c00260{left:679.350000px;}
.xa4_c00260{left:683.850000px;}
.x47_c00260{left:686.700000px;}
.x16_c00260{left:687.900000px;}
.x39_c00260{left:689.850000px;}
.xcc_c00260{left:692.100000px;}
.xbb_c00260{left:695.850000px;}
.xb1_c00260{left:697.200000px;}
.x58_c00260{left:699.150000px;}
.xd8_c00260{left:704.100000px;}
.x65_c00260{left:706.200000px;}
.x2b_c00260{left:708.150000px;}
.xd2_c00260{left:710.100000px;}
.xe6_c00260{left:713.400000px;}
.x6f_c00260{left:714.450000px;}
.x9c_c00260{left:716.100000px;}
.xde_c00260{left:718.500000px;}
.x95_c00260{left:719.850000px;}
.x3a_c00260{left:721.200000px;}
.xcd_c00260{left:723.450000px;}
.xa5_c00260{left:729.150000px;}
.x66_c00260{left:731.400000px;}
.xef_c00260{left:734.250000px;}
.x17_c00260{left:736.200000px;}
.xbc_c00260{left:737.550000px;}
.x48_c00260{left:738.900000px;}
.xb2_c00260{left:740.400000px;}
.xe7_c00260{left:741.900000px;}
.x82_c00260{left:743.400000px;}
.x8c_c00260{left:745.500000px;}
.x3b_c00260{left:748.500000px;}
.x59_c00260{left:751.350000px;}
.xd9_c00260{left:753.150000px;}
.xf0_c00260{left:754.350000px;}
.xa6_c00260{left:757.650000px;}
.xf5_c00260{left:760.350000px;}
.x83_c00260{left:761.700000px;}
.x96_c00260{left:765.600000px;}
.xec_c00260{left:769.650000px;}
.xbd_c00260{left:772.500000px;}
.x49_c00260{left:776.400000px;}
.x18_c00260{left:778.650000px;}
.xdf_c00260{left:781.200000px;}
.xb3_c00260{left:782.850000px;}
.x67_c00260{left:785.700000px;}
.xff_c00260{left:787.650000px;}
.xa7_c00260{left:791.850000px;}
.x9d_c00260{left:794.250000px;}
.x8d_c00260{left:795.900000px;}
.x84_c00260{left:798.450000px;}
.x2c_c00260{left:799.650000px;}
.x68_c00260{left:802.950000px;}
.xbe_c00260{left:806.700000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws6_c00260{word-spacing:-6.761905pt;}
.ws4_c00260{word-spacing:-5.043424pt;}
.ws7_c00260{word-spacing:-2.226509pt;}
.ws9_c00260{word-spacing:-1.042262pt;}
.ws0_c00260{word-spacing:0.000000pt;}
.ws2_c00260{word-spacing:0.222222pt;}
.ws5_c00260{word-spacing:2.777778pt;}
.wsa_c00260{word-spacing:4.032906pt;}
.ws3_c00260{word-spacing:4.133869pt;}
.ws1_c00260{word-spacing:6.444444pt;}
.ws8_c00260{word-spacing:13.468423pt;}
.fs1_c00260{font-size:37.333333pt;}
.fs0_c00260{font-size:48.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y23_c00260{bottom:127.333333pt;}
.y22_c00260{bottom:145.600000pt;}
.y21_c00260{bottom:163.200000pt;}
.y20_c00260{bottom:181.066667pt;}
.y1f_c00260{bottom:198.666667pt;}
.y1e_c00260{bottom:216.533333pt;}
.y1d_c00260{bottom:234.400000pt;}
.y1c_c00260{bottom:251.733333pt;}
.y1b_c00260{bottom:269.600000pt;}
.y1a_c00260{bottom:287.466667pt;}
.y19_c00260{bottom:305.333333pt;}
.y18_c00260{bottom:322.933333pt;}
.y17_c00260{bottom:340.533333pt;}
.y16_c00260{bottom:358.133333pt;}
.y15_c00260{bottom:376.000000pt;}
.y14_c00260{bottom:393.600000pt;}
.y13_c00260{bottom:410.933333pt;}
.y12_c00260{bottom:428.533333pt;}
.y11_c00260{bottom:446.133333pt;}
.y10_c00260{bottom:464.000000pt;}
.yf_c00260{bottom:481.866667pt;}
.ye_c00260{bottom:499.200000pt;}
.yd_c00260{bottom:516.533333pt;}
.yc_c00260{bottom:534.133333pt;}
.yb_c00260{bottom:552.000000pt;}
.ya_c00260{bottom:569.600000pt;}
.y9_c00260{bottom:587.333333pt;}
.y8_c00260{bottom:605.200000pt;}
.y7_c00260{bottom:622.800000pt;}
.y6_c00260{bottom:640.666667pt;}
.y5_c00260{bottom:665.866667pt;}
.y4_c00260{bottom:683.466667pt;}
.y3_c00260{bottom:714.266667pt;}
.y2_c00260{bottom:743.066667pt;}
.y1_c00260{bottom:925.733333pt;}
.h3_c00260{height:37.333333pt;}
.h2_c00260{height:48.000000pt;}
.h0_c00260{height:1037.119955pt;}
.h1_c00260{height:1037.333333pt;}
.w0_c00260{width:816.640056pt;}
.w1_c00260{width:816.666667pt;}
.x0_c00260{left:0.000000pt;}
.xa_c00260{left:133.466667pt;}
.x19_c00260{left:134.400000pt;}
.xf1_c00260{left:147.333333pt;}
.x79_c00260{left:150.400000pt;}
.xe0_c00260{left:159.333333pt;}
.x85_c00260{left:160.266667pt;}
.x20_c00260{left:161.866667pt;}
.xb4_c00260{left:163.466667pt;}
.x97_c00260{left:164.933333pt;}
.xb_c00260{left:166.133333pt;}
.x4a_c00260{left:167.600000pt;}
.x9e_c00260{left:171.600000pt;}
.x5a_c00260{left:173.200000pt;}
.x3c_c00260{left:175.733333pt;}
.xa8_c00260{left:180.666667pt;}
.xb5_c00260{left:182.400000pt;}
.xe8_c00260{left:186.400000pt;}
.xf9_c00260{left:188.133333pt;}
.x7a_c00260{left:189.066667pt;}
.xc4_c00260{left:192.400000pt;}
.x2d_c00260{left:194.000000pt;}
.x1a_c00260{left:197.466667pt;}
.xda_c00260{left:200.000000pt;}
.x3d_c00260{left:201.333333pt;}
.x4e_c00260{left:202.533333pt;}
.x8e_c00260{left:203.733333pt;}
.xce_c00260{left:206.400000pt;}
.x5b_c00260{left:207.733333pt;}
.xbf_c00260{left:209.200000pt;}
.x2e_c00260{left:211.333333pt;}
.xc9_c00260{left:214.666667pt;}
.xa9_c00260{left:216.533333pt;}
.x69_c00260{left:218.400000pt;}
.x21_c00260{left:220.400000pt;}
.x70_c00260{left:222.000000pt;}
.x7b_c00260{left:222.933333pt;}
.x3e_c00260{left:224.000000pt;}
.x1b_c00260{left:225.333333pt;}
.xe1_c00260{left:226.266667pt;}
.x4f_c00260{left:227.200000pt;}
.x100_c00260{left:228.133333pt;}
.x4_c00260{left:229.066667pt;}
.x98_c00260{left:231.866667pt;}
.xdb_c00260{left:233.200000pt;}
.x5c_c00260{left:234.266667pt;}
.xaa_c00260{left:235.466667pt;}
.xc0_c00260{left:236.666667pt;}
.xc5_c00260{left:242.266667pt;}
.xb6_c00260{left:243.866667pt;}
.x7c_c00260{left:246.266667pt;}
.x86_c00260{left:250.133333pt;}
.xfa_c00260{left:256.933333pt;}
.xc_c00260{left:262.133333pt;}
.x3f_c00260{left:264.933333pt;}
.x22_c00260{left:265.866667pt;}
.x5d_c00260{left:269.466667pt;}
.x6a_c00260{left:272.133333pt;}
.x50_c00260{left:273.600000pt;}
.x9f_c00260{left:275.200000pt;}
.xed_c00260{left:277.333333pt;}
.xe2_c00260{left:278.800000pt;}
.x6b_c00260{left:282.000000pt;}
.x4b_c00260{left:284.133333pt;}
.x2f_c00260{left:285.866667pt;}
.xab_c00260{left:288.266667pt;}
.xc6_c00260{left:290.933333pt;}
.xdc_c00260{left:294.933333pt;}
.xf6_c00260{left:296.666667pt;}
.xfb_c00260{left:297.600000pt;}
.x7d_c00260{left:301.066667pt;}
.x4c_c00260{left:302.666667pt;}
.x6c_c00260{left:305.333333pt;}
.x40_c00260{left:307.466667pt;}
.xd_c00260{left:310.800000pt;}
.x30_c00260{left:312.133333pt;}
.xa0_c00260{left:313.600000pt;}
.xac_c00260{left:314.800000pt;}
.x51_c00260{left:319.066667pt;}
.x101_c00260{left:320.666667pt;}
.x71_c00260{left:323.733333pt;}
.x5_c00260{left:325.066667pt;}
.xe_c00260{left:327.466667pt;}
.x1c_c00260{left:329.333333pt;}
.xee_c00260{left:330.400000pt;}
.x8f_c00260{left:331.333333pt;}
.x23_c00260{left:335.600000pt;}
.x52_c00260{left:337.600000pt;}
.x31_c00260{left:340.666667pt;}
.xf7_c00260{left:345.600000pt;}
.xca_c00260{left:347.066667pt;}
.xad_c00260{left:349.333333pt;}
.x7e_c00260{left:350.400000pt;}
.x72_c00260{left:351.600000pt;}
.x6_c00260{left:352.533333pt;}
.xf2_c00260{left:354.933333pt;}
.xa1_c00260{left:356.266667pt;}
.xf_c00260{left:357.200000pt;}
.xfc_c00260{left:358.666667pt;}
.xc1_c00260{left:359.600000pt;}
.x4d_c00260{left:360.533333pt;}
.x24_c00260{left:365.333333pt;}
.x87_c00260{left:366.666667pt;}
.x5e_c00260{left:368.666667pt;}
.x53_c00260{left:370.266667pt;}
.x2_c00260{left:372.800000pt;}
.x7f_c00260{left:375.333333pt;}
.x1d_c00260{left:381.866667pt;}
.xcf_c00260{left:382.800000pt;}
.xe9_c00260{left:384.533333pt;}
.x90_c00260{left:385.466667pt;}
.xc7_c00260{left:387.333333pt;}
.xf3_c00260{left:390.400000pt;}
.x88_c00260{left:391.600000pt;}
.x73_c00260{left:392.933333pt;}
.xc2_c00260{left:398.000000pt;}
.x32_c00260{left:400.800000pt;}
.x41_c00260{left:404.666667pt;}
.x10_c00260{left:406.800000pt;}
.xd0_c00260{left:408.133333pt;}
.xa2_c00260{left:409.733333pt;}
.x5f_c00260{left:411.866667pt;}
.xd3_c00260{left:416.400000pt;}
.x1_c00260{left:418.933333pt;}
.x89_c00260{left:420.400000pt;}
.xf4_c00260{left:421.466667pt;}
.x54_c00260{left:422.800000pt;}
.x102_c00260{left:424.266667pt;}
.x25_c00260{left:425.866667pt;}
.x74_c00260{left:427.200000pt;}
.x7_c00260{left:431.200000pt;}
.xc3_c00260{left:432.266667pt;}
.xc8_c00260{left:434.000000pt;}
.x91_c00260{left:440.133333pt;}
.x11_c00260{left:442.266667pt;}
.x75_c00260{left:444.533333pt;}
.x60_c00260{left:446.800000pt;}
.x3_c00260{left:449.333333pt;}
.x99_c00260{left:451.066667pt;}
.x33_c00260{left:452.266667pt;}
.xe3_c00260{left:453.200000pt;}
.x1e_c00260{left:454.800000pt;}
.x42_c00260{left:457.466667pt;}
.xae_c00260{left:460.000000pt;}
.x55_c00260{left:461.466667pt;}
.x26_c00260{left:462.400000pt;}
.x76_c00260{left:463.733333pt;}
.x103_c00260{left:468.000000pt;}
.x34_c00260{left:468.933333pt;}
.x12_c00260{left:470.133333pt;}
.xb7_c00260{left:472.266667pt;}
.x43_c00260{left:476.000000pt;}
.xd5_c00260{left:477.866667pt;}
.x61_c00260{left:478.800000pt;}
.x8_c00260{left:483.066667pt;}
.x35_c00260{left:484.933333pt;}
.x77_c00260{left:488.000000pt;}
.x27_c00260{left:489.600000pt;}
.xb8_c00260{left:492.400000pt;}
.x80_c00260{left:493.466667pt;}
.x9a_c00260{left:494.533333pt;}
.x44_c00260{left:499.333333pt;}
.x36_c00260{left:503.466667pt;}
.xe4_c00260{left:507.333333pt;}
.x92_c00260{left:508.266667pt;}
.x1f_c00260{left:510.133333pt;}
.xd6_c00260{left:511.200000pt;}
.xfd_c00260{left:515.466667pt;}
.x62_c00260{left:518.533333pt;}
.x28_c00260{left:521.333333pt;}
.x37_c00260{left:524.533333pt;}
.x13_c00260{left:530.000000pt;}
.xa3_c00260{left:534.533333pt;}
.x93_c00260{left:536.133333pt;}
.xd7_c00260{left:538.133333pt;}
.x6d_c00260{left:541.066667pt;}
.x104_c00260{left:542.000000pt;}
.x45_c00260{left:545.466667pt;}
.x9_c00260{left:546.400000pt;}
.x63_c00260{left:550.266667pt;}
.xcb_c00260{left:552.133333pt;}
.x14_c00260{left:554.933333pt;}
.xf8_c00260{left:556.533333pt;}
.x6e_c00260{left:558.933333pt;}
.x56_c00260{left:560.666667pt;}
.xd4_c00260{left:562.400000pt;}
.xb9_c00260{left:563.466667pt;}
.x81_c00260{left:564.533333pt;}
.xaf_c00260{left:566.533333pt;}
.x46_c00260{left:568.133333pt;}
.xd1_c00260{left:569.066667pt;}
.x29_c00260{left:570.000000pt;}
.x8a_c00260{left:572.666667pt;}
.x64_c00260{left:573.600000pt;}
.x94_c00260{left:575.466667pt;}
.xdd_c00260{left:577.600000pt;}
.x9b_c00260{left:578.933333pt;}
.x38_c00260{left:581.866667pt;}
.xea_c00260{left:583.600000pt;}
.xe5_c00260{left:584.800000pt;}
.x78_c00260{left:587.866667pt;}
.x15_c00260{left:588.800000pt;}
.x57_c00260{left:590.133333pt;}
.xb0_c00260{left:594.400000pt;}
.xfe_c00260{left:596.533333pt;}
.xba_c00260{left:598.400000pt;}
.x8b_c00260{left:600.533333pt;}
.xeb_c00260{left:602.800000pt;}
.x2a_c00260{left:603.866667pt;}
.xa4_c00260{left:607.866667pt;}
.x47_c00260{left:610.400000pt;}
.x16_c00260{left:611.466667pt;}
.x39_c00260{left:613.200000pt;}
.xcc_c00260{left:615.200000pt;}
.xbb_c00260{left:618.533333pt;}
.xb1_c00260{left:619.733333pt;}
.x58_c00260{left:621.466667pt;}
.xd8_c00260{left:625.866667pt;}
.x65_c00260{left:627.733333pt;}
.x2b_c00260{left:629.466667pt;}
.xd2_c00260{left:631.200000pt;}
.xe6_c00260{left:634.133333pt;}
.x6f_c00260{left:635.066667pt;}
.x9c_c00260{left:636.533333pt;}
.xde_c00260{left:638.666667pt;}
.x95_c00260{left:639.866667pt;}
.x3a_c00260{left:641.066667pt;}
.xcd_c00260{left:643.066667pt;}
.xa5_c00260{left:648.133333pt;}
.x66_c00260{left:650.133333pt;}
.xef_c00260{left:652.666667pt;}
.x17_c00260{left:654.400000pt;}
.xbc_c00260{left:655.600000pt;}
.x48_c00260{left:656.800000pt;}
.xb2_c00260{left:658.133333pt;}
.xe7_c00260{left:659.466667pt;}
.x82_c00260{left:660.800000pt;}
.x8c_c00260{left:662.666667pt;}
.x3b_c00260{left:665.333333pt;}
.x59_c00260{left:667.866667pt;}
.xd9_c00260{left:669.466667pt;}
.xf0_c00260{left:670.533333pt;}
.xa6_c00260{left:673.466667pt;}
.xf5_c00260{left:675.866667pt;}
.x83_c00260{left:677.066667pt;}
.x96_c00260{left:680.533333pt;}
.xec_c00260{left:684.133333pt;}
.xbd_c00260{left:686.666667pt;}
.x49_c00260{left:690.133333pt;}
.x18_c00260{left:692.133333pt;}
.xdf_c00260{left:694.400000pt;}
.xb3_c00260{left:695.866667pt;}
.x67_c00260{left:698.400000pt;}
.xff_c00260{left:700.133333pt;}
.xa7_c00260{left:703.866667pt;}
.x9d_c00260{left:706.000000pt;}
.x8d_c00260{left:707.466667pt;}
.x84_c00260{left:709.733333pt;}
.x2c_c00260{left:710.800000pt;}
.x68_c00260{left:713.733333pt;}
.xbe_c00260{left:717.066667pt;}
}





/* 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_c00261 {
    display:none;
  }
  .loading-indicator_c00261.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00261 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_c00261 { 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_c00261" -> "#page-container .classname_c00261")
 */
.pf_c00261 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00261 { /* 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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00261 { /* 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_c00261 { /* 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_c00261 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00261 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00261 {overflow:visible;}
  }
}
.c_c00261 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00261 { /* 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_c00261:after { /* webkit #35443 */
  content: '';
}
.t_c00261:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00261 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 */
}
.__c00261 { /* 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_c00261 { /* info for Javascript */
  display:none;
}
.l_c00261 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00261 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00261 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00261: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_c00261 {
    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_c00261.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00261.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_c00261 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00261{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00261;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.000000;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;}
.m12_c00261{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m9_c00261{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1_c00261{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m0_c00261{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma_c00261{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.me_c00261{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00261{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.mc_c00261{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m2_c00261{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.md_c00261{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00261{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m11_c00261{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00261{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3_c00261{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00261{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m6_c00261{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m5_c00261{transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392000,0.000000,0.000000,0.250000,0,0);}
.m8_c00261{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m7_c00261{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{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__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00261{word-spacing:0.000000px;}
.ws0_c00261{word-spacing:1629.000000px;}
.fc0_c00261{color:transparent;}
.fs0_c00261{font-size:36.000000px;}
.fs2_c00261{font-size:42.000000px;}
.fs1_c00261{font-size:48.000000px;}
.y0_c00261{bottom:0.000000px;}
.y9_c00261{bottom:47.100000px;}
.y8_c00261{bottom:63.000000px;}
.y7_c00261{bottom:73.500000px;}
.y6_c00261{bottom:83.850000px;}
.y5_c00261{bottom:95.100000px;}
.y4_c00261{bottom:113.400000px;}
.y3_c00261{bottom:127.800000px;}
.y2_c00261{bottom:164.850000px;}
.y1_c00261{bottom:190.050000px;}
.h2_c00261{height:36.000000px;}
.h4_c00261{height:42.000000px;}
.h3_c00261{height:48.000000px;}
.h0_c00261{height:1166.759949px;}
.h1_c00261{height:1167.000000px;}
.w0_c00261{width:918.720063px;}
.w1_c00261{width:918.750000px;}
.x0_c00261{left:0.000000px;}
.x4_c00261{left:75.900000px;}
.xd_c00261{left:88.200000px;}
.xb_c00261{left:90.750000px;}
.x1_c00261{left:110.100000px;}
.x5_c00261{left:117.000000px;}
.xc_c00261{left:124.650000px;}
.xe_c00261{left:126.000000px;}
.x11_c00261{left:127.500000px;}
.x7_c00261{left:132.450000px;}
.x9_c00261{left:140.100000px;}
.x2_c00261{left:156.150000px;}
.x3_c00261{left:163.350000px;}
.xf_c00261{left:167.700000px;}
.x6_c00261{left:168.900000px;}
.x10_c00261{left:182.850000px;}
.x8_c00261{left:184.650000px;}
.xa_c00261{left:202.350000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws1_c00261{word-spacing:0.000000pt;}
.ws0_c00261{word-spacing:1448.000000pt;}
.fs0_c00261{font-size:32.000000pt;}
.fs2_c00261{font-size:37.333333pt;}
.fs1_c00261{font-size:42.666667pt;}
.y0_c00261{bottom:0.000000pt;}
.y9_c00261{bottom:41.866667pt;}
.y8_c00261{bottom:56.000000pt;}
.y7_c00261{bottom:65.333333pt;}
.y6_c00261{bottom:74.533333pt;}
.y5_c00261{bottom:84.533333pt;}
.y4_c00261{bottom:100.800000pt;}
.y3_c00261{bottom:113.600000pt;}
.y2_c00261{bottom:146.533333pt;}
.y1_c00261{bottom:168.933333pt;}
.h2_c00261{height:32.000000pt;}
.h4_c00261{height:37.333333pt;}
.h3_c00261{height:42.666667pt;}
.h0_c00261{height:1037.119955pt;}
.h1_c00261{height:1037.333333pt;}
.w0_c00261{width:816.640056pt;}
.w1_c00261{width:816.666667pt;}
.x0_c00261{left:0.000000pt;}
.x4_c00261{left:67.466667pt;}
.xd_c00261{left:78.400000pt;}
.xb_c00261{left:80.666667pt;}
.x1_c00261{left:97.866667pt;}
.x5_c00261{left:104.000000pt;}
.xc_c00261{left:110.800000pt;}
.xe_c00261{left:112.000000pt;}
.x11_c00261{left:113.333333pt;}
.x7_c00261{left:117.733333pt;}
.x9_c00261{left:124.533333pt;}
.x2_c00261{left:138.800000pt;}
.x3_c00261{left:145.200000pt;}
.xf_c00261{left:149.066667pt;}
.x6_c00261{left:150.133333pt;}
.x10_c00261{left:162.533333pt;}
.x8_c00261{left:164.133333pt;}
.xa_c00261{left:179.866667pt;}
}





/* 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_c00262 {
    display:none;
  }
  .loading-indicator_c00262.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00262 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_c00262 { 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_c00262" -> "#page-container .classname_c00262")
 */
.pf_c00262 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00262 { /* 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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00262 { /* 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_c00262 { /* 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_c00262 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00262 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00262 {overflow:visible;}
  }
}
.c_c00262 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00262 { /* 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_c00262:after { /* webkit #35443 */
  content: '';
}
.t_c00262:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00262 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 */
}
.__c00262 { /* 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_c00262 { /* info for Javascript */
  display:none;
}
.l_c00262 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00262 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00262 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00262: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_c00262 {
    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_c00262.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00262.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_c00262 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00262{font-family:sans-serif;visibility:hidden;}
.sc__c00262{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
}
.y0_c00262{bottom:0.000000px;}
.h0_c00262{height:1166.759949px;}
.h1_c00262{height:1167.000000px;}
.w0_c00262{width:918.720063px;}
.w1_c00262{width:918.750000px;}
.x0_c00262{left:0.000000px;}
@media print{
.y0_c00262{bottom:0.000000pt;}
.h0_c00262{height:1037.119955pt;}
.h1_c00262{height:1037.333333pt;}
.w0_c00262{width:816.640056pt;}
.w1_c00262{width:816.666667pt;}
.x0_c00262{left:0.000000pt;}
}





/* 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_c00263 {
    display:none;
  }
  .loading-indicator_c00263.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00263 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_c00263 { 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_c00263" -> "#page-container .classname_c00263")
 */
.pf_c00263 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00263 { /* 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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00263 { /* 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_c00263 { /* 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_c00263 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00263 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00263 {overflow:visible;}
  }
}
.c_c00263 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00263 { /* 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_c00263:after { /* webkit #35443 */
  content: '';
}
.t_c00263:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00263 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 */
}
.__c00263 { /* 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_c00263 { /* info for Javascript */
  display:none;
}
.l_c00263 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00263 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00263 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00263: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_c00263 {
    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_c00263.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00263.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_c00263 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00263{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00263;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.000000;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;}
.m89_c00263{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00263{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m77_c00263{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m4_c00263{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m70_c00263{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m39_c00263{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00263{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00263{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00263{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00263{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m18_c00263{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.md_c00263{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mad_c00263{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2_c00263{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00263{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m91_c00263{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.maa_c00263{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m22_c00263{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m88_c00263{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mab_c00263{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m65_c00263{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m53_c00263{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m37_c00263{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00263{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m95_c00263{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00263{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00263{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00263{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00263{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m57_c00263{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00263{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00263{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m84_c00263{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00263{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m64_c00263{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m96_c00263{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m19_c00263{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m78_c00263{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m87_c00263{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m63_c00263{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m38_c00263{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m68_c00263{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m28_c00263{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m48_c00263{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m73_c00263{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00263{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00263{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m47_c00263{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m25_c00263{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m93_c00263{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00263{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00263{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00263{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00263{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00263{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00263{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00263{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00263{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m36_c00263{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mac_c00263{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m43_c00263{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m40_c00263{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m69_c00263{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00263{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7_c00263{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00263{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00263{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00263{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m66_c00263{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m82_c00263{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00263{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m56_c00263{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00263{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00263{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m55_c00263{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m79_c00263{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00263{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m31_c00263{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m75_c00263{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m81_c00263{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m33_c00263{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00263{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mc_c00263{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00263{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m35_c00263{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00263{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9_c00263{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m59_c00263{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00263{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00263{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m30_c00263{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00263{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00263{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3_c00263{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00263{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00263{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m44_c00263{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00263{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m34_c00263{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m49_c00263{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00263{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00263{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00263{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m97_c00263{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00263{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m23_c00263{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m50_c00263{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m16_c00263{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m90_c00263{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00263{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m20_c00263{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00263{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00263{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00263{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me_c00263{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m52_c00263{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m80_c00263{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00263{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m86_c00263{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m60_c00263{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00263{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m32_c00263{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m24_c00263{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00263{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00263{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m58_c00263{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m45_c00263{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00263{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m14_c00263{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00263{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8_c00263{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m62_c00263{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00263{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m26_c00263{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5_c00263{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00263{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m76_c00263{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00263{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.ma_c00263{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m99_c00263{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m13_c00263{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m41_c00263{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m74_c00263{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00263{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00263{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00263{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m54_c00263{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00263{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m71_c00263{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m51_c00263{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m72_c00263{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00263{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00263{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m15_c00263{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m67_c00263{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00263{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m94_c00263{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m11_c00263{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00263{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m29_c00263{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m27_c00263{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1_c00263{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m83_c00263{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb_c00263{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m46_c00263{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m92_c00263{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00263{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m42_c00263{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00263{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00263{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00263{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00263{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00263{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{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__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00263{word-spacing:0.000000px;}
.ws7_c00263{word-spacing:3.461538px;}
.ws1_c00263{word-spacing:10.625000px;}
.ws4_c00263{word-spacing:10.641987px;}
.ws2_c00263{word-spacing:13.629486px;}
.ws0_c00263{word-spacing:14.578257px;}
.ws3_c00263{word-spacing:20.167760px;}
.ws8_c00263{word-spacing:21.954545px;}
.ws6_c00263{word-spacing:25.250000px;}
.ws5_c00263{word-spacing:26.949391px;}
.fc0_c00263{color:transparent;}
.fs0_c00263{font-size:54.000000px;}
.y0_c00263{bottom:0.000000px;}
.y2b_c00263{bottom:153.450000px;}
.y2a_c00263{bottom:170.700000px;}
.y29_c00263{bottom:210.900000px;}
.y28_c00263{bottom:230.700000px;}
.y27_c00263{bottom:250.800000px;}
.y26_c00263{bottom:270.600000px;}
.y25_c00263{bottom:290.400000px;}
.y24_c00263{bottom:310.200000px;}
.y23_c00263{bottom:330.300000px;}
.y22_c00263{bottom:350.400000px;}
.y21_c00263{bottom:370.200000px;}
.y20_c00263{bottom:390.000000px;}
.y1f_c00263{bottom:409.800000px;}
.y1e_c00263{bottom:429.600000px;}
.y1d_c00263{bottom:449.700000px;}
.y1c_c00263{bottom:469.500000px;}
.y1b_c00263{bottom:489.600000px;}
.y1a_c00263{bottom:509.400000px;}
.y19_c00263{bottom:529.200000px;}
.y18_c00263{bottom:549.000000px;}
.y17_c00263{bottom:568.800000px;}
.y16_c00263{bottom:588.900000px;}
.y15_c00263{bottom:609.450000px;}
.y14_c00263{bottom:629.250000px;}
.y13_c00263{bottom:649.050000px;}
.y12_c00263{bottom:669.150000px;}
.y11_c00263{bottom:688.950000px;}
.y10_c00263{bottom:708.750000px;}
.yf_c00263{bottom:728.550000px;}
.ye_c00263{bottom:748.650000px;}
.yd_c00263{bottom:768.450000px;}
.yc_c00263{bottom:788.550000px;}
.yb_c00263{bottom:808.350000px;}
.ya_c00263{bottom:828.150000px;}
.y9_c00263{bottom:848.250000px;}
.y8_c00263{bottom:868.050000px;}
.y7_c00263{bottom:888.150000px;}
.y6_c00263{bottom:908.250000px;}
.y5_c00263{bottom:948.450000px;}
.y4_c00263{bottom:968.550000px;}
.y3_c00263{bottom:988.650000px;}
.y2_c00263{bottom:1008.750000px;}
.y1_c00263{bottom:1046.850000px;}
.h2_c00263{height:54.000000px;}
.h0_c00263{height:1166.759949px;}
.h1_c00263{height:1167.000000px;}
.w0_c00263{width:918.720063px;}
.w1_c00263{width:918.750000px;}
.x0_c00263{left:0.000000px;}
.x3_c00263{left:106.200000px;}
.x85_c00263{left:107.250000px;}
.xc7_c00263{left:109.950000px;}
.x4_c00263{left:123.450000px;}
.x110_c00263{left:124.500000px;}
.xa2_c00263{left:126.900000px;}
.x96_c00263{left:130.050000px;}
.x2e_c00263{left:135.450000px;}
.x30_c00263{left:137.850000px;}
.xa8_c00263{left:141.450000px;}
.x105_c00263{left:143.700000px;}
.x8d_c00263{left:144.900000px;}
.x47_c00263{left:147.600000px;}
.x20_c00263{left:150.300000px;}
.x5_c00263{left:152.550000px;}
.x60_c00263{left:154.800000px;}
.x97_c00263{left:159.150000px;}
.x121_c00263{left:160.800000px;}
.x56_c00263{left:162.900000px;}
.x128_c00263{left:166.350000px;}
.x7b_c00263{left:169.050000px;}
.x15_c00263{left:171.000000px;}
.x72_c00263{left:172.500000px;}
.x11f_c00263{left:174.300000px;}
.xd3_c00263{left:177.000000px;}
.x6_c00263{left:179.250000px;}
.xbd_c00263{left:180.450000px;}
.x106_c00263{left:181.500000px;}
.x86_c00263{left:182.850000px;}
.x3a_c00263{left:184.800000px;}
.x48_c00263{left:186.150000px;}
.x111_c00263{left:188.550000px;}
.x6b_c00263{left:190.500000px;}
.x21_c00263{left:192.450000px;}
.x98_c00263{left:194.100000px;}
.x61_c00263{left:197.250000px;}
.x16_c00263{left:199.050000px;}
.xfe_c00263{left:201.900000px;}
.xb7_c00263{left:204.000000px;}
.x2f_c00263{left:209.250000px;}
.x8e_c00263{left:211.500000px;}
.x3b_c00263{left:212.850000px;}
.x22_c00263{left:215.850000px;}
.x7_c00263{left:217.050000px;}
.xf1_c00263{left:219.150000px;}
.x62_c00263{left:220.650000px;}
.x99_c00263{left:223.950000px;}
.xe0_c00263{left:225.900000px;}
.xae_c00263{left:227.550000px;}
.x73_c00263{left:230.400000px;}
.x12c_c00263{left:231.450000px;}
.x49_c00263{left:232.650000px;}
.xcf_c00263{left:237.150000px;}
.xd9_c00263{left:238.800000px;}
.x8f_c00263{left:240.000000px;}
.xbe_c00263{left:241.350000px;}
.x31_c00263{left:244.800000px;}
.x12d_c00263{left:248.400000px;}
.xe6_c00263{left:249.450000px;}
.xf7_c00263{left:250.650000px;}
.x23_c00263{left:254.700000px;}
.x4a_c00263{left:258.150000px;}
.x6c_c00263{left:260.400000px;}
.x57_c00263{left:262.950000px;}
.x123_c00263{left:264.150000px;}
.xa3_c00263{left:265.200000px;}
.xf8_c00263{left:272.250000px;}
.x24_c00263{left:274.500000px;}
.x8_c00263{left:276.150000px;}
.x3c_c00263{left:277.350000px;}
.xb8_c00263{left:278.550000px;}
.xf2_c00263{left:280.350000px;}
.x17_c00263{left:281.850000px;}
.xe7_c00263{left:282.900000px;}
.x74_c00263{left:284.400000px;}
.x32_c00263{left:285.900000px;}
.xbf_c00263{left:290.700000px;}
.xa4_c00263{left:292.950000px;}
.x4b_c00263{left:294.900000px;}
.x7c_c00263{left:298.350000px;}
.x58_c00263{left:301.050000px;}
.x63_c00263{left:302.100000px;}
.xed_c00263{left:303.600000px;}
.xc8_c00263{left:305.400000px;}
.x10c_c00263{left:306.600000px;}
.x124_c00263{left:309.450000px;}
.x3d_c00263{left:311.250000px;}
.x90_c00263{left:312.300000px;}
.xe8_c00263{left:313.800000px;}
.x129_c00263{left:315.450000px;}
.x75_c00263{left:317.850000px;}
.x25_c00263{left:319.200000px;}
.xaf_c00263{left:321.150000px;}
.x12e_c00263{left:322.650000px;}
.x33_c00263{left:325.200000px;}
.xb9_c00263{left:327.450000px;}
.x9a_c00263{left:330.450000px;}
.x125_c00263{left:331.800000px;}
.xa5_c00263{left:334.350000px;}
.x6d_c00263{left:337.800000px;}
.xb0_c00263{left:339.450000px;}
.x4c_c00263{left:341.400000px;}
.x87_c00263{left:342.750000px;}
.x64_c00263{left:345.000000px;}
.x11a_c00263{left:346.650000px;}
.x59_c00263{left:347.850000px;}
.x3e_c00263{left:349.050000px;}
.xe1_c00263{left:350.100000px;}
.xff_c00263{left:351.300000px;}
.x120_c00263{left:352.500000px;}
.x91_c00263{left:353.700000px;}
.x34_c00263{left:356.550000px;}
.x4d_c00263{left:361.200000px;}
.xda_c00263{left:363.000000px;}
.x9_c00263{left:364.050000px;}
.x3f_c00263{left:368.850000px;}
.x112_c00263{left:371.700000px;}
.x115_c00263{left:373.350000px;}
.x5a_c00263{left:376.650000px;}
.x10d_c00263{left:377.850000px;}
.x100_c00263{left:379.800000px;}
.x9b_c00263{left:380.850000px;}
.xf9_c00263{left:383.100000px;}
.xdb_c00263{left:384.900000px;}
.x1_c00263{left:385.950000px;}
.xa_c00263{left:387.150000px;}
.xba_c00263{left:389.100000px;}
.xd0_c00263{left:390.150000px;}
.x18_c00263{left:391.650000px;}
.x7d_c00263{left:394.800000px;}
.x4e_c00263{left:396.900000px;}
.x40_c00263{left:398.400000px;}
.x11b_c00263{left:399.600000px;}
.xb1_c00263{left:402.150000px;}
.xd4_c00263{left:404.250000px;}
.x12a_c00263{left:406.500000px;}
.x12f_c00263{left:408.300000px;}
.x9c_c00263{left:409.950000px;}
.x76_c00263{left:411.750000px;}
.x109_c00263{left:413.550000px;}
.xb_c00263{left:414.900000px;}
.xc9_c00263{left:415.950000px;}
.x26_c00263{left:417.900000px;}
.xfa_c00263{left:423.000000px;}
.xd1_c00263{left:426.900000px;}
.x113_c00263{left:428.550000px;}
.x6e_c00263{left:430.350000px;}
.x77_c00263{left:434.850000px;}
.x65_c00263{left:436.500000px;}
.xca_c00263{left:438.300000px;}
.xa9_c00263{left:441.450000px;}
.xc_c00263{left:442.950000px;}
.x41_c00263{left:446.250000px;}
.xb2_c00263{left:449.250000px;}
.xc0_c00263{left:450.450000px;}
.x92_c00263{left:451.650000px;}
.xd5_c00263{left:452.850000px;}
.x12b_c00263{left:453.900000px;}
.x88_c00263{left:455.700000px;}
.xbb_c00263{left:458.850000px;}
.xcb_c00263{left:460.200000px;}
.x9d_c00263{left:461.400000px;}
.x7e_c00263{left:462.600000px;}
.x122_c00263{left:463.800000px;}
.x42_c00263{left:465.750000px;}
.x78_c00263{left:467.250000px;}
.x27_c00263{left:468.300000px;}
.xd2_c00263{left:471.150000px;}
.xe2_c00263{left:472.500000px;}
.x107_c00263{left:473.700000px;}
.xb3_c00263{left:475.500000px;}
.x10e_c00263{left:476.850000px;}
.x6f_c00263{left:478.200000px;}
.x9e_c00263{left:481.200000px;}
.x19_c00263{left:486.000000px;}
.x66_c00263{left:487.650000px;}
.xd_c00263{left:490.500000px;}
.xaa_c00263{left:493.350000px;}
.x4f_c00263{left:494.850000px;}
.x116_c00263{left:496.200000px;}
.x130_c00263{left:499.050000px;}
.x7f_c00263{left:501.150000px;}
.x126_c00263{left:504.450000px;}
.x28_c00263{left:505.800000px;}
.xb4_c00263{left:507.900000px;}
.x70_c00263{left:509.850000px;}
.x43_c00263{left:514.050000px;}
.xe_c00263{left:516.450000px;}
.x89_c00263{left:517.650000px;}
.x35_c00263{left:520.800000px;}
.xd6_c00263{left:524.100000px;}
.x5b_c00263{left:527.850000px;}
.x11c_c00263{left:529.650000px;}
.xf3_c00263{left:536.250000px;}
.xc1_c00263{left:538.650000px;}
.xee_c00263{left:540.300000px;}
.x1a_c00263{left:541.500000px;}
.x93_c00263{left:542.700000px;}
.x9f_c00263{left:544.500000px;}
.xfb_c00263{left:546.750000px;}
.x36_c00263{left:549.900000px;}
.x101_c00263{left:551.100000px;}
.xe9_c00263{left:553.650000px;}
.x80_c00263{left:556.200000px;}
.x50_c00263{left:558.600000px;}
.x10a_c00263{left:563.700000px;}
.xab_c00263{left:566.100000px;}
.x5c_c00263{left:568.200000px;}
.x79_c00263{left:570.150000px;}
.xfc_c00263{left:572.250000px;}
.xea_c00263{left:573.450000px;}
.x44_c00263{left:574.500000px;}
.x117_c00263{left:576.450000px;}
.x114_c00263{left:577.500000px;}
.x51_c00263{left:578.700000px;}
.xdc_c00263{left:580.800000px;}
.xf_c00263{left:582.000000px;}
.xef_c00263{left:583.800000px;}
.xbc_c00263{left:586.650000px;}
.xc2_c00263{left:588.000000px;}
.x29_c00263{left:589.650000px;}
.x1b_c00263{left:592.950000px;}
.xd7_c00263{left:594.000000px;}
.xe3_c00263{left:595.500000px;}
.xa6_c00263{left:598.200000px;}
.xc3_c00263{left:599.550000px;}
.x127_c00263{left:602.400000px;}
.x8a_c00263{left:604.350000px;}
.xa0_c00263{left:605.400000px;}
.x52_c00263{left:607.500000px;}
.x10f_c00263{left:608.700000px;}
.x2a_c00263{left:610.500000px;}
.xac_c00263{left:613.950000px;}
.xdd_c00263{left:616.050000px;}
.xcc_c00263{left:617.100000px;}
.x10_c00263{left:619.500000px;}
.x5d_c00263{left:621.150000px;}
.x11d_c00263{left:626.100000px;}
.x81_c00263{left:627.900000px;}
.x1c_c00263{left:631.050000px;}
.xb5_c00263{left:635.250000px;}
.xcd_c00263{left:636.600000px;}
.x45_c00263{left:638.700000px;}
.x2b_c00263{left:640.050000px;}
.xde_c00263{left:641.250000px;}
.x53_c00263{left:642.450000px;}
.x8b_c00263{left:645.000000px;}
.x37_c00263{left:648.150000px;}
.xf4_c00263{left:650.700000px;}
.xeb_c00263{left:653.700000px;}
.x102_c00263{left:655.050000px;}
.xc4_c00263{left:657.450000px;}
.x67_c00263{left:658.500000px;}
.x82_c00263{left:660.300000px;}
.x54_c00263{left:662.250000px;}
.x11e_c00263{left:663.600000px;}
.xce_c00263{left:664.650000px;}
.x11_c00263{left:667.350000px;}
.x5e_c00263{left:669.750000px;}
.xa1_c00263{left:671.250000px;}
.x103_c00263{left:673.350000px;}
.xc5_c00263{left:674.400000px;}
.xd8_c00263{left:676.050000px;}
.x10b_c00263{left:677.850000px;}
.xe4_c00263{left:679.350000px;}
.x1d_c00263{left:680.400000px;}
.xa7_c00263{left:681.450000px;}
.x46_c00263{left:682.950000px;}
.x94_c00263{left:686.250000px;}
.x68_c00263{left:687.600000px;}
.xf5_c00263{left:689.550000px;}
.x38_c00263{left:692.100000px;}
.x12_c00263{left:694.050000px;}
.xfd_c00263{left:696.450000px;}
.xf0_c00263{left:697.950000px;}
.xec_c00263{left:699.000000px;}
.x1e_c00263{left:700.500000px;}
.xad_c00263{left:702.450000px;}
.xb6_c00263{left:703.950000px;}
.xdf_c00263{left:706.350000px;}
.x104_c00263{left:707.550000px;}
.x118_c00263{left:708.600000px;}
.xf6_c00263{left:710.400000px;}
.x13_c00263{left:713.850000px;}
.x108_c00263{left:715.950000px;}
.x7a_c00263{left:717.450000px;}
.x71_c00263{left:718.950000px;}
.x83_c00263{left:722.550000px;}
.x2c_c00263{left:723.600000px;}
.x1f_c00263{left:726.000000px;}
.x95_c00263{left:728.700000px;}
.x5f_c00263{left:730.500000px;}
.xc6_c00263{left:732.750000px;}
.x69_c00263{left:734.100000px;}
.x119_c00263{left:737.400000px;}
.x39_c00263{left:741.450000px;}
.xe5_c00263{left:744.450000px;}
.x2_c00263{left:746.250000px;}
.x14_c00263{left:750.900000px;}
.x8c_c00263{left:752.250000px;}
.x84_c00263{left:753.450000px;}
.x55_c00263{left:757.950000px;}
.x6a_c00263{left:759.300000px;}
.x2d_c00263{left:761.400000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws9_c00263{word-spacing:0.000000pt;}
.ws7_c00263{word-spacing:3.076923pt;}
.ws1_c00263{word-spacing:9.444444pt;}
.ws4_c00263{word-spacing:9.459544pt;}
.ws2_c00263{word-spacing:12.115099pt;}
.ws0_c00263{word-spacing:12.958450pt;}
.ws3_c00263{word-spacing:17.926898pt;}
.ws8_c00263{word-spacing:19.515152pt;}
.ws6_c00263{word-spacing:22.444444pt;}
.ws5_c00263{word-spacing:23.955014pt;}
.fs0_c00263{font-size:48.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y2b_c00263{bottom:136.400000pt;}
.y2a_c00263{bottom:151.733333pt;}
.y29_c00263{bottom:187.466667pt;}
.y28_c00263{bottom:205.066667pt;}
.y27_c00263{bottom:222.933333pt;}
.y26_c00263{bottom:240.533333pt;}
.y25_c00263{bottom:258.133333pt;}
.y24_c00263{bottom:275.733333pt;}
.y23_c00263{bottom:293.600000pt;}
.y22_c00263{bottom:311.466667pt;}
.y21_c00263{bottom:329.066667pt;}
.y20_c00263{bottom:346.666667pt;}
.y1f_c00263{bottom:364.266667pt;}
.y1e_c00263{bottom:381.866667pt;}
.y1d_c00263{bottom:399.733333pt;}
.y1c_c00263{bottom:417.333333pt;}
.y1b_c00263{bottom:435.200000pt;}
.y1a_c00263{bottom:452.800000pt;}
.y19_c00263{bottom:470.400000pt;}
.y18_c00263{bottom:488.000000pt;}
.y17_c00263{bottom:505.600000pt;}
.y16_c00263{bottom:523.466667pt;}
.y15_c00263{bottom:541.733333pt;}
.y14_c00263{bottom:559.333333pt;}
.y13_c00263{bottom:576.933333pt;}
.y12_c00263{bottom:594.800000pt;}
.y11_c00263{bottom:612.400000pt;}
.y10_c00263{bottom:630.000000pt;}
.yf_c00263{bottom:647.600000pt;}
.ye_c00263{bottom:665.466667pt;}
.yd_c00263{bottom:683.066667pt;}
.yc_c00263{bottom:700.933333pt;}
.yb_c00263{bottom:718.533333pt;}
.ya_c00263{bottom:736.133333pt;}
.y9_c00263{bottom:754.000000pt;}
.y8_c00263{bottom:771.600000pt;}
.y7_c00263{bottom:789.466667pt;}
.y6_c00263{bottom:807.333333pt;}
.y5_c00263{bottom:843.066667pt;}
.y4_c00263{bottom:860.933333pt;}
.y3_c00263{bottom:878.800000pt;}
.y2_c00263{bottom:896.666667pt;}
.y1_c00263{bottom:930.533333pt;}
.h2_c00263{height:48.000000pt;}
.h0_c00263{height:1037.119955pt;}
.h1_c00263{height:1037.333333pt;}
.w0_c00263{width:816.640056pt;}
.w1_c00263{width:816.666667pt;}
.x0_c00263{left:0.000000pt;}
.x3_c00263{left:94.400000pt;}
.x85_c00263{left:95.333333pt;}
.xc7_c00263{left:97.733333pt;}
.x4_c00263{left:109.733333pt;}
.x110_c00263{left:110.666667pt;}
.xa2_c00263{left:112.800000pt;}
.x96_c00263{left:115.600000pt;}
.x2e_c00263{left:120.400000pt;}
.x30_c00263{left:122.533333pt;}
.xa8_c00263{left:125.733333pt;}
.x105_c00263{left:127.733333pt;}
.x8d_c00263{left:128.800000pt;}
.x47_c00263{left:131.200000pt;}
.x20_c00263{left:133.600000pt;}
.x5_c00263{left:135.600000pt;}
.x60_c00263{left:137.600000pt;}
.x97_c00263{left:141.466667pt;}
.x121_c00263{left:142.933333pt;}
.x56_c00263{left:144.800000pt;}
.x128_c00263{left:147.866667pt;}
.x7b_c00263{left:150.266667pt;}
.x15_c00263{left:152.000000pt;}
.x72_c00263{left:153.333333pt;}
.x11f_c00263{left:154.933333pt;}
.xd3_c00263{left:157.333333pt;}
.x6_c00263{left:159.333333pt;}
.xbd_c00263{left:160.400000pt;}
.x106_c00263{left:161.333333pt;}
.x86_c00263{left:162.533333pt;}
.x3a_c00263{left:164.266667pt;}
.x48_c00263{left:165.466667pt;}
.x111_c00263{left:167.600000pt;}
.x6b_c00263{left:169.333333pt;}
.x21_c00263{left:171.066667pt;}
.x98_c00263{left:172.533333pt;}
.x61_c00263{left:175.333333pt;}
.x16_c00263{left:176.933333pt;}
.xfe_c00263{left:179.466667pt;}
.xb7_c00263{left:181.333333pt;}
.x2f_c00263{left:186.000000pt;}
.x8e_c00263{left:188.000000pt;}
.x3b_c00263{left:189.200000pt;}
.x22_c00263{left:191.866667pt;}
.x7_c00263{left:192.933333pt;}
.xf1_c00263{left:194.800000pt;}
.x62_c00263{left:196.133333pt;}
.x99_c00263{left:199.066667pt;}
.xe0_c00263{left:200.800000pt;}
.xae_c00263{left:202.266667pt;}
.x73_c00263{left:204.800000pt;}
.x12c_c00263{left:205.733333pt;}
.x49_c00263{left:206.800000pt;}
.xcf_c00263{left:210.800000pt;}
.xd9_c00263{left:212.266667pt;}
.x8f_c00263{left:213.333333pt;}
.xbe_c00263{left:214.533333pt;}
.x31_c00263{left:217.600000pt;}
.x12d_c00263{left:220.800000pt;}
.xe6_c00263{left:221.733333pt;}
.xf7_c00263{left:222.800000pt;}
.x23_c00263{left:226.400000pt;}
.x4a_c00263{left:229.466667pt;}
.x6c_c00263{left:231.466667pt;}
.x57_c00263{left:233.733333pt;}
.x123_c00263{left:234.800000pt;}
.xa3_c00263{left:235.733333pt;}
.xf8_c00263{left:242.000000pt;}
.x24_c00263{left:244.000000pt;}
.x8_c00263{left:245.466667pt;}
.x3c_c00263{left:246.533333pt;}
.xb8_c00263{left:247.600000pt;}
.xf2_c00263{left:249.200000pt;}
.x17_c00263{left:250.533333pt;}
.xe7_c00263{left:251.466667pt;}
.x74_c00263{left:252.800000pt;}
.x32_c00263{left:254.133333pt;}
.xbf_c00263{left:258.400000pt;}
.xa4_c00263{left:260.400000pt;}
.x4b_c00263{left:262.133333pt;}
.x7c_c00263{left:265.200000pt;}
.x58_c00263{left:267.600000pt;}
.x63_c00263{left:268.533333pt;}
.xed_c00263{left:269.866667pt;}
.xc8_c00263{left:271.466667pt;}
.x10c_c00263{left:272.533333pt;}
.x124_c00263{left:275.066667pt;}
.x3d_c00263{left:276.666667pt;}
.x90_c00263{left:277.600000pt;}
.xe8_c00263{left:278.933333pt;}
.x129_c00263{left:280.400000pt;}
.x75_c00263{left:282.533333pt;}
.x25_c00263{left:283.733333pt;}
.xaf_c00263{left:285.466667pt;}
.x12e_c00263{left:286.800000pt;}
.x33_c00263{left:289.066667pt;}
.xb9_c00263{left:291.066667pt;}
.x9a_c00263{left:293.733333pt;}
.x125_c00263{left:294.933333pt;}
.xa5_c00263{left:297.200000pt;}
.x6d_c00263{left:300.266667pt;}
.xb0_c00263{left:301.733333pt;}
.x4c_c00263{left:303.466667pt;}
.x87_c00263{left:304.666667pt;}
.x64_c00263{left:306.666667pt;}
.x11a_c00263{left:308.133333pt;}
.x59_c00263{left:309.200000pt;}
.x3e_c00263{left:310.266667pt;}
.xe1_c00263{left:311.200000pt;}
.xff_c00263{left:312.266667pt;}
.x120_c00263{left:313.333333pt;}
.x91_c00263{left:314.400000pt;}
.x34_c00263{left:316.933333pt;}
.x4d_c00263{left:321.066667pt;}
.xda_c00263{left:322.666667pt;}
.x9_c00263{left:323.600000pt;}
.x3f_c00263{left:327.866667pt;}
.x112_c00263{left:330.400000pt;}
.x115_c00263{left:331.866667pt;}
.x5a_c00263{left:334.800000pt;}
.x10d_c00263{left:335.866667pt;}
.x100_c00263{left:337.600000pt;}
.x9b_c00263{left:338.533333pt;}
.xf9_c00263{left:340.533333pt;}
.xdb_c00263{left:342.133333pt;}
.x1_c00263{left:343.066667pt;}
.xa_c00263{left:344.133333pt;}
.xba_c00263{left:345.866667pt;}
.xd0_c00263{left:346.800000pt;}
.x18_c00263{left:348.133333pt;}
.x7d_c00263{left:350.933333pt;}
.x4e_c00263{left:352.800000pt;}
.x40_c00263{left:354.133333pt;}
.x11b_c00263{left:355.200000pt;}
.xb1_c00263{left:357.466667pt;}
.xd4_c00263{left:359.333333pt;}
.x12a_c00263{left:361.333333pt;}
.x12f_c00263{left:362.933333pt;}
.x9c_c00263{left:364.400000pt;}
.x76_c00263{left:366.000000pt;}
.x109_c00263{left:367.600000pt;}
.xb_c00263{left:368.800000pt;}
.xc9_c00263{left:369.733333pt;}
.x26_c00263{left:371.466667pt;}
.xfa_c00263{left:376.000000pt;}
.xd1_c00263{left:379.466667pt;}
.x113_c00263{left:380.933333pt;}
.x6e_c00263{left:382.533333pt;}
.x77_c00263{left:386.533333pt;}
.x65_c00263{left:388.000000pt;}
.xca_c00263{left:389.600000pt;}
.xa9_c00263{left:392.400000pt;}
.xc_c00263{left:393.733333pt;}
.x41_c00263{left:396.666667pt;}
.xb2_c00263{left:399.333333pt;}
.xc0_c00263{left:400.400000pt;}
.x92_c00263{left:401.466667pt;}
.xd5_c00263{left:402.533333pt;}
.x12b_c00263{left:403.466667pt;}
.x88_c00263{left:405.066667pt;}
.xbb_c00263{left:407.866667pt;}
.xcb_c00263{left:409.066667pt;}
.x9d_c00263{left:410.133333pt;}
.x7e_c00263{left:411.200000pt;}
.x122_c00263{left:412.266667pt;}
.x42_c00263{left:414.000000pt;}
.x78_c00263{left:415.333333pt;}
.x27_c00263{left:416.266667pt;}
.xd2_c00263{left:418.800000pt;}
.xe2_c00263{left:420.000000pt;}
.x107_c00263{left:421.066667pt;}
.xb3_c00263{left:422.666667pt;}
.x10e_c00263{left:423.866667pt;}
.x6f_c00263{left:425.066667pt;}
.x9e_c00263{left:427.733333pt;}
.x19_c00263{left:432.000000pt;}
.x66_c00263{left:433.466667pt;}
.xd_c00263{left:436.000000pt;}
.xaa_c00263{left:438.533333pt;}
.x4f_c00263{left:439.866667pt;}
.x116_c00263{left:441.066667pt;}
.x130_c00263{left:443.600000pt;}
.x7f_c00263{left:445.466667pt;}
.x126_c00263{left:448.400000pt;}
.x28_c00263{left:449.600000pt;}
.xb4_c00263{left:451.466667pt;}
.x70_c00263{left:453.200000pt;}
.x43_c00263{left:456.933333pt;}
.xe_c00263{left:459.066667pt;}
.x89_c00263{left:460.133333pt;}
.x35_c00263{left:462.933333pt;}
.xd6_c00263{left:465.866667pt;}
.x5b_c00263{left:469.200000pt;}
.x11c_c00263{left:470.800000pt;}
.xf3_c00263{left:476.666667pt;}
.xc1_c00263{left:478.800000pt;}
.xee_c00263{left:480.266667pt;}
.x1a_c00263{left:481.333333pt;}
.x93_c00263{left:482.400000pt;}
.x9f_c00263{left:484.000000pt;}
.xfb_c00263{left:486.000000pt;}
.x36_c00263{left:488.800000pt;}
.x101_c00263{left:489.866667pt;}
.xe9_c00263{left:492.133333pt;}
.x80_c00263{left:494.400000pt;}
.x50_c00263{left:496.533333pt;}
.x10a_c00263{left:501.066667pt;}
.xab_c00263{left:503.200000pt;}
.x5c_c00263{left:505.066667pt;}
.x79_c00263{left:506.800000pt;}
.xfc_c00263{left:508.666667pt;}
.xea_c00263{left:509.733333pt;}
.x44_c00263{left:510.666667pt;}
.x117_c00263{left:512.400000pt;}
.x114_c00263{left:513.333333pt;}
.x51_c00263{left:514.400000pt;}
.xdc_c00263{left:516.266667pt;}
.xf_c00263{left:517.333333pt;}
.xef_c00263{left:518.933333pt;}
.xbc_c00263{left:521.466667pt;}
.xc2_c00263{left:522.666667pt;}
.x29_c00263{left:524.133333pt;}
.x1b_c00263{left:527.066667pt;}
.xd7_c00263{left:528.000000pt;}
.xe3_c00263{left:529.333333pt;}
.xa6_c00263{left:531.733333pt;}
.xc3_c00263{left:532.933333pt;}
.x127_c00263{left:535.466667pt;}
.x8a_c00263{left:537.200000pt;}
.xa0_c00263{left:538.133333pt;}
.x52_c00263{left:540.000000pt;}
.x10f_c00263{left:541.066667pt;}
.x2a_c00263{left:542.666667pt;}
.xac_c00263{left:545.733333pt;}
.xdd_c00263{left:547.600000pt;}
.xcc_c00263{left:548.533333pt;}
.x10_c00263{left:550.666667pt;}
.x5d_c00263{left:552.133333pt;}
.x11d_c00263{left:556.533333pt;}
.x81_c00263{left:558.133333pt;}
.x1c_c00263{left:560.933333pt;}
.xb5_c00263{left:564.666667pt;}
.xcd_c00263{left:565.866667pt;}
.x45_c00263{left:567.733333pt;}
.x2b_c00263{left:568.933333pt;}
.xde_c00263{left:570.000000pt;}
.x53_c00263{left:571.066667pt;}
.x8b_c00263{left:573.333333pt;}
.x37_c00263{left:576.133333pt;}
.xf4_c00263{left:578.400000pt;}
.xeb_c00263{left:581.066667pt;}
.x102_c00263{left:582.266667pt;}
.xc4_c00263{left:584.400000pt;}
.x67_c00263{left:585.333333pt;}
.x82_c00263{left:586.933333pt;}
.x54_c00263{left:588.666667pt;}
.x11e_c00263{left:589.866667pt;}
.xce_c00263{left:590.800000pt;}
.x11_c00263{left:593.200000pt;}
.x5e_c00263{left:595.333333pt;}
.xa1_c00263{left:596.666667pt;}
.x103_c00263{left:598.533333pt;}
.xc5_c00263{left:599.466667pt;}
.xd8_c00263{left:600.933333pt;}
.x10b_c00263{left:602.533333pt;}
.xe4_c00263{left:603.866667pt;}
.x1d_c00263{left:604.800000pt;}
.xa7_c00263{left:605.733333pt;}
.x46_c00263{left:607.066667pt;}
.x94_c00263{left:610.000000pt;}
.x68_c00263{left:611.200000pt;}
.xf5_c00263{left:612.933333pt;}
.x38_c00263{left:615.200000pt;}
.x12_c00263{left:616.933333pt;}
.xfd_c00263{left:619.066667pt;}
.xf0_c00263{left:620.400000pt;}
.xec_c00263{left:621.333333pt;}
.x1e_c00263{left:622.666667pt;}
.xad_c00263{left:624.400000pt;}
.xb6_c00263{left:625.733333pt;}
.xdf_c00263{left:627.866667pt;}
.x104_c00263{left:628.933333pt;}
.x118_c00263{left:629.866667pt;}
.xf6_c00263{left:631.466667pt;}
.x13_c00263{left:634.533333pt;}
.x108_c00263{left:636.400000pt;}
.x7a_c00263{left:637.733333pt;}
.x71_c00263{left:639.066667pt;}
.x83_c00263{left:642.266667pt;}
.x2c_c00263{left:643.200000pt;}
.x1f_c00263{left:645.333333pt;}
.x95_c00263{left:647.733333pt;}
.x5f_c00263{left:649.333333pt;}
.xc6_c00263{left:651.333333pt;}
.x69_c00263{left:652.533333pt;}
.x119_c00263{left:655.466667pt;}
.x39_c00263{left:659.066667pt;}
.xe5_c00263{left:661.733333pt;}
.x2_c00263{left:663.333333pt;}
.x14_c00263{left:667.466667pt;}
.x8c_c00263{left:668.666667pt;}
.x84_c00263{left:669.733333pt;}
.x55_c00263{left:673.733333pt;}
.x6a_c00263{left:674.933333pt;}
.x2d_c00263{left:676.800000pt;}
}





/* 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_c00264 {
    display:none;
  }
  .loading-indicator_c00264.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00264 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_c00264 { 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_c00264" -> "#page-container .classname_c00264")
 */
.pf_c00264 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00264 { /* 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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00264 { /* 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_c00264 { /* 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_c00264 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00264 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00264 {overflow:visible;}
  }
}
.c_c00264 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00264 { /* 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_c00264:after { /* webkit #35443 */
  content: '';
}
.t_c00264:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00264 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 */
}
.__c00264 { /* 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_c00264 { /* info for Javascript */
  display:none;
}
.l_c00264 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00264 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00264 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00264: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_c00264 {
    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_c00264.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00264.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_c00264 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00264{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00264;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.000000;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;}
.m78_c00264{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00264{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00264{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m45_c00264{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m53_c00264{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m79_c00264{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00264{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00264{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m36_c00264{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m75_c00264{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4_c00264{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00264{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m35_c00264{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m47_c00264{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m27_c00264{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c00264{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m26_c00264{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00264{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m69_c00264{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00264{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5_c00264{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m76_c00264{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m62_c00264{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m49_c00264{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00264{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00264{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m67_c00264{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00264{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00264{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00264{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00264{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m44_c00264{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m46_c00264{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00264{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00264{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m40_c00264{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf_c00264{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m29_c00264{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00264{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m71_c00264{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00264{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m21_c00264{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00264{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7_c00264{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m14_c00264{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00264{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00264{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m31_c00264{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00264{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00264{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9_c00264{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m68_c00264{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m70_c00264{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);}
.m3f_c00264{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m61_c00264{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00264{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00264{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m38_c00264{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18_c00264{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22_c00264{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m15_c00264{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00264{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m77_c00264{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00264{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10_c00264{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m57_c00264{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m48_c00264{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m32_c00264{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.md_c00264{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00264{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m24_c00264{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00264{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00264{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.me_c00264{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3_c00264{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6_c00264{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m72_c00264{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m37_c00264{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m16_c00264{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00264{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00264{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m56_c00264{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m41_c00264{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00264{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00264{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m12_c00264{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m34_c00264{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00264{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m52_c00264{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m28_c00264{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m65_c00264{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m39_c00264{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m17_c00264{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m13_c00264{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m33_c00264{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m19_c00264{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00264{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00264{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m23_c00264{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc_c00264{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00264{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00264{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8_c00264{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m59_c00264{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00264{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00264{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m50_c00264{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m63_c00264{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.ma_c00264{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2_c00264{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m0_c00264{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00264{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m60_c00264{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00264{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m42_c00264{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00264{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00264{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m55_c00264{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m73_c00264{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00264{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1_c00264{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m30_c00264{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m74_c00264{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m51_c00264{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00264{vertical-align:0.000000px;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{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__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00264{word-spacing:-4.750000px;}
.ws6_c00264{word-spacing:0.000000px;}
.ws5_c00264{word-spacing:1.285714px;}
.ws3_c00264{word-spacing:1.500000px;}
.ws1_c00264{word-spacing:3.166667px;}
.ws0_c00264{word-spacing:9.256321px;}
.ws4_c00264{word-spacing:11.666667px;}
.fc0_c00264{color:transparent;}
.fs0_c00264{font-size:54.000000px;}
.y0_c00264{bottom:0.000000px;}
.y19_c00264{bottom:541.050000px;}
.y18_c00264{bottom:572.700000px;}
.y17_c00264{bottom:592.200000px;}
.y16_c00264{bottom:612.000000px;}
.y15_c00264{bottom:631.950000px;}
.y14_c00264{bottom:652.050000px;}
.y13_c00264{bottom:671.850000px;}
.y12_c00264{bottom:691.950000px;}
.y11_c00264{bottom:711.750000px;}
.y10_c00264{bottom:731.550000px;}
.yf_c00264{bottom:752.100000px;}
.ye_c00264{bottom:771.900000px;}
.yd_c00264{bottom:792.600000px;}
.yc_c00264{bottom:812.100000px;}
.yb_c00264{bottom:831.900000px;}
.ya_c00264{bottom:852.000000px;}
.y9_c00264{bottom:871.800000px;}
.y8_c00264{bottom:891.600000px;}
.y7_c00264{bottom:911.700000px;}
.y6_c00264{bottom:931.800000px;}
.y5_c00264{bottom:951.900000px;}
.y4_c00264{bottom:971.700000px;}
.y3_c00264{bottom:991.800000px;}
.y2_c00264{bottom:1011.600000px;}
.y1_c00264{bottom:1050.450000px;}
.h2_c00264{height:54.000000px;}
.h0_c00264{height:1166.759949px;}
.h1_c00264{height:1167.000000px;}
.w0_c00264{width:918.720063px;}
.w1_c00264{width:918.750000px;}
.x0_c00264{left:0.000000px;}
.xcc_c00264{left:135.150000px;}
.x3a_c00264{left:136.200000px;}
.x3_c00264{left:137.550000px;}
.x1_c00264{left:138.900000px;}
.x12_c00264{left:157.950000px;}
.xda_c00264{left:163.950000px;}
.x8e_c00264{left:165.300000px;}
.x84_c00264{left:166.650000px;}
.x71_c00264{left:169.650000px;}
.xb0_c00264{left:174.900000px;}
.xc3_c00264{left:178.050000px;}
.x2d_c00264{left:182.850000px;}
.x13_c00264{left:186.000000px;}
.x49_c00264{left:187.950000px;}
.x85_c00264{left:189.750000px;}
.x1f_c00264{left:194.550000px;}
.x7b_c00264{left:195.600000px;}
.x97_c00264{left:196.950000px;}
.x56_c00264{left:199.950000px;}
.x4_c00264{left:202.650000px;}
.x9d_c00264{left:204.450000px;}
.x20_c00264{left:206.100000px;}
.x4a_c00264{left:211.050000px;}
.xb1_c00264{left:217.350000px;}
.x2e_c00264{left:223.950000px;}
.x9e_c00264{left:225.750000px;}
.xc4_c00264{left:229.200000px;}
.xcd_c00264{left:230.250000px;}
.xa8_c00264{left:231.900000px;}
.x21_c00264{left:234.150000px;}
.x86_c00264{left:235.800000px;}
.x8f_c00264{left:237.750000px;}
.x5_c00264{left:242.550000px;}
.x14_c00264{left:245.100000px;}
.x3b_c00264{left:247.800000px;}
.x72_c00264{left:253.200000px;}
.x9f_c00264{left:255.300000px;}
.x7c_c00264{left:256.350000px;}
.xc5_c00264{left:258.750000px;}
.x63_c00264{left:261.450000px;}
.x22_c00264{left:264.450000px;}
.x98_c00264{left:267.150000px;}
.xa9_c00264{left:271.500000px;}
.x3c_c00264{left:274.800000px;}
.xb2_c00264{left:279.300000px;}
.x4b_c00264{left:283.050000px;}
.x23_c00264{left:285.000000px;}
.x6_c00264{left:287.850000px;}
.x73_c00264{left:290.700000px;}
.x57_c00264{left:293.100000px;}
.x7d_c00264{left:297.000000px;}
.x4c_c00264{left:301.350000px;}
.xc6_c00264{left:303.000000px;}
.x15_c00264{left:304.800000px;}
.x90_c00264{left:308.700000px;}
.xce_c00264{left:310.350000px;}
.x7_c00264{left:312.300000px;}
.xaa_c00264{left:313.950000px;}
.xa0_c00264{left:315.000000px;}
.xb7_c00264{left:317.100000px;}
.x74_c00264{left:318.750000px;}
.x64_c00264{left:328.050000px;}
.x24_c00264{left:331.500000px;}
.xd3_c00264{left:332.550000px;}
.xab_c00264{left:334.050000px;}
.x7e_c00264{left:336.300000px;}
.xb8_c00264{left:339.000000px;}
.x3d_c00264{left:340.650000px;}
.xa1_c00264{left:341.700000px;}
.x91_c00264{left:342.900000px;}
.xc7_c00264{left:345.000000px;}
.x65_c00264{left:349.350000px;}
.x58_c00264{left:350.700000px;}
.xac_c00264{left:351.750000px;}
.xcf_c00264{left:353.550000px;}
.xdb_c00264{left:354.750000px;}
.xbc_c00264{left:356.250000px;}
.xb3_c00264{left:357.450000px;}
.x8_c00264{left:359.400000px;}
.x3e_c00264{left:360.450000px;}
.x99_c00264{left:365.850000px;}
.x4d_c00264{left:366.900000px;}
.x2f_c00264{left:369.000000px;}
.x59_c00264{left:370.200000px;}
.x87_c00264{left:372.600000px;}
.x66_c00264{left:376.650000px;}
.x16_c00264{left:387.900000px;}
.x75_c00264{left:388.950000px;}
.x30_c00264{left:390.900000px;}
.xde_c00264{left:394.200000px;}
.xbd_c00264{left:396.150000px;}
.x25_c00264{left:399.600000px;}
.x5a_c00264{left:406.500000px;}
.x88_c00264{left:408.600000px;}
.x4e_c00264{left:409.800000px;}
.xdc_c00264{left:413.850000px;}
.x5b_c00264{left:420.900000px;}
.x3f_c00264{left:423.750000px;}
.x4f_c00264{left:424.950000px;}
.x9_c00264{left:429.300000px;}
.xbe_c00264{left:430.350000px;}
.x92_c00264{left:431.400000px;}
.x17_c00264{left:432.600000px;}
.xc8_c00264{left:435.000000px;}
.x2_c00264{left:436.650000px;}
.x31_c00264{left:438.000000px;}
.x76_c00264{left:446.550000px;}
.x67_c00264{left:448.650000px;}
.xdf_c00264{left:450.000000px;}
.xa2_c00264{left:451.200000px;}
.x7f_c00264{left:452.850000px;}
.x93_c00264{left:457.650000px;}
.xdd_c00264{left:462.450000px;}
.xc9_c00264{left:463.800000px;}
.x26_c00264{left:466.950000px;}
.x32_c00264{left:470.400000px;}
.x18_c00264{left:472.950000px;}
.xd4_c00264{left:475.950000px;}
.xe0_c00264{left:479.850000px;}
.x40_c00264{left:483.150000px;}
.x77_c00264{left:486.150000px;}
.xb4_c00264{left:493.800000px;}
.x80_c00264{left:499.350000px;}
.x27_c00264{left:501.150000px;}
.x68_c00264{left:502.650000px;}
.x78_c00264{left:506.250000px;}
.xb9_c00264{left:507.750000px;}
.x89_c00264{left:509.700000px;}
.xa_c00264{left:512.400000px;}
.x50_c00264{left:513.600000px;}
.xe1_c00264{left:515.550000px;}
.x94_c00264{left:522.150000px;}
.x69_c00264{left:523.950000px;}
.xd0_c00264{left:527.250000px;}
.x41_c00264{left:528.450000px;}
.x28_c00264{left:531.750000px;}
.x33_c00264{left:534.150000px;}
.xb_c00264{left:543.000000px;}
.xb5_c00264{left:544.500000px;}
.x19_c00264{left:549.600000px;}
.xba_c00264{left:550.950000px;}
.x51_c00264{left:553.500000px;}
.x5c_c00264{left:555.600000px;}
.x79_c00264{left:558.450000px;}
.x42_c00264{left:561.600000px;}
.x95_c00264{left:562.800000px;}
.x6a_c00264{left:564.600000px;}
.xd5_c00264{left:567.750000px;}
.xbb_c00264{left:570.450000px;}
.x1a_c00264{left:573.000000px;}
.xad_c00264{left:574.200000px;}
.x6b_c00264{left:575.700000px;}
.x34_c00264{left:579.750000px;}
.x5d_c00264{left:582.300000px;}
.xc_c00264{left:585.150000px;}
.xbf_c00264{left:589.500000px;}
.x7a_c00264{left:593.700000px;}
.x81_c00264{left:595.650000px;}
.xd6_c00264{left:598.350000px;}
.xa3_c00264{left:600.300000px;}
.x8a_c00264{left:601.800000px;}
.x1b_c00264{left:603.900000px;}
.xd_c00264{left:607.050000px;}
.x43_c00264{left:610.200000px;}
.xb6_c00264{left:611.850000px;}
.x52_c00264{left:613.950000px;}
.x5e_c00264{left:616.500000px;}
.x8b_c00264{left:619.800000px;}
.x6c_c00264{left:622.200000px;}
.x96_c00264{left:623.550000px;}
.x35_c00264{left:627.600000px;}
.x44_c00264{left:629.700000px;}
.x29_c00264{left:632.550000px;}
.xc0_c00264{left:634.800000px;}
.x45_c00264{left:646.650000px;}
.x36_c00264{left:647.700000px;}
.xe_c00264{left:649.200000px;}
.x9a_c00264{left:652.500000px;}
.x1c_c00264{left:656.100000px;}
.x53_c00264{left:658.200000px;}
.xae_c00264{left:659.550000px;}
.x6d_c00264{left:661.050000px;}
.x2a_c00264{left:663.150000px;}
.xa4_c00264{left:667.950000px;}
.x5f_c00264{left:670.800000px;}
.xd7_c00264{left:673.200000px;}
.xd1_c00264{left:675.150000px;}
.x9b_c00264{left:676.650000px;}
.x8c_c00264{left:679.500000px;}
.x1d_c00264{left:681.300000px;}
.xf_c00264{left:683.100000px;}
.xca_c00264{left:687.300000px;}
.x37_c00264{left:689.100000px;}
.x6e_c00264{left:696.000000px;}
.x46_c00264{left:697.050000px;}
.x60_c00264{left:699.900000px;}
.x2b_c00264{left:704.550000px;}
.x82_c00264{left:706.200000px;}
.xd2_c00264{left:711.450000px;}
.xa5_c00264{left:716.250000px;}
.x10_c00264{left:721.950000px;}
.x6f_c00264{left:730.500000px;}
.x54_c00264{left:733.500000px;}
.x8d_c00264{left:739.500000px;}
.x47_c00264{left:741.300000px;}
.x70_c00264{left:742.350000px;}
.x61_c00264{left:743.850000px;}
.x38_c00264{left:745.650000px;}
.xa6_c00264{left:746.850000px;}
.xc1_c00264{left:748.050000px;}
.x11_c00264{left:752.550000px;}
.x2c_c00264{left:754.200000px;}
.xd8_c00264{left:755.700000px;}
.xcb_c00264{left:756.900000px;}
.xc2_c00264{left:759.900000px;}
.x83_c00264{left:763.500000px;}
.x39_c00264{left:766.500000px;}
.x62_c00264{left:769.050000px;}
.xaf_c00264{left:771.150000px;}
.x55_c00264{left:772.350000px;}
.x1e_c00264{left:774.900000px;}
.xd9_c00264{left:776.250000px;}
.x48_c00264{left:779.400000px;}
.x9c_c00264{left:788.850000px;}
.xa7_c00264{left:791.550000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws2_c00264{word-spacing:-4.222222pt;}
.ws6_c00264{word-spacing:0.000000pt;}
.ws5_c00264{word-spacing:1.142857pt;}
.ws3_c00264{word-spacing:1.333333pt;}
.ws1_c00264{word-spacing:2.814815pt;}
.ws0_c00264{word-spacing:8.227841pt;}
.ws4_c00264{word-spacing:10.370370pt;}
.fs0_c00264{font-size:48.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y19_c00264{bottom:480.933333pt;}
.y18_c00264{bottom:509.066667pt;}
.y17_c00264{bottom:526.400000pt;}
.y16_c00264{bottom:544.000000pt;}
.y15_c00264{bottom:561.733333pt;}
.y14_c00264{bottom:579.600000pt;}
.y13_c00264{bottom:597.200000pt;}
.y12_c00264{bottom:615.066667pt;}
.y11_c00264{bottom:632.666667pt;}
.y10_c00264{bottom:650.266667pt;}
.yf_c00264{bottom:668.533333pt;}
.ye_c00264{bottom:686.133333pt;}
.yd_c00264{bottom:704.533333pt;}
.yc_c00264{bottom:721.866667pt;}
.yb_c00264{bottom:739.466667pt;}
.ya_c00264{bottom:757.333333pt;}
.y9_c00264{bottom:774.933333pt;}
.y8_c00264{bottom:792.533333pt;}
.y7_c00264{bottom:810.400000pt;}
.y6_c00264{bottom:828.266667pt;}
.y5_c00264{bottom:846.133333pt;}
.y4_c00264{bottom:863.733333pt;}
.y3_c00264{bottom:881.600000pt;}
.y2_c00264{bottom:899.200000pt;}
.y1_c00264{bottom:933.733333pt;}
.h2_c00264{height:48.000000pt;}
.h0_c00264{height:1037.119955pt;}
.h1_c00264{height:1037.333333pt;}
.w0_c00264{width:816.640056pt;}
.w1_c00264{width:816.666667pt;}
.x0_c00264{left:0.000000pt;}
.xcc_c00264{left:120.133333pt;}
.x3a_c00264{left:121.066667pt;}
.x3_c00264{left:122.266667pt;}
.x1_c00264{left:123.466667pt;}
.x12_c00264{left:140.400000pt;}
.xda_c00264{left:145.733333pt;}
.x8e_c00264{left:146.933333pt;}
.x84_c00264{left:148.133333pt;}
.x71_c00264{left:150.800000pt;}
.xb0_c00264{left:155.466667pt;}
.xc3_c00264{left:158.266667pt;}
.x2d_c00264{left:162.533333pt;}
.x13_c00264{left:165.333333pt;}
.x49_c00264{left:167.066667pt;}
.x85_c00264{left:168.666667pt;}
.x1f_c00264{left:172.933333pt;}
.x7b_c00264{left:173.866667pt;}
.x97_c00264{left:175.066667pt;}
.x56_c00264{left:177.733333pt;}
.x4_c00264{left:180.133333pt;}
.x9d_c00264{left:181.733333pt;}
.x20_c00264{left:183.200000pt;}
.x4a_c00264{left:187.600000pt;}
.xb1_c00264{left:193.200000pt;}
.x2e_c00264{left:199.066667pt;}
.x9e_c00264{left:200.666667pt;}
.xc4_c00264{left:203.733333pt;}
.xcd_c00264{left:204.666667pt;}
.xa8_c00264{left:206.133333pt;}
.x21_c00264{left:208.133333pt;}
.x86_c00264{left:209.600000pt;}
.x8f_c00264{left:211.333333pt;}
.x5_c00264{left:215.600000pt;}
.x14_c00264{left:217.866667pt;}
.x3b_c00264{left:220.266667pt;}
.x72_c00264{left:225.066667pt;}
.x9f_c00264{left:226.933333pt;}
.x7c_c00264{left:227.866667pt;}
.xc5_c00264{left:230.000000pt;}
.x63_c00264{left:232.400000pt;}
.x22_c00264{left:235.066667pt;}
.x98_c00264{left:237.466667pt;}
.xa9_c00264{left:241.333333pt;}
.x3c_c00264{left:244.266667pt;}
.xb2_c00264{left:248.266667pt;}
.x4b_c00264{left:251.600000pt;}
.x23_c00264{left:253.333333pt;}
.x6_c00264{left:255.866667pt;}
.x73_c00264{left:258.400000pt;}
.x57_c00264{left:260.533333pt;}
.x7d_c00264{left:264.000000pt;}
.x4c_c00264{left:267.866667pt;}
.xc6_c00264{left:269.333333pt;}
.x15_c00264{left:270.933333pt;}
.x90_c00264{left:274.400000pt;}
.xce_c00264{left:275.866667pt;}
.x7_c00264{left:277.600000pt;}
.xaa_c00264{left:279.066667pt;}
.xa0_c00264{left:280.000000pt;}
.xb7_c00264{left:281.866667pt;}
.x74_c00264{left:283.333333pt;}
.x64_c00264{left:291.600000pt;}
.x24_c00264{left:294.666667pt;}
.xd3_c00264{left:295.600000pt;}
.xab_c00264{left:296.933333pt;}
.x7e_c00264{left:298.933333pt;}
.xb8_c00264{left:301.333333pt;}
.x3d_c00264{left:302.800000pt;}
.xa1_c00264{left:303.733333pt;}
.x91_c00264{left:304.800000pt;}
.xc7_c00264{left:306.666667pt;}
.x65_c00264{left:310.533333pt;}
.x58_c00264{left:311.733333pt;}
.xac_c00264{left:312.666667pt;}
.xcf_c00264{left:314.266667pt;}
.xdb_c00264{left:315.333333pt;}
.xbc_c00264{left:316.666667pt;}
.xb3_c00264{left:317.733333pt;}
.x8_c00264{left:319.466667pt;}
.x3e_c00264{left:320.400000pt;}
.x99_c00264{left:325.200000pt;}
.x4d_c00264{left:326.133333pt;}
.x2f_c00264{left:328.000000pt;}
.x59_c00264{left:329.066667pt;}
.x87_c00264{left:331.200000pt;}
.x66_c00264{left:334.800000pt;}
.x16_c00264{left:344.800000pt;}
.x75_c00264{left:345.733333pt;}
.x30_c00264{left:347.466667pt;}
.xde_c00264{left:350.400000pt;}
.xbd_c00264{left:352.133333pt;}
.x25_c00264{left:355.200000pt;}
.x5a_c00264{left:361.333333pt;}
.x88_c00264{left:363.200000pt;}
.x4e_c00264{left:364.266667pt;}
.xdc_c00264{left:367.866667pt;}
.x5b_c00264{left:374.133333pt;}
.x3f_c00264{left:376.666667pt;}
.x4f_c00264{left:377.733333pt;}
.x9_c00264{left:381.600000pt;}
.xbe_c00264{left:382.533333pt;}
.x92_c00264{left:383.466667pt;}
.x17_c00264{left:384.533333pt;}
.xc8_c00264{left:386.666667pt;}
.x2_c00264{left:388.133333pt;}
.x31_c00264{left:389.333333pt;}
.x76_c00264{left:396.933333pt;}
.x67_c00264{left:398.800000pt;}
.xdf_c00264{left:400.000000pt;}
.xa2_c00264{left:401.066667pt;}
.x7f_c00264{left:402.533333pt;}
.x93_c00264{left:406.800000pt;}
.xdd_c00264{left:411.066667pt;}
.xc9_c00264{left:412.266667pt;}
.x26_c00264{left:415.066667pt;}
.x32_c00264{left:418.133333pt;}
.x18_c00264{left:420.400000pt;}
.xd4_c00264{left:423.066667pt;}
.xe0_c00264{left:426.533333pt;}
.x40_c00264{left:429.466667pt;}
.x77_c00264{left:432.133333pt;}
.xb4_c00264{left:438.933333pt;}
.x80_c00264{left:443.866667pt;}
.x27_c00264{left:445.466667pt;}
.x68_c00264{left:446.800000pt;}
.x78_c00264{left:450.000000pt;}
.xb9_c00264{left:451.333333pt;}
.x89_c00264{left:453.066667pt;}
.xa_c00264{left:455.466667pt;}
.x50_c00264{left:456.533333pt;}
.xe1_c00264{left:458.266667pt;}
.x94_c00264{left:464.133333pt;}
.x69_c00264{left:465.733333pt;}
.xd0_c00264{left:468.666667pt;}
.x41_c00264{left:469.733333pt;}
.x28_c00264{left:472.666667pt;}
.x33_c00264{left:474.800000pt;}
.xb_c00264{left:482.666667pt;}
.xb5_c00264{left:484.000000pt;}
.x19_c00264{left:488.533333pt;}
.xba_c00264{left:489.733333pt;}
.x51_c00264{left:492.000000pt;}
.x5c_c00264{left:493.866667pt;}
.x79_c00264{left:496.400000pt;}
.x42_c00264{left:499.200000pt;}
.x95_c00264{left:500.266667pt;}
.x6a_c00264{left:501.866667pt;}
.xd5_c00264{left:504.666667pt;}
.xbb_c00264{left:507.066667pt;}
.x1a_c00264{left:509.333333pt;}
.xad_c00264{left:510.400000pt;}
.x6b_c00264{left:511.733333pt;}
.x34_c00264{left:515.333333pt;}
.x5d_c00264{left:517.600000pt;}
.xc_c00264{left:520.133333pt;}
.xbf_c00264{left:524.000000pt;}
.x7a_c00264{left:527.733333pt;}
.x81_c00264{left:529.466667pt;}
.xd6_c00264{left:531.866667pt;}
.xa3_c00264{left:533.600000pt;}
.x8a_c00264{left:534.933333pt;}
.x1b_c00264{left:536.800000pt;}
.xd_c00264{left:539.600000pt;}
.x43_c00264{left:542.400000pt;}
.xb6_c00264{left:543.866667pt;}
.x52_c00264{left:545.733333pt;}
.x5e_c00264{left:548.000000pt;}
.x8b_c00264{left:550.933333pt;}
.x6c_c00264{left:553.066667pt;}
.x96_c00264{left:554.266667pt;}
.x35_c00264{left:557.866667pt;}
.x44_c00264{left:559.733333pt;}
.x29_c00264{left:562.266667pt;}
.xc0_c00264{left:564.266667pt;}
.x45_c00264{left:574.800000pt;}
.x36_c00264{left:575.733333pt;}
.xe_c00264{left:577.066667pt;}
.x9a_c00264{left:580.000000pt;}
.x1c_c00264{left:583.200000pt;}
.x53_c00264{left:585.066667pt;}
.xae_c00264{left:586.266667pt;}
.x6d_c00264{left:587.600000pt;}
.x2a_c00264{left:589.466667pt;}
.xa4_c00264{left:593.733333pt;}
.x5f_c00264{left:596.266667pt;}
.xd7_c00264{left:598.400000pt;}
.xd1_c00264{left:600.133333pt;}
.x9b_c00264{left:601.466667pt;}
.x8c_c00264{left:604.000000pt;}
.x1d_c00264{left:605.600000pt;}
.xf_c00264{left:607.200000pt;}
.xca_c00264{left:610.933333pt;}
.x37_c00264{left:612.533333pt;}
.x6e_c00264{left:618.666667pt;}
.x46_c00264{left:619.600000pt;}
.x60_c00264{left:622.133333pt;}
.x2b_c00264{left:626.266667pt;}
.x82_c00264{left:627.733333pt;}
.xd2_c00264{left:632.400000pt;}
.xa5_c00264{left:636.666667pt;}
.x10_c00264{left:641.733333pt;}
.x6f_c00264{left:649.333333pt;}
.x54_c00264{left:652.000000pt;}
.x8d_c00264{left:657.333333pt;}
.x47_c00264{left:658.933333pt;}
.x70_c00264{left:659.866667pt;}
.x61_c00264{left:661.200000pt;}
.x38_c00264{left:662.800000pt;}
.xa6_c00264{left:663.866667pt;}
.xc1_c00264{left:664.933333pt;}
.x11_c00264{left:668.933333pt;}
.x2c_c00264{left:670.400000pt;}
.xd8_c00264{left:671.733333pt;}
.xcb_c00264{left:672.800000pt;}
.xc2_c00264{left:675.466667pt;}
.x83_c00264{left:678.666667pt;}
.x39_c00264{left:681.333333pt;}
.x62_c00264{left:683.600000pt;}
.xaf_c00264{left:685.466667pt;}
.x55_c00264{left:686.533333pt;}
.x1e_c00264{left:688.800000pt;}
.xd9_c00264{left:690.000000pt;}
.x48_c00264{left:692.800000pt;}
.x9c_c00264{left:701.200000pt;}
.xa7_c00264{left:703.600000pt;}
}





/* 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_c00265 {
    display:none;
  }
  .loading-indicator_c00265.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00265 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_c00265 { 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_c00265" -> "#page-container .classname_c00265")
 */
.pf_c00265 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00265 { /* 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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00265 { /* 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_c00265 { /* 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_c00265 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00265 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00265 {overflow:visible;}
  }
}
.c_c00265 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00265 { /* 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_c00265:after { /* webkit #35443 */
  content: '';
}
.t_c00265:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00265 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 */
}
.__c00265 { /* 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_c00265 { /* info for Javascript */
  display:none;
}
.l_c00265 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00265 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00265 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00265: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_c00265 {
    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_c00265.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00265.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_c00265 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00265{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00265;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.000000;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;}
.m3d_c00265{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00265{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m30_c00265{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m34_c00265{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00265{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m56_c00265{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00265{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00265{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mc_c00265{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m19_c00265{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m10_c00265{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00265{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m85_c00265{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00265{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m31_c00265{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00265{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00265{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00265{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m86_c00265{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m22_c00265{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m79_c00265{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m48_c00265{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m58_c00265{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00265{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m17_c00265{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m49_c00265{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m20_c00265{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m73_c00265{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m42_c00265{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00265{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00265{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m61_c00265{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m75_c00265{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00265{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00265{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m54_c00265{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m26_c00265{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m27_c00265{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00265{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00265{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00265{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m44_c00265{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00265{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m36_c00265{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m53_c00265{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m65_c00265{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00265{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00265{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf_c00265{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m21_c00265{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00265{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00265{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m13_c00265{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m38_c00265{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00265{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00265{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m74_c00265{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m57_c00265{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00265{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m35_c00265{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00265{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m14_c00265{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m68_c00265{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m40_c00265{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m55_c00265{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m63_c00265{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29_c00265{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00265{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.md_c00265{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m16_c00265{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m12_c00265{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);}
.m45_c00265{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb_c00265{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00265{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m83_c00265{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00265{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00265{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m62_c00265{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m84_c00265{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma_c00265{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9_c00265{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00265{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00265{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m37_c00265{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m33_c00265{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00265{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m81_c00265{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m69_c00265{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m15_c00265{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m67_c00265{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00265{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00265{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00265{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m41_c00265{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m23_c00265{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m39_c00265{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m82_c00265{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m32_c00265{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00265{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00265{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m70_c00265{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m60_c00265{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m64_c00265{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00265{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00265{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00265{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00265{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m25_c00265{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m52_c00265{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m71_c00265{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m89_c00265{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m47_c00265{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00265{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00265{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m80_c00265{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m11_c00265{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m76_c00265{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00265{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m18_c00265{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00265{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00265{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m66_c00265{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m78_c00265{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m88_c00265{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00265{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m77_c00265{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00265{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m87_c00265{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m46_c00265{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m50_c00265{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m28_c00265{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m72_c00265{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m51_c00265{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00265{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m2_c00265{transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356750,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375750,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00265{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.v0_c00265{vertical-align:0.000000px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{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__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00265{word-spacing:-4.886948px;}
.ws5_c00265{word-spacing:0.000000px;}
.ws2_c00265{word-spacing:0.088845px;}
.ws3_c00265{word-spacing:0.250000px;}
.ws0_c00265{word-spacing:2.750000px;}
.ws4_c00265{word-spacing:6.214286px;}
._1_c00265{width:33.125000px;}
._0_c00265{width:45.250000px;}
.fc0_c00265{color:transparent;}
.fs1_c00265{font-size:42.000000px;}
.fs0_c00265{font-size:54.000000px;}
.y0_c00265{bottom:0.000000px;}
.y24_c00265{bottom:147.600000px;}
.y23_c00265{bottom:175.050000px;}
.y22_c00265{bottom:194.850000px;}
.y21_c00265{bottom:214.950000px;}
.y20_c00265{bottom:234.750000px;}
.y1f_c00265{bottom:254.850000px;}
.y1e_c00265{bottom:274.350000px;}
.y1d_c00265{bottom:294.150000px;}
.y1c_c00265{bottom:314.250000px;}
.y1b_c00265{bottom:333.750000px;}
.y1a_c00265{bottom:353.850000px;}
.y19_c00265{bottom:373.350000px;}
.y18_c00265{bottom:393.450000px;}
.y17_c00265{bottom:412.950000px;}
.y16_c00265{bottom:433.050000px;}
.y15_c00265{bottom:452.850000px;}
.y14_c00265{bottom:472.350000px;}
.y13_c00265{bottom:492.900000px;}
.y12_c00265{bottom:512.700000px;}
.y11_c00265{bottom:532.500000px;}
.y10_c00265{bottom:552.300000px;}
.yf_c00265{bottom:572.100000px;}
.ye_c00265{bottom:592.200000px;}
.yd_c00265{bottom:612.000000px;}
.yc_c00265{bottom:631.500000px;}
.yb_c00265{bottom:651.600000px;}
.ya_c00265{bottom:671.400000px;}
.y9_c00265{bottom:691.350000px;}
.y8_c00265{bottom:711.150000px;}
.y7_c00265{bottom:730.950000px;}
.y6_c00265{bottom:751.050000px;}
.y5_c00265{bottom:771.150000px;}
.y4_c00265{bottom:790.950000px;}
.y3_c00265{bottom:824.400000px;}
.y2_c00265{bottom:857.100000px;}
.y1_c00265{bottom:1041.900000px;}
.h3_c00265{height:42.000000px;}
.h2_c00265{height:54.000000px;}
.h0_c00265{height:1166.759949px;}
.h1_c00265{height:1167.000000px;}
.w0_c00265{width:918.720063px;}
.w1_c00265{width:918.750000px;}
.x0_c00265{left:0.000000px;}
.x10d_c00265{left:104.550000px;}
.xf6_c00265{left:105.750000px;}
.x3d_c00265{left:106.800000px;}
.xa_c00265{left:108.000000px;}
.xb2_c00265{left:126.450000px;}
.xa2_c00265{left:129.150000px;}
.x6f_c00265{left:133.950000px;}
.x16_c00265{left:135.150000px;}
.x4f_c00265{left:136.950000px;}
.x31_c00265{left:138.750000px;}
.x10e_c00265{left:140.550000px;}
.x7d_c00265{left:143.100000px;}
.xbc_c00265{left:145.950000px;}
.xa3_c00265{left:147.150000px;}
.x70_c00265{left:150.900000px;}
.xc6_c00265{left:153.150000px;}
.x109_c00265{left:154.350000px;}
.x98_c00265{left:155.400000px;}
.x50_c00265{left:156.750000px;}
.x23_c00265{left:157.800000px;}
.x32_c00265{left:159.300000px;}
.x3e_c00265{left:160.500000px;}
.x8d_c00265{left:162.150000px;}
.x64_c00265{left:165.150000px;}
.xf7_c00265{left:168.450000px;}
.x5a_c00265{left:172.500000px;}
.x51_c00265{left:174.750000px;}
.x17_c00265{left:178.650000px;}
.xb6_c00265{left:181.500000px;}
.x71_c00265{left:183.000000px;}
.xb5_c00265{left:185.250000px;}
.xa4_c00265{left:188.550000px;}
.x100_c00265{left:190.650000px;}
.x7e_c00265{left:193.500000px;}
.x52_c00265{left:194.850000px;}
.x3f_c00265{left:196.200000px;}
.x33_c00265{left:198.600000px;}
.x4_c00265{left:200.100000px;}
.x87_c00265{left:202.800000px;}
.xbd_c00265{left:204.300000px;}
.x24_c00265{left:205.350000px;}
.x18_c00265{left:209.550000px;}
.xb7_c00265{left:210.600000px;}
.x53_c00265{left:212.550000px;}
.x65_c00265{left:215.850000px;}
.x5b_c00265{left:217.200000px;}
.xf1_c00265{left:219.150000px;}
.xe3_c00265{left:220.500000px;}
.x7f_c00265{left:222.000000px;}
.xbe_c00265{left:224.400000px;}
.x88_c00265{left:225.900000px;}
.x101_c00265{left:227.400000px;}
.xea_c00265{left:229.200000px;}
.xb_c00265{left:232.500000px;}
.x25_c00265{left:234.150000px;}
.x72_c00265{left:235.200000px;}
.x40_c00265{left:238.350000px;}
.xc7_c00265{left:241.050000px;}
.xa5_c00265{left:242.250000px;}
.xdd_c00265{left:243.900000px;}
.xd6_c00265{left:245.250000px;}
.x8e_c00265{left:251.850000px;}
.x54_c00265{left:252.900000px;}
.xf2_c00265{left:255.900000px;}
.xb3_c00265{left:257.100000px;}
.x112_c00265{left:258.750000px;}
.x106_c00265{left:260.400000px;}
.x41_c00265{left:266.400000px;}
.xf3_c00265{left:267.450000px;}
.xae_c00265{left:268.950000px;}
.xc_c00265{left:271.800000px;}
.x66_c00265{left:273.150000px;}
.x102_c00265{left:274.200000px;}
.x10f_c00265{left:276.300000px;}
.x73_c00265{left:277.350000px;}
.x80_c00265{left:281.400000px;}
.x5_c00265{left:284.400000px;}
.xf8_c00265{left:288.300000px;}
.xd7_c00265{left:289.500000px;}
.xbf_c00265{left:290.700000px;}
.x81_c00265{left:293.250000px;}
.xcf_c00265{left:295.350000px;}
.x55_c00265{left:297.150000px;}
.x42_c00265{left:299.850000px;}
.x19_c00265{left:301.050000px;}
.x6_c00265{left:302.100000px;}
.x74_c00265{left:305.850000px;}
.xde_c00265{left:307.650000px;}
.xf9_c00265{left:308.850000px;}
.xc0_c00265{left:313.800000px;}
.x26_c00265{left:315.150000px;}
.x10a_c00265{left:316.950000px;}
.xc8_c00265{left:318.000000px;}
.xd_c00265{left:320.700000px;}
.x8f_c00265{left:323.550000px;}
.x89_c00265{left:325.650000px;}
.xdf_c00265{left:326.700000px;}
.x82_c00265{left:328.500000px;}
.x67_c00265{left:330.000000px;}
.x107_c00265{left:331.950000px;}
.x56_c00265{left:334.950000px;}
.x99_c00265{left:337.650000px;}
.xe_c00265{left:339.750000px;}
.x27_c00265{left:341.850000px;}
.x43_c00265{left:344.550000px;}
.xc9_c00265{left:346.500000px;}
.x34_c00265{left:347.550000px;}
.x5c_c00265{left:354.900000px;}
.x90_c00265{left:357.000000px;}
.x8a_c00265{left:358.050000px;}
.xa6_c00265{left:360.000000px;}
.xe4_c00265{left:363.450000px;}
.x44_c00265{left:364.650000px;}
.x68_c00265{left:366.300000px;}
.xf_c00265{left:368.550000px;}
.xe8_c00265{left:369.750000px;}
.xd0_c00265{left:374.100000px;}
.x9a_c00265{left:375.450000px;}
.x2_c00265{left:376.950000px;}
.xe0_c00265{left:379.950000px;}
.xeb_c00265{left:384.300000px;}
.x28_c00265{left:385.350000px;}
.x83_c00265{left:387.600000px;}
.x1a_c00265{left:391.350000px;}
.xc1_c00265{left:393.750000px;}
.x45_c00265{left:395.250000px;}
.x35_c00265{left:396.900000px;}
.xaf_c00265{left:398.250000px;}
.xec_c00265{left:402.600000px;}
.x69_c00265{left:404.100000px;}
.x57_c00265{left:406.200000px;}
.xd8_c00265{left:408.750000px;}
.xca_c00265{left:414.450000px;}
.xb4_c00265{left:417.600000px;}
.xd1_c00265{left:419.100000px;}
.x7_c00265{left:420.150000px;}
.x75_c00265{left:421.350000px;}
.x9b_c00265{left:427.950000px;}
.x1_c00265{left:429.900000px;}
.x36_c00265{left:431.400000px;}
.x58_c00265{left:433.950000px;}
.x5d_c00265{left:435.150000px;}
.xa7_c00265{left:437.700000px;}
.x29_c00265{left:439.350000px;}
.xcb_c00265{left:440.700000px;}
.x113_c00265{left:442.350000px;}
.x46_c00265{left:443.850000px;}
.x91_c00265{left:445.950000px;}
.xb8_c00265{left:447.150000px;}
.x10_c00265{left:448.800000px;}
.x59_c00265{left:453.450000px;}
.x6a_c00265{left:458.100000px;}
.x37_c00265{left:460.200000px;}
.x3_c00265{left:462.600000px;}
.x10b_c00265{left:465.150000px;}
.xb9_c00265{left:466.650000px;}
.x2a_c00265{left:467.850000px;}
.x5e_c00265{left:469.050000px;}
.x1b_c00265{left:470.250000px;}
.x76_c00265{left:472.050000px;}
.x110_c00265{left:474.900000px;}
.x9c_c00265{left:482.700000px;}
.x92_c00265{left:483.750000px;}
.xa8_c00265{left:486.300000px;}
.x11_c00265{left:487.650000px;}
.x1c_c00265{left:490.350000px;}
.x47_c00265{left:494.550000px;}
.x5f_c00265{left:497.100000px;}
.x84_c00265{left:499.200000px;}
.x77_c00265{left:502.950000px;}
.x2b_c00265{left:507.150000px;}
.xd2_c00265{left:509.850000px;}
.x12_c00265{left:511.800000px;}
.xa9_c00265{left:514.350000px;}
.x1d_c00265{left:517.350000px;}
.x9d_c00265{left:520.200000px;}
.xfa_c00265{left:521.700000px;}
.x8_c00265{left:523.800000px;}
.xd3_c00265{left:529.650000px;}
.x103_c00265{left:532.200000px;}
.xc2_c00265{left:533.400000px;}
.x93_c00265{left:538.050000px;}
.xba_c00265{left:539.400000px;}
.x48_c00265{left:541.050000px;}
.xfb_c00265{left:542.250000px;}
.x13_c00265{left:543.450000px;}
.xe5_c00265{left:544.650000px;}
.x114_c00265{left:546.300000px;}
.x2c_c00265{left:547.500000px;}
.x8b_c00265{left:549.900000px;}
.x60_c00265{left:554.400000px;}
.x78_c00265{left:558.750000px;}
.x111_c00265{left:560.550000px;}
.x38_c00265{left:564.900000px;}
.xaa_c00265{left:567.300000px;}
.x49_c00265{left:568.350000px;}
.x94_c00265{left:569.700000px;}
.xd9_c00265{left:571.500000px;}
.x85_c00265{left:576.150000px;}
.xe6_c00265{left:581.400000px;}
.xf4_c00265{left:583.500000px;}
.xab_c00265{left:584.550000px;}
.x1e_c00265{left:588.300000px;}
.xfc_c00265{left:591.900000px;}
.x39_c00265{left:592.950000px;}
.x2d_c00265{left:595.800000px;}
.x95_c00265{left:597.450000px;}
.xed_c00265{left:598.500000px;}
.x115_c00265{left:600.900000px;}
.x14_c00265{left:602.850000px;}
.xda_c00265{left:606.750000px;}
.x1f_c00265{left:607.800000px;}
.xb0_c00265{left:609.600000px;}
.x4a_c00265{left:611.550000px;}
.x2e_c00265{left:613.050000px;}
.x104_c00265{left:614.700000px;}
.xe7_c00265{left:615.900000px;}
.x61_c00265{left:621.300000px;}
.xfd_c00265{left:623.250000px;}
.x79_c00265{left:624.300000px;}
.x9e_c00265{left:626.850000px;}
.xcc_c00265{left:628.950000px;}
.x4b_c00265{left:631.350000px;}
.xc3_c00265{left:633.750000px;}
.x20_c00265{left:636.300000px;}
.x9_c00265{left:638.250000px;}
.xe1_c00265{left:640.500000px;}
.xdb_c00265{left:641.700000px;}
.x3a_c00265{left:644.400000px;}
.x9f_c00265{left:645.900000px;}
.xee_c00265{left:648.150000px;}
.x4c_c00265{left:650.400000px;}
.xe9_c00265{left:653.700000px;}
.xfe_c00265{left:659.250000px;}
.xcd_c00265{left:661.350000px;}
.x116_c00265{left:663.900000px;}
.x2f_c00265{left:666.300000px;}
.xac_c00265{left:671.400000px;}
.xa0_c00265{left:673.200000px;}
.x62_c00265{left:676.350000px;}
.xbb_c00265{left:679.800000px;}
.x6b_c00265{left:681.000000px;}
.x4d_c00265{left:682.050000px;}
.x7a_c00265{left:687.750000px;}
.xc4_c00265{left:689.550000px;}
.xb1_c00265{left:690.600000px;}
.x30_c00265{left:691.800000px;}
.x21_c00265{left:692.850000px;}
.x6c_c00265{left:698.700000px;}
.xce_c00265{left:700.950000px;}
.x3b_c00265{left:702.300000px;}
.xdc_c00265{left:704.700000px;}
.x8c_c00265{left:706.200000px;}
.xd4_c00265{left:707.850000px;}
.x86_c00265{left:708.900000px;}
.xff_c00265{left:710.700000px;}
.x96_c00265{left:711.900000px;}
.x7b_c00265{left:716.250000px;}
.xad_c00265{left:717.900000px;}
.x108_c00265{left:719.850000px;}
.x4e_c00265{left:720.900000px;}
.xef_c00265{left:722.700000px;}
.x6d_c00265{left:724.650000px;}
.xa1_c00265{left:725.700000px;}
.xf5_c00265{left:728.850000px;}
.xc5_c00265{left:729.900000px;}
.xd5_c00265{left:732.000000px;}
.x105_c00265{left:734.550000px;}
.x97_c00265{left:736.800000px;}
.xf0_c00265{left:738.900000px;}
.x22_c00265{left:740.400000px;}
.xe2_c00265{left:743.550000px;}
.x15_c00265{left:746.100000px;}
.x63_c00265{left:749.850000px;}
.x3c_c00265{left:750.900000px;}
.x7c_c00265{left:757.950000px;}
.x10c_c00265{left:768.450000px;}
.x6e_c00265{left:771.150000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws1_c00265{word-spacing:-4.343953pt;}
.ws5_c00265{word-spacing:0.000000pt;}
.ws2_c00265{word-spacing:0.078973pt;}
.ws3_c00265{word-spacing:0.222222pt;}
.ws0_c00265{word-spacing:2.444444pt;}
.ws4_c00265{word-spacing:5.523810pt;}
._1_c00265{width:29.444444pt;}
._0_c00265{width:40.222222pt;}
.fs1_c00265{font-size:37.333333pt;}
.fs0_c00265{font-size:48.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y24_c00265{bottom:131.200000pt;}
.y23_c00265{bottom:155.600000pt;}
.y22_c00265{bottom:173.200000pt;}
.y21_c00265{bottom:191.066667pt;}
.y20_c00265{bottom:208.666667pt;}
.y1f_c00265{bottom:226.533333pt;}
.y1e_c00265{bottom:243.866667pt;}
.y1d_c00265{bottom:261.466667pt;}
.y1c_c00265{bottom:279.333333pt;}
.y1b_c00265{bottom:296.666667pt;}
.y1a_c00265{bottom:314.533333pt;}
.y19_c00265{bottom:331.866667pt;}
.y18_c00265{bottom:349.733333pt;}
.y17_c00265{bottom:367.066667pt;}
.y16_c00265{bottom:384.933333pt;}
.y15_c00265{bottom:402.533333pt;}
.y14_c00265{bottom:419.866667pt;}
.y13_c00265{bottom:438.133333pt;}
.y12_c00265{bottom:455.733333pt;}
.y11_c00265{bottom:473.333333pt;}
.y10_c00265{bottom:490.933333pt;}
.yf_c00265{bottom:508.533333pt;}
.ye_c00265{bottom:526.400000pt;}
.yd_c00265{bottom:544.000000pt;}
.yc_c00265{bottom:561.333333pt;}
.yb_c00265{bottom:579.200000pt;}
.ya_c00265{bottom:596.800000pt;}
.y9_c00265{bottom:614.533333pt;}
.y8_c00265{bottom:632.133333pt;}
.y7_c00265{bottom:649.733333pt;}
.y6_c00265{bottom:667.600000pt;}
.y5_c00265{bottom:685.466667pt;}
.y4_c00265{bottom:703.066667pt;}
.y3_c00265{bottom:732.800000pt;}
.y2_c00265{bottom:761.866667pt;}
.y1_c00265{bottom:926.133333pt;}
.h3_c00265{height:37.333333pt;}
.h2_c00265{height:48.000000pt;}
.h0_c00265{height:1037.119955pt;}
.h1_c00265{height:1037.333333pt;}
.w0_c00265{width:816.640056pt;}
.w1_c00265{width:816.666667pt;}
.x0_c00265{left:0.000000pt;}
.x10d_c00265{left:92.933333pt;}
.xf6_c00265{left:94.000000pt;}
.x3d_c00265{left:94.933333pt;}
.xa_c00265{left:96.000000pt;}
.xb2_c00265{left:112.400000pt;}
.xa2_c00265{left:114.800000pt;}
.x6f_c00265{left:119.066667pt;}
.x16_c00265{left:120.133333pt;}
.x4f_c00265{left:121.733333pt;}
.x31_c00265{left:123.333333pt;}
.x10e_c00265{left:124.933333pt;}
.x7d_c00265{left:127.200000pt;}
.xbc_c00265{left:129.733333pt;}
.xa3_c00265{left:130.800000pt;}
.x70_c00265{left:134.133333pt;}
.xc6_c00265{left:136.133333pt;}
.x109_c00265{left:137.200000pt;}
.x98_c00265{left:138.133333pt;}
.x50_c00265{left:139.333333pt;}
.x23_c00265{left:140.266667pt;}
.x32_c00265{left:141.600000pt;}
.x3e_c00265{left:142.666667pt;}
.x8d_c00265{left:144.133333pt;}
.x64_c00265{left:146.800000pt;}
.xf7_c00265{left:149.733333pt;}
.x5a_c00265{left:153.333333pt;}
.x51_c00265{left:155.333333pt;}
.x17_c00265{left:158.800000pt;}
.xb6_c00265{left:161.333333pt;}
.x71_c00265{left:162.666667pt;}
.xb5_c00265{left:164.666667pt;}
.xa4_c00265{left:167.600000pt;}
.x100_c00265{left:169.466667pt;}
.x7e_c00265{left:172.000000pt;}
.x52_c00265{left:173.200000pt;}
.x3f_c00265{left:174.400000pt;}
.x33_c00265{left:176.533333pt;}
.x4_c00265{left:177.866667pt;}
.x87_c00265{left:180.266667pt;}
.xbd_c00265{left:181.600000pt;}
.x24_c00265{left:182.533333pt;}
.x18_c00265{left:186.266667pt;}
.xb7_c00265{left:187.200000pt;}
.x53_c00265{left:188.933333pt;}
.x65_c00265{left:191.866667pt;}
.x5b_c00265{left:193.066667pt;}
.xf1_c00265{left:194.800000pt;}
.xe3_c00265{left:196.000000pt;}
.x7f_c00265{left:197.333333pt;}
.xbe_c00265{left:199.466667pt;}
.x88_c00265{left:200.800000pt;}
.x101_c00265{left:202.133333pt;}
.xea_c00265{left:203.733333pt;}
.xb_c00265{left:206.666667pt;}
.x25_c00265{left:208.133333pt;}
.x72_c00265{left:209.066667pt;}
.x40_c00265{left:211.866667pt;}
.xc7_c00265{left:214.266667pt;}
.xa5_c00265{left:215.333333pt;}
.xdd_c00265{left:216.800000pt;}
.xd6_c00265{left:218.000000pt;}
.x8e_c00265{left:223.866667pt;}
.x54_c00265{left:224.800000pt;}
.xf2_c00265{left:227.466667pt;}
.xb3_c00265{left:228.533333pt;}
.x112_c00265{left:230.000000pt;}
.x106_c00265{left:231.466667pt;}
.x41_c00265{left:236.800000pt;}
.xf3_c00265{left:237.733333pt;}
.xae_c00265{left:239.066667pt;}
.xc_c00265{left:241.600000pt;}
.x66_c00265{left:242.800000pt;}
.x102_c00265{left:243.733333pt;}
.x10f_c00265{left:245.600000pt;}
.x73_c00265{left:246.533333pt;}
.x80_c00265{left:250.133333pt;}
.x5_c00265{left:252.800000pt;}
.xf8_c00265{left:256.266667pt;}
.xd7_c00265{left:257.333333pt;}
.xbf_c00265{left:258.400000pt;}
.x81_c00265{left:260.666667pt;}
.xcf_c00265{left:262.533333pt;}
.x55_c00265{left:264.133333pt;}
.x42_c00265{left:266.533333pt;}
.x19_c00265{left:267.600000pt;}
.x6_c00265{left:268.533333pt;}
.x74_c00265{left:271.866667pt;}
.xde_c00265{left:273.466667pt;}
.xf9_c00265{left:274.533333pt;}
.xc0_c00265{left:278.933333pt;}
.x26_c00265{left:280.133333pt;}
.x10a_c00265{left:281.733333pt;}
.xc8_c00265{left:282.666667pt;}
.xd_c00265{left:285.066667pt;}
.x8f_c00265{left:287.600000pt;}
.x89_c00265{left:289.466667pt;}
.xdf_c00265{left:290.400000pt;}
.x82_c00265{left:292.000000pt;}
.x67_c00265{left:293.333333pt;}
.x107_c00265{left:295.066667pt;}
.x56_c00265{left:297.733333pt;}
.x99_c00265{left:300.133333pt;}
.xe_c00265{left:302.000000pt;}
.x27_c00265{left:303.866667pt;}
.x43_c00265{left:306.266667pt;}
.xc9_c00265{left:308.000000pt;}
.x34_c00265{left:308.933333pt;}
.x5c_c00265{left:315.466667pt;}
.x90_c00265{left:317.333333pt;}
.x8a_c00265{left:318.266667pt;}
.xa6_c00265{left:320.000000pt;}
.xe4_c00265{left:323.066667pt;}
.x44_c00265{left:324.133333pt;}
.x68_c00265{left:325.600000pt;}
.xf_c00265{left:327.600000pt;}
.xe8_c00265{left:328.666667pt;}
.xd0_c00265{left:332.533333pt;}
.x9a_c00265{left:333.733333pt;}
.x2_c00265{left:335.066667pt;}
.xe0_c00265{left:337.733333pt;}
.xeb_c00265{left:341.600000pt;}
.x28_c00265{left:342.533333pt;}
.x83_c00265{left:344.533333pt;}
.x1a_c00265{left:347.866667pt;}
.xc1_c00265{left:350.000000pt;}
.x45_c00265{left:351.333333pt;}
.x35_c00265{left:352.800000pt;}
.xaf_c00265{left:354.000000pt;}
.xec_c00265{left:357.866667pt;}
.x69_c00265{left:359.200000pt;}
.x57_c00265{left:361.066667pt;}
.xd8_c00265{left:363.333333pt;}
.xca_c00265{left:368.400000pt;}
.xb4_c00265{left:371.200000pt;}
.xd1_c00265{left:372.533333pt;}
.x7_c00265{left:373.466667pt;}
.x75_c00265{left:374.533333pt;}
.x9b_c00265{left:380.400000pt;}
.x1_c00265{left:382.133333pt;}
.x36_c00265{left:383.466667pt;}
.x58_c00265{left:385.733333pt;}
.x5d_c00265{left:386.800000pt;}
.xa7_c00265{left:389.066667pt;}
.x29_c00265{left:390.533333pt;}
.xcb_c00265{left:391.733333pt;}
.x113_c00265{left:393.200000pt;}
.x46_c00265{left:394.533333pt;}
.x91_c00265{left:396.400000pt;}
.xb8_c00265{left:397.466667pt;}
.x10_c00265{left:398.933333pt;}
.x59_c00265{left:403.066667pt;}
.x6a_c00265{left:407.200000pt;}
.x37_c00265{left:409.066667pt;}
.x3_c00265{left:411.200000pt;}
.x10b_c00265{left:413.466667pt;}
.xb9_c00265{left:414.800000pt;}
.x2a_c00265{left:415.866667pt;}
.x5e_c00265{left:416.933333pt;}
.x1b_c00265{left:418.000000pt;}
.x76_c00265{left:419.600000pt;}
.x110_c00265{left:422.133333pt;}
.x9c_c00265{left:429.066667pt;}
.x92_c00265{left:430.000000pt;}
.xa8_c00265{left:432.266667pt;}
.x11_c00265{left:433.466667pt;}
.x1c_c00265{left:435.866667pt;}
.x47_c00265{left:439.600000pt;}
.x5f_c00265{left:441.866667pt;}
.x84_c00265{left:443.733333pt;}
.x77_c00265{left:447.066667pt;}
.x2b_c00265{left:450.800000pt;}
.xd2_c00265{left:453.200000pt;}
.x12_c00265{left:454.933333pt;}
.xa9_c00265{left:457.200000pt;}
.x1d_c00265{left:459.866667pt;}
.x9d_c00265{left:462.400000pt;}
.xfa_c00265{left:463.733333pt;}
.x8_c00265{left:465.600000pt;}
.xd3_c00265{left:470.800000pt;}
.x103_c00265{left:473.066667pt;}
.xc2_c00265{left:474.133333pt;}
.x93_c00265{left:478.266667pt;}
.xba_c00265{left:479.466667pt;}
.x48_c00265{left:480.933333pt;}
.xfb_c00265{left:482.000000pt;}
.x13_c00265{left:483.066667pt;}
.xe5_c00265{left:484.133333pt;}
.x114_c00265{left:485.600000pt;}
.x2c_c00265{left:486.666667pt;}
.x8b_c00265{left:488.800000pt;}
.x60_c00265{left:492.800000pt;}
.x78_c00265{left:496.666667pt;}
.x111_c00265{left:498.266667pt;}
.x38_c00265{left:502.133333pt;}
.xaa_c00265{left:504.266667pt;}
.x49_c00265{left:505.200000pt;}
.x94_c00265{left:506.400000pt;}
.xd9_c00265{left:508.000000pt;}
.x85_c00265{left:512.133333pt;}
.xe6_c00265{left:516.800000pt;}
.xf4_c00265{left:518.666667pt;}
.xab_c00265{left:519.600000pt;}
.x1e_c00265{left:522.933333pt;}
.xfc_c00265{left:526.133333pt;}
.x39_c00265{left:527.066667pt;}
.x2d_c00265{left:529.600000pt;}
.x95_c00265{left:531.066667pt;}
.xed_c00265{left:532.000000pt;}
.x115_c00265{left:534.133333pt;}
.x14_c00265{left:535.866667pt;}
.xda_c00265{left:539.333333pt;}
.x1f_c00265{left:540.266667pt;}
.xb0_c00265{left:541.866667pt;}
.x4a_c00265{left:543.600000pt;}
.x2e_c00265{left:544.933333pt;}
.x104_c00265{left:546.400000pt;}
.xe7_c00265{left:547.466667pt;}
.x61_c00265{left:552.266667pt;}
.xfd_c00265{left:554.000000pt;}
.x79_c00265{left:554.933333pt;}
.x9e_c00265{left:557.200000pt;}
.xcc_c00265{left:559.066667pt;}
.x4b_c00265{left:561.200000pt;}
.xc3_c00265{left:563.333333pt;}
.x20_c00265{left:565.600000pt;}
.x9_c00265{left:567.333333pt;}
.xe1_c00265{left:569.333333pt;}
.xdb_c00265{left:570.400000pt;}
.x3a_c00265{left:572.800000pt;}
.x9f_c00265{left:574.133333pt;}
.xee_c00265{left:576.133333pt;}
.x4c_c00265{left:578.133333pt;}
.xe9_c00265{left:581.066667pt;}
.xfe_c00265{left:586.000000pt;}
.xcd_c00265{left:587.866667pt;}
.x116_c00265{left:590.133333pt;}
.x2f_c00265{left:592.266667pt;}
.xac_c00265{left:596.800000pt;}
.xa0_c00265{left:598.400000pt;}
.x62_c00265{left:601.200000pt;}
.xbb_c00265{left:604.266667pt;}
.x6b_c00265{left:605.333333pt;}
.x4d_c00265{left:606.266667pt;}
.x7a_c00265{left:611.333333pt;}
.xc4_c00265{left:612.933333pt;}
.xb1_c00265{left:613.866667pt;}
.x30_c00265{left:614.933333pt;}
.x21_c00265{left:615.866667pt;}
.x6c_c00265{left:621.066667pt;}
.xce_c00265{left:623.066667pt;}
.x3b_c00265{left:624.266667pt;}
.xdc_c00265{left:626.400000pt;}
.x8c_c00265{left:627.733333pt;}
.xd4_c00265{left:629.200000pt;}
.x86_c00265{left:630.133333pt;}
.xff_c00265{left:631.733333pt;}
.x96_c00265{left:632.800000pt;}
.x7b_c00265{left:636.666667pt;}
.xad_c00265{left:638.133333pt;}
.x108_c00265{left:639.866667pt;}
.x4e_c00265{left:640.800000pt;}
.xef_c00265{left:642.400000pt;}
.x6d_c00265{left:644.133333pt;}
.xa1_c00265{left:645.066667pt;}
.xf5_c00265{left:647.866667pt;}
.xc5_c00265{left:648.800000pt;}
.xd5_c00265{left:650.666667pt;}
.x105_c00265{left:652.933333pt;}
.x97_c00265{left:654.933333pt;}
.xf0_c00265{left:656.800000pt;}
.x22_c00265{left:658.133333pt;}
.xe2_c00265{left:660.933333pt;}
.x15_c00265{left:663.200000pt;}
.x63_c00265{left:666.533333pt;}
.x3c_c00265{left:667.466667pt;}
.x7c_c00265{left:673.733333pt;}
.x10c_c00265{left:683.066667pt;}
.x6e_c00265{left:685.466667pt;}
}





/* 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_c00266 {
    display:none;
  }
  .loading-indicator_c00266.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00266 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_c00266 { 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_c00266" -> "#page-container .classname_c00266")
 */
.pf_c00266 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00266 { /* 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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00266 { /* 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_c00266 { /* 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_c00266 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00266 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00266 {overflow:visible;}
  }
}
.c_c00266 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00266 { /* 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_c00266:after { /* webkit #35443 */
  content: '';
}
.t_c00266:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00266 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 */
}
.__c00266 { /* 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_c00266 { /* info for Javascript */
  display:none;
}
.l_c00266 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00266 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00266 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00266: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_c00266 {
    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_c00266.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00266.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_c00266 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00266{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00266;src:url('chunks/assets/font_5ee62836daa9b4c1c6cfc156.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.000000;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;}
.m4c_c00266{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m58_c00266{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m75_c00266{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00266{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m63_c00266{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00266{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m48_c00266{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00266{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7_c00266{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m62_c00266{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00266{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m94_c00266{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m98_c00266{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00266{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m44_c00266{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00266{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.maa_c00266{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00266{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m72_c00266{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m81_c00266{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00266{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb_c00266{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00266{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m79_c00266{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00266{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m60_c00266{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m68_c00266{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00266{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00266{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m99_c00266{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00266{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00266{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00266{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m93_c00266{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m53_c00266{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00266{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m92_c00266{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00266{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m95_c00266{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m33_c00266{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00266{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m70_c00266{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m46_c00266{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00266{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m74_c00266{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m61_c00266{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00266{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m73_c00266{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00266{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00266{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4_c00266{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00266{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m84_c00266{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m56_c00266{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00266{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00266{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m21_c00266{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m47_c00266{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00266{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00266{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf_c00266{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00266{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9_c00266{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m86_c00266{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m59_c00266{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);}
.m54_c00266{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m88_c00266{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00266{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m83_c00266{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00266{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m64_c00266{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m35_c00266{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m66_c00266{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00266{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m40_c00266{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00266{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m67_c00266{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m32_c00266{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00266{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00266{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m10_c00266{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00266{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m78_c00266{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00266{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m85_c00266{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00266{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m38_c00266{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m42_c00266{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m77_c00266{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00266{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma_c00266{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m31_c00266{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m71_c00266{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m12_c00266{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m97_c00266{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00266{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m34_c00266{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m30_c00266{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m96_c00266{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m87_c00266{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00266{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00266{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00266{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m39_c00266{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00266{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00266{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00266{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00266{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m51_c00266{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00266{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m25_c00266{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00266{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00266{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m23_c00266{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00266{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m37_c00266{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m43_c00266{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m80_c00266{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00266{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00266{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00266{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m36_c00266{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m69_c00266{transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291250,0.000000,0.000000,0.250000,0,0);}
.m16_c00266{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00266{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m24_c00266{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00266{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m0_c00266{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m41_c00266{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m22_c00266{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00266{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00266{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00266{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m89_c00266{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m82_c00266{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m49_c00266{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00266{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00266{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m65_c00266{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00266{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00266{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m50_c00266{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00266{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00266{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.v0_c00266{vertical-align:0.000000px;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{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__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00266{word-spacing:-4.750000px;}
.ws5_c00266{word-spacing:-4.375000px;}
.ws6_c00266{word-spacing:0.000000px;}
.ws3_c00266{word-spacing:2.750000px;}
.ws0_c00266{word-spacing:7.821429px;}
.ws1_c00266{word-spacing:9.517338px;}
.ws2_c00266{word-spacing:38.073870px;}
.fc0_c00266{color:transparent;}
.fs0_c00266{font-size:54.000000px;}
.y0_c00266{bottom:0.000000px;}
.y2a_c00266{bottom:153.000000px;}
.y29_c00266{bottom:195.450000px;}
.y28_c00266{bottom:213.600000px;}
.y27_c00266{bottom:235.200000px;}
.y26_c00266{bottom:255.300000px;}
.y25_c00266{bottom:274.800000px;}
.y24_c00266{bottom:294.900000px;}
.y23_c00266{bottom:314.700000px;}
.y22_c00266{bottom:334.500000px;}
.y21_c00266{bottom:354.600000px;}
.y20_c00266{bottom:374.100000px;}
.y1f_c00266{bottom:394.200000px;}
.y1e_c00266{bottom:433.350000px;}
.y1d_c00266{bottom:453.900000px;}
.y1c_c00266{bottom:473.700000px;}
.y1b_c00266{bottom:493.500000px;}
.y1a_c00266{bottom:513.300000px;}
.y19_c00266{bottom:533.100000px;}
.y18_c00266{bottom:551.250000px;}
.y17_c00266{bottom:572.550000px;}
.y16_c00266{bottom:592.050000px;}
.y15_c00266{bottom:612.150000px;}
.y14_c00266{bottom:631.650000px;}
.y13_c00266{bottom:651.750000px;}
.y12_c00266{bottom:671.850000px;}
.y11_c00266{bottom:691.650000px;}
.y10_c00266{bottom:711.750000px;}
.yf_c00266{bottom:731.850000px;}
.ye_c00266{bottom:751.650000px;}
.yd_c00266{bottom:771.450000px;}
.yc_c00266{bottom:791.850000px;}
.yb_c00266{bottom:811.650000px;}
.ya_c00266{bottom:831.450000px;}
.y9_c00266{bottom:851.550000px;}
.y8_c00266{bottom:871.650000px;}
.y7_c00266{bottom:891.750000px;}
.y6_c00266{bottom:911.250000px;}
.y5_c00266{bottom:931.050000px;}
.y4_c00266{bottom:951.150000px;}
.y3_c00266{bottom:988.950000px;}
.y2_c00266{bottom:1009.050000px;}
.y1_c00266{bottom:1047.900000px;}
.h2_c00266{height:54.000000px;}
.h0_c00266{height:1166.759949px;}
.h1_c00266{height:1167.000000px;}
.w0_c00266{width:918.720063px;}
.w1_c00266{width:918.750000px;}
.x0_c00266{left:0.000000px;}
.x16_c00266{left:150.300000px;}
.x1_c00266{left:152.700000px;}
.xe6_c00266{left:165.450000px;}
.x111_c00266{left:170.700000px;}
.xb4_c00266{left:174.150000px;}
.x62_c00266{left:178.950000px;}
.xcb_c00266{left:180.750000px;}
.x3_c00266{left:181.800000px;}
.x45_c00266{left:182.850000px;}
.xd1_c00266{left:183.900000px;}
.x112_c00266{left:185.850000px;}
.x17_c00266{left:187.800000px;}
.xa0_c00266{left:195.450000px;}
.xd8_c00266{left:196.950000px;}
.xc0_c00266{left:199.050000px;}
.x80_c00266{left:201.600000px;}
.x29_c00266{left:205.200000px;}
.x46_c00266{left:208.050000px;}
.x63_c00266{left:209.550000px;}
.xdd_c00266{left:211.500000px;}
.x97_c00266{left:212.850000px;}
.x4_c00266{left:214.500000px;}
.x38_c00266{left:216.300000px;}
.xf4_c00266{left:218.850000px;}
.xe7_c00266{left:221.550000px;}
.x53_c00266{left:222.900000px;}
.x18_c00266{left:225.300000px;}
.x78_c00266{left:227.700000px;}
.x6f_c00266{left:232.200000px;}
.xf0_c00266{left:233.400000px;}
.xde_c00266{left:234.600000px;}
.x8d_c00266{left:237.900000px;}
.x117_c00266{left:243.900000px;}
.xa1_c00266{left:247.350000px;}
.x2a_c00266{left:249.150000px;}
.x47_c00266{left:253.350000px;}
.x118_c00266{left:255.000000px;}
.xab_c00266{left:256.650000px;}
.x64_c00266{left:257.850000px;}
.x98_c00266{left:259.950000px;}
.x54_c00266{left:261.450000px;}
.x39_c00266{left:263.100000px;}
.x5_c00266{left:265.200000px;}
.xdf_c00266{left:268.050000px;}
.x19_c00266{left:269.550000px;}
.x11b_c00266{left:270.600000px;}
.x81_c00266{left:271.800000px;}
.x2b_c00266{left:273.600000px;}
.x11f_c00266{left:278.700000px;}
.x6_c00266{left:285.000000px;}
.x1a_c00266{left:290.400000px;}
.xac_c00266{left:291.600000px;}
.xf7_c00266{left:293.400000px;}
.x99_c00266{left:294.450000px;}
.x70_c00266{left:297.000000px;}
.x88_c00266{left:299.550000px;}
.x3a_c00266{left:301.200000px;}
.x65_c00266{left:304.650000px;}
.x119_c00266{left:307.650000px;}
.xe8_c00266{left:311.100000px;}
.xd9_c00266{left:314.250000px;}
.xcc_c00266{left:315.750000px;}
.x55_c00266{left:318.000000px;}
.xb5_c00266{left:320.250000px;}
.xd2_c00266{left:322.500000px;}
.x7_c00266{left:323.550000px;}
.x2c_c00266{left:325.050000px;}
.x71_c00266{left:326.100000px;}
.xbb_c00266{left:332.250000px;}
.xad_c00266{left:334.050000px;}
.x56_c00266{left:335.700000px;}
.x66_c00266{left:337.350000px;}
.x82_c00266{left:340.200000px;}
.x8e_c00266{left:343.050000px;}
.x105_c00266{left:345.450000px;}
.x48_c00266{left:346.950000px;}
.xf5_c00266{left:348.750000px;}
.x8_c00266{left:350.550000px;}
.xe0_c00266{left:351.900000px;}
.x10e_c00266{left:353.400000px;}
.xd6_c00266{left:355.050000px;}
.x102_c00266{left:357.150000px;}
.x1b_c00266{left:358.800000px;}
.xf8_c00266{left:360.000000px;}
.xa2_c00266{left:362.100000px;}
.xb6_c00266{left:364.500000px;}
.xc6_c00266{left:366.150000px;}
.x9_c00266{left:373.200000px;}
.x72_c00266{left:374.700000px;}
.x49_c00266{left:375.750000px;}
.x2d_c00266{left:377.250000px;}
.xd7_c00266{left:379.200000px;}
.x57_c00266{left:380.400000px;}
.x11c_c00266{left:382.650000px;}
.x83_c00266{left:388.500000px;}
.xbc_c00266{left:389.850000px;}
.x3b_c00266{left:391.200000px;}
.xc1_c00266{left:392.550000px;}
.xe9_c00266{left:393.600000px;}
.xe1_c00266{left:395.400000px;}
.xc7_c00266{left:396.750000px;}
.xa3_c00266{left:397.800000px;}
.x67_c00266{left:400.350000px;}
.x84_c00266{left:403.650000px;}
.x9a_c00266{left:405.300000px;}
.x20_c00266{left:407.100000px;}
.xa_c00266{left:409.500000px;}
.x113_c00266{left:411.150000px;}
.x3c_c00266{left:413.100000px;}
.x1c_c00266{left:416.100000px;}
.x79_c00266{left:417.750000px;}
.xae_c00266{left:421.950000px;}
.x8f_c00266{left:426.900000px;}
.x2e_c00266{left:427.950000px;}
.x120_c00266{left:430.800000px;}
.x58_c00266{left:432.300000px;}
.x68_c00266{left:434.250000px;}
.x85_c00266{left:435.750000px;}
.xb_c00266{left:436.800000px;}
.xf1_c00266{left:439.050000px;}
.x73_c00266{left:440.250000px;}
.xa4_c00266{left:442.050000px;}
.x21_c00266{left:443.850000px;}
.xc2_c00266{left:446.250000px;}
.xff_c00266{left:447.300000px;}
.x2_c00266{left:448.650000px;}
.xea_c00266{left:449.700000px;}
.x4a_c00266{left:453.150000px;}
.x2f_c00266{left:455.700000px;}
.xfc_c00266{left:459.150000px;}
.x59_c00266{left:460.350000px;}
.x7a_c00266{left:463.500000px;}
.xb7_c00266{left:464.850000px;}
.x86_c00266{left:467.100000px;}
.x114_c00266{left:468.450000px;}
.x3d_c00266{left:469.950000px;}
.x100_c00266{left:471.450000px;}
.xd3_c00266{left:474.600000px;}
.xda_c00266{left:477.750000px;}
.xe2_c00266{left:480.000000px;}
.x5a_c00266{left:481.200000px;}
.x7b_c00266{left:484.050000px;}
.x109_c00266{left:485.700000px;}
.xc_c00266{left:486.900000px;}
.x1d_c00266{left:488.100000px;}
.x9b_c00266{left:489.600000px;}
.x89_c00266{left:490.800000px;}
.xf6_c00266{left:492.300000px;}
.x22_c00266{left:493.950000px;}
.xcd_c00266{left:495.900000px;}
.x90_c00266{left:497.850000px;}
.xf2_c00266{left:500.700000px;}
.xc3_c00266{left:502.800000px;}
.xa5_c00266{left:504.750000px;}
.x4b_c00266{left:507.900000px;}
.x5b_c00266{left:509.250000px;}
.x10f_c00266{left:510.600000px;}
.x23_c00266{left:515.250000px;}
.x69_c00266{left:517.350000px;}
.x8a_c00266{left:518.550000px;}
.x87_c00266{left:521.100000px;}
.xc4_c00266{left:524.400000px;}
.xbd_c00266{left:526.500000px;}
.x106_c00266{left:527.850000px;}
.xaf_c00266{left:529.500000px;}
.x101_c00266{left:530.850000px;}
.xce_c00266{left:532.200000px;}
.x3e_c00266{left:533.250000px;}
.x4c_c00266{left:534.600000px;}
.x1e_c00266{left:536.700000px;}
.x91_c00266{left:541.800000px;}
.x74_c00266{left:546.900000px;}
.x24_c00266{left:549.450000px;}
.xd_c00266{left:551.400000px;}
.xa6_c00266{left:554.100000px;}
.x3f_c00266{left:555.150000px;}
.x30_c00266{left:557.550000px;}
.x6a_c00266{left:561.600000px;}
.x92_c00266{left:565.950000px;}
.x1f_c00266{left:568.050000px;}
.xe_c00266{left:570.150000px;}
.xcf_c00266{left:571.500000px;}
.x7c_c00266{left:572.550000px;}
.x5c_c00266{left:574.650000px;}
.x11d_c00266{left:578.400000px;}
.x25_c00266{left:580.350000px;}
.xdb_c00266{left:582.150000px;}
.xf3_c00266{left:583.200000px;}
.xb0_c00266{left:586.350000px;}
.x75_c00266{left:588.600000px;}
.x40_c00266{left:590.400000px;}
.x31_c00266{left:597.900000px;}
.x5d_c00266{left:600.150000px;}
.xa7_c00266{left:601.650000px;}
.x93_c00266{left:603.750000px;}
.x7d_c00266{left:604.950000px;}
.x10a_c00266{left:606.300000px;}
.x4d_c00266{left:609.900000px;}
.x8b_c00266{left:614.250000px;}
.xf9_c00266{left:615.450000px;}
.xa8_c00266{left:618.900000px;}
.xd4_c00266{left:620.400000px;}
.xf_c00266{left:622.650000px;}
.x9c_c00266{left:623.850000px;}
.xeb_c00266{left:625.500000px;}
.x4e_c00266{left:629.700000px;}
.x10b_c00266{left:634.350000px;}
.x115_c00266{left:635.850000px;}
.x121_c00266{left:636.900000px;}
.x26_c00266{left:639.000000px;}
.x76_c00266{left:640.500000px;}
.x10_c00266{left:642.150000px;}
.x41_c00266{left:643.650000px;}
.xb8_c00266{left:644.850000px;}
.xa9_c00266{left:648.000000px;}
.xfd_c00266{left:650.250000px;}
.x32_c00266{left:651.600000px;}
.xfa_c00266{left:653.250000px;}
.xc8_c00266{left:654.900000px;}
.x9d_c00266{left:657.000000px;}
.xe3_c00266{left:658.800000px;}
.x4f_c00266{left:660.000000px;}
.x6b_c00266{left:661.650000px;}
.xaa_c00266{left:662.700000px;}
.x5e_c00266{left:664.200000px;}
.xb1_c00266{left:665.550000px;}
.x11_c00266{left:670.950000px;}
.x33_c00266{left:673.950000px;}
.x5f_c00266{left:676.500000px;}
.xd5_c00266{left:678.300000px;}
.xbe_c00266{left:679.500000px;}
.x103_c00266{left:686.400000px;}
.xb9_c00266{left:689.100000px;}
.x12_c00266{left:690.750000px;}
.xfb_c00266{left:692.100000px;}
.x8c_c00266{left:693.450000px;}
.xe4_c00266{left:694.800000px;}
.x7e_c00266{left:696.150000px;}
.x27_c00266{left:698.100000px;}
.xec_c00266{left:699.900000px;}
.xb2_c00266{left:701.550000px;}
.x34_c00266{left:703.050000px;}
.x6c_c00266{left:710.250000px;}
.x110_c00266{left:712.500000px;}
.x11a_c00266{left:713.700000px;}
.x60_c00266{left:715.350000px;}
.x77_c00266{left:718.200000px;}
.x50_c00266{left:719.700000px;}
.xc9_c00266{left:721.500000px;}
.x35_c00266{left:723.150000px;}
.xbf_c00266{left:724.200000px;}
.xba_c00266{left:725.850000px;}
.x28_c00266{left:727.950000px;}
.xe5_c00266{left:729.000000px;}
.x13_c00266{left:731.100000px;}
.xb3_c00266{left:732.450000px;}
.x42_c00266{left:735.150000px;}
.x51_c00266{left:738.750000px;}
.xca_c00266{left:741.300000px;}
.x10c_c00266{left:744.150000px;}
.x116_c00266{left:747.150000px;}
.x9e_c00266{left:748.200000px;}
.x14_c00266{left:750.150000px;}
.xdc_c00266{left:753.000000px;}
.x7f_c00266{left:754.500000px;}
.xed_c00266{left:756.300000px;}
.x11e_c00266{left:757.800000px;}
.x6d_c00266{left:759.600000px;}
.x43_c00266{left:760.650000px;}
.x61_c00266{left:763.200000px;}
.x107_c00266{left:764.700000px;}
.x94_c00266{left:767.850000px;}
.x52_c00266{left:769.050000px;}
.xee_c00266{left:770.700000px;}
.x10d_c00266{left:772.200000px;}
.x36_c00266{left:774.600000px;}
.xc5_c00266{left:777.150000px;}
.x6e_c00266{left:780.450000px;}
.x9f_c00266{left:785.250000px;}
.x108_c00266{left:786.600000px;}
.x95_c00266{left:787.950000px;}
.x15_c00266{left:794.400000px;}
.xd0_c00266{left:796.200000px;}
.x37_c00266{left:797.250000px;}
.xfe_c00266{left:799.950000px;}
.xef_c00266{left:801.300000px;}
.x44_c00266{left:804.900000px;}
.x104_c00266{left:806.250000px;}
.x96_c00266{left:811.050000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws4_c00266{word-spacing:-4.222222pt;}
.ws5_c00266{word-spacing:-3.888889pt;}
.ws6_c00266{word-spacing:0.000000pt;}
.ws3_c00266{word-spacing:2.444444pt;}
.ws0_c00266{word-spacing:6.952381pt;}
.ws1_c00266{word-spacing:8.459856pt;}
.ws2_c00266{word-spacing:33.843440pt;}
.fs0_c00266{font-size:48.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y2a_c00266{bottom:136.000000pt;}
.y29_c00266{bottom:173.733333pt;}
.y28_c00266{bottom:189.866667pt;}
.y27_c00266{bottom:209.066667pt;}
.y26_c00266{bottom:226.933333pt;}
.y25_c00266{bottom:244.266667pt;}
.y24_c00266{bottom:262.133333pt;}
.y23_c00266{bottom:279.733333pt;}
.y22_c00266{bottom:297.333333pt;}
.y21_c00266{bottom:315.200000pt;}
.y20_c00266{bottom:332.533333pt;}
.y1f_c00266{bottom:350.400000pt;}
.y1e_c00266{bottom:385.200000pt;}
.y1d_c00266{bottom:403.466667pt;}
.y1c_c00266{bottom:421.066667pt;}
.y1b_c00266{bottom:438.666667pt;}
.y1a_c00266{bottom:456.266667pt;}
.y19_c00266{bottom:473.866667pt;}
.y18_c00266{bottom:490.000000pt;}
.y17_c00266{bottom:508.933333pt;}
.y16_c00266{bottom:526.266667pt;}
.y15_c00266{bottom:544.133333pt;}
.y14_c00266{bottom:561.466667pt;}
.y13_c00266{bottom:579.333333pt;}
.y12_c00266{bottom:597.200000pt;}
.y11_c00266{bottom:614.800000pt;}
.y10_c00266{bottom:632.666667pt;}
.yf_c00266{bottom:650.533333pt;}
.ye_c00266{bottom:668.133333pt;}
.yd_c00266{bottom:685.733333pt;}
.yc_c00266{bottom:703.866667pt;}
.yb_c00266{bottom:721.466667pt;}
.ya_c00266{bottom:739.066667pt;}
.y9_c00266{bottom:756.933333pt;}
.y8_c00266{bottom:774.800000pt;}
.y7_c00266{bottom:792.666667pt;}
.y6_c00266{bottom:810.000000pt;}
.y5_c00266{bottom:827.600000pt;}
.y4_c00266{bottom:845.466667pt;}
.y3_c00266{bottom:879.066667pt;}
.y2_c00266{bottom:896.933333pt;}
.y1_c00266{bottom:931.466667pt;}
.h2_c00266{height:48.000000pt;}
.h0_c00266{height:1037.119955pt;}
.h1_c00266{height:1037.333333pt;}
.w0_c00266{width:816.640056pt;}
.w1_c00266{width:816.666667pt;}
.x0_c00266{left:0.000000pt;}
.x16_c00266{left:133.600000pt;}
.x1_c00266{left:135.733333pt;}
.xe6_c00266{left:147.066667pt;}
.x111_c00266{left:151.733333pt;}
.xb4_c00266{left:154.800000pt;}
.x62_c00266{left:159.066667pt;}
.xcb_c00266{left:160.666667pt;}
.x3_c00266{left:161.600000pt;}
.x45_c00266{left:162.533333pt;}
.xd1_c00266{left:163.466667pt;}
.x112_c00266{left:165.200000pt;}
.x17_c00266{left:166.933333pt;}
.xa0_c00266{left:173.733333pt;}
.xd8_c00266{left:175.066667pt;}
.xc0_c00266{left:176.933333pt;}
.x80_c00266{left:179.200000pt;}
.x29_c00266{left:182.400000pt;}
.x46_c00266{left:184.933333pt;}
.x63_c00266{left:186.266667pt;}
.xdd_c00266{left:188.000000pt;}
.x97_c00266{left:189.200000pt;}
.x4_c00266{left:190.666667pt;}
.x38_c00266{left:192.266667pt;}
.xf4_c00266{left:194.533333pt;}
.xe7_c00266{left:196.933333pt;}
.x53_c00266{left:198.133333pt;}
.x18_c00266{left:200.266667pt;}
.x78_c00266{left:202.400000pt;}
.x6f_c00266{left:206.400000pt;}
.xf0_c00266{left:207.466667pt;}
.xde_c00266{left:208.533333pt;}
.x8d_c00266{left:211.466667pt;}
.x117_c00266{left:216.800000pt;}
.xa1_c00266{left:219.866667pt;}
.x2a_c00266{left:221.466667pt;}
.x47_c00266{left:225.200000pt;}
.x118_c00266{left:226.666667pt;}
.xab_c00266{left:228.133333pt;}
.x64_c00266{left:229.200000pt;}
.x98_c00266{left:231.066667pt;}
.x54_c00266{left:232.400000pt;}
.x39_c00266{left:233.866667pt;}
.x5_c00266{left:235.733333pt;}
.xdf_c00266{left:238.266667pt;}
.x19_c00266{left:239.600000pt;}
.x11b_c00266{left:240.533333pt;}
.x81_c00266{left:241.600000pt;}
.x2b_c00266{left:243.200000pt;}
.x11f_c00266{left:247.733333pt;}
.x6_c00266{left:253.333333pt;}
.x1a_c00266{left:258.133333pt;}
.xac_c00266{left:259.200000pt;}
.xf7_c00266{left:260.800000pt;}
.x99_c00266{left:261.733333pt;}
.x70_c00266{left:264.000000pt;}
.x88_c00266{left:266.266667pt;}
.x3a_c00266{left:267.733333pt;}
.x65_c00266{left:270.800000pt;}
.x119_c00266{left:273.466667pt;}
.xe8_c00266{left:276.533333pt;}
.xd9_c00266{left:279.333333pt;}
.xcc_c00266{left:280.666667pt;}
.x55_c00266{left:282.666667pt;}
.xb5_c00266{left:284.666667pt;}
.xd2_c00266{left:286.666667pt;}
.x7_c00266{left:287.600000pt;}
.x2c_c00266{left:288.933333pt;}
.x71_c00266{left:289.866667pt;}
.xbb_c00266{left:295.333333pt;}
.xad_c00266{left:296.933333pt;}
.x56_c00266{left:298.400000pt;}
.x66_c00266{left:299.866667pt;}
.x82_c00266{left:302.400000pt;}
.x8e_c00266{left:304.933333pt;}
.x105_c00266{left:307.066667pt;}
.x48_c00266{left:308.400000pt;}
.xf5_c00266{left:310.000000pt;}
.x8_c00266{left:311.600000pt;}
.xe0_c00266{left:312.800000pt;}
.x10e_c00266{left:314.133333pt;}
.xd6_c00266{left:315.600000pt;}
.x102_c00266{left:317.466667pt;}
.x1b_c00266{left:318.933333pt;}
.xf8_c00266{left:320.000000pt;}
.xa2_c00266{left:321.866667pt;}
.xb6_c00266{left:324.000000pt;}
.xc6_c00266{left:325.466667pt;}
.x9_c00266{left:331.733333pt;}
.x72_c00266{left:333.066667pt;}
.x49_c00266{left:334.000000pt;}
.x2d_c00266{left:335.333333pt;}
.xd7_c00266{left:337.066667pt;}
.x57_c00266{left:338.133333pt;}
.x11c_c00266{left:340.133333pt;}
.x83_c00266{left:345.333333pt;}
.xbc_c00266{left:346.533333pt;}
.x3b_c00266{left:347.733333pt;}
.xc1_c00266{left:348.933333pt;}
.xe9_c00266{left:349.866667pt;}
.xe1_c00266{left:351.466667pt;}
.xc7_c00266{left:352.666667pt;}
.xa3_c00266{left:353.600000pt;}
.x67_c00266{left:355.866667pt;}
.x84_c00266{left:358.800000pt;}
.x9a_c00266{left:360.266667pt;}
.x20_c00266{left:361.866667pt;}
.xa_c00266{left:364.000000pt;}
.x113_c00266{left:365.466667pt;}
.x3c_c00266{left:367.200000pt;}
.x1c_c00266{left:369.866667pt;}
.x79_c00266{left:371.333333pt;}
.xae_c00266{left:375.066667pt;}
.x8f_c00266{left:379.466667pt;}
.x2e_c00266{left:380.400000pt;}
.x120_c00266{left:382.933333pt;}
.x58_c00266{left:384.266667pt;}
.x68_c00266{left:386.000000pt;}
.x85_c00266{left:387.333333pt;}
.xb_c00266{left:388.266667pt;}
.xf1_c00266{left:390.266667pt;}
.x73_c00266{left:391.333333pt;}
.xa4_c00266{left:392.933333pt;}
.x21_c00266{left:394.533333pt;}
.xc2_c00266{left:396.666667pt;}
.xff_c00266{left:397.600000pt;}
.x2_c00266{left:398.800000pt;}
.xea_c00266{left:399.733333pt;}
.x4a_c00266{left:402.800000pt;}
.x2f_c00266{left:405.066667pt;}
.xfc_c00266{left:408.133333pt;}
.x59_c00266{left:409.200000pt;}
.x7a_c00266{left:412.000000pt;}
.xb7_c00266{left:413.200000pt;}
.x86_c00266{left:415.200000pt;}
.x114_c00266{left:416.400000pt;}
.x3d_c00266{left:417.733333pt;}
.x100_c00266{left:419.066667pt;}
.xd3_c00266{left:421.866667pt;}
.xda_c00266{left:424.666667pt;}
.xe2_c00266{left:426.666667pt;}
.x5a_c00266{left:427.733333pt;}
.x7b_c00266{left:430.266667pt;}
.x109_c00266{left:431.733333pt;}
.xc_c00266{left:432.800000pt;}
.x1d_c00266{left:433.866667pt;}
.x9b_c00266{left:435.200000pt;}
.x89_c00266{left:436.266667pt;}
.xf6_c00266{left:437.600000pt;}
.x22_c00266{left:439.066667pt;}
.xcd_c00266{left:440.800000pt;}
.x90_c00266{left:442.533333pt;}
.xf2_c00266{left:445.066667pt;}
.xc3_c00266{left:446.933333pt;}
.xa5_c00266{left:448.666667pt;}
.x4b_c00266{left:451.466667pt;}
.x5b_c00266{left:452.666667pt;}
.x10f_c00266{left:453.866667pt;}
.x23_c00266{left:458.000000pt;}
.x69_c00266{left:459.866667pt;}
.x8a_c00266{left:460.933333pt;}
.x87_c00266{left:463.200000pt;}
.xc4_c00266{left:466.133333pt;}
.xbd_c00266{left:468.000000pt;}
.x106_c00266{left:469.200000pt;}
.xaf_c00266{left:470.666667pt;}
.x101_c00266{left:471.866667pt;}
.xce_c00266{left:473.066667pt;}
.x3e_c00266{left:474.000000pt;}
.x4c_c00266{left:475.200000pt;}
.x1e_c00266{left:477.066667pt;}
.x91_c00266{left:481.600000pt;}
.x74_c00266{left:486.133333pt;}
.x24_c00266{left:488.400000pt;}
.xd_c00266{left:490.133333pt;}
.xa6_c00266{left:492.533333pt;}
.x3f_c00266{left:493.466667pt;}
.x30_c00266{left:495.600000pt;}
.x6a_c00266{left:499.200000pt;}
.x92_c00266{left:503.066667pt;}
.x1f_c00266{left:504.933333pt;}
.xe_c00266{left:506.800000pt;}
.xcf_c00266{left:508.000000pt;}
.x7c_c00266{left:508.933333pt;}
.x5c_c00266{left:510.800000pt;}
.x11d_c00266{left:514.133333pt;}
.x25_c00266{left:515.866667pt;}
.xdb_c00266{left:517.466667pt;}
.xf3_c00266{left:518.400000pt;}
.xb0_c00266{left:521.200000pt;}
.x75_c00266{left:523.200000pt;}
.x40_c00266{left:524.800000pt;}
.x31_c00266{left:531.466667pt;}
.x5d_c00266{left:533.466667pt;}
.xa7_c00266{left:534.800000pt;}
.x93_c00266{left:536.666667pt;}
.x7d_c00266{left:537.733333pt;}
.x10a_c00266{left:538.933333pt;}
.x4d_c00266{left:542.133333pt;}
.x8b_c00266{left:546.000000pt;}
.xf9_c00266{left:547.066667pt;}
.xa8_c00266{left:550.133333pt;}
.xd4_c00266{left:551.466667pt;}
.xf_c00266{left:553.466667pt;}
.x9c_c00266{left:554.533333pt;}
.xeb_c00266{left:556.000000pt;}
.x4e_c00266{left:559.733333pt;}
.x10b_c00266{left:563.866667pt;}
.x115_c00266{left:565.200000pt;}
.x121_c00266{left:566.133333pt;}
.x26_c00266{left:568.000000pt;}
.x76_c00266{left:569.333333pt;}
.x10_c00266{left:570.800000pt;}
.x41_c00266{left:572.133333pt;}
.xb8_c00266{left:573.200000pt;}
.xa9_c00266{left:576.000000pt;}
.xfd_c00266{left:578.000000pt;}
.x32_c00266{left:579.200000pt;}
.xfa_c00266{left:580.666667pt;}
.xc8_c00266{left:582.133333pt;}
.x9d_c00266{left:584.000000pt;}
.xe3_c00266{left:585.600000pt;}
.x4f_c00266{left:586.666667pt;}
.x6b_c00266{left:588.133333pt;}
.xaa_c00266{left:589.066667pt;}
.x5e_c00266{left:590.400000pt;}
.xb1_c00266{left:591.600000pt;}
.x11_c00266{left:596.400000pt;}
.x33_c00266{left:599.066667pt;}
.x5f_c00266{left:601.333333pt;}
.xd5_c00266{left:602.933333pt;}
.xbe_c00266{left:604.000000pt;}
.x103_c00266{left:610.133333pt;}
.xb9_c00266{left:612.533333pt;}
.x12_c00266{left:614.000000pt;}
.xfb_c00266{left:615.200000pt;}
.x8c_c00266{left:616.400000pt;}
.xe4_c00266{left:617.600000pt;}
.x7e_c00266{left:618.800000pt;}
.x27_c00266{left:620.533333pt;}
.xec_c00266{left:622.133333pt;}
.xb2_c00266{left:623.600000pt;}
.x34_c00266{left:624.933333pt;}
.x6c_c00266{left:631.333333pt;}
.x110_c00266{left:633.333333pt;}
.x11a_c00266{left:634.400000pt;}
.x60_c00266{left:635.866667pt;}
.x77_c00266{left:638.400000pt;}
.x50_c00266{left:639.733333pt;}
.xc9_c00266{left:641.333333pt;}
.x35_c00266{left:642.800000pt;}
.xbf_c00266{left:643.733333pt;}
.xba_c00266{left:645.200000pt;}
.x28_c00266{left:647.066667pt;}
.xe5_c00266{left:648.000000pt;}
.x13_c00266{left:649.866667pt;}
.xb3_c00266{left:651.066667pt;}
.x42_c00266{left:653.466667pt;}
.x51_c00266{left:656.666667pt;}
.xca_c00266{left:658.933333pt;}
.x10c_c00266{left:661.466667pt;}
.x116_c00266{left:664.133333pt;}
.x9e_c00266{left:665.066667pt;}
.x14_c00266{left:666.800000pt;}
.xdc_c00266{left:669.333333pt;}
.x7f_c00266{left:670.666667pt;}
.xed_c00266{left:672.266667pt;}
.x11e_c00266{left:673.600000pt;}
.x6d_c00266{left:675.200000pt;}
.x43_c00266{left:676.133333pt;}
.x61_c00266{left:678.400000pt;}
.x107_c00266{left:679.733333pt;}
.x94_c00266{left:682.533333pt;}
.x52_c00266{left:683.600000pt;}
.xee_c00266{left:685.066667pt;}
.x10d_c00266{left:686.400000pt;}
.x36_c00266{left:688.533333pt;}
.xc5_c00266{left:690.800000pt;}
.x6e_c00266{left:693.733333pt;}
.x9f_c00266{left:698.000000pt;}
.x108_c00266{left:699.200000pt;}
.x95_c00266{left:700.400000pt;}
.x15_c00266{left:706.133333pt;}
.xd0_c00266{left:707.733333pt;}
.x37_c00266{left:708.666667pt;}
.xfe_c00266{left:711.066667pt;}
.xef_c00266{left:712.266667pt;}
.x44_c00266{left:715.466667pt;}
.x104_c00266{left:716.666667pt;}
.x96_c00266{left:720.933333pt;}
}





/* 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_c00267 {
    display:none;
  }
  .loading-indicator_c00267.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00267 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_c00267 { 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_c00267" -> "#page-container .classname_c00267")
 */
.pf_c00267 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00267 { /* 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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00267 { /* 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_c00267 { /* 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_c00267 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00267 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00267 {overflow:visible;}
  }
}
.c_c00267 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00267 { /* 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_c00267:after { /* webkit #35443 */
  content: '';
}
.t_c00267:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00267 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 */
}
.__c00267 { /* 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_c00267 { /* info for Javascript */
  display:none;
}
.l_c00267 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00267 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00267 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00267: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_c00267 {
    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_c00267.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00267.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_c00267 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00267{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00267;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.000000;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;}
.mf_c00267{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.m8_c00267{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5_c00267{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10_c00267{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m1_c00267{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma_c00267{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.md_c00267{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.me_c00267{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3_c00267{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00267{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc_c00267{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00267{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00267{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7_c00267{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6_c00267{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m0_c00267{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00267{transform:matrix(0.649250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649250,0.000000,0.000000,0.250000,0,0);}
.v0_c00267{vertical-align:0.000000px;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{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__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:0.000000px;}
.fc0_c00267{color:transparent;}
.fs2_c00267{font-size:30.000000px;}
.fs1_c00267{font-size:36.000000px;}
.fs0_c00267{font-size:48.000000px;}
.y0_c00267{bottom:0.000000px;}
.y4_c00267{bottom:603.300000px;}
.y3_c00267{bottom:659.850000px;}
.y2_c00267{bottom:677.100000px;}
.y1_c00267{bottom:696.600000px;}
.h4_c00267{height:30.000000px;}
.h3_c00267{height:36.000000px;}
.h2_c00267{height:48.000000px;}
.h0_c00267{height:1166.759949px;}
.h1_c00267{height:1167.000000px;}
.w0_c00267{width:918.720063px;}
.w1_c00267{width:918.750000px;}
.x0_c00267{left:0.000000px;}
.x5_c00267{left:115.950000px;}
.x1_c00267{left:142.950000px;}
.x6_c00267{left:154.050000px;}
.x2_c00267{left:158.100000px;}
.x7_c00267{left:163.050000px;}
.x3_c00267{left:171.450000px;}
.x8_c00267{left:178.950000px;}
.x9_c00267{left:188.250000px;}
.xa_c00267{left:193.350000px;}
.x4_c00267{left:200.250000px;}
.xb_c00267{left:201.300000px;}
.xc_c00267{left:219.000000px;}
.xd_c00267{left:812.850000px;}
.xe_c00267{left:825.450000px;}
.xf_c00267{left:831.150000px;}
.x10_c00267{left:844.050000px;}
.x11_c00267{left:864.600000px;}
.x12_c00267{left:866.700000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs2_c00267{font-size:26.666667pt;}
.fs1_c00267{font-size:32.000000pt;}
.fs0_c00267{font-size:42.666667pt;}
.y0_c00267{bottom:0.000000pt;}
.y4_c00267{bottom:536.266667pt;}
.y3_c00267{bottom:586.533333pt;}
.y2_c00267{bottom:601.866667pt;}
.y1_c00267{bottom:619.200000pt;}
.h4_c00267{height:26.666667pt;}
.h3_c00267{height:32.000000pt;}
.h2_c00267{height:42.666667pt;}
.h0_c00267{height:1037.119955pt;}
.h1_c00267{height:1037.333333pt;}
.w0_c00267{width:816.640056pt;}
.w1_c00267{width:816.666667pt;}
.x0_c00267{left:0.000000pt;}
.x5_c00267{left:103.066667pt;}
.x1_c00267{left:127.066667pt;}
.x6_c00267{left:136.933333pt;}
.x2_c00267{left:140.533333pt;}
.x7_c00267{left:144.933333pt;}
.x3_c00267{left:152.400000pt;}
.x8_c00267{left:159.066667pt;}
.x9_c00267{left:167.333333pt;}
.xa_c00267{left:171.866667pt;}
.x4_c00267{left:178.000000pt;}
.xb_c00267{left:178.933333pt;}
.xc_c00267{left:194.666667pt;}
.xd_c00267{left:722.533333pt;}
.xe_c00267{left:733.733333pt;}
.xf_c00267{left:738.800000pt;}
.x10_c00267{left:750.266667pt;}
.x11_c00267{left:768.533333pt;}
.x12_c00267{left:770.400000pt;}
}





/* 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_c00268 {
    display:none;
  }
  .loading-indicator_c00268.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00268 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_c00268 { 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_c00268" -> "#page-container .classname_c00268")
 */
.pf_c00268 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00268 { /* 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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00268 { /* 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_c00268 { /* 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_c00268 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00268 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00268 {overflow:visible;}
  }
}
.c_c00268 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00268 { /* 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_c00268:after { /* webkit #35443 */
  content: '';
}
.t_c00268:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00268 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 */
}
.__c00268 { /* 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_c00268 { /* info for Javascript */
  display:none;
}
.l_c00268 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00268 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00268 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00268: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_c00268 {
    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_c00268.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00268.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_c00268 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00268{font-family:sans-serif;visibility:hidden;}
.sc__c00268{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
}
.y0_c00268{bottom:0.000000px;}
.h0_c00268{height:1166.759949px;}
.h1_c00268{height:1167.000000px;}
.w0_c00268{width:918.720063px;}
.w1_c00268{width:918.750000px;}
.x0_c00268{left:0.000000px;}
@media print{
.y0_c00268{bottom:0.000000pt;}
.h0_c00268{height:1037.119955pt;}
.h1_c00268{height:1037.333333pt;}
.w0_c00268{width:816.640056pt;}
.w1_c00268{width:816.666667pt;}
.x0_c00268{left:0.000000pt;}
}





/* 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_c00269 {
    display:none;
  }
  .loading-indicator_c00269.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00269 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_c00269 { 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_c00269" -> "#page-container .classname_c00269")
 */
.pf_c00269 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00269 { /* 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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00269 { /* 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_c00269 { /* 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_c00269 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00269 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00269 {overflow:visible;}
  }
}
.c_c00269 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00269 { /* 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_c00269:after { /* webkit #35443 */
  content: '';
}
.t_c00269:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00269 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 */
}
.__c00269 { /* 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_c00269 { /* info for Javascript */
  display:none;
}
.l_c00269 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00269 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00269 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00269: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_c00269 {
    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_c00269.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00269.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_c00269 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00269{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00269;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.000000;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;}
.m2d_c00269{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m92_c00269{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00269{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00269{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00269{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00269{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00269{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00269{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m96_c00269{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m61_c00269{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00269{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00269{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m75_c00269{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m58_c00269{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m64_c00269{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m97_c00269{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00269{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00269{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00269{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m54_c00269{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m88_c00269{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00269{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m7_c00269{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m86_c00269{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m30_c00269{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m89_c00269{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m32_c00269{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m46_c00269{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00269{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m51_c00269{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00269{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00269{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00269{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00269{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.me_c00269{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m78_c00269{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m48_c00269{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00269{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00269{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m70_c00269{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00269{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m47_c00269{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m99_c00269{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00269{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00269{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m20_c00269{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00269{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m25_c00269{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00269{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m76_c00269{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00269{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00269{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00269{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m82_c00269{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00269{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00269{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m98_c00269{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m80_c00269{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m56_c00269{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m94_c00269{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m12_c00269{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00269{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m21_c00269{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00269{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m41_c00269{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00269{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m24_c00269{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00269{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00269{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m83_c00269{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00269{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m29_c00269{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m77_c00269{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00269{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_c00269{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00269{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m23_c00269{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m31_c00269{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3_c00269{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m42_c00269{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m72_c00269{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19_c00269{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m71_c00269{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m50_c00269{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00269{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m84_c00269{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m53_c00269{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00269{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m44_c00269{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00269{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m10_c00269{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m93_c00269{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00269{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00269{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m69_c00269{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mf_c00269{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00269{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m59_c00269{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m65_c00269{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m60_c00269{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m17_c00269{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00269{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.mc_c00269{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00269{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00269{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00269{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00269{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m62_c00269{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00269{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m33_c00269{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m26_c00269{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m49_c00269{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00269{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m63_c00269{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00269{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m39_c00269{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m74_c00269{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m28_c00269{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00269{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m37_c00269{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m18_c00269{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m68_c00269{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00269{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00269{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m85_c00269{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m34_c00269{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00269{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m11_c00269{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00269{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c00269{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m27_c00269{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m40_c00269{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m90_c00269{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m13_c00269{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00269{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m57_c00269{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00269{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m55_c00269{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m43_c00269{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m79_c00269{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m73_c00269{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m14_c00269{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m81_c00269{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00269{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m45_c00269{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00269{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00269{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00269{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m87_c00269{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m95_c00269{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m38_c00269{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.m91_c00269{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00269{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.v0_c00269{vertical-align:0.000000px;}
.ls0_c00269{letter-spacing:0.000000px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{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__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00269{word-spacing:-4.500000px;}
.ws3_c00269{word-spacing:0.000000px;}
.ws0_c00269{word-spacing:7.375000px;}
.ws1_c00269{word-spacing:7.750000px;}
.fc0_c00269{color:transparent;}
.fs0_c00269{font-size:54.000000px;}
.y0_c00269{bottom:0.000000px;}
.y2b_c00269{bottom:149.100000px;}
.y2a_c00269{bottom:189.450000px;}
.y29_c00269{bottom:209.550000px;}
.y28_c00269{bottom:229.350000px;}
.y27_c00269{bottom:249.450000px;}
.y26_c00269{bottom:269.250000px;}
.y25_c00269{bottom:288.750000px;}
.y24_c00269{bottom:308.850000px;}
.y23_c00269{bottom:328.650000px;}
.y22_c00269{bottom:348.450000px;}
.y21_c00269{bottom:367.950000px;}
.y20_c00269{bottom:388.050000px;}
.y1f_c00269{bottom:407.550000px;}
.y1e_c00269{bottom:427.350000px;}
.y1d_c00269{bottom:447.450000px;}
.y1c_c00269{bottom:467.100000px;}
.y1b_c00269{bottom:486.900000px;}
.y1a_c00269{bottom:507.000000px;}
.y19_c00269{bottom:527.100000px;}
.y18_c00269{bottom:546.450000px;}
.y17_c00269{bottom:566.250000px;}
.y16_c00269{bottom:603.750000px;}
.y15_c00269{bottom:625.050000px;}
.y14_c00269{bottom:644.850000px;}
.y13_c00269{bottom:664.950000px;}
.y12_c00269{bottom:685.050000px;}
.y11_c00269{bottom:704.850000px;}
.y10_c00269{bottom:724.650000px;}
.yf_c00269{bottom:744.300000px;}
.ye_c00269{bottom:764.400000px;}
.yd_c00269{bottom:784.200000px;}
.yc_c00269{bottom:804.300000px;}
.yb_c00269{bottom:824.100000px;}
.ya_c00269{bottom:844.350000px;}
.y9_c00269{bottom:864.150000px;}
.y8_c00269{bottom:884.700000px;}
.y7_c00269{bottom:904.500000px;}
.y6_c00269{bottom:924.600000px;}
.y5_c00269{bottom:944.400000px;}
.y4_c00269{bottom:964.200000px;}
.y3_c00269{bottom:984.000000px;}
.y2_c00269{bottom:1004.100000px;}
.y1_c00269{bottom:1041.900000px;}
.h2_c00269{height:54.000000px;}
.h0_c00269{height:1166.759949px;}
.h1_c00269{height:1167.000000px;}
.w0_c00269{width:918.720063px;}
.w1_c00269{width:918.750000px;}
.x0_c00269{left:0.000000px;}
.x11b_c00269{left:88.200000px;}
.xd5_c00269{left:89.250000px;}
.x1e_c00269{left:90.450000px;}
.x3_c00269{left:91.800000px;}
.x11c_c00269{left:106.200000px;}
.xe9_c00269{left:108.900000px;}
.x1f_c00269{left:116.400000px;}
.xb7_c00269{left:118.500000px;}
.x4_c00269{left:119.850000px;}
.x48_c00269{left:121.200000px;}
.x71_c00269{left:122.700000px;}
.xfc_c00269{left:124.050000px;}
.x87_c00269{left:127.500000px;}
.x2e_c00269{left:129.450000px;}
.x54_c00269{left:130.950000px;}
.x99_c00269{left:133.200000px;}
.xa6_c00269{left:136.950000px;}
.x49_c00269{left:139.200000px;}
.xce_c00269{left:140.700000px;}
.x7c_c00269{left:145.500000px;}
.xf4_c00269{left:148.200000px;}
.x2f_c00269{left:150.000000px;}
.x61_c00269{left:152.550000px;}
.xb1_c00269{left:154.800000px;}
.x14_c00269{left:157.050000px;}
.xd6_c00269{left:158.400000px;}
.x3c_c00269{left:160.050000px;}
.x8f_c00269{left:162.600000px;}
.x7d_c00269{left:165.600000px;}
.xe2_c00269{left:167.250000px;}
.xc0_c00269{left:169.800000px;}
.x20_c00269{left:171.450000px;}
.x6e_c00269{left:173.850000px;}
.xb2_c00269{left:175.650000px;}
.x30_c00269{left:178.800000px;}
.x55_c00269{left:182.100000px;}
.x5_c00269{left:186.750000px;}
.x9c_c00269{left:188.700000px;}
.x4a_c00269{left:190.350000px;}
.x15_c00269{left:193.350000px;}
.xd2_c00269{left:194.850000px;}
.x72_c00269{left:196.200000px;}
.xcf_c00269{left:197.550000px;}
.xb3_c00269{left:199.050000px;}
.x56_c00269{left:200.850000px;}
.x11d_c00269{left:203.850000px;}
.xb8_c00269{left:208.500000px;}
.x7e_c00269{left:210.900000px;}
.x3d_c00269{left:212.550000px;}
.x57_c00269{left:213.750000px;}
.x122_c00269{left:215.250000px;}
.x73_c00269{left:219.300000px;}
.x7f_c00269{left:222.750000px;}
.x9a_c00269{left:223.950000px;}
.xf5_c00269{left:226.650000px;}
.x90_c00269{left:227.700000px;}
.x118_c00269{left:229.800000px;}
.xe3_c00269{left:231.750000px;}
.xab_c00269{left:233.550000px;}
.x62_c00269{left:236.400000px;}
.x21_c00269{left:238.050000px;}
.xd7_c00269{left:241.500000px;}
.x123_c00269{left:242.700000px;}
.x6_c00269{left:244.050000px;}
.xa7_c00269{left:246.300000px;}
.x6f_c00269{left:247.650000px;}
.x31_c00269{left:249.300000px;}
.xea_c00269{left:250.350000px;}
.x58_c00269{left:254.850000px;}
.x7_c00269{left:261.300000px;}
.xd8_c00269{left:263.100000px;}
.x11e_c00269{left:265.500000px;}
.x63_c00269{left:267.000000px;}
.x32_c00269{left:268.800000px;}
.x105_c00269{left:269.850000px;}
.x91_c00269{left:270.900000px;}
.x16_c00269{left:272.850000px;}
.x80_c00269{left:274.650000px;}
.x59_c00269{left:276.150000px;}
.x9d_c00269{left:278.400000px;}
.x74_c00269{left:281.250000px;}
.x88_c00269{left:282.300000px;}
.xef_c00269{left:283.650000px;}
.x64_c00269{left:284.700000px;}
.x8_c00269{left:286.800000px;}
.x4b_c00269{left:288.600000px;}
.x92_c00269{left:291.000000px;}
.x119_c00269{left:292.800000px;}
.x3e_c00269{left:293.850000px;}
.x22_c00269{left:296.400000px;}
.xc1_c00269{left:297.750000px;}
.xc8_c00269{left:300.000000px;}
.x65_c00269{left:301.950000px;}
.x10a_c00269{left:304.650000px;}
.x5a_c00269{left:306.000000px;}
.xd9_c00269{left:307.350000px;}
.x17_c00269{left:310.950000px;}
.x75_c00269{left:312.900000px;}
.xc2_c00269{left:316.500000px;}
.xb4_c00269{left:317.850000px;}
.x23_c00269{left:319.500000px;}
.x9b_c00269{left:322.200000px;}
.x9e_c00269{left:324.150000px;}
.xe4_c00269{left:325.350000px;}
.x100_c00269{left:327.600000px;}
.x9_c00269{left:329.250000px;}
.x33_c00269{left:331.800000px;}
.x10b_c00269{left:333.750000px;}
.x70_c00269{left:335.550000px;}
.x106_c00269{left:338.250000px;}
.x3f_c00269{left:342.150000px;}
.xb9_c00269{left:343.200000px;}
.x4c_c00269{left:344.400000px;}
.x128_c00269{left:345.900000px;}
.xac_c00269{left:348.000000px;}
.xba_c00269{left:355.050000px;}
.x66_c00269{left:356.700000px;}
.x93_c00269{left:358.650000px;}
.x18_c00269{left:361.050000px;}
.xeb_c00269{left:362.400000px;}
.xa_c00269{left:364.200000px;}
.x89_c00269{left:366.600000px;}
.xd0_c00269{left:368.850000px;}
.xf6_c00269{left:371.850000px;}
.xda_c00269{left:373.200000px;}
.xc3_c00269{left:376.200000px;}
.xad_c00269{left:379.350000px;}
.x4d_c00269{left:380.700000px;}
.x34_c00269{left:381.900000px;}
.x76_c00269{left:384.300000px;}
.x19_c00269{left:385.500000px;}
.x24_c00269{left:388.200000px;}
.x9f_c00269{left:390.750000px;}
.xbb_c00269{left:391.800000px;}
.xf7_c00269{left:393.150000px;}
.x8a_c00269{left:396.150000px;}
.xc4_c00269{left:397.500000px;}
.x1_c00269{left:399.300000px;}
.xc9_c00269{left:403.350000px;}
.x77_c00269{left:408.000000px;}
.xf0_c00269{left:409.650000px;}
.xd3_c00269{left:411.150000px;}
.x40_c00269{left:413.400000px;}
.x110_c00269{left:414.900000px;}
.x129_c00269{left:419.700000px;}
.x25_c00269{left:420.900000px;}
.x67_c00269{left:423.600000px;}
.xa0_c00269{left:426.000000px;}
.x124_c00269{left:427.050000px;}
.xec_c00269{left:428.700000px;}
.xd1_c00269{left:429.750000px;}
.x41_c00269{left:431.100000px;}
.x4e_c00269{left:433.200000px;}
.x26_c00269{left:436.050000px;}
.xb_c00269{left:439.050000px;}
.x94_c00269{left:440.400000px;}
.xca_c00269{left:441.450000px;}
.xdb_c00269{left:443.100000px;}
.x5b_c00269{left:444.600000px;}
.xb5_c00269{left:446.700000px;}
.x8b_c00269{left:449.400000px;}
.x1a_c00269{left:454.200000px;}
.xfd_c00269{left:455.850000px;}
.xe5_c00269{left:457.500000px;}
.xc_c00269{left:460.350000px;}
.x4f_c00269{left:461.700000px;}
.x95_c00269{left:462.750000px;}
.x12a_c00269{left:465.750000px;}
.x81_c00269{left:466.800000px;}
.x101_c00269{left:468.300000px;}
.xa8_c00269{left:469.500000px;}
.xbc_c00269{left:471.600000px;}
.x114_c00269{left:473.400000px;}
.x10c_c00269{left:475.950000px;}
.xdc_c00269{left:479.100000px;}
.xa1_c00269{left:481.800000px;}
.x68_c00269{left:483.300000px;}
.x82_c00269{left:484.800000px;}
.x8c_c00269{left:486.150000px;}
.x27_c00269{left:487.950000px;}
.xfe_c00269{left:489.750000px;}
.xf8_c00269{left:491.100000px;}
.x42_c00269{left:492.300000px;}
.xf1_c00269{left:494.250000px;}
.x5c_c00269{left:495.300000px;}
.x28_c00269{left:498.750000px;}
.xd_c00269{left:502.500000px;}
.xa9_c00269{left:504.750000px;}
.x35_c00269{left:507.600000px;}
.x102_c00269{left:508.950000px;}
.x1b_c00269{left:512.100000px;}
.x11f_c00269{left:513.600000px;}
.xf9_c00269{left:514.800000px;}
.x126_c00269{left:516.000000px;}
.x43_c00269{left:520.800000px;}
.xed_c00269{left:521.850000px;}
.xe_c00269{left:523.350000px;}
.x125_c00269{left:525.300000px;}
.x96_c00269{left:526.800000px;}
.xc5_c00269{left:528.150000px;}
.xdd_c00269{left:531.000000px;}
.x29_c00269{left:533.250000px;}
.x36_c00269{left:535.650000px;}
.xbd_c00269{left:537.450000px;}
.xcb_c00269{left:539.850000px;}
.xe6_c00269{left:543.150000px;}
.x8d_c00269{left:544.500000px;}
.x69_c00269{left:545.850000px;}
.xf_c00269{left:551.100000px;}
.x111_c00269{left:554.100000px;}
.xcc_c00269{left:557.100000px;}
.x97_c00269{left:558.450000px;}
.x83_c00269{left:559.650000px;}
.x103_c00269{left:562.950000px;}
.xae_c00269{left:564.900000px;}
.x6a_c00269{left:565.950000px;}
.x115_c00269{left:567.300000px;}
.x37_c00269{left:569.100000px;}
.x78_c00269{left:570.300000px;}
.xde_c00269{left:571.350000px;}
.xff_c00269{left:572.550000px;}
.x2a_c00269{left:575.700000px;}
.x112_c00269{left:579.600000px;}
.xb6_c00269{left:583.650000px;}
.x44_c00269{left:585.300000px;}
.x116_c00269{left:586.800000px;}
.xf2_c00269{left:587.850000px;}
.xa2_c00269{left:589.050000px;}
.x38_c00269{left:591.000000px;}
.xfa_c00269{left:592.950000px;}
.x6b_c00269{left:594.750000px;}
.x5d_c00269{left:597.150000px;}
.x79_c00269{left:602.700000px;}
.xee_c00269{left:604.200000px;}
.x107_c00269{left:606.000000px;}
.xaa_c00269{left:607.050000px;}
.xdf_c00269{left:608.400000px;}
.xa3_c00269{left:611.700000px;}
.x2b_c00269{left:612.750000px;}
.x117_c00269{left:614.550000px;}
.x50_c00269{left:615.750000px;}
.x84_c00269{left:617.250000px;}
.xc6_c00269{left:618.450000px;}
.x1c_c00269{left:620.400000px;}
.x7a_c00269{left:621.750000px;}
.x108_c00269{left:623.700000px;}
.x5e_c00269{left:625.950000px;}
.xe7_c00269{left:629.100000px;}
.x39_c00269{left:632.100000px;}
.xe0_c00269{left:634.350000px;}
.xfb_c00269{left:635.850000px;}
.x85_c00269{left:637.050000px;}
.x10_c00269{left:638.250000px;}
.x8e_c00269{left:639.600000px;}
.x120_c00269{left:640.950000px;}
.x10d_c00269{left:644.850000px;}
.x11a_c00269{left:648.600000px;}
.x2c_c00269{left:650.850000px;}
.x3a_c00269{left:653.700000px;}
.x104_c00269{left:656.550000px;}
.x11_c00269{left:658.050000px;}
.x51_c00269{left:662.250000px;}
.x7b_c00269{left:663.900000px;}
.xaf_c00269{left:665.700000px;}
.x45_c00269{left:668.850000px;}
.xe8_c00269{left:670.800000px;}
.xf3_c00269{left:672.000000px;}
.x98_c00269{left:673.200000px;}
.x52_c00269{left:676.650000px;}
.x10e_c00269{left:679.350000px;}
.xcd_c00269{left:681.750000px;}
.x3b_c00269{left:683.550000px;}
.x113_c00269{left:686.550000px;}
.x121_c00269{left:692.400000px;}
.x6c_c00269{left:695.550000px;}
.xb0_c00269{left:696.600000px;}
.xbe_c00269{left:697.950000px;}
.x5f_c00269{left:699.750000px;}
.x12_c00269{left:702.000000px;}
.xa4_c00269{left:706.350000px;}
.xc7_c00269{left:709.200000px;}
.xe1_c00269{left:711.300000px;}
.x10f_c00269{left:717.450000px;}
.x46_c00269{left:718.500000px;}
.x60_c00269{left:719.550000px;}
.x1d_c00269{left:721.950000px;}
.x6d_c00269{left:723.600000px;}
.x2d_c00269{left:724.650000px;}
.x86_c00269{left:726.600000px;}
.xa5_c00269{left:729.450000px;}
.x2_c00269{left:732.600000px;}
.xbf_c00269{left:736.500000px;}
.x127_c00269{left:739.500000px;}
.x109_c00269{left:743.700000px;}
.x13_c00269{left:744.900000px;}
.xd4_c00269{left:749.100000px;}
.x53_c00269{left:750.150000px;}
.x47_c00269{left:753.000000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws2_c00269{word-spacing:-4.000000pt;}
.ws3_c00269{word-spacing:0.000000pt;}
.ws0_c00269{word-spacing:6.555556pt;}
.ws1_c00269{word-spacing:6.888889pt;}
.fs0_c00269{font-size:48.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y2b_c00269{bottom:132.533333pt;}
.y2a_c00269{bottom:168.400000pt;}
.y29_c00269{bottom:186.266667pt;}
.y28_c00269{bottom:203.866667pt;}
.y27_c00269{bottom:221.733333pt;}
.y26_c00269{bottom:239.333333pt;}
.y25_c00269{bottom:256.666667pt;}
.y24_c00269{bottom:274.533333pt;}
.y23_c00269{bottom:292.133333pt;}
.y22_c00269{bottom:309.733333pt;}
.y21_c00269{bottom:327.066667pt;}
.y20_c00269{bottom:344.933333pt;}
.y1f_c00269{bottom:362.266667pt;}
.y1e_c00269{bottom:379.866667pt;}
.y1d_c00269{bottom:397.733333pt;}
.y1c_c00269{bottom:415.200000pt;}
.y1b_c00269{bottom:432.800000pt;}
.y1a_c00269{bottom:450.666667pt;}
.y19_c00269{bottom:468.533333pt;}
.y18_c00269{bottom:485.733333pt;}
.y17_c00269{bottom:503.333333pt;}
.y16_c00269{bottom:536.666667pt;}
.y15_c00269{bottom:555.600000pt;}
.y14_c00269{bottom:573.200000pt;}
.y13_c00269{bottom:591.066667pt;}
.y12_c00269{bottom:608.933333pt;}
.y11_c00269{bottom:626.533333pt;}
.y10_c00269{bottom:644.133333pt;}
.yf_c00269{bottom:661.600000pt;}
.ye_c00269{bottom:679.466667pt;}
.yd_c00269{bottom:697.066667pt;}
.yc_c00269{bottom:714.933333pt;}
.yb_c00269{bottom:732.533333pt;}
.ya_c00269{bottom:750.533333pt;}
.y9_c00269{bottom:768.133333pt;}
.y8_c00269{bottom:786.400000pt;}
.y7_c00269{bottom:804.000000pt;}
.y6_c00269{bottom:821.866667pt;}
.y5_c00269{bottom:839.466667pt;}
.y4_c00269{bottom:857.066667pt;}
.y3_c00269{bottom:874.666667pt;}
.y2_c00269{bottom:892.533333pt;}
.y1_c00269{bottom:926.133333pt;}
.h2_c00269{height:48.000000pt;}
.h0_c00269{height:1037.119955pt;}
.h1_c00269{height:1037.333333pt;}
.w0_c00269{width:816.640056pt;}
.w1_c00269{width:816.666667pt;}
.x0_c00269{left:0.000000pt;}
.x11b_c00269{left:78.400000pt;}
.xd5_c00269{left:79.333333pt;}
.x1e_c00269{left:80.400000pt;}
.x3_c00269{left:81.600000pt;}
.x11c_c00269{left:94.400000pt;}
.xe9_c00269{left:96.800000pt;}
.x1f_c00269{left:103.466667pt;}
.xb7_c00269{left:105.333333pt;}
.x4_c00269{left:106.533333pt;}
.x48_c00269{left:107.733333pt;}
.x71_c00269{left:109.066667pt;}
.xfc_c00269{left:110.266667pt;}
.x87_c00269{left:113.333333pt;}
.x2e_c00269{left:115.066667pt;}
.x54_c00269{left:116.400000pt;}
.x99_c00269{left:118.400000pt;}
.xa6_c00269{left:121.733333pt;}
.x49_c00269{left:123.733333pt;}
.xce_c00269{left:125.066667pt;}
.x7c_c00269{left:129.333333pt;}
.xf4_c00269{left:131.733333pt;}
.x2f_c00269{left:133.333333pt;}
.x61_c00269{left:135.600000pt;}
.xb1_c00269{left:137.600000pt;}
.x14_c00269{left:139.600000pt;}
.xd6_c00269{left:140.800000pt;}
.x3c_c00269{left:142.266667pt;}
.x8f_c00269{left:144.533333pt;}
.x7d_c00269{left:147.200000pt;}
.xe2_c00269{left:148.666667pt;}
.xc0_c00269{left:150.933333pt;}
.x20_c00269{left:152.400000pt;}
.x6e_c00269{left:154.533333pt;}
.xb2_c00269{left:156.133333pt;}
.x30_c00269{left:158.933333pt;}
.x55_c00269{left:161.866667pt;}
.x5_c00269{left:166.000000pt;}
.x9c_c00269{left:167.733333pt;}
.x4a_c00269{left:169.200000pt;}
.x15_c00269{left:171.866667pt;}
.xd2_c00269{left:173.200000pt;}
.x72_c00269{left:174.400000pt;}
.xcf_c00269{left:175.600000pt;}
.xb3_c00269{left:176.933333pt;}
.x56_c00269{left:178.533333pt;}
.x11d_c00269{left:181.200000pt;}
.xb8_c00269{left:185.333333pt;}
.x7e_c00269{left:187.466667pt;}
.x3d_c00269{left:188.933333pt;}
.x57_c00269{left:190.000000pt;}
.x122_c00269{left:191.333333pt;}
.x73_c00269{left:194.933333pt;}
.x7f_c00269{left:198.000000pt;}
.x9a_c00269{left:199.066667pt;}
.xf5_c00269{left:201.466667pt;}
.x90_c00269{left:202.400000pt;}
.x118_c00269{left:204.266667pt;}
.xe3_c00269{left:206.000000pt;}
.xab_c00269{left:207.600000pt;}
.x62_c00269{left:210.133333pt;}
.x21_c00269{left:211.600000pt;}
.xd7_c00269{left:214.666667pt;}
.x123_c00269{left:215.733333pt;}
.x6_c00269{left:216.933333pt;}
.xa7_c00269{left:218.933333pt;}
.x6f_c00269{left:220.133333pt;}
.x31_c00269{left:221.600000pt;}
.xea_c00269{left:222.533333pt;}
.x58_c00269{left:226.533333pt;}
.x7_c00269{left:232.266667pt;}
.xd8_c00269{left:233.866667pt;}
.x11e_c00269{left:236.000000pt;}
.x63_c00269{left:237.333333pt;}
.x32_c00269{left:238.933333pt;}
.x105_c00269{left:239.866667pt;}
.x91_c00269{left:240.800000pt;}
.x16_c00269{left:242.533333pt;}
.x80_c00269{left:244.133333pt;}
.x59_c00269{left:245.466667pt;}
.x9d_c00269{left:247.466667pt;}
.x74_c00269{left:250.000000pt;}
.x88_c00269{left:250.933333pt;}
.xef_c00269{left:252.133333pt;}
.x64_c00269{left:253.066667pt;}
.x8_c00269{left:254.933333pt;}
.x4b_c00269{left:256.533333pt;}
.x92_c00269{left:258.666667pt;}
.x119_c00269{left:260.266667pt;}
.x3e_c00269{left:261.200000pt;}
.x22_c00269{left:263.466667pt;}
.xc1_c00269{left:264.666667pt;}
.xc8_c00269{left:266.666667pt;}
.x65_c00269{left:268.400000pt;}
.x10a_c00269{left:270.800000pt;}
.x5a_c00269{left:272.000000pt;}
.xd9_c00269{left:273.200000pt;}
.x17_c00269{left:276.400000pt;}
.x75_c00269{left:278.133333pt;}
.xc2_c00269{left:281.333333pt;}
.xb4_c00269{left:282.533333pt;}
.x23_c00269{left:284.000000pt;}
.x9b_c00269{left:286.400000pt;}
.x9e_c00269{left:288.133333pt;}
.xe4_c00269{left:289.200000pt;}
.x100_c00269{left:291.200000pt;}
.x9_c00269{left:292.666667pt;}
.x33_c00269{left:294.933333pt;}
.x10b_c00269{left:296.666667pt;}
.x70_c00269{left:298.266667pt;}
.x106_c00269{left:300.666667pt;}
.x3f_c00269{left:304.133333pt;}
.xb9_c00269{left:305.066667pt;}
.x4c_c00269{left:306.133333pt;}
.x128_c00269{left:307.466667pt;}
.xac_c00269{left:309.333333pt;}
.xba_c00269{left:315.600000pt;}
.x66_c00269{left:317.066667pt;}
.x93_c00269{left:318.800000pt;}
.x18_c00269{left:320.933333pt;}
.xeb_c00269{left:322.133333pt;}
.xa_c00269{left:323.733333pt;}
.x89_c00269{left:325.866667pt;}
.xd0_c00269{left:327.866667pt;}
.xf6_c00269{left:330.533333pt;}
.xda_c00269{left:331.733333pt;}
.xc3_c00269{left:334.400000pt;}
.xad_c00269{left:337.200000pt;}
.x4d_c00269{left:338.400000pt;}
.x34_c00269{left:339.466667pt;}
.x76_c00269{left:341.600000pt;}
.x19_c00269{left:342.666667pt;}
.x24_c00269{left:345.066667pt;}
.x9f_c00269{left:347.333333pt;}
.xbb_c00269{left:348.266667pt;}
.xf7_c00269{left:349.466667pt;}
.x8a_c00269{left:352.133333pt;}
.xc4_c00269{left:353.333333pt;}
.x1_c00269{left:354.933333pt;}
.xc9_c00269{left:358.533333pt;}
.x77_c00269{left:362.666667pt;}
.xf0_c00269{left:364.133333pt;}
.xd3_c00269{left:365.466667pt;}
.x40_c00269{left:367.466667pt;}
.x110_c00269{left:368.800000pt;}
.x129_c00269{left:373.066667pt;}
.x25_c00269{left:374.133333pt;}
.x67_c00269{left:376.533333pt;}
.xa0_c00269{left:378.666667pt;}
.x124_c00269{left:379.600000pt;}
.xec_c00269{left:381.066667pt;}
.xd1_c00269{left:382.000000pt;}
.x41_c00269{left:383.200000pt;}
.x4e_c00269{left:385.066667pt;}
.x26_c00269{left:387.600000pt;}
.xb_c00269{left:390.266667pt;}
.x94_c00269{left:391.466667pt;}
.xca_c00269{left:392.400000pt;}
.xdb_c00269{left:393.866667pt;}
.x5b_c00269{left:395.200000pt;}
.xb5_c00269{left:397.066667pt;}
.x8b_c00269{left:399.466667pt;}
.x1a_c00269{left:403.733333pt;}
.xfd_c00269{left:405.200000pt;}
.xe5_c00269{left:406.666667pt;}
.xc_c00269{left:409.200000pt;}
.x4f_c00269{left:410.400000pt;}
.x95_c00269{left:411.333333pt;}
.x12a_c00269{left:414.000000pt;}
.x81_c00269{left:414.933333pt;}
.x101_c00269{left:416.266667pt;}
.xa8_c00269{left:417.333333pt;}
.xbc_c00269{left:419.200000pt;}
.x114_c00269{left:420.800000pt;}
.x10c_c00269{left:423.066667pt;}
.xdc_c00269{left:425.866667pt;}
.xa1_c00269{left:428.266667pt;}
.x68_c00269{left:429.600000pt;}
.x82_c00269{left:430.933333pt;}
.x8c_c00269{left:432.133333pt;}
.x27_c00269{left:433.733333pt;}
.xfe_c00269{left:435.333333pt;}
.xf8_c00269{left:436.533333pt;}
.x42_c00269{left:437.600000pt;}
.xf1_c00269{left:439.333333pt;}
.x5c_c00269{left:440.266667pt;}
.x28_c00269{left:443.333333pt;}
.xd_c00269{left:446.666667pt;}
.xa9_c00269{left:448.666667pt;}
.x35_c00269{left:451.200000pt;}
.x102_c00269{left:452.400000pt;}
.x1b_c00269{left:455.200000pt;}
.x11f_c00269{left:456.533333pt;}
.xf9_c00269{left:457.600000pt;}
.x126_c00269{left:458.666667pt;}
.x43_c00269{left:462.933333pt;}
.xed_c00269{left:463.866667pt;}
.xe_c00269{left:465.200000pt;}
.x125_c00269{left:466.933333pt;}
.x96_c00269{left:468.266667pt;}
.xc5_c00269{left:469.466667pt;}
.xdd_c00269{left:472.000000pt;}
.x29_c00269{left:474.000000pt;}
.x36_c00269{left:476.133333pt;}
.xbd_c00269{left:477.733333pt;}
.xcb_c00269{left:479.866667pt;}
.xe6_c00269{left:482.800000pt;}
.x8d_c00269{left:484.000000pt;}
.x69_c00269{left:485.200000pt;}
.xf_c00269{left:489.866667pt;}
.x111_c00269{left:492.533333pt;}
.xcc_c00269{left:495.200000pt;}
.x97_c00269{left:496.400000pt;}
.x83_c00269{left:497.466667pt;}
.x103_c00269{left:500.400000pt;}
.xae_c00269{left:502.133333pt;}
.x6a_c00269{left:503.066667pt;}
.x115_c00269{left:504.266667pt;}
.x37_c00269{left:505.866667pt;}
.x78_c00269{left:506.933333pt;}
.xde_c00269{left:507.866667pt;}
.xff_c00269{left:508.933333pt;}
.x2a_c00269{left:511.733333pt;}
.x112_c00269{left:515.200000pt;}
.xb6_c00269{left:518.800000pt;}
.x44_c00269{left:520.266667pt;}
.x116_c00269{left:521.600000pt;}
.xf2_c00269{left:522.533333pt;}
.xa2_c00269{left:523.600000pt;}
.x38_c00269{left:525.333333pt;}
.xfa_c00269{left:527.066667pt;}
.x6b_c00269{left:528.666667pt;}
.x5d_c00269{left:530.800000pt;}
.x79_c00269{left:535.733333pt;}
.xee_c00269{left:537.066667pt;}
.x107_c00269{left:538.666667pt;}
.xaa_c00269{left:539.600000pt;}
.xdf_c00269{left:540.800000pt;}
.xa3_c00269{left:543.733333pt;}
.x2b_c00269{left:544.666667pt;}
.x117_c00269{left:546.266667pt;}
.x50_c00269{left:547.333333pt;}
.x84_c00269{left:548.666667pt;}
.xc6_c00269{left:549.733333pt;}
.x1c_c00269{left:551.466667pt;}
.x7a_c00269{left:552.666667pt;}
.x108_c00269{left:554.400000pt;}
.x5e_c00269{left:556.400000pt;}
.xe7_c00269{left:559.200000pt;}
.x39_c00269{left:561.866667pt;}
.xe0_c00269{left:563.866667pt;}
.xfb_c00269{left:565.200000pt;}
.x85_c00269{left:566.266667pt;}
.x10_c00269{left:567.333333pt;}
.x8e_c00269{left:568.533333pt;}
.x120_c00269{left:569.733333pt;}
.x10d_c00269{left:573.200000pt;}
.x11a_c00269{left:576.533333pt;}
.x2c_c00269{left:578.533333pt;}
.x3a_c00269{left:581.066667pt;}
.x104_c00269{left:583.600000pt;}
.x11_c00269{left:584.933333pt;}
.x51_c00269{left:588.666667pt;}
.x7b_c00269{left:590.133333pt;}
.xaf_c00269{left:591.733333pt;}
.x45_c00269{left:594.533333pt;}
.xe8_c00269{left:596.266667pt;}
.xf3_c00269{left:597.333333pt;}
.x98_c00269{left:598.400000pt;}
.x52_c00269{left:601.466667pt;}
.x10e_c00269{left:603.866667pt;}
.xcd_c00269{left:606.000000pt;}
.x3b_c00269{left:607.600000pt;}
.x113_c00269{left:610.266667pt;}
.x121_c00269{left:615.466667pt;}
.x6c_c00269{left:618.266667pt;}
.xb0_c00269{left:619.200000pt;}
.xbe_c00269{left:620.400000pt;}
.x5f_c00269{left:622.000000pt;}
.x12_c00269{left:624.000000pt;}
.xa4_c00269{left:627.866667pt;}
.xc7_c00269{left:630.400000pt;}
.xe1_c00269{left:632.266667pt;}
.x10f_c00269{left:637.733333pt;}
.x46_c00269{left:638.666667pt;}
.x60_c00269{left:639.600000pt;}
.x1d_c00269{left:641.733333pt;}
.x6d_c00269{left:643.200000pt;}
.x2d_c00269{left:644.133333pt;}
.x86_c00269{left:645.866667pt;}
.xa5_c00269{left:648.400000pt;}
.x2_c00269{left:651.200000pt;}
.xbf_c00269{left:654.666667pt;}
.x127_c00269{left:657.333333pt;}
.x109_c00269{left:661.066667pt;}
.x13_c00269{left:662.133333pt;}
.xd4_c00269{left:665.866667pt;}
.x53_c00269{left:666.800000pt;}
.x47_c00269{left:669.333333pt;}
}





/* 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_c00270 {
    display:none;
  }
  .loading-indicator_c00270.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00270 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_c00270 { 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_c00270" -> "#page-container .classname_c00270")
 */
.pf_c00270 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00270 { /* 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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00270 { /* 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_c00270 { /* 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_c00270 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00270 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00270 {overflow:visible;}
  }
}
.c_c00270 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00270 { /* 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_c00270:after { /* webkit #35443 */
  content: '';
}
.t_c00270:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00270 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 */
}
.__c00270 { /* 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_c00270 { /* info for Javascript */
  display:none;
}
.l_c00270 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00270 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00270 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00270: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_c00270 {
    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_c00270.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00270.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_c00270 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00270{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00270;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.000000;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;}
.m2c_c00270{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00270{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb_c00270{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m19_c00270{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5_c00270{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m24_c00270{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m14_c00270{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00270{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00270{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00270{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00270{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m13_c00270{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4_c00270{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8_c00270{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00270{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00270{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m12_c00270{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00270{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00270{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00270{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc_c00270{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00270{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);}
.m9_c00270{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00270{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma_c00270{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m18_c00270{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00270{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00270{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m30_c00270{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00270{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.md_c00270{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m17_c00270{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m16_c00270{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m22_c00270{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m25_c00270{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m21_c00270{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m20_c00270{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00270{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6_c00270{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.mf_c00270{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00270{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3_c00270{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00270{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7_c00270{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00270{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00270{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m23_c00270{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m0_c00270{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00270{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.v0_c00270{vertical-align:0.000000px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{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__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00270{word-spacing:0.000000px;}
.ws0_c00270{word-spacing:4.537019px;}
.fc0_c00270{color:transparent;}
.fs0_c00270{font-size:54.000000px;}
.y0_c00270{bottom:0.000000px;}
.y7_c00270{bottom:902.550000px;}
.y6_c00270{bottom:922.050000px;}
.y5_c00270{bottom:941.850000px;}
.y4_c00270{bottom:961.950000px;}
.y3_c00270{bottom:981.450000px;}
.y2_c00270{bottom:1002.300000px;}
.y1_c00270{bottom:1040.400000px;}
.h2_c00270{height:54.000000px;}
.h0_c00270{height:1166.759949px;}
.h1_c00270{height:1167.000000px;}
.w0_c00270{width:918.720063px;}
.w1_c00270{width:918.750000px;}
.x0_c00270{left:0.000000px;}
.x3_c00270{left:151.200000px;}
.x1_c00270{left:152.250000px;}
.x10_c00270{left:173.250000px;}
.x1b_c00270{left:183.300000px;}
.x36_c00270{left:189.150000px;}
.x44_c00270{left:200.550000px;}
.x4_c00270{left:204.450000px;}
.x1c_c00270{left:207.450000px;}
.x2a_c00270{left:219.000000px;}
.x45_c00270{left:230.400000px;}
.x5_c00270{left:236.850000px;}
.x37_c00270{left:252.450000px;}
.x1d_c00270{left:262.500000px;}
.x46_c00270{left:265.350000px;}
.x11_c00270{left:266.850000px;}
.x38_c00270{left:273.300000px;}
.x2b_c00270{left:274.500000px;}
.x6_c00270{left:285.150000px;}
.x1e_c00270{left:291.000000px;}
.x2c_c00270{left:295.800000px;}
.x39_c00270{left:302.400000px;}
.x12_c00270{left:304.350000px;}
.x7_c00270{left:308.250000px;}
.x2d_c00270{left:313.050000px;}
.x47_c00270{left:330.900000px;}
.x13_c00270{left:332.400000px;}
.x1f_c00270{left:345.300000px;}
.x2e_c00270{left:364.950000px;}
.x14_c00270{left:375.600000px;}
.x20_c00270{left:386.400000px;}
.x15_c00270{left:395.400000px;}
.x3a_c00270{left:399.900000px;}
.x21_c00270{left:408.000000px;}
.x48_c00270{left:409.350000px;}
.x2f_c00270{left:411.750000px;}
.x8_c00270{left:420.150000px;}
.x16_c00270{left:423.150000px;}
.x30_c00270{left:433.050000px;}
.x3b_c00270{left:444.600000px;}
.x2_c00270{left:446.400000px;}
.x9_c00270{left:452.550000px;}
.x17_c00270{left:469.200000px;}
.x3c_c00270{left:471.600000px;}
.xa_c00270{left:474.150000px;}
.x22_c00270{left:491.550000px;}
.x31_c00270{left:499.350000px;}
.x18_c00270{left:520.350000px;}
.x23_c00270{left:523.950000px;}
.x3d_c00270{left:527.700000px;}
.x19_c00270{left:540.150000px;}
.x32_c00270{left:544.050000px;}
.xb_c00270{left:553.350000px;}
.x33_c00270{left:575.700000px;}
.x3e_c00270{left:583.800000px;}
.x1a_c00270{left:585.150000px;}
.x24_c00270{left:602.400000px;}
.x3f_c00270{left:604.350000px;}
.xc_c00270{left:632.250000px;}
.x25_c00270{left:635.850000px;}
.x34_c00270{left:646.200000px;}
.x26_c00270{left:656.400000px;}
.x35_c00270{left:666.300000px;}
.x40_c00270{left:685.350000px;}
.xd_c00270{left:703.200000px;}
.x27_c00270{left:710.100000px;}
.x41_c00270{left:714.150000px;}
.xe_c00270{left:725.100000px;}
.x28_c00270{left:732.000000px;}
.x42_c00270{left:766.350000px;}
.xf_c00270{left:774.450000px;}
.x29_c00270{left:787.800000px;}
.x43_c00270{left:803.850000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws1_c00270{word-spacing:0.000000pt;}
.ws0_c00270{word-spacing:4.032906pt;}
.fs0_c00270{font-size:48.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y7_c00270{bottom:802.266667pt;}
.y6_c00270{bottom:819.600000pt;}
.y5_c00270{bottom:837.200000pt;}
.y4_c00270{bottom:855.066667pt;}
.y3_c00270{bottom:872.400000pt;}
.y2_c00270{bottom:890.933333pt;}
.y1_c00270{bottom:924.800000pt;}
.h2_c00270{height:48.000000pt;}
.h0_c00270{height:1037.119955pt;}
.h1_c00270{height:1037.333333pt;}
.w0_c00270{width:816.640056pt;}
.w1_c00270{width:816.666667pt;}
.x0_c00270{left:0.000000pt;}
.x3_c00270{left:134.400000pt;}
.x1_c00270{left:135.333333pt;}
.x10_c00270{left:154.000000pt;}
.x1b_c00270{left:162.933333pt;}
.x36_c00270{left:168.133333pt;}
.x44_c00270{left:178.266667pt;}
.x4_c00270{left:181.733333pt;}
.x1c_c00270{left:184.400000pt;}
.x2a_c00270{left:194.666667pt;}
.x45_c00270{left:204.800000pt;}
.x5_c00270{left:210.533333pt;}
.x37_c00270{left:224.400000pt;}
.x1d_c00270{left:233.333333pt;}
.x46_c00270{left:235.866667pt;}
.x11_c00270{left:237.200000pt;}
.x38_c00270{left:242.933333pt;}
.x2b_c00270{left:244.000000pt;}
.x6_c00270{left:253.466667pt;}
.x1e_c00270{left:258.666667pt;}
.x2c_c00270{left:262.933333pt;}
.x39_c00270{left:268.800000pt;}
.x12_c00270{left:270.533333pt;}
.x7_c00270{left:274.000000pt;}
.x2d_c00270{left:278.266667pt;}
.x47_c00270{left:294.133333pt;}
.x13_c00270{left:295.466667pt;}
.x1f_c00270{left:306.933333pt;}
.x2e_c00270{left:324.400000pt;}
.x14_c00270{left:333.866667pt;}
.x20_c00270{left:343.466667pt;}
.x15_c00270{left:351.466667pt;}
.x3a_c00270{left:355.466667pt;}
.x21_c00270{left:362.666667pt;}
.x48_c00270{left:363.866667pt;}
.x2f_c00270{left:366.000000pt;}
.x8_c00270{left:373.466667pt;}
.x16_c00270{left:376.133333pt;}
.x30_c00270{left:384.933333pt;}
.x3b_c00270{left:395.200000pt;}
.x2_c00270{left:396.800000pt;}
.x9_c00270{left:402.266667pt;}
.x17_c00270{left:417.066667pt;}
.x3c_c00270{left:419.200000pt;}
.xa_c00270{left:421.466667pt;}
.x22_c00270{left:436.933333pt;}
.x31_c00270{left:443.866667pt;}
.x18_c00270{left:462.533333pt;}
.x23_c00270{left:465.733333pt;}
.x3d_c00270{left:469.066667pt;}
.x19_c00270{left:480.133333pt;}
.x32_c00270{left:483.600000pt;}
.xb_c00270{left:491.866667pt;}
.x33_c00270{left:511.733333pt;}
.x3e_c00270{left:518.933333pt;}
.x1a_c00270{left:520.133333pt;}
.x24_c00270{left:535.466667pt;}
.x3f_c00270{left:537.200000pt;}
.xc_c00270{left:562.000000pt;}
.x25_c00270{left:565.200000pt;}
.x34_c00270{left:574.400000pt;}
.x26_c00270{left:583.466667pt;}
.x35_c00270{left:592.266667pt;}
.x40_c00270{left:609.200000pt;}
.xd_c00270{left:625.066667pt;}
.x27_c00270{left:631.200000pt;}
.x41_c00270{left:634.800000pt;}
.xe_c00270{left:644.533333pt;}
.x28_c00270{left:650.666667pt;}
.x42_c00270{left:681.200000pt;}
.xf_c00270{left:688.400000pt;}
.x29_c00270{left:700.266667pt;}
.x43_c00270{left:714.533333pt;}
}





/* 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_c00271 {
    display:none;
  }
  .loading-indicator_c00271.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00271 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_c00271 { 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_c00271" -> "#page-container .classname_c00271")
 */
.pf_c00271 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00271 { /* 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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00271 { /* 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_c00271 { /* 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_c00271 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00271 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00271 {overflow:visible;}
  }
}
.c_c00271 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00271 { /* 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_c00271:after { /* webkit #35443 */
  content: '';
}
.t_c00271:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00271 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 */
}
.__c00271 { /* 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_c00271 { /* info for Javascript */
  display:none;
}
.l_c00271 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00271 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00271 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00271: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_c00271 {
    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_c00271.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00271.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_c00271 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00271{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00271;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.000000;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;}
.m4d_c00271{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m39_c00271{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m69_c00271{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00271{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00271{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00271{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00271{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m23_c00271{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m29_c00271{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00271{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m20_c00271{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00271{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00271{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m77_c00271{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00271{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m94_c00271{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00271{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m21_c00271{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00271{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m97_c00271{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00271{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mac_c00271{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m70_c00271{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00271{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m73_c00271{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00271{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m75_c00271{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00271{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00271{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m40_c00271{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00271{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00271{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00271{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m95_c00271{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00271{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m99_c00271{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m25_c00271{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00271{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00271{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00271{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m60_c00271{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m64_c00271{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m58_c00271{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m46_c00271{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m26_c00271{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m67_c00271{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m98_c00271{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00271{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00271{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10_c00271{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mad_c00271{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m33_c00271{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m27_c00271{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m15_c00271{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m32_c00271{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m16_c00271{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00271{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m68_c00271{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m86_c00271{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.md_c00271{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m4_c00271{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m50_c00271{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00271{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00271{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m53_c00271{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00271{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00271{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m30_c00271{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00271{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m54_c00271{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m36_c00271{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m66_c00271{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m18_c00271{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00271{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80_c00271{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m65_c00271{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00271{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m43_c00271{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00271{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00271{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf_c00271{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m37_c00271{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00271{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00271{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.me_c00271{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m89_c00271{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00271{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m92_c00271{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24_c00271{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7_c00271{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m57_c00271{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m49_c00271{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);}
.m59_c00271{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m13_c00271{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00271{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00271{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3_c00271{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00271{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00271{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m47_c00271{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m74_c00271{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00271{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00271{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00271{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m19_c00271{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00271{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m90_c00271{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m38_c00271{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6_c00271{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00271{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m45_c00271{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00271{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m22_c00271{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m14_c00271{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m12_c00271{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00271{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m81_c00271{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m34_c00271{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m55_c00271{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m84_c00271{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m63_c00271{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m51_c00271{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m83_c00271{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m62_c00271{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8_c00271{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00271{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m76_c00271{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00271{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00271{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00271{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00271{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m78_c00271{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00271{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00271{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00271{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00271{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.maa_c00271{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m35_c00271{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00271{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00271{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m61_c00271{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00271{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00271{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00271{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00271{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m96_c00271{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m28_c00271{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00271{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m56_c00271{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00271{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mab_c00271{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m31_c00271{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m0_c00271{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00271{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mc_c00271{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma_c00271{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m48_c00271{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00271{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m79_c00271{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m87_c00271{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00271{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m88_c00271{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m85_c00271{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m93_c00271{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00271{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m2_c00271{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00271{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m44_c00271{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m1_c00271{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00271{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00271{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m5_c00271{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m82_c00271{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m9_c00271{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00271{vertical-align:0.000000px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{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__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00271{word-spacing:0.000000px;}
.ws5_c00271{word-spacing:0.222222px;}
.ws2_c00271{word-spacing:6.000000px;}
.ws3_c00271{word-spacing:7.750000px;}
.ws0_c00271{word-spacing:11.678571px;}
.ws1_c00271{word-spacing:20.874311px;}
.ws4_c00271{word-spacing:131.750000px;}
.ws6_c00271{word-spacing:1165.714286px;}
._0_c00271{width:38.750000px;}
.fc0_c00271{color:transparent;}
.fs1_c00271{font-size:48.000000px;}
.fs0_c00271{font-size:54.000000px;}
.y0_c00271{bottom:0.000000px;}
.y24_c00271{bottom:154.050000px;}
.y23_c00271{bottom:169.500000px;}
.y22_c00271{bottom:185.400000px;}
.y21_c00271{bottom:200.850000px;}
.y20_c00271{bottom:216.300000px;}
.y1f_c00271{bottom:247.350000px;}
.y1e_c00271{bottom:268.650000px;}
.y1d_c00271{bottom:288.450000px;}
.y1c_c00271{bottom:308.550000px;}
.y1b_c00271{bottom:328.350000px;}
.y1a_c00271{bottom:348.150000px;}
.y19_c00271{bottom:367.950000px;}
.y18_c00271{bottom:387.450000px;}
.y17_c00271{bottom:406.950000px;}
.y16_c00271{bottom:427.050000px;}
.y15_c00271{bottom:446.850000px;}
.y14_c00271{bottom:466.950000px;}
.y13_c00271{bottom:486.750000px;}
.y12_c00271{bottom:506.550000px;}
.y11_c00271{bottom:526.650000px;}
.y10_c00271{bottom:546.450000px;}
.yf_c00271{bottom:566.250000px;}
.ye_c00271{bottom:586.350000px;}
.yd_c00271{bottom:606.150000px;}
.yc_c00271{bottom:626.250000px;}
.yb_c00271{bottom:646.050000px;}
.ya_c00271{bottom:665.850000px;}
.y9_c00271{bottom:685.950000px;}
.y8_c00271{bottom:705.750000px;}
.y7_c00271{bottom:725.850000px;}
.y6_c00271{bottom:745.650000px;}
.y5_c00271{bottom:765.750000px;}
.y4_c00271{bottom:785.550000px;}
.y3_c00271{bottom:819.750000px;}
.y2_c00271{bottom:852.900000px;}
.y1_c00271{bottom:1049.700000px;}
.h3_c00271{height:48.000000px;}
.h2_c00271{height:54.000000px;}
.h0_c00271{height:1166.759949px;}
.h1_c00271{height:1167.000000px;}
.w0_c00271{width:918.720063px;}
.w1_c00271{width:918.750000px;}
.x0_c00271{left:0.000000px;}
.xfe_c00271{left:99.000000px;}
.xe0_c00271{left:100.800000px;}
.xcb_c00271{left:102.150000px;}
.x41_c00271{left:103.650000px;}
.x9_c00271{left:104.700000px;}
.x85_c00271{left:118.200000px;}
.xd1_c00271{left:120.150000px;}
.x51_c00271{left:123.600000px;}
.xd8_c00271{left:126.150000px;}
.xfa_c00271{left:131.400000px;}
.x107_c00271{left:132.600000px;}
.x73_c00271{left:133.650000px;}
.xcc_c00271{left:136.650000px;}
.x42_c00271{left:137.850000px;}
.x24_c00271{left:139.050000px;}
.xa5_c00271{left:142.500000px;}
.xc2_c00271{left:143.550000px;}
.x52_c00271{left:147.300000px;}
.xe1_c00271{left:148.350000px;}
.x7e_c00271{left:153.600000px;}
.x9e_c00271{left:154.800000px;}
.x69_c00271{left:156.900000px;}
.xe2_c00271{left:158.850000px;}
.x94_c00271{left:160.350000px;}
.xc3_c00271{left:163.650000px;}
.x43_c00271{left:164.850000px;}
.x25_c00271{left:166.350000px;}
.xb2_c00271{left:169.800000px;}
.x109_c00271{left:171.150000px;}
.x17_c00271{left:172.350000px;}
.x34_c00271{left:174.000000px;}
.x53_c00271{left:175.350000px;}
.x5e_c00271{left:178.050000px;}
.x102_c00271{left:179.100000px;}
.x95_c00271{left:182.700000px;}
.xa_c00271{left:186.450000px;}
.xe6_c00271{left:188.700000px;}
.x103_c00271{left:191.400000px;}
.xa6_c00271{left:194.250000px;}
.xea_c00271{left:195.300000px;}
.xf3_c00271{left:197.400000px;}
.x26_c00271{left:200.250000px;}
.xb_c00271{left:203.700000px;}
.xa9_c00271{left:205.200000px;}
.xff_c00271{left:210.000000px;}
.x8e_c00271{left:211.050000px;}
.xd2_c00271{left:213.000000px;}
.xe3_c00271{left:215.700000px;}
.x27_c00271{left:218.550000px;}
.x6a_c00271{left:224.250000px;}
.xe7_c00271{left:226.800000px;}
.x54_c00271{left:228.300000px;}
.x86_c00271{left:230.100000px;}
.x44_c00271{left:232.650000px;}
.xf4_c00271{left:235.500000px;}
.x18_c00271{left:237.450000px;}
.xc4_c00271{left:238.500000px;}
.xbb_c00271{left:239.700000px;}
.x5f_c00271{left:243.900000px;}
.x28_c00271{left:246.600000px;}
.xc_c00271{left:247.650000px;}
.xd9_c00271{left:249.300000px;}
.x87_c00271{left:252.750000px;}
.x96_c00271{left:255.150000px;}
.xb3_c00271{left:257.700000px;}
.xcd_c00271{left:259.800000px;}
.xaa_c00271{left:263.550000px;}
.x35_c00271{left:267.900000px;}
.x19_c00271{left:270.600000px;}
.x4_c00271{left:273.900000px;}
.xb4_c00271{left:276.450000px;}
.x55_c00271{left:278.400000px;}
.x6b_c00271{left:281.850000px;}
.x29_c00271{left:283.350000px;}
.x7f_c00271{left:285.600000px;}
.xbc_c00271{left:288.600000px;}
.xc5_c00271{left:290.700000px;}
.xd3_c00271{left:292.200000px;}
.xd_c00271{left:294.750000px;}
.x36_c00271{left:296.700000px;}
.x74_c00271{left:299.550000px;}
.xf5_c00271{left:302.400000px;}
.x2a_c00271{left:304.650000px;}
.xb5_c00271{left:306.750000px;}
.x56_c00271{left:310.050000px;}
.x60_c00271{left:315.300000px;}
.x88_c00271{left:317.850000px;}
.xce_c00271{left:322.200000px;}
.xe4_c00271{left:323.700000px;}
.xe_c00271{left:327.150000px;}
.x75_c00271{left:329.850000px;}
.xd4_c00271{left:331.800000px;}
.x108_c00271{left:332.850000px;}
.x97_c00271{left:334.350000px;}
.x89_c00271{left:336.600000px;}
.x45_c00271{left:339.450000px;}
.x76_c00271{left:340.950000px;}
.x1a_c00271{left:343.350000px;}
.x61_c00271{left:344.400000px;}
.x98_c00271{left:349.050000px;}
.xab_c00271{left:353.250000px;}
.xfb_c00271{left:355.800000px;}
.x37_c00271{left:360.750000px;}
.x5_c00271{left:361.800000px;}
.xd5_c00271{left:363.900000px;}
.xe8_c00271{left:365.700000px;}
.x57_c00271{left:367.350000px;}
.x8a_c00271{left:369.750000px;}
.x2_c00271{left:372.600000px;}
.x77_c00271{left:374.400000px;}
.x46_c00271{left:379.050000px;}
.xa7_c00271{left:380.700000px;}
.x80_c00271{left:382.500000px;}
.xac_c00271{left:383.550000px;}
.xeb_c00271{left:385.050000px;}
.x8b_c00271{left:387.000000px;}
.x38_c00271{left:389.850000px;}
.x47_c00271{left:390.900000px;}
.x1b_c00271{left:393.450000px;}
.x78_c00271{left:396.000000px;}
.xbd_c00271{left:397.050000px;}
.x8f_c00271{left:400.950000px;}
.x2b_c00271{left:405.750000px;}
.xda_c00271{left:407.550000px;}
.xf_c00271{left:409.650000px;}
.x48_c00271{left:414.000000px;}
.xb6_c00271{left:415.500000px;}
.x1c_c00271{left:416.550000px;}
.xa8_c00271{left:417.750000px;}
.x6_c00271{left:419.100000px;}
.x9f_c00271{left:421.800000px;}
.xc6_c00271{left:423.450000px;}
.x2c_c00271{left:425.550000px;}
.xad_c00271{left:427.050000px;}
.x10_c00271{left:428.700000px;}
.x1_c00271{left:430.200000px;}
.x79_c00271{left:432.750000px;}
.x39_c00271{left:434.550000px;}
.x7_c00271{left:436.350000px;}
.x62_c00271{left:439.050000px;}
.x100_c00271{left:442.650000px;}
.x6c_c00271{left:444.300000px;}
.xdb_c00271{left:445.350000px;}
.x99_c00271{left:447.600000px;}
.x3a_c00271{left:448.650000px;}
.xb7_c00271{left:453.000000px;}
.xcf_c00271{left:454.200000px;}
.xc7_c00271{left:455.850000px;}
.x81_c00271{left:457.050000px;}
.x11_c00271{left:458.250000px;}
.x3_c00271{left:459.750000px;}
.x7a_c00271{left:461.250000px;}
.xbe_c00271{left:464.400000px;}
.xec_c00271{left:467.550000px;}
.x58_c00271{left:469.950000px;}
.x104_c00271{left:473.250000px;}
.xa0_c00271{left:475.050000px;}
.x90_c00271{left:477.300000px;}
.x63_c00271{left:479.400000px;}
.xdc_c00271{left:481.050000px;}
.xae_c00271{left:482.100000px;}
.xbf_c00271{left:483.900000px;}
.x6d_c00271{left:487.800000px;}
.x101_c00271{left:489.000000px;}
.xed_c00271{left:490.200000px;}
.xfc_c00271{left:491.550000px;}
.xf6_c00271{left:495.150000px;}
.xc8_c00271{left:496.200000px;}
.x3b_c00271{left:499.050000px;}
.xf0_c00271{left:500.400000px;}
.x49_c00271{left:504.000000px;}
.x1d_c00271{left:505.500000px;}
.x82_c00271{left:507.450000px;}
.xaf_c00271{left:508.800000px;}
.x12_c00271{left:510.450000px;}
.x8_c00271{left:513.450000px;}
.xb8_c00271{left:515.700000px;}
.x64_c00271{left:519.000000px;}
.x6e_c00271{left:522.750000px;}
.xe9_c00271{left:526.650000px;}
.x9a_c00271{left:527.850000px;}
.x1e_c00271{left:529.650000px;}
.x13_c00271{left:531.000000px;}
.x83_c00271{left:532.350000px;}
.x91_c00271{left:533.850000px;}
.x65_c00271{left:534.900000px;}
.x8c_c00271{left:535.950000px;}
.x2d_c00271{left:537.450000px;}
.x3c_c00271{left:539.400000px;}
.x59_c00271{left:541.950000px;}
.xb9_c00271{left:544.200000px;}
.xdd_c00271{left:545.850000px;}
.x4a_c00271{left:548.250000px;}
.xa1_c00271{left:549.900000px;}
.x6f_c00271{left:551.250000px;}
.x8d_c00271{left:555.000000px;}
.x2e_c00271{left:556.500000px;}
.x7b_c00271{left:560.250000px;}
.xd0_c00271{left:562.950000px;}
.x1f_c00271{left:568.200000px;}
.x3d_c00271{left:569.700000px;}
.x5a_c00271{left:571.050000px;}
.x4b_c00271{left:576.300000px;}
.xa2_c00271{left:578.400000px;}
.xe5_c00271{left:584.700000px;}
.x2f_c00271{left:586.350000px;}
.x66_c00271{left:587.400000px;}
.xee_c00271{left:588.450000px;}
.xd6_c00271{left:590.700000px;}
.xba_c00271{left:592.800000px;}
.x5b_c00271{left:595.200000px;}
.xf7_c00271{left:598.050000px;}
.x4c_c00271{left:601.500000px;}
.x9b_c00271{left:602.700000px;}
.xc9_c00271{left:606.900000px;}
.xb0_c00271{left:608.550000px;}
.x14_c00271{left:613.800000px;}
.x30_c00271{left:618.000000px;}
.x20_c00271{left:623.250000px;}
.x70_c00271{left:625.050000px;}
.xca_c00271{left:627.750000px;}
.x5c_c00271{left:633.750000px;}
.x9c_c00271{left:635.400000px;}
.x31_c00271{left:638.100000px;}
.x4d_c00271{left:640.050000px;}
.xd7_c00271{left:643.950000px;}
.xfd_c00271{left:645.300000px;}
.x21_c00271{left:646.650000px;}
.x3e_c00271{left:652.500000px;}
.x4e_c00271{left:657.000000px;}
.xa3_c00271{left:659.700000px;}
.xf1_c00271{left:660.750000px;}
.xc0_c00271{left:664.200000px;}
.xb1_c00271{left:666.150000px;}
.x32_c00271{left:667.200000px;}
.x7c_c00271{left:668.250000px;}
.x92_c00271{left:678.000000px;}
.xf8_c00271{left:679.050000px;}
.x3f_c00271{left:681.000000px;}
.x105_c00271{left:685.200000px;}
.x22_c00271{left:690.600000px;}
.x67_c00271{left:694.050000px;}
.x71_c00271{left:695.700000px;}
.x15_c00271{left:699.900000px;}
.x93_c00271{left:702.150000px;}
.x5d_c00271{left:703.200000px;}
.x72_c00271{left:706.800000px;}
.xf2_c00271{left:708.600000px;}
.xef_c00271{left:712.350000px;}
.x4f_c00271{left:713.550000px;}
.xf9_c00271{left:716.100000px;}
.x84_c00271{left:717.300000px;}
.x23_c00271{left:719.700000px;}
.xa4_c00271{left:720.900000px;}
.x33_c00271{left:723.300000px;}
.x9d_c00271{left:724.950000px;}
.x50_c00271{left:726.900000px;}
.x40_c00271{left:728.550000px;}
.xc1_c00271{left:730.350000px;}
.xde_c00271{left:731.550000px;}
.x68_c00271{left:735.750000px;}
.x16_c00271{left:741.600000px;}
.xdf_c00271{left:750.600000px;}
.x106_c00271{left:757.200000px;}
.x7d_c00271{left:758.700000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws7_c00271{word-spacing:0.000000pt;}
.ws5_c00271{word-spacing:0.197531pt;}
.ws2_c00271{word-spacing:5.333333pt;}
.ws3_c00271{word-spacing:6.888889pt;}
.ws0_c00271{word-spacing:10.380952pt;}
.ws1_c00271{word-spacing:18.554943pt;}
.ws4_c00271{word-spacing:117.111111pt;}
.ws6_c00271{word-spacing:1036.190476pt;}
._0_c00271{width:34.444444pt;}
.fs1_c00271{font-size:42.666667pt;}
.fs0_c00271{font-size:48.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y24_c00271{bottom:136.933333pt;}
.y23_c00271{bottom:150.666667pt;}
.y22_c00271{bottom:164.800000pt;}
.y21_c00271{bottom:178.533333pt;}
.y20_c00271{bottom:192.266667pt;}
.y1f_c00271{bottom:219.866667pt;}
.y1e_c00271{bottom:238.800000pt;}
.y1d_c00271{bottom:256.400000pt;}
.y1c_c00271{bottom:274.266667pt;}
.y1b_c00271{bottom:291.866667pt;}
.y1a_c00271{bottom:309.466667pt;}
.y19_c00271{bottom:327.066667pt;}
.y18_c00271{bottom:344.400000pt;}
.y17_c00271{bottom:361.733333pt;}
.y16_c00271{bottom:379.600000pt;}
.y15_c00271{bottom:397.200000pt;}
.y14_c00271{bottom:415.066667pt;}
.y13_c00271{bottom:432.666667pt;}
.y12_c00271{bottom:450.266667pt;}
.y11_c00271{bottom:468.133333pt;}
.y10_c00271{bottom:485.733333pt;}
.yf_c00271{bottom:503.333333pt;}
.ye_c00271{bottom:521.200000pt;}
.yd_c00271{bottom:538.800000pt;}
.yc_c00271{bottom:556.666667pt;}
.yb_c00271{bottom:574.266667pt;}
.ya_c00271{bottom:591.866667pt;}
.y9_c00271{bottom:609.733333pt;}
.y8_c00271{bottom:627.333333pt;}
.y7_c00271{bottom:645.200000pt;}
.y6_c00271{bottom:662.800000pt;}
.y5_c00271{bottom:680.666667pt;}
.y4_c00271{bottom:698.266667pt;}
.y3_c00271{bottom:728.666667pt;}
.y2_c00271{bottom:758.133333pt;}
.y1_c00271{bottom:933.066667pt;}
.h3_c00271{height:42.666667pt;}
.h2_c00271{height:48.000000pt;}
.h0_c00271{height:1037.119955pt;}
.h1_c00271{height:1037.333333pt;}
.w0_c00271{width:816.640056pt;}
.w1_c00271{width:816.666667pt;}
.x0_c00271{left:0.000000pt;}
.xfe_c00271{left:88.000000pt;}
.xe0_c00271{left:89.600000pt;}
.xcb_c00271{left:90.800000pt;}
.x41_c00271{left:92.133333pt;}
.x9_c00271{left:93.066667pt;}
.x85_c00271{left:105.066667pt;}
.xd1_c00271{left:106.800000pt;}
.x51_c00271{left:109.866667pt;}
.xd8_c00271{left:112.133333pt;}
.xfa_c00271{left:116.800000pt;}
.x107_c00271{left:117.866667pt;}
.x73_c00271{left:118.800000pt;}
.xcc_c00271{left:121.466667pt;}
.x42_c00271{left:122.533333pt;}
.x24_c00271{left:123.600000pt;}
.xa5_c00271{left:126.666667pt;}
.xc2_c00271{left:127.600000pt;}
.x52_c00271{left:130.933333pt;}
.xe1_c00271{left:131.866667pt;}
.x7e_c00271{left:136.533333pt;}
.x9e_c00271{left:137.600000pt;}
.x69_c00271{left:139.466667pt;}
.xe2_c00271{left:141.200000pt;}
.x94_c00271{left:142.533333pt;}
.xc3_c00271{left:145.466667pt;}
.x43_c00271{left:146.533333pt;}
.x25_c00271{left:147.866667pt;}
.xb2_c00271{left:150.933333pt;}
.x109_c00271{left:152.133333pt;}
.x17_c00271{left:153.200000pt;}
.x34_c00271{left:154.666667pt;}
.x53_c00271{left:155.866667pt;}
.x5e_c00271{left:158.266667pt;}
.x102_c00271{left:159.200000pt;}
.x95_c00271{left:162.400000pt;}
.xa_c00271{left:165.733333pt;}
.xe6_c00271{left:167.733333pt;}
.x103_c00271{left:170.133333pt;}
.xa6_c00271{left:172.666667pt;}
.xea_c00271{left:173.600000pt;}
.xf3_c00271{left:175.466667pt;}
.x26_c00271{left:178.000000pt;}
.xb_c00271{left:181.066667pt;}
.xa9_c00271{left:182.400000pt;}
.xff_c00271{left:186.666667pt;}
.x8e_c00271{left:187.600000pt;}
.xd2_c00271{left:189.333333pt;}
.xe3_c00271{left:191.733333pt;}
.x27_c00271{left:194.266667pt;}
.x6a_c00271{left:199.333333pt;}
.xe7_c00271{left:201.600000pt;}
.x54_c00271{left:202.933333pt;}
.x86_c00271{left:204.533333pt;}
.x44_c00271{left:206.800000pt;}
.xf4_c00271{left:209.333333pt;}
.x18_c00271{left:211.066667pt;}
.xc4_c00271{left:212.000000pt;}
.xbb_c00271{left:213.066667pt;}
.x5f_c00271{left:216.800000pt;}
.x28_c00271{left:219.200000pt;}
.xc_c00271{left:220.133333pt;}
.xd9_c00271{left:221.600000pt;}
.x87_c00271{left:224.666667pt;}
.x96_c00271{left:226.800000pt;}
.xb3_c00271{left:229.066667pt;}
.xcd_c00271{left:230.933333pt;}
.xaa_c00271{left:234.266667pt;}
.x35_c00271{left:238.133333pt;}
.x19_c00271{left:240.533333pt;}
.x4_c00271{left:243.466667pt;}
.xb4_c00271{left:245.733333pt;}
.x55_c00271{left:247.466667pt;}
.x6b_c00271{left:250.533333pt;}
.x29_c00271{left:251.866667pt;}
.x7f_c00271{left:253.866667pt;}
.xbc_c00271{left:256.533333pt;}
.xc5_c00271{left:258.400000pt;}
.xd3_c00271{left:259.733333pt;}
.xd_c00271{left:262.000000pt;}
.x36_c00271{left:263.733333pt;}
.x74_c00271{left:266.266667pt;}
.xf5_c00271{left:268.800000pt;}
.x2a_c00271{left:270.800000pt;}
.xb5_c00271{left:272.666667pt;}
.x56_c00271{left:275.600000pt;}
.x60_c00271{left:280.266667pt;}
.x88_c00271{left:282.533333pt;}
.xce_c00271{left:286.400000pt;}
.xe4_c00271{left:287.733333pt;}
.xe_c00271{left:290.800000pt;}
.x75_c00271{left:293.200000pt;}
.xd4_c00271{left:294.933333pt;}
.x108_c00271{left:295.866667pt;}
.x97_c00271{left:297.200000pt;}
.x89_c00271{left:299.200000pt;}
.x45_c00271{left:301.733333pt;}
.x76_c00271{left:303.066667pt;}
.x1a_c00271{left:305.200000pt;}
.x61_c00271{left:306.133333pt;}
.x98_c00271{left:310.266667pt;}
.xab_c00271{left:314.000000pt;}
.xfb_c00271{left:316.266667pt;}
.x37_c00271{left:320.666667pt;}
.x5_c00271{left:321.600000pt;}
.xd5_c00271{left:323.466667pt;}
.xe8_c00271{left:325.066667pt;}
.x57_c00271{left:326.533333pt;}
.x8a_c00271{left:328.666667pt;}
.x2_c00271{left:331.200000pt;}
.x77_c00271{left:332.800000pt;}
.x46_c00271{left:336.933333pt;}
.xa7_c00271{left:338.400000pt;}
.x80_c00271{left:340.000000pt;}
.xac_c00271{left:340.933333pt;}
.xeb_c00271{left:342.266667pt;}
.x8b_c00271{left:344.000000pt;}
.x38_c00271{left:346.533333pt;}
.x47_c00271{left:347.466667pt;}
.x1b_c00271{left:349.733333pt;}
.x78_c00271{left:352.000000pt;}
.xbd_c00271{left:352.933333pt;}
.x8f_c00271{left:356.400000pt;}
.x2b_c00271{left:360.666667pt;}
.xda_c00271{left:362.266667pt;}
.xf_c00271{left:364.133333pt;}
.x48_c00271{left:368.000000pt;}
.xb6_c00271{left:369.333333pt;}
.x1c_c00271{left:370.266667pt;}
.xa8_c00271{left:371.333333pt;}
.x6_c00271{left:372.533333pt;}
.x9f_c00271{left:374.933333pt;}
.xc6_c00271{left:376.400000pt;}
.x2c_c00271{left:378.266667pt;}
.xad_c00271{left:379.600000pt;}
.x10_c00271{left:381.066667pt;}
.x1_c00271{left:382.400000pt;}
.x79_c00271{left:384.666667pt;}
.x39_c00271{left:386.266667pt;}
.x7_c00271{left:387.866667pt;}
.x62_c00271{left:390.266667pt;}
.x100_c00271{left:393.466667pt;}
.x6c_c00271{left:394.933333pt;}
.xdb_c00271{left:395.866667pt;}
.x99_c00271{left:397.866667pt;}
.x3a_c00271{left:398.800000pt;}
.xb7_c00271{left:402.666667pt;}
.xcf_c00271{left:403.733333pt;}
.xc7_c00271{left:405.200000pt;}
.x81_c00271{left:406.266667pt;}
.x11_c00271{left:407.333333pt;}
.x3_c00271{left:408.666667pt;}
.x7a_c00271{left:410.000000pt;}
.xbe_c00271{left:412.800000pt;}
.xec_c00271{left:415.600000pt;}
.x58_c00271{left:417.733333pt;}
.x104_c00271{left:420.666667pt;}
.xa0_c00271{left:422.266667pt;}
.x90_c00271{left:424.266667pt;}
.x63_c00271{left:426.133333pt;}
.xdc_c00271{left:427.600000pt;}
.xae_c00271{left:428.533333pt;}
.xbf_c00271{left:430.133333pt;}
.x6d_c00271{left:433.600000pt;}
.x101_c00271{left:434.666667pt;}
.xed_c00271{left:435.733333pt;}
.xfc_c00271{left:436.933333pt;}
.xf6_c00271{left:440.133333pt;}
.xc8_c00271{left:441.066667pt;}
.x3b_c00271{left:443.600000pt;}
.xf0_c00271{left:444.800000pt;}
.x49_c00271{left:448.000000pt;}
.x1d_c00271{left:449.333333pt;}
.x82_c00271{left:451.066667pt;}
.xaf_c00271{left:452.266667pt;}
.x12_c00271{left:453.733333pt;}
.x8_c00271{left:456.400000pt;}
.xb8_c00271{left:458.400000pt;}
.x64_c00271{left:461.333333pt;}
.x6e_c00271{left:464.666667pt;}
.xe9_c00271{left:468.133333pt;}
.x9a_c00271{left:469.200000pt;}
.x1e_c00271{left:470.800000pt;}
.x13_c00271{left:472.000000pt;}
.x83_c00271{left:473.200000pt;}
.x91_c00271{left:474.533333pt;}
.x65_c00271{left:475.466667pt;}
.x8c_c00271{left:476.400000pt;}
.x2d_c00271{left:477.733333pt;}
.x3c_c00271{left:479.466667pt;}
.x59_c00271{left:481.733333pt;}
.xb9_c00271{left:483.733333pt;}
.xdd_c00271{left:485.200000pt;}
.x4a_c00271{left:487.333333pt;}
.xa1_c00271{left:488.800000pt;}
.x6f_c00271{left:490.000000pt;}
.x8d_c00271{left:493.333333pt;}
.x2e_c00271{left:494.666667pt;}
.x7b_c00271{left:498.000000pt;}
.xd0_c00271{left:500.400000pt;}
.x1f_c00271{left:505.066667pt;}
.x3d_c00271{left:506.400000pt;}
.x5a_c00271{left:507.600000pt;}
.x4b_c00271{left:512.266667pt;}
.xa2_c00271{left:514.133333pt;}
.xe5_c00271{left:519.733333pt;}
.x2f_c00271{left:521.200000pt;}
.x66_c00271{left:522.133333pt;}
.xee_c00271{left:523.066667pt;}
.xd6_c00271{left:525.066667pt;}
.xba_c00271{left:526.933333pt;}
.x5b_c00271{left:529.066667pt;}
.xf7_c00271{left:531.600000pt;}
.x4c_c00271{left:534.666667pt;}
.x9b_c00271{left:535.733333pt;}
.xc9_c00271{left:539.466667pt;}
.xb0_c00271{left:540.933333pt;}
.x14_c00271{left:545.600000pt;}
.x30_c00271{left:549.333333pt;}
.x20_c00271{left:554.000000pt;}
.x70_c00271{left:555.600000pt;}
.xca_c00271{left:558.000000pt;}
.x5c_c00271{left:563.333333pt;}
.x9c_c00271{left:564.800000pt;}
.x31_c00271{left:567.200000pt;}
.x4d_c00271{left:568.933333pt;}
.xd7_c00271{left:572.400000pt;}
.xfd_c00271{left:573.600000pt;}
.x21_c00271{left:574.800000pt;}
.x3e_c00271{left:580.000000pt;}
.x4e_c00271{left:584.000000pt;}
.xa3_c00271{left:586.400000pt;}
.xf1_c00271{left:587.333333pt;}
.xc0_c00271{left:590.400000pt;}
.xb1_c00271{left:592.133333pt;}
.x32_c00271{left:593.066667pt;}
.x7c_c00271{left:594.000000pt;}
.x92_c00271{left:602.666667pt;}
.xf8_c00271{left:603.600000pt;}
.x3f_c00271{left:605.333333pt;}
.x105_c00271{left:609.066667pt;}
.x22_c00271{left:613.866667pt;}
.x67_c00271{left:616.933333pt;}
.x71_c00271{left:618.400000pt;}
.x15_c00271{left:622.133333pt;}
.x93_c00271{left:624.133333pt;}
.x5d_c00271{left:625.066667pt;}
.x72_c00271{left:628.266667pt;}
.xf2_c00271{left:629.866667pt;}
.xef_c00271{left:633.200000pt;}
.x4f_c00271{left:634.266667pt;}
.xf9_c00271{left:636.533333pt;}
.x84_c00271{left:637.600000pt;}
.x23_c00271{left:639.733333pt;}
.xa4_c00271{left:640.800000pt;}
.x33_c00271{left:642.933333pt;}
.x9d_c00271{left:644.400000pt;}
.x50_c00271{left:646.133333pt;}
.x40_c00271{left:647.600000pt;}
.xc1_c00271{left:649.200000pt;}
.xde_c00271{left:650.266667pt;}
.x68_c00271{left:654.000000pt;}
.x16_c00271{left:659.200000pt;}
.xdf_c00271{left:667.200000pt;}
.x106_c00271{left:673.066667pt;}
.x7d_c00271{left:674.400000pt;}
}





/* 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_c00272 {
    display:none;
  }
  .loading-indicator_c00272.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00272 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_c00272 { 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_c00272" -> "#page-container .classname_c00272")
 */
.pf_c00272 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00272 { /* 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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00272 { /* 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_c00272 { /* 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_c00272 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00272 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00272 {overflow:visible;}
  }
}
.c_c00272 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00272 { /* 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_c00272:after { /* webkit #35443 */
  content: '';
}
.t_c00272:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00272 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 */
}
.__c00272 { /* 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_c00272 { /* info for Javascript */
  display:none;
}
.l_c00272 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00272 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00272 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00272: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_c00272 {
    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_c00272.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00272.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_c00272 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00272{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00272;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.000000;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;}
.mc0_c00272{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00272{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mab_c00272{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00272{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.ma_c00272{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00272{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00272{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00272{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m64_c00272{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00272{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m31_c00272{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00272{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00272{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00272{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m56_c00272{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mba_c00272{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m70_c00272{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mae_c00272{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00272{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00272{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maf_c00272{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00272{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00272{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m55_c00272{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00272{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00272{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m54_c00272{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00272{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00272{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00272{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00272{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00272{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m60_c00272{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00272{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00272{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00272{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00272{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.maa_c00272{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mac_c00272{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00272{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00272{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00272{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00272{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00272{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00272{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m75_c00272{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m26_c00272{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m27_c00272{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00272{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m47_c00272{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00272{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00272{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m35_c00272{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m67_c00272{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m46_c00272{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mad_c00272{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00272{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00272{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00272{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00272{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00272{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00272{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m11_c00272{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m94_c00272{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m13_c00272{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00272{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00272{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m77_c00272{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m24_c00272{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00272{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m80_c00272{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00272{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00272{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00272{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00272{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6_c00272{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00272{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00272{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m89_c00272{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00272{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00272{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m53_c00272{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3_c00272{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9_c00272{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00272{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m99_c00272{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8_c00272{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00272{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00272{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00272{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00272{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m50_c00272{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00272{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m82_c00272{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00272{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00272{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m36_c00272{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00272{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc_c00272{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00272{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m25_c00272{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md_c00272{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00272{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20_c00272{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m90_c00272{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00272{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m72_c00272{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17_c00272{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00272{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m86_c00272{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m52_c00272{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m16_c00272{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);}
.ma7_c00272{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb_c00272{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7_c00272{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m92_c00272{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m68_c00272{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21_c00272{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00272{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m65_c00272{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m15_c00272{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00272{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m37_c00272{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m40_c00272{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m43_c00272{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m44_c00272{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m58_c00272{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00272{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00272{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00272{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m87_c00272{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00272{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m81_c00272{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m51_c00272{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m22_c00272{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m34_c00272{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m18_c00272{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00272{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00272{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m69_c00272{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m96_c00272{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m91_c00272{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m10_c00272{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m93_c00272{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00272{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5_c00272{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m45_c00272{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00272{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00272{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m38_c00272{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2_c00272{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00272{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00272{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00272{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00272{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m49_c00272{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m95_c00272{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m42_c00272{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00272{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m12_c00272{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m66_c00272{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m28_c00272{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m98_c00272{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m76_c00272{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m59_c00272{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m19_c00272{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00272{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00272{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00272{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00272{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m29_c00272{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00272{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m57_c00272{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m33_c00272{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m48_c00272{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m32_c00272{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00272{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m14_c00272{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m83_c00272{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m62_c00272{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m0_c00272{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m84_c00272{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m61_c00272{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m71_c00272{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me_c00272{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00272{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m78_c00272{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m39_c00272{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00272{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00272{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00272{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00272{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m79_c00272{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00272{transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00272{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m85_c00272{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00272{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00272{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00272{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m30_c00272{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls0_c00272{letter-spacing:0.000000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{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__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00272{word-spacing:-7.321048px;}
.ws1_c00272{word-spacing:-7.250000px;}
.ws3_c00272{word-spacing:-5.035714px;}
.ws7_c00272{word-spacing:-3.790997px;}
.wsd_c00272{word-spacing:-3.193435px;}
.ws0_c00272{word-spacing:-2.894325px;}
.ws6_c00272{word-spacing:-2.875000px;}
.ws2_c00272{word-spacing:-0.575563px;}
.wsf_c00272{word-spacing:0.000000px;}
.wse_c00272{word-spacing:1.459555px;}
.wsc_c00272{word-spacing:3.137163px;}
.ws5_c00272{word-spacing:6.457831px;}
.wsb_c00272{word-spacing:7.888644px;}
.ws8_c00272{word-spacing:10.363636px;}
.ws9_c00272{word-spacing:10.688312px;}
.wsa_c00272{word-spacing:15.582139px;}
.fc0_c00272{color:transparent;}
.fs0_c00272{font-size:54.000000px;}
.y0_c00272{bottom:0.000000px;}
.y2d_c00272{bottom:147.900000px;}
.y2c_c00272{bottom:163.800000px;}
.y2b_c00272{bottom:179.250000px;}
.y2a_c00272{bottom:194.700000px;}
.y29_c00272{bottom:210.600000px;}
.y28_c00272{bottom:226.050000px;}
.y27_c00272{bottom:241.500000px;}
.y26_c00272{bottom:257.100000px;}
.y25_c00272{bottom:311.550000px;}
.y24_c00272{bottom:331.350000px;}
.y23_c00272{bottom:351.150000px;}
.y22_c00272{bottom:370.950000px;}
.y21_c00272{bottom:391.050000px;}
.y20_c00272{bottom:411.150000px;}
.y1f_c00272{bottom:431.250000px;}
.y1e_c00272{bottom:451.050000px;}
.y1d_c00272{bottom:470.850000px;}
.y1c_c00272{bottom:490.950000px;}
.y1b_c00272{bottom:510.450000px;}
.y1a_c00272{bottom:530.250000px;}
.y19_c00272{bottom:549.900000px;}
.y18_c00272{bottom:570.450000px;}
.y17_c00272{bottom:590.250000px;}
.y16_c00272{bottom:610.050000px;}
.y15_c00272{bottom:629.850000px;}
.y14_c00272{bottom:649.950000px;}
.y13_c00272{bottom:669.750000px;}
.y12_c00272{bottom:689.850000px;}
.y11_c00272{bottom:709.950000px;}
.y10_c00272{bottom:730.200000px;}
.yf_c00272{bottom:750.300000px;}
.ye_c00272{bottom:770.100000px;}
.yd_c00272{bottom:790.200000px;}
.yc_c00272{bottom:810.000000px;}
.yb_c00272{bottom:830.100000px;}
.ya_c00272{bottom:850.200000px;}
.y9_c00272{bottom:870.000000px;}
.y8_c00272{bottom:890.100000px;}
.y7_c00272{bottom:910.200000px;}
.y6_c00272{bottom:930.300000px;}
.y5_c00272{bottom:948.900000px;}
.y4_c00272{bottom:970.200000px;}
.y3_c00272{bottom:990.300000px;}
.y2_c00272{bottom:1009.800000px;}
.y1_c00272{bottom:1047.600000px;}
.h2_c00272{height:54.000000px;}
.h0_c00272{height:1166.759949px;}
.h1_c00272{height:1167.000000px;}
.w0_c00272{width:918.720063px;}
.w1_c00272{width:918.750000px;}
.x0_c00272{left:0.000000px;}
.x15_c00272{left:152.550000px;}
.x1_c00272{left:154.050000px;}
.x10c_c00272{left:168.150000px;}
.xb5_c00272{left:171.150000px;}
.x133_c00272{left:174.300000px;}
.x97_c00272{left:178.950000px;}
.x58_c00272{left:181.800000px;}
.x3_c00272{left:183.600000px;}
.xa6_c00272{left:185.100000px;}
.x139_c00272{left:187.650000px;}
.x68_c00272{left:188.700000px;}
.xfc_c00272{left:190.050000px;}
.xf7_c00272{left:193.050000px;}
.x126_c00272{left:194.550000px;}
.xdc_c00272{left:195.750000px;}
.xbf_c00272{left:199.650000px;}
.x26_c00272{left:202.350000px;}
.x37_c00272{left:205.050000px;}
.x72_c00272{left:207.450000px;}
.x141_c00272{left:208.800000px;}
.x98_c00272{left:210.600000px;}
.x10d_c00272{left:211.650000px;}
.xca_c00272{left:213.900000px;}
.x42_c00272{left:214.950000px;}
.x16_c00272{left:216.300000px;}
.x27_c00272{left:220.350000px;}
.xe7_c00272{left:222.000000px;}
.x73_c00272{left:225.450000px;}
.x13d_c00272{left:227.400000px;}
.x4_c00272{left:228.600000px;}
.x69_c00272{left:230.400000px;}
.xd2_c00272{left:232.050000px;}
.x7d_c00272{left:233.250000px;}
.x8d_c00272{left:238.950000px;}
.x38_c00272{left:241.800000px;}
.x12a_c00272{left:243.750000px;}
.x119_c00272{left:245.100000px;}
.x17_c00272{left:246.150000px;}
.xea_c00272{left:247.650000px;}
.xa7_c00272{left:250.200000px;}
.x142_c00272{left:252.000000px;}
.x7e_c00272{left:253.350000px;}
.xfd_c00272{left:254.550000px;}
.x5_c00272{left:255.600000px;}
.xb6_c00272{left:256.950000px;}
.x122_c00272{left:258.750000px;}
.x12f_c00272{left:262.050000px;}
.x9f_c00272{left:263.850000px;}
.xc0_c00272{left:266.700000px;}
.x43_c00272{left:267.900000px;}
.x8e_c00272{left:269.850000px;}
.x59_c00272{left:271.500000px;}
.x4d_c00272{left:273.000000px;}
.x62_c00272{left:276.150000px;}
.xd3_c00272{left:278.100000px;}
.x6_c00272{left:279.750000px;}
.x39_c00272{left:281.400000px;}
.x74_c00272{left:283.350000px;}
.x99_c00272{left:285.900000px;}
.xa0_c00272{left:288.750000px;}
.x130_c00272{left:291.900000px;}
.x4e_c00272{left:294.300000px;}
.xae_c00272{left:295.500000px;}
.x28_c00272{left:296.700000px;}
.xc1_c00272{left:299.400000px;}
.xef_c00272{left:300.750000px;}
.x86_c00272{left:302.100000px;}
.x127_c00272{left:303.900000px;}
.xf8_c00272{left:305.700000px;}
.x3a_c00272{left:306.900000px;}
.x8f_c00272{left:309.150000px;}
.x110_c00272{left:310.950000px;}
.xb7_c00272{left:312.300000px;}
.x29_c00272{left:315.000000px;}
.x63_c00272{left:317.850000px;}
.x44_c00272{left:319.800000px;}
.xa1_c00272{left:322.650000px;}
.x7_c00272{left:324.000000px;}
.x134_c00272{left:325.800000px;}
.xf0_c00272{left:327.450000px;}
.x13a_c00272{left:328.800000px;}
.xd4_c00272{left:330.750000px;}
.x75_c00272{left:334.800000px;}
.x3b_c00272{left:336.450000px;}
.xdd_c00272{left:338.400000px;}
.xfe_c00272{left:339.600000px;}
.x18_c00272{left:340.800000px;}
.x8_c00272{left:344.850000px;}
.x11a_c00272{left:347.400000px;}
.x2a_c00272{left:349.950000px;}
.xcb_c00272{left:352.800000px;}
.xd5_c00272{left:354.900000px;}
.x45_c00272{left:358.650000px;}
.x90_c00272{left:359.850000px;}
.xf9_c00272{left:361.200000px;}
.xa2_c00272{left:362.250000px;}
.x5a_c00272{left:363.600000px;}
.x3c_c00272{left:364.950000px;}
.xaf_c00272{left:367.500000px;}
.x128_c00272{left:368.700000px;}
.x76_c00272{left:370.050000px;}
.x4f_c00272{left:371.250000px;}
.x19_c00272{left:373.200000px;}
.x64_c00272{left:376.200000px;}
.x46_c00272{left:377.400000px;}
.x2b_c00272{left:378.750000px;}
.x107_c00272{left:380.100000px;}
.xcc_c00272{left:381.300000px;}
.x13e_c00272{left:384.450000px;}
.x6a_c00272{left:385.500000px;}
.x5b_c00272{left:386.700000px;}
.xe1_c00272{left:387.750000px;}
.x50_c00272{left:389.550000px;}
.xc2_c00272{left:391.200000px;}
.x108_c00272{left:392.400000px;}
.x9_c00272{left:393.450000px;}
.x135_c00272{left:395.700000px;}
.x9a_c00272{left:396.750000px;}
.x1a_c00272{left:399.150000px;}
.xeb_c00272{left:400.500000px;}
.xff_c00272{left:402.600000px;}
.x91_c00272{left:404.850000px;}
.x47_c00272{left:407.700000px;}
.x3d_c00272{left:409.950000px;}
.xd6_c00272{left:411.750000px;}
.x6b_c00272{left:415.350000px;}
.xc3_c00272{left:416.700000px;}
.x118_c00272{left:418.650000px;}
.xf1_c00272{left:421.050000px;}
.x51_c00272{left:422.700000px;}
.x123_c00272{left:424.050000px;}
.x3e_c00272{left:426.900000px;}
.xb8_c00272{left:428.850000px;}
.x2c_c00272{left:429.900000px;}
.x12b_c00272{left:433.500000px;}
.x143_c00272{left:435.900000px;}
.x87_c00272{left:437.100000px;}
.x9b_c00272{left:438.150000px;}
.x111_c00272{left:439.200000px;}
.xd7_c00272{left:440.250000px;}
.x1b_c00272{left:441.600000px;}
.xe8_c00272{left:442.950000px;}
.xa_c00272{left:444.600000px;}
.x48_c00272{left:446.250000px;}
.xfa_c00272{left:447.600000px;}
.x2d_c00272{left:448.650000px;}
.x2_c00272{left:450.300000px;}
.x3f_c00272{left:452.400000px;}
.xa8_c00272{left:456.450000px;}
.x1c_c00272{left:458.550000px;}
.xb9_c00272{left:460.950000px;}
.x5c_c00272{left:464.100000px;}
.xa3_c00272{left:466.650000px;}
.x100_c00272{left:471.600000px;}
.x52_c00272{left:475.650000px;}
.xb0_c00272{left:476.850000px;}
.xb_c00272{left:478.800000px;}
.xde_c00272{left:481.200000px;}
.x1d_c00272{left:483.750000px;}
.xc4_c00272{left:485.400000px;}
.x109_c00272{left:486.450000px;}
.x112_c00272{left:487.500000px;}
.x11c_c00272{left:491.400000px;}
.x77_c00272{left:493.050000px;}
.xba_c00272{left:495.150000px;}
.x53_c00272{left:496.200000px;}
.xc_c00272{left:498.300000px;}
.x2e_c00272{left:500.100000px;}
.x9c_c00272{left:503.700000px;}
.xf2_c00272{left:505.950000px;}
.xa9_c00272{left:507.150000px;}
.xe9_c00272{left:508.500000px;}
.x88_c00272{left:510.900000px;}
.x7f_c00272{left:515.100000px;}
.x1e_c00272{left:517.950000px;}
.xa4_c00272{left:519.600000px;}
.x12c_c00272{left:520.650000px;}
.xaa_c00272{left:522.600000px;}
.x49_c00272{left:523.650000px;}
.x6c_c00272{left:524.700000px;}
.x89_c00272{left:528.150000px;}
.xe2_c00272{left:529.200000px;}
.x2f_c00272{left:530.700000px;}
.x80_c00272{left:535.650000px;}
.xab_c00272{left:537.000000px;}
.xd_c00272{left:540.750000px;}
.xcd_c00272{left:543.600000px;}
.x113_c00272{left:544.800000px;}
.x1f_c00272{left:546.450000px;}
.x101_c00272{left:548.700000px;}
.x78_c00272{left:549.900000px;}
.x5d_c00272{left:551.250000px;}
.x40_c00272{left:552.450000px;}
.xf5_c00272{left:554.550000px;}
.xbb_c00272{left:556.950000px;}
.xce_c00272{left:559.050000px;}
.xe_c00272{left:560.250000px;}
.xec_c00272{left:563.250000px;}
.xc5_c00272{left:566.100000px;}
.x5e_c00272{left:567.750000px;}
.x102_c00272{left:570.300000px;}
.xb1_c00272{left:571.500000px;}
.xf3_c00272{left:572.850000px;}
.xa5_c00272{left:573.900000px;}
.x13b_c00272{left:575.400000px;}
.x41_c00272{left:577.650000px;}
.xdf_c00272{left:579.750000px;}
.xbc_c00272{left:582.450000px;}
.x20_c00272{left:586.050000px;}
.x136_c00272{left:587.250000px;}
.xf_c00272{left:588.300000px;}
.x65_c00272{left:590.250000px;}
.x92_c00272{left:591.300000px;}
.xe0_c00272{left:593.400000px;}
.x114_c00272{left:594.900000px;}
.x81_c00272{left:596.550000px;}
.x79_c00272{left:598.500000px;}
.xcf_c00272{left:602.250000px;}
.x21_c00272{left:603.300000px;}
.x8a_c00272{left:604.500000px;}
.x103_c00272{left:606.600000px;}
.x11e_c00272{left:607.650000px;}
.x54_c00272{left:609.450000px;}
.x4a_c00272{left:611.400000px;}
.x30_c00272{left:613.800000px;}
.xf4_c00272{left:615.750000px;}
.x115_c00272{left:618.300000px;}
.x66_c00272{left:621.150000px;}
.x5f_c00272{left:622.500000px;}
.x104_c00272{left:627.900000px;}
.x55_c00272{left:631.050000px;}
.x131_c00272{left:633.150000px;}
.xed_c00272{left:634.950000px;}
.x13c_c00272{left:637.050000px;}
.x10e_c00272{left:639.450000px;}
.xc6_c00272{left:644.850000px;}
.x31_c00272{left:645.900000px;}
.x93_c00272{left:647.850000px;}
.x6d_c00272{left:650.250000px;}
.x10_c00272{left:651.600000px;}
.x22_c00272{left:652.650000px;}
.x124_c00272{left:653.700000px;}
.xd0_c00272{left:654.750000px;}
.x11b_c00272{left:655.800000px;}
.x56_c00272{left:658.800000px;}
.xe3_c00272{left:660.000000px;}
.xb2_c00272{left:661.200000px;}
.x12d_c00272{left:662.850000px;}
.x94_c00272{left:665.100000px;}
.x11f_c00272{left:666.300000px;}
.x82_c00272{left:667.800000px;}
.x4b_c00272{left:670.500000px;}
.x6e_c00272{left:671.850000px;}
.x9d_c00272{left:674.250000px;}
.xc7_c00272{left:675.750000px;}
.x129_c00272{left:677.250000px;}
.x13f_c00272{left:680.400000px;}
.xb3_c00272{left:681.750000px;}
.xd8_c00272{left:682.800000px;}
.x95_c00272{left:684.900000px;}
.x32_c00272{left:687.000000px;}
.x23_c00272{left:688.350000px;}
.xfb_c00272{left:690.750000px;}
.x83_c00272{left:691.950000px;}
.x11_c00272{left:693.300000px;}
.xbd_c00272{left:697.650000px;}
.x60_c00272{left:699.600000px;}
.xd9_c00272{left:702.900000px;}
.xee_c00272{left:706.950000px;}
.x4c_c00272{left:708.600000px;}
.x116_c00272{left:710.700000px;}
.x7a_c00272{left:712.350000px;}
.x24_c00272{left:713.850000px;}
.xc8_c00272{left:715.050000px;}
.x11d_c00272{left:716.250000px;}
.x137_c00272{left:717.900000px;}
.x12_c00272{left:720.000000px;}
.x8b_c00272{left:721.800000px;}
.xb4_c00272{left:724.200000px;}
.xd1_c00272{left:726.450000px;}
.x6f_c00272{left:728.400000px;}
.x10f_c00272{left:729.450000px;}
.x57_c00272{left:730.500000px;}
.x105_c00272{left:732.900000px;}
.xe4_c00272{left:734.250000px;}
.xda_c00272{left:737.100000px;}
.x10a_c00272{left:738.450000px;}
.x33_c00272{left:739.950000px;}
.xbe_c00272{left:741.150000px;}
.x140_c00272{left:742.200000px;}
.x96_c00272{left:743.250000px;}
.x70_c00272{left:744.300000px;}
.x132_c00272{left:745.950000px;}
.xc9_c00272{left:748.500000px;}
.x7b_c00272{left:749.550000px;}
.x61_c00272{left:752.100000px;}
.x84_c00272{left:755.700000px;}
.x138_c00272{left:756.750000px;}
.x34_c00272{left:757.950000px;}
.x120_c00272{left:759.150000px;}
.x13_c00272{left:761.400000px;}
.xe5_c00272{left:763.050000px;}
.x9e_c00272{left:765.000000px;}
.x25_c00272{left:766.800000px;}
.x117_c00272{left:769.050000px;}
.x67_c00272{left:771.600000px;}
.x10b_c00272{left:772.650000px;}
.x7c_c00272{left:775.800000px;}
.x14_c00272{left:779.700000px;}
.x35_c00272{left:781.050000px;}
.x8c_c00272{left:782.250000px;}
.x85_c00272{left:783.450000px;}
.xac_c00272{left:789.300000px;}
.x121_c00272{left:791.550000px;}
.x71_c00272{left:793.200000px;}
.x12e_c00272{left:795.300000px;}
.x106_c00272{left:796.650000px;}
.x36_c00272{left:798.750000px;}
.xe6_c00272{left:805.950000px;}
.xad_c00272{left:807.000000px;}
.xf6_c00272{left:808.350000px;}
.xdb_c00272{left:811.950000px;}
.x125_c00272{left:814.950000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws4_c00272{word-spacing:-6.507598pt;}
.ws1_c00272{word-spacing:-6.444444pt;}
.ws3_c00272{word-spacing:-4.476190pt;}
.ws7_c00272{word-spacing:-3.369775pt;}
.wsd_c00272{word-spacing:-2.838609pt;}
.ws0_c00272{word-spacing:-2.572733pt;}
.ws6_c00272{word-spacing:-2.555556pt;}
.ws2_c00272{word-spacing:-0.511611pt;}
.wsf_c00272{word-spacing:0.000000pt;}
.wse_c00272{word-spacing:1.297382pt;}
.wsc_c00272{word-spacing:2.788589pt;}
.ws5_c00272{word-spacing:5.740295pt;}
.wsb_c00272{word-spacing:7.012128pt;}
.ws8_c00272{word-spacing:9.212121pt;}
.ws9_c00272{word-spacing:9.500722pt;}
.wsa_c00272{word-spacing:13.850790pt;}
.fs0_c00272{font-size:48.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y2d_c00272{bottom:131.466667pt;}
.y2c_c00272{bottom:145.600000pt;}
.y2b_c00272{bottom:159.333333pt;}
.y2a_c00272{bottom:173.066667pt;}
.y29_c00272{bottom:187.200000pt;}
.y28_c00272{bottom:200.933333pt;}
.y27_c00272{bottom:214.666667pt;}
.y26_c00272{bottom:228.533333pt;}
.y25_c00272{bottom:276.933333pt;}
.y24_c00272{bottom:294.533333pt;}
.y23_c00272{bottom:312.133333pt;}
.y22_c00272{bottom:329.733333pt;}
.y21_c00272{bottom:347.600000pt;}
.y20_c00272{bottom:365.466667pt;}
.y1f_c00272{bottom:383.333333pt;}
.y1e_c00272{bottom:400.933333pt;}
.y1d_c00272{bottom:418.533333pt;}
.y1c_c00272{bottom:436.400000pt;}
.y1b_c00272{bottom:453.733333pt;}
.y1a_c00272{bottom:471.333333pt;}
.y19_c00272{bottom:488.800000pt;}
.y18_c00272{bottom:507.066667pt;}
.y17_c00272{bottom:524.666667pt;}
.y16_c00272{bottom:542.266667pt;}
.y15_c00272{bottom:559.866667pt;}
.y14_c00272{bottom:577.733333pt;}
.y13_c00272{bottom:595.333333pt;}
.y12_c00272{bottom:613.200000pt;}
.y11_c00272{bottom:631.066667pt;}
.y10_c00272{bottom:649.066667pt;}
.yf_c00272{bottom:666.933333pt;}
.ye_c00272{bottom:684.533333pt;}
.yd_c00272{bottom:702.400000pt;}
.yc_c00272{bottom:720.000000pt;}
.yb_c00272{bottom:737.866667pt;}
.ya_c00272{bottom:755.733333pt;}
.y9_c00272{bottom:773.333333pt;}
.y8_c00272{bottom:791.200000pt;}
.y7_c00272{bottom:809.066667pt;}
.y6_c00272{bottom:826.933333pt;}
.y5_c00272{bottom:843.466667pt;}
.y4_c00272{bottom:862.400000pt;}
.y3_c00272{bottom:880.266667pt;}
.y2_c00272{bottom:897.600000pt;}
.y1_c00272{bottom:931.200000pt;}
.h2_c00272{height:48.000000pt;}
.h0_c00272{height:1037.119955pt;}
.h1_c00272{height:1037.333333pt;}
.w0_c00272{width:816.640056pt;}
.w1_c00272{width:816.666667pt;}
.x0_c00272{left:0.000000pt;}
.x15_c00272{left:135.600000pt;}
.x1_c00272{left:136.933333pt;}
.x10c_c00272{left:149.466667pt;}
.xb5_c00272{left:152.133333pt;}
.x133_c00272{left:154.933333pt;}
.x97_c00272{left:159.066667pt;}
.x58_c00272{left:161.600000pt;}
.x3_c00272{left:163.200000pt;}
.xa6_c00272{left:164.533333pt;}
.x139_c00272{left:166.800000pt;}
.x68_c00272{left:167.733333pt;}
.xfc_c00272{left:168.933333pt;}
.xf7_c00272{left:171.600000pt;}
.x126_c00272{left:172.933333pt;}
.xdc_c00272{left:174.000000pt;}
.xbf_c00272{left:177.466667pt;}
.x26_c00272{left:179.866667pt;}
.x37_c00272{left:182.266667pt;}
.x72_c00272{left:184.400000pt;}
.x141_c00272{left:185.600000pt;}
.x98_c00272{left:187.200000pt;}
.x10d_c00272{left:188.133333pt;}
.xca_c00272{left:190.133333pt;}
.x42_c00272{left:191.066667pt;}
.x16_c00272{left:192.266667pt;}
.x27_c00272{left:195.866667pt;}
.xe7_c00272{left:197.333333pt;}
.x73_c00272{left:200.400000pt;}
.x13d_c00272{left:202.133333pt;}
.x4_c00272{left:203.200000pt;}
.x69_c00272{left:204.800000pt;}
.xd2_c00272{left:206.266667pt;}
.x7d_c00272{left:207.333333pt;}
.x8d_c00272{left:212.400000pt;}
.x38_c00272{left:214.933333pt;}
.x12a_c00272{left:216.666667pt;}
.x119_c00272{left:217.866667pt;}
.x17_c00272{left:218.800000pt;}
.xea_c00272{left:220.133333pt;}
.xa7_c00272{left:222.400000pt;}
.x142_c00272{left:224.000000pt;}
.x7e_c00272{left:225.200000pt;}
.xfd_c00272{left:226.266667pt;}
.x5_c00272{left:227.200000pt;}
.xb6_c00272{left:228.400000pt;}
.x122_c00272{left:230.000000pt;}
.x12f_c00272{left:232.933333pt;}
.x9f_c00272{left:234.533333pt;}
.xc0_c00272{left:237.066667pt;}
.x43_c00272{left:238.133333pt;}
.x8e_c00272{left:239.866667pt;}
.x59_c00272{left:241.333333pt;}
.x4d_c00272{left:242.666667pt;}
.x62_c00272{left:245.466667pt;}
.xd3_c00272{left:247.200000pt;}
.x6_c00272{left:248.666667pt;}
.x39_c00272{left:250.133333pt;}
.x74_c00272{left:251.866667pt;}
.x99_c00272{left:254.133333pt;}
.xa0_c00272{left:256.666667pt;}
.x130_c00272{left:259.466667pt;}
.x4e_c00272{left:261.600000pt;}
.xae_c00272{left:262.666667pt;}
.x28_c00272{left:263.733333pt;}
.xc1_c00272{left:266.133333pt;}
.xef_c00272{left:267.333333pt;}
.x86_c00272{left:268.533333pt;}
.x127_c00272{left:270.133333pt;}
.xf8_c00272{left:271.733333pt;}
.x3a_c00272{left:272.800000pt;}
.x8f_c00272{left:274.800000pt;}
.x110_c00272{left:276.400000pt;}
.xb7_c00272{left:277.600000pt;}
.x29_c00272{left:280.000000pt;}
.x63_c00272{left:282.533333pt;}
.x44_c00272{left:284.266667pt;}
.xa1_c00272{left:286.800000pt;}
.x7_c00272{left:288.000000pt;}
.x134_c00272{left:289.600000pt;}
.xf0_c00272{left:291.066667pt;}
.x13a_c00272{left:292.266667pt;}
.xd4_c00272{left:294.000000pt;}
.x75_c00272{left:297.600000pt;}
.x3b_c00272{left:299.066667pt;}
.xdd_c00272{left:300.800000pt;}
.xfe_c00272{left:301.866667pt;}
.x18_c00272{left:302.933333pt;}
.x8_c00272{left:306.533333pt;}
.x11a_c00272{left:308.800000pt;}
.x2a_c00272{left:311.066667pt;}
.xcb_c00272{left:313.600000pt;}
.xd5_c00272{left:315.466667pt;}
.x45_c00272{left:318.800000pt;}
.x90_c00272{left:319.866667pt;}
.xf9_c00272{left:321.066667pt;}
.xa2_c00272{left:322.000000pt;}
.x5a_c00272{left:323.200000pt;}
.x3c_c00272{left:324.400000pt;}
.xaf_c00272{left:326.666667pt;}
.x128_c00272{left:327.733333pt;}
.x76_c00272{left:328.933333pt;}
.x4f_c00272{left:330.000000pt;}
.x19_c00272{left:331.733333pt;}
.x64_c00272{left:334.400000pt;}
.x46_c00272{left:335.466667pt;}
.x2b_c00272{left:336.666667pt;}
.x107_c00272{left:337.866667pt;}
.xcc_c00272{left:338.933333pt;}
.x13e_c00272{left:341.733333pt;}
.x6a_c00272{left:342.666667pt;}
.x5b_c00272{left:343.733333pt;}
.xe1_c00272{left:344.666667pt;}
.x50_c00272{left:346.266667pt;}
.xc2_c00272{left:347.733333pt;}
.x108_c00272{left:348.800000pt;}
.x9_c00272{left:349.733333pt;}
.x135_c00272{left:351.733333pt;}
.x9a_c00272{left:352.666667pt;}
.x1a_c00272{left:354.800000pt;}
.xeb_c00272{left:356.000000pt;}
.xff_c00272{left:357.866667pt;}
.x91_c00272{left:359.866667pt;}
.x47_c00272{left:362.400000pt;}
.x3d_c00272{left:364.400000pt;}
.xd6_c00272{left:366.000000pt;}
.x6b_c00272{left:369.200000pt;}
.xc3_c00272{left:370.400000pt;}
.x118_c00272{left:372.133333pt;}
.xf1_c00272{left:374.266667pt;}
.x51_c00272{left:375.733333pt;}
.x123_c00272{left:376.933333pt;}
.x3e_c00272{left:379.466667pt;}
.xb8_c00272{left:381.200000pt;}
.x2c_c00272{left:382.133333pt;}
.x12b_c00272{left:385.333333pt;}
.x143_c00272{left:387.466667pt;}
.x87_c00272{left:388.533333pt;}
.x9b_c00272{left:389.466667pt;}
.x111_c00272{left:390.400000pt;}
.xd7_c00272{left:391.333333pt;}
.x1b_c00272{left:392.533333pt;}
.xe8_c00272{left:393.733333pt;}
.xa_c00272{left:395.200000pt;}
.x48_c00272{left:396.666667pt;}
.xfa_c00272{left:397.866667pt;}
.x2d_c00272{left:398.800000pt;}
.x2_c00272{left:400.266667pt;}
.x3f_c00272{left:402.133333pt;}
.xa8_c00272{left:405.733333pt;}
.x1c_c00272{left:407.600000pt;}
.xb9_c00272{left:409.733333pt;}
.x5c_c00272{left:412.533333pt;}
.xa3_c00272{left:414.800000pt;}
.x100_c00272{left:419.200000pt;}
.x52_c00272{left:422.800000pt;}
.xb0_c00272{left:423.866667pt;}
.xb_c00272{left:425.600000pt;}
.xde_c00272{left:427.733333pt;}
.x1d_c00272{left:430.000000pt;}
.xc4_c00272{left:431.466667pt;}
.x109_c00272{left:432.400000pt;}
.x112_c00272{left:433.333333pt;}
.x11c_c00272{left:436.800000pt;}
.x77_c00272{left:438.266667pt;}
.xba_c00272{left:440.133333pt;}
.x53_c00272{left:441.066667pt;}
.xc_c00272{left:442.933333pt;}
.x2e_c00272{left:444.533333pt;}
.x9c_c00272{left:447.733333pt;}
.xf2_c00272{left:449.733333pt;}
.xa9_c00272{left:450.800000pt;}
.xe9_c00272{left:452.000000pt;}
.x88_c00272{left:454.133333pt;}
.x7f_c00272{left:457.866667pt;}
.x1e_c00272{left:460.400000pt;}
.xa4_c00272{left:461.866667pt;}
.x12c_c00272{left:462.800000pt;}
.xaa_c00272{left:464.533333pt;}
.x49_c00272{left:465.466667pt;}
.x6c_c00272{left:466.400000pt;}
.x89_c00272{left:469.466667pt;}
.xe2_c00272{left:470.400000pt;}
.x2f_c00272{left:471.733333pt;}
.x80_c00272{left:476.133333pt;}
.xab_c00272{left:477.333333pt;}
.xd_c00272{left:480.666667pt;}
.xcd_c00272{left:483.200000pt;}
.x113_c00272{left:484.266667pt;}
.x1f_c00272{left:485.733333pt;}
.x101_c00272{left:487.733333pt;}
.x78_c00272{left:488.800000pt;}
.x5d_c00272{left:490.000000pt;}
.x40_c00272{left:491.066667pt;}
.xf5_c00272{left:492.933333pt;}
.xbb_c00272{left:495.066667pt;}
.xce_c00272{left:496.933333pt;}
.xe_c00272{left:498.000000pt;}
.xec_c00272{left:500.666667pt;}
.xc5_c00272{left:503.200000pt;}
.x5e_c00272{left:504.666667pt;}
.x102_c00272{left:506.933333pt;}
.xb1_c00272{left:508.000000pt;}
.xf3_c00272{left:509.200000pt;}
.xa5_c00272{left:510.133333pt;}
.x13b_c00272{left:511.466667pt;}
.x41_c00272{left:513.466667pt;}
.xdf_c00272{left:515.333333pt;}
.xbc_c00272{left:517.733333pt;}
.x20_c00272{left:520.933333pt;}
.x136_c00272{left:522.000000pt;}
.xf_c00272{left:522.933333pt;}
.x65_c00272{left:524.666667pt;}
.x92_c00272{left:525.600000pt;}
.xe0_c00272{left:527.466667pt;}
.x114_c00272{left:528.800000pt;}
.x81_c00272{left:530.266667pt;}
.x79_c00272{left:532.000000pt;}
.xcf_c00272{left:535.333333pt;}
.x21_c00272{left:536.266667pt;}
.x8a_c00272{left:537.333333pt;}
.x103_c00272{left:539.200000pt;}
.x11e_c00272{left:540.133333pt;}
.x54_c00272{left:541.733333pt;}
.x4a_c00272{left:543.466667pt;}
.x30_c00272{left:545.600000pt;}
.xf4_c00272{left:547.333333pt;}
.x115_c00272{left:549.600000pt;}
.x66_c00272{left:552.133333pt;}
.x5f_c00272{left:553.333333pt;}
.x104_c00272{left:558.133333pt;}
.x55_c00272{left:560.933333pt;}
.x131_c00272{left:562.800000pt;}
.xed_c00272{left:564.400000pt;}
.x13c_c00272{left:566.266667pt;}
.x10e_c00272{left:568.400000pt;}
.xc6_c00272{left:573.200000pt;}
.x31_c00272{left:574.133333pt;}
.x93_c00272{left:575.866667pt;}
.x6d_c00272{left:578.000000pt;}
.x10_c00272{left:579.200000pt;}
.x22_c00272{left:580.133333pt;}
.x124_c00272{left:581.066667pt;}
.xd0_c00272{left:582.000000pt;}
.x11b_c00272{left:582.933333pt;}
.x56_c00272{left:585.600000pt;}
.xe3_c00272{left:586.666667pt;}
.xb2_c00272{left:587.733333pt;}
.x12d_c00272{left:589.200000pt;}
.x94_c00272{left:591.200000pt;}
.x11f_c00272{left:592.266667pt;}
.x82_c00272{left:593.600000pt;}
.x4b_c00272{left:596.000000pt;}
.x6e_c00272{left:597.200000pt;}
.x9d_c00272{left:599.333333pt;}
.xc7_c00272{left:600.666667pt;}
.x129_c00272{left:602.000000pt;}
.x13f_c00272{left:604.800000pt;}
.xb3_c00272{left:606.000000pt;}
.xd8_c00272{left:606.933333pt;}
.x95_c00272{left:608.800000pt;}
.x32_c00272{left:610.666667pt;}
.x23_c00272{left:611.866667pt;}
.xfb_c00272{left:614.000000pt;}
.x83_c00272{left:615.066667pt;}
.x11_c00272{left:616.266667pt;}
.xbd_c00272{left:620.133333pt;}
.x60_c00272{left:621.866667pt;}
.xd9_c00272{left:624.800000pt;}
.xee_c00272{left:628.400000pt;}
.x4c_c00272{left:629.866667pt;}
.x116_c00272{left:631.733333pt;}
.x7a_c00272{left:633.200000pt;}
.x24_c00272{left:634.533333pt;}
.xc8_c00272{left:635.600000pt;}
.x11d_c00272{left:636.666667pt;}
.x137_c00272{left:638.133333pt;}
.x12_c00272{left:640.000000pt;}
.x8b_c00272{left:641.600000pt;}
.xb4_c00272{left:643.733333pt;}
.xd1_c00272{left:645.733333pt;}
.x6f_c00272{left:647.466667pt;}
.x10f_c00272{left:648.400000pt;}
.x57_c00272{left:649.333333pt;}
.x105_c00272{left:651.466667pt;}
.xe4_c00272{left:652.666667pt;}
.xda_c00272{left:655.200000pt;}
.x10a_c00272{left:656.400000pt;}
.x33_c00272{left:657.733333pt;}
.xbe_c00272{left:658.800000pt;}
.x140_c00272{left:659.733333pt;}
.x96_c00272{left:660.666667pt;}
.x70_c00272{left:661.600000pt;}
.x132_c00272{left:663.066667pt;}
.xc9_c00272{left:665.333333pt;}
.x7b_c00272{left:666.266667pt;}
.x61_c00272{left:668.533333pt;}
.x84_c00272{left:671.733333pt;}
.x138_c00272{left:672.666667pt;}
.x34_c00272{left:673.733333pt;}
.x120_c00272{left:674.800000pt;}
.x13_c00272{left:676.800000pt;}
.xe5_c00272{left:678.266667pt;}
.x9e_c00272{left:680.000000pt;}
.x25_c00272{left:681.600000pt;}
.x117_c00272{left:683.600000pt;}
.x67_c00272{left:685.866667pt;}
.x10b_c00272{left:686.800000pt;}
.x7c_c00272{left:689.600000pt;}
.x14_c00272{left:693.066667pt;}
.x35_c00272{left:694.266667pt;}
.x8c_c00272{left:695.333333pt;}
.x85_c00272{left:696.400000pt;}
.xac_c00272{left:701.600000pt;}
.x121_c00272{left:703.600000pt;}
.x71_c00272{left:705.066667pt;}
.x12e_c00272{left:706.933333pt;}
.x106_c00272{left:708.133333pt;}
.x36_c00272{left:710.000000pt;}
.xe6_c00272{left:716.400000pt;}
.xad_c00272{left:717.333333pt;}
.xf6_c00272{left:718.533333pt;}
.xdb_c00272{left:721.733333pt;}
.x125_c00272{left:724.400000pt;}
}





/* 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_c00273 {
    display:none;
  }
  .loading-indicator_c00273.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00273 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_c00273 { 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_c00273" -> "#page-container .classname_c00273")
 */
.pf_c00273 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00273 { /* 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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00273 { /* 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_c00273 { /* 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_c00273 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00273 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00273 {overflow:visible;}
  }
}
.c_c00273 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00273 { /* 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_c00273:after { /* webkit #35443 */
  content: '';
}
.t_c00273:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00273 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 */
}
.__c00273 { /* 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_c00273 { /* info for Javascript */
  display:none;
}
.l_c00273 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00273 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00273 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00273: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_c00273 {
    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_c00273.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00273.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_c00273 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00273{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00273;src:url('chunks/assets/font_14c8bc81534dbf9e46152a73.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.000000;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;}
.m2_c00273{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m4_c00273{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m3_c00273{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m5_c00273{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.412000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{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__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
.fc0_c00273{color:transparent;}
.fs1_c00273{font-size:42.000000px;}
.fs0_c00273{font-size:60.000000px;}
.y0_c00273{bottom:0.000000px;}
.y2_c00273{bottom:668.100000px;}
.y1_c00273{bottom:693.000000px;}
.h3_c00273{height:42.000000px;}
.h2_c00273{height:60.000000px;}
.h0_c00273{height:1166.759949px;}
.h1_c00273{height:1167.000000px;}
.w0_c00273{width:918.720063px;}
.w1_c00273{width:918.750000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:107.250000px;}
.x3_c00273{left:119.100000px;}
.x4_c00273{left:131.400000px;}
.x5_c00273{left:144.750000px;}
.x6_c00273{left:158.100000px;}
.x2_c00273{left:162.000000px;}
.x7_c00273{left:173.250000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs1_c00273{font-size:37.333333pt;}
.fs0_c00273{font-size:53.333333pt;}
.y0_c00273{bottom:0.000000pt;}
.y2_c00273{bottom:593.866667pt;}
.y1_c00273{bottom:616.000000pt;}
.h3_c00273{height:37.333333pt;}
.h2_c00273{height:53.333333pt;}
.h0_c00273{height:1037.119955pt;}
.h1_c00273{height:1037.333333pt;}
.w0_c00273{width:816.640056pt;}
.w1_c00273{width:816.666667pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:95.333333pt;}
.x3_c00273{left:105.866667pt;}
.x4_c00273{left:116.800000pt;}
.x5_c00273{left:128.666667pt;}
.x6_c00273{left:140.533333pt;}
.x2_c00273{left:144.000000pt;}
.x7_c00273{left:154.000000pt;}
}





/* 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_c00274 {
    display:none;
  }
  .loading-indicator_c00274.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00274 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_c00274 { 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_c00274" -> "#page-container .classname_c00274")
 */
.pf_c00274 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00274 { /* 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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00274 { /* 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_c00274 { /* 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_c00274 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00274 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00274 {overflow:visible;}
  }
}
.c_c00274 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00274 { /* 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_c00274:after { /* webkit #35443 */
  content: '';
}
.t_c00274:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00274 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 */
}
.__c00274 { /* 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_c00274 { /* info for Javascript */
  display:none;
}
.l_c00274 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00274 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00274 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00274: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_c00274 {
    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_c00274.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00274.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_c00274 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00274{font-family:sans-serif;visibility:hidden;}
.sc__c00274{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
}
.y0_c00274{bottom:0.000000px;}
.h0_c00274{height:1166.759949px;}
.h1_c00274{height:1167.000000px;}
.w0_c00274{width:918.720063px;}
.w1_c00274{width:918.750000px;}
.x0_c00274{left:0.000000px;}
@media print{
.y0_c00274{bottom:0.000000pt;}
.h0_c00274{height:1037.119955pt;}
.h1_c00274{height:1037.333333pt;}
.w0_c00274{width:816.640056pt;}
.w1_c00274{width:816.666667pt;}
.x0_c00274{left:0.000000pt;}
}





/* 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_c00275 {
    display:none;
  }
  .loading-indicator_c00275.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00275 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_c00275 { 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_c00275" -> "#page-container .classname_c00275")
 */
.pf_c00275 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00275 { /* 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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00275 { /* 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_c00275 { /* 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_c00275 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00275 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00275 {overflow:visible;}
  }
}
.c_c00275 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00275 { /* 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_c00275:after { /* webkit #35443 */
  content: '';
}
.t_c00275:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00275 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 */
}
.__c00275 { /* 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_c00275 { /* info for Javascript */
  display:none;
}
.l_c00275 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00275 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00275 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00275: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_c00275 {
    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_c00275.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00275.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_c00275 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00275{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00275;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.000000;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;}
.m96_c00275{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m71_c00275{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00275{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00275{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00275{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00275{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00275{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m23_c00275{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00275{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00275{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m27_c00275{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00275{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00275{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00275{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00275{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m88_c00275{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.maf_c00275{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mad_c00275{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m15_c00275{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.maa_c00275{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00275{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00275{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m58_c00275{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m99_c00275{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3_c00275{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m48_c00275{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10_c00275{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00275{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00275{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m33_c00275{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00275{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mab_c00275{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m98_c00275{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00275{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m8_c00275{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00275{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00275{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.md_c00275{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00275{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m41_c00275{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m5_c00275{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00275{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00275{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00275{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m84_c00275{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma_c00275{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00275{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00275{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00275{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00275{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m70_c00275{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me_c00275{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00275{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m32_c00275{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m55_c00275{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m86_c00275{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m24_c00275{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00275{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00275{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m79_c00275{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m36_c00275{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00275{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m42_c00275{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00275{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m38_c00275{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00275{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m56_c00275{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00275{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00275{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00275{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00275{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m65_c00275{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mac_c00275{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m76_c00275{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m68_c00275{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m28_c00275{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00275{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00275{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m60_c00275{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m89_c00275{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00275{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6_c00275{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00275{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00275{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf_c00275{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m47_c00275{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m44_c00275{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m63_c00275{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);}
.m20_c00275{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m69_c00275{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00275{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m61_c00275{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00275{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m85_c00275{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m13_c00275{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m52_c00275{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00275{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m59_c00275{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00275{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00275{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00275{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m17_c00275{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m31_c00275{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00275{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m35_c00275{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00275{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m16_c00275{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m72_c00275{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m53_c00275{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00275{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m80_c00275{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m39_c00275{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m74_c00275{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12_c00275{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00275{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2_c00275{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00275{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m7_c00275{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m18_c00275{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m37_c00275{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m46_c00275{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m26_c00275{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00275{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mb_c00275{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00275{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m95_c00275{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m66_c00275{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mae_c00275{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00275{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m67_c00275{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m14_c00275{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m57_c00275{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m51_c00275{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m49_c00275{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00275{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00275{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m93_c00275{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m54_c00275{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m22_c00275{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m97_c00275{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m64_c00275{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m21_c00275{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m90_c00275{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00275{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m19_c00275{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m29_c00275{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00275{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m92_c00275{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m34_c00275{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00275{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00275{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m62_c00275{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m9_c00275{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00275{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00275{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m83_c00275{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m73_c00275{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m43_c00275{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m1_c00275{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m91_c00275{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m75_c00275{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m94_c00275{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00275{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00275{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00275{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m30_c00275{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00275{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00275{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m82_c00275{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00275{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m77_c00275{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00275{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00275{transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00275{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00275{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m45_c00275{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m81_c00275{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m87_c00275{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{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__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00275{word-spacing:-10.375000px;}
.ws8_c00275{word-spacing:-6.798500px;}
.ws3_c00275{word-spacing:-6.719268px;}
.ws1_c00275{word-spacing:-4.411251px;}
.ws0_c00275{word-spacing:-2.940463px;}
.wsa_c00275{word-spacing:0.000000px;}
.ws2_c00275{word-spacing:2.429448px;}
.ws4_c00275{word-spacing:3.166667px;}
.ws7_c00275{word-spacing:7.385542px;}
.ws6_c00275{word-spacing:7.643881px;}
.ws9_c00275{word-spacing:15.365768px;}
.fc0_c00275{color:transparent;}
.fs0_c00275{font-size:54.000000px;}
.y0_c00275{bottom:0.000000px;}
.y2c_c00275{bottom:151.200000px;}
.y2b_c00275{bottom:192.600000px;}
.y2a_c00275{bottom:212.100000px;}
.y29_c00275{bottom:231.900000px;}
.y28_c00275{bottom:252.000000px;}
.y27_c00275{bottom:271.800000px;}
.y26_c00275{bottom:291.450000px;}
.y25_c00275{bottom:312.000000px;}
.y24_c00275{bottom:331.500000px;}
.y23_c00275{bottom:351.600000px;}
.y22_c00275{bottom:371.100000px;}
.y21_c00275{bottom:391.200000px;}
.y20_c00275{bottom:411.300000px;}
.y1f_c00275{bottom:431.100000px;}
.y1e_c00275{bottom:450.900000px;}
.y1d_c00275{bottom:470.700000px;}
.y1c_c00275{bottom:490.800000px;}
.y1b_c00275{bottom:510.600000px;}
.y1a_c00275{bottom:530.700000px;}
.y19_c00275{bottom:550.500000px;}
.y18_c00275{bottom:570.300000px;}
.y17_c00275{bottom:590.100000px;}
.y16_c00275{bottom:610.200000px;}
.y15_c00275{bottom:629.700000px;}
.y14_c00275{bottom:650.100000px;}
.y13_c00275{bottom:669.900000px;}
.y12_c00275{bottom:689.700000px;}
.y11_c00275{bottom:709.500000px;}
.y10_c00275{bottom:729.300000px;}
.yf_c00275{bottom:749.400000px;}
.ye_c00275{bottom:769.500000px;}
.yd_c00275{bottom:789.300000px;}
.yc_c00275{bottom:809.100000px;}
.yb_c00275{bottom:828.900000px;}
.ya_c00275{bottom:848.700000px;}
.y9_c00275{bottom:868.800000px;}
.y8_c00275{bottom:888.600000px;}
.y7_c00275{bottom:908.700000px;}
.y6_c00275{bottom:928.200000px;}
.y5_c00275{bottom:948.300000px;}
.y4_c00275{bottom:968.400000px;}
.y3_c00275{bottom:988.200000px;}
.y2_c00275{bottom:1008.000000px;}
.y1_c00275{bottom:1045.500000px;}
.h2_c00275{height:54.000000px;}
.h0_c00275{height:1166.759949px;}
.h1_c00275{height:1167.000000px;}
.w0_c00275{width:918.720063px;}
.w1_c00275{width:918.750000px;}
.x0_c00275{left:0.000000px;}
.x3_c00275{left:100.050000px;}
.x8b_c00275{left:101.100000px;}
.xb0_c00275{left:102.150000px;}
.x14_c00275{left:111.900000px;}
.xdf_c00275{left:114.300000px;}
.xf7_c00275{left:119.100000px;}
.xb1_c00275{left:121.950000px;}
.x40_c00275{left:125.250000px;}
.x10b_c00275{left:127.200000px;}
.xd3_c00275{left:129.000000px;}
.x68_c00275{left:131.100000px;}
.xd7_c00275{left:133.200000px;}
.x81_c00275{left:134.850000px;}
.x33_c00275{left:136.200000px;}
.xbc_c00275{left:137.400000px;}
.x9c_c00275{left:138.600000px;}
.x119_c00275{left:140.550000px;}
.xa5_c00275{left:142.350000px;}
.xcc_c00275{left:144.750000px;}
.x23_c00275{left:145.950000px;}
.x4_c00275{left:148.650000px;}
.x69_c00275{left:151.950000px;}
.x9d_c00275{left:153.750000px;}
.x15_c00275{left:154.800000px;}
.x75_c00275{left:156.300000px;}
.xfe_c00275{left:159.300000px;}
.xa6_c00275{left:162.900000px;}
.x5_c00275{left:165.900000px;}
.x108_c00275{left:168.150000px;}
.xd4_c00275{left:169.350000px;}
.x82_c00275{left:171.150000px;}
.xb2_c00275{left:172.650000px;}
.x41_c00275{left:175.950000px;}
.x50_c00275{left:177.000000px;}
.x5e_c00275{left:178.200000px;}
.x76_c00275{left:179.400000px;}
.x10c_c00275{left:181.500000px;}
.x16_c00275{left:183.300000px;}
.x104_c00275{left:185.100000px;}
.x127_c00275{left:186.900000px;}
.x34_c00275{left:188.400000px;}
.xd8_c00275{left:191.550000px;}
.x42_c00275{left:193.200000px;}
.x24_c00275{left:194.250000px;}
.x51_c00275{left:195.300000px;}
.x11e_c00275{left:196.500000px;}
.x9e_c00275{left:197.700000px;}
.x6a_c00275{left:199.050000px;}
.xf3_c00275{left:201.900000px;}
.x12f_c00275{left:203.250000px;}
.x35_c00275{left:207.150000px;}
.x95_c00275{left:208.650000px;}
.x52_c00275{left:210.450000px;}
.x8c_c00275{left:211.650000px;}
.xcd_c00275{left:214.650000px;}
.x17_c00275{left:216.000000px;}
.x43_c00275{left:218.700000px;}
.x6_c00275{left:220.200000px;}
.x25_c00275{left:222.300000px;}
.xc4_c00275{left:224.250000px;}
.xee_c00275{left:225.900000px;}
.x6b_c00275{left:227.850000px;}
.x8d_c00275{left:228.900000px;}
.xd9_c00275{left:230.100000px;}
.x53_c00275{left:231.750000px;}
.x96_c00275{left:234.150000px;}
.x122_c00275{left:236.100000px;}
.xbd_c00275{left:237.150000px;}
.x112_c00275{left:238.800000px;}
.x18_c00275{left:240.450000px;}
.x77_c00275{left:242.100000px;}
.xff_c00275{left:244.650000px;}
.x9f_c00275{left:246.600000px;}
.xef_c00275{left:250.350000px;}
.xb3_c00275{left:251.850000px;}
.x12a_c00275{left:256.050000px;}
.xc5_c00275{left:259.500000px;}
.x10f_c00275{left:261.600000px;}
.x125_c00275{left:262.650000px;}
.xd5_c00275{left:264.750000px;}
.xce_c00275{left:266.850000px;}
.x7_c00275{left:268.800000px;}
.x44_c00275{left:272.400000px;}
.xc6_c00275{left:273.600000px;}
.xa7_c00275{left:276.750000px;}
.x54_c00275{left:278.250000px;}
.xbe_c00275{left:279.600000px;}
.x5f_c00275{left:282.600000px;}
.xf4_c00275{left:285.000000px;}
.x8_c00275{left:286.050000px;}
.x26_c00275{left:287.100000px;}
.xf8_c00275{left:289.350000px;}
.x97_c00275{left:292.050000px;}
.x45_c00275{left:294.000000px;}
.x6c_c00275{left:298.050000px;}
.x60_c00275{left:300.300000px;}
.x36_c00275{left:301.500000px;}
.x130_c00275{left:303.300000px;}
.x136_c00275{left:304.500000px;}
.xa0_c00275{left:305.700000px;}
.x19_c00275{left:309.150000px;}
.x110_c00275{left:310.800000px;}
.xc7_c00275{left:312.150000px;}
.xf0_c00275{left:313.650000px;}
.x83_c00275{left:315.450000px;}
.x123_c00275{left:316.800000px;}
.x55_c00275{left:317.850000px;}
.xf9_c00275{left:318.900000px;}
.x1a_c00275{left:320.250000px;}
.x46_c00275{left:321.750000px;}
.x37_c00275{left:322.800000px;}
.xa8_c00275{left:328.650000px;}
.xc8_c00275{left:330.150000px;}
.x27_c00275{left:333.600000px;}
.x117_c00275{left:334.650000px;}
.x78_c00275{left:335.700000px;}
.x84_c00275{left:337.050000px;}
.x12b_c00275{left:339.450000px;}
.x100_c00275{left:340.800000px;}
.x118_c00275{left:343.350000px;}
.xe0_c00275{left:348.000000px;}
.xa1_c00275{left:350.700000px;}
.xcf_c00275{left:353.250000px;}
.x61_c00275{left:354.750000px;}
.xb4_c00275{left:356.250000px;}
.xbf_c00275{left:357.600000px;}
.xe1_c00275{left:359.100000px;}
.xf5_c00275{left:360.300000px;}
.x47_c00275{left:361.350000px;}
.x9_c00275{left:363.450000px;}
.xe8_c00275{left:366.450000px;}
.x11a_c00275{left:368.250000px;}
.xa9_c00275{left:372.150000px;}
.x38_c00275{left:373.200000px;}
.x8e_c00275{left:376.050000px;}
.x48_c00275{left:379.050000px;}
.x1b_c00275{left:382.950000px;}
.x39_c00275{left:385.500000px;}
.x85_c00275{left:387.150000px;}
.x6d_c00275{left:389.550000px;}
.x1_c00275{left:390.600000px;}
.x124_c00275{left:391.650000px;}
.xa_c00275{left:393.300000px;}
.x11f_c00275{left:395.250000px;}
.x8f_c00275{left:396.600000px;}
.x126_c00275{left:397.950000px;}
.xb5_c00275{left:399.450000px;}
.xaa_c00275{left:400.650000px;}
.x98_c00275{left:402.450000px;}
.x28_c00275{left:403.500000px;}
.x6e_c00275{left:406.050000px;}
.x86_c00275{left:409.800000px;}
.xb_c00275{left:413.400000px;}
.x90_c00275{left:415.350000px;}
.x62_c00275{left:418.800000px;}
.xda_c00275{left:420.300000px;}
.xb6_c00275{left:426.150000px;}
.x29_c00275{left:429.000000px;}
.x79_c00275{left:431.100000px;}
.xa2_c00275{left:433.500000px;}
.xe2_c00275{left:435.450000px;}
.xc_c00275{left:436.500000px;}
.xc0_c00275{left:439.050000px;}
.xd6_c00275{left:442.950000px;}
.x11b_c00275{left:444.150000px;}
.xc9_c00275{left:447.600000px;}
.xd0_c00275{left:450.150000px;}
.x63_c00275{left:451.650000px;}
.xab_c00275{left:452.850000px;}
.x49_c00275{left:454.350000px;}
.x138_c00275{left:455.700000px;}
.x131_c00275{left:457.050000px;}
.x10d_c00275{left:458.400000px;}
.xfa_c00275{left:459.600000px;}
.xe3_c00275{left:460.950000px;}
.x7a_c00275{left:463.800000px;}
.x6f_c00275{left:469.350000px;}
.x56_c00275{left:471.300000px;}
.xe9_c00275{left:473.250000px;}
.x132_c00275{left:474.300000px;}
.x10e_c00275{left:475.350000px;}
.x105_c00275{left:477.750000px;}
.x87_c00275{left:478.950000px;}
.x4a_c00275{left:480.300000px;}
.x64_c00275{left:482.550000px;}
.x12c_c00275{left:483.750000px;}
.x1c_c00275{left:485.850000px;}
.x99_c00275{left:488.850000px;}
.xac_c00275{left:490.650000px;}
.x3a_c00275{left:492.450000px;}
.xc1_c00275{left:495.600000px;}
.xd_c00275{left:501.000000px;}
.xeb_c00275{left:502.050000px;}
.x1d_c00275{left:503.850000px;}
.x7b_c00275{left:505.200000px;}
.xfb_c00275{left:506.400000px;}
.x2a_c00275{left:509.700000px;}
.x57_c00275{left:511.650000px;}
.x88_c00275{left:513.900000px;}
.x4b_c00275{left:515.250000px;}
.x9a_c00275{left:516.600000px;}
.xc2_c00275{left:519.000000px;}
.x12d_c00275{left:520.050000px;}
.x70_c00275{left:522.300000px;}
.x3b_c00275{left:525.600000px;}
.x113_c00275{left:527.100000px;}
.x1e_c00275{left:529.800000px;}
.xfc_c00275{left:533.700000px;}
.x7c_c00275{left:536.550000px;}
.x2b_c00275{left:538.500000px;}
.x114_c00275{left:545.400000px;}
.x128_c00275{left:546.600000px;}
.x4c_c00275{left:547.650000px;}
.xe_c00275{left:548.850000px;}
.x9b_c00275{left:550.800000px;}
.x137_c00275{left:552.300000px;}
.x7d_c00275{left:554.250000px;}
.xd1_c00275{left:556.350000px;}
.xea_c00275{left:558.900000px;}
.xdb_c00275{left:561.000000px;}
.x65_c00275{left:563.100000px;}
.x4d_c00275{left:564.900000px;}
.x11c_c00275{left:567.300000px;}
.x58_c00275{left:568.950000px;}
.xc3_c00275{left:570.450000px;}
.x91_c00275{left:571.950000px;}
.x133_c00275{left:573.750000px;}
.x1f_c00275{left:575.100000px;}
.xad_c00275{left:577.350000px;}
.xe4_c00275{left:579.450000px;}
.x66_c00275{left:581.400000px;}
.x2c_c00275{left:582.450000px;}
.x59_c00275{left:586.650000px;}
.xdc_c00275{left:589.800000px;}
.x20_c00275{left:592.350000px;}
.xb7_c00275{left:595.050000px;}
.x3c_c00275{left:596.100000px;}
.x2d_c00275{left:597.900000px;}
.x92_c00275{left:600.450000px;}
.xf_c00275{left:602.550000px;}
.x101_c00275{left:605.850000px;}
.xe5_c00275{left:608.550000px;}
.x7e_c00275{left:609.750000px;}
.x120_c00275{left:611.850000px;}
.x4e_c00275{left:614.550000px;}
.x67_c00275{left:618.150000px;}
.x10_c00275{left:620.550000px;}
.x7f_c00275{left:621.600000px;}
.xb8_c00275{left:623.100000px;}
.x2e_c00275{left:627.750000px;}
.x115_c00275{left:630.750000px;}
.x102_c00275{left:632.100000px;}
.x5a_c00275{left:633.150000px;}
.xec_c00275{left:637.050000px;}
.x109_c00275{left:638.250000px;}
.xdd_c00275{left:640.200000px;}
.x121_c00275{left:641.700000px;}
.xf6_c00275{left:643.950000px;}
.x2f_c00275{left:645.000000px;}
.x11_c00275{left:646.500000px;}
.x134_c00275{left:647.550000px;}
.x71_c00275{left:648.600000px;}
.x21_c00275{left:651.750000px;}
.x106_c00275{left:653.400000px;}
.xd2_c00275{left:655.050000px;}
.x12e_c00275{left:656.850000px;}
.x80_c00275{left:658.650000px;}
.x3d_c00275{left:662.400000px;}
.x5b_c00275{left:664.500000px;}
.xfd_c00275{left:666.450000px;}
.xe6_c00275{left:667.650000px;}
.x89_c00275{left:669.300000px;}
.xa3_c00275{left:670.800000px;}
.xf1_c00275{left:673.500000px;}
.x72_c00275{left:675.300000px;}
.xca_c00275{left:676.950000px;}
.x30_c00275{left:678.150000px;}
.xae_c00275{left:679.200000px;}
.xb9_c00275{left:680.700000px;}
.x5c_c00275{left:685.050000px;}
.x73_c00275{left:687.600000px;}
.x31_c00275{left:690.000000px;}
.x12_c00275{left:693.000000px;}
.x8a_c00275{left:696.300000px;}
.xde_c00275{left:699.300000px;}
.xa4_c00275{left:701.400000px;}
.x3e_c00275{left:706.350000px;}
.x93_c00275{left:707.550000px;}
.x135_c00275{left:709.050000px;}
.x13_c00275{left:710.250000px;}
.xba_c00275{left:712.050000px;}
.xaf_c00275{left:714.150000px;}
.x4f_c00275{left:716.400000px;}
.x22_c00275{left:717.600000px;}
.xe7_c00275{left:719.550000px;}
.xf2_c00275{left:721.050000px;}
.x74_c00275{left:723.600000px;}
.x103_c00275{left:725.250000px;}
.x5d_c00275{left:726.450000px;}
.x129_c00275{left:730.200000px;}
.xcb_c00275{left:732.000000px;}
.x32_c00275{left:733.500000px;}
.xbb_c00275{left:737.550000px;}
.x116_c00275{left:741.150000px;}
.x2_c00275{left:742.650000px;}
.x111_c00275{left:744.900000px;}
.x11d_c00275{left:746.250000px;}
.x107_c00275{left:747.300000px;}
.xed_c00275{left:750.750000px;}
.x10a_c00275{left:753.000000px;}
.x3f_c00275{left:754.950000px;}
.x94_c00275{left:756.900000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws5_c00275{word-spacing:-9.222222pt;}
.ws8_c00275{word-spacing:-6.043112pt;}
.ws3_c00275{word-spacing:-5.972682pt;}
.ws1_c00275{word-spacing:-3.921112pt;}
.ws0_c00275{word-spacing:-2.613745pt;}
.wsa_c00275{word-spacing:0.000000pt;}
.ws2_c00275{word-spacing:2.159509pt;}
.ws4_c00275{word-spacing:2.814815pt;}
.ws7_c00275{word-spacing:6.564926pt;}
.ws6_c00275{word-spacing:6.794561pt;}
.ws9_c00275{word-spacing:13.658460pt;}
.fs0_c00275{font-size:48.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y2c_c00275{bottom:134.400000pt;}
.y2b_c00275{bottom:171.200000pt;}
.y2a_c00275{bottom:188.533333pt;}
.y29_c00275{bottom:206.133333pt;}
.y28_c00275{bottom:224.000000pt;}
.y27_c00275{bottom:241.600000pt;}
.y26_c00275{bottom:259.066667pt;}
.y25_c00275{bottom:277.333333pt;}
.y24_c00275{bottom:294.666667pt;}
.y23_c00275{bottom:312.533333pt;}
.y22_c00275{bottom:329.866667pt;}
.y21_c00275{bottom:347.733333pt;}
.y20_c00275{bottom:365.600000pt;}
.y1f_c00275{bottom:383.200000pt;}
.y1e_c00275{bottom:400.800000pt;}
.y1d_c00275{bottom:418.400000pt;}
.y1c_c00275{bottom:436.266667pt;}
.y1b_c00275{bottom:453.866667pt;}
.y1a_c00275{bottom:471.733333pt;}
.y19_c00275{bottom:489.333333pt;}
.y18_c00275{bottom:506.933333pt;}
.y17_c00275{bottom:524.533333pt;}
.y16_c00275{bottom:542.400000pt;}
.y15_c00275{bottom:559.733333pt;}
.y14_c00275{bottom:577.866667pt;}
.y13_c00275{bottom:595.466667pt;}
.y12_c00275{bottom:613.066667pt;}
.y11_c00275{bottom:630.666667pt;}
.y10_c00275{bottom:648.266667pt;}
.yf_c00275{bottom:666.133333pt;}
.ye_c00275{bottom:684.000000pt;}
.yd_c00275{bottom:701.600000pt;}
.yc_c00275{bottom:719.200000pt;}
.yb_c00275{bottom:736.800000pt;}
.ya_c00275{bottom:754.400000pt;}
.y9_c00275{bottom:772.266667pt;}
.y8_c00275{bottom:789.866667pt;}
.y7_c00275{bottom:807.733333pt;}
.y6_c00275{bottom:825.066667pt;}
.y5_c00275{bottom:842.933333pt;}
.y4_c00275{bottom:860.800000pt;}
.y3_c00275{bottom:878.400000pt;}
.y2_c00275{bottom:896.000000pt;}
.y1_c00275{bottom:929.333333pt;}
.h2_c00275{height:48.000000pt;}
.h0_c00275{height:1037.119955pt;}
.h1_c00275{height:1037.333333pt;}
.w0_c00275{width:816.640056pt;}
.w1_c00275{width:816.666667pt;}
.x0_c00275{left:0.000000pt;}
.x3_c00275{left:88.933333pt;}
.x8b_c00275{left:89.866667pt;}
.xb0_c00275{left:90.800000pt;}
.x14_c00275{left:99.466667pt;}
.xdf_c00275{left:101.600000pt;}
.xf7_c00275{left:105.866667pt;}
.xb1_c00275{left:108.400000pt;}
.x40_c00275{left:111.333333pt;}
.x10b_c00275{left:113.066667pt;}
.xd3_c00275{left:114.666667pt;}
.x68_c00275{left:116.533333pt;}
.xd7_c00275{left:118.400000pt;}
.x81_c00275{left:119.866667pt;}
.x33_c00275{left:121.066667pt;}
.xbc_c00275{left:122.133333pt;}
.x9c_c00275{left:123.200000pt;}
.x119_c00275{left:124.933333pt;}
.xa5_c00275{left:126.533333pt;}
.xcc_c00275{left:128.666667pt;}
.x23_c00275{left:129.733333pt;}
.x4_c00275{left:132.133333pt;}
.x69_c00275{left:135.066667pt;}
.x9d_c00275{left:136.666667pt;}
.x15_c00275{left:137.600000pt;}
.x75_c00275{left:138.933333pt;}
.xfe_c00275{left:141.600000pt;}
.xa6_c00275{left:144.800000pt;}
.x5_c00275{left:147.466667pt;}
.x108_c00275{left:149.466667pt;}
.xd4_c00275{left:150.533333pt;}
.x82_c00275{left:152.133333pt;}
.xb2_c00275{left:153.466667pt;}
.x41_c00275{left:156.400000pt;}
.x50_c00275{left:157.333333pt;}
.x5e_c00275{left:158.400000pt;}
.x76_c00275{left:159.466667pt;}
.x10c_c00275{left:161.333333pt;}
.x16_c00275{left:162.933333pt;}
.x104_c00275{left:164.533333pt;}
.x127_c00275{left:166.133333pt;}
.x34_c00275{left:167.466667pt;}
.xd8_c00275{left:170.266667pt;}
.x42_c00275{left:171.733333pt;}
.x24_c00275{left:172.666667pt;}
.x51_c00275{left:173.600000pt;}
.x11e_c00275{left:174.666667pt;}
.x9e_c00275{left:175.733333pt;}
.x6a_c00275{left:176.933333pt;}
.xf3_c00275{left:179.466667pt;}
.x12f_c00275{left:180.666667pt;}
.x35_c00275{left:184.133333pt;}
.x95_c00275{left:185.466667pt;}
.x52_c00275{left:187.066667pt;}
.x8c_c00275{left:188.133333pt;}
.xcd_c00275{left:190.800000pt;}
.x17_c00275{left:192.000000pt;}
.x43_c00275{left:194.400000pt;}
.x6_c00275{left:195.733333pt;}
.x25_c00275{left:197.600000pt;}
.xc4_c00275{left:199.333333pt;}
.xee_c00275{left:200.800000pt;}
.x6b_c00275{left:202.533333pt;}
.x8d_c00275{left:203.466667pt;}
.xd9_c00275{left:204.533333pt;}
.x53_c00275{left:206.000000pt;}
.x96_c00275{left:208.133333pt;}
.x122_c00275{left:209.866667pt;}
.xbd_c00275{left:210.800000pt;}
.x112_c00275{left:212.266667pt;}
.x18_c00275{left:213.733333pt;}
.x77_c00275{left:215.200000pt;}
.xff_c00275{left:217.466667pt;}
.x9f_c00275{left:219.200000pt;}
.xef_c00275{left:222.533333pt;}
.xb3_c00275{left:223.866667pt;}
.x12a_c00275{left:227.600000pt;}
.xc5_c00275{left:230.666667pt;}
.x10f_c00275{left:232.533333pt;}
.x125_c00275{left:233.466667pt;}
.xd5_c00275{left:235.333333pt;}
.xce_c00275{left:237.200000pt;}
.x7_c00275{left:238.933333pt;}
.x44_c00275{left:242.133333pt;}
.xc6_c00275{left:243.200000pt;}
.xa7_c00275{left:246.000000pt;}
.x54_c00275{left:247.333333pt;}
.xbe_c00275{left:248.533333pt;}
.x5f_c00275{left:251.200000pt;}
.xf4_c00275{left:253.333333pt;}
.x8_c00275{left:254.266667pt;}
.x26_c00275{left:255.200000pt;}
.xf8_c00275{left:257.200000pt;}
.x97_c00275{left:259.600000pt;}
.x45_c00275{left:261.333333pt;}
.x6c_c00275{left:264.933333pt;}
.x60_c00275{left:266.933333pt;}
.x36_c00275{left:268.000000pt;}
.x130_c00275{left:269.600000pt;}
.x136_c00275{left:270.666667pt;}
.xa0_c00275{left:271.733333pt;}
.x19_c00275{left:274.800000pt;}
.x110_c00275{left:276.266667pt;}
.xc7_c00275{left:277.466667pt;}
.xf0_c00275{left:278.800000pt;}
.x83_c00275{left:280.400000pt;}
.x123_c00275{left:281.600000pt;}
.x55_c00275{left:282.533333pt;}
.xf9_c00275{left:283.466667pt;}
.x1a_c00275{left:284.666667pt;}
.x46_c00275{left:286.000000pt;}
.x37_c00275{left:286.933333pt;}
.xa8_c00275{left:292.133333pt;}
.xc8_c00275{left:293.466667pt;}
.x27_c00275{left:296.533333pt;}
.x117_c00275{left:297.466667pt;}
.x78_c00275{left:298.400000pt;}
.x84_c00275{left:299.600000pt;}
.x12b_c00275{left:301.733333pt;}
.x100_c00275{left:302.933333pt;}
.x118_c00275{left:305.200000pt;}
.xe0_c00275{left:309.333333pt;}
.xa1_c00275{left:311.733333pt;}
.xcf_c00275{left:314.000000pt;}
.x61_c00275{left:315.333333pt;}
.xb4_c00275{left:316.666667pt;}
.xbf_c00275{left:317.866667pt;}
.xe1_c00275{left:319.200000pt;}
.xf5_c00275{left:320.266667pt;}
.x47_c00275{left:321.200000pt;}
.x9_c00275{left:323.066667pt;}
.xe8_c00275{left:325.733333pt;}
.x11a_c00275{left:327.333333pt;}
.xa9_c00275{left:330.800000pt;}
.x38_c00275{left:331.733333pt;}
.x8e_c00275{left:334.266667pt;}
.x48_c00275{left:336.933333pt;}
.x1b_c00275{left:340.400000pt;}
.x39_c00275{left:342.666667pt;}
.x85_c00275{left:344.133333pt;}
.x6d_c00275{left:346.266667pt;}
.x1_c00275{left:347.200000pt;}
.x124_c00275{left:348.133333pt;}
.xa_c00275{left:349.600000pt;}
.x11f_c00275{left:351.333333pt;}
.x8f_c00275{left:352.533333pt;}
.x126_c00275{left:353.733333pt;}
.xb5_c00275{left:355.066667pt;}
.xaa_c00275{left:356.133333pt;}
.x98_c00275{left:357.733333pt;}
.x28_c00275{left:358.666667pt;}
.x6e_c00275{left:360.933333pt;}
.x86_c00275{left:364.266667pt;}
.xb_c00275{left:367.466667pt;}
.x90_c00275{left:369.200000pt;}
.x62_c00275{left:372.266667pt;}
.xda_c00275{left:373.600000pt;}
.xb6_c00275{left:378.800000pt;}
.x29_c00275{left:381.333333pt;}
.x79_c00275{left:383.200000pt;}
.xa2_c00275{left:385.333333pt;}
.xe2_c00275{left:387.066667pt;}
.xc_c00275{left:388.000000pt;}
.xc0_c00275{left:390.266667pt;}
.xd6_c00275{left:393.733333pt;}
.x11b_c00275{left:394.800000pt;}
.xc9_c00275{left:397.866667pt;}
.xd0_c00275{left:400.133333pt;}
.x63_c00275{left:401.466667pt;}
.xab_c00275{left:402.533333pt;}
.x49_c00275{left:403.866667pt;}
.x138_c00275{left:405.066667pt;}
.x131_c00275{left:406.266667pt;}
.x10d_c00275{left:407.466667pt;}
.xfa_c00275{left:408.533333pt;}
.xe3_c00275{left:409.733333pt;}
.x7a_c00275{left:412.266667pt;}
.x6f_c00275{left:417.200000pt;}
.x56_c00275{left:418.933333pt;}
.xe9_c00275{left:420.666667pt;}
.x132_c00275{left:421.600000pt;}
.x10e_c00275{left:422.533333pt;}
.x105_c00275{left:424.666667pt;}
.x87_c00275{left:425.733333pt;}
.x4a_c00275{left:426.933333pt;}
.x64_c00275{left:428.933333pt;}
.x12c_c00275{left:430.000000pt;}
.x1c_c00275{left:431.866667pt;}
.x99_c00275{left:434.533333pt;}
.xac_c00275{left:436.133333pt;}
.x3a_c00275{left:437.733333pt;}
.xc1_c00275{left:440.533333pt;}
.xd_c00275{left:445.333333pt;}
.xeb_c00275{left:446.266667pt;}
.x1d_c00275{left:447.866667pt;}
.x7b_c00275{left:449.066667pt;}
.xfb_c00275{left:450.133333pt;}
.x2a_c00275{left:453.066667pt;}
.x57_c00275{left:454.800000pt;}
.x88_c00275{left:456.800000pt;}
.x4b_c00275{left:458.000000pt;}
.x9a_c00275{left:459.200000pt;}
.xc2_c00275{left:461.333333pt;}
.x12d_c00275{left:462.266667pt;}
.x70_c00275{left:464.266667pt;}
.x3b_c00275{left:467.200000pt;}
.x113_c00275{left:468.533333pt;}
.x1e_c00275{left:470.933333pt;}
.xfc_c00275{left:474.400000pt;}
.x7c_c00275{left:476.933333pt;}
.x2b_c00275{left:478.666667pt;}
.x114_c00275{left:484.800000pt;}
.x128_c00275{left:485.866667pt;}
.x4c_c00275{left:486.800000pt;}
.xe_c00275{left:487.866667pt;}
.x9b_c00275{left:489.600000pt;}
.x137_c00275{left:490.933333pt;}
.x7d_c00275{left:492.666667pt;}
.xd1_c00275{left:494.533333pt;}
.xea_c00275{left:496.800000pt;}
.xdb_c00275{left:498.666667pt;}
.x65_c00275{left:500.533333pt;}
.x4d_c00275{left:502.133333pt;}
.x11c_c00275{left:504.266667pt;}
.x58_c00275{left:505.733333pt;}
.xc3_c00275{left:507.066667pt;}
.x91_c00275{left:508.400000pt;}
.x133_c00275{left:510.000000pt;}
.x1f_c00275{left:511.200000pt;}
.xad_c00275{left:513.200000pt;}
.xe4_c00275{left:515.066667pt;}
.x66_c00275{left:516.800000pt;}
.x2c_c00275{left:517.733333pt;}
.x59_c00275{left:521.466667pt;}
.xdc_c00275{left:524.266667pt;}
.x20_c00275{left:526.533333pt;}
.xb7_c00275{left:528.933333pt;}
.x3c_c00275{left:529.866667pt;}
.x2d_c00275{left:531.466667pt;}
.x92_c00275{left:533.733333pt;}
.xf_c00275{left:535.600000pt;}
.x101_c00275{left:538.533333pt;}
.xe5_c00275{left:540.933333pt;}
.x7e_c00275{left:542.000000pt;}
.x120_c00275{left:543.866667pt;}
.x4e_c00275{left:546.266667pt;}
.x67_c00275{left:549.466667pt;}
.x10_c00275{left:551.600000pt;}
.x7f_c00275{left:552.533333pt;}
.xb8_c00275{left:553.866667pt;}
.x2e_c00275{left:558.000000pt;}
.x115_c00275{left:560.666667pt;}
.x102_c00275{left:561.866667pt;}
.x5a_c00275{left:562.800000pt;}
.xec_c00275{left:566.266667pt;}
.x109_c00275{left:567.333333pt;}
.xdd_c00275{left:569.066667pt;}
.x121_c00275{left:570.400000pt;}
.xf6_c00275{left:572.400000pt;}
.x2f_c00275{left:573.333333pt;}
.x11_c00275{left:574.666667pt;}
.x134_c00275{left:575.600000pt;}
.x71_c00275{left:576.533333pt;}
.x21_c00275{left:579.333333pt;}
.x106_c00275{left:580.800000pt;}
.xd2_c00275{left:582.266667pt;}
.x12e_c00275{left:583.866667pt;}
.x80_c00275{left:585.466667pt;}
.x3d_c00275{left:588.800000pt;}
.x5b_c00275{left:590.666667pt;}
.xfd_c00275{left:592.400000pt;}
.xe6_c00275{left:593.466667pt;}
.x89_c00275{left:594.933333pt;}
.xa3_c00275{left:596.266667pt;}
.xf1_c00275{left:598.666667pt;}
.x72_c00275{left:600.266667pt;}
.xca_c00275{left:601.733333pt;}
.x30_c00275{left:602.800000pt;}
.xae_c00275{left:603.733333pt;}
.xb9_c00275{left:605.066667pt;}
.x5c_c00275{left:608.933333pt;}
.x73_c00275{left:611.200000pt;}
.x31_c00275{left:613.333333pt;}
.x12_c00275{left:616.000000pt;}
.x8a_c00275{left:618.933333pt;}
.xde_c00275{left:621.600000pt;}
.xa4_c00275{left:623.466667pt;}
.x3e_c00275{left:627.866667pt;}
.x93_c00275{left:628.933333pt;}
.x135_c00275{left:630.266667pt;}
.x13_c00275{left:631.333333pt;}
.xba_c00275{left:632.933333pt;}
.xaf_c00275{left:634.800000pt;}
.x4f_c00275{left:636.800000pt;}
.x22_c00275{left:637.866667pt;}
.xe7_c00275{left:639.600000pt;}
.xf2_c00275{left:640.933333pt;}
.x74_c00275{left:643.200000pt;}
.x103_c00275{left:644.666667pt;}
.x5d_c00275{left:645.733333pt;}
.x129_c00275{left:649.066667pt;}
.xcb_c00275{left:650.666667pt;}
.x32_c00275{left:652.000000pt;}
.xbb_c00275{left:655.600000pt;}
.x116_c00275{left:658.800000pt;}
.x2_c00275{left:660.133333pt;}
.x111_c00275{left:662.133333pt;}
.x11d_c00275{left:663.333333pt;}
.x107_c00275{left:664.266667pt;}
.xed_c00275{left:667.333333pt;}
.x10a_c00275{left:669.333333pt;}
.x3f_c00275{left:671.066667pt;}
.x94_c00275{left:672.800000pt;}
}





/* 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_c00276 {
    display:none;
  }
  .loading-indicator_c00276.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00276 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_c00276 { 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_c00276" -> "#page-container .classname_c00276")
 */
.pf_c00276 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00276 { /* 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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00276 { /* 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_c00276 { /* 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_c00276 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00276 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00276 {overflow:visible;}
  }
}
.c_c00276 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00276 { /* 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_c00276:after { /* webkit #35443 */
  content: '';
}
.t_c00276:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00276 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 */
}
.__c00276 { /* 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_c00276 { /* info for Javascript */
  display:none;
}
.l_c00276 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00276 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00276 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00276: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_c00276 {
    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_c00276.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00276.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_c00276 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00276{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00276;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.000000;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;}
.m7e_c00276{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m22_c00276{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m61_c00276{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mad_c00276{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00276{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00276{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m29_c00276{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m93_c00276{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00276{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00276{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m28_c00276{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m48_c00276{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00276{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00276{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m97_c00276{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00276{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00276{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m83_c00276{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m76_c00276{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00276{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00276{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m74_c00276{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m53_c00276{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m30_c00276{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m91_c00276{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00276{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m8_c00276{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m59_c00276{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m34_c00276{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m23_c00276{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00276{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m32_c00276{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m57_c00276{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6_c00276{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00276{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00276{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00276{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m89_c00276{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00276{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m54_c00276{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m19_c00276{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m73_c00276{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m95_c00276{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00276{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m36_c00276{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc_c00276{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00276{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m77_c00276{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3_c00276{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m79_c00276{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m94_c00276{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00276{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00276{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m50_c00276{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m37_c00276{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00276{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00276{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00276{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m99_c00276{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00276{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m39_c00276{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00276{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m10_c00276{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m85_c00276{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m64_c00276{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m96_c00276{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00276{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md_c00276{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m75_c00276{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00276{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00276{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00276{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m17_c00276{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m81_c00276{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m16_c00276{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m62_c00276{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00276{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m14_c00276{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m86_c00276{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m82_c00276{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00276{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00276{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00276{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00276{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00276{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m41_c00276{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00276{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m88_c00276{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00276{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m71_c00276{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m35_c00276{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m49_c00276{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m42_c00276{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me_c00276{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m51_c00276{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m47_c00276{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m13_c00276{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00276{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m40_c00276{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.ma_c00276{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00276{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m21_c00276{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m43_c00276{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00276{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00276{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00276{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00276{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00276{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00276{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00276{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m69_c00276{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00276{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m27_c00276{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00276{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00276{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m15_c00276{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m67_c00276{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m70_c00276{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mab_c00276{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m80_c00276{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.maa_c00276{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m5_c00276{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m18_c00276{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00276{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7_c00276{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00276{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m92_c00276{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00276{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m33_c00276{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m78_c00276{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);}
.m3a_c00276{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00276{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00276{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m84_c00276{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9_c00276{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00276{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m20_c00276{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m68_c00276{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00276{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00276{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m72_c00276{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m25_c00276{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m63_c00276{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00276{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00276{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m26_c00276{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m87_c00276{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m98_c00276{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m60_c00276{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m58_c00276{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00276{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00276{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00276{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m65_c00276{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00276{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m24_c00276{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00276{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00276{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00276{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00276{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00276{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00276{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00276{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00276{transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298000,0.000000,0.000000,0.250000,0,0);}
.m66_c00276{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00276{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00276{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m31_c00276{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m55_c00276{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m38_c00276{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m90_c00276{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.v0_c00276{vertical-align:0.000000px;}
.ls0_c00276{letter-spacing:0.000000px;}
.sc__c00276{text-shadow:none;}
.sc0_c00276{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__c00276{-webkit-text-stroke:0px transparent;}
.sc0_c00276{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00276{word-spacing:-8.671875px;}
.ws4_c00276{word-spacing:-7.500000px;}
.ws3_c00276{word-spacing:-4.861111px;}
.ws2_c00276{word-spacing:-1.527778px;}
.ws8_c00276{word-spacing:0.000000px;}
.ws7_c00276{word-spacing:1.666667px;}
.ws0_c00276{word-spacing:11.527778px;}
.ws5_c00276{word-spacing:13.787879px;}
.ws1_c00276{word-spacing:43.189655px;}
.fc0_c00276{color:transparent;}
.fs1_c00276{font-size:48.000000px;}
.fs0_c00276{font-size:60.000000px;}
.y0_c00276{bottom:0.000000px;}
.y2c_c00276{bottom:157.650000px;}
.y2b_c00276{bottom:173.550000px;}
.y2a_c00276{bottom:217.650000px;}
.y29_c00276{bottom:237.150000px;}
.y28_c00276{bottom:256.950000px;}
.y27_c00276{bottom:277.050000px;}
.y26_c00276{bottom:296.850000px;}
.y25_c00276{bottom:316.950000px;}
.y24_c00276{bottom:336.750000px;}
.y23_c00276{bottom:356.550000px;}
.y22_c00276{bottom:376.350000px;}
.y21_c00276{bottom:396.150000px;}
.y20_c00276{bottom:416.250000px;}
.y1f_c00276{bottom:436.050000px;}
.y1e_c00276{bottom:455.850000px;}
.y1d_c00276{bottom:475.950000px;}
.y1c_c00276{bottom:495.750000px;}
.y1b_c00276{bottom:515.550000px;}
.y1a_c00276{bottom:535.500000px;}
.y19_c00276{bottom:555.000000px;}
.y18_c00276{bottom:575.100000px;}
.y17_c00276{bottom:594.900000px;}
.y16_c00276{bottom:614.700000px;}
.y15_c00276{bottom:634.500000px;}
.y14_c00276{bottom:654.600000px;}
.y13_c00276{bottom:674.400000px;}
.y12_c00276{bottom:694.200000px;}
.y11_c00276{bottom:714.300000px;}
.y10_c00276{bottom:734.100000px;}
.yf_c00276{bottom:754.200000px;}
.ye_c00276{bottom:774.300000px;}
.yd_c00276{bottom:794.400000px;}
.yc_c00276{bottom:814.500000px;}
.yb_c00276{bottom:834.300000px;}
.ya_c00276{bottom:854.100000px;}
.y9_c00276{bottom:874.200000px;}
.y8_c00276{bottom:894.300000px;}
.y7_c00276{bottom:914.100000px;}
.y6_c00276{bottom:934.200000px;}
.y5_c00276{bottom:954.000000px;}
.y4_c00276{bottom:973.800000px;}
.y3_c00276{bottom:993.900000px;}
.y2_c00276{bottom:1013.400000px;}
.y1_c00276{bottom:1052.250000px;}
.h3_c00276{height:48.000000px;}
.h2_c00276{height:60.000000px;}
.h0_c00276{height:1166.759949px;}
.h1_c00276{height:1167.000000px;}
.w0_c00276{width:918.720063px;}
.w1_c00276{width:918.750000px;}
.x0_c00276{left:0.000000px;}
.x13a_c00276{left:139.050000px;}
.x11c_c00276{left:140.400000px;}
.x8c_c00276{left:141.450000px;}
.x23_c00276{left:142.800000px;}
.x3_c00276{left:144.000000px;}
.x1_c00276{left:145.800000px;}
.x144_c00276{left:154.500000px;}
.x11d_c00276{left:158.700000px;}
.xce_c00276{left:162.450000px;}
.x13e_c00276{left:166.500000px;}
.xaa_c00276{left:168.750000px;}
.xc4_c00276{left:169.950000px;}
.x4_c00276{left:172.050000px;}
.x9e_c00276{left:173.550000px;}
.x6e_c00276{left:175.950000px;}
.x84_c00276{left:177.150000px;}
.xed_c00276{left:178.950000px;}
.x8d_c00276{left:180.000000px;}
.xde_c00276{left:182.400000px;}
.xab_c00276{left:183.900000px;}
.x24_c00276{left:184.950000px;}
.x13b_c00276{left:188.400000px;}
.xd6_c00276{left:190.350000px;}
.x108_c00276{left:191.550000px;}
.x85_c00276{left:194.400000px;}
.xac_c00276{left:196.200000px;}
.x66_c00276{left:201.600000px;}
.xc9_c00276{left:202.800000px;}
.x13_c00276{left:204.600000px;}
.xee_c00276{left:205.650000px;}
.x46_c00276{left:207.750000px;}
.xbc_c00276{left:209.850000px;}
.x35_c00276{left:211.050000px;}
.x124_c00276{left:212.250000px;}
.xd7_c00276{left:214.050000px;}
.xef_c00276{left:216.750000px;}
.x5a_c00276{left:219.150000px;}
.x25_c00276{left:220.200000px;}
.x5_c00276{left:223.200000px;}
.xfc_c00276{left:224.400000px;}
.x14_c00276{left:229.050000px;}
.xbd_c00276{left:231.150000px;}
.xdf_c00276{left:232.500000px;}
.xf5_c00276{left:234.750000px;}
.x9f_c00276{left:237.300000px;}
.x109_c00276{left:239.400000px;}
.x134_c00276{left:240.600000px;}
.x12b_c00276{left:242.100000px;}
.x5b_c00276{left:243.600000px;}
.x36_c00276{left:245.550000px;}
.xf0_c00276{left:247.050000px;}
.x47_c00276{left:248.100000px;}
.xb7_c00276{left:251.100000px;}
.x6f_c00276{left:252.300000px;}
.x6_c00276{left:254.100000px;}
.xad_c00276{left:256.350000px;}
.x50_c00276{left:257.700000px;}
.x26_c00276{left:259.500000px;}
.x10a_c00276{left:262.050000px;}
.x5c_c00276{left:263.400000px;}
.xe8_c00276{left:264.450000px;}
.xd8_c00276{left:266.250000px;}
.x15_c00276{left:267.900000px;}
.x101_c00276{left:269.700000px;}
.x70_c00276{left:271.050000px;}
.x125_c00276{left:274.800000px;}
.xa0_c00276{left:275.850000px;}
.xae_c00276{left:277.200000px;}
.xbe_c00276{left:282.600000px;}
.x5d_c00276{left:286.050000px;}
.xfd_c00276{left:287.700000px;}
.x12c_c00276{left:290.400000px;}
.x37_c00276{left:292.050000px;}
.x86_c00276{left:294.750000px;}
.x16_c00276{left:295.950000px;}
.xcf_c00276{left:300.600000px;}
.x27_c00276{left:304.800000px;}
.x98_c00276{left:306.900000px;}
.xa1_c00276{left:308.250000px;}
.x135_c00276{left:309.300000px;}
.x38_c00276{left:310.350000px;}
.x51_c00276{left:312.000000px;}
.x71_c00276{left:313.200000px;}
.xe0_c00276{left:316.350000px;}
.xe2_c00276{left:318.150000px;}
.x17_c00276{left:319.650000px;}
.x7_c00276{left:321.000000px;}
.x8e_c00276{left:322.500000px;}
.xaf_c00276{left:324.000000px;}
.x39_c00276{left:326.250000px;}
.xc5_c00276{left:328.950000px;}
.x5e_c00276{left:330.300000px;}
.x133_c00276{left:331.800000px;}
.x52_c00276{left:335.100000px;}
.xd0_c00276{left:338.700000px;}
.x8_c00276{left:340.050000px;}
.x99_c00276{left:341.850000px;}
.xa2_c00276{left:343.950000px;}
.x13f_c00276{left:345.000000px;}
.x102_c00276{left:347.550000px;}
.x9a_c00276{left:349.350000px;}
.x10b_c00276{left:350.700000px;}
.x3a_c00276{left:351.750000px;}
.x18_c00276{left:354.150000px;}
.x48_c00276{left:357.300000px;}
.x140_c00276{left:359.700000px;}
.x7c_c00276{left:361.350000px;}
.x9_c00276{left:362.700000px;}
.xb0_c00276{left:365.100000px;}
.x87_c00276{left:366.750000px;}
.xf6_c00276{left:368.250000px;}
.x28_c00276{left:370.350000px;}
.x126_c00276{left:373.050000px;}
.x19_c00276{left:375.000000px;}
.x3b_c00276{left:376.950000px;}
.x5f_c00276{left:379.200000px;}
.x49_c00276{left:382.200000px;}
.x72_c00276{left:384.450000px;}
.x7d_c00276{left:386.550000px;}
.xfe_c00276{left:388.050000px;}
.x12d_c00276{left:389.700000px;}
.xa3_c00276{left:391.200000px;}
.xf7_c00276{left:396.300000px;}
.x117_c00276{left:397.800000px;}
.xbf_c00276{left:399.300000px;}
.x1a_c00276{left:400.500000px;}
.x139_c00276{left:402.900000px;}
.x11e_c00276{left:404.250000px;}
.x73_c00276{left:405.300000px;}
.xb1_c00276{left:409.350000px;}
.xa_c00276{left:411.300000px;}
.xe9_c00276{left:413.400000px;}
.x118_c00276{left:415.050000px;}
.x3c_c00276{left:417.300000px;}
.x8f_c00276{left:420.450000px;}
.x7e_c00276{left:422.550000px;}
.x11f_c00276{left:424.050000px;}
.xc6_c00276{left:426.150000px;}
.x53_c00276{left:428.700000px;}
.xb_c00276{left:433.650000px;}
.x74_c00276{left:434.850000px;}
.x29_c00276{left:437.700000px;}
.x7f_c00276{left:439.800000px;}
.x2_c00276{left:442.500000px;}
.xc7_c00276{left:443.850000px;}
.x90_c00276{left:445.650000px;}
.x103_c00276{left:446.850000px;}
.xf1_c00276{left:448.650000px;}
.x112_c00276{left:450.150000px;}
.x10d_c00276{left:451.200000px;}
.xb8_c00276{left:452.400000px;}
.x2a_c00276{left:455.700000px;}
.xea_c00276{left:459.900000px;}
.xc_c00276{left:462.750000px;}
.xc0_c00276{left:463.800000px;}
.x1b_c00276{left:466.050000px;}
.x2b_c00276{left:467.550000px;}
.x9b_c00276{left:468.900000px;}
.x91_c00276{left:470.100000px;}
.x88_c00276{left:471.900000px;}
.xd1_c00276{left:472.950000px;}
.x75_c00276{left:476.550000px;}
.x67_c00276{left:479.850000px;}
.x10e_c00276{left:482.100000px;}
.xf8_c00276{left:484.500000px;}
.x12e_c00276{left:486.450000px;}
.xb9_c00276{left:488.100000px;}
.x3d_c00276{left:490.050000px;}
.x54_c00276{left:491.250000px;}
.xa4_c00276{left:497.400000px;}
.x141_c00276{left:498.750000px;}
.x2c_c00276{left:502.500000px;}
.x60_c00276{left:504.450000px;}
.x68_c00276{left:505.800000px;}
.x1c_c00276{left:507.450000px;}
.x127_c00276{left:508.500000px;}
.xf2_c00276{left:510.600000px;}
.xf9_c00276{left:513.000000px;}
.xa5_c00276{left:516.900000px;}
.x4a_c00276{left:518.550000px;}
.x119_c00276{left:520.500000px;}
.x10f_c00276{left:522.000000px;}
.xca_c00276{left:523.950000px;}
.x3e_c00276{left:525.000000px;}
.x1d_c00276{left:527.250000px;}
.xd2_c00276{left:529.050000px;}
.x2d_c00276{left:531.000000px;}
.x128_c00276{left:532.350000px;}
.xd_c00276{left:534.000000px;}
.x142_c00276{left:535.050000px;}
.x69_c00276{left:536.100000px;}
.x113_c00276{left:538.350000px;}
.xb2_c00276{left:541.050000px;}
.x92_c00276{left:542.100000px;}
.x89_c00276{left:544.650000px;}
.x104_c00276{left:545.850000px;}
.x3f_c00276{left:547.350000px;}
.x76_c00276{left:549.600000px;}
.x55_c00276{left:550.950000px;}
.x2e_c00276{left:552.900000px;}
.x131_c00276{left:554.250000px;}
.x6a_c00276{left:555.900000px;}
.x4b_c00276{left:558.150000px;}
.x110_c00276{left:559.800000px;}
.x8a_c00276{left:561.600000px;}
.x105_c00276{left:563.100000px;}
.xeb_c00276{left:565.350000px;}
.x1e_c00276{left:567.600000px;}
.x77_c00276{left:569.400000px;}
.x80_c00276{left:570.750000px;}
.xc1_c00276{left:572.550000px;}
.x2f_c00276{left:573.750000px;}
.x40_c00276{left:575.850000px;}
.xe3_c00276{left:577.500000px;}
.x61_c00276{left:580.650000px;}
.xb3_c00276{left:582.150000px;}
.x6b_c00276{left:584.400000px;}
.x9c_c00276{left:586.650000px;}
.xf3_c00276{left:589.800000px;}
.xe_c00276{left:591.900000px;}
.x12f_c00276{left:593.100000px;}
.x11a_c00276{left:594.300000px;}
.xd9_c00276{left:595.650000px;}
.xcb_c00276{left:597.450000px;}
.x56_c00276{left:600.600000px;}
.x30_c00276{left:602.850000px;}
.x93_c00276{left:604.350000px;}
.x114_c00276{left:606.000000px;}
.xe4_c00276{left:607.350000px;}
.xfa_c00276{left:610.500000px;}
.x41_c00276{left:612.600000px;}
.x78_c00276{left:614.400000px;}
.x106_c00276{left:618.150000px;}
.xb4_c00276{left:620.400000px;}
.x81_c00276{left:622.200000px;}
.xe5_c00276{left:625.050000px;}
.xf4_c00276{left:627.300000px;}
.xda_c00276{left:628.350000px;}
.x1f_c00276{left:630.900000px;}
.x4c_c00276{left:633.450000px;}
.xa6_c00276{left:636.450000px;}
.x42_c00276{left:638.100000px;}
.x62_c00276{left:640.050000px;}
.xff_c00276{left:641.100000px;}
.x129_c00276{left:643.800000px;}
.xc8_c00276{left:646.500000px;}
.x136_c00276{left:647.700000px;}
.x31_c00276{left:650.400000px;}
.x111_c00276{left:651.600000px;}
.xd3_c00276{left:653.250000px;}
.x120_c00276{left:655.200000px;}
.xa7_c00276{left:657.300000px;}
.xf_c00276{left:658.800000px;}
.x94_c00276{left:660.450000px;}
.x4d_c00276{left:662.550000px;}
.xe6_c00276{left:663.600000px;}
.x43_c00276{left:665.400000px;}
.xe1_c00276{left:670.200000px;}
.x20_c00276{left:672.600000px;}
.x12a_c00276{left:675.450000px;}
.xdb_c00276{left:679.500000px;}
.x4e_c00276{left:680.550000px;}
.xd4_c00276{left:681.750000px;}
.x79_c00276{left:683.850000px;}
.x130_c00276{left:684.900000px;}
.x8b_c00276{left:686.100000px;}
.x57_c00276{left:688.800000px;}
.x6c_c00276{left:691.650000px;}
.x9d_c00276{left:693.900000px;}
.x95_c00276{left:694.950000px;}
.x121_c00276{left:696.900000px;}
.xa8_c00276{left:697.950000px;}
.x132_c00276{left:701.100000px;}
.x10c_c00276{left:703.050000px;}
.x10_c00276{left:704.850000px;}
.x4f_c00276{left:706.050000px;}
.x63_c00276{left:707.100000px;}
.xcc_c00276{left:709.050000px;}
.x58_c00276{left:710.100000px;}
.x115_c00276{left:711.900000px;}
.xe7_c00276{left:715.050000px;}
.x32_c00276{left:717.300000px;}
.xdc_c00276{left:718.800000px;}
.xd5_c00276{left:719.850000px;}
.xba_c00276{left:721.350000px;}
.x122_c00276{left:723.600000px;}
.x64_c00276{left:725.100000px;}
.x107_c00276{left:727.950000px;}
.x21_c00276{left:731.250000px;}
.x137_c00276{left:733.350000px;}
.x96_c00276{left:734.550000px;}
.x7a_c00276{left:736.350000px;}
.x100_c00276{left:738.000000px;}
.x59_c00276{left:739.650000px;}
.x11b_c00276{left:742.650000px;}
.x33_c00276{left:744.600000px;}
.xc2_c00276{left:747.900000px;}
.xa9_c00276{left:749.100000px;}
.x65_c00276{left:750.600000px;}
.x11_c00276{left:752.400000px;}
.x44_c00276{left:754.200000px;}
.xdd_c00276{left:756.600000px;}
.x13c_c00276{left:758.700000px;}
.x82_c00276{left:761.850000px;}
.x6d_c00276{left:763.050000px;}
.xb5_c00276{left:764.550000px;}
.x22_c00276{left:766.200000px;}
.x7b_c00276{left:767.700000px;}
.x123_c00276{left:769.650000px;}
.x45_c00276{left:771.900000px;}
.xc3_c00276{left:773.400000px;}
.x97_c00276{left:776.700000px;}
.x138_c00276{left:778.050000px;}
.x83_c00276{left:779.100000px;}
.xbb_c00276{left:780.750000px;}
.xfb_c00276{left:781.800000px;}
.xcd_c00276{left:783.450000px;}
.x34_c00276{left:784.500000px;}
.x143_c00276{left:785.850000px;}
.xec_c00276{left:788.400000px;}
.xb6_c00276{left:790.500000px;}
.x13d_c00276{left:795.000000px;}
.x12_c00276{left:797.400000px;}
.x116_c00276{left:801.150000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws6_c00276{word-spacing:-7.708333pt;}
.ws4_c00276{word-spacing:-6.666667pt;}
.ws3_c00276{word-spacing:-4.320988pt;}
.ws2_c00276{word-spacing:-1.358025pt;}
.ws8_c00276{word-spacing:0.000000pt;}
.ws7_c00276{word-spacing:1.481481pt;}
.ws0_c00276{word-spacing:10.246914pt;}
.ws5_c00276{word-spacing:12.255892pt;}
.ws1_c00276{word-spacing:38.390805pt;}
.fs1_c00276{font-size:42.666667pt;}
.fs0_c00276{font-size:53.333333pt;}
.y0_c00276{bottom:0.000000pt;}
.y2c_c00276{bottom:140.133333pt;}
.y2b_c00276{bottom:154.266667pt;}
.y2a_c00276{bottom:193.466667pt;}
.y29_c00276{bottom:210.800000pt;}
.y28_c00276{bottom:228.400000pt;}
.y27_c00276{bottom:246.266667pt;}
.y26_c00276{bottom:263.866667pt;}
.y25_c00276{bottom:281.733333pt;}
.y24_c00276{bottom:299.333333pt;}
.y23_c00276{bottom:316.933333pt;}
.y22_c00276{bottom:334.533333pt;}
.y21_c00276{bottom:352.133333pt;}
.y20_c00276{bottom:370.000000pt;}
.y1f_c00276{bottom:387.600000pt;}
.y1e_c00276{bottom:405.200000pt;}
.y1d_c00276{bottom:423.066667pt;}
.y1c_c00276{bottom:440.666667pt;}
.y1b_c00276{bottom:458.266667pt;}
.y1a_c00276{bottom:476.000000pt;}
.y19_c00276{bottom:493.333333pt;}
.y18_c00276{bottom:511.200000pt;}
.y17_c00276{bottom:528.800000pt;}
.y16_c00276{bottom:546.400000pt;}
.y15_c00276{bottom:564.000000pt;}
.y14_c00276{bottom:581.866667pt;}
.y13_c00276{bottom:599.466667pt;}
.y12_c00276{bottom:617.066667pt;}
.y11_c00276{bottom:634.933333pt;}
.y10_c00276{bottom:652.533333pt;}
.yf_c00276{bottom:670.400000pt;}
.ye_c00276{bottom:688.266667pt;}
.yd_c00276{bottom:706.133333pt;}
.yc_c00276{bottom:724.000000pt;}
.yb_c00276{bottom:741.600000pt;}
.ya_c00276{bottom:759.200000pt;}
.y9_c00276{bottom:777.066667pt;}
.y8_c00276{bottom:794.933333pt;}
.y7_c00276{bottom:812.533333pt;}
.y6_c00276{bottom:830.400000pt;}
.y5_c00276{bottom:848.000000pt;}
.y4_c00276{bottom:865.600000pt;}
.y3_c00276{bottom:883.466667pt;}
.y2_c00276{bottom:900.800000pt;}
.y1_c00276{bottom:935.333333pt;}
.h3_c00276{height:42.666667pt;}
.h2_c00276{height:53.333333pt;}
.h0_c00276{height:1037.119955pt;}
.h1_c00276{height:1037.333333pt;}
.w0_c00276{width:816.640056pt;}
.w1_c00276{width:816.666667pt;}
.x0_c00276{left:0.000000pt;}
.x13a_c00276{left:123.600000pt;}
.x11c_c00276{left:124.800000pt;}
.x8c_c00276{left:125.733333pt;}
.x23_c00276{left:126.933333pt;}
.x3_c00276{left:128.000000pt;}
.x1_c00276{left:129.600000pt;}
.x144_c00276{left:137.333333pt;}
.x11d_c00276{left:141.066667pt;}
.xce_c00276{left:144.400000pt;}
.x13e_c00276{left:148.000000pt;}
.xaa_c00276{left:150.000000pt;}
.xc4_c00276{left:151.066667pt;}
.x4_c00276{left:152.933333pt;}
.x9e_c00276{left:154.266667pt;}
.x6e_c00276{left:156.400000pt;}
.x84_c00276{left:157.466667pt;}
.xed_c00276{left:159.066667pt;}
.x8d_c00276{left:160.000000pt;}
.xde_c00276{left:162.133333pt;}
.xab_c00276{left:163.466667pt;}
.x24_c00276{left:164.400000pt;}
.x13b_c00276{left:167.466667pt;}
.xd6_c00276{left:169.200000pt;}
.x108_c00276{left:170.266667pt;}
.x85_c00276{left:172.800000pt;}
.xac_c00276{left:174.400000pt;}
.x66_c00276{left:179.200000pt;}
.xc9_c00276{left:180.266667pt;}
.x13_c00276{left:181.866667pt;}
.xee_c00276{left:182.800000pt;}
.x46_c00276{left:184.666667pt;}
.xbc_c00276{left:186.533333pt;}
.x35_c00276{left:187.600000pt;}
.x124_c00276{left:188.666667pt;}
.xd7_c00276{left:190.266667pt;}
.xef_c00276{left:192.666667pt;}
.x5a_c00276{left:194.800000pt;}
.x25_c00276{left:195.733333pt;}
.x5_c00276{left:198.400000pt;}
.xfc_c00276{left:199.466667pt;}
.x14_c00276{left:203.600000pt;}
.xbd_c00276{left:205.466667pt;}
.xdf_c00276{left:206.666667pt;}
.xf5_c00276{left:208.666667pt;}
.x9f_c00276{left:210.933333pt;}
.x109_c00276{left:212.800000pt;}
.x134_c00276{left:213.866667pt;}
.x12b_c00276{left:215.200000pt;}
.x5b_c00276{left:216.533333pt;}
.x36_c00276{left:218.266667pt;}
.xf0_c00276{left:219.600000pt;}
.x47_c00276{left:220.533333pt;}
.xb7_c00276{left:223.200000pt;}
.x6f_c00276{left:224.266667pt;}
.x6_c00276{left:225.866667pt;}
.xad_c00276{left:227.866667pt;}
.x50_c00276{left:229.066667pt;}
.x26_c00276{left:230.666667pt;}
.x10a_c00276{left:232.933333pt;}
.x5c_c00276{left:234.133333pt;}
.xe8_c00276{left:235.066667pt;}
.xd8_c00276{left:236.666667pt;}
.x15_c00276{left:238.133333pt;}
.x101_c00276{left:239.733333pt;}
.x70_c00276{left:240.933333pt;}
.x125_c00276{left:244.266667pt;}
.xa0_c00276{left:245.200000pt;}
.xae_c00276{left:246.400000pt;}
.xbe_c00276{left:251.200000pt;}
.x5d_c00276{left:254.266667pt;}
.xfd_c00276{left:255.733333pt;}
.x12c_c00276{left:258.133333pt;}
.x37_c00276{left:259.600000pt;}
.x86_c00276{left:262.000000pt;}
.x16_c00276{left:263.066667pt;}
.xcf_c00276{left:267.200000pt;}
.x27_c00276{left:270.933333pt;}
.x98_c00276{left:272.800000pt;}
.xa1_c00276{left:274.000000pt;}
.x135_c00276{left:274.933333pt;}
.x38_c00276{left:275.866667pt;}
.x51_c00276{left:277.333333pt;}
.x71_c00276{left:278.400000pt;}
.xe0_c00276{left:281.200000pt;}
.xe2_c00276{left:282.800000pt;}
.x17_c00276{left:284.133333pt;}
.x7_c00276{left:285.333333pt;}
.x8e_c00276{left:286.666667pt;}
.xaf_c00276{left:288.000000pt;}
.x39_c00276{left:290.000000pt;}
.xc5_c00276{left:292.400000pt;}
.x5e_c00276{left:293.600000pt;}
.x133_c00276{left:294.933333pt;}
.x52_c00276{left:297.866667pt;}
.xd0_c00276{left:301.066667pt;}
.x8_c00276{left:302.266667pt;}
.x99_c00276{left:303.866667pt;}
.xa2_c00276{left:305.733333pt;}
.x13f_c00276{left:306.666667pt;}
.x102_c00276{left:308.933333pt;}
.x9a_c00276{left:310.533333pt;}
.x10b_c00276{left:311.733333pt;}
.x3a_c00276{left:312.666667pt;}
.x18_c00276{left:314.800000pt;}
.x48_c00276{left:317.600000pt;}
.x140_c00276{left:319.733333pt;}
.x7c_c00276{left:321.200000pt;}
.x9_c00276{left:322.400000pt;}
.xb0_c00276{left:324.533333pt;}
.x87_c00276{left:326.000000pt;}
.xf6_c00276{left:327.333333pt;}
.x28_c00276{left:329.200000pt;}
.x126_c00276{left:331.600000pt;}
.x19_c00276{left:333.333333pt;}
.x3b_c00276{left:335.066667pt;}
.x5f_c00276{left:337.066667pt;}
.x49_c00276{left:339.733333pt;}
.x72_c00276{left:341.733333pt;}
.x7d_c00276{left:343.600000pt;}
.xfe_c00276{left:344.933333pt;}
.x12d_c00276{left:346.400000pt;}
.xa3_c00276{left:347.733333pt;}
.xf7_c00276{left:352.266667pt;}
.x117_c00276{left:353.600000pt;}
.xbf_c00276{left:354.933333pt;}
.x1a_c00276{left:356.000000pt;}
.x139_c00276{left:358.133333pt;}
.x11e_c00276{left:359.333333pt;}
.x73_c00276{left:360.266667pt;}
.xb1_c00276{left:363.866667pt;}
.xa_c00276{left:365.600000pt;}
.xe9_c00276{left:367.466667pt;}
.x118_c00276{left:368.933333pt;}
.x3c_c00276{left:370.933333pt;}
.x8f_c00276{left:373.733333pt;}
.x7e_c00276{left:375.600000pt;}
.x11f_c00276{left:376.933333pt;}
.xc6_c00276{left:378.800000pt;}
.x53_c00276{left:381.066667pt;}
.xb_c00276{left:385.466667pt;}
.x74_c00276{left:386.533333pt;}
.x29_c00276{left:389.066667pt;}
.x7f_c00276{left:390.933333pt;}
.x2_c00276{left:393.333333pt;}
.xc7_c00276{left:394.533333pt;}
.x90_c00276{left:396.133333pt;}
.x103_c00276{left:397.200000pt;}
.xf1_c00276{left:398.800000pt;}
.x112_c00276{left:400.133333pt;}
.x10d_c00276{left:401.066667pt;}
.xb8_c00276{left:402.133333pt;}
.x2a_c00276{left:405.066667pt;}
.xea_c00276{left:408.800000pt;}
.xc_c00276{left:411.333333pt;}
.xc0_c00276{left:412.266667pt;}
.x1b_c00276{left:414.266667pt;}
.x2b_c00276{left:415.600000pt;}
.x9b_c00276{left:416.800000pt;}
.x91_c00276{left:417.866667pt;}
.x88_c00276{left:419.466667pt;}
.xd1_c00276{left:420.400000pt;}
.x75_c00276{left:423.600000pt;}
.x67_c00276{left:426.533333pt;}
.x10e_c00276{left:428.533333pt;}
.xf8_c00276{left:430.666667pt;}
.x12e_c00276{left:432.400000pt;}
.xb9_c00276{left:433.866667pt;}
.x3d_c00276{left:435.600000pt;}
.x54_c00276{left:436.666667pt;}
.xa4_c00276{left:442.133333pt;}
.x141_c00276{left:443.333333pt;}
.x2c_c00276{left:446.666667pt;}
.x60_c00276{left:448.400000pt;}
.x68_c00276{left:449.600000pt;}
.x1c_c00276{left:451.066667pt;}
.x127_c00276{left:452.000000pt;}
.xf2_c00276{left:453.866667pt;}
.xf9_c00276{left:456.000000pt;}
.xa5_c00276{left:459.466667pt;}
.x4a_c00276{left:460.933333pt;}
.x119_c00276{left:462.666667pt;}
.x10f_c00276{left:464.000000pt;}
.xca_c00276{left:465.733333pt;}
.x3e_c00276{left:466.666667pt;}
.x1d_c00276{left:468.666667pt;}
.xd2_c00276{left:470.266667pt;}
.x2d_c00276{left:472.000000pt;}
.x128_c00276{left:473.200000pt;}
.xd_c00276{left:474.666667pt;}
.x142_c00276{left:475.600000pt;}
.x69_c00276{left:476.533333pt;}
.x113_c00276{left:478.533333pt;}
.xb2_c00276{left:480.933333pt;}
.x92_c00276{left:481.866667pt;}
.x89_c00276{left:484.133333pt;}
.x104_c00276{left:485.200000pt;}
.x3f_c00276{left:486.533333pt;}
.x76_c00276{left:488.533333pt;}
.x55_c00276{left:489.733333pt;}
.x2e_c00276{left:491.466667pt;}
.x131_c00276{left:492.666667pt;}
.x6a_c00276{left:494.133333pt;}
.x4b_c00276{left:496.133333pt;}
.x110_c00276{left:497.600000pt;}
.x8a_c00276{left:499.200000pt;}
.x105_c00276{left:500.533333pt;}
.xeb_c00276{left:502.533333pt;}
.x1e_c00276{left:504.533333pt;}
.x77_c00276{left:506.133333pt;}
.x80_c00276{left:507.333333pt;}
.xc1_c00276{left:508.933333pt;}
.x2f_c00276{left:510.000000pt;}
.x40_c00276{left:511.866667pt;}
.xe3_c00276{left:513.333333pt;}
.x61_c00276{left:516.133333pt;}
.xb3_c00276{left:517.466667pt;}
.x6b_c00276{left:519.466667pt;}
.x9c_c00276{left:521.466667pt;}
.xf3_c00276{left:524.266667pt;}
.xe_c00276{left:526.133333pt;}
.x12f_c00276{left:527.200000pt;}
.x11a_c00276{left:528.266667pt;}
.xd9_c00276{left:529.466667pt;}
.xcb_c00276{left:531.066667pt;}
.x56_c00276{left:533.866667pt;}
.x30_c00276{left:535.866667pt;}
.x93_c00276{left:537.200000pt;}
.x114_c00276{left:538.666667pt;}
.xe4_c00276{left:539.866667pt;}
.xfa_c00276{left:542.666667pt;}
.x41_c00276{left:544.533333pt;}
.x78_c00276{left:546.133333pt;}
.x106_c00276{left:549.466667pt;}
.xb4_c00276{left:551.466667pt;}
.x81_c00276{left:553.066667pt;}
.xe5_c00276{left:555.600000pt;}
.xf4_c00276{left:557.600000pt;}
.xda_c00276{left:558.533333pt;}
.x1f_c00276{left:560.800000pt;}
.x4c_c00276{left:563.066667pt;}
.xa6_c00276{left:565.733333pt;}
.x42_c00276{left:567.200000pt;}
.x62_c00276{left:568.933333pt;}
.xff_c00276{left:569.866667pt;}
.x129_c00276{left:572.266667pt;}
.xc8_c00276{left:574.666667pt;}
.x136_c00276{left:575.733333pt;}
.x31_c00276{left:578.133333pt;}
.x111_c00276{left:579.200000pt;}
.xd3_c00276{left:580.666667pt;}
.x120_c00276{left:582.400000pt;}
.xa7_c00276{left:584.266667pt;}
.xf_c00276{left:585.600000pt;}
.x94_c00276{left:587.066667pt;}
.x4d_c00276{left:588.933333pt;}
.xe6_c00276{left:589.866667pt;}
.x43_c00276{left:591.466667pt;}
.xe1_c00276{left:595.733333pt;}
.x20_c00276{left:597.866667pt;}
.x12a_c00276{left:600.400000pt;}
.xdb_c00276{left:604.000000pt;}
.x4e_c00276{left:604.933333pt;}
.xd4_c00276{left:606.000000pt;}
.x79_c00276{left:607.866667pt;}
.x130_c00276{left:608.800000pt;}
.x8b_c00276{left:609.866667pt;}
.x57_c00276{left:612.266667pt;}
.x6c_c00276{left:614.800000pt;}
.x9d_c00276{left:616.800000pt;}
.x95_c00276{left:617.733333pt;}
.x121_c00276{left:619.466667pt;}
.xa8_c00276{left:620.400000pt;}
.x132_c00276{left:623.200000pt;}
.x10c_c00276{left:624.933333pt;}
.x10_c00276{left:626.533333pt;}
.x4f_c00276{left:627.600000pt;}
.x63_c00276{left:628.533333pt;}
.xcc_c00276{left:630.266667pt;}
.x58_c00276{left:631.200000pt;}
.x115_c00276{left:632.800000pt;}
.xe7_c00276{left:635.600000pt;}
.x32_c00276{left:637.600000pt;}
.xdc_c00276{left:638.933333pt;}
.xd5_c00276{left:639.866667pt;}
.xba_c00276{left:641.200000pt;}
.x122_c00276{left:643.200000pt;}
.x64_c00276{left:644.533333pt;}
.x107_c00276{left:647.066667pt;}
.x21_c00276{left:650.000000pt;}
.x137_c00276{left:651.866667pt;}
.x96_c00276{left:652.933333pt;}
.x7a_c00276{left:654.533333pt;}
.x100_c00276{left:656.000000pt;}
.x59_c00276{left:657.466667pt;}
.x11b_c00276{left:660.133333pt;}
.x33_c00276{left:661.866667pt;}
.xc2_c00276{left:664.800000pt;}
.xa9_c00276{left:665.866667pt;}
.x65_c00276{left:667.200000pt;}
.x11_c00276{left:668.800000pt;}
.x44_c00276{left:670.400000pt;}
.xdd_c00276{left:672.533333pt;}
.x13c_c00276{left:674.400000pt;}
.x82_c00276{left:677.200000pt;}
.x6d_c00276{left:678.266667pt;}
.xb5_c00276{left:679.600000pt;}
.x22_c00276{left:681.066667pt;}
.x7b_c00276{left:682.400000pt;}
.x123_c00276{left:684.133333pt;}
.x45_c00276{left:686.133333pt;}
.xc3_c00276{left:687.466667pt;}
.x97_c00276{left:690.400000pt;}
.x138_c00276{left:691.600000pt;}
.x83_c00276{left:692.533333pt;}
.xbb_c00276{left:694.000000pt;}
.xfb_c00276{left:694.933333pt;}
.xcd_c00276{left:696.400000pt;}
.x34_c00276{left:697.333333pt;}
.x143_c00276{left:698.533333pt;}
.xec_c00276{left:700.800000pt;}
.xb6_c00276{left:702.666667pt;}
.x13d_c00276{left:706.666667pt;}
.x12_c00276{left:708.800000pt;}
.x116_c00276{left:712.133333pt;}
}





/* 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_c00277 {
    display:none;
  }
  .loading-indicator_c00277.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00277 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_c00277 { 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_c00277" -> "#page-container .classname_c00277")
 */
.pf_c00277 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00277 { /* 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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00277 { /* 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_c00277 { /* 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_c00277 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00277 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00277 {overflow:visible;}
  }
}
.c_c00277 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00277 { /* 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_c00277:after { /* webkit #35443 */
  content: '';
}
.t_c00277:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00277 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 */
}
.__c00277 { /* 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_c00277 { /* info for Javascript */
  display:none;
}
.l_c00277 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00277 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00277 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00277: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_c00277 {
    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_c00277.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00277.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_c00277 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.000000;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;}
.mb0_c00277{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m53_c00277{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m55_c00277{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m70_c00277{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3_c00277{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maa_c00277{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m9_c00277{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00277{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.maf_c00277{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00277{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m18_c00277{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00277{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00277{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00277{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00277{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m83_c00277{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m54_c00277{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m17_c00277{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m78_c00277{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00277{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00277{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mab_c00277{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00277{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m30_c00277{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mae_c00277{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00277{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m63_c00277{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mac_c00277{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00277{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m22_c00277{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00277{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00277{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mad_c00277{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m94_c00277{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m27_c00277{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00277{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00277{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00277{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m33_c00277{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m93_c00277{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m64_c00277{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00277{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m43_c00277{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.me_c00277{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00277{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00277{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00277{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00277{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00277{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00277{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m72_c00277{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00277{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m37_c00277{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5_c00277{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00277{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00277{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m82_c00277{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00277{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m85_c00277{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00277{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m99_c00277{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m68_c00277{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00277{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m95_c00277{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00277{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m52_c00277{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00277{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m34_c00277{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m51_c00277{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00277{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00277{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00277{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m59_c00277{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m92_c00277{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00277{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m41_c00277{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m44_c00277{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m19_c00277{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m75_c00277{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m28_c00277{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m31_c00277{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00277{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m71_c00277{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00277{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00277{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m29_c00277{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00277{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m49_c00277{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m80_c00277{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m40_c00277{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00277{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00277{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00277{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00277{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10_c00277{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m39_c00277{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m35_c00277{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00277{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m97_c00277{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00277{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00277{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24_c00277{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00277{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m56_c00277{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m67_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00277{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m36_c00277{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00277{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12_c00277{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m47_c00277{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00277{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m77_c00277{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m32_c00277{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m38_c00277{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00277{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00277{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00277{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m50_c00277{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m26_c00277{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m90_c00277{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00277{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00277{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00277{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m84_c00277{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00277{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00277{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m76_c00277{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00277{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00277{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00277{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m96_c00277{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00277{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00277{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m62_c00277{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m65_c00277{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m58_c00277{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7_c00277{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m60_c00277{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m21_c00277{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m79_c00277{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m57_c00277{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.md_c00277{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00277{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m91_c00277{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m86_c00277{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6_c00277{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m98_c00277{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m87_c00277{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m81_c00277{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00277{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00277{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m42_c00277{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m89_c00277{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m0_c00277{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00277{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00277{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00277{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m73_c00277{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m69_c00277{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00277{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m45_c00277{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m20_c00277{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00277{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00277{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m88_c00277{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00277{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m46_c00277{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m25_c00277{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00277{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00277{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00277{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{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__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00277{word-spacing:-3.125000px;}
.ws10_c00277{word-spacing:0.000000px;}
.wse_c00277{word-spacing:3.247803px;}
.ws6_c00277{word-spacing:3.894096px;}
.ws2_c00277{word-spacing:4.625000px;}
.ws5_c00277{word-spacing:6.000000px;}
.wsd_c00277{word-spacing:6.723926px;}
.ws9_c00277{word-spacing:7.625000px;}
.ws4_c00277{word-spacing:9.000000px;}
.wsf_c00277{word-spacing:9.125000px;}
.ws7_c00277{word-spacing:9.900352px;}
.ws1_c00277{word-spacing:12.777778px;}
.ws0_c00277{word-spacing:13.166667px;}
.ws3_c00277{word-spacing:13.375000px;}
.wsc_c00277{word-spacing:14.444444px;}
.wsa_c00277{word-spacing:17.750000px;}
.wsb_c00277{word-spacing:25.250000px;}
.fc0_c00277{color:transparent;}
.fs0_c00277{font-size:54.000000px;}
.y0_c00277{bottom:0.000000px;}
.y2c_c00277{bottom:147.600000px;}
.y2b_c00277{bottom:163.050000px;}
.y2a_c00277{bottom:206.700000px;}
.y29_c00277{bottom:226.500000px;}
.y28_c00277{bottom:246.600000px;}
.y27_c00277{bottom:266.400000px;}
.y26_c00277{bottom:286.350000px;}
.y25_c00277{bottom:306.450000px;}
.y24_c00277{bottom:326.250000px;}
.y23_c00277{bottom:346.050000px;}
.y22_c00277{bottom:365.850000px;}
.y21_c00277{bottom:385.650000px;}
.y20_c00277{bottom:405.750000px;}
.y1f_c00277{bottom:425.250000px;}
.y1e_c00277{bottom:445.050000px;}
.y1d_c00277{bottom:465.150000px;}
.y1c_c00277{bottom:485.100000px;}
.y1b_c00277{bottom:505.200000px;}
.y1a_c00277{bottom:525.000000px;}
.y19_c00277{bottom:545.100000px;}
.y18_c00277{bottom:564.900000px;}
.y17_c00277{bottom:585.000000px;}
.y16_c00277{bottom:604.500000px;}
.y15_c00277{bottom:624.600000px;}
.y14_c00277{bottom:644.400000px;}
.y13_c00277{bottom:664.200000px;}
.y12_c00277{bottom:684.000000px;}
.y11_c00277{bottom:704.100000px;}
.y10_c00277{bottom:723.900000px;}
.yf_c00277{bottom:743.700000px;}
.ye_c00277{bottom:763.500000px;}
.yd_c00277{bottom:783.600000px;}
.yc_c00277{bottom:803.100000px;}
.yb_c00277{bottom:823.650000px;}
.ya_c00277{bottom:843.450000px;}
.y9_c00277{bottom:863.250000px;}
.y8_c00277{bottom:883.500000px;}
.y7_c00277{bottom:903.300000px;}
.y6_c00277{bottom:923.100000px;}
.y5_c00277{bottom:943.200000px;}
.y4_c00277{bottom:963.000000px;}
.y3_c00277{bottom:982.800000px;}
.y2_c00277{bottom:1002.900000px;}
.y1_c00277{bottom:1041.450000px;}
.h2_c00277{height:54.000000px;}
.h0_c00277{height:1166.759949px;}
.h1_c00277{height:1167.000000px;}
.w0_c00277{width:918.720063px;}
.w1_c00277{width:918.750000px;}
.x0_c00277{left:0.000000px;}
.xfa_c00277{left:114.150000px;}
.x3_c00277{left:115.200000px;}
.x111_c00277{left:116.250000px;}
.x11c_c00277{left:117.450000px;}
.xbd_c00277{left:132.300000px;}
.x26_c00277{left:133.650000px;}
.xc5_c00277{left:135.300000px;}
.x112_c00277{left:141.450000px;}
.xf5_c00277{left:142.500000px;}
.xfb_c00277{left:144.000000px;}
.x7a_c00277{left:145.050000px;}
.x6d_c00277{left:146.550000px;}
.x14_c00277{left:148.350000px;}
.xec_c00277{left:151.800000px;}
.x82_c00277{left:154.350000px;}
.xce_c00277{left:156.600000px;}
.xbe_c00277{left:158.250000px;}
.x4_c00277{left:161.250000px;}
.x50_c00277{left:163.050000px;}
.x90_c00277{left:165.000000px;}
.xde_c00277{left:167.400000px;}
.xb5_c00277{left:168.900000px;}
.x11e_c00277{left:172.050000px;}
.x15_c00277{left:173.550000px;}
.xfc_c00277{left:175.650000px;}
.x12c_c00277{left:176.850000px;}
.x5_c00277{left:178.500000px;}
.x127_c00277{left:180.750000px;}
.xac_c00277{left:182.700000px;}
.x131_c00277{left:184.800000px;}
.x5e_c00277{left:185.850000px;}
.x7b_c00277{left:188.250000px;}
.x36_c00277{left:190.200000px;}
.x27_c00277{left:191.250000px;}
.x6e_c00277{left:192.600000px;}
.xc6_c00277{left:199.050000px;}
.xbf_c00277{left:200.700000px;}
.x43_c00277{left:203.250000px;}
.xe2_c00277{left:204.600000px;}
.x7c_c00277{left:205.950000px;}
.xcf_c00277{left:207.750000px;}
.x5f_c00277{left:209.550000px;}
.x9a_c00277{left:211.050000px;}
.x104_c00277{left:214.200000px;}
.x51_c00277{left:217.350000px;}
.x110_c00277{left:218.700000px;}
.x128_c00277{left:220.050000px;}
.x28_c00277{left:221.550000px;}
.x16_c00277{left:224.700000px;}
.x44_c00277{left:226.650000px;}
.x6_c00277{left:228.900000px;}
.x9b_c00277{left:230.850000px;}
.xd7_c00277{left:231.900000px;}
.x37_c00277{left:234.450000px;}
.x11f_c00277{left:235.800000px;}
.x60_c00277{left:236.850000px;}
.x52_c00277{left:237.900000px;}
.x105_c00277{left:239.700000px;}
.xed_c00277{left:242.550000px;}
.x17_c00277{left:244.800000px;}
.xe3_c00277{left:247.500000px;}
.x45_c00277{left:249.300000px;}
.x29_c00277{left:251.850000px;}
.xb6_c00277{left:254.550000px;}
.x10c_c00277{left:255.600000px;}
.x6f_c00277{left:257.100000px;}
.x117_c00277{left:259.350000px;}
.x113_c00277{left:260.700000px;}
.xee_c00277{left:262.050000px;}
.xd8_c00277{left:263.550000px;}
.x38_c00277{left:265.350000px;}
.x83_c00277{left:266.550000px;}
.xd0_c00277{left:269.250000px;}
.x18_c00277{left:270.750000px;}
.xad_c00277{left:276.750000px;}
.x7_c00277{left:277.800000px;}
.xe4_c00277{left:279.900000px;}
.xfd_c00277{left:281.850000px;}
.x46_c00277{left:283.500000px;}
.x84_c00277{left:286.650000px;}
.x91_c00277{left:288.150000px;}
.x61_c00277{left:289.500000px;}
.x10d_c00277{left:291.300000px;}
.x13c_c00277{left:293.400000px;}
.x2a_c00277{left:295.050000px;}
.x12d_c00277{left:296.700000px;}
.xef_c00277{left:299.100000px;}
.x120_c00277{left:300.600000px;}
.x53_c00277{left:301.950000px;}
.xdf_c00277{left:303.150000px;}
.x138_c00277{left:305.550000px;}
.x62_c00277{left:307.500000px;}
.xae_c00277{left:310.950000px;}
.x106_c00277{left:313.050000px;}
.x129_c00277{left:315.000000px;}
.x8_c00277{left:316.350000px;}
.x10a_c00277{left:318.150000px;}
.x135_c00277{left:321.150000px;}
.x2b_c00277{left:322.800000px;}
.x19_c00277{left:324.000000px;}
.x13e_c00277{left:325.650000px;}
.x9c_c00277{left:327.000000px;}
.xf6_c00277{left:328.500000px;}
.xd1_c00277{left:332.250000px;}
.x47_c00277{left:336.450000px;}
.xe5_c00277{left:339.000000px;}
.x7d_c00277{left:340.500000px;}
.x63_c00277{left:342.750000px;}
.x39_c00277{left:343.800000px;}
.x13f_c00277{left:345.450000px;}
.xa5_c00277{left:346.500000px;}
.x119_c00277{left:348.150000px;}
.x54_c00277{left:351.600000px;}
.x9_c00277{left:353.850000px;}
.xd2_c00277{left:355.950000px;}
.x70_c00277{left:357.600000px;}
.x9d_c00277{left:360.150000px;}
.x121_c00277{left:361.500000px;}
.x12a_c00277{left:364.350000px;}
.x3a_c00277{left:365.400000px;}
.x1a_c00277{left:367.200000px;}
.x11d_c00277{left:372.750000px;}
.x92_c00277{left:373.800000px;}
.x71_c00277{left:375.600000px;}
.x64_c00277{left:376.650000px;}
.xaf_c00277{left:383.250000px;}
.x2c_c00277{left:387.300000px;}
.x85_c00277{left:389.250000px;}
.x48_c00277{left:390.450000px;}
.x1b_c00277{left:392.400000px;}
.xe6_c00277{left:394.800000px;}
.xa6_c00277{left:396.150000px;}
.x12e_c00277{left:397.200000px;}
.xb7_c00277{left:398.250000px;}
.x132_c00277{left:399.600000px;}
.x13d_c00277{left:402.150000px;}
.x3b_c00277{left:403.200000px;}
.x1_c00277{left:405.750000px;}
.x7e_c00277{left:407.100000px;}
.x114_c00277{left:409.650000px;}
.x65_c00277{left:411.600000px;}
.xb0_c00277{left:413.550000px;}
.x55_c00277{left:416.700000px;}
.xf0_c00277{left:417.900000px;}
.x1c_c00277{left:419.400000px;}
.x2d_c00277{left:421.200000px;}
.xa_c00277{left:423.000000px;}
.x9e_c00277{left:424.950000px;}
.x86_c00277{left:426.300000px;}
.x7f_c00277{left:427.650000px;}
.x49_c00277{left:429.000000px;}
.x72_c00277{left:432.450000px;}
.x1d_c00277{left:434.850000px;}
.x2e_c00277{left:438.150000px;}
.x9f_c00277{left:443.700000px;}
.xd3_c00277{left:445.650000px;}
.xe7_c00277{left:446.700000px;}
.x12f_c00277{left:449.100000px;}
.xb8_c00277{left:450.750000px;}
.xb_c00277{left:452.550000px;}
.x93_c00277{left:454.950000px;}
.x87_c00277{left:456.150000px;}
.x56_c00277{left:457.350000px;}
.x122_c00277{left:458.700000px;}
.x139_c00277{left:460.800000px;}
.xfe_c00277{left:462.900000px;}
.x1e_c00277{left:464.400000px;}
.x2f_c00277{left:465.450000px;}
.xb9_c00277{left:470.250000px;}
.xa0_c00277{left:472.200000px;}
.xf7_c00277{left:474.900000px;}
.xf1_c00277{left:477.300000px;}
.x140_c00277{left:480.750000px;}
.x94_c00277{left:482.700000px;}
.x10e_c00277{left:484.200000px;}
.xc_c00277{left:485.250000px;}
.x88_c00277{left:487.050000px;}
.x80_c00277{left:489.450000px;}
.xc7_c00277{left:490.800000px;}
.xe0_c00277{left:492.000000px;}
.x73_c00277{left:493.650000px;}
.x3c_c00277{left:496.800000px;}
.x1f_c00277{left:498.600000px;}
.xc0_c00277{left:499.800000px;}
.x30_c00277{left:502.200000px;}
.xb1_c00277{left:505.800000px;}
.xff_c00277{left:508.200000px;}
.x4a_c00277{left:509.700000px;}
.xc1_c00277{left:510.900000px;}
.x66_c00277{left:513.900000px;}
.x123_c00277{left:515.550000px;}
.x3d_c00277{left:517.350000px;}
.xf8_c00277{left:520.200000px;}
.xc8_c00277{left:521.700000px;}
.xe8_c00277{left:522.900000px;}
.xa7_c00277{left:525.450000px;}
.x20_c00277{left:527.100000px;}
.x115_c00277{left:528.150000px;}
.x67_c00277{left:529.350000px;}
.x95_c00277{left:530.550000px;}
.x89_c00277{left:532.350000px;}
.x57_c00277{left:535.050000px;}
.x133_c00277{left:537.450000px;}
.xd_c00277{left:538.500000px;}
.x100_c00277{left:539.550000px;}
.x118_c00277{left:541.350000px;}
.x11a_c00277{left:543.000000px;}
.xb2_c00277{left:544.350000px;}
.x124_c00277{left:547.950000px;}
.xd4_c00277{left:549.600000px;}
.xc9_c00277{left:553.050000px;}
.x58_c00277{left:554.850000px;}
.xe_c00277{left:556.800000px;}
.xe1_c00277{left:557.850000px;}
.xd9_c00277{left:560.550000px;}
.x8a_c00277{left:562.200000px;}
.xc2_c00277{left:564.150000px;}
.x68_c00277{left:565.350000px;}
.x31_c00277{left:566.400000px;}
.xb3_c00277{left:567.750000px;}
.x74_c00277{left:569.250000px;}
.x107_c00277{left:571.800000px;}
.x134_c00277{left:573.150000px;}
.x10f_c00277{left:574.200000px;}
.x8b_c00277{left:575.850000px;}
.xa1_c00277{left:577.200000px;}
.x81_c00277{left:578.400000px;}
.xca_c00277{left:580.350000px;}
.x59_c00277{left:582.900000px;}
.x101_c00277{left:585.300000px;}
.x69_c00277{left:587.250000px;}
.x75_c00277{left:589.800000px;}
.x3e_c00277{left:591.150000px;}
.x21_c00277{left:592.650000px;}
.xb4_c00277{left:596.850000px;}
.xf_c00277{left:600.000000px;}
.xa2_c00277{left:602.700000px;}
.xda_c00277{left:604.050000px;}
.x8c_c00277{left:606.450000px;}
.xa8_c00277{left:608.700000px;}
.x76_c00277{left:611.700000px;}
.x136_c00277{left:615.000000px;}
.xc3_c00277{left:619.200000px;}
.xf9_c00277{left:620.250000px;}
.x5a_c00277{left:622.200000px;}
.x11b_c00277{left:623.250000px;}
.xba_c00277{left:625.050000px;}
.x22_c00277{left:626.850000px;}
.x77_c00277{left:628.950000px;}
.xd5_c00277{left:630.000000px;}
.x130_c00277{left:631.500000px;}
.x4b_c00277{left:633.150000px;}
.xcb_c00277{left:634.650000px;}
.x8d_c00277{left:638.100000px;}
.x3f_c00277{left:640.050000px;}
.x96_c00277{left:641.100000px;}
.x5b_c00277{left:642.300000px;}
.x108_c00277{left:646.650000px;}
.xa9_c00277{left:648.300000px;}
.xdb_c00277{left:650.100000px;}
.x102_c00277{left:651.600000px;}
.x10_c00277{left:653.700000px;}
.x23_c00277{left:658.950000px;}
.x4c_c00277{left:661.650000px;}
.x40_c00277{left:662.700000px;}
.x32_c00277{left:663.900000px;}
.x6a_c00277{left:665.400000px;}
.xbb_c00277{left:667.200000px;}
.x5c_c00277{left:668.550000px;}
.x78_c00277{left:670.350000px;}
.xcc_c00277{left:671.400000px;}
.x11_c00277{left:674.250000px;}
.x97_c00277{left:676.800000px;}
.x8e_c00277{left:679.500000px;}
.x6b_c00277{left:682.650000px;}
.x125_c00277{left:684.750000px;}
.xdc_c00277{left:687.900000px;}
.x33_c00277{left:689.400000px;}
.x13a_c00277{left:693.000000px;}
.xe9_c00277{left:694.200000px;}
.x10b_c00277{left:695.700000px;}
.xf2_c00277{left:696.900000px;}
.xaa_c00277{left:698.250000px;}
.x12b_c00277{left:699.600000px;}
.x6c_c00277{left:703.200000px;}
.x12_c00277{left:705.600000px;}
.x4d_c00277{left:706.650000px;}
.x41_c00277{left:708.000000px;}
.x13b_c00277{left:711.000000px;}
.x116_c00277{left:712.500000px;}
.xc4_c00277{left:713.850000px;}
.xd6_c00277{left:715.200000px;}
.x8f_c00277{left:717.600000px;}
.x137_c00277{left:719.100000px;}
.x34_c00277{left:721.050000px;}
.x24_c00277{left:725.250000px;}
.x98_c00277{left:728.700000px;}
.xf3_c00277{left:732.150000px;}
.xa3_c00277{left:733.950000px;}
.x103_c00277{left:735.450000px;}
.x42_c00277{left:737.100000px;}
.xea_c00277{left:738.150000px;}
.x79_c00277{left:739.500000px;}
.x126_c00277{left:741.300000px;}
.x4e_c00277{left:742.650000px;}
.x5d_c00277{left:744.150000px;}
.x13_c00277{left:746.250000px;}
.x35_c00277{left:749.550000px;}
.xcd_c00277{left:750.600000px;}
.x25_c00277{left:752.550000px;}
.xbc_c00277{left:753.600000px;}
.x2_c00277{left:757.500000px;}
.xa4_c00277{left:759.150000px;}
.xeb_c00277{left:761.550000px;}
.x4f_c00277{left:762.750000px;}
.xab_c00277{left:764.400000px;}
.xdd_c00277{left:768.900000px;}
.xf4_c00277{left:769.950000px;}
.x99_c00277{left:772.200000px;}
.x109_c00277{left:774.450000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws8_c00277{word-spacing:-2.777778pt;}
.ws10_c00277{word-spacing:0.000000pt;}
.wse_c00277{word-spacing:2.886936pt;}
.ws6_c00277{word-spacing:3.461418pt;}
.ws2_c00277{word-spacing:4.111111pt;}
.ws5_c00277{word-spacing:5.333333pt;}
.wsd_c00277{word-spacing:5.976823pt;}
.ws9_c00277{word-spacing:6.777778pt;}
.ws4_c00277{word-spacing:8.000000pt;}
.wsf_c00277{word-spacing:8.111111pt;}
.ws7_c00277{word-spacing:8.800313pt;}
.ws1_c00277{word-spacing:11.358025pt;}
.ws0_c00277{word-spacing:11.703704pt;}
.ws3_c00277{word-spacing:11.888889pt;}
.wsc_c00277{word-spacing:12.839506pt;}
.wsa_c00277{word-spacing:15.777778pt;}
.wsb_c00277{word-spacing:22.444444pt;}
.fs0_c00277{font-size:48.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y2c_c00277{bottom:131.200000pt;}
.y2b_c00277{bottom:144.933333pt;}
.y2a_c00277{bottom:183.733333pt;}
.y29_c00277{bottom:201.333333pt;}
.y28_c00277{bottom:219.200000pt;}
.y27_c00277{bottom:236.800000pt;}
.y26_c00277{bottom:254.533333pt;}
.y25_c00277{bottom:272.400000pt;}
.y24_c00277{bottom:290.000000pt;}
.y23_c00277{bottom:307.600000pt;}
.y22_c00277{bottom:325.200000pt;}
.y21_c00277{bottom:342.800000pt;}
.y20_c00277{bottom:360.666667pt;}
.y1f_c00277{bottom:378.000000pt;}
.y1e_c00277{bottom:395.600000pt;}
.y1d_c00277{bottom:413.466667pt;}
.y1c_c00277{bottom:431.200000pt;}
.y1b_c00277{bottom:449.066667pt;}
.y1a_c00277{bottom:466.666667pt;}
.y19_c00277{bottom:484.533333pt;}
.y18_c00277{bottom:502.133333pt;}
.y17_c00277{bottom:520.000000pt;}
.y16_c00277{bottom:537.333333pt;}
.y15_c00277{bottom:555.200000pt;}
.y14_c00277{bottom:572.800000pt;}
.y13_c00277{bottom:590.400000pt;}
.y12_c00277{bottom:608.000000pt;}
.y11_c00277{bottom:625.866667pt;}
.y10_c00277{bottom:643.466667pt;}
.yf_c00277{bottom:661.066667pt;}
.ye_c00277{bottom:678.666667pt;}
.yd_c00277{bottom:696.533333pt;}
.yc_c00277{bottom:713.866667pt;}
.yb_c00277{bottom:732.133333pt;}
.ya_c00277{bottom:749.733333pt;}
.y9_c00277{bottom:767.333333pt;}
.y8_c00277{bottom:785.333333pt;}
.y7_c00277{bottom:802.933333pt;}
.y6_c00277{bottom:820.533333pt;}
.y5_c00277{bottom:838.400000pt;}
.y4_c00277{bottom:856.000000pt;}
.y3_c00277{bottom:873.600000pt;}
.y2_c00277{bottom:891.466667pt;}
.y1_c00277{bottom:925.733333pt;}
.h2_c00277{height:48.000000pt;}
.h0_c00277{height:1037.119955pt;}
.h1_c00277{height:1037.333333pt;}
.w0_c00277{width:816.640056pt;}
.w1_c00277{width:816.666667pt;}
.x0_c00277{left:0.000000pt;}
.xfa_c00277{left:101.466667pt;}
.x3_c00277{left:102.400000pt;}
.x111_c00277{left:103.333333pt;}
.x11c_c00277{left:104.400000pt;}
.xbd_c00277{left:117.600000pt;}
.x26_c00277{left:118.800000pt;}
.xc5_c00277{left:120.266667pt;}
.x112_c00277{left:125.733333pt;}
.xf5_c00277{left:126.666667pt;}
.xfb_c00277{left:128.000000pt;}
.x7a_c00277{left:128.933333pt;}
.x6d_c00277{left:130.266667pt;}
.x14_c00277{left:131.866667pt;}
.xec_c00277{left:134.933333pt;}
.x82_c00277{left:137.200000pt;}
.xce_c00277{left:139.200000pt;}
.xbe_c00277{left:140.666667pt;}
.x4_c00277{left:143.333333pt;}
.x50_c00277{left:144.933333pt;}
.x90_c00277{left:146.666667pt;}
.xde_c00277{left:148.800000pt;}
.xb5_c00277{left:150.133333pt;}
.x11e_c00277{left:152.933333pt;}
.x15_c00277{left:154.266667pt;}
.xfc_c00277{left:156.133333pt;}
.x12c_c00277{left:157.200000pt;}
.x5_c00277{left:158.666667pt;}
.x127_c00277{left:160.666667pt;}
.xac_c00277{left:162.400000pt;}
.x131_c00277{left:164.266667pt;}
.x5e_c00277{left:165.200000pt;}
.x7b_c00277{left:167.333333pt;}
.x36_c00277{left:169.066667pt;}
.x27_c00277{left:170.000000pt;}
.x6e_c00277{left:171.200000pt;}
.xc6_c00277{left:176.933333pt;}
.xbf_c00277{left:178.400000pt;}
.x43_c00277{left:180.666667pt;}
.xe2_c00277{left:181.866667pt;}
.x7c_c00277{left:183.066667pt;}
.xcf_c00277{left:184.666667pt;}
.x5f_c00277{left:186.266667pt;}
.x9a_c00277{left:187.600000pt;}
.x104_c00277{left:190.400000pt;}
.x51_c00277{left:193.200000pt;}
.x110_c00277{left:194.400000pt;}
.x128_c00277{left:195.600000pt;}
.x28_c00277{left:196.933333pt;}
.x16_c00277{left:199.733333pt;}
.x44_c00277{left:201.466667pt;}
.x6_c00277{left:203.466667pt;}
.x9b_c00277{left:205.200000pt;}
.xd7_c00277{left:206.133333pt;}
.x37_c00277{left:208.400000pt;}
.x11f_c00277{left:209.600000pt;}
.x60_c00277{left:210.533333pt;}
.x52_c00277{left:211.466667pt;}
.x105_c00277{left:213.066667pt;}
.xed_c00277{left:215.600000pt;}
.x17_c00277{left:217.600000pt;}
.xe3_c00277{left:220.000000pt;}
.x45_c00277{left:221.600000pt;}
.x29_c00277{left:223.866667pt;}
.xb6_c00277{left:226.266667pt;}
.x10c_c00277{left:227.200000pt;}
.x6f_c00277{left:228.533333pt;}
.x117_c00277{left:230.533333pt;}
.x113_c00277{left:231.733333pt;}
.xee_c00277{left:232.933333pt;}
.xd8_c00277{left:234.266667pt;}
.x38_c00277{left:235.866667pt;}
.x83_c00277{left:236.933333pt;}
.xd0_c00277{left:239.333333pt;}
.x18_c00277{left:240.666667pt;}
.xad_c00277{left:246.000000pt;}
.x7_c00277{left:246.933333pt;}
.xe4_c00277{left:248.800000pt;}
.xfd_c00277{left:250.533333pt;}
.x46_c00277{left:252.000000pt;}
.x84_c00277{left:254.800000pt;}
.x91_c00277{left:256.133333pt;}
.x61_c00277{left:257.333333pt;}
.x10d_c00277{left:258.933333pt;}
.x13c_c00277{left:260.800000pt;}
.x2a_c00277{left:262.266667pt;}
.x12d_c00277{left:263.733333pt;}
.xef_c00277{left:265.866667pt;}
.x120_c00277{left:267.200000pt;}
.x53_c00277{left:268.400000pt;}
.xdf_c00277{left:269.466667pt;}
.x138_c00277{left:271.600000pt;}
.x62_c00277{left:273.333333pt;}
.xae_c00277{left:276.400000pt;}
.x106_c00277{left:278.266667pt;}
.x129_c00277{left:280.000000pt;}
.x8_c00277{left:281.200000pt;}
.x10a_c00277{left:282.800000pt;}
.x135_c00277{left:285.466667pt;}
.x2b_c00277{left:286.933333pt;}
.x19_c00277{left:288.000000pt;}
.x13e_c00277{left:289.466667pt;}
.x9c_c00277{left:290.666667pt;}
.xf6_c00277{left:292.000000pt;}
.xd1_c00277{left:295.333333pt;}
.x47_c00277{left:299.066667pt;}
.xe5_c00277{left:301.333333pt;}
.x7d_c00277{left:302.666667pt;}
.x63_c00277{left:304.666667pt;}
.x39_c00277{left:305.600000pt;}
.x13f_c00277{left:307.066667pt;}
.xa5_c00277{left:308.000000pt;}
.x119_c00277{left:309.466667pt;}
.x54_c00277{left:312.533333pt;}
.x9_c00277{left:314.533333pt;}
.xd2_c00277{left:316.400000pt;}
.x70_c00277{left:317.866667pt;}
.x9d_c00277{left:320.133333pt;}
.x121_c00277{left:321.333333pt;}
.x12a_c00277{left:323.866667pt;}
.x3a_c00277{left:324.800000pt;}
.x1a_c00277{left:326.400000pt;}
.x11d_c00277{left:331.333333pt;}
.x92_c00277{left:332.266667pt;}
.x71_c00277{left:333.866667pt;}
.x64_c00277{left:334.800000pt;}
.xaf_c00277{left:340.666667pt;}
.x2c_c00277{left:344.266667pt;}
.x85_c00277{left:346.000000pt;}
.x48_c00277{left:347.066667pt;}
.x1b_c00277{left:348.800000pt;}
.xe6_c00277{left:350.933333pt;}
.xa6_c00277{left:352.133333pt;}
.x12e_c00277{left:353.066667pt;}
.xb7_c00277{left:354.000000pt;}
.x132_c00277{left:355.200000pt;}
.x13d_c00277{left:357.466667pt;}
.x3b_c00277{left:358.400000pt;}
.x1_c00277{left:360.666667pt;}
.x7e_c00277{left:361.866667pt;}
.x114_c00277{left:364.133333pt;}
.x65_c00277{left:365.866667pt;}
.xb0_c00277{left:367.600000pt;}
.x55_c00277{left:370.400000pt;}
.xf0_c00277{left:371.466667pt;}
.x1c_c00277{left:372.800000pt;}
.x2d_c00277{left:374.400000pt;}
.xa_c00277{left:376.000000pt;}
.x9e_c00277{left:377.733333pt;}
.x86_c00277{left:378.933333pt;}
.x7f_c00277{left:380.133333pt;}
.x49_c00277{left:381.333333pt;}
.x72_c00277{left:384.400000pt;}
.x1d_c00277{left:386.533333pt;}
.x2e_c00277{left:389.466667pt;}
.x9f_c00277{left:394.400000pt;}
.xd3_c00277{left:396.133333pt;}
.xe7_c00277{left:397.066667pt;}
.x12f_c00277{left:399.200000pt;}
.xb8_c00277{left:400.666667pt;}
.xb_c00277{left:402.266667pt;}
.x93_c00277{left:404.400000pt;}
.x87_c00277{left:405.466667pt;}
.x56_c00277{left:406.533333pt;}
.x122_c00277{left:407.733333pt;}
.x139_c00277{left:409.600000pt;}
.xfe_c00277{left:411.466667pt;}
.x1e_c00277{left:412.800000pt;}
.x2f_c00277{left:413.733333pt;}
.xb9_c00277{left:418.000000pt;}
.xa0_c00277{left:419.733333pt;}
.xf7_c00277{left:422.133333pt;}
.xf1_c00277{left:424.266667pt;}
.x140_c00277{left:427.333333pt;}
.x94_c00277{left:429.066667pt;}
.x10e_c00277{left:430.400000pt;}
.xc_c00277{left:431.333333pt;}
.x88_c00277{left:432.933333pt;}
.x80_c00277{left:435.066667pt;}
.xc7_c00277{left:436.266667pt;}
.xe0_c00277{left:437.333333pt;}
.x73_c00277{left:438.800000pt;}
.x3c_c00277{left:441.600000pt;}
.x1f_c00277{left:443.200000pt;}
.xc0_c00277{left:444.266667pt;}
.x30_c00277{left:446.400000pt;}
.xb1_c00277{left:449.600000pt;}
.xff_c00277{left:451.733333pt;}
.x4a_c00277{left:453.066667pt;}
.xc1_c00277{left:454.133333pt;}
.x66_c00277{left:456.800000pt;}
.x123_c00277{left:458.266667pt;}
.x3d_c00277{left:459.866667pt;}
.xf8_c00277{left:462.400000pt;}
.xc8_c00277{left:463.733333pt;}
.xe8_c00277{left:464.800000pt;}
.xa7_c00277{left:467.066667pt;}
.x20_c00277{left:468.533333pt;}
.x115_c00277{left:469.466667pt;}
.x67_c00277{left:470.533333pt;}
.x95_c00277{left:471.600000pt;}
.x89_c00277{left:473.200000pt;}
.x57_c00277{left:475.600000pt;}
.x133_c00277{left:477.733333pt;}
.xd_c00277{left:478.666667pt;}
.x100_c00277{left:479.600000pt;}
.x118_c00277{left:481.200000pt;}
.x11a_c00277{left:482.666667pt;}
.xb2_c00277{left:483.866667pt;}
.x124_c00277{left:487.066667pt;}
.xd4_c00277{left:488.533333pt;}
.xc9_c00277{left:491.600000pt;}
.x58_c00277{left:493.200000pt;}
.xe_c00277{left:494.933333pt;}
.xe1_c00277{left:495.866667pt;}
.xd9_c00277{left:498.266667pt;}
.x8a_c00277{left:499.733333pt;}
.xc2_c00277{left:501.466667pt;}
.x68_c00277{left:502.533333pt;}
.x31_c00277{left:503.466667pt;}
.xb3_c00277{left:504.666667pt;}
.x74_c00277{left:506.000000pt;}
.x107_c00277{left:508.266667pt;}
.x134_c00277{left:509.466667pt;}
.x10f_c00277{left:510.400000pt;}
.x8b_c00277{left:511.866667pt;}
.xa1_c00277{left:513.066667pt;}
.x81_c00277{left:514.133333pt;}
.xca_c00277{left:515.866667pt;}
.x59_c00277{left:518.133333pt;}
.x101_c00277{left:520.266667pt;}
.x69_c00277{left:522.000000pt;}
.x75_c00277{left:524.266667pt;}
.x3e_c00277{left:525.466667pt;}
.x21_c00277{left:526.800000pt;}
.xb4_c00277{left:530.533333pt;}
.xf_c00277{left:533.333333pt;}
.xa2_c00277{left:535.733333pt;}
.xda_c00277{left:536.933333pt;}
.x8c_c00277{left:539.066667pt;}
.xa8_c00277{left:541.066667pt;}
.x76_c00277{left:543.733333pt;}
.x136_c00277{left:546.666667pt;}
.xc3_c00277{left:550.400000pt;}
.xf9_c00277{left:551.333333pt;}
.x5a_c00277{left:553.066667pt;}
.x11b_c00277{left:554.000000pt;}
.xba_c00277{left:555.600000pt;}
.x22_c00277{left:557.200000pt;}
.x77_c00277{left:559.066667pt;}
.xd5_c00277{left:560.000000pt;}
.x130_c00277{left:561.333333pt;}
.x4b_c00277{left:562.800000pt;}
.xcb_c00277{left:564.133333pt;}
.x8d_c00277{left:567.200000pt;}
.x3f_c00277{left:568.933333pt;}
.x96_c00277{left:569.866667pt;}
.x5b_c00277{left:570.933333pt;}
.x108_c00277{left:574.800000pt;}
.xa9_c00277{left:576.266667pt;}
.xdb_c00277{left:577.866667pt;}
.x102_c00277{left:579.200000pt;}
.x10_c00277{left:581.066667pt;}
.x23_c00277{left:585.733333pt;}
.x4c_c00277{left:588.133333pt;}
.x40_c00277{left:589.066667pt;}
.x32_c00277{left:590.133333pt;}
.x6a_c00277{left:591.466667pt;}
.xbb_c00277{left:593.066667pt;}
.x5c_c00277{left:594.266667pt;}
.x78_c00277{left:595.866667pt;}
.xcc_c00277{left:596.800000pt;}
.x11_c00277{left:599.333333pt;}
.x97_c00277{left:601.600000pt;}
.x8e_c00277{left:604.000000pt;}
.x6b_c00277{left:606.800000pt;}
.x125_c00277{left:608.666667pt;}
.xdc_c00277{left:611.466667pt;}
.x33_c00277{left:612.800000pt;}
.x13a_c00277{left:616.000000pt;}
.xe9_c00277{left:617.066667pt;}
.x10b_c00277{left:618.400000pt;}
.xf2_c00277{left:619.466667pt;}
.xaa_c00277{left:620.666667pt;}
.x12b_c00277{left:621.866667pt;}
.x6c_c00277{left:625.066667pt;}
.x12_c00277{left:627.200000pt;}
.x4d_c00277{left:628.133333pt;}
.x41_c00277{left:629.333333pt;}
.x13b_c00277{left:632.000000pt;}
.x116_c00277{left:633.333333pt;}
.xc4_c00277{left:634.533333pt;}
.xd6_c00277{left:635.733333pt;}
.x8f_c00277{left:637.866667pt;}
.x137_c00277{left:639.200000pt;}
.x34_c00277{left:640.933333pt;}
.x24_c00277{left:644.666667pt;}
.x98_c00277{left:647.733333pt;}
.xf3_c00277{left:650.800000pt;}
.xa3_c00277{left:652.400000pt;}
.x103_c00277{left:653.733333pt;}
.x42_c00277{left:655.200000pt;}
.xea_c00277{left:656.133333pt;}
.x79_c00277{left:657.333333pt;}
.x126_c00277{left:658.933333pt;}
.x4e_c00277{left:660.133333pt;}
.x5d_c00277{left:661.466667pt;}
.x13_c00277{left:663.333333pt;}
.x35_c00277{left:666.266667pt;}
.xcd_c00277{left:667.200000pt;}
.x25_c00277{left:668.933333pt;}
.xbc_c00277{left:669.866667pt;}
.x2_c00277{left:673.333333pt;}
.xa4_c00277{left:674.800000pt;}
.xeb_c00277{left:676.933333pt;}
.x4f_c00277{left:678.000000pt;}
.xab_c00277{left:679.466667pt;}
.xdd_c00277{left:683.466667pt;}
.xf4_c00277{left:684.400000pt;}
.x99_c00277{left:686.400000pt;}
.x109_c00277{left:688.400000pt;}
}





/* 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_c00278 {
    display:none;
  }
  .loading-indicator_c00278.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00278 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_c00278 { 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_c00278" -> "#page-container .classname_c00278")
 */
.pf_c00278 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00278 { /* 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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00278 { /* 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_c00278 { /* 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_c00278 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00278 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00278 {overflow:visible;}
  }
}
.c_c00278 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00278 { /* 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_c00278:after { /* webkit #35443 */
  content: '';
}
.t_c00278:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00278 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 */
}
.__c00278 { /* 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_c00278 { /* info for Javascript */
  display:none;
}
.l_c00278 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00278 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00278 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00278: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_c00278 {
    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_c00278.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00278.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_c00278 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00278{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00278;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.000000;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;}
.m9a_c00278{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m89_c00278{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m35_c00278{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00278{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m94_c00278{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00278{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.maa_c00278{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8_c00278{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00278{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00278{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00278{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m68_c00278{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m96_c00278{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m75_c00278{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m62_c00278{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mad_c00278{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m58_c00278{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00278{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00278{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m70_c00278{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00278{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00278{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m38_c00278{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00278{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00278{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mab_c00278{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00278{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00278{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00278{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m65_c00278{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m77_c00278{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.maf_c00278{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.md_c00278{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00278{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m92_c00278{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00278{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00278{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00278{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m64_c00278{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mae_c00278{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00278{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m93_c00278{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m66_c00278{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m30_c00278{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00278{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00278{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00278{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00278{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m52_c00278{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m80_c00278{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00278{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00278{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m87_c00278{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m85_c00278{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m41_c00278{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m31_c00278{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m76_c00278{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m47_c00278{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00278{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m53_c00278{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m20_c00278{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m69_c00278{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00278{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m51_c00278{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00278{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00278{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m73_c00278{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m74_c00278{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00278{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m95_c00278{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m42_c00278{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m45_c00278{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf_c00278{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00278{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m88_c00278{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00278{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6_c00278{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mac_c00278{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m50_c00278{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m81_c00278{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00278{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m22_c00278{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m90_c00278{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{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);}
.m71_c00278{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00278{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m32_c00278{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m40_c00278{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00278{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00278{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m63_c00278{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m56_c00278{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m99_c00278{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m67_c00278{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00278{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00278{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00278{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m61_c00278{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00278{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m43_c00278{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00278{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m79_c00278{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00278{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m91_c00278{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00278{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00278{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00278{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00278{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m97_c00278{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00278{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00278{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00278{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m46_c00278{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00278{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m18_c00278{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00278{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m33_c00278{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00278{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma_c00278{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m84_c00278{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m34_c00278{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m72_c00278{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m78_c00278{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m54_c00278{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00278{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00278{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m10_c00278{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m60_c00278{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m57_c00278{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00278{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m37_c00278{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m98_c00278{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m48_c00278{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m49_c00278{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m25_c00278{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00278{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00278{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00278{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00278{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m83_c00278{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00278{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m39_c00278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00278{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m59_c00278{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00278{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00278{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00278{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.v0_c00278{vertical-align:0.000000px;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{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__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00278{word-spacing:-14.750000px;}
.ws7_c00278{word-spacing:-13.500000px;}
.ws8_c00278{word-spacing:-9.125000px;}
.wsa_c00278{word-spacing:0.000000px;}
.ws9_c00278{word-spacing:0.951407px;}
.ws3_c00278{word-spacing:1.500000px;}
.ws4_c00278{word-spacing:2.769447px;}
.ws2_c00278{word-spacing:4.375000px;}
.ws0_c00278{word-spacing:5.000000px;}
.ws6_c00278{word-spacing:6.457831px;}
.ws1_c00278{word-spacing:16.500000px;}
.fc0_c00278{color:transparent;}
.fs0_c00278{font-size:54.000000px;}
.y0_c00278{bottom:0.000000px;}
.y2d_c00278{bottom:153.000000px;}
.y2c_c00278{bottom:172.500000px;}
.y2b_c00278{bottom:183.900000px;}
.y2a_c00278{bottom:200.100000px;}
.y29_c00278{bottom:231.450000px;}
.y28_c00278{bottom:251.400000px;}
.y27_c00278{bottom:271.500000px;}
.y26_c00278{bottom:291.600000px;}
.y25_c00278{bottom:311.850000px;}
.y24_c00278{bottom:331.950000px;}
.y23_c00278{bottom:351.750000px;}
.y22_c00278{bottom:371.550000px;}
.y21_c00278{bottom:391.650000px;}
.y20_c00278{bottom:411.750000px;}
.y1f_c00278{bottom:431.550000px;}
.y1e_c00278{bottom:451.350000px;}
.y1d_c00278{bottom:471.150000px;}
.y1c_c00278{bottom:490.950000px;}
.y1b_c00278{bottom:510.750000px;}
.y1a_c00278{bottom:530.550000px;}
.y19_c00278{bottom:550.650000px;}
.y18_c00278{bottom:570.750000px;}
.y17_c00278{bottom:590.550000px;}
.y16_c00278{bottom:610.350000px;}
.y15_c00278{bottom:630.450000px;}
.y14_c00278{bottom:650.250000px;}
.y13_c00278{bottom:670.350000px;}
.y12_c00278{bottom:690.150000px;}
.y11_c00278{bottom:709.950000px;}
.y10_c00278{bottom:730.500000px;}
.yf_c00278{bottom:750.300000px;}
.ye_c00278{bottom:770.100000px;}
.yd_c00278{bottom:789.900000px;}
.yc_c00278{bottom:810.000000px;}
.yb_c00278{bottom:829.800000px;}
.ya_c00278{bottom:849.600000px;}
.y9_c00278{bottom:869.700000px;}
.y8_c00278{bottom:889.500000px;}
.y7_c00278{bottom:910.050000px;}
.y6_c00278{bottom:929.850000px;}
.y5_c00278{bottom:949.050000px;}
.y4_c00278{bottom:969.600000px;}
.y3_c00278{bottom:989.700000px;}
.y2_c00278{bottom:1009.800000px;}
.y1_c00278{bottom:1047.300000px;}
.h2_c00278{height:54.000000px;}
.h0_c00278{height:1166.759949px;}
.h1_c00278{height:1167.000000px;}
.w0_c00278{width:918.720063px;}
.w1_c00278{width:918.750000px;}
.x0_c00278{left:0.000000px;}
.x74_c00278{left:140.400000px;}
.x3_c00278{left:141.900000px;}
.x1_c00278{left:144.750000px;}
.x8f_c00278{left:155.400000px;}
.x24_c00278{left:156.450000px;}
.x75_c00278{left:158.100000px;}
.x4_c00278{left:159.900000px;}
.x13_c00278{left:161.250000px;}
.xc5_c00278{left:164.400000px;}
.xbf_c00278{left:166.650000px;}
.x36_c00278{left:172.050000px;}
.x80_c00278{left:173.400000px;}
.xd3_c00278{left:175.350000px;}
.x12c_c00278{left:180.000000px;}
.x10e_c00278{left:181.500000px;}
.xb1_c00278{left:182.850000px;}
.x90_c00278{left:183.900000px;}
.x14_c00278{left:184.950000px;}
.x5_c00278{left:187.650000px;}
.x12b_c00278{left:189.750000px;}
.x45_c00278{left:191.100000px;}
.x6a_c00278{left:194.100000px;}
.xca_c00278{left:195.300000px;}
.x130_c00278{left:199.050000px;}
.x25_c00278{left:200.400000px;}
.x50_c00278{left:202.500000px;}
.xd4_c00278{left:204.150000px;}
.x117_c00278{left:205.950000px;}
.xa4_c00278{left:210.150000px;}
.xb9_c00278{left:211.350000px;}
.x5b_c00278{left:212.700000px;}
.x109_c00278{left:215.700000px;}
.x84_c00278{left:217.350000px;}
.x51_c00278{left:220.500000px;}
.xa9_c00278{left:222.900000px;}
.x15_c00278{left:224.550000px;}
.xe5_c00278{left:226.350000px;}
.x81_c00278{left:227.700000px;}
.xb2_c00278{left:230.700000px;}
.x37_c00278{left:232.500000px;}
.xf0_c00278{left:233.700000px;}
.x32_c00278{left:234.750000px;}
.xec_c00278{left:236.100000px;}
.x99_c00278{left:237.600000px;}
.x104_c00278{left:238.650000px;}
.xa5_c00278{left:239.700000px;}
.x5c_c00278{left:243.600000px;}
.x46_c00278{left:245.100000px;}
.x91_c00278{left:246.150000px;}
.x85_c00278{left:247.950000px;}
.x76_c00278{left:249.150000px;}
.x6_c00278{left:250.350000px;}
.x52_c00278{left:251.850000px;}
.x118_c00278{left:254.550000px;}
.xc6_c00278{left:256.500000px;}
.x11f_c00278{left:258.600000px;}
.x26_c00278{left:260.550000px;}
.x38_c00278{left:262.050000px;}
.x5d_c00278{left:263.700000px;}
.xe1_c00278{left:264.900000px;}
.xc0_c00278{left:266.100000px;}
.x7_c00278{left:267.600000px;}
.x16_c00278{left:269.250000px;}
.x33_c00278{left:271.500000px;}
.xf8_c00278{left:274.800000px;}
.x124_c00278{left:275.850000px;}
.x92_c00278{left:277.800000px;}
.x27_c00278{left:280.350000px;}
.xa6_c00278{left:282.900000px;}
.x125_c00278{left:284.550000px;}
.xcb_c00278{left:288.300000px;}
.xaa_c00278{left:289.800000px;}
.xe6_c00278{left:291.600000px;}
.x5e_c00278{left:294.000000px;}
.x9a_c00278{left:296.250000px;}
.x47_c00278{left:301.200000px;}
.x34_c00278{left:302.850000px;}
.x105_c00278{left:305.250000px;}
.xc1_c00278{left:306.450000px;}
.xa7_c00278{left:308.400000px;}
.x82_c00278{left:309.750000px;}
.x53_c00278{left:312.750000px;}
.x39_c00278{left:313.950000px;}
.xfd_c00278{left:316.350000px;}
.x86_c00278{left:317.850000px;}
.x48_c00278{left:318.900000px;}
.xe7_c00278{left:320.400000px;}
.xba_c00278{left:322.200000px;}
.x17_c00278{left:323.250000px;}
.xc7_c00278{left:324.600000px;}
.x9b_c00278{left:327.150000px;}
.x83_c00278{left:329.250000px;}
.xb3_c00278{left:331.950000px;}
.xda_c00278{left:336.000000px;}
.x77_c00278{left:337.050000px;}
.xcc_c00278{left:338.400000px;}
.x87_c00278{left:339.750000px;}
.x18_c00278{left:340.950000px;}
.xfe_c00278{left:342.600000px;}
.x35_c00278{left:343.950000px;}
.x112_c00278{left:345.150000px;}
.x8_c00278{left:348.300000px;}
.xab_c00278{left:349.950000px;}
.x106_c00278{left:351.450000px;}
.xf6_c00278{left:354.150000px;}
.x113_c00278{left:361.050000px;}
.x5f_c00278{left:363.150000px;}
.x54_c00278{left:366.000000px;}
.x119_c00278{left:367.200000px;}
.x9c_c00278{left:368.250000px;}
.x88_c00278{left:370.350000px;}
.x28_c00278{left:373.350000px;}
.x9_c00278{left:375.000000px;}
.x19_c00278{left:376.650000px;}
.x3a_c00278{left:378.450000px;}
.x93_c00278{left:380.400000px;}
.xd5_c00278{left:384.450000px;}
.xf1_c00278{left:386.700000px;}
.x78_c00278{left:387.750000px;}
.xa_c00278{left:390.150000px;}
.x29_c00278{left:393.900000px;}
.x3b_c00278{left:396.450000px;}
.x1a_c00278{left:398.250000px;}
.xd6_c00278{left:401.700000px;}
.x79_c00278{left:405.450000px;}
.xb4_c00278{left:408.600000px;}
.x94_c00278{left:410.700000px;}
.x114_c00278{left:412.950000px;}
.x3c_c00278{left:416.250000px;}
.x55_c00278{left:417.900000px;}
.x60_c00278{left:420.750000px;}
.x120_c00278{left:421.950000px;}
.x89_c00278{left:425.850000px;}
.xd7_c00278{left:427.200000px;}
.x12d_c00278{left:428.700000px;}
.xbb_c00278{left:429.900000px;}
.x11a_c00278{left:431.250000px;}
.xc2_c00278{left:433.350000px;}
.xe2_c00278{left:434.400000px;}
.xff_c00278{left:435.900000px;}
.x2_c00278{left:439.650000px;}
.x6b_c00278{left:440.700000px;}
.xcd_c00278{left:441.750000px;}
.xa8_c00278{left:443.400000px;}
.xe3_c00278{left:446.700000px;}
.x11b_c00278{left:452.850000px;}
.x61_c00278{left:454.650000px;}
.xb5_c00278{left:457.950000px;}
.x2a_c00278{left:459.450000px;}
.xe8_c00278{left:460.500000px;}
.x1b_c00278{left:463.050000px;}
.xac_c00278{left:466.200000px;}
.x95_c00278{left:469.350000px;}
.x3d_c00278{left:470.550000px;}
.xe9_c00278{left:472.800000px;}
.xdb_c00278{left:476.250000px;}
.x49_c00278{left:477.600000px;}
.x2b_c00278{left:479.250000px;}
.xb_c00278{left:481.200000px;}
.x1c_c00278{left:483.150000px;}
.xf2_c00278{left:484.200000px;}
.x96_c00278{left:488.850000px;}
.x107_c00278{left:491.100000px;}
.x9d_c00278{left:492.450000px;}
.x56_c00278{left:494.250000px;}
.x100_c00278{left:495.600000px;}
.x121_c00278{left:497.550000px;}
.x6c_c00278{left:499.800000px;}
.xc_c00278{left:502.050000px;}
.x8a_c00278{left:505.350000px;}
.x10a_c00278{left:507.000000px;}
.x2c_c00278{left:508.050000px;}
.x126_c00278{left:509.100000px;}
.x10f_c00278{left:510.450000px;}
.xf9_c00278{left:513.000000px;}
.x6d_c00278{left:516.000000px;}
.x1d_c00278{left:520.650000px;}
.x101_c00278{left:521.850000px;}
.xd_c00278{left:522.900000px;}
.xad_c00278{left:524.850000px;}
.x4a_c00278{left:527.250000px;}
.x7a_c00278{left:531.450000px;}
.x8b_c00278{left:533.850000px;}
.x62_c00278{left:535.950000px;}
.x4b_c00278{left:537.300000px;}
.xbc_c00278{left:540.150000px;}
.xf3_c00278{left:543.600000px;}
.x108_c00278{left:544.800000px;}
.x63_c00278{left:546.450000px;}
.xce_c00278{left:547.950000px;}
.x122_c00278{left:549.450000px;}
.x1e_c00278{left:551.550000px;}
.x3e_c00278{left:553.500000px;}
.x4c_c00278{left:555.300000px;}
.x127_c00278{left:556.650000px;}
.xb6_c00278{left:558.000000px;}
.x12e_c00278{left:560.100000px;}
.xea_c00278{left:563.100000px;}
.x2d_c00278{left:564.150000px;}
.x11c_c00278{left:565.200000px;}
.x1f_c00278{left:566.250000px;}
.xe_c00278{left:567.900000px;}
.x6e_c00278{left:571.350000px;}
.x9e_c00278{left:573.450000px;}
.x7b_c00278{left:574.650000px;}
.xcf_c00278{left:577.050000px;}
.x128_c00278{left:581.850000px;}
.xed_c00278{left:584.400000px;}
.xae_c00278{left:585.750000px;}
.x11d_c00278{left:586.800000px;}
.x7c_c00278{left:588.750000px;}
.x131_c00278{left:589.950000px;}
.xb7_c00278{left:593.700000px;}
.x9f_c00278{left:594.750000px;}
.xf_c00278{left:597.450000px;}
.x64_c00278{left:599.400000px;}
.x20_c00278{left:601.500000px;}
.x8c_c00278{left:602.550000px;}
.xd0_c00278{left:605.550000px;}
.x97_c00278{left:607.950000px;}
.xc3_c00278{left:609.000000px;}
.x110_c00278{left:612.750000px;}
.xa0_c00278{left:613.800000px;}
.xdc_c00278{left:615.900000px;}
.x65_c00278{left:617.100000px;}
.xf4_c00278{left:618.450000px;}
.x57_c00278{left:621.000000px;}
.x3f_c00278{left:622.650000px;}
.x6f_c00278{left:625.050000px;}
.xfa_c00278{left:626.400000px;}
.xaf_c00278{left:627.450000px;}
.x10_c00278{left:628.800000px;}
.x7d_c00278{left:630.450000px;}
.x11e_c00278{left:631.500000px;}
.xd8_c00278{left:633.000000px;}
.x102_c00278{left:634.050000px;}
.x123_c00278{left:638.550000px;}
.x4d_c00278{left:640.200000px;}
.x111_c00278{left:641.550000px;}
.xa1_c00278{left:642.600000px;}
.x58_c00278{left:643.650000px;}
.x132_c00278{left:646.500000px;}
.xdd_c00278{left:648.600000px;}
.xee_c00278{left:650.550000px;}
.x129_c00278{left:654.300000px;}
.x11_c00278{left:656.850000px;}
.x40_c00278{left:658.650000px;}
.x8d_c00278{left:660.150000px;}
.x115_c00278{left:662.400000px;}
.x10b_c00278{left:663.900000px;}
.x70_c00278{left:664.950000px;}
.xde_c00278{left:666.600000px;}
.xfb_c00278{left:668.850000px;}
.x2e_c00278{left:670.650000px;}
.xc4_c00278{left:673.050000px;}
.x66_c00278{left:675.000000px;}
.xb0_c00278{left:679.950000px;}
.xf7_c00278{left:682.500000px;}
.x10c_c00278{left:684.450000px;}
.xa2_c00278{left:686.100000px;}
.xdf_c00278{left:687.900000px;}
.x21_c00278{left:688.950000px;}
.xd1_c00278{left:691.500000px;}
.x41_c00278{left:693.600000px;}
.xe4_c00278{left:696.300000px;}
.xbd_c00278{left:698.400000px;}
.x67_c00278{left:700.200000px;}
.x2f_c00278{left:702.000000px;}
.xf5_c00278{left:703.050000px;}
.x10d_c00278{left:706.350000px;}
.xd2_c00278{left:708.450000px;}
.xc8_c00278{left:710.550000px;}
.xef_c00278{left:712.050000px;}
.x98_c00278{left:715.200000px;}
.x22_c00278{left:717.000000px;}
.xd9_c00278{left:718.650000px;}
.x116_c00278{left:720.000000px;}
.x71_c00278{left:721.050000px;}
.x12_c00278{left:727.050000px;}
.x42_c00278{left:728.550000px;}
.x30_c00278{left:730.500000px;}
.xeb_c00278{left:735.450000px;}
.xfc_c00278{left:737.550000px;}
.xbe_c00278{left:739.050000px;}
.x68_c00278{left:740.550000px;}
.xa3_c00278{left:745.050000px;}
.x4e_c00278{left:746.400000px;}
.x72_c00278{left:748.050000px;}
.xb8_c00278{left:751.800000px;}
.x59_c00278{left:753.750000px;}
.x69_c00278{left:758.250000px;}
.x7e_c00278{left:759.750000px;}
.x8e_c00278{left:762.300000px;}
.xe0_c00278{left:763.500000px;}
.x12f_c00278{left:766.500000px;}
.x43_c00278{left:769.950000px;}
.x4f_c00278{left:774.900000px;}
.x7f_c00278{left:777.450000px;}
.x103_c00278{left:778.500000px;}
.x31_c00278{left:783.000000px;}
.x12a_c00278{left:786.000000px;}
.x44_c00278{left:787.950000px;}
.x5a_c00278{left:789.000000px;}
.xc9_c00278{left:791.850000px;}
.x73_c00278{left:794.100000px;}
.x23_c00278{left:795.900000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws5_c00278{word-spacing:-13.111111pt;}
.ws7_c00278{word-spacing:-12.000000pt;}
.ws8_c00278{word-spacing:-8.111111pt;}
.wsa_c00278{word-spacing:0.000000pt;}
.ws9_c00278{word-spacing:0.845695pt;}
.ws3_c00278{word-spacing:1.333333pt;}
.ws4_c00278{word-spacing:2.461731pt;}
.ws2_c00278{word-spacing:3.888889pt;}
.ws0_c00278{word-spacing:4.444444pt;}
.ws6_c00278{word-spacing:5.740295pt;}
.ws1_c00278{word-spacing:14.666667pt;}
.fs0_c00278{font-size:48.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y2d_c00278{bottom:136.000000pt;}
.y2c_c00278{bottom:153.333333pt;}
.y2b_c00278{bottom:163.466667pt;}
.y2a_c00278{bottom:177.866667pt;}
.y29_c00278{bottom:205.733333pt;}
.y28_c00278{bottom:223.466667pt;}
.y27_c00278{bottom:241.333333pt;}
.y26_c00278{bottom:259.200000pt;}
.y25_c00278{bottom:277.200000pt;}
.y24_c00278{bottom:295.066667pt;}
.y23_c00278{bottom:312.666667pt;}
.y22_c00278{bottom:330.266667pt;}
.y21_c00278{bottom:348.133333pt;}
.y20_c00278{bottom:366.000000pt;}
.y1f_c00278{bottom:383.600000pt;}
.y1e_c00278{bottom:401.200000pt;}
.y1d_c00278{bottom:418.800000pt;}
.y1c_c00278{bottom:436.400000pt;}
.y1b_c00278{bottom:454.000000pt;}
.y1a_c00278{bottom:471.600000pt;}
.y19_c00278{bottom:489.466667pt;}
.y18_c00278{bottom:507.333333pt;}
.y17_c00278{bottom:524.933333pt;}
.y16_c00278{bottom:542.533333pt;}
.y15_c00278{bottom:560.400000pt;}
.y14_c00278{bottom:578.000000pt;}
.y13_c00278{bottom:595.866667pt;}
.y12_c00278{bottom:613.466667pt;}
.y11_c00278{bottom:631.066667pt;}
.y10_c00278{bottom:649.333333pt;}
.yf_c00278{bottom:666.933333pt;}
.ye_c00278{bottom:684.533333pt;}
.yd_c00278{bottom:702.133333pt;}
.yc_c00278{bottom:720.000000pt;}
.yb_c00278{bottom:737.600000pt;}
.ya_c00278{bottom:755.200000pt;}
.y9_c00278{bottom:773.066667pt;}
.y8_c00278{bottom:790.666667pt;}
.y7_c00278{bottom:808.933333pt;}
.y6_c00278{bottom:826.533333pt;}
.y5_c00278{bottom:843.600000pt;}
.y4_c00278{bottom:861.866667pt;}
.y3_c00278{bottom:879.733333pt;}
.y2_c00278{bottom:897.600000pt;}
.y1_c00278{bottom:930.933333pt;}
.h2_c00278{height:48.000000pt;}
.h0_c00278{height:1037.119955pt;}
.h1_c00278{height:1037.333333pt;}
.w0_c00278{width:816.640056pt;}
.w1_c00278{width:816.666667pt;}
.x0_c00278{left:0.000000pt;}
.x74_c00278{left:124.800000pt;}
.x3_c00278{left:126.133333pt;}
.x1_c00278{left:128.666667pt;}
.x8f_c00278{left:138.133333pt;}
.x24_c00278{left:139.066667pt;}
.x75_c00278{left:140.533333pt;}
.x4_c00278{left:142.133333pt;}
.x13_c00278{left:143.333333pt;}
.xc5_c00278{left:146.133333pt;}
.xbf_c00278{left:148.133333pt;}
.x36_c00278{left:152.933333pt;}
.x80_c00278{left:154.133333pt;}
.xd3_c00278{left:155.866667pt;}
.x12c_c00278{left:160.000000pt;}
.x10e_c00278{left:161.333333pt;}
.xb1_c00278{left:162.533333pt;}
.x90_c00278{left:163.466667pt;}
.x14_c00278{left:164.400000pt;}
.x5_c00278{left:166.800000pt;}
.x12b_c00278{left:168.666667pt;}
.x45_c00278{left:169.866667pt;}
.x6a_c00278{left:172.533333pt;}
.xca_c00278{left:173.600000pt;}
.x130_c00278{left:176.933333pt;}
.x25_c00278{left:178.133333pt;}
.x50_c00278{left:180.000000pt;}
.xd4_c00278{left:181.466667pt;}
.x117_c00278{left:183.066667pt;}
.xa4_c00278{left:186.800000pt;}
.xb9_c00278{left:187.866667pt;}
.x5b_c00278{left:189.066667pt;}
.x109_c00278{left:191.733333pt;}
.x84_c00278{left:193.200000pt;}
.x51_c00278{left:196.000000pt;}
.xa9_c00278{left:198.133333pt;}
.x15_c00278{left:199.600000pt;}
.xe5_c00278{left:201.200000pt;}
.x81_c00278{left:202.400000pt;}
.xb2_c00278{left:205.066667pt;}
.x37_c00278{left:206.666667pt;}
.xf0_c00278{left:207.733333pt;}
.x32_c00278{left:208.666667pt;}
.xec_c00278{left:209.866667pt;}
.x99_c00278{left:211.200000pt;}
.x104_c00278{left:212.133333pt;}
.xa5_c00278{left:213.066667pt;}
.x5c_c00278{left:216.533333pt;}
.x46_c00278{left:217.866667pt;}
.x91_c00278{left:218.800000pt;}
.x85_c00278{left:220.400000pt;}
.x76_c00278{left:221.466667pt;}
.x6_c00278{left:222.533333pt;}
.x52_c00278{left:223.866667pt;}
.x118_c00278{left:226.266667pt;}
.xc6_c00278{left:228.000000pt;}
.x11f_c00278{left:229.866667pt;}
.x26_c00278{left:231.600000pt;}
.x38_c00278{left:232.933333pt;}
.x5d_c00278{left:234.400000pt;}
.xe1_c00278{left:235.466667pt;}
.xc0_c00278{left:236.533333pt;}
.x7_c00278{left:237.866667pt;}
.x16_c00278{left:239.333333pt;}
.x33_c00278{left:241.333333pt;}
.xf8_c00278{left:244.266667pt;}
.x124_c00278{left:245.200000pt;}
.x92_c00278{left:246.933333pt;}
.x27_c00278{left:249.200000pt;}
.xa6_c00278{left:251.466667pt;}
.x125_c00278{left:252.933333pt;}
.xcb_c00278{left:256.266667pt;}
.xaa_c00278{left:257.600000pt;}
.xe6_c00278{left:259.200000pt;}
.x5e_c00278{left:261.333333pt;}
.x9a_c00278{left:263.333333pt;}
.x47_c00278{left:267.733333pt;}
.x34_c00278{left:269.200000pt;}
.x105_c00278{left:271.333333pt;}
.xc1_c00278{left:272.400000pt;}
.xa7_c00278{left:274.133333pt;}
.x82_c00278{left:275.333333pt;}
.x53_c00278{left:278.000000pt;}
.x39_c00278{left:279.066667pt;}
.xfd_c00278{left:281.200000pt;}
.x86_c00278{left:282.533333pt;}
.x48_c00278{left:283.466667pt;}
.xe7_c00278{left:284.800000pt;}
.xba_c00278{left:286.400000pt;}
.x17_c00278{left:287.333333pt;}
.xc7_c00278{left:288.533333pt;}
.x9b_c00278{left:290.800000pt;}
.x83_c00278{left:292.666667pt;}
.xb3_c00278{left:295.066667pt;}
.xda_c00278{left:298.666667pt;}
.x77_c00278{left:299.600000pt;}
.xcc_c00278{left:300.800000pt;}
.x87_c00278{left:302.000000pt;}
.x18_c00278{left:303.066667pt;}
.xfe_c00278{left:304.533333pt;}
.x35_c00278{left:305.733333pt;}
.x112_c00278{left:306.800000pt;}
.x8_c00278{left:309.600000pt;}
.xab_c00278{left:311.066667pt;}
.x106_c00278{left:312.400000pt;}
.xf6_c00278{left:314.800000pt;}
.x113_c00278{left:320.933333pt;}
.x5f_c00278{left:322.800000pt;}
.x54_c00278{left:325.333333pt;}
.x119_c00278{left:326.400000pt;}
.x9c_c00278{left:327.333333pt;}
.x88_c00278{left:329.200000pt;}
.x28_c00278{left:331.866667pt;}
.x9_c00278{left:333.333333pt;}
.x19_c00278{left:334.800000pt;}
.x3a_c00278{left:336.400000pt;}
.x93_c00278{left:338.133333pt;}
.xd5_c00278{left:341.733333pt;}
.xf1_c00278{left:343.733333pt;}
.x78_c00278{left:344.666667pt;}
.xa_c00278{left:346.800000pt;}
.x29_c00278{left:350.133333pt;}
.x3b_c00278{left:352.400000pt;}
.x1a_c00278{left:354.000000pt;}
.xd6_c00278{left:357.066667pt;}
.x79_c00278{left:360.400000pt;}
.xb4_c00278{left:363.200000pt;}
.x94_c00278{left:365.066667pt;}
.x114_c00278{left:367.066667pt;}
.x3c_c00278{left:370.000000pt;}
.x55_c00278{left:371.466667pt;}
.x60_c00278{left:374.000000pt;}
.x120_c00278{left:375.066667pt;}
.x89_c00278{left:378.533333pt;}
.xd7_c00278{left:379.733333pt;}
.x12d_c00278{left:381.066667pt;}
.xbb_c00278{left:382.133333pt;}
.x11a_c00278{left:383.333333pt;}
.xc2_c00278{left:385.200000pt;}
.xe2_c00278{left:386.133333pt;}
.xff_c00278{left:387.466667pt;}
.x2_c00278{left:390.800000pt;}
.x6b_c00278{left:391.733333pt;}
.xcd_c00278{left:392.666667pt;}
.xa8_c00278{left:394.133333pt;}
.xe3_c00278{left:397.066667pt;}
.x11b_c00278{left:402.533333pt;}
.x61_c00278{left:404.133333pt;}
.xb5_c00278{left:407.066667pt;}
.x2a_c00278{left:408.400000pt;}
.xe8_c00278{left:409.333333pt;}
.x1b_c00278{left:411.600000pt;}
.xac_c00278{left:414.400000pt;}
.x95_c00278{left:417.200000pt;}
.x3d_c00278{left:418.266667pt;}
.xe9_c00278{left:420.266667pt;}
.xdb_c00278{left:423.333333pt;}
.x49_c00278{left:424.533333pt;}
.x2b_c00278{left:426.000000pt;}
.xb_c00278{left:427.733333pt;}
.x1c_c00278{left:429.466667pt;}
.xf2_c00278{left:430.400000pt;}
.x96_c00278{left:434.533333pt;}
.x107_c00278{left:436.533333pt;}
.x9d_c00278{left:437.733333pt;}
.x56_c00278{left:439.333333pt;}
.x100_c00278{left:440.533333pt;}
.x121_c00278{left:442.266667pt;}
.x6c_c00278{left:444.266667pt;}
.xc_c00278{left:446.266667pt;}
.x8a_c00278{left:449.200000pt;}
.x10a_c00278{left:450.666667pt;}
.x2c_c00278{left:451.600000pt;}
.x126_c00278{left:452.533333pt;}
.x10f_c00278{left:453.733333pt;}
.xf9_c00278{left:456.000000pt;}
.x6d_c00278{left:458.666667pt;}
.x1d_c00278{left:462.800000pt;}
.x101_c00278{left:463.866667pt;}
.xd_c00278{left:464.800000pt;}
.xad_c00278{left:466.533333pt;}
.x4a_c00278{left:468.666667pt;}
.x7a_c00278{left:472.400000pt;}
.x8b_c00278{left:474.533333pt;}
.x62_c00278{left:476.400000pt;}
.x4b_c00278{left:477.600000pt;}
.xbc_c00278{left:480.133333pt;}
.xf3_c00278{left:483.200000pt;}
.x108_c00278{left:484.266667pt;}
.x63_c00278{left:485.733333pt;}
.xce_c00278{left:487.066667pt;}
.x122_c00278{left:488.400000pt;}
.x1e_c00278{left:490.266667pt;}
.x3e_c00278{left:492.000000pt;}
.x4c_c00278{left:493.600000pt;}
.x127_c00278{left:494.800000pt;}
.xb6_c00278{left:496.000000pt;}
.x12e_c00278{left:497.866667pt;}
.xea_c00278{left:500.533333pt;}
.x2d_c00278{left:501.466667pt;}
.x11c_c00278{left:502.400000pt;}
.x1f_c00278{left:503.333333pt;}
.xe_c00278{left:504.800000pt;}
.x6e_c00278{left:507.866667pt;}
.x9e_c00278{left:509.733333pt;}
.x7b_c00278{left:510.800000pt;}
.xcf_c00278{left:512.933333pt;}
.x128_c00278{left:517.200000pt;}
.xed_c00278{left:519.466667pt;}
.xae_c00278{left:520.666667pt;}
.x11d_c00278{left:521.600000pt;}
.x7c_c00278{left:523.333333pt;}
.x131_c00278{left:524.400000pt;}
.xb7_c00278{left:527.733333pt;}
.x9f_c00278{left:528.666667pt;}
.xf_c00278{left:531.066667pt;}
.x64_c00278{left:532.800000pt;}
.x20_c00278{left:534.666667pt;}
.x8c_c00278{left:535.600000pt;}
.xd0_c00278{left:538.266667pt;}
.x97_c00278{left:540.400000pt;}
.xc3_c00278{left:541.333333pt;}
.x110_c00278{left:544.666667pt;}
.xa0_c00278{left:545.600000pt;}
.xdc_c00278{left:547.466667pt;}
.x65_c00278{left:548.533333pt;}
.xf4_c00278{left:549.733333pt;}
.x57_c00278{left:552.000000pt;}
.x3f_c00278{left:553.466667pt;}
.x6f_c00278{left:555.600000pt;}
.xfa_c00278{left:556.800000pt;}
.xaf_c00278{left:557.733333pt;}
.x10_c00278{left:558.933333pt;}
.x7d_c00278{left:560.400000pt;}
.x11e_c00278{left:561.333333pt;}
.xd8_c00278{left:562.666667pt;}
.x102_c00278{left:563.600000pt;}
.x123_c00278{left:567.600000pt;}
.x4d_c00278{left:569.066667pt;}
.x111_c00278{left:570.266667pt;}
.xa1_c00278{left:571.200000pt;}
.x58_c00278{left:572.133333pt;}
.x132_c00278{left:574.666667pt;}
.xdd_c00278{left:576.533333pt;}
.xee_c00278{left:578.266667pt;}
.x129_c00278{left:581.600000pt;}
.x11_c00278{left:583.866667pt;}
.x40_c00278{left:585.466667pt;}
.x8d_c00278{left:586.800000pt;}
.x115_c00278{left:588.800000pt;}
.x10b_c00278{left:590.133333pt;}
.x70_c00278{left:591.066667pt;}
.xde_c00278{left:592.533333pt;}
.xfb_c00278{left:594.533333pt;}
.x2e_c00278{left:596.133333pt;}
.xc4_c00278{left:598.266667pt;}
.x66_c00278{left:600.000000pt;}
.xb0_c00278{left:604.400000pt;}
.xf7_c00278{left:606.666667pt;}
.x10c_c00278{left:608.400000pt;}
.xa2_c00278{left:609.866667pt;}
.xdf_c00278{left:611.466667pt;}
.x21_c00278{left:612.400000pt;}
.xd1_c00278{left:614.666667pt;}
.x41_c00278{left:616.533333pt;}
.xe4_c00278{left:618.933333pt;}
.xbd_c00278{left:620.800000pt;}
.x67_c00278{left:622.400000pt;}
.x2f_c00278{left:624.000000pt;}
.xf5_c00278{left:624.933333pt;}
.x10d_c00278{left:627.866667pt;}
.xd2_c00278{left:629.733333pt;}
.xc8_c00278{left:631.600000pt;}
.xef_c00278{left:632.933333pt;}
.x98_c00278{left:635.733333pt;}
.x22_c00278{left:637.333333pt;}
.xd9_c00278{left:638.800000pt;}
.x116_c00278{left:640.000000pt;}
.x71_c00278{left:640.933333pt;}
.x12_c00278{left:646.266667pt;}
.x42_c00278{left:647.600000pt;}
.x30_c00278{left:649.333333pt;}
.xeb_c00278{left:653.733333pt;}
.xfc_c00278{left:655.600000pt;}
.xbe_c00278{left:656.933333pt;}
.x68_c00278{left:658.266667pt;}
.xa3_c00278{left:662.266667pt;}
.x4e_c00278{left:663.466667pt;}
.x72_c00278{left:664.933333pt;}
.xb8_c00278{left:668.266667pt;}
.x59_c00278{left:670.000000pt;}
.x69_c00278{left:674.000000pt;}
.x7e_c00278{left:675.333333pt;}
.x8e_c00278{left:677.600000pt;}
.xe0_c00278{left:678.666667pt;}
.x12f_c00278{left:681.333333pt;}
.x43_c00278{left:684.400000pt;}
.x4f_c00278{left:688.800000pt;}
.x7f_c00278{left:691.066667pt;}
.x103_c00278{left:692.000000pt;}
.x31_c00278{left:696.000000pt;}
.x12a_c00278{left:698.666667pt;}
.x44_c00278{left:700.400000pt;}
.x5a_c00278{left:701.333333pt;}
.xc9_c00278{left:703.866667pt;}
.x73_c00278{left:705.866667pt;}
.x23_c00278{left:707.466667pt;}
}





/* 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_c00279 {
    display:none;
  }
  .loading-indicator_c00279.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00279 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_c00279 { 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_c00279" -> "#page-container .classname_c00279")
 */
.pf_c00279 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00279 { /* 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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00279 { /* 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_c00279 { /* 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_c00279 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00279 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00279 {overflow:visible;}
  }
}
.c_c00279 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00279 { /* 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_c00279:after { /* webkit #35443 */
  content: '';
}
.t_c00279:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00279 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 */
}
.__c00279 { /* 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_c00279 { /* info for Javascript */
  display:none;
}
.l_c00279 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00279 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00279 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00279: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_c00279 {
    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_c00279.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00279.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_c00279 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00279{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00279;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00279{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00279{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m12_c00279{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00279{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00279{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00279{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mc_c00279{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6_c00279{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00279{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m43_c00279{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m45_c00279{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m30_c00279{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00279{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m34_c00279{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m67_c00279{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m60_c00279{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m19_c00279{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m16_c00279{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00279{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00279{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m31_c00279{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m28_c00279{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00279{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m26_c00279{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m23_c00279{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m15_c00279{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00279{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00279{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m18_c00279{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00279{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00279{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00279{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4_c00279{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m56_c00279{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7_c00279{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00279{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m58_c00279{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m61_c00279{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m32_c00279{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00279{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m54_c00279{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5_c00279{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m17_c00279{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m49_c00279{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md_c00279{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m64_c00279{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma_c00279{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8_c00279{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m52_c00279{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m50_c00279{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m69_c00279{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22_c00279{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m66_c00279{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m57_c00279{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00279{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m55_c00279{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00279{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00279{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3_c00279{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m40_c00279{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00279{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m20_c00279{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00279{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00279{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00279{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m47_c00279{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00279{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m29_c00279{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m25_c00279{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m10_c00279{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m53_c00279{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2_c00279{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m63_c00279{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m27_c00279{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m37_c00279{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c00279{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m59_c00279{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m68_c00279{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m35_c00279{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m42_c00279{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m48_c00279{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m65_c00279{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00279{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00279{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m21_c00279{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00279{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m11_c00279{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00279{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00279{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00279{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00279{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00279{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m9_c00279{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00279{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m0_c00279{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.mf_c00279{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m41_c00279{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00279{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m51_c00279{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00279{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m38_c00279{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m14_c00279{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00279{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m39_c00279{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00279{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m36_c00279{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00279{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00279{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m62_c00279{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00279{vertical-align:0.000000px;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{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__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00279{word-spacing:0.000000px;}
.ws0_c00279{word-spacing:3.894096px;}
.ws1_c00279{word-spacing:7.102894px;}
.ws2_c00279{word-spacing:55.346196px;}
.fc0_c00279{color:transparent;}
.fs1_c00279{font-size:42.000000px;}
.fs0_c00279{font-size:54.000000px;}
.y0_c00279{bottom:0.000000px;}
.y16_c00279{bottom:132.150000px;}
.y15_c00279{bottom:610.950000px;}
.y14_c00279{bottom:631.050000px;}
.y13_c00279{bottom:650.550000px;}
.y12_c00279{bottom:690.150000px;}
.y11_c00279{bottom:709.950000px;}
.y10_c00279{bottom:730.200000px;}
.yf_c00279{bottom:750.000000px;}
.ye_c00279{bottom:769.800000px;}
.yd_c00279{bottom:789.900000px;}
.yc_c00279{bottom:810.000000px;}
.yb_c00279{bottom:829.800000px;}
.ya_c00279{bottom:849.900000px;}
.y9_c00279{bottom:869.700000px;}
.y8_c00279{bottom:890.250000px;}
.y7_c00279{bottom:910.050000px;}
.y6_c00279{bottom:929.850000px;}
.y5_c00279{bottom:950.100000px;}
.y4_c00279{bottom:969.900000px;}
.y3_c00279{bottom:990.000000px;}
.y2_c00279{bottom:1009.800000px;}
.y1_c00279{bottom:1047.900000px;}
.h3_c00279{height:42.000000px;}
.h2_c00279{height:54.000000px;}
.h0_c00279{height:1166.759949px;}
.h1_c00279{height:1167.000000px;}
.w0_c00279{width:918.720063px;}
.w1_c00279{width:918.750000px;}
.x0_c00279{left:0.000000px;}
.x4e_c00279{left:103.500000px;}
.x15_c00279{left:105.000000px;}
.x3_c00279{left:106.200000px;}
.x6f_c00279{left:121.950000px;}
.xb0_c00279{left:128.400000px;}
.xa3_c00279{left:134.700000px;}
.x36_c00279{left:136.500000px;}
.x7d_c00279{left:137.550000px;}
.x43_c00279{left:138.750000px;}
.xbc_c00279{left:145.200000px;}
.x4f_c00279{left:147.450000px;}
.x4_c00279{left:149.100000px;}
.x65_c00279{left:150.150000px;}
.x37_c00279{left:151.650000px;}
.x87_c00279{left:152.700000px;}
.xaa_c00279{left:153.750000px;}
.xa4_c00279{left:162.450000px;}
.x16_c00279{left:164.400000px;}
.xb1_c00279{left:166.200000px;}
.x8f_c00279{left:169.950000px;}
.x50_c00279{left:177.300000px;}
.x27_c00279{left:179.550000px;}
.x99_c00279{left:183.750000px;}
.x5_c00279{left:189.450000px;}
.x38_c00279{left:190.500000px;}
.x66_c00279{left:196.950000px;}
.x70_c00279{left:198.300000px;}
.x7e_c00279{left:202.050000px;}
.x44_c00279{left:203.850000px;}
.x28_c00279{left:207.600000px;}
.xa5_c00279{left:220.800000px;}
.x51_c00279{left:222.600000px;}
.x17_c00279{left:225.600000px;}
.x9a_c00279{left:228.450000px;}
.x88_c00279{left:233.700000px;}
.x90_c00279{left:235.050000px;}
.x29_c00279{left:238.200000px;}
.x7f_c00279{left:241.650000px;}
.x71_c00279{left:245.850000px;}
.x18_c00279{left:247.200000px;}
.x39_c00279{left:248.400000px;}
.x52_c00279{left:255.300000px;}
.xb2_c00279{left:256.500000px;}
.x2a_c00279{left:258.000000px;}
.x80_c00279{left:261.750000px;}
.x72_c00279{left:263.100000px;}
.x9b_c00279{left:264.450000px;}
.x19_c00279{left:270.600000px;}
.x45_c00279{left:276.600000px;}
.x6_c00279{left:278.700000px;}
.x2b_c00279{left:286.050000px;}
.x53_c00279{left:290.250000px;}
.x9c_c00279{left:292.950000px;}
.x5e_c00279{left:295.650000px;}
.x46_c00279{left:297.900000px;}
.x81_c00279{left:301.650000px;}
.x7_c00279{left:304.200000px;}
.x54_c00279{left:307.500000px;}
.x67_c00279{left:312.900000px;}
.x5f_c00279{left:322.650000px;}
.xa6_c00279{left:323.700000px;}
.x91_c00279{left:325.800000px;}
.xb3_c00279{left:327.750000px;}
.x73_c00279{left:329.700000px;}
.x8_c00279{left:332.700000px;}
.x2c_c00279{left:336.450000px;}
.x3a_c00279{left:337.950000px;}
.x1a_c00279{left:339.000000px;}
.x55_c00279{left:347.100000px;}
.x9_c00279{left:349.650000px;}
.xb4_c00279{left:352.200000px;}
.x1b_c00279{left:357.000000px;}
.xa7_c00279{left:363.000000px;}
.xbd_c00279{left:364.050000px;}
.x89_c00279{left:367.200000px;}
.x1c_c00279{left:368.850000px;}
.xa_c00279{left:375.150000px;}
.xab_c00279{left:377.250000px;}
.x56_c00279{left:381.600000px;}
.x92_c00279{left:384.150000px;}
.x3b_c00279{left:385.950000px;}
.x9d_c00279{left:387.600000px;}
.x2d_c00279{left:388.650000px;}
.x1_c00279{left:393.150000px;}
.xb5_c00279{left:402.300000px;}
.xb_c00279{left:405.450000px;}
.x74_c00279{left:406.800000px;}
.x1d_c00279{left:408.150000px;}
.x47_c00279{left:413.100000px;}
.x2e_c00279{left:420.000000px;}
.x93_c00279{left:429.150000px;}
.x3c_c00279{left:430.200000px;}
.x75_c00279{left:434.850000px;}
.x48_c00279{left:436.500000px;}
.x2f_c00279{left:438.750000px;}
.x68_c00279{left:441.000000px;}
.x8a_c00279{left:442.050000px;}
.xa8_c00279{left:443.250000px;}
.x94_c00279{left:449.700000px;}
.x1e_c00279{left:458.850000px;}
.xb6_c00279{left:462.000000px;}
.x3d_c00279{left:463.650000px;}
.xc_c00279{left:465.150000px;}
.x57_c00279{left:466.200000px;}
.x49_c00279{left:468.150000px;}
.x1f_c00279{left:478.350000px;}
.x30_c00279{left:482.700000px;}
.x82_c00279{left:484.800000px;}
.x58_c00279{left:486.300000px;}
.x69_c00279{left:488.100000px;}
.xb7_c00279{left:490.050000px;}
.xac_c00279{left:492.150000px;}
.x3e_c00279{left:493.950000px;}
.xd_c00279{left:496.500000px;}
.x9e_c00279{left:499.500000px;}
.x83_c00279{left:501.750000px;}
.x20_c00279{left:506.100000px;}
.x31_c00279{left:511.200000px;}
.xad_c00279{left:513.450000px;}
.xe_c00279{left:515.550000px;}
.x60_c00279{left:518.100000px;}
.x9f_c00279{left:526.800000px;}
.x84_c00279{left:529.050000px;}
.xb8_c00279{left:535.800000px;}
.x21_c00279{left:537.000000px;}
.x59_c00279{left:539.250000px;}
.x76_c00279{left:540.600000px;}
.x3f_c00279{left:543.300000px;}
.x8b_c00279{left:545.400000px;}
.xbe_c00279{left:547.200000px;}
.xf_c00279{left:556.200000px;}
.x77_c00279{left:558.300000px;}
.x6a_c00279{left:562.650000px;}
.x61_c00279{left:566.400000px;}
.x32_c00279{left:571.650000px;}
.xbf_c00279{left:576.000000px;}
.x95_c00279{left:577.200000px;}
.x8c_c00279{left:578.550000px;}
.x10_c00279{left:581.400000px;}
.x78_c00279{left:587.100000px;}
.x5a_c00279{left:591.750000px;}
.x40_c00279{left:594.450000px;}
.xb9_c00279{left:595.800000px;}
.xae_c00279{left:599.850000px;}
.x62_c00279{left:604.500000px;}
.x6b_c00279{left:605.850000px;}
.xc0_c00279{left:606.900000px;}
.x11_c00279{left:609.450000px;}
.x79_c00279{left:612.300000px;}
.x22_c00279{left:614.700000px;}
.x4a_c00279{left:623.250000px;}
.xa0_c00279{left:624.300000px;}
.x12_c00279{left:626.700000px;}
.x63_c00279{left:636.150000px;}
.x41_c00279{left:638.700000px;}
.x96_c00279{left:640.200000px;}
.x23_c00279{left:644.550000px;}
.xa1_c00279{left:645.600000px;}
.x33_c00279{left:648.300000px;}
.xc1_c00279{left:652.200000px;}
.x85_c00279{left:658.200000px;}
.x5b_c00279{left:661.950000px;}
.xaf_c00279{left:671.850000px;}
.x6c_c00279{left:673.500000px;}
.x7a_c00279{left:678.150000px;}
.xba_c00279{left:679.350000px;}
.x4b_c00279{left:681.600000px;}
.x24_c00279{left:683.100000px;}
.x13_c00279{left:684.300000px;}
.x34_c00279{left:691.800000px;}
.x86_c00279{left:697.500000px;}
.x6d_c00279{left:699.000000px;}
.xa9_c00279{left:701.100000px;}
.x64_c00279{left:703.050000px;}
.x4c_c00279{left:704.700000px;}
.x8d_c00279{left:707.400000px;}
.xbb_c00279{left:709.950000px;}
.x97_c00279{left:711.150000px;}
.x25_c00279{left:713.700000px;}
.x14_c00279{left:714.900000px;}
.x35_c00279{left:718.050000px;}
.x42_c00279{left:723.000000px;}
.xa2_c00279{left:724.050000px;}
.x6e_c00279{left:728.100000px;}
.x5c_c00279{left:731.400000px;}
.x4d_c00279{left:735.300000px;}
.x98_c00279{left:739.200000px;}
.x7b_c00279{left:741.150000px;}
.x26_c00279{left:743.250000px;}
.x2_c00279{left:748.050000px;}
.x5d_c00279{left:751.950000px;}
.x8e_c00279{left:757.800000px;}
.x7c_c00279{left:761.700000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws3_c00279{word-spacing:0.000000pt;}
.ws0_c00279{word-spacing:3.461418pt;}
.ws1_c00279{word-spacing:6.313683pt;}
.ws2_c00279{word-spacing:49.196619pt;}
.fs1_c00279{font-size:37.333333pt;}
.fs0_c00279{font-size:48.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y16_c00279{bottom:117.466667pt;}
.y15_c00279{bottom:543.066667pt;}
.y14_c00279{bottom:560.933333pt;}
.y13_c00279{bottom:578.266667pt;}
.y12_c00279{bottom:613.466667pt;}
.y11_c00279{bottom:631.066667pt;}
.y10_c00279{bottom:649.066667pt;}
.yf_c00279{bottom:666.666667pt;}
.ye_c00279{bottom:684.266667pt;}
.yd_c00279{bottom:702.133333pt;}
.yc_c00279{bottom:720.000000pt;}
.yb_c00279{bottom:737.600000pt;}
.ya_c00279{bottom:755.466667pt;}
.y9_c00279{bottom:773.066667pt;}
.y8_c00279{bottom:791.333333pt;}
.y7_c00279{bottom:808.933333pt;}
.y6_c00279{bottom:826.533333pt;}
.y5_c00279{bottom:844.533333pt;}
.y4_c00279{bottom:862.133333pt;}
.y3_c00279{bottom:880.000000pt;}
.y2_c00279{bottom:897.600000pt;}
.y1_c00279{bottom:931.466667pt;}
.h3_c00279{height:37.333333pt;}
.h2_c00279{height:48.000000pt;}
.h0_c00279{height:1037.119955pt;}
.h1_c00279{height:1037.333333pt;}
.w0_c00279{width:816.640056pt;}
.w1_c00279{width:816.666667pt;}
.x0_c00279{left:0.000000pt;}
.x4e_c00279{left:92.000000pt;}
.x15_c00279{left:93.333333pt;}
.x3_c00279{left:94.400000pt;}
.x6f_c00279{left:108.400000pt;}
.xb0_c00279{left:114.133333pt;}
.xa3_c00279{left:119.733333pt;}
.x36_c00279{left:121.333333pt;}
.x7d_c00279{left:122.266667pt;}
.x43_c00279{left:123.333333pt;}
.xbc_c00279{left:129.066667pt;}
.x4f_c00279{left:131.066667pt;}
.x4_c00279{left:132.533333pt;}
.x65_c00279{left:133.466667pt;}
.x37_c00279{left:134.800000pt;}
.x87_c00279{left:135.733333pt;}
.xaa_c00279{left:136.666667pt;}
.xa4_c00279{left:144.400000pt;}
.x16_c00279{left:146.133333pt;}
.xb1_c00279{left:147.733333pt;}
.x8f_c00279{left:151.066667pt;}
.x50_c00279{left:157.600000pt;}
.x27_c00279{left:159.600000pt;}
.x99_c00279{left:163.333333pt;}
.x5_c00279{left:168.400000pt;}
.x38_c00279{left:169.333333pt;}
.x66_c00279{left:175.066667pt;}
.x70_c00279{left:176.266667pt;}
.x7e_c00279{left:179.600000pt;}
.x44_c00279{left:181.200000pt;}
.x28_c00279{left:184.533333pt;}
.xa5_c00279{left:196.266667pt;}
.x51_c00279{left:197.866667pt;}
.x17_c00279{left:200.533333pt;}
.x9a_c00279{left:203.066667pt;}
.x88_c00279{left:207.733333pt;}
.x90_c00279{left:208.933333pt;}
.x29_c00279{left:211.733333pt;}
.x7f_c00279{left:214.800000pt;}
.x71_c00279{left:218.533333pt;}
.x18_c00279{left:219.733333pt;}
.x39_c00279{left:220.800000pt;}
.x52_c00279{left:226.933333pt;}
.xb2_c00279{left:228.000000pt;}
.x2a_c00279{left:229.333333pt;}
.x80_c00279{left:232.666667pt;}
.x72_c00279{left:233.866667pt;}
.x9b_c00279{left:235.066667pt;}
.x19_c00279{left:240.533333pt;}
.x45_c00279{left:245.866667pt;}
.x6_c00279{left:247.733333pt;}
.x2b_c00279{left:254.266667pt;}
.x53_c00279{left:258.000000pt;}
.x9c_c00279{left:260.400000pt;}
.x5e_c00279{left:262.800000pt;}
.x46_c00279{left:264.800000pt;}
.x81_c00279{left:268.133333pt;}
.x7_c00279{left:270.400000pt;}
.x54_c00279{left:273.333333pt;}
.x67_c00279{left:278.133333pt;}
.x5f_c00279{left:286.800000pt;}
.xa6_c00279{left:287.733333pt;}
.x91_c00279{left:289.600000pt;}
.xb3_c00279{left:291.333333pt;}
.x73_c00279{left:293.066667pt;}
.x8_c00279{left:295.733333pt;}
.x2c_c00279{left:299.066667pt;}
.x3a_c00279{left:300.400000pt;}
.x1a_c00279{left:301.333333pt;}
.x55_c00279{left:308.533333pt;}
.x9_c00279{left:310.800000pt;}
.xb4_c00279{left:313.066667pt;}
.x1b_c00279{left:317.333333pt;}
.xa7_c00279{left:322.666667pt;}
.xbd_c00279{left:323.600000pt;}
.x89_c00279{left:326.400000pt;}
.x1c_c00279{left:327.866667pt;}
.xa_c00279{left:333.466667pt;}
.xab_c00279{left:335.333333pt;}
.x56_c00279{left:339.200000pt;}
.x92_c00279{left:341.466667pt;}
.x3b_c00279{left:343.066667pt;}
.x9d_c00279{left:344.533333pt;}
.x2d_c00279{left:345.466667pt;}
.x1_c00279{left:349.466667pt;}
.xb5_c00279{left:357.600000pt;}
.xb_c00279{left:360.400000pt;}
.x74_c00279{left:361.600000pt;}
.x1d_c00279{left:362.800000pt;}
.x47_c00279{left:367.200000pt;}
.x2e_c00279{left:373.333333pt;}
.x93_c00279{left:381.466667pt;}
.x3c_c00279{left:382.400000pt;}
.x75_c00279{left:386.533333pt;}
.x48_c00279{left:388.000000pt;}
.x2f_c00279{left:390.000000pt;}
.x68_c00279{left:392.000000pt;}
.x8a_c00279{left:392.933333pt;}
.xa8_c00279{left:394.000000pt;}
.x94_c00279{left:399.733333pt;}
.x1e_c00279{left:407.866667pt;}
.xb6_c00279{left:410.666667pt;}
.x3d_c00279{left:412.133333pt;}
.xc_c00279{left:413.466667pt;}
.x57_c00279{left:414.400000pt;}
.x49_c00279{left:416.133333pt;}
.x1f_c00279{left:425.200000pt;}
.x30_c00279{left:429.066667pt;}
.x82_c00279{left:430.933333pt;}
.x58_c00279{left:432.266667pt;}
.x69_c00279{left:433.866667pt;}
.xb7_c00279{left:435.600000pt;}
.xac_c00279{left:437.466667pt;}
.x3e_c00279{left:439.066667pt;}
.xd_c00279{left:441.333333pt;}
.x9e_c00279{left:444.000000pt;}
.x83_c00279{left:446.000000pt;}
.x20_c00279{left:449.866667pt;}
.x31_c00279{left:454.400000pt;}
.xad_c00279{left:456.400000pt;}
.xe_c00279{left:458.266667pt;}
.x60_c00279{left:460.533333pt;}
.x9f_c00279{left:468.266667pt;}
.x84_c00279{left:470.266667pt;}
.xb8_c00279{left:476.266667pt;}
.x21_c00279{left:477.333333pt;}
.x59_c00279{left:479.333333pt;}
.x76_c00279{left:480.533333pt;}
.x3f_c00279{left:482.933333pt;}
.x8b_c00279{left:484.800000pt;}
.xbe_c00279{left:486.400000pt;}
.xf_c00279{left:494.400000pt;}
.x77_c00279{left:496.266667pt;}
.x6a_c00279{left:500.133333pt;}
.x61_c00279{left:503.466667pt;}
.x32_c00279{left:508.133333pt;}
.xbf_c00279{left:512.000000pt;}
.x95_c00279{left:513.066667pt;}
.x8c_c00279{left:514.266667pt;}
.x10_c00279{left:516.800000pt;}
.x78_c00279{left:521.866667pt;}
.x5a_c00279{left:526.000000pt;}
.x40_c00279{left:528.400000pt;}
.xb9_c00279{left:529.600000pt;}
.xae_c00279{left:533.200000pt;}
.x62_c00279{left:537.333333pt;}
.x6b_c00279{left:538.533333pt;}
.xc0_c00279{left:539.466667pt;}
.x11_c00279{left:541.733333pt;}
.x79_c00279{left:544.266667pt;}
.x22_c00279{left:546.400000pt;}
.x4a_c00279{left:554.000000pt;}
.xa0_c00279{left:554.933333pt;}
.x12_c00279{left:557.066667pt;}
.x63_c00279{left:565.466667pt;}
.x41_c00279{left:567.733333pt;}
.x96_c00279{left:569.066667pt;}
.x23_c00279{left:572.933333pt;}
.xa1_c00279{left:573.866667pt;}
.x33_c00279{left:576.266667pt;}
.xc1_c00279{left:579.733333pt;}
.x85_c00279{left:585.066667pt;}
.x5b_c00279{left:588.400000pt;}
.xaf_c00279{left:597.200000pt;}
.x6c_c00279{left:598.666667pt;}
.x7a_c00279{left:602.800000pt;}
.xba_c00279{left:603.866667pt;}
.x4b_c00279{left:605.866667pt;}
.x24_c00279{left:607.200000pt;}
.x13_c00279{left:608.266667pt;}
.x34_c00279{left:614.933333pt;}
.x86_c00279{left:620.000000pt;}
.x6d_c00279{left:621.333333pt;}
.xa9_c00279{left:623.200000pt;}
.x64_c00279{left:624.933333pt;}
.x4c_c00279{left:626.400000pt;}
.x8d_c00279{left:628.800000pt;}
.xbb_c00279{left:631.066667pt;}
.x97_c00279{left:632.133333pt;}
.x25_c00279{left:634.400000pt;}
.x14_c00279{left:635.466667pt;}
.x35_c00279{left:638.266667pt;}
.x42_c00279{left:642.666667pt;}
.xa2_c00279{left:643.600000pt;}
.x6e_c00279{left:647.200000pt;}
.x5c_c00279{left:650.133333pt;}
.x4d_c00279{left:653.600000pt;}
.x98_c00279{left:657.066667pt;}
.x7b_c00279{left:658.800000pt;}
.x26_c00279{left:660.666667pt;}
.x2_c00279{left:664.933333pt;}
.x5d_c00279{left:668.400000pt;}
.x8e_c00279{left:673.600000pt;}
.x7c_c00279{left:677.066667pt;}
}





/* 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_c00280 {
    display:none;
  }
  .loading-indicator_c00280.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00280 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_c00280 { 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_c00280" -> "#page-container .classname_c00280")
 */
.pf_c00280 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00280 { /* 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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00280 { /* 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_c00280 { /* 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_c00280 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00280 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00280 {overflow:visible;}
  }
}
.c_c00280 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00280 { /* 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_c00280:after { /* webkit #35443 */
  content: '';
}
.t_c00280:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00280 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 */
}
.__c00280 { /* 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_c00280 { /* info for Javascript */
  display:none;
}
.l_c00280 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00280 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00280 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00280: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_c00280 {
    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_c00280.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00280.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_c00280 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00280{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00280;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.000000;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;}
.m1f_c00280{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00280{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m54_c00280{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00280{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m45_c00280{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00280{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m93_c00280{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m46_c00280{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m97_c00280{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m26_c00280{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m16_c00280{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00280{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00280{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m98_c00280{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m96_c00280{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m47_c00280{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00280{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00280{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m27_c00280{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m61_c00280{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m22_c00280{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00280{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf_c00280{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00280{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md_c00280{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m70_c00280{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00280{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00280{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m10_c00280{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00280{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m77_c00280{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m15_c00280{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m21_c00280{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00280{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m36_c00280{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00280{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00280{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00280{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00280{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00280{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m49_c00280{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m33_c00280{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4_c00280{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00280{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00280{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00280{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m20_c00280{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m64_c00280{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m74_c00280{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00280{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00280{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m60_c00280{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00280{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m75_c00280{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m42_c00280{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00280{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00280{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m56_c00280{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m41_c00280{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m29_c00280{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m40_c00280{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m79_c00280{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m83_c00280{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00280{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m59_c00280{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17_c00280{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m76_c00280{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m18_c00280{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00280{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m95_c00280{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00280{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);}
.m3f_c00280{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m81_c00280{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m39_c00280{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00280{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m69_c00280{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00280{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m84_c00280{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m89_c00280{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m50_c00280{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m58_c00280{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m32_c00280{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m19_c00280{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m25_c00280{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m12_c00280{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m55_c00280{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m72_c00280{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m82_c00280{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m24_c00280{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m11_c00280{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00280{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m13_c00280{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m78_c00280{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00280{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00280{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00280{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00280{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m6_c00280{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00280{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00280{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00280{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m8_c00280{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00280{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c00280{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m31_c00280{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m85_c00280{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00280{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m52_c00280{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m63_c00280{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m71_c00280{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00280{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00280{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m23_c00280{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00280{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00280{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m62_c00280{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m14_c00280{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m87_c00280{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m30_c00280{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00280{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00280{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00280{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m44_c00280{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m38_c00280{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma_c00280{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m35_c00280{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9_c00280{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.me_c00280{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00280{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m66_c00280{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m73_c00280{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m51_c00280{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m68_c00280{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m43_c00280{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m0_c00280{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m34_c00280{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mc_c00280{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m37_c00280{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m3_c00280{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m53_c00280{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m88_c00280{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m86_c00280{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m94_c00280{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00280{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m2_c00280{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m80_c00280{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00280{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m92_c00280{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00280{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m1_c00280{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m5_c00280{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.mb_c00280{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m7_c00280{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00280{vertical-align:0.000000px;}
.ls0_c00280{letter-spacing:0.000000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{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__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00280{word-spacing:-7.250000px;}
.ws7_c00280{word-spacing:0.000000px;}
.ws5_c00280{word-spacing:3.894096px;}
.ws4_c00280{word-spacing:4.110727px;}
.ws6_c00280{word-spacing:6.906219px;}
.ws0_c00280{word-spacing:7.838800px;}
.ws2_c00280{word-spacing:12.125000px;}
.ws3_c00280{word-spacing:13.375000px;}
.fc0_c00280{color:transparent;}
.fs0_c00280{font-size:54.000000px;}
.y0_c00280{bottom:0.000000px;}
.y23_c00280{bottom:146.100000px;}
.y22_c00280{bottom:177.000000px;}
.y21_c00280{bottom:196.800000px;}
.y20_c00280{bottom:216.900000px;}
.y1f_c00280{bottom:236.700000px;}
.y1e_c00280{bottom:256.200000px;}
.y1d_c00280{bottom:276.000000px;}
.y1c_c00280{bottom:295.800000px;}
.y1b_c00280{bottom:315.900000px;}
.y1a_c00280{bottom:335.700000px;}
.y19_c00280{bottom:355.500000px;}
.y18_c00280{bottom:375.600000px;}
.y17_c00280{bottom:395.700000px;}
.y16_c00280{bottom:415.500000px;}
.y15_c00280{bottom:435.450000px;}
.y14_c00280{bottom:455.550000px;}
.y13_c00280{bottom:475.650000px;}
.y12_c00280{bottom:495.450000px;}
.y11_c00280{bottom:515.250000px;}
.y10_c00280{bottom:535.350000px;}
.yf_c00280{bottom:555.150000px;}
.ye_c00280{bottom:574.950000px;}
.yd_c00280{bottom:594.750000px;}
.yc_c00280{bottom:614.550000px;}
.yb_c00280{bottom:634.350000px;}
.ya_c00280{bottom:655.650000px;}
.y9_c00280{bottom:675.450000px;}
.y8_c00280{bottom:695.550000px;}
.y7_c00280{bottom:715.500000px;}
.y6_c00280{bottom:735.600000px;}
.y5_c00280{bottom:755.400000px;}
.y4_c00280{bottom:775.500000px;}
.y3_c00280{bottom:808.500000px;}
.y2_c00280{bottom:841.650000px;}
.y1_c00280{bottom:1046.550000px;}
.h2_c00280{height:54.000000px;}
.h0_c00280{height:1166.759949px;}
.h1_c00280{height:1167.000000px;}
.w0_c00280{width:918.720063px;}
.w1_c00280{width:918.750000px;}
.x0_c00280{left:0.000000px;}
.x10c_c00280{left:146.850000px;}
.xf6_c00280{left:147.900000px;}
.xe8_c00280{left:148.950000px;}
.x58_c00280{left:150.150000px;}
.x65_c00280{left:151.500000px;}
.x10_c00280{left:153.000000px;}
.x114_c00280{left:162.150000px;}
.xff_c00280{left:166.200000px;}
.x88_c00280{left:168.750000px;}
.x3b_c00280{left:170.400000px;}
.x66_c00280{left:172.050000px;}
.x1d_c00280{left:174.450000px;}
.x11_c00280{left:177.900000px;}
.xcc_c00280{left:178.950000px;}
.x59_c00280{left:181.800000px;}
.x43_c00280{left:183.900000px;}
.x2d_c00280{left:186.450000px;}
.xdd_c00280{left:189.000000px;}
.x7d_c00280{left:192.000000px;}
.x3c_c00280{left:195.900000px;}
.xb4_c00280{left:198.150000px;}
.x4_c00280{left:201.300000px;}
.x1e_c00280{left:202.950000px;}
.x73_c00280{left:205.050000px;}
.xde_c00280{left:207.300000px;}
.x12_c00280{left:208.500000px;}
.x2e_c00280{left:209.550000px;}
.x4e_c00280{left:211.350000px;}
.x67_c00280{left:212.700000px;}
.x7e_c00280{left:214.350000px;}
.xcd_c00280{left:218.250000px;}
.x115_c00280{left:221.250000px;}
.x89_c00280{left:226.650000px;}
.x2f_c00280{left:227.850000px;}
.xd4_c00280{left:228.900000px;}
.x13_c00280{left:230.100000px;}
.xe9_c00280{left:231.750000px;}
.x68_c00280{left:235.800000px;}
.x9a_c00280{left:238.650000px;}
.x5a_c00280{left:243.000000px;}
.xbe_c00280{left:247.050000px;}
.x8a_c00280{left:248.250000px;}
.xf0_c00280{left:249.450000px;}
.x1f_c00280{left:253.050000px;}
.x44_c00280{left:255.600000px;}
.x10d_c00280{left:256.950000px;}
.xc3_c00280{left:259.950000px;}
.x14_c00280{left:263.250000px;}
.xa0_c00280{left:265.350000px;}
.x7f_c00280{left:266.850000px;}
.xd8_c00280{left:268.800000px;}
.x4f_c00280{left:272.850000px;}
.xdf_c00280{left:273.900000px;}
.xbb_c00280{left:277.050000px;}
.x69_c00280{left:278.700000px;}
.x104_c00280{left:282.000000px;}
.xb5_c00280{left:285.600000px;}
.x5_c00280{left:288.750000px;}
.x80_c00280{left:290.250000px;}
.x3d_c00280{left:292.050000px;}
.x100_c00280{left:293.550000px;}
.x30_c00280{left:294.750000px;}
.x45_c00280{left:298.500000px;}
.xc4_c00280{left:299.550000px;}
.x6a_c00280{left:301.350000px;}
.xe0_c00280{left:309.600000px;}
.x50_c00280{left:310.650000px;}
.x20_c00280{left:315.300000px;}
.x74_c00280{left:316.650000px;}
.xaf_c00280{left:319.650000px;}
.x46_c00280{left:321.150000px;}
.xf1_c00280{left:322.500000px;}
.x10e_c00280{left:324.300000px;}
.xd9_c00280{left:325.650000px;}
.x31_c00280{left:328.200000px;}
.xea_c00280{left:329.250000px;}
.x8b_c00280{left:331.050000px;}
.x6b_c00280{left:332.250000px;}
.x3e_c00280{left:334.950000px;}
.xe1_c00280{left:339.150000px;}
.xb0_c00280{left:342.000000px;}
.x47_c00280{left:344.250000px;}
.x6_c00280{left:346.050000px;}
.x75_c00280{left:347.550000px;}
.xf7_c00280{left:349.950000px;}
.x101_c00280{left:355.050000px;}
.x21_c00280{left:356.400000px;}
.x15_c00280{left:358.650000px;}
.x7_c00280{left:361.200000px;}
.x8c_c00280{left:363.450000px;}
.xbc_c00280{left:365.250000px;}
.xce_c00280{left:366.900000px;}
.x102_c00280{left:369.750000px;}
.x22_c00280{left:370.800000px;}
.xd5_c00280{left:377.550000px;}
.xe2_c00280{left:379.800000px;}
.xf8_c00280{left:381.600000px;}
.xc5_c00280{left:387.000000px;}
.x23_c00280{left:395.700000px;}
.xa8_c00280{left:396.750000px;}
.x16_c00280{left:397.950000px;}
.x3f_c00280{left:399.000000px;}
.x51_c00280{left:401.700000px;}
.x5b_c00280{left:404.100000px;}
.x8d_c00280{left:407.400000px;}
.x32_c00280{left:410.550000px;}
.x48_c00280{left:412.950000px;}
.xcf_c00280{left:414.000000px;}
.xf2_c00280{left:416.100000px;}
.x2_c00280{left:419.100000px;}
.xbd_c00280{left:421.800000px;}
.x6c_c00280{left:423.000000px;}
.x81_c00280{left:424.200000px;}
.x40_c00280{left:425.250000px;}
.xc6_c00280{left:426.300000px;}
.xa1_c00280{left:428.850000px;}
.xe3_c00280{left:432.000000px;}
.x17_c00280{left:437.250000px;}
.x105_c00280{left:438.900000px;}
.x8_c00280{left:440.400000px;}
.xda_c00280{left:442.350000px;}
.xbf_c00280{left:447.300000px;}
.x8e_c00280{left:448.800000px;}
.x6d_c00280{left:453.600000px;}
.x9b_c00280{left:454.800000px;}
.x9_c00280{left:455.850000px;}
.xf9_c00280{left:456.900000px;}
.x5c_c00280{left:458.850000px;}
.x94_c00280{left:460.650000px;}
.x41_c00280{left:462.000000px;}
.xf3_c00280{left:463.200000px;}
.xa2_c00280{left:466.650000px;}
.x24_c00280{left:468.750000px;}
.x8f_c00280{left:470.100000px;}
.xa9_c00280{left:472.050000px;}
.x1_c00280{left:475.200000px;}
.x82_c00280{left:477.150000px;}
.x5d_c00280{left:478.350000px;}
.x18_c00280{left:479.400000px;}
.xe4_c00280{left:481.650000px;}
.x95_c00280{left:484.050000px;}
.x76_c00280{left:486.750000px;}
.x116_c00280{left:495.300000px;}
.x42_c00280{left:496.500000px;}
.xa3_c00280{left:498.300000px;}
.x6e_c00280{left:499.650000px;}
.x90_c00280{left:500.700000px;}
.x106_c00280{left:501.900000px;}
.x3_c00280{left:503.700000px;}
.xd0_c00280{left:505.050000px;}
.x33_c00280{left:506.250000px;}
.x25_c00280{left:508.050000px;}
.x83_c00280{left:509.550000px;}
.xeb_c00280{left:511.050000px;}
.xa_c00280{left:512.400000px;}
.x5e_c00280{left:515.100000px;}
.x77_c00280{left:520.200000px;}
.xaa_c00280{left:522.750000px;}
.x107_c00280{left:529.650000px;}
.xc7_c00280{left:533.250000px;}
.xfa_c00280{left:535.050000px;}
.x49_c00280{left:536.700000px;}
.xe5_c00280{left:537.750000px;}
.xf4_c00280{left:540.900000px;}
.x34_c00280{left:543.300000px;}
.x19_c00280{left:544.500000px;}
.x6f_c00280{left:547.500000px;}
.x96_c00280{left:549.600000px;}
.x9c_c00280{left:550.800000px;}
.x10f_c00280{left:556.050000px;}
.x4a_c00280{left:557.250000px;}
.x5f_c00280{left:558.600000px;}
.x78_c00280{left:560.550000px;}
.x26_c00280{left:563.100000px;}
.x119_c00280{left:564.600000px;}
.xfb_c00280{left:566.700000px;}
.xb1_c00280{left:568.350000px;}
.x108_c00280{left:571.350000px;}
.x91_c00280{left:572.700000px;}
.x110_c00280{left:573.750000px;}
.x1a_c00280{left:575.100000px;}
.x52_c00280{left:576.150000px;}
.xd1_c00280{left:578.100000px;}
.xdb_c00280{left:579.900000px;}
.xb_c00280{left:582.600000px;}
.xb6_c00280{left:586.950000px;}
.xa4_c00280{left:588.300000px;}
.x35_c00280{left:591.600000px;}
.x84_c00280{left:595.650000px;}
.x27_c00280{left:597.000000px;}
.xc_c00280{left:598.050000px;}
.xab_c00280{left:600.900000px;}
.x97_c00280{left:602.550000px;}
.x79_c00280{left:607.350000px;}
.xc0_c00280{left:608.550000px;}
.x9d_c00280{left:611.550000px;}
.x60_c00280{left:616.200000px;}
.x28_c00280{left:618.300000px;}
.xec_c00280{left:620.400000px;}
.x4b_c00280{left:621.750000px;}
.xa5_c00280{left:628.200000px;}
.x109_c00280{left:631.050000px;}
.xb2_c00280{left:632.400000px;}
.xfc_c00280{left:633.600000px;}
.xc8_c00280{left:635.100000px;}
.x61_c00280{left:636.300000px;}
.x9e_c00280{left:639.300000px;}
.x111_c00280{left:640.350000px;}
.xb7_c00280{left:643.050000px;}
.x53_c00280{left:646.350000px;}
.x85_c00280{left:649.650000px;}
.x36_c00280{left:651.750000px;}
.x98_c00280{left:654.450000px;}
.x29_c00280{left:656.850000px;}
.xd_c00280{left:660.000000px;}
.x112_c00280{left:663.750000px;}
.xed_c00280{left:665.700000px;}
.x117_c00280{left:669.600000px;}
.x37_c00280{left:670.800000px;}
.xe_c00280{left:675.450000px;}
.xc1_c00280{left:676.650000px;}
.x62_c00280{left:678.450000px;}
.xb8_c00280{left:680.550000px;}
.xd2_c00280{left:681.900000px;}
.xb3_c00280{left:683.850000px;}
.xdc_c00280{left:685.350000px;}
.x9f_c00280{left:686.850000px;}
.x118_c00280{left:688.650000px;}
.xac_c00280{left:693.000000px;}
.x92_c00280{left:694.800000px;}
.x38_c00280{left:696.750000px;}
.x2a_c00280{left:700.050000px;}
.x54_c00280{left:702.450000px;}
.xc2_c00280{left:703.950000px;}
.x7a_c00280{left:706.650000px;}
.xe6_c00280{left:707.700000px;}
.xb9_c00280{left:709.050000px;}
.xee_c00280{left:712.200000px;}
.xd6_c00280{left:714.300000px;}
.x4c_c00280{left:715.350000px;}
.x10a_c00280{left:716.400000px;}
.xfd_c00280{left:720.750000px;}
.x70_c00280{left:724.650000px;}
.x7b_c00280{left:726.150000px;}
.xe7_c00280{left:727.500000px;}
.x63_c00280{left:728.550000px;}
.x1b_c00280{left:734.550000px;}
.xc9_c00280{left:736.200000px;}
.x10b_c00280{left:738.300000px;}
.x55_c00280{left:740.250000px;}
.xad_c00280{left:741.600000px;}
.xfe_c00280{left:743.400000px;}
.xa6_c00280{left:744.450000px;}
.xf_c00280{left:746.400000px;}
.x64_c00280{left:747.600000px;}
.xf5_c00280{left:749.700000px;}
.x71_c00280{left:753.750000px;}
.x7c_c00280{left:755.700000px;}
.x56_c00280{left:758.550000px;}
.x39_c00280{left:759.750000px;}
.x1c_c00280{left:761.550000px;}
.x86_c00280{left:763.350000px;}
.x113_c00280{left:764.550000px;}
.xca_c00280{left:766.050000px;}
.x99_c00280{left:767.850000px;}
.x103_c00280{left:772.650000px;}
.x3a_c00280{left:777.000000px;}
.x2b_c00280{left:779.250000px;}
.x93_c00280{left:780.900000px;}
.x57_c00280{left:783.750000px;}
.xd3_c00280{left:786.900000px;}
.xae_c00280{left:789.900000px;}
.xd7_c00280{left:793.050000px;}
.xa7_c00280{left:794.100000px;}
.x72_c00280{left:795.150000px;}
.x4d_c00280{left:796.650000px;}
.x2c_c00280{left:799.800000px;}
.xef_c00280{left:803.250000px;}
.xcb_c00280{left:804.600000px;}
.xba_c00280{left:805.950000px;}
.x87_c00280{left:815.550000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws1_c00280{word-spacing:-6.444444pt;}
.ws7_c00280{word-spacing:0.000000pt;}
.ws5_c00280{word-spacing:3.461418pt;}
.ws4_c00280{word-spacing:3.653979pt;}
.ws6_c00280{word-spacing:6.138861pt;}
.ws0_c00280{word-spacing:6.967823pt;}
.ws2_c00280{word-spacing:10.777778pt;}
.ws3_c00280{word-spacing:11.888889pt;}
.fs0_c00280{font-size:48.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y23_c00280{bottom:129.866667pt;}
.y22_c00280{bottom:157.333333pt;}
.y21_c00280{bottom:174.933333pt;}
.y20_c00280{bottom:192.800000pt;}
.y1f_c00280{bottom:210.400000pt;}
.y1e_c00280{bottom:227.733333pt;}
.y1d_c00280{bottom:245.333333pt;}
.y1c_c00280{bottom:262.933333pt;}
.y1b_c00280{bottom:280.800000pt;}
.y1a_c00280{bottom:298.400000pt;}
.y19_c00280{bottom:316.000000pt;}
.y18_c00280{bottom:333.866667pt;}
.y17_c00280{bottom:351.733333pt;}
.y16_c00280{bottom:369.333333pt;}
.y15_c00280{bottom:387.066667pt;}
.y14_c00280{bottom:404.933333pt;}
.y13_c00280{bottom:422.800000pt;}
.y12_c00280{bottom:440.400000pt;}
.y11_c00280{bottom:458.000000pt;}
.y10_c00280{bottom:475.866667pt;}
.yf_c00280{bottom:493.466667pt;}
.ye_c00280{bottom:511.066667pt;}
.yd_c00280{bottom:528.666667pt;}
.yc_c00280{bottom:546.266667pt;}
.yb_c00280{bottom:563.866667pt;}
.ya_c00280{bottom:582.800000pt;}
.y9_c00280{bottom:600.400000pt;}
.y8_c00280{bottom:618.266667pt;}
.y7_c00280{bottom:636.000000pt;}
.y6_c00280{bottom:653.866667pt;}
.y5_c00280{bottom:671.466667pt;}
.y4_c00280{bottom:689.333333pt;}
.y3_c00280{bottom:718.666667pt;}
.y2_c00280{bottom:748.133333pt;}
.y1_c00280{bottom:930.266667pt;}
.h2_c00280{height:48.000000pt;}
.h0_c00280{height:1037.119955pt;}
.h1_c00280{height:1037.333333pt;}
.w0_c00280{width:816.640056pt;}
.w1_c00280{width:816.666667pt;}
.x0_c00280{left:0.000000pt;}
.x10c_c00280{left:130.533333pt;}
.xf6_c00280{left:131.466667pt;}
.xe8_c00280{left:132.400000pt;}
.x58_c00280{left:133.466667pt;}
.x65_c00280{left:134.666667pt;}
.x10_c00280{left:136.000000pt;}
.x114_c00280{left:144.133333pt;}
.xff_c00280{left:147.733333pt;}
.x88_c00280{left:150.000000pt;}
.x3b_c00280{left:151.466667pt;}
.x66_c00280{left:152.933333pt;}
.x1d_c00280{left:155.066667pt;}
.x11_c00280{left:158.133333pt;}
.xcc_c00280{left:159.066667pt;}
.x59_c00280{left:161.600000pt;}
.x43_c00280{left:163.466667pt;}
.x2d_c00280{left:165.733333pt;}
.xdd_c00280{left:168.000000pt;}
.x7d_c00280{left:170.666667pt;}
.x3c_c00280{left:174.133333pt;}
.xb4_c00280{left:176.133333pt;}
.x4_c00280{left:178.933333pt;}
.x1e_c00280{left:180.400000pt;}
.x73_c00280{left:182.266667pt;}
.xde_c00280{left:184.266667pt;}
.x12_c00280{left:185.333333pt;}
.x2e_c00280{left:186.266667pt;}
.x4e_c00280{left:187.866667pt;}
.x67_c00280{left:189.066667pt;}
.x7e_c00280{left:190.533333pt;}
.xcd_c00280{left:194.000000pt;}
.x115_c00280{left:196.666667pt;}
.x89_c00280{left:201.466667pt;}
.x2f_c00280{left:202.533333pt;}
.xd4_c00280{left:203.466667pt;}
.x13_c00280{left:204.533333pt;}
.xe9_c00280{left:206.000000pt;}
.x68_c00280{left:209.600000pt;}
.x9a_c00280{left:212.133333pt;}
.x5a_c00280{left:216.000000pt;}
.xbe_c00280{left:219.600000pt;}
.x8a_c00280{left:220.666667pt;}
.xf0_c00280{left:221.733333pt;}
.x1f_c00280{left:224.933333pt;}
.x44_c00280{left:227.200000pt;}
.x10d_c00280{left:228.400000pt;}
.xc3_c00280{left:231.066667pt;}
.x14_c00280{left:234.000000pt;}
.xa0_c00280{left:235.866667pt;}
.x7f_c00280{left:237.200000pt;}
.xd8_c00280{left:238.933333pt;}
.x4f_c00280{left:242.533333pt;}
.xdf_c00280{left:243.466667pt;}
.xbb_c00280{left:246.266667pt;}
.x69_c00280{left:247.733333pt;}
.x104_c00280{left:250.666667pt;}
.xb5_c00280{left:253.866667pt;}
.x5_c00280{left:256.666667pt;}
.x80_c00280{left:258.000000pt;}
.x3d_c00280{left:259.600000pt;}
.x100_c00280{left:260.933333pt;}
.x30_c00280{left:262.000000pt;}
.x45_c00280{left:265.333333pt;}
.xc4_c00280{left:266.266667pt;}
.x6a_c00280{left:267.866667pt;}
.xe0_c00280{left:275.200000pt;}
.x50_c00280{left:276.133333pt;}
.x20_c00280{left:280.266667pt;}
.x74_c00280{left:281.466667pt;}
.xaf_c00280{left:284.133333pt;}
.x46_c00280{left:285.466667pt;}
.xf1_c00280{left:286.666667pt;}
.x10e_c00280{left:288.266667pt;}
.xd9_c00280{left:289.466667pt;}
.x31_c00280{left:291.733333pt;}
.xea_c00280{left:292.666667pt;}
.x8b_c00280{left:294.266667pt;}
.x6b_c00280{left:295.333333pt;}
.x3e_c00280{left:297.733333pt;}
.xe1_c00280{left:301.466667pt;}
.xb0_c00280{left:304.000000pt;}
.x47_c00280{left:306.000000pt;}
.x6_c00280{left:307.600000pt;}
.x75_c00280{left:308.933333pt;}
.xf7_c00280{left:311.066667pt;}
.x101_c00280{left:315.600000pt;}
.x21_c00280{left:316.800000pt;}
.x15_c00280{left:318.800000pt;}
.x7_c00280{left:321.066667pt;}
.x8c_c00280{left:323.066667pt;}
.xbc_c00280{left:324.666667pt;}
.xce_c00280{left:326.133333pt;}
.x102_c00280{left:328.666667pt;}
.x22_c00280{left:329.600000pt;}
.xd5_c00280{left:335.600000pt;}
.xe2_c00280{left:337.600000pt;}
.xf8_c00280{left:339.200000pt;}
.xc5_c00280{left:344.000000pt;}
.x23_c00280{left:351.733333pt;}
.xa8_c00280{left:352.666667pt;}
.x16_c00280{left:353.733333pt;}
.x3f_c00280{left:354.666667pt;}
.x51_c00280{left:357.066667pt;}
.x5b_c00280{left:359.200000pt;}
.x8d_c00280{left:362.133333pt;}
.x32_c00280{left:364.933333pt;}
.x48_c00280{left:367.066667pt;}
.xcf_c00280{left:368.000000pt;}
.xf2_c00280{left:369.866667pt;}
.x2_c00280{left:372.533333pt;}
.xbd_c00280{left:374.933333pt;}
.x6c_c00280{left:376.000000pt;}
.x81_c00280{left:377.066667pt;}
.x40_c00280{left:378.000000pt;}
.xc6_c00280{left:378.933333pt;}
.xa1_c00280{left:381.200000pt;}
.xe3_c00280{left:384.000000pt;}
.x17_c00280{left:388.666667pt;}
.x105_c00280{left:390.133333pt;}
.x8_c00280{left:391.466667pt;}
.xda_c00280{left:393.200000pt;}
.xbf_c00280{left:397.600000pt;}
.x8e_c00280{left:398.933333pt;}
.x6d_c00280{left:403.200000pt;}
.x9b_c00280{left:404.266667pt;}
.x9_c00280{left:405.200000pt;}
.xf9_c00280{left:406.133333pt;}
.x5c_c00280{left:407.866667pt;}
.x94_c00280{left:409.466667pt;}
.x41_c00280{left:410.666667pt;}
.xf3_c00280{left:411.733333pt;}
.xa2_c00280{left:414.800000pt;}
.x24_c00280{left:416.666667pt;}
.x8f_c00280{left:417.866667pt;}
.xa9_c00280{left:419.600000pt;}
.x1_c00280{left:422.400000pt;}
.x82_c00280{left:424.133333pt;}
.x5d_c00280{left:425.200000pt;}
.x18_c00280{left:426.133333pt;}
.xe4_c00280{left:428.133333pt;}
.x95_c00280{left:430.266667pt;}
.x76_c00280{left:432.666667pt;}
.x116_c00280{left:440.266667pt;}
.x42_c00280{left:441.333333pt;}
.xa3_c00280{left:442.933333pt;}
.x6e_c00280{left:444.133333pt;}
.x90_c00280{left:445.066667pt;}
.x106_c00280{left:446.133333pt;}
.x3_c00280{left:447.733333pt;}
.xd0_c00280{left:448.933333pt;}
.x33_c00280{left:450.000000pt;}
.x25_c00280{left:451.600000pt;}
.x83_c00280{left:452.933333pt;}
.xeb_c00280{left:454.266667pt;}
.xa_c00280{left:455.466667pt;}
.x5e_c00280{left:457.866667pt;}
.x77_c00280{left:462.400000pt;}
.xaa_c00280{left:464.666667pt;}
.x107_c00280{left:470.800000pt;}
.xc7_c00280{left:474.000000pt;}
.xfa_c00280{left:475.600000pt;}
.x49_c00280{left:477.066667pt;}
.xe5_c00280{left:478.000000pt;}
.xf4_c00280{left:480.800000pt;}
.x34_c00280{left:482.933333pt;}
.x19_c00280{left:484.000000pt;}
.x6f_c00280{left:486.666667pt;}
.x96_c00280{left:488.533333pt;}
.x9c_c00280{left:489.600000pt;}
.x10f_c00280{left:494.266667pt;}
.x4a_c00280{left:495.333333pt;}
.x5f_c00280{left:496.533333pt;}
.x78_c00280{left:498.266667pt;}
.x26_c00280{left:500.533333pt;}
.x119_c00280{left:501.866667pt;}
.xfb_c00280{left:503.733333pt;}
.xb1_c00280{left:505.200000pt;}
.x108_c00280{left:507.866667pt;}
.x91_c00280{left:509.066667pt;}
.x110_c00280{left:510.000000pt;}
.x1a_c00280{left:511.200000pt;}
.x52_c00280{left:512.133333pt;}
.xd1_c00280{left:513.866667pt;}
.xdb_c00280{left:515.466667pt;}
.xb_c00280{left:517.866667pt;}
.xb6_c00280{left:521.733333pt;}
.xa4_c00280{left:522.933333pt;}
.x35_c00280{left:525.866667pt;}
.x84_c00280{left:529.466667pt;}
.x27_c00280{left:530.666667pt;}
.xc_c00280{left:531.600000pt;}
.xab_c00280{left:534.133333pt;}
.x97_c00280{left:535.600000pt;}
.x79_c00280{left:539.866667pt;}
.xc0_c00280{left:540.933333pt;}
.x9d_c00280{left:543.600000pt;}
.x60_c00280{left:547.733333pt;}
.x28_c00280{left:549.600000pt;}
.xec_c00280{left:551.466667pt;}
.x4b_c00280{left:552.666667pt;}
.xa5_c00280{left:558.400000pt;}
.x109_c00280{left:560.933333pt;}
.xb2_c00280{left:562.133333pt;}
.xfc_c00280{left:563.200000pt;}
.xc8_c00280{left:564.533333pt;}
.x61_c00280{left:565.600000pt;}
.x9e_c00280{left:568.266667pt;}
.x111_c00280{left:569.200000pt;}
.xb7_c00280{left:571.600000pt;}
.x53_c00280{left:574.533333pt;}
.x85_c00280{left:577.466667pt;}
.x36_c00280{left:579.333333pt;}
.x98_c00280{left:581.733333pt;}
.x29_c00280{left:583.866667pt;}
.xd_c00280{left:586.666667pt;}
.x112_c00280{left:590.000000pt;}
.xed_c00280{left:591.733333pt;}
.x117_c00280{left:595.200000pt;}
.x37_c00280{left:596.266667pt;}
.xe_c00280{left:600.400000pt;}
.xc1_c00280{left:601.466667pt;}
.x62_c00280{left:603.066667pt;}
.xb8_c00280{left:604.933333pt;}
.xd2_c00280{left:606.133333pt;}
.xb3_c00280{left:607.866667pt;}
.xdc_c00280{left:609.200000pt;}
.x9f_c00280{left:610.533333pt;}
.x118_c00280{left:612.133333pt;}
.xac_c00280{left:616.000000pt;}
.x92_c00280{left:617.600000pt;}
.x38_c00280{left:619.333333pt;}
.x2a_c00280{left:622.266667pt;}
.x54_c00280{left:624.400000pt;}
.xc2_c00280{left:625.733333pt;}
.x7a_c00280{left:628.133333pt;}
.xe6_c00280{left:629.066667pt;}
.xb9_c00280{left:630.266667pt;}
.xee_c00280{left:633.066667pt;}
.xd6_c00280{left:634.933333pt;}
.x4c_c00280{left:635.866667pt;}
.x10a_c00280{left:636.800000pt;}
.xfd_c00280{left:640.666667pt;}
.x70_c00280{left:644.133333pt;}
.x7b_c00280{left:645.466667pt;}
.xe7_c00280{left:646.666667pt;}
.x63_c00280{left:647.600000pt;}
.x1b_c00280{left:652.933333pt;}
.xc9_c00280{left:654.400000pt;}
.x10b_c00280{left:656.266667pt;}
.x55_c00280{left:658.000000pt;}
.xad_c00280{left:659.200000pt;}
.xfe_c00280{left:660.800000pt;}
.xa6_c00280{left:661.733333pt;}
.xf_c00280{left:663.466667pt;}
.x64_c00280{left:664.533333pt;}
.xf5_c00280{left:666.400000pt;}
.x71_c00280{left:670.000000pt;}
.x7c_c00280{left:671.733333pt;}
.x56_c00280{left:674.266667pt;}
.x39_c00280{left:675.333333pt;}
.x1c_c00280{left:676.933333pt;}
.x86_c00280{left:678.533333pt;}
.x113_c00280{left:679.600000pt;}
.xca_c00280{left:680.933333pt;}
.x99_c00280{left:682.533333pt;}
.x103_c00280{left:686.800000pt;}
.x3a_c00280{left:690.666667pt;}
.x2b_c00280{left:692.666667pt;}
.x93_c00280{left:694.133333pt;}
.x57_c00280{left:696.666667pt;}
.xd3_c00280{left:699.466667pt;}
.xae_c00280{left:702.133333pt;}
.xd7_c00280{left:704.933333pt;}
.xa7_c00280{left:705.866667pt;}
.x72_c00280{left:706.800000pt;}
.x4d_c00280{left:708.133333pt;}
.x2c_c00280{left:710.933333pt;}
.xef_c00280{left:714.000000pt;}
.xcb_c00280{left:715.200000pt;}
.xba_c00280{left:716.400000pt;}
.x87_c00280{left:724.933333pt;}
}





/* 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_c00281 {
    display:none;
  }
  .loading-indicator_c00281.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00281 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_c00281 { 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_c00281" -> "#page-container .classname_c00281")
 */
.pf_c00281 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00281 { /* 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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00281 { /* 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_c00281 { /* 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_c00281 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00281 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00281 {overflow:visible;}
  }
}
.c_c00281 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00281 { /* 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_c00281:after { /* webkit #35443 */
  content: '';
}
.t_c00281:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00281 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 */
}
.__c00281 { /* 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_c00281 { /* info for Javascript */
  display:none;
}
.l_c00281 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00281 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00281 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00281: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_c00281 {
    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_c00281.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00281.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_c00281 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00281{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00281;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.000000;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;}
.m3_c00281{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1_c00281{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2_c00281{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m0_c00281{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.v0_c00281{vertical-align:0.000000px;}
.ls0_c00281{letter-spacing:0.000000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{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__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:0.000000px;}
.fc0_c00281{color:transparent;}
.fs0_c00281{font-size:24.000000px;}
.fs1_c00281{font-size:60.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:33.150000px;}
.y2_c00281{bottom:605.850000px;}
.h2_c00281{height:24.000000px;}
.h3_c00281{height:60.000000px;}
.h0_c00281{height:1166.759949px;}
.h1_c00281{height:1167.000000px;}
.w0_c00281{width:918.720063px;}
.w1_c00281{width:918.750000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:807.150000px;}
.x3_c00281{left:824.100000px;}
.x2_c00281{left:859.350000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs0_c00281{font-size:21.333333pt;}
.fs1_c00281{font-size:53.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:29.466667pt;}
.y2_c00281{bottom:538.533333pt;}
.h2_c00281{height:21.333333pt;}
.h3_c00281{height:53.333333pt;}
.h0_c00281{height:1037.119955pt;}
.h1_c00281{height:1037.333333pt;}
.w0_c00281{width:816.640056pt;}
.w1_c00281{width:816.666667pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:717.466667pt;}
.x3_c00281{left:732.533333pt;}
.x2_c00281{left:763.866667pt;}
}





/* 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_c00282 {
    display:none;
  }
  .loading-indicator_c00282.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00282 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_c00282 { 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_c00282" -> "#page-container .classname_c00282")
 */
.pf_c00282 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00282 { /* 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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00282 { /* 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_c00282 { /* 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_c00282 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00282 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00282 {overflow:visible;}
  }
}
.c_c00282 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00282 { /* 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_c00282:after { /* webkit #35443 */
  content: '';
}
.t_c00282:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00282 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 */
}
.__c00282 { /* 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_c00282 { /* info for Javascript */
  display:none;
}
.l_c00282 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00282 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00282 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00282: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_c00282 {
    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_c00282.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00282.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_c00282 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00282{font-family:sans-serif;visibility:hidden;}
.sc__c00282{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
}
.y0_c00282{bottom:0.000000px;}
.h0_c00282{height:1166.759949px;}
.h1_c00282{height:1167.000000px;}
.w0_c00282{width:918.720063px;}
.w1_c00282{width:918.750000px;}
.x0_c00282{left:0.000000px;}
@media print{
.y0_c00282{bottom:0.000000pt;}
.h0_c00282{height:1037.119955pt;}
.h1_c00282{height:1037.333333pt;}
.w0_c00282{width:816.640056pt;}
.w1_c00282{width:816.666667pt;}
.x0_c00282{left:0.000000pt;}
}





/* 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_c00283 {
    display:none;
  }
  .loading-indicator_c00283.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00283 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_c00283 { 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_c00283" -> "#page-container .classname_c00283")
 */
.pf_c00283 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00283 { /* 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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00283 { /* 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_c00283 { /* 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_c00283 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00283 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00283 {overflow:visible;}
  }
}
.c_c00283 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00283 { /* 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_c00283:after { /* webkit #35443 */
  content: '';
}
.t_c00283:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00283 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 */
}
.__c00283 { /* 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_c00283 { /* info for Javascript */
  display:none;
}
.l_c00283 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00283 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00283 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00283: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_c00283 {
    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_c00283.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00283.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_c00283 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00283{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00283;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.000000;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;}
.m2c_c00283{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m97_c00283{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00283{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m64_c00283{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00283{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00283{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m22_c00283{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00283{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00283{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00283{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m84_c00283{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00283{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m82_c00283{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m14_c00283{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00283{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m99_c00283{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00283{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00283{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00283{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00283{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00283{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m92_c00283{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00283{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m56_c00283{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00283{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m43_c00283{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00283{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m71_c00283{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m72_c00283{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m46_c00283{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m55_c00283{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00283{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00283{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00283{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00283{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00283{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m20_c00283{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00283{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m98_c00283{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m54_c00283{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mac_c00283{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m12_c00283{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00283{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m28_c00283{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m26_c00283{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m62_c00283{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m81_c00283{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m44_c00283{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m59_c00283{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m66_c00283{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00283{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m37_c00283{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00283{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00283{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m39_c00283{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4_c00283{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m29_c00283{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m89_c00283{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00283{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m96_c00283{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00283{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m79_c00283{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m69_c00283{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00283{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m16_c00283{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m45_c00283{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m27_c00283{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00283{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m53_c00283{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma_c00283{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00283{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00283{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00283{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00283{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me_c00283{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00283{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m25_c00283{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m13_c00283{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00283{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m85_c00283{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m78_c00283{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m63_c00283{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m17_c00283{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00283{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00283{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00283{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00283{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00283{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m95_c00283{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m49_c00283{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00283{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m42_c00283{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m65_c00283{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00283{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00283{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00283{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00283{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00283{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m10_c00283{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00283{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m74_c00283{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m38_c00283{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00283{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m60_c00283{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m91_c00283{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m50_c00283{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00283{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m52_c00283{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.maa_c00283{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00283{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00283{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00283{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m18_c00283{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m57_c00283{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m83_c00283{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00283{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00283{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m47_c00283{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00283{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00283{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m67_c00283{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00283{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00283{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m41_c00283{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00283{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m40_c00283{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m61_c00283{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m73_c00283{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00283{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00283{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00283{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m68_c00283{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m36_c00283{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m88_c00283{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00283{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);}
.m33_c00283{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00283{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00283{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m93_c00283{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7_c00283{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m48_c00283{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8_c00283{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf_c00283{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m19_c00283{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00283{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m32_c00283{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5_c00283{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6_c00283{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00283{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m30_c00283{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m80_c00283{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m58_c00283{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00283{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m77_c00283{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m34_c00283{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m75_c00283{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00283{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00283{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m24_c00283{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m21_c00283{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m76_c00283{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00283{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m86_c00283{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11_c00283{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m15_c00283{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m90_c00283{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m70_c00283{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m23_c00283{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m87_c00283{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1_c00283{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{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__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00283{word-spacing:-11.527778px;}
.ws3_c00283{word-spacing:-3.194444px;}
.ws8_c00283{word-spacing:0.000000px;}
.ws5_c00283{word-spacing:1.315789px;}
.ws0_c00283{word-spacing:2.127660px;}
.ws4_c00283{word-spacing:5.000000px;}
.ws6_c00283{word-spacing:5.138889px;}
.ws7_c00283{word-spacing:7.500000px;}
.ws1_c00283{word-spacing:15.882353px;}
._0_c00283{width:51.029412px;}
.fc0_c00283{color:transparent;}
.fs0_c00283{font-size:54.000000px;}
.fs1_c00283{font-size:60.000000px;}
.y0_c00283{bottom:0.000000px;}
.y2d_c00283{bottom:142.950000px;}
.y2c_c00283{bottom:158.700000px;}
.y2b_c00283{bottom:175.650000px;}
.y2a_c00283{bottom:191.550000px;}
.y29_c00283{bottom:206.700000px;}
.y28_c00283{bottom:242.550000px;}
.y27_c00283{bottom:262.650000px;}
.y26_c00283{bottom:282.750000px;}
.y25_c00283{bottom:302.850000px;}
.y24_c00283{bottom:322.650000px;}
.y23_c00283{bottom:342.150000px;}
.y22_c00283{bottom:362.250000px;}
.y21_c00283{bottom:382.350000px;}
.y20_c00283{bottom:402.150000px;}
.y1f_c00283{bottom:422.250000px;}
.y1e_c00283{bottom:442.050000px;}
.y1d_c00283{bottom:462.750000px;}
.y1c_c00283{bottom:482.850000px;}
.y1b_c00283{bottom:502.650000px;}
.y1a_c00283{bottom:522.450000px;}
.y19_c00283{bottom:542.550000px;}
.y18_c00283{bottom:562.650000px;}
.y17_c00283{bottom:582.750000px;}
.y16_c00283{bottom:602.550000px;}
.y15_c00283{bottom:622.350000px;}
.y14_c00283{bottom:642.450000px;}
.y13_c00283{bottom:662.550000px;}
.y12_c00283{bottom:682.350000px;}
.y11_c00283{bottom:702.150000px;}
.y10_c00283{bottom:721.950000px;}
.yf_c00283{bottom:742.050000px;}
.ye_c00283{bottom:762.150000px;}
.yd_c00283{bottom:782.700000px;}
.yc_c00283{bottom:802.500000px;}
.yb_c00283{bottom:822.600000px;}
.ya_c00283{bottom:842.400000px;}
.y9_c00283{bottom:862.500000px;}
.y8_c00283{bottom:882.300000px;}
.y7_c00283{bottom:902.400000px;}
.y6_c00283{bottom:922.500000px;}
.y5_c00283{bottom:942.300000px;}
.y4_c00283{bottom:962.400000px;}
.y3_c00283{bottom:982.200000px;}
.y2_c00283{bottom:1002.300000px;}
.y1_c00283{bottom:1040.400000px;}
.h2_c00283{height:54.000000px;}
.h3_c00283{height:60.000000px;}
.h0_c00283{height:1166.759949px;}
.h1_c00283{height:1167.000000px;}
.w0_c00283{width:918.720063px;}
.w1_c00283{width:918.750000px;}
.x0_c00283{left:0.000000px;}
.x121_c00283{left:96.900000px;}
.xe3_c00283{left:97.950000px;}
.xb6_c00283{left:99.300000px;}
.x8c_c00283{left:100.500000px;}
.x3_c00283{left:101.550000px;}
.xde_c00283{left:109.200000px;}
.xb0_c00283{left:116.700000px;}
.xfc_c00283{left:118.800000px;}
.xf3_c00283{left:120.000000px;}
.xeb_c00283{left:122.100000px;}
.x8d_c00283{left:126.000000px;}
.x81_c00283{left:127.800000px;}
.x11e_c00283{left:129.000000px;}
.x9f_c00283{left:130.050000px;}
.x82_c00283{left:131.400000px;}
.x13_c00283{left:134.100000px;}
.xd2_c00283{left:135.600000px;}
.x52_c00283{left:136.650000px;}
.x78_c00283{left:139.350000px;}
.xbf_c00283{left:141.900000px;}
.xa7_c00283{left:145.350000px;}
.xf4_c00283{left:147.300000px;}
.x133_c00283{left:148.950000px;}
.xc8_c00283{left:153.450000px;}
.x44_c00283{left:154.950000px;}
.x2f_c00283{left:156.450000px;}
.x104_c00283{left:157.500000px;}
.x21_c00283{left:159.300000px;}
.x83_c00283{left:161.250000px;}
.x12a_c00283{left:162.750000px;}
.x14_c00283{left:163.950000px;}
.x6d_c00283{left:165.600000px;}
.x61_c00283{left:168.600000px;}
.xc9_c00283{left:171.450000px;}
.x4_c00283{left:172.500000px;}
.x45_c00283{left:174.450000px;}
.x110_c00283{left:177.300000px;}
.xa8_c00283{left:178.500000px;}
.x6e_c00283{left:180.000000px;}
.x134_c00283{left:181.350000px;}
.xa0_c00283{left:183.750000px;}
.xfd_c00283{left:186.450000px;}
.x22_c00283{left:187.800000px;}
.x62_c00283{left:189.450000px;}
.x8e_c00283{left:191.250000px;}
.xa9_c00283{left:193.200000px;}
.x11f_c00283{left:194.850000px;}
.x105_c00283{left:196.350000px;}
.xdf_c00283{left:197.400000px;}
.x3c_c00283{left:198.900000px;}
.xfe_c00283{left:201.150000px;}
.x53_c00283{left:204.300000px;}
.xf5_c00283{left:205.950000px;}
.x5_c00283{left:208.800000px;}
.xd7_c00283{left:211.050000px;}
.x129_c00283{left:212.700000px;}
.x122_c00283{left:213.900000px;}
.x15_c00283{left:216.150000px;}
.x46_c00283{left:217.950000px;}
.xef_c00283{left:219.900000px;}
.x135_c00283{left:220.950000px;}
.x30_c00283{left:223.050000px;}
.x23_c00283{left:226.650000px;}
.x6_c00283{left:228.600000px;}
.xa1_c00283{left:231.900000px;}
.xff_c00283{left:233.550000px;}
.x6f_c00283{left:236.100000px;}
.x111_c00283{left:237.450000px;}
.xc0_c00283{left:239.100000px;}
.x84_c00283{left:240.450000px;}
.x3d_c00283{left:241.800000px;}
.x54_c00283{left:245.700000px;}
.x136_c00283{left:248.250000px;}
.xf6_c00283{left:252.750000px;}
.x31_c00283{left:254.400000px;}
.x16_c00283{left:255.750000px;}
.xe0_c00283{left:256.800000px;}
.xd8_c00283{left:258.150000px;}
.xb1_c00283{left:260.700000px;}
.xb7_c00283{left:262.500000px;}
.xca_c00283{left:265.050000px;}
.xd3_c00283{left:266.700000px;}
.x47_c00283{left:268.050000px;}
.xaa_c00283{left:269.550000px;}
.x125_c00283{left:270.900000px;}
.xe4_c00283{left:272.250000px;}
.x32_c00283{left:273.450000px;}
.x85_c00283{left:275.400000px;}
.x79_c00283{left:276.450000px;}
.xc1_c00283{left:278.400000px;}
.x96_c00283{left:279.900000px;}
.x8f_c00283{left:283.050000px;}
.x17_c00283{left:284.850000px;}
.xec_c00283{left:286.200000px;}
.x117_c00283{left:288.600000px;}
.x63_c00283{left:290.550000px;}
.x7_c00283{left:291.900000px;}
.xb2_c00283{left:298.200000px;}
.x112_c00283{left:299.700000px;}
.x3e_c00283{left:303.300000px;}
.x24_c00283{left:304.500000px;}
.x10d_c00283{left:306.300000px;}
.x33_c00283{left:308.700000px;}
.x64_c00283{left:310.350000px;}
.x97_c00283{left:313.350000px;}
.xab_c00283{left:315.600000px;}
.x118_c00283{left:317.100000px;}
.x106_c00283{left:319.050000px;}
.x55_c00283{left:320.250000px;}
.xcb_c00283{left:321.900000px;}
.x8_c00283{left:324.000000px;}
.x18_c00283{left:327.300000px;}
.xf7_c00283{left:328.350000px;}
.x70_c00283{left:331.500000px;}
.x25_c00283{left:333.000000px;}
.xd4_c00283{left:334.350000px;}
.x137_c00283{left:336.150000px;}
.x65_c00283{left:338.100000px;}
.xb3_c00283{left:340.650000px;}
.x48_c00283{left:344.400000px;}
.xd9_c00283{left:346.350000px;}
.x56_c00283{left:348.000000px;}
.x107_c00283{left:351.750000px;}
.xa2_c00283{left:352.800000px;}
.x5d_c00283{left:355.950000px;}
.x123_c00283{left:357.600000px;}
.xe5_c00283{left:358.950000px;}
.x131_c00283{left:361.050000px;}
.xb8_c00283{left:363.750000px;}
.x19_c00283{left:370.500000px;}
.xd5_c00283{left:372.900000px;}
.x71_c00283{left:375.750000px;}
.x34_c00283{left:378.150000px;}
.x26_c00283{left:379.800000px;}
.x57_c00283{left:382.200000px;}
.x3f_c00283{left:384.600000px;}
.x5e_c00283{left:386.850000px;}
.x119_c00283{left:390.150000px;}
.x49_c00283{left:391.200000px;}
.xf8_c00283{left:392.850000px;}
.x9_c00283{left:394.200000px;}
.xc2_c00283{left:395.850000px;}
.x7a_c00283{left:397.350000px;}
.x108_c00283{left:401.850000px;}
.x1_c00283{left:403.200000px;}
.x72_c00283{left:404.250000px;}
.xac_c00283{left:405.450000px;}
.x9d_c00283{left:406.800000px;}
.xa3_c00283{left:408.900000px;}
.x132_c00283{left:411.150000px;}
.x1a_c00283{left:414.000000px;}
.x98_c00283{left:417.000000px;}
.x66_c00283{left:418.500000px;}
.x90_c00283{left:419.550000px;}
.x40_c00283{left:421.350000px;}
.x86_c00283{left:423.450000px;}
.xa_c00283{left:426.600000px;}
.x5f_c00283{left:427.950000px;}
.xb4_c00283{left:429.450000px;}
.x35_c00283{left:431.100000px;}
.xcc_c00283{left:436.800000px;}
.x126_c00283{left:439.350000px;}
.xb9_c00283{left:440.700000px;}
.x87_c00283{left:441.750000px;}
.x73_c00283{left:443.550000px;}
.x10e_c00283{left:445.950000px;}
.x67_c00283{left:447.000000px;}
.x27_c00283{left:449.700000px;}
.x4a_c00283{left:451.650000px;}
.xb_c00283{left:455.100000px;}
.xf9_c00283{left:457.200000px;}
.x1b_c00283{left:458.250000px;}
.x100_c00283{left:459.600000px;}
.x36_c00283{left:464.550000px;}
.x58_c00283{left:466.050000px;}
.x7b_c00283{left:467.550000px;}
.xf0_c00283{left:469.500000px;}
.xc3_c00283{left:472.200000px;}
.x91_c00283{left:473.250000px;}
.x12b_c00283{left:475.650000px;}
.x68_c00283{left:477.900000px;}
.xcd_c00283{left:483.150000px;}
.xe6_c00283{left:485.100000px;}
.x127_c00283{left:487.650000px;}
.xc_c00283{left:490.050000px;}
.x101_c00283{left:492.000000px;}
.x60_c00283{left:493.800000px;}
.x7c_c00283{left:496.050000px;}
.xba_c00283{left:501.900000px;}
.x88_c00283{left:504.450000px;}
.x12c_c00283{left:509.100000px;}
.x4b_c00283{left:510.300000px;}
.x120_c00283{left:511.350000px;}
.x113_c00283{left:515.550000px;}
.xe1_c00283{left:516.750000px;}
.x10b_c00283{left:517.800000px;}
.x41_c00283{left:520.800000px;}
.x9e_c00283{left:522.450000px;}
.x28_c00283{left:523.800000px;}
.x89_c00283{left:525.000000px;}
.xc4_c00283{left:526.500000px;}
.x99_c00283{left:528.900000px;}
.x4c_c00283{left:530.850000px;}
.x92_c00283{left:531.900000px;}
.xbb_c00283{left:534.000000px;}
.x37_c00283{left:535.500000px;}
.x102_c00283{left:536.700000px;}
.xad_c00283{left:538.650000px;}
.xd_c00283{left:539.700000px;}
.x74_c00283{left:540.750000px;}
.x1c_c00283{left:543.600000px;}
.x109_c00283{left:545.550000px;}
.x114_c00283{left:546.900000px;}
.x69_c00283{left:549.600000px;}
.x4d_c00283{left:552.750000px;}
.x128_c00283{left:555.000000px;}
.xc5_c00283{left:557.400000px;}
.xe_c00283{left:559.800000px;}
.xbc_c00283{left:562.050000px;}
.x59_c00283{left:563.550000px;}
.x7d_c00283{left:566.250000px;}
.xe7_c00283{left:567.450000px;}
.x29_c00283{left:569.850000px;}
.xa4_c00283{left:573.450000px;}
.xae_c00283{left:575.700000px;}
.x9a_c00283{left:577.500000px;}
.x115_c00283{left:579.000000px;}
.xce_c00283{left:580.050000px;}
.xe2_c00283{left:581.100000px;}
.x4e_c00283{left:582.600000px;}
.x10c_c00283{left:585.900000px;}
.xf_c00283{left:589.350000px;}
.xbd_c00283{left:590.550000px;}
.x9b_c00283{left:594.750000px;}
.x2a_c00283{left:600.150000px;}
.xed_c00283{left:601.200000px;}
.x38_c00283{left:602.400000px;}
.x10a_c00283{left:603.450000px;}
.x93_c00283{left:606.750000px;}
.x1d_c00283{left:607.800000px;}
.x103_c00283{left:610.050000px;}
.xbe_c00283{left:611.100000px;}
.x6a_c00283{left:612.300000px;}
.xe8_c00283{left:613.950000px;}
.x5a_c00283{left:615.000000px;}
.x8a_c00283{left:616.500000px;}
.x124_c00283{left:619.800000px;}
.x10f_c00283{left:620.850000px;}
.x7e_c00283{left:622.350000px;}
.x12d_c00283{left:628.350000px;}
.x11c_c00283{left:631.050000px;}
.xf1_c00283{left:633.600000px;}
.x39_c00283{left:634.800000px;}
.x11a_c00283{left:637.050000px;}
.xda_c00283{left:638.100000px;}
.x2b_c00283{left:639.450000px;}
.x94_c00283{left:640.650000px;}
.x75_c00283{left:643.050000px;}
.x5b_c00283{left:646.350000px;}
.x7f_c00283{left:648.300000px;}
.xc6_c00283{left:649.650000px;}
.xcf_c00283{left:651.000000px;}
.x4f_c00283{left:654.600000px;}
.xdb_c00283{left:656.100000px;}
.x10_c00283{left:657.450000px;}
.xa5_c00283{left:658.500000px;}
.xd6_c00283{left:660.000000px;}
.xfa_c00283{left:661.650000px;}
.xd0_c00283{left:663.300000px;}
.x11b_c00283{left:665.850000px;}
.xdc_c00283{left:666.900000px;}
.x42_c00283{left:668.700000px;}
.x12e_c00283{left:671.250000px;}
.x2c_c00283{left:674.400000px;}
.x50_c00283{left:675.900000px;}
.x11_c00283{left:678.000000px;}
.x76_c00283{left:679.350000px;}
.x1e_c00283{left:681.300000px;}
.xee_c00283{left:683.700000px;}
.xe9_c00283{left:686.250000px;}
.x80_c00283{left:690.450000px;}
.x43_c00283{left:694.200000px;}
.xb5_c00283{left:695.850000px;}
.xaf_c00283{left:697.350000px;}
.x6b_c00283{left:700.200000px;}
.x1f_c00283{left:702.150000px;}
.x3a_c00283{left:704.250000px;}
.xf2_c00283{left:705.600000px;}
.x12_c00283{left:706.800000px;}
.x95_c00283{left:709.350000px;}
.x11d_c00283{left:710.700000px;}
.x77_c00283{left:716.100000px;}
.x3b_c00283{left:719.400000px;}
.xfb_c00283{left:722.100000px;}
.xd1_c00283{left:723.750000px;}
.x2d_c00283{left:724.800000px;}
.x12f_c00283{left:726.300000px;}
.x9c_c00283{left:727.650000px;}
.x20_c00283{left:730.650000px;}
.x8b_c00283{left:732.300000px;}
.x6c_c00283{left:734.100000px;}
.xa6_c00283{left:736.950000px;}
.x5c_c00283{left:738.900000px;}
.xea_c00283{left:741.750000px;}
.x2_c00283{left:743.400000px;}
.xc7_c00283{left:745.350000px;}
.x130_c00283{left:746.400000px;}
.x2e_c00283{left:748.200000px;}
.xdd_c00283{left:752.550000px;}
.x51_c00283{left:755.850000px;}
.x116_c00283{left:761.700000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws2_c00283{word-spacing:-10.246914pt;}
.ws3_c00283{word-spacing:-2.839506pt;}
.ws8_c00283{word-spacing:0.000000pt;}
.ws5_c00283{word-spacing:1.169591pt;}
.ws0_c00283{word-spacing:1.891253pt;}
.ws4_c00283{word-spacing:4.444444pt;}
.ws6_c00283{word-spacing:4.567901pt;}
.ws7_c00283{word-spacing:6.666667pt;}
.ws1_c00283{word-spacing:14.117647pt;}
._0_c00283{width:45.359477pt;}
.fs0_c00283{font-size:48.000000pt;}
.fs1_c00283{font-size:53.333333pt;}
.y0_c00283{bottom:0.000000pt;}
.y2d_c00283{bottom:127.066667pt;}
.y2c_c00283{bottom:141.066667pt;}
.y2b_c00283{bottom:156.133333pt;}
.y2a_c00283{bottom:170.266667pt;}
.y29_c00283{bottom:183.733333pt;}
.y28_c00283{bottom:215.600000pt;}
.y27_c00283{bottom:233.466667pt;}
.y26_c00283{bottom:251.333333pt;}
.y25_c00283{bottom:269.200000pt;}
.y24_c00283{bottom:286.800000pt;}
.y23_c00283{bottom:304.133333pt;}
.y22_c00283{bottom:322.000000pt;}
.y21_c00283{bottom:339.866667pt;}
.y20_c00283{bottom:357.466667pt;}
.y1f_c00283{bottom:375.333333pt;}
.y1e_c00283{bottom:392.933333pt;}
.y1d_c00283{bottom:411.333333pt;}
.y1c_c00283{bottom:429.200000pt;}
.y1b_c00283{bottom:446.800000pt;}
.y1a_c00283{bottom:464.400000pt;}
.y19_c00283{bottom:482.266667pt;}
.y18_c00283{bottom:500.133333pt;}
.y17_c00283{bottom:518.000000pt;}
.y16_c00283{bottom:535.600000pt;}
.y15_c00283{bottom:553.200000pt;}
.y14_c00283{bottom:571.066667pt;}
.y13_c00283{bottom:588.933333pt;}
.y12_c00283{bottom:606.533333pt;}
.y11_c00283{bottom:624.133333pt;}
.y10_c00283{bottom:641.733333pt;}
.yf_c00283{bottom:659.600000pt;}
.ye_c00283{bottom:677.466667pt;}
.yd_c00283{bottom:695.733333pt;}
.yc_c00283{bottom:713.333333pt;}
.yb_c00283{bottom:731.200000pt;}
.ya_c00283{bottom:748.800000pt;}
.y9_c00283{bottom:766.666667pt;}
.y8_c00283{bottom:784.266667pt;}
.y7_c00283{bottom:802.133333pt;}
.y6_c00283{bottom:820.000000pt;}
.y5_c00283{bottom:837.600000pt;}
.y4_c00283{bottom:855.466667pt;}
.y3_c00283{bottom:873.066667pt;}
.y2_c00283{bottom:890.933333pt;}
.y1_c00283{bottom:924.800000pt;}
.h2_c00283{height:48.000000pt;}
.h3_c00283{height:53.333333pt;}
.h0_c00283{height:1037.119955pt;}
.h1_c00283{height:1037.333333pt;}
.w0_c00283{width:816.640056pt;}
.w1_c00283{width:816.666667pt;}
.x0_c00283{left:0.000000pt;}
.x121_c00283{left:86.133333pt;}
.xe3_c00283{left:87.066667pt;}
.xb6_c00283{left:88.266667pt;}
.x8c_c00283{left:89.333333pt;}
.x3_c00283{left:90.266667pt;}
.xde_c00283{left:97.066667pt;}
.xb0_c00283{left:103.733333pt;}
.xfc_c00283{left:105.600000pt;}
.xf3_c00283{left:106.666667pt;}
.xeb_c00283{left:108.533333pt;}
.x8d_c00283{left:112.000000pt;}
.x81_c00283{left:113.600000pt;}
.x11e_c00283{left:114.666667pt;}
.x9f_c00283{left:115.600000pt;}
.x82_c00283{left:116.800000pt;}
.x13_c00283{left:119.200000pt;}
.xd2_c00283{left:120.533333pt;}
.x52_c00283{left:121.466667pt;}
.x78_c00283{left:123.866667pt;}
.xbf_c00283{left:126.133333pt;}
.xa7_c00283{left:129.200000pt;}
.xf4_c00283{left:130.933333pt;}
.x133_c00283{left:132.400000pt;}
.xc8_c00283{left:136.400000pt;}
.x44_c00283{left:137.733333pt;}
.x2f_c00283{left:139.066667pt;}
.x104_c00283{left:140.000000pt;}
.x21_c00283{left:141.600000pt;}
.x83_c00283{left:143.333333pt;}
.x12a_c00283{left:144.666667pt;}
.x14_c00283{left:145.733333pt;}
.x6d_c00283{left:147.200000pt;}
.x61_c00283{left:149.866667pt;}
.xc9_c00283{left:152.400000pt;}
.x4_c00283{left:153.333333pt;}
.x45_c00283{left:155.066667pt;}
.x110_c00283{left:157.600000pt;}
.xa8_c00283{left:158.666667pt;}
.x6e_c00283{left:160.000000pt;}
.x134_c00283{left:161.200000pt;}
.xa0_c00283{left:163.333333pt;}
.xfd_c00283{left:165.733333pt;}
.x22_c00283{left:166.933333pt;}
.x62_c00283{left:168.400000pt;}
.x8e_c00283{left:170.000000pt;}
.xa9_c00283{left:171.733333pt;}
.x11f_c00283{left:173.200000pt;}
.x105_c00283{left:174.533333pt;}
.xdf_c00283{left:175.466667pt;}
.x3c_c00283{left:176.800000pt;}
.xfe_c00283{left:178.800000pt;}
.x53_c00283{left:181.600000pt;}
.xf5_c00283{left:183.066667pt;}
.x5_c00283{left:185.600000pt;}
.xd7_c00283{left:187.600000pt;}
.x129_c00283{left:189.066667pt;}
.x122_c00283{left:190.133333pt;}
.x15_c00283{left:192.133333pt;}
.x46_c00283{left:193.733333pt;}
.xef_c00283{left:195.466667pt;}
.x135_c00283{left:196.400000pt;}
.x30_c00283{left:198.266667pt;}
.x23_c00283{left:201.466667pt;}
.x6_c00283{left:203.200000pt;}
.xa1_c00283{left:206.133333pt;}
.xff_c00283{left:207.600000pt;}
.x6f_c00283{left:209.866667pt;}
.x111_c00283{left:211.066667pt;}
.xc0_c00283{left:212.533333pt;}
.x84_c00283{left:213.733333pt;}
.x3d_c00283{left:214.933333pt;}
.x54_c00283{left:218.400000pt;}
.x136_c00283{left:220.666667pt;}
.xf6_c00283{left:224.666667pt;}
.x31_c00283{left:226.133333pt;}
.x16_c00283{left:227.333333pt;}
.xe0_c00283{left:228.266667pt;}
.xd8_c00283{left:229.466667pt;}
.xb1_c00283{left:231.733333pt;}
.xb7_c00283{left:233.333333pt;}
.xca_c00283{left:235.600000pt;}
.xd3_c00283{left:237.066667pt;}
.x47_c00283{left:238.266667pt;}
.xaa_c00283{left:239.600000pt;}
.x125_c00283{left:240.800000pt;}
.xe4_c00283{left:242.000000pt;}
.x32_c00283{left:243.066667pt;}
.x85_c00283{left:244.800000pt;}
.x79_c00283{left:245.733333pt;}
.xc1_c00283{left:247.466667pt;}
.x96_c00283{left:248.800000pt;}
.x8f_c00283{left:251.600000pt;}
.x17_c00283{left:253.200000pt;}
.xec_c00283{left:254.400000pt;}
.x117_c00283{left:256.533333pt;}
.x63_c00283{left:258.266667pt;}
.x7_c00283{left:259.466667pt;}
.xb2_c00283{left:265.066667pt;}
.x112_c00283{left:266.400000pt;}
.x3e_c00283{left:269.600000pt;}
.x24_c00283{left:270.666667pt;}
.x10d_c00283{left:272.266667pt;}
.x33_c00283{left:274.400000pt;}
.x64_c00283{left:275.866667pt;}
.x97_c00283{left:278.533333pt;}
.xab_c00283{left:280.533333pt;}
.x118_c00283{left:281.866667pt;}
.x106_c00283{left:283.600000pt;}
.x55_c00283{left:284.666667pt;}
.xcb_c00283{left:286.133333pt;}
.x8_c00283{left:288.000000pt;}
.x18_c00283{left:290.933333pt;}
.xf7_c00283{left:291.866667pt;}
.x70_c00283{left:294.666667pt;}
.x25_c00283{left:296.000000pt;}
.xd4_c00283{left:297.200000pt;}
.x137_c00283{left:298.800000pt;}
.x65_c00283{left:300.533333pt;}
.xb3_c00283{left:302.800000pt;}
.x48_c00283{left:306.133333pt;}
.xd9_c00283{left:307.866667pt;}
.x56_c00283{left:309.333333pt;}
.x107_c00283{left:312.666667pt;}
.xa2_c00283{left:313.600000pt;}
.x5d_c00283{left:316.400000pt;}
.x123_c00283{left:317.866667pt;}
.xe5_c00283{left:319.066667pt;}
.x131_c00283{left:320.933333pt;}
.xb8_c00283{left:323.333333pt;}
.x19_c00283{left:329.333333pt;}
.xd5_c00283{left:331.466667pt;}
.x71_c00283{left:334.000000pt;}
.x34_c00283{left:336.133333pt;}
.x26_c00283{left:337.600000pt;}
.x57_c00283{left:339.733333pt;}
.x3f_c00283{left:341.866667pt;}
.x5e_c00283{left:343.866667pt;}
.x119_c00283{left:346.800000pt;}
.x49_c00283{left:347.733333pt;}
.xf8_c00283{left:349.200000pt;}
.x9_c00283{left:350.400000pt;}
.xc2_c00283{left:351.866667pt;}
.x7a_c00283{left:353.200000pt;}
.x108_c00283{left:357.200000pt;}
.x1_c00283{left:358.400000pt;}
.x72_c00283{left:359.333333pt;}
.xac_c00283{left:360.400000pt;}
.x9d_c00283{left:361.600000pt;}
.xa3_c00283{left:363.466667pt;}
.x132_c00283{left:365.466667pt;}
.x1a_c00283{left:368.000000pt;}
.x98_c00283{left:370.666667pt;}
.x66_c00283{left:372.000000pt;}
.x90_c00283{left:372.933333pt;}
.x40_c00283{left:374.533333pt;}
.x86_c00283{left:376.400000pt;}
.xa_c00283{left:379.200000pt;}
.x5f_c00283{left:380.400000pt;}
.xb4_c00283{left:381.733333pt;}
.x35_c00283{left:383.200000pt;}
.xcc_c00283{left:388.266667pt;}
.x126_c00283{left:390.533333pt;}
.xb9_c00283{left:391.733333pt;}
.x87_c00283{left:392.666667pt;}
.x73_c00283{left:394.266667pt;}
.x10e_c00283{left:396.400000pt;}
.x67_c00283{left:397.333333pt;}
.x27_c00283{left:399.733333pt;}
.x4a_c00283{left:401.466667pt;}
.xb_c00283{left:404.533333pt;}
.xf9_c00283{left:406.400000pt;}
.x1b_c00283{left:407.333333pt;}
.x100_c00283{left:408.533333pt;}
.x36_c00283{left:412.933333pt;}
.x58_c00283{left:414.266667pt;}
.x7b_c00283{left:415.600000pt;}
.xf0_c00283{left:417.333333pt;}
.xc3_c00283{left:419.733333pt;}
.x91_c00283{left:420.666667pt;}
.x12b_c00283{left:422.800000pt;}
.x68_c00283{left:424.800000pt;}
.xcd_c00283{left:429.466667pt;}
.xe6_c00283{left:431.200000pt;}
.x127_c00283{left:433.466667pt;}
.xc_c00283{left:435.600000pt;}
.x101_c00283{left:437.333333pt;}
.x60_c00283{left:438.933333pt;}
.x7c_c00283{left:440.933333pt;}
.xba_c00283{left:446.133333pt;}
.x88_c00283{left:448.400000pt;}
.x12c_c00283{left:452.533333pt;}
.x4b_c00283{left:453.600000pt;}
.x120_c00283{left:454.533333pt;}
.x113_c00283{left:458.266667pt;}
.xe1_c00283{left:459.333333pt;}
.x10b_c00283{left:460.266667pt;}
.x41_c00283{left:462.933333pt;}
.x9e_c00283{left:464.400000pt;}
.x28_c00283{left:465.600000pt;}
.x89_c00283{left:466.666667pt;}
.xc4_c00283{left:468.000000pt;}
.x99_c00283{left:470.133333pt;}
.x4c_c00283{left:471.866667pt;}
.x92_c00283{left:472.800000pt;}
.xbb_c00283{left:474.666667pt;}
.x37_c00283{left:476.000000pt;}
.x102_c00283{left:477.066667pt;}
.xad_c00283{left:478.800000pt;}
.xd_c00283{left:479.733333pt;}
.x74_c00283{left:480.666667pt;}
.x1c_c00283{left:483.200000pt;}
.x109_c00283{left:484.933333pt;}
.x114_c00283{left:486.133333pt;}
.x69_c00283{left:488.533333pt;}
.x4d_c00283{left:491.333333pt;}
.x128_c00283{left:493.333333pt;}
.xc5_c00283{left:495.466667pt;}
.xe_c00283{left:497.600000pt;}
.xbc_c00283{left:499.600000pt;}
.x59_c00283{left:500.933333pt;}
.x7d_c00283{left:503.333333pt;}
.xe7_c00283{left:504.400000pt;}
.x29_c00283{left:506.533333pt;}
.xa4_c00283{left:509.733333pt;}
.xae_c00283{left:511.733333pt;}
.x9a_c00283{left:513.333333pt;}
.x115_c00283{left:514.666667pt;}
.xce_c00283{left:515.600000pt;}
.xe2_c00283{left:516.533333pt;}
.x4e_c00283{left:517.866667pt;}
.x10c_c00283{left:520.800000pt;}
.xf_c00283{left:523.866667pt;}
.xbd_c00283{left:524.933333pt;}
.x9b_c00283{left:528.666667pt;}
.x2a_c00283{left:533.466667pt;}
.xed_c00283{left:534.400000pt;}
.x38_c00283{left:535.466667pt;}
.x10a_c00283{left:536.400000pt;}
.x93_c00283{left:539.333333pt;}
.x1d_c00283{left:540.266667pt;}
.x103_c00283{left:542.266667pt;}
.xbe_c00283{left:543.200000pt;}
.x6a_c00283{left:544.266667pt;}
.xe8_c00283{left:545.733333pt;}
.x5a_c00283{left:546.666667pt;}
.x8a_c00283{left:548.000000pt;}
.x124_c00283{left:550.933333pt;}
.x10f_c00283{left:551.866667pt;}
.x7e_c00283{left:553.200000pt;}
.x12d_c00283{left:558.533333pt;}
.x11c_c00283{left:560.933333pt;}
.xf1_c00283{left:563.200000pt;}
.x39_c00283{left:564.266667pt;}
.x11a_c00283{left:566.266667pt;}
.xda_c00283{left:567.200000pt;}
.x2b_c00283{left:568.400000pt;}
.x94_c00283{left:569.466667pt;}
.x75_c00283{left:571.600000pt;}
.x5b_c00283{left:574.533333pt;}
.x7f_c00283{left:576.266667pt;}
.xc6_c00283{left:577.466667pt;}
.xcf_c00283{left:578.666667pt;}
.x4f_c00283{left:581.866667pt;}
.xdb_c00283{left:583.200000pt;}
.x10_c00283{left:584.400000pt;}
.xa5_c00283{left:585.333333pt;}
.xd6_c00283{left:586.666667pt;}
.xfa_c00283{left:588.133333pt;}
.xd0_c00283{left:589.600000pt;}
.x11b_c00283{left:591.866667pt;}
.xdc_c00283{left:592.800000pt;}
.x42_c00283{left:594.400000pt;}
.x12e_c00283{left:596.666667pt;}
.x2c_c00283{left:599.466667pt;}
.x50_c00283{left:600.800000pt;}
.x11_c00283{left:602.666667pt;}
.x76_c00283{left:603.866667pt;}
.x1e_c00283{left:605.600000pt;}
.xee_c00283{left:607.733333pt;}
.xe9_c00283{left:610.000000pt;}
.x80_c00283{left:613.733333pt;}
.x43_c00283{left:617.066667pt;}
.xb5_c00283{left:618.533333pt;}
.xaf_c00283{left:619.866667pt;}
.x6b_c00283{left:622.400000pt;}
.x1f_c00283{left:624.133333pt;}
.x3a_c00283{left:626.000000pt;}
.xf2_c00283{left:627.200000pt;}
.x12_c00283{left:628.266667pt;}
.x95_c00283{left:630.533333pt;}
.x11d_c00283{left:631.733333pt;}
.x77_c00283{left:636.533333pt;}
.x3b_c00283{left:639.466667pt;}
.xfb_c00283{left:641.866667pt;}
.xd1_c00283{left:643.333333pt;}
.x2d_c00283{left:644.266667pt;}
.x12f_c00283{left:645.600000pt;}
.x9c_c00283{left:646.800000pt;}
.x20_c00283{left:649.466667pt;}
.x8b_c00283{left:650.933333pt;}
.x6c_c00283{left:652.533333pt;}
.xa6_c00283{left:655.066667pt;}
.x5c_c00283{left:656.800000pt;}
.xea_c00283{left:659.333333pt;}
.x2_c00283{left:660.800000pt;}
.xc7_c00283{left:662.533333pt;}
.x130_c00283{left:663.466667pt;}
.x2e_c00283{left:665.066667pt;}
.xdd_c00283{left:668.933333pt;}
.x51_c00283{left:671.866667pt;}
.x116_c00283{left:677.066667pt;}
}





/* 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_c00284 {
    display:none;
  }
  .loading-indicator_c00284.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00284 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_c00284 { 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_c00284" -> "#page-container .classname_c00284")
 */
.pf_c00284 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00284 { /* 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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00284 { /* 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_c00284 { /* 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_c00284 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00284 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00284 {overflow:visible;}
  }
}
.c_c00284 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00284 { /* 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_c00284:after { /* webkit #35443 */
  content: '';
}
.t_c00284:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00284 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 */
}
.__c00284 { /* 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_c00284 { /* info for Javascript */
  display:none;
}
.l_c00284 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00284 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00284 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00284: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_c00284 {
    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_c00284.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00284.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_c00284 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00284{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00284;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.000000;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;}
.m41_c00284{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00284{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00284{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00284{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m73_c00284{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00284{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m0_c00284{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4_c00284{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00284{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m79_c00284{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m60_c00284{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m98_c00284{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9_c00284{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00284{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m94_c00284{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m95_c00284{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m75_c00284{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00284{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00284{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00284{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00284{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m24_c00284{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m91_c00284{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00284{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00284{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00284{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m34_c00284{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m88_c00284{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00284{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m97_c00284{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00284{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00284{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m69_c00284{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m29_c00284{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m68_c00284{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00284{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00284{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m64_c00284{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m15_c00284{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00284{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00284{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00284{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00284{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00284{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00284{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m13_c00284{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m27_c00284{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m92_c00284{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00284{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m65_c00284{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00284{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00284{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m40_c00284{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00284{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m52_c00284{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00284{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.md_c00284{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m81_c00284{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m21_c00284{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00284{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf_c00284{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m72_c00284{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8_c00284{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00284{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00284{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m43_c00284{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m55_c00284{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m20_c00284{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m74_c00284{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me_c00284{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00284{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m50_c00284{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m32_c00284{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00284{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m63_c00284{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00284{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m56_c00284{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00284{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m22_c00284{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6_c00284{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m96_c00284{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m49_c00284{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00284{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m58_c00284{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m76_c00284{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m99_c00284{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma_c00284{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00284{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m71_c00284{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00284{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m90_c00284{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m80_c00284{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m62_c00284{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m83_c00284{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m19_c00284{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m82_c00284{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00284{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00284{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m78_c00284{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m31_c00284{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m85_c00284{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m45_c00284{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00284{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m28_c00284{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00284{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00284{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m77_c00284{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00284{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m48_c00284{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m39_c00284{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m17_c00284{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m59_c00284{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00284{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12_c00284{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb_c00284{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m33_c00284{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00284{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mc_c00284{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m89_c00284{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m37_c00284{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00284{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00284{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00284{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m14_c00284{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m84_c00284{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m36_c00284{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00284{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00284{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m54_c00284{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00284{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m30_c00284{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00284{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m93_c00284{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00284{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m86_c00284{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m42_c00284{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00284{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m10_c00284{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m46_c00284{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m67_c00284{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3_c00284{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00284{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m57_c00284{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m38_c00284{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m35_c00284{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m66_c00284{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00284{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00284{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m61_c00284{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m51_c00284{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m47_c00284{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m87_c00284{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00284{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m16_c00284{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25_c00284{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m44_c00284{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m18_c00284{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00284{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5_c00284{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00284{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m26_c00284{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m70_c00284{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00284{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2_c00284{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m53_c00284{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00284{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00284{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.v0_c00284{vertical-align:0.000000px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{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__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00284{word-spacing:-8.863636px;}
.ws2_c00284{word-spacing:-8.484848px;}
.ws5_c00284{word-spacing:-6.707317px;}
.ws6_c00284{word-spacing:0.000000px;}
.ws4_c00284{word-spacing:1.666667px;}
.ws0_c00284{word-spacing:15.000000px;}
.ws1_c00284{word-spacing:18.648649px;}
.fc0_c00284{color:transparent;}
.fs0_c00284{font-size:60.000000px;}
.y0_c00284{bottom:0.000000px;}
.y2c_c00284{bottom:150.000000px;}
.y2b_c00284{bottom:165.900000px;}
.y2a_c00284{bottom:207.150000px;}
.y29_c00284{bottom:226.950000px;}
.y28_c00284{bottom:246.750000px;}
.y27_c00284{bottom:266.550000px;}
.y26_c00284{bottom:286.350000px;}
.y25_c00284{bottom:307.200000px;}
.y24_c00284{bottom:326.700000px;}
.y23_c00284{bottom:346.500000px;}
.y22_c00284{bottom:366.600000px;}
.y21_c00284{bottom:386.400000px;}
.y20_c00284{bottom:406.500000px;}
.y1f_c00284{bottom:426.300000px;}
.y1e_c00284{bottom:446.400000px;}
.y1d_c00284{bottom:466.200000px;}
.y1c_c00284{bottom:486.000000px;}
.y1b_c00284{bottom:506.100000px;}
.y1a_c00284{bottom:526.200000px;}
.y19_c00284{bottom:546.000000px;}
.y18_c00284{bottom:566.100000px;}
.y17_c00284{bottom:585.900000px;}
.y16_c00284{bottom:605.700000px;}
.y15_c00284{bottom:625.800000px;}
.y14_c00284{bottom:645.900000px;}
.y13_c00284{bottom:665.700000px;}
.y12_c00284{bottom:686.250000px;}
.y11_c00284{bottom:706.050000px;}
.y10_c00284{bottom:725.850000px;}
.yf_c00284{bottom:745.950000px;}
.ye_c00284{bottom:765.750000px;}
.yd_c00284{bottom:785.850000px;}
.yc_c00284{bottom:805.800000px;}
.yb_c00284{bottom:825.900000px;}
.ya_c00284{bottom:845.700000px;}
.y9_c00284{bottom:865.800000px;}
.y8_c00284{bottom:885.600000px;}
.y7_c00284{bottom:906.000000px;}
.y6_c00284{bottom:926.100000px;}
.y5_c00284{bottom:945.900000px;}
.y4_c00284{bottom:966.000000px;}
.y3_c00284{bottom:986.100000px;}
.y2_c00284{bottom:1005.900000px;}
.y1_c00284{bottom:1044.000000px;}
.h2_c00284{height:60.000000px;}
.h0_c00284{height:1166.759949px;}
.h1_c00284{height:1167.000000px;}
.w0_c00284{width:918.720063px;}
.w1_c00284{width:918.750000px;}
.x0_c00284{left:0.000000px;}
.x14_c00284{left:143.250000px;}
.x1_c00284{left:144.750000px;}
.xa9_c00284{left:145.950000px;}
.x110_c00284{left:147.150000px;}
.x2_c00284{left:153.000000px;}
.x5c_c00284{left:161.850000px;}
.x9b_c00284{left:163.800000px;}
.x8e_c00284{left:166.500000px;}
.xb8_c00284{left:167.850000px;}
.x6a_c00284{left:170.100000px;}
.xf2_c00284{left:171.150000px;}
.x4_c00284{left:172.500000px;}
.x77_c00284{left:174.450000px;}
.x4e_c00284{left:175.650000px;}
.xaa_c00284{left:178.350000px;}
.xc4_c00284{left:179.700000px;}
.xd5_c00284{left:180.750000px;}
.x119_c00284{left:182.550000px;}
.x80_c00284{left:185.250000px;}
.x2f_c00284{left:187.200000px;}
.x5d_c00284{left:188.850000px;}
.x100_c00284{left:190.800000px;}
.xb0_c00284{left:192.300000px;}
.x8f_c00284{left:195.300000px;}
.x4b_c00284{left:196.800000px;}
.x129_c00284{left:198.150000px;}
.x109_c00284{left:200.400000px;}
.x4f_c00284{left:201.600000px;}
.x22_c00284{left:203.400000px;}
.x15_c00284{left:205.500000px;}
.xf8_c00284{left:207.600000px;}
.xbd_c00284{left:208.950000px;}
.x111_c00284{left:210.150000px;}
.xe7_c00284{left:211.650000px;}
.x81_c00284{left:214.050000px;}
.x10a_c00284{left:215.850000px;}
.x127_c00284{left:219.150000px;}
.x3c_c00284{left:221.700000px;}
.xf3_c00284{left:223.350000px;}
.xab_c00284{left:225.900000px;}
.xdb_c00284{left:229.350000px;}
.xe3_c00284{left:230.700000px;}
.x9c_c00284{left:232.500000px;}
.x5e_c00284{left:233.550000px;}
.x85_c00284{left:236.100000px;}
.x92_c00284{left:239.550000px;}
.x131_c00284{left:240.750000px;}
.x5_c00284{left:241.950000px;}
.x50_c00284{left:246.600000px;}
.x6b_c00284{left:248.100000px;}
.x3d_c00284{left:249.750000px;}
.xdc_c00284{left:252.450000px;}
.x5f_c00284{left:254.100000px;}
.x16_c00284{left:256.200000px;}
.x6_c00284{left:257.850000px;}
.x4c_c00284{left:259.800000px;}
.xb9_c00284{left:261.450000px;}
.x11a_c00284{left:262.500000px;}
.x86_c00284{left:265.950000px;}
.x78_c00284{left:268.500000px;}
.x101_c00284{left:270.000000px;}
.x23_c00284{left:271.050000px;}
.xee_c00284{left:272.850000px;}
.x7_c00284{left:275.850000px;}
.x4d_c00284{left:277.050000px;}
.xbe_c00284{left:278.100000px;}
.x6c_c00284{left:282.300000px;}
.x60_c00284{left:283.650000px;}
.x82_c00284{left:286.350000px;}
.x30_c00284{left:288.750000px;}
.x3e_c00284{left:291.450000px;}
.xc5_c00284{left:293.850000px;}
.x79_c00284{left:296.250000px;}
.x112_c00284{left:301.350000px;}
.x17_c00284{left:305.100000px;}
.x83_c00284{left:306.150000px;}
.xa2_c00284{left:307.500000px;}
.x8_c00284{left:308.550000px;}
.x3f_c00284{left:309.750000px;}
.x51_c00284{left:311.400000px;}
.xf9_c00284{left:316.050000px;}
.x61_c00284{left:319.650000px;}
.x11d_c00284{left:320.850000px;}
.x40_c00284{left:322.050000px;}
.xe8_c00284{left:324.450000px;}
.xa3_c00284{left:327.000000px;}
.x6d_c00284{left:328.800000px;}
.x24_c00284{left:331.500000px;}
.xb1_c00284{left:332.700000px;}
.x84_c00284{left:334.200000px;}
.xac_c00284{left:336.000000px;}
.xc6_c00284{left:337.800000px;}
.xe4_c00284{left:339.750000px;}
.x121_c00284{left:341.250000px;}
.x52_c00284{left:342.750000px;}
.x7a_c00284{left:344.100000px;}
.xd6_c00284{left:346.800000px;}
.xfa_c00284{left:348.150000px;}
.x31_c00284{left:349.650000px;}
.xf4_c00284{left:352.200000px;}
.x18_c00284{left:357.300000px;}
.xce_c00284{left:359.100000px;}
.x10b_c00284{left:360.600000px;}
.x62_c00284{left:363.150000px;}
.xdd_c00284{left:365.400000px;}
.x7b_c00284{left:366.750000px;}
.x25_c00284{left:369.000000px;}
.x9_c00284{left:374.400000px;}
.xef_c00284{left:376.650000px;}
.x87_c00284{left:378.300000px;}
.xf5_c00284{left:379.500000px;}
.x9d_c00284{left:380.850000px;}
.x132_c00284{left:382.800000px;}
.x63_c00284{left:384.000000px;}
.x12a_c00284{left:388.200000px;}
.x19_c00284{left:390.000000px;}
.x26_c00284{left:391.650000px;}
.x12e_c00284{left:395.100000px;}
.xe9_c00284{left:396.150000px;}
.x88_c00284{left:398.400000px;}
.xfb_c00284{left:400.350000px;}
.x32_c00284{left:402.600000px;}
.xb2_c00284{left:403.950000px;}
.xc7_c00284{left:405.150000px;}
.xf0_c00284{left:406.500000px;}
.x113_c00284{left:407.700000px;}
.x93_c00284{left:410.250000px;}
.x1a_c00284{left:413.700000px;}
.x53_c00284{left:415.050000px;}
.x136_c00284{left:416.400000px;}
.x122_c00284{left:418.200000px;}
.xa4_c00284{left:421.050000px;}
.x27_c00284{left:422.550000px;}
.x90_c00284{left:424.650000px;}
.x64_c00284{left:426.150000px;}
.x94_c00284{left:427.950000px;}
.x128_c00284{left:431.250000px;}
.x7c_c00284{left:435.450000px;}
.xe5_c00284{left:439.500000px;}
.xa_c00284{left:440.700000px;}
.x3_c00284{left:442.500000px;}
.x12f_c00284{left:443.700000px;}
.x6e_c00284{left:444.750000px;}
.x91_c00284{left:446.550000px;}
.x123_c00284{left:449.100000px;}
.xc8_c00284{left:455.100000px;}
.x95_c00284{left:457.800000px;}
.x117_c00284{left:459.000000px;}
.x33_c00284{left:460.500000px;}
.x12b_c00284{left:462.000000px;}
.xd7_c00284{left:463.950000px;}
.x41_c00284{left:465.750000px;}
.x54_c00284{left:468.750000px;}
.xb3_c00284{left:469.800000px;}
.xb_c00284{left:473.850000px;}
.xad_c00284{left:474.900000px;}
.x34_c00284{left:479.550000px;}
.xbf_c00284{left:482.250000px;}
.xcf_c00284{left:485.400000px;}
.x6f_c00284{left:486.450000px;}
.x137_c00284{left:490.200000px;}
.xa5_c00284{left:492.300000px;}
.x1b_c00284{left:494.400000px;}
.xd0_c00284{left:496.500000px;}
.xc_c00284{left:497.550000px;}
.x89_c00284{left:499.500000px;}
.x42_c00284{left:501.000000px;}
.x118_c00284{left:503.250000px;}
.x35_c00284{left:506.850000px;}
.xea_c00284{left:509.100000px;}
.x102_c00284{left:510.450000px;}
.x55_c00284{left:514.500000px;}
.x8a_c00284{left:516.750000px;}
.x70_c00284{left:518.400000px;}
.x130_c00284{left:521.100000px;}
.x114_c00284{left:524.700000px;}
.xd_c00284{left:526.050000px;}
.x1c_c00284{left:528.600000px;}
.x103_c00284{left:530.550000px;}
.xae_c00284{left:533.250000px;}
.xf1_c00284{left:535.500000px;}
.xb4_c00284{left:537.450000px;}
.x11e_c00284{left:541.050000px;}
.xfc_c00284{left:542.100000px;}
.x56_c00284{left:544.050000px;}
.x36_c00284{left:548.250000px;}
.xde_c00284{left:549.450000px;}
.x10c_c00284{left:550.650000px;}
.x28_c00284{left:552.150000px;}
.x1d_c00284{left:554.100000px;}
.x96_c00284{left:556.500000px;}
.x133_c00284{left:558.000000px;}
.x104_c00284{left:560.100000px;}
.x124_c00284{left:562.050000px;}
.xd8_c00284{left:566.550000px;}
.x37_c00284{left:568.350000px;}
.xa6_c00284{left:570.300000px;}
.xba_c00284{left:572.700000px;}
.x9e_c00284{left:573.900000px;}
.x97_c00284{left:576.000000px;}
.x139_c00284{left:577.950000px;}
.x43_c00284{left:579.450000px;}
.xe_c00284{left:583.950000px;}
.x7d_c00284{left:585.000000px;}
.x65_c00284{left:587.100000px;}
.x57_c00284{left:589.350000px;}
.x71_c00284{left:590.700000px;}
.xc0_c00284{left:592.350000px;}
.xf6_c00284{left:594.900000px;}
.x44_c00284{left:598.500000px;}
.xc9_c00284{left:599.700000px;}
.x29_c00284{left:601.050000px;}
.xdf_c00284{left:603.450000px;}
.x38_c00284{left:607.950000px;}
.xd9_c00284{left:609.000000px;}
.x72_c00284{left:610.800000px;}
.x7e_c00284{left:613.050000px;}
.x8b_c00284{left:615.000000px;}
.x10d_c00284{left:616.200000px;}
.xeb_c00284{left:618.600000px;}
.x58_c00284{left:619.950000px;}
.xbb_c00284{left:621.300000px;}
.x98_c00284{left:622.800000px;}
.x11b_c00284{left:624.600000px;}
.x125_c00284{left:625.800000px;}
.xf_c00284{left:628.200000px;}
.x1e_c00284{left:630.750000px;}
.x138_c00284{left:632.100000px;}
.xfd_c00284{left:633.150000px;}
.x66_c00284{left:635.250000px;}
.x8c_c00284{left:636.300000px;}
.xec_c00284{left:637.350000px;}
.xd1_c00284{left:639.450000px;}
.x59_c00284{left:640.800000px;}
.x9f_c00284{left:642.000000px;}
.x12c_c00284{left:643.350000px;}
.x2a_c00284{left:644.550000px;}
.x73_c00284{left:647.100000px;}
.x10_c00284{left:649.050000px;}
.xb5_c00284{left:650.400000px;}
.x10e_c00284{left:651.450000px;}
.x45_c00284{left:656.100000px;}
.x99_c00284{left:657.300000px;}
.xa0_c00284{left:661.050000px;}
.xca_c00284{left:662.700000px;}
.xe6_c00284{left:664.500000px;}
.x115_c00284{left:665.700000px;}
.x5a_c00284{left:667.500000px;}
.xd2_c00284{left:670.800000px;}
.xa7_c00284{left:671.850000px;}
.x74_c00284{left:675.150000px;}
.x46_c00284{left:676.650000px;}
.xfe_c00284{left:681.000000px;}
.x67_c00284{left:683.850000px;}
.xc1_c00284{left:685.650000px;}
.x1f_c00284{left:686.850000px;}
.x47_c00284{left:688.500000px;}
.x11c_c00284{left:691.200000px;}
.x105_c00284{left:694.650000px;}
.x11_c00284{left:696.150000px;}
.x2b_c00284{left:698.250000px;}
.xf7_c00284{left:701.100000px;}
.xed_c00284{left:702.150000px;}
.x68_c00284{left:704.700000px;}
.x39_c00284{left:705.900000px;}
.xe0_c00284{left:708.000000px;}
.x116_c00284{left:710.700000px;}
.x10f_c00284{left:712.650000px;}
.x134_c00284{left:713.850000px;}
.xcb_c00284{left:715.650000px;}
.xa1_c00284{left:717.300000px;}
.x75_c00284{left:718.350000px;}
.x48_c00284{left:720.150000px;}
.xd3_c00284{left:721.500000px;}
.x2c_c00284{left:723.150000px;}
.xc2_c00284{left:725.250000px;}
.x135_c00284{left:729.750000px;}
.x3a_c00284{left:731.400000px;}
.x106_c00284{left:733.950000px;}
.x8d_c00284{left:735.300000px;}
.xcc_c00284{left:736.500000px;}
.xda_c00284{left:738.900000px;}
.x2d_c00284{left:740.850000px;}
.x11f_c00284{left:741.900000px;}
.x20_c00284{left:744.450000px;}
.xaf_c00284{left:746.700000px;}
.x107_c00284{left:748.650000px;}
.xb6_c00284{left:750.450000px;}
.x9a_c00284{left:751.650000px;}
.x12_c00284{left:754.500000px;}
.xa8_c00284{left:756.900000px;}
.x7f_c00284{left:758.100000px;}
.x5b_c00284{left:759.300000px;}
.x3b_c00284{left:760.950000px;}
.xe1_c00284{left:763.800000px;}
.xcd_c00284{left:766.800000px;}
.xbc_c00284{left:769.950000px;}
.x13_c00284{left:772.500000px;}
.x49_c00284{left:773.850000px;}
.x69_c00284{left:775.650000px;}
.x108_c00284{left:778.200000px;}
.xb7_c00284{left:779.550000px;}
.x21_c00284{left:781.200000px;}
.xc3_c00284{left:783.150000px;}
.x120_c00284{left:784.500000px;}
.x12d_c00284{left:785.700000px;}
.x2e_c00284{left:787.350000px;}
.xd4_c00284{left:789.150000px;}
.x4a_c00284{left:791.550000px;}
.xff_c00284{left:793.050000px;}
.xe2_c00284{left:797.700000px;}
.x76_c00284{left:801.900000px;}
.x126_c00284{left:807.000000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws3_c00284{word-spacing:-7.878788pt;}
.ws2_c00284{word-spacing:-7.542088pt;}
.ws5_c00284{word-spacing:-5.962060pt;}
.ws6_c00284{word-spacing:0.000000pt;}
.ws4_c00284{word-spacing:1.481481pt;}
.ws0_c00284{word-spacing:13.333333pt;}
.ws1_c00284{word-spacing:16.576577pt;}
.fs0_c00284{font-size:53.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y2c_c00284{bottom:133.333333pt;}
.y2b_c00284{bottom:147.466667pt;}
.y2a_c00284{bottom:184.133333pt;}
.y29_c00284{bottom:201.733333pt;}
.y28_c00284{bottom:219.333333pt;}
.y27_c00284{bottom:236.933333pt;}
.y26_c00284{bottom:254.533333pt;}
.y25_c00284{bottom:273.066667pt;}
.y24_c00284{bottom:290.400000pt;}
.y23_c00284{bottom:308.000000pt;}
.y22_c00284{bottom:325.866667pt;}
.y21_c00284{bottom:343.466667pt;}
.y20_c00284{bottom:361.333333pt;}
.y1f_c00284{bottom:378.933333pt;}
.y1e_c00284{bottom:396.800000pt;}
.y1d_c00284{bottom:414.400000pt;}
.y1c_c00284{bottom:432.000000pt;}
.y1b_c00284{bottom:449.866667pt;}
.y1a_c00284{bottom:467.733333pt;}
.y19_c00284{bottom:485.333333pt;}
.y18_c00284{bottom:503.200000pt;}
.y17_c00284{bottom:520.800000pt;}
.y16_c00284{bottom:538.400000pt;}
.y15_c00284{bottom:556.266667pt;}
.y14_c00284{bottom:574.133333pt;}
.y13_c00284{bottom:591.733333pt;}
.y12_c00284{bottom:610.000000pt;}
.y11_c00284{bottom:627.600000pt;}
.y10_c00284{bottom:645.200000pt;}
.yf_c00284{bottom:663.066667pt;}
.ye_c00284{bottom:680.666667pt;}
.yd_c00284{bottom:698.533333pt;}
.yc_c00284{bottom:716.266667pt;}
.yb_c00284{bottom:734.133333pt;}
.ya_c00284{bottom:751.733333pt;}
.y9_c00284{bottom:769.600000pt;}
.y8_c00284{bottom:787.200000pt;}
.y7_c00284{bottom:805.333333pt;}
.y6_c00284{bottom:823.200000pt;}
.y5_c00284{bottom:840.800000pt;}
.y4_c00284{bottom:858.666667pt;}
.y3_c00284{bottom:876.533333pt;}
.y2_c00284{bottom:894.133333pt;}
.y1_c00284{bottom:928.000000pt;}
.h2_c00284{height:53.333333pt;}
.h0_c00284{height:1037.119955pt;}
.h1_c00284{height:1037.333333pt;}
.w0_c00284{width:816.640056pt;}
.w1_c00284{width:816.666667pt;}
.x0_c00284{left:0.000000pt;}
.x14_c00284{left:127.333333pt;}
.x1_c00284{left:128.666667pt;}
.xa9_c00284{left:129.733333pt;}
.x110_c00284{left:130.800000pt;}
.x2_c00284{left:136.000000pt;}
.x5c_c00284{left:143.866667pt;}
.x9b_c00284{left:145.600000pt;}
.x8e_c00284{left:148.000000pt;}
.xb8_c00284{left:149.200000pt;}
.x6a_c00284{left:151.200000pt;}
.xf2_c00284{left:152.133333pt;}
.x4_c00284{left:153.333333pt;}
.x77_c00284{left:155.066667pt;}
.x4e_c00284{left:156.133333pt;}
.xaa_c00284{left:158.533333pt;}
.xc4_c00284{left:159.733333pt;}
.xd5_c00284{left:160.666667pt;}
.x119_c00284{left:162.266667pt;}
.x80_c00284{left:164.666667pt;}
.x2f_c00284{left:166.400000pt;}
.x5d_c00284{left:167.866667pt;}
.x100_c00284{left:169.600000pt;}
.xb0_c00284{left:170.933333pt;}
.x8f_c00284{left:173.600000pt;}
.x4b_c00284{left:174.933333pt;}
.x129_c00284{left:176.133333pt;}
.x109_c00284{left:178.133333pt;}
.x4f_c00284{left:179.200000pt;}
.x22_c00284{left:180.800000pt;}
.x15_c00284{left:182.666667pt;}
.xf8_c00284{left:184.533333pt;}
.xbd_c00284{left:185.733333pt;}
.x111_c00284{left:186.800000pt;}
.xe7_c00284{left:188.133333pt;}
.x81_c00284{left:190.266667pt;}
.x10a_c00284{left:191.866667pt;}
.x127_c00284{left:194.800000pt;}
.x3c_c00284{left:197.066667pt;}
.xf3_c00284{left:198.533333pt;}
.xab_c00284{left:200.800000pt;}
.xdb_c00284{left:203.866667pt;}
.xe3_c00284{left:205.066667pt;}
.x9c_c00284{left:206.666667pt;}
.x5e_c00284{left:207.600000pt;}
.x85_c00284{left:209.866667pt;}
.x92_c00284{left:212.933333pt;}
.x131_c00284{left:214.000000pt;}
.x5_c00284{left:215.066667pt;}
.x50_c00284{left:219.200000pt;}
.x6b_c00284{left:220.533333pt;}
.x3d_c00284{left:222.000000pt;}
.xdc_c00284{left:224.400000pt;}
.x5f_c00284{left:225.866667pt;}
.x16_c00284{left:227.733333pt;}
.x6_c00284{left:229.200000pt;}
.x4c_c00284{left:230.933333pt;}
.xb9_c00284{left:232.400000pt;}
.x11a_c00284{left:233.333333pt;}
.x86_c00284{left:236.400000pt;}
.x78_c00284{left:238.666667pt;}
.x101_c00284{left:240.000000pt;}
.x23_c00284{left:240.933333pt;}
.xee_c00284{left:242.533333pt;}
.x7_c00284{left:245.200000pt;}
.x4d_c00284{left:246.266667pt;}
.xbe_c00284{left:247.200000pt;}
.x6c_c00284{left:250.933333pt;}
.x60_c00284{left:252.133333pt;}
.x82_c00284{left:254.533333pt;}
.x30_c00284{left:256.666667pt;}
.x3e_c00284{left:259.066667pt;}
.xc5_c00284{left:261.200000pt;}
.x79_c00284{left:263.333333pt;}
.x112_c00284{left:267.866667pt;}
.x17_c00284{left:271.200000pt;}
.x83_c00284{left:272.133333pt;}
.xa2_c00284{left:273.333333pt;}
.x8_c00284{left:274.266667pt;}
.x3f_c00284{left:275.333333pt;}
.x51_c00284{left:276.800000pt;}
.xf9_c00284{left:280.933333pt;}
.x61_c00284{left:284.133333pt;}
.x11d_c00284{left:285.200000pt;}
.x40_c00284{left:286.266667pt;}
.xe8_c00284{left:288.400000pt;}
.xa3_c00284{left:290.666667pt;}
.x6d_c00284{left:292.266667pt;}
.x24_c00284{left:294.666667pt;}
.xb1_c00284{left:295.733333pt;}
.x84_c00284{left:297.066667pt;}
.xac_c00284{left:298.666667pt;}
.xc6_c00284{left:300.266667pt;}
.xe4_c00284{left:302.000000pt;}
.x121_c00284{left:303.333333pt;}
.x52_c00284{left:304.666667pt;}
.x7a_c00284{left:305.866667pt;}
.xd6_c00284{left:308.266667pt;}
.xfa_c00284{left:309.466667pt;}
.x31_c00284{left:310.800000pt;}
.xf4_c00284{left:313.066667pt;}
.x18_c00284{left:317.600000pt;}
.xce_c00284{left:319.200000pt;}
.x10b_c00284{left:320.533333pt;}
.x62_c00284{left:322.800000pt;}
.xdd_c00284{left:324.800000pt;}
.x7b_c00284{left:326.000000pt;}
.x25_c00284{left:328.000000pt;}
.x9_c00284{left:332.800000pt;}
.xef_c00284{left:334.800000pt;}
.x87_c00284{left:336.266667pt;}
.xf5_c00284{left:337.333333pt;}
.x9d_c00284{left:338.533333pt;}
.x132_c00284{left:340.266667pt;}
.x63_c00284{left:341.333333pt;}
.x12a_c00284{left:345.066667pt;}
.x19_c00284{left:346.666667pt;}
.x26_c00284{left:348.133333pt;}
.x12e_c00284{left:351.200000pt;}
.xe9_c00284{left:352.133333pt;}
.x88_c00284{left:354.133333pt;}
.xfb_c00284{left:355.866667pt;}
.x32_c00284{left:357.866667pt;}
.xb2_c00284{left:359.066667pt;}
.xc7_c00284{left:360.133333pt;}
.xf0_c00284{left:361.333333pt;}
.x113_c00284{left:362.400000pt;}
.x93_c00284{left:364.666667pt;}
.x1a_c00284{left:367.733333pt;}
.x53_c00284{left:368.933333pt;}
.x136_c00284{left:370.133333pt;}
.x122_c00284{left:371.733333pt;}
.xa4_c00284{left:374.266667pt;}
.x27_c00284{left:375.600000pt;}
.x90_c00284{left:377.466667pt;}
.x64_c00284{left:378.800000pt;}
.x94_c00284{left:380.400000pt;}
.x128_c00284{left:383.333333pt;}
.x7c_c00284{left:387.066667pt;}
.xe5_c00284{left:390.666667pt;}
.xa_c00284{left:391.733333pt;}
.x3_c00284{left:393.333333pt;}
.x12f_c00284{left:394.400000pt;}
.x6e_c00284{left:395.333333pt;}
.x91_c00284{left:396.933333pt;}
.x123_c00284{left:399.200000pt;}
.xc8_c00284{left:404.533333pt;}
.x95_c00284{left:406.933333pt;}
.x117_c00284{left:408.000000pt;}
.x33_c00284{left:409.333333pt;}
.x12b_c00284{left:410.666667pt;}
.xd7_c00284{left:412.400000pt;}
.x41_c00284{left:414.000000pt;}
.x54_c00284{left:416.666667pt;}
.xb3_c00284{left:417.600000pt;}
.xb_c00284{left:421.200000pt;}
.xad_c00284{left:422.133333pt;}
.x34_c00284{left:426.266667pt;}
.xbf_c00284{left:428.666667pt;}
.xcf_c00284{left:431.466667pt;}
.x6f_c00284{left:432.400000pt;}
.x137_c00284{left:435.733333pt;}
.xa5_c00284{left:437.600000pt;}
.x1b_c00284{left:439.466667pt;}
.xd0_c00284{left:441.333333pt;}
.xc_c00284{left:442.266667pt;}
.x89_c00284{left:444.000000pt;}
.x42_c00284{left:445.333333pt;}
.x118_c00284{left:447.333333pt;}
.x35_c00284{left:450.533333pt;}
.xea_c00284{left:452.533333pt;}
.x102_c00284{left:453.733333pt;}
.x55_c00284{left:457.333333pt;}
.x8a_c00284{left:459.333333pt;}
.x70_c00284{left:460.800000pt;}
.x130_c00284{left:463.200000pt;}
.x114_c00284{left:466.400000pt;}
.xd_c00284{left:467.600000pt;}
.x1c_c00284{left:469.866667pt;}
.x103_c00284{left:471.600000pt;}
.xae_c00284{left:474.000000pt;}
.xf1_c00284{left:476.000000pt;}
.xb4_c00284{left:477.733333pt;}
.x11e_c00284{left:480.933333pt;}
.xfc_c00284{left:481.866667pt;}
.x56_c00284{left:483.600000pt;}
.x36_c00284{left:487.333333pt;}
.xde_c00284{left:488.400000pt;}
.x10c_c00284{left:489.466667pt;}
.x28_c00284{left:490.800000pt;}
.x1d_c00284{left:492.533333pt;}
.x96_c00284{left:494.666667pt;}
.x133_c00284{left:496.000000pt;}
.x104_c00284{left:497.866667pt;}
.x124_c00284{left:499.600000pt;}
.xd8_c00284{left:503.600000pt;}
.x37_c00284{left:505.200000pt;}
.xa6_c00284{left:506.933333pt;}
.xba_c00284{left:509.066667pt;}
.x9e_c00284{left:510.133333pt;}
.x97_c00284{left:512.000000pt;}
.x139_c00284{left:513.733333pt;}
.x43_c00284{left:515.066667pt;}
.xe_c00284{left:519.066667pt;}
.x7d_c00284{left:520.000000pt;}
.x65_c00284{left:521.866667pt;}
.x57_c00284{left:523.866667pt;}
.x71_c00284{left:525.066667pt;}
.xc0_c00284{left:526.533333pt;}
.xf6_c00284{left:528.800000pt;}
.x44_c00284{left:532.000000pt;}
.xc9_c00284{left:533.066667pt;}
.x29_c00284{left:534.266667pt;}
.xdf_c00284{left:536.400000pt;}
.x38_c00284{left:540.400000pt;}
.xd9_c00284{left:541.333333pt;}
.x72_c00284{left:542.933333pt;}
.x7e_c00284{left:544.933333pt;}
.x8b_c00284{left:546.666667pt;}
.x10d_c00284{left:547.733333pt;}
.xeb_c00284{left:549.866667pt;}
.x58_c00284{left:551.066667pt;}
.xbb_c00284{left:552.266667pt;}
.x98_c00284{left:553.600000pt;}
.x11b_c00284{left:555.200000pt;}
.x125_c00284{left:556.266667pt;}
.xf_c00284{left:558.400000pt;}
.x1e_c00284{left:560.666667pt;}
.x138_c00284{left:561.866667pt;}
.xfd_c00284{left:562.800000pt;}
.x66_c00284{left:564.666667pt;}
.x8c_c00284{left:565.600000pt;}
.xec_c00284{left:566.533333pt;}
.xd1_c00284{left:568.400000pt;}
.x59_c00284{left:569.600000pt;}
.x9f_c00284{left:570.666667pt;}
.x12c_c00284{left:571.866667pt;}
.x2a_c00284{left:572.933333pt;}
.x73_c00284{left:575.200000pt;}
.x10_c00284{left:576.933333pt;}
.xb5_c00284{left:578.133333pt;}
.x10e_c00284{left:579.066667pt;}
.x45_c00284{left:583.200000pt;}
.x99_c00284{left:584.266667pt;}
.xa0_c00284{left:587.600000pt;}
.xca_c00284{left:589.066667pt;}
.xe6_c00284{left:590.666667pt;}
.x115_c00284{left:591.733333pt;}
.x5a_c00284{left:593.333333pt;}
.xd2_c00284{left:596.266667pt;}
.xa7_c00284{left:597.200000pt;}
.x74_c00284{left:600.133333pt;}
.x46_c00284{left:601.466667pt;}
.xfe_c00284{left:605.333333pt;}
.x67_c00284{left:607.866667pt;}
.xc1_c00284{left:609.466667pt;}
.x1f_c00284{left:610.533333pt;}
.x47_c00284{left:612.000000pt;}
.x11c_c00284{left:614.400000pt;}
.x105_c00284{left:617.466667pt;}
.x11_c00284{left:618.800000pt;}
.x2b_c00284{left:620.666667pt;}
.xf7_c00284{left:623.200000pt;}
.xed_c00284{left:624.133333pt;}
.x68_c00284{left:626.400000pt;}
.x39_c00284{left:627.466667pt;}
.xe0_c00284{left:629.333333pt;}
.x116_c00284{left:631.733333pt;}
.x10f_c00284{left:633.466667pt;}
.x134_c00284{left:634.533333pt;}
.xcb_c00284{left:636.133333pt;}
.xa1_c00284{left:637.600000pt;}
.x75_c00284{left:638.533333pt;}
.x48_c00284{left:640.133333pt;}
.xd3_c00284{left:641.333333pt;}
.x2c_c00284{left:642.800000pt;}
.xc2_c00284{left:644.666667pt;}
.x135_c00284{left:648.666667pt;}
.x3a_c00284{left:650.133333pt;}
.x106_c00284{left:652.400000pt;}
.x8d_c00284{left:653.600000pt;}
.xcc_c00284{left:654.666667pt;}
.xda_c00284{left:656.800000pt;}
.x2d_c00284{left:658.533333pt;}
.x11f_c00284{left:659.466667pt;}
.x20_c00284{left:661.733333pt;}
.xaf_c00284{left:663.733333pt;}
.x107_c00284{left:665.466667pt;}
.xb6_c00284{left:667.066667pt;}
.x9a_c00284{left:668.133333pt;}
.x12_c00284{left:670.666667pt;}
.xa8_c00284{left:672.800000pt;}
.x7f_c00284{left:673.866667pt;}
.x5b_c00284{left:674.933333pt;}
.x3b_c00284{left:676.400000pt;}
.xe1_c00284{left:678.933333pt;}
.xcd_c00284{left:681.600000pt;}
.xbc_c00284{left:684.400000pt;}
.x13_c00284{left:686.666667pt;}
.x49_c00284{left:687.866667pt;}
.x69_c00284{left:689.466667pt;}
.x108_c00284{left:691.733333pt;}
.xb7_c00284{left:692.933333pt;}
.x21_c00284{left:694.400000pt;}
.xc3_c00284{left:696.133333pt;}
.x120_c00284{left:697.333333pt;}
.x12d_c00284{left:698.400000pt;}
.x2e_c00284{left:699.866667pt;}
.xd4_c00284{left:701.466667pt;}
.x4a_c00284{left:703.600000pt;}
.xff_c00284{left:704.933333pt;}
.xe2_c00284{left:709.066667pt;}
.x76_c00284{left:712.800000pt;}
.x126_c00284{left:717.333333pt;}
}





/* 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_c00285 {
    display:none;
  }
  .loading-indicator_c00285.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00285 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_c00285 { 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_c00285" -> "#page-container .classname_c00285")
 */
.pf_c00285 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00285 { /* 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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00285 { /* 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_c00285 { /* 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_c00285 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00285 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00285 {overflow:visible;}
  }
}
.c_c00285 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00285 { /* 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_c00285:after { /* webkit #35443 */
  content: '';
}
.t_c00285:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00285 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 */
}
.__c00285 { /* 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_c00285 { /* info for Javascript */
  display:none;
}
.l_c00285 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00285 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00285 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00285: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_c00285 {
    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_c00285.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00285.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_c00285 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.000000;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;}
.m60_c00285{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m63_c00285{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00285{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00285{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00285{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00285{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m58_c00285{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.maf_c00285{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m20_c00285{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00285{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00285{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m93_c00285{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m64_c00285{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00285{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00285{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00285{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00285{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m57_c00285{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m77_c00285{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mad_c00285{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m91_c00285{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m28_c00285{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00285{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m78_c00285{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00285{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m67_c00285{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m89_c00285{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2_c00285{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8_c00285{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00285{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m53_c00285{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m56_c00285{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00285{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m83_c00285{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m46_c00285{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00285{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m87_c00285{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00285{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00285{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00285{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00285{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m33_c00285{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m61_c00285{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00285{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m11_c00285{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m42_c00285{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m88_c00285{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9_c00285{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00285{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00285{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00285{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mab_c00285{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma_c00285{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m25_c00285{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00285{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m59_c00285{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m36_c00285{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00285{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m96_c00285{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m43_c00285{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m35_c00285{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00285{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m38_c00285{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00285{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m94_c00285{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m24_c00285{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m30_c00285{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m55_c00285{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00285{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00285{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m97_c00285{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m22_c00285{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m99_c00285{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00285{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00285{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m13_c00285{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m76_c00285{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m17_c00285{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m52_c00285{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m27_c00285{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00285{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m39_c00285{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00285{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m41_c00285{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00285{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m29_c00285{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00285{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00285{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00285{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m54_c00285{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m45_c00285{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf_c00285{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00285{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00285{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00285{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m86_c00285{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00285{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00285{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m66_c00285{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00285{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4_c00285{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.maa_c00285{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m75_c00285{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00285{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12_c00285{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m49_c00285{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10_c00285{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00285{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m18_c00285{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m48_c00285{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m69_c00285{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00285{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m98_c00285{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00285{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m19_c00285{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m21_c00285{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00285{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00285{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00285{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00285{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00285{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m14_c00285{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00285{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m23_c00285{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m73_c00285{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m26_c00285{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00285{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m92_c00285{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00285{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m95_c00285{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00285{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00285{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00285{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00285{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00285{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00285{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00285{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m82_c00285{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);}
.mb_c00285{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m40_c00285{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.md_c00285{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00285{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m90_c00285{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00285{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m32_c00285{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m71_c00285{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m72_c00285{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m62_c00285{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m31_c00285{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m65_c00285{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00285{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00285{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m6_c00285{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00285{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m79_c00285{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m1_c00285{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m70_c00285{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m37_c00285{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00285{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m85_c00285{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00285{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00285{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00285{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00285{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00285{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00285{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00285{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00285{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00285{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00285{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00285{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m68_c00285{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m74_c00285{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mac_c00285{transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.468000,0.000000,0.000000,0.250000,0,0);}
.m47_c00285{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00285{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m80_c00285{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{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__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00285{word-spacing:-11.145833px;}
.ws5_c00285{word-spacing:-8.024691px;}
.ws4_c00285{word-spacing:-6.944444px;}
.ws2_c00285{word-spacing:-5.138889px;}
.ws6_c00285{word-spacing:0.000000px;}
.ws0_c00285{word-spacing:8.750000px;}
.ws3_c00285{word-spacing:16.250000px;}
.fc0_c00285{color:transparent;}
.fs0_c00285{font-size:60.000000px;}
.y0_c00285{bottom:0.000000px;}
.y2c_c00285{bottom:151.500000px;}
.y2b_c00285{bottom:187.500000px;}
.y2a_c00285{bottom:207.300000px;}
.y29_c00285{bottom:227.100000px;}
.y28_c00285{bottom:246.900000px;}
.y27_c00285{bottom:267.450000px;}
.y26_c00285{bottom:287.550000px;}
.y25_c00285{bottom:307.650000px;}
.y24_c00285{bottom:327.750000px;}
.y23_c00285{bottom:347.550000px;}
.y22_c00285{bottom:368.100000px;}
.y21_c00285{bottom:387.900000px;}
.y20_c00285{bottom:407.700000px;}
.y1f_c00285{bottom:427.500000px;}
.y1e_c00285{bottom:447.600000px;}
.y1d_c00285{bottom:467.700000px;}
.y1c_c00285{bottom:487.200000px;}
.y1b_c00285{bottom:507.000000px;}
.y1a_c00285{bottom:527.100000px;}
.y19_c00285{bottom:547.200000px;}
.y18_c00285{bottom:567.000000px;}
.y17_c00285{bottom:587.100000px;}
.y16_c00285{bottom:606.900000px;}
.y15_c00285{bottom:626.700000px;}
.y14_c00285{bottom:646.500000px;}
.y13_c00285{bottom:666.600000px;}
.y12_c00285{bottom:686.400000px;}
.y11_c00285{bottom:706.500000px;}
.y10_c00285{bottom:726.300000px;}
.yf_c00285{bottom:746.400000px;}
.ye_c00285{bottom:766.500000px;}
.yd_c00285{bottom:786.300000px;}
.yc_c00285{bottom:806.100000px;}
.yb_c00285{bottom:825.900000px;}
.ya_c00285{bottom:846.000000px;}
.y9_c00285{bottom:865.800000px;}
.y8_c00285{bottom:885.900000px;}
.y7_c00285{bottom:905.700000px;}
.y6_c00285{bottom:926.100000px;}
.y5_c00285{bottom:945.900000px;}
.y4_c00285{bottom:966.000000px;}
.y3_c00285{bottom:986.100000px;}
.y2_c00285{bottom:1006.200000px;}
.y1_c00285{bottom:1044.300000px;}
.h2_c00285{height:60.000000px;}
.h0_c00285{height:1166.759949px;}
.h1_c00285{height:1167.000000px;}
.w0_c00285{width:918.720063px;}
.w1_c00285{width:918.750000px;}
.x0_c00285{left:0.000000px;}
.x3_c00285{left:110.100000px;}
.xd8_c00285{left:111.300000px;}
.x11e_c00285{left:112.500000px;}
.x12d_c00285{left:114.150000px;}
.x4_c00285{left:130.650000px;}
.x131_c00285{left:132.450000px;}
.x4f_c00285{left:133.500000px;}
.x8a_c00285{left:139.950000px;}
.x40_c00285{left:141.450000px;}
.x33_c00285{left:144.300000px;}
.x68_c00285{left:148.500000px;}
.x13_c00285{left:150.600000px;}
.x116_c00285{left:152.100000px;}
.xc3_c00285{left:153.900000px;}
.x101_c00285{left:158.250000px;}
.x50_c00285{left:159.750000px;}
.x41_c00285{left:162.750000px;}
.xf1_c00285{left:163.950000px;}
.x10c_c00285{left:166.050000px;}
.xe8_c00285{left:167.400000px;}
.x14_c00285{left:170.700000px;}
.x71_c00285{left:172.950000px;}
.x20_c00285{left:175.650000px;}
.x122_c00285{left:177.450000px;}
.xc4_c00285{left:180.150000px;}
.x125_c00285{left:181.800000px;}
.xbb_c00285{left:183.000000px;}
.x96_c00285{left:184.050000px;}
.xd9_c00285{left:185.400000px;}
.x42_c00285{left:186.900000px;}
.x72_c00285{left:189.900000px;}
.xcc_c00285{left:191.100000px;}
.xb3_c00285{left:192.300000px;}
.xac_c00285{left:193.800000px;}
.x5d_c00285{left:196.800000px;}
.x5_c00285{left:198.600000px;}
.xe9_c00285{left:200.850000px;}
.x97_c00285{left:203.100000px;}
.x117_c00285{left:205.800000px;}
.x11a_c00285{left:207.300000px;}
.x83_c00285{left:209.550000px;}
.xc5_c00285{left:211.050000px;}
.x34_c00285{left:213.000000px;}
.x15_c00285{left:214.200000px;}
.xf8_c00285{left:215.550000px;}
.xed_c00285{left:218.250000px;}
.x73_c00285{left:220.800000px;}
.xcd_c00285{left:222.450000px;}
.x43_c00285{left:223.950000px;}
.x69_c00285{left:225.150000px;}
.x6_c00285{left:226.350000px;}
.xb4_c00285{left:228.000000px;}
.x84_c00285{left:229.350000px;}
.x21_c00285{left:232.500000px;}
.xa8_c00285{left:235.350000px;}
.xde_c00285{left:237.900000px;}
.x10d_c00285{left:240.600000px;}
.x5e_c00285{left:242.550000px;}
.x7d_c00285{left:243.600000px;}
.x6a_c00285{left:245.250000px;}
.x51_c00285{left:246.600000px;}
.x16_c00285{left:248.100000px;}
.xbc_c00285{left:249.600000px;}
.x132_c00285{left:251.250000px;}
.x22_c00285{left:253.050000px;}
.x8b_c00285{left:255.900000px;}
.xf2_c00285{left:258.300000px;}
.x35_c00285{left:259.500000px;}
.x10e_c00285{left:261.150000px;}
.x7_c00285{left:262.650000px;}
.x103_c00285{left:267.150000px;}
.x52_c00285{left:268.500000px;}
.x98_c00285{left:269.700000px;}
.x17_c00285{left:273.300000px;}
.x126_c00285{left:275.100000px;}
.x74_c00285{left:276.300000px;}
.xa1_c00285{left:277.950000px;}
.x10a_c00285{left:279.450000px;}
.x5f_c00285{left:281.100000px;}
.x44_c00285{left:282.600000px;}
.x2b_c00285{left:284.400000px;}
.x104_c00285{left:286.200000px;}
.x36_c00285{left:288.000000px;}
.xe5_c00285{left:289.050000px;}
.x7e_c00285{left:292.950000px;}
.xce_c00285{left:295.500000px;}
.x45_c00285{left:298.500000px;}
.x136_c00285{left:300.600000px;}
.x8_c00285{left:303.000000px;}
.x118_c00285{left:304.500000px;}
.xad_c00285{left:306.450000px;}
.x99_c00285{left:307.500000px;}
.x10f_c00285{left:308.700000px;}
.x8c_c00285{left:311.700000px;}
.xa9_c00285{left:313.800000px;}
.x85_c00285{left:315.300000px;}
.xae_c00285{left:316.500000px;}
.x128_c00285{left:318.150000px;}
.x23_c00285{left:319.950000px;}
.xe6_c00285{left:321.450000px;}
.xb5_c00285{left:323.100000px;}
.xf9_c00285{left:324.600000px;}
.x53_c00285{left:327.600000px;}
.x2c_c00285{left:329.700000px;}
.x60_c00285{left:331.200000px;}
.xc6_c00285{left:332.700000px;}
.xdf_c00285{left:334.350000px;}
.x7f_c00285{left:336.450000px;}
.x18_c00285{left:338.850000px;}
.xe7_c00285{left:342.000000px;}
.x112_c00285{left:343.650000px;}
.x54_c00285{left:344.850000px;}
.xe0_c00285{left:345.900000px;}
.xc7_c00285{left:347.100000px;}
.x9a_c00285{left:349.200000px;}
.x24_c00285{left:352.350000px;}
.x123_c00285{left:353.550000px;}
.xbd_c00285{left:355.500000px;}
.x6b_c00285{left:357.600000px;}
.x37_c00285{left:359.700000px;}
.x75_c00285{left:362.250000px;}
.x46_c00285{left:365.100000px;}
.xda_c00285{left:366.450000px;}
.x55_c00285{left:371.100000px;}
.x8d_c00285{left:373.950000px;}
.x25_c00285{left:375.450000px;}
.x9_c00285{left:377.550000px;}
.xc8_c00285{left:380.550000px;}
.x19_c00285{left:383.550000px;}
.x110_c00285{left:385.650000px;}
.x61_c00285{left:386.700000px;}
.x8e_c00285{left:388.350000px;}
.x105_c00285{left:393.900000px;}
.x26_c00285{left:396.000000px;}
.x137_c00285{left:397.800000px;}
.x47_c00285{left:401.100000px;}
.x56_c00285{left:402.750000px;}
.x1_c00285{left:405.000000px;}
.x129_c00285{left:406.350000px;}
.xcf_c00285{left:408.900000px;}
.xaa_c00285{left:412.050000px;}
.xfa_c00285{left:413.550000px;}
.xbe_c00285{left:415.200000px;}
.x62_c00285{left:416.550000px;}
.x8f_c00285{left:418.650000px;}
.x124_c00285{left:420.300000px;}
.x6c_c00285{left:423.150000px;}
.x76_c00285{left:424.800000px;}
.xa_c00285{left:426.450000px;}
.x111_c00285{left:428.550000px;}
.x113_c00285{left:430.800000px;}
.xf3_c00285{left:432.600000px;}
.x138_c00285{left:434.400000px;}
.x80_c00285{left:437.700000px;}
.xe1_c00285{left:440.100000px;}
.x77_c00285{left:441.300000px;}
.x48_c00285{left:443.250000px;}
.xc9_c00285{left:445.650000px;}
.xd0_c00285{left:448.200000px;}
.x102_c00285{left:450.150000px;}
.xa2_c00285{left:451.650000px;}
.x86_c00285{left:453.600000px;}
.x11b_c00285{left:455.400000px;}
.x12e_c00285{left:456.450000px;}
.x10b_c00285{left:457.650000px;}
.x57_c00285{left:460.650000px;}
.x2d_c00285{left:462.900000px;}
.xb_c00285{left:465.750000px;}
.xaf_c00285{left:469.350000px;}
.xa3_c00285{left:471.150000px;}
.x9b_c00285{left:474.900000px;}
.x49_c00285{left:477.150000px;}
.xea_c00285{left:478.200000px;}
.xab_c00285{left:479.400000px;}
.x38_c00285{left:481.350000px;}
.x58_c00285{left:483.300000px;}
.xee_c00285{left:486.450000px;}
.xb6_c00285{left:488.250000px;}
.xca_c00285{left:489.900000px;}
.x2e_c00285{left:492.750000px;}
.x9c_c00285{left:495.750000px;}
.x78_c00285{left:496.800000px;}
.xfb_c00285{left:498.150000px;}
.x1a_c00285{left:499.200000px;}
.x27_c00285{left:500.700000px;}
.x114_c00285{left:502.500000px;}
.xc_c00285{left:503.850000px;}
.x87_c00285{left:506.100000px;}
.x11f_c00285{left:508.500000px;}
.x4a_c00285{left:510.300000px;}
.xd5_c00285{left:511.350000px;}
.x39_c00285{left:513.000000px;}
.xb7_c00285{left:515.250000px;}
.x63_c00285{left:516.300000px;}
.xe2_c00285{left:518.250000px;}
.x90_c00285{left:519.450000px;}
.xfc_c00285{left:521.850000px;}
.x59_c00285{left:524.700000px;}
.x28_c00285{left:526.650000px;}
.xdb_c00285{left:529.200000px;}
.x1b_c00285{left:532.350000px;}
.x91_c00285{left:533.850000px;}
.xd_c00285{left:535.200000px;}
.xa4_c00285{left:537.750000px;}
.x120_c00285{left:539.400000px;}
.x9d_c00285{left:540.450000px;}
.x11c_c00285{left:541.500000px;}
.x64_c00285{left:542.550000px;}
.x133_c00285{left:546.300000px;}
.xb8_c00285{left:547.650000px;}
.xfd_c00285{left:548.850000px;}
.x127_c00285{left:551.400000px;}
.xd1_c00285{left:553.050000px;}
.x88_c00285{left:554.400000px;}
.x79_c00285{left:556.500000px;}
.x12a_c00285{left:558.000000px;}
.x2f_c00285{left:559.650000px;}
.x5a_c00285{left:561.750000px;}
.x92_c00285{left:563.700000px;}
.xbf_c00285{left:566.100000px;}
.xe_c00285{left:567.900000px;}
.xfe_c00285{left:569.400000px;}
.x3a_c00285{left:570.600000px;}
.x29_c00285{left:573.150000px;}
.x106_c00285{left:575.250000px;}
.xcb_c00285{left:578.100000px;}
.xd2_c00285{left:580.350000px;}
.x3b_c00285{left:582.900000px;}
.x4b_c00285{left:585.900000px;}
.xc0_c00285{left:588.450000px;}
.x1c_c00285{left:589.650000px;}
.x7a_c00285{left:591.450000px;}
.xb0_c00285{left:592.800000px;}
.x6d_c00285{left:597.750000px;}
.xf4_c00285{left:598.950000px;}
.xdc_c00285{left:600.150000px;}
.x65_c00285{left:603.000000px;}
.x9e_c00285{left:604.200000px;}
.x119_c00285{left:606.450000px;}
.xb9_c00285{left:608.850000px;}
.x1d_c00285{left:610.950000px;}
.x121_c00285{left:613.650000px;}
.xf_c00285{left:614.700000px;}
.x3c_c00285{left:617.100000px;}
.xc1_c00285{left:619.050000px;}
.x9f_c00285{left:622.500000px;}
.x4c_c00285{left:624.450000px;}
.x30_c00285{left:628.050000px;}
.x81_c00285{left:629.250000px;}
.xd6_c00285{left:630.600000px;}
.x12f_c00285{left:635.700000px;}
.xf5_c00285{left:637.800000px;}
.x12b_c00285{left:639.750000px;}
.x93_c00285{left:641.400000px;}
.x10_c00285{left:643.500000px;}
.x107_c00285{left:644.700000px;}
.x139_c00285{left:647.850000px;}
.x134_c00285{left:649.650000px;}
.xeb_c00285{left:650.700000px;}
.x66_c00285{left:651.900000px;}
.x2a_c00285{left:654.150000px;}
.x3d_c00285{left:655.200000px;}
.xba_c00285{left:656.400000px;}
.xd3_c00285{left:659.250000px;}
.x6e_c00285{left:662.550000px;}
.x31_c00285{left:666.600000px;}
.xe3_c00285{left:668.700000px;}
.xa5_c00285{left:669.750000px;}
.x130_c00285{left:670.950000px;}
.xd7_c00285{left:672.300000px;}
.x4d_c00285{left:673.800000px;}
.x135_c00285{left:675.600000px;}
.xff_c00285{left:677.700000px;}
.xef_c00285{left:679.350000px;}
.x6f_c00285{left:682.350000px;}
.x5b_c00285{left:685.200000px;}
.x94_c00285{left:687.450000px;}
.x3e_c00285{left:688.650000px;}
.x11d_c00285{left:690.600000px;}
.xb1_c00285{left:693.450000px;}
.x32_c00285{left:695.400000px;}
.x108_c00285{left:697.200000px;}
.x11_c00285{left:699.300000px;}
.x5c_c00285{left:702.150000px;}
.xe4_c00285{left:703.650000px;}
.x1e_c00285{left:705.600000px;}
.xf0_c00285{left:706.650000px;}
.x70_c00285{left:708.300000px;}
.xa6_c00285{left:711.900000px;}
.xf6_c00285{left:713.700000px;}
.x12_c00285{left:716.250000px;}
.xec_c00285{left:717.600000px;}
.x4e_c00285{left:720.300000px;}
.x82_c00285{left:721.350000px;}
.xb2_c00285{left:723.300000px;}
.x109_c00285{left:726.300000px;}
.x3f_c00285{left:727.500000px;}
.x95_c00285{left:729.150000px;}
.x7b_c00285{left:733.950000px;}
.xa7_c00285{left:737.850000px;}
.x67_c00285{left:740.100000px;}
.x115_c00285{left:744.000000px;}
.xd4_c00285{left:745.650000px;}
.x89_c00285{left:748.050000px;}
.x2_c00285{left:750.600000px;}
.xdd_c00285{left:752.100000px;}
.x7c_c00285{left:754.500000px;}
.x100_c00285{left:755.550000px;}
.xa0_c00285{left:757.350000px;}
.x12c_c00285{left:758.850000px;}
.xf7_c00285{left:762.600000px;}
.x1f_c00285{left:764.250000px;}
.xc2_c00285{left:765.600000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws1_c00285{word-spacing:-9.907407pt;}
.ws5_c00285{word-spacing:-7.133059pt;}
.ws4_c00285{word-spacing:-6.172840pt;}
.ws2_c00285{word-spacing:-4.567901pt;}
.ws6_c00285{word-spacing:0.000000pt;}
.ws0_c00285{word-spacing:7.777778pt;}
.ws3_c00285{word-spacing:14.444444pt;}
.fs0_c00285{font-size:53.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y2c_c00285{bottom:134.666667pt;}
.y2b_c00285{bottom:166.666667pt;}
.y2a_c00285{bottom:184.266667pt;}
.y29_c00285{bottom:201.866667pt;}
.y28_c00285{bottom:219.466667pt;}
.y27_c00285{bottom:237.733333pt;}
.y26_c00285{bottom:255.600000pt;}
.y25_c00285{bottom:273.466667pt;}
.y24_c00285{bottom:291.333333pt;}
.y23_c00285{bottom:308.933333pt;}
.y22_c00285{bottom:327.200000pt;}
.y21_c00285{bottom:344.800000pt;}
.y20_c00285{bottom:362.400000pt;}
.y1f_c00285{bottom:380.000000pt;}
.y1e_c00285{bottom:397.866667pt;}
.y1d_c00285{bottom:415.733333pt;}
.y1c_c00285{bottom:433.066667pt;}
.y1b_c00285{bottom:450.666667pt;}
.y1a_c00285{bottom:468.533333pt;}
.y19_c00285{bottom:486.400000pt;}
.y18_c00285{bottom:504.000000pt;}
.y17_c00285{bottom:521.866667pt;}
.y16_c00285{bottom:539.466667pt;}
.y15_c00285{bottom:557.066667pt;}
.y14_c00285{bottom:574.666667pt;}
.y13_c00285{bottom:592.533333pt;}
.y12_c00285{bottom:610.133333pt;}
.y11_c00285{bottom:628.000000pt;}
.y10_c00285{bottom:645.600000pt;}
.yf_c00285{bottom:663.466667pt;}
.ye_c00285{bottom:681.333333pt;}
.yd_c00285{bottom:698.933333pt;}
.yc_c00285{bottom:716.533333pt;}
.yb_c00285{bottom:734.133333pt;}
.ya_c00285{bottom:752.000000pt;}
.y9_c00285{bottom:769.600000pt;}
.y8_c00285{bottom:787.466667pt;}
.y7_c00285{bottom:805.066667pt;}
.y6_c00285{bottom:823.200000pt;}
.y5_c00285{bottom:840.800000pt;}
.y4_c00285{bottom:858.666667pt;}
.y3_c00285{bottom:876.533333pt;}
.y2_c00285{bottom:894.400000pt;}
.y1_c00285{bottom:928.266667pt;}
.h2_c00285{height:53.333333pt;}
.h0_c00285{height:1037.119955pt;}
.h1_c00285{height:1037.333333pt;}
.w0_c00285{width:816.640056pt;}
.w1_c00285{width:816.666667pt;}
.x0_c00285{left:0.000000pt;}
.x3_c00285{left:97.866667pt;}
.xd8_c00285{left:98.933333pt;}
.x11e_c00285{left:100.000000pt;}
.x12d_c00285{left:101.466667pt;}
.x4_c00285{left:116.133333pt;}
.x131_c00285{left:117.733333pt;}
.x4f_c00285{left:118.666667pt;}
.x8a_c00285{left:124.400000pt;}
.x40_c00285{left:125.733333pt;}
.x33_c00285{left:128.266667pt;}
.x68_c00285{left:132.000000pt;}
.x13_c00285{left:133.866667pt;}
.x116_c00285{left:135.200000pt;}
.xc3_c00285{left:136.800000pt;}
.x101_c00285{left:140.666667pt;}
.x50_c00285{left:142.000000pt;}
.x41_c00285{left:144.666667pt;}
.xf1_c00285{left:145.733333pt;}
.x10c_c00285{left:147.600000pt;}
.xe8_c00285{left:148.800000pt;}
.x14_c00285{left:151.733333pt;}
.x71_c00285{left:153.733333pt;}
.x20_c00285{left:156.133333pt;}
.x122_c00285{left:157.733333pt;}
.xc4_c00285{left:160.133333pt;}
.x125_c00285{left:161.600000pt;}
.xbb_c00285{left:162.666667pt;}
.x96_c00285{left:163.600000pt;}
.xd9_c00285{left:164.800000pt;}
.x42_c00285{left:166.133333pt;}
.x72_c00285{left:168.800000pt;}
.xcc_c00285{left:169.866667pt;}
.xb3_c00285{left:170.933333pt;}
.xac_c00285{left:172.266667pt;}
.x5d_c00285{left:174.933333pt;}
.x5_c00285{left:176.533333pt;}
.xe9_c00285{left:178.533333pt;}
.x97_c00285{left:180.533333pt;}
.x117_c00285{left:182.933333pt;}
.x11a_c00285{left:184.266667pt;}
.x83_c00285{left:186.266667pt;}
.xc5_c00285{left:187.600000pt;}
.x34_c00285{left:189.333333pt;}
.x15_c00285{left:190.400000pt;}
.xf8_c00285{left:191.600000pt;}
.xed_c00285{left:194.000000pt;}
.x73_c00285{left:196.266667pt;}
.xcd_c00285{left:197.733333pt;}
.x43_c00285{left:199.066667pt;}
.x69_c00285{left:200.133333pt;}
.x6_c00285{left:201.200000pt;}
.xb4_c00285{left:202.666667pt;}
.x84_c00285{left:203.866667pt;}
.x21_c00285{left:206.666667pt;}
.xa8_c00285{left:209.200000pt;}
.xde_c00285{left:211.466667pt;}
.x10d_c00285{left:213.866667pt;}
.x5e_c00285{left:215.600000pt;}
.x7d_c00285{left:216.533333pt;}
.x6a_c00285{left:218.000000pt;}
.x51_c00285{left:219.200000pt;}
.x16_c00285{left:220.533333pt;}
.xbc_c00285{left:221.866667pt;}
.x132_c00285{left:223.333333pt;}
.x22_c00285{left:224.933333pt;}
.x8b_c00285{left:227.466667pt;}
.xf2_c00285{left:229.600000pt;}
.x35_c00285{left:230.666667pt;}
.x10e_c00285{left:232.133333pt;}
.x7_c00285{left:233.466667pt;}
.x103_c00285{left:237.466667pt;}
.x52_c00285{left:238.666667pt;}
.x98_c00285{left:239.733333pt;}
.x17_c00285{left:242.933333pt;}
.x126_c00285{left:244.533333pt;}
.x74_c00285{left:245.600000pt;}
.xa1_c00285{left:247.066667pt;}
.x10a_c00285{left:248.400000pt;}
.x5f_c00285{left:249.866667pt;}
.x44_c00285{left:251.200000pt;}
.x2b_c00285{left:252.800000pt;}
.x104_c00285{left:254.400000pt;}
.x36_c00285{left:256.000000pt;}
.xe5_c00285{left:256.933333pt;}
.x7e_c00285{left:260.400000pt;}
.xce_c00285{left:262.666667pt;}
.x45_c00285{left:265.333333pt;}
.x136_c00285{left:267.200000pt;}
.x8_c00285{left:269.333333pt;}
.x118_c00285{left:270.666667pt;}
.xad_c00285{left:272.400000pt;}
.x99_c00285{left:273.333333pt;}
.x10f_c00285{left:274.400000pt;}
.x8c_c00285{left:277.066667pt;}
.xa9_c00285{left:278.933333pt;}
.x85_c00285{left:280.266667pt;}
.xae_c00285{left:281.333333pt;}
.x128_c00285{left:282.800000pt;}
.x23_c00285{left:284.400000pt;}
.xe6_c00285{left:285.733333pt;}
.xb5_c00285{left:287.200000pt;}
.xf9_c00285{left:288.533333pt;}
.x53_c00285{left:291.200000pt;}
.x2c_c00285{left:293.066667pt;}
.x60_c00285{left:294.400000pt;}
.xc6_c00285{left:295.733333pt;}
.xdf_c00285{left:297.200000pt;}
.x7f_c00285{left:299.066667pt;}
.x18_c00285{left:301.200000pt;}
.xe7_c00285{left:304.000000pt;}
.x112_c00285{left:305.466667pt;}
.x54_c00285{left:306.533333pt;}
.xe0_c00285{left:307.466667pt;}
.xc7_c00285{left:308.533333pt;}
.x9a_c00285{left:310.400000pt;}
.x24_c00285{left:313.200000pt;}
.x123_c00285{left:314.266667pt;}
.xbd_c00285{left:316.000000pt;}
.x6b_c00285{left:317.866667pt;}
.x37_c00285{left:319.733333pt;}
.x75_c00285{left:322.000000pt;}
.x46_c00285{left:324.533333pt;}
.xda_c00285{left:325.733333pt;}
.x55_c00285{left:329.866667pt;}
.x8d_c00285{left:332.400000pt;}
.x25_c00285{left:333.733333pt;}
.x9_c00285{left:335.600000pt;}
.xc8_c00285{left:338.266667pt;}
.x19_c00285{left:340.933333pt;}
.x110_c00285{left:342.800000pt;}
.x61_c00285{left:343.733333pt;}
.x8e_c00285{left:345.200000pt;}
.x105_c00285{left:350.133333pt;}
.x26_c00285{left:352.000000pt;}
.x137_c00285{left:353.600000pt;}
.x47_c00285{left:356.533333pt;}
.x56_c00285{left:358.000000pt;}
.x1_c00285{left:360.000000pt;}
.x129_c00285{left:361.200000pt;}
.xcf_c00285{left:363.466667pt;}
.xaa_c00285{left:366.266667pt;}
.xfa_c00285{left:367.600000pt;}
.xbe_c00285{left:369.066667pt;}
.x62_c00285{left:370.266667pt;}
.x8f_c00285{left:372.133333pt;}
.x124_c00285{left:373.600000pt;}
.x6c_c00285{left:376.133333pt;}
.x76_c00285{left:377.600000pt;}
.xa_c00285{left:379.066667pt;}
.x111_c00285{left:380.933333pt;}
.x113_c00285{left:382.933333pt;}
.xf3_c00285{left:384.533333pt;}
.x138_c00285{left:386.133333pt;}
.x80_c00285{left:389.066667pt;}
.xe1_c00285{left:391.200000pt;}
.x77_c00285{left:392.266667pt;}
.x48_c00285{left:394.000000pt;}
.xc9_c00285{left:396.133333pt;}
.xd0_c00285{left:398.400000pt;}
.x102_c00285{left:400.133333pt;}
.xa2_c00285{left:401.466667pt;}
.x86_c00285{left:403.200000pt;}
.x11b_c00285{left:404.800000pt;}
.x12e_c00285{left:405.733333pt;}
.x10b_c00285{left:406.800000pt;}
.x57_c00285{left:409.466667pt;}
.x2d_c00285{left:411.466667pt;}
.xb_c00285{left:414.000000pt;}
.xaf_c00285{left:417.200000pt;}
.xa3_c00285{left:418.800000pt;}
.x9b_c00285{left:422.133333pt;}
.x49_c00285{left:424.133333pt;}
.xea_c00285{left:425.066667pt;}
.xab_c00285{left:426.133333pt;}
.x38_c00285{left:427.866667pt;}
.x58_c00285{left:429.600000pt;}
.xee_c00285{left:432.400000pt;}
.xb6_c00285{left:434.000000pt;}
.xca_c00285{left:435.466667pt;}
.x2e_c00285{left:438.000000pt;}
.x9c_c00285{left:440.666667pt;}
.x78_c00285{left:441.600000pt;}
.xfb_c00285{left:442.800000pt;}
.x1a_c00285{left:443.733333pt;}
.x27_c00285{left:445.066667pt;}
.x114_c00285{left:446.666667pt;}
.xc_c00285{left:447.866667pt;}
.x87_c00285{left:449.866667pt;}
.x11f_c00285{left:452.000000pt;}
.x4a_c00285{left:453.600000pt;}
.xd5_c00285{left:454.533333pt;}
.x39_c00285{left:456.000000pt;}
.xb7_c00285{left:458.000000pt;}
.x63_c00285{left:458.933333pt;}
.xe2_c00285{left:460.666667pt;}
.x90_c00285{left:461.733333pt;}
.xfc_c00285{left:463.866667pt;}
.x59_c00285{left:466.400000pt;}
.x28_c00285{left:468.133333pt;}
.xdb_c00285{left:470.400000pt;}
.x1b_c00285{left:473.200000pt;}
.x91_c00285{left:474.533333pt;}
.xd_c00285{left:475.733333pt;}
.xa4_c00285{left:478.000000pt;}
.x120_c00285{left:479.466667pt;}
.x9d_c00285{left:480.400000pt;}
.x11c_c00285{left:481.333333pt;}
.x64_c00285{left:482.266667pt;}
.x133_c00285{left:485.600000pt;}
.xb8_c00285{left:486.800000pt;}
.xfd_c00285{left:487.866667pt;}
.x127_c00285{left:490.133333pt;}
.xd1_c00285{left:491.600000pt;}
.x88_c00285{left:492.800000pt;}
.x79_c00285{left:494.666667pt;}
.x12a_c00285{left:496.000000pt;}
.x2f_c00285{left:497.466667pt;}
.x5a_c00285{left:499.333333pt;}
.x92_c00285{left:501.066667pt;}
.xbf_c00285{left:503.200000pt;}
.xe_c00285{left:504.800000pt;}
.xfe_c00285{left:506.133333pt;}
.x3a_c00285{left:507.200000pt;}
.x29_c00285{left:509.466667pt;}
.x106_c00285{left:511.333333pt;}
.xcb_c00285{left:513.866667pt;}
.xd2_c00285{left:515.866667pt;}
.x3b_c00285{left:518.133333pt;}
.x4b_c00285{left:520.800000pt;}
.xc0_c00285{left:523.066667pt;}
.x1c_c00285{left:524.133333pt;}
.x7a_c00285{left:525.733333pt;}
.xb0_c00285{left:526.933333pt;}
.x6d_c00285{left:531.333333pt;}
.xf4_c00285{left:532.400000pt;}
.xdc_c00285{left:533.466667pt;}
.x65_c00285{left:536.000000pt;}
.x9e_c00285{left:537.066667pt;}
.x119_c00285{left:539.066667pt;}
.xb9_c00285{left:541.200000pt;}
.x1d_c00285{left:543.066667pt;}
.x121_c00285{left:545.466667pt;}
.xf_c00285{left:546.400000pt;}
.x3c_c00285{left:548.533333pt;}
.xc1_c00285{left:550.266667pt;}
.x9f_c00285{left:553.333333pt;}
.x4c_c00285{left:555.066667pt;}
.x30_c00285{left:558.266667pt;}
.x81_c00285{left:559.333333pt;}
.xd6_c00285{left:560.533333pt;}
.x12f_c00285{left:565.066667pt;}
.xf5_c00285{left:566.933333pt;}
.x12b_c00285{left:568.666667pt;}
.x93_c00285{left:570.133333pt;}
.x10_c00285{left:572.000000pt;}
.x107_c00285{left:573.066667pt;}
.x139_c00285{left:575.866667pt;}
.x134_c00285{left:577.466667pt;}
.xeb_c00285{left:578.400000pt;}
.x66_c00285{left:579.466667pt;}
.x2a_c00285{left:581.466667pt;}
.x3d_c00285{left:582.400000pt;}
.xba_c00285{left:583.466667pt;}
.xd3_c00285{left:586.000000pt;}
.x6e_c00285{left:588.933333pt;}
.x31_c00285{left:592.533333pt;}
.xe3_c00285{left:594.400000pt;}
.xa5_c00285{left:595.333333pt;}
.x130_c00285{left:596.400000pt;}
.xd7_c00285{left:597.600000pt;}
.x4d_c00285{left:598.933333pt;}
.x135_c00285{left:600.533333pt;}
.xff_c00285{left:602.400000pt;}
.xef_c00285{left:603.866667pt;}
.x6f_c00285{left:606.533333pt;}
.x5b_c00285{left:609.066667pt;}
.x94_c00285{left:611.066667pt;}
.x3e_c00285{left:612.133333pt;}
.x11d_c00285{left:613.866667pt;}
.xb1_c00285{left:616.400000pt;}
.x32_c00285{left:618.133333pt;}
.x108_c00285{left:619.733333pt;}
.x11_c00285{left:621.600000pt;}
.x5c_c00285{left:624.133333pt;}
.xe4_c00285{left:625.466667pt;}
.x1e_c00285{left:627.200000pt;}
.xf0_c00285{left:628.133333pt;}
.x70_c00285{left:629.600000pt;}
.xa6_c00285{left:632.800000pt;}
.xf6_c00285{left:634.400000pt;}
.x12_c00285{left:636.666667pt;}
.xec_c00285{left:637.866667pt;}
.x4e_c00285{left:640.266667pt;}
.x82_c00285{left:641.200000pt;}
.xb2_c00285{left:642.933333pt;}
.x109_c00285{left:645.600000pt;}
.x3f_c00285{left:646.666667pt;}
.x95_c00285{left:648.133333pt;}
.x7b_c00285{left:652.400000pt;}
.xa7_c00285{left:655.866667pt;}
.x67_c00285{left:657.866667pt;}
.x115_c00285{left:661.333333pt;}
.xd4_c00285{left:662.800000pt;}
.x89_c00285{left:664.933333pt;}
.x2_c00285{left:667.200000pt;}
.xdd_c00285{left:668.533333pt;}
.x7c_c00285{left:670.666667pt;}
.x100_c00285{left:671.600000pt;}
.xa0_c00285{left:673.200000pt;}
.x12c_c00285{left:674.533333pt;}
.xf7_c00285{left:677.866667pt;}
.x1f_c00285{left:679.333333pt;}
.xc2_c00285{left:680.533333pt;}
}





/* 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_c00286 {
    display:none;
  }
  .loading-indicator_c00286.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00286 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_c00286 { 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_c00286" -> "#page-container .classname_c00286")
 */
.pf_c00286 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00286 { /* 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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00286 { /* 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_c00286 { /* 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_c00286 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00286 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00286 {overflow:visible;}
  }
}
.c_c00286 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00286 { /* 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_c00286:after { /* webkit #35443 */
  content: '';
}
.t_c00286:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00286 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 */
}
.__c00286 { /* 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_c00286 { /* info for Javascript */
  display:none;
}
.l_c00286 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00286 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00286 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00286: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_c00286 {
    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_c00286.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00286.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_c00286 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00286{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00286;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.000000;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;}
.mf_c00286{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m24_c00286{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m60_c00286{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m15_c00286{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00286{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m36_c00286{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m84_c00286{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00286{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m95_c00286{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m55_c00286{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00286{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00286{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m19_c00286{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m63_c00286{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00286{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00286{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00286{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00286{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m48_c00286{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m40_c00286{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m88_c00286{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb_c00286{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6_c00286{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m31_c00286{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m96_c00286{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00286{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m57_c00286{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00286{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00286{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00286{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m80_c00286{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00286{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m93_c00286{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m11_c00286{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m70_c00286{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m78_c00286{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m71_c00286{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00286{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00286{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00286{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m23_c00286{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00286{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m74_c00286{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m97_c00286{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00286{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00286{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00286{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00286{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00286{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m61_c00286{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00286{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m67_c00286{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m51_c00286{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m68_c00286{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00286{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00286{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m92_c00286{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00286{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.me_c00286{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00286{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00286{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m47_c00286{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m26_c00286{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m33_c00286{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00286{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00286{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00286{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00286{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m73_c00286{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m89_c00286{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m22_c00286{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00286{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00286{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00286{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m94_c00286{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m49_c00286{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00286{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8_c00286{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m18_c00286{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m16_c00286{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00286{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m64_c00286{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m34_c00286{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m90_c00286{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00286{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00286{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m81_c00286{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00286{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m30_c00286{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00286{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00286{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9_c00286{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m99_c00286{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m44_c00286{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m77_c00286{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m87_c00286{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m50_c00286{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m75_c00286{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00286{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00286{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m25_c00286{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m38_c00286{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.md_c00286{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma_c00286{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00286{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m14_c00286{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m59_c00286{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m29_c00286{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m52_c00286{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m54_c00286{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m35_c00286{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc_c00286{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00286{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m45_c00286{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m69_c00286{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00286{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m28_c00286{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00286{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m4_c00286{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m72_c00286{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m21_c00286{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00286{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m17_c00286{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00286{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00286{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00286{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m56_c00286{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00286{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m65_c00286{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00286{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m13_c00286{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00286{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m62_c00286{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m10_c00286{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m27_c00286{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m37_c00286{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00286{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m46_c00286{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m32_c00286{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m85_c00286{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00286{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00286{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m58_c00286{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00286{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m98_c00286{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m20_c00286{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00286{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00286{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m43_c00286{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m79_c00286{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00286{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00286{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m91_c00286{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00286{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00286{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m7_c00286{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00286{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m82_c00286{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00286{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m42_c00286{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00286{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m76_c00286{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m83_c00286{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00286{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00286{vertical-align:0.000000px;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{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__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00286{word-spacing:0.000000px;}
.ws1_c00286{word-spacing:8.055556px;}
.ws2_c00286{word-spacing:13.472222px;}
.ws0_c00286{word-spacing:28.093220px;}
.fc0_c00286{color:transparent;}
.fs0_c00286{font-size:60.000000px;}
.y0_c00286{bottom:0.000000px;}
.y2c_c00286{bottom:149.400000px;}
.y2b_c00286{bottom:169.200000px;}
.y2a_c00286{bottom:189.000000px;}
.y29_c00286{bottom:209.100000px;}
.y28_c00286{bottom:229.650000px;}
.y27_c00286{bottom:249.150000px;}
.y26_c00286{bottom:269.250000px;}
.y25_c00286{bottom:289.350000px;}
.y24_c00286{bottom:309.450000px;}
.y23_c00286{bottom:329.250000px;}
.y22_c00286{bottom:349.350000px;}
.y21_c00286{bottom:369.150000px;}
.y20_c00286{bottom:389.250000px;}
.y1f_c00286{bottom:409.350000px;}
.y1e_c00286{bottom:429.900000px;}
.y1d_c00286{bottom:449.100000px;}
.y1c_c00286{bottom:468.900000px;}
.y1b_c00286{bottom:489.000000px;}
.y1a_c00286{bottom:509.100000px;}
.y19_c00286{bottom:528.900000px;}
.y18_c00286{bottom:549.000000px;}
.y17_c00286{bottom:568.800000px;}
.y16_c00286{bottom:609.150000px;}
.y15_c00286{bottom:628.950000px;}
.y14_c00286{bottom:649.050000px;}
.y13_c00286{bottom:669.600000px;}
.y12_c00286{bottom:689.700000px;}
.y11_c00286{bottom:709.800000px;}
.y10_c00286{bottom:729.900000px;}
.yf_c00286{bottom:749.700000px;}
.ye_c00286{bottom:769.800000px;}
.yd_c00286{bottom:789.900000px;}
.yc_c00286{bottom:809.700000px;}
.yb_c00286{bottom:829.800000px;}
.ya_c00286{bottom:849.900000px;}
.y9_c00286{bottom:870.000000px;}
.y8_c00286{bottom:890.100000px;}
.y7_c00286{bottom:909.900000px;}
.y6_c00286{bottom:930.000000px;}
.y5_c00286{bottom:949.800000px;}
.y4_c00286{bottom:969.600000px;}
.y3_c00286{bottom:989.700000px;}
.y2_c00286{bottom:1009.800000px;}
.y1_c00286{bottom:1048.350000px;}
.h2_c00286{height:60.000000px;}
.h0_c00286{height:1166.759949px;}
.h1_c00286{height:1167.000000px;}
.w0_c00286{width:918.720063px;}
.w1_c00286{width:918.750000px;}
.x0_c00286{left:0.000000px;}
.x10b_c00286{left:135.000000px;}
.xc5_c00286{left:136.350000px;}
.x62_c00286{left:137.400000px;}
.x3_c00286{left:138.900000px;}
.x1_c00286{left:141.150000px;}
.x7f_c00286{left:152.550000px;}
.x41_c00286{left:155.400000px;}
.xc6_c00286{left:157.200000px;}
.x126_c00286{left:161.100000px;}
.xb8_c00286{left:163.200000px;}
.x99_c00286{left:164.550000px;}
.xc0_c00286{left:165.600000px;}
.xc1_c00286{left:167.700000px;}
.xdb_c00286{left:172.800000px;}
.x72_c00286{left:174.750000px;}
.x24_c00286{left:177.000000px;}
.x108_c00286{left:178.800000px;}
.x4d_c00286{left:180.600000px;}
.x8c_c00286{left:182.700000px;}
.xa9_c00286{left:185.700000px;}
.x34_c00286{left:189.000000px;}
.xb1_c00286{left:192.300000px;}
.x12_c00286{left:193.650000px;}
.xc7_c00286{left:195.750000px;}
.xc2_c00286{left:198.600000px;}
.x42_c00286{left:200.400000px;}
.x13_c00286{left:204.750000px;}
.x9a_c00286{left:207.000000px;}
.x63_c00286{left:209.100000px;}
.x4e_c00286{left:210.150000px;}
.x80_c00286{left:211.200000px;}
.x117_c00286{left:214.050000px;}
.xaa_c00286{left:215.550000px;}
.x25_c00286{left:217.350000px;}
.x4_c00286{left:218.400000px;}
.x11d_c00286{left:219.900000px;}
.xa2_c00286{left:220.950000px;}
.x8d_c00286{left:223.050000px;}
.xfe_c00286{left:226.500000px;}
.xab_c00286{left:228.450000px;}
.x35_c00286{left:230.700000px;}
.x14_c00286{left:233.250000px;}
.xc8_c00286{left:235.350000px;}
.xcd_c00286{left:237.150000px;}
.x11e_c00286{left:238.650000px;}
.x4f_c00286{left:240.000000px;}
.xd4_c00286{left:242.850000px;}
.x26_c00286{left:244.050000px;}
.xdc_c00286{left:245.550000px;}
.x73_c00286{left:248.100000px;}
.x43_c00286{left:249.750000px;}
.x15_c00286{left:250.950000px;}
.xce_c00286{left:253.050000px;}
.xb9_c00286{left:255.000000px;}
.xf8_c00286{left:256.800000px;}
.xe4_c00286{left:258.900000px;}
.x81_c00286{left:260.250000px;}
.x64_c00286{left:261.300000px;}
.xc9_c00286{left:263.850000px;}
.x11f_c00286{left:265.650000px;}
.x5_c00286{left:267.000000px;}
.x58_c00286{left:269.400000px;}
.x9b_c00286{left:270.450000px;}
.x110_c00286{left:272.400000px;}
.xe2_c00286{left:274.350000px;}
.x16_c00286{left:276.450000px;}
.x118_c00286{left:278.550000px;}
.x50_c00286{left:280.350000px;}
.xa3_c00286{left:281.400000px;}
.x65_c00286{left:284.400000px;}
.x44_c00286{left:286.500000px;}
.xcf_c00286{left:288.300000px;}
.xba_c00286{left:291.000000px;}
.x27_c00286{left:294.150000px;}
.x36_c00286{left:295.800000px;}
.x82_c00286{left:297.000000px;}
.xac_c00286{left:300.450000px;}
.xf9_c00286{left:303.300000px;}
.x6_c00286{left:304.800000px;}
.xea_c00286{left:309.600000px;}
.xc3_c00286{left:311.250000px;}
.x51_c00286{left:313.050000px;}
.x59_c00286{left:314.700000px;}
.xf0_c00286{left:316.050000px;}
.x83_c00286{left:317.550000px;}
.x8e_c00286{left:318.750000px;}
.x102_c00286{left:321.150000px;}
.x45_c00286{left:322.800000px;}
.xb2_c00286{left:324.750000px;}
.x74_c00286{left:326.250000px;}
.xa4_c00286{left:327.900000px;}
.x17_c00286{left:332.250000px;}
.xd5_c00286{left:335.400000px;}
.x28_c00286{left:337.350000px;}
.xad_c00286{left:339.750000px;}
.x7_c00286{left:343.650000px;}
.x8f_c00286{left:345.450000px;}
.x119_c00286{left:347.700000px;}
.xe5_c00286{left:349.200000px;}
.x37_c00286{left:350.550000px;}
.xdd_c00286{left:352.050000px;}
.x9c_c00286{left:355.050000px;}
.x18_c00286{left:357.150000px;}
.x6b_c00286{left:359.700000px;}
.xbb_c00286{left:362.250000px;}
.x84_c00286{left:364.350000px;}
.x38_c00286{left:366.750000px;}
.x120_c00286{left:367.950000px;}
.x75_c00286{left:369.450000px;}
.x114_c00286{left:373.200000px;}
.xfa_c00286{left:374.550000px;}
.x10c_c00286{left:377.700000px;}
.x5a_c00286{left:379.800000px;}
.xb3_c00286{left:384.150000px;}
.xca_c00286{left:387.900000px;}
.xd0_c00286{left:389.100000px;}
.x52_c00286{left:390.150000px;}
.xbc_c00286{left:392.100000px;}
.x85_c00286{left:394.200000px;}
.x46_c00286{left:396.300000px;}
.x19_c00286{left:398.550000px;}
.xeb_c00286{left:400.350000px;}
.x76_c00286{left:402.600000px;}
.x29_c00286{left:404.700000px;}
.x5b_c00286{left:408.300000px;}
.x8_c00286{left:409.500000px;}
.xd1_c00286{left:412.200000px;}
.x86_c00286{left:414.300000px;}
.xde_c00286{left:415.500000px;}
.x121_c00286{left:417.300000px;}
.x90_c00286{left:419.250000px;}
.xae_c00286{left:420.750000px;}
.xd6_c00286{left:423.150000px;}
.x53_c00286{left:424.350000px;}
.x2a_c00286{left:425.550000px;}
.x107_c00286{left:427.800000px;}
.xfb_c00286{left:429.900000px;}
.x1a_c00286{left:432.000000px;}
.x39_c00286{left:435.150000px;}
.x2_c00286{left:437.400000px;}
.xbd_c00286{left:438.600000px;}
.xf1_c00286{left:439.950000px;}
.x9_c00286{left:444.750000px;}
.x77_c00286{left:448.350000px;}
.x91_c00286{left:450.150000px;}
.xd7_c00286{left:452.250000px;}
.x1b_c00286{left:455.100000px;}
.xd2_c00286{left:458.700000px;}
.xa5_c00286{left:460.050000px;}
.x111_c00286{left:461.100000px;}
.x66_c00286{left:462.300000px;}
.xb4_c00286{left:465.150000px;}
.x54_c00286{left:467.250000px;}
.x9d_c00286{left:469.200000px;}
.x2b_c00286{left:472.350000px;}
.x47_c00286{left:474.000000px;}
.x103_c00286{left:475.200000px;}
.x1c_c00286{left:480.600000px;}
.x11a_c00286{left:481.950000px;}
.x128_c00286{left:484.350000px;}
.xdf_c00286{left:485.700000px;}
.xfc_c00286{left:489.000000px;}
.x6c_c00286{left:490.350000px;}
.x92_c00286{left:493.050000px;}
.x122_c00286{left:496.200000px;}
.x67_c00286{left:497.250000px;}
.x3a_c00286{left:499.500000px;}
.xc4_c00286{left:504.900000px;}
.xaf_c00286{left:507.150000px;}
.xa6_c00286{left:509.400000px;}
.xfd_c00286{left:510.600000px;}
.x5c_c00286{left:512.250000px;}
.x48_c00286{left:514.650000px;}
.x93_c00286{left:516.150000px;}
.x11b_c00286{left:517.950000px;}
.xa_c00286{left:521.100000px;}
.x1d_c00286{left:524.550000px;}
.x3b_c00286{left:527.250000px;}
.x9e_c00286{left:528.300000px;}
.x78_c00286{left:529.650000px;}
.x2c_c00286{left:536.100000px;}
.xec_c00286{left:540.000000px;}
.x6d_c00286{left:541.350000px;}
.xb_c00286{left:543.450000px;}
.xa7_c00286{left:547.200000px;}
.x2d_c00286{left:551.550000px;}
.x55_c00286{left:552.600000px;}
.x94_c00286{left:554.250000px;}
.xe6_c00286{left:555.900000px;}
.xf2_c00286{left:557.250000px;}
.xd3_c00286{left:558.450000px;}
.x49_c00286{left:562.200000px;}
.xcb_c00286{left:564.000000px;}
.x87_c00286{left:565.500000px;}
.xbe_c00286{left:567.450000px;}
.x1e_c00286{left:570.900000px;}
.x9f_c00286{left:574.050000px;}
.x95_c00286{left:575.850000px;}
.x6e_c00286{left:578.400000px;}
.x79_c00286{left:580.050000px;}
.x10d_c00286{left:582.450000px;}
.xb0_c00286{left:583.950000px;}
.x11c_c00286{left:588.150000px;}
.x3c_c00286{left:589.200000px;}
.x5d_c00286{left:591.450000px;}
.xe7_c00286{left:592.950000px;}
.x109_c00286{left:595.200000px;}
.x2e_c00286{left:596.250000px;}
.x115_c00286{left:597.750000px;}
.x6f_c00286{left:599.250000px;}
.x56_c00286{left:600.900000px;}
.xd8_c00286{left:602.700000px;}
.x96_c00286{left:604.950000px;}
.x104_c00286{left:606.300000px;}
.xc_c00286{left:608.250000px;}
.x4a_c00286{left:612.300000px;}
.x7a_c00286{left:615.000000px;}
.xb5_c00286{left:618.150000px;}
.x1f_c00286{left:620.250000px;}
.x2f_c00286{left:621.750000px;}
.xed_c00286{left:622.800000px;}
.x70_c00286{left:625.200000px;}
.xd_c00286{left:628.350000px;}
.x5e_c00286{left:630.000000px;}
.xcc_c00286{left:632.100000px;}
.x88_c00286{left:633.150000px;}
.x105_c00286{left:634.800000px;}
.x20_c00286{left:636.750000px;}
.x10e_c00286{left:640.050000px;}
.xee_c00286{left:642.300000px;}
.x30_c00286{left:644.850000px;}
.xe3_c00286{left:646.650000px;}
.xa0_c00286{left:647.850000px;}
.xe8_c00286{left:650.550000px;}
.x4b_c00286{left:651.600000px;}
.x123_c00286{left:654.150000px;}
.xf3_c00286{left:656.850000px;}
.xff_c00286{left:658.350000px;}
.x127_c00286{left:659.850000px;}
.x5f_c00286{left:662.700000px;}
.x3d_c00286{left:663.750000px;}
.xe_c00286{left:665.850000px;}
.x106_c00286{left:667.200000px;}
.x21_c00286{left:669.150000px;}
.x68_c00286{left:671.100000px;}
.x7b_c00286{left:676.950000px;}
.xef_c00286{left:678.000000px;}
.xf4_c00286{left:679.200000px;}
.x10f_c00286{left:680.700000px;}
.x89_c00286{left:681.750000px;}
.x3e_c00286{left:683.250000px;}
.x100_c00286{left:685.050000px;}
.xbf_c00286{left:687.600000px;}
.x112_c00286{left:689.700000px;}
.xe0_c00286{left:691.950000px;}
.x97_c00286{left:693.450000px;}
.x22_c00286{left:695.400000px;}
.xb6_c00286{left:697.050000px;}
.x7c_c00286{left:698.250000px;}
.x124_c00286{left:700.200000px;}
.xf_c00286{left:703.350000px;}
.xf5_c00286{left:705.900000px;}
.x69_c00286{left:707.100000px;}
.x3f_c00286{left:708.750000px;}
.xa1_c00286{left:710.550000px;}
.xd9_c00286{left:711.750000px;}
.x10a_c00286{left:716.100000px;}
.x31_c00286{left:718.350000px;}
.xb7_c00286{left:720.450000px;}
.x4c_c00286{left:724.650000px;}
.x60_c00286{left:726.000000px;}
.x125_c00286{left:728.700000px;}
.x23_c00286{left:731.100000px;}
.x113_c00286{left:732.150000px;}
.x116_c00286{left:733.200000px;}
.x7d_c00286{left:735.300000px;}
.x32_c00286{left:736.650000px;}
.xa8_c00286{left:738.000000px;}
.xda_c00286{left:741.300000px;}
.xe9_c00286{left:742.650000px;}
.x8a_c00286{left:749.400000px;}
.x6a_c00286{left:754.200000px;}
.x71_c00286{left:755.400000px;}
.x10_c00286{left:761.250000px;}
.x101_c00286{left:763.200000px;}
.x129_c00286{left:765.600000px;}
.x40_c00286{left:769.650000px;}
.xf6_c00286{left:771.000000px;}
.x33_c00286{left:773.400000px;}
.x57_c00286{left:775.200000px;}
.x8b_c00286{left:778.200000px;}
.x11_c00286{left:780.750000px;}
.x61_c00286{left:785.700000px;}
.xf7_c00286{left:787.950000px;}
.x12a_c00286{left:789.000000px;}
.x7e_c00286{left:790.050000px;}
.x98_c00286{left:792.750000px;}
.xe1_c00286{left:796.800000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws3_c00286{word-spacing:0.000000pt;}
.ws1_c00286{word-spacing:7.160494pt;}
.ws2_c00286{word-spacing:11.975309pt;}
.ws0_c00286{word-spacing:24.971751pt;}
.fs0_c00286{font-size:53.333333pt;}
.y0_c00286{bottom:0.000000pt;}
.y2c_c00286{bottom:132.800000pt;}
.y2b_c00286{bottom:150.400000pt;}
.y2a_c00286{bottom:168.000000pt;}
.y29_c00286{bottom:185.866667pt;}
.y28_c00286{bottom:204.133333pt;}
.y27_c00286{bottom:221.466667pt;}
.y26_c00286{bottom:239.333333pt;}
.y25_c00286{bottom:257.200000pt;}
.y24_c00286{bottom:275.066667pt;}
.y23_c00286{bottom:292.666667pt;}
.y22_c00286{bottom:310.533333pt;}
.y21_c00286{bottom:328.133333pt;}
.y20_c00286{bottom:346.000000pt;}
.y1f_c00286{bottom:363.866667pt;}
.y1e_c00286{bottom:382.133333pt;}
.y1d_c00286{bottom:399.200000pt;}
.y1c_c00286{bottom:416.800000pt;}
.y1b_c00286{bottom:434.666667pt;}
.y1a_c00286{bottom:452.533333pt;}
.y19_c00286{bottom:470.133333pt;}
.y18_c00286{bottom:488.000000pt;}
.y17_c00286{bottom:505.600000pt;}
.y16_c00286{bottom:541.466667pt;}
.y15_c00286{bottom:559.066667pt;}
.y14_c00286{bottom:576.933333pt;}
.y13_c00286{bottom:595.200000pt;}
.y12_c00286{bottom:613.066667pt;}
.y11_c00286{bottom:630.933333pt;}
.y10_c00286{bottom:648.800000pt;}
.yf_c00286{bottom:666.400000pt;}
.ye_c00286{bottom:684.266667pt;}
.yd_c00286{bottom:702.133333pt;}
.yc_c00286{bottom:719.733333pt;}
.yb_c00286{bottom:737.600000pt;}
.ya_c00286{bottom:755.466667pt;}
.y9_c00286{bottom:773.333333pt;}
.y8_c00286{bottom:791.200000pt;}
.y7_c00286{bottom:808.800000pt;}
.y6_c00286{bottom:826.666667pt;}
.y5_c00286{bottom:844.266667pt;}
.y4_c00286{bottom:861.866667pt;}
.y3_c00286{bottom:879.733333pt;}
.y2_c00286{bottom:897.600000pt;}
.y1_c00286{bottom:931.866667pt;}
.h2_c00286{height:53.333333pt;}
.h0_c00286{height:1037.119955pt;}
.h1_c00286{height:1037.333333pt;}
.w0_c00286{width:816.640056pt;}
.w1_c00286{width:816.666667pt;}
.x0_c00286{left:0.000000pt;}
.x10b_c00286{left:120.000000pt;}
.xc5_c00286{left:121.200000pt;}
.x62_c00286{left:122.133333pt;}
.x3_c00286{left:123.466667pt;}
.x1_c00286{left:125.466667pt;}
.x7f_c00286{left:135.600000pt;}
.x41_c00286{left:138.133333pt;}
.xc6_c00286{left:139.733333pt;}
.x126_c00286{left:143.200000pt;}
.xb8_c00286{left:145.066667pt;}
.x99_c00286{left:146.266667pt;}
.xc0_c00286{left:147.200000pt;}
.xc1_c00286{left:149.066667pt;}
.xdb_c00286{left:153.600000pt;}
.x72_c00286{left:155.333333pt;}
.x24_c00286{left:157.333333pt;}
.x108_c00286{left:158.933333pt;}
.x4d_c00286{left:160.533333pt;}
.x8c_c00286{left:162.400000pt;}
.xa9_c00286{left:165.066667pt;}
.x34_c00286{left:168.000000pt;}
.xb1_c00286{left:170.933333pt;}
.x12_c00286{left:172.133333pt;}
.xc7_c00286{left:174.000000pt;}
.xc2_c00286{left:176.533333pt;}
.x42_c00286{left:178.133333pt;}
.x13_c00286{left:182.000000pt;}
.x9a_c00286{left:184.000000pt;}
.x63_c00286{left:185.866667pt;}
.x4e_c00286{left:186.800000pt;}
.x80_c00286{left:187.733333pt;}
.x117_c00286{left:190.266667pt;}
.xaa_c00286{left:191.600000pt;}
.x25_c00286{left:193.200000pt;}
.x4_c00286{left:194.133333pt;}
.x11d_c00286{left:195.466667pt;}
.xa2_c00286{left:196.400000pt;}
.x8d_c00286{left:198.266667pt;}
.xfe_c00286{left:201.333333pt;}
.xab_c00286{left:203.066667pt;}
.x35_c00286{left:205.066667pt;}
.x14_c00286{left:207.333333pt;}
.xc8_c00286{left:209.200000pt;}
.xcd_c00286{left:210.800000pt;}
.x11e_c00286{left:212.133333pt;}
.x4f_c00286{left:213.333333pt;}
.xd4_c00286{left:215.866667pt;}
.x26_c00286{left:216.933333pt;}
.xdc_c00286{left:218.266667pt;}
.x73_c00286{left:220.533333pt;}
.x43_c00286{left:222.000000pt;}
.x15_c00286{left:223.066667pt;}
.xce_c00286{left:224.933333pt;}
.xb9_c00286{left:226.666667pt;}
.xf8_c00286{left:228.266667pt;}
.xe4_c00286{left:230.133333pt;}
.x81_c00286{left:231.333333pt;}
.x64_c00286{left:232.266667pt;}
.xc9_c00286{left:234.533333pt;}
.x11f_c00286{left:236.133333pt;}
.x5_c00286{left:237.333333pt;}
.x58_c00286{left:239.466667pt;}
.x9b_c00286{left:240.400000pt;}
.x110_c00286{left:242.133333pt;}
.xe2_c00286{left:243.866667pt;}
.x16_c00286{left:245.733333pt;}
.x118_c00286{left:247.600000pt;}
.x50_c00286{left:249.200000pt;}
.xa3_c00286{left:250.133333pt;}
.x65_c00286{left:252.800000pt;}
.x44_c00286{left:254.666667pt;}
.xcf_c00286{left:256.266667pt;}
.xba_c00286{left:258.666667pt;}
.x27_c00286{left:261.466667pt;}
.x36_c00286{left:262.933333pt;}
.x82_c00286{left:264.000000pt;}
.xac_c00286{left:267.066667pt;}
.xf9_c00286{left:269.600000pt;}
.x6_c00286{left:270.933333pt;}
.xea_c00286{left:275.200000pt;}
.xc3_c00286{left:276.666667pt;}
.x51_c00286{left:278.266667pt;}
.x59_c00286{left:279.733333pt;}
.xf0_c00286{left:280.933333pt;}
.x83_c00286{left:282.266667pt;}
.x8e_c00286{left:283.333333pt;}
.x102_c00286{left:285.466667pt;}
.x45_c00286{left:286.933333pt;}
.xb2_c00286{left:288.666667pt;}
.x74_c00286{left:290.000000pt;}
.xa4_c00286{left:291.466667pt;}
.x17_c00286{left:295.333333pt;}
.xd5_c00286{left:298.133333pt;}
.x28_c00286{left:299.866667pt;}
.xad_c00286{left:302.000000pt;}
.x7_c00286{left:305.466667pt;}
.x8f_c00286{left:307.066667pt;}
.x119_c00286{left:309.066667pt;}
.xe5_c00286{left:310.400000pt;}
.x37_c00286{left:311.600000pt;}
.xdd_c00286{left:312.933333pt;}
.x9c_c00286{left:315.600000pt;}
.x18_c00286{left:317.466667pt;}
.x6b_c00286{left:319.733333pt;}
.xbb_c00286{left:322.000000pt;}
.x84_c00286{left:323.866667pt;}
.x38_c00286{left:326.000000pt;}
.x120_c00286{left:327.066667pt;}
.x75_c00286{left:328.400000pt;}
.x114_c00286{left:331.733333pt;}
.xfa_c00286{left:332.933333pt;}
.x10c_c00286{left:335.733333pt;}
.x5a_c00286{left:337.600000pt;}
.xb3_c00286{left:341.466667pt;}
.xca_c00286{left:344.800000pt;}
.xd0_c00286{left:345.866667pt;}
.x52_c00286{left:346.800000pt;}
.xbc_c00286{left:348.533333pt;}
.x85_c00286{left:350.400000pt;}
.x46_c00286{left:352.266667pt;}
.x19_c00286{left:354.266667pt;}
.xeb_c00286{left:355.866667pt;}
.x76_c00286{left:357.866667pt;}
.x29_c00286{left:359.733333pt;}
.x5b_c00286{left:362.933333pt;}
.x8_c00286{left:364.000000pt;}
.xd1_c00286{left:366.400000pt;}
.x86_c00286{left:368.266667pt;}
.xde_c00286{left:369.333333pt;}
.x121_c00286{left:370.933333pt;}
.x90_c00286{left:372.666667pt;}
.xae_c00286{left:374.000000pt;}
.xd6_c00286{left:376.133333pt;}
.x53_c00286{left:377.200000pt;}
.x2a_c00286{left:378.266667pt;}
.x107_c00286{left:380.266667pt;}
.xfb_c00286{left:382.133333pt;}
.x1a_c00286{left:384.000000pt;}
.x39_c00286{left:386.800000pt;}
.x2_c00286{left:388.800000pt;}
.xbd_c00286{left:389.866667pt;}
.xf1_c00286{left:391.066667pt;}
.x9_c00286{left:395.333333pt;}
.x77_c00286{left:398.533333pt;}
.x91_c00286{left:400.133333pt;}
.xd7_c00286{left:402.000000pt;}
.x1b_c00286{left:404.533333pt;}
.xd2_c00286{left:407.733333pt;}
.xa5_c00286{left:408.933333pt;}
.x111_c00286{left:409.866667pt;}
.x66_c00286{left:410.933333pt;}
.xb4_c00286{left:413.466667pt;}
.x54_c00286{left:415.333333pt;}
.x9d_c00286{left:417.066667pt;}
.x2b_c00286{left:419.866667pt;}
.x47_c00286{left:421.333333pt;}
.x103_c00286{left:422.400000pt;}
.x1c_c00286{left:427.200000pt;}
.x11a_c00286{left:428.400000pt;}
.x128_c00286{left:430.533333pt;}
.xdf_c00286{left:431.733333pt;}
.xfc_c00286{left:434.666667pt;}
.x6c_c00286{left:435.866667pt;}
.x92_c00286{left:438.266667pt;}
.x122_c00286{left:441.066667pt;}
.x67_c00286{left:442.000000pt;}
.x3a_c00286{left:444.000000pt;}
.xc4_c00286{left:448.800000pt;}
.xaf_c00286{left:450.800000pt;}
.xa6_c00286{left:452.800000pt;}
.xfd_c00286{left:453.866667pt;}
.x5c_c00286{left:455.333333pt;}
.x48_c00286{left:457.466667pt;}
.x93_c00286{left:458.800000pt;}
.x11b_c00286{left:460.400000pt;}
.xa_c00286{left:463.200000pt;}
.x1d_c00286{left:466.266667pt;}
.x3b_c00286{left:468.666667pt;}
.x9e_c00286{left:469.600000pt;}
.x78_c00286{left:470.800000pt;}
.x2c_c00286{left:476.533333pt;}
.xec_c00286{left:480.000000pt;}
.x6d_c00286{left:481.200000pt;}
.xb_c00286{left:483.066667pt;}
.xa7_c00286{left:486.400000pt;}
.x2d_c00286{left:490.266667pt;}
.x55_c00286{left:491.200000pt;}
.x94_c00286{left:492.666667pt;}
.xe6_c00286{left:494.133333pt;}
.xf2_c00286{left:495.333333pt;}
.xd3_c00286{left:496.400000pt;}
.x49_c00286{left:499.733333pt;}
.xcb_c00286{left:501.333333pt;}
.x87_c00286{left:502.666667pt;}
.xbe_c00286{left:504.400000pt;}
.x1e_c00286{left:507.466667pt;}
.x9f_c00286{left:510.266667pt;}
.x95_c00286{left:511.866667pt;}
.x6e_c00286{left:514.133333pt;}
.x79_c00286{left:515.600000pt;}
.x10d_c00286{left:517.733333pt;}
.xb0_c00286{left:519.066667pt;}
.x11c_c00286{left:522.800000pt;}
.x3c_c00286{left:523.733333pt;}
.x5d_c00286{left:525.733333pt;}
.xe7_c00286{left:527.066667pt;}
.x109_c00286{left:529.066667pt;}
.x2e_c00286{left:530.000000pt;}
.x115_c00286{left:531.333333pt;}
.x6f_c00286{left:532.666667pt;}
.x56_c00286{left:534.133333pt;}
.xd8_c00286{left:535.733333pt;}
.x96_c00286{left:537.733333pt;}
.x104_c00286{left:538.933333pt;}
.xc_c00286{left:540.666667pt;}
.x4a_c00286{left:544.266667pt;}
.x7a_c00286{left:546.666667pt;}
.xb5_c00286{left:549.466667pt;}
.x1f_c00286{left:551.333333pt;}
.x2f_c00286{left:552.666667pt;}
.xed_c00286{left:553.600000pt;}
.x70_c00286{left:555.733333pt;}
.xd_c00286{left:558.533333pt;}
.x5e_c00286{left:560.000000pt;}
.xcc_c00286{left:561.866667pt;}
.x88_c00286{left:562.800000pt;}
.x105_c00286{left:564.266667pt;}
.x20_c00286{left:566.000000pt;}
.x10e_c00286{left:568.933333pt;}
.xee_c00286{left:570.933333pt;}
.x30_c00286{left:573.200000pt;}
.xe3_c00286{left:574.800000pt;}
.xa0_c00286{left:575.866667pt;}
.xe8_c00286{left:578.266667pt;}
.x4b_c00286{left:579.200000pt;}
.x123_c00286{left:581.466667pt;}
.xf3_c00286{left:583.866667pt;}
.xff_c00286{left:585.200000pt;}
.x127_c00286{left:586.533333pt;}
.x5f_c00286{left:589.066667pt;}
.x3d_c00286{left:590.000000pt;}
.xe_c00286{left:591.866667pt;}
.x106_c00286{left:593.066667pt;}
.x21_c00286{left:594.800000pt;}
.x68_c00286{left:596.533333pt;}
.x7b_c00286{left:601.733333pt;}
.xef_c00286{left:602.666667pt;}
.xf4_c00286{left:603.733333pt;}
.x10f_c00286{left:605.066667pt;}
.x89_c00286{left:606.000000pt;}
.x3e_c00286{left:607.333333pt;}
.x100_c00286{left:608.933333pt;}
.xbf_c00286{left:611.200000pt;}
.x112_c00286{left:613.066667pt;}
.xe0_c00286{left:615.066667pt;}
.x97_c00286{left:616.400000pt;}
.x22_c00286{left:618.133333pt;}
.xb6_c00286{left:619.600000pt;}
.x7c_c00286{left:620.666667pt;}
.x124_c00286{left:622.400000pt;}
.xf_c00286{left:625.200000pt;}
.xf5_c00286{left:627.466667pt;}
.x69_c00286{left:628.533333pt;}
.x3f_c00286{left:630.000000pt;}
.xa1_c00286{left:631.600000pt;}
.xd9_c00286{left:632.666667pt;}
.x10a_c00286{left:636.533333pt;}
.x31_c00286{left:638.533333pt;}
.xb7_c00286{left:640.400000pt;}
.x4c_c00286{left:644.133333pt;}
.x60_c00286{left:645.333333pt;}
.x125_c00286{left:647.733333pt;}
.x23_c00286{left:649.866667pt;}
.x113_c00286{left:650.800000pt;}
.x116_c00286{left:651.733333pt;}
.x7d_c00286{left:653.600000pt;}
.x32_c00286{left:654.800000pt;}
.xa8_c00286{left:656.000000pt;}
.xda_c00286{left:658.933333pt;}
.xe9_c00286{left:660.133333pt;}
.x8a_c00286{left:666.133333pt;}
.x6a_c00286{left:670.400000pt;}
.x71_c00286{left:671.466667pt;}
.x10_c00286{left:676.666667pt;}
.x101_c00286{left:678.400000pt;}
.x129_c00286{left:680.533333pt;}
.x40_c00286{left:684.133333pt;}
.xf6_c00286{left:685.333333pt;}
.x33_c00286{left:687.466667pt;}
.x57_c00286{left:689.066667pt;}
.x8b_c00286{left:691.733333pt;}
.x11_c00286{left:694.000000pt;}
.x61_c00286{left:698.400000pt;}
.xf7_c00286{left:700.400000pt;}
.x12a_c00286{left:701.333333pt;}
.x7e_c00286{left:702.266667pt;}
.x98_c00286{left:704.666667pt;}
.xe1_c00286{left:708.266667pt;}
}





/* 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_c00287 {
    display:none;
  }
  .loading-indicator_c00287.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00287 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_c00287 { 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_c00287" -> "#page-container .classname_c00287")
 */
.pf_c00287 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00287 { /* 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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00287 { /* 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_c00287 { /* 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_c00287 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00287 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00287 {overflow:visible;}
  }
}
.c_c00287 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00287 { /* 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_c00287:after { /* webkit #35443 */
  content: '';
}
.t_c00287:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00287 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 */
}
.__c00287 { /* 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_c00287 { /* info for Javascript */
  display:none;
}
.l_c00287 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00287 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00287 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00287: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_c00287 {
    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_c00287.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00287.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_c00287 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00287{font-family:sans-serif;visibility:hidden;}
.sc__c00287{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
}
.y0_c00287{bottom:0.000000px;}
.h0_c00287{height:1166.759949px;}
.h1_c00287{height:1167.000000px;}
.w0_c00287{width:918.720063px;}
.w1_c00287{width:918.750000px;}
.x0_c00287{left:0.000000px;}
@media print{
.y0_c00287{bottom:0.000000pt;}
.h0_c00287{height:1037.119955pt;}
.h1_c00287{height:1037.333333pt;}
.w0_c00287{width:816.640056pt;}
.w1_c00287{width:816.666667pt;}
.x0_c00287{left:0.000000pt;}
}





/* 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_c00288 {
    display:none;
  }
  .loading-indicator_c00288.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00288 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_c00288 { 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_c00288" -> "#page-container .classname_c00288")
 */
.pf_c00288 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00288 { /* 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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00288 { /* 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_c00288 { /* 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_c00288 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00288 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00288 {overflow:visible;}
  }
}
.c_c00288 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00288 { /* 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_c00288:after { /* webkit #35443 */
  content: '';
}
.t_c00288:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00288 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 */
}
.__c00288 { /* 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_c00288 { /* info for Javascript */
  display:none;
}
.l_c00288 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00288 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00288 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00288: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_c00288 {
    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_c00288.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00288.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_c00288 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00288{font-family:sans-serif;visibility:hidden;}
.sc__c00288{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
}
.y0_c00288{bottom:0.000000px;}
.h0_c00288{height:1166.759949px;}
.h1_c00288{height:1167.000000px;}
.w0_c00288{width:918.720063px;}
.w1_c00288{width:918.750000px;}
.x0_c00288{left:0.000000px;}
@media print{
.y0_c00288{bottom:0.000000pt;}
.h0_c00288{height:1037.119955pt;}
.h1_c00288{height:1037.333333pt;}
.w0_c00288{width:816.640056pt;}
.w1_c00288{width:816.666667pt;}
.x0_c00288{left:0.000000pt;}
}





/* 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_c00289 {
    display:none;
  }
  .loading-indicator_c00289.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00289 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_c00289 { 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_c00289" -> "#page-container .classname_c00289")
 */
.pf_c00289 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00289 { /* 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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00289 { /* 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_c00289 { /* 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_c00289 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00289 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00289 {overflow:visible;}
  }
}
.c_c00289 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00289 { /* 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_c00289:after { /* webkit #35443 */
  content: '';
}
.t_c00289:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00289 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 */
}
.__c00289 { /* 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_c00289 { /* info for Javascript */
  display:none;
}
.l_c00289 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00289 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00289 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00289: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_c00289 {
    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_c00289.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00289.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_c00289 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00289{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00289;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.000000;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;}
.m5e_c00289{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m69_c00289{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m63_c00289{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m16_c00289{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00289{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00289{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m37_c00289{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m79_c00289{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m44_c00289{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m28_c00289{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m88_c00289{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00289{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00289{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8_c00289{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m58_c00289{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00289{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00289{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m21_c00289{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m66_c00289{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m55_c00289{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00289{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00289{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00289{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m77_c00289{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2_c00289{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m94_c00289{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00289{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00289{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m96_c00289{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00289{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00289{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m45_c00289{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00289{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m41_c00289{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m86_c00289{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m32_c00289{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m95_c00289{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m49_c00289{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00289{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m39_c00289{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00289{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me_c00289{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m31_c00289{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m78_c00289{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m81_c00289{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00289{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m36_c00289{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00289{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m84_c00289{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m11_c00289{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m97_c00289{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00289{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00289{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m83_c00289{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00289{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00289{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m43_c00289{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00289{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m29_c00289{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m26_c00289{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf_c00289{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00289{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m75_c00289{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m65_c00289{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00289{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m98_c00289{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m19_c00289{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m99_c00289{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00289{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m24_c00289{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m50_c00289{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m35_c00289{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00289{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m53_c00289{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m54_c00289{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m59_c00289{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma_c00289{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00289{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00289{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00289{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m89_c00289{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m25_c00289{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00289{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m93_c00289{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m22_c00289{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m14_c00289{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00289{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m64_c00289{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00289{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m18_c00289{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00289{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m17_c00289{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00289{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m40_c00289{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m87_c00289{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00289{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb_c00289{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00289{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md_c00289{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00289{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00289{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m85_c00289{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00289{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m67_c00289{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00289{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m51_c00289{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m38_c00289{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m76_c00289{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m34_c00289{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00289{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m15_c00289{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00289{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00289{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00289{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m82_c00289{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m70_c00289{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00289{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00289{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m56_c00289{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00289{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00289{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00289{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m73_c00289{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m90_c00289{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);}
.m48_c00289{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00289{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m62_c00289{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00289{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m92_c00289{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00289{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00289{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m74_c00289{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00289{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00289{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m61_c00289{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mc_c00289{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m46_c00289{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m72_c00289{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12_c00289{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00289{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00289{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00289{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00289{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6_c00289{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00289{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1_c00289{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m68_c00289{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00289{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m10_c00289{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m47_c00289{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m57_c00289{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00289{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00289{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m60_c00289{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m20_c00289{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00289{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00289{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00289{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m71_c00289{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00289{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00289{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m91_c00289{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00289{vertical-align:0.000000px;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{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__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00289{word-spacing:-13.648649px;}
.wsa_c00289{word-spacing:-8.333333px;}
.ws2_c00289{word-spacing:-6.590909px;}
.ws0_c00289{word-spacing:-6.447368px;}
.ws3_c00289{word-spacing:-5.441176px;}
.ws6_c00289{word-spacing:-4.570312px;}
.ws4_c00289{word-spacing:-3.461538px;}
.ws9_c00289{word-spacing:-2.622108px;}
.wsb_c00289{word-spacing:0.000000px;}
.ws5_c00289{word-spacing:2.840909px;}
.ws8_c00289{word-spacing:3.157895px;}
.ws7_c00289{word-spacing:15.526316px;}
.fc0_c00289{color:transparent;}
.fs0_c00289{font-size:60.000000px;}
.y0_c00289{bottom:0.000000px;}
.y2b_c00289{bottom:153.000000px;}
.y2a_c00289{bottom:168.900000px;}
.y29_c00289{bottom:184.350000px;}
.y28_c00289{bottom:230.400000px;}
.y27_c00289{bottom:250.050000px;}
.y26_c00289{bottom:270.600000px;}
.y25_c00289{bottom:290.700000px;}
.y24_c00289{bottom:310.500000px;}
.y23_c00289{bottom:330.600000px;}
.y22_c00289{bottom:350.400000px;}
.y21_c00289{bottom:370.500000px;}
.y20_c00289{bottom:390.900000px;}
.y1f_c00289{bottom:410.700000px;}
.y1e_c00289{bottom:430.800000px;}
.y1d_c00289{bottom:450.900000px;}
.y1c_c00289{bottom:471.000000px;}
.y1b_c00289{bottom:490.800000px;}
.y1a_c00289{bottom:511.350000px;}
.y19_c00289{bottom:531.150000px;}
.y18_c00289{bottom:550.950000px;}
.y17_c00289{bottom:571.050000px;}
.y16_c00289{bottom:591.150000px;}
.y15_c00289{bottom:611.250000px;}
.y14_c00289{bottom:631.800000px;}
.y13_c00289{bottom:651.600000px;}
.y12_c00289{bottom:671.700000px;}
.y11_c00289{bottom:691.500000px;}
.y10_c00289{bottom:711.300000px;}
.yf_c00289{bottom:751.950000px;}
.ye_c00289{bottom:772.050000px;}
.yd_c00289{bottom:792.150000px;}
.yc_c00289{bottom:812.250000px;}
.yb_c00289{bottom:832.350000px;}
.ya_c00289{bottom:852.450000px;}
.y9_c00289{bottom:872.250000px;}
.y8_c00289{bottom:892.350000px;}
.y7_c00289{bottom:912.150000px;}
.y6_c00289{bottom:932.250000px;}
.y5_c00289{bottom:952.350000px;}
.y4_c00289{bottom:972.450000px;}
.y3_c00289{bottom:992.550000px;}
.y2_c00289{bottom:1012.650000px;}
.y1_c00289{bottom:1050.900000px;}
.h2_c00289{height:60.000000px;}
.h0_c00289{height:1166.759949px;}
.h1_c00289{height:1167.000000px;}
.w0_c00289{width:918.720063px;}
.w1_c00289{width:918.750000px;}
.x0_c00289{left:0.000000px;}
.x124_c00289{left:101.550000px;}
.x109_c00289{left:102.600000px;}
.x68_c00289{left:103.650000px;}
.x3_c00289{left:104.700000px;}
.x10a_c00289{left:121.650000px;}
.x129_c00289{left:123.600000px;}
.x113_c00289{left:127.650000px;}
.x8b_c00289{left:129.150000px;}
.x4f_c00289{left:131.850000px;}
.x9f_c00289{left:133.650000px;}
.xb0_c00289{left:135.750000px;}
.xf9_c00289{left:137.400000px;}
.x33_c00289{left:140.700000px;}
.x4_c00289{left:142.800000px;}
.x5d_c00289{left:145.200000px;}
.xa6_c00289{left:146.400000px;}
.x125_c00289{left:148.050000px;}
.x10b_c00289{left:150.150000px;}
.x76_c00289{left:151.350000px;}
.x82_c00289{left:153.300000px;}
.xe1_c00289{left:157.650000px;}
.x8c_c00289{left:159.450000px;}
.x131_c00289{left:162.150000px;}
.x5_c00289{left:163.350000px;}
.x16_c00289{left:165.450000px;}
.xa7_c00289{left:170.550000px;}
.x137_c00289{left:172.500000px;}
.x34_c00289{left:174.600000px;}
.x69_c00289{left:177.150000px;}
.xa0_c00289{left:179.100000px;}
.x42_c00289{left:180.150000px;}
.xda_c00289{left:182.550000px;}
.x17_c00289{left:183.750000px;}
.x26_c00289{left:186.600000px;}
.x8d_c00289{left:187.950000px;}
.xe9_c00289{left:189.450000px;}
.x11e_c00289{left:193.500000px;}
.x50_c00289{left:194.850000px;}
.x35_c00289{left:196.950000px;}
.xb1_c00289{left:200.250000px;}
.x10c_c00289{left:201.300000px;}
.x43_c00289{left:203.250000px;}
.x12a_c00289{left:205.950000px;}
.x6_c00289{left:207.300000px;}
.xa1_c00289{left:209.400000px;}
.x18_c00289{left:210.750000px;}
.x98_c00289{left:213.300000px;}
.xd4_c00289{left:216.300000px;}
.x126_c00289{left:217.950000px;}
.x8e_c00289{left:220.950000px;}
.x13b_c00289{left:222.900000px;}
.x5e_c00289{left:224.400000px;}
.x7_c00289{left:227.850000px;}
.xdb_c00289{left:229.350000px;}
.x51_c00289{left:231.600000px;}
.xa8_c00289{left:233.250000px;}
.x19_c00289{left:235.950000px;}
.x83_c00289{left:238.950000px;}
.xbb_c00289{left:243.000000px;}
.xfa_c00289{left:244.650000px;}
.xd5_c00289{left:246.900000px;}
.xb2_c00289{left:248.100000px;}
.x6a_c00289{left:249.750000px;}
.x27_c00289{left:251.400000px;}
.xc5_c00289{left:254.400000px;}
.x138_c00289{left:255.900000px;}
.x5f_c00289{left:257.850000px;}
.x101_c00289{left:259.500000px;}
.xa2_c00289{left:261.900000px;}
.x77_c00289{left:265.500000px;}
.x11f_c00289{left:266.550000px;}
.x8_c00289{left:268.950000px;}
.x36_c00289{left:272.850000px;}
.xbc_c00289{left:274.650000px;}
.x12b_c00289{left:275.850000px;}
.x8f_c00289{left:277.950000px;}
.x132_c00289{left:279.150000px;}
.x52_c00289{left:280.500000px;}
.x44_c00289{left:283.800000px;}
.x1a_c00289{left:286.350000px;}
.x9_c00289{left:290.850000px;}
.x10d_c00289{left:292.650000px;}
.x60_c00289{left:294.600000px;}
.x28_c00289{left:295.650000px;}
.x120_c00289{left:297.150000px;}
.xea_c00289{left:299.250000px;}
.xd6_c00289{left:300.600000px;}
.x6b_c00289{left:301.650000px;}
.x1b_c00289{left:302.850000px;}
.x78_c00289{left:304.050000px;}
.x105_c00289{left:305.550000px;}
.x45_c00289{left:307.200000px;}
.x37_c00289{left:309.150000px;}
.xfd_c00289{left:311.250000px;}
.xb3_c00289{left:316.500000px;}
.x12c_c00289{left:318.000000px;}
.xf0_c00289{left:320.400000px;}
.xa_c00289{left:322.200000px;}
.x6c_c00289{left:324.000000px;}
.xc1_c00289{left:325.050000px;}
.x99_c00289{left:327.750000px;}
.xcf_c00289{left:329.100000px;}
.x114_c00289{left:331.800000px;}
.xdc_c00289{left:333.000000px;}
.xeb_c00289{left:334.500000px;}
.x1c_c00289{left:337.350000px;}
.xb4_c00289{left:338.400000px;}
.x46_c00289{left:340.350000px;}
.xa9_c00289{left:342.000000px;}
.x53_c00289{left:345.600000px;}
.x12d_c00289{left:346.800000px;}
.x38_c00289{left:349.800000px;}
.xb_c00289{left:351.300000px;}
.xbd_c00289{left:352.800000px;}
.x29_c00289{left:355.350000px;}
.x61_c00289{left:356.850000px;}
.xfb_c00289{left:358.350000px;}
.x47_c00289{left:360.450000px;}
.xf7_c00289{left:361.950000px;}
.x54_c00289{left:363.300000px;}
.x6d_c00289{left:365.400000px;}
.xb5_c00289{left:367.200000px;}
.x11c_c00289{left:370.200000px;}
.x2a_c00289{left:372.300000px;}
.xd0_c00289{left:373.800000px;}
.xc_c00289{left:375.000000px;}
.x1d_c00289{left:377.250000px;}
.x121_c00289{left:378.600000px;}
.x55_c00289{left:381.600000px;}
.x79_c00289{left:383.550000px;}
.x6e_c00289{left:386.250000px;}
.x127_c00289{left:388.350000px;}
.x39_c00289{left:390.150000px;}
.x90_c00289{left:393.150000px;}
.xe2_c00289{left:394.200000px;}
.x2b_c00289{left:395.400000px;}
.xc2_c00289{left:396.600000px;}
.x139_c00289{left:400.050000px;}
.x1_c00289{left:401.100000px;}
.xd_c00289{left:403.500000px;}
.x115_c00289{left:404.550000px;}
.xc6_c00289{left:405.600000px;}
.xdd_c00289{left:409.050000px;}
.x84_c00289{left:410.850000px;}
.x62_c00289{left:412.950000px;}
.x3a_c00289{left:414.300000px;}
.x11d_c00289{left:418.050000px;}
.xd1_c00289{left:419.100000px;}
.xc7_c00289{left:420.300000px;}
.x1e_c00289{left:424.050000px;}
.xd7_c00289{left:425.250000px;}
.xaa_c00289{left:426.900000px;}
.x7a_c00289{left:428.250000px;}
.x116_c00289{left:430.050000px;}
.x13c_c00289{left:431.100000px;}
.x48_c00289{left:432.450000px;}
.xec_c00289{left:434.550000px;}
.xa3_c00289{left:435.900000px;}
.x9a_c00289{left:437.250000px;}
.x6f_c00289{left:439.500000px;}
.xd2_c00289{left:442.500000px;}
.x56_c00289{left:443.550000px;}
.x91_c00289{left:445.350000px;}
.x3b_c00289{left:447.450000px;}
.xf1_c00289{left:448.650000px;}
.xde_c00289{left:449.700000px;}
.x7b_c00289{left:451.350000px;}
.xe_c00289{left:453.600000px;}
.x9b_c00289{left:457.350000px;}
.xe3_c00289{left:458.700000px;}
.x106_c00289{left:461.700000px;}
.x1f_c00289{left:463.650000px;}
.x70_c00289{left:465.000000px;}
.x85_c00289{left:466.350000px;}
.xc8_c00289{left:470.400000px;}
.xb6_c00289{left:471.600000px;}
.x102_c00289{left:472.950000px;}
.x57_c00289{left:477.000000px;}
.x13d_c00289{left:480.000000px;}
.xa4_c00289{left:481.200000px;}
.x107_c00289{left:482.250000px;}
.x63_c00289{left:483.450000px;}
.xf_c00289{left:484.950000px;}
.xbe_c00289{left:486.000000px;}
.x86_c00289{left:487.200000px;}
.x49_c00289{left:488.550000px;}
.xc9_c00289{left:490.200000px;}
.x133_c00289{left:491.700000px;}
.x13e_c00289{left:494.400000px;}
.xf2_c00289{left:495.750000px;}
.xe4_c00289{left:496.800000px;}
.xfe_c00289{left:498.150000px;}
.x71_c00289{left:499.500000px;}
.x117_c00289{left:500.550000px;}
.xd8_c00289{left:502.650000px;}
.x58_c00289{left:504.750000px;}
.x64_c00289{left:506.100000px;}
.x4a_c00289{left:508.650000px;}
.x7c_c00289{left:509.700000px;}
.x12e_c00289{left:511.050000px;}
.x2c_c00289{left:514.200000px;}
.x3c_c00289{left:516.150000px;}
.xab_c00289{left:520.050000px;}
.x92_c00289{left:524.850000px;}
.x20_c00289{left:527.400000px;}
.x10_c00289{left:529.200000px;}
.x87_c00289{left:530.700000px;}
.x118_c00289{left:532.950000px;}
.x65_c00289{left:534.600000px;}
.x4b_c00289{left:536.700000px;}
.x2d_c00289{left:539.400000px;}
.x3d_c00289{left:541.350000px;}
.x72_c00289{left:543.450000px;}
.xed_c00289{left:545.400000px;}
.x9c_c00289{left:547.800000px;}
.x59_c00289{left:549.000000px;}
.x122_c00289{left:550.200000px;}
.x119_c00289{left:552.750000px;}
.xca_c00289{left:555.000000px;}
.x88_c00289{left:556.200000px;}
.xdf_c00289{left:557.250000px;}
.x134_c00289{left:561.900000px;}
.xbf_c00289{left:563.400000px;}
.x5a_c00289{left:564.900000px;}
.x7d_c00289{left:567.000000px;}
.xc3_c00289{left:568.350000px;}
.xe5_c00289{left:570.300000px;}
.x10e_c00289{left:572.700000px;}
.x3e_c00289{left:574.050000px;}
.x11_c00289{left:575.700000px;}
.xee_c00289{left:576.750000px;}
.x21_c00289{left:577.800000px;}
.x93_c00289{left:579.150000px;}
.xf3_c00289{left:581.400000px;}
.x7e_c00289{left:585.000000px;}
.x12f_c00289{left:589.050000px;}
.xac_c00289{left:591.300000px;}
.x4c_c00289{left:594.300000px;}
.xe6_c00289{left:596.550000px;}
.xfc_c00289{left:601.200000px;}
.x73_c00289{left:603.150000px;}
.x3f_c00289{left:604.350000px;}
.x89_c00289{left:605.850000px;}
.xcb_c00289{left:607.200000px;}
.x7f_c00289{left:610.500000px;}
.xd3_c00289{left:611.700000px;}
.x4d_c00289{left:613.800000px;}
.x135_c00289{left:615.150000px;}
.x12_c00289{left:617.400000px;}
.x13a_c00289{left:618.600000px;}
.x108_c00289{left:620.700000px;}
.x94_c00289{left:622.350000px;}
.xc0_c00289{left:624.000000px;}
.x2e_c00289{left:626.100000px;}
.x13f_c00289{left:627.750000px;}
.xb7_c00289{left:629.700000px;}
.xef_c00289{left:631.200000px;}
.x22_c00289{left:632.850000px;}
.xf4_c00289{left:634.350000px;}
.x95_c00289{left:640.050000px;}
.x8a_c00289{left:641.850000px;}
.x2f_c00289{left:643.350000px;}
.xcc_c00289{left:645.300000px;}
.x66_c00289{left:648.750000px;}
.x23_c00289{left:650.100000px;}
.xd9_c00289{left:652.050000px;}
.xb8_c00289{left:654.150000px;}
.x128_c00289{left:655.200000px;}
.xe7_c00289{left:656.700000px;}
.x130_c00289{left:657.900000px;}
.x4e_c00289{left:659.550000px;}
.x13_c00289{left:660.900000px;}
.x80_c00289{left:662.400000px;}
.xff_c00289{left:663.450000px;}
.x96_c00289{left:665.550000px;}
.x10f_c00289{left:669.150000px;}
.x5b_c00289{left:670.800000px;}
.x74_c00289{left:673.350000px;}
.xcd_c00289{left:676.200000px;}
.xe8_c00289{left:679.350000px;}
.x30_c00289{left:681.150000px;}
.xad_c00289{left:683.400000px;}
.xc4_c00289{left:685.650000px;}
.x110_c00289{left:687.150000px;}
.x81_c00289{left:691.950000px;}
.x136_c00289{left:695.100000px;}
.xf5_c00289{left:696.600000px;}
.x9d_c00289{left:698.400000px;}
.x24_c00289{left:699.450000px;}
.x40_c00289{left:700.500000px;}
.x75_c00289{left:702.900000px;}
.xe0_c00289{left:704.400000px;}
.x100_c00289{left:705.600000px;}
.x97_c00289{left:707.700000px;}
.x103_c00289{left:710.250000px;}
.x111_c00289{left:714.450000px;}
.xce_c00289{left:716.100000px;}
.x11a_c00289{left:718.050000px;}
.xae_c00289{left:720.150000px;}
.xf6_c00289{left:721.500000px;}
.x41_c00289{left:723.150000px;}
.x31_c00289{left:724.650000px;}
.xf8_c00289{left:725.700000px;}
.x14_c00289{left:726.750000px;}
.xb9_c00289{left:729.450000px;}
.x9e_c00289{left:733.350000px;}
.x67_c00289{left:735.150000px;}
.x104_c00289{left:738.300000px;}
.xa5_c00289{left:739.650000px;}
.x32_c00289{left:741.900000px;}
.x123_c00289{left:743.850000px;}
.x2_c00289{left:745.950000px;}
.x5c_c00289{left:747.450000px;}
.xba_c00289{left:749.550000px;}
.x15_c00289{left:751.200000px;}
.x11b_c00289{left:752.250000px;}
.x25_c00289{left:754.950000px;}
.x112_c00289{left:756.150000px;}
.xaf_c00289{left:757.200000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws1_c00289{word-spacing:-12.132132pt;}
.wsa_c00289{word-spacing:-7.407407pt;}
.ws2_c00289{word-spacing:-5.858586pt;}
.ws0_c00289{word-spacing:-5.730994pt;}
.ws3_c00289{word-spacing:-4.836601pt;}
.ws6_c00289{word-spacing:-4.062500pt;}
.ws4_c00289{word-spacing:-3.076923pt;}
.ws9_c00289{word-spacing:-2.330763pt;}
.wsb_c00289{word-spacing:0.000000pt;}
.ws5_c00289{word-spacing:2.525253pt;}
.ws8_c00289{word-spacing:2.807018pt;}
.ws7_c00289{word-spacing:13.801170pt;}
.fs0_c00289{font-size:53.333333pt;}
.y0_c00289{bottom:0.000000pt;}
.y2b_c00289{bottom:136.000000pt;}
.y2a_c00289{bottom:150.133333pt;}
.y29_c00289{bottom:163.866667pt;}
.y28_c00289{bottom:204.800000pt;}
.y27_c00289{bottom:222.266667pt;}
.y26_c00289{bottom:240.533333pt;}
.y25_c00289{bottom:258.400000pt;}
.y24_c00289{bottom:276.000000pt;}
.y23_c00289{bottom:293.866667pt;}
.y22_c00289{bottom:311.466667pt;}
.y21_c00289{bottom:329.333333pt;}
.y20_c00289{bottom:347.466667pt;}
.y1f_c00289{bottom:365.066667pt;}
.y1e_c00289{bottom:382.933333pt;}
.y1d_c00289{bottom:400.800000pt;}
.y1c_c00289{bottom:418.666667pt;}
.y1b_c00289{bottom:436.266667pt;}
.y1a_c00289{bottom:454.533333pt;}
.y19_c00289{bottom:472.133333pt;}
.y18_c00289{bottom:489.733333pt;}
.y17_c00289{bottom:507.600000pt;}
.y16_c00289{bottom:525.466667pt;}
.y15_c00289{bottom:543.333333pt;}
.y14_c00289{bottom:561.600000pt;}
.y13_c00289{bottom:579.200000pt;}
.y12_c00289{bottom:597.066667pt;}
.y11_c00289{bottom:614.666667pt;}
.y10_c00289{bottom:632.266667pt;}
.yf_c00289{bottom:668.400000pt;}
.ye_c00289{bottom:686.266667pt;}
.yd_c00289{bottom:704.133333pt;}
.yc_c00289{bottom:722.000000pt;}
.yb_c00289{bottom:739.866667pt;}
.ya_c00289{bottom:757.733333pt;}
.y9_c00289{bottom:775.333333pt;}
.y8_c00289{bottom:793.200000pt;}
.y7_c00289{bottom:810.800000pt;}
.y6_c00289{bottom:828.666667pt;}
.y5_c00289{bottom:846.533333pt;}
.y4_c00289{bottom:864.400000pt;}
.y3_c00289{bottom:882.266667pt;}
.y2_c00289{bottom:900.133333pt;}
.y1_c00289{bottom:934.133333pt;}
.h2_c00289{height:53.333333pt;}
.h0_c00289{height:1037.119955pt;}
.h1_c00289{height:1037.333333pt;}
.w0_c00289{width:816.640056pt;}
.w1_c00289{width:816.666667pt;}
.x0_c00289{left:0.000000pt;}
.x124_c00289{left:90.266667pt;}
.x109_c00289{left:91.200000pt;}
.x68_c00289{left:92.133333pt;}
.x3_c00289{left:93.066667pt;}
.x10a_c00289{left:108.133333pt;}
.x129_c00289{left:109.866667pt;}
.x113_c00289{left:113.466667pt;}
.x8b_c00289{left:114.800000pt;}
.x4f_c00289{left:117.200000pt;}
.x9f_c00289{left:118.800000pt;}
.xb0_c00289{left:120.666667pt;}
.xf9_c00289{left:122.133333pt;}
.x33_c00289{left:125.066667pt;}
.x4_c00289{left:126.933333pt;}
.x5d_c00289{left:129.066667pt;}
.xa6_c00289{left:130.133333pt;}
.x125_c00289{left:131.600000pt;}
.x10b_c00289{left:133.466667pt;}
.x76_c00289{left:134.533333pt;}
.x82_c00289{left:136.266667pt;}
.xe1_c00289{left:140.133333pt;}
.x8c_c00289{left:141.733333pt;}
.x131_c00289{left:144.133333pt;}
.x5_c00289{left:145.200000pt;}
.x16_c00289{left:147.066667pt;}
.xa7_c00289{left:151.600000pt;}
.x137_c00289{left:153.333333pt;}
.x34_c00289{left:155.200000pt;}
.x69_c00289{left:157.466667pt;}
.xa0_c00289{left:159.200000pt;}
.x42_c00289{left:160.133333pt;}
.xda_c00289{left:162.266667pt;}
.x17_c00289{left:163.333333pt;}
.x26_c00289{left:165.866667pt;}
.x8d_c00289{left:167.066667pt;}
.xe9_c00289{left:168.400000pt;}
.x11e_c00289{left:172.000000pt;}
.x50_c00289{left:173.200000pt;}
.x35_c00289{left:175.066667pt;}
.xb1_c00289{left:178.000000pt;}
.x10c_c00289{left:178.933333pt;}
.x43_c00289{left:180.666667pt;}
.x12a_c00289{left:183.066667pt;}
.x6_c00289{left:184.266667pt;}
.xa1_c00289{left:186.133333pt;}
.x18_c00289{left:187.333333pt;}
.x98_c00289{left:189.600000pt;}
.xd4_c00289{left:192.266667pt;}
.x126_c00289{left:193.733333pt;}
.x8e_c00289{left:196.400000pt;}
.x13b_c00289{left:198.133333pt;}
.x5e_c00289{left:199.466667pt;}
.x7_c00289{left:202.533333pt;}
.xdb_c00289{left:203.866667pt;}
.x51_c00289{left:205.866667pt;}
.xa8_c00289{left:207.333333pt;}
.x19_c00289{left:209.733333pt;}
.x83_c00289{left:212.400000pt;}
.xbb_c00289{left:216.000000pt;}
.xfa_c00289{left:217.466667pt;}
.xd5_c00289{left:219.466667pt;}
.xb2_c00289{left:220.533333pt;}
.x6a_c00289{left:222.000000pt;}
.x27_c00289{left:223.466667pt;}
.xc5_c00289{left:226.133333pt;}
.x138_c00289{left:227.466667pt;}
.x5f_c00289{left:229.200000pt;}
.x101_c00289{left:230.666667pt;}
.xa2_c00289{left:232.800000pt;}
.x77_c00289{left:236.000000pt;}
.x11f_c00289{left:236.933333pt;}
.x8_c00289{left:239.066667pt;}
.x36_c00289{left:242.533333pt;}
.xbc_c00289{left:244.133333pt;}
.x12b_c00289{left:245.200000pt;}
.x8f_c00289{left:247.066667pt;}
.x132_c00289{left:248.133333pt;}
.x52_c00289{left:249.333333pt;}
.x44_c00289{left:252.266667pt;}
.x1a_c00289{left:254.533333pt;}
.x9_c00289{left:258.533333pt;}
.x10d_c00289{left:260.133333pt;}
.x60_c00289{left:261.866667pt;}
.x28_c00289{left:262.800000pt;}
.x120_c00289{left:264.133333pt;}
.xea_c00289{left:266.000000pt;}
.xd6_c00289{left:267.200000pt;}
.x6b_c00289{left:268.133333pt;}
.x1b_c00289{left:269.200000pt;}
.x78_c00289{left:270.266667pt;}
.x105_c00289{left:271.600000pt;}
.x45_c00289{left:273.066667pt;}
.x37_c00289{left:274.800000pt;}
.xfd_c00289{left:276.666667pt;}
.xb3_c00289{left:281.333333pt;}
.x12c_c00289{left:282.666667pt;}
.xf0_c00289{left:284.800000pt;}
.xa_c00289{left:286.400000pt;}
.x6c_c00289{left:288.000000pt;}
.xc1_c00289{left:288.933333pt;}
.x99_c00289{left:291.333333pt;}
.xcf_c00289{left:292.533333pt;}
.x114_c00289{left:294.933333pt;}
.xdc_c00289{left:296.000000pt;}
.xeb_c00289{left:297.333333pt;}
.x1c_c00289{left:299.866667pt;}
.xb4_c00289{left:300.800000pt;}
.x46_c00289{left:302.533333pt;}
.xa9_c00289{left:304.000000pt;}
.x53_c00289{left:307.200000pt;}
.x12d_c00289{left:308.266667pt;}
.x38_c00289{left:310.933333pt;}
.xb_c00289{left:312.266667pt;}
.xbd_c00289{left:313.600000pt;}
.x29_c00289{left:315.866667pt;}
.x61_c00289{left:317.200000pt;}
.xfb_c00289{left:318.533333pt;}
.x47_c00289{left:320.400000pt;}
.xf7_c00289{left:321.733333pt;}
.x54_c00289{left:322.933333pt;}
.x6d_c00289{left:324.800000pt;}
.xb5_c00289{left:326.400000pt;}
.x11c_c00289{left:329.066667pt;}
.x2a_c00289{left:330.933333pt;}
.xd0_c00289{left:332.266667pt;}
.xc_c00289{left:333.333333pt;}
.x1d_c00289{left:335.333333pt;}
.x121_c00289{left:336.533333pt;}
.x55_c00289{left:339.200000pt;}
.x79_c00289{left:340.933333pt;}
.x6e_c00289{left:343.333333pt;}
.x127_c00289{left:345.200000pt;}
.x39_c00289{left:346.800000pt;}
.x90_c00289{left:349.466667pt;}
.xe2_c00289{left:350.400000pt;}
.x2b_c00289{left:351.466667pt;}
.xc2_c00289{left:352.533333pt;}
.x139_c00289{left:355.600000pt;}
.x1_c00289{left:356.533333pt;}
.xd_c00289{left:358.666667pt;}
.x115_c00289{left:359.600000pt;}
.xc6_c00289{left:360.533333pt;}
.xdd_c00289{left:363.600000pt;}
.x84_c00289{left:365.200000pt;}
.x62_c00289{left:367.066667pt;}
.x3a_c00289{left:368.266667pt;}
.x11d_c00289{left:371.600000pt;}
.xd1_c00289{left:372.533333pt;}
.xc7_c00289{left:373.600000pt;}
.x1e_c00289{left:376.933333pt;}
.xd7_c00289{left:378.000000pt;}
.xaa_c00289{left:379.466667pt;}
.x7a_c00289{left:380.666667pt;}
.x116_c00289{left:382.266667pt;}
.x13c_c00289{left:383.200000pt;}
.x48_c00289{left:384.400000pt;}
.xec_c00289{left:386.266667pt;}
.xa3_c00289{left:387.466667pt;}
.x9a_c00289{left:388.666667pt;}
.x6f_c00289{left:390.666667pt;}
.xd2_c00289{left:393.333333pt;}
.x56_c00289{left:394.266667pt;}
.x91_c00289{left:395.866667pt;}
.x3b_c00289{left:397.733333pt;}
.xf1_c00289{left:398.800000pt;}
.xde_c00289{left:399.733333pt;}
.x7b_c00289{left:401.200000pt;}
.xe_c00289{left:403.200000pt;}
.x9b_c00289{left:406.533333pt;}
.xe3_c00289{left:407.733333pt;}
.x106_c00289{left:410.400000pt;}
.x1f_c00289{left:412.133333pt;}
.x70_c00289{left:413.333333pt;}
.x85_c00289{left:414.533333pt;}
.xc8_c00289{left:418.133333pt;}
.xb6_c00289{left:419.200000pt;}
.x102_c00289{left:420.400000pt;}
.x57_c00289{left:424.000000pt;}
.x13d_c00289{left:426.666667pt;}
.xa4_c00289{left:427.733333pt;}
.x107_c00289{left:428.666667pt;}
.x63_c00289{left:429.733333pt;}
.xf_c00289{left:431.066667pt;}
.xbe_c00289{left:432.000000pt;}
.x86_c00289{left:433.066667pt;}
.x49_c00289{left:434.266667pt;}
.xc9_c00289{left:435.733333pt;}
.x133_c00289{left:437.066667pt;}
.x13e_c00289{left:439.466667pt;}
.xf2_c00289{left:440.666667pt;}
.xe4_c00289{left:441.600000pt;}
.xfe_c00289{left:442.800000pt;}
.x71_c00289{left:444.000000pt;}
.x117_c00289{left:444.933333pt;}
.xd8_c00289{left:446.800000pt;}
.x58_c00289{left:448.666667pt;}
.x64_c00289{left:449.866667pt;}
.x4a_c00289{left:452.133333pt;}
.x7c_c00289{left:453.066667pt;}
.x12e_c00289{left:454.266667pt;}
.x2c_c00289{left:457.066667pt;}
.x3c_c00289{left:458.800000pt;}
.xab_c00289{left:462.266667pt;}
.x92_c00289{left:466.533333pt;}
.x20_c00289{left:468.800000pt;}
.x10_c00289{left:470.400000pt;}
.x87_c00289{left:471.733333pt;}
.x118_c00289{left:473.733333pt;}
.x65_c00289{left:475.200000pt;}
.x4b_c00289{left:477.066667pt;}
.x2d_c00289{left:479.466667pt;}
.x3d_c00289{left:481.200000pt;}
.x72_c00289{left:483.066667pt;}
.xed_c00289{left:484.800000pt;}
.x9c_c00289{left:486.933333pt;}
.x59_c00289{left:488.000000pt;}
.x122_c00289{left:489.066667pt;}
.x119_c00289{left:491.333333pt;}
.xca_c00289{left:493.333333pt;}
.x88_c00289{left:494.400000pt;}
.xdf_c00289{left:495.333333pt;}
.x134_c00289{left:499.466667pt;}
.xbf_c00289{left:500.800000pt;}
.x5a_c00289{left:502.133333pt;}
.x7d_c00289{left:504.000000pt;}
.xc3_c00289{left:505.200000pt;}
.xe5_c00289{left:506.933333pt;}
.x10e_c00289{left:509.066667pt;}
.x3e_c00289{left:510.266667pt;}
.x11_c00289{left:511.733333pt;}
.xee_c00289{left:512.666667pt;}
.x21_c00289{left:513.600000pt;}
.x93_c00289{left:514.800000pt;}
.xf3_c00289{left:516.800000pt;}
.x7e_c00289{left:520.000000pt;}
.x12f_c00289{left:523.600000pt;}
.xac_c00289{left:525.600000pt;}
.x4c_c00289{left:528.266667pt;}
.xe6_c00289{left:530.266667pt;}
.xfc_c00289{left:534.400000pt;}
.x73_c00289{left:536.133333pt;}
.x3f_c00289{left:537.200000pt;}
.x89_c00289{left:538.533333pt;}
.xcb_c00289{left:539.733333pt;}
.x7f_c00289{left:542.666667pt;}
.xd3_c00289{left:543.733333pt;}
.x4d_c00289{left:545.600000pt;}
.x135_c00289{left:546.800000pt;}
.x12_c00289{left:548.800000pt;}
.x13a_c00289{left:549.866667pt;}
.x108_c00289{left:551.733333pt;}
.x94_c00289{left:553.200000pt;}
.xc0_c00289{left:554.666667pt;}
.x2e_c00289{left:556.533333pt;}
.x13f_c00289{left:558.000000pt;}
.xb7_c00289{left:559.733333pt;}
.xef_c00289{left:561.066667pt;}
.x22_c00289{left:562.533333pt;}
.xf4_c00289{left:563.866667pt;}
.x95_c00289{left:568.933333pt;}
.x8a_c00289{left:570.533333pt;}
.x2f_c00289{left:571.866667pt;}
.xcc_c00289{left:573.600000pt;}
.x66_c00289{left:576.666667pt;}
.x23_c00289{left:577.866667pt;}
.xd9_c00289{left:579.600000pt;}
.xb8_c00289{left:581.466667pt;}
.x128_c00289{left:582.400000pt;}
.xe7_c00289{left:583.733333pt;}
.x130_c00289{left:584.800000pt;}
.x4e_c00289{left:586.266667pt;}
.x13_c00289{left:587.466667pt;}
.x80_c00289{left:588.800000pt;}
.xff_c00289{left:589.733333pt;}
.x96_c00289{left:591.600000pt;}
.x10f_c00289{left:594.800000pt;}
.x5b_c00289{left:596.266667pt;}
.x74_c00289{left:598.533333pt;}
.xcd_c00289{left:601.066667pt;}
.xe8_c00289{left:603.866667pt;}
.x30_c00289{left:605.466667pt;}
.xad_c00289{left:607.466667pt;}
.xc4_c00289{left:609.466667pt;}
.x110_c00289{left:610.800000pt;}
.x81_c00289{left:615.066667pt;}
.x136_c00289{left:617.866667pt;}
.xf5_c00289{left:619.200000pt;}
.x9d_c00289{left:620.800000pt;}
.x24_c00289{left:621.733333pt;}
.x40_c00289{left:622.666667pt;}
.x75_c00289{left:624.800000pt;}
.xe0_c00289{left:626.133333pt;}
.x100_c00289{left:627.200000pt;}
.x97_c00289{left:629.066667pt;}
.x103_c00289{left:631.333333pt;}
.x111_c00289{left:635.066667pt;}
.xce_c00289{left:636.533333pt;}
.x11a_c00289{left:638.266667pt;}
.xae_c00289{left:640.133333pt;}
.xf6_c00289{left:641.333333pt;}
.x41_c00289{left:642.800000pt;}
.x31_c00289{left:644.133333pt;}
.xf8_c00289{left:645.066667pt;}
.x14_c00289{left:646.000000pt;}
.xb9_c00289{left:648.400000pt;}
.x9e_c00289{left:651.866667pt;}
.x67_c00289{left:653.466667pt;}
.x104_c00289{left:656.266667pt;}
.xa5_c00289{left:657.466667pt;}
.x32_c00289{left:659.466667pt;}
.x123_c00289{left:661.200000pt;}
.x2_c00289{left:663.066667pt;}
.x5c_c00289{left:664.400000pt;}
.xba_c00289{left:666.266667pt;}
.x15_c00289{left:667.733333pt;}
.x11b_c00289{left:668.666667pt;}
.x25_c00289{left:671.066667pt;}
.x112_c00289{left:672.133333pt;}
.xaf_c00289{left:673.066667pt;}
}





/* 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_c00290 {
    display:none;
  }
  .loading-indicator_c00290.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00290 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_c00290 { 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_c00290" -> "#page-container .classname_c00290")
 */
.pf_c00290 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00290 { /* 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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00290 { /* 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_c00290 { /* 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_c00290 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00290 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00290 {overflow:visible;}
  }
}
.c_c00290 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00290 { /* 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_c00290:after { /* webkit #35443 */
  content: '';
}
.t_c00290:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00290 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 */
}
.__c00290 { /* 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_c00290 { /* info for Javascript */
  display:none;
}
.l_c00290 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00290 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00290 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00290: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_c00290 {
    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_c00290.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00290.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_c00290 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00290{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00290;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.000000;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;}
.maa_c00290{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7_c00290{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m92_c00290{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m69_c00290{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00290{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00290{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00290{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00290{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00290{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00290{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m90_c00290{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mac_c00290{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m49_c00290{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb_c00290{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00290{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.maf_c00290{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m93_c00290{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00290{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00290{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m82_c00290{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00290{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m97_c00290{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m73_c00290{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mba_c00290{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00290{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00290{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00290{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m39_c00290{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m58_c00290{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m57_c00290{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mab_c00290{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00290{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00290{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00290{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00290{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m54_c00290{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m25_c00290{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00290{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m51_c00290{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00290{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m62_c00290{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m40_c00290{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m78_c00290{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m34_c00290{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00290{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m77_c00290{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00290{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m68_c00290{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mf_c00290{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m36_c00290{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00290{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m81_c00290{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8_c00290{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m47_c00290{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m53_c00290{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m15_c00290{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00290{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00290{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m86_c00290{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m20_c00290{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00290{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00290{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00290{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m11_c00290{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00290{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.md_c00290{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00290{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00290{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m46_c00290{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00290{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00290{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m42_c00290{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m41_c00290{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m71_c00290{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00290{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00290{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00290{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00290{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00290{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m89_c00290{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mad_c00290{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m5_c00290{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mae_c00290{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m33_c00290{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00290{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m94_c00290{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00290{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m45_c00290{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00290{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00290{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m83_c00290{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00290{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m96_c00290{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00290{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m63_c00290{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00290{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00290{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.ma_c00290{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m66_c00290{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m91_c00290{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00290{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00290{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m32_c00290{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m19_c00290{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m98_c00290{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m17_c00290{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m70_c00290{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00290{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m80_c00290{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m18_c00290{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00290{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m87_c00290{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m55_c00290{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m30_c00290{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00290{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m65_c00290{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00290{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00290{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00290{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m52_c00290{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00290{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mc_c00290{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m74_c00290{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00290{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m28_c00290{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m56_c00290{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m76_c00290{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m84_c00290{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m16_c00290{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00290{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m13_c00290{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m43_c00290{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m75_c00290{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00290{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00290{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00290{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00290{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m24_c00290{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00290{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m21_c00290{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m12_c00290{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m95_c00290{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26_c00290{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m35_c00290{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);}
.m31_c00290{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00290{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m10_c00290{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00290{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00290{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m61_c00290{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m60_c00290{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00290{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00290{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9_c00290{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00290{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00290{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00290{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m23_c00290{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00290{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m59_c00290{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m14_c00290{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m99_c00290{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00290{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00290{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m37_c00290{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00290{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00290{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m38_c00290{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m64_c00290{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m67_c00290{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m22_c00290{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m85_c00290{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00290{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00290{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m29_c00290{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m88_c00290{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00290{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00290{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m72_c00290{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00290{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m44_c00290{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m48_c00290{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00290{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00290{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00290{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{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__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00290{word-spacing:-6.666667px;}
.ws1_c00290{word-spacing:-3.194444px;}
.wsa_c00290{word-spacing:0.000000px;}
.ws0_c00290{word-spacing:3.472222px;}
.ws2_c00290{word-spacing:4.285714px;}
.ws8_c00290{word-spacing:4.696970px;}
.ws7_c00290{word-spacing:6.137106px;}
.ws6_c00290{word-spacing:9.285714px;}
.ws5_c00290{word-spacing:10.277778px;}
.ws3_c00290{word-spacing:12.205882px;}
.ws4_c00290{word-spacing:17.105263px;}
._0_c00290{width:33.055556px;}
.fc0_c00290{color:transparent;}
.fs1_c00290{font-size:54.000000px;}
.fs0_c00290{font-size:60.000000px;}
.y0_c00290{bottom:0.000000px;}
.y2d_c00290{bottom:152.700000px;}
.y2c_c00290{bottom:168.150000px;}
.y2b_c00290{bottom:183.600000px;}
.y2a_c00290{bottom:199.500000px;}
.y29_c00290{bottom:250.050000px;}
.y28_c00290{bottom:270.150000px;}
.y27_c00290{bottom:289.950000px;}
.y26_c00290{bottom:310.050000px;}
.y25_c00290{bottom:329.850000px;}
.y24_c00290{bottom:349.950000px;}
.y23_c00290{bottom:369.750000px;}
.y22_c00290{bottom:389.850000px;}
.y21_c00290{bottom:409.950000px;}
.y20_c00290{bottom:430.050000px;}
.y1f_c00290{bottom:450.150000px;}
.y1e_c00290{bottom:469.950000px;}
.y1d_c00290{bottom:489.750000px;}
.y1c_c00290{bottom:509.550000px;}
.y1b_c00290{bottom:529.650000px;}
.y1a_c00290{bottom:549.750000px;}
.y19_c00290{bottom:569.850000px;}
.y18_c00290{bottom:589.650000px;}
.y17_c00290{bottom:610.200000px;}
.y16_c00290{bottom:630.000000px;}
.y15_c00290{bottom:650.550000px;}
.y14_c00290{bottom:670.500000px;}
.y13_c00290{bottom:691.050000px;}
.y12_c00290{bottom:710.850000px;}
.y11_c00290{bottom:731.700000px;}
.y10_c00290{bottom:751.500000px;}
.yf_c00290{bottom:771.600000px;}
.ye_c00290{bottom:791.700000px;}
.yd_c00290{bottom:811.800000px;}
.yc_c00290{bottom:832.350000px;}
.yb_c00290{bottom:852.150000px;}
.ya_c00290{bottom:872.250000px;}
.y9_c00290{bottom:892.650000px;}
.y8_c00290{bottom:912.450000px;}
.y7_c00290{bottom:932.550000px;}
.y6_c00290{bottom:952.350000px;}
.y5_c00290{bottom:972.450000px;}
.y4_c00290{bottom:992.550000px;}
.y3_c00290{bottom:1012.650000px;}
.y2_c00290{bottom:1049.700000px;}
.y1_c00290{bottom:1051.500000px;}
.h3_c00290{height:54.000000px;}
.h2_c00290{height:60.000000px;}
.h0_c00290{height:1166.759949px;}
.h1_c00290{height:1167.000000px;}
.w0_c00290{width:918.720063px;}
.w1_c00290{width:918.750000px;}
.x0_c00290{left:0.000000px;}
.x13b_c00290{left:137.850000px;}
.x126_c00290{left:139.350000px;}
.x10a_c00290{left:141.000000px;}
.xe1_c00290{left:142.500000px;}
.x9e_c00290{left:143.700000px;}
.x69_c00290{left:145.500000px;}
.x3_c00290{left:146.850000px;}
.x1_c00290{left:150.150000px;}
.x136_c00290{left:158.400000px;}
.x7c_c00290{left:160.650000px;}
.x27_c00290{left:162.300000px;}
.x4_c00290{left:165.600000px;}
.x102_c00290{left:166.650000px;}
.x132_c00290{left:169.500000px;}
.x137_c00290{left:171.750000px;}
.x140_c00290{left:172.800000px;}
.x28_c00290{left:174.150000px;}
.x4d_c00290{left:177.150000px;}
.x11f_c00290{left:179.400000px;}
.xa9_c00290{left:180.450000px;}
.x6a_c00290{left:181.800000px;}
.xe8_c00290{left:185.400000px;}
.x91_c00290{left:186.900000px;}
.xf0_c00290{left:188.100000px;}
.x41_c00290{left:189.150000px;}
.x5_c00290{left:191.100000px;}
.x5c_c00290{left:194.400000px;}
.xda_c00290{left:197.550000px;}
.x119_c00290{left:199.950000px;}
.xc7_c00290{left:201.150000px;}
.x75_c00290{left:204.300000px;}
.xbf_c00290{left:205.950000px;}
.x10b_c00290{left:207.600000px;}
.xb7_c00290{left:208.800000px;}
.x5d_c00290{left:211.650000px;}
.x88_c00290{left:215.100000px;}
.x9f_c00290{left:216.450000px;}
.x35_c00290{left:217.650000px;}
.xf1_c00290{left:219.450000px;}
.x4e_c00290{left:221.100000px;}
.x113_c00290{left:223.950000px;}
.x6_c00290{left:226.050000px;}
.x127_c00290{left:227.550000px;}
.x98_c00290{left:229.200000px;}
.x29_c00290{left:230.700000px;}
.x59_c00290{left:232.050000px;}
.xe2_c00290{left:234.300000px;}
.xb0_c00290{left:235.350000px;}
.x19_c00290{left:238.350000px;}
.xc8_c00290{left:240.750000px;}
.xdb_c00290{left:242.250000px;}
.x7_c00290{left:244.350000px;}
.x4f_c00290{left:246.300000px;}
.x2a_c00290{left:250.200000px;}
.x6b_c00290{left:253.500000px;}
.xa0_c00290{left:255.000000px;}
.x143_c00290{left:256.650000px;}
.x10c_c00290{left:258.000000px;}
.xc9_c00290{left:259.800000px;}
.x42_c00290{left:261.150000px;}
.x5e_c00290{left:263.100000px;}
.x1a_c00290{left:265.050000px;}
.x89_c00290{left:267.600000px;}
.xb8_c00290{left:270.600000px;}
.xaa_c00290{left:274.800000px;}
.x76_c00290{left:276.000000px;}
.x50_c00290{left:278.400000px;}
.xe9_c00290{left:280.800000px;}
.xca_c00290{left:283.500000px;}
.xf5_c00290{left:284.850000px;}
.xdc_c00290{left:287.250000px;}
.x2b_c00290{left:291.300000px;}
.x114_c00290{left:293.100000px;}
.x8_c00290{left:294.450000px;}
.x5f_c00290{left:297.000000px;}
.x128_c00290{left:298.200000px;}
.x141_c00290{left:300.150000px;}
.x99_c00290{left:302.250000px;}
.xe3_c00290{left:305.250000px;}
.x9_c00290{left:306.300000px;}
.x7d_c00290{left:307.800000px;}
.x36_c00290{left:309.750000px;}
.x13c_c00290{left:310.950000px;}
.x5a_c00290{left:313.050000px;}
.xa1_c00290{left:314.850000px;}
.x133_c00290{left:316.350000px;}
.xd1_c00290{left:317.700000px;}
.x144_c00290{left:318.900000px;}
.x2c_c00290{left:320.100000px;}
.xb1_c00290{left:322.800000px;}
.x123_c00290{left:325.200000px;}
.x103_c00290{left:327.150000px;}
.x1b_c00290{left:328.800000px;}
.x37_c00290{left:331.350000px;}
.xfe_c00290{left:333.150000px;}
.x7e_c00290{left:335.100000px;}
.xf6_c00290{left:336.300000px;}
.xa_c00290{left:337.650000px;}
.xc0_c00290{left:339.750000px;}
.x8a_c00290{left:341.100000px;}
.x12e_c00290{left:342.600000px;}
.xb9_c00290{left:344.400000px;}
.x60_c00290{left:347.850000px;}
.x2d_c00290{left:351.450000px;}
.x5b_c00290{left:353.400000px;}
.x115_c00290{left:354.600000px;}
.x104_c00290{left:355.650000px;}
.xb_c00290{left:356.700000px;}
.x43_c00290{left:358.800000px;}
.x92_c00290{left:360.000000px;}
.x6c_c00290{left:361.200000px;}
.xba_c00290{left:362.400000px;}
.xd2_c00290{left:364.800000px;}
.xf2_c00290{left:365.850000px;}
.x1c_c00290{left:366.900000px;}
.x51_c00290{left:368.100000px;}
.xe4_c00290{left:371.550000px;}
.x8b_c00290{left:372.750000px;}
.xcb_c00290{left:373.800000px;}
.x77_c00290{left:378.000000px;}
.x13d_c00290{left:379.650000px;}
.xdd_c00290{left:382.350000px;}
.x105_c00290{left:384.150000px;}
.xb2_c00290{left:387.300000px;}
.xa2_c00290{left:388.350000px;}
.xbb_c00290{left:390.150000px;}
.xfb_c00290{left:391.200000px;}
.x9a_c00290{left:392.250000px;}
.xd3_c00290{left:393.600000px;}
.xc_c00290{left:396.000000px;}
.x44_c00290{left:399.450000px;}
.x138_c00290{left:400.650000px;}
.x7f_c00290{left:402.750000px;}
.x1d_c00290{left:404.400000px;}
.x38_c00290{left:406.950000px;}
.xea_c00290{left:408.150000px;}
.x129_c00290{left:410.850000px;}
.xd_c00290{left:414.000000px;}
.x11a_c00290{left:415.200000px;}
.x8c_c00290{left:417.000000px;}
.xff_c00290{left:418.050000px;}
.x61_c00290{left:419.550000px;}
.x106_c00290{left:423.000000px;}
.x2e_c00290{left:424.500000px;}
.xd4_c00290{left:428.550000px;}
.x9b_c00290{left:431.100000px;}
.x39_c00290{left:433.200000px;}
.x8d_c00290{left:434.700000px;}
.xf7_c00290{left:435.750000px;}
.x1e_c00290{left:436.800000px;}
.xeb_c00290{left:438.000000px;}
.x45_c00290{left:439.350000px;}
.x62_c00290{left:440.850000px;}
.xe_c00290{left:442.500000px;}
.x2_c00290{left:445.650000px;}
.xab_c00290{left:448.950000px;}
.x6d_c00290{left:453.000000px;}
.xa3_c00290{left:456.450000px;}
.x63_c00290{left:459.150000px;}
.x46_c00290{left:462.000000px;}
.x11b_c00290{left:463.500000px;}
.xd5_c00290{left:465.300000px;}
.x12f_c00290{left:467.400000px;}
.x100_c00290{left:469.200000px;}
.x52_c00290{left:472.050000px;}
.xa4_c00290{left:473.400000px;}
.x12a_c00290{left:474.600000px;}
.xf_c00290{left:475.950000px;}
.x1f_c00290{left:478.200000px;}
.x2f_c00290{left:480.000000px;}
.x6e_c00290{left:483.900000px;}
.x93_c00290{left:485.550000px;}
.x80_c00290{left:487.650000px;}
.x9c_c00290{left:490.200000px;}
.x3a_c00290{left:492.300000px;}
.xf8_c00290{left:493.350000px;}
.x10_c00290{left:496.500000px;}
.xee_c00290{left:498.450000px;}
.x30_c00290{left:499.500000px;}
.xf3_c00290{left:500.850000px;}
.x12b_c00290{left:501.900000px;}
.x101_c00290{left:503.100000px;}
.x53_c00290{left:504.750000px;}
.xd6_c00290{left:507.450000px;}
.x10d_c00290{left:512.400000px;}
.x11c_c00290{left:514.650000px;}
.x20_c00290{left:517.500000px;}
.xb3_c00290{left:519.150000px;}
.x120_c00290{left:520.950000px;}
.x11_c00290{left:522.450000px;}
.xc1_c00290{left:525.450000px;}
.x6f_c00290{left:527.550000px;}
.x3b_c00290{left:530.850000px;}
.x124_c00290{left:533.400000px;}
.xac_c00290{left:535.800000px;}
.x130_c00290{left:536.850000px;}
.x47_c00290{left:538.350000px;}
.x70_c00290{left:539.400000px;}
.x134_c00290{left:541.500000px;}
.x78_c00290{left:543.900000px;}
.xc2_c00290{left:546.750000px;}
.x107_c00290{left:547.950000px;}
.x94_c00290{left:550.050000px;}
.x8e_c00290{left:551.400000px;}
.x54_c00290{left:553.050000px;}
.x81_c00290{left:554.550000px;}
.x9d_c00290{left:556.050000px;}
.xbc_c00290{left:559.650000px;}
.x48_c00290{left:560.700000px;}
.x3c_c00290{left:561.750000px;}
.xde_c00290{left:564.750000px;}
.x31_c00290{left:565.800000px;}
.xa5_c00290{left:569.100000px;}
.x12_c00290{left:570.300000px;}
.xc3_c00290{left:572.250000px;}
.x21_c00290{left:574.050000px;}
.x55_c00290{left:576.150000px;}
.x64_c00290{left:578.550000px;}
.xd7_c00290{left:580.950000px;}
.xdf_c00290{left:584.850000px;}
.x82_c00290{left:588.450000px;}
.xf9_c00290{left:590.850000px;}
.x79_c00290{left:592.200000px;}
.xa6_c00290{left:594.600000px;}
.x10e_c00290{left:595.950000px;}
.x13_c00290{left:598.050000px;}
.x71_c00290{left:599.100000px;}
.xb4_c00290{left:600.450000px;}
.x125_c00290{left:601.800000px;}
.xd8_c00290{left:603.600000px;}
.xad_c00290{left:607.800000px;}
.xe5_c00290{left:609.150000px;}
.x32_c00290{left:610.800000px;}
.x83_c00290{left:611.850000px;}
.x108_c00290{left:613.500000px;}
.x22_c00290{left:616.500000px;}
.x49_c00290{left:618.000000px;}
.x13e_c00290{left:620.100000px;}
.x65_c00290{left:621.450000px;}
.x8f_c00290{left:627.000000px;}
.x12c_c00290{left:628.650000px;}
.xe6_c00290{left:630.450000px;}
.xd9_c00290{left:632.400000px;}
.xc4_c00290{left:633.750000px;}
.x23_c00290{left:636.000000px;}
.x33_c00290{left:638.850000px;}
.xcc_c00290{left:640.650000px;}
.x3d_c00290{left:642.750000px;}
.x72_c00290{left:647.400000px;}
.x121_c00290{left:648.750000px;}
.x95_c00290{left:651.300000px;}
.x4a_c00290{left:653.250000px;}
.xa7_c00290{left:655.050000px;}
.x14_c00290{left:656.400000px;}
.x139_c00290{left:657.600000px;}
.x135_c00290{left:660.900000px;}
.xbd_c00290{left:661.950000px;}
.x3e_c00290{left:665.100000px;}
.xcd_c00290{left:666.900000px;}
.x84_c00290{left:668.700000px;}
.x24_c00290{left:671.700000px;}
.x13a_c00290{left:674.100000px;}
.x13f_c00290{left:675.900000px;}
.x11d_c00290{left:676.950000px;}
.x7a_c00290{left:679.200000px;}
.x116_c00290{left:681.600000px;}
.x12d_c00290{left:682.950000px;}
.xc5_c00290{left:686.250000px;}
.x66_c00290{left:687.300000px;}
.xb5_c00290{left:690.450000px;}
.xbe_c00290{left:691.500000px;}
.x15_c00290{left:692.700000px;}
.x73_c00290{left:693.900000px;}
.xce_c00290{left:695.700000px;}
.x4b_c00290{left:696.750000px;}
.x56_c00290{left:699.300000px;}
.xae_c00290{left:708.300000px;}
.x3f_c00290{left:711.900000px;}
.x67_c00290{left:714.000000px;}
.x117_c00290{left:715.500000px;}
.xc6_c00290{left:716.850000px;}
.x10f_c00290{left:718.800000px;}
.x16_c00290{left:720.000000px;}
.xfc_c00290{left:721.200000px;}
.x96_c00290{left:723.600000px;}
.x142_c00290{left:725.250000px;}
.x122_c00290{left:728.700000px;}
.xef_c00290{left:730.350000px;}
.x85_c00290{left:731.700000px;}
.x25_c00290{left:732.900000px;}
.x118_c00290{left:734.250000px;}
.xa8_c00290{left:737.100000px;}
.x110_c00290{left:738.300000px;}
.xb6_c00290{left:740.550000px;}
.x57_c00290{left:741.750000px;}
.x109_c00290{left:743.550000px;}
.x74_c00290{left:746.850000px;}
.x131_c00290{left:748.500000px;}
.xe7_c00290{left:749.700000px;}
.xec_c00290{left:751.650000px;}
.xf4_c00290{left:753.600000px;}
.x86_c00290{left:754.800000px;}
.x111_c00290{left:756.300000px;}
.x97_c00290{left:758.850000px;}
.x34_c00290{left:761.550000px;}
.xcf_c00290{left:763.350000px;}
.x11e_c00290{left:765.450000px;}
.xaf_c00290{left:767.400000px;}
.xed_c00290{left:770.700000px;}
.xe0_c00290{left:771.750000px;}
.x17_c00290{left:774.300000px;}
.xfd_c00290{left:775.500000px;}
.x87_c00290{left:776.700000px;}
.x40_c00290{left:778.200000px;}
.x90_c00290{left:779.850000px;}
.xd0_c00290{left:783.150000px;}
.xfa_c00290{left:786.900000px;}
.x68_c00290{left:789.150000px;}
.x26_c00290{left:792.300000px;}
.x18_c00290{left:793.350000px;}
.x112_c00290{left:794.850000px;}
.x58_c00290{left:796.800000px;}
.x4c_c00290{left:797.850000px;}
.x7b_c00290{left:800.100000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws9_c00290{word-spacing:-5.925926pt;}
.ws1_c00290{word-spacing:-2.839506pt;}
.wsa_c00290{word-spacing:0.000000pt;}
.ws0_c00290{word-spacing:3.086420pt;}
.ws2_c00290{word-spacing:3.809524pt;}
.ws8_c00290{word-spacing:4.175084pt;}
.ws7_c00290{word-spacing:5.455205pt;}
.ws6_c00290{word-spacing:8.253968pt;}
.ws5_c00290{word-spacing:9.135802pt;}
.ws3_c00290{word-spacing:10.849673pt;}
.ws4_c00290{word-spacing:15.204678pt;}
._0_c00290{width:29.382716pt;}
.fs1_c00290{font-size:48.000000pt;}
.fs0_c00290{font-size:53.333333pt;}
.y0_c00290{bottom:0.000000pt;}
.y2d_c00290{bottom:135.733333pt;}
.y2c_c00290{bottom:149.466667pt;}
.y2b_c00290{bottom:163.200000pt;}
.y2a_c00290{bottom:177.333333pt;}
.y29_c00290{bottom:222.266667pt;}
.y28_c00290{bottom:240.133333pt;}
.y27_c00290{bottom:257.733333pt;}
.y26_c00290{bottom:275.600000pt;}
.y25_c00290{bottom:293.200000pt;}
.y24_c00290{bottom:311.066667pt;}
.y23_c00290{bottom:328.666667pt;}
.y22_c00290{bottom:346.533333pt;}
.y21_c00290{bottom:364.400000pt;}
.y20_c00290{bottom:382.266667pt;}
.y1f_c00290{bottom:400.133333pt;}
.y1e_c00290{bottom:417.733333pt;}
.y1d_c00290{bottom:435.333333pt;}
.y1c_c00290{bottom:452.933333pt;}
.y1b_c00290{bottom:470.800000pt;}
.y1a_c00290{bottom:488.666667pt;}
.y19_c00290{bottom:506.533333pt;}
.y18_c00290{bottom:524.133333pt;}
.y17_c00290{bottom:542.400000pt;}
.y16_c00290{bottom:560.000000pt;}
.y15_c00290{bottom:578.266667pt;}
.y14_c00290{bottom:596.000000pt;}
.y13_c00290{bottom:614.266667pt;}
.y12_c00290{bottom:631.866667pt;}
.y11_c00290{bottom:650.400000pt;}
.y10_c00290{bottom:668.000000pt;}
.yf_c00290{bottom:685.866667pt;}
.ye_c00290{bottom:703.733333pt;}
.yd_c00290{bottom:721.600000pt;}
.yc_c00290{bottom:739.866667pt;}
.yb_c00290{bottom:757.466667pt;}
.ya_c00290{bottom:775.333333pt;}
.y9_c00290{bottom:793.466667pt;}
.y8_c00290{bottom:811.066667pt;}
.y7_c00290{bottom:828.933333pt;}
.y6_c00290{bottom:846.533333pt;}
.y5_c00290{bottom:864.400000pt;}
.y4_c00290{bottom:882.266667pt;}
.y3_c00290{bottom:900.133333pt;}
.y2_c00290{bottom:933.066667pt;}
.y1_c00290{bottom:934.666667pt;}
.h3_c00290{height:48.000000pt;}
.h2_c00290{height:53.333333pt;}
.h0_c00290{height:1037.119955pt;}
.h1_c00290{height:1037.333333pt;}
.w0_c00290{width:816.640056pt;}
.w1_c00290{width:816.666667pt;}
.x0_c00290{left:0.000000pt;}
.x13b_c00290{left:122.533333pt;}
.x126_c00290{left:123.866667pt;}
.x10a_c00290{left:125.333333pt;}
.xe1_c00290{left:126.666667pt;}
.x9e_c00290{left:127.733333pt;}
.x69_c00290{left:129.333333pt;}
.x3_c00290{left:130.533333pt;}
.x1_c00290{left:133.466667pt;}
.x136_c00290{left:140.800000pt;}
.x7c_c00290{left:142.800000pt;}
.x27_c00290{left:144.266667pt;}
.x4_c00290{left:147.200000pt;}
.x102_c00290{left:148.133333pt;}
.x132_c00290{left:150.666667pt;}
.x137_c00290{left:152.666667pt;}
.x140_c00290{left:153.600000pt;}
.x28_c00290{left:154.800000pt;}
.x4d_c00290{left:157.466667pt;}
.x11f_c00290{left:159.466667pt;}
.xa9_c00290{left:160.400000pt;}
.x6a_c00290{left:161.600000pt;}
.xe8_c00290{left:164.800000pt;}
.x91_c00290{left:166.133333pt;}
.xf0_c00290{left:167.200000pt;}
.x41_c00290{left:168.133333pt;}
.x5_c00290{left:169.866667pt;}
.x5c_c00290{left:172.800000pt;}
.xda_c00290{left:175.600000pt;}
.x119_c00290{left:177.733333pt;}
.xc7_c00290{left:178.800000pt;}
.x75_c00290{left:181.600000pt;}
.xbf_c00290{left:183.066667pt;}
.x10b_c00290{left:184.533333pt;}
.xb7_c00290{left:185.600000pt;}
.x5d_c00290{left:188.133333pt;}
.x88_c00290{left:191.200000pt;}
.x9f_c00290{left:192.400000pt;}
.x35_c00290{left:193.466667pt;}
.xf1_c00290{left:195.066667pt;}
.x4e_c00290{left:196.533333pt;}
.x113_c00290{left:199.066667pt;}
.x6_c00290{left:200.933333pt;}
.x127_c00290{left:202.266667pt;}
.x98_c00290{left:203.733333pt;}
.x29_c00290{left:205.066667pt;}
.x59_c00290{left:206.266667pt;}
.xe2_c00290{left:208.266667pt;}
.xb0_c00290{left:209.200000pt;}
.x19_c00290{left:211.866667pt;}
.xc8_c00290{left:214.000000pt;}
.xdb_c00290{left:215.333333pt;}
.x7_c00290{left:217.200000pt;}
.x4f_c00290{left:218.933333pt;}
.x2a_c00290{left:222.400000pt;}
.x6b_c00290{left:225.333333pt;}
.xa0_c00290{left:226.666667pt;}
.x143_c00290{left:228.133333pt;}
.x10c_c00290{left:229.333333pt;}
.xc9_c00290{left:230.933333pt;}
.x42_c00290{left:232.133333pt;}
.x5e_c00290{left:233.866667pt;}
.x1a_c00290{left:235.600000pt;}
.x89_c00290{left:237.866667pt;}
.xb8_c00290{left:240.533333pt;}
.xaa_c00290{left:244.266667pt;}
.x76_c00290{left:245.333333pt;}
.x50_c00290{left:247.466667pt;}
.xe9_c00290{left:249.600000pt;}
.xca_c00290{left:252.000000pt;}
.xf5_c00290{left:253.200000pt;}
.xdc_c00290{left:255.333333pt;}
.x2b_c00290{left:258.933333pt;}
.x114_c00290{left:260.533333pt;}
.x8_c00290{left:261.733333pt;}
.x5f_c00290{left:264.000000pt;}
.x128_c00290{left:265.066667pt;}
.x141_c00290{left:266.800000pt;}
.x99_c00290{left:268.666667pt;}
.xe3_c00290{left:271.333333pt;}
.x9_c00290{left:272.266667pt;}
.x7d_c00290{left:273.600000pt;}
.x36_c00290{left:275.333333pt;}
.x13c_c00290{left:276.400000pt;}
.x5a_c00290{left:278.266667pt;}
.xa1_c00290{left:279.866667pt;}
.x133_c00290{left:281.200000pt;}
.xd1_c00290{left:282.400000pt;}
.x144_c00290{left:283.466667pt;}
.x2c_c00290{left:284.533333pt;}
.xb1_c00290{left:286.933333pt;}
.x123_c00290{left:289.066667pt;}
.x103_c00290{left:290.800000pt;}
.x1b_c00290{left:292.266667pt;}
.x37_c00290{left:294.533333pt;}
.xfe_c00290{left:296.133333pt;}
.x7e_c00290{left:297.866667pt;}
.xf6_c00290{left:298.933333pt;}
.xa_c00290{left:300.133333pt;}
.xc0_c00290{left:302.000000pt;}
.x8a_c00290{left:303.200000pt;}
.x12e_c00290{left:304.533333pt;}
.xb9_c00290{left:306.133333pt;}
.x60_c00290{left:309.200000pt;}
.x2d_c00290{left:312.400000pt;}
.x5b_c00290{left:314.133333pt;}
.x115_c00290{left:315.200000pt;}
.x104_c00290{left:316.133333pt;}
.xb_c00290{left:317.066667pt;}
.x43_c00290{left:318.933333pt;}
.x92_c00290{left:320.000000pt;}
.x6c_c00290{left:321.066667pt;}
.xba_c00290{left:322.133333pt;}
.xd2_c00290{left:324.266667pt;}
.xf2_c00290{left:325.200000pt;}
.x1c_c00290{left:326.133333pt;}
.x51_c00290{left:327.200000pt;}
.xe4_c00290{left:330.266667pt;}
.x8b_c00290{left:331.333333pt;}
.xcb_c00290{left:332.266667pt;}
.x77_c00290{left:336.000000pt;}
.x13d_c00290{left:337.466667pt;}
.xdd_c00290{left:339.866667pt;}
.x105_c00290{left:341.466667pt;}
.xb2_c00290{left:344.266667pt;}
.xa2_c00290{left:345.200000pt;}
.xbb_c00290{left:346.800000pt;}
.xfb_c00290{left:347.733333pt;}
.x9a_c00290{left:348.666667pt;}
.xd3_c00290{left:349.866667pt;}
.xc_c00290{left:352.000000pt;}
.x44_c00290{left:355.066667pt;}
.x138_c00290{left:356.133333pt;}
.x7f_c00290{left:358.000000pt;}
.x1d_c00290{left:359.466667pt;}
.x38_c00290{left:361.733333pt;}
.xea_c00290{left:362.800000pt;}
.x129_c00290{left:365.200000pt;}
.xd_c00290{left:368.000000pt;}
.x11a_c00290{left:369.066667pt;}
.x8c_c00290{left:370.666667pt;}
.xff_c00290{left:371.600000pt;}
.x61_c00290{left:372.933333pt;}
.x106_c00290{left:376.000000pt;}
.x2e_c00290{left:377.333333pt;}
.xd4_c00290{left:380.933333pt;}
.x9b_c00290{left:383.200000pt;}
.x39_c00290{left:385.066667pt;}
.x8d_c00290{left:386.400000pt;}
.xf7_c00290{left:387.333333pt;}
.x1e_c00290{left:388.266667pt;}
.xeb_c00290{left:389.333333pt;}
.x45_c00290{left:390.533333pt;}
.x62_c00290{left:391.866667pt;}
.xe_c00290{left:393.333333pt;}
.x2_c00290{left:396.133333pt;}
.xab_c00290{left:399.066667pt;}
.x6d_c00290{left:402.666667pt;}
.xa3_c00290{left:405.733333pt;}
.x63_c00290{left:408.133333pt;}
.x46_c00290{left:410.666667pt;}
.x11b_c00290{left:412.000000pt;}
.xd5_c00290{left:413.600000pt;}
.x12f_c00290{left:415.466667pt;}
.x100_c00290{left:417.066667pt;}
.x52_c00290{left:419.600000pt;}
.xa4_c00290{left:420.800000pt;}
.x12a_c00290{left:421.866667pt;}
.xf_c00290{left:423.066667pt;}
.x1f_c00290{left:425.066667pt;}
.x2f_c00290{left:426.666667pt;}
.x6e_c00290{left:430.133333pt;}
.x93_c00290{left:431.600000pt;}
.x80_c00290{left:433.466667pt;}
.x9c_c00290{left:435.733333pt;}
.x3a_c00290{left:437.600000pt;}
.xf8_c00290{left:438.533333pt;}
.x10_c00290{left:441.333333pt;}
.xee_c00290{left:443.066667pt;}
.x30_c00290{left:444.000000pt;}
.xf3_c00290{left:445.200000pt;}
.x12b_c00290{left:446.133333pt;}
.x101_c00290{left:447.200000pt;}
.x53_c00290{left:448.666667pt;}
.xd6_c00290{left:451.066667pt;}
.x10d_c00290{left:455.466667pt;}
.x11c_c00290{left:457.466667pt;}
.x20_c00290{left:460.000000pt;}
.xb3_c00290{left:461.466667pt;}
.x120_c00290{left:463.066667pt;}
.x11_c00290{left:464.400000pt;}
.xc1_c00290{left:467.066667pt;}
.x6f_c00290{left:468.933333pt;}
.x3b_c00290{left:471.866667pt;}
.x124_c00290{left:474.133333pt;}
.xac_c00290{left:476.266667pt;}
.x130_c00290{left:477.200000pt;}
.x47_c00290{left:478.533333pt;}
.x70_c00290{left:479.466667pt;}
.x134_c00290{left:481.333333pt;}
.x78_c00290{left:483.466667pt;}
.xc2_c00290{left:486.000000pt;}
.x107_c00290{left:487.066667pt;}
.x94_c00290{left:488.933333pt;}
.x8e_c00290{left:490.133333pt;}
.x54_c00290{left:491.600000pt;}
.x81_c00290{left:492.933333pt;}
.x9d_c00290{left:494.266667pt;}
.xbc_c00290{left:497.466667pt;}
.x48_c00290{left:498.400000pt;}
.x3c_c00290{left:499.333333pt;}
.xde_c00290{left:502.000000pt;}
.x31_c00290{left:502.933333pt;}
.xa5_c00290{left:505.866667pt;}
.x12_c00290{left:506.933333pt;}
.xc3_c00290{left:508.666667pt;}
.x21_c00290{left:510.266667pt;}
.x55_c00290{left:512.133333pt;}
.x64_c00290{left:514.266667pt;}
.xd7_c00290{left:516.400000pt;}
.xdf_c00290{left:519.866667pt;}
.x82_c00290{left:523.066667pt;}
.xf9_c00290{left:525.200000pt;}
.x79_c00290{left:526.400000pt;}
.xa6_c00290{left:528.533333pt;}
.x10e_c00290{left:529.733333pt;}
.x13_c00290{left:531.600000pt;}
.x71_c00290{left:532.533333pt;}
.xb4_c00290{left:533.733333pt;}
.x125_c00290{left:534.933333pt;}
.xd8_c00290{left:536.533333pt;}
.xad_c00290{left:540.266667pt;}
.xe5_c00290{left:541.466667pt;}
.x32_c00290{left:542.933333pt;}
.x83_c00290{left:543.866667pt;}
.x108_c00290{left:545.333333pt;}
.x22_c00290{left:548.000000pt;}
.x49_c00290{left:549.333333pt;}
.x13e_c00290{left:551.200000pt;}
.x65_c00290{left:552.400000pt;}
.x8f_c00290{left:557.333333pt;}
.x12c_c00290{left:558.800000pt;}
.xe6_c00290{left:560.400000pt;}
.xd9_c00290{left:562.133333pt;}
.xc4_c00290{left:563.333333pt;}
.x23_c00290{left:565.333333pt;}
.x33_c00290{left:567.866667pt;}
.xcc_c00290{left:569.466667pt;}
.x3d_c00290{left:571.333333pt;}
.x72_c00290{left:575.466667pt;}
.x121_c00290{left:576.666667pt;}
.x95_c00290{left:578.933333pt;}
.x4a_c00290{left:580.666667pt;}
.xa7_c00290{left:582.266667pt;}
.x14_c00290{left:583.466667pt;}
.x139_c00290{left:584.533333pt;}
.x135_c00290{left:587.466667pt;}
.xbd_c00290{left:588.400000pt;}
.x3e_c00290{left:591.200000pt;}
.xcd_c00290{left:592.800000pt;}
.x84_c00290{left:594.400000pt;}
.x24_c00290{left:597.066667pt;}
.x13a_c00290{left:599.200000pt;}
.x13f_c00290{left:600.800000pt;}
.x11d_c00290{left:601.733333pt;}
.x7a_c00290{left:603.733333pt;}
.x116_c00290{left:605.866667pt;}
.x12d_c00290{left:607.066667pt;}
.xc5_c00290{left:610.000000pt;}
.x66_c00290{left:610.933333pt;}
.xb5_c00290{left:613.733333pt;}
.xbe_c00290{left:614.666667pt;}
.x15_c00290{left:615.733333pt;}
.x73_c00290{left:616.800000pt;}
.xce_c00290{left:618.400000pt;}
.x4b_c00290{left:619.333333pt;}
.x56_c00290{left:621.600000pt;}
.xae_c00290{left:629.600000pt;}
.x3f_c00290{left:632.800000pt;}
.x67_c00290{left:634.666667pt;}
.x117_c00290{left:636.000000pt;}
.xc6_c00290{left:637.200000pt;}
.x10f_c00290{left:638.933333pt;}
.x16_c00290{left:640.000000pt;}
.xfc_c00290{left:641.066667pt;}
.x96_c00290{left:643.200000pt;}
.x142_c00290{left:644.666667pt;}
.x122_c00290{left:647.733333pt;}
.xef_c00290{left:649.200000pt;}
.x85_c00290{left:650.400000pt;}
.x25_c00290{left:651.466667pt;}
.x118_c00290{left:652.666667pt;}
.xa8_c00290{left:655.200000pt;}
.x110_c00290{left:656.266667pt;}
.xb6_c00290{left:658.266667pt;}
.x57_c00290{left:659.333333pt;}
.x109_c00290{left:660.933333pt;}
.x74_c00290{left:663.866667pt;}
.x131_c00290{left:665.333333pt;}
.xe7_c00290{left:666.400000pt;}
.xec_c00290{left:668.133333pt;}
.xf4_c00290{left:669.866667pt;}
.x86_c00290{left:670.933333pt;}
.x111_c00290{left:672.266667pt;}
.x97_c00290{left:674.533333pt;}
.x34_c00290{left:676.933333pt;}
.xcf_c00290{left:678.533333pt;}
.x11e_c00290{left:680.400000pt;}
.xaf_c00290{left:682.133333pt;}
.xed_c00290{left:685.066667pt;}
.xe0_c00290{left:686.000000pt;}
.x17_c00290{left:688.266667pt;}
.xfd_c00290{left:689.333333pt;}
.x87_c00290{left:690.400000pt;}
.x40_c00290{left:691.733333pt;}
.x90_c00290{left:693.200000pt;}
.xd0_c00290{left:696.133333pt;}
.xfa_c00290{left:699.466667pt;}
.x68_c00290{left:701.466667pt;}
.x26_c00290{left:704.266667pt;}
.x18_c00290{left:705.200000pt;}
.x112_c00290{left:706.533333pt;}
.x58_c00290{left:708.266667pt;}
.x4c_c00290{left:709.200000pt;}
.x7b_c00290{left:711.200000pt;}
}





/* 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_c00291 {
    display:none;
  }
  .loading-indicator_c00291.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00291 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_c00291 { 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_c00291" -> "#page-container .classname_c00291")
 */
.pf_c00291 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00291 { /* 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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00291 { /* 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_c00291 { /* 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_c00291 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00291 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00291 {overflow:visible;}
  }
}
.c_c00291 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00291 { /* 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_c00291:after { /* webkit #35443 */
  content: '';
}
.t_c00291:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00291 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 */
}
.__c00291 { /* 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_c00291 { /* info for Javascript */
  display:none;
}
.l_c00291 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00291 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00291 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00291: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_c00291 {
    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_c00291.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00291.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_c00291 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00291{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00291;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.000000;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;}
.md_c00291{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00291{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00291{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m31_c00291{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00291{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m65_c00291{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00291{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m38_c00291{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf_c00291{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00291{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma_c00291{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m16_c00291{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m83_c00291{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00291{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m30_c00291{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m70_c00291{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m87_c00291{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m95_c00291{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00291{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00291{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00291{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m91_c00291{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m53_c00291{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00291{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m74_c00291{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00291{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m34_c00291{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m81_c00291{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m98_c00291{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m42_c00291{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m62_c00291{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m43_c00291{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00291{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m58_c00291{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00291{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m26_c00291{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00291{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m28_c00291{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00291{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m55_c00291{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00291{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00291{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00291{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m29_c00291{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m12_c00291{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00291{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00291{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00291{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00291{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m93_c00291{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m79_c00291{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m77_c00291{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m59_c00291{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00291{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m71_c00291{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00291{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m60_c00291{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m13_c00291{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00291{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00291{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m11_c00291{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m25_c00291{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m94_c00291{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00291{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m97_c00291{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00291{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m88_c00291{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00291{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00291{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m78_c00291{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00291{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3_c00291{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m72_c00291{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00291{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14_c00291{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00291{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m20_c00291{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00291{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m50_c00291{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00291{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00291{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb_c00291{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m56_c00291{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00291{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7_c00291{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00291{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00291{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00291{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m22_c00291{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m96_c00291{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00291{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m66_c00291{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00291{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00291{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m36_c00291{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00291{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00291{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00291{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m52_c00291{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00291{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00291{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00291{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00291{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m92_c00291{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00291{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m15_c00291{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00291{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m51_c00291{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me_c00291{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m37_c00291{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00291{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m76_c00291{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m82_c00291{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m47_c00291{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m35_c00291{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m10_c00291{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00291{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m73_c00291{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00291{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00291{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00291{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00291{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5_c00291{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m75_c00291{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00291{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m48_c00291{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00291{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m80_c00291{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m45_c00291{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m64_c00291{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m61_c00291{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);}
.m86_c00291{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m17_c00291{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m84_c00291{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00291{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m44_c00291{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23_c00291{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00291{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m19_c00291{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00291{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m27_c00291{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9_c00291{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00291{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m39_c00291{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc_c00291{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00291{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m33_c00291{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00291{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m21_c00291{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m46_c00291{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m32_c00291{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m63_c00291{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00291{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m69_c00291{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m68_c00291{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00291{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m54_c00291{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4_c00291{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00291{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00291{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8_c00291{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00291{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m1_c00291{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00291{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m89_c00291{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00291{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m0_c00291{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00291{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00291{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00291{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00291{vertical-align:0.000000px;}
.ls0_c00291{letter-spacing:0.000000px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{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__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00291{word-spacing:-16.388889px;}
.ws2_c00291{word-spacing:-10.000000px;}
.ws1_c00291{word-spacing:-4.861111px;}
.ws4_c00291{word-spacing:-3.333333px;}
.ws8_c00291{word-spacing:-3.194444px;}
.wsc_c00291{word-spacing:0.000000px;}
.ws7_c00291{word-spacing:3.518519px;}
.ws9_c00291{word-spacing:4.473684px;}
.ws0_c00291{word-spacing:5.000000px;}
.wsa_c00291{word-spacing:8.611111px;}
.ws6_c00291{word-spacing:11.428571px;}
.ws5_c00291{word-spacing:12.647059px;}
.wsb_c00291{word-spacing:37.389105px;}
.fc0_c00291{color:transparent;}
.fs2_c00291{font-size:42.000000px;}
.fs0_c00291{font-size:54.000000px;}
.fs1_c00291{font-size:60.000000px;}
.y0_c00291{bottom:0.000000px;}
.y2e_c00291{bottom:132.900000px;}
.y2d_c00291{bottom:153.300000px;}
.y2c_c00291{bottom:173.100000px;}
.y2b_c00291{bottom:193.500000px;}
.y2a_c00291{bottom:213.600000px;}
.y29_c00291{bottom:233.400000px;}
.y28_c00291{bottom:253.200000px;}
.y27_c00291{bottom:273.000000px;}
.y26_c00291{bottom:293.100000px;}
.y25_c00291{bottom:312.900000px;}
.y24_c00291{bottom:332.700000px;}
.y23_c00291{bottom:352.500000px;}
.y22_c00291{bottom:372.600000px;}
.y21_c00291{bottom:392.400000px;}
.y20_c00291{bottom:412.200000px;}
.y1f_c00291{bottom:432.450000px;}
.y1e_c00291{bottom:452.550000px;}
.y1d_c00291{bottom:472.350000px;}
.y1c_c00291{bottom:492.150000px;}
.y1b_c00291{bottom:511.950000px;}
.y1a_c00291{bottom:531.750000px;}
.y19_c00291{bottom:551.550000px;}
.y18_c00291{bottom:571.650000px;}
.y17_c00291{bottom:591.450000px;}
.y16_c00291{bottom:612.000000px;}
.y15_c00291{bottom:632.100000px;}
.y14_c00291{bottom:651.900000px;}
.y13_c00291{bottom:672.000000px;}
.y12_c00291{bottom:691.800000px;}
.y11_c00291{bottom:711.900000px;}
.y10_c00291{bottom:731.700000px;}
.yf_c00291{bottom:751.500000px;}
.ye_c00291{bottom:771.300000px;}
.yd_c00291{bottom:791.400000px;}
.yc_c00291{bottom:811.200000px;}
.yb_c00291{bottom:831.300000px;}
.ya_c00291{bottom:851.100000px;}
.y9_c00291{bottom:870.900000px;}
.y8_c00291{bottom:890.700000px;}
.y7_c00291{bottom:910.800000px;}
.y6_c00291{bottom:930.600000px;}
.y5_c00291{bottom:950.400000px;}
.y4_c00291{bottom:970.200000px;}
.y3_c00291{bottom:990.000000px;}
.y2_c00291{bottom:1010.100000px;}
.y1_c00291{bottom:1049.100000px;}
.h4_c00291{height:42.000000px;}
.h2_c00291{height:54.000000px;}
.h3_c00291{height:60.000000px;}
.h0_c00291{height:1166.759949px;}
.h1_c00291{height:1167.000000px;}
.w0_c00291{width:918.720063px;}
.w1_c00291{width:918.750000px;}
.x0_c00291{left:0.000000px;}
.x3_c00291{left:97.950000px;}
.x51_c00291{left:99.150000px;}
.x91_c00291{left:100.200000px;}
.xbc_c00291{left:101.250000px;}
.xdb_c00291{left:102.450000px;}
.xf0_c00291{left:103.650000px;}
.x126_c00291{left:105.000000px;}
.x13d_c00291{left:106.350000px;}
.x9c_c00291{left:117.300000px;}
.x26_c00291{left:118.800000px;}
.xdc_c00291{left:123.000000px;}
.x112_c00291{left:125.100000px;}
.x12b_c00291{left:127.500000px;}
.x84_c00291{left:128.850000px;}
.x52_c00291{left:130.050000px;}
.xfc_c00291{left:133.500000px;}
.x37_c00291{left:134.700000px;}
.x78_c00291{left:137.100000px;}
.xdd_c00291{left:140.700000px;}
.x6c_c00291{left:144.000000px;}
.xae_c00291{left:145.650000px;}
.x27_c00291{left:147.600000px;}
.xa6_c00291{left:148.950000px;}
.x116_c00291{left:150.300000px;}
.x45_c00291{left:151.800000px;}
.x5f_c00291{left:154.200000px;}
.x12c_c00291{left:156.000000px;}
.x53_c00291{left:157.800000px;}
.x6d_c00291{left:161.250000px;}
.x127_c00291{left:163.350000px;}
.x85_c00291{left:165.900000px;}
.x10b_c00291{left:168.150000px;}
.x38_c00291{left:169.650000px;}
.x4_c00291{left:171.000000px;}
.x122_c00291{left:173.250000px;}
.xbd_c00291{left:175.350000px;}
.x79_c00291{left:178.800000px;}
.xb5_c00291{left:180.000000px;}
.x6e_c00291{left:182.100000px;}
.x28_c00291{left:183.300000px;}
.x46_c00291{left:186.750000px;}
.x105_c00291{left:188.400000px;}
.x39_c00291{left:189.750000px;}
.xde_c00291{left:190.800000px;}
.x60_c00291{left:192.750000px;}
.x9d_c00291{left:195.000000px;}
.x15_c00291{left:196.950000px;}
.x117_c00291{left:198.150000px;}
.xbe_c00291{left:199.500000px;}
.x29_c00291{left:202.800000px;}
.x7a_c00291{left:205.500000px;}
.x5_c00291{left:207.300000px;}
.x54_c00291{left:208.950000px;}
.x92_c00291{left:212.250000px;}
.x47_c00291{left:215.550000px;}
.xf4_c00291{left:218.400000px;}
.x16_c00291{left:219.600000px;}
.x138_c00291{left:220.800000px;}
.xa7_c00291{left:223.500000px;}
.x118_c00291{left:227.700000px;}
.xce_c00291{left:229.650000px;}
.x86_c00291{left:231.000000px;}
.x3a_c00291{left:232.500000px;}
.x13a_c00291{left:233.700000px;}
.x6_c00291{left:235.050000px;}
.x2a_c00291{left:237.000000px;}
.x61_c00291{left:238.800000px;}
.x17_c00291{left:243.000000px;}
.x100_c00291{left:244.500000px;}
.xc5_c00291{left:246.150000px;}
.xf5_c00291{left:249.300000px;}
.x120_c00291{left:250.350000px;}
.x7b_c00291{left:252.000000px;}
.xa8_c00291{left:253.800000px;}
.x132_c00291{left:255.150000px;}
.x62_c00291{left:256.500000px;}
.x12f_c00291{left:258.300000px;}
.x7_c00291{left:260.550000px;}
.x6f_c00291{left:263.850000px;}
.x87_c00291{left:265.200000px;}
.x106_c00291{left:266.850000px;}
.x3b_c00291{left:268.200000px;}
.x9e_c00291{left:269.250000px;}
.xb6_c00291{left:271.050000px;}
.x18_c00291{left:272.550000px;}
.x55_c00291{left:276.600000px;}
.x113_c00291{left:278.850000px;}
.x88_c00291{left:280.350000px;}
.x11c_c00291{left:282.900000px;}
.xbf_c00291{left:285.450000px;}
.x93_c00291{left:287.100000px;}
.xd6_c00291{left:288.450000px;}
.x2b_c00291{left:289.500000px;}
.x8_c00291{left:291.450000px;}
.x10c_c00291{left:292.800000px;}
.xeb_c00291{left:293.850000px;}
.x7c_c00291{left:295.500000px;}
.x48_c00291{left:298.050000px;}
.xc6_c00291{left:299.850000px;}
.xf6_c00291{left:303.300000px;}
.xa9_c00291{left:304.500000px;}
.x56_c00291{left:306.900000px;}
.x63_c00291{left:309.000000px;}
.xcf_c00291{left:312.450000px;}
.xc0_c00291{left:314.250000px;}
.x11e_c00291{left:315.450000px;}
.x94_c00291{left:318.750000px;}
.x9_c00291{left:322.050000px;}
.xec_c00291{left:323.400000px;}
.x2c_c00291{left:325.200000px;}
.x49_c00291{left:328.650000px;}
.xdf_c00291{left:331.200000px;}
.x11d_c00291{left:332.550000px;}
.x3c_c00291{left:335.250000px;}
.x123_c00291{left:337.050000px;}
.x57_c00291{left:338.250000px;}
.xaa_c00291{left:340.500000px;}
.x89_c00291{left:342.300000px;}
.x95_c00291{left:344.250000px;}
.x19_c00291{left:347.400000px;}
.xd7_c00291{left:349.350000px;}
.xf7_c00291{left:352.950000px;}
.x139_c00291{left:355.050000px;}
.x58_c00291{left:356.250000px;}
.x70_c00291{left:359.250000px;}
.x10d_c00291{left:360.900000px;}
.x137_c00291{left:361.950000px;}
.x3d_c00291{left:363.750000px;}
.xaf_c00291{left:365.550000px;}
.xa_c00291{left:366.750000px;}
.x130_c00291{left:367.800000px;}
.x64_c00291{left:370.200000px;}
.xb7_c00291{left:371.550000px;}
.x119_c00291{left:373.650000px;}
.x133_c00291{left:376.800000px;}
.x7d_c00291{left:380.100000px;}
.x4a_c00291{left:382.950000px;}
.xe0_c00291{left:385.200000px;}
.x3e_c00291{left:387.900000px;}
.x2d_c00291{left:388.950000px;}
.x1a_c00291{left:390.600000px;}
.x1_c00291{left:394.950000px;}
.xd0_c00291{left:396.300000px;}
.x4b_c00291{left:397.650000px;}
.x65_c00291{left:399.300000px;}
.xb0_c00291{left:400.500000px;}
.x13b_c00291{left:401.850000px;}
.x59_c00291{left:403.800000px;}
.xb_c00291{left:406.350000px;}
.x10e_c00291{left:409.800000px;}
.x8a_c00291{left:411.750000px;}
.x121_c00291{left:412.800000px;}
.xd1_c00291{left:416.100000px;}
.xf8_c00291{left:418.350000px;}
.xe5_c00291{left:419.400000px;}
.xc7_c00291{left:420.750000px;}
.xab_c00291{left:421.800000px;}
.x1b_c00291{left:423.300000px;}
.x8b_c00291{left:428.700000px;}
.xc_c00291{left:430.500000px;}
.x9f_c00291{left:431.850000px;}
.x5a_c00291{left:433.650000px;}
.xb1_c00291{left:438.000000px;}
.x10f_c00291{left:440.700000px;}
.xac_c00291{left:441.900000px;}
.x66_c00291{left:443.250000px;}
.x1c_c00291{left:446.400000px;}
.xed_c00291{left:448.050000px;}
.xc8_c00291{left:449.550000px;}
.x4c_c00291{left:456.300000px;}
.x3f_c00291{left:457.350000px;}
.x2e_c00291{left:460.950000px;}
.x67_c00291{left:463.050000px;}
.xe6_c00291{left:464.100000px;}
.xd_c00291{left:465.450000px;}
.x114_c00291{left:467.250000px;}
.xe1_c00291{left:468.450000px;}
.xc1_c00291{left:470.100000px;}
.x8c_c00291{left:472.650000px;}
.xb8_c00291{left:475.050000px;}
.x40_c00291{left:476.850000px;}
.x96_c00291{left:478.200000px;}
.x2f_c00291{left:480.750000px;}
.x71_c00291{left:483.150000px;}
.x101_c00291{left:485.100000px;}
.x1d_c00291{left:487.800000px;}
.x5b_c00291{left:490.500000px;}
.xe_c00291{left:493.200000px;}
.xa0_c00291{left:495.600000px;}
.xb9_c00291{left:496.650000px;}
.x115_c00291{left:498.300000px;}
.xee_c00291{left:499.500000px;}
.xd2_c00291{left:501.900000px;}
.x72_c00291{left:504.000000px;}
.x97_c00291{left:505.500000px;}
.xf_c00291{left:507.300000px;}
.x30_c00291{left:508.800000px;}
.x1e_c00291{left:511.200000px;}
.x110_c00291{left:512.700000px;}
.xe7_c00291{left:513.750000px;}
.x134_c00291{left:517.200000px;}
.xf1_c00291{left:519.600000px;}
.x7e_c00291{left:524.550000px;}
.x128_c00291{left:526.350000px;}
.xc9_c00291{left:528.000000px;}
.xf9_c00291{left:530.250000px;}
.xb2_c00291{left:531.600000px;}
.x1f_c00291{left:534.300000px;}
.x98_c00291{left:535.350000px;}
.x68_c00291{left:536.850000px;}
.x10_c00291{left:537.900000px;}
.xc2_c00291{left:541.050000px;}
.x102_c00291{left:543.750000px;}
.x12d_c00291{left:545.400000px;}
.xe2_c00291{left:547.350000px;}
.xd3_c00291{left:549.000000px;}
.x4d_c00291{left:551.400000px;}
.x8d_c00291{left:552.600000px;}
.xfd_c00291{left:557.100000px;}
.x5c_c00291{left:559.350000px;}
.x99_c00291{left:561.600000px;}
.x31_c00291{left:562.800000px;}
.x73_c00291{left:564.900000px;}
.x41_c00291{left:567.600000px;}
.xa1_c00291{left:568.650000px;}
.x8e_c00291{left:572.400000px;}
.xe8_c00291{left:574.650000px;}
.x20_c00291{left:579.300000px;}
.x4e_c00291{left:581.250000px;}
.xba_c00291{left:582.300000px;}
.x124_c00291{left:584.100000px;}
.x107_c00291{left:585.450000px;}
.x11a_c00291{left:587.700000px;}
.x42_c00291{left:591.000000px;}
.x32_c00291{left:593.700000px;}
.xd4_c00291{left:595.500000px;}
.x7f_c00291{left:597.300000px;}
.x131_c00291{left:600.000000px;}
.xe3_c00291{left:601.350000px;}
.x11_c00291{left:602.700000px;}
.xfe_c00291{left:604.200000px;}
.x80_c00291{left:609.600000px;}
.x4f_c00291{left:611.100000px;}
.xb3_c00291{left:612.150000px;}
.x21_c00291{left:613.500000px;}
.x74_c00291{left:616.350000px;}
.x12_c00291{left:619.200000px;}
.xfa_c00291{left:622.050000px;}
.xd5_c00291{left:624.300000px;}
.xe9_c00291{left:626.550000px;}
.x111_c00291{left:628.650000px;}
.xa2_c00291{left:630.150000px;}
.x22_c00291{left:631.200000px;}
.xf2_c00291{left:632.250000px;}
.x33_c00291{left:633.300000px;}
.xca_c00291{left:635.700000px;}
.x135_c00291{left:638.850000px;}
.x5d_c00291{left:640.050000px;}
.xb4_c00291{left:641.700000px;}
.x12e_c00291{left:642.900000px;}
.x108_c00291{left:645.150000px;}
.x11f_c00291{left:646.200000px;}
.x125_c00291{left:647.850000px;}
.xd8_c00291{left:649.350000px;}
.x75_c00291{left:650.850000px;}
.x8f_c00291{left:652.050000px;}
.x69_c00291{left:654.900000px;}
.xa3_c00291{left:656.100000px;}
.x43_c00291{left:657.600000px;}
.x23_c00291{left:662.100000px;}
.x81_c00291{left:664.350000px;}
.x129_c00291{left:665.700000px;}
.x9a_c00291{left:667.800000px;}
.x76_c00291{left:669.150000px;}
.x6a_c00291{left:672.150000px;}
.x109_c00291{left:673.200000px;}
.xfb_c00291{left:675.300000px;}
.x13_c00291{left:676.500000px;}
.x50_c00291{left:679.500000px;}
.x34_c00291{left:681.900000px;}
.xcb_c00291{left:685.350000px;}
.x103_c00291{left:686.400000px;}
.xc3_c00291{left:688.350000px;}
.xa4_c00291{left:691.050000px;}
.x9b_c00291{left:693.300000px;}
.x90_c00291{left:694.500000px;}
.xd9_c00291{left:695.850000px;}
.xad_c00291{left:698.250000px;}
.xea_c00291{left:700.350000px;}
.xf3_c00291{left:701.850000px;}
.xcc_c00291{left:703.350000px;}
.x24_c00291{left:705.000000px;}
.xff_c00291{left:708.900000px;}
.x82_c00291{left:710.850000px;}
.x14_c00291{left:712.800000px;}
.xbb_c00291{left:714.000000px;}
.x77_c00291{left:715.200000px;}
.xc4_c00291{left:716.850000px;}
.x5e_c00291{left:719.700000px;}
.x35_c00291{left:724.350000px;}
.x44_c00291{left:726.450000px;}
.xe4_c00291{left:729.750000px;}
.x25_c00291{left:733.050000px;}
.x13c_c00291{left:734.550000px;}
.xda_c00291{left:735.750000px;}
.x2_c00291{left:737.700000px;}
.x83_c00291{left:739.350000px;}
.xa5_c00291{left:741.150000px;}
.x36_c00291{left:744.150000px;}
.x12a_c00291{left:746.250000px;}
.xcd_c00291{left:747.300000px;}
.xef_c00291{left:749.550000px;}
.x10a_c00291{left:750.600000px;}
.x6b_c00291{left:752.850000px;}
.x11b_c00291{left:754.050000px;}
.x136_c00291{left:756.600000px;}
.x104_c00291{left:758.400000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws3_c00291{word-spacing:-14.567901pt;}
.ws2_c00291{word-spacing:-8.888889pt;}
.ws1_c00291{word-spacing:-4.320988pt;}
.ws4_c00291{word-spacing:-2.962963pt;}
.ws8_c00291{word-spacing:-2.839506pt;}
.wsc_c00291{word-spacing:0.000000pt;}
.ws7_c00291{word-spacing:3.127572pt;}
.ws9_c00291{word-spacing:3.976608pt;}
.ws0_c00291{word-spacing:4.444444pt;}
.wsa_c00291{word-spacing:7.654321pt;}
.ws6_c00291{word-spacing:10.158730pt;}
.ws5_c00291{word-spacing:11.241830pt;}
.wsb_c00291{word-spacing:33.234760pt;}
.fs2_c00291{font-size:37.333333pt;}
.fs0_c00291{font-size:48.000000pt;}
.fs1_c00291{font-size:53.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y2e_c00291{bottom:118.133333pt;}
.y2d_c00291{bottom:136.266667pt;}
.y2c_c00291{bottom:153.866667pt;}
.y2b_c00291{bottom:172.000000pt;}
.y2a_c00291{bottom:189.866667pt;}
.y29_c00291{bottom:207.466667pt;}
.y28_c00291{bottom:225.066667pt;}
.y27_c00291{bottom:242.666667pt;}
.y26_c00291{bottom:260.533333pt;}
.y25_c00291{bottom:278.133333pt;}
.y24_c00291{bottom:295.733333pt;}
.y23_c00291{bottom:313.333333pt;}
.y22_c00291{bottom:331.200000pt;}
.y21_c00291{bottom:348.800000pt;}
.y20_c00291{bottom:366.400000pt;}
.y1f_c00291{bottom:384.400000pt;}
.y1e_c00291{bottom:402.266667pt;}
.y1d_c00291{bottom:419.866667pt;}
.y1c_c00291{bottom:437.466667pt;}
.y1b_c00291{bottom:455.066667pt;}
.y1a_c00291{bottom:472.666667pt;}
.y19_c00291{bottom:490.266667pt;}
.y18_c00291{bottom:508.133333pt;}
.y17_c00291{bottom:525.733333pt;}
.y16_c00291{bottom:544.000000pt;}
.y15_c00291{bottom:561.866667pt;}
.y14_c00291{bottom:579.466667pt;}
.y13_c00291{bottom:597.333333pt;}
.y12_c00291{bottom:614.933333pt;}
.y11_c00291{bottom:632.800000pt;}
.y10_c00291{bottom:650.400000pt;}
.yf_c00291{bottom:668.000000pt;}
.ye_c00291{bottom:685.600000pt;}
.yd_c00291{bottom:703.466667pt;}
.yc_c00291{bottom:721.066667pt;}
.yb_c00291{bottom:738.933333pt;}
.ya_c00291{bottom:756.533333pt;}
.y9_c00291{bottom:774.133333pt;}
.y8_c00291{bottom:791.733333pt;}
.y7_c00291{bottom:809.600000pt;}
.y6_c00291{bottom:827.200000pt;}
.y5_c00291{bottom:844.800000pt;}
.y4_c00291{bottom:862.400000pt;}
.y3_c00291{bottom:880.000000pt;}
.y2_c00291{bottom:897.866667pt;}
.y1_c00291{bottom:932.533333pt;}
.h4_c00291{height:37.333333pt;}
.h2_c00291{height:48.000000pt;}
.h3_c00291{height:53.333333pt;}
.h0_c00291{height:1037.119955pt;}
.h1_c00291{height:1037.333333pt;}
.w0_c00291{width:816.640056pt;}
.w1_c00291{width:816.666667pt;}
.x0_c00291{left:0.000000pt;}
.x3_c00291{left:87.066667pt;}
.x51_c00291{left:88.133333pt;}
.x91_c00291{left:89.066667pt;}
.xbc_c00291{left:90.000000pt;}
.xdb_c00291{left:91.066667pt;}
.xf0_c00291{left:92.133333pt;}
.x126_c00291{left:93.333333pt;}
.x13d_c00291{left:94.533333pt;}
.x9c_c00291{left:104.266667pt;}
.x26_c00291{left:105.600000pt;}
.xdc_c00291{left:109.333333pt;}
.x112_c00291{left:111.200000pt;}
.x12b_c00291{left:113.333333pt;}
.x84_c00291{left:114.533333pt;}
.x52_c00291{left:115.600000pt;}
.xfc_c00291{left:118.666667pt;}
.x37_c00291{left:119.733333pt;}
.x78_c00291{left:121.866667pt;}
.xdd_c00291{left:125.066667pt;}
.x6c_c00291{left:128.000000pt;}
.xae_c00291{left:129.466667pt;}
.x27_c00291{left:131.200000pt;}
.xa6_c00291{left:132.400000pt;}
.x116_c00291{left:133.600000pt;}
.x45_c00291{left:134.933333pt;}
.x5f_c00291{left:137.066667pt;}
.x12c_c00291{left:138.666667pt;}
.x53_c00291{left:140.266667pt;}
.x6d_c00291{left:143.333333pt;}
.x127_c00291{left:145.200000pt;}
.x85_c00291{left:147.466667pt;}
.x10b_c00291{left:149.466667pt;}
.x38_c00291{left:150.800000pt;}
.x4_c00291{left:152.000000pt;}
.x122_c00291{left:154.000000pt;}
.xbd_c00291{left:155.866667pt;}
.x79_c00291{left:158.933333pt;}
.xb5_c00291{left:160.000000pt;}
.x6e_c00291{left:161.866667pt;}
.x28_c00291{left:162.933333pt;}
.x46_c00291{left:166.000000pt;}
.x105_c00291{left:167.466667pt;}
.x39_c00291{left:168.666667pt;}
.xde_c00291{left:169.600000pt;}
.x60_c00291{left:171.333333pt;}
.x9d_c00291{left:173.333333pt;}
.x15_c00291{left:175.066667pt;}
.x117_c00291{left:176.133333pt;}
.xbe_c00291{left:177.333333pt;}
.x29_c00291{left:180.266667pt;}
.x7a_c00291{left:182.666667pt;}
.x5_c00291{left:184.266667pt;}
.x54_c00291{left:185.733333pt;}
.x92_c00291{left:188.666667pt;}
.x47_c00291{left:191.600000pt;}
.xf4_c00291{left:194.133333pt;}
.x16_c00291{left:195.200000pt;}
.x138_c00291{left:196.266667pt;}
.xa7_c00291{left:198.666667pt;}
.x118_c00291{left:202.400000pt;}
.xce_c00291{left:204.133333pt;}
.x86_c00291{left:205.333333pt;}
.x3a_c00291{left:206.666667pt;}
.x13a_c00291{left:207.733333pt;}
.x6_c00291{left:208.933333pt;}
.x2a_c00291{left:210.666667pt;}
.x61_c00291{left:212.266667pt;}
.x17_c00291{left:216.000000pt;}
.x100_c00291{left:217.333333pt;}
.xc5_c00291{left:218.800000pt;}
.xf5_c00291{left:221.600000pt;}
.x120_c00291{left:222.533333pt;}
.x7b_c00291{left:224.000000pt;}
.xa8_c00291{left:225.600000pt;}
.x132_c00291{left:226.800000pt;}
.x62_c00291{left:228.000000pt;}
.x12f_c00291{left:229.600000pt;}
.x7_c00291{left:231.600000pt;}
.x6f_c00291{left:234.533333pt;}
.x87_c00291{left:235.733333pt;}
.x106_c00291{left:237.200000pt;}
.x3b_c00291{left:238.400000pt;}
.x9e_c00291{left:239.333333pt;}
.xb6_c00291{left:240.933333pt;}
.x18_c00291{left:242.266667pt;}
.x55_c00291{left:245.866667pt;}
.x113_c00291{left:247.866667pt;}
.x88_c00291{left:249.200000pt;}
.x11c_c00291{left:251.466667pt;}
.xbf_c00291{left:253.733333pt;}
.x93_c00291{left:255.200000pt;}
.xd6_c00291{left:256.400000pt;}
.x2b_c00291{left:257.333333pt;}
.x8_c00291{left:259.066667pt;}
.x10c_c00291{left:260.266667pt;}
.xeb_c00291{left:261.200000pt;}
.x7c_c00291{left:262.666667pt;}
.x48_c00291{left:264.933333pt;}
.xc6_c00291{left:266.533333pt;}
.xf6_c00291{left:269.600000pt;}
.xa9_c00291{left:270.666667pt;}
.x56_c00291{left:272.800000pt;}
.x63_c00291{left:274.666667pt;}
.xcf_c00291{left:277.733333pt;}
.xc0_c00291{left:279.333333pt;}
.x11e_c00291{left:280.400000pt;}
.x94_c00291{left:283.333333pt;}
.x9_c00291{left:286.266667pt;}
.xec_c00291{left:287.466667pt;}
.x2c_c00291{left:289.066667pt;}
.x49_c00291{left:292.133333pt;}
.xdf_c00291{left:294.400000pt;}
.x11d_c00291{left:295.600000pt;}
.x3c_c00291{left:298.000000pt;}
.x123_c00291{left:299.600000pt;}
.x57_c00291{left:300.666667pt;}
.xaa_c00291{left:302.666667pt;}
.x89_c00291{left:304.266667pt;}
.x95_c00291{left:306.000000pt;}
.x19_c00291{left:308.800000pt;}
.xd7_c00291{left:310.533333pt;}
.xf7_c00291{left:313.733333pt;}
.x139_c00291{left:315.600000pt;}
.x58_c00291{left:316.666667pt;}
.x70_c00291{left:319.333333pt;}
.x10d_c00291{left:320.800000pt;}
.x137_c00291{left:321.733333pt;}
.x3d_c00291{left:323.333333pt;}
.xaf_c00291{left:324.933333pt;}
.xa_c00291{left:326.000000pt;}
.x130_c00291{left:326.933333pt;}
.x64_c00291{left:329.066667pt;}
.xb7_c00291{left:330.266667pt;}
.x119_c00291{left:332.133333pt;}
.x133_c00291{left:334.933333pt;}
.x7d_c00291{left:337.866667pt;}
.x4a_c00291{left:340.400000pt;}
.xe0_c00291{left:342.400000pt;}
.x3e_c00291{left:344.800000pt;}
.x2d_c00291{left:345.733333pt;}
.x1a_c00291{left:347.200000pt;}
.x1_c00291{left:351.066667pt;}
.xd0_c00291{left:352.266667pt;}
.x4b_c00291{left:353.466667pt;}
.x65_c00291{left:354.933333pt;}
.xb0_c00291{left:356.000000pt;}
.x13b_c00291{left:357.200000pt;}
.x59_c00291{left:358.933333pt;}
.xb_c00291{left:361.200000pt;}
.x10e_c00291{left:364.266667pt;}
.x8a_c00291{left:366.000000pt;}
.x121_c00291{left:366.933333pt;}
.xd1_c00291{left:369.866667pt;}
.xf8_c00291{left:371.866667pt;}
.xe5_c00291{left:372.800000pt;}
.xc7_c00291{left:374.000000pt;}
.xab_c00291{left:374.933333pt;}
.x1b_c00291{left:376.266667pt;}
.x8b_c00291{left:381.066667pt;}
.xc_c00291{left:382.666667pt;}
.x9f_c00291{left:383.866667pt;}
.x5a_c00291{left:385.466667pt;}
.xb1_c00291{left:389.333333pt;}
.x10f_c00291{left:391.733333pt;}
.xac_c00291{left:392.800000pt;}
.x66_c00291{left:394.000000pt;}
.x1c_c00291{left:396.800000pt;}
.xed_c00291{left:398.266667pt;}
.xc8_c00291{left:399.600000pt;}
.x4c_c00291{left:405.600000pt;}
.x3f_c00291{left:406.533333pt;}
.x2e_c00291{left:409.733333pt;}
.x67_c00291{left:411.600000pt;}
.xe6_c00291{left:412.533333pt;}
.xd_c00291{left:413.733333pt;}
.x114_c00291{left:415.333333pt;}
.xe1_c00291{left:416.400000pt;}
.xc1_c00291{left:417.866667pt;}
.x8c_c00291{left:420.133333pt;}
.xb8_c00291{left:422.266667pt;}
.x40_c00291{left:423.866667pt;}
.x96_c00291{left:425.066667pt;}
.x2f_c00291{left:427.333333pt;}
.x71_c00291{left:429.466667pt;}
.x101_c00291{left:431.200000pt;}
.x1d_c00291{left:433.600000pt;}
.x5b_c00291{left:436.000000pt;}
.xe_c00291{left:438.400000pt;}
.xa0_c00291{left:440.533333pt;}
.xb9_c00291{left:441.466667pt;}
.x115_c00291{left:442.933333pt;}
.xee_c00291{left:444.000000pt;}
.xd2_c00291{left:446.133333pt;}
.x72_c00291{left:448.000000pt;}
.x97_c00291{left:449.333333pt;}
.xf_c00291{left:450.933333pt;}
.x30_c00291{left:452.266667pt;}
.x1e_c00291{left:454.400000pt;}
.x110_c00291{left:455.733333pt;}
.xe7_c00291{left:456.666667pt;}
.x134_c00291{left:459.733333pt;}
.xf1_c00291{left:461.866667pt;}
.x7e_c00291{left:466.266667pt;}
.x128_c00291{left:467.866667pt;}
.xc9_c00291{left:469.333333pt;}
.xf9_c00291{left:471.333333pt;}
.xb2_c00291{left:472.533333pt;}
.x1f_c00291{left:474.933333pt;}
.x98_c00291{left:475.866667pt;}
.x68_c00291{left:477.200000pt;}
.x10_c00291{left:478.133333pt;}
.xc2_c00291{left:480.933333pt;}
.x102_c00291{left:483.333333pt;}
.x12d_c00291{left:484.800000pt;}
.xe2_c00291{left:486.533333pt;}
.xd3_c00291{left:488.000000pt;}
.x4d_c00291{left:490.133333pt;}
.x8d_c00291{left:491.200000pt;}
.xfd_c00291{left:495.200000pt;}
.x5c_c00291{left:497.200000pt;}
.x99_c00291{left:499.200000pt;}
.x31_c00291{left:500.266667pt;}
.x73_c00291{left:502.133333pt;}
.x41_c00291{left:504.533333pt;}
.xa1_c00291{left:505.466667pt;}
.x8e_c00291{left:508.800000pt;}
.xe8_c00291{left:510.800000pt;}
.x20_c00291{left:514.933333pt;}
.x4e_c00291{left:516.666667pt;}
.xba_c00291{left:517.600000pt;}
.x124_c00291{left:519.200000pt;}
.x107_c00291{left:520.400000pt;}
.x11a_c00291{left:522.400000pt;}
.x42_c00291{left:525.333333pt;}
.x32_c00291{left:527.733333pt;}
.xd4_c00291{left:529.333333pt;}
.x7f_c00291{left:530.933333pt;}
.x131_c00291{left:533.333333pt;}
.xe3_c00291{left:534.533333pt;}
.x11_c00291{left:535.733333pt;}
.xfe_c00291{left:537.066667pt;}
.x80_c00291{left:541.866667pt;}
.x4f_c00291{left:543.200000pt;}
.xb3_c00291{left:544.133333pt;}
.x21_c00291{left:545.333333pt;}
.x74_c00291{left:547.866667pt;}
.x12_c00291{left:550.400000pt;}
.xfa_c00291{left:552.933333pt;}
.xd5_c00291{left:554.933333pt;}
.xe9_c00291{left:556.933333pt;}
.x111_c00291{left:558.800000pt;}
.xa2_c00291{left:560.133333pt;}
.x22_c00291{left:561.066667pt;}
.xf2_c00291{left:562.000000pt;}
.x33_c00291{left:562.933333pt;}
.xca_c00291{left:565.066667pt;}
.x135_c00291{left:567.866667pt;}
.x5d_c00291{left:568.933333pt;}
.xb4_c00291{left:570.400000pt;}
.x12e_c00291{left:571.466667pt;}
.x108_c00291{left:573.466667pt;}
.x11f_c00291{left:574.400000pt;}
.x125_c00291{left:575.866667pt;}
.xd8_c00291{left:577.200000pt;}
.x75_c00291{left:578.533333pt;}
.x8f_c00291{left:579.600000pt;}
.x69_c00291{left:582.133333pt;}
.xa3_c00291{left:583.200000pt;}
.x43_c00291{left:584.533333pt;}
.x23_c00291{left:588.533333pt;}
.x81_c00291{left:590.533333pt;}
.x129_c00291{left:591.733333pt;}
.x9a_c00291{left:593.600000pt;}
.x76_c00291{left:594.800000pt;}
.x6a_c00291{left:597.466667pt;}
.x109_c00291{left:598.400000pt;}
.xfb_c00291{left:600.266667pt;}
.x13_c00291{left:601.333333pt;}
.x50_c00291{left:604.000000pt;}
.x34_c00291{left:606.133333pt;}
.xcb_c00291{left:609.200000pt;}
.x103_c00291{left:610.133333pt;}
.xc3_c00291{left:611.866667pt;}
.xa4_c00291{left:614.266667pt;}
.x9b_c00291{left:616.266667pt;}
.x90_c00291{left:617.333333pt;}
.xd9_c00291{left:618.533333pt;}
.xad_c00291{left:620.666667pt;}
.xea_c00291{left:622.533333pt;}
.xf3_c00291{left:623.866667pt;}
.xcc_c00291{left:625.200000pt;}
.x24_c00291{left:626.666667pt;}
.xff_c00291{left:630.133333pt;}
.x82_c00291{left:631.866667pt;}
.x14_c00291{left:633.600000pt;}
.xbb_c00291{left:634.666667pt;}
.x77_c00291{left:635.733333pt;}
.xc4_c00291{left:637.200000pt;}
.x5e_c00291{left:639.733333pt;}
.x35_c00291{left:643.866667pt;}
.x44_c00291{left:645.733333pt;}
.xe4_c00291{left:648.666667pt;}
.x25_c00291{left:651.600000pt;}
.x13c_c00291{left:652.933333pt;}
.xda_c00291{left:654.000000pt;}
.x2_c00291{left:655.733333pt;}
.x83_c00291{left:657.200000pt;}
.xa5_c00291{left:658.800000pt;}
.x36_c00291{left:661.466667pt;}
.x12a_c00291{left:663.333333pt;}
.xcd_c00291{left:664.266667pt;}
.xef_c00291{left:666.266667pt;}
.x10a_c00291{left:667.200000pt;}
.x6b_c00291{left:669.200000pt;}
.x11b_c00291{left:670.266667pt;}
.x136_c00291{left:672.533333pt;}
.x104_c00291{left:674.133333pt;}
}





/* 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_c00292 {
    display:none;
  }
  .loading-indicator_c00292.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00292 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_c00292 { 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_c00292" -> "#page-container .classname_c00292")
 */
.pf_c00292 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00292 { /* 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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00292 { /* 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_c00292 { /* 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_c00292 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00292 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00292 {overflow:visible;}
  }
}
.c_c00292 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00292 { /* 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_c00292:after { /* webkit #35443 */
  content: '';
}
.t_c00292:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00292 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 */
}
.__c00292 { /* 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_c00292 { /* info for Javascript */
  display:none;
}
.l_c00292 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00292 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00292 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00292: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_c00292 {
    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_c00292.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00292.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_c00292 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00292{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00292;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.000000;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;}
.m16_c00292{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00292{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00292{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00292{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m63_c00292{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00292{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00292{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m57_c00292{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00292{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00292{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m26_c00292{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m82_c00292{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00292{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m52_c00292{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m23_c00292{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m48_c00292{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m85_c00292{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00292{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m75_c00292{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00292{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00292{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00292{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00292{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m64_c00292{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m2_c00292{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m99_c00292{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00292{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m81_c00292{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m38_c00292{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00292{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00292{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00292{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m14_c00292{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m10_c00292{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m86_c00292{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m44_c00292{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m35_c00292{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00292{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m18_c00292{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00292{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7_c00292{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m42_c00292{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.mf_c00292{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00292{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.ma_c00292{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m94_c00292{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m43_c00292{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m95_c00292{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00292{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m72_c00292{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00292{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00292{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00292{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m29_c00292{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m54_c00292{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m19_c00292{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m36_c00292{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md_c00292{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m65_c00292{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00292{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00292{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00292{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00292{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m12_c00292{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m27_c00292{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00292{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m31_c00292{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m46_c00292{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00292{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m60_c00292{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00292{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m66_c00292{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m41_c00292{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00292{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3_c00292{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9_c00292{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5_c00292{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m51_c00292{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00292{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m40_c00292{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m15_c00292{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m70_c00292{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00292{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m98_c00292{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00292{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00292{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m96_c00292{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc_c00292{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m77_c00292{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m97_c00292{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00292{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00292{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00292{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00292{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00292{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00292{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m34_c00292{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m47_c00292{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00292{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00292{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00292{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00292{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m45_c00292{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00292{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mb_c00292{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00292{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m83_c00292{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4_c00292{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00292{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m21_c00292{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m58_c00292{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00292{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00292{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00292{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00292{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00292{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m68_c00292{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00292{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m50_c00292{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00292{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m69_c00292{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00292{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00292{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00292{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m49_c00292{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m33_c00292{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00292{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m24_c00292{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m56_c00292{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m39_c00292{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28_c00292{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m76_c00292{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11_c00292{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m90_c00292{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m53_c00292{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m20_c00292{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m37_c00292{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m73_c00292{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m84_c00292{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00292{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00292{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00292{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m88_c00292{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m62_c00292{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m25_c00292{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m22_c00292{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m17_c00292{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00292{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00292{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00292{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00292{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m67_c00292{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m13_c00292{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00292{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m30_c00292{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00292{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00292{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00292{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m61_c00292{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m79_c00292{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00292{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m71_c00292{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00292{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00292{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m93_c00292{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m92_c00292{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m89_c00292{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m87_c00292{transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.456000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00292{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m91_c00292{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00292{vertical-align:0.000000px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{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__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00292{word-spacing:-8.863636px;}
.ws1_c00292{word-spacing:-5.138889px;}
.ws2_c00292{word-spacing:-4.861111px;}
.ws0_c00292{word-spacing:-3.472222px;}
.ws6_c00292{word-spacing:-3.235294px;}
.ws7_c00292{word-spacing:-0.606061px;}
.wsb_c00292{word-spacing:0.000000px;}
.ws9_c00292{word-spacing:0.277778px;}
.wsa_c00292{word-spacing:2.608696px;}
.ws4_c00292{word-spacing:2.857143px;}
.ws3_c00292{word-spacing:3.472222px;}
.ws5_c00292{word-spacing:3.518519px;}
.fc0_c00292{color:transparent;}
.fs1_c00292{font-size:54.000000px;}
.fs0_c00292{font-size:60.000000px;}
.y0_c00292{bottom:0.000000px;}
.y2c_c00292{bottom:152.700000px;}
.y2b_c00292{bottom:193.950000px;}
.y2a_c00292{bottom:213.750000px;}
.y29_c00292{bottom:233.850000px;}
.y28_c00292{bottom:253.950000px;}
.y27_c00292{bottom:273.750000px;}
.y26_c00292{bottom:293.550000px;}
.y25_c00292{bottom:313.350000px;}
.y24_c00292{bottom:333.150000px;}
.y23_c00292{bottom:352.950000px;}
.y22_c00292{bottom:372.750000px;}
.y21_c00292{bottom:392.850000px;}
.y20_c00292{bottom:412.650000px;}
.y1f_c00292{bottom:432.450000px;}
.y1e_c00292{bottom:452.550000px;}
.y1d_c00292{bottom:472.350000px;}
.y1c_c00292{bottom:492.450000px;}
.y1b_c00292{bottom:512.250000px;}
.y1a_c00292{bottom:532.650000px;}
.y19_c00292{bottom:552.450000px;}
.y18_c00292{bottom:572.550000px;}
.y17_c00292{bottom:592.050000px;}
.y16_c00292{bottom:611.550000px;}
.y15_c00292{bottom:631.650000px;}
.y14_c00292{bottom:651.450000px;}
.y13_c00292{bottom:671.250000px;}
.y12_c00292{bottom:691.800000px;}
.y11_c00292{bottom:711.600000px;}
.y10_c00292{bottom:731.400000px;}
.yf_c00292{bottom:751.200000px;}
.ye_c00292{bottom:771.300000px;}
.yd_c00292{bottom:791.100000px;}
.yc_c00292{bottom:810.900000px;}
.yb_c00292{bottom:831.000000px;}
.ya_c00292{bottom:850.800000px;}
.y9_c00292{bottom:870.600000px;}
.y8_c00292{bottom:890.700000px;}
.y7_c00292{bottom:910.500000px;}
.y6_c00292{bottom:930.600000px;}
.y5_c00292{bottom:950.400000px;}
.y4_c00292{bottom:970.200000px;}
.y3_c00292{bottom:990.000000px;}
.y2_c00292{bottom:1010.100000px;}
.y1_c00292{bottom:1048.350000px;}
.h3_c00292{height:54.000000px;}
.h2_c00292{height:60.000000px;}
.h0_c00292{height:1166.759949px;}
.h1_c00292{height:1167.000000px;}
.w0_c00292{width:918.720063px;}
.w1_c00292{width:918.750000px;}
.x0_c00292{left:0.000000px;}
.x128_c00292{left:147.600000px;}
.x60_c00292{left:148.800000px;}
.x11_c00292{left:149.850000px;}
.x1_c00292{left:151.200000px;}
.xab_c00292{left:152.550000px;}
.x10b_c00292{left:164.550000px;}
.x100_c00292{left:167.250000px;}
.x7d_c00292{left:171.900000px;}
.x85_c00292{left:174.600000px;}
.x122_c00292{left:176.700000px;}
.x69_c00292{left:177.750000px;}
.x47_c00292{left:180.450000px;}
.x3_c00292{left:181.500000px;}
.xc0_c00292{left:185.400000px;}
.x11a_c00292{left:186.600000px;}
.x12c_c00292{left:188.850000px;}
.x10c_c00292{left:190.500000px;}
.x1d_c00292{left:191.550000px;}
.x12_c00292{left:195.600000px;}
.x8f_c00292{left:196.950000px;}
.xf0_c00292{left:198.600000px;}
.xd1_c00292{left:200.550000px;}
.x39_c00292{left:202.950000px;}
.x61_c00292{left:204.600000px;}
.x6a_c00292{left:206.850000px;}
.x86_c00292{left:208.500000px;}
.x101_c00292{left:209.700000px;}
.x99_c00292{left:212.850000px;}
.xac_c00292{left:214.800000px;}
.x73_c00292{left:217.950000px;}
.x2d_c00292{left:219.450000px;}
.x1e_c00292{left:221.850000px;}
.xf8_c00292{left:223.200000px;}
.x4_c00292{left:224.400000px;}
.xdd_c00292{left:226.500000px;}
.x13d_c00292{left:227.550000px;}
.xd2_c00292{left:229.050000px;}
.xa3_c00292{left:230.100000px;}
.x53_c00292{left:231.300000px;}
.xc9_c00292{left:232.500000px;}
.x74_c00292{left:235.950000px;}
.x11e_c00292{left:237.000000px;}
.xad_c00292{left:238.950000px;}
.x11c_c00292{left:240.000000px;}
.x3a_c00292{left:241.050000px;}
.x12d_c00292{left:244.650000px;}
.x130_c00292{left:247.200000px;}
.x54_c00292{left:248.250000px;}
.x2e_c00292{left:249.300000px;}
.x13_c00292{left:251.100000px;}
.xf1_c00292{left:253.650000px;}
.x6b_c00292{left:255.150000px;}
.x9a_c00292{left:257.550000px;}
.x107_c00292{left:259.950000px;}
.x5_c00292{left:261.450000px;}
.xd3_c00292{left:262.500000px;}
.xc1_c00292{left:265.650000px;}
.x13e_c00292{left:267.150000px;}
.x87_c00292{left:268.650000px;}
.x1f_c00292{left:270.150000px;}
.x90_c00292{left:271.200000px;}
.x3b_c00292{left:272.700000px;}
.x55_c00292{left:274.200000px;}
.xb7_c00292{left:276.000000px;}
.x102_c00292{left:278.100000px;}
.x6_c00292{left:281.250000px;}
.x137_c00292{left:284.700000px;}
.xae_c00292{left:286.050000px;}
.x91_c00292{left:287.700000px;}
.xca_c00292{left:290.100000px;}
.x6c_c00292{left:291.900000px;}
.x7e_c00292{left:293.700000px;}
.xf9_c00292{left:295.650000px;}
.x88_c00292{left:297.150000px;}
.x14_c00292{left:298.950000px;}
.x13a_c00292{left:300.150000px;}
.x62_c00292{left:302.550000px;}
.x48_c00292{left:304.050000px;}
.xd4_c00292{left:306.000000px;}
.x7_c00292{left:310.350000px;}
.x11f_c00292{left:311.850000px;}
.xb8_c00292{left:313.800000px;}
.xa4_c00292{left:315.900000px;}
.x108_c00292{left:317.250000px;}
.x20_c00292{left:320.250000px;}
.xaf_c00292{left:321.750000px;}
.xc2_c00292{left:324.300000px;}
.x15_c00292{left:327.450000px;}
.xe9_c00292{left:332.100000px;}
.xed_c00292{left:335.100000px;}
.xd5_c00292{left:337.350000px;}
.x49_c00292{left:338.550000px;}
.x11b_c00292{left:339.900000px;}
.x2f_c00292{left:341.400000px;}
.x75_c00292{left:343.950000px;}
.x6d_c00292{left:345.600000px;}
.x123_c00292{left:349.200000px;}
.x8_c00292{left:351.450000px;}
.xa5_c00292{left:352.950000px;}
.x89_c00292{left:356.250000px;}
.x4a_c00292{left:358.650000px;}
.x3c_c00292{left:360.150000px;}
.xee_c00292{left:362.400000px;}
.x6e_c00292{left:363.900000px;}
.x21_c00292{left:366.300000px;}
.x113_c00292{left:368.100000px;}
.x9b_c00292{left:370.650000px;}
.xd6_c00292{left:372.300000px;}
.xb0_c00292{left:373.650000px;}
.x16_c00292{left:375.600000px;}
.xb9_c00292{left:378.600000px;}
.x114_c00292{left:379.950000px;}
.xe4_c00292{left:381.600000px;}
.x7f_c00292{left:382.650000px;}
.x4b_c00292{left:387.450000px;}
.x132_c00292{left:389.250000px;}
.xfa_c00292{left:390.300000px;}
.x138_c00292{left:392.700000px;}
.x22_c00292{left:394.050000px;}
.xea_c00292{left:395.400000px;}
.xc3_c00292{left:398.400000px;}
.x3d_c00292{left:400.050000px;}
.x17_c00292{left:401.550000px;}
.x56_c00292{left:403.050000px;}
.xcb_c00292{left:404.250000px;}
.x76_c00292{left:406.650000px;}
.xd7_c00292{left:409.350000px;}
.x10d_c00292{left:411.900000px;}
.x30_c00292{left:413.400000px;}
.x3e_c00292{left:417.300000px;}
.xfb_c00292{left:419.100000px;}
.x120_c00292{left:420.900000px;}
.x80_c00292{left:424.350000px;}
.x77_c00292{left:425.400000px;}
.xd8_c00292{left:427.350000px;}
.x9_c00292{left:429.600000px;}
.x57_c00292{left:431.100000px;}
.x4c_c00292{left:435.000000px;}
.x63_c00292{left:436.500000px;}
.x6f_c00292{left:438.000000px;}
.x129_c00292{left:439.650000px;}
.x23_c00292{left:441.150000px;}
.xb1_c00292{left:442.350000px;}
.x8a_c00292{left:443.400000px;}
.x2_c00292{left:447.900000px;}
.xa_c00292{left:449.400000px;}
.x103_c00292{left:452.400000px;}
.x78_c00292{left:454.500000px;}
.x4d_c00292{left:455.550000px;}
.x31_c00292{left:456.900000px;}
.xb2_c00292{left:460.050000px;}
.x133_c00292{left:462.600000px;}
.xcc_c00292{left:464.400000px;}
.xe5_c00292{left:465.450000px;}
.x3f_c00292{left:466.650000px;}
.xde_c00292{left:468.750000px;}
.x32_c00292{left:472.050000px;}
.x9c_c00292{left:474.300000px;}
.x18_c00292{left:476.400000px;}
.xb_c00292{left:477.450000px;}
.x40_c00292{left:478.500000px;}
.x64_c00292{left:482.550000px;}
.xc4_c00292{left:483.750000px;}
.x4e_c00292{left:485.100000px;}
.x24_c00292{left:486.900000px;}
.xf2_c00292{left:488.700000px;}
.x131_c00292{left:489.900000px;}
.x134_c00292{left:492.150000px;}
.x70_c00292{left:493.350000px;}
.xa6_c00292{left:495.150000px;}
.x58_c00292{left:496.200000px;}
.xfc_c00292{left:499.050000px;}
.xc5_c00292{left:501.000000px;}
.x141_c00292{left:503.100000px;}
.x25_c00292{left:505.200000px;}
.x8b_c00292{left:510.000000px;}
.x79_c00292{left:511.800000px;}
.x59_c00292{left:514.950000px;}
.xba_c00292{left:516.150000px;}
.x9d_c00292{left:517.500000px;}
.x12a_c00292{left:519.300000px;}
.x92_c00292{left:520.800000px;}
.x4f_c00292{left:522.150000px;}
.x13f_c00292{left:523.650000px;}
.x33_c00292{left:525.000000px;}
.xf3_c00292{left:527.550000px;}
.x19_c00292{left:529.650000px;}
.x13b_c00292{left:531.000000px;}
.xc_c00292{left:532.500000px;}
.xeb_c00292{left:533.700000px;}
.xfd_c00292{left:534.750000px;}
.x81_c00292{left:535.950000px;}
.x12b_c00292{left:537.000000px;}
.x93_c00292{left:538.800000px;}
.x8c_c00292{left:539.850000px;}
.x50_c00292{left:542.250000px;}
.x121_c00292{left:543.600000px;}
.x9e_c00292{left:544.800000px;}
.x1a_c00292{left:546.900000px;}
.x41_c00292{left:548.400000px;}
.xe6_c00292{left:549.750000px;}
.x139_c00292{left:551.100000px;}
.xbb_c00292{left:552.450000px;}
.x82_c00292{left:556.050000px;}
.x5a_c00292{left:557.400000px;}
.x26_c00292{left:561.000000px;}
.xa7_c00292{left:565.350000px;}
.x1b_c00292{left:566.700000px;}
.x8d_c00292{left:568.650000px;}
.xd_c00292{left:570.000000px;}
.xbc_c00292{left:573.000000px;}
.xec_c00292{left:576.150000px;}
.x7a_c00292{left:577.350000px;}
.x115_c00292{left:578.400000px;}
.x9f_c00292{left:581.850000px;}
.x42_c00292{left:583.650000px;}
.xdf_c00292{left:586.500000px;}
.x5b_c00292{left:588.000000px;}
.x27_c00292{left:589.500000px;}
.x116_c00292{left:591.000000px;}
.x140_c00292{left:594.600000px;}
.xc6_c00292{left:596.250000px;}
.x1c_c00292{left:598.050000px;}
.xcd_c00292{left:599.250000px;}
.x94_c00292{left:601.050000px;}
.x65_c00292{left:604.650000px;}
.x10e_c00292{left:606.150000px;}
.x43_c00292{left:609.150000px;}
.xfe_c00292{left:611.100000px;}
.x124_c00292{left:612.300000px;}
.xb3_c00292{left:614.400000px;}
.x83_c00292{left:617.700000px;}
.xf4_c00292{left:619.350000px;}
.xe7_c00292{left:620.700000px;}
.xce_c00292{left:622.650000px;}
.xa8_c00292{left:624.150000px;}
.xd9_c00292{left:625.350000px;}
.x5c_c00292{left:627.600000px;}
.xa0_c00292{left:628.650000px;}
.xc7_c00292{left:631.500000px;}
.x117_c00292{left:633.900000px;}
.x66_c00292{left:636.000000px;}
.x95_c00292{left:639.150000px;}
.xe_c00292{left:641.250000px;}
.xf5_c00292{left:644.850000px;}
.xbd_c00292{left:647.250000px;}
.x28_c00292{left:649.200000px;}
.xa9_c00292{left:652.650000px;}
.xe0_c00292{left:653.850000px;}
.x10f_c00292{left:655.050000px;}
.x11d_c00292{left:657.150000px;}
.x96_c00292{left:658.200000px;}
.x67_c00292{left:659.700000px;}
.x34_c00292{left:663.000000px;}
.xb4_c00292{left:664.050000px;}
.x12e_c00292{left:666.300000px;}
.x51_c00292{left:667.650000px;}
.xf_c00292{left:669.750000px;}
.x135_c00292{left:671.100000px;}
.x109_c00292{left:673.350000px;}
.xda_c00292{left:678.300000px;}
.xe1_c00292{left:681.600000px;}
.x29_c00292{left:683.400000px;}
.xf6_c00292{left:685.500000px;}
.x5d_c00292{left:686.700000px;}
.xcf_c00292{left:687.750000px;}
.x104_c00292{left:689.400000px;}
.xef_c00292{left:690.750000px;}
.x71_c00292{left:693.900000px;}
.x44_c00292{left:696.300000px;}
.x12f_c00292{left:697.650000px;}
.x35_c00292{left:698.700000px;}
.xc8_c00292{left:700.200000px;}
.xf7_c00292{left:702.750000px;}
.x125_c00292{left:703.950000px;}
.x5e_c00292{left:705.000000px;}
.x105_c00292{left:708.900000px;}
.xd0_c00292{left:711.900000px;}
.xb5_c00292{left:713.700000px;}
.x36_c00292{left:716.700000px;}
.x2a_c00292{left:718.350000px;}
.xa1_c00292{left:719.400000px;}
.xff_c00292{left:722.400000px;}
.xdb_c00292{left:725.400000px;}
.x10a_c00292{left:726.900000px;}
.x8e_c00292{left:728.100000px;}
.x126_c00292{left:729.450000px;}
.xe2_c00292{left:732.300000px;}
.x10_c00292{left:733.800000px;}
.x45_c00292{left:736.200000px;}
.x7b_c00292{left:740.400000px;}
.x84_c00292{left:742.950000px;}
.x97_c00292{left:744.600000px;}
.xbe_c00292{left:746.250000px;}
.x118_c00292{left:747.900000px;}
.x5f_c00292{left:748.950000px;}
.x2b_c00292{left:751.500000px;}
.x68_c00292{left:753.300000px;}
.x37_c00292{left:754.500000px;}
.xe8_c00292{left:757.500000px;}
.x110_c00292{left:758.700000px;}
.x106_c00292{left:763.950000px;}
.x119_c00292{left:766.200000px;}
.xa2_c00292{left:768.300000px;}
.x38_c00292{left:769.650000px;}
.x13c_c00292{left:771.750000px;}
.xaa_c00292{left:775.350000px;}
.x98_c00292{left:777.000000px;}
.xbf_c00292{left:778.650000px;}
.x46_c00292{left:779.850000px;}
.x111_c00292{left:785.400000px;}
.xdc_c00292{left:789.450000px;}
.x7c_c00292{left:791.550000px;}
.x72_c00292{left:792.900000px;}
.x52_c00292{left:795.750000px;}
.xe3_c00292{left:797.400000px;}
.x136_c00292{left:799.200000px;}
.x2c_c00292{left:802.950000px;}
.x112_c00292{left:804.150000px;}
.xb6_c00292{left:805.950000px;}
.x127_c00292{left:807.900000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws8_c00292{word-spacing:-7.878788pt;}
.ws1_c00292{word-spacing:-4.567901pt;}
.ws2_c00292{word-spacing:-4.320988pt;}
.ws0_c00292{word-spacing:-3.086420pt;}
.ws6_c00292{word-spacing:-2.875817pt;}
.ws7_c00292{word-spacing:-0.538721pt;}
.wsb_c00292{word-spacing:0.000000pt;}
.ws9_c00292{word-spacing:0.246914pt;}
.wsa_c00292{word-spacing:2.318841pt;}
.ws4_c00292{word-spacing:2.539683pt;}
.ws3_c00292{word-spacing:3.086420pt;}
.ws5_c00292{word-spacing:3.127572pt;}
.fs1_c00292{font-size:48.000000pt;}
.fs0_c00292{font-size:53.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y2c_c00292{bottom:135.733333pt;}
.y2b_c00292{bottom:172.400000pt;}
.y2a_c00292{bottom:190.000000pt;}
.y29_c00292{bottom:207.866667pt;}
.y28_c00292{bottom:225.733333pt;}
.y27_c00292{bottom:243.333333pt;}
.y26_c00292{bottom:260.933333pt;}
.y25_c00292{bottom:278.533333pt;}
.y24_c00292{bottom:296.133333pt;}
.y23_c00292{bottom:313.733333pt;}
.y22_c00292{bottom:331.333333pt;}
.y21_c00292{bottom:349.200000pt;}
.y20_c00292{bottom:366.800000pt;}
.y1f_c00292{bottom:384.400000pt;}
.y1e_c00292{bottom:402.266667pt;}
.y1d_c00292{bottom:419.866667pt;}
.y1c_c00292{bottom:437.733333pt;}
.y1b_c00292{bottom:455.333333pt;}
.y1a_c00292{bottom:473.466667pt;}
.y19_c00292{bottom:491.066667pt;}
.y18_c00292{bottom:508.933333pt;}
.y17_c00292{bottom:526.266667pt;}
.y16_c00292{bottom:543.600000pt;}
.y15_c00292{bottom:561.466667pt;}
.y14_c00292{bottom:579.066667pt;}
.y13_c00292{bottom:596.666667pt;}
.y12_c00292{bottom:614.933333pt;}
.y11_c00292{bottom:632.533333pt;}
.y10_c00292{bottom:650.133333pt;}
.yf_c00292{bottom:667.733333pt;}
.ye_c00292{bottom:685.600000pt;}
.yd_c00292{bottom:703.200000pt;}
.yc_c00292{bottom:720.800000pt;}
.yb_c00292{bottom:738.666667pt;}
.ya_c00292{bottom:756.266667pt;}
.y9_c00292{bottom:773.866667pt;}
.y8_c00292{bottom:791.733333pt;}
.y7_c00292{bottom:809.333333pt;}
.y6_c00292{bottom:827.200000pt;}
.y5_c00292{bottom:844.800000pt;}
.y4_c00292{bottom:862.400000pt;}
.y3_c00292{bottom:880.000000pt;}
.y2_c00292{bottom:897.866667pt;}
.y1_c00292{bottom:931.866667pt;}
.h3_c00292{height:48.000000pt;}
.h2_c00292{height:53.333333pt;}
.h0_c00292{height:1037.119955pt;}
.h1_c00292{height:1037.333333pt;}
.w0_c00292{width:816.640056pt;}
.w1_c00292{width:816.666667pt;}
.x0_c00292{left:0.000000pt;}
.x128_c00292{left:131.200000pt;}
.x60_c00292{left:132.266667pt;}
.x11_c00292{left:133.200000pt;}
.x1_c00292{left:134.400000pt;}
.xab_c00292{left:135.600000pt;}
.x10b_c00292{left:146.266667pt;}
.x100_c00292{left:148.666667pt;}
.x7d_c00292{left:152.800000pt;}
.x85_c00292{left:155.200000pt;}
.x122_c00292{left:157.066667pt;}
.x69_c00292{left:158.000000pt;}
.x47_c00292{left:160.400000pt;}
.x3_c00292{left:161.333333pt;}
.xc0_c00292{left:164.800000pt;}
.x11a_c00292{left:165.866667pt;}
.x12c_c00292{left:167.866667pt;}
.x10c_c00292{left:169.333333pt;}
.x1d_c00292{left:170.266667pt;}
.x12_c00292{left:173.866667pt;}
.x8f_c00292{left:175.066667pt;}
.xf0_c00292{left:176.533333pt;}
.xd1_c00292{left:178.266667pt;}
.x39_c00292{left:180.400000pt;}
.x61_c00292{left:181.866667pt;}
.x6a_c00292{left:183.866667pt;}
.x86_c00292{left:185.333333pt;}
.x101_c00292{left:186.400000pt;}
.x99_c00292{left:189.200000pt;}
.xac_c00292{left:190.933333pt;}
.x73_c00292{left:193.733333pt;}
.x2d_c00292{left:195.066667pt;}
.x1e_c00292{left:197.200000pt;}
.xf8_c00292{left:198.400000pt;}
.x4_c00292{left:199.466667pt;}
.xdd_c00292{left:201.333333pt;}
.x13d_c00292{left:202.266667pt;}
.xd2_c00292{left:203.600000pt;}
.xa3_c00292{left:204.533333pt;}
.x53_c00292{left:205.600000pt;}
.xc9_c00292{left:206.666667pt;}
.x74_c00292{left:209.733333pt;}
.x11e_c00292{left:210.666667pt;}
.xad_c00292{left:212.400000pt;}
.x11c_c00292{left:213.333333pt;}
.x3a_c00292{left:214.266667pt;}
.x12d_c00292{left:217.466667pt;}
.x130_c00292{left:219.733333pt;}
.x54_c00292{left:220.666667pt;}
.x2e_c00292{left:221.600000pt;}
.x13_c00292{left:223.200000pt;}
.xf1_c00292{left:225.466667pt;}
.x6b_c00292{left:226.800000pt;}
.x9a_c00292{left:228.933333pt;}
.x107_c00292{left:231.066667pt;}
.x5_c00292{left:232.400000pt;}
.xd3_c00292{left:233.333333pt;}
.xc1_c00292{left:236.133333pt;}
.x13e_c00292{left:237.466667pt;}
.x87_c00292{left:238.800000pt;}
.x1f_c00292{left:240.133333pt;}
.x90_c00292{left:241.066667pt;}
.x3b_c00292{left:242.400000pt;}
.x55_c00292{left:243.733333pt;}
.xb7_c00292{left:245.333333pt;}
.x102_c00292{left:247.200000pt;}
.x6_c00292{left:250.000000pt;}
.x137_c00292{left:253.066667pt;}
.xae_c00292{left:254.266667pt;}
.x91_c00292{left:255.733333pt;}
.xca_c00292{left:257.866667pt;}
.x6c_c00292{left:259.466667pt;}
.x7e_c00292{left:261.066667pt;}
.xf9_c00292{left:262.800000pt;}
.x88_c00292{left:264.133333pt;}
.x14_c00292{left:265.733333pt;}
.x13a_c00292{left:266.800000pt;}
.x62_c00292{left:268.933333pt;}
.x48_c00292{left:270.266667pt;}
.xd4_c00292{left:272.000000pt;}
.x7_c00292{left:275.866667pt;}
.x11f_c00292{left:277.200000pt;}
.xb8_c00292{left:278.933333pt;}
.xa4_c00292{left:280.800000pt;}
.x108_c00292{left:282.000000pt;}
.x20_c00292{left:284.666667pt;}
.xaf_c00292{left:286.000000pt;}
.xc2_c00292{left:288.266667pt;}
.x15_c00292{left:291.066667pt;}
.xe9_c00292{left:295.200000pt;}
.xed_c00292{left:297.866667pt;}
.xd5_c00292{left:299.866667pt;}
.x49_c00292{left:300.933333pt;}
.x11b_c00292{left:302.133333pt;}
.x2f_c00292{left:303.466667pt;}
.x75_c00292{left:305.733333pt;}
.x6d_c00292{left:307.200000pt;}
.x123_c00292{left:310.400000pt;}
.x8_c00292{left:312.400000pt;}
.xa5_c00292{left:313.733333pt;}
.x89_c00292{left:316.666667pt;}
.x4a_c00292{left:318.800000pt;}
.x3c_c00292{left:320.133333pt;}
.xee_c00292{left:322.133333pt;}
.x6e_c00292{left:323.466667pt;}
.x21_c00292{left:325.600000pt;}
.x113_c00292{left:327.200000pt;}
.x9b_c00292{left:329.466667pt;}
.xd6_c00292{left:330.933333pt;}
.xb0_c00292{left:332.133333pt;}
.x16_c00292{left:333.866667pt;}
.xb9_c00292{left:336.533333pt;}
.x114_c00292{left:337.733333pt;}
.xe4_c00292{left:339.200000pt;}
.x7f_c00292{left:340.133333pt;}
.x4b_c00292{left:344.400000pt;}
.x132_c00292{left:346.000000pt;}
.xfa_c00292{left:346.933333pt;}
.x138_c00292{left:349.066667pt;}
.x22_c00292{left:350.266667pt;}
.xea_c00292{left:351.466667pt;}
.xc3_c00292{left:354.133333pt;}
.x3d_c00292{left:355.600000pt;}
.x17_c00292{left:356.933333pt;}
.x56_c00292{left:358.266667pt;}
.xcb_c00292{left:359.333333pt;}
.x76_c00292{left:361.466667pt;}
.xd7_c00292{left:363.866667pt;}
.x10d_c00292{left:366.133333pt;}
.x30_c00292{left:367.466667pt;}
.x3e_c00292{left:370.933333pt;}
.xfb_c00292{left:372.533333pt;}
.x120_c00292{left:374.133333pt;}
.x80_c00292{left:377.200000pt;}
.x77_c00292{left:378.133333pt;}
.xd8_c00292{left:379.866667pt;}
.x9_c00292{left:381.866667pt;}
.x57_c00292{left:383.200000pt;}
.x4c_c00292{left:386.666667pt;}
.x63_c00292{left:388.000000pt;}
.x6f_c00292{left:389.333333pt;}
.x129_c00292{left:390.800000pt;}
.x23_c00292{left:392.133333pt;}
.xb1_c00292{left:393.200000pt;}
.x8a_c00292{left:394.133333pt;}
.x2_c00292{left:398.133333pt;}
.xa_c00292{left:399.466667pt;}
.x103_c00292{left:402.133333pt;}
.x78_c00292{left:404.000000pt;}
.x4d_c00292{left:404.933333pt;}
.x31_c00292{left:406.133333pt;}
.xb2_c00292{left:408.933333pt;}
.x133_c00292{left:411.200000pt;}
.xcc_c00292{left:412.800000pt;}
.xe5_c00292{left:413.733333pt;}
.x3f_c00292{left:414.800000pt;}
.xde_c00292{left:416.666667pt;}
.x32_c00292{left:419.600000pt;}
.x9c_c00292{left:421.600000pt;}
.x18_c00292{left:423.466667pt;}
.xb_c00292{left:424.400000pt;}
.x40_c00292{left:425.333333pt;}
.x64_c00292{left:428.933333pt;}
.xc4_c00292{left:430.000000pt;}
.x4e_c00292{left:431.200000pt;}
.x24_c00292{left:432.800000pt;}
.xf2_c00292{left:434.400000pt;}
.x131_c00292{left:435.466667pt;}
.x134_c00292{left:437.466667pt;}
.x70_c00292{left:438.533333pt;}
.xa6_c00292{left:440.133333pt;}
.x58_c00292{left:441.066667pt;}
.xfc_c00292{left:443.600000pt;}
.xc5_c00292{left:445.333333pt;}
.x141_c00292{left:447.200000pt;}
.x25_c00292{left:449.066667pt;}
.x8b_c00292{left:453.333333pt;}
.x79_c00292{left:454.933333pt;}
.x59_c00292{left:457.733333pt;}
.xba_c00292{left:458.800000pt;}
.x9d_c00292{left:460.000000pt;}
.x12a_c00292{left:461.600000pt;}
.x92_c00292{left:462.933333pt;}
.x4f_c00292{left:464.133333pt;}
.x13f_c00292{left:465.466667pt;}
.x33_c00292{left:466.666667pt;}
.xf3_c00292{left:468.933333pt;}
.x19_c00292{left:470.800000pt;}
.x13b_c00292{left:472.000000pt;}
.xc_c00292{left:473.333333pt;}
.xeb_c00292{left:474.400000pt;}
.xfd_c00292{left:475.333333pt;}
.x81_c00292{left:476.400000pt;}
.x12b_c00292{left:477.333333pt;}
.x93_c00292{left:478.933333pt;}
.x8c_c00292{left:479.866667pt;}
.x50_c00292{left:482.000000pt;}
.x121_c00292{left:483.200000pt;}
.x9e_c00292{left:484.266667pt;}
.x1a_c00292{left:486.133333pt;}
.x41_c00292{left:487.466667pt;}
.xe6_c00292{left:488.666667pt;}
.x139_c00292{left:489.866667pt;}
.xbb_c00292{left:491.066667pt;}
.x82_c00292{left:494.266667pt;}
.x5a_c00292{left:495.466667pt;}
.x26_c00292{left:498.666667pt;}
.xa7_c00292{left:502.533333pt;}
.x1b_c00292{left:503.733333pt;}
.x8d_c00292{left:505.466667pt;}
.xd_c00292{left:506.666667pt;}
.xbc_c00292{left:509.333333pt;}
.xec_c00292{left:512.133333pt;}
.x7a_c00292{left:513.200000pt;}
.x115_c00292{left:514.133333pt;}
.x9f_c00292{left:517.200000pt;}
.x42_c00292{left:518.800000pt;}
.xdf_c00292{left:521.333333pt;}
.x5b_c00292{left:522.666667pt;}
.x27_c00292{left:524.000000pt;}
.x116_c00292{left:525.333333pt;}
.x140_c00292{left:528.533333pt;}
.xc6_c00292{left:530.000000pt;}
.x1c_c00292{left:531.600000pt;}
.xcd_c00292{left:532.666667pt;}
.x94_c00292{left:534.266667pt;}
.x65_c00292{left:537.466667pt;}
.x10e_c00292{left:538.800000pt;}
.x43_c00292{left:541.466667pt;}
.xfe_c00292{left:543.200000pt;}
.x124_c00292{left:544.266667pt;}
.xb3_c00292{left:546.133333pt;}
.x83_c00292{left:549.066667pt;}
.xf4_c00292{left:550.533333pt;}
.xe7_c00292{left:551.733333pt;}
.xce_c00292{left:553.466667pt;}
.xa8_c00292{left:554.800000pt;}
.xd9_c00292{left:555.866667pt;}
.x5c_c00292{left:557.866667pt;}
.xa0_c00292{left:558.800000pt;}
.xc7_c00292{left:561.333333pt;}
.x117_c00292{left:563.466667pt;}
.x66_c00292{left:565.333333pt;}
.x95_c00292{left:568.133333pt;}
.xe_c00292{left:570.000000pt;}
.xf5_c00292{left:573.200000pt;}
.xbd_c00292{left:575.333333pt;}
.x28_c00292{left:577.066667pt;}
.xa9_c00292{left:580.133333pt;}
.xe0_c00292{left:581.200000pt;}
.x10f_c00292{left:582.266667pt;}
.x11d_c00292{left:584.133333pt;}
.x96_c00292{left:585.066667pt;}
.x67_c00292{left:586.400000pt;}
.x34_c00292{left:589.333333pt;}
.xb4_c00292{left:590.266667pt;}
.x12e_c00292{left:592.266667pt;}
.x51_c00292{left:593.466667pt;}
.xf_c00292{left:595.333333pt;}
.x135_c00292{left:596.533333pt;}
.x109_c00292{left:598.533333pt;}
.xda_c00292{left:602.933333pt;}
.xe1_c00292{left:605.866667pt;}
.x29_c00292{left:607.466667pt;}
.xf6_c00292{left:609.333333pt;}
.x5d_c00292{left:610.400000pt;}
.xcf_c00292{left:611.333333pt;}
.x104_c00292{left:612.800000pt;}
.xef_c00292{left:614.000000pt;}
.x71_c00292{left:616.800000pt;}
.x44_c00292{left:618.933333pt;}
.x12f_c00292{left:620.133333pt;}
.x35_c00292{left:621.066667pt;}
.xc8_c00292{left:622.400000pt;}
.xf7_c00292{left:624.666667pt;}
.x125_c00292{left:625.733333pt;}
.x5e_c00292{left:626.666667pt;}
.x105_c00292{left:630.133333pt;}
.xd0_c00292{left:632.800000pt;}
.xb5_c00292{left:634.400000pt;}
.x36_c00292{left:637.066667pt;}
.x2a_c00292{left:638.533333pt;}
.xa1_c00292{left:639.466667pt;}
.xff_c00292{left:642.133333pt;}
.xdb_c00292{left:644.800000pt;}
.x10a_c00292{left:646.133333pt;}
.x8e_c00292{left:647.200000pt;}
.x126_c00292{left:648.400000pt;}
.xe2_c00292{left:650.933333pt;}
.x10_c00292{left:652.266667pt;}
.x45_c00292{left:654.400000pt;}
.x7b_c00292{left:658.133333pt;}
.x84_c00292{left:660.400000pt;}
.x97_c00292{left:661.866667pt;}
.xbe_c00292{left:663.333333pt;}
.x118_c00292{left:664.800000pt;}
.x5f_c00292{left:665.733333pt;}
.x2b_c00292{left:668.000000pt;}
.x68_c00292{left:669.600000pt;}
.x37_c00292{left:670.666667pt;}
.xe8_c00292{left:673.333333pt;}
.x110_c00292{left:674.400000pt;}
.x106_c00292{left:679.066667pt;}
.x119_c00292{left:681.066667pt;}
.xa2_c00292{left:682.933333pt;}
.x38_c00292{left:684.133333pt;}
.x13c_c00292{left:686.000000pt;}
.xaa_c00292{left:689.200000pt;}
.x98_c00292{left:690.666667pt;}
.xbf_c00292{left:692.133333pt;}
.x46_c00292{left:693.200000pt;}
.x111_c00292{left:698.133333pt;}
.xdc_c00292{left:701.733333pt;}
.x7c_c00292{left:703.600000pt;}
.x72_c00292{left:704.800000pt;}
.x52_c00292{left:707.333333pt;}
.xe3_c00292{left:708.800000pt;}
.x136_c00292{left:710.400000pt;}
.x2c_c00292{left:713.733333pt;}
.x112_c00292{left:714.800000pt;}
.xb6_c00292{left:716.400000pt;}
.x127_c00292{left:718.133333pt;}
}





/* 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_c00293 {
    display:none;
  }
  .loading-indicator_c00293.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00293 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_c00293 { 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_c00293" -> "#page-container .classname_c00293")
 */
.pf_c00293 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00293 { /* 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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00293 { /* 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_c00293 { /* 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_c00293 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00293 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00293 {overflow:visible;}
  }
}
.c_c00293 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00293 { /* 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_c00293:after { /* webkit #35443 */
  content: '';
}
.t_c00293:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00293 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 */
}
.__c00293 { /* 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_c00293 { /* info for Javascript */
  display:none;
}
.l_c00293 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00293 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00293 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00293: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_c00293 {
    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_c00293.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00293.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_c00293 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00293{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00293;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.000000;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;}
.m1a_c00293{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00293{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m30_c00293{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00293{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m94_c00293{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m26_c00293{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00293{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m66_c00293{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00293{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m17_c00293{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00293{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m78_c00293{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6_c00293{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00293{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m15_c00293{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00293{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00293{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m80_c00293{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m82_c00293{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m84_c00293{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00293{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00293{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m62_c00293{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m68_c00293{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00293{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m45_c00293{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m43_c00293{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00293{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3_c00293{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m58_c00293{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m44_c00293{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m61_c00293{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00293{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00293{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m67_c00293{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m73_c00293{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00293{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00293{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00293{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m60_c00293{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00293{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00293{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m19_c00293{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m98_c00293{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00293{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m95_c00293{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m59_c00293{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m88_c00293{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00293{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00293{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.md_c00293{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m33_c00293{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00293{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m31_c00293{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m53_c00293{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8_c00293{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m75_c00293{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m35_c00293{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00293{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m40_c00293{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m39_c00293{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c00293{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m85_c00293{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00293{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00293{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m93_c00293{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m52_c00293{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m55_c00293{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00293{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m76_c00293{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00293{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00293{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m74_c00293{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.ma_c00293{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m51_c00293{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m64_c00293{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf_c00293{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00293{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00293{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00293{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00293{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7_c00293{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00293{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00293{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m18_c00293{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00293{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m32_c00293{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00293{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00293{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00293{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m96_c00293{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00293{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m77_c00293{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m81_c00293{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00293{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m36_c00293{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m23_c00293{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m24_c00293{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00293{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00293{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m27_c00293{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00293{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00293{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m10_c00293{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m91_c00293{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00293{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00293{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m42_c00293{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00293{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb_c00293{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mae_c00293{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m56_c00293{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00293{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00293{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m97_c00293{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m46_c00293{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m47_c00293{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m22_c00293{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00293{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m83_c00293{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m54_c00293{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m34_c00293{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m28_c00293{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5_c00293{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m41_c00293{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m87_c00293{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m29_c00293{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9_c00293{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m71_c00293{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m70_c00293{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);}
.m6a_c00293{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.maf_c00293{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mab_c00293{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00293{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maa_c00293{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m21_c00293{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00293{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00293{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00293{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00293{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00293{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00293{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m49_c00293{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m20_c00293{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00293{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00293{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00293{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc_c00293{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m89_c00293{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m90_c00293{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00293{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m38_c00293{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m65_c00293{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m37_c00293{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1_c00293{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mad_c00293{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m99_c00293{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00293{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m79_c00293{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m25_c00293{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m57_c00293{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m72_c00293{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m63_c00293{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00293{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m0_c00293{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00293{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m48_c00293{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m12_c00293{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00293{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m86_c00293{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m50_c00293{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00293{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00293{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m92_c00293{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00293{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.mac_c00293{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00293{vertical-align:0.000000px;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{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__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00293{word-spacing:-11.875000px;}
.ws2_c00293{word-spacing:-11.527778px;}
.ws1_c00293{word-spacing:-7.894737px;}
.ws4_c00293{word-spacing:-4.736842px;}
.ws8_c00293{word-spacing:-4.722222px;}
.ws5_c00293{word-spacing:-0.606061px;}
.wsa_c00293{word-spacing:0.000000px;}
.ws0_c00293{word-spacing:7.232143px;}
.ws9_c00293{word-spacing:8.100686px;}
.ws7_c00293{word-spacing:18.928571px;}
.ws3_c00293{word-spacing:19.259259px;}
._0_c00293{width:29.722222px;}
.fc0_c00293{color:transparent;}
.fs0_c00293{font-size:60.000000px;}
.y0_c00293{bottom:0.000000px;}
.y2c_c00293{bottom:144.750000px;}
.y2b_c00293{bottom:184.950000px;}
.y2a_c00293{bottom:204.750000px;}
.y29_c00293{bottom:224.850000px;}
.y28_c00293{bottom:244.950000px;}
.y27_c00293{bottom:264.450000px;}
.y26_c00293{bottom:284.550000px;}
.y25_c00293{bottom:304.650000px;}
.y24_c00293{bottom:324.450000px;}
.y23_c00293{bottom:343.950000px;}
.y22_c00293{bottom:364.050000px;}
.y21_c00293{bottom:384.150000px;}
.y20_c00293{bottom:403.950000px;}
.y1f_c00293{bottom:424.200000px;}
.y1e_c00293{bottom:444.000000px;}
.y1d_c00293{bottom:464.100000px;}
.y1c_c00293{bottom:483.900000px;}
.y1b_c00293{bottom:504.000000px;}
.y1a_c00293{bottom:523.800000px;}
.y19_c00293{bottom:544.200000px;}
.y18_c00293{bottom:564.300000px;}
.y17_c00293{bottom:584.400000px;}
.y16_c00293{bottom:604.200000px;}
.y15_c00293{bottom:624.000000px;}
.y14_c00293{bottom:644.100000px;}
.y13_c00293{bottom:664.200000px;}
.y12_c00293{bottom:684.000000px;}
.y11_c00293{bottom:704.100000px;}
.y10_c00293{bottom:723.900000px;}
.yf_c00293{bottom:744.000000px;}
.ye_c00293{bottom:764.100000px;}
.yd_c00293{bottom:783.900000px;}
.yc_c00293{bottom:804.000000px;}
.yb_c00293{bottom:823.800000px;}
.ya_c00293{bottom:843.600000px;}
.y9_c00293{bottom:863.400000px;}
.y8_c00293{bottom:883.500000px;}
.y7_c00293{bottom:903.600000px;}
.y6_c00293{bottom:923.400000px;}
.y5_c00293{bottom:943.200000px;}
.y4_c00293{bottom:963.000000px;}
.y3_c00293{bottom:983.550000px;}
.y2_c00293{bottom:1003.350000px;}
.y1_c00293{bottom:1040.700000px;}
.h2_c00293{height:60.000000px;}
.h0_c00293{height:1166.759949px;}
.h1_c00293{height:1167.000000px;}
.w0_c00293{width:918.720063px;}
.w1_c00293{width:918.750000px;}
.x0_c00293{left:0.000000px;}
.x3_c00293{left:111.600000px;}
.x4f_c00293{left:112.650000px;}
.xe0_c00293{left:114.150000px;}
.x4_c00293{left:131.400000px;}
.xe1_c00293{left:133.950000px;}
.xdb_c00293{left:135.300000px;}
.x90_c00293{left:140.850000px;}
.x5c_c00293{left:142.500000px;}
.xf5_c00293{left:144.600000px;}
.xe8_c00293{left:146.250000px;}
.x5_c00293{left:148.650000px;}
.xac_c00293{left:149.700000px;}
.x76_c00293{left:151.650000px;}
.x99_c00293{left:152.850000px;}
.x15_c00293{left:154.350000px;}
.x82_c00293{left:156.450000px;}
.x27_c00293{left:157.950000px;}
.x129_c00293{left:159.150000px;}
.xe2_c00293{left:162.000000px;}
.xdc_c00293{left:163.350000px;}
.xe9_c00293{left:164.850000px;}
.x11f_c00293{left:165.900000px;}
.x43_c00293{left:169.650000px;}
.xcd_c00293{left:172.350000px;}
.x6_c00293{left:173.850000px;}
.x50_c00293{left:175.350000px;}
.xad_c00293{left:178.200000px;}
.x16_c00293{left:179.550000px;}
.xd4_c00293{left:181.050000px;}
.x83_c00293{left:182.400000px;}
.x9a_c00293{left:183.450000px;}
.x5d_c00293{left:184.650000px;}
.x106_c00293{left:187.050000px;}
.x77_c00293{left:188.400000px;}
.x37_c00293{left:190.650000px;}
.x13a_c00293{left:192.600000px;}
.x133_c00293{left:194.400000px;}
.x51_c00293{left:195.450000px;}
.x12a_c00293{left:197.700000px;}
.x5e_c00293{left:200.850000px;}
.x28_c00293{left:202.650000px;}
.xfe_c00293{left:205.200000px;}
.xdd_c00293{left:206.550000px;}
.xea_c00293{left:207.600000px;}
.x38_c00293{left:208.650000px;}
.xbd_c00293{left:211.200000px;}
.x44_c00293{left:214.650000px;}
.x78_c00293{left:215.700000px;}
.x17_c00293{left:220.200000px;}
.x6b_c00293{left:224.250000px;}
.x9b_c00293{left:225.600000px;}
.x84_c00293{left:228.450000px;}
.x7_c00293{left:231.150000px;}
.x29_c00293{left:232.500000px;}
.xf6_c00293{left:234.300000px;}
.x18_c00293{left:237.150000px;}
.x12b_c00293{left:238.350000px;}
.x52_c00293{left:239.400000px;}
.xbe_c00293{left:241.500000px;}
.x107_c00293{left:243.150000px;}
.x6c_c00293{left:244.800000px;}
.x8_c00293{left:247.350000px;}
.x5f_c00293{left:250.200000px;}
.x13b_c00293{left:251.250000px;}
.xb4_c00293{left:254.850000px;}
.x85_c00293{left:257.250000px;}
.x9e_c00293{left:259.200000px;}
.xff_c00293{left:261.000000px;}
.x19_c00293{left:262.650000px;}
.x53_c00293{left:264.900000px;}
.xeb_c00293{left:266.250000px;}
.x60_c00293{left:270.750000px;}
.xae_c00293{left:271.800000px;}
.x9_c00293{left:272.850000px;}
.xf7_c00293{left:275.700000px;}
.xc6_c00293{left:276.900000px;}
.x45_c00293{left:278.400000px;}
.x2a_c00293{left:280.800000px;}
.xb5_c00293{left:282.150000px;}
.xec_c00293{left:283.500000px;}
.xd5_c00293{left:285.450000px;}
.x112_c00293{left:286.650000px;}
.x108_c00293{left:291.750000px;}
.x79_c00293{left:293.850000px;}
.x126_c00293{left:296.550000px;}
.x91_c00293{left:297.750000px;}
.x46_c00293{left:299.700000px;}
.xa_c00293{left:303.450000px;}
.x12c_c00293{left:304.950000px;}
.x113_c00293{left:307.950000px;}
.x9f_c00293{left:309.900000px;}
.xb6_c00293{left:311.250000px;}
.x120_c00293{left:313.050000px;}
.x134_c00293{left:314.700000px;}
.x39_c00293{left:316.200000px;}
.x6d_c00293{left:318.600000px;}
.x2b_c00293{left:320.850000px;}
.x7a_c00293{left:322.650000px;}
.x10f_c00293{left:325.050000px;}
.x47_c00293{left:327.750000px;}
.xe3_c00293{left:330.750000px;}
.x1a_c00293{left:332.850000px;}
.x54_c00293{left:334.350000px;}
.x61_c00293{left:336.150000px;}
.xd6_c00293{left:337.650000px;}
.xb_c00293{left:338.700000px;}
.xaf_c00293{left:340.800000px;}
.xf2_c00293{left:341.850000px;}
.x13c_c00293{left:343.800000px;}
.x7b_c00293{left:345.750000px;}
.x62_c00293{left:347.250000px;}
.x121_c00293{left:348.300000px;}
.x55_c00293{left:351.300000px;}
.x136_c00293{left:355.350000px;}
.xc0_c00293{left:357.300000px;}
.x92_c00293{left:359.250000px;}
.x100_c00293{left:360.750000px;}
.x3a_c00293{left:362.700000px;}
.xf8_c00293{left:364.950000px;}
.x9c_c00293{left:366.150000px;}
.x135_c00293{left:367.200000px;}
.x11b_c00293{left:369.000000px;}
.xc7_c00293{left:371.250000px;}
.xb7_c00293{left:372.450000px;}
.x3b_c00293{left:374.250000px;}
.x127_c00293{left:375.750000px;}
.x56_c00293{left:376.800000px;}
.xc_c00293{left:378.600000px;}
.x86_c00293{left:381.000000px;}
.x2c_c00293{left:382.800000px;}
.x109_c00293{left:383.850000px;}
.x48_c00293{left:385.050000px;}
.xc8_c00293{left:388.500000px;}
.x7c_c00293{left:389.700000px;}
.x3c_c00293{left:392.550000px;}
.xd7_c00293{left:394.200000px;}
.x87_c00293{left:397.500000px;}
.x1b_c00293{left:399.150000px;}
.x10a_c00293{left:400.800000px;}
.xa4_c00293{left:404.100000px;}
.x93_c00293{left:405.450000px;}
.x1_c00293{left:406.800000px;}
.xb0_c00293{left:408.600000px;}
.x2d_c00293{left:410.850000px;}
.x137_c00293{left:412.650000px;}
.x6e_c00293{left:415.200000px;}
.x49_c00293{left:418.950000px;}
.x12f_c00293{left:420.150000px;}
.x88_c00293{left:421.200000px;}
.x94_c00293{left:423.150000px;}
.x122_c00293{left:426.000000px;}
.x1c_c00293{left:427.650000px;}
.xc1_c00293{left:429.300000px;}
.xf9_c00293{left:430.800000px;}
.x57_c00293{left:432.300000px;}
.x3d_c00293{left:435.000000px;}
.x6f_c00293{left:436.050000px;}
.x10b_c00293{left:439.650000px;}
.x101_c00293{left:442.200000px;}
.xd_c00293{left:444.900000px;}
.xb1_c00293{left:446.400000px;}
.x2e_c00293{left:448.950000px;}
.xc2_c00293{left:450.600000px;}
.x3e_c00293{left:451.950000px;}
.x89_c00293{left:454.350000px;}
.xce_c00293{left:455.850000px;}
.x95_c00293{left:457.050000px;}
.x4a_c00293{left:458.850000px;}
.xa5_c00293{left:460.200000px;}
.xde_c00293{left:461.250000px;}
.x7d_c00293{left:463.500000px;}
.x63_c00293{left:466.800000px;}
.x11c_c00293{left:470.100000px;}
.x2f_c00293{left:471.300000px;}
.x1d_c00293{left:472.350000px;}
.x110_c00293{left:474.150000px;}
.xa6_c00293{left:475.350000px;}
.x4b_c00293{left:476.850000px;}
.xd8_c00293{left:478.050000px;}
.x116_c00293{left:479.700000px;}
.x138_c00293{left:481.350000px;}
.x96_c00293{left:483.000000px;}
.x102_c00293{left:485.400000px;}
.x58_c00293{left:487.050000px;}
.x7e_c00293{left:489.750000px;}
.xa0_c00293{left:492.750000px;}
.xe_c00293{left:494.250000px;}
.x130_c00293{left:495.450000px;}
.x10c_c00293{left:496.500000px;}
.xd9_c00293{left:497.850000px;}
.x4c_c00293{left:499.200000px;}
.xf3_c00293{left:502.050000px;}
.xe4_c00293{left:504.300000px;}
.x64_c00293{left:506.400000px;}
.x3f_c00293{left:508.050000px;}
.x1e_c00293{left:510.150000px;}
.xfc_c00293{left:511.500000px;}
.x128_c00293{left:512.550000px;}
.x30_c00293{left:514.800000px;}
.x70_c00293{left:517.800000px;}
.xed_c00293{left:519.300000px;}
.xc3_c00293{left:521.100000px;}
.xb8_c00293{left:522.150000px;}
.x11d_c00293{left:524.100000px;}
.x7f_c00293{left:526.050000px;}
.xa7_c00293{left:527.100000px;}
.x1f_c00293{left:529.200000px;}
.x131_c00293{left:532.500000px;}
.xb2_c00293{left:533.550000px;}
.x13d_c00293{left:537.150000px;}
.x71_c00293{left:538.350000px;}
.x31_c00293{left:540.300000px;}
.x8a_c00293{left:541.500000px;}
.x103_c00293{left:544.050000px;}
.xc9_c00293{left:545.550000px;}
.xee_c00293{left:547.050000px;}
.xe5_c00293{left:549.300000px;}
.x114_c00293{left:550.950000px;}
.x117_c00293{left:552.000000px;}
.x59_c00293{left:556.200000px;}
.x20_c00293{left:557.250000px;}
.x132_c00293{left:559.200000px;}
.xcf_c00293{left:560.400000px;}
.xa8_c00293{left:561.600000px;}
.x97_c00293{left:563.250000px;}
.x65_c00293{left:564.750000px;}
.xca_c00293{left:566.850000px;}
.x8b_c00293{left:569.250000px;}
.xf_c00293{left:572.100000px;}
.x5a_c00293{left:573.450000px;}
.xd0_c00293{left:574.500000px;}
.xfa_c00293{left:575.550000px;}
.xa1_c00293{left:577.650000px;}
.xb3_c00293{left:578.850000px;}
.xef_c00293{left:580.200000px;}
.x32_c00293{left:581.400000px;}
.x9d_c00293{left:582.900000px;}
.xa9_c00293{left:587.100000px;}
.x123_c00293{left:588.300000px;}
.x8c_c00293{left:594.150000px;}
.x40_c00293{left:595.500000px;}
.xcb_c00293{left:597.150000px;}
.x21_c00293{left:598.650000px;}
.x12d_c00293{left:599.850000px;}
.x118_c00293{left:602.700000px;}
.x80_c00293{left:604.200000px;}
.xb9_c00293{left:606.450000px;}
.x111_c00293{left:608.850000px;}
.x41_c00293{left:614.250000px;}
.x66_c00293{left:615.600000px;}
.x22_c00293{left:617.400000px;}
.x10_c00293{left:619.200000px;}
.xaa_c00293{left:621.300000px;}
.x8d_c00293{left:622.650000px;}
.x33_c00293{left:624.600000px;}
.xfd_c00293{left:626.850000px;}
.x4d_c00293{left:629.850000px;}
.x10d_c00293{left:631.950000px;}
.x72_c00293{left:633.150000px;}
.xf0_c00293{left:634.200000px;}
.xba_c00293{left:635.550000px;}
.x139_c00293{left:636.600000px;}
.x81_c00293{left:641.700000px;}
.x67_c00293{left:642.900000px;}
.x34_c00293{left:644.400000px;}
.xd1_c00293{left:646.500000px;}
.xbb_c00293{left:648.900000px;}
.x23_c00293{left:650.100000px;}
.xf1_c00293{left:652.500000px;}
.x73_c00293{left:656.250000px;}
.xcc_c00293{left:658.650000px;}
.x11_c00293{left:660.900000px;}
.x119_c00293{left:663.150000px;}
.x5b_c00293{left:664.500000px;}
.x124_c00293{left:667.500000px;}
.x104_c00293{left:669.450000px;}
.x35_c00293{left:671.100000px;}
.xfb_c00293{left:673.200000px;}
.xc4_c00293{left:676.200000px;}
.xa2_c00293{left:678.450000px;}
.x8e_c00293{left:680.700000px;}
.x12_c00293{left:682.500000px;}
.x74_c00293{left:684.300000px;}
.x68_c00293{left:686.850000px;}
.x125_c00293{left:688.350000px;}
.xf4_c00293{left:690.750000px;}
.x12e_c00293{left:693.900000px;}
.x10e_c00293{left:696.150000px;}
.x8f_c00293{left:698.400000px;}
.xd2_c00293{left:700.200000px;}
.x42_c00293{left:702.450000px;}
.x24_c00293{left:704.100000px;}
.x13_c00293{left:711.000000px;}
.xd3_c00293{left:713.850000px;}
.x25_c00293{left:715.200000px;}
.x69_c00293{left:717.450000px;}
.xbf_c00293{left:721.350000px;}
.x11a_c00293{left:722.850000px;}
.x115_c00293{left:725.550000px;}
.x98_c00293{left:727.350000px;}
.x4e_c00293{left:730.350000px;}
.xe6_c00293{left:731.550000px;}
.x6a_c00293{left:733.350000px;}
.x36_c00293{left:734.850000px;}
.xda_c00293{left:736.500000px;}
.x11e_c00293{left:739.350000px;}
.x75_c00293{left:746.700000px;}
.x105_c00293{left:750.150000px;}
.x2_c00293{left:751.350000px;}
.xdf_c00293{left:752.850000px;}
.xbc_c00293{left:755.850000px;}
.x26_c00293{left:757.350000px;}
.xe7_c00293{left:761.850000px;}
.xc5_c00293{left:763.650000px;}
.x14_c00293{left:765.300000px;}
.xab_c00293{left:766.350000px;}
.xa3_c00293{left:767.400000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws6_c00293{word-spacing:-10.555556pt;}
.ws2_c00293{word-spacing:-10.246914pt;}
.ws1_c00293{word-spacing:-7.017544pt;}
.ws4_c00293{word-spacing:-4.210526pt;}
.ws8_c00293{word-spacing:-4.197531pt;}
.ws5_c00293{word-spacing:-0.538721pt;}
.wsa_c00293{word-spacing:0.000000pt;}
.ws0_c00293{word-spacing:6.428571pt;}
.ws9_c00293{word-spacing:7.200610pt;}
.ws7_c00293{word-spacing:16.825397pt;}
.ws3_c00293{word-spacing:17.119342pt;}
._0_c00293{width:26.419753pt;}
.fs0_c00293{font-size:53.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y2c_c00293{bottom:128.666667pt;}
.y2b_c00293{bottom:164.400000pt;}
.y2a_c00293{bottom:182.000000pt;}
.y29_c00293{bottom:199.866667pt;}
.y28_c00293{bottom:217.733333pt;}
.y27_c00293{bottom:235.066667pt;}
.y26_c00293{bottom:252.933333pt;}
.y25_c00293{bottom:270.800000pt;}
.y24_c00293{bottom:288.400000pt;}
.y23_c00293{bottom:305.733333pt;}
.y22_c00293{bottom:323.600000pt;}
.y21_c00293{bottom:341.466667pt;}
.y20_c00293{bottom:359.066667pt;}
.y1f_c00293{bottom:377.066667pt;}
.y1e_c00293{bottom:394.666667pt;}
.y1d_c00293{bottom:412.533333pt;}
.y1c_c00293{bottom:430.133333pt;}
.y1b_c00293{bottom:448.000000pt;}
.y1a_c00293{bottom:465.600000pt;}
.y19_c00293{bottom:483.733333pt;}
.y18_c00293{bottom:501.600000pt;}
.y17_c00293{bottom:519.466667pt;}
.y16_c00293{bottom:537.066667pt;}
.y15_c00293{bottom:554.666667pt;}
.y14_c00293{bottom:572.533333pt;}
.y13_c00293{bottom:590.400000pt;}
.y12_c00293{bottom:608.000000pt;}
.y11_c00293{bottom:625.866667pt;}
.y10_c00293{bottom:643.466667pt;}
.yf_c00293{bottom:661.333333pt;}
.ye_c00293{bottom:679.200000pt;}
.yd_c00293{bottom:696.800000pt;}
.yc_c00293{bottom:714.666667pt;}
.yb_c00293{bottom:732.266667pt;}
.ya_c00293{bottom:749.866667pt;}
.y9_c00293{bottom:767.466667pt;}
.y8_c00293{bottom:785.333333pt;}
.y7_c00293{bottom:803.200000pt;}
.y6_c00293{bottom:820.800000pt;}
.y5_c00293{bottom:838.400000pt;}
.y4_c00293{bottom:856.000000pt;}
.y3_c00293{bottom:874.266667pt;}
.y2_c00293{bottom:891.866667pt;}
.y1_c00293{bottom:925.066667pt;}
.h2_c00293{height:53.333333pt;}
.h0_c00293{height:1037.119955pt;}
.h1_c00293{height:1037.333333pt;}
.w0_c00293{width:816.640056pt;}
.w1_c00293{width:816.666667pt;}
.x0_c00293{left:0.000000pt;}
.x3_c00293{left:99.200000pt;}
.x4f_c00293{left:100.133333pt;}
.xe0_c00293{left:101.466667pt;}
.x4_c00293{left:116.800000pt;}
.xe1_c00293{left:119.066667pt;}
.xdb_c00293{left:120.266667pt;}
.x90_c00293{left:125.200000pt;}
.x5c_c00293{left:126.666667pt;}
.xf5_c00293{left:128.533333pt;}
.xe8_c00293{left:130.000000pt;}
.x5_c00293{left:132.133333pt;}
.xac_c00293{left:133.066667pt;}
.x76_c00293{left:134.800000pt;}
.x99_c00293{left:135.866667pt;}
.x15_c00293{left:137.200000pt;}
.x82_c00293{left:139.066667pt;}
.x27_c00293{left:140.400000pt;}
.x129_c00293{left:141.466667pt;}
.xe2_c00293{left:144.000000pt;}
.xdc_c00293{left:145.200000pt;}
.xe9_c00293{left:146.533333pt;}
.x11f_c00293{left:147.466667pt;}
.x43_c00293{left:150.800000pt;}
.xcd_c00293{left:153.200000pt;}
.x6_c00293{left:154.533333pt;}
.x50_c00293{left:155.866667pt;}
.xad_c00293{left:158.400000pt;}
.x16_c00293{left:159.600000pt;}
.xd4_c00293{left:160.933333pt;}
.x83_c00293{left:162.133333pt;}
.x9a_c00293{left:163.066667pt;}
.x5d_c00293{left:164.133333pt;}
.x106_c00293{left:166.266667pt;}
.x77_c00293{left:167.466667pt;}
.x37_c00293{left:169.466667pt;}
.x13a_c00293{left:171.200000pt;}
.x133_c00293{left:172.800000pt;}
.x51_c00293{left:173.733333pt;}
.x12a_c00293{left:175.733333pt;}
.x5e_c00293{left:178.533333pt;}
.x28_c00293{left:180.133333pt;}
.xfe_c00293{left:182.400000pt;}
.xdd_c00293{left:183.600000pt;}
.xea_c00293{left:184.533333pt;}
.x38_c00293{left:185.466667pt;}
.xbd_c00293{left:187.733333pt;}
.x44_c00293{left:190.800000pt;}
.x78_c00293{left:191.733333pt;}
.x17_c00293{left:195.733333pt;}
.x6b_c00293{left:199.333333pt;}
.x9b_c00293{left:200.533333pt;}
.x84_c00293{left:203.066667pt;}
.x7_c00293{left:205.466667pt;}
.x29_c00293{left:206.666667pt;}
.xf6_c00293{left:208.266667pt;}
.x18_c00293{left:210.800000pt;}
.x12b_c00293{left:211.866667pt;}
.x52_c00293{left:212.800000pt;}
.xbe_c00293{left:214.666667pt;}
.x107_c00293{left:216.133333pt;}
.x6c_c00293{left:217.600000pt;}
.x8_c00293{left:219.866667pt;}
.x5f_c00293{left:222.400000pt;}
.x13b_c00293{left:223.333333pt;}
.xb4_c00293{left:226.533333pt;}
.x85_c00293{left:228.666667pt;}
.x9e_c00293{left:230.400000pt;}
.xff_c00293{left:232.000000pt;}
.x19_c00293{left:233.466667pt;}
.x53_c00293{left:235.466667pt;}
.xeb_c00293{left:236.666667pt;}
.x60_c00293{left:240.666667pt;}
.xae_c00293{left:241.600000pt;}
.x9_c00293{left:242.533333pt;}
.xf7_c00293{left:245.066667pt;}
.xc6_c00293{left:246.133333pt;}
.x45_c00293{left:247.466667pt;}
.x2a_c00293{left:249.600000pt;}
.xb5_c00293{left:250.800000pt;}
.xec_c00293{left:252.000000pt;}
.xd5_c00293{left:253.733333pt;}
.x112_c00293{left:254.800000pt;}
.x108_c00293{left:259.333333pt;}
.x79_c00293{left:261.200000pt;}
.x126_c00293{left:263.600000pt;}
.x91_c00293{left:264.666667pt;}
.x46_c00293{left:266.400000pt;}
.xa_c00293{left:269.733333pt;}
.x12c_c00293{left:271.066667pt;}
.x113_c00293{left:273.733333pt;}
.x9f_c00293{left:275.466667pt;}
.xb6_c00293{left:276.666667pt;}
.x120_c00293{left:278.266667pt;}
.x134_c00293{left:279.733333pt;}
.x39_c00293{left:281.066667pt;}
.x6d_c00293{left:283.200000pt;}
.x2b_c00293{left:285.200000pt;}
.x7a_c00293{left:286.800000pt;}
.x10f_c00293{left:288.933333pt;}
.x47_c00293{left:291.333333pt;}
.xe3_c00293{left:294.000000pt;}
.x1a_c00293{left:295.866667pt;}
.x54_c00293{left:297.200000pt;}
.x61_c00293{left:298.800000pt;}
.xd6_c00293{left:300.133333pt;}
.xb_c00293{left:301.066667pt;}
.xaf_c00293{left:302.933333pt;}
.xf2_c00293{left:303.866667pt;}
.x13c_c00293{left:305.600000pt;}
.x7b_c00293{left:307.333333pt;}
.x62_c00293{left:308.666667pt;}
.x121_c00293{left:309.600000pt;}
.x55_c00293{left:312.266667pt;}
.x136_c00293{left:315.866667pt;}
.xc0_c00293{left:317.600000pt;}
.x92_c00293{left:319.333333pt;}
.x100_c00293{left:320.666667pt;}
.x3a_c00293{left:322.400000pt;}
.xf8_c00293{left:324.400000pt;}
.x9c_c00293{left:325.466667pt;}
.x135_c00293{left:326.400000pt;}
.x11b_c00293{left:328.000000pt;}
.xc7_c00293{left:330.000000pt;}
.xb7_c00293{left:331.066667pt;}
.x3b_c00293{left:332.666667pt;}
.x127_c00293{left:334.000000pt;}
.x56_c00293{left:334.933333pt;}
.xc_c00293{left:336.533333pt;}
.x86_c00293{left:338.666667pt;}
.x2c_c00293{left:340.266667pt;}
.x109_c00293{left:341.200000pt;}
.x48_c00293{left:342.266667pt;}
.xc8_c00293{left:345.333333pt;}
.x7c_c00293{left:346.400000pt;}
.x3c_c00293{left:348.933333pt;}
.xd7_c00293{left:350.400000pt;}
.x87_c00293{left:353.333333pt;}
.x1b_c00293{left:354.800000pt;}
.x10a_c00293{left:356.266667pt;}
.xa4_c00293{left:359.200000pt;}
.x93_c00293{left:360.400000pt;}
.x1_c00293{left:361.600000pt;}
.xb0_c00293{left:363.200000pt;}
.x2d_c00293{left:365.200000pt;}
.x137_c00293{left:366.800000pt;}
.x6e_c00293{left:369.066667pt;}
.x49_c00293{left:372.400000pt;}
.x12f_c00293{left:373.466667pt;}
.x88_c00293{left:374.400000pt;}
.x94_c00293{left:376.133333pt;}
.x122_c00293{left:378.666667pt;}
.x1c_c00293{left:380.133333pt;}
.xc1_c00293{left:381.600000pt;}
.xf9_c00293{left:382.933333pt;}
.x57_c00293{left:384.266667pt;}
.x3d_c00293{left:386.666667pt;}
.x6f_c00293{left:387.600000pt;}
.x10b_c00293{left:390.800000pt;}
.x101_c00293{left:393.066667pt;}
.xd_c00293{left:395.466667pt;}
.xb1_c00293{left:396.800000pt;}
.x2e_c00293{left:399.066667pt;}
.xc2_c00293{left:400.533333pt;}
.x3e_c00293{left:401.733333pt;}
.x89_c00293{left:403.866667pt;}
.xce_c00293{left:405.200000pt;}
.x95_c00293{left:406.266667pt;}
.x4a_c00293{left:407.866667pt;}
.xa5_c00293{left:409.066667pt;}
.xde_c00293{left:410.000000pt;}
.x7d_c00293{left:412.000000pt;}
.x63_c00293{left:414.933333pt;}
.x11c_c00293{left:417.866667pt;}
.x2f_c00293{left:418.933333pt;}
.x1d_c00293{left:419.866667pt;}
.x110_c00293{left:421.466667pt;}
.xa6_c00293{left:422.533333pt;}
.x4b_c00293{left:423.866667pt;}
.xd8_c00293{left:424.933333pt;}
.x116_c00293{left:426.400000pt;}
.x138_c00293{left:427.866667pt;}
.x96_c00293{left:429.333333pt;}
.x102_c00293{left:431.466667pt;}
.x58_c00293{left:432.933333pt;}
.x7e_c00293{left:435.333333pt;}
.xa0_c00293{left:438.000000pt;}
.xe_c00293{left:439.333333pt;}
.x130_c00293{left:440.400000pt;}
.x10c_c00293{left:441.333333pt;}
.xd9_c00293{left:442.533333pt;}
.x4c_c00293{left:443.733333pt;}
.xf3_c00293{left:446.266667pt;}
.xe4_c00293{left:448.266667pt;}
.x64_c00293{left:450.133333pt;}
.x3f_c00293{left:451.600000pt;}
.x1e_c00293{left:453.466667pt;}
.xfc_c00293{left:454.666667pt;}
.x128_c00293{left:455.600000pt;}
.x30_c00293{left:457.600000pt;}
.x70_c00293{left:460.266667pt;}
.xed_c00293{left:461.600000pt;}
.xc3_c00293{left:463.200000pt;}
.xb8_c00293{left:464.133333pt;}
.x11d_c00293{left:465.866667pt;}
.x7f_c00293{left:467.600000pt;}
.xa7_c00293{left:468.533333pt;}
.x1f_c00293{left:470.400000pt;}
.x131_c00293{left:473.333333pt;}
.xb2_c00293{left:474.266667pt;}
.x13d_c00293{left:477.466667pt;}
.x71_c00293{left:478.533333pt;}
.x31_c00293{left:480.266667pt;}
.x8a_c00293{left:481.333333pt;}
.x103_c00293{left:483.600000pt;}
.xc9_c00293{left:484.933333pt;}
.xee_c00293{left:486.266667pt;}
.xe5_c00293{left:488.266667pt;}
.x114_c00293{left:489.733333pt;}
.x117_c00293{left:490.666667pt;}
.x59_c00293{left:494.400000pt;}
.x20_c00293{left:495.333333pt;}
.x132_c00293{left:497.066667pt;}
.xcf_c00293{left:498.133333pt;}
.xa8_c00293{left:499.200000pt;}
.x97_c00293{left:500.666667pt;}
.x65_c00293{left:502.000000pt;}
.xca_c00293{left:503.866667pt;}
.x8b_c00293{left:506.000000pt;}
.xf_c00293{left:508.533333pt;}
.x5a_c00293{left:509.733333pt;}
.xd0_c00293{left:510.666667pt;}
.xfa_c00293{left:511.600000pt;}
.xa1_c00293{left:513.466667pt;}
.xb3_c00293{left:514.533333pt;}
.xef_c00293{left:515.733333pt;}
.x32_c00293{left:516.800000pt;}
.x9d_c00293{left:518.133333pt;}
.xa9_c00293{left:521.866667pt;}
.x123_c00293{left:522.933333pt;}
.x8c_c00293{left:528.133333pt;}
.x40_c00293{left:529.333333pt;}
.xcb_c00293{left:530.800000pt;}
.x21_c00293{left:532.133333pt;}
.x12d_c00293{left:533.200000pt;}
.x118_c00293{left:535.733333pt;}
.x80_c00293{left:537.066667pt;}
.xb9_c00293{left:539.066667pt;}
.x111_c00293{left:541.200000pt;}
.x41_c00293{left:546.000000pt;}
.x66_c00293{left:547.200000pt;}
.x22_c00293{left:548.800000pt;}
.x10_c00293{left:550.400000pt;}
.xaa_c00293{left:552.266667pt;}
.x8d_c00293{left:553.466667pt;}
.x33_c00293{left:555.200000pt;}
.xfd_c00293{left:557.200000pt;}
.x4d_c00293{left:559.866667pt;}
.x10d_c00293{left:561.733333pt;}
.x72_c00293{left:562.800000pt;}
.xf0_c00293{left:563.733333pt;}
.xba_c00293{left:564.933333pt;}
.x139_c00293{left:565.866667pt;}
.x81_c00293{left:570.400000pt;}
.x67_c00293{left:571.466667pt;}
.x34_c00293{left:572.800000pt;}
.xd1_c00293{left:574.666667pt;}
.xbb_c00293{left:576.800000pt;}
.x23_c00293{left:577.866667pt;}
.xf1_c00293{left:580.000000pt;}
.x73_c00293{left:583.333333pt;}
.xcc_c00293{left:585.466667pt;}
.x11_c00293{left:587.466667pt;}
.x119_c00293{left:589.466667pt;}
.x5b_c00293{left:590.666667pt;}
.x124_c00293{left:593.333333pt;}
.x104_c00293{left:595.066667pt;}
.x35_c00293{left:596.533333pt;}
.xfb_c00293{left:598.400000pt;}
.xc4_c00293{left:601.066667pt;}
.xa2_c00293{left:603.066667pt;}
.x8e_c00293{left:605.066667pt;}
.x12_c00293{left:606.666667pt;}
.x74_c00293{left:608.266667pt;}
.x68_c00293{left:610.533333pt;}
.x125_c00293{left:611.866667pt;}
.xf4_c00293{left:614.000000pt;}
.x12e_c00293{left:616.800000pt;}
.x10e_c00293{left:618.800000pt;}
.x8f_c00293{left:620.800000pt;}
.xd2_c00293{left:622.400000pt;}
.x42_c00293{left:624.400000pt;}
.x24_c00293{left:625.866667pt;}
.x13_c00293{left:632.000000pt;}
.xd3_c00293{left:634.533333pt;}
.x25_c00293{left:635.733333pt;}
.x69_c00293{left:637.733333pt;}
.xbf_c00293{left:641.200000pt;}
.x11a_c00293{left:642.533333pt;}
.x115_c00293{left:644.933333pt;}
.x98_c00293{left:646.533333pt;}
.x4e_c00293{left:649.200000pt;}
.xe6_c00293{left:650.266667pt;}
.x6a_c00293{left:651.866667pt;}
.x36_c00293{left:653.200000pt;}
.xda_c00293{left:654.666667pt;}
.x11e_c00293{left:657.200000pt;}
.x75_c00293{left:663.733333pt;}
.x105_c00293{left:666.800000pt;}
.x2_c00293{left:667.866667pt;}
.xdf_c00293{left:669.200000pt;}
.xbc_c00293{left:671.866667pt;}
.x26_c00293{left:673.200000pt;}
.xe7_c00293{left:677.200000pt;}
.xc5_c00293{left:678.800000pt;}
.x14_c00293{left:680.266667pt;}
.xab_c00293{left:681.200000pt;}
.xa3_c00293{left:682.133333pt;}
}





/* 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_c00294 {
    display:none;
  }
  .loading-indicator_c00294.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00294 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_c00294 { 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_c00294" -> "#page-container .classname_c00294")
 */
.pf_c00294 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00294 { /* 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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00294 { /* 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_c00294 { /* 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_c00294 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00294 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00294 {overflow:visible;}
  }
}
.c_c00294 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00294 { /* 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_c00294:after { /* webkit #35443 */
  content: '';
}
.t_c00294:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00294 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 */
}
.__c00294 { /* 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_c00294 { /* info for Javascript */
  display:none;
}
.l_c00294 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00294 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00294 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00294: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_c00294 {
    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_c00294.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00294.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_c00294 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00294{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00294;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.000000;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;}
.m2c_c00294{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00294{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00294{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00294{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m99_c00294{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m33_c00294{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2_c00294{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m97_c00294{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00294{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00294{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m94_c00294{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m12_c00294{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00294{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m47_c00294{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m85_c00294{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00294{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m88_c00294{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00294{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00294{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m16_c00294{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m59_c00294{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m36_c00294{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m24_c00294{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m71_c00294{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m76_c00294{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m41_c00294{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m22_c00294{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m63_c00294{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00294{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m91_c00294{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m58_c00294{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m57_c00294{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m84_c00294{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m19_c00294{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00294{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m28_c00294{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00294{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m72_c00294{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00294{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m34_c00294{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00294{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00294{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00294{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00294{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00294{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00294{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m80_c00294{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m92_c00294{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8_c00294{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m26_c00294{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m43_c00294{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00294{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf_c00294{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00294{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m45_c00294{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md_c00294{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00294{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7_c00294{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11_c00294{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m93_c00294{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m32_c00294{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00294{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6_c00294{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00294{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00294{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00294{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m96_c00294{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00294{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00294{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m29_c00294{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00294{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m52_c00294{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc_c00294{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m64_c00294{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m61_c00294{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00294{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m89_c00294{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00294{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00294{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);}
.m9d_c00294{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00294{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m69_c00294{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m17_c00294{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00294{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00294{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00294{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00294{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m38_c00294{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m37_c00294{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00294{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m42_c00294{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00294{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m56_c00294{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m78_c00294{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00294{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m27_c00294{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m20_c00294{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m68_c00294{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m70_c00294{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m66_c00294{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb_c00294{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma_c00294{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m40_c00294{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m82_c00294{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m74_c00294{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m51_c00294{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00294{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m10_c00294{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00294{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m73_c00294{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m13_c00294{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00294{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00294{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m49_c00294{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m67_c00294{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00294{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m62_c00294{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00294{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m87_c00294{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3_c00294{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00294{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00294{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m98_c00294{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m95_c00294{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00294{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m30_c00294{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00294{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00294{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m21_c00294{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00294{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m60_c00294{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00294{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00294{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m31_c00294{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m48_c00294{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14_c00294{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m46_c00294{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00294{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00294{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00294{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m79_c00294{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m5_c00294{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00294{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m53_c00294{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00294{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m25_c00294{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m39_c00294{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00294{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m0_c00294{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m90_c00294{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c00294{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00294{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00294{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00294{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9_c00294{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m75_c00294{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m81_c00294{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00294{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00294{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m77_c00294{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m65_c00294{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m83_c00294{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00294{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{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__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00294{word-spacing:-16.625000px;}
.ws5_c00294{word-spacing:-6.461538px;}
.ws4_c00294{word-spacing:-4.846154px;}
.ws6_c00294{word-spacing:-0.756839px;}
.ws9_c00294{word-spacing:0.000000px;}
.ws8_c00294{word-spacing:4.956256px;}
.ws1_c00294{word-spacing:6.621170px;}
.ws2_c00294{word-spacing:7.750000px;}
.ws7_c00294{word-spacing:9.867720px;}
.ws0_c00294{word-spacing:13.411434px;}
.fc0_c00294{color:transparent;}
.fs0_c00294{font-size:54.000000px;}
.y0_c00294{bottom:0.000000px;}
.y2c_c00294{bottom:148.650000px;}
.y2b_c00294{bottom:190.200000px;}
.y2a_c00294{bottom:210.000000px;}
.y29_c00294{bottom:230.100000px;}
.y28_c00294{bottom:249.900000px;}
.y27_c00294{bottom:269.700000px;}
.y26_c00294{bottom:289.800000px;}
.y25_c00294{bottom:309.600000px;}
.y24_c00294{bottom:328.800000px;}
.y23_c00294{bottom:349.350000px;}
.y22_c00294{bottom:369.450000px;}
.y21_c00294{bottom:389.250000px;}
.y20_c00294{bottom:409.350000px;}
.y1f_c00294{bottom:429.150000px;}
.y1e_c00294{bottom:448.950000px;}
.y1d_c00294{bottom:468.750000px;}
.y1c_c00294{bottom:488.550000px;}
.y1b_c00294{bottom:508.350000px;}
.y1a_c00294{bottom:528.450000px;}
.y19_c00294{bottom:548.400000px;}
.y18_c00294{bottom:568.500000px;}
.y17_c00294{bottom:588.300000px;}
.y16_c00294{bottom:608.100000px;}
.y15_c00294{bottom:628.200000px;}
.y14_c00294{bottom:648.000000px;}
.y13_c00294{bottom:667.500000px;}
.y12_c00294{bottom:688.200000px;}
.y11_c00294{bottom:708.000000px;}
.y10_c00294{bottom:727.500000px;}
.yf_c00294{bottom:748.200000px;}
.ye_c00294{bottom:768.000000px;}
.yd_c00294{bottom:787.800000px;}
.yc_c00294{bottom:807.300000px;}
.yb_c00294{bottom:827.100000px;}
.ya_c00294{bottom:846.900000px;}
.y9_c00294{bottom:866.700000px;}
.y8_c00294{bottom:886.800000px;}
.y7_c00294{bottom:906.600000px;}
.y6_c00294{bottom:926.700000px;}
.y5_c00294{bottom:946.500000px;}
.y4_c00294{bottom:966.150000px;}
.y3_c00294{bottom:986.700000px;}
.y2_c00294{bottom:1006.200000px;}
.y1_c00294{bottom:1044.300000px;}
.h2_c00294{height:54.000000px;}
.h0_c00294{height:1166.759949px;}
.h1_c00294{height:1167.000000px;}
.w0_c00294{width:918.720063px;}
.w1_c00294{width:918.750000px;}
.x0_c00294{left:0.000000px;}
.x3_c00294{left:147.300000px;}
.x1_c00294{left:148.350000px;}
.xaa_c00294{left:163.200000px;}
.xb2_c00294{left:166.500000px;}
.x1c_c00294{left:171.600000px;}
.x43_c00294{left:172.950000px;}
.x101_c00294{left:177.750000px;}
.x24_c00294{left:178.950000px;}
.xb3_c00294{left:181.200000px;}
.x4_c00294{left:182.550000px;}
.x5c_c00294{left:185.700000px;}
.x50_c00294{left:187.650000px;}
.xe4_c00294{left:189.600000px;}
.x109_c00294{left:196.500000px;}
.x6b_c00294{left:197.700000px;}
.xd8_c00294{left:200.250000px;}
.x92_c00294{left:201.450000px;}
.xcb_c00294{left:203.400000px;}
.x116_c00294{left:204.750000px;}
.x25_c00294{left:205.950000px;}
.xa1_c00294{left:207.450000px;}
.x88_c00294{left:208.950000px;}
.x104_c00294{left:211.650000px;}
.x7b_c00294{left:212.850000px;}
.xc4_c00294{left:214.350000px;}
.x5d_c00294{left:216.600000px;}
.x6c_c00294{left:219.000000px;}
.xeb_c00294{left:221.400000px;}
.x113_c00294{left:222.600000px;}
.x74_c00294{left:223.950000px;}
.xd9_c00294{left:226.200000px;}
.x11a_c00294{left:228.000000px;}
.x7c_c00294{left:229.350000px;}
.xc5_c00294{left:232.050000px;}
.xa2_c00294{left:235.500000px;}
.xef_c00294{left:238.500000px;}
.x1d_c00294{left:239.700000px;}
.x5_c00294{left:242.700000px;}
.xf5_c00294{left:244.350000px;}
.x51_c00294{left:246.300000px;}
.xfb_c00294{left:247.350000px;}
.xd1_c00294{left:250.050000px;}
.x44_c00294{left:251.100000px;}
.xe5_c00294{left:252.900000px;}
.xda_c00294{left:254.250000px;}
.x10f_c00294{left:257.550000px;}
.x89_c00294{left:258.600000px;}
.x33_c00294{left:259.650000px;}
.x12_c00294{left:268.050000px;}
.x6_c00294{left:270.750000px;}
.xbd_c00294{left:272.700000px;}
.x1e_c00294{left:278.550000px;}
.x52_c00294{left:282.300000px;}
.x34_c00294{left:283.350000px;}
.xab_c00294{left:285.600000px;}
.x5e_c00294{left:286.800000px;}
.x11d_c00294{left:288.000000px;}
.x99_c00294{left:292.350000px;}
.x6d_c00294{left:294.300000px;}
.xd2_c00294{left:296.550000px;}
.x7d_c00294{left:299.850000px;}
.x8a_c00294{left:301.800000px;}
.x26_c00294{left:303.450000px;}
.xf6_c00294{left:305.250000px;}
.x7_c00294{left:309.600000px;}
.x1f_c00294{left:311.250000px;}
.xd7_c00294{left:316.350000px;}
.x93_c00294{left:321.300000px;}
.x45_c00294{left:323.850000px;}
.x11e_c00294{left:325.800000px;}
.x6e_c00294{left:328.200000px;}
.x10a_c00294{left:329.550000px;}
.xdb_c00294{left:331.350000px;}
.x114_c00294{left:336.750000px;}
.xa3_c00294{left:337.800000px;}
.x20_c00294{left:340.050000px;}
.x5f_c00294{left:341.550000px;}
.xfc_c00294{left:342.750000px;}
.xcc_c00294{left:343.800000px;}
.x75_c00294{left:345.600000px;}
.x9a_c00294{left:347.850000px;}
.x105_c00294{left:349.500000px;}
.x8_c00294{left:351.750000px;}
.x13_c00294{left:353.100000px;}
.xac_c00294{left:354.600000px;}
.x35_c00294{left:357.450000px;}
.xb4_c00294{left:361.500000px;}
.xcd_c00294{left:363.900000px;}
.xe6_c00294{left:364.950000px;}
.xa4_c00294{left:366.300000px;}
.x27_c00294{left:367.500000px;}
.x60_c00294{left:368.550000px;}
.x7e_c00294{left:369.750000px;}
.x94_c00294{left:371.400000px;}
.x100_c00294{left:372.450000px;}
.x53_c00294{left:374.400000px;}
.x8b_c00294{left:376.350000px;}
.x46_c00294{left:377.850000px;}
.x21_c00294{left:380.400000px;}
.x6f_c00294{left:381.450000px;}
.x9b_c00294{left:383.100000px;}
.xd3_c00294{left:385.500000px;}
.x36_c00294{left:386.550000px;}
.xbe_c00294{left:387.900000px;}
.x7f_c00294{left:389.250000px;}
.x95_c00294{left:391.950000px;}
.xfd_c00294{left:393.150000px;}
.x28_c00294{left:394.500000px;}
.x61_c00294{left:396.600000px;}
.x14_c00294{left:398.400000px;}
.x70_c00294{left:400.950000px;}
.x117_c00294{left:402.000000px;}
.xe7_c00294{left:403.050000px;}
.x37_c00294{left:406.350000px;}
.x54_c00294{left:412.950000px;}
.x22_c00294{left:415.350000px;}
.xa5_c00294{left:417.750000px;}
.x15_c00294{left:421.050000px;}
.x38_c00294{left:422.850000px;}
.xc6_c00294{left:424.350000px;}
.x118_c00294{left:425.700000px;}
.x62_c00294{left:427.200000px;}
.x11f_c00294{left:430.500000px;}
.x9c_c00294{left:434.250000px;}
.x47_c00294{left:435.750000px;}
.x96_c00294{left:438.750000px;}
.xec_c00294{left:439.950000px;}
.xdc_c00294{left:441.900000px;}
.x2_c00294{left:444.600000px;}
.x9_c00294{left:447.150000px;}
.x29_c00294{left:449.250000px;}
.x16_c00294{left:451.650000px;}
.x8c_c00294{left:453.450000px;}
.x80_c00294{left:454.800000px;}
.xdd_c00294{left:460.650000px;}
.x55_c00294{left:461.850000px;}
.x10b_c00294{left:463.500000px;}
.xa_c00294{left:466.950000px;}
.xb5_c00294{left:469.500000px;}
.x23_c00294{left:471.900000px;}
.x48_c00294{left:473.550000px;}
.x97_c00294{left:477.300000px;}
.x76_c00294{left:479.250000px;}
.x124_c00294{left:480.900000px;}
.xbf_c00294{left:483.750000px;}
.xf0_c00294{left:486.300000px;}
.x49_c00294{left:487.650000px;}
.x63_c00294{left:489.900000px;}
.xad_c00294{left:491.100000px;}
.x56_c00294{left:494.250000px;}
.xb_c00294{left:495.450000px;}
.xce_c00294{left:498.450000px;}
.x4a_c00294{left:499.950000px;}
.x77_c00294{left:501.150000px;}
.x10c_c00294{left:503.100000px;}
.xc7_c00294{left:504.600000px;}
.x98_c00294{left:506.850000px;}
.x64_c00294{left:508.650000px;}
.x9d_c00294{left:511.350000px;}
.xc0_c00294{left:512.850000px;}
.xf7_c00294{left:514.800000px;}
.xfe_c00294{left:517.950000px;}
.x11b_c00294{left:519.900000px;}
.x81_c00294{left:521.100000px;}
.x39_c00294{left:522.900000px;}
.x8d_c00294{left:524.400000px;}
.xb6_c00294{left:526.050000px;}
.xae_c00294{left:528.900000px;}
.xde_c00294{left:532.350000px;}
.x4b_c00294{left:533.400000px;}
.xf8_c00294{left:534.600000px;}
.x2a_c00294{left:538.200000px;}
.x3a_c00294{left:541.950000px;}
.x65_c00294{left:543.150000px;}
.x120_c00294{left:546.450000px;}
.x71_c00294{left:548.550000px;}
.xcf_c00294{left:550.950000px;}
.xc1_c00294{left:555.300000px;}
.x110_c00294{left:556.500000px;}
.x2b_c00294{left:557.700000px;}
.xb7_c00294{left:559.200000px;}
.xdf_c00294{left:560.400000px;}
.x57_c00294{left:566.550000px;}
.x8e_c00294{left:568.350000px;}
.xc_c00294{left:570.000000px;}
.x66_c00294{left:571.650000px;}
.xa6_c00294{left:573.000000px;}
.xf9_c00294{left:574.950000px;}
.xe8_c00294{left:577.200000px;}
.x17_c00294{left:578.400000px;}
.xd0_c00294{left:579.450000px;}
.x4c_c00294{left:581.250000px;}
.x3b_c00294{left:583.650000px;}
.x106_c00294{left:585.900000px;}
.x58_c00294{left:587.400000px;}
.x82_c00294{left:588.450000px;}
.x2c_c00294{left:594.450000px;}
.xc2_c00294{left:597.750000px;}
.x18_c00294{left:600.000000px;}
.xff_c00294{left:603.300000px;}
.x107_c00294{left:604.650000px;}
.x83_c00294{left:605.700000px;}
.xf1_c00294{left:606.900000px;}
.x121_c00294{left:609.900000px;}
.x67_c00294{left:610.950000px;}
.xaf_c00294{left:615.600000px;}
.x111_c00294{left:620.850000px;}
.x9e_c00294{left:623.700000px;}
.xd4_c00294{left:625.050000px;}
.x8f_c00294{left:629.850000px;}
.x2d_c00294{left:631.200000px;}
.x122_c00294{left:633.300000px;}
.xd_c00294{left:634.800000px;}
.xa7_c00294{left:636.000000px;}
.x10d_c00294{left:637.350000px;}
.x3c_c00294{left:638.400000px;}
.x108_c00294{left:642.750000px;}
.xe0_c00294{left:644.400000px;}
.xb8_c00294{left:645.600000px;}
.x19_c00294{left:646.800000px;}
.x84_c00294{left:647.850000px;}
.xf2_c00294{left:649.350000px;}
.xc8_c00294{left:654.300000px;}
.x3d_c00294{left:656.400000px;}
.x2e_c00294{left:658.500000px;}
.xed_c00294{left:662.250000px;}
.x78_c00294{left:663.600000px;}
.x4d_c00294{left:666.150000px;}
.xd5_c00294{left:668.550000px;}
.xc9_c00294{left:669.750000px;}
.xb9_c00294{left:673.350000px;}
.x119_c00294{left:676.200000px;}
.xc3_c00294{left:678.750000px;}
.x68_c00294{left:683.700000px;}
.x102_c00294{left:684.900000px;}
.x10e_c00294{left:686.700000px;}
.x3e_c00294{left:688.500000px;}
.xe_c00294{left:689.850000px;}
.x9f_c00294{left:692.850000px;}
.x2f_c00294{left:694.500000px;}
.xe1_c00294{left:696.300000px;}
.x72_c00294{left:699.000000px;}
.x69_c00294{left:700.950000px;}
.x59_c00294{left:702.600000px;}
.x3f_c00294{left:706.200000px;}
.xb0_c00294{left:707.400000px;}
.xf_c00294{left:709.950000px;}
.x85_c00294{left:711.150000px;}
.x1a_c00294{left:712.350000px;}
.xe9_c00294{left:715.050000px;}
.xa8_c00294{left:716.250000px;}
.x90_c00294{left:718.500000px;}
.x4e_c00294{left:720.150000px;}
.x79_c00294{left:722.700000px;}
.x11c_c00294{left:727.200000px;}
.xba_c00294{left:729.900000px;}
.x86_c00294{left:730.950000px;}
.xe2_c00294{left:732.000000px;}
.x40_c00294{left:734.250000px;}
.x30_c00294{left:735.900000px;}
.xee_c00294{left:737.100000px;}
.x41_c00294{left:738.900000px;}
.xd6_c00294{left:740.550000px;}
.x115_c00294{left:741.900000px;}
.x10_c00294{left:743.850000px;}
.xea_c00294{left:745.650000px;}
.xa0_c00294{left:747.900000px;}
.x91_c00294{left:749.400000px;}
.x103_c00294{left:751.050000px;}
.x31_c00294{left:752.850000px;}
.xb1_c00294{left:755.400000px;}
.x42_c00294{left:756.900000px;}
.xf3_c00294{left:758.100000px;}
.xbb_c00294{left:759.450000px;}
.x4f_c00294{left:761.550000px;}
.xfa_c00294{left:762.750000px;}
.x6a_c00294{left:764.700000px;}
.x1b_c00294{left:766.350000px;}
.x73_c00294{left:768.900000px;}
.xe3_c00294{left:771.300000px;}
.x123_c00294{left:772.350000px;}
.x5a_c00294{left:775.350000px;}
.x7a_c00294{left:779.550000px;}
.x32_c00294{left:781.650000px;}
.x112_c00294{left:783.450000px;}
.xa9_c00294{left:788.250000px;}
.xf4_c00294{left:792.600000px;}
.x11_c00294{left:793.950000px;}
.x87_c00294{left:797.550000px;}
.xca_c00294{left:799.200000px;}
.x5b_c00294{left:800.850000px;}
.xbc_c00294{left:801.900000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws3_c00294{word-spacing:-14.777778pt;}
.ws5_c00294{word-spacing:-5.743590pt;}
.ws4_c00294{word-spacing:-4.307692pt;}
.ws6_c00294{word-spacing:-0.672746pt;}
.ws9_c00294{word-spacing:0.000000pt;}
.ws8_c00294{word-spacing:4.405561pt;}
.ws1_c00294{word-spacing:5.885484pt;}
.ws2_c00294{word-spacing:6.888889pt;}
.ws7_c00294{word-spacing:8.771306pt;}
.ws0_c00294{word-spacing:11.921275pt;}
.fs0_c00294{font-size:48.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y2c_c00294{bottom:132.133333pt;}
.y2b_c00294{bottom:169.066667pt;}
.y2a_c00294{bottom:186.666667pt;}
.y29_c00294{bottom:204.533333pt;}
.y28_c00294{bottom:222.133333pt;}
.y27_c00294{bottom:239.733333pt;}
.y26_c00294{bottom:257.600000pt;}
.y25_c00294{bottom:275.200000pt;}
.y24_c00294{bottom:292.266667pt;}
.y23_c00294{bottom:310.533333pt;}
.y22_c00294{bottom:328.400000pt;}
.y21_c00294{bottom:346.000000pt;}
.y20_c00294{bottom:363.866667pt;}
.y1f_c00294{bottom:381.466667pt;}
.y1e_c00294{bottom:399.066667pt;}
.y1d_c00294{bottom:416.666667pt;}
.y1c_c00294{bottom:434.266667pt;}
.y1b_c00294{bottom:451.866667pt;}
.y1a_c00294{bottom:469.733333pt;}
.y19_c00294{bottom:487.466667pt;}
.y18_c00294{bottom:505.333333pt;}
.y17_c00294{bottom:522.933333pt;}
.y16_c00294{bottom:540.533333pt;}
.y15_c00294{bottom:558.400000pt;}
.y14_c00294{bottom:576.000000pt;}
.y13_c00294{bottom:593.333333pt;}
.y12_c00294{bottom:611.733333pt;}
.y11_c00294{bottom:629.333333pt;}
.y10_c00294{bottom:646.666667pt;}
.yf_c00294{bottom:665.066667pt;}
.ye_c00294{bottom:682.666667pt;}
.yd_c00294{bottom:700.266667pt;}
.yc_c00294{bottom:717.600000pt;}
.yb_c00294{bottom:735.200000pt;}
.ya_c00294{bottom:752.800000pt;}
.y9_c00294{bottom:770.400000pt;}
.y8_c00294{bottom:788.266667pt;}
.y7_c00294{bottom:805.866667pt;}
.y6_c00294{bottom:823.733333pt;}
.y5_c00294{bottom:841.333333pt;}
.y4_c00294{bottom:858.800000pt;}
.y3_c00294{bottom:877.066667pt;}
.y2_c00294{bottom:894.400000pt;}
.y1_c00294{bottom:928.266667pt;}
.h2_c00294{height:48.000000pt;}
.h0_c00294{height:1037.119955pt;}
.h1_c00294{height:1037.333333pt;}
.w0_c00294{width:816.640056pt;}
.w1_c00294{width:816.666667pt;}
.x0_c00294{left:0.000000pt;}
.x3_c00294{left:130.933333pt;}
.x1_c00294{left:131.866667pt;}
.xaa_c00294{left:145.066667pt;}
.xb2_c00294{left:148.000000pt;}
.x1c_c00294{left:152.533333pt;}
.x43_c00294{left:153.733333pt;}
.x101_c00294{left:158.000000pt;}
.x24_c00294{left:159.066667pt;}
.xb3_c00294{left:161.066667pt;}
.x4_c00294{left:162.266667pt;}
.x5c_c00294{left:165.066667pt;}
.x50_c00294{left:166.800000pt;}
.xe4_c00294{left:168.533333pt;}
.x109_c00294{left:174.666667pt;}
.x6b_c00294{left:175.733333pt;}
.xd8_c00294{left:178.000000pt;}
.x92_c00294{left:179.066667pt;}
.xcb_c00294{left:180.800000pt;}
.x116_c00294{left:182.000000pt;}
.x25_c00294{left:183.066667pt;}
.xa1_c00294{left:184.400000pt;}
.x88_c00294{left:185.733333pt;}
.x104_c00294{left:188.133333pt;}
.x7b_c00294{left:189.200000pt;}
.xc4_c00294{left:190.533333pt;}
.x5d_c00294{left:192.533333pt;}
.x6c_c00294{left:194.666667pt;}
.xeb_c00294{left:196.800000pt;}
.x113_c00294{left:197.866667pt;}
.x74_c00294{left:199.066667pt;}
.xd9_c00294{left:201.066667pt;}
.x11a_c00294{left:202.666667pt;}
.x7c_c00294{left:203.866667pt;}
.xc5_c00294{left:206.266667pt;}
.xa2_c00294{left:209.333333pt;}
.xef_c00294{left:212.000000pt;}
.x1d_c00294{left:213.066667pt;}
.x5_c00294{left:215.733333pt;}
.xf5_c00294{left:217.200000pt;}
.x51_c00294{left:218.933333pt;}
.xfb_c00294{left:219.866667pt;}
.xd1_c00294{left:222.266667pt;}
.x44_c00294{left:223.200000pt;}
.xe5_c00294{left:224.800000pt;}
.xda_c00294{left:226.000000pt;}
.x10f_c00294{left:228.933333pt;}
.x89_c00294{left:229.866667pt;}
.x33_c00294{left:230.800000pt;}
.x12_c00294{left:238.266667pt;}
.x6_c00294{left:240.666667pt;}
.xbd_c00294{left:242.400000pt;}
.x1e_c00294{left:247.600000pt;}
.x52_c00294{left:250.933333pt;}
.x34_c00294{left:251.866667pt;}
.xab_c00294{left:253.866667pt;}
.x5e_c00294{left:254.933333pt;}
.x11d_c00294{left:256.000000pt;}
.x99_c00294{left:259.866667pt;}
.x6d_c00294{left:261.600000pt;}
.xd2_c00294{left:263.600000pt;}
.x7d_c00294{left:266.533333pt;}
.x8a_c00294{left:268.266667pt;}
.x26_c00294{left:269.733333pt;}
.xf6_c00294{left:271.333333pt;}
.x7_c00294{left:275.200000pt;}
.x1f_c00294{left:276.666667pt;}
.xd7_c00294{left:281.200000pt;}
.x93_c00294{left:285.600000pt;}
.x45_c00294{left:287.866667pt;}
.x11e_c00294{left:289.600000pt;}
.x6e_c00294{left:291.733333pt;}
.x10a_c00294{left:292.933333pt;}
.xdb_c00294{left:294.533333pt;}
.x114_c00294{left:299.333333pt;}
.xa3_c00294{left:300.266667pt;}
.x20_c00294{left:302.266667pt;}
.x5f_c00294{left:303.600000pt;}
.xfc_c00294{left:304.666667pt;}
.xcc_c00294{left:305.600000pt;}
.x75_c00294{left:307.200000pt;}
.x9a_c00294{left:309.200000pt;}
.x105_c00294{left:310.666667pt;}
.x8_c00294{left:312.666667pt;}
.x13_c00294{left:313.866667pt;}
.xac_c00294{left:315.200000pt;}
.x35_c00294{left:317.733333pt;}
.xb4_c00294{left:321.333333pt;}
.xcd_c00294{left:323.466667pt;}
.xe6_c00294{left:324.400000pt;}
.xa4_c00294{left:325.600000pt;}
.x27_c00294{left:326.666667pt;}
.x60_c00294{left:327.600000pt;}
.x7e_c00294{left:328.666667pt;}
.x94_c00294{left:330.133333pt;}
.x100_c00294{left:331.066667pt;}
.x53_c00294{left:332.800000pt;}
.x8b_c00294{left:334.533333pt;}
.x46_c00294{left:335.866667pt;}
.x21_c00294{left:338.133333pt;}
.x6f_c00294{left:339.066667pt;}
.x9b_c00294{left:340.533333pt;}
.xd3_c00294{left:342.666667pt;}
.x36_c00294{left:343.600000pt;}
.xbe_c00294{left:344.800000pt;}
.x7f_c00294{left:346.000000pt;}
.x95_c00294{left:348.400000pt;}
.xfd_c00294{left:349.466667pt;}
.x28_c00294{left:350.666667pt;}
.x61_c00294{left:352.533333pt;}
.x14_c00294{left:354.133333pt;}
.x70_c00294{left:356.400000pt;}
.x117_c00294{left:357.333333pt;}
.xe7_c00294{left:358.266667pt;}
.x37_c00294{left:361.200000pt;}
.x54_c00294{left:367.066667pt;}
.x22_c00294{left:369.200000pt;}
.xa5_c00294{left:371.333333pt;}
.x15_c00294{left:374.266667pt;}
.x38_c00294{left:375.866667pt;}
.xc6_c00294{left:377.200000pt;}
.x118_c00294{left:378.400000pt;}
.x62_c00294{left:379.733333pt;}
.x11f_c00294{left:382.666667pt;}
.x9c_c00294{left:386.000000pt;}
.x47_c00294{left:387.333333pt;}
.x96_c00294{left:390.000000pt;}
.xec_c00294{left:391.066667pt;}
.xdc_c00294{left:392.800000pt;}
.x2_c00294{left:395.200000pt;}
.x9_c00294{left:397.466667pt;}
.x29_c00294{left:399.333333pt;}
.x16_c00294{left:401.466667pt;}
.x8c_c00294{left:403.066667pt;}
.x80_c00294{left:404.266667pt;}
.xdd_c00294{left:409.466667pt;}
.x55_c00294{left:410.533333pt;}
.x10b_c00294{left:412.000000pt;}
.xa_c00294{left:415.066667pt;}
.xb5_c00294{left:417.333333pt;}
.x23_c00294{left:419.466667pt;}
.x48_c00294{left:420.933333pt;}
.x97_c00294{left:424.266667pt;}
.x76_c00294{left:426.000000pt;}
.x124_c00294{left:427.466667pt;}
.xbf_c00294{left:430.000000pt;}
.xf0_c00294{left:432.266667pt;}
.x49_c00294{left:433.466667pt;}
.x63_c00294{left:435.466667pt;}
.xad_c00294{left:436.533333pt;}
.x56_c00294{left:439.333333pt;}
.xb_c00294{left:440.400000pt;}
.xce_c00294{left:443.066667pt;}
.x4a_c00294{left:444.400000pt;}
.x77_c00294{left:445.466667pt;}
.x10c_c00294{left:447.200000pt;}
.xc7_c00294{left:448.533333pt;}
.x98_c00294{left:450.533333pt;}
.x64_c00294{left:452.133333pt;}
.x9d_c00294{left:454.533333pt;}
.xc0_c00294{left:455.866667pt;}
.xf7_c00294{left:457.600000pt;}
.xfe_c00294{left:460.400000pt;}
.x11b_c00294{left:462.133333pt;}
.x81_c00294{left:463.200000pt;}
.x39_c00294{left:464.800000pt;}
.x8d_c00294{left:466.133333pt;}
.xb6_c00294{left:467.600000pt;}
.xae_c00294{left:470.133333pt;}
.xde_c00294{left:473.200000pt;}
.x4b_c00294{left:474.133333pt;}
.xf8_c00294{left:475.200000pt;}
.x2a_c00294{left:478.400000pt;}
.x3a_c00294{left:481.733333pt;}
.x65_c00294{left:482.800000pt;}
.x120_c00294{left:485.733333pt;}
.x71_c00294{left:487.600000pt;}
.xcf_c00294{left:489.733333pt;}
.xc1_c00294{left:493.600000pt;}
.x110_c00294{left:494.666667pt;}
.x2b_c00294{left:495.733333pt;}
.xb7_c00294{left:497.066667pt;}
.xdf_c00294{left:498.133333pt;}
.x57_c00294{left:503.600000pt;}
.x8e_c00294{left:505.200000pt;}
.xc_c00294{left:506.666667pt;}
.x66_c00294{left:508.133333pt;}
.xa6_c00294{left:509.333333pt;}
.xf9_c00294{left:511.066667pt;}
.xe8_c00294{left:513.066667pt;}
.x17_c00294{left:514.133333pt;}
.xd0_c00294{left:515.066667pt;}
.x4c_c00294{left:516.666667pt;}
.x3b_c00294{left:518.800000pt;}
.x106_c00294{left:520.800000pt;}
.x58_c00294{left:522.133333pt;}
.x82_c00294{left:523.066667pt;}
.x2c_c00294{left:528.400000pt;}
.xc2_c00294{left:531.333333pt;}
.x18_c00294{left:533.333333pt;}
.xff_c00294{left:536.266667pt;}
.x107_c00294{left:537.466667pt;}
.x83_c00294{left:538.400000pt;}
.xf1_c00294{left:539.466667pt;}
.x121_c00294{left:542.133333pt;}
.x67_c00294{left:543.066667pt;}
.xaf_c00294{left:547.200000pt;}
.x111_c00294{left:551.866667pt;}
.x9e_c00294{left:554.400000pt;}
.xd4_c00294{left:555.600000pt;}
.x8f_c00294{left:559.866667pt;}
.x2d_c00294{left:561.066667pt;}
.x122_c00294{left:562.933333pt;}
.xd_c00294{left:564.266667pt;}
.xa7_c00294{left:565.333333pt;}
.x10d_c00294{left:566.533333pt;}
.x3c_c00294{left:567.466667pt;}
.x108_c00294{left:571.333333pt;}
.xe0_c00294{left:572.800000pt;}
.xb8_c00294{left:573.866667pt;}
.x19_c00294{left:574.933333pt;}
.x84_c00294{left:575.866667pt;}
.xf2_c00294{left:577.200000pt;}
.xc8_c00294{left:581.600000pt;}
.x3d_c00294{left:583.466667pt;}
.x2e_c00294{left:585.333333pt;}
.xed_c00294{left:588.666667pt;}
.x78_c00294{left:589.866667pt;}
.x4d_c00294{left:592.133333pt;}
.xd5_c00294{left:594.266667pt;}
.xc9_c00294{left:595.333333pt;}
.xb9_c00294{left:598.533333pt;}
.x119_c00294{left:601.066667pt;}
.xc3_c00294{left:603.333333pt;}
.x68_c00294{left:607.733333pt;}
.x102_c00294{left:608.800000pt;}
.x10e_c00294{left:610.400000pt;}
.x3e_c00294{left:612.000000pt;}
.xe_c00294{left:613.200000pt;}
.x9f_c00294{left:615.866667pt;}
.x2f_c00294{left:617.333333pt;}
.xe1_c00294{left:618.933333pt;}
.x72_c00294{left:621.333333pt;}
.x69_c00294{left:623.066667pt;}
.x59_c00294{left:624.533333pt;}
.x3f_c00294{left:627.733333pt;}
.xb0_c00294{left:628.800000pt;}
.xf_c00294{left:631.066667pt;}
.x85_c00294{left:632.133333pt;}
.x1a_c00294{left:633.200000pt;}
.xe9_c00294{left:635.600000pt;}
.xa8_c00294{left:636.666667pt;}
.x90_c00294{left:638.666667pt;}
.x4e_c00294{left:640.133333pt;}
.x79_c00294{left:642.400000pt;}
.x11c_c00294{left:646.400000pt;}
.xba_c00294{left:648.800000pt;}
.x86_c00294{left:649.733333pt;}
.xe2_c00294{left:650.666667pt;}
.x40_c00294{left:652.666667pt;}
.x30_c00294{left:654.133333pt;}
.xee_c00294{left:655.200000pt;}
.x41_c00294{left:656.800000pt;}
.xd6_c00294{left:658.266667pt;}
.x115_c00294{left:659.466667pt;}
.x10_c00294{left:661.200000pt;}
.xea_c00294{left:662.800000pt;}
.xa0_c00294{left:664.800000pt;}
.x91_c00294{left:666.133333pt;}
.x103_c00294{left:667.600000pt;}
.x31_c00294{left:669.200000pt;}
.xb1_c00294{left:671.466667pt;}
.x42_c00294{left:672.800000pt;}
.xf3_c00294{left:673.866667pt;}
.xbb_c00294{left:675.066667pt;}
.x4f_c00294{left:676.933333pt;}
.xfa_c00294{left:678.000000pt;}
.x6a_c00294{left:679.733333pt;}
.x1b_c00294{left:681.200000pt;}
.x73_c00294{left:683.466667pt;}
.xe3_c00294{left:685.600000pt;}
.x123_c00294{left:686.533333pt;}
.x5a_c00294{left:689.200000pt;}
.x7a_c00294{left:692.933333pt;}
.x32_c00294{left:694.800000pt;}
.x112_c00294{left:696.400000pt;}
.xa9_c00294{left:700.666667pt;}
.xf4_c00294{left:704.533333pt;}
.x11_c00294{left:705.733333pt;}
.x87_c00294{left:708.933333pt;}
.xca_c00294{left:710.400000pt;}
.x5b_c00294{left:711.866667pt;}
.xbc_c00294{left:712.800000pt;}
}





/* 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_c00295 {
    display:none;
  }
  .loading-indicator_c00295.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00295 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_c00295 { 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_c00295" -> "#page-container .classname_c00295")
 */
.pf_c00295 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00295 { /* 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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00295 { /* 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_c00295 { /* 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_c00295 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00295 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00295 {overflow:visible;}
  }
}
.c_c00295 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00295 { /* 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_c00295:after { /* webkit #35443 */
  content: '';
}
.t_c00295:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00295 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 */
}
.__c00295 { /* 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_c00295 { /* info for Javascript */
  display:none;
}
.l_c00295 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00295 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00295 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00295: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_c00295 {
    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_c00295.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00295.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_c00295 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00295{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00295;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.000000;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;}
.m5e_c00295{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00295{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m83_c00295{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00295{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m98_c00295{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00295{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00295{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00295{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00295{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00295{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m87_c00295{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m27_c00295{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00295{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m34_c00295{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00295{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00295{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m28_c00295{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m63_c00295{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00295{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00295{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00295{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m56_c00295{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m88_c00295{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00295{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m23_c00295{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m99_c00295{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m86_c00295{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m65_c00295{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00295{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00295{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m72_c00295{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00295{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00295{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m31_c00295{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00295{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc_c00295{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m55_c00295{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00295{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8_c00295{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m26_c00295{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m36_c00295{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00295{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m25_c00295{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00295{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m42_c00295{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m89_c00295{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m35_c00295{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00295{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m69_c00295{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00295{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m78_c00295{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00295{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m52_c00295{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m51_c00295{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m95_c00295{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00295{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00295{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m50_c00295{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m39_c00295{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00295{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00295{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c00295{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m81_c00295{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00295{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma_c00295{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m74_c00295{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m94_c00295{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m84_c00295{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m80_c00295{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00295{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00295{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10_c00295{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf_c00295{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00295{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb_c00295{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00295{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);}
.m17_c00295{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00295{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m59_c00295{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m82_c00295{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6_c00295{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m70_c00295{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m33_c00295{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m96_c00295{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m76_c00295{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00295{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m85_c00295{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m41_c00295{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00295{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m37_c00295{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00295{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00295{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m60_c00295{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00295{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00295{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00295{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00295{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m48_c00295{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m53_c00295{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m29_c00295{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m91_c00295{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00295{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m20_c00295{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m79_c00295{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00295{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m30_c00295{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00295{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m46_c00295{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m22_c00295{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00295{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m44_c00295{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m57_c00295{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m24_c00295{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00295{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m38_c00295{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m93_c00295{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m92_c00295{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m49_c00295{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m64_c00295{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m61_c00295{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00295{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m11_c00295{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00295{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00295{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m90_c00295{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00295{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00295{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00295{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00295{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m75_c00295{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m32_c00295{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00295{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m47_c00295{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00295{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m19_c00295{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00295{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m68_c00295{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m43_c00295{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m97_c00295{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c00295{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00295{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m54_c00295{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00295{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m71_c00295{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m45_c00295{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00295{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00295{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00295{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00295{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m66_c00295{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m62_c00295{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m67_c00295{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00295{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.m73_c00295{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{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__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00295{word-spacing:-7.904671px;}
.ws7_c00295{word-spacing:-1.350384px;}
.ws8_c00295{word-spacing:0.000000px;}
.ws5_c00295{word-spacing:2.727273px;}
.ws2_c00295{word-spacing:4.997795px;}
.ws0_c00295{word-spacing:6.000000px;}
.ws4_c00295{word-spacing:6.250000px;}
.ws1_c00295{word-spacing:12.890675px;}
.ws6_c00295{word-spacing:19.108434px;}
.fc0_c00295{color:transparent;}
.fs0_c00295{font-size:54.000000px;}
.y0_c00295{bottom:0.000000px;}
.y2c_c00295{bottom:138.900000px;}
.y2b_c00295{bottom:184.350000px;}
.y2a_c00295{bottom:204.150000px;}
.y29_c00295{bottom:223.950000px;}
.y28_c00295{bottom:243.750000px;}
.y27_c00295{bottom:263.550000px;}
.y26_c00295{bottom:282.900000px;}
.y25_c00295{bottom:303.450000px;}
.y24_c00295{bottom:323.550000px;}
.y23_c00295{bottom:343.050000px;}
.y22_c00295{bottom:362.850000px;}
.y21_c00295{bottom:382.650000px;}
.y20_c00295{bottom:402.750000px;}
.y1f_c00295{bottom:422.550000px;}
.y1e_c00295{bottom:442.350000px;}
.y1d_c00295{bottom:462.900000px;}
.y1c_c00295{bottom:482.400000px;}
.y1b_c00295{bottom:502.500000px;}
.y1a_c00295{bottom:522.300000px;}
.y19_c00295{bottom:542.100000px;}
.y18_c00295{bottom:561.900000px;}
.y17_c00295{bottom:582.300000px;}
.y16_c00295{bottom:602.400000px;}
.y15_c00295{bottom:622.500000px;}
.y14_c00295{bottom:642.300000px;}
.y13_c00295{bottom:662.100000px;}
.y12_c00295{bottom:681.900000px;}
.y11_c00295{bottom:701.700000px;}
.y10_c00295{bottom:721.800000px;}
.yf_c00295{bottom:741.600000px;}
.ye_c00295{bottom:762.150000px;}
.yd_c00295{bottom:781.950000px;}
.yc_c00295{bottom:801.750000px;}
.yb_c00295{bottom:822.300000px;}
.ya_c00295{bottom:842.400000px;}
.y9_c00295{bottom:862.200000px;}
.y8_c00295{bottom:882.000000px;}
.y7_c00295{bottom:902.700000px;}
.y6_c00295{bottom:922.500000px;}
.y5_c00295{bottom:942.600000px;}
.y4_c00295{bottom:962.400000px;}
.y3_c00295{bottom:982.500000px;}
.y2_c00295{bottom:1002.300000px;}
.y1_c00295{bottom:1040.100000px;}
.h2_c00295{height:54.000000px;}
.h0_c00295{height:1166.759949px;}
.h1_c00295{height:1167.000000px;}
.w0_c00295{width:918.720063px;}
.w1_c00295{width:918.750000px;}
.x0_c00295{left:0.000000px;}
.xd7_c00295{left:100.350000px;}
.x4_c00295{left:101.550000px;}
.x4e_c00295{left:103.350000px;}
.x23_c00295{left:118.350000px;}
.x15_c00295{left:119.700000px;}
.xf5_c00295{left:121.800000px;}
.x36_c00295{left:124.950000px;}
.xfb_c00295{left:129.900000px;}
.xe1_c00295{left:131.700000px;}
.x50_c00295{left:132.900000px;}
.x116_c00295{left:134.850000px;}
.xb5_c00295{left:136.500000px;}
.x70_c00295{left:138.000000px;}
.x24_c00295{left:140.700000px;}
.x42_c00295{left:142.200000px;}
.x66_c00295{left:143.700000px;}
.x75_c00295{left:144.750000px;}
.x110_c00295{left:150.750000px;}
.xc7_c00295{left:151.950000px;}
.x5_c00295{left:153.000000px;}
.x93_c00295{left:155.850000px;}
.x80_c00295{left:158.250000px;}
.x16_c00295{left:160.050000px;}
.xb6_c00295{left:161.700000px;}
.x67_c00295{left:163.200000px;}
.xbf_c00295{left:164.550000px;}
.x11a_c00295{left:167.100000px;}
.x109_c00295{left:168.600000px;}
.x4f_c00295{left:170.250000px;}
.xeb_c00295{left:171.450000px;}
.xce_c00295{left:173.400000px;}
.x43_c00295{left:175.350000px;}
.x89_c00295{left:176.700000px;}
.x76_c00295{left:177.900000px;}
.x25_c00295{left:180.000000px;}
.xa1_c00295{left:183.600000px;}
.x6_c00295{left:184.650000px;}
.x68_c00295{left:185.850000px;}
.x81_c00295{left:189.600000px;}
.x51_c00295{left:193.350000px;}
.xd8_c00295{left:194.700000px;}
.xc0_c00295{left:195.900000px;}
.xf1_c00295{left:198.450000px;}
.x26_c00295{left:199.500000px;}
.x44_c00295{left:201.300000px;}
.x120_c00295{left:202.800000px;}
.xac_c00295{left:204.750000px;}
.x5b_c00295{left:208.800000px;}
.xa5_c00295{left:210.900000px;}
.x123_c00295{left:213.900000px;}
.x37_c00295{left:217.500000px;}
.x17_c00295{left:220.200000px;}
.x94_c00295{left:222.150000px;}
.x45_c00295{left:223.950000px;}
.x27_c00295{left:226.500000px;}
.x77_c00295{left:230.400000px;}
.xc1_c00295{left:234.750000px;}
.x8a_c00295{left:235.800000px;}
.x71_c00295{left:239.100000px;}
.x9b_c00295{left:240.900000px;}
.xad_c00295{left:243.300000px;}
.x7_c00295{left:246.150000px;}
.x95_c00295{left:249.450000px;}
.x105_c00295{left:250.950000px;}
.x117_c00295{left:252.150000px;}
.x72_c00295{left:253.500000px;}
.x46_c00295{left:254.850000px;}
.xbb_c00295{left:255.900000px;}
.x78_c00295{left:258.150000px;}
.x28_c00295{left:261.450000px;}
.xde_c00295{left:262.500000px;}
.xf6_c00295{left:263.550000px;}
.x69_c00295{left:265.050000px;}
.xb7_c00295{left:267.900000px;}
.xe2_c00295{left:270.900000px;}
.x52_c00295{left:273.300000px;}
.x8_c00295{left:275.250000px;}
.xc2_c00295{left:276.750000px;}
.x6a_c00295{left:283.050000px;}
.x106_c00295{left:285.450000px;}
.xd9_c00295{left:287.250000px;}
.x38_c00295{left:288.450000px;}
.x79_c00295{left:289.500000px;}
.x73_c00295{left:292.350000px;}
.xec_c00295{left:294.000000px;}
.x29_c00295{left:295.650000px;}
.x47_c00295{left:298.050000px;}
.xcf_c00295{left:300.000000px;}
.x82_c00295{left:301.200000px;}
.xae_c00295{left:303.000000px;}
.xc3_c00295{left:304.800000px;}
.x113_c00295{left:306.900000px;}
.x9c_c00295{left:309.300000px;}
.x9_c00295{left:312.300000px;}
.x8b_c00295{left:313.950000px;}
.x53_c00295{left:315.750000px;}
.x124_c00295{left:317.850000px;}
.x18_c00295{left:319.200000px;}
.x111_c00295{left:322.200000px;}
.xf2_c00295{left:324.150000px;}
.xc8_c00295{left:326.100000px;}
.xda_c00295{left:328.350000px;}
.xa2_c00295{left:330.450000px;}
.x125_c00295{left:331.950000px;}
.x11b_c00295{left:333.750000px;}
.xed_c00295{left:336.450000px;}
.xe6_c00295{left:339.000000px;}
.x74_c00295{left:340.950000px;}
.x121_c00295{left:344.400000px;}
.x96_c00295{left:345.450000px;}
.xf7_c00295{left:348.150000px;}
.x19_c00295{left:349.800000px;}
.xa_c00295{left:352.200000px;}
.x1_c00295{left:357.900000px;}
.x54_c00295{left:361.800000px;}
.x5c_c00295{left:365.700000px;}
.x8c_c00295{left:366.900000px;}
.x39_c00295{left:368.700000px;}
.xfc_c00295{left:369.750000px;}
.x48_c00295{left:372.900000px;}
.x1a_c00295{left:376.050000px;}
.xb_c00295{left:377.100000px;}
.x7a_c00295{left:379.500000px;}
.x100_c00295{left:381.000000px;}
.x2a_c00295{left:383.100000px;}
.xdf_c00295{left:384.600000px;}
.xc9_c00295{left:386.250000px;}
.x5d_c00295{left:388.050000px;}
.xbc_c00295{left:390.000000px;}
.x6b_c00295{left:392.550000px;}
.xa6_c00295{left:393.750000px;}
.x2b_c00295{left:395.400000px;}
.x10a_c00295{left:396.750000px;}
.x55_c00295{left:398.850000px;}
.x8d_c00295{left:401.100000px;}
.x101_c00295{left:403.350000px;}
.xe0_c00295{left:404.400000px;}
.x83_c00295{left:405.600000px;}
.xaf_c00295{left:408.750000px;}
.xe3_c00295{left:411.600000px;}
.x6c_c00295{left:412.650000px;}
.x3a_c00295{left:415.200000px;}
.x1b_c00295{left:416.700000px;}
.xc_c00295{left:418.800000px;}
.xa3_c00295{left:421.050000px;}
.x2_c00295{left:423.450000px;}
.x102_c00295{left:424.950000px;}
.x56_c00295{left:426.150000px;}
.xee_c00295{left:428.550000px;}
.x7b_c00295{left:431.400000px;}
.x49_c00295{left:433.050000px;}
.xca_c00295{left:434.850000px;}
.x5e_c00295{left:436.950000px;}
.xfd_c00295{left:439.350000px;}
.x6d_c00295{left:440.400000px;}
.x2c_c00295{left:442.500000px;}
.x11c_c00295{left:444.300000px;}
.x57_c00295{left:445.950000px;}
.x107_c00295{left:448.050000px;}
.x84_c00295{left:449.550000px;}
.xe7_c00295{left:452.100000px;}
.xb0_c00295{left:454.500000px;}
.x114_c00295{left:455.550000px;}
.x7c_c00295{left:456.900000px;}
.xf3_c00295{left:459.750000px;}
.xa7_c00295{left:463.950000px;}
.xdb_c00295{left:465.450000px;}
.x5f_c00295{left:466.500000px;}
.xd_c00295{left:469.500000px;}
.x2d_c00295{left:471.600000px;}
.x10e_c00295{left:472.800000px;}
.xd0_c00295{left:474.600000px;}
.x3b_c00295{left:477.150000px;}
.x122_c00295{left:481.650000px;}
.xa8_c00295{left:485.250000px;}
.x1c_c00295{left:487.650000px;}
.xb8_c00295{left:489.000000px;}
.x115_c00295{left:490.050000px;}
.x6e_c00295{left:491.100000px;}
.xe_c00295{left:492.900000px;}
.x2e_c00295{left:496.500000px;}
.xf8_c00295{left:499.350000px;}
.x4a_c00295{left:500.400000px;}
.x85_c00295{left:501.750000px;}
.x97_c00295{left:502.800000px;}
.xdc_c00295{left:504.750000px;}
.x60_c00295{left:505.800000px;}
.xc4_c00295{left:507.150000px;}
.xa9_c00295{left:513.750000px;}
.x11d_c00295{left:515.250000px;}
.xd1_c00295{left:516.300000px;}
.x2f_c00295{left:519.900000px;}
.xf_c00295{left:522.000000px;}
.xa4_c00295{left:523.950000px;}
.xc5_c00295{left:525.450000px;}
.x3c_c00295{left:526.500000px;}
.x7d_c00295{left:528.600000px;}
.xb9_c00295{left:530.400000px;}
.x118_c00295{left:533.850000px;}
.xd2_c00295{left:538.200000px;}
.xf9_c00295{left:539.250000px;}
.x61_c00295{left:542.850000px;}
.x30_c00295{left:546.150000px;}
.x98_c00295{left:550.650000px;}
.x8e_c00295{left:552.750000px;}
.x3d_c00295{left:555.600000px;}
.x103_c00295{left:556.650000px;}
.x11e_c00295{left:559.200000px;}
.x6f_c00295{left:560.250000px;}
.x7e_c00295{left:561.300000px;}
.xd3_c00295{left:563.400000px;}
.x10b_c00295{left:565.050000px;}
.x1d_c00295{left:566.100000px;}
.x86_c00295{left:570.600000px;}
.x112_c00295{left:572.100000px;}
.x31_c00295{left:576.750000px;}
.x4b_c00295{left:579.000000px;}
.x8f_c00295{left:580.050000px;}
.x58_c00295{left:582.150000px;}
.x9d_c00295{left:585.000000px;}
.x1e_c00295{left:586.950000px;}
.xe8_c00295{left:588.750000px;}
.x10_c00295{left:591.900000px;}
.xb1_c00295{left:594.300000px;}
.xaa_c00295{left:596.850000px;}
.x32_c00295{left:599.100000px;}
.x3e_c00295{left:602.100000px;}
.xba_c00295{left:603.150000px;}
.xcb_c00295{left:604.350000px;}
.xd4_c00295{left:607.650000px;}
.x62_c00295{left:610.200000px;}
.x10c_c00295{left:615.750000px;}
.x9e_c00295{left:619.500000px;}
.xb2_c00295{left:622.800000px;}
.x108_c00295{left:625.050000px;}
.x4c_c00295{left:627.600000px;}
.x33_c00295{left:633.000000px;}
.x11_c00295{left:634.800000px;}
.x1f_c00295{left:636.600000px;}
.xbd_c00295{left:638.550000px;}
.x87_c00295{left:640.500000px;}
.x59_c00295{left:641.550000px;}
.xab_c00295{left:643.350000px;}
.x90_c00295{left:646.650000px;}
.xcc_c00295{left:648.300000px;}
.xe9_c00295{left:649.950000px;}
.xf4_c00295{left:651.750000px;}
.x99_c00295{left:654.900000px;}
.x12_c00295{left:656.400000px;}
.x4d_c00295{left:658.200000px;}
.x20_c00295{left:661.500000px;}
.xef_c00295{left:662.850000px;}
.x10f_c00295{left:663.900000px;}
.x63_c00295{left:665.550000px;}
.x10d_c00295{left:668.400000px;}
.xbe_c00295{left:670.650000px;}
.x3f_c00295{left:672.000000px;}
.x9f_c00295{left:674.250000px;}
.x91_c00295{left:677.250000px;}
.xe4_c00295{left:679.650000px;}
.xd5_c00295{left:681.450000px;}
.xc6_c00295{left:684.150000px;}
.xf0_c00295{left:687.000000px;}
.x34_c00295{left:690.000000px;}
.xb3_c00295{left:692.250000px;}
.xfe_c00295{left:696.600000px;}
.x21_c00295{left:701.100000px;}
.x92_c00295{left:702.750000px;}
.x64_c00295{left:704.100000px;}
.xe5_c00295{left:705.150000px;}
.xa0_c00295{left:706.650000px;}
.x40_c00295{left:709.500000px;}
.x88_c00295{left:712.800000px;}
.x5a_c00295{left:714.600000px;}
.x9a_c00295{left:716.400000px;}
.x35_c00295{left:717.750000px;}
.x13_c00295{left:719.100000px;}
.xdd_c00295{left:721.200000px;}
.xb4_c00295{left:727.950000px;}
.x7f_c00295{left:729.900000px;}
.x119_c00295{left:731.700000px;}
.xcd_c00295{left:733.950000px;}
.x22_c00295{left:735.000000px;}
.xea_c00295{left:736.350000px;}
.x41_c00295{left:738.000000px;}
.x11f_c00295{left:739.200000px;}
.x3_c00295{left:742.800000px;}
.x14_c00295{left:745.050000px;}
.xff_c00295{left:746.250000px;}
.x65_c00295{left:748.050000px;}
.xd6_c00295{left:755.550000px;}
.x104_c00295{left:758.550000px;}
.xfa_c00295{left:763.200000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws3_c00295{word-spacing:-7.026374pt;}
.ws7_c00295{word-spacing:-1.200341pt;}
.ws8_c00295{word-spacing:0.000000pt;}
.ws5_c00295{word-spacing:2.424242pt;}
.ws2_c00295{word-spacing:4.442484pt;}
.ws0_c00295{word-spacing:5.333333pt;}
.ws4_c00295{word-spacing:5.555556pt;}
.ws1_c00295{word-spacing:11.458378pt;}
.ws6_c00295{word-spacing:16.985274pt;}
.fs0_c00295{font-size:48.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y2c_c00295{bottom:123.466667pt;}
.y2b_c00295{bottom:163.866667pt;}
.y2a_c00295{bottom:181.466667pt;}
.y29_c00295{bottom:199.066667pt;}
.y28_c00295{bottom:216.666667pt;}
.y27_c00295{bottom:234.266667pt;}
.y26_c00295{bottom:251.466667pt;}
.y25_c00295{bottom:269.733333pt;}
.y24_c00295{bottom:287.600000pt;}
.y23_c00295{bottom:304.933333pt;}
.y22_c00295{bottom:322.533333pt;}
.y21_c00295{bottom:340.133333pt;}
.y20_c00295{bottom:358.000000pt;}
.y1f_c00295{bottom:375.600000pt;}
.y1e_c00295{bottom:393.200000pt;}
.y1d_c00295{bottom:411.466667pt;}
.y1c_c00295{bottom:428.800000pt;}
.y1b_c00295{bottom:446.666667pt;}
.y1a_c00295{bottom:464.266667pt;}
.y19_c00295{bottom:481.866667pt;}
.y18_c00295{bottom:499.466667pt;}
.y17_c00295{bottom:517.600000pt;}
.y16_c00295{bottom:535.466667pt;}
.y15_c00295{bottom:553.333333pt;}
.y14_c00295{bottom:570.933333pt;}
.y13_c00295{bottom:588.533333pt;}
.y12_c00295{bottom:606.133333pt;}
.y11_c00295{bottom:623.733333pt;}
.y10_c00295{bottom:641.600000pt;}
.yf_c00295{bottom:659.200000pt;}
.ye_c00295{bottom:677.466667pt;}
.yd_c00295{bottom:695.066667pt;}
.yc_c00295{bottom:712.666667pt;}
.yb_c00295{bottom:730.933333pt;}
.ya_c00295{bottom:748.800000pt;}
.y9_c00295{bottom:766.400000pt;}
.y8_c00295{bottom:784.000000pt;}
.y7_c00295{bottom:802.400000pt;}
.y6_c00295{bottom:820.000000pt;}
.y5_c00295{bottom:837.866667pt;}
.y4_c00295{bottom:855.466667pt;}
.y3_c00295{bottom:873.333333pt;}
.y2_c00295{bottom:890.933333pt;}
.y1_c00295{bottom:924.533333pt;}
.h2_c00295{height:48.000000pt;}
.h0_c00295{height:1037.119955pt;}
.h1_c00295{height:1037.333333pt;}
.w0_c00295{width:816.640056pt;}
.w1_c00295{width:816.666667pt;}
.x0_c00295{left:0.000000pt;}
.xd7_c00295{left:89.200000pt;}
.x4_c00295{left:90.266667pt;}
.x4e_c00295{left:91.866667pt;}
.x23_c00295{left:105.200000pt;}
.x15_c00295{left:106.400000pt;}
.xf5_c00295{left:108.266667pt;}
.x36_c00295{left:111.066667pt;}
.xfb_c00295{left:115.466667pt;}
.xe1_c00295{left:117.066667pt;}
.x50_c00295{left:118.133333pt;}
.x116_c00295{left:119.866667pt;}
.xb5_c00295{left:121.333333pt;}
.x70_c00295{left:122.666667pt;}
.x24_c00295{left:125.066667pt;}
.x42_c00295{left:126.400000pt;}
.x66_c00295{left:127.733333pt;}
.x75_c00295{left:128.666667pt;}
.x110_c00295{left:134.000000pt;}
.xc7_c00295{left:135.066667pt;}
.x5_c00295{left:136.000000pt;}
.x93_c00295{left:138.533333pt;}
.x80_c00295{left:140.666667pt;}
.x16_c00295{left:142.266667pt;}
.xb6_c00295{left:143.733333pt;}
.x67_c00295{left:145.066667pt;}
.xbf_c00295{left:146.266667pt;}
.x11a_c00295{left:148.533333pt;}
.x109_c00295{left:149.866667pt;}
.x4f_c00295{left:151.333333pt;}
.xeb_c00295{left:152.400000pt;}
.xce_c00295{left:154.133333pt;}
.x43_c00295{left:155.866667pt;}
.x89_c00295{left:157.066667pt;}
.x76_c00295{left:158.133333pt;}
.x25_c00295{left:160.000000pt;}
.xa1_c00295{left:163.200000pt;}
.x6_c00295{left:164.133333pt;}
.x68_c00295{left:165.200000pt;}
.x81_c00295{left:168.533333pt;}
.x51_c00295{left:171.866667pt;}
.xd8_c00295{left:173.066667pt;}
.xc0_c00295{left:174.133333pt;}
.xf1_c00295{left:176.400000pt;}
.x26_c00295{left:177.333333pt;}
.x44_c00295{left:178.933333pt;}
.x120_c00295{left:180.266667pt;}
.xac_c00295{left:182.000000pt;}
.x5b_c00295{left:185.600000pt;}
.xa5_c00295{left:187.466667pt;}
.x123_c00295{left:190.133333pt;}
.x37_c00295{left:193.333333pt;}
.x17_c00295{left:195.733333pt;}
.x94_c00295{left:197.466667pt;}
.x45_c00295{left:199.066667pt;}
.x27_c00295{left:201.333333pt;}
.x77_c00295{left:204.800000pt;}
.xc1_c00295{left:208.666667pt;}
.x8a_c00295{left:209.600000pt;}
.x71_c00295{left:212.533333pt;}
.x9b_c00295{left:214.133333pt;}
.xad_c00295{left:216.266667pt;}
.x7_c00295{left:218.800000pt;}
.x95_c00295{left:221.733333pt;}
.x105_c00295{left:223.066667pt;}
.x117_c00295{left:224.133333pt;}
.x72_c00295{left:225.333333pt;}
.x46_c00295{left:226.533333pt;}
.xbb_c00295{left:227.466667pt;}
.x78_c00295{left:229.466667pt;}
.x28_c00295{left:232.400000pt;}
.xde_c00295{left:233.333333pt;}
.xf6_c00295{left:234.266667pt;}
.x69_c00295{left:235.600000pt;}
.xb7_c00295{left:238.133333pt;}
.xe2_c00295{left:240.800000pt;}
.x52_c00295{left:242.933333pt;}
.x8_c00295{left:244.666667pt;}
.xc2_c00295{left:246.000000pt;}
.x6a_c00295{left:251.600000pt;}
.x106_c00295{left:253.733333pt;}
.xd9_c00295{left:255.333333pt;}
.x38_c00295{left:256.400000pt;}
.x79_c00295{left:257.333333pt;}
.x73_c00295{left:259.866667pt;}
.xec_c00295{left:261.333333pt;}
.x29_c00295{left:262.800000pt;}
.x47_c00295{left:264.933333pt;}
.xcf_c00295{left:266.666667pt;}
.x82_c00295{left:267.733333pt;}
.xae_c00295{left:269.333333pt;}
.xc3_c00295{left:270.933333pt;}
.x113_c00295{left:272.800000pt;}
.x9c_c00295{left:274.933333pt;}
.x9_c00295{left:277.600000pt;}
.x8b_c00295{left:279.066667pt;}
.x53_c00295{left:280.666667pt;}
.x124_c00295{left:282.533333pt;}
.x18_c00295{left:283.733333pt;}
.x111_c00295{left:286.400000pt;}
.xf2_c00295{left:288.133333pt;}
.xc8_c00295{left:289.866667pt;}
.xda_c00295{left:291.866667pt;}
.xa2_c00295{left:293.733333pt;}
.x125_c00295{left:295.066667pt;}
.x11b_c00295{left:296.666667pt;}
.xed_c00295{left:299.066667pt;}
.xe6_c00295{left:301.333333pt;}
.x74_c00295{left:303.066667pt;}
.x121_c00295{left:306.133333pt;}
.x96_c00295{left:307.066667pt;}
.xf7_c00295{left:309.466667pt;}
.x19_c00295{left:310.933333pt;}
.xa_c00295{left:313.066667pt;}
.x1_c00295{left:318.133333pt;}
.x54_c00295{left:321.600000pt;}
.x5c_c00295{left:325.066667pt;}
.x8c_c00295{left:326.133333pt;}
.x39_c00295{left:327.733333pt;}
.xfc_c00295{left:328.666667pt;}
.x48_c00295{left:331.466667pt;}
.x1a_c00295{left:334.266667pt;}
.xb_c00295{left:335.200000pt;}
.x7a_c00295{left:337.333333pt;}
.x100_c00295{left:338.666667pt;}
.x2a_c00295{left:340.533333pt;}
.xdf_c00295{left:341.866667pt;}
.xc9_c00295{left:343.333333pt;}
.x5d_c00295{left:344.933333pt;}
.xbc_c00295{left:346.666667pt;}
.x6b_c00295{left:348.933333pt;}
.xa6_c00295{left:350.000000pt;}
.x2b_c00295{left:351.466667pt;}
.x10a_c00295{left:352.666667pt;}
.x55_c00295{left:354.533333pt;}
.x8d_c00295{left:356.533333pt;}
.x101_c00295{left:358.533333pt;}
.xe0_c00295{left:359.466667pt;}
.x83_c00295{left:360.533333pt;}
.xaf_c00295{left:363.333333pt;}
.xe3_c00295{left:365.866667pt;}
.x6c_c00295{left:366.800000pt;}
.x3a_c00295{left:369.066667pt;}
.x1b_c00295{left:370.400000pt;}
.xc_c00295{left:372.266667pt;}
.xa3_c00295{left:374.266667pt;}
.x2_c00295{left:376.400000pt;}
.x102_c00295{left:377.733333pt;}
.x56_c00295{left:378.800000pt;}
.xee_c00295{left:380.933333pt;}
.x7b_c00295{left:383.466667pt;}
.x49_c00295{left:384.933333pt;}
.xca_c00295{left:386.533333pt;}
.x5e_c00295{left:388.400000pt;}
.xfd_c00295{left:390.533333pt;}
.x6d_c00295{left:391.466667pt;}
.x2c_c00295{left:393.333333pt;}
.x11c_c00295{left:394.933333pt;}
.x57_c00295{left:396.400000pt;}
.x107_c00295{left:398.266667pt;}
.x84_c00295{left:399.600000pt;}
.xe7_c00295{left:401.866667pt;}
.xb0_c00295{left:404.000000pt;}
.x114_c00295{left:404.933333pt;}
.x7c_c00295{left:406.133333pt;}
.xf3_c00295{left:408.666667pt;}
.xa7_c00295{left:412.400000pt;}
.xdb_c00295{left:413.733333pt;}
.x5f_c00295{left:414.666667pt;}
.xd_c00295{left:417.333333pt;}
.x2d_c00295{left:419.200000pt;}
.x10e_c00295{left:420.266667pt;}
.xd0_c00295{left:421.866667pt;}
.x3b_c00295{left:424.133333pt;}
.x122_c00295{left:428.133333pt;}
.xa8_c00295{left:431.333333pt;}
.x1c_c00295{left:433.466667pt;}
.xb8_c00295{left:434.666667pt;}
.x115_c00295{left:435.600000pt;}
.x6e_c00295{left:436.533333pt;}
.xe_c00295{left:438.133333pt;}
.x2e_c00295{left:441.333333pt;}
.xf8_c00295{left:443.866667pt;}
.x4a_c00295{left:444.800000pt;}
.x85_c00295{left:446.000000pt;}
.x97_c00295{left:446.933333pt;}
.xdc_c00295{left:448.666667pt;}
.x60_c00295{left:449.600000pt;}
.xc4_c00295{left:450.800000pt;}
.xa9_c00295{left:456.666667pt;}
.x11d_c00295{left:458.000000pt;}
.xd1_c00295{left:458.933333pt;}
.x2f_c00295{left:462.133333pt;}
.xf_c00295{left:464.000000pt;}
.xa4_c00295{left:465.733333pt;}
.xc5_c00295{left:467.066667pt;}
.x3c_c00295{left:468.000000pt;}
.x7d_c00295{left:469.866667pt;}
.xb9_c00295{left:471.466667pt;}
.x118_c00295{left:474.533333pt;}
.xd2_c00295{left:478.400000pt;}
.xf9_c00295{left:479.333333pt;}
.x61_c00295{left:482.533333pt;}
.x30_c00295{left:485.466667pt;}
.x98_c00295{left:489.466667pt;}
.x8e_c00295{left:491.333333pt;}
.x3d_c00295{left:493.866667pt;}
.x103_c00295{left:494.800000pt;}
.x11e_c00295{left:497.066667pt;}
.x6f_c00295{left:498.000000pt;}
.x7e_c00295{left:498.933333pt;}
.xd3_c00295{left:500.800000pt;}
.x10b_c00295{left:502.266667pt;}
.x1d_c00295{left:503.200000pt;}
.x86_c00295{left:507.200000pt;}
.x112_c00295{left:508.533333pt;}
.x31_c00295{left:512.666667pt;}
.x4b_c00295{left:514.666667pt;}
.x8f_c00295{left:515.600000pt;}
.x58_c00295{left:517.466667pt;}
.x9d_c00295{left:520.000000pt;}
.x1e_c00295{left:521.733333pt;}
.xe8_c00295{left:523.333333pt;}
.x10_c00295{left:526.133333pt;}
.xb1_c00295{left:528.266667pt;}
.xaa_c00295{left:530.533333pt;}
.x32_c00295{left:532.533333pt;}
.x3e_c00295{left:535.200000pt;}
.xba_c00295{left:536.133333pt;}
.xcb_c00295{left:537.200000pt;}
.xd4_c00295{left:540.133333pt;}
.x62_c00295{left:542.400000pt;}
.x10c_c00295{left:547.333333pt;}
.x9e_c00295{left:550.666667pt;}
.xb2_c00295{left:553.600000pt;}
.x108_c00295{left:555.600000pt;}
.x4c_c00295{left:557.866667pt;}
.x33_c00295{left:562.666667pt;}
.x11_c00295{left:564.266667pt;}
.x1f_c00295{left:565.866667pt;}
.xbd_c00295{left:567.600000pt;}
.x87_c00295{left:569.333333pt;}
.x59_c00295{left:570.266667pt;}
.xab_c00295{left:571.866667pt;}
.x90_c00295{left:574.800000pt;}
.xcc_c00295{left:576.266667pt;}
.xe9_c00295{left:577.733333pt;}
.xf4_c00295{left:579.333333pt;}
.x99_c00295{left:582.133333pt;}
.x12_c00295{left:583.466667pt;}
.x4d_c00295{left:585.066667pt;}
.x20_c00295{left:588.000000pt;}
.xef_c00295{left:589.200000pt;}
.x10f_c00295{left:590.133333pt;}
.x63_c00295{left:591.600000pt;}
.x10d_c00295{left:594.133333pt;}
.xbe_c00295{left:596.133333pt;}
.x3f_c00295{left:597.333333pt;}
.x9f_c00295{left:599.333333pt;}
.x91_c00295{left:602.000000pt;}
.xe4_c00295{left:604.133333pt;}
.xd5_c00295{left:605.733333pt;}
.xc6_c00295{left:608.133333pt;}
.xf0_c00295{left:610.666667pt;}
.x34_c00295{left:613.333333pt;}
.xb3_c00295{left:615.333333pt;}
.xfe_c00295{left:619.200000pt;}
.x21_c00295{left:623.200000pt;}
.x92_c00295{left:624.666667pt;}
.x64_c00295{left:625.866667pt;}
.xe5_c00295{left:626.800000pt;}
.xa0_c00295{left:628.133333pt;}
.x40_c00295{left:630.666667pt;}
.x88_c00295{left:633.600000pt;}
.x5a_c00295{left:635.200000pt;}
.x9a_c00295{left:636.800000pt;}
.x35_c00295{left:638.000000pt;}
.x13_c00295{left:639.200000pt;}
.xdd_c00295{left:641.066667pt;}
.xb4_c00295{left:647.066667pt;}
.x7f_c00295{left:648.800000pt;}
.x119_c00295{left:650.400000pt;}
.xcd_c00295{left:652.400000pt;}
.x22_c00295{left:653.333333pt;}
.xea_c00295{left:654.533333pt;}
.x41_c00295{left:656.000000pt;}
.x11f_c00295{left:657.066667pt;}
.x3_c00295{left:660.266667pt;}
.x14_c00295{left:662.266667pt;}
.xff_c00295{left:663.333333pt;}
.x65_c00295{left:664.933333pt;}
.xd6_c00295{left:671.600000pt;}
.x104_c00295{left:674.266667pt;}
.xfa_c00295{left:678.400000pt;}
}





/* 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_c00296 {
    display:none;
  }
  .loading-indicator_c00296.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00296 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_c00296 { 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_c00296" -> "#page-container .classname_c00296")
 */
.pf_c00296 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00296 { /* 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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00296 { /* 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_c00296 { /* 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_c00296 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00296 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00296 {overflow:visible;}
  }
}
.c_c00296 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00296 { /* 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_c00296:after { /* webkit #35443 */
  content: '';
}
.t_c00296:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00296 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 */
}
.__c00296 { /* 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_c00296 { /* info for Javascript */
  display:none;
}
.l_c00296 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00296 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00296 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00296: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_c00296 {
    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_c00296.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00296.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_c00296 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00296{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00296;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.000000;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;}
.m28_c00296{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m41_c00296{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m52_c00296{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00296{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m46_c00296{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m47_c00296{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5_c00296{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00296{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m54_c00296{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m26_c00296{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb_c00296{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m37_c00296{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m40_c00296{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m32_c00296{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mc_c00296{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m30_c00296{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00296{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m51_c00296{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00296{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m19_c00296{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m36_c00296{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m49_c00296{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3_c00296{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00296{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00296{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9_c00296{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00296{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m29_c00296{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00296{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15_c00296{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m17_c00296{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00296{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00296{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00296{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m23_c00296{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m55_c00296{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m18_c00296{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00296{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4_c00296{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m31_c00296{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m24_c00296{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00296{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00296{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.me_c00296{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00296{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m21_c00296{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00296{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6_c00296{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma_c00296{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m39_c00296{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00296{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m44_c00296{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00296{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00296{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m25_c00296{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00296{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m12_c00296{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00296{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m38_c00296{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md_c00296{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00296{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m35_c00296{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m50_c00296{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m33_c00296{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00296{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00296{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m42_c00296{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00296{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m53_c00296{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m45_c00296{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m16_c00296{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00296{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00296{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00296{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7_c00296{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00296{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00296{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1_c00296{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10_c00296{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m14_c00296{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00296{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m27_c00296{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m22_c00296{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00296{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00296{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{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__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00296{word-spacing:0.000000px;}
.ws0_c00296{word-spacing:1.145833px;}
.ws1_c00296{word-spacing:6.796875px;}
.fc0_c00296{color:transparent;}
.fs0_c00296{font-size:60.000000px;}
.y0_c00296{bottom:0.000000px;}
.yc_c00296{bottom:806.550000px;}
.yb_c00296{bottom:826.650000px;}
.ya_c00296{bottom:846.150000px;}
.y9_c00296{bottom:866.700000px;}
.y8_c00296{bottom:886.500000px;}
.y7_c00296{bottom:906.300000px;}
.y6_c00296{bottom:926.100000px;}
.y5_c00296{bottom:946.200000px;}
.y4_c00296{bottom:966.000000px;}
.y3_c00296{bottom:986.100000px;}
.y2_c00296{bottom:1005.900000px;}
.y1_c00296{bottom:1044.750000px;}
.h2_c00296{height:60.000000px;}
.h0_c00296{height:1166.759949px;}
.h1_c00296{height:1167.000000px;}
.w1_c00296{width:913.500000px;}
.w0_c00296{width:913.679993px;}
.x0_c00296{left:0.000000px;}
.x7a_c00296{left:154.800000px;}
.x4_c00296{left:155.850000px;}
.x1_c00296{left:158.400000px;}
.x2_c00296{left:167.100000px;}
.x4c_c00296{left:175.800000px;}
.x5_c00296{left:177.450000px;}
.x31_c00296{left:179.550000px;}
.x21_c00296{left:185.700000px;}
.x58_c00296{left:199.200000px;}
.x4d_c00296{left:202.500000px;}
.x32_c00296{left:208.350000px;}
.x85_c00296{left:212.100000px;}
.x6c_c00296{left:213.450000px;}
.x14_c00296{left:214.800000px;}
.x3f_c00296{left:219.900000px;}
.x6_c00296{left:220.950000px;}
.x59_c00296{left:223.350000px;}
.x7b_c00296{left:225.750000px;}
.x86_c00296{left:231.900000px;}
.x66_c00296{left:234.000000px;}
.x22_c00296{left:236.850000px;}
.x6d_c00296{left:238.650000px;}
.x7_c00296{left:242.250000px;}
.x4e_c00296{left:253.950000px;}
.x33_c00296{left:259.050000px;}
.x15_c00296{left:260.100000px;}
.x87_c00296{left:264.300000px;}
.x8_c00296{left:265.950000px;}
.x6e_c00296{left:282.900000px;}
.x23_c00296{left:290.550000px;}
.x5a_c00296{left:293.250000px;}
.x7c_c00296{left:295.650000px;}
.x6f_c00296{left:300.150000px;}
.x24_c00296{left:311.850000px;}
.x4f_c00296{left:314.850000px;}
.x40_c00296{left:327.150000px;}
.x16_c00296{left:329.850000px;}
.x70_c00296{left:336.900000px;}
.x67_c00296{left:338.100000px;}
.x88_c00296{left:339.150000px;}
.x50_c00296{left:341.100000px;}
.x5b_c00296{left:342.600000px;}
.x34_c00296{left:343.650000px;}
.x17_c00296{left:349.350000px;}
.x41_c00296{left:352.050000px;}
.x71_c00296{left:355.650000px;}
.x89_c00296{left:360.000000px;}
.x5c_c00296{left:362.700000px;}
.x35_c00296{left:366.300000px;}
.x25_c00296{left:368.400000px;}
.x18_c00296{left:372.450000px;}
.x9_c00296{left:373.950000px;}
.x5d_c00296{left:387.900000px;}
.x42_c00296{left:391.350000px;}
.x36_c00296{left:395.100000px;}
.xa_c00296{left:398.400000px;}
.x26_c00296{left:400.050000px;}
.x51_c00296{left:402.000000px;}
.x8a_c00296{left:408.600000px;}
.x19_c00296{left:413.850000px;}
.x72_c00296{left:421.050000px;}
.x27_c00296{left:425.250000px;}
.x8b_c00296{left:428.400000px;}
.xb_c00296{left:438.300000px;}
.x73_c00296{left:441.600000px;}
.x7d_c00296{left:448.350000px;}
.x5e_c00296{left:449.850000px;}
.x28_c00296{left:451.950000px;}
.x3_c00296{left:454.350000px;}
.x43_c00296{left:455.850000px;}
.x52_c00296{left:460.350000px;}
.x1a_c00296{left:467.550000px;}
.x8c_c00296{left:471.300000px;}
.xc_c00296{left:480.450000px;}
.x44_c00296{left:483.900000px;}
.x5f_c00296{left:486.150000px;}
.x68_c00296{left:488.850000px;}
.x7e_c00296{left:491.250000px;}
.x29_c00296{left:493.650000px;}
.x37_c00296{left:498.000000px;}
.x8d_c00296{left:500.850000px;}
.x74_c00296{left:503.850000px;}
.xd_c00296{left:510.750000px;}
.x69_c00296{left:513.750000px;}
.x1b_c00296{left:517.950000px;}
.x38_c00296{left:520.350000px;}
.x2a_c00296{left:523.950000px;}
.x45_c00296{left:528.150000px;}
.x1c_c00296{left:539.250000px;}
.x6a_c00296{left:541.050000px;}
.xe_c00296{left:545.250000px;}
.x46_c00296{left:547.200000px;}
.x39_c00296{left:550.650000px;}
.x7f_c00296{left:552.150000px;}
.x60_c00296{left:556.650000px;}
.x75_c00296{left:563.550000px;}
.x2b_c00296{left:573.600000px;}
.x61_c00296{left:577.950000px;}
.x80_c00296{left:595.350000px;}
.xf_c00296{left:597.450000px;}
.x53_c00296{left:602.550000px;}
.x62_c00296{left:604.650000px;}
.x47_c00296{left:617.700000px;}
.x63_c00296{left:619.350000px;}
.x76_c00296{left:624.300000px;}
.x3a_c00296{left:625.950000px;}
.x10_c00296{left:636.300000px;}
.x6b_c00296{left:637.950000px;}
.x54_c00296{left:640.050000px;}
.x2c_c00296{left:650.700000px;}
.x48_c00296{left:655.500000px;}
.x3b_c00296{left:659.400000px;}
.x64_c00296{left:662.550000px;}
.x77_c00296{left:665.400000px;}
.x1d_c00296{left:666.750000px;}
.x2d_c00296{left:672.300000px;}
.x55_c00296{left:677.100000px;}
.x3c_c00296{left:682.050000px;}
.x81_c00296{left:683.250000px;}
.x11_c00296{left:693.150000px;}
.x1e_c00296{left:695.850000px;}
.x65_c00296{left:697.800000px;}
.x2e_c00296{left:707.100000px;}
.x82_c00296{left:713.850000px;}
.x78_c00296{left:717.600000px;}
.x56_c00296{left:721.350000px;}
.x49_c00296{left:724.950000px;}
.x1f_c00296{left:729.750000px;}
.x83_c00296{left:731.550000px;}
.x2f_c00296{left:735.150000px;}
.x57_c00296{left:742.200000px;}
.x3d_c00296{left:749.400000px;}
.x4a_c00296{left:768.900000px;}
.x12_c00296{left:778.050000px;}
.x30_c00296{left:785.850000px;}
.x20_c00296{left:790.200000px;}
.x4b_c00296{left:796.200000px;}
.x3e_c00296{left:798.750000px;}
.x13_c00296{left:802.200000px;}
.x79_c00296{left:804.300000px;}
.x84_c00296{left:806.100000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws2_c00296{word-spacing:0.000000pt;}
.ws0_c00296{word-spacing:1.018519pt;}
.ws1_c00296{word-spacing:6.041667pt;}
.fs0_c00296{font-size:53.333333pt;}
.y0_c00296{bottom:0.000000pt;}
.yc_c00296{bottom:716.933333pt;}
.yb_c00296{bottom:734.800000pt;}
.ya_c00296{bottom:752.133333pt;}
.y9_c00296{bottom:770.400000pt;}
.y8_c00296{bottom:788.000000pt;}
.y7_c00296{bottom:805.600000pt;}
.y6_c00296{bottom:823.200000pt;}
.y5_c00296{bottom:841.066667pt;}
.y4_c00296{bottom:858.666667pt;}
.y3_c00296{bottom:876.533333pt;}
.y2_c00296{bottom:894.133333pt;}
.y1_c00296{bottom:928.666667pt;}
.h2_c00296{height:53.333333pt;}
.h0_c00296{height:1037.119955pt;}
.h1_c00296{height:1037.333333pt;}
.w1_c00296{width:812.000000pt;}
.w0_c00296{width:812.159993pt;}
.x0_c00296{left:0.000000pt;}
.x7a_c00296{left:137.600000pt;}
.x4_c00296{left:138.533333pt;}
.x1_c00296{left:140.800000pt;}
.x2_c00296{left:148.533333pt;}
.x4c_c00296{left:156.266667pt;}
.x5_c00296{left:157.733333pt;}
.x31_c00296{left:159.600000pt;}
.x21_c00296{left:165.066667pt;}
.x58_c00296{left:177.066667pt;}
.x4d_c00296{left:180.000000pt;}
.x32_c00296{left:185.200000pt;}
.x85_c00296{left:188.533333pt;}
.x6c_c00296{left:189.733333pt;}
.x14_c00296{left:190.933333pt;}
.x3f_c00296{left:195.466667pt;}
.x6_c00296{left:196.400000pt;}
.x59_c00296{left:198.533333pt;}
.x7b_c00296{left:200.666667pt;}
.x86_c00296{left:206.133333pt;}
.x66_c00296{left:208.000000pt;}
.x22_c00296{left:210.533333pt;}
.x6d_c00296{left:212.133333pt;}
.x7_c00296{left:215.333333pt;}
.x4e_c00296{left:225.733333pt;}
.x33_c00296{left:230.266667pt;}
.x15_c00296{left:231.200000pt;}
.x87_c00296{left:234.933333pt;}
.x8_c00296{left:236.400000pt;}
.x6e_c00296{left:251.466667pt;}
.x23_c00296{left:258.266667pt;}
.x5a_c00296{left:260.666667pt;}
.x7c_c00296{left:262.800000pt;}
.x6f_c00296{left:266.800000pt;}
.x24_c00296{left:277.200000pt;}
.x4f_c00296{left:279.866667pt;}
.x40_c00296{left:290.800000pt;}
.x16_c00296{left:293.200000pt;}
.x70_c00296{left:299.466667pt;}
.x67_c00296{left:300.533333pt;}
.x88_c00296{left:301.466667pt;}
.x50_c00296{left:303.200000pt;}
.x5b_c00296{left:304.533333pt;}
.x34_c00296{left:305.466667pt;}
.x17_c00296{left:310.533333pt;}
.x41_c00296{left:312.933333pt;}
.x71_c00296{left:316.133333pt;}
.x89_c00296{left:320.000000pt;}
.x5c_c00296{left:322.400000pt;}
.x35_c00296{left:325.600000pt;}
.x25_c00296{left:327.466667pt;}
.x18_c00296{left:331.066667pt;}
.x9_c00296{left:332.400000pt;}
.x5d_c00296{left:344.800000pt;}
.x42_c00296{left:347.866667pt;}
.x36_c00296{left:351.200000pt;}
.xa_c00296{left:354.133333pt;}
.x26_c00296{left:355.600000pt;}
.x51_c00296{left:357.333333pt;}
.x8a_c00296{left:363.200000pt;}
.x19_c00296{left:367.866667pt;}
.x72_c00296{left:374.266667pt;}
.x27_c00296{left:378.000000pt;}
.x8b_c00296{left:380.800000pt;}
.xb_c00296{left:389.600000pt;}
.x73_c00296{left:392.533333pt;}
.x7d_c00296{left:398.533333pt;}
.x5e_c00296{left:399.866667pt;}
.x28_c00296{left:401.733333pt;}
.x3_c00296{left:403.866667pt;}
.x43_c00296{left:405.200000pt;}
.x52_c00296{left:409.200000pt;}
.x1a_c00296{left:415.600000pt;}
.x8c_c00296{left:418.933333pt;}
.xc_c00296{left:427.066667pt;}
.x44_c00296{left:430.133333pt;}
.x5f_c00296{left:432.133333pt;}
.x68_c00296{left:434.533333pt;}
.x7e_c00296{left:436.666667pt;}
.x29_c00296{left:438.800000pt;}
.x37_c00296{left:442.666667pt;}
.x8d_c00296{left:445.200000pt;}
.x74_c00296{left:447.866667pt;}
.xd_c00296{left:454.000000pt;}
.x69_c00296{left:456.666667pt;}
.x1b_c00296{left:460.400000pt;}
.x38_c00296{left:462.533333pt;}
.x2a_c00296{left:465.733333pt;}
.x45_c00296{left:469.466667pt;}
.x1c_c00296{left:479.333333pt;}
.x6a_c00296{left:480.933333pt;}
.xe_c00296{left:484.666667pt;}
.x46_c00296{left:486.400000pt;}
.x39_c00296{left:489.466667pt;}
.x7f_c00296{left:490.800000pt;}
.x60_c00296{left:494.800000pt;}
.x75_c00296{left:500.933333pt;}
.x2b_c00296{left:509.866667pt;}
.x61_c00296{left:513.733333pt;}
.x80_c00296{left:529.200000pt;}
.xf_c00296{left:531.066667pt;}
.x53_c00296{left:535.600000pt;}
.x62_c00296{left:537.466667pt;}
.x47_c00296{left:549.066667pt;}
.x63_c00296{left:550.533333pt;}
.x76_c00296{left:554.933333pt;}
.x3a_c00296{left:556.400000pt;}
.x10_c00296{left:565.600000pt;}
.x6b_c00296{left:567.066667pt;}
.x54_c00296{left:568.933333pt;}
.x2c_c00296{left:578.400000pt;}
.x48_c00296{left:582.666667pt;}
.x3b_c00296{left:586.133333pt;}
.x64_c00296{left:588.933333pt;}
.x77_c00296{left:591.466667pt;}
.x1d_c00296{left:592.666667pt;}
.x2d_c00296{left:597.600000pt;}
.x55_c00296{left:601.866667pt;}
.x3c_c00296{left:606.266667pt;}
.x81_c00296{left:607.333333pt;}
.x11_c00296{left:616.133333pt;}
.x1e_c00296{left:618.533333pt;}
.x65_c00296{left:620.266667pt;}
.x2e_c00296{left:628.533333pt;}
.x82_c00296{left:634.533333pt;}
.x78_c00296{left:637.866667pt;}
.x56_c00296{left:641.200000pt;}
.x49_c00296{left:644.400000pt;}
.x1f_c00296{left:648.666667pt;}
.x83_c00296{left:650.266667pt;}
.x2f_c00296{left:653.466667pt;}
.x57_c00296{left:659.733333pt;}
.x3d_c00296{left:666.133333pt;}
.x4a_c00296{left:683.466667pt;}
.x12_c00296{left:691.600000pt;}
.x30_c00296{left:698.533333pt;}
.x20_c00296{left:702.400000pt;}
.x4b_c00296{left:707.733333pt;}
.x3e_c00296{left:710.000000pt;}
.x13_c00296{left:713.066667pt;}
.x79_c00296{left:714.933333pt;}
.x84_c00296{left:716.533333pt;}
}





/* 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_c00297 {
    display:none;
  }
  .loading-indicator_c00297.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00297 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_c00297 { 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_c00297" -> "#page-container .classname_c00297")
 */
.pf_c00297 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00297 { /* 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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00297 { /* 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_c00297 { /* 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_c00297 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00297 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00297 {overflow:visible;}
  }
}
.c_c00297 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00297 { /* 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_c00297:after { /* webkit #35443 */
  content: '';
}
.t_c00297:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00297 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 */
}
.__c00297 { /* 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_c00297 { /* info for Javascript */
  display:none;
}
.l_c00297 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00297 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00297 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00297: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_c00297 {
    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_c00297.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00297.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_c00297 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00297{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00297;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.000000;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;}
.m82_c00297{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00297{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m88_c00297{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00297{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m87_c00297{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00297{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m77_c00297{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m21_c00297{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m48_c00297{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m70_c00297{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m61_c00297{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m63_c00297{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00297{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00297{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00297{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00297{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m36_c00297{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m54_c00297{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m74_c00297{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m60_c00297{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m14_c00297{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m68_c00297{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00297{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m62_c00297{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00297{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m71_c00297{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m84_c00297{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m80_c00297{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00297{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00297{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00297{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m86_c00297{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m53_c00297{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00297{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m55_c00297{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00297{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m30_c00297{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m78_c00297{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m51_c00297{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m18_c00297{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00297{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4_c00297{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m72_c00297{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m66_c00297{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00297{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m56_c00297{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m17_c00297{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m37_c00297{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00297{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00297{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m79_c00297{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m2_c00297{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m19_c00297{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00297{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00297{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.md_c00297{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00297{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00297{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m25_c00297{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00297{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00297{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8_c00297{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16_c00297{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m75_c00297{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00297{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m73_c00297{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m20_c00297{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m47_c00297{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m28_c00297{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.ma_c00297{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);}
.m69_c00297{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00297{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00297{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m57_c00297{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00297{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m49_c00297{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m46_c00297{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00297{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m81_c00297{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m5_c00297{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m50_c00297{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m22_c00297{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00297{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m26_c00297{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9_c00297{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00297{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m39_c00297{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00297{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00297{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m38_c00297{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7_c00297{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m34_c00297{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00297{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m10_c00297{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m44_c00297{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00297{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.mb_c00297{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00297{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00297{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m33_c00297{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m11_c00297{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00297{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m52_c00297{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m64_c00297{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m35_c00297{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m23_c00297{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00297{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00297{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m31_c00297{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m42_c00297{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m32_c00297{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00297{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m40_c00297{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00297{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m27_c00297{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6_c00297{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00297{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m45_c00297{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.mf_c00297{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00297{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29_c00297{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc_c00297{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00297{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00297{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00297{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00297{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m1_c00297{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m13_c00297{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m3_c00297{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00297{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m83_c00297{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00297{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m85_c00297{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00297{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m58_c00297{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m59_c00297{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.me_c00297{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00297{vertical-align:0.000000px;}
.ls0_c00297{letter-spacing:0.000000px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{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__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00297{word-spacing:-3.125000px;}
.ws8_c00297{word-spacing:-2.666667px;}
.ws9_c00297{word-spacing:0.000000px;}
.ws0_c00297{word-spacing:1.690187px;}
.ws3_c00297{word-spacing:4.045410px;}
.ws5_c00297{word-spacing:4.537019px;}
.ws2_c00297{word-spacing:6.125000px;}
.ws7_c00297{word-spacing:11.644620px;}
.ws6_c00297{word-spacing:12.764057px;}
.ws1_c00297{word-spacing:49.655623px;}
.fc0_c00297{color:transparent;}
.fs1_c00297{font-size:54.000000px;}
.fs0_c00297{font-size:72.000000px;}
.y0_c00297{bottom:0.000000px;}
.y23_c00297{bottom:159.900000px;}
.y22_c00297{bottom:180.000000px;}
.y21_c00297{bottom:199.800000px;}
.y20_c00297{bottom:219.600000px;}
.y1f_c00297{bottom:239.100000px;}
.y1e_c00297{bottom:259.650000px;}
.y1d_c00297{bottom:279.750000px;}
.y1c_c00297{bottom:299.850000px;}
.y1b_c00297{bottom:319.950000px;}
.y1a_c00297{bottom:339.450000px;}
.y19_c00297{bottom:359.250000px;}
.y18_c00297{bottom:379.050000px;}
.y17_c00297{bottom:398.850000px;}
.y16_c00297{bottom:418.950000px;}
.y15_c00297{bottom:439.050000px;}
.y14_c00297{bottom:458.850000px;}
.y13_c00297{bottom:478.950000px;}
.y12_c00297{bottom:498.750000px;}
.y11_c00297{bottom:518.550000px;}
.y10_c00297{bottom:538.650000px;}
.yf_c00297{bottom:558.750000px;}
.ye_c00297{bottom:578.250000px;}
.yd_c00297{bottom:598.350000px;}
.yc_c00297{bottom:617.850000px;}
.yb_c00297{bottom:637.950000px;}
.ya_c00297{bottom:657.750000px;}
.y9_c00297{bottom:677.550000px;}
.y8_c00297{bottom:697.650000px;}
.y7_c00297{bottom:717.450000px;}
.y6_c00297{bottom:737.400000px;}
.y5_c00297{bottom:757.500000px;}
.y4_c00297{bottom:790.200000px;}
.y3_c00297{bottom:811.050000px;}
.y2_c00297{bottom:843.900000px;}
.y1_c00297{bottom:1055.100000px;}
.h3_c00297{height:54.000000px;}
.h2_c00297{height:72.000000px;}
.h0_c00297{height:1166.759949px;}
.h1_c00297{height:1167.000000px;}
.w1_c00297{width:913.500000px;}
.w0_c00297{width:913.679993px;}
.x0_c00297{left:0.000000px;}
.xf0_c00297{left:106.950000px;}
.x3e_c00297{left:108.300000px;}
.x12_c00297{left:109.500000px;}
.x20_c00297{left:110.700000px;}
.x4_c00297{left:114.900000px;}
.x82_c00297{left:126.450000px;}
.xa8_c00297{left:129.150000px;}
.x94_c00297{left:130.950000px;}
.xd3_c00297{left:135.750000px;}
.x7a_c00297{left:136.950000px;}
.xb3_c00297{left:139.050000px;}
.x21_c00297{left:140.250000px;}
.x4b_c00297{left:143.250000px;}
.xf1_c00297{left:145.050000px;}
.xe3_c00297{left:147.000000px;}
.xa9_c00297{left:149.250000px;}
.x35_c00297{left:150.600000px;}
.x9c_c00297{left:154.800000px;}
.x57_c00297{left:156.450000px;}
.x29_c00297{left:159.450000px;}
.xc5_c00297{left:161.700000px;}
.xbc_c00297{left:165.600000px;}
.x22_c00297{left:171.150000px;}
.x8b_c00297{left:172.500000px;}
.x10a_c00297{left:174.600000px;}
.x13_c00297{left:176.400000px;}
.x65_c00297{left:178.500000px;}
.xfa_c00297{left:180.450000px;}
.x58_c00297{left:183.150000px;}
.xaa_c00297{left:186.000000px;}
.x2a_c00297{left:187.200000px;}
.xdd_c00297{left:189.000000px;}
.x3f_c00297{left:191.100000px;}
.xc6_c00297{left:192.600000px;}
.x9d_c00297{left:194.400000px;}
.x36_c00297{left:197.100000px;}
.xcc_c00297{left:198.300000px;}
.x8c_c00297{left:201.000000px;}
.x5_c00297{left:202.350000px;}
.x23_c00297{left:204.300000px;}
.x95_c00297{left:207.000000px;}
.xbd_c00297{left:210.300000px;}
.x66_c00297{left:211.950000px;}
.xf2_c00297{left:214.950000px;}
.x8d_c00297{left:221.100000px;}
.x2b_c00297{left:223.500000px;}
.x4c_c00297{left:225.750000px;}
.x83_c00297{left:226.950000px;}
.xff_c00297{left:228.300000px;}
.x40_c00297{left:229.650000px;}
.xbe_c00297{left:231.150000px;}
.x9e_c00297{left:232.950000px;}
.x110_c00297{left:235.200000px;}
.x73_c00297{left:236.250000px;}
.xd4_c00297{left:238.350000px;}
.x59_c00297{left:241.050000px;}
.x8e_c00297{left:246.600000px;}
.xcd_c00297{left:250.200000px;}
.x14_c00297{left:253.800000px;}
.x37_c00297{left:255.000000px;}
.x7b_c00297{left:257.550000px;}
.xe4_c00297{left:261.000000px;}
.x67_c00297{left:262.350000px;}
.x84_c00297{left:265.800000px;}
.x41_c00297{left:267.750000px;}
.x15_c00297{left:272.100000px;}
.x103_c00297{left:275.250000px;}
.x6_c00297{left:277.650000px;}
.x5a_c00297{left:278.850000px;}
.x68_c00297{left:281.850000px;}
.x24_c00297{left:285.300000px;}
.x74_c00297{left:286.950000px;}
.xb4_c00297{left:290.250000px;}
.x9f_c00297{left:291.300000px;}
.x85_c00297{left:296.100000px;}
.xab_c00297{left:300.900000px;}
.x2c_c00297{left:303.000000px;}
.x69_c00297{left:305.250000px;}
.x42_c00297{left:312.450000px;}
.x16_c00297{left:313.800000px;}
.x4d_c00297{left:316.500000px;}
.x7c_c00297{left:319.800000px;}
.x25_c00297{left:322.350000px;}
.xb5_c00297{left:323.700000px;}
.xa0_c00297{left:326.550000px;}
.xd5_c00297{left:328.050000px;}
.x75_c00297{left:329.100000px;}
.xce_c00297{left:330.900000px;}
.x100_c00297{left:331.950000px;}
.x104_c00297{left:334.650000px;}
.x2d_c00297{left:337.500000px;}
.x7_c00297{left:338.850000px;}
.x76_c00297{left:346.800000px;}
.x43_c00297{left:348.450000px;}
.x5b_c00297{left:350.400000px;}
.xa1_c00297{left:352.050000px;}
.x6a_c00297{left:354.600000px;}
.x111_c00297{left:355.650000px;}
.x17_c00297{left:357.300000px;}
.x26_c00297{left:364.500000px;}
.x2e_c00297{left:367.050000px;}
.x2_c00297{left:369.000000px;}
.x5c_c00297{left:370.950000px;}
.xd6_c00297{left:372.300000px;}
.x4e_c00297{left:374.850000px;}
.x10b_c00297{left:376.200000px;}
.xf3_c00297{left:380.550000px;}
.xa2_c00297{left:382.650000px;}
.x27_c00297{left:385.350000px;}
.x112_c00297{left:387.000000px;}
.x86_c00297{left:389.250000px;}
.xac_c00297{left:390.450000px;}
.xd7_c00297{left:392.100000px;}
.x18_c00297{left:393.600000px;}
.xb6_c00297{left:395.250000px;}
.x6b_c00297{left:398.550000px;}
.x5d_c00297{left:399.750000px;}
.xcf_c00297{left:404.700000px;}
.xf4_c00297{left:406.050000px;}
.xb7_c00297{left:407.100000px;}
.xde_c00297{left:410.100000px;}
.x96_c00297{left:411.150000px;}
.x44_c00297{left:412.800000px;}
.x28_c00297{left:414.450000px;}
.x105_c00297{left:417.450000px;}
.xa3_c00297{left:418.950000px;}
.xd8_c00297{left:420.150000px;}
.xd0_c00297{left:421.950000px;}
.x2f_c00297{left:424.350000px;}
.x38_c00297{left:426.000000px;}
.x8_c00297{left:427.800000px;}
.x1_c00297{left:429.900000px;}
.x6c_c00297{left:434.250000px;}
.x97_c00297{left:438.450000px;}
.xf5_c00297{left:439.950000px;}
.x4f_c00297{left:441.750000px;}
.x10_c00297{left:443.850000px;}
.xe5_c00297{left:447.300000px;}
.x19_c00297{left:449.400000px;}
.x101_c00297{left:451.200000px;}
.x6d_c00297{left:452.250000px;}
.x45_c00297{left:453.900000px;}
.x3_c00297{left:455.700000px;}
.x5e_c00297{left:457.050000px;}
.x8f_c00297{left:461.100000px;}
.x11_c00297{left:462.900000px;}
.xe6_c00297{left:464.550000px;}
.xc7_c00297{left:469.050000px;}
.x106_c00297{left:474.750000px;}
.x30_c00297{left:476.850000px;}
.xfd_c00297{left:480.600000px;}
.xa4_c00297{left:481.950000px;}
.x39_c00297{left:483.600000px;}
.xe7_c00297{left:484.650000px;}
.x7d_c00297{left:486.600000px;}
.xf6_c00297{left:489.300000px;}
.x9_c00297{left:490.500000px;}
.xb8_c00297{left:495.300000px;}
.xbf_c00297{left:496.950000px;}
.x50_c00297{left:499.350000px;}
.x77_c00297{left:500.550000px;}
.x6e_c00297{left:501.600000px;}
.x5f_c00297{left:503.550000px;}
.x1a_c00297{left:504.900000px;}
.xfb_c00297{left:505.950000px;}
.xad_c00297{left:507.750000px;}
.xa_c00297{left:509.250000px;}
.xec_c00297{left:510.300000px;}
.x113_c00297{left:513.300000px;}
.x46_c00297{left:515.400000px;}
.x60_c00297{left:522.300000px;}
.xc8_c00297{left:524.100000px;}
.x7e_c00297{left:526.200000px;}
.xb_c00297{left:528.750000px;}
.xfe_c00297{left:529.950000px;}
.xdf_c00297{left:532.500000px;}
.x3a_c00297{left:536.400000px;}
.x1b_c00297{left:539.100000px;}
.xf7_c00297{left:540.750000px;}
.xe8_c00297{left:542.250000px;}
.x47_c00297{left:545.700000px;}
.xd9_c00297{left:547.950000px;}
.x51_c00297{left:550.800000px;}
.x87_c00297{left:552.600000px;}
.xae_c00297{left:554.100000px;}
.x90_c00297{left:555.750000px;}
.xb9_c00297{left:558.600000px;}
.xe9_c00297{left:559.950000px;}
.x10c_c00297{left:562.800000px;}
.x48_c00297{left:565.200000px;}
.xc9_c00297{left:567.600000px;}
.x107_c00297{left:569.400000px;}
.x52_c00297{left:570.600000px;}
.xfc_c00297{left:573.900000px;}
.x31_c00297{left:576.150000px;}
.xed_c00297{left:578.700000px;}
.x61_c00297{left:583.200000px;}
.xa5_c00297{left:585.750000px;}
.xaf_c00297{left:587.250000px;}
.xca_c00297{left:588.450000px;}
.x6f_c00297{left:590.550000px;}
.xc0_c00297{left:592.050000px;}
.x98_c00297{left:594.300000px;}
.xee_c00297{left:595.950000px;}
.xea_c00297{left:597.000000px;}
.x3b_c00297{left:600.450000px;}
.xf8_c00297{left:603.000000px;}
.x49_c00297{left:604.050000px;}
.x99_c00297{left:606.600000px;}
.x62_c00297{left:609.900000px;}
.x10d_c00297{left:612.150000px;}
.x53_c00297{left:614.550000px;}
.xc_c00297{left:616.950000px;}
.xda_c00297{left:621.000000px;}
.x1c_c00297{left:622.950000px;}
.xb0_c00297{left:624.000000px;}
.xc1_c00297{left:625.950000px;}
.x78_c00297{left:629.100000px;}
.x63_c00297{left:631.200000px;}
.xe0_c00297{left:633.900000px;}
.x88_c00297{left:635.100000px;}
.x54_c00297{left:636.150000px;}
.xd_c00297{left:638.550000px;}
.x7f_c00297{left:640.050000px;}
.x114_c00297{left:641.400000px;}
.x1d_c00297{left:642.450000px;}
.xba_c00297{left:644.700000px;}
.x70_c00297{left:646.050000px;}
.x9a_c00297{left:649.050000px;}
.xb1_c00297{left:652.800000px;}
.xc2_c00297{left:654.750000px;}
.x79_c00297{left:657.600000px;}
.x32_c00297{left:659.700000px;}
.x55_c00297{left:661.050000px;}
.xdb_c00297{left:663.450000px;}
.x89_c00297{left:664.650000px;}
.x71_c00297{left:669.450000px;}
.x80_c00297{left:670.650000px;}
.x1e_c00297{left:672.300000px;}
.xcb_c00297{left:674.550000px;}
.x91_c00297{left:677.100000px;}
.x33_c00297{left:679.500000px;}
.xe1_c00297{left:688.650000px;}
.xc3_c00297{left:692.850000px;}
.x10e_c00297{left:694.200000px;}
.xa6_c00297{left:696.600000px;}
.xeb_c00297{left:698.850000px;}
.x108_c00297{left:702.600000px;}
.xef_c00297{left:705.000000px;}
.xe_c00297{left:708.000000px;}
.x92_c00297{left:709.500000px;}
.xbb_c00297{left:711.000000px;}
.x3c_c00297{left:713.400000px;}
.x81_c00297{left:715.350000px;}
.xe2_c00297{left:717.150000px;}
.xf9_c00297{left:719.250000px;}
.xd1_c00297{left:720.750000px;}
.x8a_c00297{left:722.550000px;}
.xa7_c00297{left:723.600000px;}
.x64_c00297{left:725.100000px;}
.xb2_c00297{left:727.050000px;}
.x102_c00297{left:730.350000px;}
.x1f_c00297{left:732.000000px;}
.x34_c00297{left:733.500000px;}
.x4a_c00297{left:735.450000px;}
.x9b_c00297{left:737.250000px;}
.xdc_c00297{left:741.900000px;}
.x10f_c00297{left:743.550000px;}
.x56_c00297{left:745.050000px;}
.x93_c00297{left:749.100000px;}
.x109_c00297{left:750.900000px;}
.xf_c00297{left:755.550000px;}
.x3d_c00297{left:756.600000px;}
.xc4_c00297{left:761.700000px;}
.xd2_c00297{left:763.950000px;}
.x72_c00297{left:766.200000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws4_c00297{word-spacing:-2.777778pt;}
.ws8_c00297{word-spacing:-2.370370pt;}
.ws9_c00297{word-spacing:0.000000pt;}
.ws0_c00297{word-spacing:1.502389pt;}
.ws3_c00297{word-spacing:3.595920pt;}
.ws5_c00297{word-spacing:4.032906pt;}
.ws2_c00297{word-spacing:5.444444pt;}
.ws7_c00297{word-spacing:10.350773pt;}
.ws6_c00297{word-spacing:11.345829pt;}
.ws1_c00297{word-spacing:44.138332pt;}
.fs1_c00297{font-size:48.000000pt;}
.fs0_c00297{font-size:64.000000pt;}
.y0_c00297{bottom:0.000000pt;}
.y23_c00297{bottom:142.133333pt;}
.y22_c00297{bottom:160.000000pt;}
.y21_c00297{bottom:177.600000pt;}
.y20_c00297{bottom:195.200000pt;}
.y1f_c00297{bottom:212.533333pt;}
.y1e_c00297{bottom:230.800000pt;}
.y1d_c00297{bottom:248.666667pt;}
.y1c_c00297{bottom:266.533333pt;}
.y1b_c00297{bottom:284.400000pt;}
.y1a_c00297{bottom:301.733333pt;}
.y19_c00297{bottom:319.333333pt;}
.y18_c00297{bottom:336.933333pt;}
.y17_c00297{bottom:354.533333pt;}
.y16_c00297{bottom:372.400000pt;}
.y15_c00297{bottom:390.266667pt;}
.y14_c00297{bottom:407.866667pt;}
.y13_c00297{bottom:425.733333pt;}
.y12_c00297{bottom:443.333333pt;}
.y11_c00297{bottom:460.933333pt;}
.y10_c00297{bottom:478.800000pt;}
.yf_c00297{bottom:496.666667pt;}
.ye_c00297{bottom:514.000000pt;}
.yd_c00297{bottom:531.866667pt;}
.yc_c00297{bottom:549.200000pt;}
.yb_c00297{bottom:567.066667pt;}
.ya_c00297{bottom:584.666667pt;}
.y9_c00297{bottom:602.266667pt;}
.y8_c00297{bottom:620.133333pt;}
.y7_c00297{bottom:637.733333pt;}
.y6_c00297{bottom:655.466667pt;}
.y5_c00297{bottom:673.333333pt;}
.y4_c00297{bottom:702.400000pt;}
.y3_c00297{bottom:720.933333pt;}
.y2_c00297{bottom:750.133333pt;}
.y1_c00297{bottom:937.866667pt;}
.h3_c00297{height:48.000000pt;}
.h2_c00297{height:64.000000pt;}
.h0_c00297{height:1037.119955pt;}
.h1_c00297{height:1037.333333pt;}
.w1_c00297{width:812.000000pt;}
.w0_c00297{width:812.159993pt;}
.x0_c00297{left:0.000000pt;}
.xf0_c00297{left:95.066667pt;}
.x3e_c00297{left:96.266667pt;}
.x12_c00297{left:97.333333pt;}
.x20_c00297{left:98.400000pt;}
.x4_c00297{left:102.133333pt;}
.x82_c00297{left:112.400000pt;}
.xa8_c00297{left:114.800000pt;}
.x94_c00297{left:116.400000pt;}
.xd3_c00297{left:120.666667pt;}
.x7a_c00297{left:121.733333pt;}
.xb3_c00297{left:123.600000pt;}
.x21_c00297{left:124.666667pt;}
.x4b_c00297{left:127.333333pt;}
.xf1_c00297{left:128.933333pt;}
.xe3_c00297{left:130.666667pt;}
.xa9_c00297{left:132.666667pt;}
.x35_c00297{left:133.866667pt;}
.x9c_c00297{left:137.600000pt;}
.x57_c00297{left:139.066667pt;}
.x29_c00297{left:141.733333pt;}
.xc5_c00297{left:143.733333pt;}
.xbc_c00297{left:147.200000pt;}
.x22_c00297{left:152.133333pt;}
.x8b_c00297{left:153.333333pt;}
.x10a_c00297{left:155.200000pt;}
.x13_c00297{left:156.800000pt;}
.x65_c00297{left:158.666667pt;}
.xfa_c00297{left:160.400000pt;}
.x58_c00297{left:162.800000pt;}
.xaa_c00297{left:165.333333pt;}
.x2a_c00297{left:166.400000pt;}
.xdd_c00297{left:168.000000pt;}
.x3f_c00297{left:169.866667pt;}
.xc6_c00297{left:171.200000pt;}
.x9d_c00297{left:172.800000pt;}
.x36_c00297{left:175.200000pt;}
.xcc_c00297{left:176.266667pt;}
.x8c_c00297{left:178.666667pt;}
.x5_c00297{left:179.866667pt;}
.x23_c00297{left:181.600000pt;}
.x95_c00297{left:184.000000pt;}
.xbd_c00297{left:186.933333pt;}
.x66_c00297{left:188.400000pt;}
.xf2_c00297{left:191.066667pt;}
.x8d_c00297{left:196.533333pt;}
.x2b_c00297{left:198.666667pt;}
.x4c_c00297{left:200.666667pt;}
.x83_c00297{left:201.733333pt;}
.xff_c00297{left:202.933333pt;}
.x40_c00297{left:204.133333pt;}
.xbe_c00297{left:205.466667pt;}
.x9e_c00297{left:207.066667pt;}
.x110_c00297{left:209.066667pt;}
.x73_c00297{left:210.000000pt;}
.xd4_c00297{left:211.866667pt;}
.x59_c00297{left:214.266667pt;}
.x8e_c00297{left:219.200000pt;}
.xcd_c00297{left:222.400000pt;}
.x14_c00297{left:225.600000pt;}
.x37_c00297{left:226.666667pt;}
.x7b_c00297{left:228.933333pt;}
.xe4_c00297{left:232.000000pt;}
.x67_c00297{left:233.200000pt;}
.x84_c00297{left:236.266667pt;}
.x41_c00297{left:238.000000pt;}
.x15_c00297{left:241.866667pt;}
.x103_c00297{left:244.666667pt;}
.x6_c00297{left:246.800000pt;}
.x5a_c00297{left:247.866667pt;}
.x68_c00297{left:250.533333pt;}
.x24_c00297{left:253.600000pt;}
.x74_c00297{left:255.066667pt;}
.xb4_c00297{left:258.000000pt;}
.x9f_c00297{left:258.933333pt;}
.x85_c00297{left:263.200000pt;}
.xab_c00297{left:267.466667pt;}
.x2c_c00297{left:269.333333pt;}
.x69_c00297{left:271.333333pt;}
.x42_c00297{left:277.733333pt;}
.x16_c00297{left:278.933333pt;}
.x4d_c00297{left:281.333333pt;}
.x7c_c00297{left:284.266667pt;}
.x25_c00297{left:286.533333pt;}
.xb5_c00297{left:287.733333pt;}
.xa0_c00297{left:290.266667pt;}
.xd5_c00297{left:291.600000pt;}
.x75_c00297{left:292.533333pt;}
.xce_c00297{left:294.133333pt;}
.x100_c00297{left:295.066667pt;}
.x104_c00297{left:297.466667pt;}
.x2d_c00297{left:300.000000pt;}
.x7_c00297{left:301.200000pt;}
.x76_c00297{left:308.266667pt;}
.x43_c00297{left:309.733333pt;}
.x5b_c00297{left:311.466667pt;}
.xa1_c00297{left:312.933333pt;}
.x6a_c00297{left:315.200000pt;}
.x111_c00297{left:316.133333pt;}
.x17_c00297{left:317.600000pt;}
.x26_c00297{left:324.000000pt;}
.x2e_c00297{left:326.266667pt;}
.x2_c00297{left:328.000000pt;}
.x5c_c00297{left:329.733333pt;}
.xd6_c00297{left:330.933333pt;}
.x4e_c00297{left:333.200000pt;}
.x10b_c00297{left:334.400000pt;}
.xf3_c00297{left:338.266667pt;}
.xa2_c00297{left:340.133333pt;}
.x27_c00297{left:342.533333pt;}
.x112_c00297{left:344.000000pt;}
.x86_c00297{left:346.000000pt;}
.xac_c00297{left:347.066667pt;}
.xd7_c00297{left:348.533333pt;}
.x18_c00297{left:349.866667pt;}
.xb6_c00297{left:351.333333pt;}
.x6b_c00297{left:354.266667pt;}
.x5d_c00297{left:355.333333pt;}
.xcf_c00297{left:359.733333pt;}
.xf4_c00297{left:360.933333pt;}
.xb7_c00297{left:361.866667pt;}
.xde_c00297{left:364.533333pt;}
.x96_c00297{left:365.466667pt;}
.x44_c00297{left:366.933333pt;}
.x28_c00297{left:368.400000pt;}
.x105_c00297{left:371.066667pt;}
.xa3_c00297{left:372.400000pt;}
.xd8_c00297{left:373.466667pt;}
.xd0_c00297{left:375.066667pt;}
.x2f_c00297{left:377.200000pt;}
.x38_c00297{left:378.666667pt;}
.x8_c00297{left:380.266667pt;}
.x1_c00297{left:382.133333pt;}
.x6c_c00297{left:386.000000pt;}
.x97_c00297{left:389.733333pt;}
.xf5_c00297{left:391.066667pt;}
.x4f_c00297{left:392.666667pt;}
.x10_c00297{left:394.533333pt;}
.xe5_c00297{left:397.600000pt;}
.x19_c00297{left:399.466667pt;}
.x101_c00297{left:401.066667pt;}
.x6d_c00297{left:402.000000pt;}
.x45_c00297{left:403.466667pt;}
.x3_c00297{left:405.066667pt;}
.x5e_c00297{left:406.266667pt;}
.x8f_c00297{left:409.866667pt;}
.x11_c00297{left:411.466667pt;}
.xe6_c00297{left:412.933333pt;}
.xc7_c00297{left:416.933333pt;}
.x106_c00297{left:422.000000pt;}
.x30_c00297{left:423.866667pt;}
.xfd_c00297{left:427.200000pt;}
.xa4_c00297{left:428.400000pt;}
.x39_c00297{left:429.866667pt;}
.xe7_c00297{left:430.800000pt;}
.x7d_c00297{left:432.533333pt;}
.xf6_c00297{left:434.933333pt;}
.x9_c00297{left:436.000000pt;}
.xb8_c00297{left:440.266667pt;}
.xbf_c00297{left:441.733333pt;}
.x50_c00297{left:443.866667pt;}
.x77_c00297{left:444.933333pt;}
.x6e_c00297{left:445.866667pt;}
.x5f_c00297{left:447.600000pt;}
.x1a_c00297{left:448.800000pt;}
.xfb_c00297{left:449.733333pt;}
.xad_c00297{left:451.333333pt;}
.xa_c00297{left:452.666667pt;}
.xec_c00297{left:453.600000pt;}
.x113_c00297{left:456.266667pt;}
.x46_c00297{left:458.133333pt;}
.x60_c00297{left:464.266667pt;}
.xc8_c00297{left:465.866667pt;}
.x7e_c00297{left:467.733333pt;}
.xb_c00297{left:470.000000pt;}
.xfe_c00297{left:471.066667pt;}
.xdf_c00297{left:473.333333pt;}
.x3a_c00297{left:476.800000pt;}
.x1b_c00297{left:479.200000pt;}
.xf7_c00297{left:480.666667pt;}
.xe8_c00297{left:482.000000pt;}
.x47_c00297{left:485.066667pt;}
.xd9_c00297{left:487.066667pt;}
.x51_c00297{left:489.600000pt;}
.x87_c00297{left:491.200000pt;}
.xae_c00297{left:492.533333pt;}
.x90_c00297{left:494.000000pt;}
.xb9_c00297{left:496.533333pt;}
.xe9_c00297{left:497.733333pt;}
.x10c_c00297{left:500.266667pt;}
.x48_c00297{left:502.400000pt;}
.xc9_c00297{left:504.533333pt;}
.x107_c00297{left:506.133333pt;}
.x52_c00297{left:507.200000pt;}
.xfc_c00297{left:510.133333pt;}
.x31_c00297{left:512.133333pt;}
.xed_c00297{left:514.400000pt;}
.x61_c00297{left:518.400000pt;}
.xa5_c00297{left:520.666667pt;}
.xaf_c00297{left:522.000000pt;}
.xca_c00297{left:523.066667pt;}
.x6f_c00297{left:524.933333pt;}
.xc0_c00297{left:526.266667pt;}
.x98_c00297{left:528.266667pt;}
.xee_c00297{left:529.733333pt;}
.xea_c00297{left:530.666667pt;}
.x3b_c00297{left:533.733333pt;}
.xf8_c00297{left:536.000000pt;}
.x49_c00297{left:536.933333pt;}
.x99_c00297{left:539.200000pt;}
.x62_c00297{left:542.133333pt;}
.x10d_c00297{left:544.133333pt;}
.x53_c00297{left:546.266667pt;}
.xc_c00297{left:548.400000pt;}
.xda_c00297{left:552.000000pt;}
.x1c_c00297{left:553.733333pt;}
.xb0_c00297{left:554.666667pt;}
.xc1_c00297{left:556.400000pt;}
.x78_c00297{left:559.200000pt;}
.x63_c00297{left:561.066667pt;}
.xe0_c00297{left:563.466667pt;}
.x88_c00297{left:564.533333pt;}
.x54_c00297{left:565.466667pt;}
.xd_c00297{left:567.600000pt;}
.x7f_c00297{left:568.933333pt;}
.x114_c00297{left:570.133333pt;}
.x1d_c00297{left:571.066667pt;}
.xba_c00297{left:573.066667pt;}
.x70_c00297{left:574.266667pt;}
.x9a_c00297{left:576.933333pt;}
.xb1_c00297{left:580.266667pt;}
.xc2_c00297{left:582.000000pt;}
.x79_c00297{left:584.533333pt;}
.x32_c00297{left:586.400000pt;}
.x55_c00297{left:587.600000pt;}
.xdb_c00297{left:589.733333pt;}
.x89_c00297{left:590.800000pt;}
.x71_c00297{left:595.066667pt;}
.x80_c00297{left:596.133333pt;}
.x1e_c00297{left:597.600000pt;}
.xcb_c00297{left:599.600000pt;}
.x91_c00297{left:601.866667pt;}
.x33_c00297{left:604.000000pt;}
.xe1_c00297{left:612.133333pt;}
.xc3_c00297{left:615.866667pt;}
.x10e_c00297{left:617.066667pt;}
.xa6_c00297{left:619.200000pt;}
.xeb_c00297{left:621.200000pt;}
.x108_c00297{left:624.533333pt;}
.xef_c00297{left:626.666667pt;}
.xe_c00297{left:629.333333pt;}
.x92_c00297{left:630.666667pt;}
.xbb_c00297{left:632.000000pt;}
.x3c_c00297{left:634.133333pt;}
.x81_c00297{left:635.866667pt;}
.xe2_c00297{left:637.466667pt;}
.xf9_c00297{left:639.333333pt;}
.xd1_c00297{left:640.666667pt;}
.x8a_c00297{left:642.266667pt;}
.xa7_c00297{left:643.200000pt;}
.x64_c00297{left:644.533333pt;}
.xb2_c00297{left:646.266667pt;}
.x102_c00297{left:649.200000pt;}
.x1f_c00297{left:650.666667pt;}
.x34_c00297{left:652.000000pt;}
.x4a_c00297{left:653.733333pt;}
.x9b_c00297{left:655.333333pt;}
.xdc_c00297{left:659.466667pt;}
.x10f_c00297{left:660.933333pt;}
.x56_c00297{left:662.266667pt;}
.x93_c00297{left:665.866667pt;}
.x109_c00297{left:667.466667pt;}
.xf_c00297{left:671.600000pt;}
.x3d_c00297{left:672.533333pt;}
.xc4_c00297{left:677.066667pt;}
.xd2_c00297{left:679.066667pt;}
.x72_c00297{left:681.066667pt;}
}





/* 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_c00298 {
    display:none;
  }
  .loading-indicator_c00298.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00298 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_c00298 { 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_c00298" -> "#page-container .classname_c00298")
 */
.pf_c00298 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00298 { /* 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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00298 { /* 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_c00298 { /* 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_c00298 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00298 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00298 {overflow:visible;}
  }
}
.c_c00298 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00298 { /* 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_c00298:after { /* webkit #35443 */
  content: '';
}
.t_c00298:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00298 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 */
}
.__c00298 { /* 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_c00298 { /* info for Javascript */
  display:none;
}
.l_c00298 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00298 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00298 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00298: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_c00298 {
    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_c00298.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00298.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_c00298 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00298{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00298;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.000000;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;}
.mc_c00298{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00298{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00298{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mab_c00298{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00298{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00298{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00298{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m14_c00298{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00298{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00298{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00298{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00298{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00298{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mac_c00298{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maf_c00298{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00298{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m50_c00298{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00298{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00298{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00298{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.md_c00298{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00298{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00298{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m51_c00298{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m39_c00298{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00298{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00298{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00298{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m82_c00298{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m72_c00298{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m85_c00298{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00298{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00298{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m21_c00298{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00298{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00298{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m96_c00298{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00298{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m38_c00298{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m17_c00298{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m90_c00298{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mad_c00298{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00298{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m11_c00298{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00298{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m83_c00298{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00298{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00298{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m41_c00298{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m34_c00298{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mae_c00298{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00298{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00298{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m73_c00298{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00298{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m13_c00298{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00298{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m43_c00298{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m89_c00298{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00298{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m92_c00298{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00298{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00298{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m31_c00298{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m77_c00298{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mf_c00298{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m42_c00298{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mba_c00298{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m19_c00298{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m79_c00298{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m48_c00298{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00298{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m46_c00298{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00298{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m23_c00298{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m67_c00298{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m86_c00298{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00298{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m91_c00298{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb_c00298{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m84_c00298{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00298{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m12_c00298{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m98_c00298{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m28_c00298{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00298{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m18_c00298{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m65_c00298{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00298{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m87_c00298{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.me_c00298{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m88_c00298{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m69_c00298{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m78_c00298{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00298{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00298{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00298{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m71_c00298{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m59_c00298{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9_c00298{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00298{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00298{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00298{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);}
.m74_c00298{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m68_c00298{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00298{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m30_c00298{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m24_c00298{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00298{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00298{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00298{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m61_c00298{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00298{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m45_c00298{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m63_c00298{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m29_c00298{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m52_c00298{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m62_c00298{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00298{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m94_c00298{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7_c00298{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00298{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8_c00298{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00298{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00298{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m76_c00298{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00298{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00298{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m99_c00298{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m25_c00298{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00298{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00298{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m32_c00298{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m70_c00298{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m60_c00298{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m15_c00298{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00298{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m97_c00298{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m80_c00298{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m44_c00298{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m26_c00298{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00298{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m20_c00298{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m47_c00298{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m66_c00298{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m64_c00298{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m35_c00298{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m93_c00298{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00298{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m6_c00298{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m49_c00298{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00298{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m57_c00298{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m33_c00298{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00298{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00298{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00298{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c00298{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00298{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00298{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m37_c00298{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00298{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00298{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00298{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m0_c00298{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00298{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00298{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00298{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m58_c00298{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00298{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00298{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00298{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m55_c00298{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c00298{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m54_c00298{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00298{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m81_c00298{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m36_c00298{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m40_c00298{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00298{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m22_c00298{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.maa_c00298{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00298{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{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__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00298{word-spacing:-7.250000px;}
.ws7_c00298{word-spacing:-3.750000px;}
.ws2_c00298{word-spacing:-3.532258px;}
.ws8_c00298{word-spacing:0.000000px;}
.ws3_c00298{word-spacing:2.891738px;}
.ws5_c00298{word-spacing:4.250000px;}
.ws1_c00298{word-spacing:6.000000px;}
.ws4_c00298{word-spacing:6.125000px;}
.ws0_c00298{word-spacing:14.159868px;}
.fc0_c00298{color:transparent;}
.fs0_c00298{font-size:54.000000px;}
.y0_c00298{bottom:0.000000px;}
.y2d_c00298{bottom:160.200000px;}
.y2c_c00298{bottom:175.650000px;}
.y2b_c00298{bottom:191.550000px;}
.y2a_c00298{bottom:207.000000px;}
.y29_c00298{bottom:222.900000px;}
.y28_c00298{bottom:258.900000px;}
.y27_c00298{bottom:278.700000px;}
.y26_c00298{bottom:298.500000px;}
.y25_c00298{bottom:318.600000px;}
.y24_c00298{bottom:338.400000px;}
.y23_c00298{bottom:358.800000px;}
.y22_c00298{bottom:378.600000px;}
.y21_c00298{bottom:398.700000px;}
.y20_c00298{bottom:418.800000px;}
.y1f_c00298{bottom:438.900000px;}
.y1e_c00298{bottom:458.700000px;}
.y1d_c00298{bottom:478.800000px;}
.y1c_c00298{bottom:498.600000px;}
.y1b_c00298{bottom:518.400000px;}
.y1a_c00298{bottom:538.500000px;}
.y19_c00298{bottom:558.300000px;}
.y18_c00298{bottom:578.100000px;}
.y17_c00298{bottom:598.050000px;}
.y16_c00298{bottom:618.150000px;}
.y15_c00298{bottom:637.950000px;}
.y14_c00298{bottom:657.750000px;}
.y13_c00298{bottom:677.550000px;}
.y12_c00298{bottom:698.100000px;}
.y11_c00298{bottom:717.900000px;}
.y10_c00298{bottom:737.700000px;}
.yf_c00298{bottom:757.800000px;}
.ye_c00298{bottom:777.600000px;}
.yd_c00298{bottom:797.700000px;}
.yc_c00298{bottom:817.650000px;}
.yb_c00298{bottom:837.450000px;}
.ya_c00298{bottom:857.550000px;}
.y9_c00298{bottom:877.350000px;}
.y8_c00298{bottom:897.450000px;}
.y7_c00298{bottom:917.550000px;}
.y6_c00298{bottom:937.350000px;}
.y5_c00298{bottom:957.900000px;}
.y4_c00298{bottom:977.700000px;}
.y3_c00298{bottom:996.900000px;}
.y2_c00298{bottom:1017.750000px;}
.y1_c00298{bottom:1055.100000px;}
.h2_c00298{height:54.000000px;}
.h0_c00298{height:1166.759949px;}
.h1_c00298{height:1167.000000px;}
.w1_c00298{width:913.500000px;}
.w0_c00298{width:913.679993px;}
.x0_c00298{left:0.000000px;}
.x3_c00298{left:138.600000px;}
.xe0_c00298{left:139.800000px;}
.x1_c00298{left:141.150000px;}
.x13b_c00298{left:142.200000px;}
.x85_c00298{left:154.200000px;}
.x13c_c00298{left:157.350000px;}
.x54_c00298{left:159.300000px;}
.xb8_c00298{left:164.550000px;}
.xa4_c00298{left:165.900000px;}
.x90_c00298{left:168.000000px;}
.xbe_c00298{left:169.200000px;}
.x18_c00298{left:170.250000px;}
.x4a_c00298{left:171.750000px;}
.x11f_c00298{left:172.800000px;}
.x25_c00298{left:175.200000px;}
.xfd_c00298{left:177.000000px;}
.x86_c00298{left:179.400000px;}
.xd4_c00298{left:180.600000px;}
.x12d_c00298{left:182.850000px;}
.xb1_c00298{left:186.750000px;}
.x91_c00298{left:189.900000px;}
.x4b_c00298{left:191.550000px;}
.x137_c00298{left:193.350000px;}
.x19_c00298{left:194.400000px;}
.x4_c00298{left:195.900000px;}
.x41_c00298{left:198.450000px;}
.x72_c00298{left:200.700000px;}
.x7d_c00298{left:202.650000px;}
.xf2_c00298{left:205.050000px;}
.x113_c00298{left:206.400000px;}
.x33_c00298{left:207.600000px;}
.x60_c00298{left:209.250000px;}
.x55_c00298{left:211.500000px;}
.x1a_c00298{left:213.450000px;}
.x119_c00298{left:217.350000px;}
.x26_c00298{left:218.400000px;}
.x13_c00298{left:220.050000px;}
.x9c_c00298{left:221.850000px;}
.xa5_c00298{left:224.250000px;}
.x12e_c00298{left:225.300000px;}
.x34_c00298{left:226.650000px;}
.x61_c00298{left:229.050000px;}
.x73_c00298{left:234.900000px;}
.x126_c00298{left:236.550000px;}
.xe1_c00298{left:238.800000px;}
.x5_c00298{left:240.150000px;}
.xec_c00298{left:241.950000px;}
.xf7_c00298{left:243.300000px;}
.x1b_c00298{left:245.850000px;}
.x27_c00298{left:246.900000px;}
.xfe_c00298{left:249.300000px;}
.x130_c00298{left:251.550000px;}
.x87_c00298{left:253.650000px;}
.x12a_c00298{left:255.150000px;}
.x74_c00298{left:256.800000px;}
.xa6_c00298{left:258.150000px;}
.xd5_c00298{left:259.200000px;}
.x6_c00298{left:261.000000px;}
.x10c_c00298{left:262.050000px;}
.x9d_c00298{left:264.300000px;}
.x7e_c00298{left:267.150000px;}
.x56_c00298{left:269.100000px;}
.x14_c00298{left:270.750000px;}
.xc6_c00298{left:271.950000px;}
.xd9_c00298{left:273.000000px;}
.x11a_c00298{left:274.950000px;}
.x106_c00298{left:276.000000px;}
.xf8_c00298{left:277.500000px;}
.x69_c00298{left:278.850000px;}
.x28_c00298{left:280.800000px;}
.x92_c00298{left:282.750000px;}
.xca_c00298{left:285.300000px;}
.x7f_c00298{left:286.950000px;}
.x15_c00298{left:288.750000px;}
.x4c_c00298{left:291.900000px;}
.x13d_c00298{left:293.850000px;}
.x127_c00298{left:295.650000px;}
.x75_c00298{left:297.900000px;}
.x62_c00298{left:299.550000px;}
.x11b_c00298{left:302.250000px;}
.x57_c00298{left:304.350000px;}
.xb9_c00298{left:306.150000px;}
.xb2_c00298{left:307.350000px;}
.xa7_c00298{left:308.550000px;}
.x1c_c00298{left:309.900000px;}
.xe7_c00298{left:311.100000px;}
.x35_c00298{left:312.450000px;}
.x7_c00298{left:313.950000px;}
.x128_c00298{left:316.950000px;}
.xed_c00298{left:320.400000px;}
.x88_c00298{left:323.100000px;}
.x80_c00298{left:324.750000px;}
.x16_c00298{left:326.550000px;}
.x120_c00298{left:329.100000px;}
.x58_c00298{left:331.050000px;}
.x93_c00298{left:332.100000px;}
.x42_c00298{left:333.450000px;}
.xbf_c00298{left:336.150000px;}
.xff_c00298{left:337.200000px;}
.xa8_c00298{left:339.450000px;}
.x94_c00298{left:343.650000px;}
.x8_c00298{left:345.600000px;}
.x10d_c00298{left:346.950000px;}
.x29_c00298{left:348.900000px;}
.xba_c00298{left:350.850000px;}
.xf9_c00298{left:352.800000px;}
.xa9_c00298{left:356.700000px;}
.x63_c00298{left:357.900000px;}
.xda_c00298{left:360.750000px;}
.x1d_c00298{left:361.800000px;}
.x4d_c00298{left:366.450000px;}
.x107_c00298{left:368.550000px;}
.x100_c00298{left:369.600000px;}
.xd6_c00298{left:370.800000px;}
.x95_c00298{left:374.550000px;}
.x76_c00298{left:376.350000px;}
.x2a_c00298{left:378.450000px;}
.x118_c00298{left:379.800000px;}
.xaa_c00298{left:381.900000px;}
.xcb_c00298{left:382.950000px;}
.xb3_c00298{left:386.550000px;}
.xd7_c00298{left:388.800000px;}
.x12b_c00298{left:390.150000px;}
.xee_c00298{left:391.350000px;}
.xcc_c00298{left:394.050000px;}
.x59_c00298{left:395.850000px;}
.x89_c00298{left:399.000000px;}
.x36_c00298{left:401.250000px;}
.x4e_c00298{left:402.750000px;}
.x81_c00298{left:403.950000px;}
.xe2_c00298{left:405.450000px;}
.x114_c00298{left:408.600000px;}
.x9_c00298{left:410.700000px;}
.x5a_c00298{left:412.800000px;}
.x121_c00298{left:414.000000px;}
.x4f_c00298{left:417.450000px;}
.xb4_c00298{left:418.950000px;}
.x11c_c00298{left:420.600000px;}
.x17_c00298{left:422.250000px;}
.x6a_c00298{left:424.950000px;}
.x64_c00298{left:426.600000px;}
.x43_c00298{left:428.850000px;}
.x8a_c00298{left:430.650000px;}
.xf3_c00298{left:433.200000px;}
.x2_c00298{left:436.650000px;}
.x2b_c00298{left:440.400000px;}
.xa_c00298{left:442.050000px;}
.x138_c00298{left:443.400000px;}
.x10e_c00298{left:447.000000px;}
.x50_c00298{left:448.350000px;}
.x37_c00298{left:451.350000px;}
.xe8_c00298{left:453.600000px;}
.x9e_c00298{left:457.650000px;}
.xdb_c00298{left:460.050000px;}
.x65_c00298{left:463.350000px;}
.xcd_c00298{left:464.550000px;}
.x2c_c00298{left:469.200000px;}
.x11d_c00298{left:470.700000px;}
.xab_c00298{left:471.900000px;}
.x38_c00298{left:473.250000px;}
.x115_c00298{left:474.450000px;}
.xef_c00298{left:475.950000px;}
.x5b_c00298{left:478.350000px;}
.xc0_c00298{left:481.200000px;}
.x77_c00298{left:483.300000px;}
.x96_c00298{left:484.800000px;}
.x101_c00298{left:485.850000px;}
.xf4_c00298{left:487.800000px;}
.xce_c00298{left:489.750000px;}
.xb5_c00298{left:492.000000px;}
.x5c_c00298{left:493.050000px;}
.x44_c00298{left:495.750000px;}
.xb_c00298{left:500.400000px;}
.x66_c00298{left:501.450000px;}
.x11e_c00298{left:502.800000px;}
.x1e_c00298{left:504.300000px;}
.xdc_c00298{left:505.350000px;}
.xe3_c00298{left:507.300000px;}
.x131_c00298{left:510.750000px;}
.xc1_c00298{left:512.850000px;}
.x6b_c00298{left:515.550000px;}
.x39_c00298{left:519.300000px;}
.xc_c00298{left:521.700000px;}
.xcf_c00298{left:524.250000px;}
.xbb_c00298{left:526.950000px;}
.xc2_c00298{left:528.000000px;}
.x78_c00298{left:531.150000px;}
.x102_c00298{left:534.450000px;}
.x9f_c00298{left:538.650000px;}
.x82_c00298{left:540.750000px;}
.xd0_c00298{left:541.950000px;}
.x3a_c00298{left:544.800000px;}
.x122_c00298{left:546.150000px;}
.x45_c00298{left:547.200000px;}
.x67_c00298{left:549.300000px;}
.xd_c00298{left:550.500000px;}
.x6c_c00298{left:551.850000px;}
.x5d_c00298{left:555.750000px;}
.xdd_c00298{left:557.100000px;}
.x97_c00298{left:558.900000px;}
.xac_c00298{left:560.400000px;}
.x139_c00298{left:561.450000px;}
.xfa_c00298{left:562.650000px;}
.x123_c00298{left:563.850000px;}
.x2d_c00298{left:566.100000px;}
.x116_c00298{left:569.100000px;}
.x1f_c00298{left:570.150000px;}
.x10f_c00298{left:572.250000px;}
.x8b_c00298{left:575.250000px;}
.x12f_c00298{left:576.600000px;}
.x79_c00298{left:578.250000px;}
.xad_c00298{left:579.450000px;}
.x132_c00298{left:580.500000px;}
.x3b_c00298{left:581.850000px;}
.x51_c00298{left:584.100000px;}
.xd1_c00298{left:585.150000px;}
.xe9_c00298{left:588.300000px;}
.x2e_c00298{left:590.250000px;}
.x6d_c00298{left:592.200000px;}
.xc7_c00298{left:595.350000px;}
.x133_c00298{left:599.250000px;}
.x83_c00298{left:602.250000px;}
.xd8_c00298{left:603.300000px;}
.x3c_c00298{left:606.000000px;}
.x20_c00298{left:607.650000px;}
.x134_c00298{left:609.300000px;}
.xa0_c00298{left:610.650000px;}
.xc3_c00298{left:612.000000px;}
.x108_c00298{left:613.050000px;}
.xfb_c00298{left:614.850000px;}
.xb6_c00298{left:616.200000px;}
.x7a_c00298{left:617.550000px;}
.xd2_c00298{left:620.400000px;}
.xae_c00298{left:623.400000px;}
.x110_c00298{left:625.500000px;}
.x98_c00298{left:627.000000px;}
.xa1_c00298{left:629.400000px;}
.x6e_c00298{left:631.800000px;}
.x7b_c00298{left:634.500000px;}
.x103_c00298{left:636.600000px;}
.xbc_c00298{left:638.550000px;}
.x21_c00298{left:640.350000px;}
.x129_c00298{left:644.250000px;}
.x8c_c00298{left:645.450000px;}
.xf5_c00298{left:648.000000px;}
.x46_c00298{left:649.800000px;}
.x2f_c00298{left:654.600000px;}
.xe_c00298{left:655.650000px;}
.xfc_c00298{left:658.050000px;}
.x6f_c00298{left:659.100000px;}
.x3d_c00298{left:660.750000px;}
.x99_c00298{left:663.300000px;}
.x84_c00298{left:666.000000px;}
.x47_c00298{left:667.500000px;}
.x5e_c00298{left:668.550000px;}
.xf6_c00298{left:669.900000px;}
.x135_c00298{left:672.300000px;}
.x68_c00298{left:675.000000px;}
.xbd_c00298{left:676.050000px;}
.x22_c00298{left:678.900000px;}
.xc8_c00298{left:681.000000px;}
.x70_c00298{left:683.550000px;}
.xaf_c00298{left:684.600000px;}
.x13a_c00298{left:687.150000px;}
.x111_c00298{left:689.850000px;}
.x30_c00298{left:692.100000px;}
.xa2_c00298{left:693.450000px;}
.x7c_c00298{left:696.750000px;}
.xd3_c00298{left:699.300000px;}
.xf0_c00298{left:700.800000px;}
.x8d_c00298{left:701.850000px;}
.x5f_c00298{left:703.050000px;}
.x104_c00298{left:705.000000px;}
.x109_c00298{left:707.100000px;}
.xc9_c00298{left:709.500000px;}
.xa3_c00298{left:711.750000px;}
.xea_c00298{left:714.150000px;}
.x3e_c00298{left:715.800000px;}
.x124_c00298{left:717.450000px;}
.xf_c00298{left:718.650000px;}
.x48_c00298{left:720.750000px;}
.x52_c00298{left:723.450000px;}
.x10a_c00298{left:726.150000px;}
.x8e_c00298{left:728.100000px;}
.xde_c00298{left:729.450000px;}
.x10_c00298{left:732.750000px;}
.xe4_c00298{left:734.100000px;}
.x9a_c00298{left:737.400000px;}
.x31_c00298{left:739.650000px;}
.xb7_c00298{left:741.750000px;}
.xb0_c00298{left:743.700000px;}
.xc4_c00298{left:746.550000px;}
.x112_c00298{left:748.500000px;}
.x23_c00298{left:750.600000px;}
.x12c_c00298{left:751.950000px;}
.xe5_c00298{left:753.150000px;}
.x10b_c00298{left:754.950000px;}
.x49_c00298{left:756.000000px;}
.x53_c00298{left:757.350000px;}
.x3f_c00298{left:758.700000px;}
.x71_c00298{left:760.950000px;}
.xc5_c00298{left:762.000000px;}
.x11_c00298{left:764.100000px;}
.x9b_c00298{left:765.150000px;}
.x32_c00298{left:767.400000px;}
.xdf_c00298{left:768.750000px;}
.xf1_c00298{left:771.300000px;}
.x24_c00298{left:773.250000px;}
.x105_c00298{left:777.000000px;}
.xe6_c00298{left:779.850000px;}
.x40_c00298{left:781.350000px;}
.x136_c00298{left:782.400000px;}
.x12_c00298{left:784.650000px;}
.x117_c00298{left:789.600000px;}
.xeb_c00298{left:793.950000px;}
.x125_c00298{left:796.650000px;}
.x8f_c00298{left:802.950000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws6_c00298{word-spacing:-6.444444pt;}
.ws7_c00298{word-spacing:-3.333333pt;}
.ws2_c00298{word-spacing:-3.139785pt;}
.ws8_c00298{word-spacing:0.000000pt;}
.ws3_c00298{word-spacing:2.570434pt;}
.ws5_c00298{word-spacing:3.777778pt;}
.ws1_c00298{word-spacing:5.333333pt;}
.ws4_c00298{word-spacing:5.444444pt;}
.ws0_c00298{word-spacing:12.586549pt;}
.fs0_c00298{font-size:48.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y2d_c00298{bottom:142.400000pt;}
.y2c_c00298{bottom:156.133333pt;}
.y2b_c00298{bottom:170.266667pt;}
.y2a_c00298{bottom:184.000000pt;}
.y29_c00298{bottom:198.133333pt;}
.y28_c00298{bottom:230.133333pt;}
.y27_c00298{bottom:247.733333pt;}
.y26_c00298{bottom:265.333333pt;}
.y25_c00298{bottom:283.200000pt;}
.y24_c00298{bottom:300.800000pt;}
.y23_c00298{bottom:318.933333pt;}
.y22_c00298{bottom:336.533333pt;}
.y21_c00298{bottom:354.400000pt;}
.y20_c00298{bottom:372.266667pt;}
.y1f_c00298{bottom:390.133333pt;}
.y1e_c00298{bottom:407.733333pt;}
.y1d_c00298{bottom:425.600000pt;}
.y1c_c00298{bottom:443.200000pt;}
.y1b_c00298{bottom:460.800000pt;}
.y1a_c00298{bottom:478.666667pt;}
.y19_c00298{bottom:496.266667pt;}
.y18_c00298{bottom:513.866667pt;}
.y17_c00298{bottom:531.600000pt;}
.y16_c00298{bottom:549.466667pt;}
.y15_c00298{bottom:567.066667pt;}
.y14_c00298{bottom:584.666667pt;}
.y13_c00298{bottom:602.266667pt;}
.y12_c00298{bottom:620.533333pt;}
.y11_c00298{bottom:638.133333pt;}
.y10_c00298{bottom:655.733333pt;}
.yf_c00298{bottom:673.600000pt;}
.ye_c00298{bottom:691.200000pt;}
.yd_c00298{bottom:709.066667pt;}
.yc_c00298{bottom:726.800000pt;}
.yb_c00298{bottom:744.400000pt;}
.ya_c00298{bottom:762.266667pt;}
.y9_c00298{bottom:779.866667pt;}
.y8_c00298{bottom:797.733333pt;}
.y7_c00298{bottom:815.600000pt;}
.y6_c00298{bottom:833.200000pt;}
.y5_c00298{bottom:851.466667pt;}
.y4_c00298{bottom:869.066667pt;}
.y3_c00298{bottom:886.133333pt;}
.y2_c00298{bottom:904.666667pt;}
.y1_c00298{bottom:937.866667pt;}
.h2_c00298{height:48.000000pt;}
.h0_c00298{height:1037.119955pt;}
.h1_c00298{height:1037.333333pt;}
.w1_c00298{width:812.000000pt;}
.w0_c00298{width:812.159993pt;}
.x0_c00298{left:0.000000pt;}
.x3_c00298{left:123.200000pt;}
.xe0_c00298{left:124.266667pt;}
.x1_c00298{left:125.466667pt;}
.x13b_c00298{left:126.400000pt;}
.x85_c00298{left:137.066667pt;}
.x13c_c00298{left:139.866667pt;}
.x54_c00298{left:141.600000pt;}
.xb8_c00298{left:146.266667pt;}
.xa4_c00298{left:147.466667pt;}
.x90_c00298{left:149.333333pt;}
.xbe_c00298{left:150.400000pt;}
.x18_c00298{left:151.333333pt;}
.x4a_c00298{left:152.666667pt;}
.x11f_c00298{left:153.600000pt;}
.x25_c00298{left:155.733333pt;}
.xfd_c00298{left:157.333333pt;}
.x86_c00298{left:159.466667pt;}
.xd4_c00298{left:160.533333pt;}
.x12d_c00298{left:162.533333pt;}
.xb1_c00298{left:166.000000pt;}
.x91_c00298{left:168.800000pt;}
.x4b_c00298{left:170.266667pt;}
.x137_c00298{left:171.866667pt;}
.x19_c00298{left:172.800000pt;}
.x4_c00298{left:174.133333pt;}
.x41_c00298{left:176.400000pt;}
.x72_c00298{left:178.400000pt;}
.x7d_c00298{left:180.133333pt;}
.xf2_c00298{left:182.266667pt;}
.x113_c00298{left:183.466667pt;}
.x33_c00298{left:184.533333pt;}
.x60_c00298{left:186.000000pt;}
.x55_c00298{left:188.000000pt;}
.x1a_c00298{left:189.733333pt;}
.x119_c00298{left:193.200000pt;}
.x26_c00298{left:194.133333pt;}
.x13_c00298{left:195.600000pt;}
.x9c_c00298{left:197.200000pt;}
.xa5_c00298{left:199.333333pt;}
.x12e_c00298{left:200.266667pt;}
.x34_c00298{left:201.466667pt;}
.x61_c00298{left:203.600000pt;}
.x73_c00298{left:208.800000pt;}
.x126_c00298{left:210.266667pt;}
.xe1_c00298{left:212.266667pt;}
.x5_c00298{left:213.466667pt;}
.xec_c00298{left:215.066667pt;}
.xf7_c00298{left:216.266667pt;}
.x1b_c00298{left:218.533333pt;}
.x27_c00298{left:219.466667pt;}
.xfe_c00298{left:221.600000pt;}
.x130_c00298{left:223.600000pt;}
.x87_c00298{left:225.466667pt;}
.x12a_c00298{left:226.800000pt;}
.x74_c00298{left:228.266667pt;}
.xa6_c00298{left:229.466667pt;}
.xd5_c00298{left:230.400000pt;}
.x6_c00298{left:232.000000pt;}
.x10c_c00298{left:232.933333pt;}
.x9d_c00298{left:234.933333pt;}
.x7e_c00298{left:237.466667pt;}
.x56_c00298{left:239.200000pt;}
.x14_c00298{left:240.666667pt;}
.xc6_c00298{left:241.733333pt;}
.xd9_c00298{left:242.666667pt;}
.x11a_c00298{left:244.400000pt;}
.x106_c00298{left:245.333333pt;}
.xf8_c00298{left:246.666667pt;}
.x69_c00298{left:247.866667pt;}
.x28_c00298{left:249.600000pt;}
.x92_c00298{left:251.333333pt;}
.xca_c00298{left:253.600000pt;}
.x7f_c00298{left:255.066667pt;}
.x15_c00298{left:256.666667pt;}
.x4c_c00298{left:259.466667pt;}
.x13d_c00298{left:261.200000pt;}
.x127_c00298{left:262.800000pt;}
.x75_c00298{left:264.800000pt;}
.x62_c00298{left:266.266667pt;}
.x11b_c00298{left:268.666667pt;}
.x57_c00298{left:270.533333pt;}
.xb9_c00298{left:272.133333pt;}
.xb2_c00298{left:273.200000pt;}
.xa7_c00298{left:274.266667pt;}
.x1c_c00298{left:275.466667pt;}
.xe7_c00298{left:276.533333pt;}
.x35_c00298{left:277.733333pt;}
.x7_c00298{left:279.066667pt;}
.x128_c00298{left:281.733333pt;}
.xed_c00298{left:284.800000pt;}
.x88_c00298{left:287.200000pt;}
.x80_c00298{left:288.666667pt;}
.x16_c00298{left:290.266667pt;}
.x120_c00298{left:292.533333pt;}
.x58_c00298{left:294.266667pt;}
.x93_c00298{left:295.200000pt;}
.x42_c00298{left:296.400000pt;}
.xbf_c00298{left:298.800000pt;}
.xff_c00298{left:299.733333pt;}
.xa8_c00298{left:301.733333pt;}
.x94_c00298{left:305.466667pt;}
.x8_c00298{left:307.200000pt;}
.x10d_c00298{left:308.400000pt;}
.x29_c00298{left:310.133333pt;}
.xba_c00298{left:311.866667pt;}
.xf9_c00298{left:313.600000pt;}
.xa9_c00298{left:317.066667pt;}
.x63_c00298{left:318.133333pt;}
.xda_c00298{left:320.666667pt;}
.x1d_c00298{left:321.600000pt;}
.x4d_c00298{left:325.733333pt;}
.x107_c00298{left:327.600000pt;}
.x100_c00298{left:328.533333pt;}
.xd6_c00298{left:329.600000pt;}
.x95_c00298{left:332.933333pt;}
.x76_c00298{left:334.533333pt;}
.x2a_c00298{left:336.400000pt;}
.x118_c00298{left:337.600000pt;}
.xaa_c00298{left:339.466667pt;}
.xcb_c00298{left:340.400000pt;}
.xb3_c00298{left:343.600000pt;}
.xd7_c00298{left:345.600000pt;}
.x12b_c00298{left:346.800000pt;}
.xee_c00298{left:347.866667pt;}
.xcc_c00298{left:350.266667pt;}
.x59_c00298{left:351.866667pt;}
.x89_c00298{left:354.666667pt;}
.x36_c00298{left:356.666667pt;}
.x4e_c00298{left:358.000000pt;}
.x81_c00298{left:359.066667pt;}
.xe2_c00298{left:360.400000pt;}
.x114_c00298{left:363.200000pt;}
.x9_c00298{left:365.066667pt;}
.x5a_c00298{left:366.933333pt;}
.x121_c00298{left:368.000000pt;}
.x4f_c00298{left:371.066667pt;}
.xb4_c00298{left:372.400000pt;}
.x11c_c00298{left:373.866667pt;}
.x17_c00298{left:375.333333pt;}
.x6a_c00298{left:377.733333pt;}
.x64_c00298{left:379.200000pt;}
.x43_c00298{left:381.200000pt;}
.x8a_c00298{left:382.800000pt;}
.xf3_c00298{left:385.066667pt;}
.x2_c00298{left:388.133333pt;}
.x2b_c00298{left:391.466667pt;}
.xa_c00298{left:392.933333pt;}
.x138_c00298{left:394.133333pt;}
.x10e_c00298{left:397.333333pt;}
.x50_c00298{left:398.533333pt;}
.x37_c00298{left:401.200000pt;}
.xe8_c00298{left:403.200000pt;}
.x9e_c00298{left:406.800000pt;}
.xdb_c00298{left:408.933333pt;}
.x65_c00298{left:411.866667pt;}
.xcd_c00298{left:412.933333pt;}
.x2c_c00298{left:417.066667pt;}
.x11d_c00298{left:418.400000pt;}
.xab_c00298{left:419.466667pt;}
.x38_c00298{left:420.666667pt;}
.x115_c00298{left:421.733333pt;}
.xef_c00298{left:423.066667pt;}
.x5b_c00298{left:425.200000pt;}
.xc0_c00298{left:427.733333pt;}
.x77_c00298{left:429.600000pt;}
.x96_c00298{left:430.933333pt;}
.x101_c00298{left:431.866667pt;}
.xf4_c00298{left:433.600000pt;}
.xce_c00298{left:435.333333pt;}
.xb5_c00298{left:437.333333pt;}
.x5c_c00298{left:438.266667pt;}
.x44_c00298{left:440.666667pt;}
.xb_c00298{left:444.800000pt;}
.x66_c00298{left:445.733333pt;}
.x11e_c00298{left:446.933333pt;}
.x1e_c00298{left:448.266667pt;}
.xdc_c00298{left:449.200000pt;}
.xe3_c00298{left:450.933333pt;}
.x131_c00298{left:454.000000pt;}
.xc1_c00298{left:455.866667pt;}
.x6b_c00298{left:458.266667pt;}
.x39_c00298{left:461.600000pt;}
.xc_c00298{left:463.733333pt;}
.xcf_c00298{left:466.000000pt;}
.xbb_c00298{left:468.400000pt;}
.xc2_c00298{left:469.333333pt;}
.x78_c00298{left:472.133333pt;}
.x102_c00298{left:475.066667pt;}
.x9f_c00298{left:478.800000pt;}
.x82_c00298{left:480.666667pt;}
.xd0_c00298{left:481.733333pt;}
.x3a_c00298{left:484.266667pt;}
.x122_c00298{left:485.466667pt;}
.x45_c00298{left:486.400000pt;}
.x67_c00298{left:488.266667pt;}
.xd_c00298{left:489.333333pt;}
.x6c_c00298{left:490.533333pt;}
.x5d_c00298{left:494.000000pt;}
.xdd_c00298{left:495.200000pt;}
.x97_c00298{left:496.800000pt;}
.xac_c00298{left:498.133333pt;}
.x139_c00298{left:499.066667pt;}
.xfa_c00298{left:500.133333pt;}
.x123_c00298{left:501.200000pt;}
.x2d_c00298{left:503.200000pt;}
.x116_c00298{left:505.866667pt;}
.x1f_c00298{left:506.800000pt;}
.x10f_c00298{left:508.666667pt;}
.x8b_c00298{left:511.333333pt;}
.x12f_c00298{left:512.533333pt;}
.x79_c00298{left:514.000000pt;}
.xad_c00298{left:515.066667pt;}
.x132_c00298{left:516.000000pt;}
.x3b_c00298{left:517.200000pt;}
.x51_c00298{left:519.200000pt;}
.xd1_c00298{left:520.133333pt;}
.xe9_c00298{left:522.933333pt;}
.x2e_c00298{left:524.666667pt;}
.x6d_c00298{left:526.400000pt;}
.xc7_c00298{left:529.200000pt;}
.x133_c00298{left:532.666667pt;}
.x83_c00298{left:535.333333pt;}
.xd8_c00298{left:536.266667pt;}
.x3c_c00298{left:538.666667pt;}
.x20_c00298{left:540.133333pt;}
.x134_c00298{left:541.600000pt;}
.xa0_c00298{left:542.800000pt;}
.xc3_c00298{left:544.000000pt;}
.x108_c00298{left:544.933333pt;}
.xfb_c00298{left:546.533333pt;}
.xb6_c00298{left:547.733333pt;}
.x7a_c00298{left:548.933333pt;}
.xd2_c00298{left:551.466667pt;}
.xae_c00298{left:554.133333pt;}
.x110_c00298{left:556.000000pt;}
.x98_c00298{left:557.333333pt;}
.xa1_c00298{left:559.466667pt;}
.x6e_c00298{left:561.600000pt;}
.x7b_c00298{left:564.000000pt;}
.x103_c00298{left:565.866667pt;}
.xbc_c00298{left:567.600000pt;}
.x21_c00298{left:569.200000pt;}
.x129_c00298{left:572.666667pt;}
.x8c_c00298{left:573.733333pt;}
.xf5_c00298{left:576.000000pt;}
.x46_c00298{left:577.600000pt;}
.x2f_c00298{left:581.866667pt;}
.xe_c00298{left:582.800000pt;}
.xfc_c00298{left:584.933333pt;}
.x6f_c00298{left:585.866667pt;}
.x3d_c00298{left:587.333333pt;}
.x99_c00298{left:589.600000pt;}
.x84_c00298{left:592.000000pt;}
.x47_c00298{left:593.333333pt;}
.x5e_c00298{left:594.266667pt;}
.xf6_c00298{left:595.466667pt;}
.x135_c00298{left:597.600000pt;}
.x68_c00298{left:600.000000pt;}
.xbd_c00298{left:600.933333pt;}
.x22_c00298{left:603.466667pt;}
.xc8_c00298{left:605.333333pt;}
.x70_c00298{left:607.600000pt;}
.xaf_c00298{left:608.533333pt;}
.x13a_c00298{left:610.800000pt;}
.x111_c00298{left:613.200000pt;}
.x30_c00298{left:615.200000pt;}
.xa2_c00298{left:616.400000pt;}
.x7c_c00298{left:619.333333pt;}
.xd3_c00298{left:621.600000pt;}
.xf0_c00298{left:622.933333pt;}
.x8d_c00298{left:623.866667pt;}
.x5f_c00298{left:624.933333pt;}
.x104_c00298{left:626.666667pt;}
.x109_c00298{left:628.533333pt;}
.xc9_c00298{left:630.666667pt;}
.xa3_c00298{left:632.666667pt;}
.xea_c00298{left:634.800000pt;}
.x3e_c00298{left:636.266667pt;}
.x124_c00298{left:637.733333pt;}
.xf_c00298{left:638.800000pt;}
.x48_c00298{left:640.666667pt;}
.x52_c00298{left:643.066667pt;}
.x10a_c00298{left:645.466667pt;}
.x8e_c00298{left:647.200000pt;}
.xde_c00298{left:648.400000pt;}
.x10_c00298{left:651.333333pt;}
.xe4_c00298{left:652.533333pt;}
.x9a_c00298{left:655.466667pt;}
.x31_c00298{left:657.466667pt;}
.xb7_c00298{left:659.333333pt;}
.xb0_c00298{left:661.066667pt;}
.xc4_c00298{left:663.600000pt;}
.x112_c00298{left:665.333333pt;}
.x23_c00298{left:667.200000pt;}
.x12c_c00298{left:668.400000pt;}
.xe5_c00298{left:669.466667pt;}
.x10b_c00298{left:671.066667pt;}
.x49_c00298{left:672.000000pt;}
.x53_c00298{left:673.200000pt;}
.x3f_c00298{left:674.400000pt;}
.x71_c00298{left:676.400000pt;}
.xc5_c00298{left:677.333333pt;}
.x11_c00298{left:679.200000pt;}
.x9b_c00298{left:680.133333pt;}
.x32_c00298{left:682.133333pt;}
.xdf_c00298{left:683.333333pt;}
.xf1_c00298{left:685.600000pt;}
.x24_c00298{left:687.333333pt;}
.x105_c00298{left:690.666667pt;}
.xe6_c00298{left:693.200000pt;}
.x40_c00298{left:694.533333pt;}
.x136_c00298{left:695.466667pt;}
.x12_c00298{left:697.466667pt;}
.x117_c00298{left:701.866667pt;}
.xeb_c00298{left:705.733333pt;}
.x125_c00298{left:708.133333pt;}
.x8f_c00298{left:713.733333pt;}
}





/* 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_c00299 {
    display:none;
  }
  .loading-indicator_c00299.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00299 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_c00299 { 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_c00299" -> "#page-container .classname_c00299")
 */
.pf_c00299 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00299 { /* 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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00299 { /* 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_c00299 { /* 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_c00299 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00299 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00299 {overflow:visible;}
  }
}
.c_c00299 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00299 { /* 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_c00299:after { /* webkit #35443 */
  content: '';
}
.t_c00299:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00299 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 */
}
.__c00299 { /* 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_c00299 { /* info for Javascript */
  display:none;
}
.l_c00299 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00299 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00299 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00299: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_c00299 {
    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_c00299.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00299.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_c00299 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00299{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00299;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.000000;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;}
.m97_c00299{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00299{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00299{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00299{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00299{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7_c00299{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00299{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m22_c00299{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00299{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m47_c00299{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m92_c00299{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m77_c00299{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mba_c00299{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m36_c00299{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00299{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m69_c00299{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00299{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00299{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m73_c00299{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00299{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00299{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00299{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00299{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.md_c00299{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m41_c00299{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mac_c00299{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00299{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m45_c00299{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m76_c00299{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00299{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00299{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m19_c00299{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m62_c00299{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m32_c00299{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6_c00299{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m90_c00299{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00299{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m43_c00299{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m64_c00299{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m15_c00299{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00299{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00299{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m11_c00299{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m72_c00299{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m82_c00299{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m27_c00299{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00299{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m57_c00299{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00299{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m74_c00299{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00299{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m52_c00299{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m91_c00299{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00299{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m71_c00299{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00299{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00299{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00299{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00299{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m81_c00299{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00299{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00299{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00299{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00299{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m68_c00299{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00299{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m40_c00299{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m88_c00299{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mae_c00299{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00299{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb_c00299{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00299{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m53_c00299{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m29_c00299{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00299{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00299{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00299{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m18_c00299{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00299{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m48_c00299{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00299{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00299{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00299{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m23_c00299{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mf_c00299{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m38_c00299{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00299{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m67_c00299{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m10_c00299{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00299{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00299{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m42_c00299{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m59_c00299{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00299{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m80_c00299{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m83_c00299{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m61_c00299{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m28_c00299{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc_c00299{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00299{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00299{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00299{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m50_c00299{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m60_c00299{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m26_c00299{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00299{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m33_c00299{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00299{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m86_c00299{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00299{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00299{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m51_c00299{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m58_c00299{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m17_c00299{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2_c00299{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.me_c00299{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m70_c00299{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma_c00299{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m35_c00299{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00299{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00299{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m85_c00299{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00299{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00299{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00299{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00299{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m75_c00299{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00299{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00299{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00299{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m93_c00299{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00299{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9_c00299{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m84_c00299{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mab_c00299{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00299{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00299{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00299{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00299{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m12_c00299{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m96_c00299{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00299{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m46_c00299{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00299{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00299{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.maf_c00299{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m63_c00299{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24_c00299{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00299{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00299{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21_c00299{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m49_c00299{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00299{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00299{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m99_c00299{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m44_c00299{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00299{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m14_c00299{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8_c00299{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00299{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m20_c00299{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m95_c00299{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00299{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m89_c00299{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00299{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00299{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m54_c00299{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00299{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00299{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m87_c00299{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00299{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m55_c00299{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00299{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m98_c00299{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m78_c00299{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m16_c00299{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00299{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m56_c00299{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m4_c00299{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00299{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m65_c00299{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.maa_c00299{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00299{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00299{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00299{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00299{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00299{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mad_c00299{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.v0_c00299{vertical-align:0.000000px;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{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__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00299{word-spacing:-4.375000px;}
.ws2_c00299{word-spacing:-1.388889px;}
.ws6_c00299{word-spacing:-1.312500px;}
.ws7_c00299{word-spacing:0.000000px;}
.ws0_c00299{word-spacing:1.250000px;}
.ws5_c00299{word-spacing:3.125000px;}
.ws3_c00299{word-spacing:6.136364px;}
.ws1_c00299{word-spacing:11.805556px;}
.fc0_c00299{color:transparent;}
.fs2_c00299{font-size:36.000000px;}
.fs0_c00299{font-size:54.000000px;}
.fs1_c00299{font-size:60.000000px;}
.y0_c00299{bottom:0.000000px;}
.y2d_c00299{bottom:129.900000px;}
.y2c_c00299{bottom:151.200000px;}
.y2b_c00299{bottom:166.650000px;}
.y2a_c00299{bottom:199.500000px;}
.y29_c00299{bottom:219.300000px;}
.y28_c00299{bottom:239.100000px;}
.y27_c00299{bottom:258.900000px;}
.y26_c00299{bottom:278.700000px;}
.y25_c00299{bottom:298.800000px;}
.y24_c00299{bottom:318.600000px;}
.y23_c00299{bottom:338.400000px;}
.y22_c00299{bottom:358.500000px;}
.y21_c00299{bottom:378.450000px;}
.y20_c00299{bottom:398.550000px;}
.y1f_c00299{bottom:418.350000px;}
.y1e_c00299{bottom:438.450000px;}
.y1d_c00299{bottom:458.250000px;}
.y1c_c00299{bottom:478.500000px;}
.y1b_c00299{bottom:498.300000px;}
.y1a_c00299{bottom:518.100000px;}
.y19_c00299{bottom:537.900000px;}
.y18_c00299{bottom:558.300000px;}
.y17_c00299{bottom:578.400000px;}
.y16_c00299{bottom:597.900000px;}
.y15_c00299{bottom:618.000000px;}
.y14_c00299{bottom:638.100000px;}
.y13_c00299{bottom:657.900000px;}
.y12_c00299{bottom:677.700000px;}
.y11_c00299{bottom:697.800000px;}
.y10_c00299{bottom:717.600000px;}
.yf_c00299{bottom:737.700000px;}
.ye_c00299{bottom:757.800000px;}
.yd_c00299{bottom:777.600000px;}
.yc_c00299{bottom:806.250000px;}
.yb_c00299{bottom:826.350000px;}
.ya_c00299{bottom:846.150000px;}
.y9_c00299{bottom:865.950000px;}
.y8_c00299{bottom:886.050000px;}
.y7_c00299{bottom:906.150000px;}
.y6_c00299{bottom:925.950000px;}
.y5_c00299{bottom:945.750000px;}
.y4_c00299{bottom:965.550000px;}
.y3_c00299{bottom:985.350000px;}
.y2_c00299{bottom:1005.450000px;}
.y1_c00299{bottom:1043.700000px;}
.h4_c00299{height:36.000000px;}
.h2_c00299{height:54.000000px;}
.h3_c00299{height:60.000000px;}
.h0_c00299{height:1166.759949px;}
.h1_c00299{height:1167.000000px;}
.w1_c00299{width:913.500000px;}
.w0_c00299{width:913.679993px;}
.x0_c00299{left:0.000000px;}
.x3_c00299{left:104.100000px;}
.x57_c00299{left:105.150000px;}
.x98_c00299{left:106.200000px;}
.xd8_c00299{left:107.250000px;}
.x105_c00299{left:108.300000px;}
.x11e_c00299{left:109.350000px;}
.x12b_c00299{left:110.400000px;}
.x99_c00299{left:118.800000px;}
.xb2_c00299{left:122.400000px;}
.xbd_c00299{left:126.750000px;}
.x42_c00299{left:127.950000px;}
.x13_c00299{left:129.750000px;}
.x78_c00299{left:133.350000px;}
.x84_c00299{left:136.800000px;}
.xe0_c00299{left:138.600000px;}
.xf8_c00299{left:139.650000px;}
.xa2_c00299{left:141.300000px;}
.xd9_c00299{left:143.550000px;}
.x23_c00299{left:147.900000px;}
.xe7_c00299{left:149.850000px;}
.xb3_c00299{left:150.900000px;}
.x4_c00299{left:151.950000px;}
.x34_c00299{left:153.900000px;}
.x10c_c00299{left:156.300000px;}
.x58_c00299{left:158.400000px;}
.x106_c00299{left:160.200000px;}
.x43_c00299{left:164.700000px;}
.xcf_c00299{left:165.750000px;}
.xf4_c00299{left:166.950000px;}
.xa3_c00299{left:168.600000px;}
.x35_c00299{left:173.400000px;}
.x24_c00299{left:175.950000px;}
.xbe_c00299{left:178.650000px;}
.x79_c00299{left:181.200000px;}
.xb4_c00299{left:184.350000px;}
.x12c_c00299{left:185.400000px;}
.xaa_c00299{left:186.450000px;}
.xd0_c00299{left:187.650000px;}
.x9a_c00299{left:189.000000px;}
.x85_c00299{left:190.800000px;}
.x14_c00299{left:193.050000px;}
.x4d_c00299{left:194.700000px;}
.x107_c00299{left:196.950000px;}
.x36_c00299{left:201.450000px;}
.x65_c00299{left:202.950000px;}
.xab_c00299{left:206.550000px;}
.xf9_c00299{left:208.350000px;}
.x12a_c00299{left:209.550000px;}
.xc5_c00299{left:211.200000px;}
.x11f_c00299{left:212.700000px;}
.x25_c00299{left:214.050000px;}
.x9b_c00299{left:217.050000px;}
.xda_c00299{left:218.100000px;}
.x8e_c00299{left:219.750000px;}
.x117_c00299{left:220.800000px;}
.xe1_c00299{left:222.150000px;}
.xb5_c00299{left:225.000000px;}
.x66_c00299{left:226.650000px;}
.x120_c00299{left:229.800000px;}
.xac_c00299{left:231.750000px;}
.x26_c00299{left:233.550000px;}
.xe8_c00299{left:235.500000px;}
.x59_c00299{left:236.550000px;}
.x4e_c00299{left:237.900000px;}
.x81_c00299{left:241.650000px;}
.xdd_c00299{left:243.150000px;}
.xcc_c00299{left:244.200000px;}
.x112_c00299{left:246.300000px;}
.xe2_c00299{left:249.450000px;}
.x4f_c00299{left:252.000000px;}
.x15_c00299{left:253.500000px;}
.x6f_c00299{left:254.700000px;}
.x67_c00299{left:256.200000px;}
.x5_c00299{left:257.400000px;}
.x108_c00299{left:259.950000px;}
.x27_c00299{left:261.600000px;}
.x5a_c00299{left:264.300000px;}
.x13a_c00299{left:266.700000px;}
.x7a_c00299{left:267.900000px;}
.x70_c00299{left:269.850000px;}
.xd1_c00299{left:272.550000px;}
.x136_c00299{left:274.050000px;}
.xe9_c00299{left:275.400000px;}
.xbf_c00299{left:277.050000px;}
.xf5_c00299{left:279.300000px;}
.xb6_c00299{left:281.100000px;}
.xde_c00299{left:284.850000px;}
.x8f_c00299{left:286.050000px;}
.x16_c00299{left:288.450000px;}
.x6_c00299{left:289.800000px;}
.x37_c00299{left:291.750000px;}
.x131_c00299{left:292.950000px;}
.x9c_c00299{left:294.450000px;}
.x100_c00299{left:295.650000px;}
.x44_c00299{left:297.600000px;}
.x7b_c00299{left:299.250000px;}
.x50_c00299{left:305.700000px;}
.x28_c00299{left:306.900000px;}
.xad_c00299{left:308.100000px;}
.xa4_c00299{left:309.300000px;}
.x68_c00299{left:311.250000px;}
.x121_c00299{left:313.350000px;}
.x86_c00299{left:314.700000px;}
.x12d_c00299{left:317.700000px;}
.x17_c00299{left:319.800000px;}
.xef_c00299{left:321.150000px;}
.x118_c00299{left:322.650000px;}
.xb7_c00299{left:324.600000px;}
.x7_c00299{left:327.300000px;}
.x13b_c00299{left:328.650000px;}
.x101_c00299{left:332.700000px;}
.x113_c00299{left:335.400000px;}
.xf6_c00299{left:336.600000px;}
.x10d_c00299{left:337.650000px;}
.x69_c00299{left:339.750000px;}
.x38_c00299{left:343.200000px;}
.x12e_c00299{left:344.700000px;}
.x5b_c00299{left:346.800000px;}
.x45_c00299{left:348.300000px;}
.xdf_c00299{left:349.950000px;}
.xea_c00299{left:353.550000px;}
.xd2_c00299{left:355.350000px;}
.x119_c00299{left:357.150000px;}
.x51_c00299{left:359.400000px;}
.xfa_c00299{left:360.600000px;}
.x102_c00299{left:362.250000px;}
.x87_c00299{left:363.300000px;}
.x137_c00299{left:365.850000px;}
.xa5_c00299{left:368.400000px;}
.x90_c00299{left:371.400000px;}
.x127_c00299{left:373.050000px;}
.x82_c00299{left:374.550000px;}
.xc6_c00299{left:376.050000px;}
.x18_c00299{left:377.700000px;}
.x29_c00299{left:379.200000px;}
.x132_c00299{left:380.400000px;}
.xd3_c00299{left:382.050000px;}
.x8_c00299{left:383.400000px;}
.xa6_c00299{left:385.650000px;}
.xae_c00299{left:388.350000px;}
.x39_c00299{left:390.300000px;}
.x88_c00299{left:391.350000px;}
.x5c_c00299{left:393.300000px;}
.x1_c00299{left:395.700000px;}
.xb8_c00299{left:397.950000px;}
.x12f_c00299{left:400.050000px;}
.x19_c00299{left:402.600000px;}
.xeb_c00299{left:403.950000px;}
.x46_c00299{left:405.600000px;}
.xa7_c00299{left:409.050000px;}
.x2a_c00299{left:410.550000px;}
.x9_c00299{left:411.900000px;}
.x5d_c00299{left:413.850000px;}
.x109_c00299{left:416.550000px;}
.x91_c00299{left:419.400000px;}
.xf0_c00299{left:421.950000px;}
.x10e_c00299{left:423.900000px;}
.x47_c00299{left:426.900000px;}
.xa_c00299{left:428.400000px;}
.x6a_c00299{left:430.800000px;}
.x1a_c00299{left:432.900000px;}
.x3a_c00299{left:435.000000px;}
.x125_c00299{left:439.350000px;}
.x11a_c00299{left:440.550000px;}
.x71_c00299{left:444.750000px;}
.x10a_c00299{left:447.450000px;}
.xb9_c00299{left:449.400000px;}
.xf7_c00299{left:450.750000px;}
.x9d_c00299{left:454.800000px;}
.x2b_c00299{left:456.600000px;}
.x138_c00299{left:457.950000px;}
.x52_c00299{left:460.500000px;}
.xcd_c00299{left:461.700000px;}
.x92_c00299{left:463.650000px;}
.xb_c00299{left:464.700000px;}
.x72_c00299{left:467.100000px;}
.xc7_c00299{left:468.150000px;}
.x114_c00299{left:471.450000px;}
.x126_c00299{left:473.550000px;}
.x2c_c00299{left:474.600000px;}
.x7c_c00299{left:476.400000px;}
.xd4_c00299{left:480.750000px;}
.x5e_c00299{left:483.600000px;}
.x89_c00299{left:484.650000px;}
.xe3_c00299{left:485.700000px;}
.xce_c00299{left:489.750000px;}
.x73_c00299{left:490.800000px;}
.x48_c00299{left:492.750000px;}
.x7d_c00299{left:494.400000px;}
.x10f_c00299{left:495.900000px;}
.x1b_c00299{left:497.400000px;}
.xc_c00299{left:499.200000px;}
.xc8_c00299{left:500.850000px;}
.x83_c00299{left:502.800000px;}
.x6b_c00299{left:503.850000px;}
.x115_c00299{left:504.900000px;}
.x130_c00299{left:507.750000px;}
.x3b_c00299{left:508.800000px;}
.xc0_c00299{left:512.100000px;}
.xfb_c00299{left:513.150000px;}
.xa8_c00299{left:517.800000px;}
.x103_c00299{left:519.300000px;}
.x5f_c00299{left:521.100000px;}
.xf1_c00299{left:523.350000px;}
.xe4_c00299{left:526.050000px;}
.x13c_c00299{left:527.400000px;}
.x74_c00299{left:528.600000px;}
.x3c_c00299{left:529.650000px;}
.x1c_c00299{left:532.350000px;}
.xd_c00299{left:533.700000px;}
.xd5_c00299{left:535.050000px;}
.x93_c00299{left:536.400000px;}
.x9e_c00299{left:538.350000px;}
.x2d_c00299{left:539.400000px;}
.x128_c00299{left:540.450000px;}
.x110_c00299{left:543.450000px;}
.x7e_c00299{left:547.350000px;}
.xfc_c00299{left:548.400000px;}
.xc9_c00299{left:549.450000px;}
.xba_c00299{left:550.500000px;}
.xc1_c00299{left:554.550000px;}
.x11b_c00299{left:556.200000px;}
.x9f_c00299{left:558.150000px;}
.x2e_c00299{left:560.700000px;}
.xaf_c00299{left:562.200000px;}
.x13d_c00299{left:564.600000px;}
.x53_c00299{left:567.450000px;}
.xe_c00299{left:570.450000px;}
.x1d_c00299{left:571.950000px;}
.x2f_c00299{left:573.000000px;}
.xf2_c00299{left:575.550000px;}
.x3d_c00299{left:578.250000px;}
.x75_c00299{left:580.500000px;}
.x60_c00299{left:583.050000px;}
.x54_c00299{left:584.700000px;}
.x129_c00299{left:586.500000px;}
.x10b_c00299{left:588.150000px;}
.x122_c00299{left:589.800000px;}
.x116_c00299{left:591.000000px;}
.xe5_c00299{left:592.200000px;}
.x94_c00299{left:596.400000px;}
.x104_c00299{left:598.650000px;}
.x1e_c00299{left:600.750000px;}
.x6c_c00299{left:603.150000px;}
.x49_c00299{left:605.400000px;}
.x11c_c00299{left:607.350000px;}
.x3e_c00299{left:609.600000px;}
.x61_c00299{left:614.700000px;}
.x8a_c00299{left:615.750000px;}
.xf_c00299{left:618.300000px;}
.xb0_c00299{left:620.550000px;}
.x30_c00299{left:623.700000px;}
.xca_c00299{left:626.400000px;}
.xc2_c00299{left:628.050000px;}
.xe6_c00299{left:630.300000px;}
.x133_c00299{left:633.000000px;}
.x76_c00299{left:635.250000px;}
.x123_c00299{left:637.200000px;}
.x7f_c00299{left:639.150000px;}
.xd6_c00299{left:640.500000px;}
.x1f_c00299{left:643.950000px;}
.x95_c00299{left:645.750000px;}
.xc3_c00299{left:646.800000px;}
.x10_c00299{left:647.850000px;}
.xa0_c00299{left:648.900000px;}
.x11d_c00299{left:650.550000px;}
.x62_c00299{left:655.050000px;}
.xb1_c00299{left:658.050000px;}
.xd7_c00299{left:659.550000px;}
.xec_c00299{left:660.900000px;}
.x20_c00299{left:662.700000px;}
.x8b_c00299{left:663.750000px;}
.x4a_c00299{left:665.850000px;}
.x80_c00299{left:667.950000px;}
.x111_c00299{left:669.750000px;}
.x55_c00299{left:671.100000px;}
.xbb_c00299{left:673.650000px;}
.x63_c00299{left:675.150000px;}
.x96_c00299{left:677.850000px;}
.x11_c00299{left:679.500000px;}
.x31_c00299{left:681.300000px;}
.xfd_c00299{left:683.700000px;}
.x139_c00299{left:686.250000px;}
.x4b_c00299{left:690.000000px;}
.xed_c00299{left:691.500000px;}
.xcb_c00299{left:693.000000px;}
.x21_c00299{left:694.050000px;}
.x3f_c00299{left:696.000000px;}
.xf3_c00299{left:697.950000px;}
.x64_c00299{left:699.300000px;}
.x134_c00299{left:705.750000px;}
.x8c_c00299{left:708.000000px;}
.xa9_c00299{left:710.250000px;}
.xc4_c00299{left:713.400000px;}
.x32_c00299{left:714.450000px;}
.x4c_c00299{left:718.050000px;}
.x124_c00299{left:719.250000px;}
.xdb_c00299{left:720.900000px;}
.x40_c00299{left:722.700000px;}
.x6d_c00299{left:724.950000px;}
.x8d_c00299{left:727.800000px;}
.xfe_c00299{left:729.450000px;}
.x22_c00299{left:731.850000px;}
.xbc_c00299{left:734.850000px;}
.x56_c00299{left:736.200000px;}
.x41_c00299{left:738.900000px;}
.xdc_c00299{left:741.450000px;}
.xee_c00299{left:743.400000px;}
.x2_c00299{left:744.600000px;}
.xa1_c00299{left:746.550000px;}
.x97_c00299{left:747.750000px;}
.x33_c00299{left:749.700000px;}
.x77_c00299{left:752.250000px;}
.xff_c00299{left:754.950000px;}
.x135_c00299{left:756.900000px;}
.x12_c00299{left:758.400000px;}
.x6e_c00299{left:759.900000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws4_c00299{word-spacing:-3.888889pt;}
.ws2_c00299{word-spacing:-1.234568pt;}
.ws6_c00299{word-spacing:-1.166667pt;}
.ws7_c00299{word-spacing:0.000000pt;}
.ws0_c00299{word-spacing:1.111111pt;}
.ws5_c00299{word-spacing:2.777778pt;}
.ws3_c00299{word-spacing:5.454545pt;}
.ws1_c00299{word-spacing:10.493827pt;}
.fs2_c00299{font-size:32.000000pt;}
.fs0_c00299{font-size:48.000000pt;}
.fs1_c00299{font-size:53.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y2d_c00299{bottom:115.466667pt;}
.y2c_c00299{bottom:134.400000pt;}
.y2b_c00299{bottom:148.133333pt;}
.y2a_c00299{bottom:177.333333pt;}
.y29_c00299{bottom:194.933333pt;}
.y28_c00299{bottom:212.533333pt;}
.y27_c00299{bottom:230.133333pt;}
.y26_c00299{bottom:247.733333pt;}
.y25_c00299{bottom:265.600000pt;}
.y24_c00299{bottom:283.200000pt;}
.y23_c00299{bottom:300.800000pt;}
.y22_c00299{bottom:318.666667pt;}
.y21_c00299{bottom:336.400000pt;}
.y20_c00299{bottom:354.266667pt;}
.y1f_c00299{bottom:371.866667pt;}
.y1e_c00299{bottom:389.733333pt;}
.y1d_c00299{bottom:407.333333pt;}
.y1c_c00299{bottom:425.333333pt;}
.y1b_c00299{bottom:442.933333pt;}
.y1a_c00299{bottom:460.533333pt;}
.y19_c00299{bottom:478.133333pt;}
.y18_c00299{bottom:496.266667pt;}
.y17_c00299{bottom:514.133333pt;}
.y16_c00299{bottom:531.466667pt;}
.y15_c00299{bottom:549.333333pt;}
.y14_c00299{bottom:567.200000pt;}
.y13_c00299{bottom:584.800000pt;}
.y12_c00299{bottom:602.400000pt;}
.y11_c00299{bottom:620.266667pt;}
.y10_c00299{bottom:637.866667pt;}
.yf_c00299{bottom:655.733333pt;}
.ye_c00299{bottom:673.600000pt;}
.yd_c00299{bottom:691.200000pt;}
.yc_c00299{bottom:716.666667pt;}
.yb_c00299{bottom:734.533333pt;}
.ya_c00299{bottom:752.133333pt;}
.y9_c00299{bottom:769.733333pt;}
.y8_c00299{bottom:787.600000pt;}
.y7_c00299{bottom:805.466667pt;}
.y6_c00299{bottom:823.066667pt;}
.y5_c00299{bottom:840.666667pt;}
.y4_c00299{bottom:858.266667pt;}
.y3_c00299{bottom:875.866667pt;}
.y2_c00299{bottom:893.733333pt;}
.y1_c00299{bottom:927.733333pt;}
.h4_c00299{height:32.000000pt;}
.h2_c00299{height:48.000000pt;}
.h3_c00299{height:53.333333pt;}
.h0_c00299{height:1037.119955pt;}
.h1_c00299{height:1037.333333pt;}
.w1_c00299{width:812.000000pt;}
.w0_c00299{width:812.159993pt;}
.x0_c00299{left:0.000000pt;}
.x3_c00299{left:92.533333pt;}
.x57_c00299{left:93.466667pt;}
.x98_c00299{left:94.400000pt;}
.xd8_c00299{left:95.333333pt;}
.x105_c00299{left:96.266667pt;}
.x11e_c00299{left:97.200000pt;}
.x12b_c00299{left:98.133333pt;}
.x99_c00299{left:105.600000pt;}
.xb2_c00299{left:108.800000pt;}
.xbd_c00299{left:112.666667pt;}
.x42_c00299{left:113.733333pt;}
.x13_c00299{left:115.333333pt;}
.x78_c00299{left:118.533333pt;}
.x84_c00299{left:121.600000pt;}
.xe0_c00299{left:123.200000pt;}
.xf8_c00299{left:124.133333pt;}
.xa2_c00299{left:125.600000pt;}
.xd9_c00299{left:127.600000pt;}
.x23_c00299{left:131.466667pt;}
.xe7_c00299{left:133.200000pt;}
.xb3_c00299{left:134.133333pt;}
.x4_c00299{left:135.066667pt;}
.x34_c00299{left:136.800000pt;}
.x10c_c00299{left:138.933333pt;}
.x58_c00299{left:140.800000pt;}
.x106_c00299{left:142.400000pt;}
.x43_c00299{left:146.400000pt;}
.xcf_c00299{left:147.333333pt;}
.xf4_c00299{left:148.400000pt;}
.xa3_c00299{left:149.866667pt;}
.x35_c00299{left:154.133333pt;}
.x24_c00299{left:156.400000pt;}
.xbe_c00299{left:158.800000pt;}
.x79_c00299{left:161.066667pt;}
.xb4_c00299{left:163.866667pt;}
.x12c_c00299{left:164.800000pt;}
.xaa_c00299{left:165.733333pt;}
.xd0_c00299{left:166.800000pt;}
.x9a_c00299{left:168.000000pt;}
.x85_c00299{left:169.600000pt;}
.x14_c00299{left:171.600000pt;}
.x4d_c00299{left:173.066667pt;}
.x107_c00299{left:175.066667pt;}
.x36_c00299{left:179.066667pt;}
.x65_c00299{left:180.400000pt;}
.xab_c00299{left:183.600000pt;}
.xf9_c00299{left:185.200000pt;}
.x12a_c00299{left:186.266667pt;}
.xc5_c00299{left:187.733333pt;}
.x11f_c00299{left:189.066667pt;}
.x25_c00299{left:190.266667pt;}
.x9b_c00299{left:192.933333pt;}
.xda_c00299{left:193.866667pt;}
.x8e_c00299{left:195.333333pt;}
.x117_c00299{left:196.266667pt;}
.xe1_c00299{left:197.466667pt;}
.xb5_c00299{left:200.000000pt;}
.x66_c00299{left:201.466667pt;}
.x120_c00299{left:204.266667pt;}
.xac_c00299{left:206.000000pt;}
.x26_c00299{left:207.600000pt;}
.xe8_c00299{left:209.333333pt;}
.x59_c00299{left:210.266667pt;}
.x4e_c00299{left:211.466667pt;}
.x81_c00299{left:214.800000pt;}
.xdd_c00299{left:216.133333pt;}
.xcc_c00299{left:217.066667pt;}
.x112_c00299{left:218.933333pt;}
.xe2_c00299{left:221.733333pt;}
.x4f_c00299{left:224.000000pt;}
.x15_c00299{left:225.333333pt;}
.x6f_c00299{left:226.400000pt;}
.x67_c00299{left:227.733333pt;}
.x5_c00299{left:228.800000pt;}
.x108_c00299{left:231.066667pt;}
.x27_c00299{left:232.533333pt;}
.x5a_c00299{left:234.933333pt;}
.x13a_c00299{left:237.066667pt;}
.x7a_c00299{left:238.133333pt;}
.x70_c00299{left:239.866667pt;}
.xd1_c00299{left:242.266667pt;}
.x136_c00299{left:243.600000pt;}
.xe9_c00299{left:244.800000pt;}
.xbf_c00299{left:246.266667pt;}
.xf5_c00299{left:248.266667pt;}
.xb6_c00299{left:249.866667pt;}
.xde_c00299{left:253.200000pt;}
.x8f_c00299{left:254.266667pt;}
.x16_c00299{left:256.400000pt;}
.x6_c00299{left:257.600000pt;}
.x37_c00299{left:259.333333pt;}
.x131_c00299{left:260.400000pt;}
.x9c_c00299{left:261.733333pt;}
.x100_c00299{left:262.800000pt;}
.x44_c00299{left:264.533333pt;}
.x7b_c00299{left:266.000000pt;}
.x50_c00299{left:271.733333pt;}
.x28_c00299{left:272.800000pt;}
.xad_c00299{left:273.866667pt;}
.xa4_c00299{left:274.933333pt;}
.x68_c00299{left:276.666667pt;}
.x121_c00299{left:278.533333pt;}
.x86_c00299{left:279.733333pt;}
.x12d_c00299{left:282.400000pt;}
.x17_c00299{left:284.266667pt;}
.xef_c00299{left:285.466667pt;}
.x118_c00299{left:286.800000pt;}
.xb7_c00299{left:288.533333pt;}
.x7_c00299{left:290.933333pt;}
.x13b_c00299{left:292.133333pt;}
.x101_c00299{left:295.733333pt;}
.x113_c00299{left:298.133333pt;}
.xf6_c00299{left:299.200000pt;}
.x10d_c00299{left:300.133333pt;}
.x69_c00299{left:302.000000pt;}
.x38_c00299{left:305.066667pt;}
.x12e_c00299{left:306.400000pt;}
.x5b_c00299{left:308.266667pt;}
.x45_c00299{left:309.600000pt;}
.xdf_c00299{left:311.066667pt;}
.xea_c00299{left:314.266667pt;}
.xd2_c00299{left:315.866667pt;}
.x119_c00299{left:317.466667pt;}
.x51_c00299{left:319.466667pt;}
.xfa_c00299{left:320.533333pt;}
.x102_c00299{left:322.000000pt;}
.x87_c00299{left:322.933333pt;}
.x137_c00299{left:325.200000pt;}
.xa5_c00299{left:327.466667pt;}
.x90_c00299{left:330.133333pt;}
.x127_c00299{left:331.600000pt;}
.x82_c00299{left:332.933333pt;}
.xc6_c00299{left:334.266667pt;}
.x18_c00299{left:335.733333pt;}
.x29_c00299{left:337.066667pt;}
.x132_c00299{left:338.133333pt;}
.xd3_c00299{left:339.600000pt;}
.x8_c00299{left:340.800000pt;}
.xa6_c00299{left:342.800000pt;}
.xae_c00299{left:345.200000pt;}
.x39_c00299{left:346.933333pt;}
.x88_c00299{left:347.866667pt;}
.x5c_c00299{left:349.600000pt;}
.x1_c00299{left:351.733333pt;}
.xb8_c00299{left:353.733333pt;}
.x12f_c00299{left:355.600000pt;}
.x19_c00299{left:357.866667pt;}
.xeb_c00299{left:359.066667pt;}
.x46_c00299{left:360.533333pt;}
.xa7_c00299{left:363.600000pt;}
.x2a_c00299{left:364.933333pt;}
.x9_c00299{left:366.133333pt;}
.x5d_c00299{left:367.866667pt;}
.x109_c00299{left:370.266667pt;}
.x91_c00299{left:372.800000pt;}
.xf0_c00299{left:375.066667pt;}
.x10e_c00299{left:376.800000pt;}
.x47_c00299{left:379.466667pt;}
.xa_c00299{left:380.800000pt;}
.x6a_c00299{left:382.933333pt;}
.x1a_c00299{left:384.800000pt;}
.x3a_c00299{left:386.666667pt;}
.x125_c00299{left:390.533333pt;}
.x11a_c00299{left:391.600000pt;}
.x71_c00299{left:395.333333pt;}
.x10a_c00299{left:397.733333pt;}
.xb9_c00299{left:399.466667pt;}
.xf7_c00299{left:400.666667pt;}
.x9d_c00299{left:404.266667pt;}
.x2b_c00299{left:405.866667pt;}
.x138_c00299{left:407.066667pt;}
.x52_c00299{left:409.333333pt;}
.xcd_c00299{left:410.400000pt;}
.x92_c00299{left:412.133333pt;}
.xb_c00299{left:413.066667pt;}
.x72_c00299{left:415.200000pt;}
.xc7_c00299{left:416.133333pt;}
.x114_c00299{left:419.066667pt;}
.x126_c00299{left:420.933333pt;}
.x2c_c00299{left:421.866667pt;}
.x7c_c00299{left:423.466667pt;}
.xd4_c00299{left:427.333333pt;}
.x5e_c00299{left:429.866667pt;}
.x89_c00299{left:430.800000pt;}
.xe3_c00299{left:431.733333pt;}
.xce_c00299{left:435.333333pt;}
.x73_c00299{left:436.266667pt;}
.x48_c00299{left:438.000000pt;}
.x7d_c00299{left:439.466667pt;}
.x10f_c00299{left:440.800000pt;}
.x1b_c00299{left:442.133333pt;}
.xc_c00299{left:443.733333pt;}
.xc8_c00299{left:445.200000pt;}
.x83_c00299{left:446.933333pt;}
.x6b_c00299{left:447.866667pt;}
.x115_c00299{left:448.800000pt;}
.x130_c00299{left:451.333333pt;}
.x3b_c00299{left:452.266667pt;}
.xc0_c00299{left:455.200000pt;}
.xfb_c00299{left:456.133333pt;}
.xa8_c00299{left:460.266667pt;}
.x103_c00299{left:461.600000pt;}
.x5f_c00299{left:463.200000pt;}
.xf1_c00299{left:465.200000pt;}
.xe4_c00299{left:467.600000pt;}
.x13c_c00299{left:468.800000pt;}
.x74_c00299{left:469.866667pt;}
.x3c_c00299{left:470.800000pt;}
.x1c_c00299{left:473.200000pt;}
.xd_c00299{left:474.400000pt;}
.xd5_c00299{left:475.600000pt;}
.x93_c00299{left:476.800000pt;}
.x9e_c00299{left:478.533333pt;}
.x2d_c00299{left:479.466667pt;}
.x128_c00299{left:480.400000pt;}
.x110_c00299{left:483.066667pt;}
.x7e_c00299{left:486.533333pt;}
.xfc_c00299{left:487.466667pt;}
.xc9_c00299{left:488.400000pt;}
.xba_c00299{left:489.333333pt;}
.xc1_c00299{left:492.933333pt;}
.x11b_c00299{left:494.400000pt;}
.x9f_c00299{left:496.133333pt;}
.x2e_c00299{left:498.400000pt;}
.xaf_c00299{left:499.733333pt;}
.x13d_c00299{left:501.866667pt;}
.x53_c00299{left:504.400000pt;}
.xe_c00299{left:507.066667pt;}
.x1d_c00299{left:508.400000pt;}
.x2f_c00299{left:509.333333pt;}
.xf2_c00299{left:511.600000pt;}
.x3d_c00299{left:514.000000pt;}
.x75_c00299{left:516.000000pt;}
.x60_c00299{left:518.266667pt;}
.x54_c00299{left:519.733333pt;}
.x129_c00299{left:521.333333pt;}
.x10b_c00299{left:522.800000pt;}
.x122_c00299{left:524.266667pt;}
.x116_c00299{left:525.333333pt;}
.xe5_c00299{left:526.400000pt;}
.x94_c00299{left:530.133333pt;}
.x104_c00299{left:532.133333pt;}
.x1e_c00299{left:534.000000pt;}
.x6c_c00299{left:536.133333pt;}
.x49_c00299{left:538.133333pt;}
.x11c_c00299{left:539.866667pt;}
.x3e_c00299{left:541.866667pt;}
.x61_c00299{left:546.400000pt;}
.x8a_c00299{left:547.333333pt;}
.xf_c00299{left:549.600000pt;}
.xb0_c00299{left:551.600000pt;}
.x30_c00299{left:554.400000pt;}
.xca_c00299{left:556.800000pt;}
.xc2_c00299{left:558.266667pt;}
.xe6_c00299{left:560.266667pt;}
.x133_c00299{left:562.666667pt;}
.x76_c00299{left:564.666667pt;}
.x123_c00299{left:566.400000pt;}
.x7f_c00299{left:568.133333pt;}
.xd6_c00299{left:569.333333pt;}
.x1f_c00299{left:572.400000pt;}
.x95_c00299{left:574.000000pt;}
.xc3_c00299{left:574.933333pt;}
.x10_c00299{left:575.866667pt;}
.xa0_c00299{left:576.800000pt;}
.x11d_c00299{left:578.266667pt;}
.x62_c00299{left:582.266667pt;}
.xb1_c00299{left:584.933333pt;}
.xd7_c00299{left:586.266667pt;}
.xec_c00299{left:587.466667pt;}
.x20_c00299{left:589.066667pt;}
.x8b_c00299{left:590.000000pt;}
.x4a_c00299{left:591.866667pt;}
.x80_c00299{left:593.733333pt;}
.x111_c00299{left:595.333333pt;}
.x55_c00299{left:596.533333pt;}
.xbb_c00299{left:598.800000pt;}
.x63_c00299{left:600.133333pt;}
.x96_c00299{left:602.533333pt;}
.x11_c00299{left:604.000000pt;}
.x31_c00299{left:605.600000pt;}
.xfd_c00299{left:607.733333pt;}
.x139_c00299{left:610.000000pt;}
.x4b_c00299{left:613.333333pt;}
.xed_c00299{left:614.666667pt;}
.xcb_c00299{left:616.000000pt;}
.x21_c00299{left:616.933333pt;}
.x3f_c00299{left:618.666667pt;}
.xf3_c00299{left:620.400000pt;}
.x64_c00299{left:621.600000pt;}
.x134_c00299{left:627.333333pt;}
.x8c_c00299{left:629.333333pt;}
.xa9_c00299{left:631.333333pt;}
.xc4_c00299{left:634.133333pt;}
.x32_c00299{left:635.066667pt;}
.x4c_c00299{left:638.266667pt;}
.x124_c00299{left:639.333333pt;}
.xdb_c00299{left:640.800000pt;}
.x40_c00299{left:642.400000pt;}
.x6d_c00299{left:644.400000pt;}
.x8d_c00299{left:646.933333pt;}
.xfe_c00299{left:648.400000pt;}
.x22_c00299{left:650.533333pt;}
.xbc_c00299{left:653.200000pt;}
.x56_c00299{left:654.400000pt;}
.x41_c00299{left:656.800000pt;}
.xdc_c00299{left:659.066667pt;}
.xee_c00299{left:660.800000pt;}
.x2_c00299{left:661.866667pt;}
.xa1_c00299{left:663.600000pt;}
.x97_c00299{left:664.666667pt;}
.x33_c00299{left:666.400000pt;}
.x77_c00299{left:668.666667pt;}
.xff_c00299{left:671.066667pt;}
.x135_c00299{left:672.800000pt;}
.x12_c00299{left:674.133333pt;}
.x6e_c00299{left:675.466667pt;}
}





/* 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_c00300 {
    display:none;
  }
  .loading-indicator_c00300.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00300 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_c00300 { 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_c00300" -> "#page-container .classname_c00300")
 */
.pf_c00300 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00300 { /* 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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00300 { /* 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_c00300 { /* 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_c00300 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00300 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00300 {overflow:visible;}
  }
}
.c_c00300 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00300 { /* 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_c00300:after { /* webkit #35443 */
  content: '';
}
.t_c00300:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00300 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 */
}
.__c00300 { /* 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_c00300 { /* info for Javascript */
  display:none;
}
.l_c00300 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00300 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00300 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00300: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_c00300 {
    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_c00300.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00300.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_c00300 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00300{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00300;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.000000;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;}
.m23_c00300{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00300{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00300{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00300{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m48_c00300{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m81_c00300{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m33_c00300{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c00300{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m24_c00300{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m56_c00300{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m76_c00300{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00300{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m25_c00300{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00300{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00300{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m69_c00300{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m88_c00300{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m92_c00300{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00300{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m19_c00300{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00300{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m61_c00300{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00300{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m57_c00300{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00300{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2_c00300{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m90_c00300{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00300{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m22_c00300{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00300{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00300{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m86_c00300{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00300{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00300{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00300{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mc_c00300{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m29_c00300{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00300{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10_c00300{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00300{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m21_c00300{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m82_c00300{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00300{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8_c00300{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00300{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m72_c00300{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6_c00300{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00300{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m78_c00300{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m85_c00300{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m99_c00300{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m54_c00300{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m41_c00300{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00300{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00300{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00300{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m95_c00300{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m47_c00300{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m34_c00300{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00300{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m16_c00300{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00300{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00300{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m98_c00300{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00300{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m93_c00300{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00300{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00300{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m44_c00300{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00300{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m42_c00300{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00300{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00300{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00300{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m49_c00300{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m17_c00300{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m50_c00300{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m74_c00300{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00300{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m30_c00300{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m89_c00300{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m31_c00300{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3_c00300{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m96_c00300{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00300{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m71_c00300{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00300{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00300{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma_c00300{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00300{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00300{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m84_c00300{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m18_c00300{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00300{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00300{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00300{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00300{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m39_c00300{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12_c00300{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00300{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m91_c00300{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m27_c00300{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00300{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m45_c00300{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m14_c00300{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m70_c00300{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m55_c00300{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m52_c00300{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00300{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00300{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m68_c00300{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m66_c00300{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00300{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m26_c00300{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00300{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m73_c00300{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00300{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00300{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m94_c00300{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00300{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00300{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00300{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m40_c00300{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m36_c00300{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m32_c00300{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00300{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m43_c00300{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m51_c00300{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00300{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00300{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m64_c00300{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md_c00300{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00300{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me_c00300{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m80_c00300{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m62_c00300{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00300{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m65_c00300{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb_c00300{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00300{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m79_c00300{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m75_c00300{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00300{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m83_c00300{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00300{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00300{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m59_c00300{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m0_c00300{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m87_c00300{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00300{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m38_c00300{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00300{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00300{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m60_c00300{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00300{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1_c00300{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m37_c00300{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00300{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00300{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00300{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00300{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00300{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00300{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00300{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m20_c00300{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00300{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00300{vertical-align:0.000000px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{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__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00300{word-spacing:-13.611111px;}
.ws3_c00300{word-spacing:-6.818182px;}
.ws4_c00300{word-spacing:-5.476190px;}
.ws2_c00300{word-spacing:-3.529412px;}
.wse_c00300{word-spacing:0.000000px;}
.wsc_c00300{word-spacing:5.277778px;}
.ws8_c00300{word-spacing:6.315789px;}
.wsa_c00300{word-spacing:8.055556px;}
.ws0_c00300{word-spacing:10.128056px;}
.ws7_c00300{word-spacing:10.138889px;}
.ws6_c00300{word-spacing:11.875000px;}
.wsb_c00300{word-spacing:12.058824px;}
.wsd_c00300{word-spacing:15.000000px;}
.ws9_c00300{word-spacing:15.303030px;}
.ws5_c00300{word-spacing:22.962963px;}
.fc0_c00300{color:transparent;}
.fs0_c00300{font-size:60.000000px;}
.y0_c00300{bottom:0.000000px;}
.y2d_c00300{bottom:146.100000px;}
.y2c_c00300{bottom:173.550000px;}
.y2b_c00300{bottom:193.350000px;}
.y2a_c00300{bottom:213.450000px;}
.y29_c00300{bottom:233.250000px;}
.y28_c00300{bottom:256.950000px;}
.y27_c00300{bottom:272.850000px;}
.y26_c00300{bottom:292.350000px;}
.y25_c00300{bottom:312.450000px;}
.y24_c00300{bottom:332.250000px;}
.y23_c00300{bottom:351.900000px;}
.y22_c00300{bottom:372.000000px;}
.y21_c00300{bottom:391.800000px;}
.y20_c00300{bottom:411.900000px;}
.y1f_c00300{bottom:431.400000px;}
.y1e_c00300{bottom:451.500000px;}
.y1d_c00300{bottom:471.600000px;}
.y1c_c00300{bottom:491.400000px;}
.y1b_c00300{bottom:511.200000px;}
.y1a_c00300{bottom:531.000000px;}
.y19_c00300{bottom:551.100000px;}
.y18_c00300{bottom:570.900000px;}
.y17_c00300{bottom:590.400000px;}
.y16_c00300{bottom:610.200000px;}
.y15_c00300{bottom:630.000000px;}
.y14_c00300{bottom:650.100000px;}
.y13_c00300{bottom:669.900000px;}
.y12_c00300{bottom:690.300000px;}
.y11_c00300{bottom:710.400000px;}
.y10_c00300{bottom:730.200000px;}
.yf_c00300{bottom:750.000000px;}
.ye_c00300{bottom:770.100000px;}
.yd_c00300{bottom:789.900000px;}
.yc_c00300{bottom:810.000000px;}
.yb_c00300{bottom:830.100000px;}
.ya_c00300{bottom:849.750000px;}
.y9_c00300{bottom:869.850000px;}
.y8_c00300{bottom:889.650000px;}
.y7_c00300{bottom:909.450000px;}
.y6_c00300{bottom:929.550000px;}
.y5_c00300{bottom:949.350000px;}
.y4_c00300{bottom:969.600000px;}
.y3_c00300{bottom:989.400000px;}
.y2_c00300{bottom:1009.500000px;}
.y1_c00300{bottom:1047.900000px;}
.h2_c00300{height:60.000000px;}
.h0_c00300{height:1166.759949px;}
.h1_c00300{height:1167.000000px;}
.w1_c00300{width:913.500000px;}
.w0_c00300{width:913.679993px;}
.x0_c00300{left:0.000000px;}
.x13d_c00300{left:138.000000px;}
.x10e_c00300{left:139.650000px;}
.xfc_c00300{left:140.700000px;}
.xb3_c00300{left:141.750000px;}
.x77_c00300{left:142.800000px;}
.x43_c00300{left:143.850000px;}
.x3_c00300{left:145.050000px;}
.x1_c00300{left:146.850000px;}
.x12e_c00300{left:156.450000px;}
.x13e_c00300{left:157.500000px;}
.x4c_c00300{left:159.000000px;}
.xec_c00300{left:162.150000px;}
.x4_c00300{left:165.150000px;}
.x78_c00300{left:167.250000px;}
.x137_c00300{left:168.300000px;}
.x119_c00300{left:169.800000px;}
.x69_c00300{left:171.600000px;}
.xc7_c00300{left:173.550000px;}
.x7d_c00300{left:174.900000px;}
.x34_c00300{left:176.400000px;}
.xc2_c00300{left:177.900000px;}
.x11d_c00300{left:179.100000px;}
.x59_c00300{left:182.250000px;}
.xe5_c00300{left:183.450000px;}
.xc8_c00300{left:185.100000px;}
.x35_c00300{left:186.450000px;}
.x44_c00300{left:190.200000px;}
.x25_c00300{left:191.850000px;}
.x16_c00300{left:193.500000px;}
.xed_c00300{left:194.550000px;}
.x4d_c00300{left:197.850000px;}
.x6a_c00300{left:199.650000px;}
.xaa_c00300{left:202.050000px;}
.x94_c00300{left:205.200000px;}
.x5_c00300{left:207.300000px;}
.x13f_c00300{left:210.000000px;}
.xf6_c00300{left:211.050000px;}
.x111_c00300{left:212.700000px;}
.x89_c00300{left:214.350000px;}
.x11f_c00300{left:216.300000px;}
.xba_c00300{left:218.400000px;}
.xe6_c00300{left:220.200000px;}
.xee_c00300{left:221.550000px;}
.x5a_c00300{left:223.650000px;}
.x7e_c00300{left:226.800000px;}
.x138_c00300{left:228.000000px;}
.x4e_c00300{left:230.550000px;}
.x95_c00300{left:231.900000px;}
.x100_c00300{left:234.000000px;}
.x6_c00300{left:235.050000px;}
.x125_c00300{left:236.400000px;}
.xb4_c00300{left:237.600000px;}
.x144_c00300{left:239.700000px;}
.xf7_c00300{left:241.650000px;}
.x79_c00300{left:242.850000px;}
.x11e_c00300{left:244.650000px;}
.xde_c00300{left:247.350000px;}
.x26_c00300{left:248.400000px;}
.xa2_c00300{left:251.850000px;}
.x45_c00300{left:252.900000px;}
.x5b_c00300{left:255.300000px;}
.x17_c00300{left:257.550000px;}
.xc9_c00300{left:259.950000px;}
.x36_c00300{left:261.300000px;}
.xd0_c00300{left:264.450000px;}
.x14a_c00300{left:265.950000px;}
.x8a_c00300{left:267.150000px;}
.x6b_c00300{left:269.850000px;}
.x7a_c00300{left:271.350000px;}
.x112_c00300{left:272.400000px;}
.xc3_c00300{left:274.350000px;}
.x146_c00300{left:275.400000px;}
.x126_c00300{left:277.500000px;}
.xd7_c00300{left:278.700000px;}
.xca_c00300{left:280.050000px;}
.x4f_c00300{left:281.250000px;}
.x27_c00300{left:283.350000px;}
.xb5_c00300{left:285.450000px;}
.xe7_c00300{left:289.350000px;}
.xef_c00300{left:290.400000px;}
.x7f_c00300{left:291.900000px;}
.x122_c00300{left:293.700000px;}
.x5c_c00300{left:295.650000px;}
.x7_c00300{left:297.000000px;}
.x18_c00300{left:298.650000px;}
.x105_c00300{left:300.450000px;}
.x37_c00300{left:301.650000px;}
.x12f_c00300{left:302.850000px;}
.x147_c00300{left:307.500000px;}
.x28_c00300{left:309.300000px;}
.xdf_c00300{left:312.450000px;}
.x120_c00300{left:313.500000px;}
.x127_c00300{left:316.050000px;}
.x8_c00300{left:317.100000px;}
.x113_c00300{left:318.600000px;}
.x6c_c00300{left:320.550000px;}
.x8b_c00300{left:322.650000px;}
.x96_c00300{left:323.700000px;}
.xa3_c00300{left:325.350000px;}
.x46_c00300{left:327.450000px;}
.x141_c00300{left:328.950000px;}
.x19_c00300{left:332.850000px;}
.x106_c00300{left:335.700000px;}
.x50_c00300{left:337.800000px;}
.x7b_c00300{left:339.750000px;}
.x130_c00300{left:342.450000px;}
.x8c_c00300{left:343.950000px;}
.x9_c00300{left:346.200000px;}
.x38_c00300{left:348.450000px;}
.xab_c00300{left:351.000000px;}
.x80_c00300{left:353.100000px;}
.x29_c00300{left:354.600000px;}
.xb6_c00300{left:355.950000px;}
.x11a_c00300{left:357.750000px;}
.x7c_c00300{left:359.550000px;}
.xc4_c00300{left:362.850000px;}
.xa4_c00300{left:364.650000px;}
.xd8_c00300{left:367.500000px;}
.x1a_c00300{left:368.850000px;}
.xbb_c00300{left:370.950000px;}
.x51_c00300{left:372.000000px;}
.x121_c00300{left:374.400000px;}
.x47_c00300{left:376.350000px;}
.x97_c00300{left:379.200000px;}
.xd1_c00300{left:380.700000px;}
.x131_c00300{left:382.050000px;}
.xf8_c00300{left:383.250000px;}
.x2a_c00300{left:384.450000px;}
.x128_c00300{left:387.000000px;}
.x108_c00300{left:389.850000px;}
.x6d_c00300{left:391.500000px;}
.x1b_c00300{left:392.550000px;}
.x114_c00300{left:396.000000px;}
.x5d_c00300{left:397.050000px;}
.x98_c00300{left:399.000000px;}
.xe0_c00300{left:400.650000px;}
.x101_c00300{left:402.150000px;}
.xc5_c00300{left:403.950000px;}
.xa_c00300{left:405.300000px;}
.xe8_c00300{left:407.550000px;}
.x2b_c00300{left:409.650000px;}
.xb7_c00300{left:412.500000px;}
.x2c_c00300{left:416.100000px;}
.x5e_c00300{left:417.900000px;}
.xac_c00300{left:419.700000px;}
.xf0_c00300{left:423.750000px;}
.x99_c00300{left:425.250000px;}
.x6e_c00300{left:426.450000px;}
.xe9_c00300{left:428.850000px;}
.x39_c00300{left:431.700000px;}
.x115_c00300{left:432.750000px;}
.x139_c00300{left:433.950000px;}
.xcb_c00300{left:435.000000px;}
.xb_c00300{left:436.650000px;}
.xa5_c00300{left:438.900000px;}
.xfd_c00300{left:440.550000px;}
.x2_c00300{left:442.800000px;}
.x5f_c00300{left:444.600000px;}
.xe1_c00300{left:448.500000px;}
.x132_c00300{left:451.500000px;}
.x8d_c00300{left:452.550000px;}
.xea_c00300{left:454.050000px;}
.xad_c00300{left:456.000000px;}
.x14b_c00300{left:458.850000px;}
.x48_c00300{left:462.000000px;}
.x9a_c00300{left:464.100000px;}
.x3a_c00300{left:466.200000px;}
.x2d_c00300{left:468.300000px;}
.x60_c00300{left:472.350000px;}
.xe2_c00300{left:475.800000px;}
.xf9_c00300{left:477.900000px;}
.xbc_c00300{left:480.450000px;}
.x6f_c00300{left:481.500000px;}
.xa6_c00300{left:484.950000px;}
.x133_c00300{left:486.450000px;}
.x52_c00300{left:487.950000px;}
.xd9_c00300{left:489.150000px;}
.xae_c00300{left:490.500000px;}
.xc_c00300{left:491.700000px;}
.xf1_c00300{left:494.400000px;}
.x2e_c00300{left:496.350000px;}
.x81_c00300{left:498.900000px;}
.x8e_c00300{left:501.900000px;}
.x61_c00300{left:504.000000px;}
.xfe_c00300{left:506.400000px;}
.x107_c00300{left:508.950000px;}
.x9b_c00300{left:511.200000px;}
.x148_c00300{left:513.300000px;}
.xd_c00300{left:515.100000px;}
.x109_c00300{left:517.650000px;}
.x3b_c00300{left:520.950000px;}
.x2f_c00300{left:523.050000px;}
.x1c_c00300{left:525.000000px;}
.xff_c00300{left:526.200000px;}
.x70_c00300{left:528.600000px;}
.x134_c00300{left:530.400000px;}
.x8f_c00300{left:531.450000px;}
.x102_c00300{left:532.800000px;}
.xe_c00300{left:534.600000px;}
.x142_c00300{left:536.250000px;}
.xfa_c00300{left:538.650000px;}
.x129_c00300{left:540.000000px;}
.x82_c00300{left:541.050000px;}
.x9c_c00300{left:542.100000px;}
.x3c_c00300{left:544.650000px;}
.x10a_c00300{left:546.450000px;}
.x30_c00300{left:548.250000px;}
.x10f_c00300{left:551.100000px;}
.x14c_c00300{left:557.100000px;}
.xb8_c00300{left:558.300000px;}
.x1d_c00300{left:561.000000px;}
.xf2_c00300{left:562.050000px;}
.xf_c00300{left:564.450000px;}
.x53_c00300{left:565.650000px;}
.xbd_c00300{left:567.150000px;}
.xcc_c00300{left:568.950000px;}
.x83_c00300{left:570.900000px;}
.x71_c00300{left:573.300000px;}
.xe3_c00300{left:575.850000px;}
.x62_c00300{left:579.900000px;}
.x90_c00300{left:581.850000px;}
.xd2_c00300{left:583.500000px;}
.x9d_c00300{left:585.600000px;}
.x3d_c00300{left:587.550000px;}
.x1e_c00300{left:589.050000px;}
.xda_c00300{left:590.100000px;}
.xc6_c00300{left:591.450000px;}
.x49_c00300{left:594.450000px;}
.x116_c00300{left:597.450000px;}
.x84_c00300{left:599.400000px;}
.x11b_c00300{left:601.350000px;}
.x10_c00300{left:603.300000px;}
.x3e_c00300{left:606.600000px;}
.xa7_c00300{left:608.100000px;}
.x63_c00300{left:609.750000px;}
.x9e_c00300{left:613.350000px;}
.x91_c00300{left:617.100000px;}
.x72_c00300{left:619.350000px;}
.xbe_c00300{left:620.400000px;}
.x1f_c00300{left:622.200000px;}
.x54_c00300{left:623.250000px;}
.x123_c00300{left:624.750000px;}
.xd3_c00300{left:625.950000px;}
.xdb_c00300{left:627.600000px;}
.xaf_c00300{left:629.850000px;}
.x135_c00300{left:630.900000px;}
.xfb_c00300{left:632.550000px;}
.x11_c00300{left:634.650000px;}
.x117_c00300{left:636.000000px;}
.x31_c00300{left:637.200000px;}
.xdc_c00300{left:638.700000px;}
.x20_c00300{left:641.250000px;}
.x64_c00300{left:643.200000px;}
.xa8_c00300{left:644.400000px;}
.x124_c00300{left:646.050000px;}
.xd4_c00300{left:647.850000px;}
.x149_c00300{left:649.800000px;}
.xf3_c00300{left:652.050000px;}
.x13a_c00300{left:653.250000px;}
.x65_c00300{left:654.300000px;}
.x73_c00300{left:658.650000px;}
.x92_c00300{left:660.600000px;}
.x10b_c00300{left:661.650000px;}
.x9f_c00300{left:663.450000px;}
.xbf_c00300{left:664.950000px;}
.x3f_c00300{left:666.000000px;}
.x110_c00300{left:668.550000px;}
.x12a_c00300{left:669.750000px;}
.x32_c00300{left:672.450000px;}
.x85_c00300{left:674.700000px;}
.x21_c00300{left:676.200000px;}
.x145_c00300{left:679.500000px;}
.x66_c00300{left:683.400000px;}
.x74_c00300{left:686.700000px;}
.xd5_c00300{left:688.200000px;}
.xb0_c00300{left:689.550000px;}
.x12_c00300{left:690.750000px;}
.x4a_c00300{left:693.450000px;}
.xc0_c00300{left:694.500000px;}
.x67_c00300{left:696.300000px;}
.x33_c00300{left:697.950000px;}
.x55_c00300{left:700.650000px;}
.xf4_c00300{left:702.450000px;}
.x93_c00300{left:704.100000px;}
.xdd_c00300{left:706.350000px;}
.x10c_c00300{left:710.250000px;}
.x22_c00300{left:711.900000px;}
.xe4_c00300{left:713.100000px;}
.x75_c00300{left:715.800000px;}
.x13b_c00300{left:717.750000px;}
.xcd_c00300{left:720.450000px;}
.x56_c00300{left:721.950000px;}
.xeb_c00300{left:723.450000px;}
.x40_c00300{left:725.700000px;}
.x11c_c00300{left:727.050000px;}
.xb9_c00300{left:728.550000px;}
.x13_c00300{left:730.350000px;}
.x103_c00300{left:732.300000px;}
.x140_c00300{left:733.350000px;}
.xb1_c00300{left:735.300000px;}
.x12c_c00300{left:736.800000px;}
.x86_c00300{left:740.250000px;}
.xd6_c00300{left:741.450000px;}
.x76_c00300{left:744.300000px;}
.x41_c00300{left:746.550000px;}
.xc1_c00300{left:748.800000px;}
.x143_c00300{left:753.300000px;}
.x136_c00300{left:756.300000px;}
.xa0_c00300{left:757.350000px;}
.x10d_c00300{left:759.900000px;}
.x14_c00300{left:761.250000px;}
.x104_c00300{left:762.900000px;}
.x4b_c00300{left:764.100000px;}
.x12d_c00300{left:765.600000px;}
.xce_c00300{left:766.950000px;}
.xf5_c00300{left:768.300000px;}
.x57_c00300{left:769.800000px;}
.x87_c00300{left:771.150000px;}
.x12b_c00300{left:772.650000px;}
.x42_c00300{left:774.600000px;}
.x15_c00300{left:775.950000px;}
.xa1_c00300{left:777.450000px;}
.x23_c00300{left:778.500000px;}
.xa9_c00300{left:780.000000px;}
.x24_c00300{left:785.400000px;}
.xcf_c00300{left:787.800000px;}
.x88_c00300{left:788.850000px;}
.x68_c00300{left:790.350000px;}
.x118_c00300{left:793.200000px;}
.xb2_c00300{left:795.450000px;}
.x13c_c00300{left:797.550000px;}
.x58_c00300{left:802.950000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws1_c00300{word-spacing:-12.098765pt;}
.ws3_c00300{word-spacing:-6.060606pt;}
.ws4_c00300{word-spacing:-4.867725pt;}
.ws2_c00300{word-spacing:-3.137255pt;}
.wse_c00300{word-spacing:0.000000pt;}
.wsc_c00300{word-spacing:4.691358pt;}
.ws8_c00300{word-spacing:5.614035pt;}
.wsa_c00300{word-spacing:7.160494pt;}
.ws0_c00300{word-spacing:9.002716pt;}
.ws7_c00300{word-spacing:9.012346pt;}
.ws6_c00300{word-spacing:10.555556pt;}
.wsb_c00300{word-spacing:10.718954pt;}
.wsd_c00300{word-spacing:13.333333pt;}
.ws9_c00300{word-spacing:13.602694pt;}
.ws5_c00300{word-spacing:20.411523pt;}
.fs0_c00300{font-size:53.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y2d_c00300{bottom:129.866667pt;}
.y2c_c00300{bottom:154.266667pt;}
.y2b_c00300{bottom:171.866667pt;}
.y2a_c00300{bottom:189.733333pt;}
.y29_c00300{bottom:207.333333pt;}
.y28_c00300{bottom:228.400000pt;}
.y27_c00300{bottom:242.533333pt;}
.y26_c00300{bottom:259.866667pt;}
.y25_c00300{bottom:277.733333pt;}
.y24_c00300{bottom:295.333333pt;}
.y23_c00300{bottom:312.800000pt;}
.y22_c00300{bottom:330.666667pt;}
.y21_c00300{bottom:348.266667pt;}
.y20_c00300{bottom:366.133333pt;}
.y1f_c00300{bottom:383.466667pt;}
.y1e_c00300{bottom:401.333333pt;}
.y1d_c00300{bottom:419.200000pt;}
.y1c_c00300{bottom:436.800000pt;}
.y1b_c00300{bottom:454.400000pt;}
.y1a_c00300{bottom:472.000000pt;}
.y19_c00300{bottom:489.866667pt;}
.y18_c00300{bottom:507.466667pt;}
.y17_c00300{bottom:524.800000pt;}
.y16_c00300{bottom:542.400000pt;}
.y15_c00300{bottom:560.000000pt;}
.y14_c00300{bottom:577.866667pt;}
.y13_c00300{bottom:595.466667pt;}
.y12_c00300{bottom:613.600000pt;}
.y11_c00300{bottom:631.466667pt;}
.y10_c00300{bottom:649.066667pt;}
.yf_c00300{bottom:666.666667pt;}
.ye_c00300{bottom:684.533333pt;}
.yd_c00300{bottom:702.133333pt;}
.yc_c00300{bottom:720.000000pt;}
.yb_c00300{bottom:737.866667pt;}
.ya_c00300{bottom:755.333333pt;}
.y9_c00300{bottom:773.200000pt;}
.y8_c00300{bottom:790.800000pt;}
.y7_c00300{bottom:808.400000pt;}
.y6_c00300{bottom:826.266667pt;}
.y5_c00300{bottom:843.866667pt;}
.y4_c00300{bottom:861.866667pt;}
.y3_c00300{bottom:879.466667pt;}
.y2_c00300{bottom:897.333333pt;}
.y1_c00300{bottom:931.466667pt;}
.h2_c00300{height:53.333333pt;}
.h0_c00300{height:1037.119955pt;}
.h1_c00300{height:1037.333333pt;}
.w1_c00300{width:812.000000pt;}
.w0_c00300{width:812.159993pt;}
.x0_c00300{left:0.000000pt;}
.x13d_c00300{left:122.666667pt;}
.x10e_c00300{left:124.133333pt;}
.xfc_c00300{left:125.066667pt;}
.xb3_c00300{left:126.000000pt;}
.x77_c00300{left:126.933333pt;}
.x43_c00300{left:127.866667pt;}
.x3_c00300{left:128.933333pt;}
.x1_c00300{left:130.533333pt;}
.x12e_c00300{left:139.066667pt;}
.x13e_c00300{left:140.000000pt;}
.x4c_c00300{left:141.333333pt;}
.xec_c00300{left:144.133333pt;}
.x4_c00300{left:146.800000pt;}
.x78_c00300{left:148.666667pt;}
.x137_c00300{left:149.600000pt;}
.x119_c00300{left:150.933333pt;}
.x69_c00300{left:152.533333pt;}
.xc7_c00300{left:154.266667pt;}
.x7d_c00300{left:155.466667pt;}
.x34_c00300{left:156.800000pt;}
.xc2_c00300{left:158.133333pt;}
.x11d_c00300{left:159.200000pt;}
.x59_c00300{left:162.000000pt;}
.xe5_c00300{left:163.066667pt;}
.xc8_c00300{left:164.533333pt;}
.x35_c00300{left:165.733333pt;}
.x44_c00300{left:169.066667pt;}
.x25_c00300{left:170.533333pt;}
.x16_c00300{left:172.000000pt;}
.xed_c00300{left:172.933333pt;}
.x4d_c00300{left:175.866667pt;}
.x6a_c00300{left:177.466667pt;}
.xaa_c00300{left:179.600000pt;}
.x94_c00300{left:182.400000pt;}
.x5_c00300{left:184.266667pt;}
.x13f_c00300{left:186.666667pt;}
.xf6_c00300{left:187.600000pt;}
.x111_c00300{left:189.066667pt;}
.x89_c00300{left:190.533333pt;}
.x11f_c00300{left:192.266667pt;}
.xba_c00300{left:194.133333pt;}
.xe6_c00300{left:195.733333pt;}
.xee_c00300{left:196.933333pt;}
.x5a_c00300{left:198.800000pt;}
.x7e_c00300{left:201.600000pt;}
.x138_c00300{left:202.666667pt;}
.x4e_c00300{left:204.933333pt;}
.x95_c00300{left:206.133333pt;}
.x100_c00300{left:208.000000pt;}
.x6_c00300{left:208.933333pt;}
.x125_c00300{left:210.133333pt;}
.xb4_c00300{left:211.200000pt;}
.x144_c00300{left:213.066667pt;}
.xf7_c00300{left:214.800000pt;}
.x79_c00300{left:215.866667pt;}
.x11e_c00300{left:217.466667pt;}
.xde_c00300{left:219.866667pt;}
.x26_c00300{left:220.800000pt;}
.xa2_c00300{left:223.866667pt;}
.x45_c00300{left:224.800000pt;}
.x5b_c00300{left:226.933333pt;}
.x17_c00300{left:228.933333pt;}
.xc9_c00300{left:231.066667pt;}
.x36_c00300{left:232.266667pt;}
.xd0_c00300{left:235.066667pt;}
.x14a_c00300{left:236.400000pt;}
.x8a_c00300{left:237.466667pt;}
.x6b_c00300{left:239.866667pt;}
.x7a_c00300{left:241.200000pt;}
.x112_c00300{left:242.133333pt;}
.xc3_c00300{left:243.866667pt;}
.x146_c00300{left:244.800000pt;}
.x126_c00300{left:246.666667pt;}
.xd7_c00300{left:247.733333pt;}
.xca_c00300{left:248.933333pt;}
.x4f_c00300{left:250.000000pt;}
.x27_c00300{left:251.866667pt;}
.xb5_c00300{left:253.733333pt;}
.xe7_c00300{left:257.200000pt;}
.xef_c00300{left:258.133333pt;}
.x7f_c00300{left:259.466667pt;}
.x122_c00300{left:261.066667pt;}
.x5c_c00300{left:262.800000pt;}
.x7_c00300{left:264.000000pt;}
.x18_c00300{left:265.466667pt;}
.x105_c00300{left:267.066667pt;}
.x37_c00300{left:268.133333pt;}
.x12f_c00300{left:269.200000pt;}
.x147_c00300{left:273.333333pt;}
.x28_c00300{left:274.933333pt;}
.xdf_c00300{left:277.733333pt;}
.x120_c00300{left:278.666667pt;}
.x127_c00300{left:280.933333pt;}
.x8_c00300{left:281.866667pt;}
.x113_c00300{left:283.200000pt;}
.x6c_c00300{left:284.933333pt;}
.x8b_c00300{left:286.800000pt;}
.x96_c00300{left:287.733333pt;}
.xa3_c00300{left:289.200000pt;}
.x46_c00300{left:291.066667pt;}
.x141_c00300{left:292.400000pt;}
.x19_c00300{left:295.866667pt;}
.x106_c00300{left:298.400000pt;}
.x50_c00300{left:300.266667pt;}
.x7b_c00300{left:302.000000pt;}
.x130_c00300{left:304.400000pt;}
.x8c_c00300{left:305.733333pt;}
.x9_c00300{left:307.733333pt;}
.x38_c00300{left:309.733333pt;}
.xab_c00300{left:312.000000pt;}
.x80_c00300{left:313.866667pt;}
.x29_c00300{left:315.200000pt;}
.xb6_c00300{left:316.400000pt;}
.x11a_c00300{left:318.000000pt;}
.x7c_c00300{left:319.600000pt;}
.xc4_c00300{left:322.533333pt;}
.xa4_c00300{left:324.133333pt;}
.xd8_c00300{left:326.666667pt;}
.x1a_c00300{left:327.866667pt;}
.xbb_c00300{left:329.733333pt;}
.x51_c00300{left:330.666667pt;}
.x121_c00300{left:332.800000pt;}
.x47_c00300{left:334.533333pt;}
.x97_c00300{left:337.066667pt;}
.xd1_c00300{left:338.400000pt;}
.x131_c00300{left:339.600000pt;}
.xf8_c00300{left:340.666667pt;}
.x2a_c00300{left:341.733333pt;}
.x128_c00300{left:344.000000pt;}
.x108_c00300{left:346.533333pt;}
.x6d_c00300{left:348.000000pt;}
.x1b_c00300{left:348.933333pt;}
.x114_c00300{left:352.000000pt;}
.x5d_c00300{left:352.933333pt;}
.x98_c00300{left:354.666667pt;}
.xe0_c00300{left:356.133333pt;}
.x101_c00300{left:357.466667pt;}
.xc5_c00300{left:359.066667pt;}
.xa_c00300{left:360.266667pt;}
.xe8_c00300{left:362.266667pt;}
.x2b_c00300{left:364.133333pt;}
.xb7_c00300{left:366.666667pt;}
.x2c_c00300{left:369.866667pt;}
.x5e_c00300{left:371.466667pt;}
.xac_c00300{left:373.066667pt;}
.xf0_c00300{left:376.666667pt;}
.x99_c00300{left:378.000000pt;}
.x6e_c00300{left:379.066667pt;}
.xe9_c00300{left:381.200000pt;}
.x39_c00300{left:383.733333pt;}
.x115_c00300{left:384.666667pt;}
.x139_c00300{left:385.733333pt;}
.xcb_c00300{left:386.666667pt;}
.xb_c00300{left:388.133333pt;}
.xa5_c00300{left:390.133333pt;}
.xfd_c00300{left:391.600000pt;}
.x2_c00300{left:393.600000pt;}
.x5f_c00300{left:395.200000pt;}
.xe1_c00300{left:398.666667pt;}
.x132_c00300{left:401.333333pt;}
.x8d_c00300{left:402.266667pt;}
.xea_c00300{left:403.600000pt;}
.xad_c00300{left:405.333333pt;}
.x14b_c00300{left:407.866667pt;}
.x48_c00300{left:410.666667pt;}
.x9a_c00300{left:412.533333pt;}
.x3a_c00300{left:414.400000pt;}
.x2d_c00300{left:416.266667pt;}
.x60_c00300{left:419.866667pt;}
.xe2_c00300{left:422.933333pt;}
.xf9_c00300{left:424.800000pt;}
.xbc_c00300{left:427.066667pt;}
.x6f_c00300{left:428.000000pt;}
.xa6_c00300{left:431.066667pt;}
.x133_c00300{left:432.400000pt;}
.x52_c00300{left:433.733333pt;}
.xd9_c00300{left:434.800000pt;}
.xae_c00300{left:436.000000pt;}
.xc_c00300{left:437.066667pt;}
.xf1_c00300{left:439.466667pt;}
.x2e_c00300{left:441.200000pt;}
.x81_c00300{left:443.466667pt;}
.x8e_c00300{left:446.133333pt;}
.x61_c00300{left:448.000000pt;}
.xfe_c00300{left:450.133333pt;}
.x107_c00300{left:452.400000pt;}
.x9b_c00300{left:454.400000pt;}
.x148_c00300{left:456.266667pt;}
.xd_c00300{left:457.866667pt;}
.x109_c00300{left:460.133333pt;}
.x3b_c00300{left:463.066667pt;}
.x2f_c00300{left:464.933333pt;}
.x1c_c00300{left:466.666667pt;}
.xff_c00300{left:467.733333pt;}
.x70_c00300{left:469.866667pt;}
.x134_c00300{left:471.466667pt;}
.x8f_c00300{left:472.400000pt;}
.x102_c00300{left:473.600000pt;}
.xe_c00300{left:475.200000pt;}
.x142_c00300{left:476.666667pt;}
.xfa_c00300{left:478.800000pt;}
.x129_c00300{left:480.000000pt;}
.x82_c00300{left:480.933333pt;}
.x9c_c00300{left:481.866667pt;}
.x3c_c00300{left:484.133333pt;}
.x10a_c00300{left:485.733333pt;}
.x30_c00300{left:487.333333pt;}
.x10f_c00300{left:489.866667pt;}
.x14c_c00300{left:495.200000pt;}
.xb8_c00300{left:496.266667pt;}
.x1d_c00300{left:498.666667pt;}
.xf2_c00300{left:499.600000pt;}
.xf_c00300{left:501.733333pt;}
.x53_c00300{left:502.800000pt;}
.xbd_c00300{left:504.133333pt;}
.xcc_c00300{left:505.733333pt;}
.x83_c00300{left:507.466667pt;}
.x71_c00300{left:509.600000pt;}
.xe3_c00300{left:511.866667pt;}
.x62_c00300{left:515.466667pt;}
.x90_c00300{left:517.200000pt;}
.xd2_c00300{left:518.666667pt;}
.x9d_c00300{left:520.533333pt;}
.x3d_c00300{left:522.266667pt;}
.x1e_c00300{left:523.600000pt;}
.xda_c00300{left:524.533333pt;}
.xc6_c00300{left:525.733333pt;}
.x49_c00300{left:528.400000pt;}
.x116_c00300{left:531.066667pt;}
.x84_c00300{left:532.800000pt;}
.x11b_c00300{left:534.533333pt;}
.x10_c00300{left:536.266667pt;}
.x3e_c00300{left:539.200000pt;}
.xa7_c00300{left:540.533333pt;}
.x63_c00300{left:542.000000pt;}
.x9e_c00300{left:545.200000pt;}
.x91_c00300{left:548.533333pt;}
.x72_c00300{left:550.533333pt;}
.xbe_c00300{left:551.466667pt;}
.x1f_c00300{left:553.066667pt;}
.x54_c00300{left:554.000000pt;}
.x123_c00300{left:555.333333pt;}
.xd3_c00300{left:556.400000pt;}
.xdb_c00300{left:557.866667pt;}
.xaf_c00300{left:559.866667pt;}
.x135_c00300{left:560.800000pt;}
.xfb_c00300{left:562.266667pt;}
.x11_c00300{left:564.133333pt;}
.x117_c00300{left:565.333333pt;}
.x31_c00300{left:566.400000pt;}
.xdc_c00300{left:567.733333pt;}
.x20_c00300{left:570.000000pt;}
.x64_c00300{left:571.733333pt;}
.xa8_c00300{left:572.800000pt;}
.x124_c00300{left:574.266667pt;}
.xd4_c00300{left:575.866667pt;}
.x149_c00300{left:577.600000pt;}
.xf3_c00300{left:579.600000pt;}
.x13a_c00300{left:580.666667pt;}
.x65_c00300{left:581.600000pt;}
.x73_c00300{left:585.466667pt;}
.x92_c00300{left:587.200000pt;}
.x10b_c00300{left:588.133333pt;}
.x9f_c00300{left:589.733333pt;}
.xbf_c00300{left:591.066667pt;}
.x3f_c00300{left:592.000000pt;}
.x110_c00300{left:594.266667pt;}
.x12a_c00300{left:595.333333pt;}
.x32_c00300{left:597.733333pt;}
.x85_c00300{left:599.733333pt;}
.x21_c00300{left:601.066667pt;}
.x145_c00300{left:604.000000pt;}
.x66_c00300{left:607.466667pt;}
.x74_c00300{left:610.400000pt;}
.xd5_c00300{left:611.733333pt;}
.xb0_c00300{left:612.933333pt;}
.x12_c00300{left:614.000000pt;}
.x4a_c00300{left:616.400000pt;}
.xc0_c00300{left:617.333333pt;}
.x67_c00300{left:618.933333pt;}
.x33_c00300{left:620.400000pt;}
.x55_c00300{left:622.800000pt;}
.xf4_c00300{left:624.400000pt;}
.x93_c00300{left:625.866667pt;}
.xdd_c00300{left:627.866667pt;}
.x10c_c00300{left:631.333333pt;}
.x22_c00300{left:632.800000pt;}
.xe4_c00300{left:633.866667pt;}
.x75_c00300{left:636.266667pt;}
.x13b_c00300{left:638.000000pt;}
.xcd_c00300{left:640.400000pt;}
.x56_c00300{left:641.733333pt;}
.xeb_c00300{left:643.066667pt;}
.x40_c00300{left:645.066667pt;}
.x11c_c00300{left:646.266667pt;}
.xb9_c00300{left:647.600000pt;}
.x13_c00300{left:649.200000pt;}
.x103_c00300{left:650.933333pt;}
.x140_c00300{left:651.866667pt;}
.xb1_c00300{left:653.600000pt;}
.x12c_c00300{left:654.933333pt;}
.x86_c00300{left:658.000000pt;}
.xd6_c00300{left:659.066667pt;}
.x76_c00300{left:661.600000pt;}
.x41_c00300{left:663.600000pt;}
.xc1_c00300{left:665.600000pt;}
.x143_c00300{left:669.600000pt;}
.x136_c00300{left:672.266667pt;}
.xa0_c00300{left:673.200000pt;}
.x10d_c00300{left:675.466667pt;}
.x14_c00300{left:676.666667pt;}
.x104_c00300{left:678.133333pt;}
.x4b_c00300{left:679.200000pt;}
.x12d_c00300{left:680.533333pt;}
.xce_c00300{left:681.733333pt;}
.xf5_c00300{left:682.933333pt;}
.x57_c00300{left:684.266667pt;}
.x87_c00300{left:685.466667pt;}
.x12b_c00300{left:686.800000pt;}
.x42_c00300{left:688.533333pt;}
.x15_c00300{left:689.733333pt;}
.xa1_c00300{left:691.066667pt;}
.x23_c00300{left:692.000000pt;}
.xa9_c00300{left:693.333333pt;}
.x24_c00300{left:698.133333pt;}
.xcf_c00300{left:700.266667pt;}
.x88_c00300{left:701.200000pt;}
.x68_c00300{left:702.533333pt;}
.x118_c00300{left:705.066667pt;}
.xb2_c00300{left:707.066667pt;}
.x13c_c00300{left:708.933333pt;}
.x58_c00300{left:713.733333pt;}
}





/* 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_c00301 {
    display:none;
  }
  .loading-indicator_c00301.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00301 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_c00301 { 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_c00301" -> "#page-container .classname_c00301")
 */
.pf_c00301 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00301 { /* 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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00301 { /* 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_c00301 { /* 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_c00301 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00301 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00301 {overflow:visible;}
  }
}
.c_c00301 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00301 { /* 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_c00301:after { /* webkit #35443 */
  content: '';
}
.t_c00301:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00301 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 */
}
.__c00301 { /* 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_c00301 { /* info for Javascript */
  display:none;
}
.l_c00301 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00301 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00301 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00301: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_c00301 {
    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_c00301.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00301.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_c00301 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00301{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00301;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.000000;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;}
.m33_c00301{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m23_c00301{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00301{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00301{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00301{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00301{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00301{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m61_c00301{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m25_c00301{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m77_c00301{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00301{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00301{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00301{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m59_c00301{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00301{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00301{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m55_c00301{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00301{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00301{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00301{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00301{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m76_c00301{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00301{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00301{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00301{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00301{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00301{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m42_c00301{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4_c00301{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m94_c00301{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m38_c00301{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00301{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m93_c00301{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m49_c00301{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m70_c00301{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m60_c00301{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00301{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m71_c00301{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00301{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00301{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m56_c00301{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m27_c00301{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m50_c00301{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00301{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m95_c00301{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00301{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m28_c00301{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m96_c00301{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00301{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m35_c00301{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m16_c00301{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m45_c00301{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00301{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m80_c00301{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m10_c00301{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00301{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m18_c00301{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00301{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m20_c00301{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00301{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m30_c00301{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00301{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00301{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m67_c00301{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m31_c00301{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00301{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00301{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m85_c00301{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m87_c00301{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m48_c00301{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.md_c00301{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m73_c00301{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00301{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m90_c00301{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m86_c00301{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m43_c00301{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m81_c00301{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00301{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00301{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00301{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00301{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00301{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m63_c00301{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m82_c00301{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00301{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m14_c00301{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m65_c00301{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00301{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m22_c00301{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m51_c00301{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00301{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m24_c00301{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00301{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00301{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00301{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00301{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m72_c00301{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m99_c00301{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m39_c00301{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00301{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00301{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00301{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m97_c00301{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00301{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00301{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m40_c00301{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m98_c00301{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m36_c00301{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m34_c00301{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00301{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00301{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00301{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m78_c00301{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mf_c00301{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00301{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m58_c00301{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00301{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00301{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m88_c00301{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00301{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m62_c00301{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m26_c00301{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m29_c00301{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m54_c00301{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m66_c00301{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m74_c00301{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m92_c00301{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m89_c00301{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m57_c00301{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m3_c00301{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m37_c00301{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m79_c00301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00301{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00301{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m84_c00301{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m47_c00301{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m69_c00301{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00301{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00301{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00301{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m75_c00301{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00301{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00301{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00301{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m83_c00301{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00301{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00301{vertical-align:0.000000px;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{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__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:-5.000000px;}
.ws5_c00301{word-spacing:-4.861111px;}
.ws1_c00301{word-spacing:-4.285714px;}
.ws6_c00301{word-spacing:0.000000px;}
.ws4_c00301{word-spacing:5.000000px;}
.ws3_c00301{word-spacing:7.232143px;}
.ws2_c00301{word-spacing:22.236842px;}
.fc0_c00301{color:transparent;}
.fs0_c00301{font-size:60.000000px;}
.y0_c00301{bottom:0.000000px;}
.y2c_c00301{bottom:138.900000px;}
.y2b_c00301{bottom:154.800000px;}
.y2a_c00301{bottom:181.500000px;}
.y29_c00301{bottom:201.600000px;}
.y28_c00301{bottom:221.400000px;}
.y27_c00301{bottom:241.200000px;}
.y26_c00301{bottom:279.000000px;}
.y25_c00301{bottom:299.550000px;}
.y24_c00301{bottom:319.650000px;}
.y23_c00301{bottom:340.350000px;}
.y22_c00301{bottom:360.150000px;}
.y21_c00301{bottom:379.950000px;}
.y20_c00301{bottom:399.750000px;}
.y1f_c00301{bottom:419.850000px;}
.y1e_c00301{bottom:439.650000px;}
.y1d_c00301{bottom:459.750000px;}
.y1c_c00301{bottom:479.550000px;}
.y1b_c00301{bottom:499.350000px;}
.y1a_c00301{bottom:519.450000px;}
.y19_c00301{bottom:539.100000px;}
.y18_c00301{bottom:559.200000px;}
.y17_c00301{bottom:579.300000px;}
.y16_c00301{bottom:599.400000px;}
.y15_c00301{bottom:618.900000px;}
.y14_c00301{bottom:638.700000px;}
.y13_c00301{bottom:658.800000px;}
.y12_c00301{bottom:678.600000px;}
.y11_c00301{bottom:698.400000px;}
.y10_c00301{bottom:718.500000px;}
.yf_c00301{bottom:739.050000px;}
.ye_c00301{bottom:759.150000px;}
.yd_c00301{bottom:778.950000px;}
.yc_c00301{bottom:799.050000px;}
.yb_c00301{bottom:819.150000px;}
.ya_c00301{bottom:838.950000px;}
.y9_c00301{bottom:858.750000px;}
.y8_c00301{bottom:878.850000px;}
.y7_c00301{bottom:898.650000px;}
.y6_c00301{bottom:918.750000px;}
.y5_c00301{bottom:938.850000px;}
.y4_c00301{bottom:958.350000px;}
.y3_c00301{bottom:978.450000px;}
.y2_c00301{bottom:998.250000px;}
.y1_c00301{bottom:1036.050000px;}
.h2_c00301{height:60.000000px;}
.h0_c00301{height:1166.759949px;}
.h1_c00301{height:1167.000000px;}
.w1_c00301{width:913.500000px;}
.w0_c00301{width:913.679993px;}
.x0_c00301{left:0.000000px;}
.x3_c00301{left:106.950000px;}
.xd2_c00301{left:108.300000px;}
.xfd_c00301{left:110.100000px;}
.x113_c00301{left:127.950000px;}
.x12d_c00301{left:130.350000px;}
.x3e_c00301{left:134.550000px;}
.x2d_c00301{left:136.050000px;}
.x93_c00301{left:137.100000px;}
.x9d_c00301{left:138.600000px;}
.xed_c00301{left:139.650000px;}
.xfe_c00301{left:141.750000px;}
.xb2_c00301{left:142.800000px;}
.x7d_c00301{left:143.850000px;}
.x10d_c00301{left:145.050000px;}
.x11a_c00301{left:146.100000px;}
.xf8_c00301{left:147.600000px;}
.x4_c00301{left:150.450000px;}
.x87_c00301{left:151.950000px;}
.x121_c00301{left:153.000000px;}
.x20_c00301{left:154.050000px;}
.x94_c00301{left:155.400000px;}
.xcc_c00301{left:157.500000px;}
.x57_c00301{left:160.950000px;}
.xb3_c00301{left:162.900000px;}
.xe8_c00301{left:164.250000px;}
.x70_c00301{left:165.600000px;}
.xff_c00301{left:166.950000px;}
.x128_c00301{left:168.150000px;}
.xd3_c00301{left:171.600000px;}
.x13_c00301{left:172.650000px;}
.x4c_c00301{left:174.900000px;}
.x132_c00301{left:176.850000px;}
.x21_c00301{left:178.200000px;}
.x9e_c00301{left:180.300000px;}
.x95_c00301{left:182.700000px;}
.x2e_c00301{left:184.650000px;}
.x88_c00301{left:186.150000px;}
.xe2_c00301{left:188.400000px;}
.x58_c00301{left:189.750000px;}
.xe9_c00301{left:191.550000px;}
.x122_c00301{left:192.900000px;}
.x66_c00301{left:197.250000px;}
.x3f_c00301{left:199.350000px;}
.x71_c00301{left:200.850000px;}
.xa8_c00301{left:202.350000px;}
.x137_c00301{left:204.150000px;}
.x5_c00301{left:212.400000px;}
.x2f_c00301{left:213.450000px;}
.x7e_c00301{left:215.100000px;}
.x9f_c00301{left:216.600000px;}
.xee_c00301{left:218.850000px;}
.xe3_c00301{left:220.050000px;}
.x89_c00301{left:221.400000px;}
.xa6_c00301{left:222.600000px;}
.x105_c00301{left:224.550000px;}
.x67_c00301{left:226.050000px;}
.xdb_c00301{left:227.100000px;}
.x11c_c00301{left:229.950000px;}
.x6_c00301{left:231.450000px;}
.x40_c00301{left:232.800000px;}
.x72_c00301{left:235.050000px;}
.xea_c00301{left:237.600000px;}
.x138_c00301{left:241.200000px;}
.x7f_c00301{left:242.400000px;}
.x22_c00301{left:244.050000px;}
.x106_c00301{left:245.400000px;}
.xd4_c00301{left:246.900000px;}
.x4d_c00301{left:248.400000px;}
.x8a_c00301{left:250.200000px;}
.x14_c00301{left:252.600000px;}
.xef_c00301{left:253.800000px;}
.x73_c00301{left:255.600000px;}
.x96_c00301{left:256.800000px;}
.xc1_c00301{left:258.150000px;}
.x7_c00301{left:259.200000px;}
.x123_c00301{left:262.050000px;}
.x59_c00301{left:264.600000px;}
.x4e_c00301{left:265.650000px;}
.xa0_c00301{left:268.500000px;}
.x15_c00301{left:272.400000px;}
.x5a_c00301{left:275.400000px;}
.xbc_c00301{left:276.750000px;}
.x23_c00301{left:278.550000px;}
.xa1_c00301{left:280.800000px;}
.x30_c00301{left:281.850000px;}
.x12e_c00301{left:283.050000px;}
.xb4_c00301{left:285.600000px;}
.x100_c00301{left:287.550000px;}
.x74_c00301{left:289.800000px;}
.xa7_c00301{left:293.100000px;}
.xa9_c00301{left:294.900000px;}
.x11d_c00301{left:296.550000px;}
.x5b_c00301{left:298.050000px;}
.x16_c00301{left:300.450000px;}
.x31_c00301{left:307.800000px;}
.x80_c00301{left:309.300000px;}
.x114_c00301{left:311.250000px;}
.xbd_c00301{left:313.050000px;}
.xeb_c00301{left:315.300000px;}
.x41_c00301{left:318.000000px;}
.x8_c00301{left:321.150000px;}
.xd5_c00301{left:322.950000px;}
.xaa_c00301{left:327.600000px;}
.xf0_c00301{left:328.950000px;}
.x4f_c00301{left:330.750000px;}
.x24_c00301{left:332.100000px;}
.x32_c00301{left:334.500000px;}
.x42_c00301{left:336.300000px;}
.x101_c00301{left:337.650000px;}
.xd6_c00301{left:339.150000px;}
.x9_c00301{left:340.650000px;}
.x139_c00301{left:341.700000px;}
.xa2_c00301{left:343.800000px;}
.x115_c00301{left:345.450000px;}
.x10e_c00301{left:347.250000px;}
.xe4_c00301{left:348.450000px;}
.x107_c00301{left:350.850000px;}
.x133_c00301{left:353.850000px;}
.x8b_c00301{left:355.650000px;}
.xdc_c00301{left:358.500000px;}
.xc2_c00301{left:362.250000px;}
.x17_c00301{left:364.200000px;}
.x68_c00301{left:365.250000px;}
.x5c_c00301{left:367.200000px;}
.xa_c00301{left:369.150000px;}
.xf1_c00301{left:370.350000px;}
.x108_c00301{left:372.150000px;}
.xbe_c00301{left:376.050000px;}
.x75_c00301{left:378.000000px;}
.x129_c00301{left:379.200000px;}
.xc3_c00301{left:380.250000px;}
.xec_c00301{left:382.950000px;}
.x97_c00301{left:384.150000px;}
.xab_c00301{left:385.500000px;}
.x76_c00301{left:389.550000px;}
.xe5_c00301{left:391.350000px;}
.xb5_c00301{left:393.000000px;}
.x69_c00301{left:394.800000px;}
.xdd_c00301{left:396.000000px;}
.x1_c00301{left:397.050000px;}
.x11e_c00301{left:398.850000px;}
.xa3_c00301{left:401.700000px;}
.x33_c00301{left:403.950000px;}
.xf9_c00301{left:405.600000px;}
.x5d_c00301{left:407.100000px;}
.x8c_c00301{left:408.900000px;}
.x77_c00301{left:418.350000px;}
.x43_c00301{left:420.150000px;}
.x81_c00301{left:422.250000px;}
.x34_c00301{left:424.050000px;}
.x25_c00301{left:426.000000px;}
.x8d_c00301{left:429.450000px;}
.x18_c00301{left:435.450000px;}
.x125_c00301{left:436.650000px;}
.xac_c00301{left:437.700000px;}
.xb_c00301{left:441.150000px;}
.xfa_c00301{left:442.350000px;}
.xf2_c00301{left:443.550000px;}
.x109_c00301{left:444.750000px;}
.x5e_c00301{left:445.950000px;}
.x50_c00301{left:447.450000px;}
.x6a_c00301{left:450.900000px;}
.x82_c00301{left:455.700000px;}
.x12a_c00301{left:457.200000px;}
.x35_c00301{left:459.000000px;}
.xe6_c00301{left:463.050000px;}
.xfb_c00301{left:464.250000px;}
.x5f_c00301{left:465.750000px;}
.x19_c00301{left:468.150000px;}
.x12f_c00301{left:470.250000px;}
.x10b_c00301{left:474.000000px;}
.xc_c00301{left:475.650000px;}
.xde_c00301{left:476.700000px;}
.x8e_c00301{left:477.750000px;}
.xc4_c00301{left:478.950000px;}
.xcd_c00301{left:480.150000px;}
.xb6_c00301{left:481.200000px;}
.x26_c00301{left:485.400000px;}
.x116_c00301{left:487.650000px;}
.x1a_c00301{left:489.450000px;}
.xd_c00301{left:491.550000px;}
.x44_c00301{left:494.700000px;}
.x6b_c00301{left:496.200000px;}
.x11f_c00301{left:497.550000px;}
.xad_c00301{left:498.600000px;}
.xb7_c00301{left:500.700000px;}
.xa4_c00301{left:502.950000px;}
.x27_c00301{left:504.900000px;}
.x45_c00301{left:506.550000px;}
.x117_c00301{left:509.550000px;}
.xdf_c00301{left:511.950000px;}
.x124_c00301{left:515.250000px;}
.x134_c00301{left:516.900000px;}
.x78_c00301{left:518.100000px;}
.x1b_c00301{left:519.300000px;}
.xd7_c00301{left:521.850000px;}
.x46_c00301{left:524.250000px;}
.x120_c00301{left:525.600000px;}
.x83_c00301{left:526.950000px;}
.x12b_c00301{left:528.450000px;}
.xfc_c00301{left:530.100000px;}
.xce_c00301{left:531.300000px;}
.x126_c00301{left:532.350000px;}
.x51_c00301{left:534.600000px;}
.xe_c00301{left:536.250000px;}
.x79_c00301{left:537.900000px;}
.x10f_c00301{left:540.600000px;}
.xe0_c00301{left:543.300000px;}
.x8f_c00301{left:544.350000px;}
.xd8_c00301{left:546.750000px;}
.xc5_c00301{left:547.800000px;}
.xb8_c00301{left:549.300000px;}
.x47_c00301{left:550.950000px;}
.x6c_c00301{left:555.900000px;}
.x60_c00301{left:557.250000px;}
.x84_c00301{left:559.050000px;}
.x36_c00301{left:561.600000px;}
.x28_c00301{left:565.800000px;}
.xe7_c00301{left:567.000000px;}
.xc6_c00301{left:568.350000px;}
.x102_c00301{left:570.000000px;}
.x90_c00301{left:571.050000px;}
.xf3_c00301{left:573.600000px;}
.x1c_c00301{left:574.800000px;}
.x13a_c00301{left:578.400000px;}
.xb9_c00301{left:582.750000px;}
.x85_c00301{left:585.750000px;}
.x6d_c00301{left:586.800000px;}
.x11b_c00301{left:588.600000px;}
.x127_c00301{left:589.650000px;}
.x48_c00301{left:593.400000px;}
.x61_c00301{left:595.350000px;}
.xf4_c00301{left:596.700000px;}
.x118_c00301{left:597.750000px;}
.x29_c00301{left:599.700000px;}
.x130_c00301{left:601.650000px;}
.x10c_c00301{left:604.350000px;}
.x135_c00301{left:605.850000px;}
.x98_c00301{left:607.800000px;}
.xae_c00301{left:609.900000px;}
.xcf_c00301{left:611.250000px;}
.x52_c00301{left:612.300000px;}
.xf_c00301{left:613.950000px;}
.x103_c00301{left:615.300000px;}
.x37_c00301{left:619.200000px;}
.xbf_c00301{left:621.300000px;}
.x110_c00301{left:623.250000px;}
.xf5_c00301{left:624.750000px;}
.x6e_c00301{left:627.150000px;}
.x49_c00301{left:630.450000px;}
.x7a_c00301{left:631.500000px;}
.x62_c00301{left:633.150000px;}
.x1d_c00301{left:634.200000px;}
.x38_c00301{left:636.900000px;}
.xc7_c00301{left:638.100000px;}
.xaf_c00301{left:639.450000px;}
.x53_c00301{left:641.850000px;}
.x10_c00301{left:643.800000px;}
.x2a_c00301{left:646.200000px;}
.xba_c00301{left:648.300000px;}
.x7b_c00301{left:649.500000px;}
.x111_c00301{left:651.750000px;}
.x39_c00301{left:654.600000px;}
.x1e_c00301{left:656.550000px;}
.xc8_c00301{left:657.900000px;}
.xc0_c00301{left:659.100000px;}
.xd0_c00301{left:660.150000px;}
.xd9_c00301{left:661.650000px;}
.x119_c00301{left:668.700000px;}
.x10a_c00301{left:670.800000px;}
.x54_c00301{left:674.550000px;}
.xf6_c00301{left:675.900000px;}
.x136_c00301{left:677.100000px;}
.x3a_c00301{left:679.800000px;}
.x91_c00301{left:681.450000px;}
.x63_c00301{left:683.550000px;}
.x104_c00301{left:685.200000px;}
.x11_c00301{left:686.700000px;}
.x99_c00301{left:688.050000px;}
.xa5_c00301{left:689.400000px;}
.xc9_c00301{left:690.600000px;}
.xca_c00301{left:693.900000px;}
.x2b_c00301{left:696.900000px;}
.x4a_c00301{left:698.100000px;}
.x3b_c00301{left:699.900000px;}
.xbb_c00301{left:701.550000px;}
.xb0_c00301{left:703.500000px;}
.xe1_c00301{left:705.300000px;}
.x9a_c00301{left:706.350000px;}
.xd1_c00301{left:708.000000px;}
.xcb_c00301{left:710.400000px;}
.x7c_c00301{left:714.000000px;}
.x4b_c00301{left:716.100000px;}
.x55_c00301{left:718.050000px;}
.x9b_c00301{left:720.750000px;}
.x86_c00301{left:723.600000px;}
.xf7_c00301{left:725.250000px;}
.x64_c00301{left:726.750000px;}
.xb1_c00301{left:728.400000px;}
.x3c_c00301{left:729.750000px;}
.xda_c00301{left:733.650000px;}
.x92_c00301{left:735.000000px;}
.x131_c00301{left:736.350000px;}
.x112_c00301{left:740.700000px;}
.x56_c00301{left:743.550000px;}
.x9c_c00301{left:745.950000px;}
.x2_c00301{left:747.000000px;}
.x12_c00301{left:749.700000px;}
.x12c_c00301{left:752.100000px;}
.x6f_c00301{left:753.150000px;}
.x65_c00301{left:754.800000px;}
.x1f_c00301{left:757.350000px;}
.x3d_c00301{left:762.450000px;}
.x2c_c00301{left:770.700000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:-4.444444pt;}
.ws5_c00301{word-spacing:-4.320988pt;}
.ws1_c00301{word-spacing:-3.809524pt;}
.ws6_c00301{word-spacing:0.000000pt;}
.ws4_c00301{word-spacing:4.444444pt;}
.ws3_c00301{word-spacing:6.428571pt;}
.ws2_c00301{word-spacing:19.766082pt;}
.fs0_c00301{font-size:53.333333pt;}
.y0_c00301{bottom:0.000000pt;}
.y2c_c00301{bottom:123.466667pt;}
.y2b_c00301{bottom:137.600000pt;}
.y2a_c00301{bottom:161.333333pt;}
.y29_c00301{bottom:179.200000pt;}
.y28_c00301{bottom:196.800000pt;}
.y27_c00301{bottom:214.400000pt;}
.y26_c00301{bottom:248.000000pt;}
.y25_c00301{bottom:266.266667pt;}
.y24_c00301{bottom:284.133333pt;}
.y23_c00301{bottom:302.533333pt;}
.y22_c00301{bottom:320.133333pt;}
.y21_c00301{bottom:337.733333pt;}
.y20_c00301{bottom:355.333333pt;}
.y1f_c00301{bottom:373.200000pt;}
.y1e_c00301{bottom:390.800000pt;}
.y1d_c00301{bottom:408.666667pt;}
.y1c_c00301{bottom:426.266667pt;}
.y1b_c00301{bottom:443.866667pt;}
.y1a_c00301{bottom:461.733333pt;}
.y19_c00301{bottom:479.200000pt;}
.y18_c00301{bottom:497.066667pt;}
.y17_c00301{bottom:514.933333pt;}
.y16_c00301{bottom:532.800000pt;}
.y15_c00301{bottom:550.133333pt;}
.y14_c00301{bottom:567.733333pt;}
.y13_c00301{bottom:585.600000pt;}
.y12_c00301{bottom:603.200000pt;}
.y11_c00301{bottom:620.800000pt;}
.y10_c00301{bottom:638.666667pt;}
.yf_c00301{bottom:656.933333pt;}
.ye_c00301{bottom:674.800000pt;}
.yd_c00301{bottom:692.400000pt;}
.yc_c00301{bottom:710.266667pt;}
.yb_c00301{bottom:728.133333pt;}
.ya_c00301{bottom:745.733333pt;}
.y9_c00301{bottom:763.333333pt;}
.y8_c00301{bottom:781.200000pt;}
.y7_c00301{bottom:798.800000pt;}
.y6_c00301{bottom:816.666667pt;}
.y5_c00301{bottom:834.533333pt;}
.y4_c00301{bottom:851.866667pt;}
.y3_c00301{bottom:869.733333pt;}
.y2_c00301{bottom:887.333333pt;}
.y1_c00301{bottom:920.933333pt;}
.h2_c00301{height:53.333333pt;}
.h0_c00301{height:1037.119955pt;}
.h1_c00301{height:1037.333333pt;}
.w1_c00301{width:812.000000pt;}
.w0_c00301{width:812.159993pt;}
.x0_c00301{left:0.000000pt;}
.x3_c00301{left:95.066667pt;}
.xd2_c00301{left:96.266667pt;}
.xfd_c00301{left:97.866667pt;}
.x113_c00301{left:113.733333pt;}
.x12d_c00301{left:115.866667pt;}
.x3e_c00301{left:119.600000pt;}
.x2d_c00301{left:120.933333pt;}
.x93_c00301{left:121.866667pt;}
.x9d_c00301{left:123.200000pt;}
.xed_c00301{left:124.133333pt;}
.xfe_c00301{left:126.000000pt;}
.xb2_c00301{left:126.933333pt;}
.x7d_c00301{left:127.866667pt;}
.x10d_c00301{left:128.933333pt;}
.x11a_c00301{left:129.866667pt;}
.xf8_c00301{left:131.200000pt;}
.x4_c00301{left:133.733333pt;}
.x87_c00301{left:135.066667pt;}
.x121_c00301{left:136.000000pt;}
.x20_c00301{left:136.933333pt;}
.x94_c00301{left:138.133333pt;}
.xcc_c00301{left:140.000000pt;}
.x57_c00301{left:143.066667pt;}
.xb3_c00301{left:144.800000pt;}
.xe8_c00301{left:146.000000pt;}
.x70_c00301{left:147.200000pt;}
.xff_c00301{left:148.400000pt;}
.x128_c00301{left:149.466667pt;}
.xd3_c00301{left:152.533333pt;}
.x13_c00301{left:153.466667pt;}
.x4c_c00301{left:155.466667pt;}
.x132_c00301{left:157.200000pt;}
.x21_c00301{left:158.400000pt;}
.x9e_c00301{left:160.266667pt;}
.x95_c00301{left:162.400000pt;}
.x2e_c00301{left:164.133333pt;}
.x88_c00301{left:165.466667pt;}
.xe2_c00301{left:167.466667pt;}
.x58_c00301{left:168.666667pt;}
.xe9_c00301{left:170.266667pt;}
.x122_c00301{left:171.466667pt;}
.x66_c00301{left:175.333333pt;}
.x3f_c00301{left:177.200000pt;}
.x71_c00301{left:178.533333pt;}
.xa8_c00301{left:179.866667pt;}
.x137_c00301{left:181.466667pt;}
.x5_c00301{left:188.800000pt;}
.x2f_c00301{left:189.733333pt;}
.x7e_c00301{left:191.200000pt;}
.x9f_c00301{left:192.533333pt;}
.xee_c00301{left:194.533333pt;}
.xe3_c00301{left:195.600000pt;}
.x89_c00301{left:196.800000pt;}
.xa6_c00301{left:197.866667pt;}
.x105_c00301{left:199.600000pt;}
.x67_c00301{left:200.933333pt;}
.xdb_c00301{left:201.866667pt;}
.x11c_c00301{left:204.400000pt;}
.x6_c00301{left:205.733333pt;}
.x40_c00301{left:206.933333pt;}
.x72_c00301{left:208.933333pt;}
.xea_c00301{left:211.200000pt;}
.x138_c00301{left:214.400000pt;}
.x7f_c00301{left:215.466667pt;}
.x22_c00301{left:216.933333pt;}
.x106_c00301{left:218.133333pt;}
.xd4_c00301{left:219.466667pt;}
.x4d_c00301{left:220.800000pt;}
.x8a_c00301{left:222.400000pt;}
.x14_c00301{left:224.533333pt;}
.xef_c00301{left:225.600000pt;}
.x73_c00301{left:227.200000pt;}
.x96_c00301{left:228.266667pt;}
.xc1_c00301{left:229.466667pt;}
.x7_c00301{left:230.400000pt;}
.x123_c00301{left:232.933333pt;}
.x59_c00301{left:235.200000pt;}
.x4e_c00301{left:236.133333pt;}
.xa0_c00301{left:238.666667pt;}
.x15_c00301{left:242.133333pt;}
.x5a_c00301{left:244.800000pt;}
.xbc_c00301{left:246.000000pt;}
.x23_c00301{left:247.600000pt;}
.xa1_c00301{left:249.600000pt;}
.x30_c00301{left:250.533333pt;}
.x12e_c00301{left:251.600000pt;}
.xb4_c00301{left:253.866667pt;}
.x100_c00301{left:255.600000pt;}
.x74_c00301{left:257.600000pt;}
.xa7_c00301{left:260.533333pt;}
.xa9_c00301{left:262.133333pt;}
.x11d_c00301{left:263.600000pt;}
.x5b_c00301{left:264.933333pt;}
.x16_c00301{left:267.066667pt;}
.x31_c00301{left:273.600000pt;}
.x80_c00301{left:274.933333pt;}
.x114_c00301{left:276.666667pt;}
.xbd_c00301{left:278.266667pt;}
.xeb_c00301{left:280.266667pt;}
.x41_c00301{left:282.666667pt;}
.x8_c00301{left:285.466667pt;}
.xd5_c00301{left:287.066667pt;}
.xaa_c00301{left:291.200000pt;}
.xf0_c00301{left:292.400000pt;}
.x4f_c00301{left:294.000000pt;}
.x24_c00301{left:295.200000pt;}
.x32_c00301{left:297.333333pt;}
.x42_c00301{left:298.933333pt;}
.x101_c00301{left:300.133333pt;}
.xd6_c00301{left:301.466667pt;}
.x9_c00301{left:302.800000pt;}
.x139_c00301{left:303.733333pt;}
.xa2_c00301{left:305.600000pt;}
.x115_c00301{left:307.066667pt;}
.x10e_c00301{left:308.666667pt;}
.xe4_c00301{left:309.733333pt;}
.x107_c00301{left:311.866667pt;}
.x133_c00301{left:314.533333pt;}
.x8b_c00301{left:316.133333pt;}
.xdc_c00301{left:318.666667pt;}
.xc2_c00301{left:322.000000pt;}
.x17_c00301{left:323.733333pt;}
.x68_c00301{left:324.666667pt;}
.x5c_c00301{left:326.400000pt;}
.xa_c00301{left:328.133333pt;}
.xf1_c00301{left:329.200000pt;}
.x108_c00301{left:330.800000pt;}
.xbe_c00301{left:334.266667pt;}
.x75_c00301{left:336.000000pt;}
.x129_c00301{left:337.066667pt;}
.xc3_c00301{left:338.000000pt;}
.xec_c00301{left:340.400000pt;}
.x97_c00301{left:341.466667pt;}
.xab_c00301{left:342.666667pt;}
.x76_c00301{left:346.266667pt;}
.xe5_c00301{left:347.866667pt;}
.xb5_c00301{left:349.333333pt;}
.x69_c00301{left:350.933333pt;}
.xdd_c00301{left:352.000000pt;}
.x1_c00301{left:352.933333pt;}
.x11e_c00301{left:354.533333pt;}
.xa3_c00301{left:357.066667pt;}
.x33_c00301{left:359.066667pt;}
.xf9_c00301{left:360.533333pt;}
.x5d_c00301{left:361.866667pt;}
.x8c_c00301{left:363.466667pt;}
.x77_c00301{left:371.866667pt;}
.x43_c00301{left:373.466667pt;}
.x81_c00301{left:375.333333pt;}
.x34_c00301{left:376.933333pt;}
.x25_c00301{left:378.666667pt;}
.x8d_c00301{left:381.733333pt;}
.x18_c00301{left:387.066667pt;}
.x125_c00301{left:388.133333pt;}
.xac_c00301{left:389.066667pt;}
.xb_c00301{left:392.133333pt;}
.xfa_c00301{left:393.200000pt;}
.xf2_c00301{left:394.266667pt;}
.x109_c00301{left:395.333333pt;}
.x5e_c00301{left:396.400000pt;}
.x50_c00301{left:397.733333pt;}
.x6a_c00301{left:400.800000pt;}
.x82_c00301{left:405.066667pt;}
.x12a_c00301{left:406.400000pt;}
.x35_c00301{left:408.000000pt;}
.xe6_c00301{left:411.600000pt;}
.xfb_c00301{left:412.666667pt;}
.x5f_c00301{left:414.000000pt;}
.x19_c00301{left:416.133333pt;}
.x12f_c00301{left:418.000000pt;}
.x10b_c00301{left:421.333333pt;}
.xc_c00301{left:422.800000pt;}
.xde_c00301{left:423.733333pt;}
.x8e_c00301{left:424.666667pt;}
.xc4_c00301{left:425.733333pt;}
.xcd_c00301{left:426.800000pt;}
.xb6_c00301{left:427.733333pt;}
.x26_c00301{left:431.466667pt;}
.x116_c00301{left:433.466667pt;}
.x1a_c00301{left:435.066667pt;}
.xd_c00301{left:436.933333pt;}
.x44_c00301{left:439.733333pt;}
.x6b_c00301{left:441.066667pt;}
.x11f_c00301{left:442.266667pt;}
.xad_c00301{left:443.200000pt;}
.xb7_c00301{left:445.066667pt;}
.xa4_c00301{left:447.066667pt;}
.x27_c00301{left:448.800000pt;}
.x45_c00301{left:450.266667pt;}
.x117_c00301{left:452.933333pt;}
.xdf_c00301{left:455.066667pt;}
.x124_c00301{left:458.000000pt;}
.x134_c00301{left:459.466667pt;}
.x78_c00301{left:460.533333pt;}
.x1b_c00301{left:461.600000pt;}
.xd7_c00301{left:463.866667pt;}
.x46_c00301{left:466.000000pt;}
.x120_c00301{left:467.200000pt;}
.x83_c00301{left:468.400000pt;}
.x12b_c00301{left:469.733333pt;}
.xfc_c00301{left:471.200000pt;}
.xce_c00301{left:472.266667pt;}
.x126_c00301{left:473.200000pt;}
.x51_c00301{left:475.200000pt;}
.xe_c00301{left:476.666667pt;}
.x79_c00301{left:478.133333pt;}
.x10f_c00301{left:480.533333pt;}
.xe0_c00301{left:482.933333pt;}
.x8f_c00301{left:483.866667pt;}
.xd8_c00301{left:486.000000pt;}
.xc5_c00301{left:486.933333pt;}
.xb8_c00301{left:488.266667pt;}
.x47_c00301{left:489.733333pt;}
.x6c_c00301{left:494.133333pt;}
.x60_c00301{left:495.333333pt;}
.x84_c00301{left:496.933333pt;}
.x36_c00301{left:499.200000pt;}
.x28_c00301{left:502.933333pt;}
.xe7_c00301{left:504.000000pt;}
.xc6_c00301{left:505.200000pt;}
.x102_c00301{left:506.666667pt;}
.x90_c00301{left:507.600000pt;}
.xf3_c00301{left:509.866667pt;}
.x1c_c00301{left:510.933333pt;}
.x13a_c00301{left:514.133333pt;}
.xb9_c00301{left:518.000000pt;}
.x85_c00301{left:520.666667pt;}
.x6d_c00301{left:521.600000pt;}
.x11b_c00301{left:523.200000pt;}
.x127_c00301{left:524.133333pt;}
.x48_c00301{left:527.466667pt;}
.x61_c00301{left:529.200000pt;}
.xf4_c00301{left:530.400000pt;}
.x118_c00301{left:531.333333pt;}
.x29_c00301{left:533.066667pt;}
.x130_c00301{left:534.800000pt;}
.x10c_c00301{left:537.200000pt;}
.x135_c00301{left:538.533333pt;}
.x98_c00301{left:540.266667pt;}
.xae_c00301{left:542.133333pt;}
.xcf_c00301{left:543.333333pt;}
.x52_c00301{left:544.266667pt;}
.xf_c00301{left:545.733333pt;}
.x103_c00301{left:546.933333pt;}
.x37_c00301{left:550.400000pt;}
.xbf_c00301{left:552.266667pt;}
.x110_c00301{left:554.000000pt;}
.xf5_c00301{left:555.333333pt;}
.x6e_c00301{left:557.466667pt;}
.x49_c00301{left:560.400000pt;}
.x7a_c00301{left:561.333333pt;}
.x62_c00301{left:562.800000pt;}
.x1d_c00301{left:563.733333pt;}
.x38_c00301{left:566.133333pt;}
.xc7_c00301{left:567.200000pt;}
.xaf_c00301{left:568.400000pt;}
.x53_c00301{left:570.533333pt;}
.x10_c00301{left:572.266667pt;}
.x2a_c00301{left:574.400000pt;}
.xba_c00301{left:576.266667pt;}
.x7b_c00301{left:577.333333pt;}
.x111_c00301{left:579.333333pt;}
.x39_c00301{left:581.866667pt;}
.x1e_c00301{left:583.600000pt;}
.xc8_c00301{left:584.800000pt;}
.xc0_c00301{left:585.866667pt;}
.xd0_c00301{left:586.800000pt;}
.xd9_c00301{left:588.133333pt;}
.x119_c00301{left:594.400000pt;}
.x10a_c00301{left:596.266667pt;}
.x54_c00301{left:599.600000pt;}
.xf6_c00301{left:600.800000pt;}
.x136_c00301{left:601.866667pt;}
.x3a_c00301{left:604.266667pt;}
.x91_c00301{left:605.733333pt;}
.x63_c00301{left:607.600000pt;}
.x104_c00301{left:609.066667pt;}
.x11_c00301{left:610.400000pt;}
.x99_c00301{left:611.600000pt;}
.xa5_c00301{left:612.800000pt;}
.xc9_c00301{left:613.866667pt;}
.xca_c00301{left:616.800000pt;}
.x2b_c00301{left:619.466667pt;}
.x4a_c00301{left:620.533333pt;}
.x3b_c00301{left:622.133333pt;}
.xbb_c00301{left:623.600000pt;}
.xb0_c00301{left:625.333333pt;}
.xe1_c00301{left:626.933333pt;}
.x9a_c00301{left:627.866667pt;}
.xd1_c00301{left:629.333333pt;}
.xcb_c00301{left:631.466667pt;}
.x7c_c00301{left:634.666667pt;}
.x4b_c00301{left:636.533333pt;}
.x55_c00301{left:638.266667pt;}
.x9b_c00301{left:640.666667pt;}
.x86_c00301{left:643.200000pt;}
.xf7_c00301{left:644.666667pt;}
.x64_c00301{left:646.000000pt;}
.xb1_c00301{left:647.466667pt;}
.x3c_c00301{left:648.666667pt;}
.xda_c00301{left:652.133333pt;}
.x92_c00301{left:653.333333pt;}
.x131_c00301{left:654.533333pt;}
.x112_c00301{left:658.400000pt;}
.x56_c00301{left:660.933333pt;}
.x9c_c00301{left:663.066667pt;}
.x2_c00301{left:664.000000pt;}
.x12_c00301{left:666.400000pt;}
.x12c_c00301{left:668.533333pt;}
.x6f_c00301{left:669.466667pt;}
.x65_c00301{left:670.933333pt;}
.x1f_c00301{left:673.200000pt;}
.x3d_c00301{left:677.733333pt;}
.x2c_c00301{left:685.066667pt;}
}





/* 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_c00302 {
    display:none;
  }
  .loading-indicator_c00302.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00302 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_c00302 { 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_c00302" -> "#page-container .classname_c00302")
 */
.pf_c00302 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00302 { /* 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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00302 { /* 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_c00302 { /* 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_c00302 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00302 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00302 {overflow:visible;}
  }
}
.c_c00302 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00302 { /* 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_c00302:after { /* webkit #35443 */
  content: '';
}
.t_c00302:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00302 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 */
}
.__c00302 { /* 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_c00302 { /* info for Javascript */
  display:none;
}
.l_c00302 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00302 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00302 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00302: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_c00302 {
    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_c00302.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00302.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_c00302 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00302{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00302;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.000000;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;}
.m4d_c00302{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m63_c00302{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m94_c00302{transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);}
.m71_c00302{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m75_c00302{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m21_c00302{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m86_c00302{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m93_c00302{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m10_c00302{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m82_c00302{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m83_c00302{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m72_c00302{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00302{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00302{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00302{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m92_c00302{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me_c00302{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m26_c00302{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m84_c00302{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m87_c00302{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m30_c00302{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00302{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m62_c00302{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m85_c00302{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00302{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m95_c00302{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00302{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m69_c00302{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00302{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m45_c00302{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m33_c00302{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00302{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00302{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m79_c00302{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00302{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m36_c00302{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00302{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00302{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m89_c00302{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m43_c00302{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m35_c00302{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m80_c00302{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00302{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m88_c00302{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00302{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00302{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m47_c00302{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00302{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m16_c00302{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m76_c00302{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m61_c00302{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00302{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m40_c00302{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00302{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m42_c00302{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m32_c00302{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00302{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m27_c00302{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m28_c00302{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m65_c00302{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00302{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00302{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00302{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m60_c00302{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m90_c00302{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m58_c00302{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m15_c00302{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00302{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m81_c00302{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00302{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00302{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6_c00302{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m22_c00302{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00302{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m39_c00302{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m57_c00302{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00302{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00302{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m59_c00302{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m68_c00302{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00302{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m50_c00302{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00302{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00302{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00302{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00302{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00302{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00302{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m31_c00302{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m29_c00302{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m55_c00302{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m23_c00302{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00302{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m73_c00302{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00302{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00302{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m78_c00302{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00302{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m34_c00302{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m46_c00302{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m77_c00302{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20_c00302{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m48_c00302{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00302{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md_c00302{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00302{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00302{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m41_c00302{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00302{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m70_c00302{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00302{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m52_c00302{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00302{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m51_c00302{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00302{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9_c00302{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m66_c00302{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00302{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m38_c00302{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00302{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m91_c00302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00302{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00302{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m56_c00302{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00302{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m37_c00302{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00302{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m5_c00302{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m7_c00302{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00302{vertical-align:0.000000px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{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__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00302{word-spacing:-6.794872px;}
.ws6_c00302{word-spacing:-3.750000px;}
.ws5_c00302{word-spacing:-2.285141px;}
.ws7_c00302{word-spacing:0.000000px;}
.ws2_c00302{word-spacing:3.472222px;}
.ws3_c00302{word-spacing:16.250000px;}
.ws4_c00302{word-spacing:19.090909px;}
.ws0_c00302{word-spacing:22.962963px;}
.fc0_c00302{color:transparent;}
.fs1_c00302{font-size:54.000000px;}
.fs0_c00302{font-size:60.000000px;}
.y0_c00302{bottom:0.000000px;}
.y23_c00302{bottom:152.700000px;}
.y22_c00302{bottom:179.550000px;}
.y21_c00302{bottom:200.100000px;}
.y20_c00302{bottom:219.750000px;}
.y1f_c00302{bottom:240.300000px;}
.y1e_c00302{bottom:260.100000px;}
.y1d_c00302{bottom:280.200000px;}
.y1c_c00302{bottom:300.000000px;}
.y1b_c00302{bottom:319.800000px;}
.y1a_c00302{bottom:339.900000px;}
.y19_c00302{bottom:359.700000px;}
.y18_c00302{bottom:379.500000px;}
.y17_c00302{bottom:399.750000px;}
.y16_c00302{bottom:419.850000px;}
.y15_c00302{bottom:439.650000px;}
.y14_c00302{bottom:459.750000px;}
.y13_c00302{bottom:479.850000px;}
.y12_c00302{bottom:499.950000px;}
.y11_c00302{bottom:519.750000px;}
.y10_c00302{bottom:539.850000px;}
.yf_c00302{bottom:559.950000px;}
.ye_c00302{bottom:579.000000px;}
.yd_c00302{bottom:598.500000px;}
.yc_c00302{bottom:618.600000px;}
.yb_c00302{bottom:638.400000px;}
.ya_c00302{bottom:658.500000px;}
.y9_c00302{bottom:678.600000px;}
.y8_c00302{bottom:698.400000px;}
.y7_c00302{bottom:718.500000px;}
.y6_c00302{bottom:738.300000px;}
.y5_c00302{bottom:758.100000px;}
.y4_c00302{bottom:778.650000px;}
.y3_c00302{bottom:811.500000px;}
.y2_c00302{bottom:843.450000px;}
.y1_c00302{bottom:1044.750000px;}
.h3_c00302{height:54.000000px;}
.h2_c00302{height:60.000000px;}
.h0_c00302{height:1166.759949px;}
.h1_c00302{height:1167.000000px;}
.w1_c00302{width:913.500000px;}
.w0_c00302{width:913.679993px;}
.x0_c00302{left:0.000000px;}
.xf1_c00302{left:140.250000px;}
.x74_c00302{left:141.450000px;}
.x10_c00302{left:142.500000px;}
.xe5_c00302{left:158.400000px;}
.x4e_c00302{left:160.350000px;}
.xec_c00302{left:161.850000px;}
.xd9_c00302{left:162.900000px;}
.xbc_c00302{left:167.250000px;}
.x102_c00302{left:169.050000px;}
.x82_c00302{left:171.600000px;}
.xd1_c00302{left:172.800000px;}
.x1d_c00302{left:177.600000px;}
.xe6_c00302{left:180.300000px;}
.xca_c00302{left:182.550000px;}
.xaa_c00302{left:183.750000px;}
.x39_c00302{left:186.450000px;}
.x97_c00302{left:189.300000px;}
.xed_c00302{left:190.650000px;}
.xa2_c00302{left:197.100000px;}
.x5a_c00302{left:199.350000px;}
.xf7_c00302{left:200.400000px;}
.x2b_c00302{left:203.700000px;}
.x46_c00302{left:205.050000px;}
.x4_c00302{left:206.700000px;}
.xd2_c00302{left:207.750000px;}
.xe7_c00302{left:210.150000px;}
.xdf_c00302{left:211.200000px;}
.x1e_c00302{left:213.300000px;}
.xf8_c00302{left:215.850000px;}
.x83_c00302{left:218.400000px;}
.x5b_c00302{left:222.750000px;}
.x11_c00302{left:226.800000px;}
.xcb_c00302{left:229.350000px;}
.xc4_c00302{left:230.400000px;}
.xab_c00302{left:233.100000px;}
.x2c_c00302{left:235.800000px;}
.x1f_c00302{left:237.450000px;}
.x84_c00302{left:238.500000px;}
.x3a_c00302{left:240.750000px;}
.xee_c00302{left:242.550000px;}
.x75_c00302{left:245.250000px;}
.xcc_c00302{left:246.600000px;}
.x103_c00302{left:252.000000px;}
.x5c_c00302{left:253.050000px;}
.x107_c00302{left:255.750000px;}
.x20_c00302{left:259.050000px;}
.xf9_c00302{left:260.100000px;}
.xac_c00302{left:263.400000px;}
.xda_c00302{left:264.750000px;}
.xff_c00302{left:266.250000px;}
.x8e_c00302{left:267.600000px;}
.x21_c00302{left:274.200000px;}
.x4f_c00302{left:275.850000px;}
.x3b_c00302{left:278.850000px;}
.xa3_c00302{left:280.950000px;}
.x76_c00302{left:283.050000px;}
.xad_c00302{left:284.700000px;}
.xb7_c00302{left:293.100000px;}
.x5_c00302{left:294.600000px;}
.x12_c00302{left:295.950000px;}
.x50_c00302{left:298.500000px;}
.x3c_c00302{left:300.150000px;}
.x85_c00302{left:301.200000px;}
.xfa_c00302{left:304.650000px;}
.x22_c00302{left:309.450000px;}
.xae_c00302{left:313.200000px;}
.x2d_c00302{left:315.000000px;}
.xf2_c00302{left:316.350000px;}
.x5d_c00302{left:318.900000px;}
.xe8_c00302{left:320.550000px;}
.xdb_c00302{left:321.600000px;}
.x108_c00302{left:322.650000px;}
.x98_c00302{left:328.200000px;}
.x3d_c00302{left:329.250000px;}
.x6f_c00302{left:330.300000px;}
.xcd_c00302{left:332.250000px;}
.x86_c00302{left:333.600000px;}
.x47_c00302{left:334.650000px;}
.xd3_c00302{left:338.100000px;}
.xa4_c00302{left:339.300000px;}
.xdc_c00302{left:340.650000px;}
.xfb_c00302{left:342.150000px;}
.x77_c00302{left:345.300000px;}
.x2e_c00302{left:348.900000px;}
.xaf_c00302{left:351.000000px;}
.x6_c00302{left:352.950000px;}
.xe0_c00302{left:355.200000px;}
.xbd_c00302{left:358.050000px;}
.x68_c00302{left:360.600000px;}
.x23_c00302{left:362.400000px;}
.x51_c00302{left:368.400000px;}
.x7_c00302{left:370.200000px;}
.x8f_c00302{left:371.250000px;}
.xbe_c00302{left:373.500000px;}
.x104_c00302{left:375.450000px;}
.x2f_c00302{left:377.400000px;}
.xa5_c00302{left:382.800000px;}
.x48_c00302{left:384.000000px;}
.xf3_c00302{left:385.800000px;}
.x3e_c00302{left:389.400000px;}
.xc5_c00302{left:391.200000px;}
.xb8_c00302{left:393.150000px;}
.x87_c00302{left:396.000000px;}
.x69_c00302{left:398.400000px;}
.x90_c00302{left:402.900000px;}
.xd4_c00302{left:407.550000px;}
.x2_c00302{left:410.100000px;}
.xfc_c00302{left:414.150000px;}
.x8_c00302{left:420.600000px;}
.x5e_c00302{left:422.250000px;}
.x3f_c00302{left:423.600000px;}
.xb0_c00302{left:425.550000px;}
.x30_c00302{left:428.100000px;}
.x78_c00302{left:429.600000px;}
.x10d_c00302{left:430.800000px;}
.x24_c00302{left:434.100000px;}
.x99_c00302{left:436.950000px;}
.x9_c00302{left:438.300000px;}
.x70_c00302{left:441.150000px;}
.x91_c00302{left:443.550000px;}
.x13_c00302{left:447.150000px;}
.x31_c00302{left:448.200000px;}
.x52_c00302{left:452.550000px;}
.xe1_c00302{left:454.950000px;}
.x5f_c00302{left:456.750000px;}
.x79_c00302{left:458.100000px;}
.xb1_c00302{left:461.550000px;}
.x1_c00302{left:464.400000px;}
.x53_c00302{left:467.250000px;}
.x100_c00302{left:468.900000px;}
.x49_c00302{left:470.850000px;}
.x92_c00302{left:472.050000px;}
.xbf_c00302{left:473.550000px;}
.x32_c00302{left:475.500000px;}
.x109_c00302{left:477.450000px;}
.x60_c00302{left:480.900000px;}
.xc6_c00302{left:483.000000px;}
.x9a_c00302{left:485.850000px;}
.x6a_c00302{left:489.750000px;}
.xf4_c00302{left:491.550000px;}
.x71_c00302{left:493.050000px;}
.x3_c00302{left:494.700000px;}
.x14_c00302{left:496.800000px;}
.x4a_c00302{left:499.350000px;}
.x105_c00302{left:500.400000px;}
.x7a_c00302{left:503.400000px;}
.x25_c00302{left:506.400000px;}
.x9b_c00302{left:509.250000px;}
.x88_c00302{left:512.250000px;}
.x61_c00302{left:513.600000px;}
.x15_c00302{left:517.350000px;}
.xa_c00302{left:520.800000px;}
.xce_c00302{left:523.650000px;}
.x93_c00302{left:526.800000px;}
.xf5_c00302{left:529.050000px;}
.xe9_c00302{left:530.100000px;}
.xe2_c00302{left:532.050000px;}
.xa6_c00302{left:534.300000px;}
.x33_c00302{left:536.400000px;}
.xb_c00302{left:538.050000px;}
.x7b_c00302{left:541.500000px;}
.x16_c00302{left:542.850000px;}
.x94_c00302{left:548.100000px;}
.xb2_c00302{left:550.500000px;}
.xcf_c00302{left:552.450000px;}
.xd5_c00302{left:554.400000px;}
.x89_c00302{left:556.200000px;}
.x34_c00302{left:557.250000px;}
.xea_c00302{left:559.950000px;}
.x7c_c00302{left:562.350000px;}
.x101_c00302{left:564.000000px;}
.x9c_c00302{left:566.850000px;}
.x62_c00302{left:567.900000px;}
.x40_c00302{left:568.950000px;}
.xd6_c00302{left:571.650000px;}
.xb9_c00302{left:573.450000px;}
.x54_c00302{left:576.750000px;}
.x17_c00302{left:577.800000px;}
.xc0_c00302{left:579.450000px;}
.x41_c00302{left:584.400000px;}
.x35_c00302{left:586.050000px;}
.x63_c00302{left:588.000000px;}
.xfd_c00302{left:589.500000px;}
.x7d_c00302{left:590.850000px;}
.x10e_c00302{left:591.900000px;}
.xa7_c00302{left:595.500000px;}
.xc_c00302{left:597.150000px;}
.xdd_c00302{left:599.100000px;}
.x26_c00302{left:600.750000px;}
.x55_c00302{left:602.250000px;}
.x6b_c00302{left:604.650000px;}
.x9d_c00302{left:610.800000px;}
.xd_c00302{left:615.150000px;}
.x64_c00302{left:616.800000px;}
.xd7_c00302{left:620.700000px;}
.x6c_c00302{left:622.950000px;}
.x10a_c00302{left:625.800000px;}
.xc7_c00302{left:627.300000px;}
.x7e_c00302{left:629.700000px;}
.x27_c00302{left:632.400000px;}
.x18_c00302{left:634.350000px;}
.x95_c00302{left:637.800000px;}
.x8a_c00302{left:639.000000px;}
.x42_c00302{left:645.900000px;}
.xb3_c00302{left:647.700000px;}
.xc8_c00302{left:652.500000px;}
.x4b_c00302{left:654.750000px;}
.xa8_c00302{left:658.500000px;}
.x6d_c00302{left:660.450000px;}
.xde_c00302{left:664.500000px;}
.xe_c00302{left:665.550000px;}
.xc1_c00302{left:666.900000px;}
.x19_c00302{left:671.850000px;}
.xb4_c00302{left:675.000000px;}
.x9e_c00302{left:676.350000px;}
.x7f_c00302{left:678.600000px;}
.x28_c00302{left:680.250000px;}
.x56_c00302{left:681.450000px;}
.xf_c00302{left:683.250000px;}
.xe3_c00302{left:685.050000px;}
.x36_c00302{left:686.850000px;}
.x4c_c00302{left:691.050000px;}
.x65_c00302{left:692.400000px;}
.xc9_c00302{left:693.600000px;}
.x1a_c00302{left:696.300000px;}
.x8b_c00302{left:697.350000px;}
.x29_c00302{left:699.750000px;}
.xc2_c00302{left:704.400000px;}
.xe4_c00302{left:705.600000px;}
.x57_c00302{left:708.750000px;}
.xba_c00302{left:711.600000px;}
.x9f_c00302{left:712.950000px;}
.xd0_c00302{left:714.600000px;}
.x43_c00302{left:715.800000px;}
.xeb_c00302{left:717.300000px;}
.x96_c00302{left:720.300000px;}
.x80_c00302{left:723.900000px;}
.xa9_c00302{left:725.850000px;}
.x66_c00302{left:727.350000px;}
.xef_c00302{left:728.850000px;}
.x6e_c00302{left:730.650000px;}
.x72_c00302{left:732.300000px;}
.xa0_c00302{left:734.250000px;}
.x44_c00302{left:735.300000px;}
.xb5_c00302{left:737.250000px;}
.x8c_c00302{left:743.400000px;}
.x37_c00302{left:745.200000px;}
.x10b_c00302{left:747.150000px;}
.x1b_c00302{left:751.800000px;}
.x73_c00302{left:753.150000px;}
.xc3_c00302{left:755.550000px;}
.x67_c00302{left:756.900000px;}
.x4d_c00302{left:759.450000px;}
.x58_c00302{left:766.350000px;}
.x1c_c00302{left:767.700000px;}
.xf6_c00302{left:769.200000px;}
.xa1_c00302{left:770.550000px;}
.xd8_c00302{left:772.800000px;}
.xbb_c00302{left:774.900000px;}
.xfe_c00302{left:779.700000px;}
.xf0_c00302{left:783.600000px;}
.x59_c00302{left:786.150000px;}
.x8d_c00302{left:788.100000px;}
.x2a_c00302{left:789.450000px;}
.x10c_c00302{left:791.400000px;}
.x81_c00302{left:792.600000px;}
.xb6_c00302{left:794.850000px;}
.x106_c00302{left:796.050000px;}
.x38_c00302{left:797.100000px;}
.x45_c00302{left:801.900000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws1_c00302{word-spacing:-6.039886pt;}
.ws6_c00302{word-spacing:-3.333333pt;}
.ws5_c00302{word-spacing:-2.031236pt;}
.ws7_c00302{word-spacing:0.000000pt;}
.ws2_c00302{word-spacing:3.086420pt;}
.ws3_c00302{word-spacing:14.444444pt;}
.ws4_c00302{word-spacing:16.969697pt;}
.ws0_c00302{word-spacing:20.411523pt;}
.fs1_c00302{font-size:48.000000pt;}
.fs0_c00302{font-size:53.333333pt;}
.y0_c00302{bottom:0.000000pt;}
.y23_c00302{bottom:135.733333pt;}
.y22_c00302{bottom:159.600000pt;}
.y21_c00302{bottom:177.866667pt;}
.y20_c00302{bottom:195.333333pt;}
.y1f_c00302{bottom:213.600000pt;}
.y1e_c00302{bottom:231.200000pt;}
.y1d_c00302{bottom:249.066667pt;}
.y1c_c00302{bottom:266.666667pt;}
.y1b_c00302{bottom:284.266667pt;}
.y1a_c00302{bottom:302.133333pt;}
.y19_c00302{bottom:319.733333pt;}
.y18_c00302{bottom:337.333333pt;}
.y17_c00302{bottom:355.333333pt;}
.y16_c00302{bottom:373.200000pt;}
.y15_c00302{bottom:390.800000pt;}
.y14_c00302{bottom:408.666667pt;}
.y13_c00302{bottom:426.533333pt;}
.y12_c00302{bottom:444.400000pt;}
.y11_c00302{bottom:462.000000pt;}
.y10_c00302{bottom:479.866667pt;}
.yf_c00302{bottom:497.733333pt;}
.ye_c00302{bottom:514.666667pt;}
.yd_c00302{bottom:532.000000pt;}
.yc_c00302{bottom:549.866667pt;}
.yb_c00302{bottom:567.466667pt;}
.ya_c00302{bottom:585.333333pt;}
.y9_c00302{bottom:603.200000pt;}
.y8_c00302{bottom:620.800000pt;}
.y7_c00302{bottom:638.666667pt;}
.y6_c00302{bottom:656.266667pt;}
.y5_c00302{bottom:673.866667pt;}
.y4_c00302{bottom:692.133333pt;}
.y3_c00302{bottom:721.333333pt;}
.y2_c00302{bottom:749.733333pt;}
.y1_c00302{bottom:928.666667pt;}
.h3_c00302{height:48.000000pt;}
.h2_c00302{height:53.333333pt;}
.h0_c00302{height:1037.119955pt;}
.h1_c00302{height:1037.333333pt;}
.w1_c00302{width:812.000000pt;}
.w0_c00302{width:812.159993pt;}
.x0_c00302{left:0.000000pt;}
.xf1_c00302{left:124.666667pt;}
.x74_c00302{left:125.733333pt;}
.x10_c00302{left:126.666667pt;}
.xe5_c00302{left:140.800000pt;}
.x4e_c00302{left:142.533333pt;}
.xec_c00302{left:143.866667pt;}
.xd9_c00302{left:144.800000pt;}
.xbc_c00302{left:148.666667pt;}
.x102_c00302{left:150.266667pt;}
.x82_c00302{left:152.533333pt;}
.xd1_c00302{left:153.600000pt;}
.x1d_c00302{left:157.866667pt;}
.xe6_c00302{left:160.266667pt;}
.xca_c00302{left:162.266667pt;}
.xaa_c00302{left:163.333333pt;}
.x39_c00302{left:165.733333pt;}
.x97_c00302{left:168.266667pt;}
.xed_c00302{left:169.466667pt;}
.xa2_c00302{left:175.200000pt;}
.x5a_c00302{left:177.200000pt;}
.xf7_c00302{left:178.133333pt;}
.x2b_c00302{left:181.066667pt;}
.x46_c00302{left:182.266667pt;}
.x4_c00302{left:183.733333pt;}
.xd2_c00302{left:184.666667pt;}
.xe7_c00302{left:186.800000pt;}
.xdf_c00302{left:187.733333pt;}
.x1e_c00302{left:189.600000pt;}
.xf8_c00302{left:191.866667pt;}
.x83_c00302{left:194.133333pt;}
.x5b_c00302{left:198.000000pt;}
.x11_c00302{left:201.600000pt;}
.xcb_c00302{left:203.866667pt;}
.xc4_c00302{left:204.800000pt;}
.xab_c00302{left:207.200000pt;}
.x2c_c00302{left:209.600000pt;}
.x1f_c00302{left:211.066667pt;}
.x84_c00302{left:212.000000pt;}
.x3a_c00302{left:214.000000pt;}
.xee_c00302{left:215.600000pt;}
.x75_c00302{left:218.000000pt;}
.xcc_c00302{left:219.200000pt;}
.x103_c00302{left:224.000000pt;}
.x5c_c00302{left:224.933333pt;}
.x107_c00302{left:227.333333pt;}
.x20_c00302{left:230.266667pt;}
.xf9_c00302{left:231.200000pt;}
.xac_c00302{left:234.133333pt;}
.xda_c00302{left:235.333333pt;}
.xff_c00302{left:236.666667pt;}
.x8e_c00302{left:237.866667pt;}
.x21_c00302{left:243.733333pt;}
.x4f_c00302{left:245.200000pt;}
.x3b_c00302{left:247.866667pt;}
.xa3_c00302{left:249.733333pt;}
.x76_c00302{left:251.600000pt;}
.xad_c00302{left:253.066667pt;}
.xb7_c00302{left:260.533333pt;}
.x5_c00302{left:261.866667pt;}
.x12_c00302{left:263.066667pt;}
.x50_c00302{left:265.333333pt;}
.x3c_c00302{left:266.800000pt;}
.x85_c00302{left:267.733333pt;}
.xfa_c00302{left:270.800000pt;}
.x22_c00302{left:275.066667pt;}
.xae_c00302{left:278.400000pt;}
.x2d_c00302{left:280.000000pt;}
.xf2_c00302{left:281.200000pt;}
.x5d_c00302{left:283.466667pt;}
.xe8_c00302{left:284.933333pt;}
.xdb_c00302{left:285.866667pt;}
.x108_c00302{left:286.800000pt;}
.x98_c00302{left:291.733333pt;}
.x3d_c00302{left:292.666667pt;}
.x6f_c00302{left:293.600000pt;}
.xcd_c00302{left:295.333333pt;}
.x86_c00302{left:296.533333pt;}
.x47_c00302{left:297.466667pt;}
.xd3_c00302{left:300.533333pt;}
.xa4_c00302{left:301.600000pt;}
.xdc_c00302{left:302.800000pt;}
.xfb_c00302{left:304.133333pt;}
.x77_c00302{left:306.933333pt;}
.x2e_c00302{left:310.133333pt;}
.xaf_c00302{left:312.000000pt;}
.x6_c00302{left:313.733333pt;}
.xe0_c00302{left:315.733333pt;}
.xbd_c00302{left:318.266667pt;}
.x68_c00302{left:320.533333pt;}
.x23_c00302{left:322.133333pt;}
.x51_c00302{left:327.466667pt;}
.x7_c00302{left:329.066667pt;}
.x8f_c00302{left:330.000000pt;}
.xbe_c00302{left:332.000000pt;}
.x104_c00302{left:333.733333pt;}
.x2f_c00302{left:335.466667pt;}
.xa5_c00302{left:340.266667pt;}
.x48_c00302{left:341.333333pt;}
.xf3_c00302{left:342.933333pt;}
.x3e_c00302{left:346.133333pt;}
.xc5_c00302{left:347.733333pt;}
.xb8_c00302{left:349.466667pt;}
.x87_c00302{left:352.000000pt;}
.x69_c00302{left:354.133333pt;}
.x90_c00302{left:358.133333pt;}
.xd4_c00302{left:362.266667pt;}
.x2_c00302{left:364.533333pt;}
.xfc_c00302{left:368.133333pt;}
.x8_c00302{left:373.866667pt;}
.x5e_c00302{left:375.333333pt;}
.x3f_c00302{left:376.533333pt;}
.xb0_c00302{left:378.266667pt;}
.x30_c00302{left:380.533333pt;}
.x78_c00302{left:381.866667pt;}
.x10d_c00302{left:382.933333pt;}
.x24_c00302{left:385.866667pt;}
.x99_c00302{left:388.400000pt;}
.x9_c00302{left:389.600000pt;}
.x70_c00302{left:392.133333pt;}
.x91_c00302{left:394.266667pt;}
.x13_c00302{left:397.466667pt;}
.x31_c00302{left:398.400000pt;}
.x52_c00302{left:402.266667pt;}
.xe1_c00302{left:404.400000pt;}
.x5f_c00302{left:406.000000pt;}
.x79_c00302{left:407.200000pt;}
.xb1_c00302{left:410.266667pt;}
.x1_c00302{left:412.800000pt;}
.x53_c00302{left:415.333333pt;}
.x100_c00302{left:416.800000pt;}
.x49_c00302{left:418.533333pt;}
.x92_c00302{left:419.600000pt;}
.xbf_c00302{left:420.933333pt;}
.x32_c00302{left:422.666667pt;}
.x109_c00302{left:424.400000pt;}
.x60_c00302{left:427.466667pt;}
.xc6_c00302{left:429.333333pt;}
.x9a_c00302{left:431.866667pt;}
.x6a_c00302{left:435.333333pt;}
.xf4_c00302{left:436.933333pt;}
.x71_c00302{left:438.266667pt;}
.x3_c00302{left:439.733333pt;}
.x14_c00302{left:441.600000pt;}
.x4a_c00302{left:443.866667pt;}
.x105_c00302{left:444.800000pt;}
.x7a_c00302{left:447.466667pt;}
.x25_c00302{left:450.133333pt;}
.x9b_c00302{left:452.666667pt;}
.x88_c00302{left:455.333333pt;}
.x61_c00302{left:456.533333pt;}
.x15_c00302{left:459.866667pt;}
.xa_c00302{left:462.933333pt;}
.xce_c00302{left:465.466667pt;}
.x93_c00302{left:468.266667pt;}
.xf5_c00302{left:470.266667pt;}
.xe9_c00302{left:471.200000pt;}
.xe2_c00302{left:472.933333pt;}
.xa6_c00302{left:474.933333pt;}
.x33_c00302{left:476.800000pt;}
.xb_c00302{left:478.266667pt;}
.x7b_c00302{left:481.333333pt;}
.x16_c00302{left:482.533333pt;}
.x94_c00302{left:487.200000pt;}
.xb2_c00302{left:489.333333pt;}
.xcf_c00302{left:491.066667pt;}
.xd5_c00302{left:492.800000pt;}
.x89_c00302{left:494.400000pt;}
.x34_c00302{left:495.333333pt;}
.xea_c00302{left:497.733333pt;}
.x7c_c00302{left:499.866667pt;}
.x101_c00302{left:501.333333pt;}
.x9c_c00302{left:503.866667pt;}
.x62_c00302{left:504.800000pt;}
.x40_c00302{left:505.733333pt;}
.xd6_c00302{left:508.133333pt;}
.xb9_c00302{left:509.733333pt;}
.x54_c00302{left:512.666667pt;}
.x17_c00302{left:513.600000pt;}
.xc0_c00302{left:515.066667pt;}
.x41_c00302{left:519.466667pt;}
.x35_c00302{left:520.933333pt;}
.x63_c00302{left:522.666667pt;}
.xfd_c00302{left:524.000000pt;}
.x7d_c00302{left:525.200000pt;}
.x10e_c00302{left:526.133333pt;}
.xa7_c00302{left:529.333333pt;}
.xc_c00302{left:530.800000pt;}
.xdd_c00302{left:532.533333pt;}
.x26_c00302{left:534.000000pt;}
.x55_c00302{left:535.333333pt;}
.x6b_c00302{left:537.466667pt;}
.x9d_c00302{left:542.933333pt;}
.xd_c00302{left:546.800000pt;}
.x64_c00302{left:548.266667pt;}
.xd7_c00302{left:551.733333pt;}
.x6c_c00302{left:553.733333pt;}
.x10a_c00302{left:556.266667pt;}
.xc7_c00302{left:557.600000pt;}
.x7e_c00302{left:559.733333pt;}
.x27_c00302{left:562.133333pt;}
.x18_c00302{left:563.866667pt;}
.x95_c00302{left:566.933333pt;}
.x8a_c00302{left:568.000000pt;}
.x42_c00302{left:574.133333pt;}
.xb3_c00302{left:575.733333pt;}
.xc8_c00302{left:580.000000pt;}
.x4b_c00302{left:582.000000pt;}
.xa8_c00302{left:585.333333pt;}
.x6d_c00302{left:587.066667pt;}
.xde_c00302{left:590.666667pt;}
.xe_c00302{left:591.600000pt;}
.xc1_c00302{left:592.800000pt;}
.x19_c00302{left:597.200000pt;}
.xb4_c00302{left:600.000000pt;}
.x9e_c00302{left:601.200000pt;}
.x7f_c00302{left:603.200000pt;}
.x28_c00302{left:604.666667pt;}
.x56_c00302{left:605.733333pt;}
.xf_c00302{left:607.333333pt;}
.xe3_c00302{left:608.933333pt;}
.x36_c00302{left:610.533333pt;}
.x4c_c00302{left:614.266667pt;}
.x65_c00302{left:615.466667pt;}
.xc9_c00302{left:616.533333pt;}
.x1a_c00302{left:618.933333pt;}
.x8b_c00302{left:619.866667pt;}
.x29_c00302{left:622.000000pt;}
.xc2_c00302{left:626.133333pt;}
.xe4_c00302{left:627.200000pt;}
.x57_c00302{left:630.000000pt;}
.xba_c00302{left:632.533333pt;}
.x9f_c00302{left:633.733333pt;}
.xd0_c00302{left:635.200000pt;}
.x43_c00302{left:636.266667pt;}
.xeb_c00302{left:637.600000pt;}
.x96_c00302{left:640.266667pt;}
.x80_c00302{left:643.466667pt;}
.xa9_c00302{left:645.200000pt;}
.x66_c00302{left:646.533333pt;}
.xef_c00302{left:647.866667pt;}
.x6e_c00302{left:649.466667pt;}
.x72_c00302{left:650.933333pt;}
.xa0_c00302{left:652.666667pt;}
.x44_c00302{left:653.600000pt;}
.xb5_c00302{left:655.333333pt;}
.x8c_c00302{left:660.800000pt;}
.x37_c00302{left:662.400000pt;}
.x10b_c00302{left:664.133333pt;}
.x1b_c00302{left:668.266667pt;}
.x73_c00302{left:669.466667pt;}
.xc3_c00302{left:671.600000pt;}
.x67_c00302{left:672.800000pt;}
.x4d_c00302{left:675.066667pt;}
.x58_c00302{left:681.200000pt;}
.x1c_c00302{left:682.400000pt;}
.xf6_c00302{left:683.733333pt;}
.xa1_c00302{left:684.933333pt;}
.xd8_c00302{left:686.933333pt;}
.xbb_c00302{left:688.800000pt;}
.xfe_c00302{left:693.066667pt;}
.xf0_c00302{left:696.533333pt;}
.x59_c00302{left:698.800000pt;}
.x8d_c00302{left:700.533333pt;}
.x2a_c00302{left:701.733333pt;}
.x10c_c00302{left:703.466667pt;}
.x81_c00302{left:704.533333pt;}
.xb6_c00302{left:706.533333pt;}
.x106_c00302{left:707.600000pt;}
.x38_c00302{left:708.533333pt;}
.x45_c00302{left:712.800000pt;}
}





/* 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_c00303 {
    display:none;
  }
  .loading-indicator_c00303.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00303 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_c00303 { 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_c00303" -> "#page-container .classname_c00303")
 */
.pf_c00303 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00303 { /* 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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00303 { /* 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_c00303 { /* 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_c00303 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00303 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00303 {overflow:visible;}
  }
}
.c_c00303 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00303 { /* 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_c00303:after { /* webkit #35443 */
  content: '';
}
.t_c00303:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00303 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 */
}
.__c00303 { /* 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_c00303 { /* info for Javascript */
  display:none;
}
.l_c00303 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00303 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00303 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00303: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_c00303 {
    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_c00303.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00303.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_c00303 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00303{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.000000;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;}
.m6_c00303{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m18_c00303{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00303{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m32_c00303{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00303{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00303{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00303{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00303{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m75_c00303{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00303{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m71_c00303{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00303{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00303{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m25_c00303{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m49_c00303{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maa_c00303{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m97_c00303{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m79_c00303{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.md_c00303{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m19_c00303{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m12_c00303{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00303{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00303{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m86_c00303{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00303{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00303{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10_c00303{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00303{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00303{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m22_c00303{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m13_c00303{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m64_c00303{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00303{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00303{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.me_c00303{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m37_c00303{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m60_c00303{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m88_c00303{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma_c00303{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb_c00303{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00303{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m44_c00303{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m41_c00303{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00303{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m39_c00303{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m58_c00303{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m17_c00303{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m73_c00303{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m57_c00303{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m98_c00303{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m83_c00303{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m69_c00303{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00303{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00303{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m30_c00303{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m56_c00303{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00303{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m50_c00303{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00303{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m45_c00303{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00303{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00303{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8_c00303{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00303{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m36_c00303{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00303{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m35_c00303{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4_c00303{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m62_c00303{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m34_c00303{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m76_c00303{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00303{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m14_c00303{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m81_c00303{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m21_c00303{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m27_c00303{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m95_c00303{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m78_c00303{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m16_c00303{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00303{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00303{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9_c00303{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m61_c00303{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3_c00303{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7_c00303{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m40_c00303{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00303{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m99_c00303{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00303{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m84_c00303{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m66_c00303{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m54_c00303{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc_c00303{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00303{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m70_c00303{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00303{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00303{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00303{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m38_c00303{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00303{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m42_c00303{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11_c00303{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m24_c00303{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00303{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00303{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00303{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m85_c00303{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m48_c00303{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5_c00303{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m52_c00303{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00303{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00303{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m29_c00303{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m74_c00303{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m20_c00303{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00303{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m68_c00303{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00303{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00303{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m53_c00303{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00303{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00303{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m96_c00303{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00303{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m59_c00303{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00303{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00303{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00303{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00303{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m87_c00303{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m43_c00303{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00303{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m31_c00303{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m63_c00303{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mf_c00303{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00303{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00303{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00303{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m47_c00303{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00303{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00303{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m93_c00303{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m51_c00303{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00303{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m23_c00303{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00303{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m15_c00303{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00303{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m55_c00303{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00303{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00303{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00303{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m2_c00303{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00303{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m80_c00303{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m1_c00303{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m82_c00303{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00303{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m26_c00303{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00303{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m72_c00303{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00303{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m89_c00303{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m92_c00303{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m90_c00303{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00303{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m33_c00303{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00303{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m77_c00303{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00303{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{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__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00303{word-spacing:-3.235294px;}
.ws9_c00303{word-spacing:0.000000px;}
.ws3_c00303{word-spacing:3.125000px;}
.ws2_c00303{word-spacing:3.472222px;}
.ws4_c00303{word-spacing:6.527778px;}
.ws6_c00303{word-spacing:8.529412px;}
.ws1_c00303{word-spacing:9.285714px;}
.ws8_c00303{word-spacing:10.277778px;}
.ws0_c00303{word-spacing:14.117647px;}
.ws5_c00303{word-spacing:48.571429px;}
.fc0_c00303{color:transparent;}
.fs0_c00303{font-size:60.000000px;}
.y0_c00303{bottom:0.000000px;}
.y2c_c00303{bottom:144.000000px;}
.y2b_c00303{bottom:184.500000px;}
.y2a_c00303{bottom:204.600000px;}
.y29_c00303{bottom:224.400000px;}
.y28_c00303{bottom:244.500000px;}
.y27_c00303{bottom:264.300000px;}
.y26_c00303{bottom:284.100000px;}
.y25_c00303{bottom:304.200000px;}
.y24_c00303{bottom:324.000000px;}
.y23_c00303{bottom:344.100000px;}
.y22_c00303{bottom:364.200000px;}
.y21_c00303{bottom:383.700000px;}
.y20_c00303{bottom:403.200000px;}
.y1f_c00303{bottom:423.300000px;}
.y1e_c00303{bottom:443.400000px;}
.y1d_c00303{bottom:463.200000px;}
.y1c_c00303{bottom:483.000000px;}
.y1b_c00303{bottom:502.800000px;}
.y1a_c00303{bottom:522.900000px;}
.y19_c00303{bottom:542.700000px;}
.y18_c00303{bottom:562.800000px;}
.y17_c00303{bottom:582.900000px;}
.y16_c00303{bottom:603.150000px;}
.y15_c00303{bottom:623.250000px;}
.y14_c00303{bottom:643.350000px;}
.y13_c00303{bottom:663.150000px;}
.y12_c00303{bottom:683.250000px;}
.y11_c00303{bottom:703.050000px;}
.y10_c00303{bottom:723.150000px;}
.yf_c00303{bottom:743.250000px;}
.ye_c00303{bottom:763.350000px;}
.yd_c00303{bottom:783.150000px;}
.yc_c00303{bottom:803.250000px;}
.yb_c00303{bottom:823.050000px;}
.ya_c00303{bottom:842.850000px;}
.y9_c00303{bottom:863.400000px;}
.y8_c00303{bottom:883.500000px;}
.y7_c00303{bottom:903.000000px;}
.y6_c00303{bottom:923.100000px;}
.y5_c00303{bottom:943.200000px;}
.y4_c00303{bottom:963.000000px;}
.y3_c00303{bottom:983.100000px;}
.y2_c00303{bottom:1003.650000px;}
.y1_c00303{bottom:1041.900000px;}
.h2_c00303{height:60.000000px;}
.h0_c00303{height:1166.759949px;}
.h1_c00303{height:1167.000000px;}
.w1_c00303{width:913.500000px;}
.w0_c00303{width:913.679993px;}
.x0_c00303{left:0.000000px;}
.x124_c00303{left:97.950000px;}
.x111_c00303{left:99.150000px;}
.xd2_c00303{left:100.350000px;}
.xa7_c00303{left:101.400000px;}
.x71_c00303{left:102.750000px;}
.x66_c00303{left:104.100000px;}
.x25_c00303{left:105.150000px;}
.x3_c00303{left:106.200000px;}
.x12e_c00303{left:114.750000px;}
.x13a_c00303{left:119.100000px;}
.xb3_c00303{left:122.100000px;}
.x15_c00303{left:125.250000px;}
.xf5_c00303{left:126.750000px;}
.x125_c00303{left:130.050000px;}
.x108_c00303{left:131.100000px;}
.x84_c00303{left:132.300000px;}
.x36_c00303{left:133.800000px;}
.x4_c00303{left:136.800000px;}
.x97_c00303{left:138.600000px;}
.xa0_c00303{left:139.950000px;}
.x102_c00303{left:142.800000px;}
.xd3_c00303{left:145.650000px;}
.x85_c00303{left:147.450000px;}
.x8f_c00303{left:150.150000px;}
.x4a_c00303{left:153.450000px;}
.x67_c00303{left:154.800000px;}
.x7c_c00303{left:157.050000px;}
.x26_c00303{left:158.850000px;}
.xc3_c00303{left:160.350000px;}
.xa1_c00303{left:161.850000px;}
.x4b_c00303{left:164.550000px;}
.xee_c00303{left:165.750000px;}
.xbf_c00303{left:167.400000px;}
.x27_c00303{left:169.950000px;}
.xdf_c00303{left:172.500000px;}
.x90_c00303{left:175.650000px;}
.x5_c00303{left:178.200000px;}
.xe4_c00303{left:180.150000px;}
.x98_c00303{left:182.100000px;}
.xa8_c00303{left:183.150000px;}
.x86_c00303{left:186.750000px;}
.x4c_c00303{left:189.450000px;}
.xf6_c00303{left:190.950000px;}
.x72_c00303{left:195.150000px;}
.x133_c00303{left:197.850000px;}
.x6_c00303{left:199.050000px;}
.x13b_c00303{left:202.200000px;}
.x121_c00303{left:205.050000px;}
.x3b_c00303{left:207.000000px;}
.x68_c00303{left:209.100000px;}
.x5a_c00303{left:211.050000px;}
.x7d_c00303{left:214.350000px;}
.x103_c00303{left:215.550000px;}
.x16_c00303{left:217.050000px;}
.x4d_c00303{left:218.550000px;}
.x3c_c00303{left:221.700000px;}
.xef_c00303{left:223.050000px;}
.x138_c00303{left:224.550000px;}
.xea_c00303{left:225.600000px;}
.xcb_c00303{left:227.250000px;}
.x28_c00303{left:228.600000px;}
.x37_c00303{left:230.250000px;}
.x109_c00303{left:231.450000px;}
.xe0_c00303{left:233.400000px;}
.x69_c00303{left:234.600000px;}
.xb4_c00303{left:236.250000px;}
.xe5_c00303{left:237.450000px;}
.x12f_c00303{left:239.400000px;}
.xf0_c00303{left:242.100000px;}
.x10f_c00303{left:243.900000px;}
.x7e_c00303{left:246.000000px;}
.xcc_c00303{left:247.050000px;}
.x129_c00303{left:248.400000px;}
.xe6_c00303{left:252.600000px;}
.x87_c00303{left:253.650000px;}
.xf7_c00303{left:254.700000px;}
.xb5_c00303{left:255.750000px;}
.x91_c00303{left:256.950000px;}
.x104_c00303{left:258.000000px;}
.x7_c00303{left:259.500000px;}
.x3d_c00303{left:264.600000px;}
.x11a_c00303{left:265.800000px;}
.xc0_c00303{left:268.500000px;}
.x8_c00303{left:270.600000px;}
.x5b_c00303{left:272.550000px;}
.x38_c00303{left:274.500000px;}
.xfc_c00303{left:276.000000px;}
.xda_c00303{left:279.300000px;}
.x88_c00303{left:280.950000px;}
.x4e_c00303{left:282.600000px;}
.xa2_c00303{left:284.250000px;}
.x17_c00303{left:287.550000px;}
.x134_c00303{left:289.650000px;}
.x13c_c00303{left:290.700000px;}
.x29_c00303{left:294.900000px;}
.xcd_c00303{left:296.250000px;}
.x4f_c00303{left:297.300000px;}
.x9_c00303{left:298.650000px;}
.x3e_c00303{left:300.600000px;}
.xc4_c00303{left:303.300000px;}
.x6a_c00303{left:304.800000px;}
.x13d_c00303{left:305.850000px;}
.x18_c00303{left:308.400000px;}
.x10a_c00303{left:310.050000px;}
.x5c_c00303{left:312.150000px;}
.x92_c00303{left:314.100000px;}
.x3f_c00303{left:315.300000px;}
.x99_c00303{left:318.900000px;}
.xeb_c00303{left:321.000000px;}
.x73_c00303{left:322.200000px;}
.x135_c00303{left:325.350000px;}
.x126_c00303{left:327.600000px;}
.xc1_c00303{left:328.950000px;}
.x89_c00303{left:330.600000px;}
.x19_c00303{left:332.850000px;}
.x39_c00303{left:334.950000px;}
.x40_c00303{left:337.950000px;}
.x112_c00303{left:339.600000px;}
.xc5_c00303{left:341.850000px;}
.xec_c00303{left:346.200000px;}
.x50_c00303{left:347.700000px;}
.xa9_c00303{left:349.200000px;}
.x5d_c00303{left:352.800000px;}
.x3a_c00303{left:354.750000px;}
.x11f_c00303{left:356.100000px;}
.xc6_c00303{left:360.600000px;}
.x113_c00303{left:361.950000px;}
.x10b_c00303{left:363.450000px;}
.x41_c00303{left:366.000000px;}
.x110_c00303{left:367.050000px;}
.x5e_c00303{left:368.250000px;}
.x6b_c00303{left:369.450000px;}
.x74_c00303{left:372.300000px;}
.xa_c00303{left:374.550000px;}
.x1a_c00303{left:376.050000px;}
.x2a_c00303{left:377.700000px;}
.x8a_c00303{left:379.950000px;}
.xce_c00303{left:381.900000px;}
.x105_c00303{left:383.250000px;}
.x51_c00303{left:384.450000px;}
.xdb_c00303{left:387.300000px;}
.xf8_c00303{left:388.650000px;}
.xa3_c00303{left:390.150000px;}
.x5f_c00303{left:391.950000px;}
.x114_c00303{left:393.300000px;}
.xb_c00303{left:394.350000px;}
.xaa_c00303{left:395.700000px;}
.x2b_c00303{left:398.250000px;}
.xcf_c00303{left:399.900000px;}
.x7f_c00303{left:401.100000px;}
.x12a_c00303{left:402.450000px;}
.x93_c00303{left:403.800000px;}
.xf9_c00303{left:406.650000px;}
.x1_c00303{left:408.300000px;}
.x52_c00303{left:409.950000px;}
.xc7_c00303{left:412.500000px;}
.xb6_c00303{left:414.150000px;}
.xab_c00303{left:417.000000px;}
.xf1_c00303{left:418.500000px;}
.x9a_c00303{left:421.200000px;}
.x60_c00303{left:423.600000px;}
.x130_c00303{left:426.900000px;}
.x94_c00303{left:427.950000px;}
.x11b_c00303{left:431.250000px;}
.xe7_c00303{left:432.300000px;}
.x75_c00303{left:434.250000px;}
.xed_c00303{left:436.200000px;}
.x13e_c00303{left:437.550000px;}
.x2c_c00303{left:438.900000px;}
.xac_c00303{left:440.100000px;}
.x42_c00303{left:442.200000px;}
.xfd_c00303{left:443.400000px;}
.x53_c00303{left:445.200000px;}
.xe1_c00303{left:446.850000px;}
.xb7_c00303{left:452.250000px;}
.x6c_c00303{left:453.750000px;}
.x9b_c00303{left:455.400000px;}
.x43_c00303{left:456.900000px;}
.x2d_c00303{left:458.400000px;}
.x128_c00303{left:459.450000px;}
.x12b_c00303{left:460.800000px;}
.xc_c00303{left:463.800000px;}
.xfe_c00303{left:466.800000px;}
.xa4_c00303{left:468.900000px;}
.x122_c00303{left:470.700000px;}
.xd4_c00303{left:473.250000px;}
.x1b_c00303{left:477.900000px;}
.xad_c00303{left:478.950000px;}
.xd_c00303{left:481.050000px;}
.x12c_c00303{left:482.400000px;}
.x10c_c00303{left:484.500000px;}
.x115_c00303{left:486.150000px;}
.x6d_c00303{left:488.250000px;}
.x61_c00303{left:493.050000px;}
.x54_c00303{left:494.550000px;}
.x1c_c00303{left:496.650000px;}
.xb8_c00303{left:498.750000px;}
.x44_c00303{left:499.800000px;}
.x10d_c00303{left:503.550000px;}
.x2e_c00303{left:505.200000px;}
.xe_c00303{left:506.550000px;}
.x139_c00303{left:507.900000px;}
.xfa_c00303{left:510.600000px;}
.x76_c00303{left:512.700000px;}
.x2f_c00303{left:517.800000px;}
.xae_c00303{left:519.600000px;}
.x55_c00303{left:521.850000px;}
.xb9_c00303{left:522.900000px;}
.x131_c00303{left:524.100000px;}
.x127_c00303{left:527.400000px;}
.x1d_c00303{left:530.550000px;}
.xf_c00303{left:534.600000px;}
.x45_c00303{left:536.850000px;}
.xff_c00303{left:538.050000px;}
.x80_c00303{left:540.450000px;}
.x62_c00303{left:542.700000px;}
.x8b_c00303{left:543.900000px;}
.xf2_c00303{left:545.700000px;}
.x13f_c00303{left:548.700000px;}
.xc8_c00303{left:551.250000px;}
.xdc_c00303{left:552.750000px;}
.x6e_c00303{left:554.100000px;}
.x1e_c00303{left:556.050000px;}
.x10_c00303{left:557.700000px;}
.x46_c00303{left:560.550000px;}
.x9c_c00303{left:561.600000px;}
.xd5_c00303{left:563.250000px;}
.x123_c00303{left:565.800000px;}
.xd0_c00303{left:567.000000px;}
.x95_c00303{left:568.350000px;}
.x12d_c00303{left:569.550000px;}
.x136_c00303{left:571.650000px;}
.x30_c00303{left:572.850000px;}
.xc9_c00303{left:574.350000px;}
.xaf_c00303{left:576.000000px;}
.xa5_c00303{left:577.500000px;}
.x100_c00303{left:578.700000px;}
.x77_c00303{left:580.800000px;}
.x63_c00303{left:582.000000px;}
.x9d_c00303{left:583.950000px;}
.x11c_c00303{left:588.150000px;}
.x31_c00303{left:589.800000px;}
.xba_c00303{left:592.350000px;}
.x47_c00303{left:594.750000px;}
.x137_c00303{left:597.150000px;}
.x8c_c00303{left:598.200000px;}
.x1f_c00303{left:599.250000px;}
.x56_c00303{left:600.600000px;}
.x81_c00303{left:604.200000px;}
.xd6_c00303{left:606.150000px;}
.x20_c00303{left:607.950000px;}
.xbb_c00303{left:611.400000px;}
.x78_c00303{left:612.450000px;}
.xb0_c00303{left:613.800000px;}
.x11_c00303{left:615.600000px;}
.x116_c00303{left:616.950000px;}
.xe8_c00303{left:618.750000px;}
.xdd_c00303{left:620.550000px;}
.xf3_c00303{left:623.550000px;}
.x140_c00303{left:624.600000px;}
.x57_c00303{left:628.350000px;}
.x32_c00303{left:630.150000px;}
.xe2_c00303{left:633.750000px;}
.x120_c00303{left:635.400000px;}
.x10e_c00303{left:639.000000px;}
.xa6_c00303{left:640.800000px;}
.xd7_c00303{left:642.450000px;}
.x21_c00303{left:647.550000px;}
.xd1_c00303{left:649.350000px;}
.x33_c00303{left:650.700000px;}
.x48_c00303{left:652.650000px;}
.x106_c00303{left:654.150000px;}
.x11d_c00303{left:655.800000px;}
.x79_c00303{left:658.500000px;}
.x12_c00303{left:661.350000px;}
.x8d_c00303{left:664.050000px;}
.x22_c00303{left:667.050000px;}
.x117_c00303{left:668.100000px;}
.xde_c00303{left:669.900000px;}
.x107_c00303{left:671.400000px;}
.x13_c00303{left:672.900000px;}
.x82_c00303{left:674.100000px;}
.xbc_c00303{left:675.150000px;}
.x6f_c00303{left:676.200000px;}
.xfb_c00303{left:678.750000px;}
.x64_c00303{left:682.800000px;}
.x118_c00303{left:684.600000px;}
.x34_c00303{left:686.700000px;}
.xd8_c00303{left:687.750000px;}
.xca_c00303{left:692.700000px;}
.x23_c00303{left:695.550000px;}
.x14_c00303{left:698.400000px;}
.xf4_c00303{left:700.200000px;}
.x7a_c00303{left:702.450000px;}
.x132_c00303{left:703.950000px;}
.xe3_c00303{left:706.050000px;}
.xd9_c00303{left:708.600000px;}
.x11e_c00303{left:710.550000px;}
.x58_c00303{left:714.450000px;}
.x83_c00303{left:715.500000px;}
.xc2_c00303{left:720.600000px;}
.xb1_c00303{left:721.800000px;}
.x65_c00303{left:723.750000px;}
.x9e_c00303{left:726.150000px;}
.x35_c00303{left:728.100000px;}
.x101_c00303{left:730.650000px;}
.xbd_c00303{left:733.800000px;}
.x119_c00303{left:735.000000px;}
.x59_c00303{left:738.150000px;}
.xb2_c00303{left:740.550000px;}
.xe9_c00303{left:742.650000px;}
.x70_c00303{left:743.850000px;}
.xbe_c00303{left:744.900000px;}
.x7b_c00303{left:745.950000px;}
.x2_c00303{left:747.000000px;}
.x9f_c00303{left:748.800000px;}
.x49_c00303{left:751.050000px;}
.x96_c00303{left:757.500000px;}
.x24_c00303{left:760.350000px;}
.x8e_c00303{left:763.800000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws7_c00303{word-spacing:-2.875817pt;}
.ws9_c00303{word-spacing:0.000000pt;}
.ws3_c00303{word-spacing:2.777778pt;}
.ws2_c00303{word-spacing:3.086420pt;}
.ws4_c00303{word-spacing:5.802469pt;}
.ws6_c00303{word-spacing:7.581699pt;}
.ws1_c00303{word-spacing:8.253968pt;}
.ws8_c00303{word-spacing:9.135802pt;}
.ws0_c00303{word-spacing:12.549020pt;}
.ws5_c00303{word-spacing:43.174603pt;}
.fs0_c00303{font-size:53.333333pt;}
.y0_c00303{bottom:0.000000pt;}
.y2c_c00303{bottom:128.000000pt;}
.y2b_c00303{bottom:164.000000pt;}
.y2a_c00303{bottom:181.866667pt;}
.y29_c00303{bottom:199.466667pt;}
.y28_c00303{bottom:217.333333pt;}
.y27_c00303{bottom:234.933333pt;}
.y26_c00303{bottom:252.533333pt;}
.y25_c00303{bottom:270.400000pt;}
.y24_c00303{bottom:288.000000pt;}
.y23_c00303{bottom:305.866667pt;}
.y22_c00303{bottom:323.733333pt;}
.y21_c00303{bottom:341.066667pt;}
.y20_c00303{bottom:358.400000pt;}
.y1f_c00303{bottom:376.266667pt;}
.y1e_c00303{bottom:394.133333pt;}
.y1d_c00303{bottom:411.733333pt;}
.y1c_c00303{bottom:429.333333pt;}
.y1b_c00303{bottom:446.933333pt;}
.y1a_c00303{bottom:464.800000pt;}
.y19_c00303{bottom:482.400000pt;}
.y18_c00303{bottom:500.266667pt;}
.y17_c00303{bottom:518.133333pt;}
.y16_c00303{bottom:536.133333pt;}
.y15_c00303{bottom:554.000000pt;}
.y14_c00303{bottom:571.866667pt;}
.y13_c00303{bottom:589.466667pt;}
.y12_c00303{bottom:607.333333pt;}
.y11_c00303{bottom:624.933333pt;}
.y10_c00303{bottom:642.800000pt;}
.yf_c00303{bottom:660.666667pt;}
.ye_c00303{bottom:678.533333pt;}
.yd_c00303{bottom:696.133333pt;}
.yc_c00303{bottom:714.000000pt;}
.yb_c00303{bottom:731.600000pt;}
.ya_c00303{bottom:749.200000pt;}
.y9_c00303{bottom:767.466667pt;}
.y8_c00303{bottom:785.333333pt;}
.y7_c00303{bottom:802.666667pt;}
.y6_c00303{bottom:820.533333pt;}
.y5_c00303{bottom:838.400000pt;}
.y4_c00303{bottom:856.000000pt;}
.y3_c00303{bottom:873.866667pt;}
.y2_c00303{bottom:892.133333pt;}
.y1_c00303{bottom:926.133333pt;}
.h2_c00303{height:53.333333pt;}
.h0_c00303{height:1037.119955pt;}
.h1_c00303{height:1037.333333pt;}
.w1_c00303{width:812.000000pt;}
.w0_c00303{width:812.159993pt;}
.x0_c00303{left:0.000000pt;}
.x124_c00303{left:87.066667pt;}
.x111_c00303{left:88.133333pt;}
.xd2_c00303{left:89.200000pt;}
.xa7_c00303{left:90.133333pt;}
.x71_c00303{left:91.333333pt;}
.x66_c00303{left:92.533333pt;}
.x25_c00303{left:93.466667pt;}
.x3_c00303{left:94.400000pt;}
.x12e_c00303{left:102.000000pt;}
.x13a_c00303{left:105.866667pt;}
.xb3_c00303{left:108.533333pt;}
.x15_c00303{left:111.333333pt;}
.xf5_c00303{left:112.666667pt;}
.x125_c00303{left:115.600000pt;}
.x108_c00303{left:116.533333pt;}
.x84_c00303{left:117.600000pt;}
.x36_c00303{left:118.933333pt;}
.x4_c00303{left:121.600000pt;}
.x97_c00303{left:123.200000pt;}
.xa0_c00303{left:124.400000pt;}
.x102_c00303{left:126.933333pt;}
.xd3_c00303{left:129.466667pt;}
.x85_c00303{left:131.066667pt;}
.x8f_c00303{left:133.466667pt;}
.x4a_c00303{left:136.400000pt;}
.x67_c00303{left:137.600000pt;}
.x7c_c00303{left:139.600000pt;}
.x26_c00303{left:141.200000pt;}
.xc3_c00303{left:142.533333pt;}
.xa1_c00303{left:143.866667pt;}
.x4b_c00303{left:146.266667pt;}
.xee_c00303{left:147.333333pt;}
.xbf_c00303{left:148.800000pt;}
.x27_c00303{left:151.066667pt;}
.xdf_c00303{left:153.333333pt;}
.x90_c00303{left:156.133333pt;}
.x5_c00303{left:158.400000pt;}
.xe4_c00303{left:160.133333pt;}
.x98_c00303{left:161.866667pt;}
.xa8_c00303{left:162.800000pt;}
.x86_c00303{left:166.000000pt;}
.x4c_c00303{left:168.400000pt;}
.xf6_c00303{left:169.733333pt;}
.x72_c00303{left:173.466667pt;}
.x133_c00303{left:175.866667pt;}
.x6_c00303{left:176.933333pt;}
.x13b_c00303{left:179.733333pt;}
.x121_c00303{left:182.266667pt;}
.x3b_c00303{left:184.000000pt;}
.x68_c00303{left:185.866667pt;}
.x5a_c00303{left:187.600000pt;}
.x7d_c00303{left:190.533333pt;}
.x103_c00303{left:191.600000pt;}
.x16_c00303{left:192.933333pt;}
.x4d_c00303{left:194.266667pt;}
.x3c_c00303{left:197.066667pt;}
.xef_c00303{left:198.266667pt;}
.x138_c00303{left:199.600000pt;}
.xea_c00303{left:200.533333pt;}
.xcb_c00303{left:202.000000pt;}
.x28_c00303{left:203.200000pt;}
.x37_c00303{left:204.666667pt;}
.x109_c00303{left:205.733333pt;}
.xe0_c00303{left:207.466667pt;}
.x69_c00303{left:208.533333pt;}
.xb4_c00303{left:210.000000pt;}
.xe5_c00303{left:211.066667pt;}
.x12f_c00303{left:212.800000pt;}
.xf0_c00303{left:215.200000pt;}
.x10f_c00303{left:216.800000pt;}
.x7e_c00303{left:218.666667pt;}
.xcc_c00303{left:219.600000pt;}
.x129_c00303{left:220.800000pt;}
.xe6_c00303{left:224.533333pt;}
.x87_c00303{left:225.466667pt;}
.xf7_c00303{left:226.400000pt;}
.xb5_c00303{left:227.333333pt;}
.x91_c00303{left:228.400000pt;}
.x104_c00303{left:229.333333pt;}
.x7_c00303{left:230.666667pt;}
.x3d_c00303{left:235.200000pt;}
.x11a_c00303{left:236.266667pt;}
.xc0_c00303{left:238.666667pt;}
.x8_c00303{left:240.533333pt;}
.x5b_c00303{left:242.266667pt;}
.x38_c00303{left:244.000000pt;}
.xfc_c00303{left:245.333333pt;}
.xda_c00303{left:248.266667pt;}
.x88_c00303{left:249.733333pt;}
.x4e_c00303{left:251.200000pt;}
.xa2_c00303{left:252.666667pt;}
.x17_c00303{left:255.600000pt;}
.x134_c00303{left:257.466667pt;}
.x13c_c00303{left:258.400000pt;}
.x29_c00303{left:262.133333pt;}
.xcd_c00303{left:263.333333pt;}
.x4f_c00303{left:264.266667pt;}
.x9_c00303{left:265.466667pt;}
.x3e_c00303{left:267.200000pt;}
.xc4_c00303{left:269.600000pt;}
.x6a_c00303{left:270.933333pt;}
.x13d_c00303{left:271.866667pt;}
.x18_c00303{left:274.133333pt;}
.x10a_c00303{left:275.600000pt;}
.x5c_c00303{left:277.466667pt;}
.x92_c00303{left:279.200000pt;}
.x3f_c00303{left:280.266667pt;}
.x99_c00303{left:283.466667pt;}
.xeb_c00303{left:285.333333pt;}
.x73_c00303{left:286.400000pt;}
.x135_c00303{left:289.200000pt;}
.x126_c00303{left:291.200000pt;}
.xc1_c00303{left:292.400000pt;}
.x89_c00303{left:293.866667pt;}
.x19_c00303{left:295.866667pt;}
.x39_c00303{left:297.733333pt;}
.x40_c00303{left:300.400000pt;}
.x112_c00303{left:301.866667pt;}
.xc5_c00303{left:303.866667pt;}
.xec_c00303{left:307.733333pt;}
.x50_c00303{left:309.066667pt;}
.xa9_c00303{left:310.400000pt;}
.x5d_c00303{left:313.600000pt;}
.x3a_c00303{left:315.333333pt;}
.x11f_c00303{left:316.533333pt;}
.xc6_c00303{left:320.533333pt;}
.x113_c00303{left:321.733333pt;}
.x10b_c00303{left:323.066667pt;}
.x41_c00303{left:325.333333pt;}
.x110_c00303{left:326.266667pt;}
.x5e_c00303{left:327.333333pt;}
.x6b_c00303{left:328.400000pt;}
.x74_c00303{left:330.933333pt;}
.xa_c00303{left:332.933333pt;}
.x1a_c00303{left:334.266667pt;}
.x2a_c00303{left:335.733333pt;}
.x8a_c00303{left:337.733333pt;}
.xce_c00303{left:339.466667pt;}
.x105_c00303{left:340.666667pt;}
.x51_c00303{left:341.733333pt;}
.xdb_c00303{left:344.266667pt;}
.xf8_c00303{left:345.466667pt;}
.xa3_c00303{left:346.800000pt;}
.x5f_c00303{left:348.400000pt;}
.x114_c00303{left:349.600000pt;}
.xb_c00303{left:350.533333pt;}
.xaa_c00303{left:351.733333pt;}
.x2b_c00303{left:354.000000pt;}
.xcf_c00303{left:355.466667pt;}
.x7f_c00303{left:356.533333pt;}
.x12a_c00303{left:357.733333pt;}
.x93_c00303{left:358.933333pt;}
.xf9_c00303{left:361.466667pt;}
.x1_c00303{left:362.933333pt;}
.x52_c00303{left:364.400000pt;}
.xc7_c00303{left:366.666667pt;}
.xb6_c00303{left:368.133333pt;}
.xab_c00303{left:370.666667pt;}
.xf1_c00303{left:372.000000pt;}
.x9a_c00303{left:374.400000pt;}
.x60_c00303{left:376.533333pt;}
.x130_c00303{left:379.466667pt;}
.x94_c00303{left:380.400000pt;}
.x11b_c00303{left:383.333333pt;}
.xe7_c00303{left:384.266667pt;}
.x75_c00303{left:386.000000pt;}
.xed_c00303{left:387.733333pt;}
.x13e_c00303{left:388.933333pt;}
.x2c_c00303{left:390.133333pt;}
.xac_c00303{left:391.200000pt;}
.x42_c00303{left:393.066667pt;}
.xfd_c00303{left:394.133333pt;}
.x53_c00303{left:395.733333pt;}
.xe1_c00303{left:397.200000pt;}
.xb7_c00303{left:402.000000pt;}
.x6c_c00303{left:403.333333pt;}
.x9b_c00303{left:404.800000pt;}
.x43_c00303{left:406.133333pt;}
.x2d_c00303{left:407.466667pt;}
.x128_c00303{left:408.400000pt;}
.x12b_c00303{left:409.600000pt;}
.xc_c00303{left:412.266667pt;}
.xfe_c00303{left:414.933333pt;}
.xa4_c00303{left:416.800000pt;}
.x122_c00303{left:418.400000pt;}
.xd4_c00303{left:420.666667pt;}
.x1b_c00303{left:424.800000pt;}
.xad_c00303{left:425.733333pt;}
.xd_c00303{left:427.600000pt;}
.x12c_c00303{left:428.800000pt;}
.x10c_c00303{left:430.666667pt;}
.x115_c00303{left:432.133333pt;}
.x6d_c00303{left:434.000000pt;}
.x61_c00303{left:438.266667pt;}
.x54_c00303{left:439.600000pt;}
.x1c_c00303{left:441.466667pt;}
.xb8_c00303{left:443.333333pt;}
.x44_c00303{left:444.266667pt;}
.x10d_c00303{left:447.600000pt;}
.x2e_c00303{left:449.066667pt;}
.xe_c00303{left:450.266667pt;}
.x139_c00303{left:451.466667pt;}
.xfa_c00303{left:453.866667pt;}
.x76_c00303{left:455.733333pt;}
.x2f_c00303{left:460.266667pt;}
.xae_c00303{left:461.866667pt;}
.x55_c00303{left:463.866667pt;}
.xb9_c00303{left:464.800000pt;}
.x131_c00303{left:465.866667pt;}
.x127_c00303{left:468.800000pt;}
.x1d_c00303{left:471.600000pt;}
.xf_c00303{left:475.200000pt;}
.x45_c00303{left:477.200000pt;}
.xff_c00303{left:478.266667pt;}
.x80_c00303{left:480.400000pt;}
.x62_c00303{left:482.400000pt;}
.x8b_c00303{left:483.466667pt;}
.xf2_c00303{left:485.066667pt;}
.x13f_c00303{left:487.733333pt;}
.xc8_c00303{left:490.000000pt;}
.xdc_c00303{left:491.333333pt;}
.x6e_c00303{left:492.533333pt;}
.x1e_c00303{left:494.266667pt;}
.x10_c00303{left:495.733333pt;}
.x46_c00303{left:498.266667pt;}
.x9c_c00303{left:499.200000pt;}
.xd5_c00303{left:500.666667pt;}
.x123_c00303{left:502.933333pt;}
.xd0_c00303{left:504.000000pt;}
.x95_c00303{left:505.200000pt;}
.x12d_c00303{left:506.266667pt;}
.x136_c00303{left:508.133333pt;}
.x30_c00303{left:509.200000pt;}
.xc9_c00303{left:510.533333pt;}
.xaf_c00303{left:512.000000pt;}
.xa5_c00303{left:513.333333pt;}
.x100_c00303{left:514.400000pt;}
.x77_c00303{left:516.266667pt;}
.x63_c00303{left:517.333333pt;}
.x9d_c00303{left:519.066667pt;}
.x11c_c00303{left:522.800000pt;}
.x31_c00303{left:524.266667pt;}
.xba_c00303{left:526.533333pt;}
.x47_c00303{left:528.666667pt;}
.x137_c00303{left:530.800000pt;}
.x8c_c00303{left:531.733333pt;}
.x1f_c00303{left:532.666667pt;}
.x56_c00303{left:533.866667pt;}
.x81_c00303{left:537.066667pt;}
.xd6_c00303{left:538.800000pt;}
.x20_c00303{left:540.400000pt;}
.xbb_c00303{left:543.466667pt;}
.x78_c00303{left:544.400000pt;}
.xb0_c00303{left:545.600000pt;}
.x11_c00303{left:547.200000pt;}
.x116_c00303{left:548.400000pt;}
.xe8_c00303{left:550.000000pt;}
.xdd_c00303{left:551.600000pt;}
.xf3_c00303{left:554.266667pt;}
.x140_c00303{left:555.200000pt;}
.x57_c00303{left:558.533333pt;}
.x32_c00303{left:560.133333pt;}
.xe2_c00303{left:563.333333pt;}
.x120_c00303{left:564.800000pt;}
.x10e_c00303{left:568.000000pt;}
.xa6_c00303{left:569.600000pt;}
.xd7_c00303{left:571.066667pt;}
.x21_c00303{left:575.600000pt;}
.xd1_c00303{left:577.200000pt;}
.x33_c00303{left:578.400000pt;}
.x48_c00303{left:580.133333pt;}
.x106_c00303{left:581.466667pt;}
.x11d_c00303{left:582.933333pt;}
.x79_c00303{left:585.333333pt;}
.x12_c00303{left:587.866667pt;}
.x8d_c00303{left:590.266667pt;}
.x22_c00303{left:592.933333pt;}
.x117_c00303{left:593.866667pt;}
.xde_c00303{left:595.466667pt;}
.x107_c00303{left:596.800000pt;}
.x13_c00303{left:598.133333pt;}
.x82_c00303{left:599.200000pt;}
.xbc_c00303{left:600.133333pt;}
.x6f_c00303{left:601.066667pt;}
.xfb_c00303{left:603.333333pt;}
.x64_c00303{left:606.933333pt;}
.x118_c00303{left:608.533333pt;}
.x34_c00303{left:610.400000pt;}
.xd8_c00303{left:611.333333pt;}
.xca_c00303{left:615.733333pt;}
.x23_c00303{left:618.266667pt;}
.x14_c00303{left:620.800000pt;}
.xf4_c00303{left:622.400000pt;}
.x7a_c00303{left:624.400000pt;}
.x132_c00303{left:625.733333pt;}
.xe3_c00303{left:627.600000pt;}
.xd9_c00303{left:629.866667pt;}
.x11e_c00303{left:631.600000pt;}
.x58_c00303{left:635.066667pt;}
.x83_c00303{left:636.000000pt;}
.xc2_c00303{left:640.533333pt;}
.xb1_c00303{left:641.600000pt;}
.x65_c00303{left:643.333333pt;}
.x9e_c00303{left:645.466667pt;}
.x35_c00303{left:647.200000pt;}
.x101_c00303{left:649.466667pt;}
.xbd_c00303{left:652.266667pt;}
.x119_c00303{left:653.333333pt;}
.x59_c00303{left:656.133333pt;}
.xb2_c00303{left:658.266667pt;}
.xe9_c00303{left:660.133333pt;}
.x70_c00303{left:661.200000pt;}
.xbe_c00303{left:662.133333pt;}
.x7b_c00303{left:663.066667pt;}
.x2_c00303{left:664.000000pt;}
.x9f_c00303{left:665.600000pt;}
.x49_c00303{left:667.600000pt;}
.x96_c00303{left:673.333333pt;}
.x24_c00303{left:675.866667pt;}
.x8e_c00303{left:678.933333pt;}
}





/* 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_c00304 {
    display:none;
  }
  .loading-indicator_c00304.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00304 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_c00304 { 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_c00304" -> "#page-container .classname_c00304")
 */
.pf_c00304 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00304 { /* 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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00304 { /* 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_c00304 { /* 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_c00304 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00304 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00304 {overflow:visible;}
  }
}
.c_c00304 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00304 { /* 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_c00304:after { /* webkit #35443 */
  content: '';
}
.t_c00304:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00304 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 */
}
.__c00304 { /* 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_c00304 { /* info for Javascript */
  display:none;
}
.l_c00304 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00304 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00304 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00304: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_c00304 {
    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_c00304.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00304.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_c00304 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00304{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00304;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.000000;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;}
.ma0_c00304{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m70_c00304{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m22_c00304{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m18_c00304{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00304{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.maf_c00304{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00304{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.maa_c00304{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00304{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00304{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00304{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m78_c00304{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m24_c00304{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m11_c00304{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00304{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m42_c00304{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m40_c00304{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00304{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00304{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00304{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m0_c00304{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00304{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00304{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00304{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m85_c00304{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00304{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m58_c00304{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00304{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00304{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00304{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00304{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m75_c00304{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00304{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00304{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00304{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m74_c00304{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00304{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m83_c00304{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00304{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m37_c00304{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00304{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00304{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m96_c00304{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00304{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00304{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00304{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m65_c00304{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00304{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mae_c00304{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m62_c00304{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00304{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mad_c00304{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00304{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00304{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00304{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00304{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m33_c00304{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m90_c00304{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00304{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m10_c00304{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00304{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00304{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00304{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00304{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00304{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9_c00304{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00304{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00304{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m86_c00304{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m87_c00304{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00304{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00304{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00304{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m69_c00304{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00304{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m61_c00304{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00304{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00304{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mab_c00304{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m23_c00304{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00304{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m76_c00304{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00304{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00304{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m63_c00304{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m77_c00304{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m57_c00304{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00304{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00304{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00304{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m99_c00304{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m19_c00304{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00304{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m34_c00304{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00304{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m54_c00304{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m81_c00304{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m48_c00304{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7_c00304{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m35_c00304{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m13_c00304{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5_c00304{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8_c00304{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m38_c00304{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m92_c00304{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3_c00304{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00304{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00304{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m43_c00304{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m45_c00304{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m49_c00304{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m73_c00304{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m12_c00304{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m39_c00304{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00304{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m93_c00304{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mb_c00304{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00304{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00304{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc_c00304{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00304{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m26_c00304{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);}
.m7b_c00304{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m53_c00304{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00304{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m28_c00304{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m6_c00304{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m59_c00304{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m80_c00304{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m15_c00304{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m30_c00304{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m41_c00304{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m89_c00304{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00304{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4_c00304{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m50_c00304{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m20_c00304{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m66_c00304{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00304{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00304{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00304{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m79_c00304{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00304{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m60_c00304{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m44_c00304{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00304{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00304{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00304{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m31_c00304{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00304{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00304{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00304{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m25_c00304{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00304{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m71_c00304{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m29_c00304{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00304{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m82_c00304{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m72_c00304{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m21_c00304{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m64_c00304{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00304{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m98_c00304{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m47_c00304{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m14_c00304{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m51_c00304{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00304{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.md_c00304{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m27_c00304{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00304{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00304{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mac_c00304{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m91_c00304{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.me_c00304{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m84_c00304{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m46_c00304{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.ma_c00304{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00304{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m16_c00304{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m17_c00304{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00304{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m32_c00304{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m68_c00304{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m67_c00304{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m1_c00304{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m56_c00304{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m55_c00304{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m52_c00304{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00304{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00304{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m94_c00304{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m88_c00304{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mba_c00304{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00304{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00304{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m95_c00304{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m2_c00304{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00304{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00304{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00304{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.v0_c00304{vertical-align:0.000000px;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{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__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00304{word-spacing:-12.250000px;}
.ws5_c00304{word-spacing:-5.532083px;}
.ws3_c00304{word-spacing:-4.750000px;}
.ws2_c00304{word-spacing:-1.240869px;}
.ws1_c00304{word-spacing:-0.756839px;}
.wsa_c00304{word-spacing:0.000000px;}
.ws7_c00304{word-spacing:4.090909px;}
.ws4_c00304{word-spacing:4.650602px;}
.ws0_c00304{word-spacing:6.125000px;}
.ws9_c00304{word-spacing:7.500000px;}
.ws8_c00304{word-spacing:10.171161px;}
._0_c00304{width:34.625000px;}
._1_c00304{width:74.750000px;}
.fc0_c00304{color:transparent;}
.fs0_c00304{font-size:54.000000px;}
.y0_c00304{bottom:0.000000px;}
.y2f_c00304{bottom:144.000000px;}
.y2e_c00304{bottom:159.450000px;}
.y2d_c00304{bottom:175.350000px;}
.y2c_c00304{bottom:190.800000px;}
.y2b_c00304{bottom:207.000000px;}
.y2a_c00304{bottom:222.450000px;}
.y29_c00304{bottom:237.900000px;}
.y28_c00304{bottom:253.500000px;}
.y27_c00304{bottom:269.250000px;}
.y26_c00304{bottom:284.700000px;}
.y25_c00304{bottom:300.300000px;}
.y24_c00304{bottom:316.050000px;}
.y23_c00304{bottom:331.950000px;}
.y22_c00304{bottom:347.700000px;}
.y21_c00304{bottom:363.600000px;}
.y20_c00304{bottom:395.700000px;}
.y1f_c00304{bottom:415.500000px;}
.y1e_c00304{bottom:435.300000px;}
.y1d_c00304{bottom:454.950000px;}
.y1c_c00304{bottom:475.500000px;}
.y1b_c00304{bottom:495.000000px;}
.y1a_c00304{bottom:515.100000px;}
.y19_c00304{bottom:534.900000px;}
.y18_c00304{bottom:555.300000px;}
.y17_c00304{bottom:575.100000px;}
.y16_c00304{bottom:595.200000px;}
.y15_c00304{bottom:615.000000px;}
.y14_c00304{bottom:634.800000px;}
.y13_c00304{bottom:654.900000px;}
.y12_c00304{bottom:675.000000px;}
.y11_c00304{bottom:694.800000px;}
.y10_c00304{bottom:724.200000px;}
.yf_c00304{bottom:744.300000px;}
.ye_c00304{bottom:764.100000px;}
.yd_c00304{bottom:783.900000px;}
.yc_c00304{bottom:803.700000px;}
.yb_c00304{bottom:823.500000px;}
.ya_c00304{bottom:843.600000px;}
.y9_c00304{bottom:863.400000px;}
.y8_c00304{bottom:883.950000px;}
.y7_c00304{bottom:903.750000px;}
.y6_c00304{bottom:923.850000px;}
.y5_c00304{bottom:943.650000px;}
.y4_c00304{bottom:963.450000px;}
.y3_c00304{bottom:983.550000px;}
.y2_c00304{bottom:1003.350000px;}
.y1_c00304{bottom:1041.450000px;}
.h2_c00304{height:54.000000px;}
.h0_c00304{height:1166.759949px;}
.h1_c00304{height:1167.000000px;}
.w1_c00304{width:913.500000px;}
.w0_c00304{width:913.679993px;}
.x0_c00304{left:0.000000px;}
.x143_c00304{left:144.000000px;}
.x64_c00304{left:145.350000px;}
.x3d_c00304{left:146.400000px;}
.x4_c00304{left:147.900000px;}
.x1_c00304{left:150.450000px;}
.x2_c00304{left:159.450000px;}
.x148_c00304{left:162.450000px;}
.x115_c00304{left:163.500000px;}
.x4d_c00304{left:165.300000px;}
.x20_c00304{left:168.150000px;}
.x11e_c00304{left:169.950000px;}
.x5_c00304{left:173.100000px;}
.x150_c00304{left:174.300000px;}
.xc5_c00304{left:175.500000px;}
.x79_c00304{left:176.700000px;}
.xb3_c00304{left:177.900000px;}
.x108_c00304{left:179.100000px;}
.x21_c00304{left:182.850000px;}
.x70_c00304{left:184.650000px;}
.x149_c00304{left:186.150000px;}
.xf7_c00304{left:187.200000px;}
.x152_c00304{left:191.250000px;}
.x103_c00304{left:192.900000px;}
.x144_c00304{left:193.950000px;}
.x137_c00304{left:195.900000px;}
.x31_c00304{left:198.450000px;}
.x12_c00304{left:201.000000px;}
.x58_c00304{left:202.200000px;}
.xa0_c00304{left:203.700000px;}
.x71_c00304{left:205.500000px;}
.xf8_c00304{left:208.800000px;}
.x3e_c00304{left:211.500000px;}
.xbc_c00304{left:213.000000px;}
.x22_c00304{left:214.950000px;}
.x10f_c00304{left:217.500000px;}
.x7a_c00304{left:219.900000px;}
.xa1_c00304{left:224.550000px;}
.x145_c00304{left:225.600000px;}
.x89_c00304{left:226.650000px;}
.xda_c00304{left:230.550000px;}
.x13_c00304{left:231.900000px;}
.x23_c00304{left:234.450000px;}
.xaa_c00304{left:236.250000px;}
.xe2_c00304{left:237.600000px;}
.x11a_c00304{left:239.100000px;}
.xc6_c00304{left:240.300000px;}
.x3f_c00304{left:241.800000px;}
.xed_c00304{left:243.000000px;}
.xbd_c00304{left:244.650000px;}
.x158_c00304{left:245.850000px;}
.xfd_c00304{left:247.050000px;}
.x65_c00304{left:250.800000px;}
.xe6_c00304{left:252.150000px;}
.x93_c00304{left:254.100000px;}
.x13d_c00304{left:255.900000px;}
.x6_c00304{left:256.950000px;}
.x110_c00304{left:260.400000px;}
.xdb_c00304{left:261.450000px;}
.x12d_c00304{left:264.000000px;}
.x32_c00304{left:265.350000px;}
.x72_c00304{left:266.700000px;}
.x4e_c00304{left:268.200000px;}
.x40_c00304{left:269.550000px;}
.xa2_c00304{left:271.050000px;}
.x11b_c00304{left:273.300000px;}
.x94_c00304{left:274.950000px;}
.x24_c00304{left:276.600000px;}
.xd0_c00304{left:280.200000px;}
.x10c_c00304{left:281.250000px;}
.xb4_c00304{left:282.300000px;}
.x109_c00304{left:284.550000px;}
.xf9_c00304{left:286.500000px;}
.xee_c00304{left:289.500000px;}
.x66_c00304{left:291.450000px;}
.x33_c00304{left:293.400000px;}
.x104_c00304{left:294.900000px;}
.x130_c00304{left:296.250000px;}
.x11c_c00304{left:298.200000px;}
.x116_c00304{left:300.450000px;}
.x14_c00304{left:302.550000px;}
.x14a_c00304{left:304.200000px;}
.xf2_c00304{left:306.000000px;}
.x41_c00304{left:307.650000px;}
.x8a_c00304{left:309.150000px;}
.x67_c00304{left:311.550000px;}
.x25_c00304{left:313.650000px;}
.xa3_c00304{left:315.300000px;}
.xd1_c00304{left:316.500000px;}
.x4f_c00304{left:317.850000px;}
.x123_c00304{left:318.900000px;}
.xc7_c00304{left:323.100000px;}
.x146_c00304{left:324.300000px;}
.x42_c00304{left:326.700000px;}
.xb5_c00304{left:328.050000px;}
.xe3_c00304{left:329.400000px;}
.x111_c00304{left:331.050000px;}
.x83_c00304{left:332.250000px;}
.x131_c00304{left:333.300000px;}
.x26_c00304{left:334.500000px;}
.x153_c00304{left:335.550000px;}
.x59_c00304{left:336.750000px;}
.x68_c00304{left:339.300000px;}
.x95_c00304{left:340.800000px;}
.xc8_c00304{left:342.900000px;}
.xab_c00304{left:345.750000px;}
.xf3_c00304{left:347.400000px;}
.x7_c00304{left:349.800000px;}
.x117_c00304{left:351.150000px;}
.x43_c00304{left:353.400000px;}
.x34_c00304{left:356.100000px;}
.xb6_c00304{left:357.600000px;}
.x124_c00304{left:361.050000px;}
.x14b_c00304{left:362.100000px;}
.x8_c00304{left:363.150000px;}
.x7b_c00304{left:364.650000px;}
.x50_c00304{left:365.700000px;}
.x73_c00304{left:367.050000px;}
.x132_c00304{left:368.250000px;}
.xfe_c00304{left:370.200000px;}
.xa4_c00304{left:371.550000px;}
.xc9_c00304{left:373.200000px;}
.x96_c00304{left:374.250000px;}
.xbe_c00304{left:375.300000px;}
.xf4_c00304{left:379.800000px;}
.x5a_c00304{left:382.050000px;}
.xe7_c00304{left:383.250000px;}
.xd2_c00304{left:385.200000px;}
.x27_c00304{left:387.000000px;}
.x125_c00304{left:390.150000px;}
.xa5_c00304{left:391.350000px;}
.x44_c00304{left:392.700000px;}
.x11d_c00304{left:394.050000px;}
.x7c_c00304{left:395.550000px;}
.x138_c00304{left:396.750000px;}
.x15_c00304{left:397.950000px;}
.x8b_c00304{left:399.600000px;}
.x74_c00304{left:404.850000px;}
.x51_c00304{left:406.350000px;}
.xe4_c00304{left:407.550000px;}
.x133_c00304{left:408.600000px;}
.x97_c00304{left:409.950000px;}
.xbf_c00304{left:412.800000px;}
.xac_c00304{left:414.600000px;}
.x14c_c00304{left:416.400000px;}
.x139_c00304{left:418.650000px;}
.x75_c00304{left:420.000000px;}
.x35_c00304{left:422.400000px;}
.xd3_c00304{left:425.100000px;}
.x151_c00304{left:426.300000px;}
.x9_c00304{left:427.950000px;}
.x107_c00304{left:430.500000px;}
.x98_c00304{left:431.550000px;}
.xe8_c00304{left:432.900000px;}
.x8c_c00304{left:434.550000px;}
.x28_c00304{left:436.650000px;}
.x14d_c00304{left:438.750000px;}
.xff_c00304{left:440.400000px;}
.x69_c00304{left:442.200000px;}
.x135_c00304{left:443.400000px;}
.xad_c00304{left:444.900000px;}
.x3_c00304{left:447.150000px;}
.x154_c00304{left:449.550000px;}
.x5b_c00304{left:451.200000px;}
.x126_c00304{left:452.700000px;}
.x36_c00304{left:454.050000px;}
.xdc_c00304{left:455.400000px;}
.x10d_c00304{left:456.900000px;}
.x6a_c00304{left:458.400000px;}
.x105_c00304{left:460.200000px;}
.x76_c00304{left:461.400000px;}
.xca_c00304{left:462.450000px;}
.x29_c00304{left:464.700000px;}
.x45_c00304{left:469.050000px;}
.xb7_c00304{left:470.250000px;}
.x52_c00304{left:471.900000px;}
.x99_c00304{left:478.350000px;}
.x16_c00304{left:479.700000px;}
.xa_c00304{left:485.850000px;}
.x127_c00304{left:488.400000px;}
.xef_c00304{left:489.450000px;}
.x6b_c00304{left:490.500000px;}
.x84_c00304{left:492.450000px;}
.x10a_c00304{left:494.850000px;}
.x5c_c00304{left:496.500000px;}
.x2a_c00304{left:498.150000px;}
.xb8_c00304{left:499.350000px;}
.xe9_c00304{left:500.550000px;}
.xdd_c00304{left:502.950000px;}
.xb_c00304{left:504.150000px;}
.x8d_c00304{left:505.800000px;}
.x9a_c00304{left:506.850000px;}
.x17_c00304{left:508.500000px;}
.xd4_c00304{left:509.700000px;}
.x2b_c00304{left:510.750000px;}
.x46_c00304{left:511.950000px;}
.x37_c00304{left:513.450000px;}
.xe5_c00304{left:514.500000px;}
.x134_c00304{left:518.400000px;}
.xa6_c00304{left:521.700000px;}
.x13e_c00304{left:522.750000px;}
.xfa_c00304{left:526.350000px;}
.x12e_c00304{left:528.000000px;}
.x7d_c00304{left:530.550000px;}
.x5d_c00304{left:531.750000px;}
.xae_c00304{left:533.100000px;}
.x6c_c00304{left:534.450000px;}
.x8e_c00304{left:536.100000px;}
.x13f_c00304{left:537.450000px;}
.x118_c00304{left:538.800000px;}
.x53_c00304{left:540.300000px;}
.xc_c00304{left:541.950000px;}
.xb9_c00304{left:545.400000px;}
.xcb_c00304{left:547.800000px;}
.xc0_c00304{left:552.600000px;}
.xf5_c00304{left:554.400000px;}
.xea_c00304{left:555.900000px;}
.xde_c00304{left:558.150000px;}
.x140_c00304{left:559.350000px;}
.xd_c00304{left:561.750000px;}
.x38_c00304{left:563.100000px;}
.x5e_c00304{left:564.450000px;}
.x54_c00304{left:568.050000px;}
.x77_c00304{left:569.250000px;}
.x7e_c00304{left:570.900000px;}
.x128_c00304{left:571.950000px;}
.x11f_c00304{left:573.150000px;}
.x18_c00304{left:575.100000px;}
.xd5_c00304{left:576.600000px;}
.x47_c00304{left:579.300000px;}
.x155_c00304{left:581.250000px;}
.x2c_c00304{left:582.600000px;}
.xdf_c00304{left:585.150000px;}
.x19_c00304{left:586.200000px;}
.x9b_c00304{left:587.400000px;}
.xe_c00304{left:589.050000px;}
.xc1_c00304{left:592.200000px;}
.xa7_c00304{left:594.450000px;}
.x5f_c00304{left:597.600000px;}
.x141_c00304{left:598.650000px;}
.x2d_c00304{left:599.850000px;}
.x85_c00304{left:601.500000px;}
.x106_c00304{left:603.150000px;}
.x1a_c00304{left:604.200000px;}
.x8f_c00304{left:607.800000px;}
.x112_c00304{left:610.500000px;}
.x39_c00304{left:612.450000px;}
.xaf_c00304{left:614.100000px;}
.x13a_c00304{left:615.900000px;}
.x120_c00304{left:619.950000px;}
.x1b_c00304{left:621.900000px;}
.xcc_c00304{left:623.400000px;}
.x119_c00304{left:624.750000px;}
.x78_c00304{left:626.550000px;}
.x55_c00304{left:629.250000px;}
.x100_c00304{left:632.550000px;}
.x12f_c00304{left:635.400000px;}
.x2e_c00304{left:636.600000px;}
.x90_c00304{left:637.650000px;}
.x86_c00304{left:639.000000px;}
.x48_c00304{left:641.250000px;}
.x136_c00304{left:645.000000px;}
.x1c_c00304{left:646.350000px;}
.x9c_c00304{left:648.300000px;}
.x7f_c00304{left:649.350000px;}
.xcd_c00304{left:651.450000px;}
.x6d_c00304{left:653.250000px;}
.x3a_c00304{left:655.950000px;}
.xd6_c00304{left:657.300000px;}
.xeb_c00304{left:658.800000px;}
.x49_c00304{left:661.050000px;}
.x147_c00304{left:662.100000px;}
.x129_c00304{left:665.100000px;}
.x9d_c00304{left:667.800000px;}
.xb0_c00304{left:669.600000px;}
.xba_c00304{left:671.100000px;}
.x80_c00304{left:672.450000px;}
.x91_c00304{left:673.950000px;}
.x12a_c00304{left:675.150000px;}
.x156_c00304{left:677.250000px;}
.xf_c00304{left:679.050000px;}
.x60_c00304{left:680.400000px;}
.x9e_c00304{left:682.200000px;}
.x56_c00304{left:684.300000px;}
.xfb_c00304{left:685.800000px;}
.xce_c00304{left:688.950000px;}
.x10e_c00304{left:690.450000px;}
.x87_c00304{left:691.800000px;}
.x2f_c00304{left:694.950000px;}
.xb1_c00304{left:696.300000px;}
.x13b_c00304{left:697.350000px;}
.x142_c00304{left:699.750000px;}
.x113_c00304{left:700.950000px;}
.x61_c00304{left:702.000000px;}
.x81_c00304{left:703.050000px;}
.xec_c00304{left:704.550000px;}
.x121_c00304{left:705.600000px;}
.xa8_c00304{left:707.100000px;}
.x101_c00304{left:711.750000px;}
.x1d_c00304{left:714.000000px;}
.x12b_c00304{left:715.500000px;}
.x10b_c00304{left:716.850000px;}
.xd7_c00304{left:717.900000px;}
.x157_c00304{left:719.250000px;}
.x9f_c00304{left:720.750000px;}
.xc2_c00304{left:721.800000px;}
.xfc_c00304{left:722.850000px;}
.x3b_c00304{left:725.400000px;}
.x14e_c00304{left:728.700000px;}
.xf0_c00304{left:730.350000px;}
.x4a_c00304{left:732.600000px;}
.xb2_c00304{left:733.800000px;}
.xa9_c00304{left:734.850000px;}
.x62_c00304{left:738.000000px;}
.x122_c00304{left:739.050000px;}
.x102_c00304{left:740.850000px;}
.xc3_c00304{left:744.450000px;}
.x1e_c00304{left:746.400000px;}
.x57_c00304{left:747.600000px;}
.x82_c00304{left:749.850000px;}
.x4b_c00304{left:751.650000px;}
.x10_c00304{left:752.850000px;}
.xcf_c00304{left:754.050000px;}
.xe0_c00304{left:757.950000px;}
.xd8_c00304{left:762.150000px;}
.x88_c00304{left:763.800000px;}
.xf6_c00304{left:765.450000px;}
.x63_c00304{left:767.850000px;}
.x1f_c00304{left:770.850000px;}
.x6e_c00304{left:772.950000px;}
.xf1_c00304{left:775.350000px;}
.x4c_c00304{left:778.650000px;}
.x11_c00304{left:782.700000px;}
.x30_c00304{left:784.200000px;}
.x12c_c00304{left:786.750000px;}
.x3c_c00304{left:788.700000px;}
.x92_c00304{left:790.650000px;}
.x6f_c00304{left:793.050000px;}
.xe1_c00304{left:794.700000px;}
.x13c_c00304{left:795.900000px;}
.x114_c00304{left:797.100000px;}
.xbb_c00304{left:798.300000px;}
.x14f_c00304{left:799.350000px;}
.xc4_c00304{left:800.550000px;}
.xd9_c00304{left:803.250000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws6_c00304{word-spacing:-10.888889pt;}
.ws5_c00304{word-spacing:-4.917407pt;}
.ws3_c00304{word-spacing:-4.222222pt;}
.ws2_c00304{word-spacing:-1.102994pt;}
.ws1_c00304{word-spacing:-0.672746pt;}
.wsa_c00304{word-spacing:0.000000pt;}
.ws7_c00304{word-spacing:3.636364pt;}
.ws4_c00304{word-spacing:4.133869pt;}
.ws0_c00304{word-spacing:5.444444pt;}
.ws9_c00304{word-spacing:6.666667pt;}
.ws8_c00304{word-spacing:9.041032pt;}
._0_c00304{width:30.777778pt;}
._1_c00304{width:66.444444pt;}
.fs0_c00304{font-size:48.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y2f_c00304{bottom:128.000000pt;}
.y2e_c00304{bottom:141.733333pt;}
.y2d_c00304{bottom:155.866667pt;}
.y2c_c00304{bottom:169.600000pt;}
.y2b_c00304{bottom:184.000000pt;}
.y2a_c00304{bottom:197.733333pt;}
.y29_c00304{bottom:211.466667pt;}
.y28_c00304{bottom:225.333333pt;}
.y27_c00304{bottom:239.333333pt;}
.y26_c00304{bottom:253.066667pt;}
.y25_c00304{bottom:266.933333pt;}
.y24_c00304{bottom:280.933333pt;}
.y23_c00304{bottom:295.066667pt;}
.y22_c00304{bottom:309.066667pt;}
.y21_c00304{bottom:323.200000pt;}
.y20_c00304{bottom:351.733333pt;}
.y1f_c00304{bottom:369.333333pt;}
.y1e_c00304{bottom:386.933333pt;}
.y1d_c00304{bottom:404.400000pt;}
.y1c_c00304{bottom:422.666667pt;}
.y1b_c00304{bottom:440.000000pt;}
.y1a_c00304{bottom:457.866667pt;}
.y19_c00304{bottom:475.466667pt;}
.y18_c00304{bottom:493.600000pt;}
.y17_c00304{bottom:511.200000pt;}
.y16_c00304{bottom:529.066667pt;}
.y15_c00304{bottom:546.666667pt;}
.y14_c00304{bottom:564.266667pt;}
.y13_c00304{bottom:582.133333pt;}
.y12_c00304{bottom:600.000000pt;}
.y11_c00304{bottom:617.600000pt;}
.y10_c00304{bottom:643.733333pt;}
.yf_c00304{bottom:661.600000pt;}
.ye_c00304{bottom:679.200000pt;}
.yd_c00304{bottom:696.800000pt;}
.yc_c00304{bottom:714.400000pt;}
.yb_c00304{bottom:732.000000pt;}
.ya_c00304{bottom:749.866667pt;}
.y9_c00304{bottom:767.466667pt;}
.y8_c00304{bottom:785.733333pt;}
.y7_c00304{bottom:803.333333pt;}
.y6_c00304{bottom:821.200000pt;}
.y5_c00304{bottom:838.800000pt;}
.y4_c00304{bottom:856.400000pt;}
.y3_c00304{bottom:874.266667pt;}
.y2_c00304{bottom:891.866667pt;}
.y1_c00304{bottom:925.733333pt;}
.h2_c00304{height:48.000000pt;}
.h0_c00304{height:1037.119955pt;}
.h1_c00304{height:1037.333333pt;}
.w1_c00304{width:812.000000pt;}
.w0_c00304{width:812.159993pt;}
.x0_c00304{left:0.000000pt;}
.x143_c00304{left:128.000000pt;}
.x64_c00304{left:129.200000pt;}
.x3d_c00304{left:130.133333pt;}
.x4_c00304{left:131.466667pt;}
.x1_c00304{left:133.733333pt;}
.x2_c00304{left:141.733333pt;}
.x148_c00304{left:144.400000pt;}
.x115_c00304{left:145.333333pt;}
.x4d_c00304{left:146.933333pt;}
.x20_c00304{left:149.466667pt;}
.x11e_c00304{left:151.066667pt;}
.x5_c00304{left:153.866667pt;}
.x150_c00304{left:154.933333pt;}
.xc5_c00304{left:156.000000pt;}
.x79_c00304{left:157.066667pt;}
.xb3_c00304{left:158.133333pt;}
.x108_c00304{left:159.200000pt;}
.x21_c00304{left:162.533333pt;}
.x70_c00304{left:164.133333pt;}
.x149_c00304{left:165.466667pt;}
.xf7_c00304{left:166.400000pt;}
.x152_c00304{left:170.000000pt;}
.x103_c00304{left:171.466667pt;}
.x144_c00304{left:172.400000pt;}
.x137_c00304{left:174.133333pt;}
.x31_c00304{left:176.400000pt;}
.x12_c00304{left:178.666667pt;}
.x58_c00304{left:179.733333pt;}
.xa0_c00304{left:181.066667pt;}
.x71_c00304{left:182.666667pt;}
.xf8_c00304{left:185.600000pt;}
.x3e_c00304{left:188.000000pt;}
.xbc_c00304{left:189.333333pt;}
.x22_c00304{left:191.066667pt;}
.x10f_c00304{left:193.333333pt;}
.x7a_c00304{left:195.466667pt;}
.xa1_c00304{left:199.600000pt;}
.x145_c00304{left:200.533333pt;}
.x89_c00304{left:201.466667pt;}
.xda_c00304{left:204.933333pt;}
.x13_c00304{left:206.133333pt;}
.x23_c00304{left:208.400000pt;}
.xaa_c00304{left:210.000000pt;}
.xe2_c00304{left:211.200000pt;}
.x11a_c00304{left:212.533333pt;}
.xc6_c00304{left:213.600000pt;}
.x3f_c00304{left:214.933333pt;}
.xed_c00304{left:216.000000pt;}
.xbd_c00304{left:217.466667pt;}
.x158_c00304{left:218.533333pt;}
.xfd_c00304{left:219.600000pt;}
.x65_c00304{left:222.933333pt;}
.xe6_c00304{left:224.133333pt;}
.x93_c00304{left:225.866667pt;}
.x13d_c00304{left:227.466667pt;}
.x6_c00304{left:228.400000pt;}
.x110_c00304{left:231.466667pt;}
.xdb_c00304{left:232.400000pt;}
.x12d_c00304{left:234.666667pt;}
.x32_c00304{left:235.866667pt;}
.x72_c00304{left:237.066667pt;}
.x4e_c00304{left:238.400000pt;}
.x40_c00304{left:239.600000pt;}
.xa2_c00304{left:240.933333pt;}
.x11b_c00304{left:242.933333pt;}
.x94_c00304{left:244.400000pt;}
.x24_c00304{left:245.866667pt;}
.xd0_c00304{left:249.066667pt;}
.x10c_c00304{left:250.000000pt;}
.xb4_c00304{left:250.933333pt;}
.x109_c00304{left:252.933333pt;}
.xf9_c00304{left:254.666667pt;}
.xee_c00304{left:257.333333pt;}
.x66_c00304{left:259.066667pt;}
.x33_c00304{left:260.800000pt;}
.x104_c00304{left:262.133333pt;}
.x130_c00304{left:263.333333pt;}
.x11c_c00304{left:265.066667pt;}
.x116_c00304{left:267.066667pt;}
.x14_c00304{left:268.933333pt;}
.x14a_c00304{left:270.400000pt;}
.xf2_c00304{left:272.000000pt;}
.x41_c00304{left:273.466667pt;}
.x8a_c00304{left:274.800000pt;}
.x67_c00304{left:276.933333pt;}
.x25_c00304{left:278.800000pt;}
.xa3_c00304{left:280.266667pt;}
.xd1_c00304{left:281.333333pt;}
.x4f_c00304{left:282.533333pt;}
.x123_c00304{left:283.466667pt;}
.xc7_c00304{left:287.200000pt;}
.x146_c00304{left:288.266667pt;}
.x42_c00304{left:290.400000pt;}
.xb5_c00304{left:291.600000pt;}
.xe3_c00304{left:292.800000pt;}
.x111_c00304{left:294.266667pt;}
.x83_c00304{left:295.333333pt;}
.x131_c00304{left:296.266667pt;}
.x26_c00304{left:297.333333pt;}
.x153_c00304{left:298.266667pt;}
.x59_c00304{left:299.333333pt;}
.x68_c00304{left:301.600000pt;}
.x95_c00304{left:302.933333pt;}
.xc8_c00304{left:304.800000pt;}
.xab_c00304{left:307.333333pt;}
.xf3_c00304{left:308.800000pt;}
.x7_c00304{left:310.933333pt;}
.x117_c00304{left:312.133333pt;}
.x43_c00304{left:314.133333pt;}
.x34_c00304{left:316.533333pt;}
.xb6_c00304{left:317.866667pt;}
.x124_c00304{left:320.933333pt;}
.x14b_c00304{left:321.866667pt;}
.x8_c00304{left:322.800000pt;}
.x7b_c00304{left:324.133333pt;}
.x50_c00304{left:325.066667pt;}
.x73_c00304{left:326.266667pt;}
.x132_c00304{left:327.333333pt;}
.xfe_c00304{left:329.066667pt;}
.xa4_c00304{left:330.266667pt;}
.xc9_c00304{left:331.733333pt;}
.x96_c00304{left:332.666667pt;}
.xbe_c00304{left:333.600000pt;}
.xf4_c00304{left:337.600000pt;}
.x5a_c00304{left:339.600000pt;}
.xe7_c00304{left:340.666667pt;}
.xd2_c00304{left:342.400000pt;}
.x27_c00304{left:344.000000pt;}
.x125_c00304{left:346.800000pt;}
.xa5_c00304{left:347.866667pt;}
.x44_c00304{left:349.066667pt;}
.x11d_c00304{left:350.266667pt;}
.x7c_c00304{left:351.600000pt;}
.x138_c00304{left:352.666667pt;}
.x15_c00304{left:353.733333pt;}
.x8b_c00304{left:355.200000pt;}
.x74_c00304{left:359.866667pt;}
.x51_c00304{left:361.200000pt;}
.xe4_c00304{left:362.266667pt;}
.x133_c00304{left:363.200000pt;}
.x97_c00304{left:364.400000pt;}
.xbf_c00304{left:366.933333pt;}
.xac_c00304{left:368.533333pt;}
.x14c_c00304{left:370.133333pt;}
.x139_c00304{left:372.133333pt;}
.x75_c00304{left:373.333333pt;}
.x35_c00304{left:375.466667pt;}
.xd3_c00304{left:377.866667pt;}
.x151_c00304{left:378.933333pt;}
.x9_c00304{left:380.400000pt;}
.x107_c00304{left:382.666667pt;}
.x98_c00304{left:383.600000pt;}
.xe8_c00304{left:384.800000pt;}
.x8c_c00304{left:386.266667pt;}
.x28_c00304{left:388.133333pt;}
.x14d_c00304{left:390.000000pt;}
.xff_c00304{left:391.466667pt;}
.x69_c00304{left:393.066667pt;}
.x135_c00304{left:394.133333pt;}
.xad_c00304{left:395.466667pt;}
.x3_c00304{left:397.466667pt;}
.x154_c00304{left:399.600000pt;}
.x5b_c00304{left:401.066667pt;}
.x126_c00304{left:402.400000pt;}
.x36_c00304{left:403.600000pt;}
.xdc_c00304{left:404.800000pt;}
.x10d_c00304{left:406.133333pt;}
.x6a_c00304{left:407.466667pt;}
.x105_c00304{left:409.066667pt;}
.x76_c00304{left:410.133333pt;}
.xca_c00304{left:411.066667pt;}
.x29_c00304{left:413.066667pt;}
.x45_c00304{left:416.933333pt;}
.xb7_c00304{left:418.000000pt;}
.x52_c00304{left:419.466667pt;}
.x99_c00304{left:425.200000pt;}
.x16_c00304{left:426.400000pt;}
.xa_c00304{left:431.866667pt;}
.x127_c00304{left:434.133333pt;}
.xef_c00304{left:435.066667pt;}
.x6b_c00304{left:436.000000pt;}
.x84_c00304{left:437.733333pt;}
.x10a_c00304{left:439.866667pt;}
.x5c_c00304{left:441.333333pt;}
.x2a_c00304{left:442.800000pt;}
.xb8_c00304{left:443.866667pt;}
.xe9_c00304{left:444.933333pt;}
.xdd_c00304{left:447.066667pt;}
.xb_c00304{left:448.133333pt;}
.x8d_c00304{left:449.600000pt;}
.x9a_c00304{left:450.533333pt;}
.x17_c00304{left:452.000000pt;}
.xd4_c00304{left:453.066667pt;}
.x2b_c00304{left:454.000000pt;}
.x46_c00304{left:455.066667pt;}
.x37_c00304{left:456.400000pt;}
.xe5_c00304{left:457.333333pt;}
.x134_c00304{left:460.800000pt;}
.xa6_c00304{left:463.733333pt;}
.x13e_c00304{left:464.666667pt;}
.xfa_c00304{left:467.866667pt;}
.x12e_c00304{left:469.333333pt;}
.x7d_c00304{left:471.600000pt;}
.x5d_c00304{left:472.666667pt;}
.xae_c00304{left:473.866667pt;}
.x6c_c00304{left:475.066667pt;}
.x8e_c00304{left:476.533333pt;}
.x13f_c00304{left:477.733333pt;}
.x118_c00304{left:478.933333pt;}
.x53_c00304{left:480.266667pt;}
.xc_c00304{left:481.733333pt;}
.xb9_c00304{left:484.800000pt;}
.xcb_c00304{left:486.933333pt;}
.xc0_c00304{left:491.200000pt;}
.xf5_c00304{left:492.800000pt;}
.xea_c00304{left:494.133333pt;}
.xde_c00304{left:496.133333pt;}
.x140_c00304{left:497.200000pt;}
.xd_c00304{left:499.333333pt;}
.x38_c00304{left:500.533333pt;}
.x5e_c00304{left:501.733333pt;}
.x54_c00304{left:504.933333pt;}
.x77_c00304{left:506.000000pt;}
.x7e_c00304{left:507.466667pt;}
.x128_c00304{left:508.400000pt;}
.x11f_c00304{left:509.466667pt;}
.x18_c00304{left:511.200000pt;}
.xd5_c00304{left:512.533333pt;}
.x47_c00304{left:514.933333pt;}
.x155_c00304{left:516.666667pt;}
.x2c_c00304{left:517.866667pt;}
.xdf_c00304{left:520.133333pt;}
.x19_c00304{left:521.066667pt;}
.x9b_c00304{left:522.133333pt;}
.xe_c00304{left:523.600000pt;}
.xc1_c00304{left:526.400000pt;}
.xa7_c00304{left:528.400000pt;}
.x5f_c00304{left:531.200000pt;}
.x141_c00304{left:532.133333pt;}
.x2d_c00304{left:533.200000pt;}
.x85_c00304{left:534.666667pt;}
.x106_c00304{left:536.133333pt;}
.x1a_c00304{left:537.066667pt;}
.x8f_c00304{left:540.266667pt;}
.x112_c00304{left:542.666667pt;}
.x39_c00304{left:544.400000pt;}
.xaf_c00304{left:545.866667pt;}
.x13a_c00304{left:547.466667pt;}
.x120_c00304{left:551.066667pt;}
.x1b_c00304{left:552.800000pt;}
.xcc_c00304{left:554.133333pt;}
.x119_c00304{left:555.333333pt;}
.x78_c00304{left:556.933333pt;}
.x55_c00304{left:559.333333pt;}
.x100_c00304{left:562.266667pt;}
.x12f_c00304{left:564.800000pt;}
.x2e_c00304{left:565.866667pt;}
.x90_c00304{left:566.800000pt;}
.x86_c00304{left:568.000000pt;}
.x48_c00304{left:570.000000pt;}
.x136_c00304{left:573.333333pt;}
.x1c_c00304{left:574.533333pt;}
.x9c_c00304{left:576.266667pt;}
.x7f_c00304{left:577.200000pt;}
.xcd_c00304{left:579.066667pt;}
.x6d_c00304{left:580.666667pt;}
.x3a_c00304{left:583.066667pt;}
.xd6_c00304{left:584.266667pt;}
.xeb_c00304{left:585.600000pt;}
.x49_c00304{left:587.600000pt;}
.x147_c00304{left:588.533333pt;}
.x129_c00304{left:591.200000pt;}
.x9d_c00304{left:593.600000pt;}
.xb0_c00304{left:595.200000pt;}
.xba_c00304{left:596.533333pt;}
.x80_c00304{left:597.733333pt;}
.x91_c00304{left:599.066667pt;}
.x12a_c00304{left:600.133333pt;}
.x156_c00304{left:602.000000pt;}
.xf_c00304{left:603.600000pt;}
.x60_c00304{left:604.800000pt;}
.x9e_c00304{left:606.400000pt;}
.x56_c00304{left:608.266667pt;}
.xfb_c00304{left:609.600000pt;}
.xce_c00304{left:612.400000pt;}
.x10e_c00304{left:613.733333pt;}
.x87_c00304{left:614.933333pt;}
.x2f_c00304{left:617.733333pt;}
.xb1_c00304{left:618.933333pt;}
.x13b_c00304{left:619.866667pt;}
.x142_c00304{left:622.000000pt;}
.x113_c00304{left:623.066667pt;}
.x61_c00304{left:624.000000pt;}
.x81_c00304{left:624.933333pt;}
.xec_c00304{left:626.266667pt;}
.x121_c00304{left:627.200000pt;}
.xa8_c00304{left:628.533333pt;}
.x101_c00304{left:632.666667pt;}
.x1d_c00304{left:634.666667pt;}
.x12b_c00304{left:636.000000pt;}
.x10b_c00304{left:637.200000pt;}
.xd7_c00304{left:638.133333pt;}
.x157_c00304{left:639.333333pt;}
.x9f_c00304{left:640.666667pt;}
.xc2_c00304{left:641.600000pt;}
.xfc_c00304{left:642.533333pt;}
.x3b_c00304{left:644.800000pt;}
.x14e_c00304{left:647.733333pt;}
.xf0_c00304{left:649.200000pt;}
.x4a_c00304{left:651.200000pt;}
.xb2_c00304{left:652.266667pt;}
.xa9_c00304{left:653.200000pt;}
.x62_c00304{left:656.000000pt;}
.x122_c00304{left:656.933333pt;}
.x102_c00304{left:658.533333pt;}
.xc3_c00304{left:661.733333pt;}
.x1e_c00304{left:663.466667pt;}
.x57_c00304{left:664.533333pt;}
.x82_c00304{left:666.533333pt;}
.x4b_c00304{left:668.133333pt;}
.x10_c00304{left:669.200000pt;}
.xcf_c00304{left:670.266667pt;}
.xe0_c00304{left:673.733333pt;}
.xd8_c00304{left:677.466667pt;}
.x88_c00304{left:678.933333pt;}
.xf6_c00304{left:680.400000pt;}
.x63_c00304{left:682.533333pt;}
.x1f_c00304{left:685.200000pt;}
.x6e_c00304{left:687.066667pt;}
.xf1_c00304{left:689.200000pt;}
.x4c_c00304{left:692.133333pt;}
.x11_c00304{left:695.733333pt;}
.x30_c00304{left:697.066667pt;}
.x12c_c00304{left:699.333333pt;}
.x3c_c00304{left:701.066667pt;}
.x92_c00304{left:702.800000pt;}
.x6f_c00304{left:704.933333pt;}
.xe1_c00304{left:706.400000pt;}
.x13c_c00304{left:707.466667pt;}
.x114_c00304{left:708.533333pt;}
.xbb_c00304{left:709.600000pt;}
.x14f_c00304{left:710.533333pt;}
.xc4_c00304{left:711.600000pt;}
.xd9_c00304{left:714.000000pt;}
}





/* 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_c00305 {
    display:none;
  }
  .loading-indicator_c00305.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00305 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_c00305 { 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_c00305" -> "#page-container .classname_c00305")
 */
.pf_c00305 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00305 { /* 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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00305 { /* 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_c00305 { /* 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_c00305 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00305 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00305 {overflow:visible;}
  }
}
.c_c00305 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00305 { /* 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_c00305:after { /* webkit #35443 */
  content: '';
}
.t_c00305:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00305 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 */
}
.__c00305 { /* 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_c00305 { /* info for Javascript */
  display:none;
}
.l_c00305 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00305 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00305 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00305: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_c00305 {
    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_c00305.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00305.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_c00305 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00305{font-family:sans-serif;visibility:hidden;}
.sc__c00305{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00305{-webkit-text-stroke:0px transparent;}
}
.y0_c00305{bottom:0.000000px;}
.h0_c00305{height:1166.759949px;}
.h1_c00305{height:1167.000000px;}
.w1_c00305{width:913.500000px;}
.w0_c00305{width:913.679993px;}
.x0_c00305{left:0.000000px;}
@media print{
.y0_c00305{bottom:0.000000pt;}
.h0_c00305{height:1037.119955pt;}
.h1_c00305{height:1037.333333pt;}
.w1_c00305{width:812.000000pt;}
.w0_c00305{width:812.159993pt;}
.x0_c00305{left:0.000000pt;}
}





/* 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_c00306 {
    display:none;
  }
  .loading-indicator_c00306.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00306 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_c00306 { 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_c00306" -> "#page-container .classname_c00306")
 */
.pf_c00306 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00306 { /* 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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00306 { /* 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_c00306 { /* 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_c00306 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00306 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00306 {overflow:visible;}
  }
}
.c_c00306 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00306 { /* 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_c00306:after { /* webkit #35443 */
  content: '';
}
.t_c00306:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00306 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 */
}
.__c00306 { /* 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_c00306 { /* info for Javascript */
  display:none;
}
.l_c00306 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00306 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00306 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00306: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_c00306 {
    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_c00306.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00306.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_c00306 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00306{font-family:sans-serif;visibility:hidden;}
.sc__c00306{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
}
.y0_c00306{bottom:0.000000px;}
.h0_c00306{height:1166.759949px;}
.h1_c00306{height:1167.000000px;}
.w1_c00306{width:913.500000px;}
.w0_c00306{width:913.679993px;}
.x0_c00306{left:0.000000px;}
@media print{
.y0_c00306{bottom:0.000000pt;}
.h0_c00306{height:1037.119955pt;}
.h1_c00306{height:1037.333333pt;}
.w1_c00306{width:812.000000pt;}
.w0_c00306{width:812.159993pt;}
.x0_c00306{left:0.000000pt;}
}





/* 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_c00307 {
    display:none;
  }
  .loading-indicator_c00307.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00307 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_c00307 { 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_c00307" -> "#page-container .classname_c00307")
 */
.pf_c00307 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00307 { /* 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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00307 { /* 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_c00307 { /* 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_c00307 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00307 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00307 {overflow:visible;}
  }
}
.c_c00307 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00307 { /* 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_c00307:after { /* webkit #35443 */
  content: '';
}
.t_c00307:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00307 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 */
}
.__c00307 { /* 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_c00307 { /* info for Javascript */
  display:none;
}
.l_c00307 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00307 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00307 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00307: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_c00307 {
    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_c00307.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00307.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_c00307 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00307{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.000000;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;}
.m47_c00307{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m27_c00307{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m43_c00307{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mac_c00307{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mad_c00307{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00307{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m13_c00307{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb_c00307{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m53_c00307{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m36_c00307{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m57_c00307{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m28_c00307{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m50_c00307{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00307{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m65_c00307{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00307{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00307{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mae_c00307{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m68_c00307{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00307{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mab_c00307{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00307{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m92_c00307{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8_c00307{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m71_c00307{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00307{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00307{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m12_c00307{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m97_c00307{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m70_c00307{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10_c00307{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m37_c00307{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00307{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m15_c00307{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00307{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00307{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00307{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m91_c00307{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9_c00307{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00307{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00307{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m25_c00307{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00307{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m21_c00307{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00307{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00307{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m98_c00307{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.maa_c00307{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m95_c00307{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3_c00307{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m78_c00307{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00307{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00307{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00307{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00307{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m54_c00307{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00307{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m96_c00307{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00307{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00307{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m84_c00307{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00307{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7_c00307{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00307{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m24_c00307{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.me_c00307{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m34_c00307{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m35_c00307{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00307{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00307{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m51_c00307{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m58_c00307{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m67_c00307{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00307{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00307{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m69_c00307{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m31_c00307{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m72_c00307{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00307{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md_c00307{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00307{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00307{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19_c00307{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m48_c00307{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00307{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00307{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00307{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00307{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m52_c00307{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m23_c00307{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m88_c00307{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m77_c00307{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m29_c00307{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m66_c00307{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00307{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00307{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00307{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m93_c00307{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m11_c00307{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2_c00307{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m16_c00307{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m59_c00307{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m14_c00307{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m99_c00307{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m26_c00307{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m55_c00307{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00307{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m44_c00307{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m22_c00307{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5_c00307{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6_c00307{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m46_c00307{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m39_c00307{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m81_c00307{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m33_c00307{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00307{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m45_c00307{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00307{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m30_c00307{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00307{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00307{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00307{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m20_c00307{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00307{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00307{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00307{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00307{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00307{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1_c00307{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00307{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00307{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m56_c00307{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mf_c00307{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m49_c00307{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m94_c00307{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m63_c00307{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m73_c00307{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m38_c00307{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m41_c00307{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m83_c00307{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m4_c00307{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00307{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00307{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m42_c00307{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m32_c00307{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m85_c00307{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00307{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m61_c00307{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00307{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m60_c00307{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00307{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m80_c00307{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00307{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00307{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m87_c00307{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00307{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m82_c00307{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m89_c00307{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00307{transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300500,0.000000,0.000000,0.250000,0,0);}
.m40_c00307{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00307{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00307{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00307{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00307{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00307{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00307{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00307{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00307{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00307{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mc_c00307{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00307{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m62_c00307{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00307{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m86_c00307{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m76_c00307{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{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__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00307{word-spacing:-8.712737px;}
.ws3_c00307{word-spacing:-7.095151px;}
.ws6_c00307{word-spacing:-5.206687px;}
.ws2_c00307{word-spacing:-4.750000px;}
.ws9_c00307{word-spacing:-3.771704px;}
.ws1_c00307{word-spacing:-3.250000px;}
.wsb_c00307{word-spacing:-1.617420px;}
.wsd_c00307{word-spacing:-0.442882px;}
.ws13_c00307{word-spacing:0.000000px;}
.wsa_c00307{word-spacing:0.250000px;}
.ws10_c00307{word-spacing:2.572260px;}
.ws12_c00307{word-spacing:3.894096px;}
.ws8_c00307{word-spacing:4.500000px;}
.ws4_c00307{word-spacing:5.822310px;}
.wse_c00307{word-spacing:6.393822px;}
.ws0_c00307{word-spacing:6.944009px;}
.ws7_c00307{word-spacing:9.303797px;}
.ws11_c00307{word-spacing:14.875000px;}
.wsc_c00307{word-spacing:17.566703px;}
.wsf_c00307{word-spacing:24.833333px;}
.fc0_c00307{color:transparent;}
.fs1_c00307{font-size:54.000000px;}
.fs0_c00307{font-size:60.000000px;}
.y0_c00307{bottom:0.000000px;}
.y2b_c00307{bottom:155.850000px;}
.y2a_c00307{bottom:201.000000px;}
.y29_c00307{bottom:221.100000px;}
.y28_c00307{bottom:241.200000px;}
.y27_c00307{bottom:261.000000px;}
.y26_c00307{bottom:280.500000px;}
.y25_c00307{bottom:300.600000px;}
.y24_c00307{bottom:320.700000px;}
.y23_c00307{bottom:340.500000px;}
.y22_c00307{bottom:360.300000px;}
.y21_c00307{bottom:380.100000px;}
.y20_c00307{bottom:400.200000px;}
.y1f_c00307{bottom:420.300000px;}
.y1e_c00307{bottom:440.400000px;}
.y1d_c00307{bottom:460.200000px;}
.y1c_c00307{bottom:480.300000px;}
.y1b_c00307{bottom:500.100000px;}
.y1a_c00307{bottom:519.900000px;}
.y19_c00307{bottom:540.000000px;}
.y18_c00307{bottom:559.800000px;}
.y17_c00307{bottom:579.600000px;}
.y16_c00307{bottom:599.400000px;}
.y15_c00307{bottom:619.200000px;}
.y14_c00307{bottom:639.000000px;}
.y13_c00307{bottom:673.050000px;}
.y12_c00307{bottom:692.850000px;}
.y11_c00307{bottom:712.950000px;}
.y10_c00307{bottom:733.050000px;}
.yf_c00307{bottom:752.850000px;}
.ye_c00307{bottom:772.650000px;}
.yd_c00307{bottom:792.750000px;}
.yc_c00307{bottom:812.550000px;}
.yb_c00307{bottom:832.650000px;}
.ya_c00307{bottom:852.450000px;}
.y9_c00307{bottom:872.250000px;}
.y8_c00307{bottom:892.200000px;}
.y7_c00307{bottom:912.300000px;}
.y6_c00307{bottom:932.100000px;}
.y5_c00307{bottom:952.200000px;}
.y4_c00307{bottom:972.000000px;}
.y3_c00307{bottom:992.100000px;}
.y2_c00307{bottom:1011.900000px;}
.y1_c00307{bottom:1049.700000px;}
.h3_c00307{height:54.000000px;}
.h2_c00307{height:60.000000px;}
.h0_c00307{height:1166.759949px;}
.h1_c00307{height:1167.000000px;}
.w1_c00307{width:913.500000px;}
.w0_c00307{width:913.679993px;}
.x0_c00307{left:0.000000px;}
.x72_c00307{left:90.450000px;}
.x117_c00307{left:95.850000px;}
.x4a_c00307{left:96.900000px;}
.x3_c00307{left:97.950000px;}
.x8a_c00307{left:114.750000px;}
.xa5_c00307{left:117.000000px;}
.x5a_c00307{left:118.050000px;}
.xae_c00307{left:124.200000px;}
.x10c_c00307{left:125.250000px;}
.x2c_c00307{left:126.600000px;}
.x7a_c00307{left:128.100000px;}
.x5b_c00307{left:129.300000px;}
.x1f_c00307{left:130.350000px;}
.x73_c00307{left:131.550000px;}
.x9b_c00307{left:133.950000px;}
.x3a_c00307{left:135.000000px;}
.xf4_c00307{left:139.500000px;}
.x8b_c00307{left:143.250000px;}
.xa6_c00307{left:145.500000px;}
.x103_c00307{left:147.000000px;}
.xd1_c00307{left:148.200000px;}
.x5c_c00307{left:149.400000px;}
.x4b_c00307{left:152.400000px;}
.xe9_c00307{left:153.450000px;}
.x8c_c00307{left:155.100000px;}
.x3b_c00307{left:156.600000px;}
.x4_c00307{left:158.100000px;}
.x65_c00307{left:163.350000px;}
.x12_c00307{left:166.050000px;}
.x9c_c00307{left:170.250000px;}
.xcc_c00307{left:171.600000px;}
.x2d_c00307{left:172.650000px;}
.x74_c00307{left:176.850000px;}
.x7b_c00307{left:180.300000px;}
.x104_c00307{left:186.600000px;}
.x20_c00307{left:189.000000px;}
.xaf_c00307{left:190.050000px;}
.x4c_c00307{left:192.300000px;}
.x5_c00307{left:195.150000px;}
.x113_c00307{left:197.250000px;}
.xdb_c00307{left:198.450000px;}
.xe1_c00307{left:200.250000px;}
.xc5_c00307{left:203.250000px;}
.x122_c00307{left:204.900000px;}
.x75_c00307{left:205.950000px;}
.x109_c00307{left:208.050000px;}
.xe2_c00307{left:210.150000px;}
.x3c_c00307{left:213.150000px;}
.x11a_c00307{left:214.350000px;}
.x105_c00307{left:216.150000px;}
.xf8_c00307{left:218.850000px;}
.x7c_c00307{left:219.900000px;}
.x8d_c00307{left:223.200000px;}
.xb0_c00307{left:224.250000px;}
.x6_c00307{left:226.500000px;}
.xdc_c00307{left:228.750000px;}
.x111_c00307{left:230.400000px;}
.x21_c00307{left:232.950000px;}
.x2e_c00307{left:239.550000px;}
.x80_c00307{left:240.750000px;}
.x13_c00307{left:241.950000px;}
.x5d_c00307{left:243.000000px;}
.x7d_c00307{left:248.700000px;}
.x66_c00307{left:251.250000px;}
.x4d_c00307{left:257.850000px;}
.x14_c00307{left:260.700000px;}
.xc6_c00307{left:262.650000px;}
.x22_c00307{left:264.600000px;}
.xfe_c00307{left:266.100000px;}
.x7_c00307{left:267.150000px;}
.x81_c00307{left:269.550000px;}
.xd6_c00307{left:273.150000px;}
.xb1_c00307{left:275.400000px;}
.xa7_c00307{left:278.250000px;}
.xe3_c00307{left:281.400000px;}
.x67_c00307{left:284.400000px;}
.x123_c00307{left:286.200000px;}
.xea_c00307{left:288.450000px;}
.x127_c00307{left:289.800000px;}
.x9d_c00307{left:291.450000px;}
.x106_c00307{left:292.500000px;}
.x4e_c00307{left:294.600000px;}
.xb2_c00307{left:298.800000px;}
.x3d_c00307{left:300.150000px;}
.x114_c00307{left:301.950000px;}
.x15_c00307{left:303.600000px;}
.x2f_c00307{left:304.800000px;}
.x118_c00307{left:306.300000px;}
.x8e_c00307{left:308.100000px;}
.x68_c00307{left:309.900000px;}
.xe4_c00307{left:311.700000px;}
.xdd_c00307{left:313.650000px;}
.xd2_c00307{left:316.350000px;}
.x23_c00307{left:319.200000px;}
.x95_c00307{left:320.700000px;}
.xf9_c00307{left:321.750000px;}
.x16_c00307{left:323.700000px;}
.xa8_c00307{left:325.800000px;}
.xc7_c00307{left:328.950000px;}
.x8_c00307{left:330.450000px;}
.xcd_c00307{left:331.500000px;}
.x7e_c00307{left:333.000000px;}
.x5e_c00307{left:334.050000px;}
.xed_c00307{left:337.800000px;}
.x3e_c00307{left:339.750000px;}
.x30_c00307{left:342.900000px;}
.x24_c00307{left:345.150000px;}
.x11b_c00307{left:346.500000px;}
.x76_c00307{left:348.450000px;}
.x4f_c00307{left:349.950000px;}
.xfa_c00307{left:352.050000px;}
.x5f_c00307{left:354.600000px;}
.x82_c00307{left:356.700000px;}
.xb3_c00307{left:360.300000px;}
.xce_c00307{left:362.400000px;}
.x10e_c00307{left:364.050000px;}
.x9e_c00307{left:365.250000px;}
.x17_c00307{left:367.650000px;}
.x69_c00307{left:369.000000px;}
.xde_c00307{left:370.950000px;}
.xd7_c00307{left:372.150000px;}
.xa9_c00307{left:373.350000px;}
.x31_c00307{left:375.300000px;}
.xbb_c00307{left:376.350000px;}
.x11c_c00307{left:378.600000px;}
.x1_c00307{left:379.800000px;}
.xb4_c00307{left:381.600000px;}
.x3f_c00307{left:382.650000px;}
.x8f_c00307{left:384.750000px;}
.x18_c00307{left:386.400000px;}
.xd8_c00307{left:387.600000px;}
.xee_c00307{left:390.300000px;}
.xd3_c00307{left:391.650000px;}
.x60_c00307{left:392.700000px;}
.xc8_c00307{left:395.250000px;}
.x50_c00307{left:397.500000px;}
.x96_c00307{left:400.650000px;}
.x9_c00307{left:403.200000px;}
.xbf_c00307{left:404.550000px;}
.x128_c00307{left:405.750000px;}
.x77_c00307{left:406.800000px;}
.x6a_c00307{left:409.650000px;}
.xff_c00307{left:411.600000px;}
.x40_c00307{left:413.250000px;}
.x112_c00307{left:415.500000px;}
.x83_c00307{left:416.850000px;}
.x19_c00307{left:418.050000px;}
.xaa_c00307{left:420.450000px;}
.xc0_c00307{left:422.550000px;}
.x97_c00307{left:423.750000px;}
.xcf_c00307{left:425.400000px;}
.x6b_c00307{left:427.650000px;}
.x100_c00307{left:431.100000px;}
.x1a_c00307{left:433.500000px;}
.x25_c00307{left:435.600000px;}
.xef_c00307{left:438.450000px;}
.xf5_c00307{left:439.500000px;}
.xbc_c00307{left:440.850000px;}
.xc1_c00307{left:443.400000px;}
.x11d_c00307{left:444.900000px;}
.x129_c00307{left:448.500000px;}
.x51_c00307{left:450.450000px;}
.x32_c00307{left:452.700000px;}
.x119_c00307{left:453.900000px;}
.x61_c00307{left:455.250000px;}
.x9f_c00307{left:456.300000px;}
.x101_c00307{left:458.850000px;}
.xbd_c00307{left:461.400000px;}
.xd0_c00307{left:462.900000px;}
.x41_c00307{left:463.950000px;}
.x78_c00307{left:466.950000px;}
.x11e_c00307{left:470.400000px;}
.x52_c00307{left:472.800000px;}
.xa0_c00307{left:475.050000px;}
.x62_c00307{left:476.550000px;}
.x98_c00307{left:478.500000px;}
.x33_c00307{left:480.750000px;}
.xfb_c00307{left:482.850000px;}
.xa_c00307{left:483.900000px;}
.x12a_c00307{left:485.250000px;}
.x42_c00307{left:487.050000px;}
.xbe_c00307{left:488.400000px;}
.x1b_c00307{left:493.650000px;}
.xc2_c00307{left:494.850000px;}
.xb5_c00307{left:499.050000px;}
.x53_c00307{left:501.900000px;}
.x79_c00307{left:503.700000px;}
.xb_c00307{left:505.500000px;}
.x26_c00307{left:507.300000px;}
.x34_c00307{left:509.550000px;}
.xeb_c00307{left:512.100000px;}
.x6c_c00307{left:517.350000px;}
.xb6_c00307{left:519.900000px;}
.x90_c00307{left:521.550000px;}
.x102_c00307{left:523.350000px;}
.xf0_c00307{left:525.900000px;}
.x12b_c00307{left:527.850000px;}
.xa1_c00307{left:530.850000px;}
.x7f_c00307{left:533.100000px;}
.x91_c00307{left:535.950000px;}
.xab_c00307{left:537.600000px;}
.x107_c00307{left:541.350000px;}
.x27_c00307{left:542.550000px;}
.xc9_c00307{left:544.200000px;}
.xc_c00307{left:545.400000px;}
.x84_c00307{left:547.200000px;}
.x43_c00307{left:548.550000px;}
.x35_c00307{left:551.250000px;}
.x1c_c00307{left:553.050000px;}
.xc3_c00307{left:556.050000px;}
.x6d_c00307{left:558.450000px;}
.xb7_c00307{left:559.500000px;}
.x10f_c00307{left:561.150000px;}
.x11f_c00307{left:563.250000px;}
.x54_c00307{left:565.200000px;}
.x28_c00307{left:568.050000px;}
.x44_c00307{left:569.400000px;}
.x36_c00307{left:571.800000px;}
.xca_c00307{left:575.100000px;}
.xd_c00307{left:576.300000px;}
.x108_c00307{left:578.100000px;}
.xb8_c00307{left:580.050000px;}
.x124_c00307{left:582.300000px;}
.xf1_c00307{left:583.500000px;}
.xf6_c00307{left:586.800000px;}
.x1d_c00307{left:589.350000px;}
.x55_c00307{left:591.900000px;}
.x45_c00307{left:593.100000px;}
.xe5_c00307{left:595.500000px;}
.x85_c00307{left:598.350000px;}
.xa2_c00307{left:600.000000px;}
.xd4_c00307{left:601.650000px;}
.x120_c00307{left:603.150000px;}
.xac_c00307{left:605.250000px;}
.x92_c00307{left:606.900000px;}
.x63_c00307{left:609.450000px;}
.x29_c00307{left:612.300000px;}
.xe_c00307{left:615.150000px;}
.x86_c00307{left:618.150000px;}
.x93_c00307{left:620.550000px;}
.x125_c00307{left:621.900000px;}
.xc4_c00307{left:623.700000px;}
.x115_c00307{left:626.850000px;}
.x56_c00307{left:628.950000px;}
.x6e_c00307{left:631.200000px;}
.xd9_c00307{left:633.000000px;}
.x10a_c00307{left:634.200000px;}
.x37_c00307{left:635.850000px;}
.x87_c00307{left:640.050000px;}
.xdf_c00307{left:644.550000px;}
.x57_c00307{left:646.950000px;}
.x6f_c00307{left:648.150000px;}
.x126_c00307{left:649.650000px;}
.xf_c00307{left:651.900000px;}
.xa3_c00307{left:654.300000px;}
.xfc_c00307{left:656.850000px;}
.x46_c00307{left:661.800000px;}
.x99_c00307{left:663.150000px;}
.x10b_c00307{left:664.500000px;}
.x2a_c00307{left:666.000000px;}
.xad_c00307{left:668.250000px;}
.x10_c00307{left:669.600000px;}
.x88_c00307{left:670.950000px;}
.x94_c00307{left:672.000000px;}
.x70_c00307{left:673.650000px;}
.x64_c00307{left:675.300000px;}
.xe6_c00307{left:681.150000px;}
.xa4_c00307{left:683.400000px;}
.x110_c00307{left:686.550000px;}
.x47_c00307{left:689.850000px;}
.x10d_c00307{left:691.050000px;}
.xd5_c00307{left:692.100000px;}
.xb9_c00307{left:696.300000px;}
.x121_c00307{left:697.950000px;}
.x58_c00307{left:699.150000px;}
.x1e_c00307{left:701.250000px;}
.xf2_c00307{left:702.600000px;}
.x11_c00307{left:703.800000px;}
.x89_c00307{left:705.150000px;}
.x38_c00307{left:706.650000px;}
.xe7_c00307{left:707.850000px;}
.xe0_c00307{left:709.350000px;}
.xcb_c00307{left:712.650000px;}
.xfd_c00307{left:714.150000px;}
.xda_c00307{left:719.700000px;}
.x48_c00307{left:721.500000px;}
.xf3_c00307{left:723.450000px;}
.xec_c00307{left:725.250000px;}
.x116_c00307{left:726.600000px;}
.x9a_c00307{left:731.550000px;}
.x2b_c00307{left:733.950000px;}
.xe8_c00307{left:735.900000px;}
.x2_c00307{left:738.000000px;}
.xf7_c00307{left:739.050000px;}
.x49_c00307{left:742.800000px;}
.x71_c00307{left:743.850000px;}
.x59_c00307{left:745.200000px;}
.xba_c00307{left:751.350000px;}
.x39_c00307{left:760.350000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws5_c00307{word-spacing:-7.744655pt;}
.ws3_c00307{word-spacing:-6.306801pt;}
.ws6_c00307{word-spacing:-4.628166pt;}
.ws2_c00307{word-spacing:-4.222222pt;}
.ws9_c00307{word-spacing:-3.352626pt;}
.ws1_c00307{word-spacing:-2.888889pt;}
.wsb_c00307{word-spacing:-1.437707pt;}
.wsd_c00307{word-spacing:-0.393673pt;}
.ws13_c00307{word-spacing:0.000000pt;}
.wsa_c00307{word-spacing:0.222222pt;}
.ws10_c00307{word-spacing:2.286453pt;}
.ws12_c00307{word-spacing:3.461418pt;}
.ws8_c00307{word-spacing:4.000000pt;}
.ws4_c00307{word-spacing:5.175387pt;}
.wse_c00307{word-spacing:5.683398pt;}
.ws0_c00307{word-spacing:6.172452pt;}
.ws7_c00307{word-spacing:8.270042pt;}
.ws11_c00307{word-spacing:13.222222pt;}
.wsc_c00307{word-spacing:15.614847pt;}
.wsf_c00307{word-spacing:22.074074pt;}
.fs1_c00307{font-size:48.000000pt;}
.fs0_c00307{font-size:53.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y2b_c00307{bottom:138.533333pt;}
.y2a_c00307{bottom:178.666667pt;}
.y29_c00307{bottom:196.533333pt;}
.y28_c00307{bottom:214.400000pt;}
.y27_c00307{bottom:232.000000pt;}
.y26_c00307{bottom:249.333333pt;}
.y25_c00307{bottom:267.200000pt;}
.y24_c00307{bottom:285.066667pt;}
.y23_c00307{bottom:302.666667pt;}
.y22_c00307{bottom:320.266667pt;}
.y21_c00307{bottom:337.866667pt;}
.y20_c00307{bottom:355.733333pt;}
.y1f_c00307{bottom:373.600000pt;}
.y1e_c00307{bottom:391.466667pt;}
.y1d_c00307{bottom:409.066667pt;}
.y1c_c00307{bottom:426.933333pt;}
.y1b_c00307{bottom:444.533333pt;}
.y1a_c00307{bottom:462.133333pt;}
.y19_c00307{bottom:480.000000pt;}
.y18_c00307{bottom:497.600000pt;}
.y17_c00307{bottom:515.200000pt;}
.y16_c00307{bottom:532.800000pt;}
.y15_c00307{bottom:550.400000pt;}
.y14_c00307{bottom:568.000000pt;}
.y13_c00307{bottom:598.266667pt;}
.y12_c00307{bottom:615.866667pt;}
.y11_c00307{bottom:633.733333pt;}
.y10_c00307{bottom:651.600000pt;}
.yf_c00307{bottom:669.200000pt;}
.ye_c00307{bottom:686.800000pt;}
.yd_c00307{bottom:704.666667pt;}
.yc_c00307{bottom:722.266667pt;}
.yb_c00307{bottom:740.133333pt;}
.ya_c00307{bottom:757.733333pt;}
.y9_c00307{bottom:775.333333pt;}
.y8_c00307{bottom:793.066667pt;}
.y7_c00307{bottom:810.933333pt;}
.y6_c00307{bottom:828.533333pt;}
.y5_c00307{bottom:846.400000pt;}
.y4_c00307{bottom:864.000000pt;}
.y3_c00307{bottom:881.866667pt;}
.y2_c00307{bottom:899.466667pt;}
.y1_c00307{bottom:933.066667pt;}
.h3_c00307{height:48.000000pt;}
.h2_c00307{height:53.333333pt;}
.h0_c00307{height:1037.119955pt;}
.h1_c00307{height:1037.333333pt;}
.w1_c00307{width:812.000000pt;}
.w0_c00307{width:812.159993pt;}
.x0_c00307{left:0.000000pt;}
.x72_c00307{left:80.400000pt;}
.x117_c00307{left:85.200000pt;}
.x4a_c00307{left:86.133333pt;}
.x3_c00307{left:87.066667pt;}
.x8a_c00307{left:102.000000pt;}
.xa5_c00307{left:104.000000pt;}
.x5a_c00307{left:104.933333pt;}
.xae_c00307{left:110.400000pt;}
.x10c_c00307{left:111.333333pt;}
.x2c_c00307{left:112.533333pt;}
.x7a_c00307{left:113.866667pt;}
.x5b_c00307{left:114.933333pt;}
.x1f_c00307{left:115.866667pt;}
.x73_c00307{left:116.933333pt;}
.x9b_c00307{left:119.066667pt;}
.x3a_c00307{left:120.000000pt;}
.xf4_c00307{left:124.000000pt;}
.x8b_c00307{left:127.333333pt;}
.xa6_c00307{left:129.333333pt;}
.x103_c00307{left:130.666667pt;}
.xd1_c00307{left:131.733333pt;}
.x5c_c00307{left:132.800000pt;}
.x4b_c00307{left:135.466667pt;}
.xe9_c00307{left:136.400000pt;}
.x8c_c00307{left:137.866667pt;}
.x3b_c00307{left:139.200000pt;}
.x4_c00307{left:140.533333pt;}
.x65_c00307{left:145.200000pt;}
.x12_c00307{left:147.600000pt;}
.x9c_c00307{left:151.333333pt;}
.xcc_c00307{left:152.533333pt;}
.x2d_c00307{left:153.466667pt;}
.x74_c00307{left:157.200000pt;}
.x7b_c00307{left:160.266667pt;}
.x104_c00307{left:165.866667pt;}
.x20_c00307{left:168.000000pt;}
.xaf_c00307{left:168.933333pt;}
.x4c_c00307{left:170.933333pt;}
.x5_c00307{left:173.466667pt;}
.x113_c00307{left:175.333333pt;}
.xdb_c00307{left:176.400000pt;}
.xe1_c00307{left:178.000000pt;}
.xc5_c00307{left:180.666667pt;}
.x122_c00307{left:182.133333pt;}
.x75_c00307{left:183.066667pt;}
.x109_c00307{left:184.933333pt;}
.xe2_c00307{left:186.800000pt;}
.x3c_c00307{left:189.466667pt;}
.x11a_c00307{left:190.533333pt;}
.x105_c00307{left:192.133333pt;}
.xf8_c00307{left:194.533333pt;}
.x7c_c00307{left:195.466667pt;}
.x8d_c00307{left:198.400000pt;}
.xb0_c00307{left:199.333333pt;}
.x6_c00307{left:201.333333pt;}
.xdc_c00307{left:203.333333pt;}
.x111_c00307{left:204.800000pt;}
.x21_c00307{left:207.066667pt;}
.x2e_c00307{left:212.933333pt;}
.x80_c00307{left:214.000000pt;}
.x13_c00307{left:215.066667pt;}
.x5d_c00307{left:216.000000pt;}
.x7d_c00307{left:221.066667pt;}
.x66_c00307{left:223.333333pt;}
.x4d_c00307{left:229.200000pt;}
.x14_c00307{left:231.733333pt;}
.xc6_c00307{left:233.466667pt;}
.x22_c00307{left:235.200000pt;}
.xfe_c00307{left:236.533333pt;}
.x7_c00307{left:237.466667pt;}
.x81_c00307{left:239.600000pt;}
.xd6_c00307{left:242.800000pt;}
.xb1_c00307{left:244.800000pt;}
.xa7_c00307{left:247.333333pt;}
.xe3_c00307{left:250.133333pt;}
.x67_c00307{left:252.800000pt;}
.x123_c00307{left:254.400000pt;}
.xea_c00307{left:256.400000pt;}
.x127_c00307{left:257.600000pt;}
.x9d_c00307{left:259.066667pt;}
.x106_c00307{left:260.000000pt;}
.x4e_c00307{left:261.866667pt;}
.xb2_c00307{left:265.600000pt;}
.x3d_c00307{left:266.800000pt;}
.x114_c00307{left:268.400000pt;}
.x15_c00307{left:269.866667pt;}
.x2f_c00307{left:270.933333pt;}
.x118_c00307{left:272.266667pt;}
.x8e_c00307{left:273.866667pt;}
.x68_c00307{left:275.466667pt;}
.xe4_c00307{left:277.066667pt;}
.xdd_c00307{left:278.800000pt;}
.xd2_c00307{left:281.200000pt;}
.x23_c00307{left:283.733333pt;}
.x95_c00307{left:285.066667pt;}
.xf9_c00307{left:286.000000pt;}
.x16_c00307{left:287.733333pt;}
.xa8_c00307{left:289.600000pt;}
.xc7_c00307{left:292.400000pt;}
.x8_c00307{left:293.733333pt;}
.xcd_c00307{left:294.666667pt;}
.x7e_c00307{left:296.000000pt;}
.x5e_c00307{left:296.933333pt;}
.xed_c00307{left:300.266667pt;}
.x3e_c00307{left:302.000000pt;}
.x30_c00307{left:304.800000pt;}
.x24_c00307{left:306.800000pt;}
.x11b_c00307{left:308.000000pt;}
.x76_c00307{left:309.733333pt;}
.x4f_c00307{left:311.066667pt;}
.xfa_c00307{left:312.933333pt;}
.x5f_c00307{left:315.200000pt;}
.x82_c00307{left:317.066667pt;}
.xb3_c00307{left:320.266667pt;}
.xce_c00307{left:322.133333pt;}
.x10e_c00307{left:323.600000pt;}
.x9e_c00307{left:324.666667pt;}
.x17_c00307{left:326.800000pt;}
.x69_c00307{left:328.000000pt;}
.xde_c00307{left:329.733333pt;}
.xd7_c00307{left:330.800000pt;}
.xa9_c00307{left:331.866667pt;}
.x31_c00307{left:333.600000pt;}
.xbb_c00307{left:334.533333pt;}
.x11c_c00307{left:336.533333pt;}
.x1_c00307{left:337.600000pt;}
.xb4_c00307{left:339.200000pt;}
.x3f_c00307{left:340.133333pt;}
.x8f_c00307{left:342.000000pt;}
.x18_c00307{left:343.466667pt;}
.xd8_c00307{left:344.533333pt;}
.xee_c00307{left:346.933333pt;}
.xd3_c00307{left:348.133333pt;}
.x60_c00307{left:349.066667pt;}
.xc8_c00307{left:351.333333pt;}
.x50_c00307{left:353.333333pt;}
.x96_c00307{left:356.133333pt;}
.x9_c00307{left:358.400000pt;}
.xbf_c00307{left:359.600000pt;}
.x128_c00307{left:360.666667pt;}
.x77_c00307{left:361.600000pt;}
.x6a_c00307{left:364.133333pt;}
.xff_c00307{left:365.866667pt;}
.x40_c00307{left:367.333333pt;}
.x112_c00307{left:369.333333pt;}
.x83_c00307{left:370.533333pt;}
.x19_c00307{left:371.600000pt;}
.xaa_c00307{left:373.733333pt;}
.xc0_c00307{left:375.600000pt;}
.x97_c00307{left:376.666667pt;}
.xcf_c00307{left:378.133333pt;}
.x6b_c00307{left:380.133333pt;}
.x100_c00307{left:383.200000pt;}
.x1a_c00307{left:385.333333pt;}
.x25_c00307{left:387.200000pt;}
.xef_c00307{left:389.733333pt;}
.xf5_c00307{left:390.666667pt;}
.xbc_c00307{left:391.866667pt;}
.xc1_c00307{left:394.133333pt;}
.x11d_c00307{left:395.466667pt;}
.x129_c00307{left:398.666667pt;}
.x51_c00307{left:400.400000pt;}
.x32_c00307{left:402.400000pt;}
.x119_c00307{left:403.466667pt;}
.x61_c00307{left:404.666667pt;}
.x9f_c00307{left:405.600000pt;}
.x101_c00307{left:407.866667pt;}
.xbd_c00307{left:410.133333pt;}
.xd0_c00307{left:411.466667pt;}
.x41_c00307{left:412.400000pt;}
.x78_c00307{left:415.066667pt;}
.x11e_c00307{left:418.133333pt;}
.x52_c00307{left:420.266667pt;}
.xa0_c00307{left:422.266667pt;}
.x62_c00307{left:423.600000pt;}
.x98_c00307{left:425.333333pt;}
.x33_c00307{left:427.333333pt;}
.xfb_c00307{left:429.200000pt;}
.xa_c00307{left:430.133333pt;}
.x12a_c00307{left:431.333333pt;}
.x42_c00307{left:432.933333pt;}
.xbe_c00307{left:434.133333pt;}
.x1b_c00307{left:438.800000pt;}
.xc2_c00307{left:439.866667pt;}
.xb5_c00307{left:443.600000pt;}
.x53_c00307{left:446.133333pt;}
.x79_c00307{left:447.733333pt;}
.xb_c00307{left:449.333333pt;}
.x26_c00307{left:450.933333pt;}
.x34_c00307{left:452.933333pt;}
.xeb_c00307{left:455.200000pt;}
.x6c_c00307{left:459.866667pt;}
.xb6_c00307{left:462.133333pt;}
.x90_c00307{left:463.600000pt;}
.x102_c00307{left:465.200000pt;}
.xf0_c00307{left:467.466667pt;}
.x12b_c00307{left:469.200000pt;}
.xa1_c00307{left:471.866667pt;}
.x7f_c00307{left:473.866667pt;}
.x91_c00307{left:476.400000pt;}
.xab_c00307{left:477.866667pt;}
.x107_c00307{left:481.200000pt;}
.x27_c00307{left:482.266667pt;}
.xc9_c00307{left:483.733333pt;}
.xc_c00307{left:484.800000pt;}
.x84_c00307{left:486.400000pt;}
.x43_c00307{left:487.600000pt;}
.x35_c00307{left:490.000000pt;}
.x1c_c00307{left:491.600000pt;}
.xc3_c00307{left:494.266667pt;}
.x6d_c00307{left:496.400000pt;}
.xb7_c00307{left:497.333333pt;}
.x10f_c00307{left:498.800000pt;}
.x11f_c00307{left:500.666667pt;}
.x54_c00307{left:502.400000pt;}
.x28_c00307{left:504.933333pt;}
.x44_c00307{left:506.133333pt;}
.x36_c00307{left:508.266667pt;}
.xca_c00307{left:511.200000pt;}
.xd_c00307{left:512.266667pt;}
.x108_c00307{left:513.866667pt;}
.xb8_c00307{left:515.600000pt;}
.x124_c00307{left:517.600000pt;}
.xf1_c00307{left:518.666667pt;}
.xf6_c00307{left:521.600000pt;}
.x1d_c00307{left:523.866667pt;}
.x55_c00307{left:526.133333pt;}
.x45_c00307{left:527.200000pt;}
.xe5_c00307{left:529.333333pt;}
.x85_c00307{left:531.866667pt;}
.xa2_c00307{left:533.333333pt;}
.xd4_c00307{left:534.800000pt;}
.x120_c00307{left:536.133333pt;}
.xac_c00307{left:538.000000pt;}
.x92_c00307{left:539.466667pt;}
.x63_c00307{left:541.733333pt;}
.x29_c00307{left:544.266667pt;}
.xe_c00307{left:546.800000pt;}
.x86_c00307{left:549.466667pt;}
.x93_c00307{left:551.600000pt;}
.x125_c00307{left:552.800000pt;}
.xc4_c00307{left:554.400000pt;}
.x115_c00307{left:557.200000pt;}
.x56_c00307{left:559.066667pt;}
.x6e_c00307{left:561.066667pt;}
.xd9_c00307{left:562.666667pt;}
.x10a_c00307{left:563.733333pt;}
.x37_c00307{left:565.200000pt;}
.x87_c00307{left:568.933333pt;}
.xdf_c00307{left:572.933333pt;}
.x57_c00307{left:575.066667pt;}
.x6f_c00307{left:576.133333pt;}
.x126_c00307{left:577.466667pt;}
.xf_c00307{left:579.466667pt;}
.xa3_c00307{left:581.600000pt;}
.xfc_c00307{left:583.866667pt;}
.x46_c00307{left:588.266667pt;}
.x99_c00307{left:589.466667pt;}
.x10b_c00307{left:590.666667pt;}
.x2a_c00307{left:592.000000pt;}
.xad_c00307{left:594.000000pt;}
.x10_c00307{left:595.200000pt;}
.x88_c00307{left:596.400000pt;}
.x94_c00307{left:597.333333pt;}
.x70_c00307{left:598.800000pt;}
.x64_c00307{left:600.266667pt;}
.xe6_c00307{left:605.466667pt;}
.xa4_c00307{left:607.466667pt;}
.x110_c00307{left:610.266667pt;}
.x47_c00307{left:613.200000pt;}
.x10d_c00307{left:614.266667pt;}
.xd5_c00307{left:615.200000pt;}
.xb9_c00307{left:618.933333pt;}
.x121_c00307{left:620.400000pt;}
.x58_c00307{left:621.466667pt;}
.x1e_c00307{left:623.333333pt;}
.xf2_c00307{left:624.533333pt;}
.x11_c00307{left:625.600000pt;}
.x89_c00307{left:626.800000pt;}
.x38_c00307{left:628.133333pt;}
.xe7_c00307{left:629.200000pt;}
.xe0_c00307{left:630.533333pt;}
.xcb_c00307{left:633.466667pt;}
.xfd_c00307{left:634.800000pt;}
.xda_c00307{left:639.733333pt;}
.x48_c00307{left:641.333333pt;}
.xf3_c00307{left:643.066667pt;}
.xec_c00307{left:644.666667pt;}
.x116_c00307{left:645.866667pt;}
.x9a_c00307{left:650.266667pt;}
.x2b_c00307{left:652.400000pt;}
.xe8_c00307{left:654.133333pt;}
.x2_c00307{left:656.000000pt;}
.xf7_c00307{left:656.933333pt;}
.x49_c00307{left:660.266667pt;}
.x71_c00307{left:661.200000pt;}
.x59_c00307{left:662.400000pt;}
.xba_c00307{left:667.866667pt;}
.x39_c00307{left:675.866667pt;}
}





/* 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_c00308 {
    display:none;
  }
  .loading-indicator_c00308.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00308 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_c00308 { 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_c00308" -> "#page-container .classname_c00308")
 */
.pf_c00308 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00308 { /* 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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00308 { /* 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_c00308 { /* 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_c00308 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00308 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00308 {overflow:visible;}
  }
}
.c_c00308 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00308 { /* 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_c00308:after { /* webkit #35443 */
  content: '';
}
.t_c00308:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00308 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 */
}
.__c00308 { /* 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_c00308 { /* info for Javascript */
  display:none;
}
.l_c00308 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00308 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00308 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00308: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_c00308 {
    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_c00308.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00308.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_c00308 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00308{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00308;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.000000;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;}
.m4a_c00308{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m82_c00308{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00308{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m79_c00308{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m22_c00308{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m89_c00308{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00308{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m16_c00308{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00308{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m4_c00308{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m14_c00308{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00308{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00308{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m98_c00308{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m85_c00308{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00308{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m70_c00308{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m56_c00308{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m62_c00308{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m91_c00308{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00308{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m63_c00308{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00308{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mc_c00308{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m40_c00308{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m45_c00308{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m88_c00308{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00308{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m6_c00308{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00308{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m57_c00308{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m74_c00308{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00308{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m95_c00308{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00308{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3_c00308{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00308{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m92_c00308{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9_c00308{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m42_c00308{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m32_c00308{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00308{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m80_c00308{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00308{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00308{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5_c00308{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00308{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00308{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf_c00308{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m90_c00308{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00308{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m44_c00308{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00308{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m15_c00308{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00308{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00308{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m43_c00308{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00308{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00308{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00308{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00308{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m87_c00308{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m71_c00308{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m73_c00308{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m46_c00308{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m58_c00308{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m25_c00308{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00308{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00308{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00308{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m50_c00308{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m10_c00308{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m24_c00308{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m47_c00308{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00308{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m8_c00308{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00308{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00308{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00308{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7_c00308{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00308{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00308{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m33_c00308{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m55_c00308{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m12_c00308{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00308{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00308{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m94_c00308{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00308{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00308{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m21_c00308{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m11_c00308{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00308{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m27_c00308{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00308{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00308{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00308{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m41_c00308{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m83_c00308{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m66_c00308{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m29_c00308{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00308{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m61_c00308{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00308{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m75_c00308{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m97_c00308{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m93_c00308{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13_c00308{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00308{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m54_c00308{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m76_c00308{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m52_c00308{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m99_c00308{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00308{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m69_c00308{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00308{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m38_c00308{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00308{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m60_c00308{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m35_c00308{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00308{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00308{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00308{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m39_c00308{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma_c00308{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m49_c00308{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);}
.m20_c00308{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m51_c00308{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00308{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m59_c00308{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m78_c00308{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb_c00308{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m19_c00308{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m48_c00308{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2_c00308{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m26_c00308{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00308{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m28_c00308{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m77_c00308{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m18_c00308{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00308{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.me_c00308{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m30_c00308{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00308{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m67_c00308{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m81_c00308{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00308{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00308{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m36_c00308{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00308{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00308{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00308{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00308{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m64_c00308{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m37_c00308{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m96_c00308{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m0_c00308{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00308{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00308{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m17_c00308{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00308{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m53_c00308{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00308{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m31_c00308{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m34_c00308{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.md_c00308{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m72_c00308{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00308{vertical-align:0.000000px;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{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__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00308{word-spacing:-10.000000px;}
.wsc_c00308{word-spacing:-8.409091px;}
.ws0_c00308{word-spacing:-8.146552px;}
.ws9_c00308{word-spacing:-6.184211px;}
.ws2_c00308{word-spacing:-4.404762px;}
.ws4_c00308{word-spacing:-1.578947px;}
.ws3_c00308{word-spacing:-0.757576px;}
.wsd_c00308{word-spacing:0.000000px;}
.ws5_c00308{word-spacing:5.405405px;}
.wsb_c00308{word-spacing:6.527778px;}
.ws7_c00308{word-spacing:8.529412px;}
.ws8_c00308{word-spacing:8.773585px;}
.ws6_c00308{word-spacing:8.970588px;}
.wsa_c00308{word-spacing:48.333333px;}
.fc0_c00308{color:transparent;}
.fs0_c00308{font-size:60.000000px;}
.y0_c00308{bottom:0.000000px;}
.y2d_c00308{bottom:155.850000px;}
.y2c_c00308{bottom:175.650000px;}
.y2b_c00308{bottom:195.450000px;}
.y2a_c00308{bottom:215.100000px;}
.y29_c00308{bottom:235.200000px;}
.y28_c00308{bottom:255.300000px;}
.y27_c00308{bottom:275.100000px;}
.y26_c00308{bottom:294.900000px;}
.y25_c00308{bottom:313.500000px;}
.y24_c00308{bottom:335.100000px;}
.y23_c00308{bottom:353.850000px;}
.y22_c00308{bottom:374.400000px;}
.y21_c00308{bottom:394.200000px;}
.y20_c00308{bottom:414.300000px;}
.y1f_c00308{bottom:434.100000px;}
.y1e_c00308{bottom:453.900000px;}
.y1d_c00308{bottom:473.400000px;}
.y1c_c00308{bottom:493.950000px;}
.y1b_c00308{bottom:513.750000px;}
.y1a_c00308{bottom:533.550000px;}
.y19_c00308{bottom:553.650000px;}
.y18_c00308{bottom:573.450000px;}
.y17_c00308{bottom:592.950000px;}
.y16_c00308{bottom:612.750000px;}
.y15_c00308{bottom:633.300000px;}
.y14_c00308{bottom:652.800000px;}
.y13_c00308{bottom:672.600000px;}
.y12_c00308{bottom:692.700000px;}
.y11_c00308{bottom:712.500000px;}
.y10_c00308{bottom:732.600000px;}
.yf_c00308{bottom:752.100000px;}
.ye_c00308{bottom:772.050000px;}
.yd_c00308{bottom:792.150000px;}
.yc_c00308{bottom:812.250000px;}
.yb_c00308{bottom:832.050000px;}
.ya_c00308{bottom:851.850000px;}
.y9_c00308{bottom:871.950000px;}
.y8_c00308{bottom:891.750000px;}
.y7_c00308{bottom:911.550000px;}
.y6_c00308{bottom:931.650000px;}
.y5_c00308{bottom:951.450000px;}
.y4_c00308{bottom:971.400000px;}
.y3_c00308{bottom:991.500000px;}
.y2_c00308{bottom:1011.300000px;}
.y1_c00308{bottom:1050.150000px;}
.h2_c00308{height:60.000000px;}
.h0_c00308{height:1166.759949px;}
.h1_c00308{height:1167.000000px;}
.w1_c00308{width:913.500000px;}
.w0_c00308{width:913.679993px;}
.x0_c00308{left:0.000000px;}
.x98_c00308{left:150.750000px;}
.x5c_c00308{left:151.950000px;}
.x1_c00308{left:153.000000px;}
.x15_c00308{left:169.500000px;}
.x8f_c00308{left:172.350000px;}
.xcd_c00308{left:175.500000px;}
.x23_c00308{left:178.350000px;}
.xf6_c00308{left:180.150000px;}
.x7a_c00308{left:181.350000px;}
.x9f_c00308{left:182.850000px;}
.x3_c00308{left:183.900000px;}
.xce_c00308{left:190.950000px;}
.xc8_c00308{left:195.150000px;}
.x16_c00308{left:198.300000px;}
.x11f_c00308{left:201.300000px;}
.x43_c00308{left:202.500000px;}
.x70_c00308{left:203.550000px;}
.xb3_c00308{left:205.200000px;}
.x129_c00308{left:206.700000px;}
.x37_c00308{left:208.050000px;}
.xdb_c00308{left:210.000000px;}
.x24_c00308{left:211.800000px;}
.x5d_c00308{left:214.200000px;}
.x17_c00308{left:216.000000px;}
.x10c_c00308{left:217.500000px;}
.x112_c00308{left:221.100000px;}
.x44_c00308{left:222.600000px;}
.xa0_c00308{left:223.950000px;}
.xbf_c00308{left:226.500000px;}
.x4f_c00308{left:227.700000px;}
.xcf_c00308{left:228.750000px;}
.x123_c00308{left:232.950000px;}
.x85_c00308{left:234.450000px;}
.x116_c00308{left:235.800000px;}
.x103_c00308{left:241.050000px;}
.x4_c00308{left:243.300000px;}
.x71_c00308{left:244.650000px;}
.x25_c00308{left:247.050000px;}
.x124_c00308{left:248.100000px;}
.xa1_c00308{left:249.150000px;}
.x38_c00308{left:250.500000px;}
.x5e_c00308{left:253.500000px;}
.x133_c00308{left:255.300000px;}
.x11d_c00308{left:256.350000px;}
.x68_c00308{left:257.550000px;}
.x12a_c00308{left:259.200000px;}
.x90_c00308{left:260.850000px;}
.x45_c00308{left:264.000000px;}
.x26_c00308{left:267.150000px;}
.xea_c00308{left:268.500000px;}
.x121_c00308{left:269.550000px;}
.xf1_c00308{left:271.500000px;}
.x99_c00308{left:272.850000px;}
.x72_c00308{left:274.200000px;}
.x12f_c00308{left:275.400000px;}
.x104_c00308{left:278.400000px;}
.x5f_c00308{left:282.600000px;}
.xf7_c00308{left:285.600000px;}
.x86_c00308{left:288.150000px;}
.x5_c00308{left:291.600000px;}
.xeb_c00308{left:294.000000px;}
.x27_c00308{left:295.950000px;}
.x11e_c00308{left:297.000000px;}
.x134_c00308{left:298.500000px;}
.x46_c00308{left:299.700000px;}
.x69_c00308{left:301.050000px;}
.xa2_c00308{left:302.400000px;}
.x60_c00308{left:303.900000px;}
.x9a_c00308{left:306.000000px;}
.x6_c00308{left:307.050000px;}
.x7b_c00308{left:309.150000px;}
.xdc_c00308{left:311.100000px;}
.xd5_c00308{left:313.800000px;}
.xfe_c00308{left:315.300000px;}
.x18_c00308{left:318.900000px;}
.x39_c00308{left:322.500000px;}
.xf8_c00308{left:325.500000px;}
.x28_c00308{left:327.300000px;}
.x47_c00308{left:328.500000px;}
.x50_c00308{left:330.750000px;}
.x120_c00308{left:331.950000px;}
.x109_c00308{left:333.000000px;}
.x6a_c00308{left:334.200000px;}
.x73_c00308{left:336.150000px;}
.x7_c00308{left:337.650000px;}
.xad_c00308{left:341.550000px;}
.x19_c00308{left:344.400000px;}
.xc0_c00308{left:346.500000px;}
.x51_c00308{left:348.450000px;}
.xdd_c00308{left:349.650000px;}
.x117_c00308{left:351.750000px;}
.xb4_c00308{left:352.800000px;}
.x8_c00308{left:355.350000px;}
.xf9_c00308{left:356.400000px;}
.xae_c00308{left:358.500000px;}
.x9b_c00308{left:360.750000px;}
.x87_c00308{left:362.700000px;}
.x12e_c00308{left:364.200000px;}
.x10d_c00308{left:365.550000px;}
.x29_c00308{left:366.600000px;}
.x130_c00308{left:367.650000px;}
.x3a_c00308{left:369.000000px;}
.x91_c00308{left:370.650000px;}
.xb5_c00308{left:372.600000px;}
.x1a_c00308{left:375.300000px;}
.x118_c00308{left:377.250000px;}
.xa3_c00308{left:378.300000px;}
.xec_c00308{left:381.450000px;}
.x48_c00308{left:382.500000px;}
.xaf_c00308{left:384.450000px;}
.x7c_c00308{left:386.250000px;}
.x2a_c00308{left:387.450000px;}
.xde_c00308{left:390.300000px;}
.x10e_c00308{left:391.500000px;}
.x74_c00308{left:393.450000px;}
.x9_c00308{left:394.650000px;}
.x3b_c00308{left:399.300000px;}
.x131_c00308{left:401.850000px;}
.xd6_c00308{left:403.350000px;}
.x122_c00308{left:404.850000px;}
.x52_c00308{left:408.150000px;}
.x119_c00308{left:409.350000px;}
.xa_c00308{left:412.650000px;}
.x61_c00308{left:414.000000px;}
.xe4_c00308{left:415.500000px;}
.xff_c00308{left:416.550000px;}
.x126_c00308{left:418.200000px;}
.x88_c00308{left:419.250000px;}
.xfa_c00308{left:420.750000px;}
.xd0_c00308{left:422.550000px;}
.x7d_c00308{left:425.850000px;}
.x9c_c00308{left:427.350000px;}
.x92_c00308{left:428.550000px;}
.xed_c00308{left:429.750000px;}
.x62_c00308{left:431.250000px;}
.x53_c00308{left:433.350000px;}
.xe5_c00308{left:436.050000px;}
.xb_c00308{left:438.150000px;}
.x89_c00308{left:440.100000px;}
.x2b_c00308{left:441.450000px;}
.xc1_c00308{left:442.650000px;}
.x7e_c00308{left:444.150000px;}
.x49_c00308{left:445.200000px;}
.xa4_c00308{left:447.300000px;}
.x2_c00308{left:448.500000px;}
.x135_c00308{left:451.950000px;}
.x1b_c00308{left:453.000000px;}
.xc9_c00308{left:456.300000px;}
.x2c_c00308{left:458.400000px;}
.x93_c00308{left:459.450000px;}
.x10a_c00308{left:461.400000px;}
.x4a_c00308{left:466.500000px;}
.x7f_c00308{left:469.650000px;}
.xc_c00308{left:474.450000px;}
.x54_c00308{left:475.800000px;}
.x9d_c00308{left:477.000000px;}
.xa5_c00308{left:478.200000px;}
.x3c_c00308{left:480.300000px;}
.x113_c00308{left:481.500000px;}
.x2d_c00308{left:482.850000px;}
.xb6_c00308{left:483.900000px;}
.x6b_c00308{left:485.400000px;}
.x12b_c00308{left:487.050000px;}
.x10f_c00308{left:489.000000px;}
.x4b_c00308{left:490.200000px;}
.x1c_c00308{left:491.550000px;}
.xa6_c00308{left:493.350000px;}
.xc2_c00308{left:494.400000px;}
.x100_c00308{left:496.500000px;}
.xe6_c00308{left:498.750000px;}
.xdf_c00308{left:501.900000px;}
.x55_c00308{left:503.850000px;}
.x8a_c00308{left:507.450000px;}
.xb0_c00308{left:510.450000px;}
.x1d_c00308{left:512.100000px;}
.x80_c00308{left:513.900000px;}
.x63_c00308{left:515.850000px;}
.xb7_c00308{left:518.100000px;}
.xd_c00308{left:519.150000px;}
.x139_c00308{left:524.550000px;}
.x105_c00308{left:529.350000px;}
.xf2_c00308{left:530.700000px;}
.xd7_c00308{left:533.400000px;}
.xe7_c00308{left:534.450000px;}
.xe0_c00308{left:536.400000px;}
.xa7_c00308{left:537.600000px;}
.x3d_c00308{left:539.400000px;}
.x1e_c00308{left:540.900000px;}
.x4c_c00308{left:542.100000px;}
.xb8_c00308{left:543.600000px;}
.x9e_c00308{left:544.650000px;}
.xd1_c00308{left:547.350000px;}
.xe_c00308{left:549.000000px;}
.xc3_c00308{left:555.900000px;}
.xa8_c00308{left:557.700000px;}
.x75_c00308{left:559.050000px;}
.x11a_c00308{left:560.550000px;}
.x132_c00308{left:563.250000px;}
.xee_c00308{left:564.750000px;}
.x114_c00308{left:566.400000px;}
.x3e_c00308{left:568.500000px;}
.xf_c00308{left:571.350000px;}
.x56_c00308{left:575.100000px;}
.x8b_c00308{left:576.600000px;}
.x2e_c00308{left:578.250000px;}
.xc4_c00308{left:581.850000px;}
.xd8_c00308{left:584.100000px;}
.xb9_c00308{left:586.500000px;}
.x64_c00308{left:588.150000px;}
.xfb_c00308{left:589.200000px;}
.x2f_c00308{left:593.700000px;}
.x81_c00308{left:595.200000px;}
.x106_c00308{left:596.400000px;}
.x8c_c00308{left:597.450000px;}
.xca_c00308{left:601.050000px;}
.x57_c00308{left:602.400000px;}
.x76_c00308{left:606.150000px;}
.xe8_c00308{left:607.200000px;}
.x136_c00308{left:608.850000px;}
.x127_c00308{left:610.050000px;}
.xa9_c00308{left:613.500000px;}
.x65_c00308{left:615.150000px;}
.xfc_c00308{left:616.200000px;}
.x6c_c00308{left:617.700000px;}
.x30_c00308{left:619.650000px;}
.x1f_c00308{left:621.600000px;}
.xd2_c00308{left:623.700000px;}
.x3f_c00308{left:625.350000px;}
.x8d_c00308{left:627.000000px;}
.x137_c00308{left:628.950000px;}
.x77_c00308{left:631.650000px;}
.x66_c00308{left:634.200000px;}
.xcb_c00308{left:635.250000px;}
.xe1_c00308{left:636.600000px;}
.xba_c00308{left:637.650000px;}
.x82_c00308{left:639.450000px;}
.xaa_c00308{left:641.550000px;}
.x6d_c00308{left:643.950000px;}
.x107_c00308{left:645.300000px;}
.x40_c00308{left:646.650000px;}
.x31_c00308{left:648.750000px;}
.xd3_c00308{left:651.000000px;}
.x4d_c00308{left:652.200000px;}
.xfd_c00308{left:653.250000px;}
.x10b_c00308{left:655.800000px;}
.x110_c00308{left:657.000000px;}
.x10_c00308{left:658.050000px;}
.xef_c00308{left:661.200000px;}
.x108_c00308{left:662.550000px;}
.x32_c00308{left:664.650000px;}
.x58_c00308{left:666.150000px;}
.x11b_c00308{left:669.600000px;}
.xc5_c00308{left:671.250000px;}
.x78_c00308{left:672.750000px;}
.x41_c00308{left:675.450000px;}
.xd9_c00308{left:681.000000px;}
.x8e_c00308{left:682.050000px;}
.xf3_c00308{left:685.650000px;}
.x4e_c00308{left:686.700000px;}
.x94_c00308{left:688.350000px;}
.x11_c00308{left:690.150000px;}
.x115_c00308{left:691.950000px;}
.x59_c00308{left:694.200000px;}
.x20_c00308{left:695.400000px;}
.x138_c00308{left:696.900000px;}
.xbb_c00308{left:699.600000px;}
.x33_c00308{left:701.400000px;}
.x95_c00308{left:705.600000px;}
.x83_c00308{left:707.850000px;}
.xcc_c00308{left:712.800000px;}
.x101_c00308{left:717.000000px;}
.xb1_c00308{left:718.500000px;}
.x12_c00308{left:720.750000px;}
.xf4_c00308{left:721.950000px;}
.x34_c00308{left:723.750000px;}
.x21_c00308{left:727.500000px;}
.x11c_c00308{left:731.250000px;}
.x5a_c00308{left:732.300000px;}
.xbc_c00308{left:734.100000px;}
.x67_c00308{left:735.450000px;}
.x111_c00308{left:739.200000px;}
.xc6_c00308{left:741.750000px;}
.xf0_c00308{left:742.950000px;}
.x96_c00308{left:744.450000px;}
.x79_c00308{left:745.500000px;}
.x13_c00308{left:748.050000px;}
.xbd_c00308{left:749.250000px;}
.x12c_c00308{left:750.450000px;}
.xe2_c00308{left:751.800000px;}
.xda_c00308{left:754.350000px;}
.x22_c00308{left:756.600000px;}
.xe9_c00308{left:757.650000px;}
.x6e_c00308{left:759.000000px;}
.x97_c00308{left:761.700000px;}
.x35_c00308{left:764.100000px;}
.x84_c00308{left:769.200000px;}
.x42_c00308{left:770.850000px;}
.xab_c00308{left:773.700000px;}
.x6f_c00308{left:776.700000px;}
.x14_c00308{left:779.700000px;}
.x5b_c00308{left:780.900000px;}
.x12d_c00308{left:782.550000px;}
.x125_c00308{left:787.350000px;}
.xf5_c00308{left:789.600000px;}
.x128_c00308{left:790.950000px;}
.xc7_c00308{left:793.200000px;}
.xbe_c00308{left:794.550000px;}
.xac_c00308{left:797.850000px;}
.xb2_c00308{left:799.800000px;}
.xe3_c00308{left:802.500000px;}
.x36_c00308{left:804.000000px;}
.xd4_c00308{left:806.400000px;}
.x102_c00308{left:812.400000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws1_c00308{word-spacing:-8.888889pt;}
.wsc_c00308{word-spacing:-7.474747pt;}
.ws0_c00308{word-spacing:-7.241379pt;}
.ws9_c00308{word-spacing:-5.497076pt;}
.ws2_c00308{word-spacing:-3.915344pt;}
.ws4_c00308{word-spacing:-1.403509pt;}
.ws3_c00308{word-spacing:-0.673401pt;}
.wsd_c00308{word-spacing:0.000000pt;}
.ws5_c00308{word-spacing:4.804805pt;}
.wsb_c00308{word-spacing:5.802469pt;}
.ws7_c00308{word-spacing:7.581699pt;}
.ws8_c00308{word-spacing:7.798742pt;}
.ws6_c00308{word-spacing:7.973856pt;}
.wsa_c00308{word-spacing:42.962963pt;}
.fs0_c00308{font-size:53.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y2d_c00308{bottom:138.533333pt;}
.y2c_c00308{bottom:156.133333pt;}
.y2b_c00308{bottom:173.733333pt;}
.y2a_c00308{bottom:191.200000pt;}
.y29_c00308{bottom:209.066667pt;}
.y28_c00308{bottom:226.933333pt;}
.y27_c00308{bottom:244.533333pt;}
.y26_c00308{bottom:262.133333pt;}
.y25_c00308{bottom:278.666667pt;}
.y24_c00308{bottom:297.866667pt;}
.y23_c00308{bottom:314.533333pt;}
.y22_c00308{bottom:332.800000pt;}
.y21_c00308{bottom:350.400000pt;}
.y20_c00308{bottom:368.266667pt;}
.y1f_c00308{bottom:385.866667pt;}
.y1e_c00308{bottom:403.466667pt;}
.y1d_c00308{bottom:420.800000pt;}
.y1c_c00308{bottom:439.066667pt;}
.y1b_c00308{bottom:456.666667pt;}
.y1a_c00308{bottom:474.266667pt;}
.y19_c00308{bottom:492.133333pt;}
.y18_c00308{bottom:509.733333pt;}
.y17_c00308{bottom:527.066667pt;}
.y16_c00308{bottom:544.666667pt;}
.y15_c00308{bottom:562.933333pt;}
.y14_c00308{bottom:580.266667pt;}
.y13_c00308{bottom:597.866667pt;}
.y12_c00308{bottom:615.733333pt;}
.y11_c00308{bottom:633.333333pt;}
.y10_c00308{bottom:651.200000pt;}
.yf_c00308{bottom:668.533333pt;}
.ye_c00308{bottom:686.266667pt;}
.yd_c00308{bottom:704.133333pt;}
.yc_c00308{bottom:722.000000pt;}
.yb_c00308{bottom:739.600000pt;}
.ya_c00308{bottom:757.200000pt;}
.y9_c00308{bottom:775.066667pt;}
.y8_c00308{bottom:792.666667pt;}
.y7_c00308{bottom:810.266667pt;}
.y6_c00308{bottom:828.133333pt;}
.y5_c00308{bottom:845.733333pt;}
.y4_c00308{bottom:863.466667pt;}
.y3_c00308{bottom:881.333333pt;}
.y2_c00308{bottom:898.933333pt;}
.y1_c00308{bottom:933.466667pt;}
.h2_c00308{height:53.333333pt;}
.h0_c00308{height:1037.119955pt;}
.h1_c00308{height:1037.333333pt;}
.w1_c00308{width:812.000000pt;}
.w0_c00308{width:812.159993pt;}
.x0_c00308{left:0.000000pt;}
.x98_c00308{left:134.000000pt;}
.x5c_c00308{left:135.066667pt;}
.x1_c00308{left:136.000000pt;}
.x15_c00308{left:150.666667pt;}
.x8f_c00308{left:153.200000pt;}
.xcd_c00308{left:156.000000pt;}
.x23_c00308{left:158.533333pt;}
.xf6_c00308{left:160.133333pt;}
.x7a_c00308{left:161.200000pt;}
.x9f_c00308{left:162.533333pt;}
.x3_c00308{left:163.466667pt;}
.xce_c00308{left:169.733333pt;}
.xc8_c00308{left:173.466667pt;}
.x16_c00308{left:176.266667pt;}
.x11f_c00308{left:178.933333pt;}
.x43_c00308{left:180.000000pt;}
.x70_c00308{left:180.933333pt;}
.xb3_c00308{left:182.400000pt;}
.x129_c00308{left:183.733333pt;}
.x37_c00308{left:184.933333pt;}
.xdb_c00308{left:186.666667pt;}
.x24_c00308{left:188.266667pt;}
.x5d_c00308{left:190.400000pt;}
.x17_c00308{left:192.000000pt;}
.x10c_c00308{left:193.333333pt;}
.x112_c00308{left:196.533333pt;}
.x44_c00308{left:197.866667pt;}
.xa0_c00308{left:199.066667pt;}
.xbf_c00308{left:201.333333pt;}
.x4f_c00308{left:202.400000pt;}
.xcf_c00308{left:203.333333pt;}
.x123_c00308{left:207.066667pt;}
.x85_c00308{left:208.400000pt;}
.x116_c00308{left:209.600000pt;}
.x103_c00308{left:214.266667pt;}
.x4_c00308{left:216.266667pt;}
.x71_c00308{left:217.466667pt;}
.x25_c00308{left:219.600000pt;}
.x124_c00308{left:220.533333pt;}
.xa1_c00308{left:221.466667pt;}
.x38_c00308{left:222.666667pt;}
.x5e_c00308{left:225.333333pt;}
.x133_c00308{left:226.933333pt;}
.x11d_c00308{left:227.866667pt;}
.x68_c00308{left:228.933333pt;}
.x12a_c00308{left:230.400000pt;}
.x90_c00308{left:231.866667pt;}
.x45_c00308{left:234.666667pt;}
.x26_c00308{left:237.466667pt;}
.xea_c00308{left:238.666667pt;}
.x121_c00308{left:239.600000pt;}
.xf1_c00308{left:241.333333pt;}
.x99_c00308{left:242.533333pt;}
.x72_c00308{left:243.733333pt;}
.x12f_c00308{left:244.800000pt;}
.x104_c00308{left:247.466667pt;}
.x5f_c00308{left:251.200000pt;}
.xf7_c00308{left:253.866667pt;}
.x86_c00308{left:256.133333pt;}
.x5_c00308{left:259.200000pt;}
.xeb_c00308{left:261.333333pt;}
.x27_c00308{left:263.066667pt;}
.x11e_c00308{left:264.000000pt;}
.x134_c00308{left:265.333333pt;}
.x46_c00308{left:266.400000pt;}
.x69_c00308{left:267.600000pt;}
.xa2_c00308{left:268.800000pt;}
.x60_c00308{left:270.133333pt;}
.x9a_c00308{left:272.000000pt;}
.x6_c00308{left:272.933333pt;}
.x7b_c00308{left:274.800000pt;}
.xdc_c00308{left:276.533333pt;}
.xd5_c00308{left:278.933333pt;}
.xfe_c00308{left:280.266667pt;}
.x18_c00308{left:283.466667pt;}
.x39_c00308{left:286.666667pt;}
.xf8_c00308{left:289.333333pt;}
.x28_c00308{left:290.933333pt;}
.x47_c00308{left:292.000000pt;}
.x50_c00308{left:294.000000pt;}
.x120_c00308{left:295.066667pt;}
.x109_c00308{left:296.000000pt;}
.x6a_c00308{left:297.066667pt;}
.x73_c00308{left:298.800000pt;}
.x7_c00308{left:300.133333pt;}
.xad_c00308{left:303.600000pt;}
.x19_c00308{left:306.133333pt;}
.xc0_c00308{left:308.000000pt;}
.x51_c00308{left:309.733333pt;}
.xdd_c00308{left:310.800000pt;}
.x117_c00308{left:312.666667pt;}
.xb4_c00308{left:313.600000pt;}
.x8_c00308{left:315.866667pt;}
.xf9_c00308{left:316.800000pt;}
.xae_c00308{left:318.666667pt;}
.x9b_c00308{left:320.666667pt;}
.x87_c00308{left:322.400000pt;}
.x12e_c00308{left:323.733333pt;}
.x10d_c00308{left:324.933333pt;}
.x29_c00308{left:325.866667pt;}
.x130_c00308{left:326.800000pt;}
.x3a_c00308{left:328.000000pt;}
.x91_c00308{left:329.466667pt;}
.xb5_c00308{left:331.200000pt;}
.x1a_c00308{left:333.600000pt;}
.x118_c00308{left:335.333333pt;}
.xa3_c00308{left:336.266667pt;}
.xec_c00308{left:339.066667pt;}
.x48_c00308{left:340.000000pt;}
.xaf_c00308{left:341.733333pt;}
.x7c_c00308{left:343.333333pt;}
.x2a_c00308{left:344.400000pt;}
.xde_c00308{left:346.933333pt;}
.x10e_c00308{left:348.000000pt;}
.x74_c00308{left:349.733333pt;}
.x9_c00308{left:350.800000pt;}
.x3b_c00308{left:354.933333pt;}
.x131_c00308{left:357.200000pt;}
.xd6_c00308{left:358.533333pt;}
.x122_c00308{left:359.866667pt;}
.x52_c00308{left:362.800000pt;}
.x119_c00308{left:363.866667pt;}
.xa_c00308{left:366.800000pt;}
.x61_c00308{left:368.000000pt;}
.xe4_c00308{left:369.333333pt;}
.xff_c00308{left:370.266667pt;}
.x126_c00308{left:371.733333pt;}
.x88_c00308{left:372.666667pt;}
.xfa_c00308{left:374.000000pt;}
.xd0_c00308{left:375.600000pt;}
.x7d_c00308{left:378.533333pt;}
.x9c_c00308{left:379.866667pt;}
.x92_c00308{left:380.933333pt;}
.xed_c00308{left:382.000000pt;}
.x62_c00308{left:383.333333pt;}
.x53_c00308{left:385.200000pt;}
.xe5_c00308{left:387.600000pt;}
.xb_c00308{left:389.466667pt;}
.x89_c00308{left:391.200000pt;}
.x2b_c00308{left:392.400000pt;}
.xc1_c00308{left:393.466667pt;}
.x7e_c00308{left:394.800000pt;}
.x49_c00308{left:395.733333pt;}
.xa4_c00308{left:397.600000pt;}
.x2_c00308{left:398.666667pt;}
.x135_c00308{left:401.733333pt;}
.x1b_c00308{left:402.666667pt;}
.xc9_c00308{left:405.600000pt;}
.x2c_c00308{left:407.466667pt;}
.x93_c00308{left:408.400000pt;}
.x10a_c00308{left:410.133333pt;}
.x4a_c00308{left:414.666667pt;}
.x7f_c00308{left:417.466667pt;}
.xc_c00308{left:421.733333pt;}
.x54_c00308{left:422.933333pt;}
.x9d_c00308{left:424.000000pt;}
.xa5_c00308{left:425.066667pt;}
.x3c_c00308{left:426.933333pt;}
.x113_c00308{left:428.000000pt;}
.x2d_c00308{left:429.200000pt;}
.xb6_c00308{left:430.133333pt;}
.x6b_c00308{left:431.466667pt;}
.x12b_c00308{left:432.933333pt;}
.x10f_c00308{left:434.666667pt;}
.x4b_c00308{left:435.733333pt;}
.x1c_c00308{left:436.933333pt;}
.xa6_c00308{left:438.533333pt;}
.xc2_c00308{left:439.466667pt;}
.x100_c00308{left:441.333333pt;}
.xe6_c00308{left:443.333333pt;}
.xdf_c00308{left:446.133333pt;}
.x55_c00308{left:447.866667pt;}
.x8a_c00308{left:451.066667pt;}
.xb0_c00308{left:453.733333pt;}
.x1d_c00308{left:455.200000pt;}
.x80_c00308{left:456.800000pt;}
.x63_c00308{left:458.533333pt;}
.xb7_c00308{left:460.533333pt;}
.xd_c00308{left:461.466667pt;}
.x139_c00308{left:466.266667pt;}
.x105_c00308{left:470.533333pt;}
.xf2_c00308{left:471.733333pt;}
.xd7_c00308{left:474.133333pt;}
.xe7_c00308{left:475.066667pt;}
.xe0_c00308{left:476.800000pt;}
.xa7_c00308{left:477.866667pt;}
.x3d_c00308{left:479.466667pt;}
.x1e_c00308{left:480.800000pt;}
.x4c_c00308{left:481.866667pt;}
.xb8_c00308{left:483.200000pt;}
.x9e_c00308{left:484.133333pt;}
.xd1_c00308{left:486.533333pt;}
.xe_c00308{left:488.000000pt;}
.xc3_c00308{left:494.133333pt;}
.xa8_c00308{left:495.733333pt;}
.x75_c00308{left:496.933333pt;}
.x11a_c00308{left:498.266667pt;}
.x132_c00308{left:500.666667pt;}
.xee_c00308{left:502.000000pt;}
.x114_c00308{left:503.466667pt;}
.x3e_c00308{left:505.333333pt;}
.xf_c00308{left:507.866667pt;}
.x56_c00308{left:511.200000pt;}
.x8b_c00308{left:512.533333pt;}
.x2e_c00308{left:514.000000pt;}
.xc4_c00308{left:517.200000pt;}
.xd8_c00308{left:519.200000pt;}
.xb9_c00308{left:521.333333pt;}
.x64_c00308{left:522.800000pt;}
.xfb_c00308{left:523.733333pt;}
.x2f_c00308{left:527.733333pt;}
.x81_c00308{left:529.066667pt;}
.x106_c00308{left:530.133333pt;}
.x8c_c00308{left:531.066667pt;}
.xca_c00308{left:534.266667pt;}
.x57_c00308{left:535.466667pt;}
.x76_c00308{left:538.800000pt;}
.xe8_c00308{left:539.733333pt;}
.x136_c00308{left:541.200000pt;}
.x127_c00308{left:542.266667pt;}
.xa9_c00308{left:545.333333pt;}
.x65_c00308{left:546.800000pt;}
.xfc_c00308{left:547.733333pt;}
.x6c_c00308{left:549.066667pt;}
.x30_c00308{left:550.800000pt;}
.x1f_c00308{left:552.533333pt;}
.xd2_c00308{left:554.400000pt;}
.x3f_c00308{left:555.866667pt;}
.x8d_c00308{left:557.333333pt;}
.x137_c00308{left:559.066667pt;}
.x77_c00308{left:561.466667pt;}
.x66_c00308{left:563.733333pt;}
.xcb_c00308{left:564.666667pt;}
.xe1_c00308{left:565.866667pt;}
.xba_c00308{left:566.800000pt;}
.x82_c00308{left:568.400000pt;}
.xaa_c00308{left:570.266667pt;}
.x6d_c00308{left:572.400000pt;}
.x107_c00308{left:573.600000pt;}
.x40_c00308{left:574.800000pt;}
.x31_c00308{left:576.666667pt;}
.xd3_c00308{left:578.666667pt;}
.x4d_c00308{left:579.733333pt;}
.xfd_c00308{left:580.666667pt;}
.x10b_c00308{left:582.933333pt;}
.x110_c00308{left:584.000000pt;}
.x10_c00308{left:584.933333pt;}
.xef_c00308{left:587.733333pt;}
.x108_c00308{left:588.933333pt;}
.x32_c00308{left:590.800000pt;}
.x58_c00308{left:592.133333pt;}
.x11b_c00308{left:595.200000pt;}
.xc5_c00308{left:596.666667pt;}
.x78_c00308{left:598.000000pt;}
.x41_c00308{left:600.400000pt;}
.xd9_c00308{left:605.333333pt;}
.x8e_c00308{left:606.266667pt;}
.xf3_c00308{left:609.466667pt;}
.x4e_c00308{left:610.400000pt;}
.x94_c00308{left:611.866667pt;}
.x11_c00308{left:613.466667pt;}
.x115_c00308{left:615.066667pt;}
.x59_c00308{left:617.066667pt;}
.x20_c00308{left:618.133333pt;}
.x138_c00308{left:619.466667pt;}
.xbb_c00308{left:621.866667pt;}
.x33_c00308{left:623.466667pt;}
.x95_c00308{left:627.200000pt;}
.x83_c00308{left:629.200000pt;}
.xcc_c00308{left:633.600000pt;}
.x101_c00308{left:637.333333pt;}
.xb1_c00308{left:638.666667pt;}
.x12_c00308{left:640.666667pt;}
.xf4_c00308{left:641.733333pt;}
.x34_c00308{left:643.333333pt;}
.x21_c00308{left:646.666667pt;}
.x11c_c00308{left:650.000000pt;}
.x5a_c00308{left:650.933333pt;}
.xbc_c00308{left:652.533333pt;}
.x67_c00308{left:653.733333pt;}
.x111_c00308{left:657.066667pt;}
.xc6_c00308{left:659.333333pt;}
.xf0_c00308{left:660.400000pt;}
.x96_c00308{left:661.733333pt;}
.x79_c00308{left:662.666667pt;}
.x13_c00308{left:664.933333pt;}
.xbd_c00308{left:666.000000pt;}
.x12c_c00308{left:667.066667pt;}
.xe2_c00308{left:668.266667pt;}
.xda_c00308{left:670.533333pt;}
.x22_c00308{left:672.533333pt;}
.xe9_c00308{left:673.466667pt;}
.x6e_c00308{left:674.666667pt;}
.x97_c00308{left:677.066667pt;}
.x35_c00308{left:679.200000pt;}
.x84_c00308{left:683.733333pt;}
.x42_c00308{left:685.200000pt;}
.xab_c00308{left:687.733333pt;}
.x6f_c00308{left:690.400000pt;}
.x14_c00308{left:693.066667pt;}
.x5b_c00308{left:694.133333pt;}
.x12d_c00308{left:695.600000pt;}
.x125_c00308{left:699.866667pt;}
.xf5_c00308{left:701.866667pt;}
.x128_c00308{left:703.066667pt;}
.xc7_c00308{left:705.066667pt;}
.xbe_c00308{left:706.266667pt;}
.xac_c00308{left:709.200000pt;}
.xb2_c00308{left:710.933333pt;}
.xe3_c00308{left:713.333333pt;}
.x36_c00308{left:714.666667pt;}
.xd4_c00308{left:716.800000pt;}
.x102_c00308{left:722.133333pt;}
}





/* 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_c00309 {
    display:none;
  }
  .loading-indicator_c00309.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00309 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_c00309 { 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_c00309" -> "#page-container .classname_c00309")
 */
.pf_c00309 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00309 { /* 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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00309 { /* 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_c00309 { /* 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_c00309 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00309 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00309 {overflow:visible;}
  }
}
.c_c00309 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00309 { /* 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_c00309:after { /* webkit #35443 */
  content: '';
}
.t_c00309:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00309 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 */
}
.__c00309 { /* 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_c00309 { /* info for Javascript */
  display:none;
}
.l_c00309 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00309 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00309 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00309: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_c00309 {
    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_c00309.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00309.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_c00309 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00309{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00309;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.000000;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;}
.m72_c00309{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00309{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m55_c00309{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00309{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m78_c00309{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00309{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m47_c00309{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m38_c00309{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m91_c00309{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m11_c00309{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00309{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00309{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m39_c00309{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00309{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m66_c00309{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m34_c00309{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00309{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00309{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00309{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00309{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m99_c00309{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m62_c00309{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m41_c00309{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m75_c00309{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m26_c00309{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00309{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00309{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m49_c00309{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m52_c00309{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00309{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00309{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m89_c00309{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m53_c00309{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m65_c00309{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00309{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m25_c00309{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m97_c00309{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00309{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m81_c00309{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m17_c00309{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m82_c00309{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00309{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m60_c00309{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m95_c00309{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m93_c00309{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m67_c00309{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00309{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m46_c00309{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m8_c00309{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m88_c00309{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m58_c00309{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb_c00309{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00309{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m56_c00309{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00309{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m73_c00309{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m33_c00309{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m64_c00309{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00309{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m57_c00309{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m83_c00309{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00309{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00309{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00309{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m19_c00309{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m40_c00309{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00309{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m71_c00309{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m87_c00309{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00309{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m15_c00309{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00309{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m50_c00309{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m61_c00309{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00309{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00309{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m77_c00309{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00309{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m69_c00309{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m14_c00309{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00309{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m35_c00309{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00309{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00309{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m32_c00309{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00309{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m96_c00309{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m86_c00309{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00309{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00309{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m94_c00309{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00309{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me_c00309{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m37_c00309{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m44_c00309{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00309{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00309{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m36_c00309{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00309{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m85_c00309{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00309{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);}
.m7f_c00309{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m84_c00309{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1_c00309{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m98_c00309{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m43_c00309{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13_c00309{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00309{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m42_c00309{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m59_c00309{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m9_c00309{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mf_c00309{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m79_c00309{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00309{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m80_c00309{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m51_c00309{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m92_c00309{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00309{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00309{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00309{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m70_c00309{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m45_c00309{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00309{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m76_c00309{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m90_c00309{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m68_c00309{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00309{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00309{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00309{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00309{vertical-align:0.000000px;}
.ls0_c00309{letter-spacing:0.000000px;}
.sc__c00309{text-shadow:none;}
.sc0_c00309{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__c00309{-webkit-text-stroke:0px transparent;}
.sc0_c00309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00309{word-spacing:-5.588235px;}
.wsc_c00309{word-spacing:-5.277778px;}
.ws9_c00309{word-spacing:-0.606061px;}
.ws4_c00309{word-spacing:-0.277778px;}
.ws5_c00309{word-spacing:0.000000px;}
.wsa_c00309{word-spacing:0.277778px;}
.wse_c00309{word-spacing:1.388889px;}
.wsb_c00309{word-spacing:2.727273px;}
.wsd_c00309{word-spacing:4.074941px;}
.ws2_c00309{word-spacing:5.000000px;}
.ws0_c00309{word-spacing:6.944444px;}
.wsf_c00309{word-spacing:7.500000px;}
.ws10_c00309{word-spacing:8.055556px;}
.ws8_c00309{word-spacing:8.472222px;}
.ws6_c00309{word-spacing:9.722222px;}
.ws1_c00309{word-spacing:10.735294px;}
.ws3_c00309{word-spacing:19.259259px;}
.fc0_c00309{color:transparent;}
.fs1_c00309{font-size:48.000000px;}
.fs0_c00309{font-size:60.000000px;}
.y0_c00309{bottom:0.000000px;}
.y2e_c00309{bottom:129.600000px;}
.y2d_c00309{bottom:150.000000px;}
.y2c_c00309{bottom:169.800000px;}
.y2b_c00309{bottom:189.300000px;}
.y2a_c00309{bottom:209.850000px;}
.y29_c00309{bottom:228.900000px;}
.y28_c00309{bottom:248.850000px;}
.y27_c00309{bottom:268.950000px;}
.y26_c00309{bottom:288.750000px;}
.y25_c00309{bottom:308.550000px;}
.y24_c00309{bottom:328.500000px;}
.y23_c00309{bottom:348.300000px;}
.y22_c00309{bottom:368.100000px;}
.y21_c00309{bottom:388.200000px;}
.y20_c00309{bottom:408.000000px;}
.y1f_c00309{bottom:427.800000px;}
.y1e_c00309{bottom:447.600000px;}
.y1d_c00309{bottom:467.400000px;}
.y1c_c00309{bottom:487.200000px;}
.y1b_c00309{bottom:507.300000px;}
.y1a_c00309{bottom:527.100000px;}
.y19_c00309{bottom:547.200000px;}
.y18_c00309{bottom:567.000000px;}
.y17_c00309{bottom:587.100000px;}
.y16_c00309{bottom:606.900000px;}
.y15_c00309{bottom:626.700000px;}
.y14_c00309{bottom:646.950000px;}
.y13_c00309{bottom:667.050000px;}
.y12_c00309{bottom:686.550000px;}
.y11_c00309{bottom:706.950000px;}
.y10_c00309{bottom:727.050000px;}
.yf_c00309{bottom:746.850000px;}
.ye_c00309{bottom:766.650000px;}
.yd_c00309{bottom:786.750000px;}
.yc_c00309{bottom:806.250000px;}
.yb_c00309{bottom:826.350000px;}
.ya_c00309{bottom:846.450000px;}
.y9_c00309{bottom:866.250000px;}
.y8_c00309{bottom:886.050000px;}
.y7_c00309{bottom:905.850000px;}
.y6_c00309{bottom:925.650000px;}
.y5_c00309{bottom:945.750000px;}
.y4_c00309{bottom:965.550000px;}
.y3_c00309{bottom:985.350000px;}
.y2_c00309{bottom:1005.150000px;}
.y1_c00309{bottom:1042.950000px;}
.h3_c00309{height:48.000000px;}
.h2_c00309{height:60.000000px;}
.h0_c00309{height:1166.759949px;}
.h1_c00309{height:1167.000000px;}
.w1_c00309{width:913.500000px;}
.w0_c00309{width:913.679993px;}
.x0_c00309{left:0.000000px;}
.x3_c00309{left:95.100000px;}
.x94_c00309{left:96.300000px;}
.xc2_c00309{left:97.800000px;}
.xf2_c00309{left:99.300000px;}
.x103_c00309{left:100.350000px;}
.x129_c00309{left:102.150000px;}
.x13d_c00309{left:103.500000px;}
.x18_c00309{left:108.750000px;}
.x36_c00309{left:115.650000px;}
.x10b_c00309{left:119.850000px;}
.x27_c00309{left:123.600000px;}
.x111_c00309{left:124.950000px;}
.x7d_c00309{left:127.350000px;}
.xd2_c00309{left:128.550000px;}
.x4_c00309{left:130.050000px;}
.x65_c00309{left:131.700000px;}
.x126_c00309{left:133.200000px;}
.x130_c00309{left:134.250000px;}
.x72_c00309{left:136.200000px;}
.xc3_c00309{left:138.150000px;}
.xfd_c00309{left:143.100000px;}
.x12a_c00309{left:144.600000px;}
.x28_c00309{left:145.950000px;}
.x120_c00309{left:147.000000px;}
.x104_c00309{left:148.200000px;}
.x56_c00309{left:150.600000px;}
.x9d_c00309{left:152.100000px;}
.x88_c00309{left:153.300000px;}
.x7e_c00309{left:155.400000px;}
.x5_c00309{left:157.050000px;}
.xb7_c00309{left:159.150000px;}
.x66_c00309{left:160.800000px;}
.xe9_c00309{left:163.050000px;}
.x19_c00309{left:165.300000px;}
.x9e_c00309{left:166.800000px;}
.x37_c00309{left:167.850000px;}
.x44_c00309{left:170.550000px;}
.x105_c00309{left:172.350000px;}
.x140_c00309{left:175.050000px;}
.xe5_c00309{left:176.100000px;}
.x6_c00309{left:179.700000px;}
.x95_c00309{left:181.350000px;}
.xa3_c00309{left:183.000000px;}
.x89_c00309{left:184.200000px;}
.x73_c00309{left:185.400000px;}
.x29_c00309{left:187.050000px;}
.xc4_c00309{left:188.250000px;}
.x7_c00309{left:190.500000px;}
.x11c_c00309{left:192.150000px;}
.xcb_c00309{left:194.100000px;}
.x57_c00309{left:195.300000px;}
.x1a_c00309{left:198.750000px;}
.x133_c00309{left:199.800000px;}
.xb8_c00309{left:200.850000px;}
.x38_c00309{left:202.050000px;}
.x96_c00309{left:204.450000px;}
.xc5_c00309{left:207.000000px;}
.x141_c00309{left:208.950000px;}
.xf9_c00309{left:210.300000px;}
.xda_c00309{left:212.400000px;}
.xb0_c00309{left:213.600000px;}
.xa4_c00309{left:215.700000px;}
.xdf_c00309{left:217.200000px;}
.x45_c00309{left:218.850000px;}
.x8_c00309{left:220.800000px;}
.x74_c00309{left:222.900000px;}
.x112_c00309{left:224.250000px;}
.xf3_c00309{left:226.650000px;}
.x9f_c00309{left:227.700000px;}
.x67_c00309{left:228.900000px;}
.x58_c00309{left:231.000000px;}
.x13a_c00309{left:232.800000px;}
.x10c_c00309{left:235.650000px;}
.x9_c00309{left:237.000000px;}
.x12b_c00309{left:238.200000px;}
.x134_c00309{left:240.450000px;}
.x121_c00309{left:242.850000px;}
.x7f_c00309{left:245.850000px;}
.x1b_c00309{left:248.100000px;}
.xa_c00309{left:249.300000px;}
.x2a_c00309{left:250.800000px;}
.x59_c00309{left:252.300000px;}
.x39_c00309{left:253.950000px;}
.x127_c00309{left:255.600000px;}
.xea_c00309{left:256.650000px;}
.x4f_c00309{left:258.000000px;}
.xe6_c00309{left:264.300000px;}
.x131_c00309{left:265.350000px;}
.x5a_c00309{left:267.450000px;}
.x135_c00309{left:268.950000px;}
.x2b_c00309{left:270.300000px;}
.x75_c00309{left:275.400000px;}
.x68_c00309{left:276.750000px;}
.xcc_c00309{left:277.950000px;}
.x106_c00309{left:281.400000px;}
.x80_c00309{left:283.950000px;}
.xbd_c00309{left:285.000000px;}
.xd3_c00309{left:286.200000px;}
.x2c_c00309{left:288.300000px;}
.x8a_c00309{left:291.600000px;}
.xfa_c00309{left:293.550000px;}
.xfe_c00309{left:296.100000px;}
.x97_c00309{left:298.050000px;}
.xb1_c00309{left:299.700000px;}
.x5b_c00309{left:301.350000px;}
.x136_c00309{left:303.150000px;}
.x3a_c00309{left:305.400000px;}
.xe0_c00309{left:308.700000px;}
.xb_c00309{left:311.550000px;}
.xd4_c00309{left:313.950000px;}
.x76_c00309{left:315.000000px;}
.xa5_c00309{left:316.500000px;}
.x122_c00309{left:319.800000px;}
.x5c_c00309{left:321.150000px;}
.x1c_c00309{left:324.000000px;}
.x118_c00309{left:325.050000px;}
.xf4_c00309{left:327.150000px;}
.x81_c00309{left:328.200000px;}
.x77_c00309{left:331.950000px;}
.x11d_c00309{left:333.000000px;}
.x3b_c00309{left:334.200000px;}
.x123_c00309{left:336.300000px;}
.xc6_c00309{left:337.650000px;}
.x2d_c00309{left:339.000000px;}
.x10d_c00309{left:340.050000px;}
.x1d_c00309{left:343.500000px;}
.x50_c00309{left:344.850000px;}
.x69_c00309{left:346.650000px;}
.x82_c00309{left:347.700000px;}
.x5d_c00309{left:349.200000px;}
.xa6_c00309{left:351.450000px;}
.x8b_c00309{left:352.800000px;}
.x78_c00309{left:353.850000px;}
.xc_c00309{left:355.050000px;}
.x46_c00309{left:357.000000px;}
.xa0_c00309{left:361.050000px;}
.x6a_c00309{left:366.750000px;}
.x98_c00309{left:368.250000px;}
.xc7_c00309{left:369.300000px;}
.xe1_c00309{left:370.950000px;}
.x1e_c00309{left:372.000000px;}
.xd5_c00309{left:373.350000px;}
.xbe_c00309{left:378.300000px;}
.xb2_c00309{left:379.350000px;}
.x47_c00309{left:381.900000px;}
.x5e_c00309{left:382.950000px;}
.x12c_c00309{left:384.600000px;}
.x3c_c00309{left:386.400000px;}
.x51_c00309{left:388.050000px;}
.x6b_c00309{left:390.450000px;}
.xfb_c00309{left:391.500000px;}
.xa1_c00309{left:392.700000px;}
.xa7_c00309{left:395.400000px;}
.xd_c00309{left:396.450000px;}
.x137_c00309{left:398.100000px;}
.x8c_c00309{left:400.350000px;}
.x99_c00309{left:401.700000px;}
.x52_c00309{left:403.950000px;}
.x107_c00309{left:406.200000px;}
.x124_c00309{left:407.550000px;}
.x2e_c00309{left:408.900000px;}
.x1_c00309{left:410.700000px;}
.x6c_c00309{left:412.350000px;}
.x5f_c00309{left:413.850000px;}
.x11e_c00309{left:415.800000px;}
.xeb_c00309{left:420.000000px;}
.xe_c00309{left:421.650000px;}
.xb3_c00309{left:423.600000px;}
.xf5_c00309{left:425.400000px;}
.x1f_c00309{left:426.750000px;}
.x2f_c00309{left:428.700000px;}
.x6d_c00309{left:430.050000px;}
.x113_c00309{left:431.550000px;}
.xa8_c00309{left:432.900000px;}
.xbf_c00309{left:435.900000px;}
.xdb_c00309{left:436.950000px;}
.xcd_c00309{left:440.850000px;}
.x8d_c00309{left:444.150000px;}
.x79_c00309{left:445.500000px;}
.x48_c00309{left:448.800000px;}
.x125_c00309{left:450.750000px;}
.xf6_c00309{left:452.400000px;}
.x3d_c00309{left:453.750000px;}
.x20_c00309{left:455.250000px;}
.x30_c00309{left:456.750000px;}
.xec_c00309{left:457.800000px;}
.x114_c00309{left:458.850000px;}
.xa9_c00309{left:460.950000px;}
.x83_c00309{left:463.950000px;}
.xc8_c00309{left:466.950000px;}
.xf_c00309{left:471.000000px;}
.xc0_c00309{left:472.650000px;}
.x6e_c00309{left:476.100000px;}
.x3e_c00309{left:478.200000px;}
.xe7_c00309{left:480.750000px;}
.x12d_c00309{left:482.250000px;}
.xfc_c00309{left:483.300000px;}
.xd6_c00309{left:485.400000px;}
.x13e_c00309{left:488.400000px;}
.x60_c00309{left:490.800000px;}
.x84_c00309{left:493.800000px;}
.xb9_c00309{left:495.450000px;}
.x6f_c00309{left:498.450000px;}
.xc1_c00309{left:500.700000px;}
.x31_c00309{left:502.050000px;}
.xb4_c00309{left:503.250000px;}
.x13b_c00309{left:504.300000px;}
.x10_c00309{left:506.250000px;}
.xf7_c00309{left:507.450000px;}
.x49_c00309{left:509.700000px;}
.x9a_c00309{left:511.500000px;}
.x21_c00309{left:513.150000px;}
.x10e_c00309{left:515.100000px;}
.x128_c00309{left:517.200000px;}
.x138_c00309{left:519.750000px;}
.xff_c00309{left:521.850000px;}
.xd7_c00309{left:522.900000px;}
.x61_c00309{left:523.950000px;}
.x85_c00309{left:525.900000px;}
.xba_c00309{left:527.850000px;}
.x115_c00309{left:529.800000px;}
.x8e_c00309{left:532.050000px;}
.xe8_c00309{left:538.050000px;}
.xaa_c00309{left:540.150000px;}
.x11_c00309{left:543.000000px;}
.x3f_c00309{left:545.100000px;}
.x139_c00309{left:547.050000px;}
.x32_c00309{left:548.100000px;}
.xe2_c00309{left:549.600000px;}
.xbb_c00309{left:550.950000px;}
.xce_c00309{left:553.950000px;}
.x53_c00309{left:555.150000px;}
.xed_c00309{left:557.850000px;}
.x70_c00309{left:558.900000px;}
.x12_c00309{left:559.950000px;}
.x108_c00309{left:566.250000px;}
.x4a_c00309{left:567.600000px;}
.xdc_c00309{left:568.950000px;}
.x8f_c00309{left:570.150000px;}
.x22_c00309{left:573.600000px;}
.x7a_c00309{left:575.100000px;}
.x116_c00309{left:578.100000px;}
.x9b_c00309{left:579.900000px;}
.xb5_c00309{left:583.500000px;}
.xab_c00309{left:585.150000px;}
.xa2_c00309{left:587.850000px;}
.x90_c00309{left:589.650000px;}
.x119_c00309{left:591.900000px;}
.x13_c00309{left:593.400000px;}
.xcf_c00309{left:597.450000px;}
.x33_c00309{left:600.600000px;}
.x12e_c00309{left:602.850000px;}
.xee_c00309{left:604.350000px;}
.x142_c00309{left:605.850000px;}
.x40_c00309{left:607.350000px;}
.xd8_c00309{left:609.600000px;}
.x11a_c00309{left:610.650000px;}
.x23_c00309{left:613.200000px;}
.x54_c00309{left:614.850000px;}
.xbc_c00309{left:617.550000px;}
.x10f_c00309{left:619.350000px;}
.x62_c00309{left:623.700000px;}
.x13f_c00309{left:624.750000px;}
.xdd_c00309{left:625.800000px;}
.x41_c00309{left:627.150000px;}
.x91_c00309{left:629.250000px;}
.x9c_c00309{left:630.900000px;}
.xac_c00309{left:631.950000px;}
.x14_c00309{left:633.300000px;}
.xc9_c00309{left:635.100000px;}
.x109_c00309{left:636.150000px;}
.x11b_c00309{left:637.950000px;}
.xef_c00309{left:639.600000px;}
.x63_c00309{left:641.400000px;}
.x42_c00309{left:644.400000px;}
.x7b_c00309{left:646.800000px;}
.x92_c00309{left:649.350000px;}
.xad_c00309{left:657.450000px;}
.x100_c00309{left:659.100000px;}
.x4b_c00309{left:662.700000px;}
.x86_c00309{left:668.100000px;}
.xd0_c00309{left:672.000000px;}
.x34_c00309{left:674.400000px;}
.x24_c00309{left:675.450000px;}
.x15_c00309{left:679.350000px;}
.x117_c00309{left:681.150000px;}
.x43_c00309{left:682.200000px;}
.xd9_c00309{left:684.450000px;}
.x143_c00309{left:686.850000px;}
.x64_c00309{left:688.500000px;}
.x55_c00309{left:690.600000px;}
.x10a_c00309{left:695.850000px;}
.x101_c00309{left:697.200000px;}
.x87_c00309{left:698.400000px;}
.xae_c00309{left:700.950000px;}
.x7c_c00309{left:705.900000px;}
.x25_c00309{left:707.100000px;}
.x4c_c00309{left:708.750000px;}
.xb6_c00309{left:709.800000px;}
.xf0_c00309{left:710.850000px;}
.xde_c00309{left:712.500000px;}
.xca_c00309{left:715.800000px;}
.xe3_c00309{left:716.850000px;}
.x11f_c00309{left:719.100000px;}
.xf8_c00309{left:721.050000px;}
.x110_c00309{left:722.250000px;}
.x26_c00309{left:724.050000px;}
.xd1_c00309{left:725.700000px;}
.x16_c00309{left:729.000000px;}
.x4d_c00309{left:731.400000px;}
.x102_c00309{left:733.200000px;}
.x2_c00309{left:735.000000px;}
.x93_c00309{left:737.850000px;}
.x13c_c00309{left:739.200000px;}
.xf1_c00309{left:740.400000px;}
.x35_c00309{left:741.750000px;}
.xaf_c00309{left:743.100000px;}
.x17_c00309{left:747.750000px;}
.x132_c00309{left:749.250000px;}
.x71_c00309{left:751.800000px;}
.xe4_c00309{left:753.150000px;}
.x4e_c00309{left:755.850000px;}
.x12f_c00309{left:757.200000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws7_c00309{word-spacing:-4.967320pt;}
.wsc_c00309{word-spacing:-4.691358pt;}
.ws9_c00309{word-spacing:-0.538721pt;}
.ws4_c00309{word-spacing:-0.246914pt;}
.ws5_c00309{word-spacing:0.000000pt;}
.wsa_c00309{word-spacing:0.246914pt;}
.wse_c00309{word-spacing:1.234568pt;}
.wsb_c00309{word-spacing:2.424242pt;}
.wsd_c00309{word-spacing:3.622170pt;}
.ws2_c00309{word-spacing:4.444444pt;}
.ws0_c00309{word-spacing:6.172840pt;}
.wsf_c00309{word-spacing:6.666667pt;}
.ws10_c00309{word-spacing:7.160494pt;}
.ws8_c00309{word-spacing:7.530864pt;}
.ws6_c00309{word-spacing:8.641975pt;}
.ws1_c00309{word-spacing:9.542484pt;}
.ws3_c00309{word-spacing:17.119342pt;}
.fs1_c00309{font-size:42.666667pt;}
.fs0_c00309{font-size:53.333333pt;}
.y0_c00309{bottom:0.000000pt;}
.y2e_c00309{bottom:115.200000pt;}
.y2d_c00309{bottom:133.333333pt;}
.y2c_c00309{bottom:150.933333pt;}
.y2b_c00309{bottom:168.266667pt;}
.y2a_c00309{bottom:186.533333pt;}
.y29_c00309{bottom:203.466667pt;}
.y28_c00309{bottom:221.200000pt;}
.y27_c00309{bottom:239.066667pt;}
.y26_c00309{bottom:256.666667pt;}
.y25_c00309{bottom:274.266667pt;}
.y24_c00309{bottom:292.000000pt;}
.y23_c00309{bottom:309.600000pt;}
.y22_c00309{bottom:327.200000pt;}
.y21_c00309{bottom:345.066667pt;}
.y20_c00309{bottom:362.666667pt;}
.y1f_c00309{bottom:380.266667pt;}
.y1e_c00309{bottom:397.866667pt;}
.y1d_c00309{bottom:415.466667pt;}
.y1c_c00309{bottom:433.066667pt;}
.y1b_c00309{bottom:450.933333pt;}
.y1a_c00309{bottom:468.533333pt;}
.y19_c00309{bottom:486.400000pt;}
.y18_c00309{bottom:504.000000pt;}
.y17_c00309{bottom:521.866667pt;}
.y16_c00309{bottom:539.466667pt;}
.y15_c00309{bottom:557.066667pt;}
.y14_c00309{bottom:575.066667pt;}
.y13_c00309{bottom:592.933333pt;}
.y12_c00309{bottom:610.266667pt;}
.y11_c00309{bottom:628.400000pt;}
.y10_c00309{bottom:646.266667pt;}
.yf_c00309{bottom:663.866667pt;}
.ye_c00309{bottom:681.466667pt;}
.yd_c00309{bottom:699.333333pt;}
.yc_c00309{bottom:716.666667pt;}
.yb_c00309{bottom:734.533333pt;}
.ya_c00309{bottom:752.400000pt;}
.y9_c00309{bottom:770.000000pt;}
.y8_c00309{bottom:787.600000pt;}
.y7_c00309{bottom:805.200000pt;}
.y6_c00309{bottom:822.800000pt;}
.y5_c00309{bottom:840.666667pt;}
.y4_c00309{bottom:858.266667pt;}
.y3_c00309{bottom:875.866667pt;}
.y2_c00309{bottom:893.466667pt;}
.y1_c00309{bottom:927.066667pt;}
.h3_c00309{height:42.666667pt;}
.h2_c00309{height:53.333333pt;}
.h0_c00309{height:1037.119955pt;}
.h1_c00309{height:1037.333333pt;}
.w1_c00309{width:812.000000pt;}
.w0_c00309{width:812.159993pt;}
.x0_c00309{left:0.000000pt;}
.x3_c00309{left:84.533333pt;}
.x94_c00309{left:85.600000pt;}
.xc2_c00309{left:86.933333pt;}
.xf2_c00309{left:88.266667pt;}
.x103_c00309{left:89.200000pt;}
.x129_c00309{left:90.800000pt;}
.x13d_c00309{left:92.000000pt;}
.x18_c00309{left:96.666667pt;}
.x36_c00309{left:102.800000pt;}
.x10b_c00309{left:106.533333pt;}
.x27_c00309{left:109.866667pt;}
.x111_c00309{left:111.066667pt;}
.x7d_c00309{left:113.200000pt;}
.xd2_c00309{left:114.266667pt;}
.x4_c00309{left:115.600000pt;}
.x65_c00309{left:117.066667pt;}
.x126_c00309{left:118.400000pt;}
.x130_c00309{left:119.333333pt;}
.x72_c00309{left:121.066667pt;}
.xc3_c00309{left:122.800000pt;}
.xfd_c00309{left:127.200000pt;}
.x12a_c00309{left:128.533333pt;}
.x28_c00309{left:129.733333pt;}
.x120_c00309{left:130.666667pt;}
.x104_c00309{left:131.733333pt;}
.x56_c00309{left:133.866667pt;}
.x9d_c00309{left:135.200000pt;}
.x88_c00309{left:136.266667pt;}
.x7e_c00309{left:138.133333pt;}
.x5_c00309{left:139.600000pt;}
.xb7_c00309{left:141.466667pt;}
.x66_c00309{left:142.933333pt;}
.xe9_c00309{left:144.933333pt;}
.x19_c00309{left:146.933333pt;}
.x9e_c00309{left:148.266667pt;}
.x37_c00309{left:149.200000pt;}
.x44_c00309{left:151.600000pt;}
.x105_c00309{left:153.200000pt;}
.x140_c00309{left:155.600000pt;}
.xe5_c00309{left:156.533333pt;}
.x6_c00309{left:159.733333pt;}
.x95_c00309{left:161.200000pt;}
.xa3_c00309{left:162.666667pt;}
.x89_c00309{left:163.733333pt;}
.x73_c00309{left:164.800000pt;}
.x29_c00309{left:166.266667pt;}
.xc4_c00309{left:167.333333pt;}
.x7_c00309{left:169.333333pt;}
.x11c_c00309{left:170.800000pt;}
.xcb_c00309{left:172.533333pt;}
.x57_c00309{left:173.600000pt;}
.x1a_c00309{left:176.666667pt;}
.x133_c00309{left:177.600000pt;}
.xb8_c00309{left:178.533333pt;}
.x38_c00309{left:179.600000pt;}
.x96_c00309{left:181.733333pt;}
.xc5_c00309{left:184.000000pt;}
.x141_c00309{left:185.733333pt;}
.xf9_c00309{left:186.933333pt;}
.xda_c00309{left:188.800000pt;}
.xb0_c00309{left:189.866667pt;}
.xa4_c00309{left:191.733333pt;}
.xdf_c00309{left:193.066667pt;}
.x45_c00309{left:194.533333pt;}
.x8_c00309{left:196.266667pt;}
.x74_c00309{left:198.133333pt;}
.x112_c00309{left:199.333333pt;}
.xf3_c00309{left:201.466667pt;}
.x9f_c00309{left:202.400000pt;}
.x67_c00309{left:203.466667pt;}
.x58_c00309{left:205.333333pt;}
.x13a_c00309{left:206.933333pt;}
.x10c_c00309{left:209.466667pt;}
.x9_c00309{left:210.666667pt;}
.x12b_c00309{left:211.733333pt;}
.x134_c00309{left:213.733333pt;}
.x121_c00309{left:215.866667pt;}
.x7f_c00309{left:218.533333pt;}
.x1b_c00309{left:220.533333pt;}
.xa_c00309{left:221.600000pt;}
.x2a_c00309{left:222.933333pt;}
.x59_c00309{left:224.266667pt;}
.x39_c00309{left:225.733333pt;}
.x127_c00309{left:227.200000pt;}
.xea_c00309{left:228.133333pt;}
.x4f_c00309{left:229.333333pt;}
.xe6_c00309{left:234.933333pt;}
.x131_c00309{left:235.866667pt;}
.x5a_c00309{left:237.733333pt;}
.x135_c00309{left:239.066667pt;}
.x2b_c00309{left:240.266667pt;}
.x75_c00309{left:244.800000pt;}
.x68_c00309{left:246.000000pt;}
.xcc_c00309{left:247.066667pt;}
.x106_c00309{left:250.133333pt;}
.x80_c00309{left:252.400000pt;}
.xbd_c00309{left:253.333333pt;}
.xd3_c00309{left:254.400000pt;}
.x2c_c00309{left:256.266667pt;}
.x8a_c00309{left:259.200000pt;}
.xfa_c00309{left:260.933333pt;}
.xfe_c00309{left:263.200000pt;}
.x97_c00309{left:264.933333pt;}
.xb1_c00309{left:266.400000pt;}
.x5b_c00309{left:267.866667pt;}
.x136_c00309{left:269.466667pt;}
.x3a_c00309{left:271.466667pt;}
.xe0_c00309{left:274.400000pt;}
.xb_c00309{left:276.933333pt;}
.xd4_c00309{left:279.066667pt;}
.x76_c00309{left:280.000000pt;}
.xa5_c00309{left:281.333333pt;}
.x122_c00309{left:284.266667pt;}
.x5c_c00309{left:285.466667pt;}
.x1c_c00309{left:288.000000pt;}
.x118_c00309{left:288.933333pt;}
.xf4_c00309{left:290.800000pt;}
.x81_c00309{left:291.733333pt;}
.x77_c00309{left:295.066667pt;}
.x11d_c00309{left:296.000000pt;}
.x3b_c00309{left:297.066667pt;}
.x123_c00309{left:298.933333pt;}
.xc6_c00309{left:300.133333pt;}
.x2d_c00309{left:301.333333pt;}
.x10d_c00309{left:302.266667pt;}
.x1d_c00309{left:305.333333pt;}
.x50_c00309{left:306.533333pt;}
.x69_c00309{left:308.133333pt;}
.x82_c00309{left:309.066667pt;}
.x5d_c00309{left:310.400000pt;}
.xa6_c00309{left:312.400000pt;}
.x8b_c00309{left:313.600000pt;}
.x78_c00309{left:314.533333pt;}
.xc_c00309{left:315.600000pt;}
.x46_c00309{left:317.333333pt;}
.xa0_c00309{left:320.933333pt;}
.x6a_c00309{left:326.000000pt;}
.x98_c00309{left:327.333333pt;}
.xc7_c00309{left:328.266667pt;}
.xe1_c00309{left:329.733333pt;}
.x1e_c00309{left:330.666667pt;}
.xd5_c00309{left:331.866667pt;}
.xbe_c00309{left:336.266667pt;}
.xb2_c00309{left:337.200000pt;}
.x47_c00309{left:339.466667pt;}
.x5e_c00309{left:340.400000pt;}
.x12c_c00309{left:341.866667pt;}
.x3c_c00309{left:343.466667pt;}
.x51_c00309{left:344.933333pt;}
.x6b_c00309{left:347.066667pt;}
.xfb_c00309{left:348.000000pt;}
.xa1_c00309{left:349.066667pt;}
.xa7_c00309{left:351.466667pt;}
.xd_c00309{left:352.400000pt;}
.x137_c00309{left:353.866667pt;}
.x8c_c00309{left:355.866667pt;}
.x99_c00309{left:357.066667pt;}
.x52_c00309{left:359.066667pt;}
.x107_c00309{left:361.066667pt;}
.x124_c00309{left:362.266667pt;}
.x2e_c00309{left:363.466667pt;}
.x1_c00309{left:365.066667pt;}
.x6c_c00309{left:366.533333pt;}
.x5f_c00309{left:367.866667pt;}
.x11e_c00309{left:369.600000pt;}
.xeb_c00309{left:373.333333pt;}
.xe_c00309{left:374.800000pt;}
.xb3_c00309{left:376.533333pt;}
.xf5_c00309{left:378.133333pt;}
.x1f_c00309{left:379.333333pt;}
.x2f_c00309{left:381.066667pt;}
.x6d_c00309{left:382.266667pt;}
.x113_c00309{left:383.600000pt;}
.xa8_c00309{left:384.800000pt;}
.xbf_c00309{left:387.466667pt;}
.xdb_c00309{left:388.400000pt;}
.xcd_c00309{left:391.866667pt;}
.x8d_c00309{left:394.800000pt;}
.x79_c00309{left:396.000000pt;}
.x48_c00309{left:398.933333pt;}
.x125_c00309{left:400.666667pt;}
.xf6_c00309{left:402.133333pt;}
.x3d_c00309{left:403.333333pt;}
.x20_c00309{left:404.666667pt;}
.x30_c00309{left:406.000000pt;}
.xec_c00309{left:406.933333pt;}
.x114_c00309{left:407.866667pt;}
.xa9_c00309{left:409.733333pt;}
.x83_c00309{left:412.400000pt;}
.xc8_c00309{left:415.066667pt;}
.xf_c00309{left:418.666667pt;}
.xc0_c00309{left:420.133333pt;}
.x6e_c00309{left:423.200000pt;}
.x3e_c00309{left:425.066667pt;}
.xe7_c00309{left:427.333333pt;}
.x12d_c00309{left:428.666667pt;}
.xfc_c00309{left:429.600000pt;}
.xd6_c00309{left:431.466667pt;}
.x13e_c00309{left:434.133333pt;}
.x60_c00309{left:436.266667pt;}
.x84_c00309{left:438.933333pt;}
.xb9_c00309{left:440.400000pt;}
.x6f_c00309{left:443.066667pt;}
.xc1_c00309{left:445.066667pt;}
.x31_c00309{left:446.266667pt;}
.xb4_c00309{left:447.333333pt;}
.x13b_c00309{left:448.266667pt;}
.x10_c00309{left:450.000000pt;}
.xf7_c00309{left:451.066667pt;}
.x49_c00309{left:453.066667pt;}
.x9a_c00309{left:454.666667pt;}
.x21_c00309{left:456.133333pt;}
.x10e_c00309{left:457.866667pt;}
.x128_c00309{left:459.733333pt;}
.x138_c00309{left:462.000000pt;}
.xff_c00309{left:463.866667pt;}
.xd7_c00309{left:464.800000pt;}
.x61_c00309{left:465.733333pt;}
.x85_c00309{left:467.466667pt;}
.xba_c00309{left:469.200000pt;}
.x115_c00309{left:470.933333pt;}
.x8e_c00309{left:472.933333pt;}
.xe8_c00309{left:478.266667pt;}
.xaa_c00309{left:480.133333pt;}
.x11_c00309{left:482.666667pt;}
.x3f_c00309{left:484.533333pt;}
.x139_c00309{left:486.266667pt;}
.x32_c00309{left:487.200000pt;}
.xe2_c00309{left:488.533333pt;}
.xbb_c00309{left:489.733333pt;}
.xce_c00309{left:492.400000pt;}
.x53_c00309{left:493.466667pt;}
.xed_c00309{left:495.866667pt;}
.x70_c00309{left:496.800000pt;}
.x12_c00309{left:497.733333pt;}
.x108_c00309{left:503.333333pt;}
.x4a_c00309{left:504.533333pt;}
.xdc_c00309{left:505.733333pt;}
.x8f_c00309{left:506.800000pt;}
.x22_c00309{left:509.866667pt;}
.x7a_c00309{left:511.200000pt;}
.x116_c00309{left:513.866667pt;}
.x9b_c00309{left:515.466667pt;}
.xb5_c00309{left:518.666667pt;}
.xab_c00309{left:520.133333pt;}
.xa2_c00309{left:522.533333pt;}
.x90_c00309{left:524.133333pt;}
.x119_c00309{left:526.133333pt;}
.x13_c00309{left:527.466667pt;}
.xcf_c00309{left:531.066667pt;}
.x33_c00309{left:533.866667pt;}
.x12e_c00309{left:535.866667pt;}
.xee_c00309{left:537.200000pt;}
.x142_c00309{left:538.533333pt;}
.x40_c00309{left:539.866667pt;}
.xd8_c00309{left:541.866667pt;}
.x11a_c00309{left:542.800000pt;}
.x23_c00309{left:545.066667pt;}
.x54_c00309{left:546.533333pt;}
.xbc_c00309{left:548.933333pt;}
.x10f_c00309{left:550.533333pt;}
.x62_c00309{left:554.400000pt;}
.x13f_c00309{left:555.333333pt;}
.xdd_c00309{left:556.266667pt;}
.x41_c00309{left:557.466667pt;}
.x91_c00309{left:559.333333pt;}
.x9c_c00309{left:560.800000pt;}
.xac_c00309{left:561.733333pt;}
.x14_c00309{left:562.933333pt;}
.xc9_c00309{left:564.533333pt;}
.x109_c00309{left:565.466667pt;}
.x11b_c00309{left:567.066667pt;}
.xef_c00309{left:568.533333pt;}
.x63_c00309{left:570.133333pt;}
.x42_c00309{left:572.800000pt;}
.x7b_c00309{left:574.933333pt;}
.x92_c00309{left:577.200000pt;}
.xad_c00309{left:584.400000pt;}
.x100_c00309{left:585.866667pt;}
.x4b_c00309{left:589.066667pt;}
.x86_c00309{left:593.866667pt;}
.xd0_c00309{left:597.333333pt;}
.x34_c00309{left:599.466667pt;}
.x24_c00309{left:600.400000pt;}
.x15_c00309{left:603.866667pt;}
.x117_c00309{left:605.466667pt;}
.x43_c00309{left:606.400000pt;}
.xd9_c00309{left:608.400000pt;}
.x143_c00309{left:610.533333pt;}
.x64_c00309{left:612.000000pt;}
.x55_c00309{left:613.866667pt;}
.x10a_c00309{left:618.533333pt;}
.x101_c00309{left:619.733333pt;}
.x87_c00309{left:620.800000pt;}
.xae_c00309{left:623.066667pt;}
.x7c_c00309{left:627.466667pt;}
.x25_c00309{left:628.533333pt;}
.x4c_c00309{left:630.000000pt;}
.xb6_c00309{left:630.933333pt;}
.xf0_c00309{left:631.866667pt;}
.xde_c00309{left:633.333333pt;}
.xca_c00309{left:636.266667pt;}
.xe3_c00309{left:637.200000pt;}
.x11f_c00309{left:639.200000pt;}
.xf8_c00309{left:640.933333pt;}
.x110_c00309{left:642.000000pt;}
.x26_c00309{left:643.600000pt;}
.xd1_c00309{left:645.066667pt;}
.x16_c00309{left:648.000000pt;}
.x4d_c00309{left:650.133333pt;}
.x102_c00309{left:651.733333pt;}
.x2_c00309{left:653.333333pt;}
.x93_c00309{left:655.866667pt;}
.x13c_c00309{left:657.066667pt;}
.xf1_c00309{left:658.133333pt;}
.x35_c00309{left:659.333333pt;}
.xaf_c00309{left:660.533333pt;}
.x17_c00309{left:664.666667pt;}
.x132_c00309{left:666.000000pt;}
.x71_c00309{left:668.266667pt;}
.xe4_c00309{left:669.466667pt;}
.x4e_c00309{left:671.866667pt;}
.x12f_c00309{left:673.066667pt;}
}





/* 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_c00310 {
    display:none;
  }
  .loading-indicator_c00310.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00310 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_c00310 { 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_c00310" -> "#page-container .classname_c00310")
 */
.pf_c00310 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00310 { /* 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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00310 { /* 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_c00310 { /* 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_c00310 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00310 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00310 {overflow:visible;}
  }
}
.c_c00310 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00310 { /* 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_c00310:after { /* webkit #35443 */
  content: '';
}
.t_c00310:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00310 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 */
}
.__c00310 { /* 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_c00310 { /* info for Javascript */
  display:none;
}
.l_c00310 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00310 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00310 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00310: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_c00310 {
    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_c00310.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00310.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_c00310 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00310{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00310;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.000000;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;}
.m4f_c00310{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00310{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m56_c00310{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m99_c00310{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m35_c00310{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00310{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m51_c00310{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m32_c00310{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m70_c00310{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00310{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m44_c00310{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00310{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mf_c00310{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00310{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00310{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00310{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00310{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00310{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2_c00310{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m98_c00310{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m37_c00310{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m73_c00310{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00310{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6_c00310{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m65_c00310{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m64_c00310{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m13_c00310{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00310{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m55_c00310{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00310{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00310{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m46_c00310{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00310{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00310{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00310{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00310{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00310{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m45_c00310{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m10_c00310{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m97_c00310{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00310{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m59_c00310{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m18_c00310{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00310{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m84_c00310{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m81_c00310{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00310{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00310{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m69_c00310{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00310{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m39_c00310{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00310{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m20_c00310{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00310{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00310{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00310{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00310{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00310{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00310{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00310{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00310{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m53_c00310{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m76_c00310{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m71_c00310{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m49_c00310{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m43_c00310{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00310{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12_c00310{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m14_c00310{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23_c00310{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00310{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m77_c00310{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md_c00310{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9_c00310{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m34_c00310{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00310{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00310{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00310{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m28_c00310{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m85_c00310{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00310{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00310{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m88_c00310{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m67_c00310{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m17_c00310{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00310{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m79_c00310{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29_c00310{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m40_c00310{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00310{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m72_c00310{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00310{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m74_c00310{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m11_c00310{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m36_c00310{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m25_c00310{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8_c00310{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m90_c00310{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m86_c00310{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m21_c00310{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m62_c00310{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00310{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m38_c00310{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m78_c00310{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m52_c00310{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m93_c00310{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m31_c00310{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m54_c00310{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00310{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00310{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m16_c00310{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m80_c00310{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5_c00310{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m33_c00310{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc_c00310{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c00310{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00310{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mb_c00310{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m41_c00310{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00310{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m26_c00310{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c00310{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00310{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00310{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00310{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m24_c00310{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m63_c00310{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m60_c00310{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m7_c00310{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00310{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m22_c00310{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m57_c00310{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00310{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.ma_c00310{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m83_c00310{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m58_c00310{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00310{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m19_c00310{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m95_c00310{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00310{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m89_c00310{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m75_c00310{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m30_c00310{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00310{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m50_c00310{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00310{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m27_c00310{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00310{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m66_c00310{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m68_c00310{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00310{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00310{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00310{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m92_c00310{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00310{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m87_c00310{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00310{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00310{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00310{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m61_c00310{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m94_c00310{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m82_c00310{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00310{vertical-align:0.000000px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{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__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00310{word-spacing:-4.932515px;}
.ws7_c00310{word-spacing:-3.284454px;}
.ws4_c00310{word-spacing:-1.625000px;}
.ws0_c00310{word-spacing:-1.240869px;}
.ws9_c00310{word-spacing:-0.653495px;}
.wsb_c00310{word-spacing:0.000000px;}
.ws1_c00310{word-spacing:0.729904px;}
.ws6_c00310{word-spacing:2.963616px;}
.ws3_c00310{word-spacing:5.866732px;}
.ws2_c00310{word-spacing:13.625000px;}
.ws8_c00310{word-spacing:15.272727px;}
.wsa_c00310{word-spacing:18.035370px;}
.fc0_c00310{color:transparent;}
.fs0_c00310{font-size:54.000000px;}
.y0_c00310{bottom:0.000000px;}
.y2b_c00310{bottom:159.150000px;}
.y2a_c00310{bottom:175.350000px;}
.y29_c00310{bottom:222.450000px;}
.y28_c00310{bottom:242.250000px;}
.y27_c00310{bottom:262.200000px;}
.y26_c00310{bottom:281.700000px;}
.y25_c00310{bottom:301.800000px;}
.y24_c00310{bottom:321.600000px;}
.y23_c00310{bottom:341.400000px;}
.y22_c00310{bottom:361.200000px;}
.y21_c00310{bottom:381.000000px;}
.y20_c00310{bottom:400.800000px;}
.y1f_c00310{bottom:420.900000px;}
.y1e_c00310{bottom:440.700000px;}
.y1d_c00310{bottom:478.800000px;}
.y1c_c00310{bottom:498.600000px;}
.y1b_c00310{bottom:518.400000px;}
.y1a_c00310{bottom:538.500000px;}
.y19_c00310{bottom:558.600000px;}
.y18_c00310{bottom:578.100000px;}
.y17_c00310{bottom:598.200000px;}
.y16_c00310{bottom:617.700000px;}
.y15_c00310{bottom:638.100000px;}
.y14_c00310{bottom:658.200000px;}
.y13_c00310{bottom:678.300000px;}
.y12_c00310{bottom:698.100000px;}
.y11_c00310{bottom:717.900000px;}
.y10_c00310{bottom:737.700000px;}
.yf_c00310{bottom:758.250000px;}
.ye_c00310{bottom:777.750000px;}
.yd_c00310{bottom:797.850000px;}
.yc_c00310{bottom:817.650000px;}
.yb_c00310{bottom:837.450000px;}
.ya_c00310{bottom:857.250000px;}
.y9_c00310{bottom:877.050000px;}
.y8_c00310{bottom:897.150000px;}
.y7_c00310{bottom:916.650000px;}
.y6_c00310{bottom:936.750000px;}
.y5_c00310{bottom:956.850000px;}
.y4_c00310{bottom:976.650000px;}
.y3_c00310{bottom:996.450000px;}
.y2_c00310{bottom:1016.250000px;}
.y1_c00310{bottom:1055.100000px;}
.h2_c00310{height:54.000000px;}
.h0_c00310{height:1166.759949px;}
.h1_c00310{height:1167.000000px;}
.w1_c00310{width:913.500000px;}
.w0_c00310{width:913.679993px;}
.x0_c00310{left:0.000000px;}
.x124_c00310{left:143.250000px;}
.x111_c00310{left:144.300000px;}
.xfd_c00310{left:145.350000px;}
.xd6_c00310{left:147.300000px;}
.x3d_c00310{left:148.350000px;}
.x9c_c00310{left:150.600000px;}
.x60_c00310{left:151.650000px;}
.x52_c00310{left:152.700000px;}
.x3_c00310{left:153.750000px;}
.x1_c00310{left:155.850000px;}
.x133_c00310{left:161.250000px;}
.x89_c00310{left:162.750000px;}
.x125_c00310{left:164.850000px;}
.x4_c00310{left:168.900000px;}
.x104_c00310{left:172.950000px;}
.x14_c00310{left:174.300000px;}
.x49_c00310{left:176.400000px;}
.xc4_c00310{left:179.700000px;}
.x75_c00310{left:181.650000px;}
.x20_c00310{left:185.100000px;}
.xea_c00310{left:187.950000px;}
.x11c_c00310{left:189.300000px;}
.xf9_c00310{left:192.450000px;}
.x4a_c00310{left:194.400000px;}
.xfe_c00310{left:195.750000px;}
.xd7_c00310{left:196.950000px;}
.x6b_c00310{left:200.100000px;}
.x15_c00310{left:202.050000px;}
.x61_c00310{left:203.850000px;}
.x118_c00310{left:204.900000px;}
.x7f_c00310{left:207.300000px;}
.x3e_c00310{left:209.850000px;}
.xc5_c00310{left:212.100000px;}
.xfa_c00310{left:213.750000px;}
.x6c_c00310{left:214.800000px;}
.x21_c00310{left:216.000000px;}
.xbf_c00310{left:217.950000px;}
.x30_c00310{left:219.750000px;}
.x11f_c00310{left:221.100000px;}
.x5_c00310{left:222.600000px;}
.xab_c00310{left:224.100000px;}
.x53_c00310{left:225.150000px;}
.x10b_c00310{left:227.400000px;}
.x9d_c00310{left:229.500000px;}
.xff_c00310{left:231.450000px;}
.x119_c00310{left:232.800000px;}
.x105_c00310{left:234.900000px;}
.x62_c00310{left:235.950000px;}
.xa3_c00310{left:237.150000px;}
.x16_c00310{left:239.550000px;}
.x8f_c00310{left:240.900000px;}
.xd0_c00310{left:243.000000px;}
.x22_c00310{left:245.100000px;}
.x12d_c00310{left:246.900000px;}
.x136_c00310{left:249.450000px;}
.x6_c00310{left:250.650000px;}
.x106_c00310{left:253.200000px;}
.xb4_c00310{left:254.550000px;}
.x10c_c00310{left:255.900000px;}
.xc6_c00310{left:258.150000px;}
.x90_c00310{left:259.950000px;}
.x3f_c00310{left:261.000000px;}
.xf2_c00310{left:264.900000px;}
.x54_c00310{left:268.350000px;}
.xe4_c00310{left:270.300000px;}
.x63_c00310{left:272.700000px;}
.xc0_c00310{left:273.750000px;}
.xa4_c00310{left:274.950000px;}
.x76_c00310{left:276.000000px;}
.x6d_c00310{left:277.800000px;}
.xdd_c00310{left:280.200000px;}
.xd8_c00310{left:282.600000px;}
.x4b_c00310{left:283.650000px;}
.x40_c00310{left:286.950000px;}
.x55_c00310{left:288.450000px;}
.x23_c00310{left:289.800000px;}
.x112_c00310{left:291.300000px;}
.x64_c00310{left:295.350000px;}
.x91_c00310{left:297.000000px;}
.x17_c00310{left:300.750000px;}
.x7_c00310{left:302.550000px;}
.x80_c00310{left:303.900000px;}
.x9e_c00310{left:305.850000px;}
.xc7_c00310{left:308.250000px;}
.x11a_c00310{left:312.000000px;}
.x4c_c00310{left:313.200000px;}
.x31_c00310{left:315.600000px;}
.xc1_c00310{left:317.250000px;}
.x8_c00310{left:320.250000px;}
.xde_c00310{left:322.650000px;}
.xac_c00310{left:323.850000px;}
.xc8_c00310{left:325.950000px;}
.xb5_c00310{left:327.900000px;}
.xeb_c00310{left:331.950000px;}
.x126_c00310{left:333.000000px;}
.x56_c00310{left:334.500000px;}
.xd1_c00310{left:335.550000px;}
.xa5_c00310{left:337.200000px;}
.x77_c00310{left:338.700000px;}
.x11b_c00310{left:340.050000px;}
.x8a_c00310{left:343.500000px;}
.xe5_c00310{left:345.900000px;}
.x6e_c00310{left:351.600000px;}
.x18_c00310{left:352.950000px;}
.x24_c00310{left:357.900000px;}
.xec_c00310{left:359.250000px;}
.x78_c00310{left:360.300000px;}
.x107_c00310{left:362.700000px;}
.xe6_c00310{left:364.950000px;}
.x9_c00310{left:366.750000px;}
.x32_c00310{left:368.550000px;}
.x100_c00310{left:370.500000px;}
.x92_c00310{left:372.900000px;}
.x120_c00310{left:374.100000px;}
.x12e_c00310{left:375.750000px;}
.x81_c00310{left:377.700000px;}
.x8b_c00310{left:379.500000px;}
.xb6_c00310{left:380.850000px;}
.x57_c00310{left:384.150000px;}
.x41_c00310{left:386.250000px;}
.x113_c00310{left:388.050000px;}
.xba_c00310{left:389.250000px;}
.x19_c00310{left:390.450000px;}
.xdf_c00310{left:391.800000px;}
.x33_c00310{left:394.050000px;}
.x79_c00310{left:396.300000px;}
.xa_c00310{left:400.650000px;}
.xe7_c00310{left:402.000000px;}
.x93_c00310{left:404.250000px;}
.x65_c00310{left:405.750000px;}
.x25_c00310{left:407.250000px;}
.x9f_c00310{left:408.750000px;}
.x121_c00310{left:410.850000px;}
.x108_c00310{left:413.850000px;}
.xc2_c00310{left:416.700000px;}
.xad_c00310{left:420.000000px;}
.x58_c00310{left:421.200000px;}
.x42_c00310{left:423.000000px;}
.x1a_c00310{left:425.700000px;}
.x114_c00310{left:432.000000px;}
.xd9_c00310{left:435.600000px;}
.x129_c00310{left:437.250000px;}
.x4d_c00310{left:440.250000px;}
.x43_c00310{left:442.800000px;}
.x7a_c00310{left:444.150000px;}
.x94_c00310{left:445.650000px;}
.xed_c00310{left:451.050000px;}
.x2_c00310{left:452.850000px;}
.xf3_c00310{left:453.900000px;}
.x66_c00310{left:456.450000px;}
.x26_c00310{left:459.450000px;}
.xa6_c00310{left:460.650000px;}
.x7b_c00310{left:463.650000px;}
.x44_c00310{left:465.150000px;}
.xb_c00310{left:466.500000px;}
.x115_c00310{left:467.700000px;}
.x82_c00310{left:469.500000px;}
.xae_c00310{left:471.150000px;}
.xf4_c00310{left:472.650000px;}
.x1b_c00310{left:475.050000px;}
.x34_c00310{left:476.850000px;}
.xc9_c00310{left:478.650000px;}
.x95_c00310{left:481.350000px;}
.x137_c00310{left:484.500000px;}
.xbb_c00310{left:486.900000px;}
.x12a_c00310{left:490.500000px;}
.x67_c00310{left:493.500000px;}
.xc3_c00310{left:496.200000px;}
.x10d_c00310{left:497.400000px;}
.x96_c00310{left:499.050000px;}
.xda_c00310{left:500.850000px;}
.x59_c00310{left:503.550000px;}
.xc_c00310{left:505.350000px;}
.xaf_c00310{left:506.400000px;}
.x12f_c00310{left:508.200000px;}
.x116_c00310{left:511.950000px;}
.x97_c00310{left:514.200000px;}
.xbc_c00310{left:515.700000px;}
.xca_c00310{left:517.500000px;}
.x6f_c00310{left:520.350000px;}
.x8c_c00310{left:522.750000px;}
.x5a_c00310{left:524.850000px;}
.xb0_c00310{left:528.750000px;}
.xee_c00310{left:530.550000px;}
.x101_c00310{left:532.500000px;}
.x1c_c00310{left:534.000000px;}
.xb7_c00310{left:535.650000px;}
.x27_c00310{left:541.200000px;}
.xd_c00310{left:543.150000px;}
.x4e_c00310{left:547.500000px;}
.xe0_c00310{left:550.200000px;}
.xcb_c00310{left:552.000000px;}
.xdb_c00310{left:553.350000px;}
.x83_c00310{left:554.550000px;}
.xa0_c00310{left:556.200000px;}
.xbd_c00310{left:559.200000px;}
.xf5_c00310{left:562.350000px;}
.xfb_c00310{left:564.000000px;}
.x130_c00310{left:566.250000px;}
.xef_c00310{left:567.300000px;}
.x28_c00310{left:568.950000px;}
.x134_c00310{left:572.850000px;}
.xd2_c00310{left:574.350000px;}
.xb8_c00310{left:576.300000px;}
.xa7_c00310{left:578.700000px;}
.xe_c00310{left:580.200000px;}
.x109_c00310{left:582.750000px;}
.xcc_c00310{left:585.450000px;}
.x35_c00310{left:586.650000px;}
.xf6_c00310{left:588.300000px;}
.x11d_c00310{left:589.350000px;}
.x127_c00310{left:590.400000px;}
.x10e_c00310{left:591.750000px;}
.xb1_c00310{left:595.050000px;}
.x98_c00310{left:597.300000px;}
.xf_c00310{left:599.250000px;}
.x70_c00310{left:602.400000px;}
.x36_c00310{left:604.650000px;}
.xcd_c00310{left:606.300000px;}
.x1d_c00310{left:607.500000px;}
.x29_c00310{left:611.100000px;}
.x7c_c00310{left:612.150000px;}
.x45_c00310{left:614.850000px;}
.xb2_c00310{left:617.700000px;}
.x131_c00310{left:618.750000px;}
.x71_c00310{left:620.100000px;}
.xd3_c00310{left:621.150000px;}
.x8d_c00310{left:624.300000px;}
.xe1_c00310{left:626.250000px;}
.xa8_c00310{left:632.700000px;}
.xdc_c00310{left:634.350000px;}
.x37_c00310{left:636.750000px;}
.xf7_c00310{left:637.950000px;}
.x68_c00310{left:641.400000px;}
.x2a_c00310{left:642.450000px;}
.x99_c00310{left:643.800000px;}
.xb9_c00310{left:645.000000px;}
.xf0_c00310{left:646.800000px;}
.x138_c00310{left:647.850000px;}
.xd4_c00310{left:650.700000px;}
.x38_c00310{left:652.200000px;}
.x10_c00310{left:654.000000px;}
.x46_c00310{left:658.050000px;}
.x84_c00310{left:660.450000px;}
.x128_c00310{left:664.200000px;}
.xf1_c00310{left:667.650000px;}
.x72_c00310{left:669.450000px;}
.x1e_c00310{left:670.800000px;}
.x8e_c00310{left:672.900000px;}
.x135_c00310{left:674.100000px;}
.x5b_c00310{left:675.600000px;}
.x85_c00310{left:680.250000px;}
.x4f_c00310{left:681.450000px;}
.x2b_c00310{left:682.800000px;}
.xe8_c00310{left:683.850000px;}
.x10f_c00310{left:685.650000px;}
.x11_c00310{left:686.700000px;}
.xe2_c00310{left:688.500000px;}
.x102_c00310{left:690.300000px;}
.x39_c00310{left:691.500000px;}
.xce_c00310{left:693.750000px;}
.xe9_c00310{left:694.950000px;}
.x5c_c00310{left:697.200000px;}
.x7d_c00310{left:700.050000px;}
.x69_c00310{left:701.550000px;}
.x12b_c00310{left:703.950000px;}
.x139_c00310{left:705.150000px;}
.xa9_c00310{left:706.500000px;}
.x50_c00310{left:708.750000px;}
.x12_c00310{left:712.200000px;}
.x117_c00310{left:714.300000px;}
.x132_c00310{left:717.000000px;}
.x1f_c00310{left:718.650000px;}
.x13a_c00310{left:720.300000px;}
.xd5_c00310{left:721.500000px;}
.x110_c00310{left:724.950000px;}
.xb3_c00310{left:726.150000px;}
.x47_c00310{left:727.950000px;}
.x2c_c00310{left:730.350000px;}
.x51_c00310{left:731.850000px;}
.x86_c00310{left:737.400000px;}
.x3a_c00310{left:740.100000px;}
.x5d_c00310{left:741.450000px;}
.xa1_c00310{left:746.550000px;}
.x2d_c00310{left:747.600000px;}
.x122_c00310{left:748.800000px;}
.x9a_c00310{left:750.450000px;}
.x48_c00310{left:752.400000px;}
.x12c_c00310{left:755.100000px;}
.x73_c00310{left:757.650000px;}
.xfc_c00310{left:759.150000px;}
.xcf_c00310{left:760.350000px;}
.x5e_c00310{left:763.050000px;}
.x13_c00310{left:765.150000px;}
.x6a_c00310{left:769.200000px;}
.x10a_c00310{left:770.250000px;}
.x87_c00310{left:772.650000px;}
.x103_c00310{left:773.850000px;}
.x2e_c00310{left:774.900000px;}
.x123_c00310{left:777.600000px;}
.x7e_c00310{left:778.950000px;}
.x3b_c00310{left:783.000000px;}
.xe3_c00310{left:785.850000px;}
.xbe_c00310{left:787.050000px;}
.x9b_c00310{left:788.550000px;}
.xf8_c00310{left:790.350000px;}
.x11e_c00310{left:791.400000px;}
.xaa_c00310{left:794.700000px;}
.x5f_c00310{left:797.550000px;}
.x3c_c00310{left:800.700000px;}
.xa2_c00310{left:804.900000px;}
.x74_c00310{left:805.950000px;}
.x2f_c00310{left:809.100000px;}
.x88_c00310{left:815.100000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws5_c00310{word-spacing:-4.384458pt;}
.ws7_c00310{word-spacing:-2.919515pt;}
.ws4_c00310{word-spacing:-1.444444pt;}
.ws0_c00310{word-spacing:-1.102994pt;}
.ws9_c00310{word-spacing:-0.580885pt;}
.wsb_c00310{word-spacing:0.000000pt;}
.ws1_c00310{word-spacing:0.648803pt;}
.ws6_c00310{word-spacing:2.634326pt;}
.ws3_c00310{word-spacing:5.214873pt;}
.ws2_c00310{word-spacing:12.111111pt;}
.ws8_c00310{word-spacing:13.575758pt;}
.wsa_c00310{word-spacing:16.031440pt;}
.fs0_c00310{font-size:48.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y2b_c00310{bottom:141.466667pt;}
.y2a_c00310{bottom:155.866667pt;}
.y29_c00310{bottom:197.733333pt;}
.y28_c00310{bottom:215.333333pt;}
.y27_c00310{bottom:233.066667pt;}
.y26_c00310{bottom:250.400000pt;}
.y25_c00310{bottom:268.266667pt;}
.y24_c00310{bottom:285.866667pt;}
.y23_c00310{bottom:303.466667pt;}
.y22_c00310{bottom:321.066667pt;}
.y21_c00310{bottom:338.666667pt;}
.y20_c00310{bottom:356.266667pt;}
.y1f_c00310{bottom:374.133333pt;}
.y1e_c00310{bottom:391.733333pt;}
.y1d_c00310{bottom:425.600000pt;}
.y1c_c00310{bottom:443.200000pt;}
.y1b_c00310{bottom:460.800000pt;}
.y1a_c00310{bottom:478.666667pt;}
.y19_c00310{bottom:496.533333pt;}
.y18_c00310{bottom:513.866667pt;}
.y17_c00310{bottom:531.733333pt;}
.y16_c00310{bottom:549.066667pt;}
.y15_c00310{bottom:567.200000pt;}
.y14_c00310{bottom:585.066667pt;}
.y13_c00310{bottom:602.933333pt;}
.y12_c00310{bottom:620.533333pt;}
.y11_c00310{bottom:638.133333pt;}
.y10_c00310{bottom:655.733333pt;}
.yf_c00310{bottom:674.000000pt;}
.ye_c00310{bottom:691.333333pt;}
.yd_c00310{bottom:709.200000pt;}
.yc_c00310{bottom:726.800000pt;}
.yb_c00310{bottom:744.400000pt;}
.ya_c00310{bottom:762.000000pt;}
.y9_c00310{bottom:779.600000pt;}
.y8_c00310{bottom:797.466667pt;}
.y7_c00310{bottom:814.800000pt;}
.y6_c00310{bottom:832.666667pt;}
.y5_c00310{bottom:850.533333pt;}
.y4_c00310{bottom:868.133333pt;}
.y3_c00310{bottom:885.733333pt;}
.y2_c00310{bottom:903.333333pt;}
.y1_c00310{bottom:937.866667pt;}
.h2_c00310{height:48.000000pt;}
.h0_c00310{height:1037.119955pt;}
.h1_c00310{height:1037.333333pt;}
.w1_c00310{width:812.000000pt;}
.w0_c00310{width:812.159993pt;}
.x0_c00310{left:0.000000pt;}
.x124_c00310{left:127.333333pt;}
.x111_c00310{left:128.266667pt;}
.xfd_c00310{left:129.200000pt;}
.xd6_c00310{left:130.933333pt;}
.x3d_c00310{left:131.866667pt;}
.x9c_c00310{left:133.866667pt;}
.x60_c00310{left:134.800000pt;}
.x52_c00310{left:135.733333pt;}
.x3_c00310{left:136.666667pt;}
.x1_c00310{left:138.533333pt;}
.x133_c00310{left:143.333333pt;}
.x89_c00310{left:144.666667pt;}
.x125_c00310{left:146.533333pt;}
.x4_c00310{left:150.133333pt;}
.x104_c00310{left:153.733333pt;}
.x14_c00310{left:154.933333pt;}
.x49_c00310{left:156.800000pt;}
.xc4_c00310{left:159.733333pt;}
.x75_c00310{left:161.466667pt;}
.x20_c00310{left:164.533333pt;}
.xea_c00310{left:167.066667pt;}
.x11c_c00310{left:168.266667pt;}
.xf9_c00310{left:171.066667pt;}
.x4a_c00310{left:172.800000pt;}
.xfe_c00310{left:174.000000pt;}
.xd7_c00310{left:175.066667pt;}
.x6b_c00310{left:177.866667pt;}
.x15_c00310{left:179.600000pt;}
.x61_c00310{left:181.200000pt;}
.x118_c00310{left:182.133333pt;}
.x7f_c00310{left:184.266667pt;}
.x3e_c00310{left:186.533333pt;}
.xc5_c00310{left:188.533333pt;}
.xfa_c00310{left:190.000000pt;}
.x6c_c00310{left:190.933333pt;}
.x21_c00310{left:192.000000pt;}
.xbf_c00310{left:193.733333pt;}
.x30_c00310{left:195.333333pt;}
.x11f_c00310{left:196.533333pt;}
.x5_c00310{left:197.866667pt;}
.xab_c00310{left:199.200000pt;}
.x53_c00310{left:200.133333pt;}
.x10b_c00310{left:202.133333pt;}
.x9d_c00310{left:204.000000pt;}
.xff_c00310{left:205.733333pt;}
.x119_c00310{left:206.933333pt;}
.x105_c00310{left:208.800000pt;}
.x62_c00310{left:209.733333pt;}
.xa3_c00310{left:210.800000pt;}
.x16_c00310{left:212.933333pt;}
.x8f_c00310{left:214.133333pt;}
.xd0_c00310{left:216.000000pt;}
.x22_c00310{left:217.866667pt;}
.x12d_c00310{left:219.466667pt;}
.x136_c00310{left:221.733333pt;}
.x6_c00310{left:222.800000pt;}
.x106_c00310{left:225.066667pt;}
.xb4_c00310{left:226.266667pt;}
.x10c_c00310{left:227.466667pt;}
.xc6_c00310{left:229.466667pt;}
.x90_c00310{left:231.066667pt;}
.x3f_c00310{left:232.000000pt;}
.xf2_c00310{left:235.466667pt;}
.x54_c00310{left:238.533333pt;}
.xe4_c00310{left:240.266667pt;}
.x63_c00310{left:242.400000pt;}
.xc0_c00310{left:243.333333pt;}
.xa4_c00310{left:244.400000pt;}
.x76_c00310{left:245.333333pt;}
.x6d_c00310{left:246.933333pt;}
.xdd_c00310{left:249.066667pt;}
.xd8_c00310{left:251.200000pt;}
.x4b_c00310{left:252.133333pt;}
.x40_c00310{left:255.066667pt;}
.x55_c00310{left:256.400000pt;}
.x23_c00310{left:257.600000pt;}
.x112_c00310{left:258.933333pt;}
.x64_c00310{left:262.533333pt;}
.x91_c00310{left:264.000000pt;}
.x17_c00310{left:267.333333pt;}
.x7_c00310{left:268.933333pt;}
.x80_c00310{left:270.133333pt;}
.x9e_c00310{left:271.866667pt;}
.xc7_c00310{left:274.000000pt;}
.x11a_c00310{left:277.333333pt;}
.x4c_c00310{left:278.400000pt;}
.x31_c00310{left:280.533333pt;}
.xc1_c00310{left:282.000000pt;}
.x8_c00310{left:284.666667pt;}
.xde_c00310{left:286.800000pt;}
.xac_c00310{left:287.866667pt;}
.xc8_c00310{left:289.733333pt;}
.xb5_c00310{left:291.466667pt;}
.xeb_c00310{left:295.066667pt;}
.x126_c00310{left:296.000000pt;}
.x56_c00310{left:297.333333pt;}
.xd1_c00310{left:298.266667pt;}
.xa5_c00310{left:299.733333pt;}
.x77_c00310{left:301.066667pt;}
.x11b_c00310{left:302.266667pt;}
.x8a_c00310{left:305.333333pt;}
.xe5_c00310{left:307.466667pt;}
.x6e_c00310{left:312.533333pt;}
.x18_c00310{left:313.733333pt;}
.x24_c00310{left:318.133333pt;}
.xec_c00310{left:319.333333pt;}
.x78_c00310{left:320.266667pt;}
.x107_c00310{left:322.400000pt;}
.xe6_c00310{left:324.400000pt;}
.x9_c00310{left:326.000000pt;}
.x32_c00310{left:327.600000pt;}
.x100_c00310{left:329.333333pt;}
.x92_c00310{left:331.466667pt;}
.x120_c00310{left:332.533333pt;}
.x12e_c00310{left:334.000000pt;}
.x81_c00310{left:335.733333pt;}
.x8b_c00310{left:337.333333pt;}
.xb6_c00310{left:338.533333pt;}
.x57_c00310{left:341.466667pt;}
.x41_c00310{left:343.333333pt;}
.x113_c00310{left:344.933333pt;}
.xba_c00310{left:346.000000pt;}
.x19_c00310{left:347.066667pt;}
.xdf_c00310{left:348.266667pt;}
.x33_c00310{left:350.266667pt;}
.x79_c00310{left:352.266667pt;}
.xa_c00310{left:356.133333pt;}
.xe7_c00310{left:357.333333pt;}
.x93_c00310{left:359.333333pt;}
.x65_c00310{left:360.666667pt;}
.x25_c00310{left:362.000000pt;}
.x9f_c00310{left:363.333333pt;}
.x121_c00310{left:365.200000pt;}
.x108_c00310{left:367.866667pt;}
.xc2_c00310{left:370.400000pt;}
.xad_c00310{left:373.333333pt;}
.x58_c00310{left:374.400000pt;}
.x42_c00310{left:376.000000pt;}
.x1a_c00310{left:378.400000pt;}
.x114_c00310{left:384.000000pt;}
.xd9_c00310{left:387.200000pt;}
.x129_c00310{left:388.666667pt;}
.x4d_c00310{left:391.333333pt;}
.x43_c00310{left:393.600000pt;}
.x7a_c00310{left:394.800000pt;}
.x94_c00310{left:396.133333pt;}
.xed_c00310{left:400.933333pt;}
.x2_c00310{left:402.533333pt;}
.xf3_c00310{left:403.466667pt;}
.x66_c00310{left:405.733333pt;}
.x26_c00310{left:408.400000pt;}
.xa6_c00310{left:409.466667pt;}
.x7b_c00310{left:412.133333pt;}
.x44_c00310{left:413.466667pt;}
.xb_c00310{left:414.666667pt;}
.x115_c00310{left:415.733333pt;}
.x82_c00310{left:417.333333pt;}
.xae_c00310{left:418.800000pt;}
.xf4_c00310{left:420.133333pt;}
.x1b_c00310{left:422.266667pt;}
.x34_c00310{left:423.866667pt;}
.xc9_c00310{left:425.466667pt;}
.x95_c00310{left:427.866667pt;}
.x137_c00310{left:430.666667pt;}
.xbb_c00310{left:432.800000pt;}
.x12a_c00310{left:436.000000pt;}
.x67_c00310{left:438.666667pt;}
.xc3_c00310{left:441.066667pt;}
.x10d_c00310{left:442.133333pt;}
.x96_c00310{left:443.600000pt;}
.xda_c00310{left:445.200000pt;}
.x59_c00310{left:447.600000pt;}
.xc_c00310{left:449.200000pt;}
.xaf_c00310{left:450.133333pt;}
.x12f_c00310{left:451.733333pt;}
.x116_c00310{left:455.066667pt;}
.x97_c00310{left:457.066667pt;}
.xbc_c00310{left:458.400000pt;}
.xca_c00310{left:460.000000pt;}
.x6f_c00310{left:462.533333pt;}
.x8c_c00310{left:464.666667pt;}
.x5a_c00310{left:466.533333pt;}
.xb0_c00310{left:470.000000pt;}
.xee_c00310{left:471.600000pt;}
.x101_c00310{left:473.333333pt;}
.x1c_c00310{left:474.666667pt;}
.xb7_c00310{left:476.133333pt;}
.x27_c00310{left:481.066667pt;}
.xd_c00310{left:482.800000pt;}
.x4e_c00310{left:486.666667pt;}
.xe0_c00310{left:489.066667pt;}
.xcb_c00310{left:490.666667pt;}
.xdb_c00310{left:491.866667pt;}
.x83_c00310{left:492.933333pt;}
.xa0_c00310{left:494.400000pt;}
.xbd_c00310{left:497.066667pt;}
.xf5_c00310{left:499.866667pt;}
.xfb_c00310{left:501.333333pt;}
.x130_c00310{left:503.333333pt;}
.xef_c00310{left:504.266667pt;}
.x28_c00310{left:505.733333pt;}
.x134_c00310{left:509.200000pt;}
.xd2_c00310{left:510.533333pt;}
.xb8_c00310{left:512.266667pt;}
.xa7_c00310{left:514.400000pt;}
.xe_c00310{left:515.733333pt;}
.x109_c00310{left:518.000000pt;}
.xcc_c00310{left:520.400000pt;}
.x35_c00310{left:521.466667pt;}
.xf6_c00310{left:522.933333pt;}
.x11d_c00310{left:523.866667pt;}
.x127_c00310{left:524.800000pt;}
.x10e_c00310{left:526.000000pt;}
.xb1_c00310{left:528.933333pt;}
.x98_c00310{left:530.933333pt;}
.xf_c00310{left:532.666667pt;}
.x70_c00310{left:535.466667pt;}
.x36_c00310{left:537.466667pt;}
.xcd_c00310{left:538.933333pt;}
.x1d_c00310{left:540.000000pt;}
.x29_c00310{left:543.200000pt;}
.x7c_c00310{left:544.133333pt;}
.x45_c00310{left:546.533333pt;}
.xb2_c00310{left:549.066667pt;}
.x131_c00310{left:550.000000pt;}
.x71_c00310{left:551.200000pt;}
.xd3_c00310{left:552.133333pt;}
.x8d_c00310{left:554.933333pt;}
.xe1_c00310{left:556.666667pt;}
.xa8_c00310{left:562.400000pt;}
.xdc_c00310{left:563.866667pt;}
.x37_c00310{left:566.000000pt;}
.xf7_c00310{left:567.066667pt;}
.x68_c00310{left:570.133333pt;}
.x2a_c00310{left:571.066667pt;}
.x99_c00310{left:572.266667pt;}
.xb9_c00310{left:573.333333pt;}
.xf0_c00310{left:574.933333pt;}
.x138_c00310{left:575.866667pt;}
.xd4_c00310{left:578.400000pt;}
.x38_c00310{left:579.733333pt;}
.x10_c00310{left:581.333333pt;}
.x46_c00310{left:584.933333pt;}
.x84_c00310{left:587.066667pt;}
.x128_c00310{left:590.400000pt;}
.xf1_c00310{left:593.466667pt;}
.x72_c00310{left:595.066667pt;}
.x1e_c00310{left:596.266667pt;}
.x8e_c00310{left:598.133333pt;}
.x135_c00310{left:599.200000pt;}
.x5b_c00310{left:600.533333pt;}
.x85_c00310{left:604.666667pt;}
.x4f_c00310{left:605.733333pt;}
.x2b_c00310{left:606.933333pt;}
.xe8_c00310{left:607.866667pt;}
.x10f_c00310{left:609.466667pt;}
.x11_c00310{left:610.400000pt;}
.xe2_c00310{left:612.000000pt;}
.x102_c00310{left:613.600000pt;}
.x39_c00310{left:614.666667pt;}
.xce_c00310{left:616.666667pt;}
.xe9_c00310{left:617.733333pt;}
.x5c_c00310{left:619.733333pt;}
.x7d_c00310{left:622.266667pt;}
.x69_c00310{left:623.600000pt;}
.x12b_c00310{left:625.733333pt;}
.x139_c00310{left:626.800000pt;}
.xa9_c00310{left:628.000000pt;}
.x50_c00310{left:630.000000pt;}
.x12_c00310{left:633.066667pt;}
.x117_c00310{left:634.933333pt;}
.x132_c00310{left:637.333333pt;}
.x1f_c00310{left:638.800000pt;}
.x13a_c00310{left:640.266667pt;}
.xd5_c00310{left:641.333333pt;}
.x110_c00310{left:644.400000pt;}
.xb3_c00310{left:645.466667pt;}
.x47_c00310{left:647.066667pt;}
.x2c_c00310{left:649.200000pt;}
.x51_c00310{left:650.533333pt;}
.x86_c00310{left:655.466667pt;}
.x3a_c00310{left:657.866667pt;}
.x5d_c00310{left:659.066667pt;}
.xa1_c00310{left:663.600000pt;}
.x2d_c00310{left:664.533333pt;}
.x122_c00310{left:665.600000pt;}
.x9a_c00310{left:667.066667pt;}
.x48_c00310{left:668.800000pt;}
.x12c_c00310{left:671.200000pt;}
.x73_c00310{left:673.466667pt;}
.xfc_c00310{left:674.800000pt;}
.xcf_c00310{left:675.866667pt;}
.x5e_c00310{left:678.266667pt;}
.x13_c00310{left:680.133333pt;}
.x6a_c00310{left:683.733333pt;}
.x10a_c00310{left:684.666667pt;}
.x87_c00310{left:686.800000pt;}
.x103_c00310{left:687.866667pt;}
.x2e_c00310{left:688.800000pt;}
.x123_c00310{left:691.200000pt;}
.x7e_c00310{left:692.400000pt;}
.x3b_c00310{left:696.000000pt;}
.xe3_c00310{left:698.533333pt;}
.xbe_c00310{left:699.600000pt;}
.x9b_c00310{left:700.933333pt;}
.xf8_c00310{left:702.533333pt;}
.x11e_c00310{left:703.466667pt;}
.xaa_c00310{left:706.400000pt;}
.x5f_c00310{left:708.933333pt;}
.x3c_c00310{left:711.733333pt;}
.xa2_c00310{left:715.466667pt;}
.x74_c00310{left:716.400000pt;}
.x2f_c00310{left:719.200000pt;}
.x88_c00310{left:724.533333pt;}
}





/* 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_c00311 {
    display:none;
  }
  .loading-indicator_c00311.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00311 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_c00311 { 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_c00311" -> "#page-container .classname_c00311")
 */
.pf_c00311 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00311 { /* 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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00311 { /* 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_c00311 { /* 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_c00311 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00311 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00311 {overflow:visible;}
  }
}
.c_c00311 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00311 { /* 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_c00311:after { /* webkit #35443 */
  content: '';
}
.t_c00311:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00311 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 */
}
.__c00311 { /* 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_c00311 { /* info for Javascript */
  display:none;
}
.l_c00311 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00311 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00311 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00311: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_c00311 {
    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_c00311.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00311.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_c00311 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00311{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00311;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.000000;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;}
.m86_c00311{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m69_c00311{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00311{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00311{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m23_c00311{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m48_c00311{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00311{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m43_c00311{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00311{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m7_c00311{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m57_c00311{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00311{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m54_c00311{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m74_c00311{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m41_c00311{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00311{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m88_c00311{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00311{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00311{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00311{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m97_c00311{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00311{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00311{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00311{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00311{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m17_c00311{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m68_c00311{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00311{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m28_c00311{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00311{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m81_c00311{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m77_c00311{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m39_c00311{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m53_c00311{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m52_c00311{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m38_c00311{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m45_c00311{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00311{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m83_c00311{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb_c00311{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m66_c00311{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00311{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00311{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m93_c00311{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5_c00311{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m25_c00311{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m22_c00311{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00311{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00311{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m13_c00311{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00311{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m80_c00311{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00311{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m99_c00311{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m15_c00311{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00311{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00311{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m18_c00311{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m85_c00311{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m59_c00311{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m82_c00311{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00311{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00311{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00311{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m65_c00311{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00311{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00311{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m29_c00311{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00311{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m55_c00311{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00311{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00311{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00311{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m95_c00311{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m72_c00311{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00311{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00311{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m40_c00311{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m47_c00311{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00311{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00311{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m11_c00311{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00311{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mae_c00311{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00311{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00311{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m14_c00311{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m35_c00311{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m94_c00311{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m90_c00311{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m27_c00311{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00311{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m91_c00311{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00311{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00311{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m73_c00311{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m76_c00311{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00311{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00311{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m60_c00311{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m3_c00311{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00311{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.maa_c00311{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00311{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mac_c00311{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m58_c00311{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00311{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m64_c00311{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m51_c00311{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mab_c00311{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma_c00311{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00311{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m34_c00311{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12_c00311{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00311{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00311{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9_c00311{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00311{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m26_c00311{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m24_c00311{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m21_c00311{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m46_c00311{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md_c00311{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00311{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m37_c00311{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m84_c00311{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00311{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00311{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00311{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m0_c00311{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00311{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf_c00311{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mc_c00311{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m30_c00311{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m19_c00311{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00311{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m70_c00311{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00311{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10_c00311{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00311{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m32_c00311{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00311{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m62_c00311{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00311{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m20_c00311{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00311{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m63_c00311{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00311{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m71_c00311{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m16_c00311{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m78_c00311{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m96_c00311{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00311{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me_c00311{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1_c00311{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m36_c00311{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00311{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m98_c00311{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2_c00311{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00311{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00311{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m6_c00311{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00311{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mad_c00311{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00311{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4_c00311{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00311{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m87_c00311{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.maf_c00311{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m42_c00311{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m56_c00311{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m50_c00311{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m31_c00311{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m75_c00311{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m49_c00311{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00311{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00311{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00311{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m79_c00311{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m92_c00311{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00311{vertical-align:0.000000px;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{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__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00311{word-spacing:-7.380952px;}
.ws8_c00311{word-spacing:-2.857143px;}
.ws5_c00311{word-spacing:-0.277778px;}
.ws9_c00311{word-spacing:0.000000px;}
.ws2_c00311{word-spacing:3.055556px;}
.ws0_c00311{word-spacing:6.250000px;}
.ws1_c00311{word-spacing:10.128205px;}
.ws7_c00311{word-spacing:15.277778px;}
.ws4_c00311{word-spacing:16.250000px;}
.ws3_c00311{word-spacing:34.074074px;}
.fc0_c00311{color:transparent;}
.fs1_c00311{font-size:60.000000px;}
.fs0_c00311{font-size:66.000000px;}
.y0_c00311{bottom:0.000000px;}
.y2c_c00311{bottom:146.850000px;}
.y2b_c00311{bottom:175.200000px;}
.y2a_c00311{bottom:195.000000px;}
.y29_c00311{bottom:214.500000px;}
.y28_c00311{bottom:235.200000px;}
.y27_c00311{bottom:255.300000px;}
.y26_c00311{bottom:275.100000px;}
.y25_c00311{bottom:294.900000px;}
.y24_c00311{bottom:314.700000px;}
.y23_c00311{bottom:334.800000px;}
.y22_c00311{bottom:354.600000px;}
.y21_c00311{bottom:374.400000px;}
.y20_c00311{bottom:394.200000px;}
.y1f_c00311{bottom:414.750000px;}
.y1e_c00311{bottom:434.250000px;}
.y1d_c00311{bottom:454.050000px;}
.y1c_c00311{bottom:474.150000px;}
.y1b_c00311{bottom:493.950000px;}
.y1a_c00311{bottom:513.750000px;}
.y19_c00311{bottom:533.550000px;}
.y18_c00311{bottom:553.350000px;}
.y17_c00311{bottom:573.450000px;}
.y16_c00311{bottom:593.250000px;}
.y15_c00311{bottom:613.050000px;}
.y14_c00311{bottom:632.850000px;}
.y13_c00311{bottom:652.650000px;}
.y12_c00311{bottom:682.650000px;}
.y11_c00311{bottom:702.750000px;}
.y10_c00311{bottom:722.550000px;}
.yf_c00311{bottom:742.650000px;}
.ye_c00311{bottom:762.450000px;}
.yd_c00311{bottom:782.250000px;}
.yc_c00311{bottom:802.050000px;}
.yb_c00311{bottom:822.150000px;}
.ya_c00311{bottom:841.950000px;}
.y9_c00311{bottom:862.050000px;}
.y8_c00311{bottom:881.850000px;}
.y7_c00311{bottom:901.650000px;}
.y6_c00311{bottom:921.750000px;}
.y5_c00311{bottom:941.550000px;}
.y4_c00311{bottom:961.350000px;}
.y3_c00311{bottom:981.450000px;}
.y2_c00311{bottom:1001.550000px;}
.y1_c00311{bottom:1040.100000px;}
.h3_c00311{height:60.000000px;}
.h2_c00311{height:66.000000px;}
.h0_c00311{height:1166.759949px;}
.h1_c00311{height:1167.000000px;}
.w1_c00311{width:913.500000px;}
.w0_c00311{width:913.679993px;}
.x0_c00311{left:0.000000px;}
.x103_c00311{left:99.150000px;}
.x3b_c00311{left:100.350000px;}
.x3_c00311{left:101.550000px;}
.xeb_c00311{left:114.900000px;}
.xcd_c00311{left:118.650000px;}
.xbf_c00311{left:120.450000px;}
.x52_c00311{left:122.400000px;}
.xf7_c00311{left:124.650000px;}
.xfe_c00311{left:125.850000px;}
.x86_c00311{left:128.700000px;}
.x12e_c00311{left:130.350000px;}
.xc2_c00311{left:132.150000px;}
.x6d_c00311{left:133.950000px;}
.x118_c00311{left:136.350000px;}
.x131_c00311{left:137.550000px;}
.x9c_c00311{left:139.350000px;}
.xd1_c00311{left:141.300000px;}
.xb7_c00311{left:142.650000px;}
.x14_c00311{left:144.300000px;}
.x109_c00311{left:145.500000px;}
.x30_c00311{left:146.700000px;}
.xec_c00311{left:148.800000px;}
.x60_c00311{left:149.850000px;}
.x4_c00311{left:151.200000px;}
.x104_c00311{left:153.150000px;}
.x24_c00311{left:154.200000px;}
.xff_c00311{left:156.150000px;}
.x92_c00311{left:157.500000px;}
.x77_c00311{left:163.500000px;}
.x11c_c00311{left:165.300000px;}
.x10a_c00311{left:166.800000px;}
.x5_c00311{left:168.450000px;}
.x61_c00311{left:170.400000px;}
.x6e_c00311{left:173.250000px;}
.x46_c00311{left:174.900000px;}
.x9d_c00311{left:176.850000px;}
.xdd_c00311{left:178.800000px;}
.xe2_c00311{left:180.450000px;}
.x15_c00311{left:183.150000px;}
.x53_c00311{left:184.650000px;}
.x3c_c00311{left:186.450000px;}
.xf1_c00311{left:188.550000px;}
.xf8_c00311{left:189.750000px;}
.x93_c00311{left:193.800000px;}
.x78_c00311{left:195.150000px;}
.xd2_c00311{left:197.550000px;}
.x6_c00311{left:201.900000px;}
.x16_c00311{left:202.950000px;}
.xf9_c00311{left:208.050000px;}
.x47_c00311{left:209.100000px;}
.x54_c00311{left:210.600000px;}
.xc3_c00311{left:212.100000px;}
.x9e_c00311{left:213.600000px;}
.x25_c00311{left:216.150000px;}
.x87_c00311{left:217.200000px;}
.xb8_c00311{left:220.800000px;}
.x31_c00311{left:222.600000px;}
.x10b_c00311{left:223.650000px;}
.x94_c00311{left:225.150000px;}
.xd7_c00311{left:230.400000px;}
.xc4_c00311{left:231.600000px;}
.x79_c00311{left:233.700000px;}
.x26_c00311{left:234.900000px;}
.x88_c00311{left:237.300000px;}
.x100_c00311{left:239.550000px;}
.xb0_c00311{left:241.500000px;}
.x3d_c00311{left:244.800000px;}
.x132_c00311{left:246.300000px;}
.xb9_c00311{left:247.500000px;}
.x55_c00311{left:248.700000px;}
.xd3_c00311{left:250.050000px;}
.x95_c00311{left:251.100000px;}
.xce_c00311{left:252.300000px;}
.x7_c00311{left:253.800000px;}
.x32_c00311{left:256.800000px;}
.xc5_c00311{left:260.100000px;}
.xe3_c00311{left:261.750000px;}
.x3e_c00311{left:263.100000px;}
.xc0_c00311{left:264.750000px;}
.x134_c00311{left:266.100000px;}
.x10c_c00311{left:267.150000px;}
.xd4_c00311{left:269.100000px;}
.x89_c00311{left:271.200000px;}
.x17_c00311{left:273.150000px;}
.x7a_c00311{left:274.350000px;}
.x56_c00311{left:275.700000px;}
.x111_c00311{left:279.000000px;}
.x48_c00311{left:281.100000px;}
.x62_c00311{left:283.200000px;}
.x9f_c00311{left:286.650000px;}
.x3f_c00311{left:289.050000px;}
.x8a_c00311{left:291.000000px;}
.x18_c00311{left:293.250000px;}
.xed_c00311{left:297.600000px;}
.x105_c00311{left:298.950000px;}
.x133_c00311{left:301.650000px;}
.x8_c00311{left:302.700000px;}
.x124_c00311{left:305.700000px;}
.x57_c00311{left:307.050000px;}
.xd8_c00311{left:308.400000px;}
.x63_c00311{left:309.900000px;}
.xa7_c00311{left:312.150000px;}
.x33_c00311{left:313.650000px;}
.xc1_c00311{left:314.850000px;}
.x112_c00311{left:317.550000px;}
.x8b_c00311{left:319.500000px;}
.xa0_c00311{left:322.050000px;}
.xb1_c00311{left:324.300000px;}
.x125_c00311{left:325.500000px;}
.x7b_c00311{left:327.300000px;}
.x9_c00311{left:328.950000px;}
.x110_c00311{left:331.050000px;}
.x49_c00311{left:334.350000px;}
.x119_c00311{left:336.450000px;}
.xe4_c00311{left:338.100000px;}
.xde_c00311{left:339.750000px;}
.x6f_c00311{left:343.500000px;}
.x11d_c00311{left:344.700000px;}
.x64_c00311{left:346.200000px;}
.x34_c00311{left:347.850000px;}
.x120_c00311{left:350.700000px;}
.x12d_c00311{left:355.800000px;}
.x27_c00311{left:358.350000px;}
.x70_c00311{left:361.800000px;}
.x58_c00311{left:364.650000px;}
.xf2_c00311{left:366.600000px;}
.xa1_c00311{left:367.800000px;}
.xc6_c00311{left:368.850000px;}
.x19_c00311{left:370.950000px;}
.xd5_c00311{left:372.150000px;}
.xa8_c00311{left:375.150000px;}
.x126_c00311{left:376.650000px;}
.x65_c00311{left:378.300000px;}
.xba_c00311{left:379.350000px;}
.x8c_c00311{left:382.800000px;}
.x113_c00311{left:385.950000px;}
.x28_c00311{left:387.150000px;}
.x129_c00311{left:389.700000px;}
.x4a_c00311{left:391.350000px;}
.xa9_c00311{left:392.850000px;}
.xdf_c00311{left:394.050000px;}
.xf3_c00311{left:395.100000px;}
.x66_c00311{left:396.600000px;}
.xe5_c00311{left:398.550000px;}
.x8d_c00311{left:401.100000px;}
.x1_c00311{left:402.150000px;}
.x7c_c00311{left:405.000000px;}
.x121_c00311{left:406.800000px;}
.xfa_c00311{left:411.450000px;}
.xaa_c00311{left:414.450000px;}
.x11a_c00311{left:415.650000px;}
.x35_c00311{left:418.050000px;}
.x1a_c00311{left:419.250000px;}
.xc7_c00311{left:421.050000px;}
.xb2_c00311{left:423.300000px;}
.xa_c00311{left:424.650000px;}
.x137_c00311{left:425.700000px;}
.x96_c00311{left:427.200000px;}
.xfb_c00311{left:429.150000px;}
.x10d_c00311{left:431.250000px;}
.x12a_c00311{left:432.600000px;}
.x67_c00311{left:434.400000px;}
.x40_c00311{left:436.950000px;}
.xbb_c00311{left:439.200000px;}
.x1b_c00311{left:441.150000px;}
.x59_c00311{left:443.550000px;}
.x36_c00311{left:445.350000px;}
.x8e_c00311{left:447.150000px;}
.xab_c00311{left:448.350000px;}
.x114_c00311{left:450.300000px;}
.x68_c00311{left:453.450000px;}
.xc8_c00311{left:457.800000px;}
.x29_c00311{left:460.200000px;}
.x5a_c00311{left:461.850000px;}
.xb_c00311{left:463.950000px;}
.x10e_c00311{left:465.750000px;}
.xa2_c00311{left:469.200000px;}
.x1c_c00311{left:470.700000px;}
.xe6_c00311{left:473.100000px;}
.x8f_c00311{left:475.200000px;}
.x7d_c00311{left:476.700000px;}
.xb3_c00311{left:478.800000px;}
.x41_c00311{left:480.900000px;}
.x4b_c00311{left:482.700000px;}
.xc9_c00311{left:486.300000px;}
.x2a_c00311{left:489.000000px;}
.xfc_c00311{left:490.650000px;}
.x1d_c00311{left:492.000000px;}
.x7e_c00311{left:493.650000px;}
.xc_c00311{left:496.050000px;}
.x71_c00311{left:500.700000px;}
.x11e_c00311{left:504.600000px;}
.xe7_c00311{left:505.800000px;}
.x97_c00311{left:507.150000px;}
.x12f_c00311{left:509.700000px;}
.x106_c00311{left:513.750000px;}
.x37_c00311{left:516.300000px;}
.x138_c00311{left:518.850000px;}
.x115_c00311{left:520.500000px;}
.x7f_c00311{left:521.700000px;}
.x42_c00311{left:524.850000px;}
.x98_c00311{left:525.900000px;}
.xa3_c00311{left:528.000000px;}
.x101_c00311{left:529.500000px;}
.xd_c00311{left:531.750000px;}
.xd9_c00311{left:533.700000px;}
.xb4_c00311{left:536.100000px;}
.xe8_c00311{left:537.150000px;}
.x99_c00311{left:538.200000px;}
.x5b_c00311{left:540.300000px;}
.x1e_c00311{left:541.350000px;}
.x2b_c00311{left:543.000000px;}
.x127_c00311{left:544.050000px;}
.x11f_c00311{left:545.250000px;}
.xa4_c00311{left:546.750000px;}
.xca_c00311{left:548.550000px;}
.xcf_c00311{left:550.350000px;}
.x43_c00311{left:552.600000px;}
.xee_c00311{left:555.900000px;}
.xf4_c00311{left:557.700000px;}
.x1f_c00311{left:561.150000px;}
.x2c_c00311{left:562.500000px;}
.x72_c00311{left:564.750000px;}
.x5c_c00311{left:567.600000px;}
.xa5_c00311{left:569.400000px;}
.x9a_c00311{left:573.450000px;}
.xac_c00311{left:574.650000px;}
.xbc_c00311{left:576.300000px;}
.x69_c00311{left:577.350000px;}
.xe_c00311{left:579.600000px;}
.x2d_c00311{left:581.550000px;}
.x122_c00311{left:582.750000px;}
.x4c_c00311{left:584.250000px;}
.x73_c00311{left:585.300000px;}
.x80_c00311{left:588.000000px;}
.x20_c00311{left:590.250000px;}
.x90_c00311{left:591.750000px;}
.x6a_c00311{left:596.100000px;}
.xf5_c00311{left:599.850000px;}
.x130_c00311{left:601.200000px;}
.xbd_c00311{left:602.250000px;}
.x9b_c00311{left:604.050000px;}
.x102_c00311{left:605.400000px;}
.x135_c00311{left:607.650000px;}
.x38_c00311{left:608.700000px;}
.x91_c00311{left:609.750000px;}
.x4d_c00311{left:612.000000px;}
.xf_c00311{left:613.800000px;}
.x44_c00311{left:618.450000px;}
.x74_c00311{left:620.550000px;}
.xf6_c00311{left:622.200000px;}
.xda_c00311{left:624.750000px;}
.x136_c00311{left:626.700000px;}
.x21_c00311{left:629.100000px;}
.x6b_c00311{left:630.300000px;}
.x5d_c00311{left:632.400000px;}
.x81_c00311{left:636.150000px;}
.xad_c00311{left:637.200000px;}
.x39_c00311{left:640.800000px;}
.xe9_c00311{left:642.300000px;}
.x2e_c00311{left:644.250000px;}
.xae_c00311{left:648.300000px;}
.x12b_c00311{left:650.100000px;}
.x5e_c00311{left:651.150000px;}
.x10_c00311{left:653.400000px;}
.x75_c00311{left:655.500000px;}
.x4e_c00311{left:657.000000px;}
.xcb_c00311{left:658.050000px;}
.x45_c00311{left:659.100000px;}
.xea_c00311{left:661.350000px;}
.xbe_c00311{left:662.700000px;}
.xa6_c00311{left:667.350000px;}
.x11b_c00311{left:671.100000px;}
.xb5_c00311{left:672.600000px;}
.xe0_c00311{left:674.700000px;}
.x4f_c00311{left:677.100000px;}
.x11_c00311{left:678.900000px;}
.xaf_c00311{left:680.400000px;}
.x3a_c00311{left:682.500000px;}
.xcc_c00311{left:685.050000px;}
.x128_c00311{left:687.300000px;}
.x123_c00311{left:688.650000px;}
.xd6_c00311{left:690.150000px;}
.xdb_c00311{left:694.650000px;}
.x82_c00311{left:695.850000px;}
.x76_c00311{left:698.400000px;}
.x116_c00311{left:700.350000px;}
.x12c_c00311{left:701.550000px;}
.x2f_c00311{left:705.750000px;}
.x22_c00311{left:710.100000px;}
.x107_c00311{left:712.050000px;}
.x83_c00311{left:713.550000px;}
.x5f_c00311{left:717.450000px;}
.xef_c00311{left:718.650000px;}
.x50_c00311{left:720.600000px;}
.x6c_c00311{left:722.100000px;}
.x10f_c00311{left:723.300000px;}
.x12_c00311{left:724.950000px;}
.xd0_c00311{left:726.000000px;}
.xb6_c00311{left:727.650000px;}
.x117_c00311{left:728.850000px;}
.x23_c00311{left:730.950000px;}
.xe1_c00311{left:732.300000px;}
.x84_c00311{left:733.650000px;}
.xf0_c00311{left:738.750000px;}
.x2_c00311{left:741.600000px;}
.xdc_c00311{left:745.050000px;}
.x108_c00311{left:747.000000px;}
.x13_c00311{left:748.050000px;}
.x51_c00311{left:749.100000px;}
.xfd_c00311{left:752.550000px;}
.x85_c00311{left:757.350000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws6_c00311{word-spacing:-6.560847pt;}
.ws8_c00311{word-spacing:-2.539683pt;}
.ws5_c00311{word-spacing:-0.246914pt;}
.ws9_c00311{word-spacing:0.000000pt;}
.ws2_c00311{word-spacing:2.716049pt;}
.ws0_c00311{word-spacing:5.555556pt;}
.ws1_c00311{word-spacing:9.002849pt;}
.ws7_c00311{word-spacing:13.580247pt;}
.ws4_c00311{word-spacing:14.444444pt;}
.ws3_c00311{word-spacing:30.288066pt;}
.fs1_c00311{font-size:53.333333pt;}
.fs0_c00311{font-size:58.666667pt;}
.y0_c00311{bottom:0.000000pt;}
.y2c_c00311{bottom:130.533333pt;}
.y2b_c00311{bottom:155.733333pt;}
.y2a_c00311{bottom:173.333333pt;}
.y29_c00311{bottom:190.666667pt;}
.y28_c00311{bottom:209.066667pt;}
.y27_c00311{bottom:226.933333pt;}
.y26_c00311{bottom:244.533333pt;}
.y25_c00311{bottom:262.133333pt;}
.y24_c00311{bottom:279.733333pt;}
.y23_c00311{bottom:297.600000pt;}
.y22_c00311{bottom:315.200000pt;}
.y21_c00311{bottom:332.800000pt;}
.y20_c00311{bottom:350.400000pt;}
.y1f_c00311{bottom:368.666667pt;}
.y1e_c00311{bottom:386.000000pt;}
.y1d_c00311{bottom:403.600000pt;}
.y1c_c00311{bottom:421.466667pt;}
.y1b_c00311{bottom:439.066667pt;}
.y1a_c00311{bottom:456.666667pt;}
.y19_c00311{bottom:474.266667pt;}
.y18_c00311{bottom:491.866667pt;}
.y17_c00311{bottom:509.733333pt;}
.y16_c00311{bottom:527.333333pt;}
.y15_c00311{bottom:544.933333pt;}
.y14_c00311{bottom:562.533333pt;}
.y13_c00311{bottom:580.133333pt;}
.y12_c00311{bottom:606.800000pt;}
.y11_c00311{bottom:624.666667pt;}
.y10_c00311{bottom:642.266667pt;}
.yf_c00311{bottom:660.133333pt;}
.ye_c00311{bottom:677.733333pt;}
.yd_c00311{bottom:695.333333pt;}
.yc_c00311{bottom:712.933333pt;}
.yb_c00311{bottom:730.800000pt;}
.ya_c00311{bottom:748.400000pt;}
.y9_c00311{bottom:766.266667pt;}
.y8_c00311{bottom:783.866667pt;}
.y7_c00311{bottom:801.466667pt;}
.y6_c00311{bottom:819.333333pt;}
.y5_c00311{bottom:836.933333pt;}
.y4_c00311{bottom:854.533333pt;}
.y3_c00311{bottom:872.400000pt;}
.y2_c00311{bottom:890.266667pt;}
.y1_c00311{bottom:924.533333pt;}
.h3_c00311{height:53.333333pt;}
.h2_c00311{height:58.666667pt;}
.h0_c00311{height:1037.119955pt;}
.h1_c00311{height:1037.333333pt;}
.w1_c00311{width:812.000000pt;}
.w0_c00311{width:812.159993pt;}
.x0_c00311{left:0.000000pt;}
.x103_c00311{left:88.133333pt;}
.x3b_c00311{left:89.200000pt;}
.x3_c00311{left:90.266667pt;}
.xeb_c00311{left:102.133333pt;}
.xcd_c00311{left:105.466667pt;}
.xbf_c00311{left:107.066667pt;}
.x52_c00311{left:108.800000pt;}
.xf7_c00311{left:110.800000pt;}
.xfe_c00311{left:111.866667pt;}
.x86_c00311{left:114.400000pt;}
.x12e_c00311{left:115.866667pt;}
.xc2_c00311{left:117.466667pt;}
.x6d_c00311{left:119.066667pt;}
.x118_c00311{left:121.200000pt;}
.x131_c00311{left:122.266667pt;}
.x9c_c00311{left:123.866667pt;}
.xd1_c00311{left:125.600000pt;}
.xb7_c00311{left:126.800000pt;}
.x14_c00311{left:128.266667pt;}
.x109_c00311{left:129.333333pt;}
.x30_c00311{left:130.400000pt;}
.xec_c00311{left:132.266667pt;}
.x60_c00311{left:133.200000pt;}
.x4_c00311{left:134.400000pt;}
.x104_c00311{left:136.133333pt;}
.x24_c00311{left:137.066667pt;}
.xff_c00311{left:138.800000pt;}
.x92_c00311{left:140.000000pt;}
.x77_c00311{left:145.333333pt;}
.x11c_c00311{left:146.933333pt;}
.x10a_c00311{left:148.266667pt;}
.x5_c00311{left:149.733333pt;}
.x61_c00311{left:151.466667pt;}
.x6e_c00311{left:154.000000pt;}
.x46_c00311{left:155.466667pt;}
.x9d_c00311{left:157.200000pt;}
.xdd_c00311{left:158.933333pt;}
.xe2_c00311{left:160.400000pt;}
.x15_c00311{left:162.800000pt;}
.x53_c00311{left:164.133333pt;}
.x3c_c00311{left:165.733333pt;}
.xf1_c00311{left:167.600000pt;}
.xf8_c00311{left:168.666667pt;}
.x93_c00311{left:172.266667pt;}
.x78_c00311{left:173.466667pt;}
.xd2_c00311{left:175.600000pt;}
.x6_c00311{left:179.466667pt;}
.x16_c00311{left:180.400000pt;}
.xf9_c00311{left:184.933333pt;}
.x47_c00311{left:185.866667pt;}
.x54_c00311{left:187.200000pt;}
.xc3_c00311{left:188.533333pt;}
.x9e_c00311{left:189.866667pt;}
.x25_c00311{left:192.133333pt;}
.x87_c00311{left:193.066667pt;}
.xb8_c00311{left:196.266667pt;}
.x31_c00311{left:197.866667pt;}
.x10b_c00311{left:198.800000pt;}
.x94_c00311{left:200.133333pt;}
.xd7_c00311{left:204.800000pt;}
.xc4_c00311{left:205.866667pt;}
.x79_c00311{left:207.733333pt;}
.x26_c00311{left:208.800000pt;}
.x88_c00311{left:210.933333pt;}
.x100_c00311{left:212.933333pt;}
.xb0_c00311{left:214.666667pt;}
.x3d_c00311{left:217.600000pt;}
.x132_c00311{left:218.933333pt;}
.xb9_c00311{left:220.000000pt;}
.x55_c00311{left:221.066667pt;}
.xd3_c00311{left:222.266667pt;}
.x95_c00311{left:223.200000pt;}
.xce_c00311{left:224.266667pt;}
.x7_c00311{left:225.600000pt;}
.x32_c00311{left:228.266667pt;}
.xc5_c00311{left:231.200000pt;}
.xe3_c00311{left:232.666667pt;}
.x3e_c00311{left:233.866667pt;}
.xc0_c00311{left:235.333333pt;}
.x134_c00311{left:236.533333pt;}
.x10c_c00311{left:237.466667pt;}
.xd4_c00311{left:239.200000pt;}
.x89_c00311{left:241.066667pt;}
.x17_c00311{left:242.800000pt;}
.x7a_c00311{left:243.866667pt;}
.x56_c00311{left:245.066667pt;}
.x111_c00311{left:248.000000pt;}
.x48_c00311{left:249.866667pt;}
.x62_c00311{left:251.733333pt;}
.x9f_c00311{left:254.800000pt;}
.x3f_c00311{left:256.933333pt;}
.x8a_c00311{left:258.666667pt;}
.x18_c00311{left:260.666667pt;}
.xed_c00311{left:264.533333pt;}
.x105_c00311{left:265.733333pt;}
.x133_c00311{left:268.133333pt;}
.x8_c00311{left:269.066667pt;}
.x124_c00311{left:271.733333pt;}
.x57_c00311{left:272.933333pt;}
.xd8_c00311{left:274.133333pt;}
.x63_c00311{left:275.466667pt;}
.xa7_c00311{left:277.466667pt;}
.x33_c00311{left:278.800000pt;}
.xc1_c00311{left:279.866667pt;}
.x112_c00311{left:282.266667pt;}
.x8b_c00311{left:284.000000pt;}
.xa0_c00311{left:286.266667pt;}
.xb1_c00311{left:288.266667pt;}
.x125_c00311{left:289.333333pt;}
.x7b_c00311{left:290.933333pt;}
.x9_c00311{left:292.400000pt;}
.x110_c00311{left:294.266667pt;}
.x49_c00311{left:297.200000pt;}
.x119_c00311{left:299.066667pt;}
.xe4_c00311{left:300.533333pt;}
.xde_c00311{left:302.000000pt;}
.x6f_c00311{left:305.333333pt;}
.x11d_c00311{left:306.400000pt;}
.x64_c00311{left:307.733333pt;}
.x34_c00311{left:309.200000pt;}
.x120_c00311{left:311.733333pt;}
.x12d_c00311{left:316.266667pt;}
.x27_c00311{left:318.533333pt;}
.x70_c00311{left:321.600000pt;}
.x58_c00311{left:324.133333pt;}
.xf2_c00311{left:325.866667pt;}
.xa1_c00311{left:326.933333pt;}
.xc6_c00311{left:327.866667pt;}
.x19_c00311{left:329.733333pt;}
.xd5_c00311{left:330.800000pt;}
.xa8_c00311{left:333.466667pt;}
.x126_c00311{left:334.800000pt;}
.x65_c00311{left:336.266667pt;}
.xba_c00311{left:337.200000pt;}
.x8c_c00311{left:340.266667pt;}
.x113_c00311{left:343.066667pt;}
.x28_c00311{left:344.133333pt;}
.x129_c00311{left:346.400000pt;}
.x4a_c00311{left:347.866667pt;}
.xa9_c00311{left:349.200000pt;}
.xdf_c00311{left:350.266667pt;}
.xf3_c00311{left:351.200000pt;}
.x66_c00311{left:352.533333pt;}
.xe5_c00311{left:354.266667pt;}
.x8d_c00311{left:356.533333pt;}
.x1_c00311{left:357.466667pt;}
.x7c_c00311{left:360.000000pt;}
.x121_c00311{left:361.600000pt;}
.xfa_c00311{left:365.733333pt;}
.xaa_c00311{left:368.400000pt;}
.x11a_c00311{left:369.466667pt;}
.x35_c00311{left:371.600000pt;}
.x1a_c00311{left:372.666667pt;}
.xc7_c00311{left:374.266667pt;}
.xb2_c00311{left:376.266667pt;}
.xa_c00311{left:377.466667pt;}
.x137_c00311{left:378.400000pt;}
.x96_c00311{left:379.733333pt;}
.xfb_c00311{left:381.466667pt;}
.x10d_c00311{left:383.333333pt;}
.x12a_c00311{left:384.533333pt;}
.x67_c00311{left:386.133333pt;}
.x40_c00311{left:388.400000pt;}
.xbb_c00311{left:390.400000pt;}
.x1b_c00311{left:392.133333pt;}
.x59_c00311{left:394.266667pt;}
.x36_c00311{left:395.866667pt;}
.x8e_c00311{left:397.466667pt;}
.xab_c00311{left:398.533333pt;}
.x114_c00311{left:400.266667pt;}
.x68_c00311{left:403.066667pt;}
.xc8_c00311{left:406.933333pt;}
.x29_c00311{left:409.066667pt;}
.x5a_c00311{left:410.533333pt;}
.xb_c00311{left:412.400000pt;}
.x10e_c00311{left:414.000000pt;}
.xa2_c00311{left:417.066667pt;}
.x1c_c00311{left:418.400000pt;}
.xe6_c00311{left:420.533333pt;}
.x8f_c00311{left:422.400000pt;}
.x7d_c00311{left:423.733333pt;}
.xb3_c00311{left:425.600000pt;}
.x41_c00311{left:427.466667pt;}
.x4b_c00311{left:429.066667pt;}
.xc9_c00311{left:432.266667pt;}
.x2a_c00311{left:434.666667pt;}
.xfc_c00311{left:436.133333pt;}
.x1d_c00311{left:437.333333pt;}
.x7e_c00311{left:438.800000pt;}
.xc_c00311{left:440.933333pt;}
.x71_c00311{left:445.066667pt;}
.x11e_c00311{left:448.533333pt;}
.xe7_c00311{left:449.600000pt;}
.x97_c00311{left:450.800000pt;}
.x12f_c00311{left:453.066667pt;}
.x106_c00311{left:456.666667pt;}
.x37_c00311{left:458.933333pt;}
.x138_c00311{left:461.200000pt;}
.x115_c00311{left:462.666667pt;}
.x7f_c00311{left:463.733333pt;}
.x42_c00311{left:466.533333pt;}
.x98_c00311{left:467.466667pt;}
.xa3_c00311{left:469.333333pt;}
.x101_c00311{left:470.666667pt;}
.xd_c00311{left:472.666667pt;}
.xd9_c00311{left:474.400000pt;}
.xb4_c00311{left:476.533333pt;}
.xe8_c00311{left:477.466667pt;}
.x99_c00311{left:478.400000pt;}
.x5b_c00311{left:480.266667pt;}
.x1e_c00311{left:481.200000pt;}
.x2b_c00311{left:482.666667pt;}
.x127_c00311{left:483.600000pt;}
.x11f_c00311{left:484.666667pt;}
.xa4_c00311{left:486.000000pt;}
.xca_c00311{left:487.600000pt;}
.xcf_c00311{left:489.200000pt;}
.x43_c00311{left:491.200000pt;}
.xee_c00311{left:494.133333pt;}
.xf4_c00311{left:495.733333pt;}
.x1f_c00311{left:498.800000pt;}
.x2c_c00311{left:500.000000pt;}
.x72_c00311{left:502.000000pt;}
.x5c_c00311{left:504.533333pt;}
.xa5_c00311{left:506.133333pt;}
.x9a_c00311{left:509.733333pt;}
.xac_c00311{left:510.800000pt;}
.xbc_c00311{left:512.266667pt;}
.x69_c00311{left:513.200000pt;}
.xe_c00311{left:515.200000pt;}
.x2d_c00311{left:516.933333pt;}
.x122_c00311{left:518.000000pt;}
.x4c_c00311{left:519.333333pt;}
.x73_c00311{left:520.266667pt;}
.x80_c00311{left:522.666667pt;}
.x20_c00311{left:524.666667pt;}
.x90_c00311{left:526.000000pt;}
.x6a_c00311{left:529.866667pt;}
.xf5_c00311{left:533.200000pt;}
.x130_c00311{left:534.400000pt;}
.xbd_c00311{left:535.333333pt;}
.x9b_c00311{left:536.933333pt;}
.x102_c00311{left:538.133333pt;}
.x135_c00311{left:540.133333pt;}
.x38_c00311{left:541.066667pt;}
.x91_c00311{left:542.000000pt;}
.x4d_c00311{left:544.000000pt;}
.xf_c00311{left:545.600000pt;}
.x44_c00311{left:549.733333pt;}
.x74_c00311{left:551.600000pt;}
.xf6_c00311{left:553.066667pt;}
.xda_c00311{left:555.333333pt;}
.x136_c00311{left:557.066667pt;}
.x21_c00311{left:559.200000pt;}
.x6b_c00311{left:560.266667pt;}
.x5d_c00311{left:562.133333pt;}
.x81_c00311{left:565.466667pt;}
.xad_c00311{left:566.400000pt;}
.x39_c00311{left:569.600000pt;}
.xe9_c00311{left:570.933333pt;}
.x2e_c00311{left:572.666667pt;}
.xae_c00311{left:576.266667pt;}
.x12b_c00311{left:577.866667pt;}
.x5e_c00311{left:578.800000pt;}
.x10_c00311{left:580.800000pt;}
.x75_c00311{left:582.666667pt;}
.x4e_c00311{left:584.000000pt;}
.xcb_c00311{left:584.933333pt;}
.x45_c00311{left:585.866667pt;}
.xea_c00311{left:587.866667pt;}
.xbe_c00311{left:589.066667pt;}
.xa6_c00311{left:593.200000pt;}
.x11b_c00311{left:596.533333pt;}
.xb5_c00311{left:597.866667pt;}
.xe0_c00311{left:599.733333pt;}
.x4f_c00311{left:601.866667pt;}
.x11_c00311{left:603.466667pt;}
.xaf_c00311{left:604.800000pt;}
.x3a_c00311{left:606.666667pt;}
.xcc_c00311{left:608.933333pt;}
.x128_c00311{left:610.933333pt;}
.x123_c00311{left:612.133333pt;}
.xd6_c00311{left:613.466667pt;}
.xdb_c00311{left:617.466667pt;}
.x82_c00311{left:618.533333pt;}
.x76_c00311{left:620.800000pt;}
.x116_c00311{left:622.533333pt;}
.x12c_c00311{left:623.600000pt;}
.x2f_c00311{left:627.333333pt;}
.x22_c00311{left:631.200000pt;}
.x107_c00311{left:632.933333pt;}
.x83_c00311{left:634.266667pt;}
.x5f_c00311{left:637.733333pt;}
.xef_c00311{left:638.800000pt;}
.x50_c00311{left:640.533333pt;}
.x6c_c00311{left:641.866667pt;}
.x10f_c00311{left:642.933333pt;}
.x12_c00311{left:644.400000pt;}
.xd0_c00311{left:645.333333pt;}
.xb6_c00311{left:646.800000pt;}
.x117_c00311{left:647.866667pt;}
.x23_c00311{left:649.733333pt;}
.xe1_c00311{left:650.933333pt;}
.x84_c00311{left:652.133333pt;}
.xf0_c00311{left:656.666667pt;}
.x2_c00311{left:659.200000pt;}
.xdc_c00311{left:662.266667pt;}
.x108_c00311{left:664.000000pt;}
.x13_c00311{left:664.933333pt;}
.x51_c00311{left:665.866667pt;}
.xfd_c00311{left:668.933333pt;}
.x85_c00311{left:673.200000pt;}
}





/* 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_c00312 {
    display:none;
  }
  .loading-indicator_c00312.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00312 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_c00312 { 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_c00312" -> "#page-container .classname_c00312")
 */
.pf_c00312 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00312 { /* 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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00312 { /* 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_c00312 { /* 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_c00312 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00312 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00312 {overflow:visible;}
  }
}
.c_c00312 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00312 { /* 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_c00312:after { /* webkit #35443 */
  content: '';
}
.t_c00312:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00312 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 */
}
.__c00312 { /* 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_c00312 { /* info for Javascript */
  display:none;
}
.l_c00312 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00312 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00312 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00312: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_c00312 {
    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_c00312.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00312.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_c00312 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00312{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00312;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.000000;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;}
.mab_c00312{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mba_c00312{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00312{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00312{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00312{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00312{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00312{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00312{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00312{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00312{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m60_c00312{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00312{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00312{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00312{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m16_c00312{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00312{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb_c00312{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00312{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m82_c00312{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m67_c00312{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mad_c00312{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00312{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00312{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00312{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00312{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00312{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00312{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00312{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m91_c00312{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00312{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mae_c00312{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m20_c00312{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00312{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.me_c00312{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma_c00312{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m29_c00312{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m43_c00312{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mac_c00312{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m48_c00312{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m22_c00312{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m25_c00312{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m37_c00312{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00312{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m73_c00312{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00312{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00312{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m14_c00312{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m30_c00312{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00312{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m58_c00312{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m21_c00312{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00312{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m34_c00312{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00312{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mc_c00312{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maa_c00312{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00312{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m17_c00312{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00312{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00312{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00312{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m59_c00312{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m50_c00312{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m39_c00312{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00312{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00312{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m66_c00312{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00312{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00312{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.maf_c00312{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m38_c00312{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m56_c00312{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m53_c00312{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00312{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00312{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00312{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m76_c00312{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00312{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m69_c00312{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m32_c00312{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m45_c00312{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00312{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00312{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m85_c00312{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m23_c00312{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m77_c00312{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00312{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00312{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m97_c00312{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00312{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m80_c00312{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m36_c00312{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00312{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m83_c00312{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m70_c00312{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m15_c00312{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);}
.m5c_c00312{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m94_c00312{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00312{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m64_c00312{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2_c00312{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m61_c00312{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00312{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00312{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m95_c00312{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m27_c00312{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00312{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00312{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00312{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m26_c00312{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m40_c00312{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m75_c00312{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00312{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00312{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m62_c00312{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m19_c00312{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m13_c00312{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00312{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00312{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m44_c00312{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00312{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m35_c00312{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00312{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m28_c00312{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00312{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m71_c00312{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00312{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00312{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m24_c00312{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00312{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00312{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m42_c00312{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c00312{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00312{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00312{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m55_c00312{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00312{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00312{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00312{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00312{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m72_c00312{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m57_c00312{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m87_c00312{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00312{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00312{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00312{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m49_c00312{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00312{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m86_c00312{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00312{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m10_c00312{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00312{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.md_c00312{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00312{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m41_c00312{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m52_c00312{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m99_c00312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m74_c00312{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m93_c00312{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m12_c00312{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00312{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m98_c00312{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m84_c00312{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00312{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m46_c00312{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m51_c00312{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00312{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m31_c00312{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00312{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m54_c00312{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m78_c00312{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00312{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m18_c00312{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m90_c00312{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mf_c00312{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m79_c00312{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00312{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m96_c00312{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00312{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00312{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m68_c00312{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m89_c00312{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00312{transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331000,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m81_c00312{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m92_c00312{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00312{vertical-align:0.000000px;}
.ls0_c00312{letter-spacing:0.000000px;}
.sc__c00312{text-shadow:none;}
.sc0_c00312{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__c00312{-webkit-text-stroke:0px transparent;}
.sc0_c00312{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00312{word-spacing:-5.875000px;}
.ws4_c00312{word-spacing:-4.680265px;}
.ws1_c00312{word-spacing:-2.875000px;}
.ws9_c00312{word-spacing:0.000000px;}
.ws3_c00312{word-spacing:4.625000px;}
.ws0_c00312{word-spacing:5.721619px;}
.ws6_c00312{word-spacing:6.000000px;}
.ws5_c00312{word-spacing:15.818182px;}
.ws7_c00312{word-spacing:17.483304px;}
.ws2_c00312{word-spacing:19.375000px;}
.fc0_c00312{color:transparent;}
.fs0_c00312{font-size:54.000000px;}
.y0_c00312{bottom:0.000000px;}
.y2d_c00312{bottom:151.500000px;}
.y2c_c00312{bottom:171.300000px;}
.y2b_c00312{bottom:182.850000px;}
.y2a_c00312{bottom:198.300000px;}
.y29_c00312{bottom:230.100000px;}
.y28_c00312{bottom:250.650000px;}
.y27_c00312{bottom:270.450000px;}
.y26_c00312{bottom:290.250000px;}
.y25_c00312{bottom:310.050000px;}
.y24_c00312{bottom:330.150000px;}
.y23_c00312{bottom:349.950000px;}
.y22_c00312{bottom:369.750000px;}
.y21_c00312{bottom:389.550000px;}
.y20_c00312{bottom:409.650000px;}
.y1f_c00312{bottom:429.450000px;}
.y1e_c00312{bottom:449.250000px;}
.y1d_c00312{bottom:469.050000px;}
.y1c_c00312{bottom:488.850000px;}
.y1b_c00312{bottom:509.100000px;}
.y1a_c00312{bottom:528.600000px;}
.y19_c00312{bottom:548.400000px;}
.y18_c00312{bottom:568.200000px;}
.y17_c00312{bottom:588.300000px;}
.y16_c00312{bottom:608.100000px;}
.y15_c00312{bottom:627.900000px;}
.y14_c00312{bottom:648.000000px;}
.y13_c00312{bottom:667.800000px;}
.y12_c00312{bottom:688.200000px;}
.y11_c00312{bottom:708.000000px;}
.y10_c00312{bottom:728.100000px;}
.yf_c00312{bottom:747.900000px;}
.ye_c00312{bottom:768.000000px;}
.yd_c00312{bottom:787.500000px;}
.yc_c00312{bottom:807.300000px;}
.yb_c00312{bottom:827.400000px;}
.ya_c00312{bottom:846.900000px;}
.y9_c00312{bottom:867.000000px;}
.y8_c00312{bottom:886.800000px;}
.y7_c00312{bottom:906.900000px;}
.y6_c00312{bottom:926.700000px;}
.y5_c00312{bottom:946.500000px;}
.y4_c00312{bottom:966.300000px;}
.y3_c00312{bottom:986.400000px;}
.y2_c00312{bottom:1006.200000px;}
.y1_c00312{bottom:1044.750000px;}
.h2_c00312{height:54.000000px;}
.h0_c00312{height:1166.759949px;}
.h1_c00312{height:1167.000000px;}
.w1_c00312{width:913.500000px;}
.w0_c00312{width:913.679993px;}
.x0_c00312{left:0.000000px;}
.x11d_c00312{left:145.950000px;}
.xc2_c00312{left:147.000000px;}
.x1f_c00312{left:148.050000px;}
.x1_c00312{left:149.100000px;}
.xbd_c00312{left:159.150000px;}
.x11e_c00312{left:164.250000px;}
.xf6_c00312{left:165.600000px;}
.xda_c00312{left:168.450000px;}
.xd4_c00312{left:173.400000px;}
.x20_c00312{left:177.600000px;}
.x23_c00312{left:179.250000px;}
.x11a_c00312{left:183.450000px;}
.x31_c00312{left:185.250000px;}
.xbe_c00312{left:187.950000px;}
.xf9_c00312{left:190.950000px;}
.xa0_c00312{left:192.750000px;}
.x4d_c00312{left:195.450000px;}
.x12b_c00312{left:196.800000px;}
.xdb_c00312{left:198.000000px;}
.x12_c00312{left:199.500000px;}
.x10c_c00312{left:201.450000px;}
.xa5_c00312{left:202.800000px;}
.x40_c00312{left:204.450000px;}
.xff_c00312{left:206.550000px;}
.x6e_c00312{left:207.600000px;}
.x79_c00312{left:209.100000px;}
.xb8_c00312{left:210.900000px;}
.x12c_c00312{left:211.950000px;}
.xac_c00312{left:213.750000px;}
.x107_c00312{left:215.250000px;}
.x3_c00312{left:216.450000px;}
.x8b_c00312{left:218.100000px;}
.x99_c00312{left:220.800000px;}
.x24_c00312{left:222.750000px;}
.x41_c00312{left:226.050000px;}
.x32_c00312{left:227.400000px;}
.xa1_c00312{left:229.050000px;}
.x127_c00312{left:230.850000px;}
.x21_c00312{left:231.900000px;}
.x93_c00312{left:233.250000px;}
.x58_c00312{left:234.600000px;}
.x4_c00312{left:237.000000px;}
.x13_c00312{left:238.800000px;}
.x7a_c00312{left:241.800000px;}
.x100_c00312{left:243.300000px;}
.xe8_c00312{left:244.500000px;}
.xbf_c00312{left:246.600000px;}
.x33_c00312{left:248.700000px;}
.x22_c00312{left:251.400000px;}
.x133_c00312{left:252.750000px;}
.x108_c00312{left:253.800000px;}
.x4e_c00312{left:254.850000px;}
.xdc_c00312{left:256.650000px;}
.xe0_c00312{left:257.700000px;}
.x64_c00312{left:259.200000px;}
.x25_c00312{left:260.550000px;}
.x5_c00312{left:265.050000px;}
.x11f_c00312{left:266.100000px;}
.x8c_c00312{left:267.300000px;}
.x128_c00312{left:268.650000px;}
.xee_c00312{left:270.000000px;}
.xa6_c00312{left:271.200000px;}
.xad_c00312{left:272.850000px;}
.x4f_c00312{left:274.950000px;}
.x103_c00312{left:277.650000px;}
.x14_c00312{left:282.300000px;}
.x82_c00312{left:283.800000px;}
.x7b_c00312{left:287.250000px;}
.xd5_c00312{left:290.100000px;}
.xae_c00312{left:292.950000px;}
.x65_c00312{left:294.450000px;}
.x113_c00312{left:296.250000px;}
.x104_c00312{left:297.450000px;}
.x50_c00312{left:298.650000px;}
.x15_c00312{left:302.400000px;}
.x9a_c00312{left:304.200000px;}
.x34_c00312{left:305.550000px;}
.x6f_c00312{left:308.700000px;}
.xe1_c00312{left:310.200000px;}
.xb9_c00312{left:312.450000px;}
.x26_c00312{left:315.600000px;}
.x83_c00312{left:319.050000px;}
.x116_c00312{left:321.450000px;}
.x94_c00312{left:322.800000px;}
.x66_c00312{left:325.050000px;}
.xcc_c00312{left:327.150000px;}
.xd6_c00312{left:329.400000px;}
.x16_c00312{left:331.500000px;}
.x35_c00312{left:333.600000px;}
.x10d_c00312{left:334.650000px;}
.xa7_c00312{left:335.700000px;}
.x42_c00312{left:337.200000px;}
.x70_c00312{left:338.550000px;}
.xe9_c00312{left:340.200000px;}
.x129_c00312{left:341.850000px;}
.xdd_c00312{left:344.100000px;}
.xef_c00312{left:347.100000px;}
.x11b_c00312{left:348.600000px;}
.x6_c00312{left:349.950000px;}
.x59_c00312{left:355.500000px;}
.x27_c00312{left:356.700000px;}
.x84_c00312{left:358.950000px;}
.x7c_c00312{left:360.000000px;}
.x67_c00312{left:361.350000px;}
.x114_c00312{left:362.550000px;}
.xcd_c00312{left:364.950000px;}
.x95_c00312{left:369.600000px;}
.x7_c00312{left:372.600000px;}
.x130_c00312{left:373.950000px;}
.x109_c00312{left:375.000000px;}
.xaf_c00312{left:376.050000px;}
.x28_c00312{left:377.250000px;}
.x51_c00312{left:378.900000px;}
.x36_c00312{left:380.100000px;}
.x43_c00312{left:382.950000px;}
.xe2_c00312{left:385.050000px;}
.x9b_c00312{left:387.000000px;}
.x131_c00312{left:389.850000px;}
.x17_c00312{left:392.700000px;}
.xb0_c00312{left:394.050000px;}
.x101_c00312{left:395.100000px;}
.xde_c00312{left:397.350000px;}
.x37_c00312{left:400.650000px;}
.xba_c00312{left:402.000000px;}
.xce_c00312{left:407.400000px;}
.x29_c00312{left:408.900000px;}
.x18_c00312{left:410.700000px;}
.x5a_c00312{left:412.800000px;}
.x10e_c00312{left:414.600000px;}
.xa8_c00312{left:417.450000px;}
.x44_c00312{left:420.450000px;}
.xa2_c00312{left:421.650000px;}
.x117_c00312{left:423.000000px;}
.x68_c00312{left:424.650000px;}
.xc3_c00312{left:426.000000px;}
.x8_c00312{left:429.150000px;}
.x71_c00312{left:430.650000px;}
.x5b_c00312{left:432.300000px;}
.x38_c00312{left:435.150000px;}
.x105_c00312{left:437.100000px;}
.x8d_c00312{left:440.550000px;}
.x19_c00312{left:442.800000px;}
.xa9_c00312{left:445.200000px;}
.x2_c00312{left:446.850000px;}
.x120_c00312{left:447.900000px;}
.x11c_c00312{left:449.400000px;}
.xc4_c00312{left:450.900000px;}
.x96_c00312{left:453.150000px;}
.xf0_c00312{left:454.800000px;}
.x9_c00312{left:456.150000px;}
.x106_c00312{left:457.200000px;}
.x1a_c00312{left:458.250000px;}
.x45_c00312{left:460.050000px;}
.x5c_c00312{left:461.850000px;}
.x115_c00312{left:467.550000px;}
.xcf_c00312{left:471.450000px;}
.xc0_c00312{left:475.500000px;}
.xc5_c00312{left:477.150000px;}
.xd7_c00312{left:478.500000px;}
.x2a_c00312{left:480.150000px;}
.xf1_c00312{left:482.850000px;}
.x52_c00312{left:484.350000px;}
.x85_c00312{left:485.400000px;}
.xa_c00312{left:487.050000px;}
.xb1_c00312{left:488.100000px;}
.x12d_c00312{left:489.150000px;}
.xd0_c00312{left:491.250000px;}
.x46_c00312{left:492.450000px;}
.xfa_c00312{left:495.000000px;}
.x72_c00312{left:496.200000px;}
.xe3_c00312{left:499.950000px;}
.xaa_c00312{left:502.500000px;}
.xdf_c00312{left:503.550000px;}
.xd8_c00312{left:504.750000px;}
.x5d_c00312{left:508.350000px;}
.x121_c00312{left:509.400000px;}
.x69_c00312{left:511.800000px;}
.x10a_c00312{left:513.600000px;}
.xb_c00312{left:515.550000px;}
.x47_c00312{left:517.950000px;}
.x12a_c00312{left:519.600000px;}
.x39_c00312{left:526.200000px;}
.xd1_c00312{left:529.350000px;}
.x122_c00312{left:530.700000px;}
.x53_c00312{left:532.200000px;}
.xc6_c00312{left:534.450000px;}
.x126_c00312{left:535.650000px;}
.x5e_c00312{left:536.850000px;}
.x48_c00312{left:540.600000px;}
.xab_c00312{left:542.100000px;}
.x7d_c00312{left:543.600000px;}
.xc_c00312{left:546.900000px;}
.x2b_c00312{left:548.550000px;}
.x3a_c00312{left:549.600000px;}
.xea_c00312{left:552.000000px;}
.x73_c00312{left:555.000000px;}
.x54_c00312{left:557.100000px;}
.x12e_c00312{left:559.650000px;}
.xb2_c00312{left:560.850000px;}
.xfb_c00312{left:565.500000px;}
.xd_c00312{left:566.700000px;}
.x86_c00312{left:568.500000px;}
.x8e_c00312{left:571.650000px;}
.x5f_c00312{left:573.900000px;}
.x123_c00312{left:574.950000px;}
.xf5_c00312{left:576.300000px;}
.x3b_c00312{left:577.350000px;}
.x134_c00312{left:580.800000px;}
.xbb_c00312{left:582.750000px;}
.xa3_c00312{left:586.200000px;}
.x132_c00312{left:588.300000px;}
.x6a_c00312{left:589.950000px;}
.x10b_c00312{left:594.300000px;}
.x1b_c00312{left:595.800000px;}
.x2c_c00312{left:598.650000px;}
.x135_c00312{left:600.300000px;}
.xc7_c00312{left:603.150000px;}
.x124_c00312{left:606.600000px;}
.x87_c00312{left:607.800000px;}
.x136_c00312{left:609.600000px;}
.x74_c00312{left:611.100000px;}
.x12f_c00312{left:612.150000px;}
.x1c_c00312{left:613.500000px;}
.xe4_c00312{left:615.900000px;}
.xc8_c00312{left:618.300000px;}
.x49_c00312{left:619.500000px;}
.x9c_c00312{left:620.700000px;}
.x7e_c00312{left:621.750000px;}
.x2d_c00312{left:622.800000px;}
.x3c_c00312{left:624.900000px;}
.x10f_c00312{left:626.250000px;}
.x88_c00312{left:627.600000px;}
.xb3_c00312{left:631.800000px;}
.xeb_c00312{left:634.800000px;}
.x60_c00312{left:635.850000px;}
.x3d_c00312{left:639.600000px;}
.x8f_c00312{left:641.550000px;}
.x9d_c00312{left:644.100000px;}
.x2e_c00312{left:649.500000px;}
.xe_c00312{left:652.800000px;}
.x97_c00312{left:654.300000px;}
.x89_c00312{left:655.350000px;}
.x55_c00312{left:657.150000px;}
.xd9_c00312{left:658.500000px;}
.x61_c00312{left:659.550000px;}
.x6b_c00312{left:663.150000px;}
.xb4_c00312{left:664.500000px;}
.xf2_c00312{left:666.000000px;}
.xd2_c00312{left:667.200000px;}
.x110_c00312{left:668.400000px;}
.xec_c00312{left:670.050000px;}
.x3e_c00312{left:672.750000px;}
.x9e_c00312{left:674.700000px;}
.xc9_c00312{left:676.200000px;}
.xf_c00312{left:677.250000px;}
.xa4_c00312{left:678.300000px;}
.xb5_c00312{left:680.400000px;}
.x7f_c00312{left:681.900000px;}
.x125_c00312{left:684.450000px;}
.x62_c00312{left:687.600000px;}
.x4a_c00312{left:688.950000px;}
.x111_c00312{left:690.750000px;}
.xfc_c00312{left:693.600000px;}
.xca_c00312{left:696.300000px;}
.x75_c00312{left:700.050000px;}
.x8a_c00312{left:701.850000px;}
.x2f_c00312{left:705.300000px;}
.x4b_c00312{left:709.500000px;}
.x6c_c00312{left:711.000000px;}
.xfd_c00312{left:714.150000px;}
.x118_c00312{left:715.800000px;}
.xe5_c00312{left:717.000000px;}
.x56_c00312{left:721.650000px;}
.xf7_c00312{left:723.600000px;}
.xf3_c00312{left:726.150000px;}
.xcb_c00312{left:727.650000px;}
.x76_c00312{left:729.600000px;}
.x137_c00312{left:730.650000px;}
.xb6_c00312{left:732.300000px;}
.x90_c00312{left:733.650000px;}
.x80_c00312{left:734.850000px;}
.xe6_c00312{left:736.500000px;}
.x6d_c00312{left:737.700000px;}
.x119_c00312{left:738.900000px;}
.x3f_c00312{left:740.850000px;}
.x77_c00312{left:742.500000px;}
.xed_c00312{left:743.550000px;}
.x1d_c00312{left:745.950000px;}
.x63_c00312{left:751.350000px;}
.x81_c00312{left:753.600000px;}
.x91_c00312{left:756.000000px;}
.x138_c00312{left:758.400000px;}
.x10_c00312{left:762.150000px;}
.x1e_c00312{left:763.950000px;}
.x4c_c00312{left:765.000000px;}
.xe7_c00312{left:768.600000px;}
.xf4_c00312{left:771.150000px;}
.x78_c00312{left:773.850000px;}
.x98_c00312{left:774.900000px;}
.x102_c00312{left:776.250000px;}
.x9f_c00312{left:777.300000px;}
.xb7_c00312{left:784.800000px;}
.x30_c00312{left:786.000000px;}
.x112_c00312{left:787.200000px;}
.xbc_c00312{left:788.550000px;}
.xf8_c00312{left:789.900000px;}
.xfe_c00312{left:793.650000px;}
.x11_c00312{left:795.600000px;}
.x92_c00312{left:796.650000px;}
.xd3_c00312{left:798.300000px;}
.xc1_c00312{left:802.200000px;}
.x57_c00312{left:804.150000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws8_c00312{word-spacing:-5.222222pt;}
.ws4_c00312{word-spacing:-4.160235pt;}
.ws1_c00312{word-spacing:-2.555556pt;}
.ws9_c00312{word-spacing:0.000000pt;}
.ws3_c00312{word-spacing:4.111111pt;}
.ws0_c00312{word-spacing:5.085884pt;}
.ws6_c00312{word-spacing:5.333333pt;}
.ws5_c00312{word-spacing:14.060606pt;}
.ws7_c00312{word-spacing:15.540715pt;}
.ws2_c00312{word-spacing:17.222222pt;}
.fs0_c00312{font-size:48.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y2d_c00312{bottom:134.666667pt;}
.y2c_c00312{bottom:152.266667pt;}
.y2b_c00312{bottom:162.533333pt;}
.y2a_c00312{bottom:176.266667pt;}
.y29_c00312{bottom:204.533333pt;}
.y28_c00312{bottom:222.800000pt;}
.y27_c00312{bottom:240.400000pt;}
.y26_c00312{bottom:258.000000pt;}
.y25_c00312{bottom:275.600000pt;}
.y24_c00312{bottom:293.466667pt;}
.y23_c00312{bottom:311.066667pt;}
.y22_c00312{bottom:328.666667pt;}
.y21_c00312{bottom:346.266667pt;}
.y20_c00312{bottom:364.133333pt;}
.y1f_c00312{bottom:381.733333pt;}
.y1e_c00312{bottom:399.333333pt;}
.y1d_c00312{bottom:416.933333pt;}
.y1c_c00312{bottom:434.533333pt;}
.y1b_c00312{bottom:452.533333pt;}
.y1a_c00312{bottom:469.866667pt;}
.y19_c00312{bottom:487.466667pt;}
.y18_c00312{bottom:505.066667pt;}
.y17_c00312{bottom:522.933333pt;}
.y16_c00312{bottom:540.533333pt;}
.y15_c00312{bottom:558.133333pt;}
.y14_c00312{bottom:576.000000pt;}
.y13_c00312{bottom:593.600000pt;}
.y12_c00312{bottom:611.733333pt;}
.y11_c00312{bottom:629.333333pt;}
.y10_c00312{bottom:647.200000pt;}
.yf_c00312{bottom:664.800000pt;}
.ye_c00312{bottom:682.666667pt;}
.yd_c00312{bottom:700.000000pt;}
.yc_c00312{bottom:717.600000pt;}
.yb_c00312{bottom:735.466667pt;}
.ya_c00312{bottom:752.800000pt;}
.y9_c00312{bottom:770.666667pt;}
.y8_c00312{bottom:788.266667pt;}
.y7_c00312{bottom:806.133333pt;}
.y6_c00312{bottom:823.733333pt;}
.y5_c00312{bottom:841.333333pt;}
.y4_c00312{bottom:858.933333pt;}
.y3_c00312{bottom:876.800000pt;}
.y2_c00312{bottom:894.400000pt;}
.y1_c00312{bottom:928.666667pt;}
.h2_c00312{height:48.000000pt;}
.h0_c00312{height:1037.119955pt;}
.h1_c00312{height:1037.333333pt;}
.w1_c00312{width:812.000000pt;}
.w0_c00312{width:812.159993pt;}
.x0_c00312{left:0.000000pt;}
.x11d_c00312{left:129.733333pt;}
.xc2_c00312{left:130.666667pt;}
.x1f_c00312{left:131.600000pt;}
.x1_c00312{left:132.533333pt;}
.xbd_c00312{left:141.466667pt;}
.x11e_c00312{left:146.000000pt;}
.xf6_c00312{left:147.200000pt;}
.xda_c00312{left:149.733333pt;}
.xd4_c00312{left:154.133333pt;}
.x20_c00312{left:157.866667pt;}
.x23_c00312{left:159.333333pt;}
.x11a_c00312{left:163.066667pt;}
.x31_c00312{left:164.666667pt;}
.xbe_c00312{left:167.066667pt;}
.xf9_c00312{left:169.733333pt;}
.xa0_c00312{left:171.333333pt;}
.x4d_c00312{left:173.733333pt;}
.x12b_c00312{left:174.933333pt;}
.xdb_c00312{left:176.000000pt;}
.x12_c00312{left:177.333333pt;}
.x10c_c00312{left:179.066667pt;}
.xa5_c00312{left:180.266667pt;}
.x40_c00312{left:181.733333pt;}
.xff_c00312{left:183.600000pt;}
.x6e_c00312{left:184.533333pt;}
.x79_c00312{left:185.866667pt;}
.xb8_c00312{left:187.466667pt;}
.x12c_c00312{left:188.400000pt;}
.xac_c00312{left:190.000000pt;}
.x107_c00312{left:191.333333pt;}
.x3_c00312{left:192.400000pt;}
.x8b_c00312{left:193.866667pt;}
.x99_c00312{left:196.266667pt;}
.x24_c00312{left:198.000000pt;}
.x41_c00312{left:200.933333pt;}
.x32_c00312{left:202.133333pt;}
.xa1_c00312{left:203.600000pt;}
.x127_c00312{left:205.200000pt;}
.x21_c00312{left:206.133333pt;}
.x93_c00312{left:207.333333pt;}
.x58_c00312{left:208.533333pt;}
.x4_c00312{left:210.666667pt;}
.x13_c00312{left:212.266667pt;}
.x7a_c00312{left:214.933333pt;}
.x100_c00312{left:216.266667pt;}
.xe8_c00312{left:217.333333pt;}
.xbf_c00312{left:219.200000pt;}
.x33_c00312{left:221.066667pt;}
.x22_c00312{left:223.466667pt;}
.x133_c00312{left:224.666667pt;}
.x108_c00312{left:225.600000pt;}
.x4e_c00312{left:226.533333pt;}
.xdc_c00312{left:228.133333pt;}
.xe0_c00312{left:229.066667pt;}
.x64_c00312{left:230.400000pt;}
.x25_c00312{left:231.600000pt;}
.x5_c00312{left:235.600000pt;}
.x11f_c00312{left:236.533333pt;}
.x8c_c00312{left:237.600000pt;}
.x128_c00312{left:238.800000pt;}
.xee_c00312{left:240.000000pt;}
.xa6_c00312{left:241.066667pt;}
.xad_c00312{left:242.533333pt;}
.x4f_c00312{left:244.400000pt;}
.x103_c00312{left:246.800000pt;}
.x14_c00312{left:250.933333pt;}
.x82_c00312{left:252.266667pt;}
.x7b_c00312{left:255.333333pt;}
.xd5_c00312{left:257.866667pt;}
.xae_c00312{left:260.400000pt;}
.x65_c00312{left:261.733333pt;}
.x113_c00312{left:263.333333pt;}
.x104_c00312{left:264.400000pt;}
.x50_c00312{left:265.466667pt;}
.x15_c00312{left:268.800000pt;}
.x9a_c00312{left:270.400000pt;}
.x34_c00312{left:271.600000pt;}
.x6f_c00312{left:274.400000pt;}
.xe1_c00312{left:275.733333pt;}
.xb9_c00312{left:277.733333pt;}
.x26_c00312{left:280.533333pt;}
.x83_c00312{left:283.600000pt;}
.x116_c00312{left:285.733333pt;}
.x94_c00312{left:286.933333pt;}
.x66_c00312{left:288.933333pt;}
.xcc_c00312{left:290.800000pt;}
.xd6_c00312{left:292.800000pt;}
.x16_c00312{left:294.666667pt;}
.x35_c00312{left:296.533333pt;}
.x10d_c00312{left:297.466667pt;}
.xa7_c00312{left:298.400000pt;}
.x42_c00312{left:299.733333pt;}
.x70_c00312{left:300.933333pt;}
.xe9_c00312{left:302.400000pt;}
.x129_c00312{left:303.866667pt;}
.xdd_c00312{left:305.866667pt;}
.xef_c00312{left:308.533333pt;}
.x11b_c00312{left:309.866667pt;}
.x6_c00312{left:311.066667pt;}
.x59_c00312{left:316.000000pt;}
.x27_c00312{left:317.066667pt;}
.x84_c00312{left:319.066667pt;}
.x7c_c00312{left:320.000000pt;}
.x67_c00312{left:321.200000pt;}
.x114_c00312{left:322.266667pt;}
.xcd_c00312{left:324.400000pt;}
.x95_c00312{left:328.533333pt;}
.x7_c00312{left:331.200000pt;}
.x130_c00312{left:332.400000pt;}
.x109_c00312{left:333.333333pt;}
.xaf_c00312{left:334.266667pt;}
.x28_c00312{left:335.333333pt;}
.x51_c00312{left:336.800000pt;}
.x36_c00312{left:337.866667pt;}
.x43_c00312{left:340.400000pt;}
.xe2_c00312{left:342.266667pt;}
.x9b_c00312{left:344.000000pt;}
.x131_c00312{left:346.533333pt;}
.x17_c00312{left:349.066667pt;}
.xb0_c00312{left:350.266667pt;}
.x101_c00312{left:351.200000pt;}
.xde_c00312{left:353.200000pt;}
.x37_c00312{left:356.133333pt;}
.xba_c00312{left:357.333333pt;}
.xce_c00312{left:362.133333pt;}
.x29_c00312{left:363.466667pt;}
.x18_c00312{left:365.066667pt;}
.x5a_c00312{left:366.933333pt;}
.x10e_c00312{left:368.533333pt;}
.xa8_c00312{left:371.066667pt;}
.x44_c00312{left:373.733333pt;}
.xa2_c00312{left:374.800000pt;}
.x117_c00312{left:376.000000pt;}
.x68_c00312{left:377.466667pt;}
.xc3_c00312{left:378.666667pt;}
.x8_c00312{left:381.466667pt;}
.x71_c00312{left:382.800000pt;}
.x5b_c00312{left:384.266667pt;}
.x38_c00312{left:386.800000pt;}
.x105_c00312{left:388.533333pt;}
.x8d_c00312{left:391.600000pt;}
.x19_c00312{left:393.600000pt;}
.xa9_c00312{left:395.733333pt;}
.x2_c00312{left:397.200000pt;}
.x120_c00312{left:398.133333pt;}
.x11c_c00312{left:399.466667pt;}
.xc4_c00312{left:400.800000pt;}
.x96_c00312{left:402.800000pt;}
.xf0_c00312{left:404.266667pt;}
.x9_c00312{left:405.466667pt;}
.x106_c00312{left:406.400000pt;}
.x1a_c00312{left:407.333333pt;}
.x45_c00312{left:408.933333pt;}
.x5c_c00312{left:410.533333pt;}
.x115_c00312{left:415.600000pt;}
.xcf_c00312{left:419.066667pt;}
.xc0_c00312{left:422.666667pt;}
.xc5_c00312{left:424.133333pt;}
.xd7_c00312{left:425.333333pt;}
.x2a_c00312{left:426.800000pt;}
.xf1_c00312{left:429.200000pt;}
.x52_c00312{left:430.533333pt;}
.x85_c00312{left:431.466667pt;}
.xa_c00312{left:432.933333pt;}
.xb1_c00312{left:433.866667pt;}
.x12d_c00312{left:434.800000pt;}
.xd0_c00312{left:436.666667pt;}
.x46_c00312{left:437.733333pt;}
.xfa_c00312{left:440.000000pt;}
.x72_c00312{left:441.066667pt;}
.xe3_c00312{left:444.400000pt;}
.xaa_c00312{left:446.666667pt;}
.xdf_c00312{left:447.600000pt;}
.xd8_c00312{left:448.666667pt;}
.x5d_c00312{left:451.866667pt;}
.x121_c00312{left:452.800000pt;}
.x69_c00312{left:454.933333pt;}
.x10a_c00312{left:456.533333pt;}
.xb_c00312{left:458.266667pt;}
.x47_c00312{left:460.400000pt;}
.x12a_c00312{left:461.866667pt;}
.x39_c00312{left:467.733333pt;}
.xd1_c00312{left:470.533333pt;}
.x122_c00312{left:471.733333pt;}
.x53_c00312{left:473.066667pt;}
.xc6_c00312{left:475.066667pt;}
.x126_c00312{left:476.133333pt;}
.x5e_c00312{left:477.200000pt;}
.x48_c00312{left:480.533333pt;}
.xab_c00312{left:481.866667pt;}
.x7d_c00312{left:483.200000pt;}
.xc_c00312{left:486.133333pt;}
.x2b_c00312{left:487.600000pt;}
.x3a_c00312{left:488.533333pt;}
.xea_c00312{left:490.666667pt;}
.x73_c00312{left:493.333333pt;}
.x54_c00312{left:495.200000pt;}
.x12e_c00312{left:497.466667pt;}
.xb2_c00312{left:498.533333pt;}
.xfb_c00312{left:502.666667pt;}
.xd_c00312{left:503.733333pt;}
.x86_c00312{left:505.333333pt;}
.x8e_c00312{left:508.133333pt;}
.x5f_c00312{left:510.133333pt;}
.x123_c00312{left:511.066667pt;}
.xf5_c00312{left:512.266667pt;}
.x3b_c00312{left:513.200000pt;}
.x134_c00312{left:516.266667pt;}
.xbb_c00312{left:518.000000pt;}
.xa3_c00312{left:521.066667pt;}
.x132_c00312{left:522.933333pt;}
.x6a_c00312{left:524.400000pt;}
.x10b_c00312{left:528.266667pt;}
.x1b_c00312{left:529.600000pt;}
.x2c_c00312{left:532.133333pt;}
.x135_c00312{left:533.600000pt;}
.xc7_c00312{left:536.133333pt;}
.x124_c00312{left:539.200000pt;}
.x87_c00312{left:540.266667pt;}
.x136_c00312{left:541.866667pt;}
.x74_c00312{left:543.200000pt;}
.x12f_c00312{left:544.133333pt;}
.x1c_c00312{left:545.333333pt;}
.xe4_c00312{left:547.466667pt;}
.xc8_c00312{left:549.600000pt;}
.x49_c00312{left:550.666667pt;}
.x9c_c00312{left:551.733333pt;}
.x7e_c00312{left:552.666667pt;}
.x2d_c00312{left:553.600000pt;}
.x3c_c00312{left:555.466667pt;}
.x10f_c00312{left:556.666667pt;}
.x88_c00312{left:557.866667pt;}
.xb3_c00312{left:561.600000pt;}
.xeb_c00312{left:564.266667pt;}
.x60_c00312{left:565.200000pt;}
.x3d_c00312{left:568.533333pt;}
.x8f_c00312{left:570.266667pt;}
.x9d_c00312{left:572.533333pt;}
.x2e_c00312{left:577.333333pt;}
.xe_c00312{left:580.266667pt;}
.x97_c00312{left:581.600000pt;}
.x89_c00312{left:582.533333pt;}
.x55_c00312{left:584.133333pt;}
.xd9_c00312{left:585.333333pt;}
.x61_c00312{left:586.266667pt;}
.x6b_c00312{left:589.466667pt;}
.xb4_c00312{left:590.666667pt;}
.xf2_c00312{left:592.000000pt;}
.xd2_c00312{left:593.066667pt;}
.x110_c00312{left:594.133333pt;}
.xec_c00312{left:595.600000pt;}
.x3e_c00312{left:598.000000pt;}
.x9e_c00312{left:599.733333pt;}
.xc9_c00312{left:601.066667pt;}
.xf_c00312{left:602.000000pt;}
.xa4_c00312{left:602.933333pt;}
.xb5_c00312{left:604.800000pt;}
.x7f_c00312{left:606.133333pt;}
.x125_c00312{left:608.400000pt;}
.x62_c00312{left:611.200000pt;}
.x4a_c00312{left:612.400000pt;}
.x111_c00312{left:614.000000pt;}
.xfc_c00312{left:616.533333pt;}
.xca_c00312{left:618.933333pt;}
.x75_c00312{left:622.266667pt;}
.x8a_c00312{left:623.866667pt;}
.x2f_c00312{left:626.933333pt;}
.x4b_c00312{left:630.666667pt;}
.x6c_c00312{left:632.000000pt;}
.xfd_c00312{left:634.800000pt;}
.x118_c00312{left:636.266667pt;}
.xe5_c00312{left:637.333333pt;}
.x56_c00312{left:641.466667pt;}
.xf7_c00312{left:643.200000pt;}
.xf3_c00312{left:645.466667pt;}
.xcb_c00312{left:646.800000pt;}
.x76_c00312{left:648.533333pt;}
.x137_c00312{left:649.466667pt;}
.xb6_c00312{left:650.933333pt;}
.x90_c00312{left:652.133333pt;}
.x80_c00312{left:653.200000pt;}
.xe6_c00312{left:654.666667pt;}
.x6d_c00312{left:655.733333pt;}
.x119_c00312{left:656.800000pt;}
.x3f_c00312{left:658.533333pt;}
.x77_c00312{left:660.000000pt;}
.xed_c00312{left:660.933333pt;}
.x1d_c00312{left:663.066667pt;}
.x63_c00312{left:667.866667pt;}
.x81_c00312{left:669.866667pt;}
.x91_c00312{left:672.000000pt;}
.x138_c00312{left:674.133333pt;}
.x10_c00312{left:677.466667pt;}
.x1e_c00312{left:679.066667pt;}
.x4c_c00312{left:680.000000pt;}
.xe7_c00312{left:683.200000pt;}
.xf4_c00312{left:685.466667pt;}
.x78_c00312{left:687.866667pt;}
.x98_c00312{left:688.800000pt;}
.x102_c00312{left:690.000000pt;}
.x9f_c00312{left:690.933333pt;}
.xb7_c00312{left:697.600000pt;}
.x30_c00312{left:698.666667pt;}
.x112_c00312{left:699.733333pt;}
.xbc_c00312{left:700.933333pt;}
.xf8_c00312{left:702.133333pt;}
.xfe_c00312{left:705.466667pt;}
.x11_c00312{left:707.200000pt;}
.x92_c00312{left:708.133333pt;}
.xd3_c00312{left:709.600000pt;}
.xc1_c00312{left:713.066667pt;}
.x57_c00312{left:714.800000pt;}
}





/* 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_c00313 {
    display:none;
  }
  .loading-indicator_c00313.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00313 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_c00313 { 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_c00313" -> "#page-container .classname_c00313")
 */
.pf_c00313 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00313 { /* 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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00313 { /* 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_c00313 { /* 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_c00313 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00313 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00313 {overflow:visible;}
  }
}
.c_c00313 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00313 { /* 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_c00313:after { /* webkit #35443 */
  content: '';
}
.t_c00313:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00313 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 */
}
.__c00313 { /* 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_c00313 { /* info for Javascript */
  display:none;
}
.l_c00313 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00313 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00313 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00313: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_c00313 {
    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_c00313.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00313.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_c00313 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00313{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00313;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.000000;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;}
.m53_c00313{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00313{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m80_c00313{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00313{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00313{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m82_c00313{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m77_c00313{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m23_c00313{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m87_c00313{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00313{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m20_c00313{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00313{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m65_c00313{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m84_c00313{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m64_c00313{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m78_c00313{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m22_c00313{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00313{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00313{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m24_c00313{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00313{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00313{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m88_c00313{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m89_c00313{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m45_c00313{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00313{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m46_c00313{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00313{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m26_c00313{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00313{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00313{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m48_c00313{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00313{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m28_c00313{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m18_c00313{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m10_c00313{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m86_c00313{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00313{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m27_c00313{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00313{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m67_c00313{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00313{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00313{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m35_c00313{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m33_c00313{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00313{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m68_c00313{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00313{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00313{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00313{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m43_c00313{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m62_c00313{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00313{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00313{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m76_c00313{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00313{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00313{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m96_c00313{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00313{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m66_c00313{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00313{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m75_c00313{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m30_c00313{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00313{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m42_c00313{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00313{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m94_c00313{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m16_c00313{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00313{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mc_c00313{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00313{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m85_c00313{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m19_c00313{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m34_c00313{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00313{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00313{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00313{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m72_c00313{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00313{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00313{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00313{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00313{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00313{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00313{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00313{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m59_c00313{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00313{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m70_c00313{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00313{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00313{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00313{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m21_c00313{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m58_c00313{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00313{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mf_c00313{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m32_c00313{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00313{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m61_c00313{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00313{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m83_c00313{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00313{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00313{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m91_c00313{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00313{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00313{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00313{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m95_c00313{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m73_c00313{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00313{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m40_c00313{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00313{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma_c00313{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m79_c00313{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m12_c00313{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m38_c00313{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m37_c00313{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00313{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m47_c00313{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m55_c00313{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00313{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);}
.m1d_c00313{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me_c00313{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m57_c00313{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m29_c00313{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m56_c00313{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00313{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m51_c00313{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m90_c00313{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m41_c00313{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00313{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m25_c00313{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m15_c00313{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00313{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00313{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00313{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00313{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00313{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m54_c00313{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m99_c00313{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m50_c00313{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m14_c00313{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m49_c00313{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m98_c00313{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m0_c00313{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m52_c00313{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m97_c00313{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m17_c00313{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00313{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m60_c00313{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m9_c00313{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00313{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00313{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00313{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00313{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8_c00313{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m69_c00313{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m3_c00313{transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);}
.m6_c00313{transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);}
.m1_c00313{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m7_c00313{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m4_c00313{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m5_c00313{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.v0_c00313{vertical-align:0.000000px;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{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__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00313{word-spacing:-5.128205px;}
.ws6_c00313{word-spacing:0.000000px;}
.ws0_c00313{word-spacing:0.277778px;}
.ws5_c00313{word-spacing:6.527778px;}
.ws4_c00313{word-spacing:6.796875px;}
.ws1_c00313{word-spacing:13.194444px;}
.ws2_c00313{word-spacing:13.750000px;}
._1_c00313{width:27.692308px;}
._0_c00313{width:38.194444px;}
.fc0_c00313{color:transparent;}
.fs1_c00313{font-size:42.000000px;}
.fs2_c00313{font-size:54.000000px;}
.fs0_c00313{font-size:60.000000px;}
.y0_c00313{bottom:0.000000px;}
.y23_c00313{bottom:145.050000px;}
.y22_c00313{bottom:172.500000px;}
.y21_c00313{bottom:193.050000px;}
.y20_c00313{bottom:212.100000px;}
.y1f_c00313{bottom:232.200000px;}
.y1e_c00313{bottom:252.300000px;}
.y1d_c00313{bottom:272.550000px;}
.y1c_c00313{bottom:292.650000px;}
.y1b_c00313{bottom:312.450000px;}
.y1a_c00313{bottom:332.700000px;}
.y19_c00313{bottom:352.500000px;}
.y18_c00313{bottom:372.000000px;}
.y17_c00313{bottom:392.100000px;}
.y16_c00313{bottom:411.900000px;}
.y15_c00313{bottom:431.700000px;}
.y14_c00313{bottom:451.500000px;}
.y13_c00313{bottom:471.600000px;}
.y12_c00313{bottom:491.700000px;}
.y11_c00313{bottom:512.250000px;}
.y10_c00313{bottom:532.350000px;}
.yf_c00313{bottom:552.150000px;}
.ye_c00313{bottom:571.950000px;}
.yd_c00313{bottom:592.500000px;}
.yc_c00313{bottom:612.000000px;}
.yb_c00313{bottom:632.100000px;}
.ya_c00313{bottom:652.200000px;}
.y9_c00313{bottom:672.000000px;}
.y8_c00313{bottom:692.100000px;}
.y7_c00313{bottom:712.200000px;}
.y6_c00313{bottom:732.300000px;}
.y5_c00313{bottom:752.100000px;}
.y4_c00313{bottom:772.200000px;}
.y3_c00313{bottom:805.350000px;}
.y2_c00313{bottom:838.050000px;}
.y1_c00313{bottom:1041.450000px;}
.h3_c00313{height:42.000000px;}
.h4_c00313{height:54.000000px;}
.h2_c00313{height:60.000000px;}
.h0_c00313{height:1166.759949px;}
.h1_c00313{height:1167.000000px;}
.w1_c00313{width:913.500000px;}
.w0_c00313{width:913.679993px;}
.x0_c00313{left:0.000000px;}
.x105_c00313{left:99.900000px;}
.x8d_c00313{left:101.100000px;}
.x47_c00313{left:102.300000px;}
.xa_c00313{left:103.350000px;}
.xcc_c00313{left:118.200000px;}
.x6b_c00313{left:119.850000px;}
.x18_c00313{left:123.150000px;}
.x32_c00313{left:128.250000px;}
.xc3_c00313{left:129.600000px;}
.xfe_c00313{left:131.100000px;}
.xa4_c00313{left:132.450000px;}
.x106_c00313{left:134.100000px;}
.x5d_c00313{left:135.450000px;}
.x82_c00313{left:136.650000px;}
.xb_c00313{left:139.350000px;}
.x111_c00313{left:140.400000px;}
.x6c_c00313{left:145.350000px;}
.xf0_c00313{left:153.900000px;}
.x97_c00313{left:156.150000px;}
.xb4_c00313{left:158.400000px;}
.xc4_c00313{left:163.500000px;}
.x3e_c00313{left:166.500000px;}
.xc_c00313{left:169.200000px;}
.xe9_c00313{left:172.350000px;}
.x54_c00313{left:174.150000px;}
.x78_c00313{left:176.700000px;}
.x83_c00313{left:177.750000px;}
.xdb_c00313{left:179.550000px;}
.x5e_c00313{left:180.750000px;}
.x3f_c00313{left:186.000000px;}
.x25_c00313{left:188.550000px;}
.x19_c00313{left:190.800000px;}
.x118_c00313{left:192.000000px;}
.x6d_c00313{left:193.200000px;}
.x79_c00313{left:196.800000px;}
.xcd_c00313{left:200.250000px;}
.x55_c00313{left:204.750000px;}
.xea_c00313{left:206.850000px;}
.x8e_c00313{left:210.150000px;}
.x48_c00313{left:212.100000px;}
.x40_c00313{left:214.050000px;}
.xac_c00313{left:215.250000px;}
.xd_c00313{left:216.750000px;}
.x98_c00313{left:218.100000px;}
.xdc_c00313{left:219.450000px;}
.x84_c00313{left:221.700000px;}
.x26_c00313{left:223.050000px;}
.x7a_c00313{left:224.850000px;}
.x56_c00313{left:231.000000px;}
.xa5_c00313{left:232.500000px;}
.xb5_c00313{left:234.300000px;}
.x8f_c00313{left:235.350000px;}
.x4_c00313{left:237.300000px;}
.xf1_c00313{left:238.800000px;}
.xc5_c00313{left:241.200000px;}
.x27_c00313{left:242.850000px;}
.x5f_c00313{left:249.150000px;}
.x33_c00313{left:253.650000px;}
.x49_c00313{left:257.400000px;}
.xbe_c00313{left:263.700000px;}
.x1a_c00313{left:267.900000px;}
.xdd_c00313{left:270.150000px;}
.x57_c00313{left:271.350000px;}
.xc6_c00313{left:273.300000px;}
.xf2_c00313{left:277.650000px;}
.x34_c00313{left:280.650000px;}
.xb6_c00313{left:283.200000px;}
.x4a_c00313{left:284.400000px;}
.x85_c00313{left:285.750000px;}
.x99_c00313{left:286.800000px;}
.xde_c00313{left:287.850000px;}
.xad_c00313{left:290.850000px;}
.x41_c00313{left:292.950000px;}
.xe_c00313{left:295.650000px;}
.xdf_c00313{left:299.700000px;}
.x6e_c00313{left:301.500000px;}
.x60_c00313{left:303.150000px;}
.x1b_c00313{left:304.200000px;}
.x5_c00313{left:307.500000px;}
.xb7_c00313{left:308.700000px;}
.x10c_c00313{left:309.900000px;}
.xf3_c00313{left:311.850000px;}
.x112_c00313{left:313.800000px;}
.x6f_c00313{left:318.450000px;}
.x86_c00313{left:320.700000px;}
.x90_c00313{left:323.550000px;}
.xff_c00313{left:324.750000px;}
.xae_c00313{left:328.950000px;}
.x4b_c00313{left:330.150000px;}
.x1c_c00313{left:333.000000px;}
.xd7_c00313{left:335.100000px;}
.xce_c00313{left:337.500000px;}
.x61_c00313{left:339.450000px;}
.xf_c00313{left:342.450000px;}
.x35_c00313{left:343.650000px;}
.xa6_c00313{left:345.000000px;}
.xf9_c00313{left:346.050000px;}
.x42_c00313{left:347.700000px;}
.x28_c00313{left:349.050000px;}
.xd2_c00313{left:351.000000px;}
.x100_c00313{left:352.500000px;}
.x107_c00313{left:357.300000px;}
.x62_c00313{left:358.500000px;}
.xe0_c00313{left:360.150000px;}
.x6_c00313{left:363.000000px;}
.xf4_c00313{left:365.100000px;}
.x7b_c00313{left:369.900000px;}
.x10_c00313{left:371.550000px;}
.xb8_c00313{left:373.200000px;}
.x9a_c00313{left:374.250000px;}
.x2_c00313{left:375.900000px;}
.x4c_c00313{left:377.700000px;}
.x29_c00313{left:379.950000px;}
.x108_c00313{left:381.450000px;}
.x63_c00313{left:384.000000px;}
.x91_c00313{left:385.800000px;}
.xe1_c00313{left:387.150000px;}
.xcf_c00313{left:390.450000px;}
.x7_c00313{left:393.600000px;}
.x2a_c00313{left:395.400000px;}
.xfa_c00313{left:396.450000px;}
.x113_c00313{left:402.000000px;}
.xd8_c00313{left:403.500000px;}
.x70_c00313{left:405.300000px;}
.xa7_c00313{left:406.950000px;}
.xb9_c00313{left:408.900000px;}
.x64_c00313{left:411.000000px;}
.x58_c00313{left:412.800000px;}
.x1d_c00313{left:416.100000px;}
.x9b_c00313{left:418.200000px;}
.x7c_c00313{left:419.550000px;}
.x2b_c00313{left:424.500000px;}
.x87_c00313{left:425.700000px;}
.x1_c00313{left:426.900000px;}
.x1e_c00313{left:429.000000px;}
.x10d_c00313{left:430.200000px;}
.x119_c00313{left:432.750000px;}
.x92_c00313{left:435.150000px;}
.xd0_c00313{left:436.500000px;}
.x7d_c00313{left:439.650000px;}
.x4d_c00313{left:441.150000px;}
.xa8_c00313{left:443.700000px;}
.x88_c00313{left:444.750000px;}
.xe2_c00313{left:447.300000px;}
.xeb_c00313{left:450.450000px;}
.xd9_c00313{left:452.100000px;}
.xc7_c00313{left:455.100000px;}
.x114_c00313{left:457.050000px;}
.x11_c00313{left:458.250000px;}
.x3_c00313{left:460.200000px;}
.x36_c00313{left:462.150000px;}
.x43_c00313{left:465.750000px;}
.xd3_c00313{left:467.250000px;}
.x7e_c00313{left:468.450000px;}
.x8_c00313{left:472.050000px;}
.xec_c00313{left:478.950000px;}
.x2c_c00313{left:480.000000px;}
.x9c_c00313{left:481.500000px;}
.x93_c00313{left:483.000000px;}
.x71_c00313{left:488.850000px;}
.x115_c00313{left:494.850000px;}
.xe3_c00313{left:495.900000px;}
.x1f_c00313{left:497.100000px;}
.x101_c00313{left:499.800000px;}
.xa9_c00313{left:501.300000px;}
.xaf_c00313{left:503.550000px;}
.x12_c00313{left:504.750000px;}
.x4e_c00313{left:506.700000px;}
.xbf_c00313{left:510.000000px;}
.x89_c00313{left:513.900000px;}
.x9d_c00313{left:516.450000px;}
.xd4_c00313{left:519.450000px;}
.x72_c00313{left:521.250000px;}
.xfb_c00313{left:523.050000px;}
.x102_c00313{left:525.300000px;}
.xc0_c00313{left:529.050000px;}
.x8a_c00313{left:533.400000px;}
.xf5_c00313{left:534.900000px;}
.xb0_c00313{left:537.750000px;}
.x116_c00313{left:539.100000px;}
.x73_c00313{left:541.050000px;}
.xd5_c00313{left:543.600000px;}
.x37_c00313{left:545.250000px;}
.x2d_c00313{left:547.650000px;}
.xe4_c00313{left:549.900000px;}
.x9e_c00313{left:551.400000px;}
.x94_c00313{left:553.200000px;}
.x44_c00313{left:554.700000px;}
.xc8_c00313{left:556.350000px;}
.x9_c00313{left:560.550000px;}
.x8b_c00313{left:561.900000px;}
.x38_c00313{left:564.000000px;}
.x13_c00313{left:565.950000px;}
.xed_c00313{left:568.650000px;}
.x65_c00313{left:569.850000px;}
.x2e_c00313{left:571.050000px;}
.xfc_c00313{left:572.400000px;}
.xb1_c00313{left:573.450000px;}
.xaa_c00313{left:575.400000px;}
.x109_c00313{left:577.650000px;}
.xba_c00313{left:578.850000px;}
.x4f_c00313{left:580.200000px;}
.x20_c00313{left:585.000000px;}
.x59_c00313{left:586.950000px;}
.x74_c00313{left:588.600000px;}
.x39_c00313{left:589.950000px;}
.xee_c00313{left:591.000000px;}
.x14_c00313{left:596.550000px;}
.xbb_c00313{left:598.650000px;}
.xb2_c00313{left:601.200000px;}
.xc9_c00313{left:606.000000px;}
.x2f_c00313{left:607.350000px;}
.x75_c00313{left:608.400000px;}
.x66_c00313{left:610.200000px;}
.x7f_c00313{left:612.150000px;}
.x5a_c00313{left:615.000000px;}
.xfd_c00313{left:616.350000px;}
.x45_c00313{left:618.000000px;}
.x50_c00313{left:619.500000px;}
.x103_c00313{left:621.150000px;}
.x3a_c00313{left:622.650000px;}
.xe5_c00313{left:625.200000px;}
.x9f_c00313{left:627.300000px;}
.xbc_c00313{left:630.000000px;}
.xca_c00313{left:631.500000px;}
.x21_c00313{left:632.850000px;}
.xd6_c00313{left:634.650000px;}
.xb3_c00313{left:640.050000px;}
.x3b_c00313{left:642.750000px;}
.x67_c00313{left:644.700000px;}
.x95_c00313{left:646.500000px;}
.x51_c00313{left:650.100000px;}
.xa0_c00313{left:651.450000px;}
.x5b_c00313{left:653.850000px;}
.x15_c00313{left:655.200000px;}
.xab_c00313{left:657.900000px;}
.xf6_c00313{left:661.050000px;}
.x68_c00313{left:665.250000px;}
.x76_c00313{left:668.850000px;}
.x10a_c00313{left:671.250000px;}
.xcb_c00313{left:672.900000px;}
.x3c_c00313{left:676.200000px;}
.x69_c00313{left:678.600000px;}
.x22_c00313{left:679.950000px;}
.xe6_c00313{left:681.750000px;}
.x80_c00313{left:683.100000px;}
.x10e_c00313{left:685.050000px;}
.x16_c00313{left:688.350000px;}
.xc1_c00313{left:689.850000px;}
.x30_c00313{left:693.000000px;}
.xa1_c00313{left:694.350000px;}
.xd1_c00313{left:696.900000px;}
.x23_c00313{left:699.750000px;}
.xe7_c00313{left:701.250000px;}
.x77_c00313{left:702.750000px;}
.x3d_c00313{left:704.250000px;}
.xf7_c00313{left:707.100000px;}
.x104_c00313{left:708.600000px;}
.x5c_c00313{left:709.950000px;}
.x10f_c00313{left:713.550000px;}
.x96_c00313{left:714.900000px;}
.xc2_c00313{left:718.650000px;}
.x31_c00313{left:721.500000px;}
.x10b_c00313{left:724.200000px;}
.x52_c00313{left:726.000000px;}
.x81_c00313{left:727.050000px;}
.xf8_c00313{left:728.700000px;}
.xe8_c00313{left:730.050000px;}
.x17_c00313{left:731.250000px;}
.xa2_c00313{left:732.450000px;}
.xbd_c00313{left:737.250000px;}
.x6a_c00313{left:739.050000px;}
.x46_c00313{left:746.400000px;}
.xa3_c00313{left:748.350000px;}
.x53_c00313{left:749.400000px;}
.xef_c00313{left:753.750000px;}
.x110_c00313{left:754.950000px;}
.x24_c00313{left:757.350000px;}
.xda_c00313{left:758.400000px;}
.x8c_c00313{left:762.000000px;}
.x117_c00313{left:764.400000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws3_c00313{word-spacing:-4.558405pt;}
.ws6_c00313{word-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.246914pt;}
.ws5_c00313{word-spacing:5.802469pt;}
.ws4_c00313{word-spacing:6.041667pt;}
.ws1_c00313{word-spacing:11.728395pt;}
.ws2_c00313{word-spacing:12.222222pt;}
._1_c00313{width:24.615385pt;}
._0_c00313{width:33.950617pt;}
.fs1_c00313{font-size:37.333333pt;}
.fs2_c00313{font-size:48.000000pt;}
.fs0_c00313{font-size:53.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y23_c00313{bottom:128.933333pt;}
.y22_c00313{bottom:153.333333pt;}
.y21_c00313{bottom:171.600000pt;}
.y20_c00313{bottom:188.533333pt;}
.y1f_c00313{bottom:206.400000pt;}
.y1e_c00313{bottom:224.266667pt;}
.y1d_c00313{bottom:242.266667pt;}
.y1c_c00313{bottom:260.133333pt;}
.y1b_c00313{bottom:277.733333pt;}
.y1a_c00313{bottom:295.733333pt;}
.y19_c00313{bottom:313.333333pt;}
.y18_c00313{bottom:330.666667pt;}
.y17_c00313{bottom:348.533333pt;}
.y16_c00313{bottom:366.133333pt;}
.y15_c00313{bottom:383.733333pt;}
.y14_c00313{bottom:401.333333pt;}
.y13_c00313{bottom:419.200000pt;}
.y12_c00313{bottom:437.066667pt;}
.y11_c00313{bottom:455.333333pt;}
.y10_c00313{bottom:473.200000pt;}
.yf_c00313{bottom:490.800000pt;}
.ye_c00313{bottom:508.400000pt;}
.yd_c00313{bottom:526.666667pt;}
.yc_c00313{bottom:544.000000pt;}
.yb_c00313{bottom:561.866667pt;}
.ya_c00313{bottom:579.733333pt;}
.y9_c00313{bottom:597.333333pt;}
.y8_c00313{bottom:615.200000pt;}
.y7_c00313{bottom:633.066667pt;}
.y6_c00313{bottom:650.933333pt;}
.y5_c00313{bottom:668.533333pt;}
.y4_c00313{bottom:686.400000pt;}
.y3_c00313{bottom:715.866667pt;}
.y2_c00313{bottom:744.933333pt;}
.y1_c00313{bottom:925.733333pt;}
.h3_c00313{height:37.333333pt;}
.h4_c00313{height:48.000000pt;}
.h2_c00313{height:53.333333pt;}
.h0_c00313{height:1037.119955pt;}
.h1_c00313{height:1037.333333pt;}
.w1_c00313{width:812.000000pt;}
.w0_c00313{width:812.159993pt;}
.x0_c00313{left:0.000000pt;}
.x105_c00313{left:88.800000pt;}
.x8d_c00313{left:89.866667pt;}
.x47_c00313{left:90.933333pt;}
.xa_c00313{left:91.866667pt;}
.xcc_c00313{left:105.066667pt;}
.x6b_c00313{left:106.533333pt;}
.x18_c00313{left:109.466667pt;}
.x32_c00313{left:114.000000pt;}
.xc3_c00313{left:115.200000pt;}
.xfe_c00313{left:116.533333pt;}
.xa4_c00313{left:117.733333pt;}
.x106_c00313{left:119.200000pt;}
.x5d_c00313{left:120.400000pt;}
.x82_c00313{left:121.466667pt;}
.xb_c00313{left:123.866667pt;}
.x111_c00313{left:124.800000pt;}
.x6c_c00313{left:129.200000pt;}
.xf0_c00313{left:136.800000pt;}
.x97_c00313{left:138.800000pt;}
.xb4_c00313{left:140.800000pt;}
.xc4_c00313{left:145.333333pt;}
.x3e_c00313{left:148.000000pt;}
.xc_c00313{left:150.400000pt;}
.xe9_c00313{left:153.200000pt;}
.x54_c00313{left:154.800000pt;}
.x78_c00313{left:157.066667pt;}
.x83_c00313{left:158.000000pt;}
.xdb_c00313{left:159.600000pt;}
.x5e_c00313{left:160.666667pt;}
.x3f_c00313{left:165.333333pt;}
.x25_c00313{left:167.600000pt;}
.x19_c00313{left:169.600000pt;}
.x118_c00313{left:170.666667pt;}
.x6d_c00313{left:171.733333pt;}
.x79_c00313{left:174.933333pt;}
.xcd_c00313{left:178.000000pt;}
.x55_c00313{left:182.000000pt;}
.xea_c00313{left:183.866667pt;}
.x8e_c00313{left:186.800000pt;}
.x48_c00313{left:188.533333pt;}
.x40_c00313{left:190.266667pt;}
.xac_c00313{left:191.333333pt;}
.xd_c00313{left:192.666667pt;}
.x98_c00313{left:193.866667pt;}
.xdc_c00313{left:195.066667pt;}
.x84_c00313{left:197.066667pt;}
.x26_c00313{left:198.266667pt;}
.x7a_c00313{left:199.866667pt;}
.x56_c00313{left:205.333333pt;}
.xa5_c00313{left:206.666667pt;}
.xb5_c00313{left:208.266667pt;}
.x8f_c00313{left:209.200000pt;}
.x4_c00313{left:210.933333pt;}
.xf1_c00313{left:212.266667pt;}
.xc5_c00313{left:214.400000pt;}
.x27_c00313{left:215.866667pt;}
.x5f_c00313{left:221.466667pt;}
.x33_c00313{left:225.466667pt;}
.x49_c00313{left:228.800000pt;}
.xbe_c00313{left:234.400000pt;}
.x1a_c00313{left:238.133333pt;}
.xdd_c00313{left:240.133333pt;}
.x57_c00313{left:241.200000pt;}
.xc6_c00313{left:242.933333pt;}
.xf2_c00313{left:246.800000pt;}
.x34_c00313{left:249.466667pt;}
.xb6_c00313{left:251.733333pt;}
.x4a_c00313{left:252.800000pt;}
.x85_c00313{left:254.000000pt;}
.x99_c00313{left:254.933333pt;}
.xde_c00313{left:255.866667pt;}
.xad_c00313{left:258.533333pt;}
.x41_c00313{left:260.400000pt;}
.xe_c00313{left:262.800000pt;}
.xdf_c00313{left:266.400000pt;}
.x6e_c00313{left:268.000000pt;}
.x60_c00313{left:269.466667pt;}
.x1b_c00313{left:270.400000pt;}
.x5_c00313{left:273.333333pt;}
.xb7_c00313{left:274.400000pt;}
.x10c_c00313{left:275.466667pt;}
.xf3_c00313{left:277.200000pt;}
.x112_c00313{left:278.933333pt;}
.x6f_c00313{left:283.066667pt;}
.x86_c00313{left:285.066667pt;}
.x90_c00313{left:287.600000pt;}
.xff_c00313{left:288.666667pt;}
.xae_c00313{left:292.400000pt;}
.x4b_c00313{left:293.466667pt;}
.x1c_c00313{left:296.000000pt;}
.xd7_c00313{left:297.866667pt;}
.xce_c00313{left:300.000000pt;}
.x61_c00313{left:301.733333pt;}
.xf_c00313{left:304.400000pt;}
.x35_c00313{left:305.466667pt;}
.xa6_c00313{left:306.666667pt;}
.xf9_c00313{left:307.600000pt;}
.x42_c00313{left:309.066667pt;}
.x28_c00313{left:310.266667pt;}
.xd2_c00313{left:312.000000pt;}
.x100_c00313{left:313.333333pt;}
.x107_c00313{left:317.600000pt;}
.x62_c00313{left:318.666667pt;}
.xe0_c00313{left:320.133333pt;}
.x6_c00313{left:322.666667pt;}
.xf4_c00313{left:324.533333pt;}
.x7b_c00313{left:328.800000pt;}
.x10_c00313{left:330.266667pt;}
.xb8_c00313{left:331.733333pt;}
.x9a_c00313{left:332.666667pt;}
.x2_c00313{left:334.133333pt;}
.x4c_c00313{left:335.733333pt;}
.x29_c00313{left:337.733333pt;}
.x108_c00313{left:339.066667pt;}
.x63_c00313{left:341.333333pt;}
.x91_c00313{left:342.933333pt;}
.xe1_c00313{left:344.133333pt;}
.xcf_c00313{left:347.066667pt;}
.x7_c00313{left:349.866667pt;}
.x2a_c00313{left:351.466667pt;}
.xfa_c00313{left:352.400000pt;}
.x113_c00313{left:357.333333pt;}
.xd8_c00313{left:358.666667pt;}
.x70_c00313{left:360.266667pt;}
.xa7_c00313{left:361.733333pt;}
.xb9_c00313{left:363.466667pt;}
.x64_c00313{left:365.333333pt;}
.x58_c00313{left:366.933333pt;}
.x1d_c00313{left:369.866667pt;}
.x9b_c00313{left:371.733333pt;}
.x7c_c00313{left:372.933333pt;}
.x2b_c00313{left:377.333333pt;}
.x87_c00313{left:378.400000pt;}
.x1_c00313{left:379.466667pt;}
.x1e_c00313{left:381.333333pt;}
.x10d_c00313{left:382.400000pt;}
.x119_c00313{left:384.666667pt;}
.x92_c00313{left:386.800000pt;}
.xd0_c00313{left:388.000000pt;}
.x7d_c00313{left:390.800000pt;}
.x4d_c00313{left:392.133333pt;}
.xa8_c00313{left:394.400000pt;}
.x88_c00313{left:395.333333pt;}
.xe2_c00313{left:397.600000pt;}
.xeb_c00313{left:400.400000pt;}
.xd9_c00313{left:401.866667pt;}
.xc7_c00313{left:404.533333pt;}
.x114_c00313{left:406.266667pt;}
.x11_c00313{left:407.333333pt;}
.x3_c00313{left:409.066667pt;}
.x36_c00313{left:410.800000pt;}
.x43_c00313{left:414.000000pt;}
.xd3_c00313{left:415.333333pt;}
.x7e_c00313{left:416.400000pt;}
.x8_c00313{left:419.600000pt;}
.xec_c00313{left:425.733333pt;}
.x2c_c00313{left:426.666667pt;}
.x9c_c00313{left:428.000000pt;}
.x93_c00313{left:429.333333pt;}
.x71_c00313{left:434.533333pt;}
.x115_c00313{left:439.866667pt;}
.xe3_c00313{left:440.800000pt;}
.x1f_c00313{left:441.866667pt;}
.x101_c00313{left:444.266667pt;}
.xa9_c00313{left:445.600000pt;}
.xaf_c00313{left:447.600000pt;}
.x12_c00313{left:448.666667pt;}
.x4e_c00313{left:450.400000pt;}
.xbf_c00313{left:453.333333pt;}
.x89_c00313{left:456.800000pt;}
.x9d_c00313{left:459.066667pt;}
.xd4_c00313{left:461.733333pt;}
.x72_c00313{left:463.333333pt;}
.xfb_c00313{left:464.933333pt;}
.x102_c00313{left:466.933333pt;}
.xc0_c00313{left:470.266667pt;}
.x8a_c00313{left:474.133333pt;}
.xf5_c00313{left:475.466667pt;}
.xb0_c00313{left:478.000000pt;}
.x116_c00313{left:479.200000pt;}
.x73_c00313{left:480.933333pt;}
.xd5_c00313{left:483.200000pt;}
.x37_c00313{left:484.666667pt;}
.x2d_c00313{left:486.800000pt;}
.xe4_c00313{left:488.800000pt;}
.x9e_c00313{left:490.133333pt;}
.x94_c00313{left:491.733333pt;}
.x44_c00313{left:493.066667pt;}
.xc8_c00313{left:494.533333pt;}
.x9_c00313{left:498.266667pt;}
.x8b_c00313{left:499.466667pt;}
.x38_c00313{left:501.333333pt;}
.x13_c00313{left:503.066667pt;}
.xed_c00313{left:505.466667pt;}
.x65_c00313{left:506.533333pt;}
.x2e_c00313{left:507.600000pt;}
.xfc_c00313{left:508.800000pt;}
.xb1_c00313{left:509.733333pt;}
.xaa_c00313{left:511.466667pt;}
.x109_c00313{left:513.466667pt;}
.xba_c00313{left:514.533333pt;}
.x4f_c00313{left:515.733333pt;}
.x20_c00313{left:520.000000pt;}
.x59_c00313{left:521.733333pt;}
.x74_c00313{left:523.200000pt;}
.x39_c00313{left:524.400000pt;}
.xee_c00313{left:525.333333pt;}
.x14_c00313{left:530.266667pt;}
.xbb_c00313{left:532.133333pt;}
.xb2_c00313{left:534.400000pt;}
.xc9_c00313{left:538.666667pt;}
.x2f_c00313{left:539.866667pt;}
.x75_c00313{left:540.800000pt;}
.x66_c00313{left:542.400000pt;}
.x7f_c00313{left:544.133333pt;}
.x5a_c00313{left:546.666667pt;}
.xfd_c00313{left:547.866667pt;}
.x45_c00313{left:549.333333pt;}
.x50_c00313{left:550.666667pt;}
.x103_c00313{left:552.133333pt;}
.x3a_c00313{left:553.466667pt;}
.xe5_c00313{left:555.733333pt;}
.x9f_c00313{left:557.600000pt;}
.xbc_c00313{left:560.000000pt;}
.xca_c00313{left:561.333333pt;}
.x21_c00313{left:562.533333pt;}
.xd6_c00313{left:564.133333pt;}
.xb3_c00313{left:568.933333pt;}
.x3b_c00313{left:571.333333pt;}
.x67_c00313{left:573.066667pt;}
.x95_c00313{left:574.666667pt;}
.x51_c00313{left:577.866667pt;}
.xa0_c00313{left:579.066667pt;}
.x5b_c00313{left:581.200000pt;}
.x15_c00313{left:582.400000pt;}
.xab_c00313{left:584.800000pt;}
.xf6_c00313{left:587.600000pt;}
.x68_c00313{left:591.333333pt;}
.x76_c00313{left:594.533333pt;}
.x10a_c00313{left:596.666667pt;}
.xcb_c00313{left:598.133333pt;}
.x3c_c00313{left:601.066667pt;}
.x69_c00313{left:603.200000pt;}
.x22_c00313{left:604.400000pt;}
.xe6_c00313{left:606.000000pt;}
.x80_c00313{left:607.200000pt;}
.x10e_c00313{left:608.933333pt;}
.x16_c00313{left:611.866667pt;}
.xc1_c00313{left:613.200000pt;}
.x30_c00313{left:616.000000pt;}
.xa1_c00313{left:617.200000pt;}
.xd1_c00313{left:619.466667pt;}
.x23_c00313{left:622.000000pt;}
.xe7_c00313{left:623.333333pt;}
.x77_c00313{left:624.666667pt;}
.x3d_c00313{left:626.000000pt;}
.xf7_c00313{left:628.533333pt;}
.x104_c00313{left:629.866667pt;}
.x5c_c00313{left:631.066667pt;}
.x10f_c00313{left:634.266667pt;}
.x96_c00313{left:635.466667pt;}
.xc2_c00313{left:638.800000pt;}
.x31_c00313{left:641.333333pt;}
.x10b_c00313{left:643.733333pt;}
.x52_c00313{left:645.333333pt;}
.x81_c00313{left:646.266667pt;}
.xf8_c00313{left:647.733333pt;}
.xe8_c00313{left:648.933333pt;}
.x17_c00313{left:650.000000pt;}
.xa2_c00313{left:651.066667pt;}
.xbd_c00313{left:655.333333pt;}
.x6a_c00313{left:656.933333pt;}
.x46_c00313{left:663.466667pt;}
.xa3_c00313{left:665.200000pt;}
.x53_c00313{left:666.133333pt;}
.xef_c00313{left:670.000000pt;}
.x110_c00313{left:671.066667pt;}
.x24_c00313{left:673.200000pt;}
.xda_c00313{left:674.133333pt;}
.x8c_c00313{left:677.333333pt;}
.x117_c00313{left:679.466667pt;}
}





/* 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_c00314 {
    display:none;
  }
  .loading-indicator_c00314.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00314 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_c00314 { 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_c00314" -> "#page-container .classname_c00314")
 */
.pf_c00314 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00314 { /* 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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00314 { /* 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_c00314 { /* 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_c00314 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00314 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00314 {overflow:visible;}
  }
}
.c_c00314 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00314 { /* 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_c00314:after { /* webkit #35443 */
  content: '';
}
.t_c00314:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00314 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 */
}
.__c00314 { /* 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_c00314 { /* info for Javascript */
  display:none;
}
.l_c00314 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00314 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00314 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00314: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_c00314 {
    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_c00314.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00314.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_c00314 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00314{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00314;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.000000;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;}
.m96_c00314{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00314{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00314{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00314{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m31_c00314{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m81_c00314{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00314{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m80_c00314{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00314{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m93_c00314{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m41_c00314{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m77_c00314{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m43_c00314{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m94_c00314{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00314{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m84_c00314{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m19_c00314{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00314{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00314{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m98_c00314{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m97_c00314{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00314{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00314{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00314{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m71_c00314{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m95_c00314{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00314{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m40_c00314{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00314{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00314{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m12_c00314{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00314{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00314{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00314{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m30_c00314{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00314{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00314{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00314{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m35_c00314{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00314{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00314{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00314{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m92_c00314{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m34_c00314{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m44_c00314{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00314{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m47_c00314{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00314{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m22_c00314{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00314{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00314{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m65_c00314{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00314{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m53_c00314{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00314{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m85_c00314{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00314{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00314{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m57_c00314{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m91_c00314{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00314{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00314{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m59_c00314{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m87_c00314{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m73_c00314{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00314{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00314{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m86_c00314{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m20_c00314{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m21_c00314{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00314{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m38_c00314{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m25_c00314{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m52_c00314{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4_c00314{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m50_c00314{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m56_c00314{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00314{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m74_c00314{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m24_c00314{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m26_c00314{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00314{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf_c00314{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m33_c00314{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m70_c00314{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00314{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00314{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00314{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00314{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00314{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00314{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00314{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m72_c00314{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m83_c00314{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m64_c00314{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m29_c00314{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m51_c00314{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00314{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m27_c00314{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m60_c00314{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m82_c00314{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00314{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00314{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m32_c00314{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00314{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m49_c00314{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00314{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m36_c00314{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00314{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00314{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m46_c00314{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00314{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m76_c00314{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00314{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18_c00314{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m88_c00314{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00314{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);}
.m5b_c00314{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00314{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00314{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10_c00314{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m61_c00314{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m69_c00314{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m45_c00314{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6_c00314{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m28_c00314{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m62_c00314{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00314{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00314{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m78_c00314{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m90_c00314{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m67_c00314{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m66_c00314{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m68_c00314{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00314{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00314{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00314{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00314{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m79_c00314{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m37_c00314{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m42_c00314{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m99_c00314{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m89_c00314{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m55_c00314{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00314{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m48_c00314{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m54_c00314{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m58_c00314{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00314{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00314{vertical-align:0.000000px;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{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__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00314{word-spacing:-10.000000px;}
.wsb_c00314{word-spacing:-6.093750px;}
.ws6_c00314{word-spacing:-5.277778px;}
.ws0_c00314{word-spacing:-5.138889px;}
.ws7_c00314{word-spacing:-2.857143px;}
.wsc_c00314{word-spacing:0.000000px;}
.ws9_c00314{word-spacing:1.447368px;}
.wsa_c00314{word-spacing:4.285714px;}
.ws8_c00314{word-spacing:6.527778px;}
.ws5_c00314{word-spacing:7.500000px;}
.ws2_c00314{word-spacing:9.722222px;}
.ws1_c00314{word-spacing:15.000000px;}
.ws3_c00314{word-spacing:27.592593px;}
.fc0_c00314{color:transparent;}
.fs0_c00314{font-size:60.000000px;}
.y0_c00314{bottom:0.000000px;}
.y2c_c00314{bottom:153.300000px;}
.y2b_c00314{bottom:190.200000px;}
.y2a_c00314{bottom:210.000000px;}
.y29_c00314{bottom:230.100000px;}
.y28_c00314{bottom:249.900000px;}
.y27_c00314{bottom:269.700000px;}
.y26_c00314{bottom:289.500000px;}
.y25_c00314{bottom:309.300000px;}
.y24_c00314{bottom:329.400000px;}
.y23_c00314{bottom:349.500000px;}
.y22_c00314{bottom:369.300000px;}
.y21_c00314{bottom:389.400000px;}
.y20_c00314{bottom:409.500000px;}
.y1f_c00314{bottom:429.600000px;}
.y1e_c00314{bottom:449.700000px;}
.y1d_c00314{bottom:469.200000px;}
.y1c_c00314{bottom:489.300000px;}
.y1b_c00314{bottom:509.100000px;}
.y1a_c00314{bottom:528.900000px;}
.y19_c00314{bottom:549.000000px;}
.y18_c00314{bottom:568.800000px;}
.y17_c00314{bottom:588.300000px;}
.y16_c00314{bottom:608.100000px;}
.y15_c00314{bottom:628.200000px;}
.y14_c00314{bottom:648.300000px;}
.y13_c00314{bottom:668.100000px;}
.y12_c00314{bottom:687.900000px;}
.y11_c00314{bottom:707.700000px;}
.y10_c00314{bottom:727.800000px;}
.yf_c00314{bottom:747.900000px;}
.ye_c00314{bottom:768.000000px;}
.yd_c00314{bottom:787.800000px;}
.yc_c00314{bottom:807.600000px;}
.yb_c00314{bottom:827.400000px;}
.ya_c00314{bottom:847.200000px;}
.y9_c00314{bottom:867.000000px;}
.y8_c00314{bottom:887.100000px;}
.y7_c00314{bottom:907.200000px;}
.y6_c00314{bottom:927.000000px;}
.y5_c00314{bottom:946.800000px;}
.y4_c00314{bottom:966.900000px;}
.y3_c00314{bottom:986.400000px;}
.y2_c00314{bottom:1006.500000px;}
.y1_c00314{bottom:1045.050000px;}
.h2_c00314{height:60.000000px;}
.h0_c00314{height:1166.759949px;}
.h1_c00314{height:1167.000000px;}
.w1_c00314{width:913.500000px;}
.w0_c00314{width:913.679993px;}
.x0_c00314{left:0.000000px;}
.x77_c00314{left:144.600000px;}
.x3_c00314{left:145.800000px;}
.x1_c00314{left:147.900000px;}
.x11e_c00314{left:152.400000px;}
.xfa_c00314{left:159.150000px;}
.x78_c00314{left:162.900000px;}
.x10e_c00314{left:163.950000px;}
.xaf_c00314{left:165.150000px;}
.x68_c00314{left:167.400000px;}
.x81_c00314{left:168.600000px;}
.x3e_c00314{left:170.850000px;}
.xed_c00314{left:173.850000px;}
.x79_c00314{left:175.200000px;}
.xa5_c00314{left:176.550000px;}
.x102_c00314{left:177.600000px;}
.xc8_c00314{left:178.950000px;}
.x49_c00314{left:180.150000px;}
.x22_c00314{left:182.100000px;}
.x91_c00314{left:183.300000px;}
.x12a_c00314{left:184.500000px;}
.x2f_c00314{left:186.750000px;}
.xc1_c00314{left:189.450000px;}
.x12_c00314{left:191.550000px;}
.xb0_c00314{left:192.900000px;}
.xb3_c00314{left:193.950000px;}
.x69_c00314{left:196.950000px;}
.x123_c00314{left:198.000000px;}
.x57_c00314{left:199.800000px;}
.x82_c00314{left:201.000000px;}
.xd7_c00314{left:203.400000px;}
.xd0_c00314{left:205.200000px;}
.x23_c00314{left:207.600000px;}
.x13_c00314{left:209.250000px;}
.xfd_c00314{left:210.900000px;}
.x92_c00314{left:212.850000px;}
.x89_c00314{left:216.000000px;}
.x12d_c00314{left:219.300000px;}
.x127_c00314{left:221.700000px;}
.x83_c00314{left:223.650000px;}
.x10a_c00314{left:226.200000px;}
.x3f_c00314{left:231.000000px;}
.x11f_c00314{left:232.350000px;}
.x4_c00314{left:234.300000px;}
.x9b_c00314{left:235.950000px;}
.x132_c00314{left:237.000000px;}
.x4a_c00314{left:238.500000px;}
.x7a_c00314{left:239.700000px;}
.x58_c00314{left:241.200000px;}
.x115_c00314{left:243.750000px;}
.xa6_c00314{left:244.950000px;}
.xe0_c00314{left:246.150000px;}
.xb9_c00314{left:247.800000px;}
.xd1_c00314{left:249.000000px;}
.xee_c00314{left:250.200000px;}
.x59_c00314{left:252.750000px;}
.x6a_c00314{left:254.850000px;}
.x93_c00314{left:257.100000px;}
.x30_c00314{left:258.750000px;}
.x5_c00314{left:259.800000px;}
.xf3_c00314{left:262.650000px;}
.x116_c00314{left:264.300000px;}
.x24_c00314{left:265.950000px;}
.x14_c00314{left:270.150000px;}
.x122_c00314{left:271.650000px;}
.xe1_c00314{left:276.000000px;}
.xb4_c00314{left:277.050000px;}
.x31_c00314{left:278.550000px;}
.x5a_c00314{left:281.550000px;}
.xf4_c00314{left:282.750000px;}
.xdf_c00314{left:283.950000px;}
.x6_c00314{left:286.500000px;}
.xa7_c00314{left:287.850000px;}
.x4b_c00314{left:289.950000px;}
.x15_c00314{left:291.750000px;}
.x120_c00314{left:294.300000px;}
.xb1_c00314{left:296.550000px;}
.x7b_c00314{left:299.850000px;}
.xc2_c00314{left:302.100000px;}
.x9c_c00314{left:303.450000px;}
.xfe_c00314{left:305.250000px;}
.x32_c00314{left:307.050000px;}
.x6b_c00314{left:309.900000px;}
.x5b_c00314{left:312.450000px;}
.x117_c00314{left:313.950000px;}
.x40_c00314{left:316.350000px;}
.xd2_c00314{left:318.450000px;}
.xe7_c00314{left:320.250000px;}
.xb2_c00314{left:326.850000px;}
.x103_c00314{left:327.900000px;}
.x6c_c00314{left:331.200000px;}
.x130_c00314{left:333.600000px;}
.x16_c00314{left:334.950000px;}
.xf5_c00314{left:336.000000px;}
.xa8_c00314{left:337.500000px;}
.x12b_c00314{left:338.700000px;}
.x7c_c00314{left:340.950000px;}
.xd8_c00314{left:342.300000px;}
.x33_c00314{left:343.800000px;}
.x7_c00314{left:345.600000px;}
.xba_c00314{left:347.850000px;}
.x6d_c00314{left:349.200000px;}
.x9d_c00314{left:352.050000px;}
.xe2_c00314{left:353.700000px;}
.x17_c00314{left:354.750000px;}
.xc3_c00314{left:358.200000px;}
.x4c_c00314{left:359.400000px;}
.x118_c00314{left:360.450000px;}
.x94_c00314{left:362.250000px;}
.xef_c00314{left:364.650000px;}
.x104_c00314{left:366.450000px;}
.xf6_c00314{left:370.200000px;}
.x5c_c00314{left:371.550000px;}
.x10b_c00314{left:372.750000px;}
.x8_c00314{left:378.000000px;}
.x8a_c00314{left:379.650000px;}
.x4d_c00314{left:380.700000px;}
.xbb_c00314{left:384.900000px;}
.x25_c00314{left:385.950000px;}
.xcc_c00314{left:387.000000px;}
.xa9_c00314{left:388.650000px;}
.x34_c00314{left:389.850000px;}
.xc9_c00314{left:391.200000px;}
.x6e_c00314{left:392.700000px;}
.x131_c00314{left:396.600000px;}
.x10f_c00314{left:398.700000px;}
.x119_c00314{left:400.050000px;}
.xf0_c00314{left:401.700000px;}
.x9e_c00314{left:403.950000px;}
.x8b_c00314{left:407.400000px;}
.xd9_c00314{left:409.200000px;}
.xc4_c00314{left:410.700000px;}
.x41_c00314{left:413.250000px;}
.xbc_c00314{left:414.450000px;}
.x26_c00314{left:416.850000px;}
.x124_c00314{left:418.350000px;}
.x5d_c00314{left:420.900000px;}
.xaa_c00314{left:422.550000px;}
.x9_c00314{left:423.750000px;}
.x4e_c00314{left:426.000000px;}
.x105_c00314{left:427.650000px;}
.x10c_c00314{left:429.300000px;}
.x133_c00314{left:430.800000px;}
.x137_c00314{left:432.450000px;}
.x121_c00314{left:434.700000px;}
.x18_c00314{left:436.800000px;}
.x9f_c00314{left:437.850000px;}
.x125_c00314{left:439.650000px;}
.xd3_c00314{left:443.100000px;}
.x2_c00314{left:444.900000px;}
.x5e_c00314{left:446.100000px;}
.xa0_c00314{left:448.350000px;}
.x134_c00314{left:450.300000px;}
.x4f_c00314{left:454.800000px;}
.xda_c00314{left:457.500000px;}
.x27_c00314{left:460.050000px;}
.xe3_c00314{left:461.400000px;}
.x8c_c00314{left:462.600000px;}
.xbd_c00314{left:464.100000px;}
.xb5_c00314{left:466.050000px;}
.xdb_c00314{left:468.000000px;}
.x95_c00314{left:469.500000px;}
.xa_c00314{left:471.300000px;}
.xc5_c00314{left:472.650000px;}
.x19_c00314{left:474.300000px;}
.x11a_c00314{left:475.650000px;}
.x5f_c00314{left:478.500000px;}
.xd4_c00314{left:480.600000px;}
.x6f_c00314{left:481.950000px;}
.xbe_c00314{left:483.150000px;}
.xe4_c00314{left:484.800000px;}
.x1a_c00314{left:489.000000px;}
.xab_c00314{left:490.650000px;}
.x84_c00314{left:492.450000px;}
.x50_c00314{left:494.700000px;}
.xff_c00314{left:496.800000px;}
.xca_c00314{left:499.200000px;}
.x110_c00314{left:501.000000px;}
.xe8_c00314{left:503.250000px;}
.x60_c00314{left:504.750000px;}
.x12e_c00314{left:507.750000px;}
.x28_c00314{left:510.450000px;}
.x106_c00314{left:511.950000px;}
.x70_c00314{left:515.100000px;}
.x35_c00314{left:517.950000px;}
.x96_c00314{left:521.400000px;}
.x11b_c00314{left:528.150000px;}
.x1b_c00314{left:530.700000px;}
.xb_c00314{left:533.250000px;}
.x111_c00314{left:534.900000px;}
.x51_c00314{left:536.100000px;}
.xdc_c00314{left:537.150000px;}
.x71_c00314{left:542.850000px;}
.x36_c00314{left:544.650000px;}
.xe5_c00314{left:545.700000px;}
.x61_c00314{left:546.900000px;}
.x128_c00314{left:547.950000px;}
.x97_c00314{left:549.900000px;}
.x8d_c00314{left:551.550000px;}
.xe9_c00314{left:553.350000px;}
.xa1_c00314{left:555.150000px;}
.x100_c00314{left:560.550000px;}
.x37_c00314{left:564.750000px;}
.x62_c00314{left:568.800000px;}
.x114_c00314{left:570.150000px;}
.xa2_c00314{left:572.100000px;}
.xd5_c00314{left:573.150000px;}
.xc_c00314{left:574.950000px;}
.x38_c00314{left:576.600000px;}
.x135_c00314{left:578.850000px;}
.x72_c00314{left:580.350000px;}
.x42_c00314{left:582.450000px;}
.x29_c00314{left:583.950000px;}
.x1c_c00314{left:585.000000px;}
.xea_c00314{left:586.050000px;}
.xdd_c00314{left:587.550000px;}
.x52_c00314{left:594.750000px;}
.x63_c00314{left:597.600000px;}
.x85_c00314{left:599.700000px;}
.x7d_c00314{left:600.900000px;}
.x43_c00314{left:603.750000px;}
.x126_c00314{left:604.950000px;}
.xcd_c00314{left:607.200000px;}
.xa3_c00314{left:609.900000px;}
.xbf_c00314{left:610.950000px;}
.xc6_c00314{left:612.000000px;}
.x112_c00314{left:613.050000px;}
.xac_c00314{left:615.600000px;}
.x2a_c00314{left:617.850000px;}
.x73_c00314{left:619.200000px;}
.x1d_c00314{left:621.300000px;}
.x8e_c00314{left:623.550000px;}
.x11c_c00314{left:625.800000px;}
.x98_c00314{left:627.000000px;}
.x86_c00314{left:629.250000px;}
.x44_c00314{left:632.550000px;}
.xd_c00314{left:634.350000px;}
.x39_c00314{left:636.000000px;}
.xc7_c00314{left:637.500000px;}
.x74_c00314{left:639.300000px;}
.xa4_c00314{left:640.800000px;}
.xf7_c00314{left:642.300000px;}
.xde_c00314{left:643.350000px;}
.xe_c00314{left:645.450000px;}
.x1e_c00314{left:652.950000px;}
.x10d_c00314{left:657.600000px;}
.x7e_c00314{left:659.850000px;}
.x12c_c00314{left:661.650000px;}
.xf1_c00314{left:663.750000px;}
.xb6_c00314{left:666.300000px;}
.x75_c00314{left:668.100000px;}
.x45_c00314{left:670.650000px;}
.x64_c00314{left:674.250000px;}
.xce_c00314{left:676.200000px;}
.x99_c00314{left:679.500000px;}
.x136_c00314{left:681.150000px;}
.xeb_c00314{left:682.200000px;}
.xad_c00314{left:684.000000px;}
.xcf_c00314{left:685.950000px;}
.x8f_c00314{left:688.350000px;}
.x3a_c00314{left:690.000000px;}
.x101_c00314{left:691.650000px;}
.x53_c00314{left:693.000000px;}
.x2b_c00314{left:694.500000px;}
.xb7_c00314{left:697.950000px;}
.xf_c00314{left:701.250000px;}
.x12f_c00314{left:702.450000px;}
.x65_c00314{left:705.900000px;}
.x7f_c00314{left:707.400000px;}
.x87_c00314{left:708.750000px;}
.x1f_c00314{left:711.300000px;}
.x107_c00314{left:714.000000px;}
.x2c_c00314{left:716.400000px;}
.xe6_c00314{left:717.750000px;}
.x76_c00314{left:718.800000px;}
.x46_c00314{left:720.750000px;}
.xf8_c00314{left:723.300000px;}
.x3b_c00314{left:725.250000px;}
.x54_c00314{left:726.450000px;}
.xd6_c00314{left:729.300000px;}
.x66_c00314{left:732.900000px;}
.x108_c00314{left:735.300000px;}
.x20_c00314{left:739.350000px;}
.x9a_c00314{left:740.700000px;}
.x47_c00314{left:742.050000px;}
.x3c_c00314{left:743.550000px;}
.x2d_c00314{left:744.900000px;}
.x10_c00314{left:747.750000px;}
.xc0_c00314{left:748.800000px;}
.xcb_c00314{left:755.550000px;}
.x55_c00314{left:757.050000px;}
.x113_c00314{left:758.100000px;}
.x90_c00314{left:759.300000px;}
.xf2_c00314{left:760.650000px;}
.x21_c00314{left:761.700000px;}
.xb8_c00314{left:763.050000px;}
.xf9_c00314{left:766.500000px;}
.xfb_c00314{left:767.850000px;}
.xae_c00314{left:769.200000px;}
.x3d_c00314{left:770.250000px;}
.x67_c00314{left:771.750000px;}
.x11d_c00314{left:773.400000px;}
.x109_c00314{left:775.200000px;}
.x80_c00314{left:779.850000px;}
.x129_c00314{left:783.300000px;}
.x2e_c00314{left:787.350000px;}
.xec_c00314{left:789.450000px;}
.x88_c00314{left:793.050000px;}
.x11_c00314{left:798.150000px;}
.x56_c00314{left:800.550000px;}
.xfc_c00314{left:802.350000px;}
.x48_c00314{left:806.850000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws4_c00314{word-spacing:-8.888889pt;}
.wsb_c00314{word-spacing:-5.416667pt;}
.ws6_c00314{word-spacing:-4.691358pt;}
.ws0_c00314{word-spacing:-4.567901pt;}
.ws7_c00314{word-spacing:-2.539683pt;}
.wsc_c00314{word-spacing:0.000000pt;}
.ws9_c00314{word-spacing:1.286550pt;}
.wsa_c00314{word-spacing:3.809524pt;}
.ws8_c00314{word-spacing:5.802469pt;}
.ws5_c00314{word-spacing:6.666667pt;}
.ws2_c00314{word-spacing:8.641975pt;}
.ws1_c00314{word-spacing:13.333333pt;}
.ws3_c00314{word-spacing:24.526749pt;}
.fs0_c00314{font-size:53.333333pt;}
.y0_c00314{bottom:0.000000pt;}
.y2c_c00314{bottom:136.266667pt;}
.y2b_c00314{bottom:169.066667pt;}
.y2a_c00314{bottom:186.666667pt;}
.y29_c00314{bottom:204.533333pt;}
.y28_c00314{bottom:222.133333pt;}
.y27_c00314{bottom:239.733333pt;}
.y26_c00314{bottom:257.333333pt;}
.y25_c00314{bottom:274.933333pt;}
.y24_c00314{bottom:292.800000pt;}
.y23_c00314{bottom:310.666667pt;}
.y22_c00314{bottom:328.266667pt;}
.y21_c00314{bottom:346.133333pt;}
.y20_c00314{bottom:364.000000pt;}
.y1f_c00314{bottom:381.866667pt;}
.y1e_c00314{bottom:399.733333pt;}
.y1d_c00314{bottom:417.066667pt;}
.y1c_c00314{bottom:434.933333pt;}
.y1b_c00314{bottom:452.533333pt;}
.y1a_c00314{bottom:470.133333pt;}
.y19_c00314{bottom:488.000000pt;}
.y18_c00314{bottom:505.600000pt;}
.y17_c00314{bottom:522.933333pt;}
.y16_c00314{bottom:540.533333pt;}
.y15_c00314{bottom:558.400000pt;}
.y14_c00314{bottom:576.266667pt;}
.y13_c00314{bottom:593.866667pt;}
.y12_c00314{bottom:611.466667pt;}
.y11_c00314{bottom:629.066667pt;}
.y10_c00314{bottom:646.933333pt;}
.yf_c00314{bottom:664.800000pt;}
.ye_c00314{bottom:682.666667pt;}
.yd_c00314{bottom:700.266667pt;}
.yc_c00314{bottom:717.866667pt;}
.yb_c00314{bottom:735.466667pt;}
.ya_c00314{bottom:753.066667pt;}
.y9_c00314{bottom:770.666667pt;}
.y8_c00314{bottom:788.533333pt;}
.y7_c00314{bottom:806.400000pt;}
.y6_c00314{bottom:824.000000pt;}
.y5_c00314{bottom:841.600000pt;}
.y4_c00314{bottom:859.466667pt;}
.y3_c00314{bottom:876.800000pt;}
.y2_c00314{bottom:894.666667pt;}
.y1_c00314{bottom:928.933333pt;}
.h2_c00314{height:53.333333pt;}
.h0_c00314{height:1037.119955pt;}
.h1_c00314{height:1037.333333pt;}
.w1_c00314{width:812.000000pt;}
.w0_c00314{width:812.159993pt;}
.x0_c00314{left:0.000000pt;}
.x77_c00314{left:128.533333pt;}
.x3_c00314{left:129.600000pt;}
.x1_c00314{left:131.466667pt;}
.x11e_c00314{left:135.466667pt;}
.xfa_c00314{left:141.466667pt;}
.x78_c00314{left:144.800000pt;}
.x10e_c00314{left:145.733333pt;}
.xaf_c00314{left:146.800000pt;}
.x68_c00314{left:148.800000pt;}
.x81_c00314{left:149.866667pt;}
.x3e_c00314{left:151.866667pt;}
.xed_c00314{left:154.533333pt;}
.x79_c00314{left:155.733333pt;}
.xa5_c00314{left:156.933333pt;}
.x102_c00314{left:157.866667pt;}
.xc8_c00314{left:159.066667pt;}
.x49_c00314{left:160.133333pt;}
.x22_c00314{left:161.866667pt;}
.x91_c00314{left:162.933333pt;}
.x12a_c00314{left:164.000000pt;}
.x2f_c00314{left:166.000000pt;}
.xc1_c00314{left:168.400000pt;}
.x12_c00314{left:170.266667pt;}
.xb0_c00314{left:171.466667pt;}
.xb3_c00314{left:172.400000pt;}
.x69_c00314{left:175.066667pt;}
.x123_c00314{left:176.000000pt;}
.x57_c00314{left:177.600000pt;}
.x82_c00314{left:178.666667pt;}
.xd7_c00314{left:180.800000pt;}
.xd0_c00314{left:182.400000pt;}
.x23_c00314{left:184.533333pt;}
.x13_c00314{left:186.000000pt;}
.xfd_c00314{left:187.466667pt;}
.x92_c00314{left:189.200000pt;}
.x89_c00314{left:192.000000pt;}
.x12d_c00314{left:194.933333pt;}
.x127_c00314{left:197.066667pt;}
.x83_c00314{left:198.800000pt;}
.x10a_c00314{left:201.066667pt;}
.x3f_c00314{left:205.333333pt;}
.x11f_c00314{left:206.533333pt;}
.x4_c00314{left:208.266667pt;}
.x9b_c00314{left:209.733333pt;}
.x132_c00314{left:210.666667pt;}
.x4a_c00314{left:212.000000pt;}
.x7a_c00314{left:213.066667pt;}
.x58_c00314{left:214.400000pt;}
.x115_c00314{left:216.666667pt;}
.xa6_c00314{left:217.733333pt;}
.xe0_c00314{left:218.800000pt;}
.xb9_c00314{left:220.266667pt;}
.xd1_c00314{left:221.333333pt;}
.xee_c00314{left:222.400000pt;}
.x59_c00314{left:224.666667pt;}
.x6a_c00314{left:226.533333pt;}
.x93_c00314{left:228.533333pt;}
.x30_c00314{left:230.000000pt;}
.x5_c00314{left:230.933333pt;}
.xf3_c00314{left:233.466667pt;}
.x116_c00314{left:234.933333pt;}
.x24_c00314{left:236.400000pt;}
.x14_c00314{left:240.133333pt;}
.x122_c00314{left:241.466667pt;}
.xe1_c00314{left:245.333333pt;}
.xb4_c00314{left:246.266667pt;}
.x31_c00314{left:247.600000pt;}
.x5a_c00314{left:250.266667pt;}
.xf4_c00314{left:251.333333pt;}
.xdf_c00314{left:252.400000pt;}
.x6_c00314{left:254.666667pt;}
.xa7_c00314{left:255.866667pt;}
.x4b_c00314{left:257.733333pt;}
.x15_c00314{left:259.333333pt;}
.x120_c00314{left:261.600000pt;}
.xb1_c00314{left:263.600000pt;}
.x7b_c00314{left:266.533333pt;}
.xc2_c00314{left:268.533333pt;}
.x9c_c00314{left:269.733333pt;}
.xfe_c00314{left:271.333333pt;}
.x32_c00314{left:272.933333pt;}
.x6b_c00314{left:275.466667pt;}
.x5b_c00314{left:277.733333pt;}
.x117_c00314{left:279.066667pt;}
.x40_c00314{left:281.200000pt;}
.xd2_c00314{left:283.066667pt;}
.xe7_c00314{left:284.666667pt;}
.xb2_c00314{left:290.533333pt;}
.x103_c00314{left:291.466667pt;}
.x6c_c00314{left:294.400000pt;}
.x130_c00314{left:296.533333pt;}
.x16_c00314{left:297.733333pt;}
.xf5_c00314{left:298.666667pt;}
.xa8_c00314{left:300.000000pt;}
.x12b_c00314{left:301.066667pt;}
.x7c_c00314{left:303.066667pt;}
.xd8_c00314{left:304.266667pt;}
.x33_c00314{left:305.600000pt;}
.x7_c00314{left:307.200000pt;}
.xba_c00314{left:309.200000pt;}
.x6d_c00314{left:310.400000pt;}
.x9d_c00314{left:312.933333pt;}
.xe2_c00314{left:314.400000pt;}
.x17_c00314{left:315.333333pt;}
.xc3_c00314{left:318.400000pt;}
.x4c_c00314{left:319.466667pt;}
.x118_c00314{left:320.400000pt;}
.x94_c00314{left:322.000000pt;}
.xef_c00314{left:324.133333pt;}
.x104_c00314{left:325.733333pt;}
.xf6_c00314{left:329.066667pt;}
.x5c_c00314{left:330.266667pt;}
.x10b_c00314{left:331.333333pt;}
.x8_c00314{left:336.000000pt;}
.x8a_c00314{left:337.466667pt;}
.x4d_c00314{left:338.400000pt;}
.xbb_c00314{left:342.133333pt;}
.x25_c00314{left:343.066667pt;}
.xcc_c00314{left:344.000000pt;}
.xa9_c00314{left:345.466667pt;}
.x34_c00314{left:346.533333pt;}
.xc9_c00314{left:347.733333pt;}
.x6e_c00314{left:349.066667pt;}
.x131_c00314{left:352.533333pt;}
.x10f_c00314{left:354.400000pt;}
.x119_c00314{left:355.600000pt;}
.xf0_c00314{left:357.066667pt;}
.x9e_c00314{left:359.066667pt;}
.x8b_c00314{left:362.133333pt;}
.xd9_c00314{left:363.733333pt;}
.xc4_c00314{left:365.066667pt;}
.x41_c00314{left:367.333333pt;}
.xbc_c00314{left:368.400000pt;}
.x26_c00314{left:370.533333pt;}
.x124_c00314{left:371.866667pt;}
.x5d_c00314{left:374.133333pt;}
.xaa_c00314{left:375.600000pt;}
.x9_c00314{left:376.666667pt;}
.x4e_c00314{left:378.666667pt;}
.x105_c00314{left:380.133333pt;}
.x10c_c00314{left:381.600000pt;}
.x133_c00314{left:382.933333pt;}
.x137_c00314{left:384.400000pt;}
.x121_c00314{left:386.400000pt;}
.x18_c00314{left:388.266667pt;}
.x9f_c00314{left:389.200000pt;}
.x125_c00314{left:390.800000pt;}
.xd3_c00314{left:393.866667pt;}
.x2_c00314{left:395.466667pt;}
.x5e_c00314{left:396.533333pt;}
.xa0_c00314{left:398.533333pt;}
.x134_c00314{left:400.266667pt;}
.x4f_c00314{left:404.266667pt;}
.xda_c00314{left:406.666667pt;}
.x27_c00314{left:408.933333pt;}
.xe3_c00314{left:410.133333pt;}
.x8c_c00314{left:411.200000pt;}
.xbd_c00314{left:412.533333pt;}
.xb5_c00314{left:414.266667pt;}
.xdb_c00314{left:416.000000pt;}
.x95_c00314{left:417.333333pt;}
.xa_c00314{left:418.933333pt;}
.xc5_c00314{left:420.133333pt;}
.x19_c00314{left:421.600000pt;}
.x11a_c00314{left:422.800000pt;}
.x5f_c00314{left:425.333333pt;}
.xd4_c00314{left:427.200000pt;}
.x6f_c00314{left:428.400000pt;}
.xbe_c00314{left:429.466667pt;}
.xe4_c00314{left:430.933333pt;}
.x1a_c00314{left:434.666667pt;}
.xab_c00314{left:436.133333pt;}
.x84_c00314{left:437.733333pt;}
.x50_c00314{left:439.733333pt;}
.xff_c00314{left:441.600000pt;}
.xca_c00314{left:443.733333pt;}
.x110_c00314{left:445.333333pt;}
.xe8_c00314{left:447.333333pt;}
.x60_c00314{left:448.666667pt;}
.x12e_c00314{left:451.333333pt;}
.x28_c00314{left:453.733333pt;}
.x106_c00314{left:455.066667pt;}
.x70_c00314{left:457.866667pt;}
.x35_c00314{left:460.400000pt;}
.x96_c00314{left:463.466667pt;}
.x11b_c00314{left:469.466667pt;}
.x1b_c00314{left:471.733333pt;}
.xb_c00314{left:474.000000pt;}
.x111_c00314{left:475.466667pt;}
.x51_c00314{left:476.533333pt;}
.xdc_c00314{left:477.466667pt;}
.x71_c00314{left:482.533333pt;}
.x36_c00314{left:484.133333pt;}
.xe5_c00314{left:485.066667pt;}
.x61_c00314{left:486.133333pt;}
.x128_c00314{left:487.066667pt;}
.x97_c00314{left:488.800000pt;}
.x8d_c00314{left:490.266667pt;}
.xe9_c00314{left:491.866667pt;}
.xa1_c00314{left:493.466667pt;}
.x100_c00314{left:498.266667pt;}
.x37_c00314{left:502.000000pt;}
.x62_c00314{left:505.600000pt;}
.x114_c00314{left:506.800000pt;}
.xa2_c00314{left:508.533333pt;}
.xd5_c00314{left:509.466667pt;}
.xc_c00314{left:511.066667pt;}
.x38_c00314{left:512.533333pt;}
.x135_c00314{left:514.533333pt;}
.x72_c00314{left:515.866667pt;}
.x42_c00314{left:517.733333pt;}
.x29_c00314{left:519.066667pt;}
.x1c_c00314{left:520.000000pt;}
.xea_c00314{left:520.933333pt;}
.xdd_c00314{left:522.266667pt;}
.x52_c00314{left:528.666667pt;}
.x63_c00314{left:531.200000pt;}
.x85_c00314{left:533.066667pt;}
.x7d_c00314{left:534.133333pt;}
.x43_c00314{left:536.666667pt;}
.x126_c00314{left:537.733333pt;}
.xcd_c00314{left:539.733333pt;}
.xa3_c00314{left:542.133333pt;}
.xbf_c00314{left:543.066667pt;}
.xc6_c00314{left:544.000000pt;}
.x112_c00314{left:544.933333pt;}
.xac_c00314{left:547.200000pt;}
.x2a_c00314{left:549.200000pt;}
.x73_c00314{left:550.400000pt;}
.x1d_c00314{left:552.266667pt;}
.x8e_c00314{left:554.266667pt;}
.x11c_c00314{left:556.266667pt;}
.x98_c00314{left:557.333333pt;}
.x86_c00314{left:559.333333pt;}
.x44_c00314{left:562.266667pt;}
.xd_c00314{left:563.866667pt;}
.x39_c00314{left:565.333333pt;}
.xc7_c00314{left:566.666667pt;}
.x74_c00314{left:568.266667pt;}
.xa4_c00314{left:569.600000pt;}
.xf7_c00314{left:570.933333pt;}
.xde_c00314{left:571.866667pt;}
.xe_c00314{left:573.733333pt;}
.x1e_c00314{left:580.400000pt;}
.x10d_c00314{left:584.533333pt;}
.x7e_c00314{left:586.533333pt;}
.x12c_c00314{left:588.133333pt;}
.xf1_c00314{left:590.000000pt;}
.xb6_c00314{left:592.266667pt;}
.x75_c00314{left:593.866667pt;}
.x45_c00314{left:596.133333pt;}
.x64_c00314{left:599.333333pt;}
.xce_c00314{left:601.066667pt;}
.x99_c00314{left:604.000000pt;}
.x136_c00314{left:605.466667pt;}
.xeb_c00314{left:606.400000pt;}
.xad_c00314{left:608.000000pt;}
.xcf_c00314{left:609.733333pt;}
.x8f_c00314{left:611.866667pt;}
.x3a_c00314{left:613.333333pt;}
.x101_c00314{left:614.800000pt;}
.x53_c00314{left:616.000000pt;}
.x2b_c00314{left:617.333333pt;}
.xb7_c00314{left:620.400000pt;}
.xf_c00314{left:623.333333pt;}
.x12f_c00314{left:624.400000pt;}
.x65_c00314{left:627.466667pt;}
.x7f_c00314{left:628.800000pt;}
.x87_c00314{left:630.000000pt;}
.x1f_c00314{left:632.266667pt;}
.x107_c00314{left:634.666667pt;}
.x2c_c00314{left:636.800000pt;}
.xe6_c00314{left:638.000000pt;}
.x76_c00314{left:638.933333pt;}
.x46_c00314{left:640.666667pt;}
.xf8_c00314{left:642.933333pt;}
.x3b_c00314{left:644.666667pt;}
.x54_c00314{left:645.733333pt;}
.xd6_c00314{left:648.266667pt;}
.x66_c00314{left:651.466667pt;}
.x108_c00314{left:653.600000pt;}
.x20_c00314{left:657.200000pt;}
.x9a_c00314{left:658.400000pt;}
.x47_c00314{left:659.600000pt;}
.x3c_c00314{left:660.933333pt;}
.x2d_c00314{left:662.133333pt;}
.x10_c00314{left:664.666667pt;}
.xc0_c00314{left:665.600000pt;}
.xcb_c00314{left:671.600000pt;}
.x55_c00314{left:672.933333pt;}
.x113_c00314{left:673.866667pt;}
.x90_c00314{left:674.933333pt;}
.xf2_c00314{left:676.133333pt;}
.x21_c00314{left:677.066667pt;}
.xb8_c00314{left:678.266667pt;}
.xf9_c00314{left:681.333333pt;}
.xfb_c00314{left:682.533333pt;}
.xae_c00314{left:683.733333pt;}
.x3d_c00314{left:684.666667pt;}
.x67_c00314{left:686.000000pt;}
.x11d_c00314{left:687.466667pt;}
.x109_c00314{left:689.066667pt;}
.x80_c00314{left:693.200000pt;}
.x129_c00314{left:696.266667pt;}
.x2e_c00314{left:699.866667pt;}
.xec_c00314{left:701.733333pt;}
.x88_c00314{left:704.933333pt;}
.x11_c00314{left:709.466667pt;}
.x56_c00314{left:711.600000pt;}
.xfc_c00314{left:713.200000pt;}
.x48_c00314{left:717.200000pt;}
}





/* 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_c00315 {
    display:none;
  }
  .loading-indicator_c00315.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00315 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_c00315 { 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_c00315" -> "#page-container .classname_c00315")
 */
.pf_c00315 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00315 { /* 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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00315 { /* 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_c00315 { /* 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_c00315 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00315 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00315 {overflow:visible;}
  }
}
.c_c00315 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00315 { /* 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_c00315:after { /* webkit #35443 */
  content: '';
}
.t_c00315:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00315 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 */
}
.__c00315 { /* 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_c00315 { /* info for Javascript */
  display:none;
}
.l_c00315 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00315 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00315 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00315: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_c00315 {
    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_c00315.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00315.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_c00315 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00315{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00315;src:url('chunks/assets/font_f121e65e5862f90328048958.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.000000;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_c00315{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1_c00315{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2_c00315{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.v0_c00315{vertical-align:0.000000px;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{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__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:0.000000px;}
.fc0_c00315{color:transparent;}
.fs0_c00315{font-size:48.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:104.400000px;}
.h2_c00315{height:48.000000px;}
.h0_c00315{height:1166.759949px;}
.h1_c00315{height:1167.000000px;}
.w1_c00315{width:913.500000px;}
.w0_c00315{width:913.679993px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:717.150000px;}
.x2_c00315{left:734.850000px;}
.x3_c00315{left:751.350000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs0_c00315{font-size:42.666667pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:92.800000pt;}
.h2_c00315{height:42.666667pt;}
.h0_c00315{height:1037.119955pt;}
.h1_c00315{height:1037.333333pt;}
.w1_c00315{width:812.000000pt;}
.w0_c00315{width:812.159993pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:637.466667pt;}
.x2_c00315{left:653.200000pt;}
.x3_c00315{left:667.866667pt;}
}





/* 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_c00316 {
    display:none;
  }
  .loading-indicator_c00316.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00316 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_c00316 { 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_c00316" -> "#page-container .classname_c00316")
 */
.pf_c00316 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00316 { /* 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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00316 { /* 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_c00316 { /* 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_c00316 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00316 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00316 {overflow:visible;}
  }
}
.c_c00316 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00316 { /* 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_c00316:after { /* webkit #35443 */
  content: '';
}
.t_c00316:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00316 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 */
}
.__c00316 { /* 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_c00316 { /* info for Javascript */
  display:none;
}
.l_c00316 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00316 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00316 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00316: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_c00316 {
    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_c00316.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00316.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_c00316 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00316{font-family:sans-serif;visibility:hidden;}
.sc__c00316{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
}
.y0_c00316{bottom:0.000000px;}
.h0_c00316{height:1166.759949px;}
.h1_c00316{height:1167.000000px;}
.w1_c00316{width:913.500000px;}
.w0_c00316{width:913.679993px;}
.x0_c00316{left:0.000000px;}
@media print{
.y0_c00316{bottom:0.000000pt;}
.h0_c00316{height:1037.119955pt;}
.h1_c00316{height:1037.333333pt;}
.w1_c00316{width:812.000000pt;}
.w0_c00316{width:812.159993pt;}
.x0_c00316{left:0.000000pt;}
}





/* 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_c00317 {
    display:none;
  }
  .loading-indicator_c00317.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00317 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_c00317 { 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_c00317" -> "#page-container .classname_c00317")
 */
.pf_c00317 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00317 { /* 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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00317 { /* 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_c00317 { /* 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_c00317 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00317 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00317 {overflow:visible;}
  }
}
.c_c00317 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00317 { /* 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_c00317:after { /* webkit #35443 */
  content: '';
}
.t_c00317:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00317 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 */
}
.__c00317 { /* 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_c00317 { /* info for Javascript */
  display:none;
}
.l_c00317 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00317 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00317 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00317: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_c00317 {
    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_c00317.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00317.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_c00317 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00317{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00317;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.000000;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;}
.m1_c00317{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m53_c00317{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00317{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m62_c00317{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mad_c00317{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m94_c00317{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m63_c00317{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00317{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00317{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00317{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00317{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m95_c00317{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00317{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mac_c00317{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m75_c00317{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00317{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00317{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.maf_c00317{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m97_c00317{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m32_c00317{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00317{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00317{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00317{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00317{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4_c00317{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mae_c00317{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00317{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00317{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m49_c00317{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m13_c00317{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00317{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00317{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m73_c00317{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00317{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m17_c00317{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00317{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m58_c00317{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m89_c00317{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m34_c00317{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m47_c00317{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m48_c00317{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m11_c00317{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00317{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m27_c00317{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m69_c00317{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m30_c00317{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00317{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m74_c00317{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00317{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00317{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m38_c00317{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m54_c00317{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m55_c00317{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mc_c00317{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00317{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m87_c00317{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7_c00317{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m72_c00317{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m43_c00317{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6_c00317{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m18_c00317{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.maa_c00317{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m50_c00317{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m80_c00317{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00317{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m51_c00317{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00317{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00317{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m84_c00317{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m64_c00317{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00317{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m42_c00317{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m59_c00317{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m96_c00317{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5_c00317{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m88_c00317{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00317{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m99_c00317{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m23_c00317{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m66_c00317{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m46_c00317{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m21_c00317{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m40_c00317{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m20_c00317{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m93_c00317{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00317{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00317{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00317{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00317{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00317{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00317{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00317{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma_c00317{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m79_c00317{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00317{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3_c00317{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);}
.m9d_c00317{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29_c00317{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00317{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m67_c00317{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m71_c00317{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m19_c00317{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2_c00317{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00317{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m56_c00317{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00317{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m60_c00317{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.me_c00317{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00317{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m15_c00317{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00317{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m37_c00317{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00317{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m26_c00317{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m85_c00317{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m9_c00317{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0_c00317{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00317{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m82_c00317{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00317{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00317{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00317{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00317{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m22_c00317{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00317{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m77_c00317{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c00317{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m65_c00317{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mf_c00317{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m86_c00317{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00317{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m28_c00317{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00317{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m61_c00317{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m25_c00317{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00317{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md_c00317{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00317{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m52_c00317{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m16_c00317{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m44_c00317{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m45_c00317{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m31_c00317{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m70_c00317{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m39_c00317{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00317{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00317{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m14_c00317{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00317{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mb_c00317{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m41_c00317{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00317{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00317{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m36_c00317{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m81_c00317{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00317{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m76_c00317{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m92_c00317{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m83_c00317{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m12_c00317{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00317{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00317{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00317{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00317{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m91_c00317{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m90_c00317{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00317{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00317{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00317{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00317{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00317{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m57_c00317{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m78_c00317{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.mab_c00317{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m68_c00317{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00317{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00317{vertical-align:0.000000px;}
.ls0_c00317{letter-spacing:0.000000px;}
.sc__c00317{text-shadow:none;}
.sc0_c00317{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__c00317{-webkit-text-stroke:0px transparent;}
.sc0_c00317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00317{word-spacing:0.000000px;}
.ws4_c00317{word-spacing:0.250000px;}
.ws3_c00317{word-spacing:3.000000px;}
.ws1_c00317{word-spacing:4.625000px;}
.ws2_c00317{word-spacing:10.375000px;}
.ws0_c00317{word-spacing:17.333333px;}
.fc0_c00317{color:transparent;}
.fs1_c00317{font-size:54.000000px;}
.fs0_c00317{font-size:66.000000px;}
.y0_c00317{bottom:0.000000px;}
.y2c_c00317{bottom:155.550000px;}
.y2b_c00317{bottom:172.050000px;}
.y2a_c00317{bottom:189.000000px;}
.y29_c00317{bottom:204.450000px;}
.y28_c00317{bottom:240.450000px;}
.y27_c00317{bottom:260.250000px;}
.y26_c00317{bottom:280.350000px;}
.y25_c00317{bottom:300.150000px;}
.y24_c00317{bottom:319.650000px;}
.y23_c00317{bottom:339.750000px;}
.y22_c00317{bottom:359.550000px;}
.y21_c00317{bottom:379.350000px;}
.y20_c00317{bottom:398.850000px;}
.y1f_c00317{bottom:418.650000px;}
.y1e_c00317{bottom:442.800000px;}
.y1d_c00317{bottom:462.900000px;}
.y1c_c00317{bottom:482.700000px;}
.y1b_c00317{bottom:501.900000px;}
.y1a_c00317{bottom:522.750000px;}
.y19_c00317{bottom:542.550000px;}
.y18_c00317{bottom:562.350000px;}
.y17_c00317{bottom:590.850000px;}
.y16_c00317{bottom:610.950000px;}
.y15_c00317{bottom:630.750000px;}
.y14_c00317{bottom:650.400000px;}
.y13_c00317{bottom:670.200000px;}
.y12_c00317{bottom:690.000000px;}
.y11_c00317{bottom:710.100000px;}
.y10_c00317{bottom:730.200000px;}
.yf_c00317{bottom:750.000000px;}
.ye_c00317{bottom:769.800000px;}
.yd_c00317{bottom:789.600000px;}
.yc_c00317{bottom:809.700000px;}
.yb_c00317{bottom:829.500000px;}
.ya_c00317{bottom:849.300000px;}
.y9_c00317{bottom:869.400000px;}
.y8_c00317{bottom:889.200000px;}
.y7_c00317{bottom:909.150000px;}
.y6_c00317{bottom:928.950000px;}
.y5_c00317{bottom:949.050000px;}
.y4_c00317{bottom:969.150000px;}
.y3_c00317{bottom:988.950000px;}
.y2_c00317{bottom:1009.050000px;}
.y1_c00317{bottom:1051.500000px;}
.h3_c00317{height:54.000000px;}
.h2_c00317{height:66.000000px;}
.h0_c00317{height:1166.759949px;}
.h1_c00317{height:1167.000000px;}
.w1_c00317{width:913.500000px;}
.w0_c00317{width:913.679993px;}
.x0_c00317{left:0.000000px;}
.x139_c00317{left:90.300000px;}
.x11b_c00317{left:91.650000px;}
.xe8_c00317{left:93.150000px;}
.xa5_c00317{left:94.650000px;}
.x74_c00317{left:95.850000px;}
.x33_c00317{left:97.200000px;}
.x4_c00317{left:98.250000px;}
.x133_c00317{left:110.100000px;}
.x11c_c00317{left:111.750000px;}
.x52_c00317{left:113.850000px;}
.x13_c00317{left:115.500000px;}
.x75_c00317{left:117.150000px;}
.xba_c00317{left:119.250000px;}
.xe9_c00317{left:121.200000px;}
.x137_c00317{left:122.700000px;}
.x8a_c00317{left:124.050000px;}
.xc1_c00317{left:125.700000px;}
.x14_c00317{left:127.800000px;}
.x16_c00317{left:129.300000px;}
.xb6_c00317{left:132.750000px;}
.x13a_c00317{left:133.800000px;}
.x5e_c00317{left:136.800000px;}
.x11d_c00317{left:140.250000px;}
.x53_c00317{left:142.650000px;}
.x10d_c00317{left:144.450000px;}
.xbb_c00317{left:145.500000px;}
.xc5_c00317{left:149.250000px;}
.xc2_c00317{left:150.900000px;}
.x3e_c00317{left:152.100000px;}
.x76_c00317{left:153.150000px;}
.x6b_c00317{left:155.700000px;}
.x5f_c00317{left:156.900000px;}
.x48_c00317{left:158.400000px;}
.x5_c00317{left:159.750000px;}
.x9d_c00317{left:161.400000px;}
.x124_c00317{left:163.350000px;}
.x17_c00317{left:164.550000px;}
.xc6_c00317{left:166.950000px;}
.xea_c00317{left:168.750000px;}
.xf4_c00317{left:170.250000px;}
.x116_c00317{left:173.100000px;}
.x128_c00317{left:175.350000px;}
.x111_c00317{left:176.550000px;}
.xf2_c00317{left:177.600000px;}
.x26_c00317{left:178.800000px;}
.x93_c00317{left:179.850000px;}
.x15_c00317{left:181.500000px;}
.xa6_c00317{left:183.900000px;}
.x54_c00317{left:185.100000px;}
.xc7_c00317{left:187.050000px;}
.xb0_c00317{left:189.750000px;}
.x10e_c00317{left:191.250000px;}
.x134_c00317{left:192.450000px;}
.x6_c00317{left:193.950000px;}
.xdd_c00317{left:195.150000px;}
.xd4_c00317{left:197.100000px;}
.x3f_c00317{left:198.600000px;}
.x49_c00317{left:199.800000px;}
.x94_c00317{left:201.150000px;}
.x138_c00317{left:202.650000px;}
.x123_c00317{left:206.550000px;}
.x8b_c00317{left:207.600000px;}
.x34_c00317{left:210.600000px;}
.x112_c00317{left:212.850000px;}
.x4a_c00317{left:216.750000px;}
.x11e_c00317{left:217.950000px;}
.x27_c00317{left:219.450000px;}
.x125_c00317{left:222.750000px;}
.xbc_c00317{left:224.400000px;}
.xd9_c00317{left:225.900000px;}
.xb1_c00317{left:227.850000px;}
.x95_c00317{left:229.950000px;}
.xf5_c00317{left:231.750000px;}
.x55_c00317{left:233.400000px;}
.x6c_c00317{left:234.600000px;}
.x40_c00317{left:236.100000px;}
.xf3_c00317{left:238.050000px;}
.x7_c00317{left:240.450000px;}
.x60_c00317{left:241.800000px;}
.xde_c00317{left:244.800000px;}
.x35_c00317{left:247.650000px;}
.x28_c00317{left:250.350000px;}
.x113_c00317{left:252.750000px;}
.x18_c00317{left:254.250000px;}
.x4b_c00317{left:255.300000px;}
.xd5_c00317{left:258.300000px;}
.xeb_c00317{left:260.850000px;}
.x61_c00317{left:262.350000px;}
.xa7_c00317{left:265.350000px;}
.x12e_c00317{left:267.750000px;}
.xc8_c00317{left:268.800000px;}
.xfa_c00317{left:270.300000px;}
.x77_c00317{left:272.400000px;}
.x9e_c00317{left:274.350000px;}
.xec_c00317{left:277.050000px;}
.x83_c00317{left:278.850000px;}
.x41_c00317{left:280.800000px;}
.x6d_c00317{left:284.250000px;}
.x29_c00317{left:286.050000px;}
.x19_c00317{left:287.700000px;}
.x56_c00317{left:290.250000px;}
.x8_c00317{left:291.600000px;}
.x78_c00317{left:293.700000px;}
.x107_c00317{left:295.050000px;}
.x42_c00317{left:298.500000px;}
.xd6_c00317{left:301.200000px;}
.x6e_c00317{left:302.550000px;}
.xbd_c00317{left:305.850000px;}
.x11f_c00317{left:307.200000px;}
.x4c_c00317{left:311.100000px;}
.x117_c00317{left:314.550000px;}
.xc9_c00317{left:315.600000px;}
.x1a_c00317{left:318.600000px;}
.x96_c00317{left:320.700000px;}
.x2a_c00317{left:322.350000px;}
.xed_c00317{left:324.150000px;}
.x108_c00317{left:328.500000px;}
.x36_c00317{left:329.850000px;}
.x118_c00317{left:331.800000px;}
.x84_c00317{left:333.150000px;}
.x43_c00317{left:334.200000px;}
.xa8_c00317{left:335.550000px;}
.x12f_c00317{left:336.900000px;}
.x109_c00317{left:339.000000px;}
.x4d_c00317{left:340.200000px;}
.x103_c00317{left:345.300000px;}
.x9_c00317{left:347.700000px;}
.x101_c00317{left:349.350000px;}
.xda_c00317{left:353.700000px;}
.x44_c00317{left:355.500000px;}
.x2b_c00317{left:356.850000px;}
.x57_c00317{left:359.700000px;}
.xca_c00317{left:362.400000px;}
.xbe_c00317{left:364.200000px;}
.x37_c00317{left:366.600000px;}
.x129_c00317{left:368.700000px;}
.x114_c00317{left:373.350000px;}
.xfb_c00317{left:374.700000px;}
.xa_c00317{left:376.200000px;}
.x9f_c00317{left:377.400000px;}
.x62_c00317{left:379.050000px;}
.x45_c00317{left:380.700000px;}
.xdf_c00317{left:383.250000px;}
.xd7_c00317{left:385.500000px;}
.x79_c00317{left:388.350000px;}
.x1b_c00317{left:392.700000px;}
.xa9_c00317{left:394.950000px;}
.xb_c00317{left:396.750000px;}
.x1_c00317{left:398.550000px;}
.x63_c00317{left:400.350000px;}
.xcb_c00317{left:401.700000px;}
.x58_c00317{left:403.650000px;}
.x85_c00317{left:405.450000px;}
.xf6_c00317{left:407.700000px;}
.x12a_c00317{left:409.350000px;}
.x1c_c00317{left:414.000000px;}
.xbf_c00317{left:415.650000px;}
.x7a_c00317{left:419.700000px;}
.x2c_c00317{left:421.200000px;}
.xe0_c00317{left:423.900000px;}
.x8c_c00317{left:425.250000px;}
.xc0_c00317{left:426.450000px;}
.x6f_c00317{left:428.550000px;}
.xf7_c00317{left:430.350000px;}
.x102_c00317{left:432.600000px;}
.xb2_c00317{left:434.100000px;}
.xa0_c00317{left:436.050000px;}
.x97_c00317{left:437.400000px;}
.x7b_c00317{left:440.250000px;}
.x59_c00317{left:441.750000px;}
.x1d_c00317{left:442.800000px;}
.xc_c00317{left:443.850000px;}
.x104_c00317{left:445.050000px;}
.x8d_c00317{left:446.100000px;}
.x12b_c00317{left:449.400000px;}
.x120_c00317{left:450.450000px;}
.x4e_c00317{left:452.850000px;}
.x86_c00317{left:454.800000px;}
.xaa_c00317{left:458.250000px;}
.x46_c00317{left:459.900000px;}
.x10a_c00317{left:462.000000px;}
.xe1_c00317{left:465.600000px;}
.xd_c00317{left:466.950000px;}
.xfc_c00317{left:468.600000px;}
.xcc_c00317{left:470.100000px;}
.x10f_c00317{left:471.750000px;}
.x4f_c00317{left:473.400000px;}
.x2d_c00317{left:476.250000px;}
.x2_c00317{left:478.500000px;}
.x7c_c00317{left:480.600000px;}
.x121_c00317{left:481.800000px;}
.x38_c00317{left:486.450000px;}
.x70_c00317{left:487.650000px;}
.x130_c00317{left:489.450000px;}
.xd8_c00317{left:490.650000px;}
.xfd_c00317{left:491.700000px;}
.xcd_c00317{left:495.000000px;}
.x2e_c00317{left:496.050000px;}
.x64_c00317{left:497.850000px;}
.xb3_c00317{left:499.650000px;}
.x1e_c00317{left:503.250000px;}
.x71_c00317{left:508.950000px;}
.x7d_c00317{left:512.700000px;}
.xe2_c00317{left:514.950000px;}
.xe_c00317{left:517.650000px;}
.xce_c00317{left:523.500000px;}
.x8e_c00317{left:524.850000px;}
.x122_c00317{left:526.500000px;}
.x105_c00317{left:527.550000px;}
.x50_c00317{left:529.200000px;}
.xee_c00317{left:532.950000px;}
.xab_c00317{left:534.600000px;}
.x47_c00317{left:537.750000px;}
.x119_c00317{left:539.100000px;}
.x2f_c00317{left:540.750000px;}
.xe3_c00317{left:543.000000px;}
.x39_c00317{left:545.550000px;}
.xcf_c00317{left:549.000000px;}
.xa1_c00317{left:551.850000px;}
.x51_c00317{left:553.350000px;}
.x65_c00317{left:556.200000px;}
.xdb_c00317{left:559.650000px;}
.x131_c00317{left:561.750000px;}
.x1f_c00317{left:562.950000px;}
.x8f_c00317{left:564.450000px;}
.x3a_c00317{left:565.650000px;}
.x5a_c00317{left:566.700000px;}
.x135_c00317{left:568.350000px;}
.x98_c00317{left:569.700000px;}
.x126_c00317{left:571.950000px;}
.xf_c00317{left:573.450000px;}
.x7e_c00317{left:575.700000px;}
.x11a_c00317{left:577.950000px;}
.xfe_c00317{left:579.450000px;}
.x10b_c00317{left:581.400000px;}
.x66_c00317{left:582.450000px;}
.xb4_c00317{left:584.250000px;}
.xe4_c00317{left:585.450000px;}
.xb7_c00317{left:587.400000px;}
.xef_c00317{left:589.800000px;}
.x87_c00317{left:591.150000px;}
.x12c_c00317{left:592.350000px;}
.x10_c00317{left:594.000000px;}
.x72_c00317{left:596.850000px;}
.xff_c00317{left:598.500000px;}
.xb8_c00317{left:600.000000px;}
.x99_c00317{left:602.100000px;}
.x20_c00317{left:603.600000px;}
.xd0_c00317{left:613.050000px;}
.xac_c00317{left:614.100000px;}
.x30_c00317{left:615.300000px;}
.x73_c00317{left:620.550000px;}
.xe5_c00317{left:622.200000px;}
.xa2_c00317{left:623.400000px;}
.xad_c00317{left:626.400000px;}
.x11_c00317{left:627.900000px;}
.x21_c00317{left:629.850000px;}
.x90_c00317{left:631.350000px;}
.x5b_c00317{left:633.300000px;}
.xf8_c00317{left:634.500000px;}
.x9a_c00317{left:640.650000px;}
.x115_c00317{left:643.950000px;}
.x7f_c00317{left:645.150000px;}
.x67_c00317{left:648.000000px;}
.x31_c00317{left:649.800000px;}
.x91_c00317{left:652.200000px;}
.x127_c00317{left:653.550000px;}
.x136_c00317{left:654.750000px;}
.x106_c00317{left:658.200000px;}
.xd1_c00317{left:659.550000px;}
.xe6_c00317{left:662.550000px;}
.xf9_c00317{left:664.800000px;}
.x80_c00317{left:666.750000px;}
.x22_c00317{left:668.400000px;}
.xf0_c00317{left:669.750000px;}
.x100_c00317{left:672.000000px;}
.xc3_c00317{left:673.350000px;}
.x3b_c00317{left:674.400000px;}
.x10c_c00317{left:675.750000px;}
.x68_c00317{left:677.100000px;}
.x92_c00317{left:680.250000px;}
.x110_c00317{left:681.900000px;}
.xb9_c00317{left:683.100000px;}
.x132_c00317{left:684.600000px;}
.xd2_c00317{left:686.550000px;}
.x23_c00317{left:689.700000px;}
.x5c_c00317{left:691.650000px;}
.xe7_c00317{left:693.150000px;}
.x12d_c00317{left:695.550000px;}
.xb5_c00317{left:696.600000px;}
.xae_c00317{left:698.100000px;}
.x3c_c00317{left:699.300000px;}
.x81_c00317{left:701.250000px;}
.x24_c00317{left:704.850000px;}
.xa3_c00317{left:707.400000px;}
.x9b_c00317{left:711.900000px;}
.x12_c00317{left:713.550000px;}
.x32_c00317{left:714.900000px;}
.x88_c00317{left:716.700000px;}
.xc4_c00317{left:719.850000px;}
.xaf_c00317{left:724.350000px;}
.x89_c00317{left:727.800000px;}
.xf1_c00317{left:730.200000px;}
.x69_c00317{left:733.200000px;}
.x3d_c00317{left:734.250000px;}
.x5d_c00317{left:735.600000px;}
.x3_c00317{left:739.500000px;}
.xdc_c00317{left:741.000000px;}
.x25_c00317{left:742.950000px;}
.x82_c00317{left:745.950000px;}
.xd3_c00317{left:750.300000px;}
.xa4_c00317{left:753.150000px;}
.x6a_c00317{left:757.650000px;}
.x9c_c00317{left:759.450000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws5_c00317{word-spacing:0.000000pt;}
.ws4_c00317{word-spacing:0.222222pt;}
.ws3_c00317{word-spacing:2.666667pt;}
.ws1_c00317{word-spacing:4.111111pt;}
.ws2_c00317{word-spacing:9.222222pt;}
.ws0_c00317{word-spacing:15.407407pt;}
.fs1_c00317{font-size:48.000000pt;}
.fs0_c00317{font-size:58.666667pt;}
.y0_c00317{bottom:0.000000pt;}
.y2c_c00317{bottom:138.266667pt;}
.y2b_c00317{bottom:152.933333pt;}
.y2a_c00317{bottom:168.000000pt;}
.y29_c00317{bottom:181.733333pt;}
.y28_c00317{bottom:213.733333pt;}
.y27_c00317{bottom:231.333333pt;}
.y26_c00317{bottom:249.200000pt;}
.y25_c00317{bottom:266.800000pt;}
.y24_c00317{bottom:284.133333pt;}
.y23_c00317{bottom:302.000000pt;}
.y22_c00317{bottom:319.600000pt;}
.y21_c00317{bottom:337.200000pt;}
.y20_c00317{bottom:354.533333pt;}
.y1f_c00317{bottom:372.133333pt;}
.y1e_c00317{bottom:393.600000pt;}
.y1d_c00317{bottom:411.466667pt;}
.y1c_c00317{bottom:429.066667pt;}
.y1b_c00317{bottom:446.133333pt;}
.y1a_c00317{bottom:464.666667pt;}
.y19_c00317{bottom:482.266667pt;}
.y18_c00317{bottom:499.866667pt;}
.y17_c00317{bottom:525.200000pt;}
.y16_c00317{bottom:543.066667pt;}
.y15_c00317{bottom:560.666667pt;}
.y14_c00317{bottom:578.133333pt;}
.y13_c00317{bottom:595.733333pt;}
.y12_c00317{bottom:613.333333pt;}
.y11_c00317{bottom:631.200000pt;}
.y10_c00317{bottom:649.066667pt;}
.yf_c00317{bottom:666.666667pt;}
.ye_c00317{bottom:684.266667pt;}
.yd_c00317{bottom:701.866667pt;}
.yc_c00317{bottom:719.733333pt;}
.yb_c00317{bottom:737.333333pt;}
.ya_c00317{bottom:754.933333pt;}
.y9_c00317{bottom:772.800000pt;}
.y8_c00317{bottom:790.400000pt;}
.y7_c00317{bottom:808.133333pt;}
.y6_c00317{bottom:825.733333pt;}
.y5_c00317{bottom:843.600000pt;}
.y4_c00317{bottom:861.466667pt;}
.y3_c00317{bottom:879.066667pt;}
.y2_c00317{bottom:896.933333pt;}
.y1_c00317{bottom:934.666667pt;}
.h3_c00317{height:48.000000pt;}
.h2_c00317{height:58.666667pt;}
.h0_c00317{height:1037.119955pt;}
.h1_c00317{height:1037.333333pt;}
.w1_c00317{width:812.000000pt;}
.w0_c00317{width:812.159993pt;}
.x0_c00317{left:0.000000pt;}
.x139_c00317{left:80.266667pt;}
.x11b_c00317{left:81.466667pt;}
.xe8_c00317{left:82.800000pt;}
.xa5_c00317{left:84.133333pt;}
.x74_c00317{left:85.200000pt;}
.x33_c00317{left:86.400000pt;}
.x4_c00317{left:87.333333pt;}
.x133_c00317{left:97.866667pt;}
.x11c_c00317{left:99.333333pt;}
.x52_c00317{left:101.200000pt;}
.x13_c00317{left:102.666667pt;}
.x75_c00317{left:104.133333pt;}
.xba_c00317{left:106.000000pt;}
.xe9_c00317{left:107.733333pt;}
.x137_c00317{left:109.066667pt;}
.x8a_c00317{left:110.266667pt;}
.xc1_c00317{left:111.733333pt;}
.x14_c00317{left:113.600000pt;}
.x16_c00317{left:114.933333pt;}
.xb6_c00317{left:118.000000pt;}
.x13a_c00317{left:118.933333pt;}
.x5e_c00317{left:121.600000pt;}
.x11d_c00317{left:124.666667pt;}
.x53_c00317{left:126.800000pt;}
.x10d_c00317{left:128.400000pt;}
.xbb_c00317{left:129.333333pt;}
.xc5_c00317{left:132.666667pt;}
.xc2_c00317{left:134.133333pt;}
.x3e_c00317{left:135.200000pt;}
.x76_c00317{left:136.133333pt;}
.x6b_c00317{left:138.400000pt;}
.x5f_c00317{left:139.466667pt;}
.x48_c00317{left:140.800000pt;}
.x5_c00317{left:142.000000pt;}
.x9d_c00317{left:143.466667pt;}
.x124_c00317{left:145.200000pt;}
.x17_c00317{left:146.266667pt;}
.xc6_c00317{left:148.400000pt;}
.xea_c00317{left:150.000000pt;}
.xf4_c00317{left:151.333333pt;}
.x116_c00317{left:153.866667pt;}
.x128_c00317{left:155.866667pt;}
.x111_c00317{left:156.933333pt;}
.xf2_c00317{left:157.866667pt;}
.x26_c00317{left:158.933333pt;}
.x93_c00317{left:159.866667pt;}
.x15_c00317{left:161.333333pt;}
.xa6_c00317{left:163.466667pt;}
.x54_c00317{left:164.533333pt;}
.xc7_c00317{left:166.266667pt;}
.xb0_c00317{left:168.666667pt;}
.x10e_c00317{left:170.000000pt;}
.x134_c00317{left:171.066667pt;}
.x6_c00317{left:172.400000pt;}
.xdd_c00317{left:173.466667pt;}
.xd4_c00317{left:175.200000pt;}
.x3f_c00317{left:176.533333pt;}
.x49_c00317{left:177.600000pt;}
.x94_c00317{left:178.800000pt;}
.x138_c00317{left:180.133333pt;}
.x123_c00317{left:183.600000pt;}
.x8b_c00317{left:184.533333pt;}
.x34_c00317{left:187.200000pt;}
.x112_c00317{left:189.200000pt;}
.x4a_c00317{left:192.666667pt;}
.x11e_c00317{left:193.733333pt;}
.x27_c00317{left:195.066667pt;}
.x125_c00317{left:198.000000pt;}
.xbc_c00317{left:199.466667pt;}
.xd9_c00317{left:200.800000pt;}
.xb1_c00317{left:202.533333pt;}
.x95_c00317{left:204.400000pt;}
.xf5_c00317{left:206.000000pt;}
.x55_c00317{left:207.466667pt;}
.x6c_c00317{left:208.533333pt;}
.x40_c00317{left:209.866667pt;}
.xf3_c00317{left:211.600000pt;}
.x7_c00317{left:213.733333pt;}
.x60_c00317{left:214.933333pt;}
.xde_c00317{left:217.600000pt;}
.x35_c00317{left:220.133333pt;}
.x28_c00317{left:222.533333pt;}
.x113_c00317{left:224.666667pt;}
.x18_c00317{left:226.000000pt;}
.x4b_c00317{left:226.933333pt;}
.xd5_c00317{left:229.600000pt;}
.xeb_c00317{left:231.866667pt;}
.x61_c00317{left:233.200000pt;}
.xa7_c00317{left:235.866667pt;}
.x12e_c00317{left:238.000000pt;}
.xc8_c00317{left:238.933333pt;}
.xfa_c00317{left:240.266667pt;}
.x77_c00317{left:242.133333pt;}
.x9e_c00317{left:243.866667pt;}
.xec_c00317{left:246.266667pt;}
.x83_c00317{left:247.866667pt;}
.x41_c00317{left:249.600000pt;}
.x6d_c00317{left:252.666667pt;}
.x29_c00317{left:254.266667pt;}
.x19_c00317{left:255.733333pt;}
.x56_c00317{left:258.000000pt;}
.x8_c00317{left:259.200000pt;}
.x78_c00317{left:261.066667pt;}
.x107_c00317{left:262.266667pt;}
.x42_c00317{left:265.333333pt;}
.xd6_c00317{left:267.733333pt;}
.x6e_c00317{left:268.933333pt;}
.xbd_c00317{left:271.866667pt;}
.x11f_c00317{left:273.066667pt;}
.x4c_c00317{left:276.533333pt;}
.x117_c00317{left:279.600000pt;}
.xc9_c00317{left:280.533333pt;}
.x1a_c00317{left:283.200000pt;}
.x96_c00317{left:285.066667pt;}
.x2a_c00317{left:286.533333pt;}
.xed_c00317{left:288.133333pt;}
.x108_c00317{left:292.000000pt;}
.x36_c00317{left:293.200000pt;}
.x118_c00317{left:294.933333pt;}
.x84_c00317{left:296.133333pt;}
.x43_c00317{left:297.066667pt;}
.xa8_c00317{left:298.266667pt;}
.x12f_c00317{left:299.466667pt;}
.x109_c00317{left:301.333333pt;}
.x4d_c00317{left:302.400000pt;}
.x103_c00317{left:306.933333pt;}
.x9_c00317{left:309.066667pt;}
.x101_c00317{left:310.533333pt;}
.xda_c00317{left:314.400000pt;}
.x44_c00317{left:316.000000pt;}
.x2b_c00317{left:317.200000pt;}
.x57_c00317{left:319.733333pt;}
.xca_c00317{left:322.133333pt;}
.xbe_c00317{left:323.733333pt;}
.x37_c00317{left:325.866667pt;}
.x129_c00317{left:327.733333pt;}
.x114_c00317{left:331.866667pt;}
.xfb_c00317{left:333.066667pt;}
.xa_c00317{left:334.400000pt;}
.x9f_c00317{left:335.466667pt;}
.x62_c00317{left:336.933333pt;}
.x45_c00317{left:338.400000pt;}
.xdf_c00317{left:340.666667pt;}
.xd7_c00317{left:342.666667pt;}
.x79_c00317{left:345.200000pt;}
.x1b_c00317{left:349.066667pt;}
.xa9_c00317{left:351.066667pt;}
.xb_c00317{left:352.666667pt;}
.x1_c00317{left:354.266667pt;}
.x63_c00317{left:355.866667pt;}
.xcb_c00317{left:357.066667pt;}
.x58_c00317{left:358.800000pt;}
.x85_c00317{left:360.400000pt;}
.xf6_c00317{left:362.400000pt;}
.x12a_c00317{left:363.866667pt;}
.x1c_c00317{left:368.000000pt;}
.xbf_c00317{left:369.466667pt;}
.x7a_c00317{left:373.066667pt;}
.x2c_c00317{left:374.400000pt;}
.xe0_c00317{left:376.800000pt;}
.x8c_c00317{left:378.000000pt;}
.xc0_c00317{left:379.066667pt;}
.x6f_c00317{left:380.933333pt;}
.xf7_c00317{left:382.533333pt;}
.x102_c00317{left:384.533333pt;}
.xb2_c00317{left:385.866667pt;}
.xa0_c00317{left:387.600000pt;}
.x97_c00317{left:388.800000pt;}
.x7b_c00317{left:391.333333pt;}
.x59_c00317{left:392.666667pt;}
.x1d_c00317{left:393.600000pt;}
.xc_c00317{left:394.533333pt;}
.x104_c00317{left:395.600000pt;}
.x8d_c00317{left:396.533333pt;}
.x12b_c00317{left:399.466667pt;}
.x120_c00317{left:400.400000pt;}
.x4e_c00317{left:402.533333pt;}
.x86_c00317{left:404.266667pt;}
.xaa_c00317{left:407.333333pt;}
.x46_c00317{left:408.800000pt;}
.x10a_c00317{left:410.666667pt;}
.xe1_c00317{left:413.866667pt;}
.xd_c00317{left:415.066667pt;}
.xfc_c00317{left:416.533333pt;}
.xcc_c00317{left:417.866667pt;}
.x10f_c00317{left:419.333333pt;}
.x4f_c00317{left:420.800000pt;}
.x2d_c00317{left:423.333333pt;}
.x2_c00317{left:425.333333pt;}
.x7c_c00317{left:427.200000pt;}
.x121_c00317{left:428.266667pt;}
.x38_c00317{left:432.400000pt;}
.x70_c00317{left:433.466667pt;}
.x130_c00317{left:435.066667pt;}
.xd8_c00317{left:436.133333pt;}
.xfd_c00317{left:437.066667pt;}
.xcd_c00317{left:440.000000pt;}
.x2e_c00317{left:440.933333pt;}
.x64_c00317{left:442.533333pt;}
.xb3_c00317{left:444.133333pt;}
.x1e_c00317{left:447.333333pt;}
.x71_c00317{left:452.400000pt;}
.x7d_c00317{left:455.733333pt;}
.xe2_c00317{left:457.733333pt;}
.xe_c00317{left:460.133333pt;}
.xce_c00317{left:465.333333pt;}
.x8e_c00317{left:466.533333pt;}
.x122_c00317{left:468.000000pt;}
.x105_c00317{left:468.933333pt;}
.x50_c00317{left:470.400000pt;}
.xee_c00317{left:473.733333pt;}
.xab_c00317{left:475.200000pt;}
.x47_c00317{left:478.000000pt;}
.x119_c00317{left:479.200000pt;}
.x2f_c00317{left:480.666667pt;}
.xe3_c00317{left:482.666667pt;}
.x39_c00317{left:484.933333pt;}
.xcf_c00317{left:488.000000pt;}
.xa1_c00317{left:490.533333pt;}
.x51_c00317{left:491.866667pt;}
.x65_c00317{left:494.400000pt;}
.xdb_c00317{left:497.466667pt;}
.x131_c00317{left:499.333333pt;}
.x1f_c00317{left:500.400000pt;}
.x8f_c00317{left:501.733333pt;}
.x3a_c00317{left:502.800000pt;}
.x5a_c00317{left:503.733333pt;}
.x135_c00317{left:505.200000pt;}
.x98_c00317{left:506.400000pt;}
.x126_c00317{left:508.400000pt;}
.xf_c00317{left:509.733333pt;}
.x7e_c00317{left:511.733333pt;}
.x11a_c00317{left:513.733333pt;}
.xfe_c00317{left:515.066667pt;}
.x10b_c00317{left:516.800000pt;}
.x66_c00317{left:517.733333pt;}
.xb4_c00317{left:519.333333pt;}
.xe4_c00317{left:520.400000pt;}
.xb7_c00317{left:522.133333pt;}
.xef_c00317{left:524.266667pt;}
.x87_c00317{left:525.466667pt;}
.x12c_c00317{left:526.533333pt;}
.x10_c00317{left:528.000000pt;}
.x72_c00317{left:530.533333pt;}
.xff_c00317{left:532.000000pt;}
.xb8_c00317{left:533.333333pt;}
.x99_c00317{left:535.200000pt;}
.x20_c00317{left:536.533333pt;}
.xd0_c00317{left:544.933333pt;}
.xac_c00317{left:545.866667pt;}
.x30_c00317{left:546.933333pt;}
.x73_c00317{left:551.600000pt;}
.xe5_c00317{left:553.066667pt;}
.xa2_c00317{left:554.133333pt;}
.xad_c00317{left:556.800000pt;}
.x11_c00317{left:558.133333pt;}
.x21_c00317{left:559.866667pt;}
.x90_c00317{left:561.200000pt;}
.x5b_c00317{left:562.933333pt;}
.xf8_c00317{left:564.000000pt;}
.x9a_c00317{left:569.466667pt;}
.x115_c00317{left:572.400000pt;}
.x7f_c00317{left:573.466667pt;}
.x67_c00317{left:576.000000pt;}
.x31_c00317{left:577.600000pt;}
.x91_c00317{left:579.733333pt;}
.x127_c00317{left:580.933333pt;}
.x136_c00317{left:582.000000pt;}
.x106_c00317{left:585.066667pt;}
.xd1_c00317{left:586.266667pt;}
.xe6_c00317{left:588.933333pt;}
.xf9_c00317{left:590.933333pt;}
.x80_c00317{left:592.666667pt;}
.x22_c00317{left:594.133333pt;}
.xf0_c00317{left:595.333333pt;}
.x100_c00317{left:597.333333pt;}
.xc3_c00317{left:598.533333pt;}
.x3b_c00317{left:599.466667pt;}
.x10c_c00317{left:600.666667pt;}
.x68_c00317{left:601.866667pt;}
.x92_c00317{left:604.666667pt;}
.x110_c00317{left:606.133333pt;}
.xb9_c00317{left:607.200000pt;}
.x132_c00317{left:608.533333pt;}
.xd2_c00317{left:610.266667pt;}
.x23_c00317{left:613.066667pt;}
.x5c_c00317{left:614.800000pt;}
.xe7_c00317{left:616.133333pt;}
.x12d_c00317{left:618.266667pt;}
.xb5_c00317{left:619.200000pt;}
.xae_c00317{left:620.533333pt;}
.x3c_c00317{left:621.600000pt;}
.x81_c00317{left:623.333333pt;}
.x24_c00317{left:626.533333pt;}
.xa3_c00317{left:628.800000pt;}
.x9b_c00317{left:632.800000pt;}
.x12_c00317{left:634.266667pt;}
.x32_c00317{left:635.466667pt;}
.x88_c00317{left:637.066667pt;}
.xc4_c00317{left:639.866667pt;}
.xaf_c00317{left:643.866667pt;}
.x89_c00317{left:646.933333pt;}
.xf1_c00317{left:649.066667pt;}
.x69_c00317{left:651.733333pt;}
.x3d_c00317{left:652.666667pt;}
.x5d_c00317{left:653.866667pt;}
.x3_c00317{left:657.333333pt;}
.xdc_c00317{left:658.666667pt;}
.x25_c00317{left:660.400000pt;}
.x82_c00317{left:663.066667pt;}
.xd3_c00317{left:666.933333pt;}
.xa4_c00317{left:669.466667pt;}
.x6a_c00317{left:673.466667pt;}
.x9c_c00317{left:675.066667pt;}
}





/* 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_c00318 {
    display:none;
  }
  .loading-indicator_c00318.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00318 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_c00318 { 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_c00318" -> "#page-container .classname_c00318")
 */
.pf_c00318 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00318 { /* 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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00318 { /* 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_c00318 { /* 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_c00318 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00318 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00318 {overflow:visible;}
  }
}
.c_c00318 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00318 { /* 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_c00318:after { /* webkit #35443 */
  content: '';
}
.t_c00318:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00318 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 */
}
.__c00318 { /* 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_c00318 { /* info for Javascript */
  display:none;
}
.l_c00318 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00318 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00318 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00318: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_c00318 {
    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_c00318.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00318.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_c00318 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00318{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00318;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.000000;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;}
.m98_c00318{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00318{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00318{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00318{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.md_c00318{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m19_c00318{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00318{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m54_c00318{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00318{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00318{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00318{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00318{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00318{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m63_c00318{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00318{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00318{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00318{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m90_c00318{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m95_c00318{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00318{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m15_c00318{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00318{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00318{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m62_c00318{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00318{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m92_c00318{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00318{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00318{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00318{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m80_c00318{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00318{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00318{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m79_c00318{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00318{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00318{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m67_c00318{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00318{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m75_c00318{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3_c00318{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m40_c00318{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m13_c00318{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00318{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m72_c00318{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00318{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m74_c00318{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00318{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00318{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00318{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00318{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m33_c00318{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m46_c00318{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m51_c00318{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m21_c00318{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m49_c00318{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6_c00318{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00318{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m93_c00318{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00318{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8_c00318{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m71_c00318{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m42_c00318{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00318{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m11_c00318{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m39_c00318{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m61_c00318{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00318{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m86_c00318{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m31_c00318{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m14_c00318{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m23_c00318{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m96_c00318{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma_c00318{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00318{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m43_c00318{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m50_c00318{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m59_c00318{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00318{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00318{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m37_c00318{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12_c00318{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00318{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00318{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m81_c00318{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m44_c00318{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00318{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);}
.m57_c00318{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00318{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00318{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00318{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00318{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00318{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00318{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00318{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m99_c00318{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00318{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m38_c00318{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m73_c00318{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m47_c00318{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m27_c00318{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00318{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m34_c00318{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m16_c00318{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m24_c00318{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00318{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m58_c00318{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m76_c00318{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.mf_c00318{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mc_c00318{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m60_c00318{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m83_c00318{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5_c00318{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m94_c00318{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c00318{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m97_c00318{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m66_c00318{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00318{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m69_c00318{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m36_c00318{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m70_c00318{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m91_c00318{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00318{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m53_c00318{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m78_c00318{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m41_c00318{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00318{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m25_c00318{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m65_c00318{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00318{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.me_c00318{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00318{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m56_c00318{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m22_c00318{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2_c00318{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m85_c00318{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m18_c00318{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m32_c00318{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m48_c00318{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mb_c00318{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00318{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00318{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m89_c00318{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m52_c00318{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00318{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00318{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m84_c00318{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m55_c00318{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m88_c00318{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m35_c00318{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m30_c00318{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00318{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m45_c00318{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00318{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00318{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m87_c00318{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00318{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m28_c00318{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00318{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00318{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00318{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m26_c00318{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m64_c00318{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00318{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m82_c00318{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00318{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00318{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00318{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00318{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00318{vertical-align:0.000000px;}
.ls0_c00318{letter-spacing:0.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{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__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00318{word-spacing:-0.771084px;}
.ws6_c00318{word-spacing:0.000000px;}
.ws3_c00318{word-spacing:0.044423px;}
.ws4_c00318{word-spacing:0.808917px;}
.ws5_c00318{word-spacing:3.926045px;}
.ws0_c00318{word-spacing:5.875000px;}
.ws1_c00318{word-spacing:10.951488px;}
.fc0_c00318{color:transparent;}
.fs0_c00318{font-size:54.000000px;}
.y0_c00318{bottom:0.000000px;}
.y2c_c00318{bottom:154.500000px;}
.y2b_c00318{bottom:195.600000px;}
.y2a_c00318{bottom:215.700000px;}
.y29_c00318{bottom:235.200000px;}
.y28_c00318{bottom:255.300000px;}
.y27_c00318{bottom:275.100000px;}
.y26_c00318{bottom:294.600000px;}
.y25_c00318{bottom:315.150000px;}
.y24_c00318{bottom:335.250000px;}
.y23_c00318{bottom:355.050000px;}
.y22_c00318{bottom:374.550000px;}
.y21_c00318{bottom:394.650000px;}
.y20_c00318{bottom:414.450000px;}
.y1f_c00318{bottom:434.550000px;}
.y1e_c00318{bottom:454.650000px;}
.y1d_c00318{bottom:474.450000px;}
.y1c_c00318{bottom:493.950000px;}
.y1b_c00318{bottom:514.500000px;}
.y1a_c00318{bottom:534.600000px;}
.y19_c00318{bottom:554.700000px;}
.y18_c00318{bottom:574.500000px;}
.y17_c00318{bottom:594.300000px;}
.y16_c00318{bottom:614.100000px;}
.y15_c00318{bottom:634.200000px;}
.y14_c00318{bottom:654.300000px;}
.y13_c00318{bottom:674.100000px;}
.y12_c00318{bottom:693.900000px;}
.y11_c00318{bottom:714.000000px;}
.y10_c00318{bottom:736.650000px;}
.yf_c00318{bottom:753.600000px;}
.ye_c00318{bottom:773.700000px;}
.yd_c00318{bottom:794.100000px;}
.yc_c00318{bottom:813.600000px;}
.yb_c00318{bottom:833.400000px;}
.ya_c00318{bottom:853.500000px;}
.y9_c00318{bottom:873.600000px;}
.y8_c00318{bottom:893.400000px;}
.y7_c00318{bottom:913.500000px;}
.y6_c00318{bottom:933.300000px;}
.y5_c00318{bottom:953.100000px;}
.y4_c00318{bottom:973.200000px;}
.y3_c00318{bottom:993.000000px;}
.y2_c00318{bottom:1013.100000px;}
.y1_c00318{bottom:1051.500000px;}
.h2_c00318{height:54.000000px;}
.h0_c00318{height:1166.759949px;}
.h1_c00318{height:1167.000000px;}
.w1_c00318{width:913.500000px;}
.w0_c00318{width:913.679993px;}
.x0_c00318{left:0.000000px;}
.x3_c00318{left:141.150000px;}
.x1_c00318{left:142.200000px;}
.x6f_c00318{left:143.700000px;}
.xec_c00318{left:145.050000px;}
.xf9_c00318{left:146.100000px;}
.x11a_c00318{left:147.150000px;}
.x32_c00318{left:161.550000px;}
.xe6_c00318{left:162.900000px;}
.xba_c00318{left:165.000000px;}
.x59_c00318{left:168.150000px;}
.xf2_c00318{left:170.550000px;}
.x10e_c00318{left:172.350000px;}
.x7c_c00318{left:174.000000px;}
.x136_c00318{left:175.500000px;}
.xd9_c00318{left:178.050000px;}
.x4_c00318{left:180.450000px;}
.x4d_c00318{left:182.400000px;}
.x64_c00318{left:185.550000px;}
.x14_c00318{left:186.900000px;}
.xfa_c00318{left:188.550000px;}
.xcd_c00318{left:189.600000px;}
.x130_c00318{left:191.100000px;}
.x11e_c00318{left:192.600000px;}
.x98_c00318{left:195.450000px;}
.x26_c00318{left:196.500000px;}
.x5_c00318{left:201.000000px;}
.x114_c00318{left:202.500000px;}
.x10f_c00318{left:204.750000px;}
.x33_c00318{left:205.800000px;}
.xce_c00318{left:207.900000px;}
.xd4_c00318{left:209.400000px;}
.x126_c00318{left:210.600000px;}
.x70_c00318{left:212.850000px;}
.x27_c00318{left:216.600000px;}
.x5a_c00318{left:220.050000px;}
.xc3_c00318{left:222.900000px;}
.x8f_c00318{left:224.100000px;}
.xda_c00318{left:225.150000px;}
.x104_c00318{left:226.800000px;}
.x85_c00318{left:230.550000px;}
.x137_c00318{left:231.600000px;}
.x115_c00318{left:233.100000px;}
.x131_c00318{left:234.300000px;}
.x11b_c00318{left:236.400000px;}
.x6_c00318{left:237.750000px;}
.x65_c00318{left:240.600000px;}
.x7d_c00318{left:242.100000px;}
.xc4_c00318{left:243.450000px;}
.xdb_c00318{left:245.250000px;}
.x15_c00318{left:247.050000px;}
.xd5_c00318{left:248.250000px;}
.x90_c00318{left:252.600000px;}
.x86_c00318{left:253.650000px;}
.x40_c00318{left:255.150000px;}
.xcf_c00318{left:257.550000px;}
.x7e_c00318{left:259.050000px;}
.x116_c00318{left:260.100000px;}
.x10a_c00318{left:261.600000px;}
.x28_c00318{left:262.650000px;}
.xa6_c00318{left:265.950000px;}
.x16_c00318{left:267.150000px;}
.x5b_c00318{left:268.650000px;}
.xb3_c00318{left:271.800000px;}
.x12b_c00318{left:273.000000px;}
.xfb_c00318{left:274.200000px;}
.xd0_c00318{left:277.350000px;}
.x41_c00318{left:279.300000px;}
.x66_c00318{left:280.950000px;}
.x92_c00318{left:282.900000px;}
.xbb_c00318{left:285.150000px;}
.x7_c00318{left:288.150000px;}
.x9e_c00318{left:289.200000px;}
.x12c_c00318{left:292.800000px;}
.x17_c00318{left:295.950000px;}
.x5c_c00318{left:297.450000px;}
.xdc_c00318{left:300.750000px;}
.x34_c00318{left:303.450000px;}
.xd6_c00318{left:305.550000px;}
.x117_c00318{left:306.600000px;}
.x42_c00318{left:307.800000px;}
.xf3_c00318{left:309.000000px;}
.x7f_c00318{left:311.550000px;}
.x67_c00318{left:313.050000px;}
.x29_c00318{left:314.550000px;}
.x71_c00318{left:316.800000px;}
.xd1_c00318{left:319.050000px;}
.x8_c00318{left:320.850000px;}
.x118_c00318{left:323.550000px;}
.x87_c00318{left:324.900000px;}
.x13c_c00318{left:327.600000px;}
.xbc_c00318{left:330.900000px;}
.x35_c00318{left:331.950000px;}
.x4e_c00318{left:333.300000px;}
.xf4_c00318{left:335.250000px;}
.x99_c00318{left:337.350000px;}
.x127_c00318{left:339.000000px;}
.x18_c00318{left:340.200000px;}
.x13d_c00318{left:341.250000px;}
.x91_c00318{left:343.800000px;}
.x72_c00318{left:345.300000px;}
.x9f_c00318{left:346.800000px;}
.x9_c00318{left:348.900000px;}
.x12d_c00318{left:352.500000px;}
.xb4_c00318{left:353.850000px;}
.x110_c00318{left:357.450000px;}
.x43_c00318{left:359.250000px;}
.xf6_c00318{left:360.450000px;}
.x10b_c00318{left:361.800000px;}
.xfc_c00318{left:363.450000px;}
.xdd_c00318{left:366.300000px;}
.x88_c00318{left:368.400000px;}
.x5d_c00318{left:370.950000px;}
.x120_c00318{left:372.600000px;}
.xc5_c00318{left:374.850000px;}
.x4f_c00318{left:376.500000px;}
.x12e_c00318{left:378.000000px;}
.x2a_c00318{left:379.050000px;}
.x19_c00318{left:380.850000px;}
.xa7_c00318{left:382.950000px;}
.x36_c00318{left:384.450000px;}
.x9a_c00318{left:386.250000px;}
.xed_c00318{left:390.900000px;}
.x132_c00318{left:393.300000px;}
.x93_c00318{left:394.500000px;}
.xe7_c00318{left:398.100000px;}
.xa_c00318{left:399.300000px;}
.x73_c00318{left:400.800000px;}
.x37_c00318{left:405.000000px;}
.x105_c00318{left:406.050000px;}
.x68_c00318{left:407.400000px;}
.xff_c00318{left:408.600000px;}
.x1a_c00318{left:411.750000px;}
.xa8_c00318{left:413.250000px;}
.xa0_c00318{left:415.200000px;}
.x2b_c00318{left:418.350000px;}
.xb_c00318{left:419.850000px;}
.xc6_c00318{left:421.650000px;}
.x44_c00318{left:423.300000px;}
.x111_c00318{left:424.800000px;}
.x11f_c00318{left:426.000000px;}
.xfd_c00318{left:427.200000px;}
.xb5_c00318{left:429.150000px;}
.x50_c00318{left:430.200000px;}
.x10c_c00318{left:431.700000px;}
.x38_c00318{left:433.500000px;}
.xa1_c00318{left:434.700000px;}
.xde_c00318{left:436.500000px;}
.x2_c00318{left:439.200000px;}
.x121_c00318{left:440.250000px;}
.x128_c00318{left:441.600000px;}
.x11c_c00318{left:443.550000px;}
.x112_c00318{left:444.600000px;}
.x1b_c00318{left:445.950000px;}
.xe8_c00318{left:447.000000px;}
.xc_c00318{left:448.950000px;}
.x51_c00318{left:450.750000px;}
.x2c_c00318{left:452.850000px;}
.xa2_c00318{left:454.200000px;}
.x80_c00318{left:457.050000px;}
.xbd_c00318{left:459.000000px;}
.xb6_c00318{left:460.800000px;}
.x1c_c00318{left:462.450000px;}
.xa9_c00318{left:463.650000px;}
.x89_c00318{left:467.100000px;}
.xdf_c00318{left:468.900000px;}
.xee_c00318{left:472.350000px;}
.x74_c00318{left:473.550000px;}
.x106_c00318{left:475.800000px;}
.x69_c00318{left:477.300000px;}
.x39_c00318{left:478.800000px;}
.x52_c00318{left:480.300000px;}
.xfe_c00318{left:482.700000px;}
.x8a_c00318{left:485.100000px;}
.x45_c00318{left:489.600000px;}
.x1d_c00318{left:492.300000px;}
.x75_c00318{left:494.400000px;}
.xc7_c00318{left:497.550000px;}
.x2d_c00318{left:500.700000px;}
.x107_c00318{left:502.500000px;}
.xaa_c00318{left:504.000000px;}
.x5e_c00318{left:507.750000px;}
.xf7_c00318{left:509.100000px;}
.xd_c00318{left:512.250000px;}
.x94_c00318{left:514.050000px;}
.xab_c00318{left:515.100000px;}
.xe9_c00318{left:516.600000px;}
.xc8_c00318{left:518.850000px;}
.x53_c00318{left:520.950000px;}
.xe0_c00318{left:522.600000px;}
.xbe_c00318{left:524.550000px;}
.x122_c00318{left:527.850000px;}
.xa3_c00318{left:529.500000px;}
.x11d_c00318{left:530.550000px;}
.x3a_c00318{left:531.750000px;}
.x76_c00318{left:534.300000px;}
.x10d_c00318{left:537.600000px;}
.xc9_c00318{left:541.950000px;}
.x5f_c00318{left:543.000000px;}
.xac_c00318{left:546.000000px;}
.xd7_c00318{left:549.300000px;}
.x6a_c00318{left:550.500000px;}
.x12f_c00318{left:552.750000px;}
.x81_c00318{left:557.100000px;}
.x1e_c00318{left:558.150000px;}
.x46_c00318{left:559.500000px;}
.x100_c00318{left:561.150000px;}
.x3b_c00318{left:563.850000px;}
.x60_c00318{left:564.900000px;}
.x95_c00318{left:566.250000px;}
.xef_c00318{left:572.400000px;}
.x54_c00318{left:574.650000px;}
.x13a_c00318{left:575.850000px;}
.x9b_c00318{left:577.200000px;}
.x2e_c00318{left:578.550000px;}
.x47_c00318{left:580.050000px;}
.x1f_c00318{left:581.550000px;}
.xe1_c00318{left:583.500000px;}
.x101_c00318{left:586.650000px;}
.x108_c00318{left:588.900000px;}
.xe_c00318{left:592.500000px;}
.x13b_c00318{left:594.600000px;}
.x55_c00318{left:595.950000px;}
.x13e_c00318{left:598.350000px;}
.xb7_c00318{left:601.500000px;}
.x3c_c00318{left:603.150000px;}
.xad_c00318{left:604.350000px;}
.x2f_c00318{left:607.050000px;}
.x129_c00318{left:610.200000px;}
.x77_c00318{left:611.400000px;}
.xa4_c00318{left:613.050000px;}
.xf_c00318{left:614.850000px;}
.x138_c00318{left:617.700000px;}
.xbf_c00318{left:618.750000px;}
.x61_c00318{left:620.700000px;}
.x9c_c00318{left:621.900000px;}
.x8b_c00318{left:623.400000px;}
.x20_c00318{left:624.450000px;}
.xca_c00318{left:626.550000px;}
.x56_c00318{left:628.350000px;}
.xae_c00318{left:629.850000px;}
.x133_c00318{left:630.900000px;}
.x82_c00318{left:632.700000px;}
.xea_c00318{left:635.100000px;}
.x109_c00318{left:637.500000px;}
.x96_c00318{left:639.000000px;}
.xc0_c00318{left:640.650000px;}
.x62_c00318{left:642.000000px;}
.x21_c00318{left:644.250000px;}
.x10_c00318{left:646.950000px;}
.x134_c00318{left:648.900000px;}
.x6b_c00318{left:650.250000px;}
.x9d_c00318{left:651.750000px;}
.x48_c00318{left:654.150000px;}
.x22_c00318{left:658.950000px;}
.xf0_c00318{left:662.700000px;}
.xaf_c00318{left:663.750000px;}
.xcb_c00318{left:666.150000px;}
.xe2_c00318{left:668.700000px;}
.x6c_c00318{left:670.350000px;}
.x78_c00318{left:672.900000px;}
.x49_c00318{left:673.950000px;}
.x11_c00318{left:676.500000px;}
.x3d_c00318{left:679.200000px;}
.xb0_c00318{left:683.250000px;}
.x97_c00318{left:686.100000px;}
.x123_c00318{left:687.450000px;}
.x4a_c00318{left:688.650000px;}
.xe3_c00318{left:693.900000px;}
.xa5_c00318{left:695.550000px;}
.x57_c00318{left:697.050000px;}
.x23_c00318{left:699.300000px;}
.xb8_c00318{left:702.600000px;}
.x83_c00318{left:703.650000px;}
.x3e_c00318{left:704.700000px;}
.x124_c00318{left:708.300000px;}
.xd8_c00318{left:712.350000px;}
.x79_c00318{left:716.100000px;}
.xb1_c00318{left:718.200000px;}
.x24_c00318{left:720.600000px;}
.x63_c00318{left:722.250000px;}
.xe4_c00318{left:723.450000px;}
.xd2_c00318{left:724.500000px;}
.x12a_c00318{left:726.600000px;}
.x12_c00318{left:727.650000px;}
.xf5_c00318{left:730.500000px;}
.x102_c00318{left:732.900000px;}
.xf1_c00318{left:735.000000px;}
.x8c_c00318{left:736.800000px;}
.x4b_c00318{left:739.350000px;}
.xeb_c00318{left:743.100000px;}
.x7a_c00318{left:744.150000px;}
.x25_c00318{left:746.550000px;}
.xc1_c00318{left:749.100000px;}
.x3f_c00318{left:751.200000px;}
.x8d_c00318{left:752.250000px;}
.x30_c00318{left:753.450000px;}
.xd3_c00318{left:754.800000px;}
.x113_c00318{left:755.850000px;}
.x84_c00318{left:757.350000px;}
.x4c_c00318{left:759.900000px;}
.xc2_c00318{left:763.200000px;}
.x6d_c00318{left:766.800000px;}
.x13_c00318{left:769.050000px;}
.xb9_c00318{left:770.250000px;}
.x135_c00318{left:772.350000px;}
.xcc_c00318{left:773.550000px;}
.x7b_c00318{left:777.600000px;}
.x8e_c00318{left:778.950000px;}
.x103_c00318{left:780.450000px;}
.xf8_c00318{left:783.000000px;}
.x31_c00318{left:784.050000px;}
.x125_c00318{left:785.700000px;}
.xe5_c00318{left:787.200000px;}
.x6e_c00318{left:789.900000px;}
.x58_c00318{left:792.450000px;}
.x119_c00318{left:794.100000px;}
.xb2_c00318{left:801.300000px;}
.x139_c00318{left:804.900000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws2_c00318{word-spacing:-0.685408pt;}
.ws6_c00318{word-spacing:0.000000pt;}
.ws3_c00318{word-spacing:0.039487pt;}
.ws4_c00318{word-spacing:0.719038pt;}
.ws5_c00318{word-spacing:3.489818pt;}
.ws0_c00318{word-spacing:5.222222pt;}
.ws1_c00318{word-spacing:9.734656pt;}
.fs0_c00318{font-size:48.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y2c_c00318{bottom:137.333333pt;}
.y2b_c00318{bottom:173.866667pt;}
.y2a_c00318{bottom:191.733333pt;}
.y29_c00318{bottom:209.066667pt;}
.y28_c00318{bottom:226.933333pt;}
.y27_c00318{bottom:244.533333pt;}
.y26_c00318{bottom:261.866667pt;}
.y25_c00318{bottom:280.133333pt;}
.y24_c00318{bottom:298.000000pt;}
.y23_c00318{bottom:315.600000pt;}
.y22_c00318{bottom:332.933333pt;}
.y21_c00318{bottom:350.800000pt;}
.y20_c00318{bottom:368.400000pt;}
.y1f_c00318{bottom:386.266667pt;}
.y1e_c00318{bottom:404.133333pt;}
.y1d_c00318{bottom:421.733333pt;}
.y1c_c00318{bottom:439.066667pt;}
.y1b_c00318{bottom:457.333333pt;}
.y1a_c00318{bottom:475.200000pt;}
.y19_c00318{bottom:493.066667pt;}
.y18_c00318{bottom:510.666667pt;}
.y17_c00318{bottom:528.266667pt;}
.y16_c00318{bottom:545.866667pt;}
.y15_c00318{bottom:563.733333pt;}
.y14_c00318{bottom:581.600000pt;}
.y13_c00318{bottom:599.200000pt;}
.y12_c00318{bottom:616.800000pt;}
.y11_c00318{bottom:634.666667pt;}
.y10_c00318{bottom:654.800000pt;}
.yf_c00318{bottom:669.866667pt;}
.ye_c00318{bottom:687.733333pt;}
.yd_c00318{bottom:705.866667pt;}
.yc_c00318{bottom:723.200000pt;}
.yb_c00318{bottom:740.800000pt;}
.ya_c00318{bottom:758.666667pt;}
.y9_c00318{bottom:776.533333pt;}
.y8_c00318{bottom:794.133333pt;}
.y7_c00318{bottom:812.000000pt;}
.y6_c00318{bottom:829.600000pt;}
.y5_c00318{bottom:847.200000pt;}
.y4_c00318{bottom:865.066667pt;}
.y3_c00318{bottom:882.666667pt;}
.y2_c00318{bottom:900.533333pt;}
.y1_c00318{bottom:934.666667pt;}
.h2_c00318{height:48.000000pt;}
.h0_c00318{height:1037.119955pt;}
.h1_c00318{height:1037.333333pt;}
.w1_c00318{width:812.000000pt;}
.w0_c00318{width:812.159993pt;}
.x0_c00318{left:0.000000pt;}
.x3_c00318{left:125.466667pt;}
.x1_c00318{left:126.400000pt;}
.x6f_c00318{left:127.733333pt;}
.xec_c00318{left:128.933333pt;}
.xf9_c00318{left:129.866667pt;}
.x11a_c00318{left:130.800000pt;}
.x32_c00318{left:143.600000pt;}
.xe6_c00318{left:144.800000pt;}
.xba_c00318{left:146.666667pt;}
.x59_c00318{left:149.466667pt;}
.xf2_c00318{left:151.600000pt;}
.x10e_c00318{left:153.200000pt;}
.x7c_c00318{left:154.666667pt;}
.x136_c00318{left:156.000000pt;}
.xd9_c00318{left:158.266667pt;}
.x4_c00318{left:160.400000pt;}
.x4d_c00318{left:162.133333pt;}
.x64_c00318{left:164.933333pt;}
.x14_c00318{left:166.133333pt;}
.xfa_c00318{left:167.600000pt;}
.xcd_c00318{left:168.533333pt;}
.x130_c00318{left:169.866667pt;}
.x11e_c00318{left:171.200000pt;}
.x98_c00318{left:173.733333pt;}
.x26_c00318{left:174.666667pt;}
.x5_c00318{left:178.666667pt;}
.x114_c00318{left:180.000000pt;}
.x10f_c00318{left:182.000000pt;}
.x33_c00318{left:182.933333pt;}
.xce_c00318{left:184.800000pt;}
.xd4_c00318{left:186.133333pt;}
.x126_c00318{left:187.200000pt;}
.x70_c00318{left:189.200000pt;}
.x27_c00318{left:192.533333pt;}
.x5a_c00318{left:195.600000pt;}
.xc3_c00318{left:198.133333pt;}
.x8f_c00318{left:199.200000pt;}
.xda_c00318{left:200.133333pt;}
.x104_c00318{left:201.600000pt;}
.x85_c00318{left:204.933333pt;}
.x137_c00318{left:205.866667pt;}
.x115_c00318{left:207.200000pt;}
.x131_c00318{left:208.266667pt;}
.x11b_c00318{left:210.133333pt;}
.x6_c00318{left:211.333333pt;}
.x65_c00318{left:213.866667pt;}
.x7d_c00318{left:215.200000pt;}
.xc4_c00318{left:216.400000pt;}
.xdb_c00318{left:218.000000pt;}
.x15_c00318{left:219.600000pt;}
.xd5_c00318{left:220.666667pt;}
.x90_c00318{left:224.533333pt;}
.x86_c00318{left:225.466667pt;}
.x40_c00318{left:226.800000pt;}
.xcf_c00318{left:228.933333pt;}
.x7e_c00318{left:230.266667pt;}
.x116_c00318{left:231.200000pt;}
.x10a_c00318{left:232.533333pt;}
.x28_c00318{left:233.466667pt;}
.xa6_c00318{left:236.400000pt;}
.x16_c00318{left:237.466667pt;}
.x5b_c00318{left:238.800000pt;}
.xb3_c00318{left:241.600000pt;}
.x12b_c00318{left:242.666667pt;}
.xfb_c00318{left:243.733333pt;}
.xd0_c00318{left:246.533333pt;}
.x41_c00318{left:248.266667pt;}
.x66_c00318{left:249.733333pt;}
.x92_c00318{left:251.466667pt;}
.xbb_c00318{left:253.466667pt;}
.x7_c00318{left:256.133333pt;}
.x9e_c00318{left:257.066667pt;}
.x12c_c00318{left:260.266667pt;}
.x17_c00318{left:263.066667pt;}
.x5c_c00318{left:264.400000pt;}
.xdc_c00318{left:267.333333pt;}
.x34_c00318{left:269.733333pt;}
.xd6_c00318{left:271.600000pt;}
.x117_c00318{left:272.533333pt;}
.x42_c00318{left:273.600000pt;}
.xf3_c00318{left:274.666667pt;}
.x7f_c00318{left:276.933333pt;}
.x67_c00318{left:278.266667pt;}
.x29_c00318{left:279.600000pt;}
.x71_c00318{left:281.600000pt;}
.xd1_c00318{left:283.600000pt;}
.x8_c00318{left:285.200000pt;}
.x118_c00318{left:287.600000pt;}
.x87_c00318{left:288.800000pt;}
.x13c_c00318{left:291.200000pt;}
.xbc_c00318{left:294.133333pt;}
.x35_c00318{left:295.066667pt;}
.x4e_c00318{left:296.266667pt;}
.xf4_c00318{left:298.000000pt;}
.x99_c00318{left:299.866667pt;}
.x127_c00318{left:301.333333pt;}
.x18_c00318{left:302.400000pt;}
.x13d_c00318{left:303.333333pt;}
.x91_c00318{left:305.600000pt;}
.x72_c00318{left:306.933333pt;}
.x9f_c00318{left:308.266667pt;}
.x9_c00318{left:310.133333pt;}
.x12d_c00318{left:313.333333pt;}
.xb4_c00318{left:314.533333pt;}
.x110_c00318{left:317.733333pt;}
.x43_c00318{left:319.333333pt;}
.xf6_c00318{left:320.400000pt;}
.x10b_c00318{left:321.600000pt;}
.xfc_c00318{left:323.066667pt;}
.xdd_c00318{left:325.600000pt;}
.x88_c00318{left:327.466667pt;}
.x5d_c00318{left:329.733333pt;}
.x120_c00318{left:331.200000pt;}
.xc5_c00318{left:333.200000pt;}
.x4f_c00318{left:334.666667pt;}
.x12e_c00318{left:336.000000pt;}
.x2a_c00318{left:336.933333pt;}
.x19_c00318{left:338.533333pt;}
.xa7_c00318{left:340.400000pt;}
.x36_c00318{left:341.733333pt;}
.x9a_c00318{left:343.333333pt;}
.xed_c00318{left:347.466667pt;}
.x132_c00318{left:349.600000pt;}
.x93_c00318{left:350.666667pt;}
.xe7_c00318{left:353.866667pt;}
.xa_c00318{left:354.933333pt;}
.x73_c00318{left:356.266667pt;}
.x37_c00318{left:360.000000pt;}
.x105_c00318{left:360.933333pt;}
.x68_c00318{left:362.133333pt;}
.xff_c00318{left:363.200000pt;}
.x1a_c00318{left:366.000000pt;}
.xa8_c00318{left:367.333333pt;}
.xa0_c00318{left:369.066667pt;}
.x2b_c00318{left:371.866667pt;}
.xb_c00318{left:373.200000pt;}
.xc6_c00318{left:374.800000pt;}
.x44_c00318{left:376.266667pt;}
.x111_c00318{left:377.600000pt;}
.x11f_c00318{left:378.666667pt;}
.xfd_c00318{left:379.733333pt;}
.xb5_c00318{left:381.466667pt;}
.x50_c00318{left:382.400000pt;}
.x10c_c00318{left:383.733333pt;}
.x38_c00318{left:385.333333pt;}
.xa1_c00318{left:386.400000pt;}
.xde_c00318{left:388.000000pt;}
.x2_c00318{left:390.400000pt;}
.x121_c00318{left:391.333333pt;}
.x128_c00318{left:392.533333pt;}
.x11c_c00318{left:394.266667pt;}
.x112_c00318{left:395.200000pt;}
.x1b_c00318{left:396.400000pt;}
.xe8_c00318{left:397.333333pt;}
.xc_c00318{left:399.066667pt;}
.x51_c00318{left:400.666667pt;}
.x2c_c00318{left:402.533333pt;}
.xa2_c00318{left:403.733333pt;}
.x80_c00318{left:406.266667pt;}
.xbd_c00318{left:408.000000pt;}
.xb6_c00318{left:409.600000pt;}
.x1c_c00318{left:411.066667pt;}
.xa9_c00318{left:412.133333pt;}
.x89_c00318{left:415.200000pt;}
.xdf_c00318{left:416.800000pt;}
.xee_c00318{left:419.866667pt;}
.x74_c00318{left:420.933333pt;}
.x106_c00318{left:422.933333pt;}
.x69_c00318{left:424.266667pt;}
.x39_c00318{left:425.600000pt;}
.x52_c00318{left:426.933333pt;}
.xfe_c00318{left:429.066667pt;}
.x8a_c00318{left:431.200000pt;}
.x45_c00318{left:435.200000pt;}
.x1d_c00318{left:437.600000pt;}
.x75_c00318{left:439.466667pt;}
.xc7_c00318{left:442.266667pt;}
.x2d_c00318{left:445.066667pt;}
.x107_c00318{left:446.666667pt;}
.xaa_c00318{left:448.000000pt;}
.x5e_c00318{left:451.333333pt;}
.xf7_c00318{left:452.533333pt;}
.xd_c00318{left:455.333333pt;}
.x94_c00318{left:456.933333pt;}
.xab_c00318{left:457.866667pt;}
.xe9_c00318{left:459.200000pt;}
.xc8_c00318{left:461.200000pt;}
.x53_c00318{left:463.066667pt;}
.xe0_c00318{left:464.533333pt;}
.xbe_c00318{left:466.266667pt;}
.x122_c00318{left:469.200000pt;}
.xa3_c00318{left:470.666667pt;}
.x11d_c00318{left:471.600000pt;}
.x3a_c00318{left:472.666667pt;}
.x76_c00318{left:474.933333pt;}
.x10d_c00318{left:477.866667pt;}
.xc9_c00318{left:481.733333pt;}
.x5f_c00318{left:482.666667pt;}
.xac_c00318{left:485.333333pt;}
.xd7_c00318{left:488.266667pt;}
.x6a_c00318{left:489.333333pt;}
.x12f_c00318{left:491.333333pt;}
.x81_c00318{left:495.200000pt;}
.x1e_c00318{left:496.133333pt;}
.x46_c00318{left:497.333333pt;}
.x100_c00318{left:498.800000pt;}
.x3b_c00318{left:501.200000pt;}
.x60_c00318{left:502.133333pt;}
.x95_c00318{left:503.333333pt;}
.xef_c00318{left:508.800000pt;}
.x54_c00318{left:510.800000pt;}
.x13a_c00318{left:511.866667pt;}
.x9b_c00318{left:513.066667pt;}
.x2e_c00318{left:514.266667pt;}
.x47_c00318{left:515.600000pt;}
.x1f_c00318{left:516.933333pt;}
.xe1_c00318{left:518.666667pt;}
.x101_c00318{left:521.466667pt;}
.x108_c00318{left:523.466667pt;}
.xe_c00318{left:526.666667pt;}
.x13b_c00318{left:528.533333pt;}
.x55_c00318{left:529.733333pt;}
.x13e_c00318{left:531.866667pt;}
.xb7_c00318{left:534.666667pt;}
.x3c_c00318{left:536.133333pt;}
.xad_c00318{left:537.200000pt;}
.x2f_c00318{left:539.600000pt;}
.x129_c00318{left:542.400000pt;}
.x77_c00318{left:543.466667pt;}
.xa4_c00318{left:544.933333pt;}
.xf_c00318{left:546.533333pt;}
.x138_c00318{left:549.066667pt;}
.xbf_c00318{left:550.000000pt;}
.x61_c00318{left:551.733333pt;}
.x9c_c00318{left:552.800000pt;}
.x8b_c00318{left:554.133333pt;}
.x20_c00318{left:555.066667pt;}
.xca_c00318{left:556.933333pt;}
.x56_c00318{left:558.533333pt;}
.xae_c00318{left:559.866667pt;}
.x133_c00318{left:560.800000pt;}
.x82_c00318{left:562.400000pt;}
.xea_c00318{left:564.533333pt;}
.x109_c00318{left:566.666667pt;}
.x96_c00318{left:568.000000pt;}
.xc0_c00318{left:569.466667pt;}
.x62_c00318{left:570.666667pt;}
.x21_c00318{left:572.666667pt;}
.x10_c00318{left:575.066667pt;}
.x134_c00318{left:576.800000pt;}
.x6b_c00318{left:578.000000pt;}
.x9d_c00318{left:579.333333pt;}
.x48_c00318{left:581.466667pt;}
.x22_c00318{left:585.733333pt;}
.xf0_c00318{left:589.066667pt;}
.xaf_c00318{left:590.000000pt;}
.xcb_c00318{left:592.133333pt;}
.xe2_c00318{left:594.400000pt;}
.x6c_c00318{left:595.866667pt;}
.x78_c00318{left:598.133333pt;}
.x49_c00318{left:599.066667pt;}
.x11_c00318{left:601.333333pt;}
.x3d_c00318{left:603.733333pt;}
.xb0_c00318{left:607.333333pt;}
.x97_c00318{left:609.866667pt;}
.x123_c00318{left:611.066667pt;}
.x4a_c00318{left:612.133333pt;}
.xe3_c00318{left:616.800000pt;}
.xa5_c00318{left:618.266667pt;}
.x57_c00318{left:619.600000pt;}
.x23_c00318{left:621.600000pt;}
.xb8_c00318{left:624.533333pt;}
.x83_c00318{left:625.466667pt;}
.x3e_c00318{left:626.400000pt;}
.x124_c00318{left:629.600000pt;}
.xd8_c00318{left:633.200000pt;}
.x79_c00318{left:636.533333pt;}
.xb1_c00318{left:638.400000pt;}
.x24_c00318{left:640.533333pt;}
.x63_c00318{left:642.000000pt;}
.xe4_c00318{left:643.066667pt;}
.xd2_c00318{left:644.000000pt;}
.x12a_c00318{left:645.866667pt;}
.x12_c00318{left:646.800000pt;}
.xf5_c00318{left:649.333333pt;}
.x102_c00318{left:651.466667pt;}
.xf1_c00318{left:653.333333pt;}
.x8c_c00318{left:654.933333pt;}
.x4b_c00318{left:657.200000pt;}
.xeb_c00318{left:660.533333pt;}
.x7a_c00318{left:661.466667pt;}
.x25_c00318{left:663.600000pt;}
.xc1_c00318{left:665.866667pt;}
.x3f_c00318{left:667.733333pt;}
.x8d_c00318{left:668.666667pt;}
.x30_c00318{left:669.733333pt;}
.xd3_c00318{left:670.933333pt;}
.x113_c00318{left:671.866667pt;}
.x84_c00318{left:673.200000pt;}
.x4c_c00318{left:675.466667pt;}
.xc2_c00318{left:678.400000pt;}
.x6d_c00318{left:681.600000pt;}
.x13_c00318{left:683.600000pt;}
.xb9_c00318{left:684.666667pt;}
.x135_c00318{left:686.533333pt;}
.xcc_c00318{left:687.600000pt;}
.x7b_c00318{left:691.200000pt;}
.x8e_c00318{left:692.400000pt;}
.x103_c00318{left:693.733333pt;}
.xf8_c00318{left:696.000000pt;}
.x31_c00318{left:696.933333pt;}
.x125_c00318{left:698.400000pt;}
.xe5_c00318{left:699.733333pt;}
.x6e_c00318{left:702.133333pt;}
.x58_c00318{left:704.400000pt;}
.x119_c00318{left:705.866667pt;}
.xb2_c00318{left:712.266667pt;}
.x139_c00318{left:715.466667pt;}
}





/* 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_c00319 {
    display:none;
  }
  .loading-indicator_c00319.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00319 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_c00319 { 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_c00319" -> "#page-container .classname_c00319")
 */
.pf_c00319 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00319 { /* 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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00319 { /* 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_c00319 { /* 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_c00319 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00319 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00319 {overflow:visible;}
  }
}
.c_c00319 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00319 { /* 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_c00319:after { /* webkit #35443 */
  content: '';
}
.t_c00319:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00319 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 */
}
.__c00319 { /* 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_c00319 { /* info for Javascript */
  display:none;
}
.l_c00319 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00319 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00319 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00319: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_c00319 {
    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_c00319.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00319.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_c00319 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00319{font-family:sans-serif;visibility:hidden;}
.sc__c00319{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
}
.y0_c00319{bottom:0.000000px;}
.h0_c00319{height:1166.759949px;}
.h1_c00319{height:1167.000000px;}
.w1_c00319{width:913.500000px;}
.w0_c00319{width:913.679993px;}
.x0_c00319{left:0.000000px;}
@media print{
.y0_c00319{bottom:0.000000pt;}
.h0_c00319{height:1037.119955pt;}
.h1_c00319{height:1037.333333pt;}
.w1_c00319{width:812.000000pt;}
.w0_c00319{width:812.159993pt;}
.x0_c00319{left:0.000000pt;}
}





/* 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_c00320 {
    display:none;
  }
  .loading-indicator_c00320.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00320 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_c00320 { 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_c00320" -> "#page-container .classname_c00320")
 */
.pf_c00320 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00320 { /* 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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00320 { /* 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_c00320 { /* 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_c00320 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00320 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00320 {overflow:visible;}
  }
}
.c_c00320 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00320 { /* 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_c00320:after { /* webkit #35443 */
  content: '';
}
.t_c00320:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00320 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 */
}
.__c00320 { /* 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_c00320 { /* info for Javascript */
  display:none;
}
.l_c00320 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00320 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00320 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00320: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_c00320 {
    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_c00320.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00320.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_c00320 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00320{font-family:sans-serif;visibility:hidden;}
.sc__c00320{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
}
.y0_c00320{bottom:0.000000px;}
.h0_c00320{height:1166.759949px;}
.h1_c00320{height:1167.000000px;}
.w1_c00320{width:913.500000px;}
.w0_c00320{width:913.679993px;}
.x0_c00320{left:0.000000px;}
@media print{
.y0_c00320{bottom:0.000000pt;}
.h0_c00320{height:1037.119955pt;}
.h1_c00320{height:1037.333333pt;}
.w1_c00320{width:812.000000pt;}
.w0_c00320{width:812.159993pt;}
.x0_c00320{left:0.000000pt;}
}





/* 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_c00321 {
    display:none;
  }
  .loading-indicator_c00321.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00321 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_c00321 { 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_c00321" -> "#page-container .classname_c00321")
 */
.pf_c00321 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00321 { /* 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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00321 { /* 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_c00321 { /* 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_c00321 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00321 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00321 {overflow:visible;}
  }
}
.c_c00321 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00321 { /* 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_c00321:after { /* webkit #35443 */
  content: '';
}
.t_c00321:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00321 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 */
}
.__c00321 { /* 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_c00321 { /* info for Javascript */
  display:none;
}
.l_c00321 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00321 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00321 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00321: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_c00321 {
    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_c00321.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00321.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_c00321 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00321{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00321;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.000000;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;}
.m67_c00321{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m89_c00321{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00321{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00321{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m93_c00321{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mc_c00321{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8_c00321{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00321{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m47_c00321{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00321{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00321{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m40_c00321{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m95_c00321{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m55_c00321{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00321{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00321{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m63_c00321{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m57_c00321{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00321{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00321{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00321{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00321{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00321{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m85_c00321{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00321{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00321{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m23_c00321{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m39_c00321{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00321{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00321{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29_c00321{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m14_c00321{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00321{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00321{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m96_c00321{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7_c00321{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00321{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00321{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m88_c00321{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m22_c00321{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00321{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00321{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m43_c00321{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00321{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00321{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00321{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m35_c00321{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma_c00321{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11_c00321{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00321{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00321{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m77_c00321{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00321{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00321{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mb_c00321{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00321{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9_c00321{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m17_c00321{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m12_c00321{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00321{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00321{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m31_c00321{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.maf_c00321{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6_c00321{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m97_c00321{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m10_c00321{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m25_c00321{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m20_c00321{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m34_c00321{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m81_c00321{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m54_c00321{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13_c00321{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m18_c00321{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m83_c00321{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00321{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00321{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m46_c00321{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m45_c00321{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m72_c00321{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m58_c00321{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00321{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m86_c00321{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m82_c00321{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m68_c00321{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00321{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m27_c00321{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00321{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00321{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m99_c00321{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m36_c00321{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m49_c00321{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00321{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m62_c00321{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00321{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m64_c00321{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m94_c00321{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m53_c00321{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00321{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.md_c00321{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m75_c00321{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m78_c00321{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00321{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m24_c00321{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00321{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m37_c00321{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00321{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m26_c00321{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00321{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00321{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m50_c00321{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00321{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m52_c00321{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m21_c00321{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.maa_c00321{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00321{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m59_c00321{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3_c00321{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2_c00321{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m79_c00321{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m16_c00321{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00321{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00321{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m73_c00321{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00321{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00321{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00321{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m91_c00321{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m70_c00321{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00321{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m33_c00321{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00321{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00321{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);}
.ma6_c00321{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m90_c00321{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00321{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00321{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mad_c00321{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m60_c00321{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00321{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00321{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00321{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00321{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5_c00321{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00321{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00321{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m51_c00321{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00321{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m48_c00321{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.me_c00321{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mae_c00321{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mac_c00321{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m92_c00321{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m84_c00321{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00321{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00321{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m87_c00321{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m66_c00321{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00321{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m69_c00321{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m61_c00321{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mab_c00321{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m38_c00321{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00321{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m74_c00321{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00321{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m1_c00321{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00321{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m41_c00321{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m71_c00321{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m30_c00321{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m32_c00321{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m28_c00321{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00321{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m76_c00321{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00321{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00321{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m80_c00321{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m19_c00321{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00321{vertical-align:0.000000px;}
.ls0_c00321{letter-spacing:0.000000px;}
.sc__c00321{text-shadow:none;}
.sc0_c00321{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__c00321{-webkit-text-stroke:0px transparent;}
.sc0_c00321{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00321{word-spacing:-5.277778px;}
.wsa_c00321{word-spacing:0.000000px;}
.ws7_c00321{word-spacing:1.666667px;}
.ws6_c00321{word-spacing:1.875000px;}
.ws1_c00321{word-spacing:3.658537px;}
.ws2_c00321{word-spacing:5.000000px;}
.ws4_c00321{word-spacing:5.223214px;}
.ws8_c00321{word-spacing:6.666667px;}
.ws9_c00321{word-spacing:10.735294px;}
.ws3_c00321{word-spacing:12.195122px;}
.ws5_c00321{word-spacing:19.259259px;}
.fc0_c00321{color:transparent;}
.fs1_c00321{font-size:42.000000px;}
.fs0_c00321{font-size:60.000000px;}
.y0_c00321{bottom:0.000000px;}
.y2d_c00321{bottom:127.050000px;}
.y2c_c00321{bottom:147.000000px;}
.y2b_c00321{bottom:167.100000px;}
.y2a_c00321{bottom:186.900000px;}
.y29_c00321{bottom:206.700000px;}
.y28_c00321{bottom:226.500000px;}
.y27_c00321{bottom:266.250000px;}
.y26_c00321{bottom:286.350000px;}
.y25_c00321{bottom:306.150000px;}
.y24_c00321{bottom:325.950000px;}
.y23_c00321{bottom:345.750000px;}
.y22_c00321{bottom:365.550000px;}
.y21_c00321{bottom:385.350000px;}
.y20_c00321{bottom:405.150000px;}
.y1f_c00321{bottom:424.950000px;}
.y1e_c00321{bottom:444.750000px;}
.y1d_c00321{bottom:464.850000px;}
.y1c_c00321{bottom:484.650000px;}
.y1b_c00321{bottom:504.450000px;}
.y1a_c00321{bottom:524.250000px;}
.y19_c00321{bottom:544.050000px;}
.y18_c00321{bottom:563.850000px;}
.y17_c00321{bottom:583.950000px;}
.y16_c00321{bottom:603.750000px;}
.y15_c00321{bottom:623.250000px;}
.y14_c00321{bottom:643.800000px;}
.y13_c00321{bottom:663.900000px;}
.y12_c00321{bottom:683.700000px;}
.y11_c00321{bottom:703.500000px;}
.y10_c00321{bottom:723.600000px;}
.yf_c00321{bottom:743.700000px;}
.ye_c00321{bottom:763.650000px;}
.yd_c00321{bottom:783.750000px;}
.yc_c00321{bottom:803.550000px;}
.yb_c00321{bottom:823.650000px;}
.ya_c00321{bottom:843.450000px;}
.y9_c00321{bottom:863.700000px;}
.y8_c00321{bottom:883.500000px;}
.y7_c00321{bottom:903.300000px;}
.y6_c00321{bottom:923.400000px;}
.y5_c00321{bottom:943.200000px;}
.y4_c00321{bottom:963.000000px;}
.y3_c00321{bottom:982.800000px;}
.y2_c00321{bottom:1002.600000px;}
.y1_c00321{bottom:1040.700000px;}
.h3_c00321{height:42.000000px;}
.h2_c00321{height:60.000000px;}
.h0_c00321{height:1166.759949px;}
.h1_c00321{height:1167.000000px;}
.w1_c00321{width:913.500000px;}
.w0_c00321{width:913.679993px;}
.x0_c00321{left:0.000000px;}
.xe6_c00321{left:91.050000px;}
.x70_c00321{left:92.400000px;}
.x3_c00321{left:93.600000px;}
.x10c_c00321{left:106.500000px;}
.x71_c00321{left:110.400000px;}
.xc3_c00321{left:112.200000px;}
.x119_c00321{left:114.750000px;}
.x12a_c00321{left:119.550000px;}
.x58_c00321{left:120.600000px;}
.x67_c00321{left:123.900000px;}
.x113_c00321{left:127.050000px;}
.xdc_c00321{left:128.850000px;}
.x4_c00321{left:131.100000px;}
.x128_c00321{left:132.150000px;}
.x72_c00321{left:134.100000px;}
.x102_c00321{left:136.800000px;}
.x23_c00321{left:138.150000px;}
.x14_c00321{left:140.250000px;}
.x139_c00321{left:141.300000px;}
.x49_c00321{left:144.150000px;}
.xd0_c00321{left:145.350000px;}
.x68_c00321{left:147.600000px;}
.xb5_c00321{left:148.650000px;}
.x24_c00321{left:151.050000px;}
.xdd_c00321{left:153.750000px;}
.x12b_c00321{left:155.250000px;}
.x8e_c00321{left:156.750000px;}
.x15_c00321{left:159.750000px;}
.xcc_c00321{left:160.950000px;}
.x73_c00321{left:162.600000px;}
.x103_c00321{left:166.650000px;}
.x9c_c00321{left:168.600000px;}
.x25_c00321{left:171.150000px;}
.xa3_c00321{left:172.650000px;}
.x123_c00321{left:174.150000px;}
.x5_c00321{left:175.350000px;}
.x35_c00321{left:176.700000px;}
.xc8_c00321{left:180.150000px;}
.xe7_c00321{left:181.650000px;}
.xb6_c00321{left:184.350000px;}
.x59_c00321{left:185.400000px;}
.xd7_c00321{left:186.750000px;}
.x61_c00321{left:188.400000px;}
.xfd_c00321{left:191.700000px;}
.x16_c00321{left:193.650000px;}
.x85_c00321{left:195.750000px;}
.x26_c00321{left:197.100000px;}
.x3d_c00321{left:198.900000px;}
.x131_c00321{left:200.400000px;}
.xde_c00321{left:202.650000px;}
.xb7_c00321{left:204.150000px;}
.x92_c00321{left:205.200000px;}
.x11a_c00321{left:207.750000px;}
.x69_c00321{left:208.800000px;}
.x4a_c00321{left:210.000000px;}
.x107_c00321{left:212.550000px;}
.x8f_c00321{left:214.350000px;}
.x86_c00321{left:215.850000px;}
.x62_c00321{left:216.900000px;}
.xf9_c00321{left:217.950000px;}
.x6_c00321{left:220.050000px;}
.x3e_c00321{left:222.300000px;}
.x17_c00321{left:225.000000px;}
.xc9_c00321{left:226.200000px;}
.x132_c00321{left:227.700000px;}
.x36_c00321{left:231.000000px;}
.x93_c00321{left:233.700000px;}
.x90_c00321{left:234.900000px;}
.xa4_c00321{left:237.450000px;}
.x27_c00321{left:240.000000px;}
.xe8_c00321{left:241.350000px;}
.x7b_c00321{left:243.900000px;}
.xae_c00321{left:245.700000px;}
.x4b_c00321{left:247.050000px;}
.xb8_c00321{left:249.900000px;}
.x7_c00321{left:251.400000px;}
.x6a_c00321{left:253.500000px;}
.x12c_c00321{left:254.550000px;}
.x18_c00321{left:256.350000px;}
.x104_c00321{left:258.750000px;}
.x127_c00321{left:261.000000px;}
.x7c_c00321{left:262.950000px;}
.xd8_c00321{left:264.150000px;}
.x3f_c00321{left:266.250000px;}
.xca_c00321{left:268.650000px;}
.x5a_c00321{left:270.000000px;}
.xdf_c00321{left:272.100000px;}
.x9d_c00321{left:274.350000px;}
.x19_c00321{left:277.200000px;}
.x6b_c00321{left:278.400000px;}
.xb9_c00321{left:279.750000px;}
.x133_c00321{left:280.950000px;}
.x94_c00321{left:283.350000px;}
.xa5_c00321{left:284.550000px;}
.x8_c00321{left:292.800000px;}
.x11b_c00321{left:293.850000px;}
.x134_c00321{left:295.050000px;}
.x28_c00321{left:296.100000px;}
.x63_c00321{left:297.600000px;}
.xba_c00321{left:298.800000px;}
.x91_c00321{left:302.250000px;}
.xe0_c00321{left:305.250000px;}
.xaf_c00321{left:306.450000px;}
.x4c_c00321{left:309.000000px;}
.x114_c00321{left:310.950000px;}
.x10d_c00321{left:312.150000px;}
.x29_c00321{left:313.350000px;}
.xa6_c00321{left:315.150000px;}
.x64_c00321{left:317.400000px;}
.xee_c00321{left:319.800000px;}
.x1a_c00321{left:321.450000px;}
.x87_c00321{left:323.100000px;}
.x7d_c00321{left:327.450000px;}
.x4d_c00321{left:328.500000px;}
.xbb_c00321{left:329.700000px;}
.x2a_c00321{left:331.050000px;}
.x37_c00321{left:332.250000px;}
.x9e_c00321{left:338.400000px;}
.x1b_c00321{left:339.750000px;}
.x40_c00321{left:341.550000px;}
.x4e_c00321{left:342.600000px;}
.x65_c00321{left:345.450000px;}
.xb0_c00321{left:346.800000px;}
.x9_c00321{left:349.650000px;}
.xef_c00321{left:351.900000px;}
.x95_c00321{left:354.300000px;}
.x5b_c00321{left:357.600000px;}
.x41_c00321{left:359.850000px;}
.x124_c00321{left:362.100000px;}
.x74_c00321{left:364.200000px;}
.xd1_c00321{left:365.250000px;}
.x1c_c00321{left:366.450000px;}
.xe9_c00321{left:369.450000px;}
.xcd_c00321{left:371.100000px;}
.xbc_c00321{left:372.900000px;}
.x105_c00321{left:374.100000px;}
.xf4_c00321{left:376.500000px;}
.xa7_c00321{left:377.550000px;}
.x2b_c00321{left:378.600000px;}
.x7e_c00321{left:381.000000px;}
.xa_c00321{left:382.050000px;}
.x42_c00321{left:387.150000px;}
.xfa_c00321{left:389.250000px;}
.xe1_c00321{left:391.350000px;}
.x115_c00321{left:392.700000px;}
.x75_c00321{left:393.750000px;}
.x1_c00321{left:395.700000px;}
.x108_c00321{left:397.200000px;}
.x10e_c00321{left:398.550000px;}
.x6c_c00321{left:400.350000px;}
.x4f_c00321{left:401.700000px;}
.xa8_c00321{left:402.750000px;}
.x2c_c00321{left:406.350000px;}
.xea_c00321{left:408.750000px;}
.xc4_c00321{left:410.250000px;}
.x5c_c00321{left:412.200000px;}
.xbd_c00321{left:413.250000px;}
.x96_c00321{left:414.450000px;}
.x9f_c00321{left:415.500000px;}
.xe2_c00321{left:418.650000px;}
.xf5_c00321{left:424.050000px;}
.x38_c00321{left:427.650000px;}
.x66_c00321{left:429.000000px;}
.x116_c00321{left:430.200000px;}
.x88_c00321{left:431.400000px;}
.x7f_c00321{left:433.500000px;}
.x50_c00321{left:435.150000px;}
.x135_c00321{left:438.600000px;}
.xb_c00321{left:441.450000px;}
.xc5_c00321{left:444.450000px;}
.x120_c00321{left:446.850000px;}
.x5d_c00321{left:447.900000px;}
.x125_c00321{left:448.950000px;}
.x89_c00321{left:451.500000px;}
.xcb_c00321{left:453.750000px;}
.xf0_c00321{left:455.550000px;}
.x2d_c00321{left:457.050000px;}
.x129_c00321{left:458.850000px;}
.xc_c00321{left:461.550000px;}
.x39_c00321{left:463.950000px;}
.x97_c00321{left:465.150000px;}
.x136_c00321{left:467.100000px;}
.x43_c00321{left:468.150000px;}
.x12d_c00321{left:472.050000px;}
.xbe_c00321{left:473.250000px;}
.x51_c00321{left:474.750000px;}
.x106_c00321{left:478.200000px;}
.x8a_c00321{left:480.000000px;}
.xc6_c00321{left:481.200000px;}
.x76_c00321{left:483.750000px;}
.x80_c00321{left:486.000000px;}
.x1d_c00321{left:489.150000px;}
.xa9_c00321{left:490.500000px;}
.xeb_c00321{left:492.600000px;}
.x2e_c00321{left:494.550000px;}
.x44_c00321{left:500.850000px;}
.xd9_c00321{left:504.750000px;}
.x10f_c00321{left:505.800000px;}
.xb1_c00321{left:509.550000px;}
.xe3_c00321{left:511.200000px;}
.xd_c00321{left:513.750000px;}
.xd2_c00321{left:515.550000px;}
.xa0_c00321{left:517.650000px;}
.x81_c00321{left:519.450000px;}
.x2f_c00321{left:523.050000px;}
.x100_c00321{left:525.150000px;}
.x126_c00321{left:526.350000px;}
.xce_c00321{left:527.400000px;}
.xe4_c00321{left:530.250000px;}
.x52_c00321{left:531.300000px;}
.xfe_c00321{left:534.000000px;}
.xe_c00321{left:535.050000px;}
.xbf_c00321{left:536.550000px;}
.x98_c00321{left:540.450000px;}
.x77_c00321{left:542.400000px;}
.xd3_c00321{left:543.600000px;}
.x6d_c00321{left:547.500000px;}
.x11c_c00321{left:550.350000px;}
.x12e_c00321{left:551.700000px;}
.xf_c00321{left:552.750000px;}
.x110_c00321{left:554.700000px;}
.x3a_c00321{left:555.750000px;}
.x109_c00321{left:556.950000px;}
.xda_c00321{left:558.750000px;}
.x1e_c00321{left:561.150000px;}
.x30_c00321{left:562.650000px;}
.xc7_c00321{left:565.350000px;}
.x45_c00321{left:567.000000px;}
.xaa_c00321{left:568.950000px;}
.x99_c00321{left:571.800000px;}
.x117_c00321{left:575.550000px;}
.xa1_c00321{left:578.550000px;}
.x112_c00321{left:579.900000px;}
.x1f_c00321{left:580.950000px;}
.x8b_c00321{left:582.600000px;}
.xf6_c00321{left:586.200000px;}
.x5e_c00321{left:589.350000px;}
.xf1_c00321{left:593.100000px;}
.x53_c00321{left:594.600000px;}
.x6e_c00321{left:597.450000px;}
.x46_c00321{left:599.700000px;}
.xab_c00321{left:602.850000px;}
.xff_c00321{left:604.200000px;}
.x3b_c00321{left:607.200000px;}
.x137_c00321{left:610.050000px;}
.x11d_c00321{left:611.250000px;}
.xd4_c00321{left:613.050000px;}
.x121_c00321{left:615.150000px;}
.x10_c00321{left:616.500000px;}
.xec_c00321{left:618.300000px;}
.x47_c00321{left:621.300000px;}
.x78_c00321{left:623.100000px;}
.x101_c00321{left:624.150000px;}
.xac_c00321{left:625.200000px;}
.x31_c00321{left:627.450000px;}
.x82_c00321{left:629.550000px;}
.x11e_c00321{left:632.100000px;}
.xf7_c00321{left:633.300000px;}
.x54_c00321{left:635.250000px;}
.xf2_c00321{left:637.800000px;}
.x48_c00321{left:639.600000px;}
.x11_c00321{left:641.700000px;}
.x20_c00321{left:644.250000px;}
.x79_c00321{left:645.750000px;}
.x118_c00321{left:648.600000px;}
.x83_c00321{left:652.200000px;}
.x3c_c00321{left:653.250000px;}
.xad_c00321{left:655.800000px;}
.xc0_c00321{left:656.850000px;}
.x32_c00321{left:658.800000px;}
.xf3_c00321{left:660.150000px;}
.x21_c00321{left:661.500000px;}
.x55_c00321{left:663.750000px;}
.xf8_c00321{left:666.000000px;}
.x8c_c00321{left:667.950000px;}
.x5f_c00321{left:670.350000px;}
.xd5_c00321{left:672.150000px;}
.xb2_c00321{left:674.850000px;}
.x33_c00321{left:676.800000px;}
.x9a_c00321{left:678.750000px;}
.x11f_c00321{left:679.950000px;}
.x12_c00321{left:682.050000px;}
.x22_c00321{left:684.150000px;}
.x10a_c00321{left:686.550000px;}
.xe5_c00321{left:689.400000px;}
.x13a_c00321{left:691.200000px;}
.xc1_c00321{left:693.600000px;}
.xa2_c00321{left:695.250000px;}
.xcf_c00321{left:697.200000px;}
.x12f_c00321{left:698.550000px;}
.x9b_c00321{left:699.600000px;}
.xfb_c00321{left:700.650000px;}
.x34_c00321{left:704.100000px;}
.x60_c00321{left:707.100000px;}
.x122_c00321{left:710.550000px;}
.x6f_c00321{left:712.650000px;}
.x56_c00321{left:713.850000px;}
.x13_c00321{left:716.250000px;}
.x8d_c00321{left:718.350000px;}
.xb3_c00321{left:719.850000px;}
.x138_c00321{left:721.950000px;}
.xed_c00321{left:726.600000px;}
.x84_c00321{left:727.800000px;}
.xd6_c00321{left:729.300000px;}
.xdb_c00321{left:731.850000px;}
.x2_c00321{left:733.800000px;}
.x7a_c00321{left:735.000000px;}
.xc2_c00321{left:737.850000px;}
.x130_c00321{left:738.900000px;}
.x10b_c00321{left:740.100000px;}
.xb4_c00321{left:741.150000px;}
.xfc_c00321{left:743.850000px;}
.x57_c00321{left:747.750000px;}
.x111_c00321{left:754.500000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:-4.691358pt;}
.wsa_c00321{word-spacing:0.000000pt;}
.ws7_c00321{word-spacing:1.481481pt;}
.ws6_c00321{word-spacing:1.666667pt;}
.ws1_c00321{word-spacing:3.252033pt;}
.ws2_c00321{word-spacing:4.444444pt;}
.ws4_c00321{word-spacing:4.642857pt;}
.ws8_c00321{word-spacing:5.925926pt;}
.ws9_c00321{word-spacing:9.542484pt;}
.ws3_c00321{word-spacing:10.840108pt;}
.ws5_c00321{word-spacing:17.119342pt;}
.fs1_c00321{font-size:37.333333pt;}
.fs0_c00321{font-size:53.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y2d_c00321{bottom:112.933333pt;}
.y2c_c00321{bottom:130.666667pt;}
.y2b_c00321{bottom:148.533333pt;}
.y2a_c00321{bottom:166.133333pt;}
.y29_c00321{bottom:183.733333pt;}
.y28_c00321{bottom:201.333333pt;}
.y27_c00321{bottom:236.666667pt;}
.y26_c00321{bottom:254.533333pt;}
.y25_c00321{bottom:272.133333pt;}
.y24_c00321{bottom:289.733333pt;}
.y23_c00321{bottom:307.333333pt;}
.y22_c00321{bottom:324.933333pt;}
.y21_c00321{bottom:342.533333pt;}
.y20_c00321{bottom:360.133333pt;}
.y1f_c00321{bottom:377.733333pt;}
.y1e_c00321{bottom:395.333333pt;}
.y1d_c00321{bottom:413.200000pt;}
.y1c_c00321{bottom:430.800000pt;}
.y1b_c00321{bottom:448.400000pt;}
.y1a_c00321{bottom:466.000000pt;}
.y19_c00321{bottom:483.600000pt;}
.y18_c00321{bottom:501.200000pt;}
.y17_c00321{bottom:519.066667pt;}
.y16_c00321{bottom:536.666667pt;}
.y15_c00321{bottom:554.000000pt;}
.y14_c00321{bottom:572.266667pt;}
.y13_c00321{bottom:590.133333pt;}
.y12_c00321{bottom:607.733333pt;}
.y11_c00321{bottom:625.333333pt;}
.y10_c00321{bottom:643.200000pt;}
.yf_c00321{bottom:661.066667pt;}
.ye_c00321{bottom:678.800000pt;}
.yd_c00321{bottom:696.666667pt;}
.yc_c00321{bottom:714.266667pt;}
.yb_c00321{bottom:732.133333pt;}
.ya_c00321{bottom:749.733333pt;}
.y9_c00321{bottom:767.733333pt;}
.y8_c00321{bottom:785.333333pt;}
.y7_c00321{bottom:802.933333pt;}
.y6_c00321{bottom:820.800000pt;}
.y5_c00321{bottom:838.400000pt;}
.y4_c00321{bottom:856.000000pt;}
.y3_c00321{bottom:873.600000pt;}
.y2_c00321{bottom:891.200000pt;}
.y1_c00321{bottom:925.066667pt;}
.h3_c00321{height:37.333333pt;}
.h2_c00321{height:53.333333pt;}
.h0_c00321{height:1037.119955pt;}
.h1_c00321{height:1037.333333pt;}
.w1_c00321{width:812.000000pt;}
.w0_c00321{width:812.159993pt;}
.x0_c00321{left:0.000000pt;}
.xe6_c00321{left:80.933333pt;}
.x70_c00321{left:82.133333pt;}
.x3_c00321{left:83.200000pt;}
.x10c_c00321{left:94.666667pt;}
.x71_c00321{left:98.133333pt;}
.xc3_c00321{left:99.733333pt;}
.x119_c00321{left:102.000000pt;}
.x12a_c00321{left:106.266667pt;}
.x58_c00321{left:107.200000pt;}
.x67_c00321{left:110.133333pt;}
.x113_c00321{left:112.933333pt;}
.xdc_c00321{left:114.533333pt;}
.x4_c00321{left:116.533333pt;}
.x128_c00321{left:117.466667pt;}
.x72_c00321{left:119.200000pt;}
.x102_c00321{left:121.600000pt;}
.x23_c00321{left:122.800000pt;}
.x14_c00321{left:124.666667pt;}
.x139_c00321{left:125.600000pt;}
.x49_c00321{left:128.133333pt;}
.xd0_c00321{left:129.200000pt;}
.x68_c00321{left:131.200000pt;}
.xb5_c00321{left:132.133333pt;}
.x24_c00321{left:134.266667pt;}
.xdd_c00321{left:136.666667pt;}
.x12b_c00321{left:138.000000pt;}
.x8e_c00321{left:139.333333pt;}
.x15_c00321{left:142.000000pt;}
.xcc_c00321{left:143.066667pt;}
.x73_c00321{left:144.533333pt;}
.x103_c00321{left:148.133333pt;}
.x9c_c00321{left:149.866667pt;}
.x25_c00321{left:152.133333pt;}
.xa3_c00321{left:153.466667pt;}
.x123_c00321{left:154.800000pt;}
.x5_c00321{left:155.866667pt;}
.x35_c00321{left:157.066667pt;}
.xc8_c00321{left:160.133333pt;}
.xe7_c00321{left:161.466667pt;}
.xb6_c00321{left:163.866667pt;}
.x59_c00321{left:164.800000pt;}
.xd7_c00321{left:166.000000pt;}
.x61_c00321{left:167.466667pt;}
.xfd_c00321{left:170.400000pt;}
.x16_c00321{left:172.133333pt;}
.x85_c00321{left:174.000000pt;}
.x26_c00321{left:175.200000pt;}
.x3d_c00321{left:176.800000pt;}
.x131_c00321{left:178.133333pt;}
.xde_c00321{left:180.133333pt;}
.xb7_c00321{left:181.466667pt;}
.x92_c00321{left:182.400000pt;}
.x11a_c00321{left:184.666667pt;}
.x69_c00321{left:185.600000pt;}
.x4a_c00321{left:186.666667pt;}
.x107_c00321{left:188.933333pt;}
.x8f_c00321{left:190.533333pt;}
.x86_c00321{left:191.866667pt;}
.x62_c00321{left:192.800000pt;}
.xf9_c00321{left:193.733333pt;}
.x6_c00321{left:195.600000pt;}
.x3e_c00321{left:197.600000pt;}
.x17_c00321{left:200.000000pt;}
.xc9_c00321{left:201.066667pt;}
.x132_c00321{left:202.400000pt;}
.x36_c00321{left:205.333333pt;}
.x93_c00321{left:207.733333pt;}
.x90_c00321{left:208.800000pt;}
.xa4_c00321{left:211.066667pt;}
.x27_c00321{left:213.333333pt;}
.xe8_c00321{left:214.533333pt;}
.x7b_c00321{left:216.800000pt;}
.xae_c00321{left:218.400000pt;}
.x4b_c00321{left:219.600000pt;}
.xb8_c00321{left:222.133333pt;}
.x7_c00321{left:223.466667pt;}
.x6a_c00321{left:225.333333pt;}
.x12c_c00321{left:226.266667pt;}
.x18_c00321{left:227.866667pt;}
.x104_c00321{left:230.000000pt;}
.x127_c00321{left:232.000000pt;}
.x7c_c00321{left:233.733333pt;}
.xd8_c00321{left:234.800000pt;}
.x3f_c00321{left:236.666667pt;}
.xca_c00321{left:238.800000pt;}
.x5a_c00321{left:240.000000pt;}
.xdf_c00321{left:241.866667pt;}
.x9d_c00321{left:243.866667pt;}
.x19_c00321{left:246.400000pt;}
.x6b_c00321{left:247.466667pt;}
.xb9_c00321{left:248.666667pt;}
.x133_c00321{left:249.733333pt;}
.x94_c00321{left:251.866667pt;}
.xa5_c00321{left:252.933333pt;}
.x8_c00321{left:260.266667pt;}
.x11b_c00321{left:261.200000pt;}
.x134_c00321{left:262.266667pt;}
.x28_c00321{left:263.200000pt;}
.x63_c00321{left:264.533333pt;}
.xba_c00321{left:265.600000pt;}
.x91_c00321{left:268.666667pt;}
.xe0_c00321{left:271.333333pt;}
.xaf_c00321{left:272.400000pt;}
.x4c_c00321{left:274.666667pt;}
.x114_c00321{left:276.400000pt;}
.x10d_c00321{left:277.466667pt;}
.x29_c00321{left:278.533333pt;}
.xa6_c00321{left:280.133333pt;}
.x64_c00321{left:282.133333pt;}
.xee_c00321{left:284.266667pt;}
.x1a_c00321{left:285.733333pt;}
.x87_c00321{left:287.200000pt;}
.x7d_c00321{left:291.066667pt;}
.x4d_c00321{left:292.000000pt;}
.xbb_c00321{left:293.066667pt;}
.x2a_c00321{left:294.266667pt;}
.x37_c00321{left:295.333333pt;}
.x9e_c00321{left:300.800000pt;}
.x1b_c00321{left:302.000000pt;}
.x40_c00321{left:303.600000pt;}
.x4e_c00321{left:304.533333pt;}
.x65_c00321{left:307.066667pt;}
.xb0_c00321{left:308.266667pt;}
.x9_c00321{left:310.800000pt;}
.xef_c00321{left:312.800000pt;}
.x95_c00321{left:314.933333pt;}
.x5b_c00321{left:317.866667pt;}
.x41_c00321{left:319.866667pt;}
.x124_c00321{left:321.866667pt;}
.x74_c00321{left:323.733333pt;}
.xd1_c00321{left:324.666667pt;}
.x1c_c00321{left:325.733333pt;}
.xe9_c00321{left:328.400000pt;}
.xcd_c00321{left:329.866667pt;}
.xbc_c00321{left:331.466667pt;}
.x105_c00321{left:332.533333pt;}
.xf4_c00321{left:334.666667pt;}
.xa7_c00321{left:335.600000pt;}
.x2b_c00321{left:336.533333pt;}
.x7e_c00321{left:338.666667pt;}
.xa_c00321{left:339.600000pt;}
.x42_c00321{left:344.133333pt;}
.xfa_c00321{left:346.000000pt;}
.xe1_c00321{left:347.866667pt;}
.x115_c00321{left:349.066667pt;}
.x75_c00321{left:350.000000pt;}
.x1_c00321{left:351.733333pt;}
.x108_c00321{left:353.066667pt;}
.x10e_c00321{left:354.266667pt;}
.x6c_c00321{left:355.866667pt;}
.x4f_c00321{left:357.066667pt;}
.xa8_c00321{left:358.000000pt;}
.x2c_c00321{left:361.200000pt;}
.xea_c00321{left:363.333333pt;}
.xc4_c00321{left:364.666667pt;}
.x5c_c00321{left:366.400000pt;}
.xbd_c00321{left:367.333333pt;}
.x96_c00321{left:368.400000pt;}
.x9f_c00321{left:369.333333pt;}
.xe2_c00321{left:372.133333pt;}
.xf5_c00321{left:376.933333pt;}
.x38_c00321{left:380.133333pt;}
.x66_c00321{left:381.333333pt;}
.x116_c00321{left:382.400000pt;}
.x88_c00321{left:383.466667pt;}
.x7f_c00321{left:385.333333pt;}
.x50_c00321{left:386.800000pt;}
.x135_c00321{left:389.866667pt;}
.xb_c00321{left:392.400000pt;}
.xc5_c00321{left:395.066667pt;}
.x120_c00321{left:397.200000pt;}
.x5d_c00321{left:398.133333pt;}
.x125_c00321{left:399.066667pt;}
.x89_c00321{left:401.333333pt;}
.xcb_c00321{left:403.333333pt;}
.xf0_c00321{left:404.933333pt;}
.x2d_c00321{left:406.266667pt;}
.x129_c00321{left:407.866667pt;}
.xc_c00321{left:410.266667pt;}
.x39_c00321{left:412.400000pt;}
.x97_c00321{left:413.466667pt;}
.x136_c00321{left:415.200000pt;}
.x43_c00321{left:416.133333pt;}
.x12d_c00321{left:419.600000pt;}
.xbe_c00321{left:420.666667pt;}
.x51_c00321{left:422.000000pt;}
.x106_c00321{left:425.066667pt;}
.x8a_c00321{left:426.666667pt;}
.xc6_c00321{left:427.733333pt;}
.x76_c00321{left:430.000000pt;}
.x80_c00321{left:432.000000pt;}
.x1d_c00321{left:434.800000pt;}
.xa9_c00321{left:436.000000pt;}
.xeb_c00321{left:437.866667pt;}
.x2e_c00321{left:439.600000pt;}
.x44_c00321{left:445.200000pt;}
.xd9_c00321{left:448.666667pt;}
.x10f_c00321{left:449.600000pt;}
.xb1_c00321{left:452.933333pt;}
.xe3_c00321{left:454.400000pt;}
.xd_c00321{left:456.666667pt;}
.xd2_c00321{left:458.266667pt;}
.xa0_c00321{left:460.133333pt;}
.x81_c00321{left:461.733333pt;}
.x2f_c00321{left:464.933333pt;}
.x100_c00321{left:466.800000pt;}
.x126_c00321{left:467.866667pt;}
.xce_c00321{left:468.800000pt;}
.xe4_c00321{left:471.333333pt;}
.x52_c00321{left:472.266667pt;}
.xfe_c00321{left:474.666667pt;}
.xe_c00321{left:475.600000pt;}
.xbf_c00321{left:476.933333pt;}
.x98_c00321{left:480.400000pt;}
.x77_c00321{left:482.133333pt;}
.xd3_c00321{left:483.200000pt;}
.x6d_c00321{left:486.666667pt;}
.x11c_c00321{left:489.200000pt;}
.x12e_c00321{left:490.400000pt;}
.xf_c00321{left:491.333333pt;}
.x110_c00321{left:493.066667pt;}
.x3a_c00321{left:494.000000pt;}
.x109_c00321{left:495.066667pt;}
.xda_c00321{left:496.666667pt;}
.x1e_c00321{left:498.800000pt;}
.x30_c00321{left:500.133333pt;}
.xc7_c00321{left:502.533333pt;}
.x45_c00321{left:504.000000pt;}
.xaa_c00321{left:505.733333pt;}
.x99_c00321{left:508.266667pt;}
.x117_c00321{left:511.600000pt;}
.xa1_c00321{left:514.266667pt;}
.x112_c00321{left:515.466667pt;}
.x1f_c00321{left:516.400000pt;}
.x8b_c00321{left:517.866667pt;}
.xf6_c00321{left:521.066667pt;}
.x5e_c00321{left:523.866667pt;}
.xf1_c00321{left:527.200000pt;}
.x53_c00321{left:528.533333pt;}
.x6e_c00321{left:531.066667pt;}
.x46_c00321{left:533.066667pt;}
.xab_c00321{left:535.866667pt;}
.xff_c00321{left:537.066667pt;}
.x3b_c00321{left:539.733333pt;}
.x137_c00321{left:542.266667pt;}
.x11d_c00321{left:543.333333pt;}
.xd4_c00321{left:544.933333pt;}
.x121_c00321{left:546.800000pt;}
.x10_c00321{left:548.000000pt;}
.xec_c00321{left:549.600000pt;}
.x47_c00321{left:552.266667pt;}
.x78_c00321{left:553.866667pt;}
.x101_c00321{left:554.800000pt;}
.xac_c00321{left:555.733333pt;}
.x31_c00321{left:557.733333pt;}
.x82_c00321{left:559.600000pt;}
.x11e_c00321{left:561.866667pt;}
.xf7_c00321{left:562.933333pt;}
.x54_c00321{left:564.666667pt;}
.xf2_c00321{left:566.933333pt;}
.x48_c00321{left:568.533333pt;}
.x11_c00321{left:570.400000pt;}
.x20_c00321{left:572.666667pt;}
.x79_c00321{left:574.000000pt;}
.x118_c00321{left:576.533333pt;}
.x83_c00321{left:579.733333pt;}
.x3c_c00321{left:580.666667pt;}
.xad_c00321{left:582.933333pt;}
.xc0_c00321{left:583.866667pt;}
.x32_c00321{left:585.600000pt;}
.xf3_c00321{left:586.800000pt;}
.x21_c00321{left:588.000000pt;}
.x55_c00321{left:590.000000pt;}
.xf8_c00321{left:592.000000pt;}
.x8c_c00321{left:593.733333pt;}
.x5f_c00321{left:595.866667pt;}
.xd5_c00321{left:597.466667pt;}
.xb2_c00321{left:599.866667pt;}
.x33_c00321{left:601.600000pt;}
.x9a_c00321{left:603.333333pt;}
.x11f_c00321{left:604.400000pt;}
.x12_c00321{left:606.266667pt;}
.x22_c00321{left:608.133333pt;}
.x10a_c00321{left:610.266667pt;}
.xe5_c00321{left:612.800000pt;}
.x13a_c00321{left:614.400000pt;}
.xc1_c00321{left:616.533333pt;}
.xa2_c00321{left:618.000000pt;}
.xcf_c00321{left:619.733333pt;}
.x12f_c00321{left:620.933333pt;}
.x9b_c00321{left:621.866667pt;}
.xfb_c00321{left:622.800000pt;}
.x34_c00321{left:625.866667pt;}
.x60_c00321{left:628.533333pt;}
.x122_c00321{left:631.600000pt;}
.x6f_c00321{left:633.466667pt;}
.x56_c00321{left:634.533333pt;}
.x13_c00321{left:636.666667pt;}
.x8d_c00321{left:638.533333pt;}
.xb3_c00321{left:639.866667pt;}
.x138_c00321{left:641.733333pt;}
.xed_c00321{left:645.866667pt;}
.x84_c00321{left:646.933333pt;}
.xd6_c00321{left:648.266667pt;}
.xdb_c00321{left:650.533333pt;}
.x2_c00321{left:652.266667pt;}
.x7a_c00321{left:653.333333pt;}
.xc2_c00321{left:655.866667pt;}
.x130_c00321{left:656.800000pt;}
.x10b_c00321{left:657.866667pt;}
.xb4_c00321{left:658.800000pt;}
.xfc_c00321{left:661.200000pt;}
.x57_c00321{left:664.666667pt;}
.x111_c00321{left:670.666667pt;}
}





/* 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_c00322 {
    display:none;
  }
  .loading-indicator_c00322.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00322 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_c00322 { 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_c00322" -> "#page-container .classname_c00322")
 */
.pf_c00322 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00322 { /* 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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00322 { /* 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_c00322 { /* 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_c00322 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00322 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00322 {overflow:visible;}
  }
}
.c_c00322 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00322 { /* 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_c00322:after { /* webkit #35443 */
  content: '';
}
.t_c00322:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00322 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 */
}
.__c00322 { /* 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_c00322 { /* info for Javascript */
  display:none;
}
.l_c00322 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00322 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00322 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00322: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_c00322 {
    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_c00322.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00322.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_c00322 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00322{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00322;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.000000;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;}
.m50_c00322{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00322{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00322{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00322{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00322{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00322{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5_c00322{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00322{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m26_c00322{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00322{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00322{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mab_c00322{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m86_c00322{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.maf_c00322{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00322{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.maa_c00322{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m92_c00322{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00322{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00322{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m73_c00322{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m66_c00322{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00322{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m99_c00322{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m97_c00322{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00322{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m53_c00322{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m52_c00322{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00322{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00322{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00322{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00322{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00322{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m64_c00322{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00322{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00322{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mae_c00322{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00322{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m19_c00322{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00322{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00322{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m74_c00322{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m89_c00322{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00322{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00322{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11_c00322{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m72_c00322{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m87_c00322{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m59_c00322{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00322{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m44_c00322{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00322{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00322{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00322{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me_c00322{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m18_c00322{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m98_c00322{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m54_c00322{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m67_c00322{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m70_c00322{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00322{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00322{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00322{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{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);}
.m43_c00322{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00322{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00322{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m25_c00322{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m79_c00322{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m63_c00322{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m62_c00322{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m21_c00322{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m61_c00322{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00322{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00322{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m39_c00322{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m96_c00322{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00322{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00322{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00322{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m94_c00322{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m56_c00322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00322{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m9_c00322{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m88_c00322{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00322{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00322{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mac_c00322{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m58_c00322{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00322{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m40_c00322{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m49_c00322{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m76_c00322{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00322{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m93_c00322{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00322{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m84_c00322{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m60_c00322{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m77_c00322{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00322{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m29_c00322{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m55_c00322{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m90_c00322{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m80_c00322{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00322{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m65_c00322{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m71_c00322{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00322{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m8_c00322{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00322{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m83_c00322{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00322{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00322{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00322{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00322{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00322{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m75_c00322{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m68_c00322{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m69_c00322{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m57_c00322{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m85_c00322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00322{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m0_c00322{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m82_c00322{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00322{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m32_c00322{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m91_c00322{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00322{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m81_c00322{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.ls0_c00322{letter-spacing:0.000000px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{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__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00322{word-spacing:-4.500000px;}
.ws8_c00322{word-spacing:-2.307692px;}
.wsc_c00322{word-spacing:-1.750000px;}
.ws7_c00322{word-spacing:-1.250000px;}
.wsd_c00322{word-spacing:0.000000px;}
.ws2_c00322{word-spacing:0.052755px;}
.wsb_c00322{word-spacing:2.777882px;}
.ws4_c00322{word-spacing:4.295393px;}
.ws1_c00322{word-spacing:6.000000px;}
.ws5_c00322{word-spacing:7.500000px;}
.ws6_c00322{word-spacing:8.008138px;}
.ws9_c00322{word-spacing:8.727273px;}
.ws0_c00322{word-spacing:10.951488px;}
.wsa_c00322{word-spacing:14.875000px;}
.fc0_c00322{color:transparent;}
.fs0_c00322{font-size:54.000000px;}
.y0_c00322{bottom:0.000000px;}
.y2d_c00322{bottom:147.900000px;}
.y2c_c00322{bottom:163.800000px;}
.y2b_c00322{bottom:179.250000px;}
.y2a_c00322{bottom:202.950000px;}
.y29_c00322{bottom:223.050000px;}
.y28_c00322{bottom:243.150000px;}
.y27_c00322{bottom:262.650000px;}
.y26_c00322{bottom:283.200000px;}
.y25_c00322{bottom:303.000000px;}
.y24_c00322{bottom:322.800000px;}
.y23_c00322{bottom:342.600000px;}
.y22_c00322{bottom:362.700000px;}
.y21_c00322{bottom:382.500000px;}
.y20_c00322{bottom:402.600000px;}
.y1f_c00322{bottom:422.700000px;}
.y1e_c00322{bottom:442.500000px;}
.y1d_c00322{bottom:462.300000px;}
.y1c_c00322{bottom:482.400000px;}
.y1b_c00322{bottom:501.900000px;}
.y1a_c00322{bottom:522.000000px;}
.y19_c00322{bottom:541.800000px;}
.y18_c00322{bottom:565.350000px;}
.y17_c00322{bottom:585.450000px;}
.y16_c00322{bottom:605.550000px;}
.y15_c00322{bottom:625.350000px;}
.y14_c00322{bottom:645.900000px;}
.y13_c00322{bottom:665.700000px;}
.y12_c00322{bottom:685.500000px;}
.y11_c00322{bottom:705.300000px;}
.y10_c00322{bottom:725.400000px;}
.yf_c00322{bottom:744.900000px;}
.ye_c00322{bottom:765.000000px;}
.yd_c00322{bottom:785.100000px;}
.yc_c00322{bottom:804.900000px;}
.yb_c00322{bottom:824.550000px;}
.ya_c00322{bottom:844.650000px;}
.y9_c00322{bottom:864.450000px;}
.y8_c00322{bottom:885.000000px;}
.y7_c00322{bottom:904.800000px;}
.y6_c00322{bottom:924.900000px;}
.y5_c00322{bottom:944.700000px;}
.y4_c00322{bottom:964.500000px;}
.y3_c00322{bottom:984.600000px;}
.y2_c00322{bottom:1004.400000px;}
.y1_c00322{bottom:1043.250000px;}
.h2_c00322{height:54.000000px;}
.h0_c00322{height:1166.759949px;}
.h1_c00322{height:1167.000000px;}
.w1_c00322{width:913.500000px;}
.w0_c00322{width:913.679993px;}
.x0_c00322{left:0.000000px;}
.x40_c00322{left:148.500000px;}
.x1_c00322{left:149.700000px;}
.xe1_c00322{left:150.750000px;}
.x125_c00322{left:157.200000px;}
.xba_c00322{left:166.500000px;}
.x63_c00322{left:169.200000px;}
.x70_c00322{left:177.750000px;}
.x3_c00322{left:180.750000px;}
.x13a_c00322{left:182.100000px;}
.xc8_c00322{left:184.500000px;}
.x92_c00322{left:187.800000px;}
.x89_c00322{left:190.350000px;}
.x41_c00322{left:191.700000px;}
.x12b_c00322{left:194.400000px;}
.x106_c00322{left:196.200000px;}
.x12_c00322{left:199.500000px;}
.x32_c00322{left:202.350000px;}
.xbb_c00322{left:203.550000px;}
.x126_c00322{left:205.050000px;}
.xe8_c00322{left:206.100000px;}
.xf2_c00322{left:207.750000px;}
.x71_c00322{left:209.100000px;}
.x4_c00322{left:210.600000px;}
.x4e_c00322{left:214.200000px;}
.x7a_c00322{left:215.250000px;}
.xd0_c00322{left:217.950000px;}
.x132_c00322{left:221.550000px;}
.xd5_c00322{left:222.600000px;}
.x139_c00322{left:224.100000px;}
.x64_c00322{left:225.750000px;}
.x100_c00322{left:226.950000px;}
.x13f_c00322{left:230.400000px;}
.x118_c00322{left:233.700000px;}
.xc9_c00322{left:235.200000px;}
.x59_c00322{left:237.150000px;}
.xc2_c00322{left:238.950000px;}
.xb2_c00322{left:240.450000px;}
.xe2_c00322{left:242.850000px;}
.x13_c00322{left:244.200000px;}
.x7b_c00322{left:245.550000px;}
.x5_c00322{left:247.650000px;}
.x93_c00322{left:248.700000px;}
.x11d_c00322{left:250.500000px;}
.x23_c00322{left:252.900000px;}
.x115_c00322{left:255.300000px;}
.x127_c00322{left:258.300000px;}
.xe3_c00322{left:259.350000px;}
.xb3_c00322{left:261.000000px;}
.x72_c00322{left:262.350000px;}
.xa9_c00322{left:263.850000px;}
.xd7_c00322{left:268.200000px;}
.x24_c00322{left:270.600000px;}
.xcc_c00322{left:272.850000px;}
.x33_c00322{left:275.400000px;}
.x14_c00322{left:280.200000px;}
.x42_c00322{left:284.250000px;}
.xd8_c00322{left:285.450000px;}
.x7c_c00322{left:289.050000px;}
.x8a_c00322{left:290.850000px;}
.x65_c00322{left:292.050000px;}
.x116_c00322{left:293.400000px;}
.xca_c00322{left:294.900000px;}
.x107_c00322{left:296.700000px;}
.x13b_c00322{left:300.150000px;}
.x73_c00322{left:301.200000px;}
.x5a_c00322{left:303.450000px;}
.x9b_c00322{left:307.050000px;}
.x25_c00322{left:308.100000px;}
.x7d_c00322{left:309.600000px;}
.x121_c00322{left:310.950000px;}
.x10c_c00322{left:312.000000px;}
.xc3_c00322{left:315.600000px;}
.xe9_c00322{left:316.650000px;}
.x43_c00322{left:318.450000px;}
.xa3_c00322{left:322.350000px;}
.x34_c00322{left:323.700000px;}
.x94_c00322{left:326.100000px;}
.x66_c00322{left:327.300000px;}
.xaa_c00322{left:328.950000px;}
.x11e_c00322{left:330.000000px;}
.x15_c00322{left:331.650000px;}
.xd9_c00322{left:333.000000px;}
.x6_c00322{left:335.850000px;}
.x8b_c00322{left:337.350000px;}
.x26_c00322{left:340.200000px;}
.x4f_c00322{left:342.750000px;}
.xcd_c00322{left:343.800000px;}
.x5b_c00322{left:345.150000px;}
.x35_c00322{left:347.400000px;}
.x44_c00322{left:350.100000px;}
.x16_c00322{left:352.500000px;}
.x7_c00322{left:353.550000px;}
.xa4_c00322{left:355.500000px;}
.x108_c00322{left:356.850000px;}
.xf3_c00322{left:360.000000px;}
.xbc_c00322{left:362.250000px;}
.xc4_c00322{left:363.900000px;}
.x82_c00322{left:365.400000px;}
.x45_c00322{left:366.600000px;}
.x50_c00322{left:368.700000px;}
.x110_c00322{left:372.000000px;}
.x7e_c00322{left:373.350000px;}
.x27_c00322{left:375.900000px;}
.x17_c00322{left:378.450000px;}
.x95_c00322{left:379.500000px;}
.x9c_c00322{left:381.900000px;}
.xea_c00322{left:384.300000px;}
.x8_c00322{left:386.700000px;}
.xab_c00322{left:388.650000px;}
.x133_c00322{left:390.000000px;}
.x67_c00322{left:393.150000px;}
.x46_c00322{left:395.400000px;}
.xbd_c00322{left:396.750000px;}
.x36_c00322{left:398.100000px;}
.x119_c00322{left:399.450000px;}
.xd6_c00322{left:401.250000px;}
.x9d_c00322{left:403.800000px;}
.x83_c00322{left:405.000000px;}
.x51_c00322{left:406.500000px;}
.x37_c00322{left:409.200000px;}
.xf4_c00322{left:410.850000px;}
.x8c_c00322{left:414.300000px;}
.xe4_c00322{left:417.450000px;}
.x12c_c00322{left:418.500000px;}
.x11a_c00322{left:419.550000px;}
.x52_c00322{left:423.450000px;}
.x28_c00322{left:427.800000px;}
.x101_c00322{left:429.000000px;}
.xbe_c00322{left:430.200000px;}
.x18_c00322{left:434.250000px;}
.x74_c00322{left:435.750000px;}
.x9_c00322{left:437.400000px;}
.x134_c00322{left:438.600000px;}
.xac_c00322{left:439.800000px;}
.x117_c00322{left:441.300000px;}
.x9e_c00322{left:443.100000px;}
.xd1_c00322{left:444.900000px;}
.x2_c00322{left:447.000000px;}
.xf5_c00322{left:449.400000px;}
.xa5_c00322{left:452.250000px;}
.x29_c00322{left:454.050000px;}
.x68_c00322{left:455.850000px;}
.xfd_c00322{left:457.500000px;}
.xa_c00322{left:458.700000px;}
.xce_c00322{left:460.050000px;}
.x128_c00322{left:461.400000px;}
.x84_c00322{left:462.900000px;}
.x19_c00322{left:464.550000px;}
.x7f_c00322{left:465.900000px;}
.x5c_c00322{left:467.250000px;}
.x47_c00322{left:469.200000px;}
.xb4_c00322{left:470.850000px;}
.x38_c00322{left:473.700000px;}
.xda_c00322{left:474.750000px;}
.x75_c00322{left:476.400000px;}
.xeb_c00322{left:478.200000px;}
.x129_c00322{left:481.500000px;}
.x69_c00322{left:483.600000px;}
.xf6_c00322{left:485.400000px;}
.x135_c00322{left:486.900000px;}
.xb_c00322{left:488.550000px;}
.x2a_c00322{left:490.350000px;}
.xb5_c00322{left:491.400000px;}
.xd2_c00322{left:492.450000px;}
.x8d_c00322{left:494.550000px;}
.x9f_c00322{left:496.350000px;}
.xec_c00322{left:498.300000px;}
.x109_c00322{left:499.800000px;}
.x48_c00322{left:502.350000px;}
.x5d_c00322{left:505.050000px;}
.x1a_c00322{left:506.250000px;}
.x53_c00322{left:508.050000px;}
.xdb_c00322{left:510.450000px;}
.xbf_c00322{left:511.950000px;}
.x11f_c00322{left:513.600000px;}
.x12d_c00322{left:515.700000px;}
.x80_c00322{left:517.050000px;}
.xf7_c00322{left:518.100000px;}
.xad_c00322{left:522.900000px;}
.xa6_c00322{left:523.950000px;}
.x1b_c00322{left:525.300000px;}
.x49_c00322{left:527.850000px;}
.x39_c00322{left:530.550000px;}
.x6a_c00322{left:532.200000px;}
.x5e_c00322{left:533.550000px;}
.x96_c00322{left:534.900000px;}
.xdc_c00322{left:536.400000px;}
.xe5_c00322{left:538.350000px;}
.xed_c00322{left:542.250000px;}
.xc_c00322{left:544.650000px;}
.x13c_c00322{left:546.000000px;}
.x102_c00322{left:548.850000px;}
.x1c_c00322{left:550.800000px;}
.xb6_c00322{left:551.850000px;}
.x136_c00322{left:553.200000px;}
.xe6_c00322{left:554.850000px;}
.x2b_c00322{left:555.900000px;}
.x8e_c00322{left:557.550000px;}
.xcf_c00322{left:559.500000px;}
.xee_c00322{left:562.800000px;}
.x3a_c00322{left:565.050000px;}
.x97_c00322{left:566.250000px;}
.xd3_c00322{left:567.300000px;}
.xfe_c00322{left:568.350000px;}
.xd_c00322{left:570.600000px;}
.x12e_c00322{left:574.050000px;}
.xcb_c00322{left:576.300000px;}
.x8f_c00322{left:577.650000px;}
.x4a_c00322{left:580.350000px;}
.xf8_c00322{left:582.150000px;}
.xdd_c00322{left:583.500000px;}
.x6b_c00322{left:585.900000px;}
.x85_c00322{left:587.700000px;}
.x103_c00322{left:589.500000px;}
.x54_c00322{left:594.450000px;}
.x1d_c00322{left:595.500000px;}
.x81_c00322{left:597.750000px;}
.x3b_c00322{left:600.000000px;}
.x2c_c00322{left:601.200000px;}
.xb7_c00322{left:602.250000px;}
.xef_c00322{left:603.450000px;}
.x114_c00322{left:605.100000px;}
.xa7_c00322{left:606.750000px;}
.x5f_c00322{left:608.100000px;}
.x12f_c00322{left:610.050000px;}
.xc5_c00322{left:614.100000px;}
.x122_c00322{left:617.700000px;}
.xd4_c00322{left:619.500000px;}
.x55_c00322{left:623.250000px;}
.xa0_c00322{left:624.900000px;}
.x76_c00322{left:627.150000px;}
.x2d_c00322{left:629.250000px;}
.xc0_c00322{left:631.200000px;}
.x98_c00322{left:632.550000px;}
.x13d_c00322{left:634.500000px;}
.xde_c00322{left:636.450000px;}
.xae_c00322{left:638.400000px;}
.x4b_c00322{left:640.500000px;}
.x86_c00322{left:642.750000px;}
.x104_c00322{left:644.550000px;}
.x6c_c00322{left:648.900000px;}
.x130_c00322{left:650.400000px;}
.xf0_c00322{left:651.750000px;}
.xf9_c00322{left:653.100000px;}
.xe_c00322{left:654.150000px;}
.x77_c00322{left:655.650000px;}
.x1e_c00322{left:657.000000px;}
.x111_c00322{left:658.050000px;}
.x10d_c00322{left:659.700000px;}
.xc6_c00322{left:660.900000px;}
.x137_c00322{left:663.750000px;}
.x4c_c00322{left:669.600000px;}
.x60_c00322{left:671.100000px;}
.x1f_c00322{left:674.250000px;}
.xaf_c00322{left:676.500000px;}
.x6d_c00322{left:678.450000px;}
.x3c_c00322{left:681.300000px;}
.xf1_c00322{left:683.400000px;}
.xb8_c00322{left:684.900000px;}
.x131_c00322{left:686.700000px;}
.x112_c00322{left:688.350000px;}
.xa1_c00322{left:690.450000px;}
.x11b_c00322{left:691.800000px;}
.x2e_c00322{left:694.800000px;}
.xfa_c00322{left:696.600000px;}
.x56_c00322{left:698.550000px;}
.x138_c00322{left:699.750000px;}
.xf_c00322{left:701.700000px;}
.x61_c00322{left:703.500000px;}
.x6e_c00322{left:705.450000px;}
.xc7_c00322{left:708.750000px;}
.xdf_c00322{left:710.250000px;}
.x10a_c00322{left:711.300000px;}
.x123_c00322{left:712.350000px;}
.x20_c00322{left:718.500000px;}
.x12a_c00322{left:719.550000px;}
.x57_c00322{left:721.650000px;}
.x87_c00322{left:723.450000px;}
.x10e_c00322{left:725.250000px;}
.x11c_c00322{left:726.750000px;}
.x3d_c00322{left:727.800000px;}
.xa2_c00322{left:729.300000px;}
.x21_c00322{left:730.350000px;}
.xfb_c00322{left:731.550000px;}
.x99_c00322{left:733.350000px;}
.xe7_c00322{left:734.850000px;}
.x105_c00322{left:735.900000px;}
.x2f_c00322{left:740.100000px;}
.x4d_c00322{left:741.300000px;}
.x6f_c00322{left:743.250000px;}
.x120_c00322{left:745.500000px;}
.xb9_c00322{left:748.200000px;}
.x10_c00322{left:749.550000px;}
.x30_c00322{left:752.400000px;}
.x90_c00322{left:754.050000px;}
.x13e_c00322{left:756.000000px;}
.xa8_c00322{left:757.350000px;}
.x78_c00322{left:758.550000px;}
.x62_c00322{left:760.350000px;}
.x3e_c00322{left:763.050000px;}
.x22_c00322{left:768.450000px;}
.x11_c00322{left:770.400000px;}
.x10f_c00322{left:772.050000px;}
.x10b_c00322{left:774.600000px;}
.xc1_c00322{left:775.650000px;}
.xb0_c00322{left:776.850000px;}
.x91_c00322{left:780.000000px;}
.xfc_c00322{left:782.550000px;}
.x113_c00322{left:784.500000px;}
.xff_c00322{left:785.550000px;}
.xe0_c00322{left:790.500000px;}
.x58_c00322{left:793.350000px;}
.xb1_c00322{left:794.550000px;}
.x79_c00322{left:796.650000px;}
.x88_c00322{left:798.750000px;}
.x9a_c00322{left:800.700000px;}
.x31_c00322{left:803.550000px;}
.x124_c00322{left:804.900000px;}
.x3f_c00322{left:806.550000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ws3_c00322{word-spacing:-4.000000pt;}
.ws8_c00322{word-spacing:-2.051282pt;}
.wsc_c00322{word-spacing:-1.555556pt;}
.ws7_c00322{word-spacing:-1.111111pt;}
.wsd_c00322{word-spacing:0.000000pt;}
.ws2_c00322{word-spacing:0.046893pt;}
.wsb_c00322{word-spacing:2.469228pt;}
.ws4_c00322{word-spacing:3.818127pt;}
.ws1_c00322{word-spacing:5.333333pt;}
.ws5_c00322{word-spacing:6.666667pt;}
.ws6_c00322{word-spacing:7.118345pt;}
.ws9_c00322{word-spacing:7.757576pt;}
.ws0_c00322{word-spacing:9.734656pt;}
.wsa_c00322{word-spacing:13.222222pt;}
.fs0_c00322{font-size:48.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y2d_c00322{bottom:131.466667pt;}
.y2c_c00322{bottom:145.600000pt;}
.y2b_c00322{bottom:159.333333pt;}
.y2a_c00322{bottom:180.400000pt;}
.y29_c00322{bottom:198.266667pt;}
.y28_c00322{bottom:216.133333pt;}
.y27_c00322{bottom:233.466667pt;}
.y26_c00322{bottom:251.733333pt;}
.y25_c00322{bottom:269.333333pt;}
.y24_c00322{bottom:286.933333pt;}
.y23_c00322{bottom:304.533333pt;}
.y22_c00322{bottom:322.400000pt;}
.y21_c00322{bottom:340.000000pt;}
.y20_c00322{bottom:357.866667pt;}
.y1f_c00322{bottom:375.733333pt;}
.y1e_c00322{bottom:393.333333pt;}
.y1d_c00322{bottom:410.933333pt;}
.y1c_c00322{bottom:428.800000pt;}
.y1b_c00322{bottom:446.133333pt;}
.y1a_c00322{bottom:464.000000pt;}
.y19_c00322{bottom:481.600000pt;}
.y18_c00322{bottom:502.533333pt;}
.y17_c00322{bottom:520.400000pt;}
.y16_c00322{bottom:538.266667pt;}
.y15_c00322{bottom:555.866667pt;}
.y14_c00322{bottom:574.133333pt;}
.y13_c00322{bottom:591.733333pt;}
.y12_c00322{bottom:609.333333pt;}
.y11_c00322{bottom:626.933333pt;}
.y10_c00322{bottom:644.800000pt;}
.yf_c00322{bottom:662.133333pt;}
.ye_c00322{bottom:680.000000pt;}
.yd_c00322{bottom:697.866667pt;}
.yc_c00322{bottom:715.466667pt;}
.yb_c00322{bottom:732.933333pt;}
.ya_c00322{bottom:750.800000pt;}
.y9_c00322{bottom:768.400000pt;}
.y8_c00322{bottom:786.666667pt;}
.y7_c00322{bottom:804.266667pt;}
.y6_c00322{bottom:822.133333pt;}
.y5_c00322{bottom:839.733333pt;}
.y4_c00322{bottom:857.333333pt;}
.y3_c00322{bottom:875.200000pt;}
.y2_c00322{bottom:892.800000pt;}
.y1_c00322{bottom:927.333333pt;}
.h2_c00322{height:48.000000pt;}
.h0_c00322{height:1037.119955pt;}
.h1_c00322{height:1037.333333pt;}
.w1_c00322{width:812.000000pt;}
.w0_c00322{width:812.159993pt;}
.x0_c00322{left:0.000000pt;}
.x40_c00322{left:132.000000pt;}
.x1_c00322{left:133.066667pt;}
.xe1_c00322{left:134.000000pt;}
.x125_c00322{left:139.733333pt;}
.xba_c00322{left:148.000000pt;}
.x63_c00322{left:150.400000pt;}
.x70_c00322{left:158.000000pt;}
.x3_c00322{left:160.666667pt;}
.x13a_c00322{left:161.866667pt;}
.xc8_c00322{left:164.000000pt;}
.x92_c00322{left:166.933333pt;}
.x89_c00322{left:169.200000pt;}
.x41_c00322{left:170.400000pt;}
.x12b_c00322{left:172.800000pt;}
.x106_c00322{left:174.400000pt;}
.x12_c00322{left:177.333333pt;}
.x32_c00322{left:179.866667pt;}
.xbb_c00322{left:180.933333pt;}
.x126_c00322{left:182.266667pt;}
.xe8_c00322{left:183.200000pt;}
.xf2_c00322{left:184.666667pt;}
.x71_c00322{left:185.866667pt;}
.x4_c00322{left:187.200000pt;}
.x4e_c00322{left:190.400000pt;}
.x7a_c00322{left:191.333333pt;}
.xd0_c00322{left:193.733333pt;}
.x132_c00322{left:196.933333pt;}
.xd5_c00322{left:197.866667pt;}
.x139_c00322{left:199.200000pt;}
.x64_c00322{left:200.666667pt;}
.x100_c00322{left:201.733333pt;}
.x13f_c00322{left:204.800000pt;}
.x118_c00322{left:207.733333pt;}
.xc9_c00322{left:209.066667pt;}
.x59_c00322{left:210.800000pt;}
.xc2_c00322{left:212.400000pt;}
.xb2_c00322{left:213.733333pt;}
.xe2_c00322{left:215.866667pt;}
.x13_c00322{left:217.066667pt;}
.x7b_c00322{left:218.266667pt;}
.x5_c00322{left:220.133333pt;}
.x93_c00322{left:221.066667pt;}
.x11d_c00322{left:222.666667pt;}
.x23_c00322{left:224.800000pt;}
.x115_c00322{left:226.933333pt;}
.x127_c00322{left:229.600000pt;}
.xe3_c00322{left:230.533333pt;}
.xb3_c00322{left:232.000000pt;}
.x72_c00322{left:233.200000pt;}
.xa9_c00322{left:234.533333pt;}
.xd7_c00322{left:238.400000pt;}
.x24_c00322{left:240.533333pt;}
.xcc_c00322{left:242.533333pt;}
.x33_c00322{left:244.800000pt;}
.x14_c00322{left:249.066667pt;}
.x42_c00322{left:252.666667pt;}
.xd8_c00322{left:253.733333pt;}
.x7c_c00322{left:256.933333pt;}
.x8a_c00322{left:258.533333pt;}
.x65_c00322{left:259.600000pt;}
.x116_c00322{left:260.800000pt;}
.xca_c00322{left:262.133333pt;}
.x107_c00322{left:263.733333pt;}
.x13b_c00322{left:266.800000pt;}
.x73_c00322{left:267.733333pt;}
.x5a_c00322{left:269.733333pt;}
.x9b_c00322{left:272.933333pt;}
.x25_c00322{left:273.866667pt;}
.x7d_c00322{left:275.200000pt;}
.x121_c00322{left:276.400000pt;}
.x10c_c00322{left:277.333333pt;}
.xc3_c00322{left:280.533333pt;}
.xe9_c00322{left:281.466667pt;}
.x43_c00322{left:283.066667pt;}
.xa3_c00322{left:286.533333pt;}
.x34_c00322{left:287.733333pt;}
.x94_c00322{left:289.866667pt;}
.x66_c00322{left:290.933333pt;}
.xaa_c00322{left:292.400000pt;}
.x11e_c00322{left:293.333333pt;}
.x15_c00322{left:294.800000pt;}
.xd9_c00322{left:296.000000pt;}
.x6_c00322{left:298.533333pt;}
.x8b_c00322{left:299.866667pt;}
.x26_c00322{left:302.400000pt;}
.x4f_c00322{left:304.666667pt;}
.xcd_c00322{left:305.600000pt;}
.x5b_c00322{left:306.800000pt;}
.x35_c00322{left:308.800000pt;}
.x44_c00322{left:311.200000pt;}
.x16_c00322{left:313.333333pt;}
.x7_c00322{left:314.266667pt;}
.xa4_c00322{left:316.000000pt;}
.x108_c00322{left:317.200000pt;}
.xf3_c00322{left:320.000000pt;}
.xbc_c00322{left:322.000000pt;}
.xc4_c00322{left:323.466667pt;}
.x82_c00322{left:324.800000pt;}
.x45_c00322{left:325.866667pt;}
.x50_c00322{left:327.733333pt;}
.x110_c00322{left:330.666667pt;}
.x7e_c00322{left:331.866667pt;}
.x27_c00322{left:334.133333pt;}
.x17_c00322{left:336.400000pt;}
.x95_c00322{left:337.333333pt;}
.x9c_c00322{left:339.466667pt;}
.xea_c00322{left:341.600000pt;}
.x8_c00322{left:343.733333pt;}
.xab_c00322{left:345.466667pt;}
.x133_c00322{left:346.666667pt;}
.x67_c00322{left:349.466667pt;}
.x46_c00322{left:351.466667pt;}
.xbd_c00322{left:352.666667pt;}
.x36_c00322{left:353.866667pt;}
.x119_c00322{left:355.066667pt;}
.xd6_c00322{left:356.666667pt;}
.x9d_c00322{left:358.933333pt;}
.x83_c00322{left:360.000000pt;}
.x51_c00322{left:361.333333pt;}
.x37_c00322{left:363.733333pt;}
.xf4_c00322{left:365.200000pt;}
.x8c_c00322{left:368.266667pt;}
.xe4_c00322{left:371.066667pt;}
.x12c_c00322{left:372.000000pt;}
.x11a_c00322{left:372.933333pt;}
.x52_c00322{left:376.400000pt;}
.x28_c00322{left:380.266667pt;}
.x101_c00322{left:381.333333pt;}
.xbe_c00322{left:382.400000pt;}
.x18_c00322{left:386.000000pt;}
.x74_c00322{left:387.333333pt;}
.x9_c00322{left:388.800000pt;}
.x134_c00322{left:389.866667pt;}
.xac_c00322{left:390.933333pt;}
.x117_c00322{left:392.266667pt;}
.x9e_c00322{left:393.866667pt;}
.xd1_c00322{left:395.466667pt;}
.x2_c00322{left:397.333333pt;}
.xf5_c00322{left:399.466667pt;}
.xa5_c00322{left:402.000000pt;}
.x29_c00322{left:403.600000pt;}
.x68_c00322{left:405.200000pt;}
.xfd_c00322{left:406.666667pt;}
.xa_c00322{left:407.733333pt;}
.xce_c00322{left:408.933333pt;}
.x128_c00322{left:410.133333pt;}
.x84_c00322{left:411.466667pt;}
.x19_c00322{left:412.933333pt;}
.x7f_c00322{left:414.133333pt;}
.x5c_c00322{left:415.333333pt;}
.x47_c00322{left:417.066667pt;}
.xb4_c00322{left:418.533333pt;}
.x38_c00322{left:421.066667pt;}
.xda_c00322{left:422.000000pt;}
.x75_c00322{left:423.466667pt;}
.xeb_c00322{left:425.066667pt;}
.x129_c00322{left:428.000000pt;}
.x69_c00322{left:429.866667pt;}
.xf6_c00322{left:431.466667pt;}
.x135_c00322{left:432.800000pt;}
.xb_c00322{left:434.266667pt;}
.x2a_c00322{left:435.866667pt;}
.xb5_c00322{left:436.800000pt;}
.xd2_c00322{left:437.733333pt;}
.x8d_c00322{left:439.600000pt;}
.x9f_c00322{left:441.200000pt;}
.xec_c00322{left:442.933333pt;}
.x109_c00322{left:444.266667pt;}
.x48_c00322{left:446.533333pt;}
.x5d_c00322{left:448.933333pt;}
.x1a_c00322{left:450.000000pt;}
.x53_c00322{left:451.600000pt;}
.xdb_c00322{left:453.733333pt;}
.xbf_c00322{left:455.066667pt;}
.x11f_c00322{left:456.533333pt;}
.x12d_c00322{left:458.400000pt;}
.x80_c00322{left:459.600000pt;}
.xf7_c00322{left:460.533333pt;}
.xad_c00322{left:464.800000pt;}
.xa6_c00322{left:465.733333pt;}
.x1b_c00322{left:466.933333pt;}
.x49_c00322{left:469.200000pt;}
.x39_c00322{left:471.600000pt;}
.x6a_c00322{left:473.066667pt;}
.x5e_c00322{left:474.266667pt;}
.x96_c00322{left:475.466667pt;}
.xdc_c00322{left:476.800000pt;}
.xe5_c00322{left:478.533333pt;}
.xed_c00322{left:482.000000pt;}
.xc_c00322{left:484.133333pt;}
.x13c_c00322{left:485.333333pt;}
.x102_c00322{left:487.866667pt;}
.x1c_c00322{left:489.600000pt;}
.xb6_c00322{left:490.533333pt;}
.x136_c00322{left:491.733333pt;}
.xe6_c00322{left:493.200000pt;}
.x2b_c00322{left:494.133333pt;}
.x8e_c00322{left:495.600000pt;}
.xcf_c00322{left:497.333333pt;}
.xee_c00322{left:500.266667pt;}
.x3a_c00322{left:502.266667pt;}
.x97_c00322{left:503.333333pt;}
.xd3_c00322{left:504.266667pt;}
.xfe_c00322{left:505.200000pt;}
.xd_c00322{left:507.200000pt;}
.x12e_c00322{left:510.266667pt;}
.xcb_c00322{left:512.266667pt;}
.x8f_c00322{left:513.466667pt;}
.x4a_c00322{left:515.866667pt;}
.xf8_c00322{left:517.466667pt;}
.xdd_c00322{left:518.666667pt;}
.x6b_c00322{left:520.800000pt;}
.x85_c00322{left:522.400000pt;}
.x103_c00322{left:524.000000pt;}
.x54_c00322{left:528.400000pt;}
.x1d_c00322{left:529.333333pt;}
.x81_c00322{left:531.333333pt;}
.x3b_c00322{left:533.333333pt;}
.x2c_c00322{left:534.400000pt;}
.xb7_c00322{left:535.333333pt;}
.xef_c00322{left:536.400000pt;}
.x114_c00322{left:537.866667pt;}
.xa7_c00322{left:539.333333pt;}
.x5f_c00322{left:540.533333pt;}
.x12f_c00322{left:542.266667pt;}
.xc5_c00322{left:545.866667pt;}
.x122_c00322{left:549.066667pt;}
.xd4_c00322{left:550.666667pt;}
.x55_c00322{left:554.000000pt;}
.xa0_c00322{left:555.466667pt;}
.x76_c00322{left:557.466667pt;}
.x2d_c00322{left:559.333333pt;}
.xc0_c00322{left:561.066667pt;}
.x98_c00322{left:562.266667pt;}
.x13d_c00322{left:564.000000pt;}
.xde_c00322{left:565.733333pt;}
.xae_c00322{left:567.466667pt;}
.x4b_c00322{left:569.333333pt;}
.x86_c00322{left:571.333333pt;}
.x104_c00322{left:572.933333pt;}
.x6c_c00322{left:576.800000pt;}
.x130_c00322{left:578.133333pt;}
.xf0_c00322{left:579.333333pt;}
.xf9_c00322{left:580.533333pt;}
.xe_c00322{left:581.466667pt;}
.x77_c00322{left:582.800000pt;}
.x1e_c00322{left:584.000000pt;}
.x111_c00322{left:584.933333pt;}
.x10d_c00322{left:586.400000pt;}
.xc6_c00322{left:587.466667pt;}
.x137_c00322{left:590.000000pt;}
.x4c_c00322{left:595.200000pt;}
.x60_c00322{left:596.533333pt;}
.x1f_c00322{left:599.333333pt;}
.xaf_c00322{left:601.333333pt;}
.x6d_c00322{left:603.066667pt;}
.x3c_c00322{left:605.600000pt;}
.xf1_c00322{left:607.466667pt;}
.xb8_c00322{left:608.800000pt;}
.x131_c00322{left:610.400000pt;}
.x112_c00322{left:611.866667pt;}
.xa1_c00322{left:613.733333pt;}
.x11b_c00322{left:614.933333pt;}
.x2e_c00322{left:617.600000pt;}
.xfa_c00322{left:619.200000pt;}
.x56_c00322{left:620.933333pt;}
.x138_c00322{left:622.000000pt;}
.xf_c00322{left:623.733333pt;}
.x61_c00322{left:625.333333pt;}
.x6e_c00322{left:627.066667pt;}
.xc7_c00322{left:630.000000pt;}
.xdf_c00322{left:631.333333pt;}
.x10a_c00322{left:632.266667pt;}
.x123_c00322{left:633.200000pt;}
.x20_c00322{left:638.666667pt;}
.x12a_c00322{left:639.600000pt;}
.x57_c00322{left:641.466667pt;}
.x87_c00322{left:643.066667pt;}
.x10e_c00322{left:644.666667pt;}
.x11c_c00322{left:646.000000pt;}
.x3d_c00322{left:646.933333pt;}
.xa2_c00322{left:648.266667pt;}
.x21_c00322{left:649.200000pt;}
.xfb_c00322{left:650.266667pt;}
.x99_c00322{left:651.866667pt;}
.xe7_c00322{left:653.200000pt;}
.x105_c00322{left:654.133333pt;}
.x2f_c00322{left:657.866667pt;}
.x4d_c00322{left:658.933333pt;}
.x6f_c00322{left:660.666667pt;}
.x120_c00322{left:662.666667pt;}
.xb9_c00322{left:665.066667pt;}
.x10_c00322{left:666.266667pt;}
.x30_c00322{left:668.800000pt;}
.x90_c00322{left:670.266667pt;}
.x13e_c00322{left:672.000000pt;}
.xa8_c00322{left:673.200000pt;}
.x78_c00322{left:674.266667pt;}
.x62_c00322{left:675.866667pt;}
.x3e_c00322{left:678.266667pt;}
.x22_c00322{left:683.066667pt;}
.x11_c00322{left:684.800000pt;}
.x10f_c00322{left:686.266667pt;}
.x10b_c00322{left:688.533333pt;}
.xc1_c00322{left:689.466667pt;}
.xb0_c00322{left:690.533333pt;}
.x91_c00322{left:693.333333pt;}
.xfc_c00322{left:695.600000pt;}
.x113_c00322{left:697.333333pt;}
.xff_c00322{left:698.266667pt;}
.xe0_c00322{left:702.666667pt;}
.x58_c00322{left:705.200000pt;}
.xb1_c00322{left:706.266667pt;}
.x79_c00322{left:708.133333pt;}
.x88_c00322{left:710.000000pt;}
.x9a_c00322{left:711.733333pt;}
.x31_c00322{left:714.266667pt;}
.x124_c00322{left:715.466667pt;}
.x3f_c00322{left:716.933333pt;}
}





/* 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_c00323 {
    display:none;
  }
  .loading-indicator_c00323.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00323 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_c00323 { 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_c00323" -> "#page-container .classname_c00323")
 */
.pf_c00323 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00323 { /* 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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00323 { /* 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_c00323 { /* 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_c00323 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00323 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00323 {overflow:visible;}
  }
}
.c_c00323 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00323 { /* 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_c00323:after { /* webkit #35443 */
  content: '';
}
.t_c00323:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00323 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 */
}
.__c00323 { /* 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_c00323 { /* info for Javascript */
  display:none;
}
.l_c00323 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00323 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00323 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00323: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_c00323 {
    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_c00323.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00323.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_c00323 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00323{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00323;src:url('chunks/assets/font_15ab0dcc99606cb322dd12ff.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.000000;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_c00323{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1_c00323{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3_c00323{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2_c00323{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.v0_c00323{vertical-align:0.000000px;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{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__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
.fc0_c00323{color:transparent;}
.fs0_c00323{font-size:30.000000px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:608.100000px;}
.h2_c00323{height:30.000000px;}
.h0_c00323{height:1166.759949px;}
.h1_c00323{height:1167.000000px;}
.w1_c00323{width:913.500000px;}
.w0_c00323{width:913.679993px;}
.x0_c00323{left:0.000000px;}
.x4_c00323{left:791.250000px;}
.x3_c00323{left:803.850000px;}
.x2_c00323{left:809.550000px;}
.x1_c00323{left:845.250000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs0_c00323{font-size:26.666667pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:540.533333pt;}
.h2_c00323{height:26.666667pt;}
.h0_c00323{height:1037.119955pt;}
.h1_c00323{height:1037.333333pt;}
.w1_c00323{width:812.000000pt;}
.w0_c00323{width:812.159993pt;}
.x0_c00323{left:0.000000pt;}
.x4_c00323{left:703.333333pt;}
.x3_c00323{left:714.533333pt;}
.x2_c00323{left:719.600000pt;}
.x1_c00323{left:751.333333pt;}
}





/* 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_c00324 {
    display:none;
  }
  .loading-indicator_c00324.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00324 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_c00324 { 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_c00324" -> "#page-container .classname_c00324")
 */
.pf_c00324 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00324 { /* 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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00324 { /* 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_c00324 { /* 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_c00324 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00324 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00324 {overflow:visible;}
  }
}
.c_c00324 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00324 { /* 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_c00324:after { /* webkit #35443 */
  content: '';
}
.t_c00324:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00324 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 */
}
.__c00324 { /* 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_c00324 { /* info for Javascript */
  display:none;
}
.l_c00324 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00324 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00324 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00324: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_c00324 {
    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_c00324.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00324.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_c00324 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00324{font-family:sans-serif;visibility:hidden;}
.sc__c00324{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
}
.y0_c00324{bottom:0.000000px;}
.h0_c00324{height:1166.759949px;}
.h1_c00324{height:1167.000000px;}
.w1_c00324{width:913.500000px;}
.w0_c00324{width:913.679993px;}
.x0_c00324{left:0.000000px;}
@media print{
.y0_c00324{bottom:0.000000pt;}
.h0_c00324{height:1037.119955pt;}
.h1_c00324{height:1037.333333pt;}
.w1_c00324{width:812.000000pt;}
.w0_c00324{width:812.159993pt;}
.x0_c00324{left:0.000000pt;}
}





/* 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_c00325 {
    display:none;
  }
  .loading-indicator_c00325.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00325 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_c00325 { 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_c00325" -> "#page-container .classname_c00325")
 */
.pf_c00325 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00325 { /* 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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00325 { /* 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_c00325 { /* 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_c00325 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00325 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00325 {overflow:visible;}
  }
}
.c_c00325 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00325 { /* 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_c00325:after { /* webkit #35443 */
  content: '';
}
.t_c00325:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00325 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 */
}
.__c00325 { /* 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_c00325 { /* info for Javascript */
  display:none;
}
.l_c00325 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00325 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00325 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00325: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_c00325 {
    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_c00325.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00325.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_c00325 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00325{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00325;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.000000;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;}
.mf_c00325{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m74_c00325{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00325{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m75_c00325{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m84_c00325{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma_c00325{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m89_c00325{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m69_c00325{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m72_c00325{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m70_c00325{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00325{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m86_c00325{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m10_c00325{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m30_c00325{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00325{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00325{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00325{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m96_c00325{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m52_c00325{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00325{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00325{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00325{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m34_c00325{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m19_c00325{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m91_c00325{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00325{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m54_c00325{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m71_c00325{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00325{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m62_c00325{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00325{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m94_c00325{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m85_c00325{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00325{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m56_c00325{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m49_c00325{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00325{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m80_c00325{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00325{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4_c00325{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00325{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m76_c00325{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m46_c00325{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m93_c00325{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00325{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc_c00325{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m57_c00325{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00325{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00325{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00325{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m36_c00325{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00325{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00325{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00325{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m32_c00325{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m53_c00325{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m12_c00325{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m92_c00325{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m90_c00325{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m42_c00325{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00325{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m48_c00325{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00325{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00325{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m33_c00325{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00325{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00325{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m59_c00325{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m43_c00325{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m60_c00325{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m18_c00325{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00325{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m37_c00325{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00325{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00325{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m81_c00325{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m41_c00325{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m47_c00325{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00325{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m45_c00325{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m88_c00325{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m8_c00325{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m79_c00325{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m77_c00325{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m58_c00325{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00325{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00325{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m25_c00325{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00325{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m39_c00325{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m51_c00325{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m68_c00325{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00325{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);}
.m27_c00325{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m55_c00325{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00325{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00325{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m73_c00325{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00325{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m38_c00325{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00325{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00325{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00325{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m40_c00325{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m66_c00325{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00325{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00325{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m64_c00325{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m78_c00325{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m2_c00325{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m83_c00325{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00325{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00325{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m61_c00325{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m95_c00325{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m50_c00325{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m67_c00325{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m82_c00325{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m87_c00325{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00325{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c00325{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.v0_c00325{vertical-align:0.000000px;}
.ls0_c00325{letter-spacing:0.000000px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{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__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00325{word-spacing:-6.184211px;}
.ws0_c00325{word-spacing:-3.194444px;}
.ws7_c00325{word-spacing:0.000000px;}
.ws4_c00325{word-spacing:0.277778px;}
.ws2_c00325{word-spacing:10.256410px;}
.ws3_c00325{word-spacing:12.205882px;}
.ws5_c00325{word-spacing:13.706897px;}
.ws6_c00325{word-spacing:17.948718px;}
.fc0_c00325{color:transparent;}
.fs0_c00325{font-size:54.000000px;}
.fs1_c00325{font-size:60.000000px;}
.y0_c00325{bottom:0.000000px;}
.y2c_c00325{bottom:145.500000px;}
.y2b_c00325{bottom:186.300000px;}
.y2a_c00325{bottom:206.100000px;}
.y29_c00325{bottom:226.200000px;}
.y28_c00325{bottom:246.000000px;}
.y27_c00325{bottom:265.800000px;}
.y26_c00325{bottom:286.350000px;}
.y25_c00325{bottom:306.450000px;}
.y24_c00325{bottom:326.250000px;}
.y23_c00325{bottom:346.350000px;}
.y22_c00325{bottom:366.150000px;}
.y21_c00325{bottom:386.250000px;}
.y20_c00325{bottom:406.500000px;}
.y1f_c00325{bottom:426.600000px;}
.y1e_c00325{bottom:446.100000px;}
.y1d_c00325{bottom:466.200000px;}
.y1c_c00325{bottom:486.000000px;}
.y1b_c00325{bottom:505.800000px;}
.y1a_c00325{bottom:525.900000px;}
.y19_c00325{bottom:545.700000px;}
.y18_c00325{bottom:565.800000px;}
.y17_c00325{bottom:585.600000px;}
.y16_c00325{bottom:605.400000px;}
.y15_c00325{bottom:625.500000px;}
.y14_c00325{bottom:645.300000px;}
.y13_c00325{bottom:665.400000px;}
.y12_c00325{bottom:685.200000px;}
.y11_c00325{bottom:705.000000px;}
.y10_c00325{bottom:725.100000px;}
.yf_c00325{bottom:744.900000px;}
.ye_c00325{bottom:764.700000px;}
.yd_c00325{bottom:784.500000px;}
.yc_c00325{bottom:804.600000px;}
.yb_c00325{bottom:824.700000px;}
.ya_c00325{bottom:844.500000px;}
.y9_c00325{bottom:864.600000px;}
.y8_c00325{bottom:884.400000px;}
.y7_c00325{bottom:904.500000px;}
.y6_c00325{bottom:924.300000px;}
.y5_c00325{bottom:944.400000px;}
.y4_c00325{bottom:964.200000px;}
.y3_c00325{bottom:984.300000px;}
.y2_c00325{bottom:1004.100000px;}
.y1_c00325{bottom:1042.950000px;}
.h2_c00325{height:54.000000px;}
.h3_c00325{height:60.000000px;}
.h0_c00325{height:1166.759949px;}
.h1_c00325{height:1167.000000px;}
.w1_c00325{width:913.500000px;}
.w0_c00325{width:913.679993px;}
.x0_c00325{left:0.000000px;}
.x12_c00325{left:94.200000px;}
.x59_c00325{left:95.400000px;}
.x123_c00325{left:97.200000px;}
.x134_c00325{left:99.300000px;}
.x35_c00325{left:114.300000px;}
.xa8_c00325{left:116.400000px;}
.xe9_c00325{left:118.350000px;}
.xdc_c00325{left:121.050000px;}
.x13_c00325{left:122.700000px;}
.x3_c00325{left:125.250000px;}
.x5a_c00325{left:127.500000px;}
.xea_c00325{left:130.650000px;}
.x45_c00325{left:132.750000px;}
.xdd_c00325{left:139.050000px;}
.x125_c00325{left:140.400000px;}
.x36_c00325{left:141.600000px;}
.x88_c00325{left:142.800000px;}
.xe1_c00325{left:144.600000px;}
.x14_c00325{left:145.800000px;}
.x80_c00325{left:149.400000px;}
.xeb_c00325{left:151.950000px;}
.xd4_c00325{left:154.050000px;}
.xa9_c00325{left:155.700000px;}
.xaf_c00325{left:157.050000px;}
.x4_c00325{left:158.700000px;}
.xcb_c00325{left:160.800000px;}
.x9f_c00325{left:162.450000px;}
.x94_c00325{left:164.250000px;}
.x11d_c00325{left:167.700000px;}
.x52_c00325{left:169.200000px;}
.xfe_c00325{left:170.700000px;}
.x75_c00325{left:171.750000px;}
.x15_c00325{left:173.850000px;}
.x25_c00325{left:175.800000px;}
.x68_c00325{left:177.150000px;}
.xb7_c00325{left:178.350000px;}
.xec_c00325{left:180.450000px;}
.xa0_c00325{left:183.000000px;}
.xe2_c00325{left:188.100000px;}
.x10f_c00325{left:189.600000px;}
.xff_c00325{left:191.250000px;}
.x76_c00325{left:192.600000px;}
.x26_c00325{left:194.850000px;}
.x69_c00325{left:196.950000px;}
.xb8_c00325{left:198.450000px;}
.x10a_c00325{left:202.050000px;}
.xf5_c00325{left:203.400000px;}
.xc3_c00325{left:205.200000px;}
.x95_c00325{left:207.750000px;}
.x114_c00325{left:208.950000px;}
.x11a_c00325{left:210.450000px;}
.x37_c00325{left:211.500000px;}
.x129_c00325{left:212.850000px;}
.x46_c00325{left:214.500000px;}
.x16_c00325{left:216.750000px;}
.xaa_c00325{left:218.400000px;}
.x104_c00325{left:220.800000px;}
.xc4_c00325{left:222.450000px;}
.x38_c00325{left:225.150000px;}
.xb9_c00325{left:226.500000px;}
.x11e_c00325{left:228.600000px;}
.x89_c00325{left:229.800000px;}
.x81_c00325{left:231.000000px;}
.x5_c00325{left:232.200000px;}
.x27_c00325{left:234.750000px;}
.x11b_c00325{left:236.400000px;}
.x47_c00325{left:237.900000px;}
.x12a_c00325{left:241.350000px;}
.x105_c00325{left:242.700000px;}
.x39_c00325{left:246.750000px;}
.xc5_c00325{left:247.950000px;}
.x77_c00325{left:251.250000px;}
.x17_c00325{left:253.500000px;}
.xf9_c00325{left:255.450000px;}
.x110_c00325{left:259.500000px;}
.x28_c00325{left:261.000000px;}
.x53_c00325{left:262.800000px;}
.x48_c00325{left:264.900000px;}
.xd5_c00325{left:266.100000px;}
.x13f_c00325{left:267.450000px;}
.x115_c00325{left:268.950000px;}
.x5b_c00325{left:271.050000px;}
.x10b_c00325{left:272.550000px;}
.x12f_c00325{left:273.750000px;}
.x18_c00325{left:274.800000px;}
.xb0_c00325{left:277.650000px;}
.x6_c00325{left:278.700000px;}
.x8a_c00325{left:279.900000px;}
.x5c_c00325{left:282.600000px;}
.x54_c00325{left:284.400000px;}
.xd6_c00325{left:285.900000px;}
.x6a_c00325{left:291.150000px;}
.x12b_c00325{left:292.500000px;}
.x130_c00325{left:295.650000px;}
.x29_c00325{left:300.300000px;}
.x6b_c00325{left:302.250000px;}
.xed_c00325{left:303.600000px;}
.x82_c00325{left:305.250000px;}
.x3a_c00325{left:306.450000px;}
.xa1_c00325{left:309.300000px;}
.x2a_c00325{left:311.400000px;}
.x19_c00325{left:312.600000px;}
.x11f_c00325{left:313.950000px;}
.x142_c00325{left:315.000000px;}
.x8b_c00325{left:318.450000px;}
.xc6_c00325{left:321.450000px;}
.x6c_c00325{left:322.800000px;}
.x140_c00325{left:324.750000px;}
.x7_c00325{left:326.550000px;}
.xb1_c00325{left:328.800000px;}
.xcc_c00325{left:330.300000px;}
.xd7_c00325{left:331.950000px;}
.x55_c00325{left:333.750000px;}
.xde_c00325{left:337.800000px;}
.x8c_c00325{left:341.100000px;}
.x3b_c00325{left:345.300000px;}
.x2b_c00325{left:347.100000px;}
.xba_c00325{left:349.650000px;}
.x6d_c00325{left:351.300000px;}
.xab_c00325{left:353.400000px;}
.x13a_c00325{left:356.850000px;}
.x8_c00325{left:358.650000px;}
.x10c_c00325{left:359.700000px;}
.xbb_c00325{left:360.750000px;}
.x56_c00325{left:362.250000px;}
.x3c_c00325{left:364.050000px;}
.x1a_c00325{left:366.300000px;}
.xee_c00325{left:368.400000px;}
.xdf_c00325{left:371.250000px;}
.x96_c00325{left:372.300000px;}
.x131_c00325{left:376.350000px;}
.xa2_c00325{left:380.850000px;}
.x6e_c00325{left:383.700000px;}
.x106_c00325{left:385.200000px;}
.x49_c00325{left:386.700000px;}
.xf6_c00325{left:388.350000px;}
.x78_c00325{left:389.550000px;}
.xbc_c00325{left:391.650000px;}
.x120_c00325{left:394.500000px;}
.x11c_c00325{left:395.850000px;}
.x1_c00325{left:397.500000px;}
.xc7_c00325{left:399.000000px;}
.x3d_c00325{left:400.050000px;}
.x2c_c00325{left:401.100000px;}
.x9_c00325{left:402.900000px;}
.x1b_c00325{left:405.150000px;}
.x8d_c00325{left:406.500000px;}
.xfa_c00325{left:407.850000px;}
.x5d_c00325{left:411.450000px;}
.xcd_c00325{left:414.150000px;}
.xd8_c00325{left:415.800000px;}
.x79_c00325{left:417.300000px;}
.xef_c00325{left:419.250000px;}
.x12c_c00325{left:420.900000px;}
.x13b_c00325{left:422.700000px;}
.x97_c00325{left:423.750000px;}
.xb2_c00325{left:426.300000px;}
.x143_c00325{left:428.100000px;}
.xbd_c00325{left:429.450000px;}
.x5e_c00325{left:431.250000px;}
.x8e_c00325{left:435.600000px;}
.x116_c00325{left:436.950000px;}
.xe3_c00325{left:438.150000px;}
.xac_c00325{left:439.350000px;}
.x1c_c00325{left:441.150000px;}
.x83_c00325{left:443.550000px;}
.x2d_c00325{left:446.850000px;}
.x12d_c00325{left:450.000000px;}
.x3e_c00325{left:451.500000px;}
.x7a_c00325{left:453.300000px;}
.xe4_c00325{left:455.100000px;}
.x5f_c00325{left:456.150000px;}
.xc8_c00325{left:457.350000px;}
.x12e_c00325{left:459.900000px;}
.x1d_c00325{left:462.000000px;}
.x2e_c00325{left:464.550000px;}
.xf7_c00325{left:465.750000px;}
.x13c_c00325{left:467.700000px;}
.x8f_c00325{left:469.800000px;}
.xa_c00325{left:471.600000px;}
.x132_c00325{left:474.750000px;}
.x4a_c00325{left:476.700000px;}
.x100_c00325{left:477.750000px;}
.x84_c00325{left:481.350000px;}
.xad_c00325{left:482.550000px;}
.x135_c00325{left:483.750000px;}
.x6f_c00325{left:484.800000px;}
.xb3_c00325{left:486.450000px;}
.x98_c00325{left:487.500000px;}
.x2f_c00325{left:489.750000px;}
.x90_c00325{left:491.100000px;}
.xb_c00325{left:492.450000px;}
.xce_c00325{left:494.400000px;}
.x4b_c00325{left:495.450000px;}
.x126_c00325{left:496.500000px;}
.x1e_c00325{left:498.000000px;}
.x7b_c00325{left:500.400000px;}
.x99_c00325{left:502.650000px;}
.x60_c00325{left:504.300000px;}
.x3f_c00325{left:505.800000px;}
.x85_c00325{left:509.400000px;}
.x13d_c00325{left:510.600000px;}
.xe5_c00325{left:511.650000px;}
.x101_c00325{left:512.700000px;}
.xa3_c00325{left:515.700000px;}
.xc_c00325{left:516.900000px;}
.x127_c00325{left:518.400000px;}
.xf0_c00325{left:519.450000px;}
.xd9_c00325{left:520.500000px;}
.x4c_c00325{left:521.700000px;}
.xe6_c00325{left:523.200000px;}
.x9a_c00325{left:526.050000px;}
.x1f_c00325{left:528.900000px;}
.x13e_c00325{left:530.100000px;}
.x70_c00325{left:531.300000px;}
.x40_c00325{left:533.100000px;}
.xf8_c00325{left:534.450000px;}
.x121_c00325{left:535.950000px;}
.xf1_c00325{left:540.300000px;}
.x4d_c00325{left:543.000000px;}
.xe7_c00325{left:544.050000px;}
.x107_c00325{left:545.250000px;}
.x136_c00325{left:546.450000px;}
.x61_c00325{left:548.250000px;}
.x111_c00325{left:549.750000px;}
.x118_c00325{left:552.300000px;}
.xcf_c00325{left:553.800000px;}
.x9b_c00325{left:555.150000px;}
.x71_c00325{left:557.550000px;}
.xda_c00325{left:559.050000px;}
.x7c_c00325{left:560.850000px;}
.x57_c00325{left:563.250000px;}
.xa4_c00325{left:564.600000px;}
.x30_c00325{left:566.400000px;}
.x62_c00325{left:569.550000px;}
.x4e_c00325{left:571.500000px;}
.x112_c00325{left:573.150000px;}
.x141_c00325{left:574.350000px;}
.x91_c00325{left:576.150000px;}
.x31_c00325{left:577.950000px;}
.xb4_c00325{left:580.050000px;}
.x41_c00325{left:582.450000px;}
.xd_c00325{left:585.000000px;}
.xbe_c00325{left:587.100000px;}
.xa5_c00325{left:591.300000px;}
.x20_c00325{left:593.700000px;}
.x7d_c00325{left:598.350000px;}
.xd0_c00325{left:599.550000px;}
.x42_c00325{left:601.200000px;}
.x21_c00325{left:604.800000px;}
.xb5_c00325{left:606.000000px;}
.x137_c00325{left:608.100000px;}
.x9c_c00325{left:609.150000px;}
.x10d_c00325{left:610.800000px;}
.x7e_c00325{left:612.750000px;}
.x128_c00325{left:614.550000px;}
.xfb_c00325{left:615.750000px;}
.x32_c00325{left:616.800000px;}
.x4f_c00325{left:618.300000px;}
.xdb_c00325{left:622.050000px;}
.xa6_c00325{left:625.500000px;}
.x63_c00325{left:629.700000px;}
.xbf_c00325{left:631.350000px;}
.x86_c00325{left:634.650000px;}
.xd1_c00325{left:635.850000px;}
.xe_c00325{left:636.900000px;}
.x50_c00325{left:638.400000px;}
.x22_c00325{left:639.750000px;}
.x7f_c00325{left:641.250000px;}
.xc0_c00325{left:642.450000px;}
.x33_c00325{left:643.800000px;}
.x58_c00325{left:645.000000px;}
.x122_c00325{left:648.600000px;}
.x9d_c00325{left:649.800000px;}
.x108_c00325{left:651.000000px;}
.x138_c00325{left:652.050000px;}
.x87_c00325{left:655.500000px;}
.x119_c00325{left:657.450000px;}
.xd2_c00325{left:658.500000px;}
.x10e_c00325{left:659.850000px;}
.xc1_c00325{left:663.300000px;}
.xf_c00325{left:664.650000px;}
.x102_c00325{left:665.850000px;}
.x9e_c00325{left:670.350000px;}
.xe0_c00325{left:673.200000px;}
.x64_c00325{left:675.000000px;}
.x72_c00325{left:676.350000px;}
.x139_c00325{left:679.350000px;}
.xf2_c00325{left:680.400000px;}
.x109_c00325{left:681.600000px;}
.xa7_c00325{left:684.150000px;}
.x133_c00325{left:686.400000px;}
.x65_c00325{left:689.100000px;}
.x43_c00325{left:691.500000px;}
.x23_c00325{left:692.700000px;}
.x10_c00325{left:694.200000px;}
.x113_c00325{left:695.250000px;}
.x73_c00325{left:697.200000px;}
.xf3_c00325{left:698.700000px;}
.xe8_c00325{left:699.750000px;}
.x103_c00325{left:701.100000px;}
.xc9_c00325{left:702.150000px;}
.xfc_c00325{left:705.750000px;}
.x51_c00325{left:708.300000px;}
.x34_c00325{left:709.350000px;}
.xd3_c00325{left:711.750000px;}
.xae_c00325{left:713.250000px;}
.x92_c00325{left:715.500000px;}
.x66_c00325{left:717.600000px;}
.x44_c00325{left:721.350000px;}
.x74_c00325{left:722.700000px;}
.xf4_c00325{left:724.650000px;}
.x93_c00325{left:726.600000px;}
.xc2_c00325{left:728.400000px;}
.x24_c00325{left:731.250000px;}
.x124_c00325{left:733.350000px;}
.x2_c00325{left:735.150000px;}
.x117_c00325{left:741.000000px;}
.x67_c00325{left:742.500000px;}
.xfd_c00325{left:744.600000px;}
.xca_c00325{left:746.850000px;}
.xb6_c00325{left:750.450000px;}
.x11_c00325{left:758.700000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws1_c00325{word-spacing:-5.497076pt;}
.ws0_c00325{word-spacing:-2.839506pt;}
.ws7_c00325{word-spacing:0.000000pt;}
.ws4_c00325{word-spacing:0.246914pt;}
.ws2_c00325{word-spacing:9.116809pt;}
.ws3_c00325{word-spacing:10.849673pt;}
.ws5_c00325{word-spacing:12.183908pt;}
.ws6_c00325{word-spacing:15.954416pt;}
.fs0_c00325{font-size:48.000000pt;}
.fs1_c00325{font-size:53.333333pt;}
.y0_c00325{bottom:0.000000pt;}
.y2c_c00325{bottom:129.333333pt;}
.y2b_c00325{bottom:165.600000pt;}
.y2a_c00325{bottom:183.200000pt;}
.y29_c00325{bottom:201.066667pt;}
.y28_c00325{bottom:218.666667pt;}
.y27_c00325{bottom:236.266667pt;}
.y26_c00325{bottom:254.533333pt;}
.y25_c00325{bottom:272.400000pt;}
.y24_c00325{bottom:290.000000pt;}
.y23_c00325{bottom:307.866667pt;}
.y22_c00325{bottom:325.466667pt;}
.y21_c00325{bottom:343.333333pt;}
.y20_c00325{bottom:361.333333pt;}
.y1f_c00325{bottom:379.200000pt;}
.y1e_c00325{bottom:396.533333pt;}
.y1d_c00325{bottom:414.400000pt;}
.y1c_c00325{bottom:432.000000pt;}
.y1b_c00325{bottom:449.600000pt;}
.y1a_c00325{bottom:467.466667pt;}
.y19_c00325{bottom:485.066667pt;}
.y18_c00325{bottom:502.933333pt;}
.y17_c00325{bottom:520.533333pt;}
.y16_c00325{bottom:538.133333pt;}
.y15_c00325{bottom:556.000000pt;}
.y14_c00325{bottom:573.600000pt;}
.y13_c00325{bottom:591.466667pt;}
.y12_c00325{bottom:609.066667pt;}
.y11_c00325{bottom:626.666667pt;}
.y10_c00325{bottom:644.533333pt;}
.yf_c00325{bottom:662.133333pt;}
.ye_c00325{bottom:679.733333pt;}
.yd_c00325{bottom:697.333333pt;}
.yc_c00325{bottom:715.200000pt;}
.yb_c00325{bottom:733.066667pt;}
.ya_c00325{bottom:750.666667pt;}
.y9_c00325{bottom:768.533333pt;}
.y8_c00325{bottom:786.133333pt;}
.y7_c00325{bottom:804.000000pt;}
.y6_c00325{bottom:821.600000pt;}
.y5_c00325{bottom:839.466667pt;}
.y4_c00325{bottom:857.066667pt;}
.y3_c00325{bottom:874.933333pt;}
.y2_c00325{bottom:892.533333pt;}
.y1_c00325{bottom:927.066667pt;}
.h2_c00325{height:48.000000pt;}
.h3_c00325{height:53.333333pt;}
.h0_c00325{height:1037.119955pt;}
.h1_c00325{height:1037.333333pt;}
.w1_c00325{width:812.000000pt;}
.w0_c00325{width:812.159993pt;}
.x0_c00325{left:0.000000pt;}
.x12_c00325{left:83.733333pt;}
.x59_c00325{left:84.800000pt;}
.x123_c00325{left:86.400000pt;}
.x134_c00325{left:88.266667pt;}
.x35_c00325{left:101.600000pt;}
.xa8_c00325{left:103.466667pt;}
.xe9_c00325{left:105.200000pt;}
.xdc_c00325{left:107.600000pt;}
.x13_c00325{left:109.066667pt;}
.x3_c00325{left:111.333333pt;}
.x5a_c00325{left:113.333333pt;}
.xea_c00325{left:116.133333pt;}
.x45_c00325{left:118.000000pt;}
.xdd_c00325{left:123.600000pt;}
.x125_c00325{left:124.800000pt;}
.x36_c00325{left:125.866667pt;}
.x88_c00325{left:126.933333pt;}
.xe1_c00325{left:128.533333pt;}
.x14_c00325{left:129.600000pt;}
.x80_c00325{left:132.800000pt;}
.xeb_c00325{left:135.066667pt;}
.xd4_c00325{left:136.933333pt;}
.xa9_c00325{left:138.400000pt;}
.xaf_c00325{left:139.600000pt;}
.x4_c00325{left:141.066667pt;}
.xcb_c00325{left:142.933333pt;}
.x9f_c00325{left:144.400000pt;}
.x94_c00325{left:146.000000pt;}
.x11d_c00325{left:149.066667pt;}
.x52_c00325{left:150.400000pt;}
.xfe_c00325{left:151.733333pt;}
.x75_c00325{left:152.666667pt;}
.x15_c00325{left:154.533333pt;}
.x25_c00325{left:156.266667pt;}
.x68_c00325{left:157.466667pt;}
.xb7_c00325{left:158.533333pt;}
.xec_c00325{left:160.400000pt;}
.xa0_c00325{left:162.666667pt;}
.xe2_c00325{left:167.200000pt;}
.x10f_c00325{left:168.533333pt;}
.xff_c00325{left:170.000000pt;}
.x76_c00325{left:171.200000pt;}
.x26_c00325{left:173.200000pt;}
.x69_c00325{left:175.066667pt;}
.xb8_c00325{left:176.400000pt;}
.x10a_c00325{left:179.600000pt;}
.xf5_c00325{left:180.800000pt;}
.xc3_c00325{left:182.400000pt;}
.x95_c00325{left:184.666667pt;}
.x114_c00325{left:185.733333pt;}
.x11a_c00325{left:187.066667pt;}
.x37_c00325{left:188.000000pt;}
.x129_c00325{left:189.200000pt;}
.x46_c00325{left:190.666667pt;}
.x16_c00325{left:192.666667pt;}
.xaa_c00325{left:194.133333pt;}
.x104_c00325{left:196.266667pt;}
.xc4_c00325{left:197.733333pt;}
.x38_c00325{left:200.133333pt;}
.xb9_c00325{left:201.333333pt;}
.x11e_c00325{left:203.200000pt;}
.x89_c00325{left:204.266667pt;}
.x81_c00325{left:205.333333pt;}
.x5_c00325{left:206.400000pt;}
.x27_c00325{left:208.666667pt;}
.x11b_c00325{left:210.133333pt;}
.x47_c00325{left:211.466667pt;}
.x12a_c00325{left:214.533333pt;}
.x105_c00325{left:215.733333pt;}
.x39_c00325{left:219.333333pt;}
.xc5_c00325{left:220.400000pt;}
.x77_c00325{left:223.333333pt;}
.x17_c00325{left:225.333333pt;}
.xf9_c00325{left:227.066667pt;}
.x110_c00325{left:230.666667pt;}
.x28_c00325{left:232.000000pt;}
.x53_c00325{left:233.600000pt;}
.x48_c00325{left:235.466667pt;}
.xd5_c00325{left:236.533333pt;}
.x13f_c00325{left:237.733333pt;}
.x115_c00325{left:239.066667pt;}
.x5b_c00325{left:240.933333pt;}
.x10b_c00325{left:242.266667pt;}
.x12f_c00325{left:243.333333pt;}
.x18_c00325{left:244.266667pt;}
.xb0_c00325{left:246.800000pt;}
.x6_c00325{left:247.733333pt;}
.x8a_c00325{left:248.800000pt;}
.x5c_c00325{left:251.200000pt;}
.x54_c00325{left:252.800000pt;}
.xd6_c00325{left:254.133333pt;}
.x6a_c00325{left:258.800000pt;}
.x12b_c00325{left:260.000000pt;}
.x130_c00325{left:262.800000pt;}
.x29_c00325{left:266.933333pt;}
.x6b_c00325{left:268.666667pt;}
.xed_c00325{left:269.866667pt;}
.x82_c00325{left:271.333333pt;}
.x3a_c00325{left:272.400000pt;}
.xa1_c00325{left:274.933333pt;}
.x2a_c00325{left:276.800000pt;}
.x19_c00325{left:277.866667pt;}
.x11f_c00325{left:279.066667pt;}
.x142_c00325{left:280.000000pt;}
.x8b_c00325{left:283.066667pt;}
.xc6_c00325{left:285.733333pt;}
.x6c_c00325{left:286.933333pt;}
.x140_c00325{left:288.666667pt;}
.x7_c00325{left:290.266667pt;}
.xb1_c00325{left:292.266667pt;}
.xcc_c00325{left:293.600000pt;}
.xd7_c00325{left:295.066667pt;}
.x55_c00325{left:296.666667pt;}
.xde_c00325{left:300.266667pt;}
.x8c_c00325{left:303.200000pt;}
.x3b_c00325{left:306.933333pt;}
.x2b_c00325{left:308.533333pt;}
.xba_c00325{left:310.800000pt;}
.x6d_c00325{left:312.266667pt;}
.xab_c00325{left:314.133333pt;}
.x13a_c00325{left:317.200000pt;}
.x8_c00325{left:318.800000pt;}
.x10c_c00325{left:319.733333pt;}
.xbb_c00325{left:320.666667pt;}
.x56_c00325{left:322.000000pt;}
.x3c_c00325{left:323.600000pt;}
.x1a_c00325{left:325.600000pt;}
.xee_c00325{left:327.466667pt;}
.xdf_c00325{left:330.000000pt;}
.x96_c00325{left:330.933333pt;}
.x131_c00325{left:334.533333pt;}
.xa2_c00325{left:338.533333pt;}
.x6e_c00325{left:341.066667pt;}
.x106_c00325{left:342.400000pt;}
.x49_c00325{left:343.733333pt;}
.xf6_c00325{left:345.200000pt;}
.x78_c00325{left:346.266667pt;}
.xbc_c00325{left:348.133333pt;}
.x120_c00325{left:350.666667pt;}
.x11c_c00325{left:351.866667pt;}
.x1_c00325{left:353.333333pt;}
.xc7_c00325{left:354.666667pt;}
.x3d_c00325{left:355.600000pt;}
.x2c_c00325{left:356.533333pt;}
.x9_c00325{left:358.133333pt;}
.x1b_c00325{left:360.133333pt;}
.x8d_c00325{left:361.333333pt;}
.xfa_c00325{left:362.533333pt;}
.x5d_c00325{left:365.733333pt;}
.xcd_c00325{left:368.133333pt;}
.xd8_c00325{left:369.600000pt;}
.x79_c00325{left:370.933333pt;}
.xef_c00325{left:372.666667pt;}
.x12c_c00325{left:374.133333pt;}
.x13b_c00325{left:375.733333pt;}
.x97_c00325{left:376.666667pt;}
.xb2_c00325{left:378.933333pt;}
.x143_c00325{left:380.533333pt;}
.xbd_c00325{left:381.733333pt;}
.x5e_c00325{left:383.333333pt;}
.x8e_c00325{left:387.200000pt;}
.x116_c00325{left:388.400000pt;}
.xe3_c00325{left:389.466667pt;}
.xac_c00325{left:390.533333pt;}
.x1c_c00325{left:392.133333pt;}
.x83_c00325{left:394.266667pt;}
.x2d_c00325{left:397.200000pt;}
.x12d_c00325{left:400.000000pt;}
.x3e_c00325{left:401.333333pt;}
.x7a_c00325{left:402.933333pt;}
.xe4_c00325{left:404.533333pt;}
.x5f_c00325{left:405.466667pt;}
.xc8_c00325{left:406.533333pt;}
.x12e_c00325{left:408.800000pt;}
.x1d_c00325{left:410.666667pt;}
.x2e_c00325{left:412.933333pt;}
.xf7_c00325{left:414.000000pt;}
.x13c_c00325{left:415.733333pt;}
.x8f_c00325{left:417.600000pt;}
.xa_c00325{left:419.200000pt;}
.x132_c00325{left:422.000000pt;}
.x4a_c00325{left:423.733333pt;}
.x100_c00325{left:424.666667pt;}
.x84_c00325{left:427.866667pt;}
.xad_c00325{left:428.933333pt;}
.x135_c00325{left:430.000000pt;}
.x6f_c00325{left:430.933333pt;}
.xb3_c00325{left:432.400000pt;}
.x98_c00325{left:433.333333pt;}
.x2f_c00325{left:435.333333pt;}
.x90_c00325{left:436.533333pt;}
.xb_c00325{left:437.733333pt;}
.xce_c00325{left:439.466667pt;}
.x4b_c00325{left:440.400000pt;}
.x126_c00325{left:441.333333pt;}
.x1e_c00325{left:442.666667pt;}
.x7b_c00325{left:444.800000pt;}
.x99_c00325{left:446.800000pt;}
.x60_c00325{left:448.266667pt;}
.x3f_c00325{left:449.600000pt;}
.x85_c00325{left:452.800000pt;}
.x13d_c00325{left:453.866667pt;}
.xe5_c00325{left:454.800000pt;}
.x101_c00325{left:455.733333pt;}
.xa3_c00325{left:458.400000pt;}
.xc_c00325{left:459.466667pt;}
.x127_c00325{left:460.800000pt;}
.xf0_c00325{left:461.733333pt;}
.xd9_c00325{left:462.666667pt;}
.x4c_c00325{left:463.733333pt;}
.xe6_c00325{left:465.066667pt;}
.x9a_c00325{left:467.600000pt;}
.x1f_c00325{left:470.133333pt;}
.x13e_c00325{left:471.200000pt;}
.x70_c00325{left:472.266667pt;}
.x40_c00325{left:473.866667pt;}
.xf8_c00325{left:475.066667pt;}
.x121_c00325{left:476.400000pt;}
.xf1_c00325{left:480.266667pt;}
.x4d_c00325{left:482.666667pt;}
.xe7_c00325{left:483.600000pt;}
.x107_c00325{left:484.666667pt;}
.x136_c00325{left:485.733333pt;}
.x61_c00325{left:487.333333pt;}
.x111_c00325{left:488.666667pt;}
.x118_c00325{left:490.933333pt;}
.xcf_c00325{left:492.266667pt;}
.x9b_c00325{left:493.466667pt;}
.x71_c00325{left:495.600000pt;}
.xda_c00325{left:496.933333pt;}
.x7c_c00325{left:498.533333pt;}
.x57_c00325{left:500.666667pt;}
.xa4_c00325{left:501.866667pt;}
.x30_c00325{left:503.466667pt;}
.x62_c00325{left:506.266667pt;}
.x4e_c00325{left:508.000000pt;}
.x112_c00325{left:509.466667pt;}
.x141_c00325{left:510.533333pt;}
.x91_c00325{left:512.133333pt;}
.x31_c00325{left:513.733333pt;}
.xb4_c00325{left:515.600000pt;}
.x41_c00325{left:517.733333pt;}
.xd_c00325{left:520.000000pt;}
.xbe_c00325{left:521.866667pt;}
.xa5_c00325{left:525.600000pt;}
.x20_c00325{left:527.733333pt;}
.x7d_c00325{left:531.866667pt;}
.xd0_c00325{left:532.933333pt;}
.x42_c00325{left:534.400000pt;}
.x21_c00325{left:537.600000pt;}
.xb5_c00325{left:538.666667pt;}
.x137_c00325{left:540.533333pt;}
.x9c_c00325{left:541.466667pt;}
.x10d_c00325{left:542.933333pt;}
.x7e_c00325{left:544.666667pt;}
.x128_c00325{left:546.266667pt;}
.xfb_c00325{left:547.333333pt;}
.x32_c00325{left:548.266667pt;}
.x4f_c00325{left:549.600000pt;}
.xdb_c00325{left:552.933333pt;}
.xa6_c00325{left:556.000000pt;}
.x63_c00325{left:559.733333pt;}
.xbf_c00325{left:561.200000pt;}
.x86_c00325{left:564.133333pt;}
.xd1_c00325{left:565.200000pt;}
.xe_c00325{left:566.133333pt;}
.x50_c00325{left:567.466667pt;}
.x22_c00325{left:568.666667pt;}
.x7f_c00325{left:570.000000pt;}
.xc0_c00325{left:571.066667pt;}
.x33_c00325{left:572.266667pt;}
.x58_c00325{left:573.333333pt;}
.x122_c00325{left:576.533333pt;}
.x9d_c00325{left:577.600000pt;}
.x108_c00325{left:578.666667pt;}
.x138_c00325{left:579.600000pt;}
.x87_c00325{left:582.666667pt;}
.x119_c00325{left:584.400000pt;}
.xd2_c00325{left:585.333333pt;}
.x10e_c00325{left:586.533333pt;}
.xc1_c00325{left:589.600000pt;}
.xf_c00325{left:590.800000pt;}
.x102_c00325{left:591.866667pt;}
.x9e_c00325{left:595.866667pt;}
.xe0_c00325{left:598.400000pt;}
.x64_c00325{left:600.000000pt;}
.x72_c00325{left:601.200000pt;}
.x139_c00325{left:603.866667pt;}
.xf2_c00325{left:604.800000pt;}
.x109_c00325{left:605.866667pt;}
.xa7_c00325{left:608.133333pt;}
.x133_c00325{left:610.133333pt;}
.x65_c00325{left:612.533333pt;}
.x43_c00325{left:614.666667pt;}
.x23_c00325{left:615.733333pt;}
.x10_c00325{left:617.066667pt;}
.x113_c00325{left:618.000000pt;}
.x73_c00325{left:619.733333pt;}
.xf3_c00325{left:621.066667pt;}
.xe8_c00325{left:622.000000pt;}
.x103_c00325{left:623.200000pt;}
.xc9_c00325{left:624.133333pt;}
.xfc_c00325{left:627.333333pt;}
.x51_c00325{left:629.600000pt;}
.x34_c00325{left:630.533333pt;}
.xd3_c00325{left:632.666667pt;}
.xae_c00325{left:634.000000pt;}
.x92_c00325{left:636.000000pt;}
.x66_c00325{left:637.866667pt;}
.x44_c00325{left:641.200000pt;}
.x74_c00325{left:642.400000pt;}
.xf4_c00325{left:644.133333pt;}
.x93_c00325{left:645.866667pt;}
.xc2_c00325{left:647.466667pt;}
.x24_c00325{left:650.000000pt;}
.x124_c00325{left:651.866667pt;}
.x2_c00325{left:653.466667pt;}
.x117_c00325{left:658.666667pt;}
.x67_c00325{left:660.000000pt;}
.xfd_c00325{left:661.866667pt;}
.xca_c00325{left:663.866667pt;}
.xb6_c00325{left:667.066667pt;}
.x11_c00325{left:674.400000pt;}
}





/* 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_c00326 {
    display:none;
  }
  .loading-indicator_c00326.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00326 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_c00326 { 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_c00326" -> "#page-container .classname_c00326")
 */
.pf_c00326 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00326 { /* 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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00326 { /* 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_c00326 { /* 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_c00326 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00326 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00326 {overflow:visible;}
  }
}
.c_c00326 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00326 { /* 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_c00326:after { /* webkit #35443 */
  content: '';
}
.t_c00326:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00326 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 */
}
.__c00326 { /* 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_c00326 { /* info for Javascript */
  display:none;
}
.l_c00326 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00326 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00326 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00326: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_c00326 {
    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_c00326.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00326.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_c00326 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00326{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00326;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.000000;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;}
.m24_c00326{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m37_c00326{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m77_c00326{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00326{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00326{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00326{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m96_c00326{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00326{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00326{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00326{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m90_c00326{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00326{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00326{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m64_c00326{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m75_c00326{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m29_c00326{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00326{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00326{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00326{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m86_c00326{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m69_c00326{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m94_c00326{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00326{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00326{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m68_c00326{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00326{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m80_c00326{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m78_c00326{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00326{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00326{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me_c00326{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m72_c00326{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00326{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m84_c00326{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00326{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00326{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7_c00326{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m58_c00326{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00326{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00326{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00326{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m28_c00326{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m98_c00326{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m87_c00326{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00326{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m26_c00326{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m95_c00326{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m85_c00326{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00326{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m62_c00326{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00326{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00326{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m71_c00326{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00326{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);}
.m32_c00326{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00326{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00326{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00326{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00326{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m73_c00326{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m92_c00326{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m82_c00326{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m70_c00326{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00326{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m74_c00326{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m18_c00326{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00326{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00326{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00326{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m33_c00326{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m93_c00326{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00326{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m76_c00326{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m88_c00326{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00326{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m49_c00326{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m81_c00326{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m41_c00326{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00326{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m99_c00326{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00326{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m27_c00326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m65_c00326{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m79_c00326{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m40_c00326{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m97_c00326{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00326{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m83_c00326{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00326{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00326{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m43_c00326{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m89_c00326{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00326{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00326{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{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__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00326{word-spacing:-4.750000px;}
.ws8_c00326{word-spacing:0.000000px;}
.ws0_c00326{word-spacing:1.285714px;}
.ws4_c00326{word-spacing:4.045410px;}
.ws1_c00326{word-spacing:4.190523px;}
.ws3_c00326{word-spacing:5.750000px;}
.ws7_c00326{word-spacing:12.250000px;}
.ws2_c00326{word-spacing:14.444444px;}
.ws6_c00326{word-spacing:20.666667px;}
.fc0_c00326{color:transparent;}
.fs0_c00326{font-size:54.000000px;}
.y0_c00326{bottom:0.000000px;}
.y2c_c00326{bottom:151.200000px;}
.y2b_c00326{bottom:166.650000px;}
.y2a_c00326{bottom:212.700000px;}
.y29_c00326{bottom:232.800000px;}
.y28_c00326{bottom:252.600000px;}
.y27_c00326{bottom:272.400000px;}
.y26_c00326{bottom:292.200000px;}
.y25_c00326{bottom:312.000000px;}
.y24_c00326{bottom:332.100000px;}
.y23_c00326{bottom:351.900000px;}
.y22_c00326{bottom:371.700000px;}
.y21_c00326{bottom:391.500000px;}
.y20_c00326{bottom:411.600000px;}
.y1f_c00326{bottom:431.400000px;}
.y1e_c00326{bottom:451.500000px;}
.y1d_c00326{bottom:471.600000px;}
.y1c_c00326{bottom:491.400000px;}
.y1b_c00326{bottom:511.500000px;}
.y1a_c00326{bottom:531.600000px;}
.y19_c00326{bottom:551.400000px;}
.y18_c00326{bottom:570.900000px;}
.y17_c00326{bottom:590.700000px;}
.y16_c00326{bottom:610.800000px;}
.y15_c00326{bottom:630.600000px;}
.y14_c00326{bottom:650.400000px;}
.y13_c00326{bottom:669.450000px;}
.y12_c00326{bottom:689.550000px;}
.y11_c00326{bottom:709.350000px;}
.y10_c00326{bottom:729.450000px;}
.yf_c00326{bottom:749.250000px;}
.ye_c00326{bottom:769.050000px;}
.yd_c00326{bottom:788.850000px;}
.yc_c00326{bottom:808.650000px;}
.yb_c00326{bottom:828.750000px;}
.ya_c00326{bottom:848.700000px;}
.y9_c00326{bottom:868.800000px;}
.y8_c00326{bottom:888.600000px;}
.y7_c00326{bottom:908.400000px;}
.y6_c00326{bottom:928.500000px;}
.y5_c00326{bottom:948.300000px;}
.y4_c00326{bottom:968.100000px;}
.y3_c00326{bottom:988.200000px;}
.y2_c00326{bottom:1008.000000px;}
.y1_c00326{bottom:1046.100000px;}
.h2_c00326{height:54.000000px;}
.h0_c00326{height:1166.759949px;}
.h1_c00326{height:1167.000000px;}
.w1_c00326{width:913.500000px;}
.w0_c00326{width:913.679993px;}
.x0_c00326{left:0.000000px;}
.xd6_c00326{left:145.050000px;}
.x9b_c00326{left:146.250000px;}
.x12_c00326{left:147.450000px;}
.x1_c00326{left:149.100000px;}
.x39_c00326{left:157.950000px;}
.x2_c00326{left:159.900000px;}
.xe1_c00326{left:166.200000px;}
.x3_c00326{left:167.400000px;}
.x20_c00326{left:169.050000px;}
.x8f_c00326{left:170.250000px;}
.x48_c00326{left:173.250000px;}
.xac_c00326{left:177.150000px;}
.x5_c00326{left:178.950000px;}
.xc9_c00326{left:181.050000px;}
.x115_c00326{left:189.150000px;}
.xc3_c00326{left:190.650000px;}
.x49_c00326{left:193.350000px;}
.x107_c00326{left:195.750000px;}
.xa4_c00326{left:197.400000px;}
.x21_c00326{left:198.600000px;}
.x3a_c00326{left:200.850000px;}
.x7d_c00326{left:205.200000px;}
.x2a_c00326{left:206.250000px;}
.xad_c00326{left:208.800000px;}
.xec_c00326{left:209.850000px;}
.x11b_c00326{left:211.200000px;}
.xf1_c00326{left:213.600000px;}
.x3b_c00326{left:216.000000px;}
.x121_c00326{left:217.200000px;}
.x72_c00326{left:218.550000px;}
.x6_c00326{left:221.100000px;}
.x86_c00326{left:225.300000px;}
.x10d_c00326{left:226.500000px;}
.x13_c00326{left:227.700000px;}
.xd7_c00326{left:229.650000px;}
.xe2_c00326{left:231.000000px;}
.xed_c00326{left:232.500000px;}
.x140_c00326{left:233.550000px;}
.x129_c00326{left:235.500000px;}
.xb8_c00326{left:239.550000px;}
.x103_c00326{left:240.750000px;}
.x22_c00326{left:242.550000px;}
.x2b_c00326{left:244.050000px;}
.x87_c00326{left:246.150000px;}
.x90_c00326{left:248.400000px;}
.xf8_c00326{left:250.650000px;}
.x108_c00326{left:251.850000px;}
.x3c_c00326{left:253.500000px;}
.xea_c00326{left:255.600000px;}
.x7_c00326{left:259.200000px;}
.x135_c00326{left:260.250000px;}
.x9c_c00326{left:261.450000px;}
.x23_c00326{left:263.400000px;}
.x14_c00326{left:265.500000px;}
.x145_c00326{left:266.850000px;}
.x12a_c00326{left:267.900000px;}
.x66_c00326{left:270.300000px;}
.x109_c00326{left:273.150000px;}
.xd1_c00326{left:275.700000px;}
.x5a_c00326{left:277.200000px;}
.x91_c00326{left:279.300000px;}
.xe3_c00326{left:281.100000px;}
.xb9_c00326{left:283.050000px;}
.x3d_c00326{left:285.150000px;}
.x12b_c00326{left:286.200000px;}
.xf2_c00326{left:287.400000px;}
.x73_c00326{left:288.450000px;}
.x4a_c00326{left:289.800000px;}
.x2c_c00326{left:292.350000px;}
.xca_c00326{left:294.750000px;}
.x8_c00326{left:297.000000px;}
.xae_c00326{left:299.550000px;}
.xf9_c00326{left:301.350000px;}
.xe4_c00326{left:303.450000px;}
.x3e_c00326{left:305.700000px;}
.x92_c00326{left:309.900000px;}
.x15_c00326{left:311.550000px;}
.x144_c00326{left:312.600000px;}
.x24_c00326{left:313.800000px;}
.xcb_c00326{left:317.100000px;}
.x2d_c00326{left:319.350000px;}
.x146_c00326{left:320.400000px;}
.x5b_c00326{left:321.900000px;}
.x138_c00326{left:323.850000px;}
.xf3_c00326{left:325.200000px;}
.xba_c00326{left:327.000000px;}
.x93_c00326{left:329.700000px;}
.x16_c00326{left:331.050000px;}
.x11c_c00326{left:332.250000px;}
.xe5_c00326{left:334.350000px;}
.x67_c00326{left:336.150000px;}
.x4b_c00326{left:338.100000px;}
.xaf_c00326{left:339.900000px;}
.xd8_c00326{left:341.700000px;}
.x147_c00326{left:342.750000px;}
.xa5_c00326{left:343.950000px;}
.x3f_c00326{left:345.300000px;}
.xcc_c00326{left:346.950000px;}
.x12f_c00326{left:350.100000px;}
.x5c_c00326{left:351.450000px;}
.x112_c00326{left:354.600000px;}
.xfa_c00326{left:356.850000px;}
.x13c_c00326{left:357.900000px;}
.x17_c00326{left:359.100000px;}
.x9_c00326{left:360.300000px;}
.x13d_c00326{left:364.050000px;}
.x68_c00326{left:365.250000px;}
.xbb_c00326{left:369.450000px;}
.x122_c00326{left:371.100000px;}
.x25_c00326{left:372.900000px;}
.xa6_c00326{left:374.250000px;}
.x4c_c00326{left:376.200000px;}
.x74_c00326{left:379.500000px;}
.xa_c00326{left:381.600000px;}
.x9d_c00326{left:383.100000px;}
.x2e_c00326{left:387.000000px;}
.xf4_c00326{left:388.650000px;}
.x5d_c00326{left:390.300000px;}
.xee_c00326{left:393.000000px;}
.xb0_c00326{left:394.950000px;}
.x13e_c00326{left:397.200000px;}
.x88_c00326{left:398.400000px;}
.xfe_c00326{left:399.450000px;}
.x116_c00326{left:400.800000px;}
.xa7_c00326{left:402.000000px;}
.x113_c00326{left:403.200000px;}
.x94_c00326{left:405.600000px;}
.x26_c00326{left:406.800000px;}
.x75_c00326{left:408.000000px;}
.xf5_c00326{left:409.200000px;}
.x69_c00326{left:411.000000px;}
.xd9_c00326{left:412.950000px;}
.x104_c00326{left:414.300000px;}
.x40_c00326{left:415.500000px;}
.x9e_c00326{left:416.550000px;}
.x12c_c00326{left:417.600000px;}
.x18_c00326{left:419.250000px;}
.x4d_c00326{left:421.500000px;}
.x11d_c00326{left:422.700000px;}
.xc4_c00326{left:426.900000px;}
.x89_c00326{left:427.950000px;}
.x2f_c00326{left:429.150000px;}
.x117_c00326{left:432.150000px;}
.x5e_c00326{left:433.800000px;}
.x27_c00326{left:435.600000px;}
.x141_c00326{left:436.650000px;}
.x41_c00326{left:437.850000px;}
.x7e_c00326{left:439.950000px;}
.xbc_c00326{left:442.800000px;}
.x9f_c00326{left:444.300000px;}
.x4_c00326{left:446.100000px;}
.xcd_c00326{left:448.950000px;}
.xeb_c00326{left:451.050000px;}
.x4e_c00326{left:452.400000px;}
.x10a_c00326{left:453.450000px;}
.x7f_c00326{left:455.100000px;}
.x95_c00326{left:456.300000px;}
.x19_c00326{left:458.100000px;}
.xff_c00326{left:459.600000px;}
.xd2_c00326{left:464.250000px;}
.x30_c00326{left:465.900000px;}
.x42_c00326{left:467.700000px;}
.xb_c00326{left:469.800000px;}
.x6a_c00326{left:471.150000px;}
.x5f_c00326{left:473.100000px;}
.x8a_c00326{left:474.450000px;}
.xa0_c00326{left:475.950000px;}
.x1a_c00326{left:477.900000px;}
.x76_c00326{left:480.300000px;}
.xd3_c00326{left:481.950000px;}
.xc5_c00326{left:484.500000px;}
.xce_c00326{left:486.750000px;}
.xda_c00326{left:488.250000px;}
.x96_c00326{left:490.200000px;}
.xbd_c00326{left:491.700000px;}
.x10b_c00326{left:494.400000px;}
.x118_c00326{left:496.500000px;}
.xc_c00326{left:500.100000px;}
.x4f_c00326{left:501.300000px;}
.x6b_c00326{left:502.500000px;}
.x43_c00326{left:504.000000px;}
.x10e_c00326{left:507.000000px;}
.xdb_c00326{left:508.800000px;}
.xcf_c00326{left:510.150000px;}
.x11e_c00326{left:512.400000px;}
.x80_c00326{left:513.750000px;}
.xbe_c00326{left:515.400000px;}
.x142_c00326{left:516.600000px;}
.xb1_c00326{left:518.100000px;}
.x77_c00326{left:519.150000px;}
.x50_c00326{left:524.700000px;}
.x10f_c00326{left:526.500000px;}
.x1b_c00326{left:527.550000px;}
.x6c_c00326{left:531.000000px;}
.x123_c00326{left:533.100000px;}
.x132_c00326{left:536.400000px;}
.x8b_c00326{left:538.200000px;}
.x100_c00326{left:540.150000px;}
.x60_c00326{left:542.550000px;}
.xbf_c00326{left:545.250000px;}
.x28_c00326{left:547.200000px;}
.xd_c00326{left:549.450000px;}
.xf6_c00326{left:550.650000px;}
.xa1_c00326{left:552.300000px;}
.x31_c00326{left:553.800000px;}
.x124_c00326{left:555.450000px;}
.x13f_c00326{left:556.500000px;}
.xb2_c00326{left:558.750000px;}
.x61_c00326{left:562.650000px;}
.x51_c00326{left:565.800000px;}
.x1c_c00326{left:566.850000px;}
.x78_c00326{left:568.200000px;}
.x101_c00326{left:569.700000px;}
.x125_c00326{left:573.750000px;}
.x29_c00326{left:575.250000px;}
.x130_c00326{left:577.650000px;}
.x139_c00326{left:579.750000px;}
.x133_c00326{left:583.500000px;}
.x79_c00326{left:585.150000px;}
.x1d_c00326{left:586.950000px;}
.x52_c00326{left:589.200000px;}
.xe6_c00326{left:590.250000px;}
.x44_c00326{left:591.900000px;}
.xa8_c00326{left:594.000000px;}
.x6d_c00326{left:596.850000px;}
.x32_c00326{left:599.850000px;}
.x105_c00326{left:602.100000px;}
.x7a_c00326{left:603.150000px;}
.x110_c00326{left:604.200000px;}
.x114_c00326{left:606.300000px;}
.xb3_c00326{left:607.650000px;}
.x13a_c00326{left:609.300000px;}
.xe_c00326{left:611.700000px;}
.x62_c00326{left:613.350000px;}
.x148_c00326{left:615.450000px;}
.xdc_c00326{left:619.350000px;}
.x119_c00326{left:620.400000px;}
.x111_c00326{left:622.200000px;}
.xd4_c00326{left:623.250000px;}
.xc6_c00326{left:624.900000px;}
.x53_c00326{left:627.750000px;}
.x1e_c00326{left:629.100000px;}
.x8c_c00326{left:631.800000px;}
.x6e_c00326{left:632.850000px;}
.x126_c00326{left:634.950000px;}
.x33_c00326{left:636.150000px;}
.x81_c00326{left:638.550000px;}
.xe7_c00326{left:639.900000px;}
.xc0_c00326{left:642.450000px;}
.xdd_c00326{left:643.800000px;}
.xfb_c00326{left:646.050000px;}
.xef_c00326{left:647.850000px;}
.x12d_c00326{left:649.200000px;}
.x8d_c00326{left:651.600000px;}
.x45_c00326{left:652.800000px;}
.xf_c00326{left:654.150000px;}
.x34_c00326{left:656.250000px;}
.x54_c00326{left:658.350000px;}
.x13b_c00326{left:660.750000px;}
.x11f_c00326{left:662.550000px;}
.xb4_c00326{left:663.750000px;}
.xde_c00326{left:665.100000px;}
.x63_c00326{left:667.050000px;}
.x97_c00326{left:671.250000px;}
.x6f_c00326{left:672.450000px;}
.xc1_c00326{left:674.850000px;}
.x55_c00326{left:676.650000px;}
.x82_c00326{left:679.200000px;}
.xb5_c00326{left:680.250000px;}
.xa2_c00326{left:683.700000px;}
.xd0_c00326{left:684.750000px;}
.x143_c00326{left:686.850000px;}
.x56_c00326{left:688.500000px;}
.xe8_c00326{left:691.350000px;}
.xfc_c00326{left:693.150000px;}
.x64_c00326{left:695.550000px;}
.x12e_c00326{left:697.500000px;}
.x46_c00326{left:699.300000px;}
.x7b_c00326{left:700.650000px;}
.xdf_c00326{left:701.850000px;}
.xf7_c00326{left:703.350000px;}
.x11a_c00326{left:705.750000px;}
.x35_c00326{left:711.000000px;}
.x10_c00326{left:712.050000px;}
.x83_c00326{left:713.100000px;}
.x127_c00326{left:714.900000px;}
.x98_c00326{left:718.050000px;}
.xfd_c00326{left:719.850000px;}
.xc2_c00326{left:721.950000px;}
.x57_c00326{left:724.200000px;}
.x70_c00326{left:726.450000px;}
.x106_c00326{left:728.550000px;}
.xe9_c00326{left:730.650000px;}
.xb6_c00326{left:732.450000px;}
.x11_c00326{left:733.950000px;}
.x136_c00326{left:736.200000px;}
.x131_c00326{left:737.850000px;}
.xe0_c00326{left:739.650000px;}
.xa9_c00326{left:741.600000px;}
.x84_c00326{left:742.650000px;}
.x99_c00326{left:746.100000px;}
.x1f_c00326{left:751.500000px;}
.x7c_c00326{left:754.350000px;}
.x137_c00326{left:755.700000px;}
.x65_c00326{left:756.750000px;}
.x58_c00326{left:759.150000px;}
.x36_c00326{left:761.400000px;}
.x120_c00326{left:768.000000px;}
.xf0_c00326{left:769.500000px;}
.x134_c00326{left:770.550000px;}
.x9a_c00326{left:771.600000px;}
.xc7_c00326{left:774.750000px;}
.x59_c00326{left:776.400000px;}
.x102_c00326{left:777.450000px;}
.x37_c00326{left:778.650000px;}
.x85_c00326{left:780.450000px;}
.x47_c00326{left:784.200000px;}
.xd5_c00326{left:786.600000px;}
.x10c_c00326{left:788.400000px;}
.xa3_c00326{left:790.650000px;}
.x71_c00326{left:792.750000px;}
.x128_c00326{left:793.800000px;}
.xc8_c00326{left:795.300000px;}
.xaa_c00326{left:798.150000px;}
.xb7_c00326{left:801.900000px;}
.x8e_c00326{left:803.850000px;}
.xab_c00326{left:811.800000px;}
.x38_c00326{left:813.150000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws5_c00326{word-spacing:-4.222222pt;}
.ws8_c00326{word-spacing:0.000000pt;}
.ws0_c00326{word-spacing:1.142857pt;}
.ws4_c00326{word-spacing:3.595920pt;}
.ws1_c00326{word-spacing:3.724910pt;}
.ws3_c00326{word-spacing:5.111111pt;}
.ws7_c00326{word-spacing:10.888889pt;}
.ws2_c00326{word-spacing:12.839506pt;}
.ws6_c00326{word-spacing:18.370370pt;}
.fs0_c00326{font-size:48.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y2c_c00326{bottom:134.400000pt;}
.y2b_c00326{bottom:148.133333pt;}
.y2a_c00326{bottom:189.066667pt;}
.y29_c00326{bottom:206.933333pt;}
.y28_c00326{bottom:224.533333pt;}
.y27_c00326{bottom:242.133333pt;}
.y26_c00326{bottom:259.733333pt;}
.y25_c00326{bottom:277.333333pt;}
.y24_c00326{bottom:295.200000pt;}
.y23_c00326{bottom:312.800000pt;}
.y22_c00326{bottom:330.400000pt;}
.y21_c00326{bottom:348.000000pt;}
.y20_c00326{bottom:365.866667pt;}
.y1f_c00326{bottom:383.466667pt;}
.y1e_c00326{bottom:401.333333pt;}
.y1d_c00326{bottom:419.200000pt;}
.y1c_c00326{bottom:436.800000pt;}
.y1b_c00326{bottom:454.666667pt;}
.y1a_c00326{bottom:472.533333pt;}
.y19_c00326{bottom:490.133333pt;}
.y18_c00326{bottom:507.466667pt;}
.y17_c00326{bottom:525.066667pt;}
.y16_c00326{bottom:542.933333pt;}
.y15_c00326{bottom:560.533333pt;}
.y14_c00326{bottom:578.133333pt;}
.y13_c00326{bottom:595.066667pt;}
.y12_c00326{bottom:612.933333pt;}
.y11_c00326{bottom:630.533333pt;}
.y10_c00326{bottom:648.400000pt;}
.yf_c00326{bottom:666.000000pt;}
.ye_c00326{bottom:683.600000pt;}
.yd_c00326{bottom:701.200000pt;}
.yc_c00326{bottom:718.800000pt;}
.yb_c00326{bottom:736.666667pt;}
.ya_c00326{bottom:754.400000pt;}
.y9_c00326{bottom:772.266667pt;}
.y8_c00326{bottom:789.866667pt;}
.y7_c00326{bottom:807.466667pt;}
.y6_c00326{bottom:825.333333pt;}
.y5_c00326{bottom:842.933333pt;}
.y4_c00326{bottom:860.533333pt;}
.y3_c00326{bottom:878.400000pt;}
.y2_c00326{bottom:896.000000pt;}
.y1_c00326{bottom:929.866667pt;}
.h2_c00326{height:48.000000pt;}
.h0_c00326{height:1037.119955pt;}
.h1_c00326{height:1037.333333pt;}
.w1_c00326{width:812.000000pt;}
.w0_c00326{width:812.159993pt;}
.x0_c00326{left:0.000000pt;}
.xd6_c00326{left:128.933333pt;}
.x9b_c00326{left:130.000000pt;}
.x12_c00326{left:131.066667pt;}
.x1_c00326{left:132.533333pt;}
.x39_c00326{left:140.400000pt;}
.x2_c00326{left:142.133333pt;}
.xe1_c00326{left:147.733333pt;}
.x3_c00326{left:148.800000pt;}
.x20_c00326{left:150.266667pt;}
.x8f_c00326{left:151.333333pt;}
.x48_c00326{left:154.000000pt;}
.xac_c00326{left:157.466667pt;}
.x5_c00326{left:159.066667pt;}
.xc9_c00326{left:160.933333pt;}
.x115_c00326{left:168.133333pt;}
.xc3_c00326{left:169.466667pt;}
.x49_c00326{left:171.866667pt;}
.x107_c00326{left:174.000000pt;}
.xa4_c00326{left:175.466667pt;}
.x21_c00326{left:176.533333pt;}
.x3a_c00326{left:178.533333pt;}
.x7d_c00326{left:182.400000pt;}
.x2a_c00326{left:183.333333pt;}
.xad_c00326{left:185.600000pt;}
.xec_c00326{left:186.533333pt;}
.x11b_c00326{left:187.733333pt;}
.xf1_c00326{left:189.866667pt;}
.x3b_c00326{left:192.000000pt;}
.x121_c00326{left:193.066667pt;}
.x72_c00326{left:194.266667pt;}
.x6_c00326{left:196.533333pt;}
.x86_c00326{left:200.266667pt;}
.x10d_c00326{left:201.333333pt;}
.x13_c00326{left:202.400000pt;}
.xd7_c00326{left:204.133333pt;}
.xe2_c00326{left:205.333333pt;}
.xed_c00326{left:206.666667pt;}
.x140_c00326{left:207.600000pt;}
.x129_c00326{left:209.333333pt;}
.xb8_c00326{left:212.933333pt;}
.x103_c00326{left:214.000000pt;}
.x22_c00326{left:215.600000pt;}
.x2b_c00326{left:216.933333pt;}
.x87_c00326{left:218.800000pt;}
.x90_c00326{left:220.800000pt;}
.xf8_c00326{left:222.800000pt;}
.x108_c00326{left:223.866667pt;}
.x3c_c00326{left:225.333333pt;}
.xea_c00326{left:227.200000pt;}
.x7_c00326{left:230.400000pt;}
.x135_c00326{left:231.333333pt;}
.x9c_c00326{left:232.400000pt;}
.x23_c00326{left:234.133333pt;}
.x14_c00326{left:236.000000pt;}
.x145_c00326{left:237.200000pt;}
.x12a_c00326{left:238.133333pt;}
.x66_c00326{left:240.266667pt;}
.x109_c00326{left:242.800000pt;}
.xd1_c00326{left:245.066667pt;}
.x5a_c00326{left:246.400000pt;}
.x91_c00326{left:248.266667pt;}
.xe3_c00326{left:249.866667pt;}
.xb9_c00326{left:251.600000pt;}
.x3d_c00326{left:253.466667pt;}
.x12b_c00326{left:254.400000pt;}
.xf2_c00326{left:255.466667pt;}
.x73_c00326{left:256.400000pt;}
.x4a_c00326{left:257.600000pt;}
.x2c_c00326{left:259.866667pt;}
.xca_c00326{left:262.000000pt;}
.x8_c00326{left:264.000000pt;}
.xae_c00326{left:266.266667pt;}
.xf9_c00326{left:267.866667pt;}
.xe4_c00326{left:269.733333pt;}
.x3e_c00326{left:271.733333pt;}
.x92_c00326{left:275.466667pt;}
.x15_c00326{left:276.933333pt;}
.x144_c00326{left:277.866667pt;}
.x24_c00326{left:278.933333pt;}
.xcb_c00326{left:281.866667pt;}
.x2d_c00326{left:283.866667pt;}
.x146_c00326{left:284.800000pt;}
.x5b_c00326{left:286.133333pt;}
.x138_c00326{left:287.866667pt;}
.xf3_c00326{left:289.066667pt;}
.xba_c00326{left:290.666667pt;}
.x93_c00326{left:293.066667pt;}
.x16_c00326{left:294.266667pt;}
.x11c_c00326{left:295.333333pt;}
.xe5_c00326{left:297.200000pt;}
.x67_c00326{left:298.800000pt;}
.x4b_c00326{left:300.533333pt;}
.xaf_c00326{left:302.133333pt;}
.xd8_c00326{left:303.733333pt;}
.x147_c00326{left:304.666667pt;}
.xa5_c00326{left:305.733333pt;}
.x3f_c00326{left:306.933333pt;}
.xcc_c00326{left:308.400000pt;}
.x12f_c00326{left:311.200000pt;}
.x5c_c00326{left:312.400000pt;}
.x112_c00326{left:315.200000pt;}
.xfa_c00326{left:317.200000pt;}
.x13c_c00326{left:318.133333pt;}
.x17_c00326{left:319.200000pt;}
.x9_c00326{left:320.266667pt;}
.x13d_c00326{left:323.600000pt;}
.x68_c00326{left:324.666667pt;}
.xbb_c00326{left:328.400000pt;}
.x122_c00326{left:329.866667pt;}
.x25_c00326{left:331.466667pt;}
.xa6_c00326{left:332.666667pt;}
.x4c_c00326{left:334.400000pt;}
.x74_c00326{left:337.333333pt;}
.xa_c00326{left:339.200000pt;}
.x9d_c00326{left:340.533333pt;}
.x2e_c00326{left:344.000000pt;}
.xf4_c00326{left:345.466667pt;}
.x5d_c00326{left:346.933333pt;}
.xee_c00326{left:349.333333pt;}
.xb0_c00326{left:351.066667pt;}
.x13e_c00326{left:353.066667pt;}
.x88_c00326{left:354.133333pt;}
.xfe_c00326{left:355.066667pt;}
.x116_c00326{left:356.266667pt;}
.xa7_c00326{left:357.333333pt;}
.x113_c00326{left:358.400000pt;}
.x94_c00326{left:360.533333pt;}
.x26_c00326{left:361.600000pt;}
.x75_c00326{left:362.666667pt;}
.xf5_c00326{left:363.733333pt;}
.x69_c00326{left:365.333333pt;}
.xd9_c00326{left:367.066667pt;}
.x104_c00326{left:368.266667pt;}
.x40_c00326{left:369.333333pt;}
.x9e_c00326{left:370.266667pt;}
.x12c_c00326{left:371.200000pt;}
.x18_c00326{left:372.666667pt;}
.x4d_c00326{left:374.666667pt;}
.x11d_c00326{left:375.733333pt;}
.xc4_c00326{left:379.466667pt;}
.x89_c00326{left:380.400000pt;}
.x2f_c00326{left:381.466667pt;}
.x117_c00326{left:384.133333pt;}
.x5e_c00326{left:385.600000pt;}
.x27_c00326{left:387.200000pt;}
.x141_c00326{left:388.133333pt;}
.x41_c00326{left:389.200000pt;}
.x7e_c00326{left:391.066667pt;}
.xbc_c00326{left:393.600000pt;}
.x9f_c00326{left:394.933333pt;}
.x4_c00326{left:396.533333pt;}
.xcd_c00326{left:399.066667pt;}
.xeb_c00326{left:400.933333pt;}
.x4e_c00326{left:402.133333pt;}
.x10a_c00326{left:403.066667pt;}
.x7f_c00326{left:404.533333pt;}
.x95_c00326{left:405.600000pt;}
.x19_c00326{left:407.200000pt;}
.xff_c00326{left:408.533333pt;}
.xd2_c00326{left:412.666667pt;}
.x30_c00326{left:414.133333pt;}
.x42_c00326{left:415.733333pt;}
.xb_c00326{left:417.600000pt;}
.x6a_c00326{left:418.800000pt;}
.x5f_c00326{left:420.533333pt;}
.x8a_c00326{left:421.733333pt;}
.xa0_c00326{left:423.066667pt;}
.x1a_c00326{left:424.800000pt;}
.x76_c00326{left:426.933333pt;}
.xd3_c00326{left:428.400000pt;}
.xc5_c00326{left:430.666667pt;}
.xce_c00326{left:432.666667pt;}
.xda_c00326{left:434.000000pt;}
.x96_c00326{left:435.733333pt;}
.xbd_c00326{left:437.066667pt;}
.x10b_c00326{left:439.466667pt;}
.x118_c00326{left:441.333333pt;}
.xc_c00326{left:444.533333pt;}
.x4f_c00326{left:445.600000pt;}
.x6b_c00326{left:446.666667pt;}
.x43_c00326{left:448.000000pt;}
.x10e_c00326{left:450.666667pt;}
.xdb_c00326{left:452.266667pt;}
.xcf_c00326{left:453.466667pt;}
.x11e_c00326{left:455.466667pt;}
.x80_c00326{left:456.666667pt;}
.xbe_c00326{left:458.133333pt;}
.x142_c00326{left:459.200000pt;}
.xb1_c00326{left:460.533333pt;}
.x77_c00326{left:461.466667pt;}
.x50_c00326{left:466.400000pt;}
.x10f_c00326{left:468.000000pt;}
.x1b_c00326{left:468.933333pt;}
.x6c_c00326{left:472.000000pt;}
.x123_c00326{left:473.866667pt;}
.x132_c00326{left:476.800000pt;}
.x8b_c00326{left:478.400000pt;}
.x100_c00326{left:480.133333pt;}
.x60_c00326{left:482.266667pt;}
.xbf_c00326{left:484.666667pt;}
.x28_c00326{left:486.400000pt;}
.xd_c00326{left:488.400000pt;}
.xf6_c00326{left:489.466667pt;}
.xa1_c00326{left:490.933333pt;}
.x31_c00326{left:492.266667pt;}
.x124_c00326{left:493.733333pt;}
.x13f_c00326{left:494.666667pt;}
.xb2_c00326{left:496.666667pt;}
.x61_c00326{left:500.133333pt;}
.x51_c00326{left:502.933333pt;}
.x1c_c00326{left:503.866667pt;}
.x78_c00326{left:505.066667pt;}
.x101_c00326{left:506.400000pt;}
.x125_c00326{left:510.000000pt;}
.x29_c00326{left:511.333333pt;}
.x130_c00326{left:513.466667pt;}
.x139_c00326{left:515.333333pt;}
.x133_c00326{left:518.666667pt;}
.x79_c00326{left:520.133333pt;}
.x1d_c00326{left:521.733333pt;}
.x52_c00326{left:523.733333pt;}
.xe6_c00326{left:524.666667pt;}
.x44_c00326{left:526.133333pt;}
.xa8_c00326{left:528.000000pt;}
.x6d_c00326{left:530.533333pt;}
.x32_c00326{left:533.200000pt;}
.x105_c00326{left:535.200000pt;}
.x7a_c00326{left:536.133333pt;}
.x110_c00326{left:537.066667pt;}
.x114_c00326{left:538.933333pt;}
.xb3_c00326{left:540.133333pt;}
.x13a_c00326{left:541.600000pt;}
.xe_c00326{left:543.733333pt;}
.x62_c00326{left:545.200000pt;}
.x148_c00326{left:547.066667pt;}
.xdc_c00326{left:550.533333pt;}
.x119_c00326{left:551.466667pt;}
.x111_c00326{left:553.066667pt;}
.xd4_c00326{left:554.000000pt;}
.xc6_c00326{left:555.466667pt;}
.x53_c00326{left:558.000000pt;}
.x1e_c00326{left:559.200000pt;}
.x8c_c00326{left:561.600000pt;}
.x6e_c00326{left:562.533333pt;}
.x126_c00326{left:564.400000pt;}
.x33_c00326{left:565.466667pt;}
.x81_c00326{left:567.600000pt;}
.xe7_c00326{left:568.800000pt;}
.xc0_c00326{left:571.066667pt;}
.xdd_c00326{left:572.266667pt;}
.xfb_c00326{left:574.266667pt;}
.xef_c00326{left:575.866667pt;}
.x12d_c00326{left:577.066667pt;}
.x8d_c00326{left:579.200000pt;}
.x45_c00326{left:580.266667pt;}
.xf_c00326{left:581.466667pt;}
.x34_c00326{left:583.333333pt;}
.x54_c00326{left:585.200000pt;}
.x13b_c00326{left:587.333333pt;}
.x11f_c00326{left:588.933333pt;}
.xb4_c00326{left:590.000000pt;}
.xde_c00326{left:591.200000pt;}
.x63_c00326{left:592.933333pt;}
.x97_c00326{left:596.666667pt;}
.x6f_c00326{left:597.733333pt;}
.xc1_c00326{left:599.866667pt;}
.x55_c00326{left:601.466667pt;}
.x82_c00326{left:603.733333pt;}
.xb5_c00326{left:604.666667pt;}
.xa2_c00326{left:607.733333pt;}
.xd0_c00326{left:608.666667pt;}
.x143_c00326{left:610.533333pt;}
.x56_c00326{left:612.000000pt;}
.xe8_c00326{left:614.533333pt;}
.xfc_c00326{left:616.133333pt;}
.x64_c00326{left:618.266667pt;}
.x12e_c00326{left:620.000000pt;}
.x46_c00326{left:621.600000pt;}
.x7b_c00326{left:622.800000pt;}
.xdf_c00326{left:623.866667pt;}
.xf7_c00326{left:625.200000pt;}
.x11a_c00326{left:627.333333pt;}
.x35_c00326{left:632.000000pt;}
.x10_c00326{left:632.933333pt;}
.x83_c00326{left:633.866667pt;}
.x127_c00326{left:635.466667pt;}
.x98_c00326{left:638.266667pt;}
.xfd_c00326{left:639.866667pt;}
.xc2_c00326{left:641.733333pt;}
.x57_c00326{left:643.733333pt;}
.x70_c00326{left:645.733333pt;}
.x106_c00326{left:647.600000pt;}
.xe9_c00326{left:649.466667pt;}
.xb6_c00326{left:651.066667pt;}
.x11_c00326{left:652.400000pt;}
.x136_c00326{left:654.400000pt;}
.x131_c00326{left:655.866667pt;}
.xe0_c00326{left:657.466667pt;}
.xa9_c00326{left:659.200000pt;}
.x84_c00326{left:660.133333pt;}
.x99_c00326{left:663.200000pt;}
.x1f_c00326{left:668.000000pt;}
.x7c_c00326{left:670.533333pt;}
.x137_c00326{left:671.733333pt;}
.x65_c00326{left:672.666667pt;}
.x58_c00326{left:674.800000pt;}
.x36_c00326{left:676.800000pt;}
.x120_c00326{left:682.666667pt;}
.xf0_c00326{left:684.000000pt;}
.x134_c00326{left:684.933333pt;}
.x9a_c00326{left:685.866667pt;}
.xc7_c00326{left:688.666667pt;}
.x59_c00326{left:690.133333pt;}
.x102_c00326{left:691.066667pt;}
.x37_c00326{left:692.133333pt;}
.x85_c00326{left:693.733333pt;}
.x47_c00326{left:697.066667pt;}
.xd5_c00326{left:699.200000pt;}
.x10c_c00326{left:700.800000pt;}
.xa3_c00326{left:702.800000pt;}
.x71_c00326{left:704.666667pt;}
.x128_c00326{left:705.600000pt;}
.xc8_c00326{left:706.933333pt;}
.xaa_c00326{left:709.466667pt;}
.xb7_c00326{left:712.800000pt;}
.x8e_c00326{left:714.533333pt;}
.xab_c00326{left:721.600000pt;}
.x38_c00326{left:722.800000pt;}
}





/* 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_c00327 {
    display:none;
  }
  .loading-indicator_c00327.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00327 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_c00327 { 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_c00327" -> "#page-container .classname_c00327")
 */
.pf_c00327 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00327 { /* 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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00327 { /* 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_c00327 { /* 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_c00327 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00327 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00327 {overflow:visible;}
  }
}
.c_c00327 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00327 { /* 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_c00327:after { /* webkit #35443 */
  content: '';
}
.t_c00327:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00327 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 */
}
.__c00327 { /* 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_c00327 { /* info for Javascript */
  display:none;
}
.l_c00327 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00327 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00327 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00327: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_c00327 {
    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_c00327.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00327.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_c00327 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00327{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.000000;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;}
.md_c00327{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma_c00327{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m8_c00327{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me_c00327{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb_c00327{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00327{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00327{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00327{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00327{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m1_c00327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6_c00327{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m7_c00327{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00327{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m5_c00327{transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346000,0.000000,0.000000,0.250000,0,0);}
.m0_c00327{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00327{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.v0_c00327{vertical-align:0.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{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__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:0.000000px;}
.fc0_c00327{color:transparent;}
.fs3_c00327{font-size:24.000000px;}
.fs2_c00327{font-size:36.000000px;}
.fs1_c00327{font-size:42.000000px;}
.fs0_c00327{font-size:54.000000px;}
.y0_c00327{bottom:0.000000px;}
.y5_c00327{bottom:37.050000px;}
.y4_c00327{bottom:611.700000px;}
.y3_c00327{bottom:667.800000px;}
.y2_c00327{bottom:682.200000px;}
.y1_c00327{bottom:697.650000px;}
.h5_c00327{height:24.000000px;}
.h4_c00327{height:36.000000px;}
.h3_c00327{height:42.000000px;}
.h2_c00327{height:54.000000px;}
.h0_c00327{height:1166.759949px;}
.h1_c00327{height:1167.000000px;}
.w1_c00327{width:913.500000px;}
.w0_c00327{width:913.679993px;}
.x0_c00327{left:0.000000px;}
.x5_c00327{left:79.200000px;}
.x1_c00327{left:110.550000px;}
.x2_c00327{left:124.650000px;}
.x3_c00327{left:138.000000px;}
.x6_c00327{left:151.500000px;}
.x4_c00327{left:165.750000px;}
.x7_c00327{left:789.150000px;}
.x8_c00327{left:794.250000px;}
.x9_c00327{left:801.750000px;}
.xa_c00327{left:807.450000px;}
.xb_c00327{left:817.950000px;}
.xc_c00327{left:820.050000px;}
.xe_c00327{left:822.600000px;}
.xf_c00327{left:840.300000px;}
.xd_c00327{left:842.700000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
.fs3_c00327{font-size:21.333333pt;}
.fs2_c00327{font-size:32.000000pt;}
.fs1_c00327{font-size:37.333333pt;}
.fs0_c00327{font-size:48.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y5_c00327{bottom:32.933333pt;}
.y4_c00327{bottom:543.733333pt;}
.y3_c00327{bottom:593.600000pt;}
.y2_c00327{bottom:606.400000pt;}
.y1_c00327{bottom:620.133333pt;}
.h5_c00327{height:21.333333pt;}
.h4_c00327{height:32.000000pt;}
.h3_c00327{height:37.333333pt;}
.h2_c00327{height:48.000000pt;}
.h0_c00327{height:1037.119955pt;}
.h1_c00327{height:1037.333333pt;}
.w1_c00327{width:812.000000pt;}
.w0_c00327{width:812.159993pt;}
.x0_c00327{left:0.000000pt;}
.x5_c00327{left:70.400000pt;}
.x1_c00327{left:98.266667pt;}
.x2_c00327{left:110.800000pt;}
.x3_c00327{left:122.666667pt;}
.x6_c00327{left:134.666667pt;}
.x4_c00327{left:147.333333pt;}
.x7_c00327{left:701.466667pt;}
.x8_c00327{left:706.000000pt;}
.x9_c00327{left:712.666667pt;}
.xa_c00327{left:717.733333pt;}
.xb_c00327{left:727.066667pt;}
.xc_c00327{left:728.933333pt;}
.xe_c00327{left:731.200000pt;}
.xf_c00327{left:746.933333pt;}
.xd_c00327{left:749.066667pt;}
}





/* 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_c00328 {
    display:none;
  }
  .loading-indicator_c00328.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00328 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_c00328 { 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_c00328" -> "#page-container .classname_c00328")
 */
.pf_c00328 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00328 { /* 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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00328 { /* 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_c00328 { /* 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_c00328 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00328 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00328 {overflow:visible;}
  }
}
.c_c00328 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00328 { /* 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_c00328:after { /* webkit #35443 */
  content: '';
}
.t_c00328:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00328 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 */
}
.__c00328 { /* 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_c00328 { /* info for Javascript */
  display:none;
}
.l_c00328 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00328 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00328 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00328: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_c00328 {
    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_c00328.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00328.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_c00328 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00328{font-family:sans-serif;visibility:hidden;}
.sc__c00328{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
}
.y0_c00328{bottom:0.000000px;}
.h0_c00328{height:1166.759949px;}
.h1_c00328{height:1167.000000px;}
.w1_c00328{width:913.500000px;}
.w0_c00328{width:913.679993px;}
.x0_c00328{left:0.000000px;}
@media print{
.y0_c00328{bottom:0.000000pt;}
.h0_c00328{height:1037.119955pt;}
.h1_c00328{height:1037.333333pt;}
.w1_c00328{width:812.000000pt;}
.w0_c00328{width:812.159993pt;}
.x0_c00328{left:0.000000pt;}
}





/* 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_c00329 {
    display:none;
  }
  .loading-indicator_c00329.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00329 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_c00329 { 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_c00329" -> "#page-container .classname_c00329")
 */
.pf_c00329 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00329 { /* 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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00329 { /* 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_c00329 { /* 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_c00329 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00329 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00329 {overflow:visible;}
  }
}
.c_c00329 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00329 { /* 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_c00329:after { /* webkit #35443 */
  content: '';
}
.t_c00329:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00329 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 */
}
.__c00329 { /* 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_c00329 { /* info for Javascript */
  display:none;
}
.l_c00329 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00329 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00329 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00329: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_c00329 {
    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_c00329.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00329.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_c00329 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00329{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.000000;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;}
.ma0_c00329{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00329{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m94_c00329{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m50_c00329{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00329{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m64_c00329{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m14_c00329{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m54_c00329{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m13_c00329{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m67_c00329{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m62_c00329{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m92_c00329{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00329{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m89_c00329{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m34_c00329{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m78_c00329{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00329{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m93_c00329{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m56_c00329{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5_c00329{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00329{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m97_c00329{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00329{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00329{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m18_c00329{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00329{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00329{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m28_c00329{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m51_c00329{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m65_c00329{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m84_c00329{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00329{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00329{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00329{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma_c00329{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mab_c00329{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m96_c00329{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m40_c00329{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb_c00329{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00329{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m9_c00329{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m73_c00329{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00329{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m88_c00329{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m69_c00329{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m57_c00329{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m23_c00329{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00329{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m16_c00329{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00329{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00329{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00329{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00329{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m17_c00329{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00329{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m63_c00329{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00329{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00329{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m8_c00329{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m90_c00329{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m44_c00329{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00329{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me_c00329{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00329{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00329{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00329{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m26_c00329{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11_c00329{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m55_c00329{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00329{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m95_c00329{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m37_c00329{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00329{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2_c00329{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00329{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m38_c00329{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m24_c00329{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m80_c00329{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m52_c00329{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m81_c00329{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00329{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m36_c00329{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3_c00329{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m70_c00329{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00329{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00329{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00329{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m32_c00329{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m22_c00329{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m12_c00329{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00329{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m66_c00329{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m87_c00329{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m76_c00329{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7_c00329{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m27_c00329{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m77_c00329{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m20_c00329{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m79_c00329{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m99_c00329{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00329{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00329{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m42_c00329{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4_c00329{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00329{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m59_c00329{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m85_c00329{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m82_c00329{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00329{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mc_c00329{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00329{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00329{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00329{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m43_c00329{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00329{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m60_c00329{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m19_c00329{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m30_c00329{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.md_c00329{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m21_c00329{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m45_c00329{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00329{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00329{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00329{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m48_c00329{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00329{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m49_c00329{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00329{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00329{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00329{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m53_c00329{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00329{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m10_c00329{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m86_c00329{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m33_c00329{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m75_c00329{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m71_c00329{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00329{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m15_c00329{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00329{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m68_c00329{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.maa_c00329{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00329{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00329{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00329{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m83_c00329{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m6_c00329{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m58_c00329{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m41_c00329{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00329{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00329{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00329{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m74_c00329{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.mf_c00329{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m25_c00329{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00329{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m98_c00329{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m61_c00329{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1_c00329{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00329{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00329{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m0_c00329{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00329{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00329{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m72_c00329{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m47_c00329{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m31_c00329{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00329{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00329{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m35_c00329{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m46_c00329{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m91_c00329{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{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__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00329{word-spacing:-5.294118px;}
.wsb_c00329{word-spacing:-4.945770px;}
.ws2_c00329{word-spacing:-0.724638px;}
.wsd_c00329{word-spacing:0.000000px;}
.ws1_c00329{word-spacing:3.164557px;}
.ws6_c00329{word-spacing:3.658537px;}
.ws9_c00329{word-spacing:5.138889px;}
.wsa_c00329{word-spacing:6.805556px;}
.ws0_c00329{word-spacing:7.500000px;}
.ws7_c00329{word-spacing:8.055556px;}
.wsc_c00329{word-spacing:8.333333px;}
.ws5_c00329{word-spacing:8.472222px;}
.ws4_c00329{word-spacing:9.722222px;}
.ws3_c00329{word-spacing:13.636364px;}
._0_c00329{width:26.764706px;}
.fc0_c00329{color:transparent;}
.fs0_c00329{font-size:60.000000px;}
.y0_c00329{bottom:0.000000px;}
.y2c_c00329{bottom:154.200000px;}
.y2b_c00329{bottom:174.300000px;}
.y2a_c00329{bottom:194.100000px;}
.y29_c00329{bottom:213.900000px;}
.y28_c00329{bottom:233.850000px;}
.y27_c00329{bottom:253.950000px;}
.y26_c00329{bottom:274.050000px;}
.y25_c00329{bottom:293.850000px;}
.y24_c00329{bottom:313.950000px;}
.y23_c00329{bottom:333.750000px;}
.y22_c00329{bottom:353.550000px;}
.y21_c00329{bottom:373.350000px;}
.y20_c00329{bottom:393.150000px;}
.y1f_c00329{bottom:412.950000px;}
.y1e_c00329{bottom:442.200000px;}
.y1d_c00329{bottom:462.000000px;}
.y1c_c00329{bottom:482.100000px;}
.y1b_c00329{bottom:502.200000px;}
.y1a_c00329{bottom:522.150000px;}
.y19_c00329{bottom:541.950000px;}
.y18_c00329{bottom:561.750000px;}
.y17_c00329{bottom:581.550000px;}
.y16_c00329{bottom:601.650000px;}
.y15_c00329{bottom:621.450000px;}
.y14_c00329{bottom:641.550000px;}
.y13_c00329{bottom:660.900000px;}
.y12_c00329{bottom:681.450000px;}
.y11_c00329{bottom:701.550000px;}
.y10_c00329{bottom:721.050000px;}
.yf_c00329{bottom:741.600000px;}
.ye_c00329{bottom:761.400000px;}
.yd_c00329{bottom:781.200000px;}
.yc_c00329{bottom:801.300000px;}
.yb_c00329{bottom:821.100000px;}
.ya_c00329{bottom:840.900000px;}
.y9_c00329{bottom:869.850000px;}
.y8_c00329{bottom:889.950000px;}
.y7_c00329{bottom:909.900000px;}
.y6_c00329{bottom:930.000000px;}
.y5_c00329{bottom:950.100000px;}
.y4_c00329{bottom:969.900000px;}
.y3_c00329{bottom:990.000000px;}
.y2_c00329{bottom:1009.800000px;}
.y1_c00329{bottom:1047.600000px;}
.h2_c00329{height:60.000000px;}
.h0_c00329{height:1166.759949px;}
.h1_c00329{height:1167.000000px;}
.w1_c00329{width:913.500000px;}
.w0_c00329{width:913.679993px;}
.x0_c00329{left:0.000000px;}
.x107_c00329{left:102.000000px;}
.x6b_c00329{left:103.050000px;}
.x3_c00329{left:104.100000px;}
.xf1_c00329{left:121.050000px;}
.x3a_c00329{left:122.100000px;}
.x45_c00329{left:123.600000px;}
.x103_c00329{left:125.250000px;}
.xb2_c00329{left:126.450000px;}
.x76_c00329{left:128.850000px;}
.xc4_c00329{left:130.050000px;}
.xd3_c00329{left:131.250000px;}
.xf5_c00329{left:133.500000px;}
.x4f_c00329{left:134.700000px;}
.xeb_c00329{left:136.650000px;}
.xdb_c00329{left:137.700000px;}
.x59_c00329{left:139.500000px;}
.x14_c00329{left:140.550000px;}
.xbf_c00329{left:142.650000px;}
.x4_c00329{left:145.500000px;}
.xfd_c00329{left:148.050000px;}
.x46_c00329{left:153.150000px;}
.x11e_c00329{left:155.250000px;}
.x98_c00329{left:156.600000px;}
.x11b_c00329{left:157.650000px;}
.x9f_c00329{left:159.300000px;}
.x5a_c00329{left:160.350000px;}
.x2e_c00329{left:161.400000px;}
.xb6_c00329{left:164.100000px;}
.xec_c00329{left:165.150000px;}
.x8f_c00329{left:166.650000px;}
.x10d_c00329{left:168.000000px;}
.x6c_c00329{left:169.950000px;}
.x15_c00329{left:171.900000px;}
.x5_c00329{left:174.000000px;}
.x114_c00329{left:175.500000px;}
.xc5_c00329{left:178.650000px;}
.x3b_c00329{left:180.000000px;}
.xfe_c00329{left:181.500000px;}
.xb3_c00329{left:183.750000px;}
.x108_c00329{left:184.800000px;}
.x104_c00329{left:185.850000px;}
.x84_c00329{left:186.900000px;}
.x5b_c00329{left:188.400000px;}
.xa4_c00329{left:191.100000px;}
.x24_c00329{left:192.300000px;}
.x47_c00329{left:196.050000px;}
.xc0_c00329{left:198.750000px;}
.x50_c00329{left:200.550000px;}
.xe1_c00329{left:204.150000px;}
.x10e_c00329{left:206.850000px;}
.x90_c00329{left:208.800000px;}
.x5d_c00329{left:210.900000px;}
.xe6_c00329{left:212.700000px;}
.x6_c00329{left:215.100000px;}
.xdc_c00329{left:216.300000px;}
.x48_c00329{left:218.400000px;}
.x6d_c00329{left:222.150000px;}
.x51_c00329{left:223.950000px;}
.xd4_c00329{left:225.600000px;}
.xab_c00329{left:227.550000px;}
.x25_c00329{left:229.050000px;}
.x5c_c00329{left:230.550000px;}
.x7_c00329{left:232.800000px;}
.x77_c00329{left:236.100000px;}
.x6e_c00329{left:237.600000px;}
.xac_c00329{left:239.100000px;}
.x2f_c00329{left:241.350000px;}
.xc6_c00329{left:244.500000px;}
.x3c_c00329{left:245.550000px;}
.x49_c00329{left:247.200000px;}
.xc1_c00329{left:248.400000px;}
.x52_c00329{left:249.900000px;}
.x115_c00329{left:251.850000px;}
.x5e_c00329{left:254.850000px;}
.x11c_c00329{left:258.450000px;}
.x91_c00329{left:259.500000px;}
.xb4_c00329{left:261.600000px;}
.x30_c00329{left:262.650000px;}
.x78_c00329{left:268.800000px;}
.x125_c00329{left:269.850000px;}
.x8_c00329{left:272.700000px;}
.xa5_c00329{left:273.900000px;}
.x5f_c00329{left:275.700000px;}
.xe2_c00329{left:278.250000px;}
.xf2_c00329{left:282.150000px;}
.xdd_c00329{left:284.250000px;}
.x6f_c00329{left:285.450000px;}
.x16_c00329{left:286.500000px;}
.x85_c00329{left:288.000000px;}
.x121_c00329{left:290.100000px;}
.xce_c00329{left:291.450000px;}
.x31_c00329{left:292.500000px;}
.xa6_c00329{left:293.700000px;}
.x3d_c00329{left:295.950000px;}
.xf3_c00329{left:300.150000px;}
.x26_c00329{left:301.800000px;}
.x4a_c00329{left:303.300000px;}
.x60_c00329{left:304.500000px;}
.x126_c00329{left:306.150000px;}
.x17_c00329{left:307.350000px;}
.x70_c00329{left:308.550000px;}
.x79_c00329{left:310.950000px;}
.x86_c00329{left:315.300000px;}
.xf6_c00329{left:317.400000px;}
.x4b_c00329{left:323.100000px;}
.x116_c00329{left:324.900000px;}
.x119_c00329{left:325.950000px;}
.x9_c00329{left:327.000000px;}
.xb5_c00329{left:328.500000px;}
.x18_c00329{left:330.000000px;}
.x61_c00329{left:332.550000px;}
.x71_c00329{left:334.500000px;}
.x109_c00329{left:336.000000px;}
.x127_c00329{left:339.600000px;}
.xa_c00329{left:341.400000px;}
.xf9_c00329{left:344.250000px;}
.x27_c00329{left:345.300000px;}
.x92_c00329{left:346.950000px;}
.xad_c00329{left:349.350000px;}
.x32_c00329{left:351.150000px;}
.xde_c00329{left:353.400000px;}
.xbc_c00329{left:357.000000px;}
.x19_c00329{left:358.800000px;}
.x53_c00329{left:360.150000px;}
.x3e_c00329{left:362.550000px;}
.xff_c00329{left:363.600000px;}
.x87_c00329{left:366.000000px;}
.xdf_c00329{left:369.600000px;}
.xcf_c00329{left:371.700000px;}
.xa7_c00329{left:377.550000px;}
.x1a_c00329{left:380.100000px;}
.x62_c00329{left:381.600000px;}
.x28_c00329{left:383.400000px;}
.xc7_c00329{left:385.050000px;}
.x88_c00329{left:386.100000px;}
.xfa_c00329{left:387.150000px;}
.x33_c00329{left:389.700000px;}
.x99_c00329{left:391.350000px;}
.x10a_c00329{left:394.200000px;}
.x1_c00329{left:396.750000px;}
.x4c_c00329{left:400.500000px;}
.x100_c00329{left:402.150000px;}
.xf4_c00329{left:404.400000px;}
.x7a_c00329{left:405.600000px;}
.x122_c00329{left:407.100000px;}
.x1b_c00329{left:410.700000px;}
.x72_c00329{left:412.200000px;}
.x93_c00329{left:413.250000px;}
.x3f_c00329{left:415.800000px;}
.xb_c00329{left:417.750000px;}
.xe0_c00329{left:419.700000px;}
.xf7_c00329{left:422.100000px;}
.x7b_c00329{left:425.100000px;}
.x128_c00329{left:426.600000px;}
.xd5_c00329{left:428.700000px;}
.xbd_c00329{left:429.750000px;}
.xb7_c00329{left:431.400000px;}
.xae_c00329{left:434.250000px;}
.xc_c00329{left:437.550000px;}
.x63_c00329{left:440.250000px;}
.x7c_c00329{left:441.600000px;}
.xc8_c00329{left:443.400000px;}
.x29_c00329{left:447.000000px;}
.xd6_c00329{left:450.000000px;}
.x40_c00329{left:451.500000px;}
.xa0_c00329{left:453.150000px;}
.xd0_c00329{left:455.250000px;}
.x9a_c00329{left:456.900000px;}
.x54_c00329{left:459.150000px;}
.xaf_c00329{left:460.950000px;}
.x89_c00329{left:463.500000px;}
.x101_c00329{left:465.450000px;}
.x7d_c00329{left:468.300000px;}
.x2a_c00329{left:470.400000px;}
.x129_c00329{left:473.400000px;}
.xd_c00329{left:474.600000px;}
.x1c_c00329{left:480.600000px;}
.xed_c00329{left:481.650000px;}
.xa1_c00329{left:482.700000px;}
.xbe_c00329{left:484.800000px;}
.x4d_c00329{left:489.300000px;}
.xa8_c00329{left:491.250000px;}
.x8a_c00329{left:494.850000px;}
.x102_c00329{left:496.350000px;}
.x73_c00329{left:498.000000px;}
.xb8_c00329{left:501.900000px;}
.x64_c00329{left:504.000000px;}
.xc9_c00329{left:508.500000px;}
.xe7_c00329{left:510.150000px;}
.x1d_c00329{left:512.700000px;}
.x74_c00329{left:514.200000px;}
.x7e_c00329{left:515.850000px;}
.xe3_c00329{left:517.800000px;}
.xfb_c00329{left:520.350000px;}
.xb9_c00329{left:522.000000px;}
.x4e_c00329{left:525.300000px;}
.x2b_c00329{left:526.500000px;}
.xa9_c00329{left:528.300000px;}
.x105_c00329{left:531.600000px;}
.x94_c00329{left:533.100000px;}
.x8b_c00329{left:535.950000px;}
.xe8_c00329{left:538.650000px;}
.xe_c00329{left:544.050000px;}
.x41_c00329{left:546.600000px;}
.x10f_c00329{left:547.650000px;}
.xba_c00329{left:550.800000px;}
.x34_c00329{left:553.800000px;}
.x11a_c00329{left:555.000000px;}
.x10b_c00329{left:556.200000px;}
.x123_c00329{left:558.000000px;}
.x65_c00329{left:559.500000px;}
.x9b_c00329{left:564.900000px;}
.x55_c00329{left:566.100000px;}
.xb0_c00329{left:567.600000px;}
.x1e_c00329{left:569.250000px;}
.x2c_c00329{left:570.750000px;}
.x11d_c00329{left:573.150000px;}
.x106_c00329{left:578.400000px;}
.xf8_c00329{left:580.200000px;}
.x7f_c00329{left:581.700000px;}
.x124_c00329{left:583.200000px;}
.xf_c00329{left:586.500000px;}
.x110_c00329{left:588.300000px;}
.x1f_c00329{left:590.550000px;}
.x42_c00329{left:593.400000px;}
.xd7_c00329{left:598.650000px;}
.xa2_c00329{left:599.700000px;}
.x35_c00329{left:601.650000px;}
.x12b_c00329{left:603.300000px;}
.x75_c00329{left:604.500000px;}
.xc2_c00329{left:605.550000px;}
.x56_c00329{left:606.750000px;}
.xee_c00329{left:607.800000px;}
.xca_c00329{left:609.000000px;}
.x10c_c00329{left:610.500000px;}
.x80_c00329{left:612.000000px;}
.x95_c00329{left:613.800000px;}
.xaa_c00329{left:615.900000px;}
.x66_c00329{left:617.400000px;}
.xd1_c00329{left:618.600000px;}
.x20_c00329{left:622.200000px;}
.x8c_c00329{left:626.700000px;}
.x10_c00329{left:627.900000px;}
.x36_c00329{left:631.500000px;}
.x96_c00329{left:635.100000px;}
.xd8_c00329{left:638.250000px;}
.xcb_c00329{left:640.650000px;}
.x67_c00329{left:642.600000px;}
.x11_c00329{left:645.900000px;}
.x57_c00329{left:648.450000px;}
.x81_c00329{left:650.100000px;}
.x9c_c00329{left:652.350000px;}
.xbb_c00329{left:653.400000px;}
.x8d_c00329{left:654.450000px;}
.xd9_c00329{left:657.000000px;}
.xd2_c00329{left:661.050000px;}
.xe4_c00329{left:663.600000px;}
.x43_c00329{left:666.150000px;}
.x111_c00329{left:667.950000px;}
.x37_c00329{left:669.300000px;}
.xe9_c00329{left:671.850000px;}
.xcc_c00329{left:675.600000px;}
.x82_c00329{left:677.100000px;}
.x97_c00329{left:680.400000px;}
.x117_c00329{left:682.950000px;}
.x68_c00329{left:685.800000px;}
.x21_c00329{left:689.100000px;}
.x12_c00329{left:690.600000px;}
.xef_c00329{left:692.100000px;}
.x9d_c00329{left:693.450000px;}
.x44_c00329{left:695.700000px;}
.x38_c00329{left:697.800000px;}
.xc3_c00329{left:699.900000px;}
.x8e_c00329{left:701.250000px;}
.xea_c00329{left:702.450000px;}
.x12a_c00329{left:704.250000px;}
.xe5_c00329{left:705.300000px;}
.x112_c00329{left:708.600000px;}
.x22_c00329{left:709.650000px;}
.x11f_c00329{left:713.250000px;}
.x2d_c00329{left:717.300000px;}
.x58_c00329{left:718.350000px;}
.xcd_c00329{left:724.200000px;}
.xf0_c00329{left:726.300000px;}
.xda_c00329{left:727.500000px;}
.x69_c00329{left:728.700000px;}
.x9e_c00329{left:730.950000px;}
.xfc_c00329{left:733.800000px;}
.x118_c00329{left:735.600000px;}
.x39_c00329{left:737.700000px;}
.xb1_c00329{left:740.250000px;}
.x120_c00329{left:742.350000px;}
.x2_c00329{left:744.900000px;}
.x13_c00329{left:746.400000px;}
.x83_c00329{left:747.900000px;}
.x6a_c00329{left:750.000000px;}
.xa3_c00329{left:757.350000px;}
.x113_c00329{left:760.800000px;}
.x23_c00329{left:764.700000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws8_c00329{word-spacing:-4.705882pt;}
.wsb_c00329{word-spacing:-4.396240pt;}
.ws2_c00329{word-spacing:-0.644122pt;}
.wsd_c00329{word-spacing:0.000000pt;}
.ws1_c00329{word-spacing:2.812940pt;}
.ws6_c00329{word-spacing:3.252033pt;}
.ws9_c00329{word-spacing:4.567901pt;}
.wsa_c00329{word-spacing:6.049383pt;}
.ws0_c00329{word-spacing:6.666667pt;}
.ws7_c00329{word-spacing:7.160494pt;}
.wsc_c00329{word-spacing:7.407407pt;}
.ws5_c00329{word-spacing:7.530864pt;}
.ws4_c00329{word-spacing:8.641975pt;}
.ws3_c00329{word-spacing:12.121212pt;}
._0_c00329{width:23.790850pt;}
.fs0_c00329{font-size:53.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y2c_c00329{bottom:137.066667pt;}
.y2b_c00329{bottom:154.933333pt;}
.y2a_c00329{bottom:172.533333pt;}
.y29_c00329{bottom:190.133333pt;}
.y28_c00329{bottom:207.866667pt;}
.y27_c00329{bottom:225.733333pt;}
.y26_c00329{bottom:243.600000pt;}
.y25_c00329{bottom:261.200000pt;}
.y24_c00329{bottom:279.066667pt;}
.y23_c00329{bottom:296.666667pt;}
.y22_c00329{bottom:314.266667pt;}
.y21_c00329{bottom:331.866667pt;}
.y20_c00329{bottom:349.466667pt;}
.y1f_c00329{bottom:367.066667pt;}
.y1e_c00329{bottom:393.066667pt;}
.y1d_c00329{bottom:410.666667pt;}
.y1c_c00329{bottom:428.533333pt;}
.y1b_c00329{bottom:446.400000pt;}
.y1a_c00329{bottom:464.133333pt;}
.y19_c00329{bottom:481.733333pt;}
.y18_c00329{bottom:499.333333pt;}
.y17_c00329{bottom:516.933333pt;}
.y16_c00329{bottom:534.800000pt;}
.y15_c00329{bottom:552.400000pt;}
.y14_c00329{bottom:570.266667pt;}
.y13_c00329{bottom:587.466667pt;}
.y12_c00329{bottom:605.733333pt;}
.y11_c00329{bottom:623.600000pt;}
.y10_c00329{bottom:640.933333pt;}
.yf_c00329{bottom:659.200000pt;}
.ye_c00329{bottom:676.800000pt;}
.yd_c00329{bottom:694.400000pt;}
.yc_c00329{bottom:712.266667pt;}
.yb_c00329{bottom:729.866667pt;}
.ya_c00329{bottom:747.466667pt;}
.y9_c00329{bottom:773.200000pt;}
.y8_c00329{bottom:791.066667pt;}
.y7_c00329{bottom:808.800000pt;}
.y6_c00329{bottom:826.666667pt;}
.y5_c00329{bottom:844.533333pt;}
.y4_c00329{bottom:862.133333pt;}
.y3_c00329{bottom:880.000000pt;}
.y2_c00329{bottom:897.600000pt;}
.y1_c00329{bottom:931.200000pt;}
.h2_c00329{height:53.333333pt;}
.h0_c00329{height:1037.119955pt;}
.h1_c00329{height:1037.333333pt;}
.w1_c00329{width:812.000000pt;}
.w0_c00329{width:812.159993pt;}
.x0_c00329{left:0.000000pt;}
.x107_c00329{left:90.666667pt;}
.x6b_c00329{left:91.600000pt;}
.x3_c00329{left:92.533333pt;}
.xf1_c00329{left:107.600000pt;}
.x3a_c00329{left:108.533333pt;}
.x45_c00329{left:109.866667pt;}
.x103_c00329{left:111.333333pt;}
.xb2_c00329{left:112.400000pt;}
.x76_c00329{left:114.533333pt;}
.xc4_c00329{left:115.600000pt;}
.xd3_c00329{left:116.666667pt;}
.xf5_c00329{left:118.666667pt;}
.x4f_c00329{left:119.733333pt;}
.xeb_c00329{left:121.466667pt;}
.xdb_c00329{left:122.400000pt;}
.x59_c00329{left:124.000000pt;}
.x14_c00329{left:124.933333pt;}
.xbf_c00329{left:126.800000pt;}
.x4_c00329{left:129.333333pt;}
.xfd_c00329{left:131.600000pt;}
.x46_c00329{left:136.133333pt;}
.x11e_c00329{left:138.000000pt;}
.x98_c00329{left:139.200000pt;}
.x11b_c00329{left:140.133333pt;}
.x9f_c00329{left:141.600000pt;}
.x5a_c00329{left:142.533333pt;}
.x2e_c00329{left:143.466667pt;}
.xb6_c00329{left:145.866667pt;}
.xec_c00329{left:146.800000pt;}
.x8f_c00329{left:148.133333pt;}
.x10d_c00329{left:149.333333pt;}
.x6c_c00329{left:151.066667pt;}
.x15_c00329{left:152.800000pt;}
.x5_c00329{left:154.666667pt;}
.x114_c00329{left:156.000000pt;}
.xc5_c00329{left:158.800000pt;}
.x3b_c00329{left:160.000000pt;}
.xfe_c00329{left:161.333333pt;}
.xb3_c00329{left:163.333333pt;}
.x108_c00329{left:164.266667pt;}
.x104_c00329{left:165.200000pt;}
.x84_c00329{left:166.133333pt;}
.x5b_c00329{left:167.466667pt;}
.xa4_c00329{left:169.866667pt;}
.x24_c00329{left:170.933333pt;}
.x47_c00329{left:174.266667pt;}
.xc0_c00329{left:176.666667pt;}
.x50_c00329{left:178.266667pt;}
.xe1_c00329{left:181.466667pt;}
.x10e_c00329{left:183.866667pt;}
.x90_c00329{left:185.600000pt;}
.x5d_c00329{left:187.466667pt;}
.xe6_c00329{left:189.066667pt;}
.x6_c00329{left:191.200000pt;}
.xdc_c00329{left:192.266667pt;}
.x48_c00329{left:194.133333pt;}
.x6d_c00329{left:197.466667pt;}
.x51_c00329{left:199.066667pt;}
.xd4_c00329{left:200.533333pt;}
.xab_c00329{left:202.266667pt;}
.x25_c00329{left:203.600000pt;}
.x5c_c00329{left:204.933333pt;}
.x7_c00329{left:206.933333pt;}
.x77_c00329{left:209.866667pt;}
.x6e_c00329{left:211.200000pt;}
.xac_c00329{left:212.533333pt;}
.x2f_c00329{left:214.533333pt;}
.xc6_c00329{left:217.333333pt;}
.x3c_c00329{left:218.266667pt;}
.x49_c00329{left:219.733333pt;}
.xc1_c00329{left:220.800000pt;}
.x52_c00329{left:222.133333pt;}
.x115_c00329{left:223.866667pt;}
.x5e_c00329{left:226.533333pt;}
.x11c_c00329{left:229.733333pt;}
.x91_c00329{left:230.666667pt;}
.xb4_c00329{left:232.533333pt;}
.x30_c00329{left:233.466667pt;}
.x78_c00329{left:238.933333pt;}
.x125_c00329{left:239.866667pt;}
.x8_c00329{left:242.400000pt;}
.xa5_c00329{left:243.466667pt;}
.x5f_c00329{left:245.066667pt;}
.xe2_c00329{left:247.333333pt;}
.xf2_c00329{left:250.800000pt;}
.xdd_c00329{left:252.666667pt;}
.x6f_c00329{left:253.733333pt;}
.x16_c00329{left:254.666667pt;}
.x85_c00329{left:256.000000pt;}
.x121_c00329{left:257.866667pt;}
.xce_c00329{left:259.066667pt;}
.x31_c00329{left:260.000000pt;}
.xa6_c00329{left:261.066667pt;}
.x3d_c00329{left:263.066667pt;}
.xf3_c00329{left:266.800000pt;}
.x26_c00329{left:268.266667pt;}
.x4a_c00329{left:269.600000pt;}
.x60_c00329{left:270.666667pt;}
.x126_c00329{left:272.133333pt;}
.x17_c00329{left:273.200000pt;}
.x70_c00329{left:274.266667pt;}
.x79_c00329{left:276.400000pt;}
.x86_c00329{left:280.266667pt;}
.xf6_c00329{left:282.133333pt;}
.x4b_c00329{left:287.200000pt;}
.x116_c00329{left:288.800000pt;}
.x119_c00329{left:289.733333pt;}
.x9_c00329{left:290.666667pt;}
.xb5_c00329{left:292.000000pt;}
.x18_c00329{left:293.333333pt;}
.x61_c00329{left:295.600000pt;}
.x71_c00329{left:297.333333pt;}
.x109_c00329{left:298.666667pt;}
.x127_c00329{left:301.866667pt;}
.xa_c00329{left:303.466667pt;}
.xf9_c00329{left:306.000000pt;}
.x27_c00329{left:306.933333pt;}
.x92_c00329{left:308.400000pt;}
.xad_c00329{left:310.533333pt;}
.x32_c00329{left:312.133333pt;}
.xde_c00329{left:314.133333pt;}
.xbc_c00329{left:317.333333pt;}
.x19_c00329{left:318.933333pt;}
.x53_c00329{left:320.133333pt;}
.x3e_c00329{left:322.266667pt;}
.xff_c00329{left:323.200000pt;}
.x87_c00329{left:325.333333pt;}
.xdf_c00329{left:328.533333pt;}
.xcf_c00329{left:330.400000pt;}
.xa7_c00329{left:335.600000pt;}
.x1a_c00329{left:337.866667pt;}
.x62_c00329{left:339.200000pt;}
.x28_c00329{left:340.800000pt;}
.xc7_c00329{left:342.266667pt;}
.x88_c00329{left:343.200000pt;}
.xfa_c00329{left:344.133333pt;}
.x33_c00329{left:346.400000pt;}
.x99_c00329{left:347.866667pt;}
.x10a_c00329{left:350.400000pt;}
.x1_c00329{left:352.666667pt;}
.x4c_c00329{left:356.000000pt;}
.x100_c00329{left:357.466667pt;}
.xf4_c00329{left:359.466667pt;}
.x7a_c00329{left:360.533333pt;}
.x122_c00329{left:361.866667pt;}
.x1b_c00329{left:365.066667pt;}
.x72_c00329{left:366.400000pt;}
.x93_c00329{left:367.333333pt;}
.x3f_c00329{left:369.600000pt;}
.xb_c00329{left:371.333333pt;}
.xe0_c00329{left:373.066667pt;}
.xf7_c00329{left:375.200000pt;}
.x7b_c00329{left:377.866667pt;}
.x128_c00329{left:379.200000pt;}
.xd5_c00329{left:381.066667pt;}
.xbd_c00329{left:382.000000pt;}
.xb7_c00329{left:383.466667pt;}
.xae_c00329{left:386.000000pt;}
.xc_c00329{left:388.933333pt;}
.x63_c00329{left:391.333333pt;}
.x7c_c00329{left:392.533333pt;}
.xc8_c00329{left:394.133333pt;}
.x29_c00329{left:397.333333pt;}
.xd6_c00329{left:400.000000pt;}
.x40_c00329{left:401.333333pt;}
.xa0_c00329{left:402.800000pt;}
.xd0_c00329{left:404.666667pt;}
.x9a_c00329{left:406.133333pt;}
.x54_c00329{left:408.133333pt;}
.xaf_c00329{left:409.733333pt;}
.x89_c00329{left:412.000000pt;}
.x101_c00329{left:413.733333pt;}
.x7d_c00329{left:416.266667pt;}
.x2a_c00329{left:418.133333pt;}
.x129_c00329{left:420.800000pt;}
.xd_c00329{left:421.866667pt;}
.x1c_c00329{left:427.200000pt;}
.xed_c00329{left:428.133333pt;}
.xa1_c00329{left:429.066667pt;}
.xbe_c00329{left:430.933333pt;}
.x4d_c00329{left:434.933333pt;}
.xa8_c00329{left:436.666667pt;}
.x8a_c00329{left:439.866667pt;}
.x102_c00329{left:441.200000pt;}
.x73_c00329{left:442.666667pt;}
.xb8_c00329{left:446.133333pt;}
.x64_c00329{left:448.000000pt;}
.xc9_c00329{left:452.000000pt;}
.xe7_c00329{left:453.466667pt;}
.x1d_c00329{left:455.733333pt;}
.x74_c00329{left:457.066667pt;}
.x7e_c00329{left:458.533333pt;}
.xe3_c00329{left:460.266667pt;}
.xfb_c00329{left:462.533333pt;}
.xb9_c00329{left:464.000000pt;}
.x4e_c00329{left:466.933333pt;}
.x2b_c00329{left:468.000000pt;}
.xa9_c00329{left:469.600000pt;}
.x105_c00329{left:472.533333pt;}
.x94_c00329{left:473.866667pt;}
.x8b_c00329{left:476.400000pt;}
.xe8_c00329{left:478.800000pt;}
.xe_c00329{left:483.600000pt;}
.x41_c00329{left:485.866667pt;}
.x10f_c00329{left:486.800000pt;}
.xba_c00329{left:489.600000pt;}
.x34_c00329{left:492.266667pt;}
.x11a_c00329{left:493.333333pt;}
.x10b_c00329{left:494.400000pt;}
.x123_c00329{left:496.000000pt;}
.x65_c00329{left:497.333333pt;}
.x9b_c00329{left:502.133333pt;}
.x55_c00329{left:503.200000pt;}
.xb0_c00329{left:504.533333pt;}
.x1e_c00329{left:506.000000pt;}
.x2c_c00329{left:507.333333pt;}
.x11d_c00329{left:509.466667pt;}
.x106_c00329{left:514.133333pt;}
.xf8_c00329{left:515.733333pt;}
.x7f_c00329{left:517.066667pt;}
.x124_c00329{left:518.400000pt;}
.xf_c00329{left:521.333333pt;}
.x110_c00329{left:522.933333pt;}
.x1f_c00329{left:524.933333pt;}
.x42_c00329{left:527.466667pt;}
.xd7_c00329{left:532.133333pt;}
.xa2_c00329{left:533.066667pt;}
.x35_c00329{left:534.800000pt;}
.x12b_c00329{left:536.266667pt;}
.x75_c00329{left:537.333333pt;}
.xc2_c00329{left:538.266667pt;}
.x56_c00329{left:539.333333pt;}
.xee_c00329{left:540.266667pt;}
.xca_c00329{left:541.333333pt;}
.x10c_c00329{left:542.666667pt;}
.x80_c00329{left:544.000000pt;}
.x95_c00329{left:545.600000pt;}
.xaa_c00329{left:547.466667pt;}
.x66_c00329{left:548.800000pt;}
.xd1_c00329{left:549.866667pt;}
.x20_c00329{left:553.066667pt;}
.x8c_c00329{left:557.066667pt;}
.x10_c00329{left:558.133333pt;}
.x36_c00329{left:561.333333pt;}
.x96_c00329{left:564.533333pt;}
.xd8_c00329{left:567.333333pt;}
.xcb_c00329{left:569.466667pt;}
.x67_c00329{left:571.200000pt;}
.x11_c00329{left:574.133333pt;}
.x57_c00329{left:576.400000pt;}
.x81_c00329{left:577.866667pt;}
.x9c_c00329{left:579.866667pt;}
.xbb_c00329{left:580.800000pt;}
.x8d_c00329{left:581.733333pt;}
.xd9_c00329{left:584.000000pt;}
.xd2_c00329{left:587.600000pt;}
.xe4_c00329{left:589.866667pt;}
.x43_c00329{left:592.133333pt;}
.x111_c00329{left:593.733333pt;}
.x37_c00329{left:594.933333pt;}
.xe9_c00329{left:597.200000pt;}
.xcc_c00329{left:600.533333pt;}
.x82_c00329{left:601.866667pt;}
.x97_c00329{left:604.800000pt;}
.x117_c00329{left:607.066667pt;}
.x68_c00329{left:609.600000pt;}
.x21_c00329{left:612.533333pt;}
.x12_c00329{left:613.866667pt;}
.xef_c00329{left:615.200000pt;}
.x9d_c00329{left:616.400000pt;}
.x44_c00329{left:618.400000pt;}
.x38_c00329{left:620.266667pt;}
.xc3_c00329{left:622.133333pt;}
.x8e_c00329{left:623.333333pt;}
.xea_c00329{left:624.400000pt;}
.x12a_c00329{left:626.000000pt;}
.xe5_c00329{left:626.933333pt;}
.x112_c00329{left:629.866667pt;}
.x22_c00329{left:630.800000pt;}
.x11f_c00329{left:634.000000pt;}
.x2d_c00329{left:637.600000pt;}
.x58_c00329{left:638.533333pt;}
.xcd_c00329{left:643.733333pt;}
.xf0_c00329{left:645.600000pt;}
.xda_c00329{left:646.666667pt;}
.x69_c00329{left:647.733333pt;}
.x9e_c00329{left:649.733333pt;}
.xfc_c00329{left:652.266667pt;}
.x118_c00329{left:653.866667pt;}
.x39_c00329{left:655.733333pt;}
.xb1_c00329{left:658.000000pt;}
.x120_c00329{left:659.866667pt;}
.x2_c00329{left:662.133333pt;}
.x13_c00329{left:663.466667pt;}
.x83_c00329{left:664.800000pt;}
.x6a_c00329{left:666.666667pt;}
.xa3_c00329{left:673.200000pt;}
.x113_c00329{left:676.266667pt;}
.x23_c00329{left:679.733333pt;}
}





/* 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_c00330 {
    display:none;
  }
  .loading-indicator_c00330.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00330 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_c00330 { 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_c00330" -> "#page-container .classname_c00330")
 */
.pf_c00330 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00330 { /* 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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00330 { /* 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_c00330 { /* 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_c00330 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00330 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00330 {overflow:visible;}
  }
}
.c_c00330 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00330 { /* 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_c00330:after { /* webkit #35443 */
  content: '';
}
.t_c00330:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00330 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 */
}
.__c00330 { /* 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_c00330 { /* info for Javascript */
  display:none;
}
.l_c00330 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00330 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00330 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00330: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_c00330 {
    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_c00330.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00330.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_c00330 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00330{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00330;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.000000;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;}
.ma2_c00330{transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036000,0.000000,0.000000,0.250000,0,0);}
.m13_c00330{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc_c00330{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m67_c00330{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00330{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00330{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m8_c00330{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00330{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m16_c00330{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5_c00330{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m85_c00330{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00330{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m55_c00330{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m83_c00330{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00330{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00330{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb_c00330{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00330{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00330{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00330{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00330{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00330{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00330{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00330{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m88_c00330{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mf_c00330{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m49_c00330{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00330{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m97_c00330{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m32_c00330{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00330{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00330{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m25_c00330{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m36_c00330{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m21_c00330{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m73_c00330{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m62_c00330{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00330{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00330{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00330{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00330{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m26_c00330{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00330{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00330{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m92_c00330{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00330{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m74_c00330{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00330{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m82_c00330{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m66_c00330{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m76_c00330{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00330{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2_c00330{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m53_c00330{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m10_c00330{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00330{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00330{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m11_c00330{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m30_c00330{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m80_c00330{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m91_c00330{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m46_c00330{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00330{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00330{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3_c00330{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m77_c00330{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m22_c00330{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m60_c00330{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m59_c00330{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m40_c00330{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00330{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m51_c00330{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m69_c00330{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m24_c00330{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c00330{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m61_c00330{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14_c00330{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma_c00330{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00330{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m48_c00330{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m29_c00330{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00330{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18_c00330{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00330{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m54_c00330{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m63_c00330{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m95_c00330{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00330{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00330{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m56_c00330{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00330{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m58_c00330{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m90_c00330{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m19_c00330{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00330{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m43_c00330{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00330{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m28_c00330{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00330{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00330{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00330{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00330{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m70_c00330{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00330{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00330{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m71_c00330{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m84_c00330{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00330{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m12_c00330{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.me_c00330{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m65_c00330{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00330{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m15_c00330{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00330{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m89_c00330{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m31_c00330{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00330{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00330{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m33_c00330{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00330{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m98_c00330{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m87_c00330{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m99_c00330{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m34_c00330{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00330{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00330{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00330{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.maa_c00330{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00330{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00330{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m27_c00330{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00330{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m47_c00330{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);}
.m23_c00330{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00330{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00330{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00330{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00330{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00330{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m39_c00330{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m38_c00330{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00330{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m20_c00330{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m52_c00330{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00330{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m81_c00330{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m64_c00330{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00330{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m94_c00330{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00330{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m86_c00330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m41_c00330{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00330{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m6_c00330{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00330{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m75_c00330{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7_c00330{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00330{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mab_c00330{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00330{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00330{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00330{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00330{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m57_c00330{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m78_c00330{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00330{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m96_c00330{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m68_c00330{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m35_c00330{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00330{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00330{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m72_c00330{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00330{vertical-align:0.000000px;}
.ls0_c00330{letter-spacing:0.000000px;}
.sc__c00330{text-shadow:none;}
.sc0_c00330{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__c00330{-webkit-text-stroke:0px transparent;}
.sc0_c00330{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00330{word-spacing:-3.055556px;}
.wsa_c00330{word-spacing:0.000000px;}
.ws6_c00330{word-spacing:0.535714px;}
.ws5_c00330{word-spacing:3.055556px;}
.ws1_c00330{word-spacing:5.223214px;}
.ws4_c00330{word-spacing:8.571429px;}
.ws8_c00330{word-spacing:8.611111px;}
.ws9_c00330{word-spacing:18.333333px;}
.ws0_c00330{word-spacing:19.259259px;}
.ws3_c00330{word-spacing:21.111111px;}
.ws2_c00330{word-spacing:26.805556px;}
._0_c00330{width:33.616071px;}
.fc0_c00330{color:transparent;}
.fs0_c00330{font-size:60.000000px;}
.y0_c00330{bottom:0.000000px;}
.y2d_c00330{bottom:153.150000px;}
.y2c_c00330{bottom:174.000000px;}
.y2b_c00330{bottom:194.100000px;}
.y2a_c00330{bottom:213.900000px;}
.y29_c00330{bottom:234.000000px;}
.y28_c00330{bottom:254.100000px;}
.y27_c00330{bottom:273.900000px;}
.y26_c00330{bottom:294.000000px;}
.y25_c00330{bottom:314.100000px;}
.y24_c00330{bottom:333.900000px;}
.y23_c00330{bottom:354.000000px;}
.y22_c00330{bottom:374.100000px;}
.y21_c00330{bottom:393.600000px;}
.y20_c00330{bottom:413.700000px;}
.y1f_c00330{bottom:433.800000px;}
.y1e_c00330{bottom:454.050000px;}
.y1d_c00330{bottom:473.850000px;}
.y1c_c00330{bottom:493.950000px;}
.y1b_c00330{bottom:513.750000px;}
.y1a_c00330{bottom:533.850000px;}
.y19_c00330{bottom:553.650000px;}
.y18_c00330{bottom:573.450000px;}
.y17_c00330{bottom:593.550000px;}
.y16_c00330{bottom:613.650000px;}
.y15_c00330{bottom:633.450000px;}
.y14_c00330{bottom:653.550000px;}
.y13_c00330{bottom:673.350000px;}
.y12_c00330{bottom:693.450000px;}
.y11_c00330{bottom:713.250000px;}
.y10_c00330{bottom:733.350000px;}
.yf_c00330{bottom:753.150000px;}
.ye_c00330{bottom:772.950000px;}
.yd_c00330{bottom:793.050000px;}
.yc_c00330{bottom:812.850000px;}
.yb_c00330{bottom:832.650000px;}
.ya_c00330{bottom:853.050000px;}
.y9_c00330{bottom:873.150000px;}
.y8_c00330{bottom:892.950000px;}
.y7_c00330{bottom:912.750000px;}
.y6_c00330{bottom:932.850000px;}
.y5_c00330{bottom:952.650000px;}
.y4_c00330{bottom:972.750000px;}
.y3_c00330{bottom:992.550000px;}
.y2_c00330{bottom:1012.650000px;}
.y1_c00330{bottom:1051.200000px;}
.h2_c00330{height:60.000000px;}
.h0_c00330{height:1166.759949px;}
.h1_c00330{height:1167.000000px;}
.w1_c00330{width:913.500000px;}
.w0_c00330{width:913.679993px;}
.x0_c00330{left:0.000000px;}
.xa0_c00330{left:137.400000px;}
.x3_c00330{left:138.600000px;}
.x1_c00330{left:139.650000px;}
.x10f_c00330{left:152.700000px;}
.x11d_c00330{left:153.900000px;}
.x97_c00330{left:157.800000px;}
.x116_c00330{left:159.150000px;}
.xe8_c00330{left:161.550000px;}
.xaa_c00330{left:165.600000px;}
.x2f_c00330{left:167.550000px;}
.x104_c00330{left:168.900000px;}
.x78_c00330{left:169.950000px;}
.x6f_c00330{left:171.150000px;}
.x59_c00330{left:172.200000px;}
.x13c_c00330{left:174.000000px;}
.x101_c00330{left:175.050000px;}
.x132_c00330{left:176.550000px;}
.xe3_c00330{left:177.750000px;}
.x122_c00330{left:180.150000px;}
.x49_c00330{left:181.650000px;}
.x137_c00330{left:184.200000px;}
.x70_c00330{left:185.850000px;}
.x109_c00330{left:188.250000px;}
.x64_c00330{left:189.900000px;}
.x3c_c00330{left:191.100000px;}
.x15_c00330{left:195.150000px;}
.xc1_c00330{left:196.350000px;}
.xcd_c00330{left:197.700000px;}
.x110_c00330{left:199.500000px;}
.x8c_c00330{left:201.750000px;}
.x30_c00330{left:203.850000px;}
.x4a_c00330{left:205.800000px;}
.x11e_c00330{left:208.950000px;}
.x24_c00330{left:210.900000px;}
.x102_c00330{left:212.100000px;}
.x12e_c00330{left:213.600000px;}
.x3d_c00330{left:214.800000px;}
.x12d_c00330{left:216.300000px;}
.xc8_c00330{left:218.700000px;}
.xee_c00330{left:219.750000px;}
.x4_c00330{left:221.100000px;}
.xe4_c00330{left:222.450000px;}
.x5a_c00330{left:224.700000px;}
.x65_c00330{left:226.650000px;}
.x13d_c00330{left:228.300000px;}
.x138_c00330{left:229.500000px;}
.x16_c00330{left:231.150000px;}
.x4b_c00330{left:235.350000px;}
.xd7_c00330{left:238.350000px;}
.x11f_c00330{left:239.550000px;}
.x5_c00330{left:240.900000px;}
.xb8_c00330{left:244.050000px;}
.x10a_c00330{left:247.650000px;}
.x31_c00330{left:250.350000px;}
.xfa_c00330{left:253.800000px;}
.x139_c00330{left:255.300000px;}
.x103_c00330{left:258.900000px;}
.x17_c00330{left:260.250000px;}
.x8d_c00330{left:261.900000px;}
.x3e_c00330{left:265.200000px;}
.x98_c00330{left:269.400000px;}
.xb9_c00330{left:272.100000px;}
.x123_c00330{left:273.300000px;}
.xe9_c00330{left:274.950000px;}
.x105_c00330{left:277.200000px;}
.x117_c00330{left:279.000000px;}
.x66_c00330{left:280.950000px;}
.x4c_c00330{left:283.950000px;}
.xce_c00330{left:285.900000px;}
.x32_c00330{left:289.200000px;}
.x25_c00330{left:290.850000px;}
.x81_c00330{left:292.500000px;}
.x10b_c00330{left:293.700000px;}
.xdf_c00330{left:296.850000px;}
.xb2_c00330{left:297.900000px;}
.x133_c00330{left:298.950000px;}
.xef_c00330{left:300.000000px;}
.xf5_c00330{left:305.700000px;}
.x99_c00330{left:307.200000px;}
.xab_c00330{left:312.150000px;}
.xc2_c00330{left:313.200000px;}
.x18_c00330{left:314.550000px;}
.x71_c00330{left:317.250000px;}
.x115_c00330{left:318.750000px;}
.x6_c00330{left:320.850000px;}
.x3f_c00330{left:322.800000px;}
.x4d_c00330{left:323.850000px;}
.xa1_c00330{left:326.400000px;}
.xf0_c00330{left:328.500000px;}
.xba_c00330{left:329.700000px;}
.x134_c00330{left:331.050000px;}
.xc3_c00330{left:334.800000px;}
.x124_c00330{left:335.850000px;}
.x67_c00330{left:337.500000px;}
.x8e_c00330{left:338.550000px;}
.x82_c00330{left:341.550000px;}
.x118_c00330{left:344.100000px;}
.x72_c00330{left:346.350000px;}
.x12f_c00330{left:347.550000px;}
.xbb_c00330{left:350.250000px;}
.x19_c00330{left:352.050000px;}
.xc4_c00330{left:353.850000px;}
.xfb_c00330{left:355.800000px;}
.x4e_c00330{left:357.300000px;}
.x40_c00330{left:358.800000px;}
.x79_c00330{left:362.100000px;}
.xcf_c00330{left:363.600000px;}
.x7_c00330{left:366.150000px;}
.x26_c00330{left:368.550000px;}
.x33_c00330{left:370.950000px;}
.xd8_c00330{left:372.600000px;}
.x125_c00330{left:373.950000px;}
.x83_c00330{left:376.500000px;}
.x5b_c00330{left:377.700000px;}
.xc9_c00330{left:379.650000px;}
.xa2_c00330{left:380.700000px;}
.x1a_c00330{left:386.550000px;}
.x106_c00330{left:388.050000px;}
.x41_c00330{left:390.900000px;}
.xea_c00330{left:392.850000px;}
.xa3_c00330{left:396.150000px;}
.x7a_c00330{left:398.100000px;}
.x8_c00330{left:399.300000px;}
.x4f_c00330{left:400.500000px;}
.x130_c00330{left:401.850000px;}
.xb3_c00330{left:402.900000px;}
.x84_c00330{left:405.300000px;}
.x1b_c00330{left:407.850000px;}
.x5c_c00330{left:410.400000px;}
.xe5_c00330{left:411.750000px;}
.x8f_c00330{left:414.150000px;}
.x126_c00330{left:415.650000px;}
.xac_c00330{left:417.000000px;}
.x13a_c00330{left:419.400000px;}
.x34_c00330{left:424.500000px;}
.x50_c00330{left:426.450000px;}
.x1c_c00330{left:428.400000px;}
.x13e_c00330{left:429.450000px;}
.xa4_c00330{left:430.650000px;}
.x7b_c00330{left:434.100000px;}
.x2_c00330{left:437.400000px;}
.xca_c00330{left:439.800000px;}
.xf6_c00330{left:441.000000px;}
.x73_c00330{left:442.050000px;}
.x85_c00330{left:443.850000px;}
.xbc_c00330{left:445.350000px;}
.xe6_c00330{left:447.000000px;}
.x107_c00330{left:448.200000px;}
.x35_c00330{left:450.000000px;}
.xd9_c00330{left:451.500000px;}
.x9a_c00330{left:452.850000px;}
.xd0_c00330{left:454.050000px;}
.x10c_c00330{left:455.700000px;}
.xeb_c00330{left:456.900000px;}
.x9_c00330{left:459.450000px;}
.x27_c00330{left:462.150000px;}
.x86_c00330{left:463.950000px;}
.x42_c00330{left:465.000000px;}
.x51_c00330{left:467.550000px;}
.xf7_c00330{left:469.050000px;}
.xb4_c00330{left:471.000000px;}
.xfe_c00330{left:472.200000px;}
.x1d_c00330{left:473.700000px;}
.x9b_c00330{left:475.500000px;}
.x5d_c00330{left:477.750000px;}
.xa_c00330{left:478.950000px;}
.x90_c00330{left:483.600000px;}
.x68_c00330{left:485.700000px;}
.x87_c00330{left:487.650000px;}
.x52_c00330{left:488.850000px;}
.x119_c00330{left:489.900000px;}
.x129_c00330{left:490.950000px;}
.xad_c00330{left:492.300000px;}
.xb_c00330{left:494.100000px;}
.xc5_c00330{left:495.750000px;}
.x1e_c00330{left:497.100000px;}
.xa5_c00330{left:498.600000px;}
.x36_c00330{left:499.650000px;}
.x43_c00330{left:501.000000px;}
.x88_c00330{left:502.350000px;}
.xe7_c00330{left:503.850000px;}
.x111_c00330{left:505.200000px;}
.x5e_c00330{left:506.250000px;}
.xcb_c00330{left:508.200000px;}
.xd1_c00330{left:509.850000px;}
.x7c_c00330{left:511.500000px;}
.x69_c00330{left:514.800000px;}
.x53_c00330{left:518.700000px;}
.xae_c00330{left:520.350000px;}
.x108_c00330{left:525.150000px;}
.xa6_c00330{left:527.400000px;}
.x28_c00330{left:531.300000px;}
.xec_c00330{left:533.850000px;}
.x5f_c00330{left:535.350000px;}
.x74_c00330{left:537.000000px;}
.xf1_c00330{left:538.350000px;}
.xe0_c00330{left:539.400000px;}
.x9c_c00330{left:542.700000px;}
.xbd_c00330{left:544.050000px;}
.x1f_c00330{left:549.000000px;}
.x6a_c00330{left:551.550000px;}
.xfc_c00330{left:552.900000px;}
.x29_c00330{left:554.400000px;}
.x37_c00330{left:555.750000px;}
.x75_c00330{left:557.550000px;}
.xc6_c00330{left:560.250000px;}
.xcc_c00330{left:562.950000px;}
.xd2_c00330{left:567.450000px;}
.x44_c00330{left:569.100000px;}
.x120_c00330{left:570.750000px;}
.x54_c00330{left:572.400000px;}
.xc_c00330{left:575.850000px;}
.x112_c00330{left:577.200000px;}
.x6b_c00330{left:578.550000px;}
.x127_c00330{left:581.550000px;}
.xd3_c00330{left:582.600000px;}
.x89_c00330{left:583.650000px;}
.x91_c00330{left:586.200000px;}
.x76_c00330{left:588.150000px;}
.x2a_c00330{left:590.100000px;}
.x38_c00330{left:592.050000px;}
.x6c_c00330{left:593.700000px;}
.x20_c00330{left:595.050000px;}
.x9d_c00330{left:596.700000px;}
.xaf_c00330{left:599.250000px;}
.x113_c00330{left:600.600000px;}
.xd_c00330{left:602.100000px;}
.x55_c00330{left:603.750000px;}
.x12a_c00330{left:605.100000px;}
.xed_c00330{left:606.150000px;}
.x92_c00330{left:609.600000px;}
.x135_c00330{left:613.800000px;}
.xe_c00330{left:616.500000px;}
.xb0_c00330{left:619.350000px;}
.x39_c00330{left:620.550000px;}
.xda_c00330{left:621.900000px;}
.x9e_c00330{left:624.000000px;}
.xbe_c00330{left:626.100000px;}
.x2b_c00330{left:627.150000px;}
.x45_c00330{left:630.000000px;}
.xff_c00330{left:633.450000px;}
.xf_c00330{left:635.550000px;}
.xb5_c00330{left:636.900000px;}
.x93_c00330{left:639.150000px;}
.x7d_c00330{left:640.650000px;}
.x12b_c00330{left:642.900000px;}
.xdb_c00330{left:644.550000px;}
.x6d_c00330{left:647.400000px;}
.x11a_c00330{left:650.400000px;}
.xd4_c00330{left:652.350000px;}
.x2c_c00330{left:655.200000px;}
.x60_c00330{left:657.450000px;}
.x56_c00330{left:659.250000px;}
.xf8_c00330{left:663.150000px;}
.x21_c00330{left:664.500000px;}
.x8a_c00330{left:667.200000px;}
.x10d_c00330{left:668.850000px;}
.xb6_c00330{left:671.400000px;}
.x13f_c00330{left:672.750000px;}
.x94_c00330{left:674.100000px;}
.x77_c00330{left:676.350000px;}
.xbf_c00330{left:677.550000px;}
.x7e_c00330{left:678.750000px;}
.xf2_c00330{left:681.600000px;}
.x46_c00330{left:685.050000px;}
.x10_c00330{left:686.250000px;}
.x22_c00330{left:688.200000px;}
.xdc_c00330{left:692.400000px;}
.x7f_c00330{left:693.450000px;}
.xc0_c00330{left:695.550000px;}
.x114_c00330{left:697.200000px;}
.xf3_c00330{left:698.850000px;}
.x2d_c00330{left:699.900000px;}
.xa7_c00330{left:702.300000px;}
.xd5_c00330{left:704.250000px;}
.xdd_c00330{left:708.900000px;}
.x136_c00330{left:709.950000px;}
.x3a_c00330{left:711.300000px;}
.x13b_c00330{left:713.550000px;}
.x61_c00330{left:715.800000px;}
.x11_c00330{left:716.850000px;}
.x10e_c00330{left:720.000000px;}
.xa8_c00330{left:721.350000px;}
.x95_c00330{left:725.550000px;}
.x100_c00330{left:728.400000px;}
.x57_c00330{left:730.500000px;}
.x2e_c00330{left:732.300000px;}
.xb7_c00330{left:733.650000px;}
.x62_c00330{left:735.900000px;}
.x12_c00330{left:737.700000px;}
.xd6_c00330{left:739.500000px;}
.x140_c00330{left:740.550000px;}
.xc7_c00330{left:742.050000px;}
.x6e_c00330{left:744.000000px;}
.x3b_c00330{left:745.500000px;}
.x11b_c00330{left:747.600000px;}
.x23_c00330{left:749.400000px;}
.x12c_c00330{left:752.850000px;}
.x80_c00330{left:754.350000px;}
.x47_c00330{left:756.300000px;}
.xf9_c00330{left:757.500000px;}
.xe1_c00330{left:758.700000px;}
.x58_c00330{left:760.050000px;}
.xf4_c00330{left:762.450000px;}
.x13_c00330{left:763.950000px;}
.x131_c00330{left:765.450000px;}
.xfd_c00330{left:766.800000px;}
.xb1_c00330{left:768.900000px;}
.x11c_c00330{left:771.300000px;}
.x96_c00330{left:774.900000px;}
.xde_c00330{left:777.600000px;}
.x121_c00330{left:780.000000px;}
.x8b_c00330{left:782.400000px;}
.x63_c00330{left:785.250000px;}
.xa9_c00330{left:792.600000px;}
.x9f_c00330{left:793.650000px;}
.x48_c00330{left:794.850000px;}
.xe2_c00330{left:799.050000px;}
.x128_c00330{left:802.200000px;}
.x14_c00330{left:803.850000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws7_c00330{word-spacing:-2.716049pt;}
.wsa_c00330{word-spacing:0.000000pt;}
.ws6_c00330{word-spacing:0.476190pt;}
.ws5_c00330{word-spacing:2.716049pt;}
.ws1_c00330{word-spacing:4.642857pt;}
.ws4_c00330{word-spacing:7.619048pt;}
.ws8_c00330{word-spacing:7.654321pt;}
.ws9_c00330{word-spacing:16.296296pt;}
.ws0_c00330{word-spacing:17.119342pt;}
.ws3_c00330{word-spacing:18.765432pt;}
.ws2_c00330{word-spacing:23.827160pt;}
._0_c00330{width:29.880952pt;}
.fs0_c00330{font-size:53.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y2d_c00330{bottom:136.133333pt;}
.y2c_c00330{bottom:154.666667pt;}
.y2b_c00330{bottom:172.533333pt;}
.y2a_c00330{bottom:190.133333pt;}
.y29_c00330{bottom:208.000000pt;}
.y28_c00330{bottom:225.866667pt;}
.y27_c00330{bottom:243.466667pt;}
.y26_c00330{bottom:261.333333pt;}
.y25_c00330{bottom:279.200000pt;}
.y24_c00330{bottom:296.800000pt;}
.y23_c00330{bottom:314.666667pt;}
.y22_c00330{bottom:332.533333pt;}
.y21_c00330{bottom:349.866667pt;}
.y20_c00330{bottom:367.733333pt;}
.y1f_c00330{bottom:385.600000pt;}
.y1e_c00330{bottom:403.600000pt;}
.y1d_c00330{bottom:421.200000pt;}
.y1c_c00330{bottom:439.066667pt;}
.y1b_c00330{bottom:456.666667pt;}
.y1a_c00330{bottom:474.533333pt;}
.y19_c00330{bottom:492.133333pt;}
.y18_c00330{bottom:509.733333pt;}
.y17_c00330{bottom:527.600000pt;}
.y16_c00330{bottom:545.466667pt;}
.y15_c00330{bottom:563.066667pt;}
.y14_c00330{bottom:580.933333pt;}
.y13_c00330{bottom:598.533333pt;}
.y12_c00330{bottom:616.400000pt;}
.y11_c00330{bottom:634.000000pt;}
.y10_c00330{bottom:651.866667pt;}
.yf_c00330{bottom:669.466667pt;}
.ye_c00330{bottom:687.066667pt;}
.yd_c00330{bottom:704.933333pt;}
.yc_c00330{bottom:722.533333pt;}
.yb_c00330{bottom:740.133333pt;}
.ya_c00330{bottom:758.266667pt;}
.y9_c00330{bottom:776.133333pt;}
.y8_c00330{bottom:793.733333pt;}
.y7_c00330{bottom:811.333333pt;}
.y6_c00330{bottom:829.200000pt;}
.y5_c00330{bottom:846.800000pt;}
.y4_c00330{bottom:864.666667pt;}
.y3_c00330{bottom:882.266667pt;}
.y2_c00330{bottom:900.133333pt;}
.y1_c00330{bottom:934.400000pt;}
.h2_c00330{height:53.333333pt;}
.h0_c00330{height:1037.119955pt;}
.h1_c00330{height:1037.333333pt;}
.w1_c00330{width:812.000000pt;}
.w0_c00330{width:812.159993pt;}
.x0_c00330{left:0.000000pt;}
.xa0_c00330{left:122.133333pt;}
.x3_c00330{left:123.200000pt;}
.x1_c00330{left:124.133333pt;}
.x10f_c00330{left:135.733333pt;}
.x11d_c00330{left:136.800000pt;}
.x97_c00330{left:140.266667pt;}
.x116_c00330{left:141.466667pt;}
.xe8_c00330{left:143.600000pt;}
.xaa_c00330{left:147.200000pt;}
.x2f_c00330{left:148.933333pt;}
.x104_c00330{left:150.133333pt;}
.x78_c00330{left:151.066667pt;}
.x6f_c00330{left:152.133333pt;}
.x59_c00330{left:153.066667pt;}
.x13c_c00330{left:154.666667pt;}
.x101_c00330{left:155.600000pt;}
.x132_c00330{left:156.933333pt;}
.xe3_c00330{left:158.000000pt;}
.x122_c00330{left:160.133333pt;}
.x49_c00330{left:161.466667pt;}
.x137_c00330{left:163.733333pt;}
.x70_c00330{left:165.200000pt;}
.x109_c00330{left:167.333333pt;}
.x64_c00330{left:168.800000pt;}
.x3c_c00330{left:169.866667pt;}
.x15_c00330{left:173.466667pt;}
.xc1_c00330{left:174.533333pt;}
.xcd_c00330{left:175.733333pt;}
.x110_c00330{left:177.333333pt;}
.x8c_c00330{left:179.333333pt;}
.x30_c00330{left:181.200000pt;}
.x4a_c00330{left:182.933333pt;}
.x11e_c00330{left:185.733333pt;}
.x24_c00330{left:187.466667pt;}
.x102_c00330{left:188.533333pt;}
.x12e_c00330{left:189.866667pt;}
.x3d_c00330{left:190.933333pt;}
.x12d_c00330{left:192.266667pt;}
.xc8_c00330{left:194.400000pt;}
.xee_c00330{left:195.333333pt;}
.x4_c00330{left:196.533333pt;}
.xe4_c00330{left:197.733333pt;}
.x5a_c00330{left:199.733333pt;}
.x65_c00330{left:201.466667pt;}
.x13d_c00330{left:202.933333pt;}
.x138_c00330{left:204.000000pt;}
.x16_c00330{left:205.466667pt;}
.x4b_c00330{left:209.200000pt;}
.xd7_c00330{left:211.866667pt;}
.x11f_c00330{left:212.933333pt;}
.x5_c00330{left:214.133333pt;}
.xb8_c00330{left:216.933333pt;}
.x10a_c00330{left:220.133333pt;}
.x31_c00330{left:222.533333pt;}
.xfa_c00330{left:225.600000pt;}
.x139_c00330{left:226.933333pt;}
.x103_c00330{left:230.133333pt;}
.x17_c00330{left:231.333333pt;}
.x8d_c00330{left:232.800000pt;}
.x3e_c00330{left:235.733333pt;}
.x98_c00330{left:239.466667pt;}
.xb9_c00330{left:241.866667pt;}
.x123_c00330{left:242.933333pt;}
.xe9_c00330{left:244.400000pt;}
.x105_c00330{left:246.400000pt;}
.x117_c00330{left:248.000000pt;}
.x66_c00330{left:249.733333pt;}
.x4c_c00330{left:252.400000pt;}
.xce_c00330{left:254.133333pt;}
.x32_c00330{left:257.066667pt;}
.x25_c00330{left:258.533333pt;}
.x81_c00330{left:260.000000pt;}
.x10b_c00330{left:261.066667pt;}
.xdf_c00330{left:263.866667pt;}
.xb2_c00330{left:264.800000pt;}
.x133_c00330{left:265.733333pt;}
.xef_c00330{left:266.666667pt;}
.xf5_c00330{left:271.733333pt;}
.x99_c00330{left:273.066667pt;}
.xab_c00330{left:277.466667pt;}
.xc2_c00330{left:278.400000pt;}
.x18_c00330{left:279.600000pt;}
.x71_c00330{left:282.000000pt;}
.x115_c00330{left:283.333333pt;}
.x6_c00330{left:285.200000pt;}
.x3f_c00330{left:286.933333pt;}
.x4d_c00330{left:287.866667pt;}
.xa1_c00330{left:290.133333pt;}
.xf0_c00330{left:292.000000pt;}
.xba_c00330{left:293.066667pt;}
.x134_c00330{left:294.266667pt;}
.xc3_c00330{left:297.600000pt;}
.x124_c00330{left:298.533333pt;}
.x67_c00330{left:300.000000pt;}
.x8e_c00330{left:300.933333pt;}
.x82_c00330{left:303.600000pt;}
.x118_c00330{left:305.866667pt;}
.x72_c00330{left:307.866667pt;}
.x12f_c00330{left:308.933333pt;}
.xbb_c00330{left:311.333333pt;}
.x19_c00330{left:312.933333pt;}
.xc4_c00330{left:314.533333pt;}
.xfb_c00330{left:316.266667pt;}
.x4e_c00330{left:317.600000pt;}
.x40_c00330{left:318.933333pt;}
.x79_c00330{left:321.866667pt;}
.xcf_c00330{left:323.200000pt;}
.x7_c00330{left:325.466667pt;}
.x26_c00330{left:327.600000pt;}
.x33_c00330{left:329.733333pt;}
.xd8_c00330{left:331.200000pt;}
.x125_c00330{left:332.400000pt;}
.x83_c00330{left:334.666667pt;}
.x5b_c00330{left:335.733333pt;}
.xc9_c00330{left:337.466667pt;}
.xa2_c00330{left:338.400000pt;}
.x1a_c00330{left:343.600000pt;}
.x106_c00330{left:344.933333pt;}
.x41_c00330{left:347.466667pt;}
.xea_c00330{left:349.200000pt;}
.xa3_c00330{left:352.133333pt;}
.x7a_c00330{left:353.866667pt;}
.x8_c00330{left:354.933333pt;}
.x4f_c00330{left:356.000000pt;}
.x130_c00330{left:357.200000pt;}
.xb3_c00330{left:358.133333pt;}
.x84_c00330{left:360.266667pt;}
.x1b_c00330{left:362.533333pt;}
.x5c_c00330{left:364.800000pt;}
.xe5_c00330{left:366.000000pt;}
.x8f_c00330{left:368.133333pt;}
.x126_c00330{left:369.466667pt;}
.xac_c00330{left:370.666667pt;}
.x13a_c00330{left:372.800000pt;}
.x34_c00330{left:377.333333pt;}
.x50_c00330{left:379.066667pt;}
.x1c_c00330{left:380.800000pt;}
.x13e_c00330{left:381.733333pt;}
.xa4_c00330{left:382.800000pt;}
.x7b_c00330{left:385.866667pt;}
.x2_c00330{left:388.800000pt;}
.xca_c00330{left:390.933333pt;}
.xf6_c00330{left:392.000000pt;}
.x73_c00330{left:392.933333pt;}
.x85_c00330{left:394.533333pt;}
.xbc_c00330{left:395.866667pt;}
.xe6_c00330{left:397.333333pt;}
.x107_c00330{left:398.400000pt;}
.x35_c00330{left:400.000000pt;}
.xd9_c00330{left:401.333333pt;}
.x9a_c00330{left:402.533333pt;}
.xd0_c00330{left:403.600000pt;}
.x10c_c00330{left:405.066667pt;}
.xeb_c00330{left:406.133333pt;}
.x9_c00330{left:408.400000pt;}
.x27_c00330{left:410.800000pt;}
.x86_c00330{left:412.400000pt;}
.x42_c00330{left:413.333333pt;}
.x51_c00330{left:415.600000pt;}
.xf7_c00330{left:416.933333pt;}
.xb4_c00330{left:418.666667pt;}
.xfe_c00330{left:419.733333pt;}
.x1d_c00330{left:421.066667pt;}
.x9b_c00330{left:422.666667pt;}
.x5d_c00330{left:424.666667pt;}
.xa_c00330{left:425.733333pt;}
.x90_c00330{left:429.866667pt;}
.x68_c00330{left:431.733333pt;}
.x87_c00330{left:433.466667pt;}
.x52_c00330{left:434.533333pt;}
.x119_c00330{left:435.466667pt;}
.x129_c00330{left:436.400000pt;}
.xad_c00330{left:437.600000pt;}
.xb_c00330{left:439.200000pt;}
.xc5_c00330{left:440.666667pt;}
.x1e_c00330{left:441.866667pt;}
.xa5_c00330{left:443.200000pt;}
.x36_c00330{left:444.133333pt;}
.x43_c00330{left:445.333333pt;}
.x88_c00330{left:446.533333pt;}
.xe7_c00330{left:447.866667pt;}
.x111_c00330{left:449.066667pt;}
.x5e_c00330{left:450.000000pt;}
.xcb_c00330{left:451.733333pt;}
.xd1_c00330{left:453.200000pt;}
.x7c_c00330{left:454.666667pt;}
.x69_c00330{left:457.600000pt;}
.x53_c00330{left:461.066667pt;}
.xae_c00330{left:462.533333pt;}
.x108_c00330{left:466.800000pt;}
.xa6_c00330{left:468.800000pt;}
.x28_c00330{left:472.266667pt;}
.xec_c00330{left:474.533333pt;}
.x5f_c00330{left:475.866667pt;}
.x74_c00330{left:477.333333pt;}
.xf1_c00330{left:478.533333pt;}
.xe0_c00330{left:479.466667pt;}
.x9c_c00330{left:482.400000pt;}
.xbd_c00330{left:483.600000pt;}
.x1f_c00330{left:488.000000pt;}
.x6a_c00330{left:490.266667pt;}
.xfc_c00330{left:491.466667pt;}
.x29_c00330{left:492.800000pt;}
.x37_c00330{left:494.000000pt;}
.x75_c00330{left:495.600000pt;}
.xc6_c00330{left:498.000000pt;}
.xcc_c00330{left:500.400000pt;}
.xd2_c00330{left:504.400000pt;}
.x44_c00330{left:505.866667pt;}
.x120_c00330{left:507.333333pt;}
.x54_c00330{left:508.800000pt;}
.xc_c00330{left:511.866667pt;}
.x112_c00330{left:513.066667pt;}
.x6b_c00330{left:514.266667pt;}
.x127_c00330{left:516.933333pt;}
.xd3_c00330{left:517.866667pt;}
.x89_c00330{left:518.800000pt;}
.x91_c00330{left:521.066667pt;}
.x76_c00330{left:522.800000pt;}
.x2a_c00330{left:524.533333pt;}
.x38_c00330{left:526.266667pt;}
.x6c_c00330{left:527.733333pt;}
.x20_c00330{left:528.933333pt;}
.x9d_c00330{left:530.400000pt;}
.xaf_c00330{left:532.666667pt;}
.x113_c00330{left:533.866667pt;}
.xd_c00330{left:535.200000pt;}
.x55_c00330{left:536.666667pt;}
.x12a_c00330{left:537.866667pt;}
.xed_c00330{left:538.800000pt;}
.x92_c00330{left:541.866667pt;}
.x135_c00330{left:545.600000pt;}
.xe_c00330{left:548.000000pt;}
.xb0_c00330{left:550.533333pt;}
.x39_c00330{left:551.600000pt;}
.xda_c00330{left:552.800000pt;}
.x9e_c00330{left:554.666667pt;}
.xbe_c00330{left:556.533333pt;}
.x2b_c00330{left:557.466667pt;}
.x45_c00330{left:560.000000pt;}
.xff_c00330{left:563.066667pt;}
.xf_c00330{left:564.933333pt;}
.xb5_c00330{left:566.133333pt;}
.x93_c00330{left:568.133333pt;}
.x7d_c00330{left:569.466667pt;}
.x12b_c00330{left:571.466667pt;}
.xdb_c00330{left:572.933333pt;}
.x6d_c00330{left:575.466667pt;}
.x11a_c00330{left:578.133333pt;}
.xd4_c00330{left:579.866667pt;}
.x2c_c00330{left:582.400000pt;}
.x60_c00330{left:584.400000pt;}
.x56_c00330{left:586.000000pt;}
.xf8_c00330{left:589.466667pt;}
.x21_c00330{left:590.666667pt;}
.x8a_c00330{left:593.066667pt;}
.x10d_c00330{left:594.533333pt;}
.xb6_c00330{left:596.800000pt;}
.x13f_c00330{left:598.000000pt;}
.x94_c00330{left:599.200000pt;}
.x77_c00330{left:601.200000pt;}
.xbf_c00330{left:602.266667pt;}
.x7e_c00330{left:603.333333pt;}
.xf2_c00330{left:605.866667pt;}
.x46_c00330{left:608.933333pt;}
.x10_c00330{left:610.000000pt;}
.x22_c00330{left:611.733333pt;}
.xdc_c00330{left:615.466667pt;}
.x7f_c00330{left:616.400000pt;}
.xc0_c00330{left:618.266667pt;}
.x114_c00330{left:619.733333pt;}
.xf3_c00330{left:621.200000pt;}
.x2d_c00330{left:622.133333pt;}
.xa7_c00330{left:624.266667pt;}
.xd5_c00330{left:626.000000pt;}
.xdd_c00330{left:630.133333pt;}
.x136_c00330{left:631.066667pt;}
.x3a_c00330{left:632.266667pt;}
.x13b_c00330{left:634.266667pt;}
.x61_c00330{left:636.266667pt;}
.x11_c00330{left:637.200000pt;}
.x10e_c00330{left:640.000000pt;}
.xa8_c00330{left:641.200000pt;}
.x95_c00330{left:644.933333pt;}
.x100_c00330{left:647.466667pt;}
.x57_c00330{left:649.333333pt;}
.x2e_c00330{left:650.933333pt;}
.xb7_c00330{left:652.133333pt;}
.x62_c00330{left:654.133333pt;}
.x12_c00330{left:655.733333pt;}
.xd6_c00330{left:657.333333pt;}
.x140_c00330{left:658.266667pt;}
.xc7_c00330{left:659.600000pt;}
.x6e_c00330{left:661.333333pt;}
.x3b_c00330{left:662.666667pt;}
.x11b_c00330{left:664.533333pt;}
.x23_c00330{left:666.133333pt;}
.x12c_c00330{left:669.200000pt;}
.x80_c00330{left:670.533333pt;}
.x47_c00330{left:672.266667pt;}
.xf9_c00330{left:673.333333pt;}
.xe1_c00330{left:674.400000pt;}
.x58_c00330{left:675.600000pt;}
.xf4_c00330{left:677.733333pt;}
.x13_c00330{left:679.066667pt;}
.x131_c00330{left:680.400000pt;}
.xfd_c00330{left:681.600000pt;}
.xb1_c00330{left:683.466667pt;}
.x11c_c00330{left:685.600000pt;}
.x96_c00330{left:688.800000pt;}
.xde_c00330{left:691.200000pt;}
.x121_c00330{left:693.333333pt;}
.x8b_c00330{left:695.466667pt;}
.x63_c00330{left:698.000000pt;}
.xa9_c00330{left:704.533333pt;}
.x9f_c00330{left:705.466667pt;}
.x48_c00330{left:706.533333pt;}
.xe2_c00330{left:710.266667pt;}
.x128_c00330{left:713.066667pt;}
.x14_c00330{left:714.533333pt;}
}





/* 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_c00331 {
    display:none;
  }
  .loading-indicator_c00331.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00331 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_c00331 { 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_c00331" -> "#page-container .classname_c00331")
 */
.pf_c00331 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00331 { /* 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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00331 { /* 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_c00331 { /* 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_c00331 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00331 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00331 {overflow:visible;}
  }
}
.c_c00331 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00331 { /* 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_c00331:after { /* webkit #35443 */
  content: '';
}
.t_c00331:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00331 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 */
}
.__c00331 { /* 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_c00331 { /* info for Javascript */
  display:none;
}
.l_c00331 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00331 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00331 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00331: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_c00331 {
    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_c00331.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00331.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_c00331 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.000000;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;}
.m73_c00331{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2_c00331{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m77_c00331{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m72_c00331{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00331{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00331{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m50_c00331{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00331{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m69_c00331{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00331{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m13_c00331{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00331{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m4_c00331{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00331{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m17_c00331{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00331{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00331{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m61_c00331{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00331{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00331{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00331{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m25_c00331{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00331{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m21_c00331{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m78_c00331{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m53_c00331{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00331{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m59_c00331{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3_c00331{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00331{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m18_c00331{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m89_c00331{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m97_c00331{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00331{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00331{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m71_c00331{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m68_c00331{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00331{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m67_c00331{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m94_c00331{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00331{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00331{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m54_c00331{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00331{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m31_c00331{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m98_c00331{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc_c00331{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md_c00331{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m76_c00331{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m24_c00331{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00331{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m19_c00331{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m38_c00331{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00331{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00331{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m99_c00331{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m12_c00331{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m39_c00331{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00331{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m23_c00331{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00331{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00331{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00331{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m90_c00331{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00331{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mf_c00331{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m91_c00331{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00331{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m65_c00331{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00331{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00331{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00331{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00331{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m34_c00331{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00331{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m47_c00331{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00331{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00331{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00331{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m10_c00331{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00331{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m64_c00331{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00331{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00331{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00331{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m35_c00331{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m22_c00331{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m70_c00331{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9_c00331{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00331{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m43_c00331{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m20_c00331{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m87_c00331{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m58_c00331{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m46_c00331{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00331{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m33_c00331{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m79_c00331{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00331{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00331{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m44_c00331{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m88_c00331{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m28_c00331{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00331{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m55_c00331{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00331{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m96_c00331{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m26_c00331{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00331{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00331{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15_c00331{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m48_c00331{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m16_c00331{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00331{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00331{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);}
.m83_c00331{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00331{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m30_c00331{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m36_c00331{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00331{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m80_c00331{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00331{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00331{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00331{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m11_c00331{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m95_c00331{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00331{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m75_c00331{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m57_c00331{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00331{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m27_c00331{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb_c00331{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m82_c00331{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00331{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m29_c00331{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00331{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00331{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00331{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m86_c00331{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m60_c00331{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00331{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m66_c00331{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00331{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m93_c00331{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00331{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m51_c00331{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00331{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m45_c00331{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m52_c00331{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m81_c00331{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m84_c00331{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00331{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls0_c00331{letter-spacing:0.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{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__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00331{word-spacing:0.000000px;}
.wsa_c00331{word-spacing:0.540541px;}
.ws3_c00331{word-spacing:2.073171px;}
.ws5_c00331{word-spacing:3.026316px;}
.ws0_c00331{word-spacing:3.658537px;}
.wsc_c00331{word-spacing:5.000000px;}
.ws4_c00331{word-spacing:8.263473px;}
.ws2_c00331{word-spacing:8.641975px;}
.ws1_c00331{word-spacing:11.052632px;}
.ws6_c00331{word-spacing:12.205882px;}
.ws8_c00331{word-spacing:13.194444px;}
.wsb_c00331{word-spacing:14.861111px;}
.ws7_c00331{word-spacing:15.882353px;}
.ws9_c00331{word-spacing:19.259259px;}
.fc0_c00331{color:transparent;}
.fs1_c00331{font-size:60.000000px;}
.fs0_c00331{font-size:66.000000px;}
.y0_c00331{bottom:0.000000px;}
.y2b_c00331{bottom:171.000000px;}
.y2a_c00331{bottom:211.800000px;}
.y29_c00331{bottom:231.600000px;}
.y28_c00331{bottom:251.400000px;}
.y27_c00331{bottom:271.200000px;}
.y26_c00331{bottom:291.000000px;}
.y25_c00331{bottom:311.100000px;}
.y24_c00331{bottom:331.200000px;}
.y23_c00331{bottom:351.000000px;}
.y22_c00331{bottom:370.800000px;}
.y21_c00331{bottom:390.900000px;}
.y20_c00331{bottom:410.400000px;}
.y1f_c00331{bottom:430.200000px;}
.y1e_c00331{bottom:450.000000px;}
.y1d_c00331{bottom:469.800000px;}
.y1c_c00331{bottom:489.600000px;}
.y1b_c00331{bottom:509.400000px;}
.y1a_c00331{bottom:529.650000px;}
.y19_c00331{bottom:549.750000px;}
.y18_c00331{bottom:569.250000px;}
.y17_c00331{bottom:589.350000px;}
.y16_c00331{bottom:609.450000px;}
.y15_c00331{bottom:629.400000px;}
.y14_c00331{bottom:649.200000px;}
.y13_c00331{bottom:669.300000px;}
.y12_c00331{bottom:689.400000px;}
.y11_c00331{bottom:709.200000px;}
.y10_c00331{bottom:729.000000px;}
.yf_c00331{bottom:748.950000px;}
.ye_c00331{bottom:768.750000px;}
.yd_c00331{bottom:788.550000px;}
.yc_c00331{bottom:808.650000px;}
.yb_c00331{bottom:828.150000px;}
.ya_c00331{bottom:848.250000px;}
.y9_c00331{bottom:868.050000px;}
.y8_c00331{bottom:888.150000px;}
.y7_c00331{bottom:908.250000px;}
.y6_c00331{bottom:928.050000px;}
.y5_c00331{bottom:947.850000px;}
.y4_c00331{bottom:967.650000px;}
.y3_c00331{bottom:987.600000px;}
.y2_c00331{bottom:1007.700000px;}
.y1_c00331{bottom:1046.100000px;}
.h3_c00331{height:60.000000px;}
.h2_c00331{height:66.000000px;}
.h0_c00331{height:1166.759949px;}
.h1_c00331{height:1167.000000px;}
.w1_c00331{width:913.500000px;}
.w0_c00331{width:913.679993px;}
.x0_c00331{left:0.000000px;}
.x15_c00331{left:104.850000px;}
.x97_c00331{left:106.050000px;}
.xf8_c00331{left:107.100000px;}
.x129_c00331{left:108.450000px;}
.xa6_c00331{left:124.650000px;}
.x4c_c00331{left:126.150000px;}
.x8b_c00331{left:129.450000px;}
.x11d_c00331{left:130.500000px;}
.x98_c00331{left:132.000000px;}
.x131_c00331{left:135.000000px;}
.x5_c00331{left:136.050000px;}
.xa0_c00331{left:137.100000px;}
.xb3_c00331{left:138.600000px;}
.x57_c00331{left:140.100000px;}
.x83_c00331{left:141.300000px;}
.x16_c00331{left:144.450000px;}
.x7b_c00331{left:148.200000px;}
.x12a_c00331{left:149.850000px;}
.xba_c00331{left:151.800000px;}
.x63_c00331{left:152.850000px;}
.x132_c00331{left:154.050000px;}
.x6_c00331{left:155.850000px;}
.x35_c00331{left:157.050000px;}
.xc9_c00331{left:158.400000px;}
.xa7_c00331{left:159.600000px;}
.xe5_c00331{left:162.600000px;}
.x7c_c00331{left:165.900000px;}
.x12e_c00331{left:169.500000px;}
.x58_c00331{left:172.800000px;}
.x111_c00331{left:174.300000px;}
.x116_c00331{left:176.850000px;}
.xd5_c00331{left:179.700000px;}
.x7d_c00331{left:182.400000px;}
.x26_c00331{left:184.050000px;}
.x36_c00331{left:186.150000px;}
.x3f_c00331{left:187.950000px;}
.x17_c00331{left:190.800000px;}
.xbb_c00331{left:192.450000px;}
.xc4_c00331{left:194.100000px;}
.x12b_c00331{left:195.150000px;}
.x59_c00331{left:196.950000px;}
.x10c_c00331{left:198.150000px;}
.x64_c00331{left:200.400000px;}
.x7_c00331{left:204.150000px;}
.x27_c00331{left:205.650000px;}
.xdd_c00331{left:208.200000px;}
.xd6_c00331{left:212.100000px;}
.x138_c00331{left:213.150000px;}
.x99_c00331{left:214.800000px;}
.x12c_c00331{left:217.500000px;}
.x7e_c00331{left:220.950000px;}
.xe6_c00331{left:223.050000px;}
.x10d_c00331{left:225.150000px;}
.x28_c00331{left:226.500000px;}
.x37_c00331{left:228.300000px;}
.xcb_c00331{left:229.650000px;}
.x8_c00331{left:231.450000px;}
.x8c_c00331{left:233.550000px;}
.xf4_c00331{left:235.050000px;}
.x4d_c00331{left:236.250000px;}
.xbc_c00331{left:237.750000px;}
.x65_c00331{left:239.250000px;}
.x11e_c00331{left:242.100000px;}
.xe7_c00331{left:243.900000px;}
.x18_c00331{left:245.100000px;}
.x13d_c00331{left:247.350000px;}
.x38_c00331{left:248.850000px;}
.x40_c00331{left:249.900000px;}
.xb4_c00331{left:254.100000px;}
.xf9_c00331{left:256.200000px;}
.xcc_c00331{left:258.450000px;}
.xa8_c00331{left:259.650000px;}
.x7f_c00331{left:261.300000px;}
.x9a_c00331{left:263.400000px;}
.x4e_c00331{left:265.350000px;}
.x133_c00331{left:266.850000px;}
.xbd_c00331{left:270.150000px;}
.xe8_c00331{left:273.750000px;}
.x139_c00331{left:274.800000px;}
.xca_c00331{left:276.150000px;}
.x29_c00331{left:277.200000px;}
.x125_c00331{left:278.700000px;}
.x72_c00331{left:279.750000px;}
.xb5_c00331{left:281.100000px;}
.xcd_c00331{left:282.150000px;}
.x5a_c00331{left:283.350000px;}
.x19_c00331{left:284.400000px;}
.xfa_c00331{left:285.750000px;}
.x8d_c00331{left:286.800000px;}
.x102_c00331{left:290.400000px;}
.x11f_c00331{left:291.750000px;}
.x2a_c00331{left:293.100000px;}
.x9b_c00331{left:295.800000px;}
.x9_c00331{left:298.350000px;}
.x66_c00331{left:300.450000px;}
.xde_c00331{left:302.100000px;}
.xe9_c00331{left:303.600000px;}
.x5b_c00331{left:305.250000px;}
.xed_c00331{left:306.750000px;}
.x73_c00331{left:310.650000px;}
.x39_c00331{left:311.850000px;}
.xf0_c00331{left:313.500000px;}
.x1a_c00331{left:316.050000px;}
.xa_c00331{left:317.100000px;}
.xa1_c00331{left:318.150000px;}
.xce_c00331{left:321.000000px;}
.x8e_c00331{left:323.550000px;}
.x41_c00331{left:327.300000px;}
.x9c_c00331{left:330.000000px;}
.x4f_c00331{left:332.400000px;}
.x67_c00331{left:334.350000px;}
.x1b_c00331{left:337.350000px;}
.x13e_c00331{left:339.150000px;}
.xa9_c00331{left:340.650000px;}
.xcf_c00331{left:344.700000px;}
.x2b_c00331{left:347.100000px;}
.xb6_c00331{left:349.800000px;}
.x8f_c00331{left:351.600000px;}
.xb_c00331{left:352.800000px;}
.xd7_c00331{left:354.000000px;}
.x10e_c00331{left:357.600000px;}
.xaa_c00331{left:361.200000px;}
.xdf_c00331{left:362.700000px;}
.x84_c00331{left:364.650000px;}
.xfb_c00331{left:365.700000px;}
.x117_c00331{left:367.350000px;}
.x2c_c00331{left:368.400000px;}
.xa2_c00331{left:369.750000px;}
.x42_c00331{left:375.150000px;}
.xc_c00331{left:376.200000px;}
.x1c_c00331{left:377.700000px;}
.xf1_c00331{left:379.800000px;}
.x120_c00331{left:383.550000px;}
.x5c_c00331{left:385.500000px;}
.x10f_c00331{left:387.450000px;}
.x85_c00331{left:388.800000px;}
.xf5_c00331{left:390.300000px;}
.x134_c00331{left:393.750000px;}
.x3a_c00331{left:395.100000px;}
.x2d_c00331{left:397.950000px;}
.x103_c00331{left:399.450000px;}
.xa3_c00331{left:400.650000px;}
.x1_c00331{left:402.150000px;}
.x43_c00331{left:409.350000px;}
.x50_c00331{left:411.600000px;}
.x13c_c00331{left:412.950000px;}
.x12d_c00331{left:414.150000px;}
.xea_c00331{left:415.200000px;}
.x68_c00331{left:416.400000px;}
.x90_c00331{left:418.500000px;}
.x5d_c00331{left:420.750000px;}
.x1d_c00331{left:421.950000px;}
.xa4_c00331{left:426.600000px;}
.xe0_c00331{left:429.300000px;}
.x112_c00331{left:430.500000px;}
.x9d_c00331{left:432.600000px;}
.xeb_c00331{left:433.950000px;}
.xbe_c00331{left:435.150000px;}
.x80_c00331{left:436.500000px;}
.x74_c00331{left:438.450000px;}
.x69_c00331{left:439.500000px;}
.xd_c00331{left:440.700000px;}
.x86_c00331{left:443.850000px;}
.xab_c00331{left:445.050000px;}
.x3b_c00331{left:447.000000px;}
.xf2_c00331{left:449.250000px;}
.x121_c00331{left:450.900000px;}
.x1e_c00331{left:453.600000px;}
.xfc_c00331{left:455.400000px;}
.xee_c00331{left:458.400000px;}
.x113_c00331{left:460.050000px;}
.x104_c00331{left:462.750000px;}
.x2e_c00331{left:464.250000px;}
.x118_c00331{left:467.100000px;}
.x6a_c00331{left:468.300000px;}
.x13f_c00331{left:469.800000px;}
.x51_c00331{left:472.050000px;}
.x44_c00331{left:474.450000px;}
.x81_c00331{left:477.150000px;}
.x10b_c00331{left:478.200000px;}
.x12f_c00331{left:481.050000px;}
.x1f_c00331{left:483.900000px;}
.xfd_c00331{left:485.250000px;}
.xe_c00331{left:486.450000px;}
.xd0_c00331{left:490.050000px;}
.x126_c00331{left:491.400000px;}
.x52_c00331{left:492.600000px;}
.x87_c00331{left:495.000000px;}
.x119_c00331{left:498.000000px;}
.xc5_c00331{left:499.050000px;}
.x13a_c00331{left:501.450000px;}
.x45_c00331{left:502.500000px;}
.x20_c00331{left:505.200000px;}
.xf_c00331{left:506.250000px;}
.xec_c00331{left:508.800000px;}
.xac_c00331{left:510.300000px;}
.x6b_c00331{left:513.000000px;}
.xd8_c00331{left:514.200000px;}
.xfe_c00331{left:522.300000px;}
.x2f_c00331{left:523.650000px;}
.x82_c00331{left:524.700000px;}
.x9e_c00331{left:526.950000px;}
.x88_c00331{left:529.200000px;}
.x114_c00331{left:530.700000px;}
.x75_c00331{left:531.750000px;}
.xf6_c00331{left:533.250000px;}
.x6c_c00331{left:534.300000px;}
.x91_c00331{left:535.650000px;}
.x3c_c00331{left:536.700000px;}
.x122_c00331{left:537.750000px;}
.xef_c00331{left:539.400000px;}
.x53_c00331{left:541.200000px;}
.xe1_c00331{left:542.400000px;}
.x10_c00331{left:545.550000px;}
.x21_c00331{left:547.350000px;}
.x3d_c00331{left:548.550000px;}
.x13b_c00331{left:549.600000px;}
.xad_c00331{left:552.450000px;}
.x105_c00331{left:553.500000px;}
.x46_c00331{left:555.450000px;}
.xd1_c00331{left:558.750000px;}
.x127_c00331{left:559.800000px;}
.x110_c00331{left:562.050000px;}
.x5e_c00331{left:563.250000px;}
.xc6_c00331{left:564.600000px;}
.xd9_c00331{left:566.400000px;}
.x76_c00331{left:567.750000px;}
.xb7_c00331{left:569.400000px;}
.x22_c00331{left:570.450000px;}
.x92_c00331{left:571.950000px;}
.x47_c00331{left:574.950000px;}
.xf3_c00331{left:577.050000px;}
.xd2_c00331{left:579.300000px;}
.x128_c00331{left:581.100000px;}
.x6d_c00331{left:584.700000px;}
.x135_c00331{left:586.200000px;}
.xe2_c00331{left:587.700000px;}
.xbf_c00331{left:590.100000px;}
.x11_c00331{left:593.400000px;}
.x77_c00331{left:596.550000px;}
.x30_c00331{left:598.200000px;}
.xae_c00331{left:599.250000px;}
.x106_c00331{left:601.350000px;}
.x48_c00331{left:603.450000px;}
.x54_c00331{left:605.250000px;}
.x11a_c00331{left:606.450000px;}
.x9f_c00331{left:607.950000px;}
.xd3_c00331{left:611.400000px;}
.x93_c00331{left:613.650000px;}
.xb8_c00331{left:615.150000px;}
.x6e_c00331{left:617.100000px;}
.xaf_c00331{left:619.800000px;}
.x12_c00331{left:621.450000px;}
.xe3_c00331{left:624.000000px;}
.xf7_c00331{left:625.800000px;}
.x3e_c00331{left:627.450000px;}
.x5f_c00331{left:631.350000px;}
.x89_c00331{left:635.700000px;}
.x55_c00331{left:637.950000px;}
.x31_c00331{left:639.300000px;}
.x136_c00331{left:640.950000px;}
.x94_c00331{left:642.450000px;}
.xc7_c00331{left:644.850000px;}
.x107_c00331{left:645.900000px;}
.xc0_c00331{left:647.700000px;}
.x23_c00331{left:649.200000px;}
.xd4_c00331{left:651.300000px;}
.x6f_c00331{left:652.800000px;}
.x11b_c00331{left:654.300000px;}
.x13_c00331{left:655.950000px;}
.x130_c00331{left:657.000000px;}
.x49_c00331{left:658.950000px;}
.x60_c00331{left:664.500000px;}
.xc8_c00331{left:666.450000px;}
.xb0_c00331{left:669.150000px;}
.x78_c00331{left:671.100000px;}
.xda_c00331{left:674.400000px;}
.x115_c00331{left:675.750000px;}
.xff_c00331{left:677.550000px;}
.xc1_c00331{left:679.050000px;}
.x24_c00331{left:680.100000px;}
.x32_c00331{left:681.450000px;}
.x70_c00331{left:683.400000px;}
.x123_c00331{left:686.100000px;}
.x61_c00331{left:687.900000px;}
.x100_c00331{left:693.000000px;}
.xa5_c00331{left:694.500000px;}
.x4a_c00331{left:696.750000px;}
.x108_c00331{left:700.200000px;}
.xb1_c00331{left:701.250000px;}
.x95_c00331{left:702.600000px;}
.x79_c00331{left:705.000000px;}
.xdb_c00331{left:707.550000px;}
.x124_c00331{left:709.200000px;}
.x8a_c00331{left:715.200000px;}
.x56_c00331{left:716.700000px;}
.x33_c00331{left:718.950000px;}
.x62_c00331{left:721.350000px;}
.x96_c00331{left:722.700000px;}
.x14_c00331{left:725.850000px;}
.x4b_c00331{left:727.350000px;}
.xb2_c00331{left:729.750000px;}
.x11c_c00331{left:731.700000px;}
.xb9_c00331{left:732.900000px;}
.x109_c00331{left:734.100000px;}
.xdc_c00331{left:737.100000px;}
.x34_c00331{left:740.250000px;}
.x7a_c00331{left:742.500000px;}
.x2_c00331{left:745.950000px;}
.xc2_c00331{left:747.750000px;}
.x137_c00331{left:749.250000px;}
.x25_c00331{left:751.350000px;}
.x71_c00331{left:753.900000px;}
.x10a_c00331{left:754.950000px;}
.x3_c00331{left:757.050000px;}
.xe4_c00331{left:761.550000px;}
.x101_c00331{left:763.500000px;}
.x4_c00331{left:764.550000px;}
.xc3_c00331{left:767.550000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.wsd_c00331{word-spacing:0.000000pt;}
.wsa_c00331{word-spacing:0.480480pt;}
.ws3_c00331{word-spacing:1.842818pt;}
.ws5_c00331{word-spacing:2.690058pt;}
.ws0_c00331{word-spacing:3.252033pt;}
.wsc_c00331{word-spacing:4.444444pt;}
.ws4_c00331{word-spacing:7.345309pt;}
.ws2_c00331{word-spacing:7.681756pt;}
.ws1_c00331{word-spacing:9.824561pt;}
.ws6_c00331{word-spacing:10.849673pt;}
.ws8_c00331{word-spacing:11.728395pt;}
.wsb_c00331{word-spacing:13.209877pt;}
.ws7_c00331{word-spacing:14.117647pt;}
.ws9_c00331{word-spacing:17.119342pt;}
.fs1_c00331{font-size:53.333333pt;}
.fs0_c00331{font-size:58.666667pt;}
.y0_c00331{bottom:0.000000pt;}
.y2b_c00331{bottom:152.000000pt;}
.y2a_c00331{bottom:188.266667pt;}
.y29_c00331{bottom:205.866667pt;}
.y28_c00331{bottom:223.466667pt;}
.y27_c00331{bottom:241.066667pt;}
.y26_c00331{bottom:258.666667pt;}
.y25_c00331{bottom:276.533333pt;}
.y24_c00331{bottom:294.400000pt;}
.y23_c00331{bottom:312.000000pt;}
.y22_c00331{bottom:329.600000pt;}
.y21_c00331{bottom:347.466667pt;}
.y20_c00331{bottom:364.800000pt;}
.y1f_c00331{bottom:382.400000pt;}
.y1e_c00331{bottom:400.000000pt;}
.y1d_c00331{bottom:417.600000pt;}
.y1c_c00331{bottom:435.200000pt;}
.y1b_c00331{bottom:452.800000pt;}
.y1a_c00331{bottom:470.800000pt;}
.y19_c00331{bottom:488.666667pt;}
.y18_c00331{bottom:506.000000pt;}
.y17_c00331{bottom:523.866667pt;}
.y16_c00331{bottom:541.733333pt;}
.y15_c00331{bottom:559.466667pt;}
.y14_c00331{bottom:577.066667pt;}
.y13_c00331{bottom:594.933333pt;}
.y12_c00331{bottom:612.800000pt;}
.y11_c00331{bottom:630.400000pt;}
.y10_c00331{bottom:648.000000pt;}
.yf_c00331{bottom:665.733333pt;}
.ye_c00331{bottom:683.333333pt;}
.yd_c00331{bottom:700.933333pt;}
.yc_c00331{bottom:718.800000pt;}
.yb_c00331{bottom:736.133333pt;}
.ya_c00331{bottom:754.000000pt;}
.y9_c00331{bottom:771.600000pt;}
.y8_c00331{bottom:789.466667pt;}
.y7_c00331{bottom:807.333333pt;}
.y6_c00331{bottom:824.933333pt;}
.y5_c00331{bottom:842.533333pt;}
.y4_c00331{bottom:860.133333pt;}
.y3_c00331{bottom:877.866667pt;}
.y2_c00331{bottom:895.733333pt;}
.y1_c00331{bottom:929.866667pt;}
.h3_c00331{height:53.333333pt;}
.h2_c00331{height:58.666667pt;}
.h0_c00331{height:1037.119955pt;}
.h1_c00331{height:1037.333333pt;}
.w1_c00331{width:812.000000pt;}
.w0_c00331{width:812.159993pt;}
.x0_c00331{left:0.000000pt;}
.x15_c00331{left:93.200000pt;}
.x97_c00331{left:94.266667pt;}
.xf8_c00331{left:95.200000pt;}
.x129_c00331{left:96.400000pt;}
.xa6_c00331{left:110.800000pt;}
.x4c_c00331{left:112.133333pt;}
.x8b_c00331{left:115.066667pt;}
.x11d_c00331{left:116.000000pt;}
.x98_c00331{left:117.333333pt;}
.x131_c00331{left:120.000000pt;}
.x5_c00331{left:120.933333pt;}
.xa0_c00331{left:121.866667pt;}
.xb3_c00331{left:123.200000pt;}
.x57_c00331{left:124.533333pt;}
.x83_c00331{left:125.600000pt;}
.x16_c00331{left:128.400000pt;}
.x7b_c00331{left:131.733333pt;}
.x12a_c00331{left:133.200000pt;}
.xba_c00331{left:134.933333pt;}
.x63_c00331{left:135.866667pt;}
.x132_c00331{left:136.933333pt;}
.x6_c00331{left:138.533333pt;}
.x35_c00331{left:139.600000pt;}
.xc9_c00331{left:140.800000pt;}
.xa7_c00331{left:141.866667pt;}
.xe5_c00331{left:144.533333pt;}
.x7c_c00331{left:147.466667pt;}
.x12e_c00331{left:150.666667pt;}
.x58_c00331{left:153.600000pt;}
.x111_c00331{left:154.933333pt;}
.x116_c00331{left:157.200000pt;}
.xd5_c00331{left:159.733333pt;}
.x7d_c00331{left:162.133333pt;}
.x26_c00331{left:163.600000pt;}
.x36_c00331{left:165.466667pt;}
.x3f_c00331{left:167.066667pt;}
.x17_c00331{left:169.600000pt;}
.xbb_c00331{left:171.066667pt;}
.xc4_c00331{left:172.533333pt;}
.x12b_c00331{left:173.466667pt;}
.x59_c00331{left:175.066667pt;}
.x10c_c00331{left:176.133333pt;}
.x64_c00331{left:178.133333pt;}
.x7_c00331{left:181.466667pt;}
.x27_c00331{left:182.800000pt;}
.xdd_c00331{left:185.066667pt;}
.xd6_c00331{left:188.533333pt;}
.x138_c00331{left:189.466667pt;}
.x99_c00331{left:190.933333pt;}
.x12c_c00331{left:193.333333pt;}
.x7e_c00331{left:196.400000pt;}
.xe6_c00331{left:198.266667pt;}
.x10d_c00331{left:200.133333pt;}
.x28_c00331{left:201.333333pt;}
.x37_c00331{left:202.933333pt;}
.xcb_c00331{left:204.133333pt;}
.x8_c00331{left:205.733333pt;}
.x8c_c00331{left:207.600000pt;}
.xf4_c00331{left:208.933333pt;}
.x4d_c00331{left:210.000000pt;}
.xbc_c00331{left:211.333333pt;}
.x65_c00331{left:212.666667pt;}
.x11e_c00331{left:215.200000pt;}
.xe7_c00331{left:216.800000pt;}
.x18_c00331{left:217.866667pt;}
.x13d_c00331{left:219.866667pt;}
.x38_c00331{left:221.200000pt;}
.x40_c00331{left:222.133333pt;}
.xb4_c00331{left:225.866667pt;}
.xf9_c00331{left:227.733333pt;}
.xcc_c00331{left:229.733333pt;}
.xa8_c00331{left:230.800000pt;}
.x7f_c00331{left:232.266667pt;}
.x9a_c00331{left:234.133333pt;}
.x4e_c00331{left:235.866667pt;}
.x133_c00331{left:237.200000pt;}
.xbd_c00331{left:240.133333pt;}
.xe8_c00331{left:243.333333pt;}
.x139_c00331{left:244.266667pt;}
.xca_c00331{left:245.466667pt;}
.x29_c00331{left:246.400000pt;}
.x125_c00331{left:247.733333pt;}
.x72_c00331{left:248.666667pt;}
.xb5_c00331{left:249.866667pt;}
.xcd_c00331{left:250.800000pt;}
.x5a_c00331{left:251.866667pt;}
.x19_c00331{left:252.800000pt;}
.xfa_c00331{left:254.000000pt;}
.x8d_c00331{left:254.933333pt;}
.x102_c00331{left:258.133333pt;}
.x11f_c00331{left:259.333333pt;}
.x2a_c00331{left:260.533333pt;}
.x9b_c00331{left:262.933333pt;}
.x9_c00331{left:265.200000pt;}
.x66_c00331{left:267.066667pt;}
.xde_c00331{left:268.533333pt;}
.xe9_c00331{left:269.866667pt;}
.x5b_c00331{left:271.333333pt;}
.xed_c00331{left:272.666667pt;}
.x73_c00331{left:276.133333pt;}
.x39_c00331{left:277.200000pt;}
.xf0_c00331{left:278.666667pt;}
.x1a_c00331{left:280.933333pt;}
.xa_c00331{left:281.866667pt;}
.xa1_c00331{left:282.800000pt;}
.xce_c00331{left:285.333333pt;}
.x8e_c00331{left:287.600000pt;}
.x41_c00331{left:290.933333pt;}
.x9c_c00331{left:293.333333pt;}
.x4f_c00331{left:295.466667pt;}
.x67_c00331{left:297.200000pt;}
.x1b_c00331{left:299.866667pt;}
.x13e_c00331{left:301.466667pt;}
.xa9_c00331{left:302.800000pt;}
.xcf_c00331{left:306.400000pt;}
.x2b_c00331{left:308.533333pt;}
.xb6_c00331{left:310.933333pt;}
.x8f_c00331{left:312.533333pt;}
.xb_c00331{left:313.600000pt;}
.xd7_c00331{left:314.666667pt;}
.x10e_c00331{left:317.866667pt;}
.xaa_c00331{left:321.066667pt;}
.xdf_c00331{left:322.400000pt;}
.x84_c00331{left:324.133333pt;}
.xfb_c00331{left:325.066667pt;}
.x117_c00331{left:326.533333pt;}
.x2c_c00331{left:327.466667pt;}
.xa2_c00331{left:328.666667pt;}
.x42_c00331{left:333.466667pt;}
.xc_c00331{left:334.400000pt;}
.x1c_c00331{left:335.733333pt;}
.xf1_c00331{left:337.600000pt;}
.x120_c00331{left:340.933333pt;}
.x5c_c00331{left:342.666667pt;}
.x10f_c00331{left:344.400000pt;}
.x85_c00331{left:345.600000pt;}
.xf5_c00331{left:346.933333pt;}
.x134_c00331{left:350.000000pt;}
.x3a_c00331{left:351.200000pt;}
.x2d_c00331{left:353.733333pt;}
.x103_c00331{left:355.066667pt;}
.xa3_c00331{left:356.133333pt;}
.x1_c00331{left:357.466667pt;}
.x43_c00331{left:363.866667pt;}
.x50_c00331{left:365.866667pt;}
.x13c_c00331{left:367.066667pt;}
.x12d_c00331{left:368.133333pt;}
.xea_c00331{left:369.066667pt;}
.x68_c00331{left:370.133333pt;}
.x90_c00331{left:372.000000pt;}
.x5d_c00331{left:374.000000pt;}
.x1d_c00331{left:375.066667pt;}
.xa4_c00331{left:379.200000pt;}
.xe0_c00331{left:381.600000pt;}
.x112_c00331{left:382.666667pt;}
.x9d_c00331{left:384.533333pt;}
.xeb_c00331{left:385.733333pt;}
.xbe_c00331{left:386.800000pt;}
.x80_c00331{left:388.000000pt;}
.x74_c00331{left:389.733333pt;}
.x69_c00331{left:390.666667pt;}
.xd_c00331{left:391.733333pt;}
.x86_c00331{left:394.533333pt;}
.xab_c00331{left:395.600000pt;}
.x3b_c00331{left:397.333333pt;}
.xf2_c00331{left:399.333333pt;}
.x121_c00331{left:400.800000pt;}
.x1e_c00331{left:403.200000pt;}
.xfc_c00331{left:404.800000pt;}
.xee_c00331{left:407.466667pt;}
.x113_c00331{left:408.933333pt;}
.x104_c00331{left:411.333333pt;}
.x2e_c00331{left:412.666667pt;}
.x118_c00331{left:415.200000pt;}
.x6a_c00331{left:416.266667pt;}
.x13f_c00331{left:417.600000pt;}
.x51_c00331{left:419.600000pt;}
.x44_c00331{left:421.733333pt;}
.x81_c00331{left:424.133333pt;}
.x10b_c00331{left:425.066667pt;}
.x12f_c00331{left:427.600000pt;}
.x1f_c00331{left:430.133333pt;}
.xfd_c00331{left:431.333333pt;}
.xe_c00331{left:432.400000pt;}
.xd0_c00331{left:435.600000pt;}
.x126_c00331{left:436.800000pt;}
.x52_c00331{left:437.866667pt;}
.x87_c00331{left:440.000000pt;}
.x119_c00331{left:442.666667pt;}
.xc5_c00331{left:443.600000pt;}
.x13a_c00331{left:445.733333pt;}
.x45_c00331{left:446.666667pt;}
.x20_c00331{left:449.066667pt;}
.xf_c00331{left:450.000000pt;}
.xec_c00331{left:452.266667pt;}
.xac_c00331{left:453.600000pt;}
.x6b_c00331{left:456.000000pt;}
.xd8_c00331{left:457.066667pt;}
.xfe_c00331{left:464.266667pt;}
.x2f_c00331{left:465.466667pt;}
.x82_c00331{left:466.400000pt;}
.x9e_c00331{left:468.400000pt;}
.x88_c00331{left:470.400000pt;}
.x114_c00331{left:471.733333pt;}
.x75_c00331{left:472.666667pt;}
.xf6_c00331{left:474.000000pt;}
.x6c_c00331{left:474.933333pt;}
.x91_c00331{left:476.133333pt;}
.x3c_c00331{left:477.066667pt;}
.x122_c00331{left:478.000000pt;}
.xef_c00331{left:479.466667pt;}
.x53_c00331{left:481.066667pt;}
.xe1_c00331{left:482.133333pt;}
.x10_c00331{left:484.933333pt;}
.x21_c00331{left:486.533333pt;}
.x3d_c00331{left:487.600000pt;}
.x13b_c00331{left:488.533333pt;}
.xad_c00331{left:491.066667pt;}
.x105_c00331{left:492.000000pt;}
.x46_c00331{left:493.733333pt;}
.xd1_c00331{left:496.666667pt;}
.x127_c00331{left:497.600000pt;}
.x110_c00331{left:499.600000pt;}
.x5e_c00331{left:500.666667pt;}
.xc6_c00331{left:501.866667pt;}
.xd9_c00331{left:503.466667pt;}
.x76_c00331{left:504.666667pt;}
.xb7_c00331{left:506.133333pt;}
.x22_c00331{left:507.066667pt;}
.x92_c00331{left:508.400000pt;}
.x47_c00331{left:511.066667pt;}
.xf3_c00331{left:512.933333pt;}
.xd2_c00331{left:514.933333pt;}
.x128_c00331{left:516.533333pt;}
.x6d_c00331{left:519.733333pt;}
.x135_c00331{left:521.066667pt;}
.xe2_c00331{left:522.400000pt;}
.xbf_c00331{left:524.533333pt;}
.x11_c00331{left:527.466667pt;}
.x77_c00331{left:530.266667pt;}
.x30_c00331{left:531.733333pt;}
.xae_c00331{left:532.666667pt;}
.x106_c00331{left:534.533333pt;}
.x48_c00331{left:536.400000pt;}
.x54_c00331{left:538.000000pt;}
.x11a_c00331{left:539.066667pt;}
.x9f_c00331{left:540.400000pt;}
.xd3_c00331{left:543.466667pt;}
.x93_c00331{left:545.466667pt;}
.xb8_c00331{left:546.800000pt;}
.x6e_c00331{left:548.533333pt;}
.xaf_c00331{left:550.933333pt;}
.x12_c00331{left:552.400000pt;}
.xe3_c00331{left:554.666667pt;}
.xf7_c00331{left:556.266667pt;}
.x3e_c00331{left:557.733333pt;}
.x5f_c00331{left:561.200000pt;}
.x89_c00331{left:565.066667pt;}
.x55_c00331{left:567.066667pt;}
.x31_c00331{left:568.266667pt;}
.x136_c00331{left:569.733333pt;}
.x94_c00331{left:571.066667pt;}
.xc7_c00331{left:573.200000pt;}
.x107_c00331{left:574.133333pt;}
.xc0_c00331{left:575.733333pt;}
.x23_c00331{left:577.066667pt;}
.xd4_c00331{left:578.933333pt;}
.x6f_c00331{left:580.266667pt;}
.x11b_c00331{left:581.600000pt;}
.x13_c00331{left:583.066667pt;}
.x130_c00331{left:584.000000pt;}
.x49_c00331{left:585.733333pt;}
.x60_c00331{left:590.666667pt;}
.xc8_c00331{left:592.400000pt;}
.xb0_c00331{left:594.800000pt;}
.x78_c00331{left:596.533333pt;}
.xda_c00331{left:599.466667pt;}
.x115_c00331{left:600.666667pt;}
.xff_c00331{left:602.266667pt;}
.xc1_c00331{left:603.600000pt;}
.x24_c00331{left:604.533333pt;}
.x32_c00331{left:605.733333pt;}
.x70_c00331{left:607.466667pt;}
.x123_c00331{left:609.866667pt;}
.x61_c00331{left:611.466667pt;}
.x100_c00331{left:616.000000pt;}
.xa5_c00331{left:617.333333pt;}
.x4a_c00331{left:619.333333pt;}
.x108_c00331{left:622.400000pt;}
.xb1_c00331{left:623.333333pt;}
.x95_c00331{left:624.533333pt;}
.x79_c00331{left:626.666667pt;}
.xdb_c00331{left:628.933333pt;}
.x124_c00331{left:630.400000pt;}
.x8a_c00331{left:635.733333pt;}
.x56_c00331{left:637.066667pt;}
.x33_c00331{left:639.066667pt;}
.x62_c00331{left:641.200000pt;}
.x96_c00331{left:642.400000pt;}
.x14_c00331{left:645.200000pt;}
.x4b_c00331{left:646.533333pt;}
.xb2_c00331{left:648.666667pt;}
.x11c_c00331{left:650.400000pt;}
.xb9_c00331{left:651.466667pt;}
.x109_c00331{left:652.533333pt;}
.xdc_c00331{left:655.200000pt;}
.x34_c00331{left:658.000000pt;}
.x7a_c00331{left:660.000000pt;}
.x2_c00331{left:663.066667pt;}
.xc2_c00331{left:664.666667pt;}
.x137_c00331{left:666.000000pt;}
.x25_c00331{left:667.866667pt;}
.x71_c00331{left:670.133333pt;}
.x10a_c00331{left:671.066667pt;}
.x3_c00331{left:672.933333pt;}
.xe4_c00331{left:676.933333pt;}
.x101_c00331{left:678.666667pt;}
.x4_c00331{left:679.600000pt;}
.xc3_c00331{left:682.266667pt;}
}





/* 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_c00332 {
    display:none;
  }
  .loading-indicator_c00332.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00332 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_c00332 { 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_c00332" -> "#page-container .classname_c00332")
 */
.pf_c00332 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00332 { /* 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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00332 { /* 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_c00332 { /* 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_c00332 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00332 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00332 {overflow:visible;}
  }
}
.c_c00332 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00332 { /* 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_c00332:after { /* webkit #35443 */
  content: '';
}
.t_c00332:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00332 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 */
}
.__c00332 { /* 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_c00332 { /* info for Javascript */
  display:none;
}
.l_c00332 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00332 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00332 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00332: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_c00332 {
    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_c00332.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00332.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_c00332 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00332{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00332;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.000000;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;}
.m11_c00332{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m15_c00332{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8_c00332{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m31_c00332{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m16_c00332{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m88_c00332{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00332{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m76_c00332{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00332{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m78_c00332{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb_c00332{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00332{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m89_c00332{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m62_c00332{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m86_c00332{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00332{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m38_c00332{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m65_c00332{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m20_c00332{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00332{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00332{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m56_c00332{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00332{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m79_c00332{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m47_c00332{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00332{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00332{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m33_c00332{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m13_c00332{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00332{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00332{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00332{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m73_c00332{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00332{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00332{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m24_c00332{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m46_c00332{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00332{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m83_c00332{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00332{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m36_c00332{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m82_c00332{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00332{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m54_c00332{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00332{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m41_c00332{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00332{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m52_c00332{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m72_c00332{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m14_c00332{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m51_c00332{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00332{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00332{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m71_c00332{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.me_c00332{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9_c00332{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m25_c00332{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m70_c00332{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m85_c00332{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00332{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma_c00332{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00332{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m34_c00332{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00332{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m39_c00332{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00332{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00332{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00332{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m50_c00332{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_c00332{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m17_c00332{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);}
.m69_c00332{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m45_c00332{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m57_c00332{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m77_c00332{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35_c00332{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m53_c00332{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00332{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m75_c00332{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m23_c00332{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m55_c00332{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12_c00332{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00332{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m67_c00332{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00332{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5_c00332{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m63_c00332{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m26_c00332{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m49_c00332{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m40_c00332{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m80_c00332{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m68_c00332{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.md_c00332{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00332{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m61_c00332{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m84_c00332{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m74_c00332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00332{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m37_c00332{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m30_c00332{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m64_c00332{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00332{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00332{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m42_c00332{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m27_c00332{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m18_c00332{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m60_c00332{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mf_c00332{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m48_c00332{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00332{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m43_c00332{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m29_c00332{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m66_c00332{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00332{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00332{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00332{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00332{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m28_c00332{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00332{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m81_c00332{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00332{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m4_c00332{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00332{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00332{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00332{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m58_c00332{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00332{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m22_c00332{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mc_c00332{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00332{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00332{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m59_c00332{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00332{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00332{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00332{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m3_c00332{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00332{vertical-align:0.000000px;}
.ls0_c00332{letter-spacing:0.000000px;}
.sc__c00332{text-shadow:none;}
.sc0_c00332{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__c00332{-webkit-text-stroke:0px transparent;}
.sc0_c00332{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00332{word-spacing:-4.303060px;}
.ws2_c00332{word-spacing:-3.125000px;}
.ws5_c00332{word-spacing:-0.545455px;}
.ws6_c00332{word-spacing:0.000000px;}
.ws4_c00332{word-spacing:5.750000px;}
.ws1_c00332{word-spacing:5.875000px;}
.ws0_c00332{word-spacing:10.363636px;}
.fc0_c00332{color:transparent;}
.fs0_c00332{font-size:54.000000px;}
.y0_c00332{bottom:0.000000px;}
.y1b_c00332{bottom:497.850000px;}
.y1a_c00332{bottom:533.850000px;}
.y19_c00332{bottom:554.400000px;}
.y18_c00332{bottom:573.450000px;}
.y17_c00332{bottom:594.000000px;}
.y16_c00332{bottom:613.800000px;}
.y15_c00332{bottom:633.600000px;}
.y14_c00332{bottom:653.700000px;}
.y13_c00332{bottom:673.500000px;}
.y12_c00332{bottom:693.000000px;}
.y11_c00332{bottom:712.800000px;}
.y10_c00332{bottom:732.900000px;}
.yf_c00332{bottom:752.700000px;}
.ye_c00332{bottom:772.200000px;}
.yd_c00332{bottom:792.900000px;}
.yc_c00332{bottom:813.000000px;}
.yb_c00332{bottom:832.800000px;}
.ya_c00332{bottom:852.600000px;}
.y9_c00332{bottom:872.400000px;}
.y8_c00332{bottom:892.200000px;}
.y7_c00332{bottom:912.000000px;}
.y6_c00332{bottom:932.100000px;}
.y5_c00332{bottom:951.900000px;}
.y4_c00332{bottom:972.000000px;}
.y3_c00332{bottom:991.800000px;}
.y2_c00332{bottom:1011.900000px;}
.y1_c00332{bottom:1050.450000px;}
.h2_c00332{height:54.000000px;}
.h0_c00332{height:1166.759949px;}
.h1_c00332{height:1167.000000px;}
.w1_c00332{width:913.500000px;}
.w0_c00332{width:913.679993px;}
.x0_c00332{left:0.000000px;}
.xa1_c00332{left:139.650000px;}
.x2a_c00332{left:140.850000px;}
.x1_c00332{left:141.900000px;}
.xb9_c00332{left:160.350000px;}
.x2b_c00332{left:165.000000px;}
.xaf_c00332{left:170.250000px;}
.xdd_c00332{left:171.300000px;}
.x3_c00332{left:172.500000px;}
.x7b_c00332{left:174.300000px;}
.x1f_c00332{left:176.250000px;}
.x10_c00332{left:177.750000px;}
.xd3_c00332{left:181.650000px;}
.x49_c00332{left:186.750000px;}
.xba_c00332{left:188.850000px;}
.x60_c00332{left:190.050000px;}
.x11_c00332{left:192.900000px;}
.xde_c00332{left:195.750000px;}
.xe5_c00332{left:197.700000px;}
.x8f_c00332{left:201.600000px;}
.x3b_c00332{left:203.700000px;}
.x83_c00332{left:206.400000px;}
.x6c_c00332{left:210.600000px;}
.x8c_c00332{left:213.900000px;}
.x20_c00332{left:215.100000px;}
.x3c_c00332{left:217.050000px;}
.xb0_c00332{left:219.150000px;}
.xc5_c00332{left:221.850000px;}
.xdf_c00332{left:227.100000px;}
.x2c_c00332{left:229.800000px;}
.xca_c00332{left:231.150000px;}
.x54_c00332{left:232.350000px;}
.x98_c00332{left:237.150000px;}
.xd4_c00332{left:240.000000px;}
.x8d_c00332{left:245.250000px;}
.x3d_c00332{left:246.900000px;}
.xbf_c00332{left:250.350000px;}
.x6d_c00332{left:254.550000px;}
.x61_c00332{left:255.600000px;}
.x4a_c00332{left:260.550000px;}
.xe6_c00332{left:263.250000px;}
.x12_c00332{left:265.200000px;}
.x90_c00332{left:267.450000px;}
.x3e_c00332{left:270.600000px;}
.x55_c00332{left:272.700000px;}
.x99_c00332{left:274.200000px;}
.x6e_c00332{left:275.400000px;}
.x4_c00332{left:279.750000px;}
.xa2_c00332{left:283.350000px;}
.x13_c00332{left:285.750000px;}
.x62_c00332{left:289.800000px;}
.x2d_c00332{left:291.750000px;}
.x84_c00332{left:293.850000px;}
.x5_c00332{left:295.650000px;}
.xcb_c00332{left:297.150000px;}
.xb1_c00332{left:298.350000px;}
.x21_c00332{left:301.500000px;}
.x6f_c00332{left:303.150000px;}
.xea_c00332{left:305.250000px;}
.x9a_c00332{left:308.700000px;}
.xd5_c00332{left:309.750000px;}
.xc6_c00332{left:311.400000px;}
.x2e_c00332{left:312.600000px;}
.xbb_c00332{left:315.450000px;}
.xaa_c00332{left:318.000000px;}
.xcc_c00332{left:321.600000px;}
.x4b_c00332{left:322.800000px;}
.x56_c00332{left:328.800000px;}
.xb2_c00332{left:330.450000px;}
.x63_c00332{left:332.250000px;}
.x70_c00332{left:335.550000px;}
.x3f_c00332{left:338.700000px;}
.x14_c00332{left:340.800000px;}
.x91_c00332{left:344.550000px;}
.x85_c00332{left:348.900000px;}
.x9b_c00332{left:350.100000px;}
.x22_c00332{left:353.250000px;}
.x40_c00332{left:358.200000px;}
.x57_c00332{left:359.700000px;}
.x15_c00332{left:361.650000px;}
.xdc_c00332{left:364.650000px;}
.xeb_c00332{left:367.500000px;}
.x4c_c00332{left:368.550000px;}
.x2f_c00332{left:370.950000px;}
.x7c_c00332{left:374.400000px;}
.x6_c00332{left:375.600000px;}
.x16_c00332{left:378.900000px;}
.x58_c00332{left:380.550000px;}
.x30_c00332{left:382.500000px;}
.xa3_c00332{left:384.450000px;}
.xd6_c00332{left:388.950000px;}
.x23_c00332{left:390.750000px;}
.x64_c00332{left:396.750000px;}
.x8e_c00332{left:400.200000px;}
.xe0_c00332{left:401.400000px;}
.x31_c00332{left:403.050000px;}
.x92_c00332{left:406.350000px;}
.x4d_c00332{left:412.050000px;}
.xa4_c00332{left:413.550000px;}
.x41_c00332{left:415.500000px;}
.xb3_c00332{left:417.150000px;}
.xd7_c00332{left:419.850000px;}
.x71_c00332{left:420.900000px;}
.x9c_c00332{left:422.850000px;}
.x86_c00332{left:431.400000px;}
.xe1_c00332{left:432.750000px;}
.x32_c00332{left:435.150000px;}
.xec_c00332{left:437.250000px;}
.x2_c00332{left:439.950000px;}
.x72_c00332{left:441.450000px;}
.xcd_c00332{left:442.500000px;}
.x7d_c00332{left:444.150000px;}
.xa5_c00332{left:452.850000px;}
.x93_c00332{left:457.500000px;}
.x7_c00332{left:459.450000px;}
.x24_c00332{left:462.000000px;}
.x73_c00332{left:464.850000px;}
.x42_c00332{left:465.900000px;}
.x65_c00332{left:466.950000px;}
.xab_c00332{left:468.900000px;}
.x17_c00332{left:470.400000px;}
.xb4_c00332{left:472.650000px;}
.xa6_c00332{left:474.750000px;}
.xc0_c00332{left:476.700000px;}
.x4e_c00332{left:481.950000px;}
.x59_c00332{left:483.600000px;}
.x74_c00332{left:485.400000px;}
.x9d_c00332{left:488.400000px;}
.x43_c00332{left:491.100000px;}
.xce_c00332{left:493.650000px;}
.xe7_c00332{left:495.750000px;}
.xc7_c00332{left:501.600000px;}
.x87_c00332{left:502.650000px;}
.x8_c00332{left:504.150000px;}
.xa7_c00332{left:505.650000px;}
.xcf_c00332{left:508.350000px;}
.x33_c00332{left:512.850000px;}
.x44_c00332{left:514.500000px;}
.x75_c00332{left:516.750000px;}
.x9_c00332{left:522.150000px;}
.x94_c00332{left:524.400000px;}
.xc8_c00332{left:526.800000px;}
.x66_c00332{left:528.150000px;}
.x7e_c00332{left:531.150000px;}
.x18_c00332{left:532.650000px;}
.xa_c00332{left:534.750000px;}
.xac_c00332{left:539.400000px;}
.x95_c00332{left:542.700000px;}
.xd8_c00332{left:544.800000px;}
.xd0_c00332{left:546.150000px;}
.x4f_c00332{left:547.500000px;}
.xbc_c00332{left:548.850000px;}
.x5a_c00332{left:550.500000px;}
.x25_c00332{left:552.750000px;}
.x88_c00332{left:555.600000px;}
.xe8_c00332{left:560.250000px;}
.x19_c00332{left:563.550000px;}
.x50_c00332{left:567.300000px;}
.xc1_c00332{left:570.300000px;}
.x26_c00332{left:571.800000px;}
.xb_c00332{left:574.350000px;}
.x34_c00332{left:575.850000px;}
.xbd_c00332{left:577.650000px;}
.x7f_c00332{left:579.450000px;}
.xb5_c00332{left:584.700000px;}
.x45_c00332{left:588.000000px;}
.x76_c00332{left:592.050000px;}
.xed_c00332{left:596.100000px;}
.x51_c00332{left:598.950000px;}
.x35_c00332{left:602.550000px;}
.x9e_c00332{left:605.100000px;}
.x80_c00332{left:608.550000px;}
.x67_c00332{left:609.750000px;}
.xc_c00332{left:611.850000px;}
.x5b_c00332{left:613.500000px;}
.xd1_c00332{left:616.050000px;}
.x77_c00332{left:619.350000px;}
.x1a_c00332{left:622.950000px;}
.xe9_c00332{left:630.450000px;}
.x5c_c00332{left:633.300000px;}
.x36_c00332{left:634.650000px;}
.xd2_c00332{left:635.850000px;}
.x81_c00332{left:642.750000px;}
.x46_c00332{left:647.100000px;}
.x89_c00332{left:648.450000px;}
.xa8_c00332{left:652.500000px;}
.x1b_c00332{left:655.350000px;}
.x27_c00332{left:656.400000px;}
.x78_c00332{left:657.900000px;}
.xd_c00332{left:660.450000px;}
.xb6_c00332{left:662.400000px;}
.xad_c00332{left:663.900000px;}
.xd9_c00332{left:666.150000px;}
.xc2_c00332{left:668.250000px;}
.x37_c00332{left:673.500000px;}
.x28_c00332{left:674.700000px;}
.x5d_c00332{left:676.800000px;}
.x68_c00332{left:682.800000px;}
.x1c_c00332{left:686.250000px;}
.x79_c00332{left:690.300000px;}
.xe_c00332{left:696.450000px;}
.xa9_c00332{left:698.250000px;}
.xda_c00332{left:700.050000px;}
.xc3_c00332{left:702.450000px;}
.xb7_c00332{left:705.900000px;}
.x69_c00332{left:706.950000px;}
.x5e_c00332{left:710.550000px;}
.x8a_c00332{left:715.350000px;}
.x96_c00332{left:718.200000px;}
.xe2_c00332{left:722.100000px;}
.x82_c00332{left:723.750000px;}
.xbe_c00332{left:725.250000px;}
.x38_c00332{left:727.500000px;}
.x9f_c00332{left:732.600000px;}
.x97_c00332{left:734.700000px;}
.x47_c00332{left:737.100000px;}
.xdb_c00332{left:738.900000px;}
.xae_c00332{left:741.600000px;}
.x1d_c00332{left:743.100000px;}
.x6a_c00332{left:745.500000px;}
.x29_c00332{left:748.200000px;}
.xb8_c00332{left:752.250000px;}
.xc4_c00332{left:754.350000px;}
.x7a_c00332{left:759.750000px;}
.x52_c00332{left:760.950000px;}
.xa0_c00332{left:762.450000px;}
.x48_c00332{left:763.800000px;}
.xe3_c00332{left:765.000000px;}
.xf_c00332{left:766.650000px;}
.x39_c00332{left:769.200000px;}
.x6b_c00332{left:775.050000px;}
.x8b_c00332{left:777.600000px;}
.x1e_c00332{left:778.800000px;}
.xc9_c00332{left:780.600000px;}
.x5f_c00332{left:784.350000px;}
.x3a_c00332{left:790.500000px;}
.x53_c00332{left:795.150000px;}
.xe4_c00332{left:801.000000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws3_c00332{word-spacing:-3.824942pt;}
.ws2_c00332{word-spacing:-2.777778pt;}
.ws5_c00332{word-spacing:-0.484848pt;}
.ws6_c00332{word-spacing:0.000000pt;}
.ws4_c00332{word-spacing:5.111111pt;}
.ws1_c00332{word-spacing:5.222222pt;}
.ws0_c00332{word-spacing:9.212121pt;}
.fs0_c00332{font-size:48.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y1b_c00332{bottom:442.533333pt;}
.y1a_c00332{bottom:474.533333pt;}
.y19_c00332{bottom:492.800000pt;}
.y18_c00332{bottom:509.733333pt;}
.y17_c00332{bottom:528.000000pt;}
.y16_c00332{bottom:545.600000pt;}
.y15_c00332{bottom:563.200000pt;}
.y14_c00332{bottom:581.066667pt;}
.y13_c00332{bottom:598.666667pt;}
.y12_c00332{bottom:616.000000pt;}
.y11_c00332{bottom:633.600000pt;}
.y10_c00332{bottom:651.466667pt;}
.yf_c00332{bottom:669.066667pt;}
.ye_c00332{bottom:686.400000pt;}
.yd_c00332{bottom:704.800000pt;}
.yc_c00332{bottom:722.666667pt;}
.yb_c00332{bottom:740.266667pt;}
.ya_c00332{bottom:757.866667pt;}
.y9_c00332{bottom:775.466667pt;}
.y8_c00332{bottom:793.066667pt;}
.y7_c00332{bottom:810.666667pt;}
.y6_c00332{bottom:828.533333pt;}
.y5_c00332{bottom:846.133333pt;}
.y4_c00332{bottom:864.000000pt;}
.y3_c00332{bottom:881.600000pt;}
.y2_c00332{bottom:899.466667pt;}
.y1_c00332{bottom:933.733333pt;}
.h2_c00332{height:48.000000pt;}
.h0_c00332{height:1037.119955pt;}
.h1_c00332{height:1037.333333pt;}
.w1_c00332{width:812.000000pt;}
.w0_c00332{width:812.159993pt;}
.x0_c00332{left:0.000000pt;}
.xa1_c00332{left:124.133333pt;}
.x2a_c00332{left:125.200000pt;}
.x1_c00332{left:126.133333pt;}
.xb9_c00332{left:142.533333pt;}
.x2b_c00332{left:146.666667pt;}
.xaf_c00332{left:151.333333pt;}
.xdd_c00332{left:152.266667pt;}
.x3_c00332{left:153.333333pt;}
.x7b_c00332{left:154.933333pt;}
.x1f_c00332{left:156.666667pt;}
.x10_c00332{left:158.000000pt;}
.xd3_c00332{left:161.466667pt;}
.x49_c00332{left:166.000000pt;}
.xba_c00332{left:167.866667pt;}
.x60_c00332{left:168.933333pt;}
.x11_c00332{left:171.466667pt;}
.xde_c00332{left:174.000000pt;}
.xe5_c00332{left:175.733333pt;}
.x8f_c00332{left:179.200000pt;}
.x3b_c00332{left:181.066667pt;}
.x83_c00332{left:183.466667pt;}
.x6c_c00332{left:187.200000pt;}
.x8c_c00332{left:190.133333pt;}
.x20_c00332{left:191.200000pt;}
.x3c_c00332{left:192.933333pt;}
.xb0_c00332{left:194.800000pt;}
.xc5_c00332{left:197.200000pt;}
.xdf_c00332{left:201.866667pt;}
.x2c_c00332{left:204.266667pt;}
.xca_c00332{left:205.466667pt;}
.x54_c00332{left:206.533333pt;}
.x98_c00332{left:210.800000pt;}
.xd4_c00332{left:213.333333pt;}
.x8d_c00332{left:218.000000pt;}
.x3d_c00332{left:219.466667pt;}
.xbf_c00332{left:222.533333pt;}
.x6d_c00332{left:226.266667pt;}
.x61_c00332{left:227.200000pt;}
.x4a_c00332{left:231.600000pt;}
.xe6_c00332{left:234.000000pt;}
.x12_c00332{left:235.733333pt;}
.x90_c00332{left:237.733333pt;}
.x3e_c00332{left:240.533333pt;}
.x55_c00332{left:242.400000pt;}
.x99_c00332{left:243.733333pt;}
.x6e_c00332{left:244.800000pt;}
.x4_c00332{left:248.666667pt;}
.xa2_c00332{left:251.866667pt;}
.x13_c00332{left:254.000000pt;}
.x62_c00332{left:257.600000pt;}
.x2d_c00332{left:259.333333pt;}
.x84_c00332{left:261.200000pt;}
.x5_c00332{left:262.800000pt;}
.xcb_c00332{left:264.133333pt;}
.xb1_c00332{left:265.200000pt;}
.x21_c00332{left:268.000000pt;}
.x6f_c00332{left:269.466667pt;}
.xea_c00332{left:271.333333pt;}
.x9a_c00332{left:274.400000pt;}
.xd5_c00332{left:275.333333pt;}
.xc6_c00332{left:276.800000pt;}
.x2e_c00332{left:277.866667pt;}
.xbb_c00332{left:280.400000pt;}
.xaa_c00332{left:282.666667pt;}
.xcc_c00332{left:285.866667pt;}
.x4b_c00332{left:286.933333pt;}
.x56_c00332{left:292.266667pt;}
.xb2_c00332{left:293.733333pt;}
.x63_c00332{left:295.333333pt;}
.x70_c00332{left:298.266667pt;}
.x3f_c00332{left:301.066667pt;}
.x14_c00332{left:302.933333pt;}
.x91_c00332{left:306.266667pt;}
.x85_c00332{left:310.133333pt;}
.x9b_c00332{left:311.200000pt;}
.x22_c00332{left:314.000000pt;}
.x40_c00332{left:318.400000pt;}
.x57_c00332{left:319.733333pt;}
.x15_c00332{left:321.466667pt;}
.xdc_c00332{left:324.133333pt;}
.xeb_c00332{left:326.666667pt;}
.x4c_c00332{left:327.600000pt;}
.x2f_c00332{left:329.733333pt;}
.x7c_c00332{left:332.800000pt;}
.x6_c00332{left:333.866667pt;}
.x16_c00332{left:336.800000pt;}
.x58_c00332{left:338.266667pt;}
.x30_c00332{left:340.000000pt;}
.xa3_c00332{left:341.733333pt;}
.xd6_c00332{left:345.733333pt;}
.x23_c00332{left:347.333333pt;}
.x64_c00332{left:352.666667pt;}
.x8e_c00332{left:355.733333pt;}
.xe0_c00332{left:356.800000pt;}
.x31_c00332{left:358.266667pt;}
.x92_c00332{left:361.200000pt;}
.x4d_c00332{left:366.266667pt;}
.xa4_c00332{left:367.600000pt;}
.x41_c00332{left:369.333333pt;}
.xb3_c00332{left:370.800000pt;}
.xd7_c00332{left:373.200000pt;}
.x71_c00332{left:374.133333pt;}
.x9c_c00332{left:375.866667pt;}
.x86_c00332{left:383.466667pt;}
.xe1_c00332{left:384.666667pt;}
.x32_c00332{left:386.800000pt;}
.xec_c00332{left:388.666667pt;}
.x2_c00332{left:391.066667pt;}
.x72_c00332{left:392.400000pt;}
.xcd_c00332{left:393.333333pt;}
.x7d_c00332{left:394.800000pt;}
.xa5_c00332{left:402.533333pt;}
.x93_c00332{left:406.666667pt;}
.x7_c00332{left:408.400000pt;}
.x24_c00332{left:410.666667pt;}
.x73_c00332{left:413.200000pt;}
.x42_c00332{left:414.133333pt;}
.x65_c00332{left:415.066667pt;}
.xab_c00332{left:416.800000pt;}
.x17_c00332{left:418.133333pt;}
.xb4_c00332{left:420.133333pt;}
.xa6_c00332{left:422.000000pt;}
.xc0_c00332{left:423.733333pt;}
.x4e_c00332{left:428.400000pt;}
.x59_c00332{left:429.866667pt;}
.x74_c00332{left:431.466667pt;}
.x9d_c00332{left:434.133333pt;}
.x43_c00332{left:436.533333pt;}
.xce_c00332{left:438.800000pt;}
.xe7_c00332{left:440.666667pt;}
.xc7_c00332{left:445.866667pt;}
.x87_c00332{left:446.800000pt;}
.x8_c00332{left:448.133333pt;}
.xa7_c00332{left:449.466667pt;}
.xcf_c00332{left:451.866667pt;}
.x33_c00332{left:455.866667pt;}
.x44_c00332{left:457.333333pt;}
.x75_c00332{left:459.333333pt;}
.x9_c00332{left:464.133333pt;}
.x94_c00332{left:466.133333pt;}
.xc8_c00332{left:468.266667pt;}
.x66_c00332{left:469.466667pt;}
.x7e_c00332{left:472.133333pt;}
.x18_c00332{left:473.466667pt;}
.xa_c00332{left:475.333333pt;}
.xac_c00332{left:479.466667pt;}
.x95_c00332{left:482.400000pt;}
.xd8_c00332{left:484.266667pt;}
.xd0_c00332{left:485.466667pt;}
.x4f_c00332{left:486.666667pt;}
.xbc_c00332{left:487.866667pt;}
.x5a_c00332{left:489.333333pt;}
.x25_c00332{left:491.333333pt;}
.x88_c00332{left:493.866667pt;}
.xe8_c00332{left:498.000000pt;}
.x19_c00332{left:500.933333pt;}
.x50_c00332{left:504.266667pt;}
.xc1_c00332{left:506.933333pt;}
.x26_c00332{left:508.266667pt;}
.xb_c00332{left:510.533333pt;}
.x34_c00332{left:511.866667pt;}
.xbd_c00332{left:513.466667pt;}
.x7f_c00332{left:515.066667pt;}
.xb5_c00332{left:519.733333pt;}
.x45_c00332{left:522.666667pt;}
.x76_c00332{left:526.266667pt;}
.xed_c00332{left:529.866667pt;}
.x51_c00332{left:532.400000pt;}
.x35_c00332{left:535.600000pt;}
.x9e_c00332{left:537.866667pt;}
.x80_c00332{left:540.933333pt;}
.x67_c00332{left:542.000000pt;}
.xc_c00332{left:543.866667pt;}
.x5b_c00332{left:545.333333pt;}
.xd1_c00332{left:547.600000pt;}
.x77_c00332{left:550.533333pt;}
.x1a_c00332{left:553.733333pt;}
.xe9_c00332{left:560.400000pt;}
.x5c_c00332{left:562.933333pt;}
.x36_c00332{left:564.133333pt;}
.xd2_c00332{left:565.200000pt;}
.x81_c00332{left:571.333333pt;}
.x46_c00332{left:575.200000pt;}
.x89_c00332{left:576.400000pt;}
.xa8_c00332{left:580.000000pt;}
.x1b_c00332{left:582.533333pt;}
.x27_c00332{left:583.466667pt;}
.x78_c00332{left:584.800000pt;}
.xd_c00332{left:587.066667pt;}
.xb6_c00332{left:588.800000pt;}
.xad_c00332{left:590.133333pt;}
.xd9_c00332{left:592.133333pt;}
.xc2_c00332{left:594.000000pt;}
.x37_c00332{left:598.666667pt;}
.x28_c00332{left:599.733333pt;}
.x5d_c00332{left:601.600000pt;}
.x68_c00332{left:606.933333pt;}
.x1c_c00332{left:610.000000pt;}
.x79_c00332{left:613.600000pt;}
.xe_c00332{left:619.066667pt;}
.xa9_c00332{left:620.666667pt;}
.xda_c00332{left:622.266667pt;}
.xc3_c00332{left:624.400000pt;}
.xb7_c00332{left:627.466667pt;}
.x69_c00332{left:628.400000pt;}
.x5e_c00332{left:631.600000pt;}
.x8a_c00332{left:635.866667pt;}
.x96_c00332{left:638.400000pt;}
.xe2_c00332{left:641.866667pt;}
.x82_c00332{left:643.333333pt;}
.xbe_c00332{left:644.666667pt;}
.x38_c00332{left:646.666667pt;}
.x9f_c00332{left:651.200000pt;}
.x97_c00332{left:653.066667pt;}
.x47_c00332{left:655.200000pt;}
.xdb_c00332{left:656.800000pt;}
.xae_c00332{left:659.200000pt;}
.x1d_c00332{left:660.533333pt;}
.x6a_c00332{left:662.666667pt;}
.x29_c00332{left:665.066667pt;}
.xb8_c00332{left:668.666667pt;}
.xc4_c00332{left:670.533333pt;}
.x7a_c00332{left:675.333333pt;}
.x52_c00332{left:676.400000pt;}
.xa0_c00332{left:677.733333pt;}
.x48_c00332{left:678.933333pt;}
.xe3_c00332{left:680.000000pt;}
.xf_c00332{left:681.466667pt;}
.x39_c00332{left:683.733333pt;}
.x6b_c00332{left:688.933333pt;}
.x8b_c00332{left:691.200000pt;}
.x1e_c00332{left:692.266667pt;}
.xc9_c00332{left:693.866667pt;}
.x5f_c00332{left:697.200000pt;}
.x3a_c00332{left:702.666667pt;}
.x53_c00332{left:706.800000pt;}
.xe4_c00332{left:712.000000pt;}
}





/* 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_c00333 {
    display:none;
  }
  .loading-indicator_c00333.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00333 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_c00333 { 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_c00333" -> "#page-container .classname_c00333")
 */
.pf_c00333 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00333 { /* 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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00333 { /* 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_c00333 { /* 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_c00333 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00333 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00333 {overflow:visible;}
  }
}
.c_c00333 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00333 { /* 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_c00333:after { /* webkit #35443 */
  content: '';
}
.t_c00333:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00333 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 */
}
.__c00333 { /* 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_c00333 { /* info for Javascript */
  display:none;
}
.l_c00333 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00333 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00333 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00333: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_c00333 {
    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_c00333.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00333.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_c00333 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00333{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.000000;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;}
.m3f_c00333{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00333{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00333{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00333{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m90_c00333{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00333{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m28_c00333{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00333{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m59_c00333{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00333{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m89_c00333{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00333{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00333{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m80_c00333{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m40_c00333{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m84_c00333{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13_c00333{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00333{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m86_c00333{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m69_c00333{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m60_c00333{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00333{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00333{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m85_c00333{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00333{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m99_c00333{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m96_c00333{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m91_c00333{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m26_c00333{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m48_c00333{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m55_c00333{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00333{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m81_c00333{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m76_c00333{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m95_c00333{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00333{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m33_c00333{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m52_c00333{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m21_c00333{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m88_c00333{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m20_c00333{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m63_c00333{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00333{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00333{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00333{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m87_c00333{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m97_c00333{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00333{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m73_c00333{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00333{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m19_c00333{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m27_c00333{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00333{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00333{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m58_c00333{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m54_c00333{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00333{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m23_c00333{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m31_c00333{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m79_c00333{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00333{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00333{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00333{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00333{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00333{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00333{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m67_c00333{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m64_c00333{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m50_c00333{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m16_c00333{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00333{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m47_c00333{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m30_c00333{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m93_c00333{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m41_c00333{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m35_c00333{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m62_c00333{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00333{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m65_c00333{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m22_c00333{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00333{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00333{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m43_c00333{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m36_c00333{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m71_c00333{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m32_c00333{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m74_c00333{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00333{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m56_c00333{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m17_c00333{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00333{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m37_c00333{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00333{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00333{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00333{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m44_c00333{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00333{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m25_c00333{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m39_c00333{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m83_c00333{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m78_c00333{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00333{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m68_c00333{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m70_c00333{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00333{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m49_c00333{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00333{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m51_c00333{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m38_c00333{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m61_c00333{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);}
.m12_c00333{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m75_c00333{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m82_c00333{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m57_c00333{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00333{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00333{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10_c00333{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00333{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m15_c00333{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m46_c00333{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m11_c00333{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00333{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00333{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00333{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m42_c00333{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m34_c00333{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m77_c00333{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00333{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m92_c00333{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00333{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00333{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00333{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00333{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m72_c00333{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m0_c00333{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m53_c00333{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.mf_c00333{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m94_c00333{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m98_c00333{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2_c00333{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m5_c00333{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.mb_c00333{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.me_c00333{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00333{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.m9_c00333{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m6_c00333{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.md_c00333{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3_c00333{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.ma_c00333{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m8_c00333{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.mc_c00333{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7_c00333{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m14_c00333{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{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__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00333{word-spacing:-6.944444px;}
.ws2_c00333{word-spacing:-3.846154px;}
.ws3_c00333{word-spacing:-3.333333px;}
.ws4_c00333{word-spacing:-2.399079px;}
.ws5_c00333{word-spacing:0.000000px;}
.ws0_c00333{word-spacing:6.944444px;}
.fc0_c00333{color:transparent;}
.fs1_c00333{font-size:42.000000px;}
.fs0_c00333{font-size:60.000000px;}
.y0_c00333{bottom:0.000000px;}
.y24_c00333{bottom:131.100000px;}
.y23_c00333{bottom:152.400000px;}
.y22_c00333{bottom:172.200000px;}
.y21_c00333{bottom:191.700000px;}
.y20_c00333{bottom:211.500000px;}
.y1f_c00333{bottom:231.000000px;}
.y1e_c00333{bottom:250.800000px;}
.y1d_c00333{bottom:270.300000px;}
.y1c_c00333{bottom:290.550000px;}
.y1b_c00333{bottom:311.100000px;}
.y1a_c00333{bottom:331.200000px;}
.y19_c00333{bottom:350.700000px;}
.y18_c00333{bottom:370.500000px;}
.y17_c00333{bottom:390.600000px;}
.y16_c00333{bottom:410.400000px;}
.y15_c00333{bottom:429.900000px;}
.y14_c00333{bottom:449.700000px;}
.y13_c00333{bottom:469.500000px;}
.y12_c00333{bottom:490.050000px;}
.y11_c00333{bottom:509.850000px;}
.y10_c00333{bottom:529.950000px;}
.yf_c00333{bottom:549.450000px;}
.ye_c00333{bottom:569.250000px;}
.yd_c00333{bottom:589.050000px;}
.yc_c00333{bottom:609.150000px;}
.yb_c00333{bottom:629.100000px;}
.ya_c00333{bottom:648.900000px;}
.y9_c00333{bottom:669.000000px;}
.y8_c00333{bottom:688.800000px;}
.y7_c00333{bottom:708.900000px;}
.y6_c00333{bottom:728.700000px;}
.y5_c00333{bottom:748.800000px;}
.y4_c00333{bottom:781.950000px;}
.y3_c00333{bottom:801.750000px;}
.y2_c00333{bottom:834.900000px;}
.y1_c00333{bottom:1049.400000px;}
.h3_c00333{height:42.000000px;}
.h2_c00333{height:60.000000px;}
.h0_c00333{height:1166.759949px;}
.h1_c00333{height:1167.000000px;}
.w1_c00333{width:913.500000px;}
.w0_c00333{width:913.679993px;}
.x0_c00333{left:0.000000px;}
.xf4_c00333{left:95.400000px;}
.xda_c00333{left:96.750000px;}
.xa5_c00333{left:97.800000px;}
.x6f_c00333{left:98.850000px;}
.x12_c00333{left:100.500000px;}
.xdb_c00333{left:114.450000px;}
.x9c_c00333{left:119.550000px;}
.x70_c00333{left:120.750000px;}
.x10e_c00333{left:123.150000px;}
.x4_c00333{left:124.500000px;}
.x52_c00333{left:127.950000px;}
.xaf_c00333{left:129.600000px;}
.x5e_c00333{left:130.950000px;}
.x3b_c00333{left:135.150000px;}
.x9d_c00333{left:139.650000px;}
.x20_c00333{left:141.900000px;}
.xcf_c00333{left:145.800000px;}
.xf5_c00333{left:147.300000px;}
.x71_c00333{left:150.300000px;}
.x79_c00333{left:153.300000px;}
.x10f_c00333{left:154.500000px;}
.x102_c00333{left:156.750000px;}
.xb0_c00333{left:159.450000px;}
.x2f_c00333{left:160.650000px;}
.x3c_c00333{left:163.200000px;}
.xf6_c00333{left:165.000000px;}
.xd0_c00333{left:167.100000px;}
.x47_c00333{left:169.200000px;}
.x66_c00333{left:173.850000px;}
.xc4_c00333{left:178.950000px;}
.x13_c00333{left:182.250000px;}
.xbc_c00333{left:184.350000px;}
.xf0_c00333{left:186.600000px;}
.x67_c00333{left:189.300000px;}
.xca_c00333{left:190.800000px;}
.xff_c00333{left:191.850000px;}
.x90_c00333{left:193.500000px;}
.x103_c00333{left:195.600000px;}
.xdc_c00333{left:196.950000px;}
.x85_c00333{left:198.600000px;}
.x5f_c00333{left:199.650000px;}
.x21_c00333{left:202.350000px;}
.x7a_c00333{left:203.400000px;}
.x107_c00333{left:205.050000px;}
.x5_c00333{left:206.550000px;}
.xe3_c00333{left:210.450000px;}
.x53_c00333{left:214.350000px;}
.x110_c00333{left:216.000000px;}
.xa6_c00333{left:217.650000px;}
.x48_c00333{left:222.150000px;}
.x91_c00333{left:224.850000px;}
.xd1_c00333{left:226.050000px;}
.x14_c00333{left:231.600000px;}
.x30_c00333{left:234.450000px;}
.xc5_c00333{left:236.250000px;}
.xf7_c00333{left:239.100000px;}
.x7b_c00333{left:240.150000px;}
.x3d_c00333{left:244.950000px;}
.x49_c00333{left:249.150000px;}
.x22_c00333{left:251.700000px;}
.xd2_c00333{left:253.800000px;}
.xbd_c00333{left:257.100000px;}
.x15_c00333{left:258.600000px;}
.x6_c00333{left:262.050000px;}
.xb1_c00333{left:263.100000px;}
.x92_c00333{left:264.450000px;}
.x108_c00333{left:269.550000px;}
.x23_c00333{left:271.800000px;}
.xcb_c00333{left:274.350000px;}
.x31_c00333{left:275.550000px;}
.x9e_c00333{left:277.500000px;}
.x86_c00333{left:279.600000px;}
.x72_c00333{left:280.950000px;}
.x60_c00333{left:285.300000px;}
.x93_c00333{left:286.350000px;}
.x7c_c00333{left:289.500000px;}
.xbe_c00333{left:291.300000px;}
.x87_c00333{left:293.250000px;}
.x16_c00333{left:294.600000px;}
.xc6_c00333{left:295.650000px;}
.x32_c00333{left:296.850000px;}
.xd3_c00333{left:298.500000px;}
.x109_c00333{left:300.900000px;}
.x9f_c00333{left:308.850000px;}
.x61_c00333{left:312.600000px;}
.xa7_c00333{left:313.800000px;}
.xe9_c00333{left:315.300000px;}
.x54_c00333{left:317.250000px;}
.x17_c00333{left:323.100000px;}
.x3e_c00333{left:324.450000px;}
.x7_c00333{left:327.150000px;}
.xe6_c00333{left:329.250000px;}
.x4a_c00333{left:332.700000px;}
.x7d_c00333{left:334.800000px;}
.xa0_c00333{left:336.900000px;}
.x24_c00333{left:339.900000px;}
.x18_c00333{left:342.900000px;}
.x111_c00333{left:346.650000px;}
.x94_c00333{left:347.850000px;}
.x88_c00333{left:350.100000px;}
.xa8_c00333{left:351.900000px;}
.x7e_c00333{left:354.900000px;}
.x55_c00333{left:356.100000px;}
.xd4_c00333{left:357.300000px;}
.x68_c00333{left:360.600000px;}
.x8_c00333{left:363.150000px;}
.x25_c00333{left:364.800000px;}
.x2_c00333{left:366.150000px;}
.xa9_c00333{left:371.400000px;}
.x73_c00333{left:375.150000px;}
.x10_c00333{left:376.200000px;}
.xb5_c00333{left:377.550000px;}
.xbf_c00333{left:379.500000px;}
.xb2_c00333{left:381.900000px;}
.x26_c00333{left:383.550000px;}
.x33_c00333{left:385.050000px;}
.x89_c00333{left:388.950000px;}
.x7f_c00333{left:391.200000px;}
.xe7_c00333{left:392.250000px;}
.x9_c00333{left:393.750000px;}
.xdd_c00333{left:395.850000px;}
.xb3_c00333{left:397.800000px;}
.xf8_c00333{left:401.850000px;}
.x95_c00333{left:404.400000px;}
.x56_c00333{left:405.750000px;}
.xd5_c00333{left:407.400000px;}
.x4b_c00333{left:410.100000px;}
.x3f_c00333{left:412.650000px;}
.x100_c00333{left:414.750000px;}
.x1_c00333{left:416.100000px;}
.x69_c00333{left:417.900000px;}
.x80_c00333{left:419.700000px;}
.xde_c00333{left:424.650000px;}
.xb4_c00333{left:426.900000px;}
.x112_c00333{left:427.950000px;}
.x40_c00333{left:430.650000px;}
.x11_c00333{left:437.400000px;}
.xea_c00333{left:438.450000px;}
.xa_c00333{left:439.800000px;}
.x27_c00333{left:440.850000px;}
.x34_c00333{left:445.200000px;}
.x19_c00333{left:446.550000px;}
.x3_c00333{left:450.000000px;}
.xa1_c00333{left:452.100000px;}
.xd6_c00333{left:453.150000px;}
.xdf_c00333{left:455.550000px;}
.x41_c00333{left:457.350000px;}
.xb_c00333{left:459.900000px;}
.x8a_c00333{left:461.400000px;}
.xcc_c00333{left:464.100000px;}
.x74_c00333{left:467.400000px;}
.x4c_c00333{left:472.050000px;}
.xaa_c00333{left:473.250000px;}
.xf1_c00333{left:474.900000px;}
.x35_c00333{left:476.850000px;}
.x10a_c00333{left:479.100000px;}
.x57_c00333{left:480.600000px;}
.x8b_c00333{left:482.250000px;}
.xe8_c00333{left:484.800000px;}
.xb6_c00333{left:486.150000px;}
.x62_c00333{left:487.200000px;}
.x81_c00333{left:490.950000px;}
.x28_c00333{left:492.000000px;}
.x1a_c00333{left:493.350000px;}
.x104_c00333{left:497.400000px;}
.xc0_c00333{left:500.550000px;}
.xc7_c00333{left:504.150000px;}
.x36_c00333{left:508.500000px;}
.xab_c00333{left:510.300000px;}
.x58_c00333{left:511.500000px;}
.x42_c00333{left:513.150000px;}
.xeb_c00333{left:514.800000px;}
.x1b_c00333{left:517.500000px;}
.x82_c00333{left:518.700000px;}
.x4d_c00333{left:521.700000px;}
.x105_c00333{left:529.800000px;}
.x29_c00333{left:531.900000px;}
.x96_c00333{left:534.000000px;}
.xa2_c00333{left:535.950000px;}
.x63_c00333{left:537.300000px;}
.xf9_c00333{left:538.650000px;}
.x43_c00333{left:539.850000px;}
.xd7_c00333{left:541.350000px;}
.xb7_c00333{left:543.450000px;}
.xcd_c00333{left:545.850000px;}
.x10b_c00333{left:547.800000px;}
.xac_c00333{left:549.600000px;}
.x6a_c00333{left:550.800000px;}
.xc_c00333{left:552.750000px;}
.x64_c00333{left:555.000000px;}
.x8c_c00333{left:557.400000px;}
.xfa_c00333{left:558.450000px;}
.x1c_c00333{left:559.950000px;}
.x97_c00333{left:563.100000px;}
.x2a_c00333{left:565.050000px;}
.xad_c00333{left:569.400000px;}
.x75_c00333{left:571.500000px;}
.xb8_c00333{left:573.000000px;}
.xce_c00333{left:576.750000px;}
.x37_c00333{left:582.000000px;}
.xf2_c00333{left:583.200000px;}
.x4e_c00333{left:584.700000px;}
.xfb_c00333{left:586.500000px;}
.xb9_c00333{left:588.150000px;}
.x8d_c00333{left:590.100000px;}
.x59_c00333{left:592.500000px;}
.xd8_c00333{left:593.850000px;}
.x76_c00333{left:595.650000px;}
.xae_c00333{left:597.450000px;}
.x101_c00333{left:598.500000px;}
.x4f_c00333{left:599.850000px;}
.x65_c00333{left:601.050000px;}
.xd_c00333{left:604.200000px;}
.xc1_c00333{left:608.400000px;}
.x44_c00333{left:611.550000px;}
.x2b_c00333{left:612.600000px;}
.x6b_c00333{left:616.350000px;}
.xe0_c00333{left:617.850000px;}
.x98_c00333{left:619.200000px;}
.xe_c00333{left:623.700000px;}
.x106_c00333{left:625.200000px;}
.xc2_c00333{left:626.400000px;}
.x5a_c00333{left:628.200000px;}
.x1d_c00333{left:630.450000px;}
.x50_c00333{left:631.950000px;}
.x38_c00333{left:633.450000px;}
.x6c_c00333{left:635.400000px;}
.xba_c00333{left:638.550000px;}
.x99_c00333{left:639.750000px;}
.x83_c00333{left:641.850000px;}
.x45_c00333{left:642.900000px;}
.x2c_c00333{left:645.000000px;}
.xfc_c00333{left:649.500000px;}
.x1e_c00333{left:652.800000px;}
.xec_c00333{left:654.150000px;}
.x10c_c00333{left:656.400000px;}
.xe4_c00333{left:657.900000px;}
.x6d_c00333{left:660.900000px;}
.xc3_c00333{left:662.400000px;}
.xd9_c00333{left:663.750000px;}
.xf_c00333{left:670.200000px;}
.x5b_c00333{left:673.950000px;}
.xe1_c00333{left:678.000000px;}
.x9a_c00333{left:679.050000px;}
.x77_c00333{left:681.750000px;}
.xed_c00333{left:682.950000px;}
.x39_c00333{left:684.150000px;}
.x46_c00333{left:686.850000px;}
.xa3_c00333{left:690.300000px;}
.x8e_c00333{left:691.350000px;}
.xc8_c00333{left:693.150000px;}
.x2d_c00333{left:694.350000px;}
.x84_c00333{left:696.600000px;}
.xfd_c00333{left:698.400000px;}
.xf3_c00333{left:700.500000px;}
.xee_c00333{left:710.700000px;}
.xe5_c00333{left:712.950000px;}
.x51_c00333{left:714.000000px;}
.xe2_c00333{left:716.550000px;}
.xa4_c00333{left:719.850000px;}
.x9b_c00333{left:723.300000px;}
.xfe_c00333{left:725.700000px;}
.x3a_c00333{left:729.150000px;}
.x10d_c00333{left:730.500000px;}
.x5c_c00333{left:732.600000px;}
.xbb_c00333{left:733.650000px;}
.x2e_c00333{left:734.700000px;}
.x8f_c00333{left:739.200000px;}
.xef_c00333{left:741.300000px;}
.x6e_c00333{left:742.500000px;}
.x5d_c00333{left:743.700000px;}
.x1f_c00333{left:751.500000px;}
.x78_c00333{left:753.000000px;}
.xc9_c00333{left:757.950000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws1_c00333{word-spacing:-6.172840pt;}
.ws2_c00333{word-spacing:-3.418803pt;}
.ws3_c00333{word-spacing:-2.962963pt;}
.ws4_c00333{word-spacing:-2.132515pt;}
.ws5_c00333{word-spacing:0.000000pt;}
.ws0_c00333{word-spacing:6.172840pt;}
.fs1_c00333{font-size:37.333333pt;}
.fs0_c00333{font-size:53.333333pt;}
.y0_c00333{bottom:0.000000pt;}
.y24_c00333{bottom:116.533333pt;}
.y23_c00333{bottom:135.466667pt;}
.y22_c00333{bottom:153.066667pt;}
.y21_c00333{bottom:170.400000pt;}
.y20_c00333{bottom:188.000000pt;}
.y1f_c00333{bottom:205.333333pt;}
.y1e_c00333{bottom:222.933333pt;}
.y1d_c00333{bottom:240.266667pt;}
.y1c_c00333{bottom:258.266667pt;}
.y1b_c00333{bottom:276.533333pt;}
.y1a_c00333{bottom:294.400000pt;}
.y19_c00333{bottom:311.733333pt;}
.y18_c00333{bottom:329.333333pt;}
.y17_c00333{bottom:347.200000pt;}
.y16_c00333{bottom:364.800000pt;}
.y15_c00333{bottom:382.133333pt;}
.y14_c00333{bottom:399.733333pt;}
.y13_c00333{bottom:417.333333pt;}
.y12_c00333{bottom:435.600000pt;}
.y11_c00333{bottom:453.200000pt;}
.y10_c00333{bottom:471.066667pt;}
.yf_c00333{bottom:488.400000pt;}
.ye_c00333{bottom:506.000000pt;}
.yd_c00333{bottom:523.600000pt;}
.yc_c00333{bottom:541.466667pt;}
.yb_c00333{bottom:559.200000pt;}
.ya_c00333{bottom:576.800000pt;}
.y9_c00333{bottom:594.666667pt;}
.y8_c00333{bottom:612.266667pt;}
.y7_c00333{bottom:630.133333pt;}
.y6_c00333{bottom:647.733333pt;}
.y5_c00333{bottom:665.600000pt;}
.y4_c00333{bottom:695.066667pt;}
.y3_c00333{bottom:712.666667pt;}
.y2_c00333{bottom:742.133333pt;}
.y1_c00333{bottom:932.800000pt;}
.h3_c00333{height:37.333333pt;}
.h2_c00333{height:53.333333pt;}
.h0_c00333{height:1037.119955pt;}
.h1_c00333{height:1037.333333pt;}
.w1_c00333{width:812.000000pt;}
.w0_c00333{width:812.159993pt;}
.x0_c00333{left:0.000000pt;}
.xf4_c00333{left:84.800000pt;}
.xda_c00333{left:86.000000pt;}
.xa5_c00333{left:86.933333pt;}
.x6f_c00333{left:87.866667pt;}
.x12_c00333{left:89.333333pt;}
.xdb_c00333{left:101.733333pt;}
.x9c_c00333{left:106.266667pt;}
.x70_c00333{left:107.333333pt;}
.x10e_c00333{left:109.466667pt;}
.x4_c00333{left:110.666667pt;}
.x52_c00333{left:113.733333pt;}
.xaf_c00333{left:115.200000pt;}
.x5e_c00333{left:116.400000pt;}
.x3b_c00333{left:120.133333pt;}
.x9d_c00333{left:124.133333pt;}
.x20_c00333{left:126.133333pt;}
.xcf_c00333{left:129.600000pt;}
.xf5_c00333{left:130.933333pt;}
.x71_c00333{left:133.600000pt;}
.x79_c00333{left:136.266667pt;}
.x10f_c00333{left:137.333333pt;}
.x102_c00333{left:139.333333pt;}
.xb0_c00333{left:141.733333pt;}
.x2f_c00333{left:142.800000pt;}
.x3c_c00333{left:145.066667pt;}
.xf6_c00333{left:146.666667pt;}
.xd0_c00333{left:148.533333pt;}
.x47_c00333{left:150.400000pt;}
.x66_c00333{left:154.533333pt;}
.xc4_c00333{left:159.066667pt;}
.x13_c00333{left:162.000000pt;}
.xbc_c00333{left:163.866667pt;}
.xf0_c00333{left:165.866667pt;}
.x67_c00333{left:168.266667pt;}
.xca_c00333{left:169.600000pt;}
.xff_c00333{left:170.533333pt;}
.x90_c00333{left:172.000000pt;}
.x103_c00333{left:173.866667pt;}
.xdc_c00333{left:175.066667pt;}
.x85_c00333{left:176.533333pt;}
.x5f_c00333{left:177.466667pt;}
.x21_c00333{left:179.866667pt;}
.x7a_c00333{left:180.800000pt;}
.x107_c00333{left:182.266667pt;}
.x5_c00333{left:183.600000pt;}
.xe3_c00333{left:187.066667pt;}
.x53_c00333{left:190.533333pt;}
.x110_c00333{left:192.000000pt;}
.xa6_c00333{left:193.466667pt;}
.x48_c00333{left:197.466667pt;}
.x91_c00333{left:199.866667pt;}
.xd1_c00333{left:200.933333pt;}
.x14_c00333{left:205.866667pt;}
.x30_c00333{left:208.400000pt;}
.xc5_c00333{left:210.000000pt;}
.xf7_c00333{left:212.533333pt;}
.x7b_c00333{left:213.466667pt;}
.x3d_c00333{left:217.733333pt;}
.x49_c00333{left:221.466667pt;}
.x22_c00333{left:223.733333pt;}
.xd2_c00333{left:225.600000pt;}
.xbd_c00333{left:228.533333pt;}
.x15_c00333{left:229.866667pt;}
.x6_c00333{left:232.933333pt;}
.xb1_c00333{left:233.866667pt;}
.x92_c00333{left:235.066667pt;}
.x108_c00333{left:239.600000pt;}
.x23_c00333{left:241.600000pt;}
.xcb_c00333{left:243.866667pt;}
.x31_c00333{left:244.933333pt;}
.x9e_c00333{left:246.666667pt;}
.x86_c00333{left:248.533333pt;}
.x72_c00333{left:249.733333pt;}
.x60_c00333{left:253.600000pt;}
.x93_c00333{left:254.533333pt;}
.x7c_c00333{left:257.333333pt;}
.xbe_c00333{left:258.933333pt;}
.x87_c00333{left:260.666667pt;}
.x16_c00333{left:261.866667pt;}
.xc6_c00333{left:262.800000pt;}
.x32_c00333{left:263.866667pt;}
.xd3_c00333{left:265.333333pt;}
.x109_c00333{left:267.466667pt;}
.x9f_c00333{left:274.533333pt;}
.x61_c00333{left:277.866667pt;}
.xa7_c00333{left:278.933333pt;}
.xe9_c00333{left:280.266667pt;}
.x54_c00333{left:282.000000pt;}
.x17_c00333{left:287.200000pt;}
.x3e_c00333{left:288.400000pt;}
.x7_c00333{left:290.800000pt;}
.xe6_c00333{left:292.666667pt;}
.x4a_c00333{left:295.733333pt;}
.x7d_c00333{left:297.600000pt;}
.xa0_c00333{left:299.466667pt;}
.x24_c00333{left:302.133333pt;}
.x18_c00333{left:304.800000pt;}
.x111_c00333{left:308.133333pt;}
.x94_c00333{left:309.200000pt;}
.x88_c00333{left:311.200000pt;}
.xa8_c00333{left:312.800000pt;}
.x7e_c00333{left:315.466667pt;}
.x55_c00333{left:316.533333pt;}
.xd4_c00333{left:317.600000pt;}
.x68_c00333{left:320.533333pt;}
.x8_c00333{left:322.800000pt;}
.x25_c00333{left:324.266667pt;}
.x2_c00333{left:325.466667pt;}
.xa9_c00333{left:330.133333pt;}
.x73_c00333{left:333.466667pt;}
.x10_c00333{left:334.400000pt;}
.xb5_c00333{left:335.600000pt;}
.xbf_c00333{left:337.333333pt;}
.xb2_c00333{left:339.466667pt;}
.x26_c00333{left:340.933333pt;}
.x33_c00333{left:342.266667pt;}
.x89_c00333{left:345.733333pt;}
.x7f_c00333{left:347.733333pt;}
.xe7_c00333{left:348.666667pt;}
.x9_c00333{left:350.000000pt;}
.xdd_c00333{left:351.866667pt;}
.xb3_c00333{left:353.600000pt;}
.xf8_c00333{left:357.200000pt;}
.x95_c00333{left:359.466667pt;}
.x56_c00333{left:360.666667pt;}
.xd5_c00333{left:362.133333pt;}
.x4b_c00333{left:364.533333pt;}
.x3f_c00333{left:366.800000pt;}
.x100_c00333{left:368.666667pt;}
.x1_c00333{left:369.866667pt;}
.x69_c00333{left:371.466667pt;}
.x80_c00333{left:373.066667pt;}
.xde_c00333{left:377.466667pt;}
.xb4_c00333{left:379.466667pt;}
.x112_c00333{left:380.400000pt;}
.x40_c00333{left:382.800000pt;}
.x11_c00333{left:388.800000pt;}
.xea_c00333{left:389.733333pt;}
.xa_c00333{left:390.933333pt;}
.x27_c00333{left:391.866667pt;}
.x34_c00333{left:395.733333pt;}
.x19_c00333{left:396.933333pt;}
.x3_c00333{left:400.000000pt;}
.xa1_c00333{left:401.866667pt;}
.xd6_c00333{left:402.800000pt;}
.xdf_c00333{left:404.933333pt;}
.x41_c00333{left:406.533333pt;}
.xb_c00333{left:408.800000pt;}
.x8a_c00333{left:410.133333pt;}
.xcc_c00333{left:412.533333pt;}
.x74_c00333{left:415.466667pt;}
.x4c_c00333{left:419.600000pt;}
.xaa_c00333{left:420.666667pt;}
.xf1_c00333{left:422.133333pt;}
.x35_c00333{left:423.866667pt;}
.x10a_c00333{left:425.866667pt;}
.x57_c00333{left:427.200000pt;}
.x8b_c00333{left:428.666667pt;}
.xe8_c00333{left:430.933333pt;}
.xb6_c00333{left:432.133333pt;}
.x62_c00333{left:433.066667pt;}
.x81_c00333{left:436.400000pt;}
.x28_c00333{left:437.333333pt;}
.x1a_c00333{left:438.533333pt;}
.x104_c00333{left:442.133333pt;}
.xc0_c00333{left:444.933333pt;}
.xc7_c00333{left:448.133333pt;}
.x36_c00333{left:452.000000pt;}
.xab_c00333{left:453.600000pt;}
.x58_c00333{left:454.666667pt;}
.x42_c00333{left:456.133333pt;}
.xeb_c00333{left:457.600000pt;}
.x1b_c00333{left:460.000000pt;}
.x82_c00333{left:461.066667pt;}
.x4d_c00333{left:463.733333pt;}
.x105_c00333{left:470.933333pt;}
.x29_c00333{left:472.800000pt;}
.x96_c00333{left:474.666667pt;}
.xa2_c00333{left:476.400000pt;}
.x63_c00333{left:477.600000pt;}
.xf9_c00333{left:478.800000pt;}
.x43_c00333{left:479.866667pt;}
.xd7_c00333{left:481.200000pt;}
.xb7_c00333{left:483.066667pt;}
.xcd_c00333{left:485.200000pt;}
.x10b_c00333{left:486.933333pt;}
.xac_c00333{left:488.533333pt;}
.x6a_c00333{left:489.600000pt;}
.xc_c00333{left:491.333333pt;}
.x64_c00333{left:493.333333pt;}
.x8c_c00333{left:495.466667pt;}
.xfa_c00333{left:496.400000pt;}
.x1c_c00333{left:497.733333pt;}
.x97_c00333{left:500.533333pt;}
.x2a_c00333{left:502.266667pt;}
.xad_c00333{left:506.133333pt;}
.x75_c00333{left:508.000000pt;}
.xb8_c00333{left:509.333333pt;}
.xce_c00333{left:512.666667pt;}
.x37_c00333{left:517.333333pt;}
.xf2_c00333{left:518.400000pt;}
.x4e_c00333{left:519.733333pt;}
.xfb_c00333{left:521.333333pt;}
.xb9_c00333{left:522.800000pt;}
.x8d_c00333{left:524.533333pt;}
.x59_c00333{left:526.666667pt;}
.xd8_c00333{left:527.866667pt;}
.x76_c00333{left:529.466667pt;}
.xae_c00333{left:531.066667pt;}
.x101_c00333{left:532.000000pt;}
.x4f_c00333{left:533.200000pt;}
.x65_c00333{left:534.266667pt;}
.xd_c00333{left:537.066667pt;}
.xc1_c00333{left:540.800000pt;}
.x44_c00333{left:543.600000pt;}
.x2b_c00333{left:544.533333pt;}
.x6b_c00333{left:547.866667pt;}
.xe0_c00333{left:549.200000pt;}
.x98_c00333{left:550.400000pt;}
.xe_c00333{left:554.400000pt;}
.x106_c00333{left:555.733333pt;}
.xc2_c00333{left:556.800000pt;}
.x5a_c00333{left:558.400000pt;}
.x1d_c00333{left:560.400000pt;}
.x50_c00333{left:561.733333pt;}
.x38_c00333{left:563.066667pt;}
.x6c_c00333{left:564.800000pt;}
.xba_c00333{left:567.600000pt;}
.x99_c00333{left:568.666667pt;}
.x83_c00333{left:570.533333pt;}
.x45_c00333{left:571.466667pt;}
.x2c_c00333{left:573.333333pt;}
.xfc_c00333{left:577.333333pt;}
.x1e_c00333{left:580.266667pt;}
.xec_c00333{left:581.466667pt;}
.x10c_c00333{left:583.466667pt;}
.xe4_c00333{left:584.800000pt;}
.x6d_c00333{left:587.466667pt;}
.xc3_c00333{left:588.800000pt;}
.xd9_c00333{left:590.000000pt;}
.xf_c00333{left:595.733333pt;}
.x5b_c00333{left:599.066667pt;}
.xe1_c00333{left:602.666667pt;}
.x9a_c00333{left:603.600000pt;}
.x77_c00333{left:606.000000pt;}
.xed_c00333{left:607.066667pt;}
.x39_c00333{left:608.133333pt;}
.x46_c00333{left:610.533333pt;}
.xa3_c00333{left:613.600000pt;}
.x8e_c00333{left:614.533333pt;}
.xc8_c00333{left:616.133333pt;}
.x2d_c00333{left:617.200000pt;}
.x84_c00333{left:619.200000pt;}
.xfd_c00333{left:620.800000pt;}
.xf3_c00333{left:622.666667pt;}
.xee_c00333{left:631.733333pt;}
.xe5_c00333{left:633.733333pt;}
.x51_c00333{left:634.666667pt;}
.xe2_c00333{left:636.933333pt;}
.xa4_c00333{left:639.866667pt;}
.x9b_c00333{left:642.933333pt;}
.xfe_c00333{left:645.066667pt;}
.x3a_c00333{left:648.133333pt;}
.x10d_c00333{left:649.333333pt;}
.x5c_c00333{left:651.200000pt;}
.xbb_c00333{left:652.133333pt;}
.x2e_c00333{left:653.066667pt;}
.x8f_c00333{left:657.066667pt;}
.xef_c00333{left:658.933333pt;}
.x6e_c00333{left:660.000000pt;}
.x5d_c00333{left:661.066667pt;}
.x1f_c00333{left:668.000000pt;}
.x78_c00333{left:669.333333pt;}
.xc9_c00333{left:673.733333pt;}
}





/* 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_c00334 {
    display:none;
  }
  .loading-indicator_c00334.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00334 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_c00334 { 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_c00334" -> "#page-container .classname_c00334")
 */
.pf_c00334 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00334 { /* 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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00334 { /* 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_c00334 { /* 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_c00334 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00334 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00334 {overflow:visible;}
  }
}
.c_c00334 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00334 { /* 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_c00334:after { /* webkit #35443 */
  content: '';
}
.t_c00334:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00334 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 */
}
.__c00334 { /* 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_c00334 { /* info for Javascript */
  display:none;
}
.l_c00334 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00334 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00334 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00334: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_c00334 {
    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_c00334.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00334.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_c00334 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00334{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00334;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.000000;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;}
.ma3_c00334{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m69_c00334{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m21_c00334{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00334{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00334{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m86_c00334{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00334{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00334{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.mab_c00334{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00334{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c00334{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00334{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mac_c00334{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00334{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00334{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00334{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m73_c00334{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m60_c00334{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00334{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00334{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00334{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00334{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00334{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m41_c00334{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m71_c00334{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00334{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m64_c00334{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m58_c00334{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00334{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00334{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00334{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00334{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00334{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m17_c00334{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00334{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m37_c00334{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00334{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00334{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m53_c00334{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m88_c00334{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00334{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00334{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00334{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mad_c00334{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m10_c00334{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00334{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00334{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00334{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00334{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m32_c00334{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m6_c00334{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00334{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m57_c00334{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00334{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00334{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.maa_c00334{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5_c00334{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m62_c00334{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m55_c00334{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m61_c00334{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00334{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m26_c00334{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m79_c00334{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00334{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00334{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00334{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m25_c00334{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8_c00334{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m80_c00334{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00334{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m83_c00334{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m78_c00334{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m39_c00334{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m45_c00334{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4_c00334{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m20_c00334{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc_c00334{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m87_c00334{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m13_c00334{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m18_c00334{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00334{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m72_c00334{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m59_c00334{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00334{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m50_c00334{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m68_c00334{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00334{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9_c00334{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m44_c00334{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00334{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m46_c00334{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m34_c00334{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00334{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m24_c00334{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00334{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m56_c00334{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00334{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m93_c00334{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);}
.m29_c00334{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23_c00334{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m74_c00334{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00334{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00334{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me_c00334{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00334{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00334{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00334{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma_c00334{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m63_c00334{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00334{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m43_c00334{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00334{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m35_c00334{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m94_c00334{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m14_c00334{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00334{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m48_c00334{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m19_c00334{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m16_c00334{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00334{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00334{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m40_c00334{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m38_c00334{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m90_c00334{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00334{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m42_c00334{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m51_c00334{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00334{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00334{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m67_c00334{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m33_c00334{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m98_c00334{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m81_c00334{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m95_c00334{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00334{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.md_c00334{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m31_c00334{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m96_c00334{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m66_c00334{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m28_c00334{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00334{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00334{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m15_c00334{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00334{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mf_c00334{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mb_c00334{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m30_c00334{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m99_c00334{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00334{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00334{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00334{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m47_c00334{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m52_c00334{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m11_c00334{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00334{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m27_c00334{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m49_c00334{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2_c00334{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m82_c00334{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m77_c00334{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m76_c00334{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m65_c00334{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m97_c00334{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m12_c00334{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m84_c00334{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m75_c00334{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m54_c00334{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00334{transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314000,0.000000,0.000000,0.250000,0,0);}
.m0_c00334{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00334{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00334{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00334{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m70_c00334{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m92_c00334{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m36_c00334{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00334{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m89_c00334{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00334{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.maf_c00334{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m91_c00334{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls0_c00334{letter-spacing:0.000000px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{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__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00334{word-spacing:-4.375000px;}
.ws6_c00334{word-spacing:-2.258065px;}
.wsa_c00334{word-spacing:0.000000px;}
.ws5_c00334{word-spacing:1.329714px;}
.ws8_c00334{word-spacing:1.500000px;}
.ws0_c00334{word-spacing:5.750000px;}
.ws2_c00334{word-spacing:6.250000px;}
.ws7_c00334{word-spacing:7.838800px;}
.ws9_c00334{word-spacing:9.636678px;}
.ws1_c00334{word-spacing:11.875000px;}
.ws3_c00334{word-spacing:14.423077px;}
.fc0_c00334{color:transparent;}
.fs0_c00334{font-size:54.000000px;}
.y0_c00334{bottom:0.000000px;}
.y2d_c00334{bottom:162.300000px;}
.y2c_c00334{bottom:177.900000px;}
.y2b_c00334{bottom:193.350000px;}
.y2a_c00334{bottom:209.100000px;}
.y29_c00334{bottom:224.700000px;}
.y28_c00334{bottom:263.550000px;}
.y27_c00334{bottom:283.350000px;}
.y26_c00334{bottom:303.150000px;}
.y25_c00334{bottom:322.950000px;}
.y24_c00334{bottom:343.050000px;}
.y23_c00334{bottom:362.850000px;}
.y22_c00334{bottom:382.950000px;}
.y21_c00334{bottom:403.050000px;}
.y20_c00334{bottom:423.150000px;}
.y1f_c00334{bottom:442.950000px;}
.y1e_c00334{bottom:462.750000px;}
.y1d_c00334{bottom:482.850000px;}
.y1c_c00334{bottom:502.350000px;}
.y1b_c00334{bottom:522.150000px;}
.y1a_c00334{bottom:542.250000px;}
.y19_c00334{bottom:562.050000px;}
.y18_c00334{bottom:581.850000px;}
.y17_c00334{bottom:601.950000px;}
.y16_c00334{bottom:621.600000px;}
.y15_c00334{bottom:641.700000px;}
.y14_c00334{bottom:661.500000px;}
.y13_c00334{bottom:681.300000px;}
.y12_c00334{bottom:701.400000px;}
.y11_c00334{bottom:721.200000px;}
.y10_c00334{bottom:741.000000px;}
.yf_c00334{bottom:761.100000px;}
.ye_c00334{bottom:780.900000px;}
.yd_c00334{bottom:800.700000px;}
.yc_c00334{bottom:820.500000px;}
.yb_c00334{bottom:840.300000px;}
.ya_c00334{bottom:860.100000px;}
.y9_c00334{bottom:880.650000px;}
.y8_c00334{bottom:900.450000px;}
.y7_c00334{bottom:920.250000px;}
.y6_c00334{bottom:940.350000px;}
.y5_c00334{bottom:960.150000px;}
.y4_c00334{bottom:979.950000px;}
.y3_c00334{bottom:1000.050000px;}
.y2_c00334{bottom:1019.550000px;}
.y1_c00334{bottom:1057.650000px;}
.h2_c00334{height:54.000000px;}
.h0_c00334{height:1166.759949px;}
.h1_c00334{height:1167.000000px;}
.w1_c00334{width:913.500000px;}
.w0_c00334{width:913.679993px;}
.x0_c00334{left:0.000000px;}
.x132_c00334{left:138.600000px;}
.x11e_c00334{left:140.250000px;}
.x112_c00334{left:141.450000px;}
.x10a_c00334{left:142.650000px;}
.xfe_c00334{left:143.700000px;}
.xe2_c00334{left:144.900000px;}
.xba_c00334{left:146.100000px;}
.xa0_c00334{left:147.450000px;}
.x7b_c00334{left:148.650000px;}
.x4a_c00334{left:150.150000px;}
.x13_c00334{left:152.100000px;}
.x1_c00334{left:153.300000px;}
.x139_c00334{left:156.300000px;}
.x121_c00334{left:159.450000px;}
.x113_c00334{left:161.250000px;}
.xcd_c00334{left:165.450000px;}
.xa7_c00334{left:168.750000px;}
.x66_c00334{left:171.150000px;}
.x122_c00334{left:172.800000px;}
.xc0_c00334{left:174.300000px;}
.xbb_c00334{left:177.000000px;}
.x12c_c00334{left:178.200000px;}
.x6f_c00334{left:180.750000px;}
.x3b_c00334{left:182.100000px;}
.x3_c00334{left:183.600000px;}
.x23_c00334{left:187.500000px;}
.xa1_c00334{left:190.350000px;}
.x4b_c00334{left:191.850000px;}
.x92_c00334{left:193.200000px;}
.xde_c00334{left:194.400000px;}
.x85_c00334{left:197.550000px;}
.x32_c00334{left:199.950000px;}
.xce_c00334{left:201.750000px;}
.x7c_c00334{left:203.700000px;}
.xae_c00334{left:204.750000px;}
.xee_c00334{left:208.200000px;}
.x93_c00334{left:211.200000px;}
.x3c_c00334{left:213.000000px;}
.xfa_c00334{left:214.350000px;}
.x4_c00334{left:216.750000px;}
.xf4_c00334{left:217.950000px;}
.x52_c00334{left:219.300000px;}
.x104_c00334{left:222.000000px;}
.x14_c00334{left:223.350000px;}
.x70_c00334{left:227.550000px;}
.xc1_c00334{left:229.050000px;}
.x33_c00334{left:231.600000px;}
.x86_c00334{left:235.350000px;}
.xc6_c00334{left:237.300000px;}
.x3d_c00334{left:239.250000px;}
.xff_c00334{left:241.650000px;}
.x24_c00334{left:244.050000px;}
.xa8_c00334{left:247.200000px;}
.xcf_c00334{left:248.850000px;}
.x15_c00334{left:251.400000px;}
.x4c_c00334{left:252.750000px;}
.x71_c00334{left:253.800000px;}
.x5_c00334{left:256.050000px;}
.x123_c00334{left:257.400000px;}
.xdf_c00334{left:259.200000px;}
.x133_c00334{left:260.550000px;}
.x5c_c00334{left:261.600000px;}
.xa2_c00334{left:265.200000px;}
.xfb_c00334{left:266.550000px;}
.x87_c00334{left:268.050000px;}
.x10d_c00334{left:269.850000px;}
.x34_c00334{left:270.900000px;}
.xbc_c00334{left:273.900000px;}
.xc7_c00334{left:275.100000px;}
.x94_c00334{left:278.100000px;}
.x5d_c00334{left:279.300000px;}
.xd0_c00334{left:280.950000px;}
.x117_c00334{left:283.050000px;}
.x25_c00334{left:284.700000px;}
.xd8_c00334{left:287.250000px;}
.x53_c00334{left:288.750000px;}
.x3e_c00334{left:291.900000px;}
.xa9_c00334{left:292.950000px;}
.x4d_c00334{left:297.750000px;}
.xf5_c00334{left:302.550000px;}
.x72_c00334{left:304.500000px;}
.x7d_c00334{left:306.300000px;}
.xb7_c00334{left:307.800000px;}
.x16_c00334{left:309.750000px;}
.x26_c00334{left:311.400000px;}
.x134_c00334{left:312.750000px;}
.x35_c00334{left:314.100000px;}
.xc8_c00334{left:315.450000px;}
.x6_c00334{left:317.250000px;}
.xbd_c00334{left:318.600000px;}
.x67_c00334{left:319.800000px;}
.x54_c00334{left:322.200000px;}
.xe3_c00334{left:326.250000px;}
.xd9_c00334{left:328.350000px;}
.x5e_c00334{left:331.500000px;}
.x88_c00334{left:333.150000px;}
.x12d_c00334{left:334.800000px;}
.xd1_c00334{left:336.450000px;}
.x3f_c00334{left:338.700000px;}
.x7_c00334{left:340.350000px;}
.xa3_c00334{left:341.850000px;}
.x36_c00334{left:342.900000px;}
.x13a_c00334{left:343.950000px;}
.x11f_c00334{left:345.000000px;}
.x73_c00334{left:346.650000px;}
.x105_c00334{left:350.100000px;}
.x17_c00334{left:351.900000px;}
.x27_c00334{left:353.100000px;}
.xc2_c00334{left:355.800000px;}
.x4e_c00334{left:357.150000px;}
.x89_c00334{left:358.350000px;}
.xa4_c00334{left:366.000000px;}
.x40_c00334{left:369.300000px;}
.x7e_c00334{left:371.100000px;}
.x126_c00334{left:373.650000px;}
.xaf_c00334{left:374.850000px;}
.x100_c00334{left:379.200000px;}
.xc9_c00334{left:380.550000px;}
.x18_c00334{left:382.800000px;}
.x37_c00334{left:385.800000px;}
.x13b_c00334{left:386.850000px;}
.x127_c00334{left:388.050000px;}
.x74_c00334{left:390.900000px;}
.x8_c00334{left:393.600000px;}
.x55_c00334{left:395.250000px;}
.x8a_c00334{left:396.450000px;}
.x10b_c00334{left:398.700000px;}
.xd2_c00334{left:401.550000px;}
.xef_c00334{left:403.350000px;}
.x95_c00334{left:404.850000px;}
.x38_c00334{left:406.650000px;}
.x11a_c00334{left:409.500000px;}
.xea_c00334{left:412.050000px;}
.x41_c00334{left:414.000000px;}
.x28_c00334{left:415.800000px;}
.x12e_c00334{left:417.600000px;}
.x75_c00334{left:418.950000px;}
.xd3_c00334{left:420.300000px;}
.x68_c00334{left:422.550000px;}
.xc3_c00334{left:425.550000px;}
.x5f_c00334{left:426.900000px;}
.xaa_c00334{left:429.000000px;}
.x29_c00334{left:430.200000px;}
.x110_c00334{left:432.000000px;}
.x8b_c00334{left:433.200000px;}
.x96_c00334{left:436.200000px;}
.x9_c00334{left:442.500000px;}
.x10c_c00334{left:444.150000px;}
.xab_c00334{left:446.700000px;}
.xd4_c00334{left:448.050000px;}
.x2_c00334{left:450.300000px;}
.x7f_c00334{left:451.350000px;}
.x56_c00334{left:453.150000px;}
.x19_c00334{left:455.100000px;}
.x120_c00334{left:457.200000px;}
.x76_c00334{left:461.100000px;}
.x2a_c00334{left:462.300000px;}
.xa_c00334{left:463.800000px;}
.x97_c00334{left:465.000000px;}
.xb0_c00334{left:466.200000px;}
.xbe_c00334{left:468.450000px;}
.x69_c00334{left:471.150000px;}
.xda_c00334{left:472.350000px;}
.xca_c00334{left:473.400000px;}
.xa5_c00334{left:474.750000px;}
.xac_c00334{left:476.250000px;}
.x1a_c00334{left:478.200000px;}
.x42_c00334{left:479.550000px;}
.xc4_c00334{left:480.600000px;}
.xe4_c00334{left:482.850000px;}
.x39_c00334{left:484.500000px;}
.x60_c00334{left:486.600000px;}
.xeb_c00334{left:489.900000px;}
.xfc_c00334{left:493.050000px;}
.xb_c00334{left:494.400000px;}
.x101_c00334{left:496.500000px;}
.xf0_c00334{left:498.000000px;}
.x11b_c00334{left:499.500000px;}
.x135_c00334{left:501.150000px;}
.x2b_c00334{left:504.000000px;}
.x1b_c00334{left:506.250000px;}
.x106_c00334{left:508.050000px;}
.x8c_c00334{left:509.850000px;}
.xe5_c00334{left:510.900000px;}
.x6a_c00334{left:513.300000px;}
.xbf_c00334{left:515.550000px;}
.x11c_c00334{left:517.800000px;}
.x80_c00334{left:519.750000px;}
.x12f_c00334{left:520.950000px;}
.x2c_c00334{left:522.000000px;}
.x3a_c00334{left:523.800000px;}
.x43_c00334{left:526.050000px;}
.x77_c00334{left:531.000000px;}
.x128_c00334{left:532.650000px;}
.xcb_c00334{left:534.900000px;}
.x98_c00334{left:538.800000px;}
.x8d_c00334{left:541.950000px;}
.x107_c00334{left:543.300000px;}
.x118_c00334{left:544.500000px;}
.xc_c00334{left:546.300000px;}
.xb1_c00334{left:548.400000px;}
.x1c_c00334{left:550.200000px;}
.xdb_c00334{left:552.300000px;}
.x2d_c00334{left:553.350000px;}
.x57_c00334{left:555.750000px;}
.x81_c00334{left:557.250000px;}
.xe0_c00334{left:559.500000px;}
.x136_c00334{left:560.850000px;}
.x44_c00334{left:564.900000px;}
.xec_c00334{left:566.700000px;}
.x129_c00334{left:569.700000px;}
.x13c_c00334{left:570.750000px;}
.x108_c00334{left:571.800000px;}
.x61_c00334{left:573.000000px;}
.x58_c00334{left:575.250000px;}
.xd_c00334{left:579.750000px;}
.x99_c00334{left:583.800000px;}
.x45_c00334{left:585.000000px;}
.xf1_c00334{left:586.200000px;}
.xb2_c00334{left:587.250000px;}
.xf6_c00334{left:588.300000px;}
.xfd_c00334{left:590.550000px;}
.xe6_c00334{left:592.950000px;}
.x4f_c00334{left:594.000000px;}
.x78_c00334{left:595.050000px;}
.x2e_c00334{left:601.950000px;}
.x137_c00334{left:603.300000px;}
.xdc_c00334{left:606.300000px;}
.xed_c00334{left:607.350000px;}
.x82_c00334{left:610.500000px;}
.xad_c00334{left:612.000000px;}
.x8e_c00334{left:613.950000px;}
.x1d_c00334{left:616.800000px;}
.x102_c00334{left:618.450000px;}
.x114_c00334{left:619.650000px;}
.xe_c00334{left:620.850000px;}
.x9a_c00334{left:623.400000px;}
.xcc_c00334{left:625.650000px;}
.x130_c00334{left:627.450000px;}
.x62_c00334{left:629.850000px;}
.xf2_c00334{left:631.950000px;}
.x124_c00334{left:634.350000px;}
.x1e_c00334{left:636.600000px;}
.x119_c00334{left:638.850000px;}
.xe1_c00334{left:639.900000px;}
.x79_c00334{left:641.550000px;}
.x9b_c00334{left:644.250000px;}
.x46_c00334{left:648.000000px;}
.x10e_c00334{left:650.850000px;}
.xa6_c00334{left:652.200000px;}
.x59_c00334{left:655.500000px;}
.x6b_c00334{left:658.350000px;}
.x109_c00334{left:660.750000px;}
.xe7_c00334{left:661.800000px;}
.x2f_c00334{left:663.150000px;}
.xd5_c00334{left:664.800000px;}
.x1f_c00334{left:668.250000px;}
.xdd_c00334{left:675.000000px;}
.x63_c00334{left:676.650000px;}
.xf_c00334{left:681.300000px;}
.xb3_c00334{left:682.350000px;}
.xf3_c00334{left:684.150000px;}
.x115_c00334{left:685.950000px;}
.xf7_c00334{left:687.300000px;}
.x47_c00334{left:689.400000px;}
.x11d_c00334{left:690.750000px;}
.x6c_c00334{left:692.850000px;}
.x8f_c00334{left:694.350000px;}
.x12a_c00334{left:695.700000px;}
.x64_c00334{left:697.500000px;}
.x9c_c00334{left:698.550000px;}
.xb4_c00334{left:700.350000px;}
.x83_c00334{left:704.850000px;}
.x131_c00334{left:706.200000px;}
.x30_c00334{left:707.850000px;}
.xc5_c00334{left:711.750000px;}
.x90_c00334{left:713.100000px;}
.xf8_c00334{left:715.350000px;}
.xb8_c00334{left:717.300000px;}
.xd6_c00334{left:718.500000px;}
.x10_c00334{left:723.450000px;}
.x6d_c00334{left:724.950000px;}
.x48_c00334{left:726.900000px;}
.x111_c00334{left:728.700000px;}
.x65_c00334{left:731.700000px;}
.x9d_c00334{left:733.500000px;}
.x31_c00334{left:736.350000px;}
.xb5_c00334{left:738.150000px;}
.x20_c00334{left:740.850000px;}
.x5a_c00334{left:741.900000px;}
.x9e_c00334{left:745.050000px;}
.xd7_c00334{left:746.250000px;}
.x103_c00334{left:750.150000px;}
.xf9_c00334{left:752.100000px;}
.x6e_c00334{left:753.450000px;}
.xb9_c00334{left:754.800000px;}
.xe8_c00334{left:759.000000px;}
.x116_c00334{left:760.050000px;}
.x50_c00334{left:761.400000px;}
.x12b_c00334{left:763.500000px;}
.x11_c00334{left:764.850000px;}
.xb6_c00334{left:769.050000px;}
.x138_c00334{left:770.550000px;}
.x21_c00334{left:771.750000px;}
.x10f_c00334{left:773.850000px;}
.x9f_c00334{left:774.900000px;}
.x5b_c00334{left:778.200000px;}
.x51_c00334{left:780.450000px;}
.x91_c00334{left:783.300000px;}
.x7a_c00334{left:785.100000px;}
.x12_c00334{left:787.500000px;}
.x22_c00334{left:792.600000px;}
.x49_c00334{left:794.550000px;}
.x125_c00334{left:797.850000px;}
.xe9_c00334{left:800.400000px;}
.x84_c00334{left:803.100000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws4_c00334{word-spacing:-3.888889pt;}
.ws6_c00334{word-spacing:-2.007168pt;}
.wsa_c00334{word-spacing:0.000000pt;}
.ws5_c00334{word-spacing:1.181968pt;}
.ws8_c00334{word-spacing:1.333333pt;}
.ws0_c00334{word-spacing:5.111111pt;}
.ws2_c00334{word-spacing:5.555556pt;}
.ws7_c00334{word-spacing:6.967823pt;}
.ws9_c00334{word-spacing:8.565936pt;}
.ws1_c00334{word-spacing:10.555556pt;}
.ws3_c00334{word-spacing:12.820513pt;}
.fs0_c00334{font-size:48.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y2d_c00334{bottom:144.266667pt;}
.y2c_c00334{bottom:158.133333pt;}
.y2b_c00334{bottom:171.866667pt;}
.y2a_c00334{bottom:185.866667pt;}
.y29_c00334{bottom:199.733333pt;}
.y28_c00334{bottom:234.266667pt;}
.y27_c00334{bottom:251.866667pt;}
.y26_c00334{bottom:269.466667pt;}
.y25_c00334{bottom:287.066667pt;}
.y24_c00334{bottom:304.933333pt;}
.y23_c00334{bottom:322.533333pt;}
.y22_c00334{bottom:340.400000pt;}
.y21_c00334{bottom:358.266667pt;}
.y20_c00334{bottom:376.133333pt;}
.y1f_c00334{bottom:393.733333pt;}
.y1e_c00334{bottom:411.333333pt;}
.y1d_c00334{bottom:429.200000pt;}
.y1c_c00334{bottom:446.533333pt;}
.y1b_c00334{bottom:464.133333pt;}
.y1a_c00334{bottom:482.000000pt;}
.y19_c00334{bottom:499.600000pt;}
.y18_c00334{bottom:517.200000pt;}
.y17_c00334{bottom:535.066667pt;}
.y16_c00334{bottom:552.533333pt;}
.y15_c00334{bottom:570.400000pt;}
.y14_c00334{bottom:588.000000pt;}
.y13_c00334{bottom:605.600000pt;}
.y12_c00334{bottom:623.466667pt;}
.y11_c00334{bottom:641.066667pt;}
.y10_c00334{bottom:658.666667pt;}
.yf_c00334{bottom:676.533333pt;}
.ye_c00334{bottom:694.133333pt;}
.yd_c00334{bottom:711.733333pt;}
.yc_c00334{bottom:729.333333pt;}
.yb_c00334{bottom:746.933333pt;}
.ya_c00334{bottom:764.533333pt;}
.y9_c00334{bottom:782.800000pt;}
.y8_c00334{bottom:800.400000pt;}
.y7_c00334{bottom:818.000000pt;}
.y6_c00334{bottom:835.866667pt;}
.y5_c00334{bottom:853.466667pt;}
.y4_c00334{bottom:871.066667pt;}
.y3_c00334{bottom:888.933333pt;}
.y2_c00334{bottom:906.266667pt;}
.y1_c00334{bottom:940.133333pt;}
.h2_c00334{height:48.000000pt;}
.h0_c00334{height:1037.119955pt;}
.h1_c00334{height:1037.333333pt;}
.w1_c00334{width:812.000000pt;}
.w0_c00334{width:812.159993pt;}
.x0_c00334{left:0.000000pt;}
.x132_c00334{left:123.200000pt;}
.x11e_c00334{left:124.666667pt;}
.x112_c00334{left:125.733333pt;}
.x10a_c00334{left:126.800000pt;}
.xfe_c00334{left:127.733333pt;}
.xe2_c00334{left:128.800000pt;}
.xba_c00334{left:129.866667pt;}
.xa0_c00334{left:131.066667pt;}
.x7b_c00334{left:132.133333pt;}
.x4a_c00334{left:133.466667pt;}
.x13_c00334{left:135.200000pt;}
.x1_c00334{left:136.266667pt;}
.x139_c00334{left:138.933333pt;}
.x121_c00334{left:141.733333pt;}
.x113_c00334{left:143.333333pt;}
.xcd_c00334{left:147.066667pt;}
.xa7_c00334{left:150.000000pt;}
.x66_c00334{left:152.133333pt;}
.x122_c00334{left:153.600000pt;}
.xc0_c00334{left:154.933333pt;}
.xbb_c00334{left:157.333333pt;}
.x12c_c00334{left:158.400000pt;}
.x6f_c00334{left:160.666667pt;}
.x3b_c00334{left:161.866667pt;}
.x3_c00334{left:163.200000pt;}
.x23_c00334{left:166.666667pt;}
.xa1_c00334{left:169.200000pt;}
.x4b_c00334{left:170.533333pt;}
.x92_c00334{left:171.733333pt;}
.xde_c00334{left:172.800000pt;}
.x85_c00334{left:175.600000pt;}
.x32_c00334{left:177.733333pt;}
.xce_c00334{left:179.333333pt;}
.x7c_c00334{left:181.066667pt;}
.xae_c00334{left:182.000000pt;}
.xee_c00334{left:185.066667pt;}
.x93_c00334{left:187.733333pt;}
.x3c_c00334{left:189.333333pt;}
.xfa_c00334{left:190.533333pt;}
.x4_c00334{left:192.666667pt;}
.xf4_c00334{left:193.733333pt;}
.x52_c00334{left:194.933333pt;}
.x104_c00334{left:197.333333pt;}
.x14_c00334{left:198.533333pt;}
.x70_c00334{left:202.266667pt;}
.xc1_c00334{left:203.600000pt;}
.x33_c00334{left:205.866667pt;}
.x86_c00334{left:209.200000pt;}
.xc6_c00334{left:210.933333pt;}
.x3d_c00334{left:212.666667pt;}
.xff_c00334{left:214.800000pt;}
.x24_c00334{left:216.933333pt;}
.xa8_c00334{left:219.733333pt;}
.xcf_c00334{left:221.200000pt;}
.x15_c00334{left:223.466667pt;}
.x4c_c00334{left:224.666667pt;}
.x71_c00334{left:225.600000pt;}
.x5_c00334{left:227.600000pt;}
.x123_c00334{left:228.800000pt;}
.xdf_c00334{left:230.400000pt;}
.x133_c00334{left:231.600000pt;}
.x5c_c00334{left:232.533333pt;}
.xa2_c00334{left:235.733333pt;}
.xfb_c00334{left:236.933333pt;}
.x87_c00334{left:238.266667pt;}
.x10d_c00334{left:239.866667pt;}
.x34_c00334{left:240.800000pt;}
.xbc_c00334{left:243.466667pt;}
.xc7_c00334{left:244.533333pt;}
.x94_c00334{left:247.200000pt;}
.x5d_c00334{left:248.266667pt;}
.xd0_c00334{left:249.733333pt;}
.x117_c00334{left:251.600000pt;}
.x25_c00334{left:253.066667pt;}
.xd8_c00334{left:255.333333pt;}
.x53_c00334{left:256.666667pt;}
.x3e_c00334{left:259.466667pt;}
.xa9_c00334{left:260.400000pt;}
.x4d_c00334{left:264.666667pt;}
.xf5_c00334{left:268.933333pt;}
.x72_c00334{left:270.666667pt;}
.x7d_c00334{left:272.266667pt;}
.xb7_c00334{left:273.600000pt;}
.x16_c00334{left:275.333333pt;}
.x26_c00334{left:276.800000pt;}
.x134_c00334{left:278.000000pt;}
.x35_c00334{left:279.200000pt;}
.xc8_c00334{left:280.400000pt;}
.x6_c00334{left:282.000000pt;}
.xbd_c00334{left:283.200000pt;}
.x67_c00334{left:284.266667pt;}
.x54_c00334{left:286.400000pt;}
.xe3_c00334{left:290.000000pt;}
.xd9_c00334{left:291.866667pt;}
.x5e_c00334{left:294.666667pt;}
.x88_c00334{left:296.133333pt;}
.x12d_c00334{left:297.600000pt;}
.xd1_c00334{left:299.066667pt;}
.x3f_c00334{left:301.066667pt;}
.x7_c00334{left:302.533333pt;}
.xa3_c00334{left:303.866667pt;}
.x36_c00334{left:304.800000pt;}
.x13a_c00334{left:305.733333pt;}
.x11f_c00334{left:306.666667pt;}
.x73_c00334{left:308.133333pt;}
.x105_c00334{left:311.200000pt;}
.x17_c00334{left:312.800000pt;}
.x27_c00334{left:313.866667pt;}
.xc2_c00334{left:316.266667pt;}
.x4e_c00334{left:317.466667pt;}
.x89_c00334{left:318.533333pt;}
.xa4_c00334{left:325.333333pt;}
.x40_c00334{left:328.266667pt;}
.x7e_c00334{left:329.866667pt;}
.x126_c00334{left:332.133333pt;}
.xaf_c00334{left:333.200000pt;}
.x100_c00334{left:337.066667pt;}
.xc9_c00334{left:338.266667pt;}
.x18_c00334{left:340.266667pt;}
.x37_c00334{left:342.933333pt;}
.x13b_c00334{left:343.866667pt;}
.x127_c00334{left:344.933333pt;}
.x74_c00334{left:347.466667pt;}
.x8_c00334{left:349.866667pt;}
.x55_c00334{left:351.333333pt;}
.x8a_c00334{left:352.400000pt;}
.x10b_c00334{left:354.400000pt;}
.xd2_c00334{left:356.933333pt;}
.xef_c00334{left:358.533333pt;}
.x95_c00334{left:359.866667pt;}
.x38_c00334{left:361.466667pt;}
.x11a_c00334{left:364.000000pt;}
.xea_c00334{left:366.266667pt;}
.x41_c00334{left:368.000000pt;}
.x28_c00334{left:369.600000pt;}
.x12e_c00334{left:371.200000pt;}
.x75_c00334{left:372.400000pt;}
.xd3_c00334{left:373.600000pt;}
.x68_c00334{left:375.600000pt;}
.xc3_c00334{left:378.266667pt;}
.x5f_c00334{left:379.466667pt;}
.xaa_c00334{left:381.333333pt;}
.x29_c00334{left:382.400000pt;}
.x110_c00334{left:384.000000pt;}
.x8b_c00334{left:385.066667pt;}
.x96_c00334{left:387.733333pt;}
.x9_c00334{left:393.333333pt;}
.x10c_c00334{left:394.800000pt;}
.xab_c00334{left:397.066667pt;}
.xd4_c00334{left:398.266667pt;}
.x2_c00334{left:400.266667pt;}
.x7f_c00334{left:401.200000pt;}
.x56_c00334{left:402.800000pt;}
.x19_c00334{left:404.533333pt;}
.x120_c00334{left:406.400000pt;}
.x76_c00334{left:409.866667pt;}
.x2a_c00334{left:410.933333pt;}
.xa_c00334{left:412.266667pt;}
.x97_c00334{left:413.333333pt;}
.xb0_c00334{left:414.400000pt;}
.xbe_c00334{left:416.400000pt;}
.x69_c00334{left:418.800000pt;}
.xda_c00334{left:419.866667pt;}
.xca_c00334{left:420.800000pt;}
.xa5_c00334{left:422.000000pt;}
.xac_c00334{left:423.333333pt;}
.x1a_c00334{left:425.066667pt;}
.x42_c00334{left:426.266667pt;}
.xc4_c00334{left:427.200000pt;}
.xe4_c00334{left:429.200000pt;}
.x39_c00334{left:430.666667pt;}
.x60_c00334{left:432.533333pt;}
.xeb_c00334{left:435.466667pt;}
.xfc_c00334{left:438.266667pt;}
.xb_c00334{left:439.466667pt;}
.x101_c00334{left:441.333333pt;}
.xf0_c00334{left:442.666667pt;}
.x11b_c00334{left:444.000000pt;}
.x135_c00334{left:445.466667pt;}
.x2b_c00334{left:448.000000pt;}
.x1b_c00334{left:450.000000pt;}
.x106_c00334{left:451.600000pt;}
.x8c_c00334{left:453.200000pt;}
.xe5_c00334{left:454.133333pt;}
.x6a_c00334{left:456.266667pt;}
.xbf_c00334{left:458.266667pt;}
.x11c_c00334{left:460.266667pt;}
.x80_c00334{left:462.000000pt;}
.x12f_c00334{left:463.066667pt;}
.x2c_c00334{left:464.000000pt;}
.x3a_c00334{left:465.600000pt;}
.x43_c00334{left:467.600000pt;}
.x77_c00334{left:472.000000pt;}
.x128_c00334{left:473.466667pt;}
.xcb_c00334{left:475.466667pt;}
.x98_c00334{left:478.933333pt;}
.x8d_c00334{left:481.733333pt;}
.x107_c00334{left:482.933333pt;}
.x118_c00334{left:484.000000pt;}
.xc_c00334{left:485.600000pt;}
.xb1_c00334{left:487.466667pt;}
.x1c_c00334{left:489.066667pt;}
.xdb_c00334{left:490.933333pt;}
.x2d_c00334{left:491.866667pt;}
.x57_c00334{left:494.000000pt;}
.x81_c00334{left:495.333333pt;}
.xe0_c00334{left:497.333333pt;}
.x136_c00334{left:498.533333pt;}
.x44_c00334{left:502.133333pt;}
.xec_c00334{left:503.733333pt;}
.x129_c00334{left:506.400000pt;}
.x13c_c00334{left:507.333333pt;}
.x108_c00334{left:508.266667pt;}
.x61_c00334{left:509.333333pt;}
.x58_c00334{left:511.333333pt;}
.xd_c00334{left:515.333333pt;}
.x99_c00334{left:518.933333pt;}
.x45_c00334{left:520.000000pt;}
.xf1_c00334{left:521.066667pt;}
.xb2_c00334{left:522.000000pt;}
.xf6_c00334{left:522.933333pt;}
.xfd_c00334{left:524.933333pt;}
.xe6_c00334{left:527.066667pt;}
.x4f_c00334{left:528.000000pt;}
.x78_c00334{left:528.933333pt;}
.x2e_c00334{left:535.066667pt;}
.x137_c00334{left:536.266667pt;}
.xdc_c00334{left:538.933333pt;}
.xed_c00334{left:539.866667pt;}
.x82_c00334{left:542.666667pt;}
.xad_c00334{left:544.000000pt;}
.x8e_c00334{left:545.733333pt;}
.x1d_c00334{left:548.266667pt;}
.x102_c00334{left:549.733333pt;}
.x114_c00334{left:550.800000pt;}
.xe_c00334{left:551.866667pt;}
.x9a_c00334{left:554.133333pt;}
.xcc_c00334{left:556.133333pt;}
.x130_c00334{left:557.733333pt;}
.x62_c00334{left:559.866667pt;}
.xf2_c00334{left:561.733333pt;}
.x124_c00334{left:563.866667pt;}
.x1e_c00334{left:565.866667pt;}
.x119_c00334{left:567.866667pt;}
.xe1_c00334{left:568.800000pt;}
.x79_c00334{left:570.266667pt;}
.x9b_c00334{left:572.666667pt;}
.x46_c00334{left:576.000000pt;}
.x10e_c00334{left:578.533333pt;}
.xa6_c00334{left:579.733333pt;}
.x59_c00334{left:582.666667pt;}
.x6b_c00334{left:585.200000pt;}
.x109_c00334{left:587.333333pt;}
.xe7_c00334{left:588.266667pt;}
.x2f_c00334{left:589.466667pt;}
.xd5_c00334{left:590.933333pt;}
.x1f_c00334{left:594.000000pt;}
.xdd_c00334{left:600.000000pt;}
.x63_c00334{left:601.466667pt;}
.xf_c00334{left:605.600000pt;}
.xb3_c00334{left:606.533333pt;}
.xf3_c00334{left:608.133333pt;}
.x115_c00334{left:609.733333pt;}
.xf7_c00334{left:610.933333pt;}
.x47_c00334{left:612.800000pt;}
.x11d_c00334{left:614.000000pt;}
.x6c_c00334{left:615.866667pt;}
.x8f_c00334{left:617.200000pt;}
.x12a_c00334{left:618.400000pt;}
.x64_c00334{left:620.000000pt;}
.x9c_c00334{left:620.933333pt;}
.xb4_c00334{left:622.533333pt;}
.x83_c00334{left:626.533333pt;}
.x131_c00334{left:627.733333pt;}
.x30_c00334{left:629.200000pt;}
.xc5_c00334{left:632.666667pt;}
.x90_c00334{left:633.866667pt;}
.xf8_c00334{left:635.866667pt;}
.xb8_c00334{left:637.600000pt;}
.xd6_c00334{left:638.666667pt;}
.x10_c00334{left:643.066667pt;}
.x6d_c00334{left:644.400000pt;}
.x48_c00334{left:646.133333pt;}
.x111_c00334{left:647.733333pt;}
.x65_c00334{left:650.400000pt;}
.x9d_c00334{left:652.000000pt;}
.x31_c00334{left:654.533333pt;}
.xb5_c00334{left:656.133333pt;}
.x20_c00334{left:658.533333pt;}
.x5a_c00334{left:659.466667pt;}
.x9e_c00334{left:662.266667pt;}
.xd7_c00334{left:663.333333pt;}
.x103_c00334{left:666.800000pt;}
.xf9_c00334{left:668.533333pt;}
.x6e_c00334{left:669.733333pt;}
.xb9_c00334{left:670.933333pt;}
.xe8_c00334{left:674.666667pt;}
.x116_c00334{left:675.600000pt;}
.x50_c00334{left:676.800000pt;}
.x12b_c00334{left:678.666667pt;}
.x11_c00334{left:679.866667pt;}
.xb6_c00334{left:683.600000pt;}
.x138_c00334{left:684.933333pt;}
.x21_c00334{left:686.000000pt;}
.x10f_c00334{left:687.866667pt;}
.x9f_c00334{left:688.800000pt;}
.x5b_c00334{left:691.733333pt;}
.x51_c00334{left:693.733333pt;}
.x91_c00334{left:696.266667pt;}
.x7a_c00334{left:697.866667pt;}
.x12_c00334{left:700.000000pt;}
.x22_c00334{left:704.533333pt;}
.x49_c00334{left:706.266667pt;}
.x125_c00334{left:709.200000pt;}
.xe9_c00334{left:711.466667pt;}
.x84_c00334{left:713.866667pt;}
}





/* 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_c00335 {
    display:none;
  }
  .loading-indicator_c00335.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00335 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_c00335 { 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_c00335" -> "#page-container .classname_c00335")
 */
.pf_c00335 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00335 { /* 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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00335 { /* 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_c00335 { /* 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_c00335 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00335 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00335 {overflow:visible;}
  }
}
.c_c00335 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00335 { /* 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_c00335:after { /* webkit #35443 */
  content: '';
}
.t_c00335:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00335 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 */
}
.__c00335 { /* 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_c00335 { /* info for Javascript */
  display:none;
}
.l_c00335 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00335 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00335 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00335: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_c00335 {
    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_c00335.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00335.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_c00335 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00335{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.000000;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;}
.mf_c00335{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m50_c00335{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00335{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2_c00335{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00335{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00335{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m41_c00335{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00335{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m48_c00335{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m59_c00335{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00335{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m70_c00335{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00335{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00335{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00335{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00335{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00335{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m26_c00335{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00335{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m51_c00335{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m22_c00335{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m27_c00335{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00335{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m68_c00335{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00335{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m91_c00335{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m44_c00335{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00335{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m72_c00335{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m92_c00335{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00335{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m31_c00335{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00335{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m28_c00335{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m95_c00335{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00335{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00335{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m94_c00335{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00335{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00335{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00335{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m63_c00335{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00335{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00335{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m80_c00335{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mad_c00335{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m46_c00335{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m93_c00335{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00335{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m99_c00335{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00335{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m87_c00335{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m97_c00335{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00335{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m98_c00335{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00335{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12_c00335{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00335{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00335{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m25_c00335{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m30_c00335{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00335{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00335{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m83_c00335{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00335{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m74_c00335{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00335{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m34_c00335{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00335{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m3_c00335{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00335{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m49_c00335{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m75_c00335{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00335{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00335{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00335{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m42_c00335{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00335{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m55_c00335{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00335{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m32_c00335{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mae_c00335{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m53_c00335{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m64_c00335{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00335{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00335{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5_c00335{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mab_c00335{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m65_c00335{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m56_c00335{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);}
.maf_c00335{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m52_c00335{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00335{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00335{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11_c00335{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00335{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m67_c00335{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00335{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m73_c00335{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00335{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m76_c00335{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00335{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00335{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00335{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00335{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m24_c00335{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00335{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m16_c00335{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m90_c00335{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m18_c00335{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00335{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m89_c00335{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00335{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m43_c00335{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m20_c00335{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00335{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00335{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m60_c00335{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m14_c00335{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00335{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m29_c00335{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00335{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m35_c00335{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00335{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00335{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00335{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00335{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00335{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m13_c00335{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.maa_c00335{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00335{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00335{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m58_c00335{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m57_c00335{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m88_c00335{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m78_c00335{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00335{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00335{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00335{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m39_c00335{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00335{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m47_c00335{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m81_c00335{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00335{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m77_c00335{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m37_c00335{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m23_c00335{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m10_c00335{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00335{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00335{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.mba_c00335{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m19_c00335{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m71_c00335{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00335{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00335{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m85_c00335{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m45_c00335{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00335{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00335{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00335{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00335{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00335{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m66_c00335{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m36_c00335{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00335{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00335{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m40_c00335{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m38_c00335{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m21_c00335{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m82_c00335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m62_c00335{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00335{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00335{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m54_c00335{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mac_c00335{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00335{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m15_c00335{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m61_c00335{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00335{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00335{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00335{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls0_c00335{letter-spacing:0.000000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{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__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00335{word-spacing:0.000000px;}
.ws2_c00335{word-spacing:3.125000px;}
.ws4_c00335{word-spacing:5.875000px;}
.ws5_c00335{word-spacing:6.744681px;}
.ws0_c00335{word-spacing:9.517338px;}
.ws3_c00335{word-spacing:10.674699px;}
.ws6_c00335{word-spacing:11.538462px;}
.ws1_c00335{word-spacing:14.013820px;}
.fc0_c00335{color:transparent;}
.fs0_c00335{font-size:54.000000px;}
.y0_c00335{bottom:0.000000px;}
.y2c_c00335{bottom:146.100000px;}
.y2b_c00335{bottom:186.750000px;}
.y2a_c00335{bottom:206.850000px;}
.y29_c00335{bottom:226.650000px;}
.y28_c00335{bottom:246.750000px;}
.y27_c00335{bottom:266.550000px;}
.y26_c00335{bottom:287.100000px;}
.y25_c00335{bottom:306.600000px;}
.y24_c00335{bottom:326.700000px;}
.y23_c00335{bottom:346.800000px;}
.y22_c00335{bottom:366.600000px;}
.y21_c00335{bottom:386.100000px;}
.y20_c00335{bottom:405.900000px;}
.y1f_c00335{bottom:425.700000px;}
.y1e_c00335{bottom:445.800000px;}
.y1d_c00335{bottom:465.900000px;}
.y1c_c00335{bottom:486.300000px;}
.y1b_c00335{bottom:506.400000px;}
.y1a_c00335{bottom:526.500000px;}
.y19_c00335{bottom:546.300000px;}
.y18_c00335{bottom:566.400000px;}
.y17_c00335{bottom:586.200000px;}
.y16_c00335{bottom:606.000000px;}
.y15_c00335{bottom:625.800000px;}
.y14_c00335{bottom:645.900000px;}
.y13_c00335{bottom:666.000000px;}
.y12_c00335{bottom:685.800000px;}
.y11_c00335{bottom:705.900000px;}
.y10_c00335{bottom:725.700000px;}
.yf_c00335{bottom:745.800000px;}
.ye_c00335{bottom:765.600000px;}
.yd_c00335{bottom:785.700000px;}
.yc_c00335{bottom:805.800000px;}
.yb_c00335{bottom:825.900000px;}
.ya_c00335{bottom:845.700000px;}
.y9_c00335{bottom:865.800000px;}
.y8_c00335{bottom:885.600000px;}
.y7_c00335{bottom:905.700000px;}
.y6_c00335{bottom:925.500000px;}
.y5_c00335{bottom:945.750000px;}
.y4_c00335{bottom:965.550000px;}
.y3_c00335{bottom:985.650000px;}
.y2_c00335{bottom:1005.150000px;}
.y1_c00335{bottom:1042.500000px;}
.h2_c00335{height:54.000000px;}
.h0_c00335{height:1166.759949px;}
.h1_c00335{height:1167.000000px;}
.w1_c00335{width:913.500000px;}
.w0_c00335{width:913.679993px;}
.x0_c00335{left:0.000000px;}
.x3_c00335{left:101.550000px;}
.x64_c00335{left:102.600000px;}
.xa7_c00335{left:103.650000px;}
.x108_c00335{left:104.850000px;}
.xa8_c00335{left:117.750000px;}
.x4_c00335{left:122.100000px;}
.x8e_c00335{left:123.900000px;}
.xcd_c00335{left:129.000000px;}
.xc6_c00335{left:131.250000px;}
.x25_c00335{left:133.800000px;}
.x88_c00335{left:136.050000px;}
.x58_c00335{left:139.050000px;}
.x7f_c00335{left:142.200000px;}
.x10c_c00335{left:144.750000px;}
.x17_c00335{left:148.200000px;}
.xfb_c00335{left:150.300000px;}
.x36_c00335{left:152.550000px;}
.x5_c00335{left:154.500000px;}
.x8f_c00335{left:156.300000px;}
.x26_c00335{left:157.950000px;}
.x59_c00335{left:160.350000px;}
.xa9_c00335{left:163.050000px;}
.xba_c00335{left:164.250000px;}
.x43_c00335{left:166.650000px;}
.x129_c00335{left:169.350000px;}
.x37_c00335{left:172.350000px;}
.xb2_c00335{left:176.100000px;}
.x18_c00335{left:177.750000px;}
.x74_c00335{left:179.100000px;}
.x80_c00335{left:180.750000px;}
.x105_c00335{left:181.800000px;}
.x6_c00335{left:183.600000px;}
.xde_c00335{left:184.650000px;}
.x95_c00335{left:185.850000px;}
.xb3_c00335{left:189.750000px;}
.x10d_c00335{left:192.300000px;}
.xa1_c00335{left:193.650000px;}
.x111_c00335{left:194.850000px;}
.x65_c00335{left:196.200000px;}
.x38_c00335{left:200.400000px;}
.xbf_c00335{left:201.750000px;}
.x44_c00335{left:203.700000px;}
.x27_c00335{left:205.800000px;}
.x51_c00335{left:208.500000px;}
.x7_c00335{left:210.300000px;}
.x112_c00335{left:212.100000px;}
.xce_c00335{left:216.900000px;}
.x81_c00335{left:218.250000px;}
.x89_c00335{left:220.950000px;}
.x5a_c00335{left:224.100000px;}
.x8_c00335{left:227.250000px;}
.x96_c00335{left:229.350000px;}
.xf4_c00335{left:230.700000px;}
.x66_c00335{left:233.700000px;}
.x75_c00335{left:235.200000px;}
.x28_c00335{left:240.750000px;}
.xc0_c00335{left:243.900000px;}
.x5b_c00335{left:244.950000px;}
.xb4_c00335{left:247.350000px;}
.x121_c00335{left:249.300000px;}
.x10e_c00335{left:250.950000px;}
.x19_c00335{left:254.400000px;}
.xd8_c00335{left:256.350000px;}
.xaa_c00335{left:258.000000px;}
.xf2_c00335{left:259.800000px;}
.x12a_c00335{left:261.750000px;}
.x9_c00335{left:265.350000px;}
.x29_c00335{left:268.500000px;}
.x76_c00335{left:269.700000px;}
.xc7_c00335{left:271.350000px;}
.xef_c00335{left:272.550000px;}
.x39_c00335{left:273.900000px;}
.xdf_c00335{left:278.550000px;}
.x45_c00335{left:280.800000px;}
.xd9_c00335{left:283.050000px;}
.x90_c00335{left:287.100000px;}
.x97_c00335{left:288.750000px;}
.xcf_c00335{left:290.700000px;}
.xf0_c00335{left:292.050000px;}
.x8a_c00335{left:294.300000px;}
.x1a_c00335{left:297.600000px;}
.xd2_c00335{left:302.100000px;}
.x67_c00335{left:304.350000px;}
.xc1_c00335{left:307.650000px;}
.x98_c00335{left:309.300000px;}
.x3a_c00335{left:310.650000px;}
.xa_c00335{left:313.650000px;}
.xe0_c00335{left:316.050000px;}
.x2a_c00335{left:317.100000px;}
.x1b_c00335{left:318.900000px;}
.xab_c00335{left:321.000000px;}
.x82_c00335{left:322.950000px;}
.x118_c00335{left:324.600000px;}
.x122_c00335{left:325.650000px;}
.xd0_c00335{left:327.450000px;}
.x100_c00335{left:330.900000px;}
.xb_c00335{left:331.950000px;}
.x2b_c00335{left:333.600000px;}
.x3b_c00335{left:336.150000px;}
.xec_c00335{left:337.350000px;}
.x68_c00335{left:339.300000px;}
.x5c_c00335{left:340.350000px;}
.xa2_c00335{left:343.800000px;}
.xf5_c00335{left:345.150000px;}
.xe8_c00335{left:347.700000px;}
.x99_c00335{left:349.650000px;}
.x113_c00335{left:351.000000px;}
.x119_c00335{left:353.400000px;}
.xc_c00335{left:357.450000px;}
.x69_c00335{left:359.400000px;}
.x1c_c00335{left:364.200000px;}
.xac_c00335{left:365.700000px;}
.x77_c00335{left:367.200000px;}
.x46_c00335{left:369.450000px;}
.xbb_c00335{left:371.550000px;}
.xe1_c00335{left:373.350000px;}
.x2c_c00335{left:376.050000px;}
.xb5_c00335{left:378.000000px;}
.xf6_c00335{left:379.050000px;}
.xc2_c00335{left:380.250000px;}
.x125_c00335{left:384.300000px;}
.x83_c00335{left:385.950000px;}
.xc8_c00335{left:389.700000px;}
.x11a_c00335{left:390.900000px;}
.x6a_c00335{left:393.300000px;}
.xb6_c00335{left:394.950000px;}
.x1_c00335{left:396.300000px;}
.x5d_c00335{left:397.950000px;}
.xfc_c00335{left:401.100000px;}
.xe2_c00335{left:403.650000px;}
.x52_c00335{left:405.750000px;}
.xf7_c00335{left:408.150000px;}
.x47_c00335{left:410.100000px;}
.x114_c00335{left:411.150000px;}
.xad_c00335{left:413.550000px;}
.xc3_c00335{left:415.200000px;}
.xa3_c00335{left:418.950000px;}
.x106_c00335{left:421.500000px;}
.xf3_c00335{left:422.850000px;}
.xc9_c00335{left:423.900000px;}
.x8b_c00335{left:424.950000px;}
.x12e_c00335{left:427.650000px;}
.x5e_c00335{left:429.300000px;}
.x3c_c00335{left:430.800000px;}
.x130_c00335{left:432.300000px;}
.x91_c00335{left:435.450000px;}
.x115_c00335{left:436.650000px;}
.x1d_c00335{left:438.000000px;}
.x48_c00335{left:441.000000px;}
.x6b_c00335{left:442.650000px;}
.xe3_c00335{left:445.050000px;}
.x53_c00335{left:446.100000px;}
.xd_c00335{left:448.200000px;}
.x5f_c00335{left:450.600000px;}
.xc4_c00335{left:452.700000px;}
.x2d_c00335{left:454.050000px;}
.xfd_c00335{left:455.400000px;}
.x84_c00335{left:456.600000px;}
.xe9_c00335{left:458.400000px;}
.x12b_c00335{left:459.600000px;}
.x6c_c00335{left:462.150000px;}
.xee_c00335{left:463.500000px;}
.x1e_c00335{left:464.700000px;}
.x9a_c00335{left:467.400000px;}
.x11b_c00335{left:469.050000px;}
.x92_c00335{left:470.700000px;}
.x116_c00335{left:472.650000px;}
.x78_c00335{left:477.750000px;}
.x10f_c00335{left:479.850000px;}
.x49_c00335{left:481.650000px;}
.x12f_c00335{left:484.200000px;}
.x2e_c00335{left:485.400000px;}
.xe_c00335{left:487.500000px;}
.x101_c00335{left:489.150000px;}
.xae_c00335{left:490.500000px;}
.x93_c00335{left:492.000000px;}
.x3d_c00335{left:493.800000px;}
.x9b_c00335{left:495.150000px;}
.x6d_c00335{left:496.650000px;}
.x4a_c00335{left:498.900000px;}
.x109_c00335{left:506.850000px;}
.x1f_c00335{left:508.650000px;}
.xbc_c00335{left:510.600000px;}
.xf_c00335{left:512.400000px;}
.xda_c00335{left:513.450000px;}
.x79_c00335{left:515.550000px;}
.xd3_c00335{left:517.050000px;}
.xca_c00335{left:518.250000px;}
.x11c_c00335{left:520.200000px;}
.x3e_c00335{left:521.850000px;}
.xc5_c00335{left:523.950000px;}
.xb7_c00335{left:525.000000px;}
.x85_c00335{left:527.100000px;}
.x2f_c00335{left:528.600000px;}
.x54_c00335{left:529.650000px;}
.x4b_c00335{left:531.600000px;}
.x6e_c00335{left:534.450000px;}
.x10_c00335{left:537.600000px;}
.xaf_c00335{left:540.150000px;}
.xb8_c00335{left:542.250000px;}
.xe4_c00335{left:543.300000px;}
.x9c_c00335{left:545.250000px;}
.xf8_c00335{left:549.750000px;}
.x55_c00335{left:553.050000px;}
.xdb_c00335{left:555.150000px;}
.x107_c00335{left:556.200000px;}
.x11d_c00335{left:559.500000px;}
.x4c_c00335{left:560.700000px;}
.x20_c00335{left:565.500000px;}
.xb9_c00335{left:567.450000px;}
.x6f_c00335{left:568.950000px;}
.x11_c00335{left:571.050000px;}
.xf1_c00335{left:572.250000px;}
.x86_c00335{left:573.900000px;}
.xe5_c00335{left:575.700000px;}
.x30_c00335{left:577.950000px;}
.x102_c00335{left:579.600000px;}
.x7a_c00335{left:581.850000px;}
.x56_c00335{left:582.900000px;}
.x126_c00335{left:584.100000px;}
.x9d_c00335{left:586.650000px;}
.x117_c00335{left:589.650000px;}
.x8c_c00335{left:591.000000px;}
.xcb_c00335{left:592.800000px;}
.x70_c00335{left:594.150000px;}
.xfe_c00335{left:595.950000px;}
.x60_c00335{left:597.450000px;}
.x7b_c00335{left:601.650000px;}
.x11e_c00335{left:602.700000px;}
.x10a_c00335{left:606.300000px;}
.x12_c00335{left:607.350000px;}
.x31_c00335{left:609.300000px;}
.xa4_c00335{left:610.500000px;}
.x3f_c00335{left:612.150000px;}
.xe6_c00335{left:614.550000px;}
.x127_c00335{left:615.750000px;}
.x21_c00335{left:616.950000px;}
.x4d_c00335{left:619.050000px;}
.x123_c00335{left:622.200000px;}
.x13_c00335{left:624.600000px;}
.x10b_c00335{left:626.100000px;}
.x40_c00335{left:627.300000px;}
.x9e_c00335{left:629.550000px;}
.xd4_c00335{left:631.950000px;}
.x12d_c00335{left:633.150000px;}
.x61_c00335{left:634.500000px;}
.xbd_c00335{left:636.150000px;}
.x4e_c00335{left:637.800000px;}
.x32_c00335{left:639.900000px;}
.x12c_c00335{left:641.550000px;}
.x7c_c00335{left:643.350000px;}
.xed_c00335{left:650.250000px;}
.x41_c00335{left:652.800000px;}
.xf9_c00335{left:654.600000px;}
.x33_c00335{left:657.600000px;}
.xb0_c00335{left:658.650000px;}
.x4f_c00335{left:660.150000px;}
.x22_c00335{left:661.950000px;}
.x62_c00335{left:664.800000px;}
.x14_c00335{left:667.050000px;}
.x71_c00335{left:668.250000px;}
.x57_c00335{left:670.650000px;}
.xd5_c00335{left:673.050000px;}
.x9f_c00335{left:674.850000px;}
.xcc_c00335{left:675.900000px;}
.x110_c00335{left:676.950000px;}
.xb1_c00335{left:678.750000px;}
.x23_c00335{left:680.250000px;}
.x103_c00335{left:681.900000px;}
.xd6_c00335{left:684.150000px;}
.x34_c00335{left:686.700000px;}
.xdc_c00335{left:689.100000px;}
.xff_c00335{left:690.600000px;}
.xa5_c00335{left:692.550000px;}
.x42_c00335{left:695.700000px;}
.x72_c00335{left:698.550000px;}
.x7d_c00335{left:699.900000px;}
.x63_c00335{left:704.100000px;}
.xa6_c00335{left:707.700000px;}
.x128_c00335{left:709.050000px;}
.x50_c00335{left:710.550000px;}
.xd7_c00335{left:713.250000px;}
.x11f_c00335{left:714.750000px;}
.x15_c00335{left:715.950000px;}
.xe7_c00335{left:718.200000px;}
.x7e_c00335{left:720.450000px;}
.xa0_c00335{left:723.150000px;}
.x24_c00335{left:725.250000px;}
.xea_c00335{left:727.200000px;}
.xdd_c00335{left:729.450000px;}
.xfa_c00335{left:730.950000px;}
.x73_c00335{left:735.300000px;}
.x8d_c00335{left:736.500000px;}
.x124_c00335{left:738.450000px;}
.xd1_c00335{left:740.250000px;}
.x2_c00335{left:741.900000px;}
.x87_c00335{left:743.100000px;}
.x35_c00335{left:746.100000px;}
.xeb_c00335{left:749.550000px;}
.x104_c00335{left:751.050000px;}
.x94_c00335{left:754.350000px;}
.xbe_c00335{left:757.950000px;}
.x120_c00335{left:762.300000px;}
.x16_c00335{left:775.650000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls0_c00335{letter-spacing:0.000000pt;}
.ws7_c00335{word-spacing:0.000000pt;}
.ws2_c00335{word-spacing:2.777778pt;}
.ws4_c00335{word-spacing:5.222222pt;}
.ws5_c00335{word-spacing:5.995272pt;}
.ws0_c00335{word-spacing:8.459856pt;}
.ws3_c00335{word-spacing:9.488621pt;}
.ws6_c00335{word-spacing:10.256410pt;}
.ws1_c00335{word-spacing:12.456729pt;}
.fs0_c00335{font-size:48.000000pt;}
.y0_c00335{bottom:0.000000pt;}
.y2c_c00335{bottom:129.866667pt;}
.y2b_c00335{bottom:166.000000pt;}
.y2a_c00335{bottom:183.866667pt;}
.y29_c00335{bottom:201.466667pt;}
.y28_c00335{bottom:219.333333pt;}
.y27_c00335{bottom:236.933333pt;}
.y26_c00335{bottom:255.200000pt;}
.y25_c00335{bottom:272.533333pt;}
.y24_c00335{bottom:290.400000pt;}
.y23_c00335{bottom:308.266667pt;}
.y22_c00335{bottom:325.866667pt;}
.y21_c00335{bottom:343.200000pt;}
.y20_c00335{bottom:360.800000pt;}
.y1f_c00335{bottom:378.400000pt;}
.y1e_c00335{bottom:396.266667pt;}
.y1d_c00335{bottom:414.133333pt;}
.y1c_c00335{bottom:432.266667pt;}
.y1b_c00335{bottom:450.133333pt;}
.y1a_c00335{bottom:468.000000pt;}
.y19_c00335{bottom:485.600000pt;}
.y18_c00335{bottom:503.466667pt;}
.y17_c00335{bottom:521.066667pt;}
.y16_c00335{bottom:538.666667pt;}
.y15_c00335{bottom:556.266667pt;}
.y14_c00335{bottom:574.133333pt;}
.y13_c00335{bottom:592.000000pt;}
.y12_c00335{bottom:609.600000pt;}
.y11_c00335{bottom:627.466667pt;}
.y10_c00335{bottom:645.066667pt;}
.yf_c00335{bottom:662.933333pt;}
.ye_c00335{bottom:680.533333pt;}
.yd_c00335{bottom:698.400000pt;}
.yc_c00335{bottom:716.266667pt;}
.yb_c00335{bottom:734.133333pt;}
.ya_c00335{bottom:751.733333pt;}
.y9_c00335{bottom:769.600000pt;}
.y8_c00335{bottom:787.200000pt;}
.y7_c00335{bottom:805.066667pt;}
.y6_c00335{bottom:822.666667pt;}
.y5_c00335{bottom:840.666667pt;}
.y4_c00335{bottom:858.266667pt;}
.y3_c00335{bottom:876.133333pt;}
.y2_c00335{bottom:893.466667pt;}
.y1_c00335{bottom:926.666667pt;}
.h2_c00335{height:48.000000pt;}
.h0_c00335{height:1037.119955pt;}
.h1_c00335{height:1037.333333pt;}
.w1_c00335{width:812.000000pt;}
.w0_c00335{width:812.159993pt;}
.x0_c00335{left:0.000000pt;}
.x3_c00335{left:90.266667pt;}
.x64_c00335{left:91.200000pt;}
.xa7_c00335{left:92.133333pt;}
.x108_c00335{left:93.200000pt;}
.xa8_c00335{left:104.666667pt;}
.x4_c00335{left:108.533333pt;}
.x8e_c00335{left:110.133333pt;}
.xcd_c00335{left:114.666667pt;}
.xc6_c00335{left:116.666667pt;}
.x25_c00335{left:118.933333pt;}
.x88_c00335{left:120.933333pt;}
.x58_c00335{left:123.600000pt;}
.x7f_c00335{left:126.400000pt;}
.x10c_c00335{left:128.666667pt;}
.x17_c00335{left:131.733333pt;}
.xfb_c00335{left:133.600000pt;}
.x36_c00335{left:135.600000pt;}
.x5_c00335{left:137.333333pt;}
.x8f_c00335{left:138.933333pt;}
.x26_c00335{left:140.400000pt;}
.x59_c00335{left:142.533333pt;}
.xa9_c00335{left:144.933333pt;}
.xba_c00335{left:146.000000pt;}
.x43_c00335{left:148.133333pt;}
.x129_c00335{left:150.533333pt;}
.x37_c00335{left:153.200000pt;}
.xb2_c00335{left:156.533333pt;}
.x18_c00335{left:158.000000pt;}
.x74_c00335{left:159.200000pt;}
.x80_c00335{left:160.666667pt;}
.x105_c00335{left:161.600000pt;}
.x6_c00335{left:163.200000pt;}
.xde_c00335{left:164.133333pt;}
.x95_c00335{left:165.200000pt;}
.xb3_c00335{left:168.666667pt;}
.x10d_c00335{left:170.933333pt;}
.xa1_c00335{left:172.133333pt;}
.x111_c00335{left:173.200000pt;}
.x65_c00335{left:174.400000pt;}
.x38_c00335{left:178.133333pt;}
.xbf_c00335{left:179.333333pt;}
.x44_c00335{left:181.066667pt;}
.x27_c00335{left:182.933333pt;}
.x51_c00335{left:185.333333pt;}
.x7_c00335{left:186.933333pt;}
.x112_c00335{left:188.533333pt;}
.xce_c00335{left:192.800000pt;}
.x81_c00335{left:194.000000pt;}
.x89_c00335{left:196.400000pt;}
.x5a_c00335{left:199.200000pt;}
.x8_c00335{left:202.000000pt;}
.x96_c00335{left:203.866667pt;}
.xf4_c00335{left:205.066667pt;}
.x66_c00335{left:207.733333pt;}
.x75_c00335{left:209.066667pt;}
.x28_c00335{left:214.000000pt;}
.xc0_c00335{left:216.800000pt;}
.x5b_c00335{left:217.733333pt;}
.xb4_c00335{left:219.866667pt;}
.x121_c00335{left:221.600000pt;}
.x10e_c00335{left:223.066667pt;}
.x19_c00335{left:226.133333pt;}
.xd8_c00335{left:227.866667pt;}
.xaa_c00335{left:229.333333pt;}
.xf2_c00335{left:230.933333pt;}
.x12a_c00335{left:232.666667pt;}
.x9_c00335{left:235.866667pt;}
.x29_c00335{left:238.666667pt;}
.x76_c00335{left:239.733333pt;}
.xc7_c00335{left:241.200000pt;}
.xef_c00335{left:242.266667pt;}
.x39_c00335{left:243.466667pt;}
.xdf_c00335{left:247.600000pt;}
.x45_c00335{left:249.600000pt;}
.xd9_c00335{left:251.600000pt;}
.x90_c00335{left:255.200000pt;}
.x97_c00335{left:256.666667pt;}
.xcf_c00335{left:258.400000pt;}
.xf0_c00335{left:259.600000pt;}
.x8a_c00335{left:261.600000pt;}
.x1a_c00335{left:264.533333pt;}
.xd2_c00335{left:268.533333pt;}
.x67_c00335{left:270.533333pt;}
.xc1_c00335{left:273.466667pt;}
.x98_c00335{left:274.933333pt;}
.x3a_c00335{left:276.133333pt;}
.xa_c00335{left:278.800000pt;}
.xe0_c00335{left:280.933333pt;}
.x2a_c00335{left:281.866667pt;}
.x1b_c00335{left:283.466667pt;}
.xab_c00335{left:285.333333pt;}
.x82_c00335{left:287.066667pt;}
.x118_c00335{left:288.533333pt;}
.x122_c00335{left:289.466667pt;}
.xd0_c00335{left:291.066667pt;}
.x100_c00335{left:294.133333pt;}
.xb_c00335{left:295.066667pt;}
.x2b_c00335{left:296.533333pt;}
.x3b_c00335{left:298.800000pt;}
.xec_c00335{left:299.866667pt;}
.x68_c00335{left:301.600000pt;}
.x5c_c00335{left:302.533333pt;}
.xa2_c00335{left:305.600000pt;}
.xf5_c00335{left:306.800000pt;}
.xe8_c00335{left:309.066667pt;}
.x99_c00335{left:310.800000pt;}
.x113_c00335{left:312.000000pt;}
.x119_c00335{left:314.133333pt;}
.xc_c00335{left:317.733333pt;}
.x69_c00335{left:319.466667pt;}
.x1c_c00335{left:323.733333pt;}
.xac_c00335{left:325.066667pt;}
.x77_c00335{left:326.400000pt;}
.x46_c00335{left:328.400000pt;}
.xbb_c00335{left:330.266667pt;}
.xe1_c00335{left:331.866667pt;}
.x2c_c00335{left:334.266667pt;}
.xb5_c00335{left:336.000000pt;}
.xf6_c00335{left:336.933333pt;}
.xc2_c00335{left:338.000000pt;}
.x125_c00335{left:341.600000pt;}
.x83_c00335{left:343.066667pt;}
.xc8_c00335{left:346.400000pt;}
.x11a_c00335{left:347.466667pt;}
.x6a_c00335{left:349.600000pt;}
.xb6_c00335{left:351.066667pt;}
.x1_c00335{left:352.266667pt;}
.x5d_c00335{left:353.733333pt;}
.xfc_c00335{left:356.533333pt;}
.xe2_c00335{left:358.800000pt;}
.x52_c00335{left:360.666667pt;}
.xf7_c00335{left:362.800000pt;}
.x47_c00335{left:364.533333pt;}
.x114_c00335{left:365.466667pt;}
.xad_c00335{left:367.600000pt;}
.xc3_c00335{left:369.066667pt;}
.xa3_c00335{left:372.400000pt;}
.x106_c00335{left:374.666667pt;}
.xf3_c00335{left:375.866667pt;}
.xc9_c00335{left:376.800000pt;}
.x8b_c00335{left:377.733333pt;}
.x12e_c00335{left:380.133333pt;}
.x5e_c00335{left:381.600000pt;}
.x3c_c00335{left:382.933333pt;}
.x130_c00335{left:384.266667pt;}
.x91_c00335{left:387.066667pt;}
.x115_c00335{left:388.133333pt;}
.x1d_c00335{left:389.333333pt;}
.x48_c00335{left:392.000000pt;}
.x6b_c00335{left:393.466667pt;}
.xe3_c00335{left:395.600000pt;}
.x53_c00335{left:396.533333pt;}
.xd_c00335{left:398.400000pt;}
.x5f_c00335{left:400.533333pt;}
.xc4_c00335{left:402.400000pt;}
.x2d_c00335{left:403.600000pt;}
.xfd_c00335{left:404.800000pt;}
.x84_c00335{left:405.866667pt;}
.xe9_c00335{left:407.466667pt;}
.x12b_c00335{left:408.533333pt;}
.x6c_c00335{left:410.800000pt;}
.xee_c00335{left:412.000000pt;}
.x1e_c00335{left:413.066667pt;}
.x9a_c00335{left:415.466667pt;}
.x11b_c00335{left:416.933333pt;}
.x92_c00335{left:418.400000pt;}
.x116_c00335{left:420.133333pt;}
.x78_c00335{left:424.666667pt;}
.x10f_c00335{left:426.533333pt;}
.x49_c00335{left:428.133333pt;}
.x12f_c00335{left:430.400000pt;}
.x2e_c00335{left:431.466667pt;}
.xe_c00335{left:433.333333pt;}
.x101_c00335{left:434.800000pt;}
.xae_c00335{left:436.000000pt;}
.x93_c00335{left:437.333333pt;}
.x3d_c00335{left:438.933333pt;}
.x9b_c00335{left:440.133333pt;}
.x6d_c00335{left:441.466667pt;}
.x4a_c00335{left:443.466667pt;}
.x109_c00335{left:450.533333pt;}
.x1f_c00335{left:452.133333pt;}
.xbc_c00335{left:453.866667pt;}
.xf_c00335{left:455.466667pt;}
.xda_c00335{left:456.400000pt;}
.x79_c00335{left:458.266667pt;}
.xd3_c00335{left:459.600000pt;}
.xca_c00335{left:460.666667pt;}
.x11c_c00335{left:462.400000pt;}
.x3e_c00335{left:463.866667pt;}
.xc5_c00335{left:465.733333pt;}
.xb7_c00335{left:466.666667pt;}
.x85_c00335{left:468.533333pt;}
.x2f_c00335{left:469.866667pt;}
.x54_c00335{left:470.800000pt;}
.x4b_c00335{left:472.533333pt;}
.x6e_c00335{left:475.066667pt;}
.x10_c00335{left:477.866667pt;}
.xaf_c00335{left:480.133333pt;}
.xb8_c00335{left:482.000000pt;}
.xe4_c00335{left:482.933333pt;}
.x9c_c00335{left:484.666667pt;}
.xf8_c00335{left:488.666667pt;}
.x55_c00335{left:491.600000pt;}
.xdb_c00335{left:493.466667pt;}
.x107_c00335{left:494.400000pt;}
.x11d_c00335{left:497.333333pt;}
.x4c_c00335{left:498.400000pt;}
.x20_c00335{left:502.666667pt;}
.xb9_c00335{left:504.400000pt;}
.x6f_c00335{left:505.733333pt;}
.x11_c00335{left:507.600000pt;}
.xf1_c00335{left:508.666667pt;}
.x86_c00335{left:510.133333pt;}
.xe5_c00335{left:511.733333pt;}
.x30_c00335{left:513.733333pt;}
.x102_c00335{left:515.200000pt;}
.x7a_c00335{left:517.200000pt;}
.x56_c00335{left:518.133333pt;}
.x126_c00335{left:519.200000pt;}
.x9d_c00335{left:521.466667pt;}
.x117_c00335{left:524.133333pt;}
.x8c_c00335{left:525.333333pt;}
.xcb_c00335{left:526.933333pt;}
.x70_c00335{left:528.133333pt;}
.xfe_c00335{left:529.733333pt;}
.x60_c00335{left:531.066667pt;}
.x7b_c00335{left:534.800000pt;}
.x11e_c00335{left:535.733333pt;}
.x10a_c00335{left:538.933333pt;}
.x12_c00335{left:539.866667pt;}
.x31_c00335{left:541.600000pt;}
.xa4_c00335{left:542.666667pt;}
.x3f_c00335{left:544.133333pt;}
.xe6_c00335{left:546.266667pt;}
.x127_c00335{left:547.333333pt;}
.x21_c00335{left:548.400000pt;}
.x4d_c00335{left:550.266667pt;}
.x123_c00335{left:553.066667pt;}
.x13_c00335{left:555.200000pt;}
.x10b_c00335{left:556.533333pt;}
.x40_c00335{left:557.600000pt;}
.x9e_c00335{left:559.600000pt;}
.xd4_c00335{left:561.733333pt;}
.x12d_c00335{left:562.800000pt;}
.x61_c00335{left:564.000000pt;}
.xbd_c00335{left:565.466667pt;}
.x4e_c00335{left:566.933333pt;}
.x32_c00335{left:568.800000pt;}
.x12c_c00335{left:570.266667pt;}
.x7c_c00335{left:571.866667pt;}
.xed_c00335{left:578.000000pt;}
.x41_c00335{left:580.266667pt;}
.xf9_c00335{left:581.866667pt;}
.x33_c00335{left:584.533333pt;}
.xb0_c00335{left:585.466667pt;}
.x4f_c00335{left:586.800000pt;}
.x22_c00335{left:588.400000pt;}
.x62_c00335{left:590.933333pt;}
.x14_c00335{left:592.933333pt;}
.x71_c00335{left:594.000000pt;}
.x57_c00335{left:596.133333pt;}
.xd5_c00335{left:598.266667pt;}
.x9f_c00335{left:599.866667pt;}
.xcc_c00335{left:600.800000pt;}
.x110_c00335{left:601.733333pt;}
.xb1_c00335{left:603.333333pt;}
.x23_c00335{left:604.666667pt;}
.x103_c00335{left:606.133333pt;}
.xd6_c00335{left:608.133333pt;}
.x34_c00335{left:610.400000pt;}
.xdc_c00335{left:612.533333pt;}
.xff_c00335{left:613.866667pt;}
.xa5_c00335{left:615.600000pt;}
.x42_c00335{left:618.400000pt;}
.x72_c00335{left:620.933333pt;}
.x7d_c00335{left:622.133333pt;}
.x63_c00335{left:625.866667pt;}
.xa6_c00335{left:629.066667pt;}
.x128_c00335{left:630.266667pt;}
.x50_c00335{left:631.600000pt;}
.xd7_c00335{left:634.000000pt;}
.x11f_c00335{left:635.333333pt;}
.x15_c00335{left:636.400000pt;}
.xe7_c00335{left:638.400000pt;}
.x7e_c00335{left:640.400000pt;}
.xa0_c00335{left:642.800000pt;}
.x24_c00335{left:644.666667pt;}
.xea_c00335{left:646.400000pt;}
.xdd_c00335{left:648.400000pt;}
.xfa_c00335{left:649.733333pt;}
.x73_c00335{left:653.600000pt;}
.x8d_c00335{left:654.666667pt;}
.x124_c00335{left:656.400000pt;}
.xd1_c00335{left:658.000000pt;}
.x2_c00335{left:659.466667pt;}
.x87_c00335{left:660.533333pt;}
.x35_c00335{left:663.200000pt;}
.xeb_c00335{left:666.266667pt;}
.x104_c00335{left:667.600000pt;}
.x94_c00335{left:670.533333pt;}
.xbe_c00335{left:673.733333pt;}
.x120_c00335{left:677.600000pt;}
.x16_c00335{left:689.466667pt;}
}





/* 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_c00336 {
    display:none;
  }
  .loading-indicator_c00336.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00336 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_c00336 { 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_c00336" -> "#page-container .classname_c00336")
 */
.pf_c00336 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00336 { /* 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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00336 { /* 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_c00336 { /* 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_c00336 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00336 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00336 {overflow:visible;}
  }
}
.c_c00336 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00336 { /* 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_c00336:after { /* webkit #35443 */
  content: '';
}
.t_c00336:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00336 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 */
}
.__c00336 { /* 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_c00336 { /* info for Javascript */
  display:none;
}
.l_c00336 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00336 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00336 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00336: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_c00336 {
    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_c00336.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00336.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_c00336 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00336{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00336;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.000000;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;}
.m2_c00336{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m25_c00336{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00336{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m90_c00336{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.md0_c00336{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00336{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mba_c00336{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m37_c00336{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m76_c00336{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00336{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00336{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00336{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m44_c00336{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00336{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00336{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m40_c00336{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00336{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m87_c00336{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m85_c00336{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00336{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00336{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00336{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00336{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m60_c00336{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00336{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00336{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00336{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00336{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00336{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00336{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m79_c00336{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00336{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00336{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maf_c00336{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00336{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00336{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m42_c00336{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00336{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m75_c00336{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m41_c00336{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00336{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m49_c00336{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00336{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m30_c00336{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m58_c00336{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m82_c00336{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m93_c00336{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m33_c00336{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00336{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00336{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00336{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m91_c00336{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m55_c00336{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00336{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m59_c00336{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00336{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m54_c00336{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m99_c00336{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m95_c00336{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m39_c00336{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00336{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00336{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mae_c00336{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00336{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00336{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m17_c00336{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m71_c00336{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00336{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00336{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m64_c00336{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m34_c00336{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m77_c00336{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m78_c00336{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00336{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m56_c00336{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mca_c00336{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00336{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00336{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00336{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00336{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m23_c00336{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m50_c00336{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m11_c00336{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m97_c00336{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m80_c00336{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m45_c00336{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mac_c00336{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00336{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m57_c00336{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00336{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00336{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00336{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00336{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.me_c00336{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m32_c00336{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00336{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00336{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00336{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00336{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00336{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00336{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00336{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m31_c00336{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00336{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00336{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00336{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00336{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m65_c00336{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00336{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00336{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m46_c00336{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00336{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00336{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00336{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m96_c00336{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00336{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m61_c00336{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m52_c00336{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00336{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m92_c00336{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00336{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m62_c00336{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mad_c00336{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00336{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m35_c00336{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00336{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m88_c00336{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00336{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00336{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m86_c00336{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4_c00336{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00336{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m63_c00336{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00336{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00336{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m21_c00336{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00336{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m81_c00336{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00336{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00336{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00336{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00336{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00336{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00336{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00336{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00336{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m74_c00336{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00336{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m66_c00336{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00336{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m89_c00336{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m10_c00336{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00336{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00336{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00336{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m70_c00336{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m47_c00336{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m72_c00336{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00336{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m94_c00336{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mab_c00336{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m48_c00336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00336{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m83_c00336{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m36_c00336{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m43_c00336{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00336{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00336{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00336{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00336{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m69_c00336{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.maa_c00336{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m3_c00336{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00336{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00336{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00336{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c00336{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m67_c00336{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m98_c00336{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.mce_c00336{transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.453250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m84_c00336{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00336{vertical-align:0.000000px;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{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__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12_c00336{word-spacing:-9.433297px;}
.ws1_c00336{word-spacing:-8.671875px;}
.ws3_c00336{word-spacing:-3.611111px;}
.wsc_c00336{word-spacing:-3.472222px;}
.wse_c00336{word-spacing:-1.250000px;}
.ws13_c00336{word-spacing:0.000000px;}
.ws6_c00336{word-spacing:1.666667px;}
.ws2_c00336{word-spacing:3.055556px;}
.ws7_c00336{word-spacing:3.472222px;}
.ws10_c00336{word-spacing:6.250000px;}
.wsa_c00336{word-spacing:6.944444px;}
.ws0_c00336{word-spacing:8.529412px;}
.wsf_c00336{word-spacing:9.285714px;}
.wsd_c00336{word-spacing:9.722222px;}
.ws8_c00336{word-spacing:10.625000px;}
.ws4_c00336{word-spacing:13.194444px;}
.ws9_c00336{word-spacing:19.117647px;}
.wsb_c00336{word-spacing:20.789474px;}
.ws5_c00336{word-spacing:21.029412px;}
.ws11_c00336{word-spacing:65.515413px;}
.fc0_c00336{color:transparent;}
.fs1_c00336{font-size:54.000000px;}
.fs0_c00336{font-size:60.000000px;}
.y0_c00336{bottom:0.000000px;}
.y2d_c00336{bottom:151.350000px;}
.y2c_c00336{bottom:167.250000px;}
.y2b_c00336{bottom:183.150000px;}
.y2a_c00336{bottom:202.650000px;}
.y29_c00336{bottom:214.500000px;}
.y28_c00336{bottom:230.400000px;}
.y27_c00336{bottom:257.550000px;}
.y26_c00336{bottom:277.350000px;}
.y25_c00336{bottom:297.150000px;}
.y24_c00336{bottom:316.950000px;}
.y23_c00336{bottom:336.750000px;}
.y22_c00336{bottom:356.850000px;}
.y21_c00336{bottom:376.650000px;}
.y20_c00336{bottom:396.750000px;}
.y1f_c00336{bottom:416.700000px;}
.y1e_c00336{bottom:436.800000px;}
.y1d_c00336{bottom:456.900000px;}
.y1c_c00336{bottom:477.000000px;}
.y1b_c00336{bottom:496.800000px;}
.y1a_c00336{bottom:516.900000px;}
.y19_c00336{bottom:536.700000px;}
.y18_c00336{bottom:556.500000px;}
.y17_c00336{bottom:576.300000px;}
.y16_c00336{bottom:609.600000px;}
.y15_c00336{bottom:629.400000px;}
.y14_c00336{bottom:650.250000px;}
.y13_c00336{bottom:670.050000px;}
.y12_c00336{bottom:689.850000px;}
.y11_c00336{bottom:709.650000px;}
.y10_c00336{bottom:729.750000px;}
.yf_c00336{bottom:749.550000px;}
.ye_c00336{bottom:769.800000px;}
.yd_c00336{bottom:789.600000px;}
.yc_c00336{bottom:809.700000px;}
.yb_c00336{bottom:829.500000px;}
.ya_c00336{bottom:849.300000px;}
.y9_c00336{bottom:869.100000px;}
.y8_c00336{bottom:888.900000px;}
.y7_c00336{bottom:908.700000px;}
.y6_c00336{bottom:928.800000px;}
.y5_c00336{bottom:948.600000px;}
.y4_c00336{bottom:968.400000px;}
.y3_c00336{bottom:988.500000px;}
.y2_c00336{bottom:1013.700000px;}
.y1_c00336{bottom:1046.100000px;}
.h3_c00336{height:54.000000px;}
.h2_c00336{height:60.000000px;}
.h0_c00336{height:1166.759949px;}
.h1_c00336{height:1167.000000px;}
.w1_c00336{width:913.500000px;}
.w0_c00336{width:913.679993px;}
.x0_c00336{left:0.000000px;}
.x3_c00336{left:133.500000px;}
.x137_c00336{left:137.850000px;}
.x11c_c00336{left:139.050000px;}
.x10c_c00336{left:140.250000px;}
.xea_c00336{left:141.600000px;}
.xc8_c00336{left:142.800000px;}
.xab_c00336{left:143.850000px;}
.x13_c00336{left:145.500000px;}
.x1_c00336{left:147.300000px;}
.x13f_c00336{left:153.300000px;}
.x12c_c00336{left:155.100000px;}
.x125_c00336{left:158.400000px;}
.x47_c00336{left:166.500000px;}
.xf6_c00336{left:169.200000px;}
.x101_c00336{left:170.700000px;}
.x39_c00336{left:171.900000px;}
.x4_c00336{left:174.150000px;}
.xa4_c00336{left:175.650000px;}
.x70_c00336{left:176.700000px;}
.x57_c00336{left:178.650000px;}
.x99_c00336{left:180.000000px;}
.x8d_c00336{left:181.500000px;}
.x3a_c00336{left:184.200000px;}
.xe4_c00336{left:186.300000px;}
.xeb_c00336{left:189.150000px;}
.x48_c00336{left:190.200000px;}
.x10d_c00336{left:191.700000px;}
.x2c_c00336{left:194.400000px;}
.xe1_c00336{left:195.750000px;}
.x1e_c00336{left:196.950000px;}
.xfa_c00336{left:198.150000px;}
.x9a_c00336{left:199.500000px;}
.x14_c00336{left:200.550000px;}
.x8e_c00336{left:203.100000px;}
.x65_c00336{left:204.600000px;}
.xdd_c00336{left:207.300000px;}
.x10e_c00336{left:210.750000px;}
.xce_c00336{left:212.400000px;}
.x5_c00336{left:214.050000px;}
.xf1_c00336{left:216.600000px;}
.x117_c00336{left:217.800000px;}
.x66_c00336{left:219.750000px;}
.x119_c00336{left:220.800000px;}
.x84_c00336{left:222.000000px;}
.x126_c00336{left:223.800000px;}
.x7b_c00336{left:227.550000px;}
.xa5_c00336{left:229.650000px;}
.x3b_c00336{left:232.050000px;}
.xcf_c00336{left:234.300000px;}
.x10f_c00336{left:238.050000px;}
.x2d_c00336{left:240.150000px;}
.x1f_c00336{left:241.650000px;}
.xfb_c00336{left:243.150000px;}
.x11a_c00336{left:246.300000px;}
.xac_c00336{left:248.250000px;}
.x67_c00336{left:249.300000px;}
.xec_c00336{left:251.400000px;}
.x11d_c00336{left:252.450000px;}
.x7c_c00336{left:255.600000px;}
.x58_c00336{left:257.850000px;}
.x15_c00336{left:259.500000px;}
.x9b_c00336{left:261.000000px;}
.x12f_c00336{left:262.350000px;}
.xd0_c00336{left:263.850000px;}
.x49_c00336{left:265.500000px;}
.x71_c00336{left:268.500000px;}
.x6_c00336{left:270.600000px;}
.xfc_c00336{left:271.650000px;}
.xc2_c00336{left:273.900000px;}
.xda_c00336{left:276.150000px;}
.xf2_c00336{left:277.800000px;}
.xd7_c00336{left:279.150000px;}
.x59_c00336{left:280.200000px;}
.xb3_c00336{left:281.250000px;}
.x130_c00336{left:282.900000px;}
.x4a_c00336{left:286.800000px;}
.xc9_c00336{left:288.300000px;}
.x8f_c00336{left:292.350000px;}
.xdb_c00336{left:293.400000px;}
.x127_c00336{left:295.500000px;}
.x68_c00336{left:297.600000px;}
.x20_c00336{left:298.950000px;}
.xd8_c00336{left:300.000000px;}
.x16_c00336{left:301.650000px;}
.x9c_c00336{left:302.700000px;}
.x13c_c00336{left:303.900000px;}
.x138_c00336{left:305.400000px;}
.x4b_c00336{left:308.100000px;}
.xb4_c00336{left:310.350000px;}
.xa6_c00336{left:312.000000px;}
.x114_c00336{left:313.350000px;}
.x11e_c00336{left:314.700000px;}
.x2e_c00336{left:315.750000px;}
.x131_c00336{left:318.600000px;}
.x85_c00336{left:320.250000px;}
.x3c_c00336{left:321.300000px;}
.xd1_c00336{left:322.500000px;}
.x7_c00336{left:323.850000px;}
.xed_c00336{left:325.200000px;}
.x72_c00336{left:327.600000px;}
.x11b_c00336{left:328.650000px;}
.xb5_c00336{left:331.200000px;}
.x9d_c00336{left:333.300000px;}
.x5a_c00336{left:335.700000px;}
.x21_c00336{left:342.450000px;}
.xd2_c00336{left:344.100000px;}
.x106_c00336{left:346.050000px;}
.xde_c00336{left:347.100000px;}
.xe5_c00336{left:348.600000px;}
.x3d_c00336{left:349.800000px;}
.x7d_c00336{left:351.000000px;}
.x86_c00336{left:352.650000px;}
.x110_c00336{left:354.450000px;}
.xee_c00336{left:355.500000px;}
.x5b_c00336{left:358.350000px;}
.x90_c00336{left:360.000000px;}
.x8_c00336{left:361.950000px;}
.x9e_c00336{left:363.150000px;}
.xb6_c00336{left:365.100000px;}
.xa7_c00336{left:366.750000px;}
.x17_c00336{left:369.750000px;}
.x4c_c00336{left:371.100000px;}
.xfd_c00336{left:372.900000px;}
.x2f_c00336{left:374.550000px;}
.x22_c00336{left:375.600000px;}
.xd9_c00336{left:377.100000px;}
.xdf_c00336{left:378.450000px;}
.x69_c00336{left:381.450000px;}
.x5c_c00336{left:382.500000px;}
.xad_c00336{left:387.900000px;}
.x30_c00336{left:390.000000px;}
.x87_c00336{left:391.950000px;}
.xf7_c00336{left:394.500000px;}
.xc3_c00336{left:395.700000px;}
.xa8_c00336{left:398.100000px;}
.x128_c00336{left:399.600000px;}
.x9_c00336{left:401.250000px;}
.xef_c00336{left:404.100000px;}
.x4d_c00336{left:409.200000px;}
.xae_c00336{left:412.050000px;}
.x6a_c00336{left:413.550000px;}
.x3e_c00336{left:415.350000px;}
.x91_c00336{left:417.900000px;}
.x140_c00336{left:422.550000px;}
.xb7_c00336{left:424.800000px;}
.xf3_c00336{left:426.150000px;}
.x5d_c00336{left:428.250000px;}
.x23_c00336{left:429.300000px;}
.xc4_c00336{left:432.750000px;}
.x3f_c00336{left:434.850000px;}
.x107_c00336{left:436.050000px;}
.x73_c00336{left:437.100000px;}
.x31_c00336{left:438.300000px;}
.x92_c00336{left:439.800000px;}
.x9f_c00336{left:443.100000px;}
.x2_c00336{left:444.600000px;}
.x6b_c00336{left:446.250000px;}
.x132_c00336{left:449.700000px;}
.x139_c00336{left:450.750000px;}
.x4e_c00336{left:452.850000px;}
.x24_c00336{left:455.250000px;}
.x5e_c00336{left:458.550000px;}
.x74_c00336{left:460.500000px;}
.xa_c00336{left:462.450000px;}
.xe0_c00336{left:467.700000px;}
.x93_c00336{left:470.700000px;}
.xe6_c00336{left:472.950000px;}
.xa9_c00336{left:475.800000px;}
.x7e_c00336{left:478.800000px;}
.xa0_c00336{left:480.150000px;}
.x108_c00336{left:481.350000px;}
.x18_c00336{left:484.650000px;}
.x5f_c00336{left:486.600000px;}
.x75_c00336{left:489.000000px;}
.xd3_c00336{left:490.650000px;}
.xb_c00336{left:493.050000px;}
.xe7_c00336{left:494.550000px;}
.x6c_c00336{left:497.400000px;}
.xca_c00336{left:499.650000px;}
.xaf_c00336{left:502.050000px;}
.x40_c00336{left:505.800000px;}
.xc_c00336{left:509.250000px;}
.x4f_c00336{left:512.250000px;}
.x6d_c00336{left:514.650000px;}
.x88_c00336{left:516.000000px;}
.x32_c00336{left:518.550000px;}
.xd4_c00336{left:521.550000px;}
.x41_c00336{left:523.800000px;}
.x60_c00336{left:527.250000px;}
.x76_c00336{left:529.350000px;}
.x25_c00336{left:530.550000px;}
.x141_c00336{left:532.050000px;}
.x11f_c00336{left:534.900000px;}
.xd_c00336{left:535.950000px;}
.x7f_c00336{left:538.950000px;}
.xf8_c00336{left:540.000000px;}
.x42_c00336{left:541.500000px;}
.x133_c00336{left:542.550000px;}
.xe8_c00336{left:544.950000px;}
.xbc_c00336{left:546.150000px;}
.x33_c00336{left:550.950000px;}
.xfe_c00336{left:552.900000px;}
.x115_c00336{left:554.250000px;}
.x94_c00336{left:555.300000px;}
.xf4_c00336{left:559.800000px;}
.x89_c00336{left:561.000000px;}
.x102_c00336{left:562.350000px;}
.x50_c00336{left:563.850000px;}
.xbd_c00336{left:564.900000px;}
.xb0_c00336{left:567.150000px;}
.x19_c00336{left:570.750000px;}
.xa1_c00336{left:574.200000px;}
.x109_c00336{left:575.550000px;}
.xdc_c00336{left:576.900000px;}
.x61_c00336{left:577.950000px;}
.x80_c00336{left:580.050000px;}
.xbe_c00336{left:582.900000px;}
.x26_c00336{left:584.850000px;}
.x34_c00336{left:587.250000px;}
.x103_c00336{left:588.300000px;}
.x43_c00336{left:591.450000px;}
.x129_c00336{left:592.950000px;}
.x134_c00336{left:594.000000px;}
.x77_c00336{left:595.650000px;}
.x120_c00336{left:596.850000px;}
.xcb_c00336{left:598.650000px;}
.xff_c00336{left:600.750000px;}
.xa2_c00336{left:602.250000px;}
.x142_c00336{left:603.300000px;}
.xf9_c00336{left:604.800000px;}
.x123_c00336{left:606.750000px;}
.xc5_c00336{left:609.000000px;}
.x62_c00336{left:611.100000px;}
.xe_c00336{left:612.600000px;}
.x12d_c00336{left:614.700000px;}
.x27_c00336{left:616.950000px;}
.x51_c00336{left:618.600000px;}
.xbf_c00336{left:623.550000px;}
.x8a_c00336{left:625.350000px;}
.x1a_c00336{left:626.850000px;}
.xb8_c00336{left:629.250000px;}
.x13d_c00336{left:631.050000px;}
.x28_c00336{left:632.850000px;}
.x135_c00336{left:633.900000px;}
.x124_c00336{left:635.250000px;}
.x44_c00336{left:638.250000px;}
.x81_c00336{left:639.450000px;}
.xd5_c00336{left:641.550000px;}
.x52_c00336{left:643.050000px;}
.xb1_c00336{left:644.850000px;}
.x35_c00336{left:648.450000px;}
.x143_c00336{left:650.100000px;}
.x1b_c00336{left:651.300000px;}
.x104_c00336{left:654.900000px;}
.xcc_c00336{left:656.250000px;}
.x12e_c00336{left:657.600000px;}
.xb9_c00336{left:659.550000px;}
.x95_c00336{left:661.500000px;}
.xaa_c00336{left:663.000000px;}
.xe2_c00336{left:664.050000px;}
.x29_c00336{left:665.250000px;}
.x111_c00336{left:667.200000px;}
.xc0_c00336{left:668.850000px;}
.xf_c00336{left:670.200000px;}
.x100_c00336{left:671.400000px;}
.x78_c00336{left:676.050000px;}
.x12a_c00336{left:679.800000px;}
.x13a_c00336{left:681.150000px;}
.x53_c00336{left:682.950000px;}
.xf0_c00336{left:687.300000px;}
.x8b_c00336{left:689.400000px;}
.x36_c00336{left:691.350000px;}
.x118_c00336{left:693.000000px;}
.x2a_c00336{left:694.800000px;}
.x82_c00336{left:697.800000px;}
.x10a_c00336{left:700.500000px;}
.x1c_c00336{left:701.700000px;}
.x96_c00336{left:703.650000px;}
.x6e_c00336{left:705.300000px;}
.x112_c00336{left:709.650000px;}
.x10_c00336{left:711.900000px;}
.xf5_c00336{left:713.250000px;}
.x54_c00336{left:715.050000px;}
.x79_c00336{left:716.700000px;}
.xb2_c00336{left:718.650000px;}
.x121_c00336{left:721.350000px;}
.x13e_c00336{left:722.400000px;}
.x12b_c00336{left:723.450000px;}
.xe3_c00336{left:724.950000px;}
.xe9_c00336{left:727.350000px;}
.xcd_c00336{left:730.350000px;}
.x97_c00336{left:732.450000px;}
.xd6_c00336{left:734.850000px;}
.x136_c00336{left:736.500000px;}
.x55_c00336{left:738.150000px;}
.x37_c00336{left:740.700000px;}
.xa3_c00336{left:742.950000px;}
.xba_c00336{left:744.750000px;}
.xc1_c00336{left:747.750000px;}
.x11_c00336{left:748.950000px;}
.x83_c00336{left:750.750000px;}
.x63_c00336{left:751.800000px;}
.x105_c00336{left:755.400000px;}
.xc6_c00336{left:756.900000px;}
.x8c_c00336{left:762.450000px;}
.x1d_c00336{left:764.700000px;}
.x45_c00336{left:767.850000px;}
.x122_c00336{left:768.900000px;}
.x38_c00336{left:770.250000px;}
.x10b_c00336{left:771.750000px;}
.x113_c00336{left:773.400000px;}
.x6f_c00336{left:774.750000px;}
.x12_c00336{left:779.850000px;}
.x98_c00336{left:782.400000px;}
.x46_c00336{left:786.150000px;}
.x7a_c00336{left:787.650000px;}
.x2b_c00336{left:790.200000px;}
.x13b_c00336{left:791.700000px;}
.x64_c00336{left:793.500000px;}
.x116_c00336{left:794.850000px;}
.xbb_c00336{left:796.200000px;}
.x56_c00336{left:801.150000px;}
.xc7_c00336{left:805.950000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws12_c00336{word-spacing:-8.385153pt;}
.ws1_c00336{word-spacing:-7.708333pt;}
.ws3_c00336{word-spacing:-3.209877pt;}
.wsc_c00336{word-spacing:-3.086420pt;}
.wse_c00336{word-spacing:-1.111111pt;}
.ws13_c00336{word-spacing:0.000000pt;}
.ws6_c00336{word-spacing:1.481481pt;}
.ws2_c00336{word-spacing:2.716049pt;}
.ws7_c00336{word-spacing:3.086420pt;}
.ws10_c00336{word-spacing:5.555556pt;}
.wsa_c00336{word-spacing:6.172840pt;}
.ws0_c00336{word-spacing:7.581699pt;}
.wsf_c00336{word-spacing:8.253968pt;}
.wsd_c00336{word-spacing:8.641975pt;}
.ws8_c00336{word-spacing:9.444444pt;}
.ws4_c00336{word-spacing:11.728395pt;}
.ws9_c00336{word-spacing:16.993464pt;}
.wsb_c00336{word-spacing:18.479532pt;}
.ws5_c00336{word-spacing:18.692810pt;}
.ws11_c00336{word-spacing:58.235923pt;}
.fs1_c00336{font-size:48.000000pt;}
.fs0_c00336{font-size:53.333333pt;}
.y0_c00336{bottom:0.000000pt;}
.y2d_c00336{bottom:134.533333pt;}
.y2c_c00336{bottom:148.666667pt;}
.y2b_c00336{bottom:162.800000pt;}
.y2a_c00336{bottom:180.133333pt;}
.y29_c00336{bottom:190.666667pt;}
.y28_c00336{bottom:204.800000pt;}
.y27_c00336{bottom:228.933333pt;}
.y26_c00336{bottom:246.533333pt;}
.y25_c00336{bottom:264.133333pt;}
.y24_c00336{bottom:281.733333pt;}
.y23_c00336{bottom:299.333333pt;}
.y22_c00336{bottom:317.200000pt;}
.y21_c00336{bottom:334.800000pt;}
.y20_c00336{bottom:352.666667pt;}
.y1f_c00336{bottom:370.400000pt;}
.y1e_c00336{bottom:388.266667pt;}
.y1d_c00336{bottom:406.133333pt;}
.y1c_c00336{bottom:424.000000pt;}
.y1b_c00336{bottom:441.600000pt;}
.y1a_c00336{bottom:459.466667pt;}
.y19_c00336{bottom:477.066667pt;}
.y18_c00336{bottom:494.666667pt;}
.y17_c00336{bottom:512.266667pt;}
.y16_c00336{bottom:541.866667pt;}
.y15_c00336{bottom:559.466667pt;}
.y14_c00336{bottom:578.000000pt;}
.y13_c00336{bottom:595.600000pt;}
.y12_c00336{bottom:613.200000pt;}
.y11_c00336{bottom:630.800000pt;}
.y10_c00336{bottom:648.666667pt;}
.yf_c00336{bottom:666.266667pt;}
.ye_c00336{bottom:684.266667pt;}
.yd_c00336{bottom:701.866667pt;}
.yc_c00336{bottom:719.733333pt;}
.yb_c00336{bottom:737.333333pt;}
.ya_c00336{bottom:754.933333pt;}
.y9_c00336{bottom:772.533333pt;}
.y8_c00336{bottom:790.133333pt;}
.y7_c00336{bottom:807.733333pt;}
.y6_c00336{bottom:825.600000pt;}
.y5_c00336{bottom:843.200000pt;}
.y4_c00336{bottom:860.800000pt;}
.y3_c00336{bottom:878.666667pt;}
.y2_c00336{bottom:901.066667pt;}
.y1_c00336{bottom:929.866667pt;}
.h3_c00336{height:48.000000pt;}
.h2_c00336{height:53.333333pt;}
.h0_c00336{height:1037.119955pt;}
.h1_c00336{height:1037.333333pt;}
.w1_c00336{width:812.000000pt;}
.w0_c00336{width:812.159993pt;}
.x0_c00336{left:0.000000pt;}
.x3_c00336{left:118.666667pt;}
.x137_c00336{left:122.533333pt;}
.x11c_c00336{left:123.600000pt;}
.x10c_c00336{left:124.666667pt;}
.xea_c00336{left:125.866667pt;}
.xc8_c00336{left:126.933333pt;}
.xab_c00336{left:127.866667pt;}
.x13_c00336{left:129.333333pt;}
.x1_c00336{left:130.933333pt;}
.x13f_c00336{left:136.266667pt;}
.x12c_c00336{left:137.866667pt;}
.x125_c00336{left:140.800000pt;}
.x47_c00336{left:148.000000pt;}
.xf6_c00336{left:150.400000pt;}
.x101_c00336{left:151.733333pt;}
.x39_c00336{left:152.800000pt;}
.x4_c00336{left:154.800000pt;}
.xa4_c00336{left:156.133333pt;}
.x70_c00336{left:157.066667pt;}
.x57_c00336{left:158.800000pt;}
.x99_c00336{left:160.000000pt;}
.x8d_c00336{left:161.333333pt;}
.x3a_c00336{left:163.733333pt;}
.xe4_c00336{left:165.600000pt;}
.xeb_c00336{left:168.133333pt;}
.x48_c00336{left:169.066667pt;}
.x10d_c00336{left:170.400000pt;}
.x2c_c00336{left:172.800000pt;}
.xe1_c00336{left:174.000000pt;}
.x1e_c00336{left:175.066667pt;}
.xfa_c00336{left:176.133333pt;}
.x9a_c00336{left:177.333333pt;}
.x14_c00336{left:178.266667pt;}
.x8e_c00336{left:180.533333pt;}
.x65_c00336{left:181.866667pt;}
.xdd_c00336{left:184.266667pt;}
.x10e_c00336{left:187.333333pt;}
.xce_c00336{left:188.800000pt;}
.x5_c00336{left:190.266667pt;}
.xf1_c00336{left:192.533333pt;}
.x117_c00336{left:193.600000pt;}
.x66_c00336{left:195.333333pt;}
.x119_c00336{left:196.266667pt;}
.x84_c00336{left:197.333333pt;}
.x126_c00336{left:198.933333pt;}
.x7b_c00336{left:202.266667pt;}
.xa5_c00336{left:204.133333pt;}
.x3b_c00336{left:206.266667pt;}
.xcf_c00336{left:208.266667pt;}
.x10f_c00336{left:211.600000pt;}
.x2d_c00336{left:213.466667pt;}
.x1f_c00336{left:214.800000pt;}
.xfb_c00336{left:216.133333pt;}
.x11a_c00336{left:218.933333pt;}
.xac_c00336{left:220.666667pt;}
.x67_c00336{left:221.600000pt;}
.xec_c00336{left:223.466667pt;}
.x11d_c00336{left:224.400000pt;}
.x7c_c00336{left:227.200000pt;}
.x58_c00336{left:229.200000pt;}
.x15_c00336{left:230.666667pt;}
.x9b_c00336{left:232.000000pt;}
.x12f_c00336{left:233.200000pt;}
.xd0_c00336{left:234.533333pt;}
.x49_c00336{left:236.000000pt;}
.x71_c00336{left:238.666667pt;}
.x6_c00336{left:240.533333pt;}
.xfc_c00336{left:241.466667pt;}
.xc2_c00336{left:243.466667pt;}
.xda_c00336{left:245.466667pt;}
.xf2_c00336{left:246.933333pt;}
.xd7_c00336{left:248.133333pt;}
.x59_c00336{left:249.066667pt;}
.xb3_c00336{left:250.000000pt;}
.x130_c00336{left:251.466667pt;}
.x4a_c00336{left:254.933333pt;}
.xc9_c00336{left:256.266667pt;}
.x8f_c00336{left:259.866667pt;}
.xdb_c00336{left:260.800000pt;}
.x127_c00336{left:262.666667pt;}
.x68_c00336{left:264.533333pt;}
.x20_c00336{left:265.733333pt;}
.xd8_c00336{left:266.666667pt;}
.x16_c00336{left:268.133333pt;}
.x9c_c00336{left:269.066667pt;}
.x13c_c00336{left:270.133333pt;}
.x138_c00336{left:271.466667pt;}
.x4b_c00336{left:273.866667pt;}
.xb4_c00336{left:275.866667pt;}
.xa6_c00336{left:277.333333pt;}
.x114_c00336{left:278.533333pt;}
.x11e_c00336{left:279.733333pt;}
.x2e_c00336{left:280.666667pt;}
.x131_c00336{left:283.200000pt;}
.x85_c00336{left:284.666667pt;}
.x3c_c00336{left:285.600000pt;}
.xd1_c00336{left:286.666667pt;}
.x7_c00336{left:287.866667pt;}
.xed_c00336{left:289.066667pt;}
.x72_c00336{left:291.200000pt;}
.x11b_c00336{left:292.133333pt;}
.xb5_c00336{left:294.400000pt;}
.x9d_c00336{left:296.266667pt;}
.x5a_c00336{left:298.400000pt;}
.x21_c00336{left:304.400000pt;}
.xd2_c00336{left:305.866667pt;}
.x106_c00336{left:307.600000pt;}
.xde_c00336{left:308.533333pt;}
.xe5_c00336{left:309.866667pt;}
.x3d_c00336{left:310.933333pt;}
.x7d_c00336{left:312.000000pt;}
.x86_c00336{left:313.466667pt;}
.x110_c00336{left:315.066667pt;}
.xee_c00336{left:316.000000pt;}
.x5b_c00336{left:318.533333pt;}
.x90_c00336{left:320.000000pt;}
.x8_c00336{left:321.733333pt;}
.x9e_c00336{left:322.800000pt;}
.xb6_c00336{left:324.533333pt;}
.xa7_c00336{left:326.000000pt;}
.x17_c00336{left:328.666667pt;}
.x4c_c00336{left:329.866667pt;}
.xfd_c00336{left:331.466667pt;}
.x2f_c00336{left:332.933333pt;}
.x22_c00336{left:333.866667pt;}
.xd9_c00336{left:335.200000pt;}
.xdf_c00336{left:336.400000pt;}
.x69_c00336{left:339.066667pt;}
.x5c_c00336{left:340.000000pt;}
.xad_c00336{left:344.800000pt;}
.x30_c00336{left:346.666667pt;}
.x87_c00336{left:348.400000pt;}
.xf7_c00336{left:350.666667pt;}
.xc3_c00336{left:351.733333pt;}
.xa8_c00336{left:353.866667pt;}
.x128_c00336{left:355.200000pt;}
.x9_c00336{left:356.666667pt;}
.xef_c00336{left:359.200000pt;}
.x4d_c00336{left:363.733333pt;}
.xae_c00336{left:366.266667pt;}
.x6a_c00336{left:367.600000pt;}
.x3e_c00336{left:369.200000pt;}
.x91_c00336{left:371.466667pt;}
.x140_c00336{left:375.600000pt;}
.xb7_c00336{left:377.600000pt;}
.xf3_c00336{left:378.800000pt;}
.x5d_c00336{left:380.666667pt;}
.x23_c00336{left:381.600000pt;}
.xc4_c00336{left:384.666667pt;}
.x3f_c00336{left:386.533333pt;}
.x107_c00336{left:387.600000pt;}
.x73_c00336{left:388.533333pt;}
.x31_c00336{left:389.600000pt;}
.x92_c00336{left:390.933333pt;}
.x9f_c00336{left:393.866667pt;}
.x2_c00336{left:395.200000pt;}
.x6b_c00336{left:396.666667pt;}
.x132_c00336{left:399.733333pt;}
.x139_c00336{left:400.666667pt;}
.x4e_c00336{left:402.533333pt;}
.x24_c00336{left:404.666667pt;}
.x5e_c00336{left:407.600000pt;}
.x74_c00336{left:409.333333pt;}
.xa_c00336{left:411.066667pt;}
.xe0_c00336{left:415.733333pt;}
.x93_c00336{left:418.400000pt;}
.xe6_c00336{left:420.400000pt;}
.xa9_c00336{left:422.933333pt;}
.x7e_c00336{left:425.600000pt;}
.xa0_c00336{left:426.800000pt;}
.x108_c00336{left:427.866667pt;}
.x18_c00336{left:430.800000pt;}
.x5f_c00336{left:432.533333pt;}
.x75_c00336{left:434.666667pt;}
.xd3_c00336{left:436.133333pt;}
.xb_c00336{left:438.266667pt;}
.xe7_c00336{left:439.600000pt;}
.x6c_c00336{left:442.133333pt;}
.xca_c00336{left:444.133333pt;}
.xaf_c00336{left:446.266667pt;}
.x40_c00336{left:449.600000pt;}
.xc_c00336{left:452.666667pt;}
.x4f_c00336{left:455.333333pt;}
.x6d_c00336{left:457.466667pt;}
.x88_c00336{left:458.666667pt;}
.x32_c00336{left:460.933333pt;}
.xd4_c00336{left:463.600000pt;}
.x41_c00336{left:465.600000pt;}
.x60_c00336{left:468.666667pt;}
.x76_c00336{left:470.533333pt;}
.x25_c00336{left:471.600000pt;}
.x141_c00336{left:472.933333pt;}
.x11f_c00336{left:475.466667pt;}
.xd_c00336{left:476.400000pt;}
.x7f_c00336{left:479.066667pt;}
.xf8_c00336{left:480.000000pt;}
.x42_c00336{left:481.333333pt;}
.x133_c00336{left:482.266667pt;}
.xe8_c00336{left:484.400000pt;}
.xbc_c00336{left:485.466667pt;}
.x33_c00336{left:489.733333pt;}
.xfe_c00336{left:491.466667pt;}
.x115_c00336{left:492.666667pt;}
.x94_c00336{left:493.600000pt;}
.xf4_c00336{left:497.600000pt;}
.x89_c00336{left:498.666667pt;}
.x102_c00336{left:499.866667pt;}
.x50_c00336{left:501.200000pt;}
.xbd_c00336{left:502.133333pt;}
.xb0_c00336{left:504.133333pt;}
.x19_c00336{left:507.333333pt;}
.xa1_c00336{left:510.400000pt;}
.x109_c00336{left:511.600000pt;}
.xdc_c00336{left:512.800000pt;}
.x61_c00336{left:513.733333pt;}
.x80_c00336{left:515.600000pt;}
.xbe_c00336{left:518.133333pt;}
.x26_c00336{left:519.866667pt;}
.x34_c00336{left:522.000000pt;}
.x103_c00336{left:522.933333pt;}
.x43_c00336{left:525.733333pt;}
.x129_c00336{left:527.066667pt;}
.x134_c00336{left:528.000000pt;}
.x77_c00336{left:529.466667pt;}
.x120_c00336{left:530.533333pt;}
.xcb_c00336{left:532.133333pt;}
.xff_c00336{left:534.000000pt;}
.xa2_c00336{left:535.333333pt;}
.x142_c00336{left:536.266667pt;}
.xf9_c00336{left:537.600000pt;}
.x123_c00336{left:539.333333pt;}
.xc5_c00336{left:541.333333pt;}
.x62_c00336{left:543.200000pt;}
.xe_c00336{left:544.533333pt;}
.x12d_c00336{left:546.400000pt;}
.x27_c00336{left:548.400000pt;}
.x51_c00336{left:549.866667pt;}
.xbf_c00336{left:554.266667pt;}
.x8a_c00336{left:555.866667pt;}
.x1a_c00336{left:557.200000pt;}
.xb8_c00336{left:559.333333pt;}
.x13d_c00336{left:560.933333pt;}
.x28_c00336{left:562.533333pt;}
.x135_c00336{left:563.466667pt;}
.x124_c00336{left:564.666667pt;}
.x44_c00336{left:567.333333pt;}
.x81_c00336{left:568.400000pt;}
.xd5_c00336{left:570.266667pt;}
.x52_c00336{left:571.600000pt;}
.xb1_c00336{left:573.200000pt;}
.x35_c00336{left:576.400000pt;}
.x143_c00336{left:577.866667pt;}
.x1b_c00336{left:578.933333pt;}
.x104_c00336{left:582.133333pt;}
.xcc_c00336{left:583.333333pt;}
.x12e_c00336{left:584.533333pt;}
.xb9_c00336{left:586.266667pt;}
.x95_c00336{left:588.000000pt;}
.xaa_c00336{left:589.333333pt;}
.xe2_c00336{left:590.266667pt;}
.x29_c00336{left:591.333333pt;}
.x111_c00336{left:593.066667pt;}
.xc0_c00336{left:594.533333pt;}
.xf_c00336{left:595.733333pt;}
.x100_c00336{left:596.800000pt;}
.x78_c00336{left:600.933333pt;}
.x12a_c00336{left:604.266667pt;}
.x13a_c00336{left:605.466667pt;}
.x53_c00336{left:607.066667pt;}
.xf0_c00336{left:610.933333pt;}
.x8b_c00336{left:612.800000pt;}
.x36_c00336{left:614.533333pt;}
.x118_c00336{left:616.000000pt;}
.x2a_c00336{left:617.600000pt;}
.x82_c00336{left:620.266667pt;}
.x10a_c00336{left:622.666667pt;}
.x1c_c00336{left:623.733333pt;}
.x96_c00336{left:625.466667pt;}
.x6e_c00336{left:626.933333pt;}
.x112_c00336{left:630.800000pt;}
.x10_c00336{left:632.800000pt;}
.xf5_c00336{left:634.000000pt;}
.x54_c00336{left:635.600000pt;}
.x79_c00336{left:637.066667pt;}
.xb2_c00336{left:638.800000pt;}
.x121_c00336{left:641.200000pt;}
.x13e_c00336{left:642.133333pt;}
.x12b_c00336{left:643.066667pt;}
.xe3_c00336{left:644.400000pt;}
.xe9_c00336{left:646.533333pt;}
.xcd_c00336{left:649.200000pt;}
.x97_c00336{left:651.066667pt;}
.xd6_c00336{left:653.200000pt;}
.x136_c00336{left:654.666667pt;}
.x55_c00336{left:656.133333pt;}
.x37_c00336{left:658.400000pt;}
.xa3_c00336{left:660.400000pt;}
.xba_c00336{left:662.000000pt;}
.xc1_c00336{left:664.666667pt;}
.x11_c00336{left:665.733333pt;}
.x83_c00336{left:667.333333pt;}
.x63_c00336{left:668.266667pt;}
.x105_c00336{left:671.466667pt;}
.xc6_c00336{left:672.800000pt;}
.x8c_c00336{left:677.733333pt;}
.x1d_c00336{left:679.733333pt;}
.x45_c00336{left:682.533333pt;}
.x122_c00336{left:683.466667pt;}
.x38_c00336{left:684.666667pt;}
.x10b_c00336{left:686.000000pt;}
.x113_c00336{left:687.466667pt;}
.x6f_c00336{left:688.666667pt;}
.x12_c00336{left:693.200000pt;}
.x98_c00336{left:695.466667pt;}
.x46_c00336{left:698.800000pt;}
.x7a_c00336{left:700.133333pt;}
.x2b_c00336{left:702.400000pt;}
.x13b_c00336{left:703.733333pt;}
.x64_c00336{left:705.333333pt;}
.x116_c00336{left:706.533333pt;}
.xbb_c00336{left:707.733333pt;}
.x56_c00336{left:712.133333pt;}
.xc7_c00336{left:716.400000pt;}
}





/* 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_c00337 {
    display:none;
  }
  .loading-indicator_c00337.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00337 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_c00337 { 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_c00337" -> "#page-container .classname_c00337")
 */
.pf_c00337 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00337 { /* 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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00337 { /* 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_c00337 { /* 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_c00337 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00337 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00337 {overflow:visible;}
  }
}
.c_c00337 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00337 { /* 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_c00337:after { /* webkit #35443 */
  content: '';
}
.t_c00337:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00337 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 */
}
.__c00337 { /* 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_c00337 { /* info for Javascript */
  display:none;
}
.l_c00337 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00337 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00337 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00337: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_c00337 {
    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_c00337.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00337.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_c00337 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00337{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.000000;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;}
.m4_c00337{transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026750,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.071750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071750,0.000000,0.000000,0.250000,0,0);}
.m2_c00337{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5_c00337{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.md_c00337{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00337{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mc_c00337{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.me_c00337{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma_c00337{transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.431000,0.000000,0.000000,0.250000,0,0);}
.m9_c00337{transform:matrix(0.608500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.608500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.608500,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{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__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00337{word-spacing:0.000000px;}
.ws2_c00337{word-spacing:47.403846px;}
.ws1_c00337{word-spacing:83.571429px;}
.ws0_c00337{word-spacing:147.869159px;}
.fc0_c00337{color:transparent;}
.fs4_c00337{font-size:30.000000px;}
.fs2_c00337{font-size:36.000000px;}
.fs1_c00337{font-size:42.000000px;}
.fs0_c00337{font-size:54.000000px;}
.fs3_c00337{font-size:60.000000px;}
.y0_c00337{bottom:0.000000px;}
.y4_c00337{bottom:91.500000px;}
.y7_c00337{bottom:97.200000px;}
.y3_c00337{bottom:106.200000px;}
.y2_c00337{bottom:121.350000px;}
.y6_c00337{bottom:127.500000px;}
.y5_c00337{bottom:190.050000px;}
.y1_c00337{bottom:606.600000px;}
.h6_c00337{height:30.000000px;}
.h4_c00337{height:36.000000px;}
.h3_c00337{height:42.000000px;}
.h2_c00337{height:54.000000px;}
.h5_c00337{height:60.000000px;}
.h0_c00337{height:1166.759949px;}
.h1_c00337{height:1167.000000px;}
.w1_c00337{width:913.500000px;}
.w0_c00337{width:913.679993px;}
.x0_c00337{left:0.000000px;}
.xa_c00337{left:109.350000px;}
.x7_c00337{left:114.900000px;}
.xb_c00337{left:124.050000px;}
.x8_c00337{left:167.400000px;}
.x9_c00337{left:179.250000px;}
.xf_c00337{left:486.300000px;}
.x10_c00337{left:508.650000px;}
.x11_c00337{left:529.200000px;}
.x12_c00337{left:551.100000px;}
.x13_c00337{left:572.700000px;}
.x14_c00337{left:594.600000px;}
.x15_c00337{left:616.950000px;}
.x16_c00337{left:638.850000px;}
.x17_c00337{left:683.850000px;}
.x18_c00337{left:727.350000px;}
.xe_c00337{left:767.850000px;}
.x19_c00337{left:773.400000px;}
.x1_c00337{left:802.050000px;}
.x2_c00337{left:807.150000px;}
.xc_c00337{left:808.200000px;}
.xd_c00337{left:813.600000px;}
.x3_c00337{left:814.650000px;}
.x4_c00337{left:833.700000px;}
.x5_c00337{left:851.400000px;}
.x6_c00337{left:860.100000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws3_c00337{word-spacing:0.000000pt;}
.ws2_c00337{word-spacing:42.136752pt;}
.ws1_c00337{word-spacing:74.285714pt;}
.ws0_c00337{word-spacing:131.439252pt;}
.fs4_c00337{font-size:26.666667pt;}
.fs2_c00337{font-size:32.000000pt;}
.fs1_c00337{font-size:37.333333pt;}
.fs0_c00337{font-size:48.000000pt;}
.fs3_c00337{font-size:53.333333pt;}
.y0_c00337{bottom:0.000000pt;}
.y4_c00337{bottom:81.333333pt;}
.y7_c00337{bottom:86.400000pt;}
.y3_c00337{bottom:94.400000pt;}
.y2_c00337{bottom:107.866667pt;}
.y6_c00337{bottom:113.333333pt;}
.y5_c00337{bottom:168.933333pt;}
.y1_c00337{bottom:539.200000pt;}
.h6_c00337{height:26.666667pt;}
.h4_c00337{height:32.000000pt;}
.h3_c00337{height:37.333333pt;}
.h2_c00337{height:48.000000pt;}
.h5_c00337{height:53.333333pt;}
.h0_c00337{height:1037.119955pt;}
.h1_c00337{height:1037.333333pt;}
.w1_c00337{width:812.000000pt;}
.w0_c00337{width:812.159993pt;}
.x0_c00337{left:0.000000pt;}
.xa_c00337{left:97.200000pt;}
.x7_c00337{left:102.133333pt;}
.xb_c00337{left:110.266667pt;}
.x8_c00337{left:148.800000pt;}
.x9_c00337{left:159.333333pt;}
.xf_c00337{left:432.266667pt;}
.x10_c00337{left:452.133333pt;}
.x11_c00337{left:470.400000pt;}
.x12_c00337{left:489.866667pt;}
.x13_c00337{left:509.066667pt;}
.x14_c00337{left:528.533333pt;}
.x15_c00337{left:548.400000pt;}
.x16_c00337{left:567.866667pt;}
.x17_c00337{left:607.866667pt;}
.x18_c00337{left:646.533333pt;}
.xe_c00337{left:682.533333pt;}
.x19_c00337{left:687.466667pt;}
.x1_c00337{left:712.933333pt;}
.x2_c00337{left:717.466667pt;}
.xc_c00337{left:718.400000pt;}
.xd_c00337{left:723.200000pt;}
.x3_c00337{left:724.133333pt;}
.x4_c00337{left:741.066667pt;}
.x5_c00337{left:756.800000pt;}
.x6_c00337{left:764.533333pt;}
}





/* 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_c00338 {
    display:none;
  }
  .loading-indicator_c00338.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00338 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_c00338 { 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_c00338" -> "#page-container .classname_c00338")
 */
.pf_c00338 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00338 { /* 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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00338 { /* 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_c00338 { /* 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_c00338 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00338 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00338 {overflow:visible;}
  }
}
.c_c00338 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00338 { /* 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_c00338:after { /* webkit #35443 */
  content: '';
}
.t_c00338:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00338 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 */
}
.__c00338 { /* 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_c00338 { /* info for Javascript */
  display:none;
}
.l_c00338 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00338 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00338 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00338: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_c00338 {
    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_c00338.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00338.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_c00338 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00338{font-family:sans-serif;visibility:hidden;}
.sc__c00338{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
}
.y0_c00338{bottom:0.000000px;}
.h0_c00338{height:1166.759949px;}
.h1_c00338{height:1167.000000px;}
.w1_c00338{width:913.500000px;}
.w0_c00338{width:913.679993px;}
.x0_c00338{left:0.000000px;}
@media print{
.y0_c00338{bottom:0.000000pt;}
.h0_c00338{height:1037.119955pt;}
.h1_c00338{height:1037.333333pt;}
.w1_c00338{width:812.000000pt;}
.w0_c00338{width:812.159993pt;}
.x0_c00338{left:0.000000pt;}
}





/* 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_c00339 {
    display:none;
  }
  .loading-indicator_c00339.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00339 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_c00339 { 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_c00339" -> "#page-container .classname_c00339")
 */
.pf_c00339 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00339 { /* 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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00339 { /* 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_c00339 { /* 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_c00339 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00339 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00339 {overflow:visible;}
  }
}
.c_c00339 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00339 { /* 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_c00339:after { /* webkit #35443 */
  content: '';
}
.t_c00339:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00339 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 */
}
.__c00339 { /* 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_c00339 { /* info for Javascript */
  display:none;
}
.l_c00339 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00339 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00339 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00339: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_c00339 {
    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_c00339.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00339.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_c00339 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00339{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_8d220fc6cb305cca524a3af1.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.000000;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;}
.m5a_c00339{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m40_c00339{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00339{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m81_c00339{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m79_c00339{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00339{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00339{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m24_c00339{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00339{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00339{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m73_c00339{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00339{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m42_c00339{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m27_c00339{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00339{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00339{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00339{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m55_c00339{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00339{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m33_c00339{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00339{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00339{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m28_c00339{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00339{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m68_c00339{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m21_c00339{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00339{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m75_c00339{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00339{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m74_c00339{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00339{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6_c00339{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00339{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m72_c00339{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m23_c00339{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m39_c00339{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m77_c00339{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m46_c00339{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00339{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m12_c00339{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf_c00339{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00339{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.me_c00339{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00339{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m41_c00339{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m56_c00339{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00339{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m47_c00339{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m14_c00339{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m63_c00339{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7_c00339{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00339{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00339{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00339{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00339{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m17_c00339{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m44_c00339{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m87_c00339{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00339{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00339{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m88_c00339{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00339{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00339{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00339{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4_c00339{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m32_c00339{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m61_c00339{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00339{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9_c00339{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00339{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m36_c00339{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m18_c00339{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m82_c00339{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m20_c00339{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mad_c00339{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00339{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m71_c00339{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m76_c00339{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00339{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m15_c00339{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00339{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m45_c00339{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5_c00339{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00339{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m51_c00339{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00339{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m50_c00339{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00339{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00339{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00339{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00339{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m65_c00339{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00339{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00339{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00339{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mac_c00339{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00339{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00339{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m30_c00339{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00339{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10_c00339{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00339{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00339{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md_c00339{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m48_c00339{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00339{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m26_c00339{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00339{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m62_c00339{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00339{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m43_c00339{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mba_c00339{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m19_c00339{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m58_c00339{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mc_c00339{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00339{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m78_c00339{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m29_c00339{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00339{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00339{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m54_c00339{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00339{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m70_c00339{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m66_c00339{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00339{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m98_c00339{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb_c00339{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00339{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00339{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);}
.m64_c00339{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m67_c00339{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m99_c00339{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00339{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00339{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m85_c00339{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mae_c00339{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m25_c00339{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m37_c00339{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11_c00339{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00339{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00339{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00339{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3_c00339{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m96_c00339{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00339{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00339{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00339{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m93_c00339{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00339{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m22_c00339{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00339{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00339{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m38_c00339{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00339{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m89_c00339{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00339{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m84_c00339{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m57_c00339{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00339{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00339{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1_c00339{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00339{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m60_c00339{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m2_c00339{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.maf_c00339{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m31_c00339{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mab_c00339{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00339{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00339{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m92_c00339{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00339{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00339{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00339{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00339{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m95_c00339{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00339{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m90_c00339{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m97_c00339{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m80_c00339{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m52_c00339{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00339{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.ma_c00339{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00339{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00339{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00339{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.maa_c00339{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m34_c00339{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00339{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m94_c00339{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00339{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00339{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00339{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m0_c00339{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m13_c00339{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00339{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m91_c00339{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{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__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00339{word-spacing:-1.902795px;}
.ws6_c00339{word-spacing:0.000000px;}
.ws4_c00339{word-spacing:1.666667px;}
.ws3_c00339{word-spacing:6.805556px;}
.ws2_c00339{word-spacing:8.235294px;}
.ws0_c00339{word-spacing:9.902913px;}
.ws1_c00339{word-spacing:17.352941px;}
.fc0_c00339{color:transparent;}
.fs0_c00339{font-size:42.000000px;}
.fs1_c00339{font-size:60.000000px;}
.y0_c00339{bottom:0.000000px;}
.y34_c00339{bottom:148.800000px;}
.y38_c00339{bottom:149.550000px;}
.y33_c00339{bottom:163.500000px;}
.y37_c00339{bottom:164.250000px;}
.y32_c00339{bottom:178.200000px;}
.y36_c00339{bottom:178.650000px;}
.y31_c00339{bottom:192.600000px;}
.y35_c00339{bottom:193.350000px;}
.y2a_c00339{bottom:241.950000px;}
.y29_c00339{bottom:254.850000px;}
.y30_c00339{bottom:255.300000px;}
.y28_c00339{bottom:277.500000px;}
.y27_c00339{bottom:301.350000px;}
.y2f_c00339{bottom:301.650000px;}
.y23_c00339{bottom:323.700000px;}
.y26_c00339{bottom:335.400000px;}
.y22_c00339{bottom:335.550000px;}
.y21_c00339{bottom:347.100000px;}
.y2e_c00339{bottom:347.400000px;}
.y25_c00339{bottom:347.700000px;}
.y2b_c00339{bottom:370.050000px;}
.y2d_c00339{bottom:370.500000px;}
.y20_c00339{bottom:381.600000px;}
.y24_c00339{bottom:381.900000px;}
.y2c_c00339{bottom:382.350000px;}
.y1f_c00339{bottom:449.400000px;}
.y1e_c00339{bottom:469.200000px;}
.y1d_c00339{bottom:489.300000px;}
.y1c_c00339{bottom:509.100000px;}
.y1b_c00339{bottom:528.900000px;}
.y1a_c00339{bottom:549.000000px;}
.y19_c00339{bottom:568.500000px;}
.y18_c00339{bottom:588.600000px;}
.y17_c00339{bottom:608.400000px;}
.y16_c00339{bottom:628.500000px;}
.y15_c00339{bottom:648.600000px;}
.y14_c00339{bottom:668.700000px;}
.y13_c00339{bottom:688.800000px;}
.y12_c00339{bottom:708.600000px;}
.y11_c00339{bottom:728.400000px;}
.y10_c00339{bottom:748.200000px;}
.yf_c00339{bottom:768.300000px;}
.ye_c00339{bottom:788.100000px;}
.yd_c00339{bottom:807.900000px;}
.yc_c00339{bottom:827.700000px;}
.yb_c00339{bottom:847.500000px;}
.ya_c00339{bottom:867.600000px;}
.y9_c00339{bottom:887.100000px;}
.y8_c00339{bottom:906.900000px;}
.y7_c00339{bottom:926.700000px;}
.y6_c00339{bottom:946.800000px;}
.y5_c00339{bottom:966.900000px;}
.y4_c00339{bottom:986.700000px;}
.y3_c00339{bottom:1006.500000px;}
.y1_c00339{bottom:1044.750000px;}
.y2_c00339{bottom:1045.050000px;}
.h2_c00339{height:42.000000px;}
.h3_c00339{height:60.000000px;}
.h0_c00339{height:1166.759949px;}
.h1_c00339{height:1167.000000px;}
.w1_c00339{width:913.500000px;}
.w0_c00339{width:913.679993px;}
.x0_c00339{left:0.000000px;}
.x129_c00339{left:94.800000px;}
.xde_c00339{left:97.050000px;}
.x81_c00339{left:98.400000px;}
.x45_c00339{left:99.450000px;}
.x13_c00339{left:100.500000px;}
.x9a_c00339{left:110.100000px;}
.xe8_c00339{left:112.050000px;}
.x126_c00339{left:113.700000px;}
.xfd_c00339{left:115.050000px;}
.x61_c00339{left:116.250000px;}
.x28_c00339{left:117.900000px;}
.xdf_c00339{left:119.700000px;}
.x72_c00339{left:124.950000px;}
.xcf_c00339{left:126.300000px;}
.xd5_c00339{left:128.850000px;}
.x3_c00339{left:131.700000px;}
.x46_c00339{left:134.700000px;}
.x102_c00339{left:136.350000px;}
.x3a_c00339{left:138.000000px;}
.xbc_c00339{left:139.200000px;}
.x62_c00339{left:141.450000px;}
.xd6_c00339{left:143.550000px;}
.x108_c00339{left:146.250000px;}
.x119_c00339{left:148.650000px;}
.x14_c00339{left:151.650000px;}
.x10d_c00339{left:153.750000px;}
.x4_c00339{left:155.400000px;}
.x51_c00339{left:158.100000px;}
.x82_c00339{left:160.650000px;}
.x11a_c00339{left:162.450000px;}
.x29_c00339{left:164.700000px;}
.x90_c00339{left:167.850000px;}
.x15_c00339{left:169.650000px;}
.x47_c00339{left:172.200000px;}
.xe9_c00339{left:173.550000px;}
.x9b_c00339{left:175.650000px;}
.xd7_c00339{left:178.500000px;}
.x3b_c00339{left:180.150000px;}
.xad_c00339{left:182.550000px;}
.xf1_c00339{left:183.900000px;}
.x91_c00339{left:185.850000px;}
.x83_c00339{left:187.350000px;}
.x6b_c00339{left:188.550000px;}
.x63_c00339{left:190.050000px;}
.xb6_c00339{left:191.850000px;}
.x2a_c00339{left:193.200000px;}
.x5_c00339{left:194.700000px;}
.x73_c00339{left:198.000000px;}
.x10e_c00339{left:200.550000px;}
.x125_c00339{left:201.600000px;}
.x16_c00339{left:203.100000px;}
.xd0_c00339{left:204.300000px;}
.x48_c00339{left:208.500000px;}
.xf2_c00339{left:213.000000px;}
.x2b_c00339{left:215.550000px;}
.x6c_c00339{left:217.050000px;}
.x103_c00339{left:219.900000px;}
.xae_c00339{left:221.400000px;}
.x52_c00339{left:223.950000px;}
.x127_c00339{left:225.450000px;}
.xc7_c00339{left:228.600000px;}
.xb7_c00339{left:229.650000px;}
.x17_c00339{left:231.600000px;}
.xf7_c00339{left:232.950000px;}
.xea_c00339{left:234.450000px;}
.x6_c00339{left:235.800000px;}
.x7a_c00339{left:237.000000px;}
.x113_c00339{left:238.500000px;}
.x92_c00339{left:241.650000px;}
.x74_c00339{left:243.300000px;}
.x128_c00339{left:247.350000px;}
.x9c_c00339{left:249.450000px;}
.x49_c00339{left:252.750000px;}
.xd1_c00339{left:255.450000px;}
.xbd_c00339{left:257.250000px;}
.x104_c00339{left:258.750000px;}
.x18_c00339{left:261.150000px;}
.xf8_c00339{left:262.500000px;}
.x3c_c00339{left:265.350000px;}
.x84_c00339{left:266.850000px;}
.x2c_c00339{left:270.300000px;}
.x53_c00339{left:272.100000px;}
.xd2_c00339{left:275.550000px;}
.xc8_c00339{left:277.650000px;}
.x114_c00339{left:279.150000px;}
.x19_c00339{left:282.450000px;}
.xeb_c00339{left:284.850000px;}
.x7_c00339{left:285.900000px;}
.x2d_c00339{left:287.550000px;}
.x64_c00339{left:289.350000px;}
.x4a_c00339{left:295.500000px;}
.xe0_c00339{left:296.700000px;}
.x109_c00339{left:298.200000px;}
.x10f_c00339{left:300.000000px;}
.xfe_c00339{left:303.000000px;}
.x75_c00339{left:307.800000px;}
.x11d_c00339{left:309.150000px;}
.xf3_c00339{left:311.250000px;}
.x1a_c00339{left:312.750000px;}
.x54_c00339{left:315.600000px;}
.xd3_c00339{left:318.000000px;}
.x2e_c00339{left:319.950000px;}
.x8_c00339{left:323.700000px;}
.xa5_c00339{left:325.950000px;}
.x9d_c00339{left:327.300000px;}
.xc9_c00339{left:328.800000px;}
.x85_c00339{left:332.400000px;}
.x3d_c00339{left:334.050000px;}
.x55_c00339{left:336.900000px;}
.xaf_c00339{left:339.900000px;}
.xbe_c00339{left:341.850000px;}
.x11c_c00339{left:344.550000px;}
.x4b_c00339{left:345.900000px;}
.x56_c00339{left:347.400000px;}
.x2f_c00339{left:349.800000px;}
.xb8_c00339{left:351.000000px;}
.xa6_c00339{left:352.950000px;}
.xd8_c00339{left:354.150000px;}
.x76_c00339{left:356.400000px;}
.x1b_c00339{left:357.450000px;}
.x4c_c00339{left:363.150000px;}
.xf9_c00339{left:364.800000px;}
.x11e_c00339{left:366.750000px;}
.x6d_c00339{left:367.800000px;}
.x30_c00339{left:370.350000px;}
.xff_c00339{left:372.450000px;}
.x11b_c00339{left:373.800000px;}
.x115_c00339{left:375.300000px;}
.xb0_c00339{left:376.650000px;}
.xbf_c00339{left:378.600000px;}
.xca_c00339{left:380.250000px;}
.xf4_c00339{left:381.750000px;}
.x7b_c00339{left:382.800000px;}
.xec_c00339{left:386.700000px;}
.x1c_c00339{left:389.100000px;}
.xe1_c00339{left:392.100000px;}
.x57_c00339{left:393.900000px;}
.x1_c00339{left:394.950000px;}
.x9_c00339{left:396.000000px;}
.x31_c00339{left:398.400000px;}
.x3e_c00339{left:401.700000px;}
.xcb_c00339{left:403.350000px;}
.xb1_c00339{left:405.750000px;}
.x9e_c00339{left:408.300000px;}
.x86_c00339{left:410.250000px;}
.x7c_c00339{left:411.300000px;}
.x120_c00339{left:413.100000px;}
.xc0_c00339{left:414.600000px;}
.x116_c00339{left:415.650000px;}
.xa_c00339{left:417.300000px;}
.x1d_c00339{left:420.000000px;}
.x117_c00339{left:422.550000px;}
.x93_c00339{left:424.800000px;}
.xb9_c00339{left:427.650000px;}
.xf5_c00339{left:428.850000px;}
.x3f_c00339{left:430.500000px;}
.x118_c00339{left:432.300000px;}
.x4d_c00339{left:436.200000px;}
.x134_c00339{left:437.250000px;}
.xed_c00339{left:438.900000px;}
.x87_c00339{left:440.550000px;}
.x9f_c00339{left:441.750000px;}
.x1e_c00339{left:443.700000px;}
.x77_c00339{left:447.000000px;}
.x32_c00339{left:448.500000px;}
.x94_c00339{left:452.100000px;}
.xa7_c00339{left:456.600000px;}
.x105_c00339{left:458.100000px;}
.x65_c00339{left:460.350000px;}
.x121_c00339{left:461.850000px;}
.xe2_c00339{left:463.350000px;}
.x88_c00339{left:465.000000px;}
.xd4_c00339{left:466.050000px;}
.x12a_c00339{left:468.000000px;}
.xb2_c00339{left:469.950000px;}
.x136_c00339{left:474.000000px;}
.x10a_c00339{left:475.350000px;}
.x11f_c00339{left:477.600000px;}
.x58_c00339{left:479.250000px;}
.xfa_c00339{left:481.050000px;}
.xa8_c00339{left:484.350000px;}
.x33_c00339{left:486.000000px;}
.x1f_c00339{left:487.950000px;}
.xb_c00339{left:490.050000px;}
.xcc_c00339{left:491.250000px;}
.xa0_c00339{left:494.250000px;}
.x135_c00339{left:495.450000px;}
.xc1_c00339{left:496.800000px;}
.x78_c00339{left:500.700000px;}
.x20_c00339{left:502.050000px;}
.x6e_c00339{left:503.100000px;}
.x40_c00339{left:504.300000px;}
.x89_c00339{left:506.100000px;}
.x59_c00339{left:509.550000px;}
.xc_c00339{left:510.600000px;}
.xd9_c00339{left:520.050000px;}
.x21_c00339{left:522.600000px;}
.x34_c00339{left:523.800000px;}
.x4e_c00339{left:525.150000px;}
.xa9_c00339{left:527.250000px;}
.xb3_c00339{left:528.300000px;}
.x8a_c00339{left:529.500000px;}
.xee_c00339{left:531.150000px;}
.x5a_c00339{left:532.950000px;}
.xe3_c00339{left:534.900000px;}
.x41_c00339{left:536.700000px;}
.xc2_c00339{left:539.250000px;}
.x22_c00339{left:541.350000px;}
.x12b_c00339{left:542.550000px;}
.xd_c00339{left:544.800000px;}
.xaa_c00339{left:546.750000px;}
.x100_c00339{left:547.800000px;}
.x6f_c00339{left:550.200000px;}
.x5b_c00339{left:553.050000px;}
.xef_c00339{left:559.650000px;}
.x7d_c00339{left:560.700000px;}
.x66_c00339{left:565.200000px;}
.x23_c00339{left:567.300000px;}
.xcd_c00339{left:568.650000px;}
.x35_c00339{left:570.000000px;}
.x12c_c00339{left:572.400000px;}
.x12f_c00339{left:573.750000px;}
.xda_c00339{left:574.800000px;}
.xab_c00339{left:575.850000px;}
.x122_c00339{left:578.550000px;}
.x106_c00339{left:580.050000px;}
.xe_c00339{left:582.900000px;}
.x5c_c00339{left:584.700000px;}
.xa1_c00339{left:588.150000px;}
.x12d_c00339{left:592.500000px;}
.x4f_c00339{left:594.300000px;}
.x36_c00339{left:597.300000px;}
.x95_c00339{left:599.400000px;}
.x67_c00339{left:600.450000px;}
.xe4_c00339{left:601.800000px;}
.x24_c00339{left:603.600000px;}
.xdb_c00339{left:605.700000px;}
.x42_c00339{left:607.200000px;}
.xb4_c00339{left:608.550000px;}
.x7e_c00339{left:612.150000px;}
.x110_c00339{left:614.550000px;}
.x124_c00339{left:618.150000px;}
.xf_c00339{left:619.200000px;}
.xc3_c00339{left:621.300000px;}
.x123_c00339{left:622.500000px;}
.x8b_c00339{left:623.850000px;}
.x10b_c00339{left:625.200000px;}
.x37_c00339{left:627.600000px;}
.x25_c00339{left:629.850000px;}
.xfb_c00339{left:632.100000px;}
.x130_c00339{left:634.500000px;}
.x107_c00339{left:636.150000px;}
.xf6_c00339{left:637.200000px;}
.x68_c00339{left:638.250000px;}
.x96_c00339{left:641.100000px;}
.x5d_c00339{left:643.350000px;}
.x26_c00339{left:645.000000px;}
.x70_c00339{left:649.500000px;}
.x50_c00339{left:653.400000px;}
.xa2_c00339{left:655.500000px;}
.xc4_c00339{left:657.000000px;}
.x8c_c00339{left:658.800000px;}
.xfc_c00339{left:662.700000px;}
.x10c_c00339{left:664.500000px;}
.xb5_c00339{left:665.550000px;}
.x10_c00339{left:668.550000px;}
.xe5_c00339{left:672.750000px;}
.xac_c00339{left:673.800000px;}
.x131_c00339{left:674.850000px;}
.xf0_c00339{left:677.100000px;}
.x97_c00339{left:680.400000px;}
.x5e_c00339{left:681.450000px;}
.x8d_c00339{left:683.250000px;}
.x27_c00339{left:684.900000px;}
.xdc_c00339{left:686.250000px;}
.x69_c00339{left:687.600000px;}
.xc5_c00339{left:689.400000px;}
.x79_c00339{left:690.600000px;}
.x111_c00339{left:691.950000px;}
.x132_c00339{left:693.150000px;}
.x7f_c00339{left:694.200000px;}
.x38_c00339{left:698.850000px;}
.x11_c00339{left:700.950000px;}
.xa3_c00339{left:702.600000px;}
.x137_c00339{left:705.750000px;}
.xba_c00339{left:706.950000px;}
.x12e_c00339{left:708.750000px;}
.xe6_c00339{left:710.250000px;}
.x98_c00339{left:712.050000px;}
.x43_c00339{left:716.550000px;}
.x133_c00339{left:717.600000px;}
.x8e_c00339{left:721.050000px;}
.x80_c00339{left:723.000000px;}
.xc6_c00339{left:724.350000px;}
.xa4_c00339{left:726.750000px;}
.x5f_c00339{left:727.950000px;}
.x99_c00339{left:731.100000px;}
.xbb_c00339{left:732.450000px;}
.xce_c00339{left:734.700000px;}
.x71_c00339{left:735.900000px;}
.x101_c00339{left:737.250000px;}
.x12_c00339{left:739.500000px;}
.x2_c00339{left:740.850000px;}
.x8f_c00339{left:742.350000px;}
.x60_c00339{left:743.400000px;}
.xdd_c00339{left:745.350000px;}
.x39_c00339{left:746.700000px;}
.x112_c00339{left:750.300000px;}
.xe7_c00339{left:751.350000px;}
.x44_c00339{left:755.400000px;}
.x6a_c00339{left:762.900000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws5_c00339{word-spacing:-1.691373pt;}
.ws6_c00339{word-spacing:0.000000pt;}
.ws4_c00339{word-spacing:1.481481pt;}
.ws3_c00339{word-spacing:6.049383pt;}
.ws2_c00339{word-spacing:7.320261pt;}
.ws0_c00339{word-spacing:8.802589pt;}
.ws1_c00339{word-spacing:15.424837pt;}
.fs0_c00339{font-size:37.333333pt;}
.fs1_c00339{font-size:53.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y34_c00339{bottom:132.266667pt;}
.y38_c00339{bottom:132.933333pt;}
.y33_c00339{bottom:145.333333pt;}
.y37_c00339{bottom:146.000000pt;}
.y32_c00339{bottom:158.400000pt;}
.y36_c00339{bottom:158.800000pt;}
.y31_c00339{bottom:171.200000pt;}
.y35_c00339{bottom:171.866667pt;}
.y2a_c00339{bottom:215.066667pt;}
.y29_c00339{bottom:226.533333pt;}
.y30_c00339{bottom:226.933333pt;}
.y28_c00339{bottom:246.666667pt;}
.y27_c00339{bottom:267.866667pt;}
.y2f_c00339{bottom:268.133333pt;}
.y23_c00339{bottom:287.733333pt;}
.y26_c00339{bottom:298.133333pt;}
.y22_c00339{bottom:298.266667pt;}
.y21_c00339{bottom:308.533333pt;}
.y2e_c00339{bottom:308.800000pt;}
.y25_c00339{bottom:309.066667pt;}
.y2b_c00339{bottom:328.933333pt;}
.y2d_c00339{bottom:329.333333pt;}
.y20_c00339{bottom:339.200000pt;}
.y24_c00339{bottom:339.466667pt;}
.y2c_c00339{bottom:339.866667pt;}
.y1f_c00339{bottom:399.466667pt;}
.y1e_c00339{bottom:417.066667pt;}
.y1d_c00339{bottom:434.933333pt;}
.y1c_c00339{bottom:452.533333pt;}
.y1b_c00339{bottom:470.133333pt;}
.y1a_c00339{bottom:488.000000pt;}
.y19_c00339{bottom:505.333333pt;}
.y18_c00339{bottom:523.200000pt;}
.y17_c00339{bottom:540.800000pt;}
.y16_c00339{bottom:558.666667pt;}
.y15_c00339{bottom:576.533333pt;}
.y14_c00339{bottom:594.400000pt;}
.y13_c00339{bottom:612.266667pt;}
.y12_c00339{bottom:629.866667pt;}
.y11_c00339{bottom:647.466667pt;}
.y10_c00339{bottom:665.066667pt;}
.yf_c00339{bottom:682.933333pt;}
.ye_c00339{bottom:700.533333pt;}
.yd_c00339{bottom:718.133333pt;}
.yc_c00339{bottom:735.733333pt;}
.yb_c00339{bottom:753.333333pt;}
.ya_c00339{bottom:771.200000pt;}
.y9_c00339{bottom:788.533333pt;}
.y8_c00339{bottom:806.133333pt;}
.y7_c00339{bottom:823.733333pt;}
.y6_c00339{bottom:841.600000pt;}
.y5_c00339{bottom:859.466667pt;}
.y4_c00339{bottom:877.066667pt;}
.y3_c00339{bottom:894.666667pt;}
.y1_c00339{bottom:928.666667pt;}
.y2_c00339{bottom:928.933333pt;}
.h2_c00339{height:37.333333pt;}
.h3_c00339{height:53.333333pt;}
.h0_c00339{height:1037.119955pt;}
.h1_c00339{height:1037.333333pt;}
.w1_c00339{width:812.000000pt;}
.w0_c00339{width:812.159993pt;}
.x0_c00339{left:0.000000pt;}
.x129_c00339{left:84.266667pt;}
.xde_c00339{left:86.266667pt;}
.x81_c00339{left:87.466667pt;}
.x45_c00339{left:88.400000pt;}
.x13_c00339{left:89.333333pt;}
.x9a_c00339{left:97.866667pt;}
.xe8_c00339{left:99.600000pt;}
.x126_c00339{left:101.066667pt;}
.xfd_c00339{left:102.266667pt;}
.x61_c00339{left:103.333333pt;}
.x28_c00339{left:104.800000pt;}
.xdf_c00339{left:106.400000pt;}
.x72_c00339{left:111.066667pt;}
.xcf_c00339{left:112.266667pt;}
.xd5_c00339{left:114.533333pt;}
.x3_c00339{left:117.066667pt;}
.x46_c00339{left:119.733333pt;}
.x102_c00339{left:121.200000pt;}
.x3a_c00339{left:122.666667pt;}
.xbc_c00339{left:123.733333pt;}
.x62_c00339{left:125.733333pt;}
.xd6_c00339{left:127.600000pt;}
.x108_c00339{left:130.000000pt;}
.x119_c00339{left:132.133333pt;}
.x14_c00339{left:134.800000pt;}
.x10d_c00339{left:136.666667pt;}
.x4_c00339{left:138.133333pt;}
.x51_c00339{left:140.533333pt;}
.x82_c00339{left:142.800000pt;}
.x11a_c00339{left:144.400000pt;}
.x29_c00339{left:146.400000pt;}
.x90_c00339{left:149.200000pt;}
.x15_c00339{left:150.800000pt;}
.x47_c00339{left:153.066667pt;}
.xe9_c00339{left:154.266667pt;}
.x9b_c00339{left:156.133333pt;}
.xd7_c00339{left:158.666667pt;}
.x3b_c00339{left:160.133333pt;}
.xad_c00339{left:162.266667pt;}
.xf1_c00339{left:163.466667pt;}
.x91_c00339{left:165.200000pt;}
.x83_c00339{left:166.533333pt;}
.x6b_c00339{left:167.600000pt;}
.x63_c00339{left:168.933333pt;}
.xb6_c00339{left:170.533333pt;}
.x2a_c00339{left:171.733333pt;}
.x5_c00339{left:173.066667pt;}
.x73_c00339{left:176.000000pt;}
.x10e_c00339{left:178.266667pt;}
.x125_c00339{left:179.200000pt;}
.x16_c00339{left:180.533333pt;}
.xd0_c00339{left:181.600000pt;}
.x48_c00339{left:185.333333pt;}
.xf2_c00339{left:189.333333pt;}
.x2b_c00339{left:191.600000pt;}
.x6c_c00339{left:192.933333pt;}
.x103_c00339{left:195.466667pt;}
.xae_c00339{left:196.800000pt;}
.x52_c00339{left:199.066667pt;}
.x127_c00339{left:200.400000pt;}
.xc7_c00339{left:203.200000pt;}
.xb7_c00339{left:204.133333pt;}
.x17_c00339{left:205.866667pt;}
.xf7_c00339{left:207.066667pt;}
.xea_c00339{left:208.400000pt;}
.x6_c00339{left:209.600000pt;}
.x7a_c00339{left:210.666667pt;}
.x113_c00339{left:212.000000pt;}
.x92_c00339{left:214.800000pt;}
.x74_c00339{left:216.266667pt;}
.x128_c00339{left:219.866667pt;}
.x9c_c00339{left:221.733333pt;}
.x49_c00339{left:224.666667pt;}
.xd1_c00339{left:227.066667pt;}
.xbd_c00339{left:228.666667pt;}
.x104_c00339{left:230.000000pt;}
.x18_c00339{left:232.133333pt;}
.xf8_c00339{left:233.333333pt;}
.x3c_c00339{left:235.866667pt;}
.x84_c00339{left:237.200000pt;}
.x2c_c00339{left:240.266667pt;}
.x53_c00339{left:241.866667pt;}
.xd2_c00339{left:244.933333pt;}
.xc8_c00339{left:246.800000pt;}
.x114_c00339{left:248.133333pt;}
.x19_c00339{left:251.066667pt;}
.xeb_c00339{left:253.200000pt;}
.x7_c00339{left:254.133333pt;}
.x2d_c00339{left:255.600000pt;}
.x64_c00339{left:257.200000pt;}
.x4a_c00339{left:262.666667pt;}
.xe0_c00339{left:263.733333pt;}
.x109_c00339{left:265.066667pt;}
.x10f_c00339{left:266.666667pt;}
.xfe_c00339{left:269.333333pt;}
.x75_c00339{left:273.600000pt;}
.x11d_c00339{left:274.800000pt;}
.xf3_c00339{left:276.666667pt;}
.x1a_c00339{left:278.000000pt;}
.x54_c00339{left:280.533333pt;}
.xd3_c00339{left:282.666667pt;}
.x2e_c00339{left:284.400000pt;}
.x8_c00339{left:287.733333pt;}
.xa5_c00339{left:289.733333pt;}
.x9d_c00339{left:290.933333pt;}
.xc9_c00339{left:292.266667pt;}
.x85_c00339{left:295.466667pt;}
.x3d_c00339{left:296.933333pt;}
.x55_c00339{left:299.466667pt;}
.xaf_c00339{left:302.133333pt;}
.xbe_c00339{left:303.866667pt;}
.x11c_c00339{left:306.266667pt;}
.x4b_c00339{left:307.466667pt;}
.x56_c00339{left:308.800000pt;}
.x2f_c00339{left:310.933333pt;}
.xb8_c00339{left:312.000000pt;}
.xa6_c00339{left:313.733333pt;}
.xd8_c00339{left:314.800000pt;}
.x76_c00339{left:316.800000pt;}
.x1b_c00339{left:317.733333pt;}
.x4c_c00339{left:322.800000pt;}
.xf9_c00339{left:324.266667pt;}
.x11e_c00339{left:326.000000pt;}
.x6d_c00339{left:326.933333pt;}
.x30_c00339{left:329.200000pt;}
.xff_c00339{left:331.066667pt;}
.x11b_c00339{left:332.266667pt;}
.x115_c00339{left:333.600000pt;}
.xb0_c00339{left:334.800000pt;}
.xbf_c00339{left:336.533333pt;}
.xca_c00339{left:338.000000pt;}
.xf4_c00339{left:339.333333pt;}
.x7b_c00339{left:340.266667pt;}
.xec_c00339{left:343.733333pt;}
.x1c_c00339{left:345.866667pt;}
.xe1_c00339{left:348.533333pt;}
.x57_c00339{left:350.133333pt;}
.x1_c00339{left:351.066667pt;}
.x9_c00339{left:352.000000pt;}
.x31_c00339{left:354.133333pt;}
.x3e_c00339{left:357.066667pt;}
.xcb_c00339{left:358.533333pt;}
.xb1_c00339{left:360.666667pt;}
.x9e_c00339{left:362.933333pt;}
.x86_c00339{left:364.666667pt;}
.x7c_c00339{left:365.600000pt;}
.x120_c00339{left:367.200000pt;}
.xc0_c00339{left:368.533333pt;}
.x116_c00339{left:369.466667pt;}
.xa_c00339{left:370.933333pt;}
.x1d_c00339{left:373.333333pt;}
.x117_c00339{left:375.600000pt;}
.x93_c00339{left:377.600000pt;}
.xb9_c00339{left:380.133333pt;}
.xf5_c00339{left:381.200000pt;}
.x3f_c00339{left:382.666667pt;}
.x118_c00339{left:384.266667pt;}
.x4d_c00339{left:387.733333pt;}
.x134_c00339{left:388.666667pt;}
.xed_c00339{left:390.133333pt;}
.x87_c00339{left:391.600000pt;}
.x9f_c00339{left:392.666667pt;}
.x1e_c00339{left:394.400000pt;}
.x77_c00339{left:397.333333pt;}
.x32_c00339{left:398.666667pt;}
.x94_c00339{left:401.866667pt;}
.xa7_c00339{left:405.866667pt;}
.x105_c00339{left:407.200000pt;}
.x65_c00339{left:409.200000pt;}
.x121_c00339{left:410.533333pt;}
.xe2_c00339{left:411.866667pt;}
.x88_c00339{left:413.333333pt;}
.xd4_c00339{left:414.266667pt;}
.x12a_c00339{left:416.000000pt;}
.xb2_c00339{left:417.733333pt;}
.x136_c00339{left:421.333333pt;}
.x10a_c00339{left:422.533333pt;}
.x11f_c00339{left:424.533333pt;}
.x58_c00339{left:426.000000pt;}
.xfa_c00339{left:427.600000pt;}
.xa8_c00339{left:430.533333pt;}
.x33_c00339{left:432.000000pt;}
.x1f_c00339{left:433.733333pt;}
.xb_c00339{left:435.600000pt;}
.xcc_c00339{left:436.666667pt;}
.xa0_c00339{left:439.333333pt;}
.x135_c00339{left:440.400000pt;}
.xc1_c00339{left:441.600000pt;}
.x78_c00339{left:445.066667pt;}
.x20_c00339{left:446.266667pt;}
.x6e_c00339{left:447.200000pt;}
.x40_c00339{left:448.266667pt;}
.x89_c00339{left:449.866667pt;}
.x59_c00339{left:452.933333pt;}
.xc_c00339{left:453.866667pt;}
.xd9_c00339{left:462.266667pt;}
.x21_c00339{left:464.533333pt;}
.x34_c00339{left:465.600000pt;}
.x4e_c00339{left:466.800000pt;}
.xa9_c00339{left:468.666667pt;}
.xb3_c00339{left:469.600000pt;}
.x8a_c00339{left:470.666667pt;}
.xee_c00339{left:472.133333pt;}
.x5a_c00339{left:473.733333pt;}
.xe3_c00339{left:475.466667pt;}
.x41_c00339{left:477.066667pt;}
.xc2_c00339{left:479.333333pt;}
.x22_c00339{left:481.200000pt;}
.x12b_c00339{left:482.266667pt;}
.xd_c00339{left:484.266667pt;}
.xaa_c00339{left:486.000000pt;}
.x100_c00339{left:486.933333pt;}
.x6f_c00339{left:489.066667pt;}
.x5b_c00339{left:491.600000pt;}
.xef_c00339{left:497.466667pt;}
.x7d_c00339{left:498.400000pt;}
.x66_c00339{left:502.400000pt;}
.x23_c00339{left:504.266667pt;}
.xcd_c00339{left:505.466667pt;}
.x35_c00339{left:506.666667pt;}
.x12c_c00339{left:508.800000pt;}
.x12f_c00339{left:510.000000pt;}
.xda_c00339{left:510.933333pt;}
.xab_c00339{left:511.866667pt;}
.x122_c00339{left:514.266667pt;}
.x106_c00339{left:515.600000pt;}
.xe_c00339{left:518.133333pt;}
.x5c_c00339{left:519.733333pt;}
.xa1_c00339{left:522.800000pt;}
.x12d_c00339{left:526.666667pt;}
.x4f_c00339{left:528.266667pt;}
.x36_c00339{left:530.933333pt;}
.x95_c00339{left:532.800000pt;}
.x67_c00339{left:533.733333pt;}
.xe4_c00339{left:534.933333pt;}
.x24_c00339{left:536.533333pt;}
.xdb_c00339{left:538.400000pt;}
.x42_c00339{left:539.733333pt;}
.xb4_c00339{left:540.933333pt;}
.x7e_c00339{left:544.133333pt;}
.x110_c00339{left:546.266667pt;}
.x124_c00339{left:549.466667pt;}
.xf_c00339{left:550.400000pt;}
.xc3_c00339{left:552.266667pt;}
.x123_c00339{left:553.333333pt;}
.x8b_c00339{left:554.533333pt;}
.x10b_c00339{left:555.733333pt;}
.x37_c00339{left:557.866667pt;}
.x25_c00339{left:559.866667pt;}
.xfb_c00339{left:561.866667pt;}
.x130_c00339{left:564.000000pt;}
.x107_c00339{left:565.466667pt;}
.xf6_c00339{left:566.400000pt;}
.x68_c00339{left:567.333333pt;}
.x96_c00339{left:569.866667pt;}
.x5d_c00339{left:571.866667pt;}
.x26_c00339{left:573.333333pt;}
.x70_c00339{left:577.333333pt;}
.x50_c00339{left:580.800000pt;}
.xa2_c00339{left:582.666667pt;}
.xc4_c00339{left:584.000000pt;}
.x8c_c00339{left:585.600000pt;}
.xfc_c00339{left:589.066667pt;}
.x10c_c00339{left:590.666667pt;}
.xb5_c00339{left:591.600000pt;}
.x10_c00339{left:594.266667pt;}
.xe5_c00339{left:598.000000pt;}
.xac_c00339{left:598.933333pt;}
.x131_c00339{left:599.866667pt;}
.xf0_c00339{left:601.866667pt;}
.x97_c00339{left:604.800000pt;}
.x5e_c00339{left:605.733333pt;}
.x8d_c00339{left:607.333333pt;}
.x27_c00339{left:608.800000pt;}
.xdc_c00339{left:610.000000pt;}
.x69_c00339{left:611.200000pt;}
.xc5_c00339{left:612.800000pt;}
.x79_c00339{left:613.866667pt;}
.x111_c00339{left:615.066667pt;}
.x132_c00339{left:616.133333pt;}
.x7f_c00339{left:617.066667pt;}
.x38_c00339{left:621.200000pt;}
.x11_c00339{left:623.066667pt;}
.xa3_c00339{left:624.533333pt;}
.x137_c00339{left:627.333333pt;}
.xba_c00339{left:628.400000pt;}
.x12e_c00339{left:630.000000pt;}
.xe6_c00339{left:631.333333pt;}
.x98_c00339{left:632.933333pt;}
.x43_c00339{left:636.933333pt;}
.x133_c00339{left:637.866667pt;}
.x8e_c00339{left:640.933333pt;}
.x80_c00339{left:642.666667pt;}
.xc6_c00339{left:643.866667pt;}
.xa4_c00339{left:646.000000pt;}
.x5f_c00339{left:647.066667pt;}
.x99_c00339{left:649.866667pt;}
.xbb_c00339{left:651.066667pt;}
.xce_c00339{left:653.066667pt;}
.x71_c00339{left:654.133333pt;}
.x101_c00339{left:655.333333pt;}
.x12_c00339{left:657.333333pt;}
.x2_c00339{left:658.533333pt;}
.x8f_c00339{left:659.866667pt;}
.x60_c00339{left:660.800000pt;}
.xdd_c00339{left:662.533333pt;}
.x39_c00339{left:663.733333pt;}
.x112_c00339{left:666.933333pt;}
.xe7_c00339{left:667.866667pt;}
.x44_c00339{left:671.466667pt;}
.x6a_c00339{left:678.133333pt;}
}





/* 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_c00340 {
    display:none;
  }
  .loading-indicator_c00340.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00340 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_c00340 { 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_c00340" -> "#page-container .classname_c00340")
 */
.pf_c00340 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00340 { /* 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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00340 { /* 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_c00340 { /* 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_c00340 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00340 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00340 {overflow:visible;}
  }
}
.c_c00340 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00340 { /* 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_c00340:after { /* webkit #35443 */
  content: '';
}
.t_c00340:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00340 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 */
}
.__c00340 { /* 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_c00340 { /* info for Javascript */
  display:none;
}
.l_c00340 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00340 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00340 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00340: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_c00340 {
    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_c00340.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00340.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_c00340 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00340{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00340;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.000000;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;}
.m79_c00340{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m81_c00340{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m67_c00340{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m92_c00340{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00340{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m93_c00340{transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146250,0.000000,0.000000,0.250000,0,0);}
.m73_c00340{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00340{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00340{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00340{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00340{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00340{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m25_c00340{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00340{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m74_c00340{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m57_c00340{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md_c00340{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m10_c00340{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00340{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00340{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00340{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m75_c00340{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00340{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00340{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m45_c00340{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m26_c00340{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m48_c00340{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m46_c00340{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m84_c00340{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m70_c00340{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6_c00340{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m80_c00340{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m83_c00340{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.ma_c00340{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m89_c00340{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m27_c00340{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m91_c00340{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m51_c00340{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00340{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m72_c00340{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00340{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m31_c00340{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m38_c00340{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m59_c00340{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m56_c00340{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m17_c00340{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00340{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5_c00340{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m15_c00340{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m62_c00340{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m40_c00340{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m49_c00340{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m82_c00340{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m13_c00340{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m43_c00340{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m65_c00340{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m78_c00340{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00340{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m77_c00340{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m32_c00340{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00340{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m69_c00340{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8_c00340{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00340{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m22_c00340{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00340{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00340{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00340{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00340{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m68_c00340{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00340{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m35_c00340{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00340{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00340{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mb_c00340{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00340{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m34_c00340{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.me_c00340{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00340{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m47_c00340{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00340{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m9_c00340{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m33_c00340{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m71_c00340{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m20_c00340{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m52_c00340{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m21_c00340{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00340{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m37_c00340{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00340{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m42_c00340{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m30_c00340{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00340{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m64_c00340{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m44_c00340{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00340{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00340{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m58_c00340{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m24_c00340{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00340{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m41_c00340{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m36_c00340{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00340{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m90_c00340{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m50_c00340{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m19_c00340{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);}
.m55_c00340{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m63_c00340{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m61_c00340{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m54_c00340{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00340{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00340{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mc_c00340{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00340{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2_c00340{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m85_c00340{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m7_c00340{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m0_c00340{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m86_c00340{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3_c00340{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m53_c00340{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m39_c00340{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m14_c00340{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m18_c00340{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00340{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00340{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m12_c00340{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m16_c00340{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m23_c00340{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m11_c00340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00340{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m60_c00340{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m88_c00340{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m76_c00340{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00340{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00340{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00340{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00340{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00340{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m66_c00340{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00340{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00340{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00340{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00340{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00340{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00340{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00340{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m29_c00340{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.ls0_c00340{letter-spacing:0.000000px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{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__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00340{word-spacing:-12.000000px;}
.ws2_c00340{word-spacing:-6.941176px;}
.ws5_c00340{word-spacing:0.000000px;}
.ws0_c00340{word-spacing:7.000000px;}
.ws1_c00340{word-spacing:10.000000px;}
.ws4_c00340{word-spacing:12.666667px;}
.fc0_c00340{color:transparent;}
.fs3_c00340{font-size:24.000000px;}
.fs6_c00340{font-size:30.000000px;}
.fs5_c00340{font-size:36.000000px;}
.fs2_c00340{font-size:42.000000px;}
.fs1_c00340{font-size:48.000000px;}
.fs4_c00340{font-size:54.000000px;}
.fs0_c00340{font-size:66.000000px;}
.y0_c00340{bottom:0.000000px;}
.y58_c00340{bottom:148.050000px;}
.y57_c00340{bottom:163.200000px;}
.y56_c00340{bottom:177.600000px;}
.y5a_c00340{bottom:177.900000px;}
.y55_c00340{bottom:192.300000px;}
.y54_c00340{bottom:207.000000px;}
.y53_c00340{bottom:221.400000px;}
.y52_c00340{bottom:236.100000px;}
.y59_c00340{bottom:236.550000px;}
.yf_c00340{bottom:268.200000px;}
.y46_c00340{bottom:289.050000px;}
.ye_c00340{bottom:291.600000px;}
.y45_c00340{bottom:314.250000px;}
.y30_c00340{bottom:314.700000px;}
.y51_c00340{bottom:315.000000px;}
.y44_c00340{bottom:337.650000px;}
.y2f_c00340{bottom:338.100000px;}
.y43_c00340{bottom:361.050000px;}
.y2e_c00340{bottom:361.500000px;}
.y2d_c00340{bottom:384.150000px;}
.y2c_c00340{bottom:396.000000px;}
.y2b_c00340{bottom:407.850000px;}
.y2a_c00340{bottom:430.950000px;}
.y29_c00340{bottom:453.900000px;}
.yd_c00340{bottom:454.200000px;}
.y28_c00340{bottom:477.000000px;}
.yc_c00340{bottom:477.300000px;}
.y27_c00340{bottom:500.400000px;}
.yb_c00340{bottom:500.700000px;}
.y26_c00340{bottom:523.800000px;}
.y25_c00340{bottom:535.350000px;}
.ya_c00340{bottom:535.650000px;}
.y42_c00340{bottom:557.400000px;}
.y9_c00340{bottom:558.750000px;}
.y50_c00340{bottom:559.050000px;}
.y41_c00340{bottom:579.300000px;}
.y4f_c00340{bottom:579.900000px;}
.y24_c00340{bottom:581.700000px;}
.y40_c00340{bottom:604.050000px;}
.y23_c00340{bottom:605.100000px;}
.y4e_c00340{bottom:605.550000px;}
.y3f_c00340{bottom:625.650000px;}
.y22_c00340{bottom:628.500000px;}
.y3e_c00340{bottom:650.550000px;}
.y21_c00340{bottom:651.600000px;}
.y4d_c00340{bottom:652.650000px;}
.y20_c00340{bottom:674.700000px;}
.y3d_c00340{bottom:685.800000px;}
.y1f_c00340{bottom:686.550000px;}
.y4c_c00340{bottom:687.600000px;}
.y3c_c00340{bottom:708.900000px;}
.y1e_c00340{bottom:709.950000px;}
.y4b_c00340{bottom:711.000000px;}
.y3b_c00340{bottom:731.850000px;}
.y8_c00340{bottom:732.600000px;}
.y1d_c00340{bottom:732.900000px;}
.y4a_c00340{bottom:734.100000px;}
.y49_c00340{bottom:754.950000px;}
.y1c_c00340{bottom:756.000000px;}
.y3a_c00340{bottom:778.350000px;}
.y1b_c00340{bottom:779.400000px;}
.y48_c00340{bottom:780.450000px;}
.y7_c00340{bottom:801.750000px;}
.y39_c00340{bottom:813.300000px;}
.y6_c00340{bottom:813.600000px;}
.y1a_c00340{bottom:814.350000px;}
.y47_c00340{bottom:815.700000px;}
.y19_c00340{bottom:837.750000px;}
.y18_c00340{bottom:849.300000px;}
.y17_c00340{bottom:872.250000px;}
.y38_c00340{bottom:883.050000px;}
.y16_c00340{bottom:884.100000px;}
.y15_c00340{bottom:907.200000px;}
.y35_c00340{bottom:917.550000px;}
.y14_c00340{bottom:918.750000px;}
.y34_c00340{bottom:929.850000px;}
.y13_c00340{bottom:930.600000px;}
.y33_c00340{bottom:941.400000px;}
.y12_c00340{bottom:942.150000px;}
.y5_c00340{bottom:964.500000px;}
.y11_c00340{bottom:965.100000px;}
.y4_c00340{bottom:975.600000px;}
.y32_c00340{bottom:975.900000px;}
.y10_c00340{bottom:976.650000px;}
.y31_c00340{bottom:1000.800000px;}
.y37_c00340{bottom:1001.250000px;}
.y3_c00340{bottom:1012.650000px;}
.y36_c00340{bottom:1013.100000px;}
.y1_c00340{bottom:1047.600000px;}
.y2_c00340{bottom:1048.350000px;}
.h5_c00340{height:24.000000px;}
.h8_c00340{height:30.000000px;}
.h7_c00340{height:36.000000px;}
.h4_c00340{height:42.000000px;}
.h3_c00340{height:48.000000px;}
.h6_c00340{height:54.000000px;}
.h2_c00340{height:66.000000px;}
.h0_c00340{height:1166.759949px;}
.h1_c00340{height:1167.000000px;}
.w1_c00340{width:913.500000px;}
.w0_c00340{width:913.679993px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:144.000000px;}
.xb_c00340{left:145.050000px;}
.x10_c00340{left:146.100000px;}
.x78_c00340{left:162.300000px;}
.x92_c00340{left:163.950000px;}
.x5_c00340{left:166.650000px;}
.x8_c00340{left:167.700000px;}
.x79_c00340{left:174.150000px;}
.x93_c00340{left:178.350000px;}
.x81_c00340{left:181.350000px;}
.x86_c00340{left:190.500000px;}
.xe_c00340{left:193.950000px;}
.x8b_c00340{left:195.000000px;}
.x3_c00340{left:196.950000px;}
.x97_c00340{left:201.000000px;}
.x9_c00340{left:203.700000px;}
.xc_c00340{left:204.750000px;}
.x6_c00340{left:207.300000px;}
.x11_c00340{left:208.800000px;}
.x8c_c00340{left:210.150000px;}
.x4_c00340{left:214.650000px;}
.x7_c00340{left:216.600000px;}
.x87_c00340{left:225.000000px;}
.x82_c00340{left:229.950000px;}
.x8d_c00340{left:232.500000px;}
.x94_c00340{left:239.100000px;}
.x88_c00340{left:240.900000px;}
.xf_c00340{left:245.400000px;}
.xd_c00340{left:248.250000px;}
.xa_c00340{left:257.400000px;}
.x7d_c00340{left:264.150000px;}
.x8e_c00340{left:271.050000px;}
.x89_c00340{left:273.300000px;}
.x95_c00340{left:275.100000px;}
.x7e_c00340{left:280.350000px;}
.x7a_c00340{left:282.900000px;}
.x8f_c00340{left:285.750000px;}
.x83_c00340{left:290.400000px;}
.x98_c00340{left:297.450000px;}
.x13_c00340{left:304.500000px;}
.x29_c00340{left:305.700000px;}
.x3d_c00340{left:307.050000px;}
.x4b_c00340{left:308.100000px;}
.x90_c00340{left:309.450000px;}
.x7b_c00340{left:313.200000px;}
.x19_c00340{left:316.350000px;}
.x2b_c00340{left:317.700000px;}
.x47_c00340{left:318.900000px;}
.x7c_c00340{left:323.250000px;}
.x44_c00340{left:325.050000px;}
.x2c_c00340{left:328.050000px;}
.x14_c00340{left:330.450000px;}
.x3b_c00340{left:332.250000px;}
.x38_c00340{left:334.800000px;}
.x28_c00340{left:336.150000px;}
.x31_c00340{left:339.300000px;}
.x1f_c00340{left:341.550000px;}
.x1a_c00340{left:344.250000px;}
.x15_c00340{left:345.900000px;}
.x25_c00340{left:346.950000px;}
.x99_c00340{left:351.150000px;}
.x4a_c00340{left:354.000000px;}
.x20_c00340{left:355.200000px;}
.x7f_c00340{left:357.750000px;}
.x26_c00340{left:358.800000px;}
.x3e_c00340{left:361.350000px;}
.x33_c00340{left:363.600000px;}
.x96_c00340{left:364.800000px;}
.x41_c00340{left:367.950000px;}
.x1b_c00340{left:369.150000px;}
.x48_c00340{left:370.350000px;}
.x39_c00340{left:371.850000px;}
.x2d_c00340{left:373.050000px;}
.x12_c00340{left:374.400000px;}
.x32_c00340{left:377.100000px;}
.x35_c00340{left:379.800000px;}
.x2a_c00340{left:382.800000px;}
.x1c_c00340{left:385.350000px;}
.x16_c00340{left:386.550000px;}
.x21_c00340{left:388.650000px;}
.x3f_c00340{left:391.350000px;}
.x36_c00340{left:394.200000px;}
.x91_c00340{left:396.150000px;}
.x8a_c00340{left:397.650000px;}
.x43_c00340{left:402.300000px;}
.x34_c00340{left:403.500000px;}
.x3c_c00340{left:405.600000px;}
.x45_c00340{left:406.800000px;}
.x27_c00340{left:408.450000px;}
.x1d_c00340{left:411.300000px;}
.x40_c00340{left:413.700000px;}
.x17_c00340{left:415.050000px;}
.x3a_c00340{left:418.350000px;}
.x2e_c00340{left:423.150000px;}
.x84_c00340{left:424.800000px;}
.x22_c00340{left:426.450000px;}
.x37_c00340{left:428.400000px;}
.x9a_c00340{left:430.650000px;}
.x42_c00340{left:436.650000px;}
.x23_c00340{left:438.750000px;}
.x2_c00340{left:441.300000px;}
.x46_c00340{left:445.950000px;}
.x1e_c00340{left:448.050000px;}
.x85_c00340{left:452.850000px;}
.x2f_c00340{left:455.550000px;}
.x18_c00340{left:457.500000px;}
.x80_c00340{left:459.300000px;}
.x24_c00340{left:460.650000px;}
.x49_c00340{left:465.300000px;}
.x30_c00340{left:470.700000px;}
.x9b_c00340{left:487.050000px;}
.x52_c00340{left:503.700000px;}
.x68_c00340{left:504.750000px;}
.x4c_c00340{left:511.950000px;}
.x64_c00340{left:513.000000px;}
.x57_c00340{left:514.350000px;}
.xbe_c00340{left:516.000000px;}
.x9c_c00340{left:517.350000px;}
.xb8_c00340{left:522.000000px;}
.x66_c00340{left:524.100000px;}
.xa7_c00340{left:525.600000px;}
.x67_c00340{left:526.650000px;}
.xaf_c00340{left:535.650000px;}
.xa8_c00340{left:541.500000px;}
.x50_c00340{left:543.000000px;}
.x58_c00340{left:544.200000px;}
.x69_c00340{left:551.550000px;}
.xbf_c00340{left:553.050000px;}
.x53_c00340{left:554.400000px;}
.xa9_c00340{left:561.600000px;}
.x6a_c00340{left:566.700000px;}
.x4d_c00340{left:571.050000px;}
.x65_c00340{left:573.450000px;}
.xc0_c00340{left:574.650000px;}
.x51_c00340{left:575.700000px;}
.xa4_c00340{left:577.050000px;}
.xb0_c00340{left:578.850000px;}
.x54_c00340{left:582.450000px;}
.x4e_c00340{left:585.450000px;}
.xc1_c00340{left:590.100000px;}
.xaa_c00340{left:593.250000px;}
.x9d_c00340{left:597.450000px;}
.x55_c00340{left:600.150000px;}
.x59_c00340{left:602.250000px;}
.xc2_c00340{left:604.200000px;}
.xb9_c00340{left:607.650000px;}
.x9e_c00340{left:615.150000px;}
.x56_c00340{left:618.450000px;}
.x5a_c00340{left:620.250000px;}
.x4f_c00340{left:622.200000px;}
.x5b_c00340{left:636.450000px;}
.xb1_c00340{left:637.500000px;}
.x9f_c00340{left:645.750000px;}
.xa5_c00340{left:655.200000px;}
.xab_c00340{left:658.350000px;}
.xb2_c00340{left:660.900000px;}
.xbd_c00340{left:663.000000px;}
.x61_c00340{left:665.250000px;}
.x6b_c00340{left:666.300000px;}
.x74_c00340{left:667.500000px;}
.x5c_c00340{left:668.850000px;}
.xba_c00340{left:669.900000px;}
.xa0_c00340{left:673.800000px;}
.x72_c00340{left:684.750000px;}
.x6c_c00340{left:685.800000px;}
.x6f_c00340{left:687.600000px;}
.x6e_c00340{left:690.150000px;}
.x75_c00340{left:691.200000px;}
.xb3_c00340{left:692.250000px;}
.xa6_c00340{left:694.050000px;}
.xa1_c00340{left:696.150000px;}
.xb4_c00340{left:701.250000px;}
.x62_c00340{left:703.050000px;}
.x73_c00340{left:704.550000px;}
.x6d_c00340{left:706.350000px;}
.x70_c00340{left:708.450000px;}
.x5d_c00340{left:712.350000px;}
.x60_c00340{left:716.700000px;}
.x77_c00340{left:718.950000px;}
.xa2_c00340{left:723.450000px;}
.xac_c00340{left:726.450000px;}
.x5e_c00340{left:728.550000px;}
.x71_c00340{left:739.500000px;}
.x63_c00340{left:740.550000px;}
.x76_c00340{left:742.050000px;}
.xbb_c00340{left:744.300000px;}
.xb5_c00340{left:747.000000px;}
.xad_c00340{left:760.350000px;}
.x5f_c00340{left:763.500000px;}
.xa3_c00340{left:764.850000px;}
.xbc_c00340{left:775.950000px;}
.xb6_c00340{left:783.300000px;}
.xae_c00340{left:790.200000px;}
.xb7_c00340{left:795.150000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws3_c00340{word-spacing:-10.666667pt;}
.ws2_c00340{word-spacing:-6.169935pt;}
.ws5_c00340{word-spacing:0.000000pt;}
.ws0_c00340{word-spacing:6.222222pt;}
.ws1_c00340{word-spacing:8.888889pt;}
.ws4_c00340{word-spacing:11.259259pt;}
.fs3_c00340{font-size:21.333333pt;}
.fs6_c00340{font-size:26.666667pt;}
.fs5_c00340{font-size:32.000000pt;}
.fs2_c00340{font-size:37.333333pt;}
.fs1_c00340{font-size:42.666667pt;}
.fs4_c00340{font-size:48.000000pt;}
.fs0_c00340{font-size:58.666667pt;}
.y0_c00340{bottom:0.000000pt;}
.y58_c00340{bottom:131.600000pt;}
.y57_c00340{bottom:145.066667pt;}
.y56_c00340{bottom:157.866667pt;}
.y5a_c00340{bottom:158.133333pt;}
.y55_c00340{bottom:170.933333pt;}
.y54_c00340{bottom:184.000000pt;}
.y53_c00340{bottom:196.800000pt;}
.y52_c00340{bottom:209.866667pt;}
.y59_c00340{bottom:210.266667pt;}
.yf_c00340{bottom:238.400000pt;}
.y46_c00340{bottom:256.933333pt;}
.ye_c00340{bottom:259.200000pt;}
.y45_c00340{bottom:279.333333pt;}
.y30_c00340{bottom:279.733333pt;}
.y51_c00340{bottom:280.000000pt;}
.y44_c00340{bottom:300.133333pt;}
.y2f_c00340{bottom:300.533333pt;}
.y43_c00340{bottom:320.933333pt;}
.y2e_c00340{bottom:321.333333pt;}
.y2d_c00340{bottom:341.466667pt;}
.y2c_c00340{bottom:352.000000pt;}
.y2b_c00340{bottom:362.533333pt;}
.y2a_c00340{bottom:383.066667pt;}
.y29_c00340{bottom:403.466667pt;}
.yd_c00340{bottom:403.733333pt;}
.y28_c00340{bottom:424.000000pt;}
.yc_c00340{bottom:424.266667pt;}
.y27_c00340{bottom:444.800000pt;}
.yb_c00340{bottom:445.066667pt;}
.y26_c00340{bottom:465.600000pt;}
.y25_c00340{bottom:475.866667pt;}
.ya_c00340{bottom:476.133333pt;}
.y42_c00340{bottom:495.466667pt;}
.y9_c00340{bottom:496.666667pt;}
.y50_c00340{bottom:496.933333pt;}
.y41_c00340{bottom:514.933333pt;}
.y4f_c00340{bottom:515.466667pt;}
.y24_c00340{bottom:517.066667pt;}
.y40_c00340{bottom:536.933333pt;}
.y23_c00340{bottom:537.866667pt;}
.y4e_c00340{bottom:538.266667pt;}
.y3f_c00340{bottom:556.133333pt;}
.y22_c00340{bottom:558.666667pt;}
.y3e_c00340{bottom:578.266667pt;}
.y21_c00340{bottom:579.200000pt;}
.y4d_c00340{bottom:580.133333pt;}
.y20_c00340{bottom:599.733333pt;}
.y3d_c00340{bottom:609.600000pt;}
.y1f_c00340{bottom:610.266667pt;}
.y4c_c00340{bottom:611.200000pt;}
.y3c_c00340{bottom:630.133333pt;}
.y1e_c00340{bottom:631.066667pt;}
.y4b_c00340{bottom:632.000000pt;}
.y3b_c00340{bottom:650.533333pt;}
.y8_c00340{bottom:651.200000pt;}
.y1d_c00340{bottom:651.466667pt;}
.y4a_c00340{bottom:652.533333pt;}
.y49_c00340{bottom:671.066667pt;}
.y1c_c00340{bottom:672.000000pt;}
.y3a_c00340{bottom:691.866667pt;}
.y1b_c00340{bottom:692.800000pt;}
.y48_c00340{bottom:693.733333pt;}
.y7_c00340{bottom:712.666667pt;}
.y39_c00340{bottom:722.933333pt;}
.y6_c00340{bottom:723.200000pt;}
.y1a_c00340{bottom:723.866667pt;}
.y47_c00340{bottom:725.066667pt;}
.y19_c00340{bottom:744.666667pt;}
.y18_c00340{bottom:754.933333pt;}
.y17_c00340{bottom:775.333333pt;}
.y38_c00340{bottom:784.933333pt;}
.y16_c00340{bottom:785.866667pt;}
.y15_c00340{bottom:806.400000pt;}
.y35_c00340{bottom:815.600000pt;}
.y14_c00340{bottom:816.666667pt;}
.y34_c00340{bottom:826.533333pt;}
.y13_c00340{bottom:827.200000pt;}
.y33_c00340{bottom:836.800000pt;}
.y12_c00340{bottom:837.466667pt;}
.y5_c00340{bottom:857.333333pt;}
.y11_c00340{bottom:857.866667pt;}
.y4_c00340{bottom:867.200000pt;}
.y32_c00340{bottom:867.466667pt;}
.y10_c00340{bottom:868.133333pt;}
.y31_c00340{bottom:889.600000pt;}
.y37_c00340{bottom:890.000000pt;}
.y3_c00340{bottom:900.133333pt;}
.y36_c00340{bottom:900.533333pt;}
.y1_c00340{bottom:931.200000pt;}
.y2_c00340{bottom:931.866667pt;}
.h5_c00340{height:21.333333pt;}
.h8_c00340{height:26.666667pt;}
.h7_c00340{height:32.000000pt;}
.h4_c00340{height:37.333333pt;}
.h3_c00340{height:42.666667pt;}
.h6_c00340{height:48.000000pt;}
.h2_c00340{height:58.666667pt;}
.h0_c00340{height:1037.119955pt;}
.h1_c00340{height:1037.333333pt;}
.w1_c00340{width:812.000000pt;}
.w0_c00340{width:812.159993pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:128.000000pt;}
.xb_c00340{left:128.933333pt;}
.x10_c00340{left:129.866667pt;}
.x78_c00340{left:144.266667pt;}
.x92_c00340{left:145.733333pt;}
.x5_c00340{left:148.133333pt;}
.x8_c00340{left:149.066667pt;}
.x79_c00340{left:154.800000pt;}
.x93_c00340{left:158.533333pt;}
.x81_c00340{left:161.200000pt;}
.x86_c00340{left:169.333333pt;}
.xe_c00340{left:172.400000pt;}
.x8b_c00340{left:173.333333pt;}
.x3_c00340{left:175.066667pt;}
.x97_c00340{left:178.666667pt;}
.x9_c00340{left:181.066667pt;}
.xc_c00340{left:182.000000pt;}
.x6_c00340{left:184.266667pt;}
.x11_c00340{left:185.600000pt;}
.x8c_c00340{left:186.800000pt;}
.x4_c00340{left:190.800000pt;}
.x7_c00340{left:192.533333pt;}
.x87_c00340{left:200.000000pt;}
.x82_c00340{left:204.400000pt;}
.x8d_c00340{left:206.666667pt;}
.x94_c00340{left:212.533333pt;}
.x88_c00340{left:214.133333pt;}
.xf_c00340{left:218.133333pt;}
.xd_c00340{left:220.666667pt;}
.xa_c00340{left:228.800000pt;}
.x7d_c00340{left:234.800000pt;}
.x8e_c00340{left:240.933333pt;}
.x89_c00340{left:242.933333pt;}
.x95_c00340{left:244.533333pt;}
.x7e_c00340{left:249.200000pt;}
.x7a_c00340{left:251.466667pt;}
.x8f_c00340{left:254.000000pt;}
.x83_c00340{left:258.133333pt;}
.x98_c00340{left:264.400000pt;}
.x13_c00340{left:270.666667pt;}
.x29_c00340{left:271.733333pt;}
.x3d_c00340{left:272.933333pt;}
.x4b_c00340{left:273.866667pt;}
.x90_c00340{left:275.066667pt;}
.x7b_c00340{left:278.400000pt;}
.x19_c00340{left:281.200000pt;}
.x2b_c00340{left:282.400000pt;}
.x47_c00340{left:283.466667pt;}
.x7c_c00340{left:287.333333pt;}
.x44_c00340{left:288.933333pt;}
.x2c_c00340{left:291.600000pt;}
.x14_c00340{left:293.733333pt;}
.x3b_c00340{left:295.333333pt;}
.x38_c00340{left:297.600000pt;}
.x28_c00340{left:298.800000pt;}
.x31_c00340{left:301.600000pt;}
.x1f_c00340{left:303.600000pt;}
.x1a_c00340{left:306.000000pt;}
.x15_c00340{left:307.466667pt;}
.x25_c00340{left:308.400000pt;}
.x99_c00340{left:312.133333pt;}
.x4a_c00340{left:314.666667pt;}
.x20_c00340{left:315.733333pt;}
.x7f_c00340{left:318.000000pt;}
.x26_c00340{left:318.933333pt;}
.x3e_c00340{left:321.200000pt;}
.x33_c00340{left:323.200000pt;}
.x96_c00340{left:324.266667pt;}
.x41_c00340{left:327.066667pt;}
.x1b_c00340{left:328.133333pt;}
.x48_c00340{left:329.200000pt;}
.x39_c00340{left:330.533333pt;}
.x2d_c00340{left:331.600000pt;}
.x12_c00340{left:332.800000pt;}
.x32_c00340{left:335.200000pt;}
.x35_c00340{left:337.600000pt;}
.x2a_c00340{left:340.266667pt;}
.x1c_c00340{left:342.533333pt;}
.x16_c00340{left:343.600000pt;}
.x21_c00340{left:345.466667pt;}
.x3f_c00340{left:347.866667pt;}
.x36_c00340{left:350.400000pt;}
.x91_c00340{left:352.133333pt;}
.x8a_c00340{left:353.466667pt;}
.x43_c00340{left:357.600000pt;}
.x34_c00340{left:358.666667pt;}
.x3c_c00340{left:360.533333pt;}
.x45_c00340{left:361.600000pt;}
.x27_c00340{left:363.066667pt;}
.x1d_c00340{left:365.600000pt;}
.x40_c00340{left:367.733333pt;}
.x17_c00340{left:368.933333pt;}
.x3a_c00340{left:371.866667pt;}
.x2e_c00340{left:376.133333pt;}
.x84_c00340{left:377.600000pt;}
.x22_c00340{left:379.066667pt;}
.x37_c00340{left:380.800000pt;}
.x9a_c00340{left:382.800000pt;}
.x42_c00340{left:388.133333pt;}
.x23_c00340{left:390.000000pt;}
.x2_c00340{left:392.266667pt;}
.x46_c00340{left:396.400000pt;}
.x1e_c00340{left:398.266667pt;}
.x85_c00340{left:402.533333pt;}
.x2f_c00340{left:404.933333pt;}
.x18_c00340{left:406.666667pt;}
.x80_c00340{left:408.266667pt;}
.x24_c00340{left:409.466667pt;}
.x49_c00340{left:413.600000pt;}
.x30_c00340{left:418.400000pt;}
.x9b_c00340{left:432.933333pt;}
.x52_c00340{left:447.733333pt;}
.x68_c00340{left:448.666667pt;}
.x4c_c00340{left:455.066667pt;}
.x64_c00340{left:456.000000pt;}
.x57_c00340{left:457.200000pt;}
.xbe_c00340{left:458.666667pt;}
.x9c_c00340{left:459.866667pt;}
.xb8_c00340{left:464.000000pt;}
.x66_c00340{left:465.866667pt;}
.xa7_c00340{left:467.200000pt;}
.x67_c00340{left:468.133333pt;}
.xaf_c00340{left:476.133333pt;}
.xa8_c00340{left:481.333333pt;}
.x50_c00340{left:482.666667pt;}
.x58_c00340{left:483.733333pt;}
.x69_c00340{left:490.266667pt;}
.xbf_c00340{left:491.600000pt;}
.x53_c00340{left:492.800000pt;}
.xa9_c00340{left:499.200000pt;}
.x6a_c00340{left:503.733333pt;}
.x4d_c00340{left:507.600000pt;}
.x65_c00340{left:509.733333pt;}
.xc0_c00340{left:510.800000pt;}
.x51_c00340{left:511.733333pt;}
.xa4_c00340{left:512.933333pt;}
.xb0_c00340{left:514.533333pt;}
.x54_c00340{left:517.733333pt;}
.x4e_c00340{left:520.400000pt;}
.xc1_c00340{left:524.533333pt;}
.xaa_c00340{left:527.333333pt;}
.x9d_c00340{left:531.066667pt;}
.x55_c00340{left:533.466667pt;}
.x59_c00340{left:535.333333pt;}
.xc2_c00340{left:537.066667pt;}
.xb9_c00340{left:540.133333pt;}
.x9e_c00340{left:546.800000pt;}
.x56_c00340{left:549.733333pt;}
.x5a_c00340{left:551.333333pt;}
.x4f_c00340{left:553.066667pt;}
.x5b_c00340{left:565.733333pt;}
.xb1_c00340{left:566.666667pt;}
.x9f_c00340{left:574.000000pt;}
.xa5_c00340{left:582.400000pt;}
.xab_c00340{left:585.200000pt;}
.xb2_c00340{left:587.466667pt;}
.xbd_c00340{left:589.333333pt;}
.x61_c00340{left:591.333333pt;}
.x6b_c00340{left:592.266667pt;}
.x74_c00340{left:593.333333pt;}
.x5c_c00340{left:594.533333pt;}
.xba_c00340{left:595.466667pt;}
.xa0_c00340{left:598.933333pt;}
.x72_c00340{left:608.666667pt;}
.x6c_c00340{left:609.600000pt;}
.x6f_c00340{left:611.200000pt;}
.x6e_c00340{left:613.466667pt;}
.x75_c00340{left:614.400000pt;}
.xb3_c00340{left:615.333333pt;}
.xa6_c00340{left:616.933333pt;}
.xa1_c00340{left:618.800000pt;}
.xb4_c00340{left:623.333333pt;}
.x62_c00340{left:624.933333pt;}
.x73_c00340{left:626.266667pt;}
.x6d_c00340{left:627.866667pt;}
.x70_c00340{left:629.733333pt;}
.x5d_c00340{left:633.200000pt;}
.x60_c00340{left:637.066667pt;}
.x77_c00340{left:639.066667pt;}
.xa2_c00340{left:643.066667pt;}
.xac_c00340{left:645.733333pt;}
.x5e_c00340{left:647.600000pt;}
.x71_c00340{left:657.333333pt;}
.x63_c00340{left:658.266667pt;}
.x76_c00340{left:659.600000pt;}
.xbb_c00340{left:661.600000pt;}
.xb5_c00340{left:664.000000pt;}
.xad_c00340{left:675.866667pt;}
.x5f_c00340{left:678.666667pt;}
.xa3_c00340{left:679.866667pt;}
.xbc_c00340{left:689.733333pt;}
.xb6_c00340{left:696.266667pt;}
.xae_c00340{left:702.400000pt;}
.xb7_c00340{left:706.800000pt;}
}





/* 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_c00341 {
    display:none;
  }
  .loading-indicator_c00341.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00341 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_c00341 { 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_c00341" -> "#page-container .classname_c00341")
 */
.pf_c00341 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00341 { /* 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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00341 { /* 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_c00341 { /* 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_c00341 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00341 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00341 {overflow:visible;}
  }
}
.c_c00341 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00341 { /* 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_c00341:after { /* webkit #35443 */
  content: '';
}
.t_c00341:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00341 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 */
}
.__c00341 { /* 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_c00341 { /* info for Javascript */
  display:none;
}
.l_c00341 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00341 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00341 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00341: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_c00341 {
    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_c00341.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00341.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_c00341 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00341{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.000000;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;}
.m39_c00341{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00341{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00341{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00341{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m94_c00341{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m67_c00341{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m4_c00341{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00341{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m81_c00341{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m35_c00341{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00341{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m21_c00341{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mab_c00341{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m36_c00341{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00341{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mae_c00341{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3_c00341{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00341{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mac_c00341{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.maf_c00341{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00341{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m99_c00341{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m27_c00341{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m61_c00341{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m96_c00341{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00341{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m65_c00341{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00341{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00341{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00341{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mad_c00341{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00341{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00341{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m91_c00341{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m47_c00341{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m53_c00341{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m26_c00341{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00341{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc_c00341{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00341{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m62_c00341{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.maa_c00341{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m40_c00341{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m16_c00341{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m68_c00341{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00341{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00341{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m43_c00341{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m42_c00341{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00341{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m32_c00341{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m55_c00341{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m25_c00341{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m73_c00341{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m64_c00341{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m7_c00341{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00341{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m90_c00341{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00341{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00341{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m86_c00341{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m83_c00341{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m41_c00341{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00341{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m93_c00341{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m46_c00341{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m8_c00341{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00341{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m95_c00341{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m76_c00341{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m20_c00341{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00341{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00341{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m13_c00341{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00341{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m49_c00341{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00341{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00341{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.md_c00341{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m33_c00341{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00341{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00341{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.ma_c00341{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00341{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00341{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m50_c00341{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00341{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00341{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00341{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00341{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00341{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m60_c00341{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m80_c00341{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00341{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00341{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00341{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m48_c00341{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m28_c00341{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00341{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m6_c00341{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m98_c00341{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m75_c00341{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5_c00341{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00341{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00341{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00341{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m56_c00341{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m69_c00341{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m71_c00341{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m24_c00341{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m22_c00341{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00341{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00341{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m85_c00341{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00341{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00341{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m23_c00341{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m30_c00341{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m38_c00341{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m29_c00341{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m77_c00341{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m84_c00341{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m78_c00341{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00341{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00341{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m34_c00341{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m31_c00341{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m18_c00341{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m17_c00341{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00341{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m51_c00341{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m70_c00341{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11_c00341{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00341{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m14_c00341{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00341{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00341{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00341{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00341{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);}
.m1f_c00341{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00341{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00341{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00341{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00341{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00341{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m10_c00341{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m15_c00341{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00341{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m97_c00341{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m45_c00341{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m37_c00341{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m12_c00341{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00341{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00341{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m82_c00341{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00341{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m52_c00341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00341{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m72_c00341{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m74_c00341{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m66_c00341{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1_c00341{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00341{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00341{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00341{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m92_c00341{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m59_c00341{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00341{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2_c00341{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m88_c00341{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m58_c00341{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00341{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m79_c00341{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m89_c00341{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m57_c00341{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00341{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00341{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00341{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00341{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{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__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00341{word-spacing:-8.170732px;}
.ws3_c00341{word-spacing:-4.861111px;}
.ws8_c00341{word-spacing:0.000000px;}
.ws1_c00341{word-spacing:0.609756px;}
.ws2_c00341{word-spacing:1.250000px;}
.ws0_c00341{word-spacing:5.000000px;}
.ws4_c00341{word-spacing:8.194444px;}
.ws5_c00341{word-spacing:10.441176px;}
.ws6_c00341{word-spacing:15.635593px;}
._0_c00341{width:39.605263px;}
.fc0_c00341{color:transparent;}
.fs0_c00341{font-size:60.000000px;}
.y0_c00341{bottom:0.000000px;}
.y2c_c00341{bottom:155.850000px;}
.y2b_c00341{bottom:171.450000px;}
.y2a_c00341{bottom:186.900000px;}
.y29_c00341{bottom:218.250000px;}
.y28_c00341{bottom:238.350000px;}
.y27_c00341{bottom:258.150000px;}
.y26_c00341{bottom:278.250000px;}
.y25_c00341{bottom:298.500000px;}
.y24_c00341{bottom:318.600000px;}
.y23_c00341{bottom:338.700000px;}
.y22_c00341{bottom:358.500000px;}
.y21_c00341{bottom:378.600000px;}
.y20_c00341{bottom:398.400000px;}
.y1f_c00341{bottom:418.500000px;}
.y1e_c00341{bottom:438.300000px;}
.y1d_c00341{bottom:458.400000px;}
.y1c_c00341{bottom:477.450000px;}
.y1b_c00341{bottom:497.550000px;}
.y1a_c00341{bottom:517.650000px;}
.y19_c00341{bottom:537.450000px;}
.y18_c00341{bottom:556.950000px;}
.y17_c00341{bottom:577.050000px;}
.y16_c00341{bottom:596.550000px;}
.y15_c00341{bottom:630.450000px;}
.y14_c00341{bottom:650.250000px;}
.y13_c00341{bottom:670.350000px;}
.y12_c00341{bottom:690.150000px;}
.y11_c00341{bottom:709.950000px;}
.y10_c00341{bottom:729.750000px;}
.yf_c00341{bottom:749.850000px;}
.ye_c00341{bottom:769.800000px;}
.yd_c00341{bottom:789.600000px;}
.yc_c00341{bottom:809.400000px;}
.yb_c00341{bottom:829.200000px;}
.ya_c00341{bottom:849.300000px;}
.y9_c00341{bottom:869.100000px;}
.y8_c00341{bottom:888.900000px;}
.y7_c00341{bottom:908.700000px;}
.y6_c00341{bottom:928.800000px;}
.y5_c00341{bottom:948.600000px;}
.y4_c00341{bottom:968.400000px;}
.y3_c00341{bottom:988.500000px;}
.y2_c00341{bottom:1008.300000px;}
.y1_c00341{bottom:1046.850000px;}
.h2_c00341{height:60.000000px;}
.h0_c00341{height:1166.759949px;}
.h1_c00341{height:1167.000000px;}
.w1_c00341{width:913.500000px;}
.w0_c00341{width:913.679993px;}
.x0_c00341{left:0.000000px;}
.x4c_c00341{left:95.850000px;}
.x11_c00341{left:96.900000px;}
.x124_c00341{left:108.000000px;}
.xa5_c00341{left:114.000000px;}
.x90_c00341{left:116.400000px;}
.x98_c00341{left:119.400000px;}
.x127_c00341{left:121.500000px;}
.x67_c00341{left:123.600000px;}
.x11f_c00341{left:126.750000px;}
.x12_c00341{left:127.800000px;}
.x3_c00341{left:128.850000px;}
.x106_c00341{left:129.900000px;}
.xce_c00341{left:132.600000px;}
.xae_c00341{left:134.400000px;}
.x4d_c00341{left:135.450000px;}
.x3d_c00341{left:140.250000px;}
.x20_c00341{left:142.800000px;}
.x91_c00341{left:144.900000px;}
.xe6_c00341{left:146.100000px;}
.x5e_c00341{left:149.100000px;}
.x7a_c00341{left:150.450000px;}
.xb2_c00341{left:153.150000px;}
.x84_c00341{left:154.800000px;}
.x13_c00341{left:156.600000px;}
.xbc_c00341{left:158.250000px;}
.x3e_c00341{left:160.350000px;}
.x12c_c00341{left:162.450000px;}
.xe7_c00341{left:165.150000px;}
.x30_c00341{left:166.800000px;}
.x4e_c00341{left:168.600000px;}
.x4_c00341{left:171.300000px;}
.x11c_c00341{left:173.550000px;}
.x14_c00341{left:174.600000px;}
.xde_c00341{left:176.400000px;}
.x21_c00341{left:179.850000px;}
.x31_c00341{left:181.500000px;}
.xc2_c00341{left:182.550000px;}
.xf1_c00341{left:184.950000px;}
.xf6_c00341{left:188.700000px;}
.x9c_c00341{left:190.050000px;}
.x71_c00341{left:192.300000px;}
.x7b_c00341{left:193.650000px;}
.x85_c00341{left:197.250000px;}
.xcf_c00341{left:199.200000px;}
.x11d_c00341{left:200.550000px;}
.x4f_c00341{left:202.500000px;}
.x5_c00341{left:204.000000px;}
.x12d_c00341{left:205.350000px;}
.xec_c00341{left:206.850000px;}
.xa6_c00341{left:208.200000px;}
.x99_c00341{left:210.150000px;}
.x72_c00341{left:212.100000px;}
.x15_c00341{left:213.450000px;}
.x134_c00341{left:215.700000px;}
.x50_c00341{left:217.200000px;}
.x114_c00341{left:219.450000px;}
.x86_c00341{left:220.950000px;}
.x6_c00341{left:222.300000px;}
.x10c_c00341{left:224.250000px;}
.xdf_c00341{left:225.300000px;}
.x92_c00341{left:226.350000px;}
.x22_c00341{left:227.400000px;}
.xa7_c00341{left:231.600000px;}
.x32_c00341{left:232.650000px;}
.xc3_c00341{left:236.550000px;}
.x115_c00341{left:240.000000px;}
.x68_c00341{left:241.350000px;}
.x3f_c00341{left:243.150000px;}
.x9d_c00341{left:244.350000px;}
.x101_c00341{left:246.150000px;}
.xfa_c00341{left:248.700000px;}
.x5f_c00341{left:250.200000px;}
.x23_c00341{left:252.900000px;}
.x107_c00341{left:254.100000px;}
.xcb_c00341{left:255.600000px;}
.x69_c00341{left:261.450000px;}
.x128_c00341{left:262.950000px;}
.x138_c00341{left:264.450000px;}
.x51_c00341{left:269.100000px;}
.x60_c00341{left:270.750000px;}
.x7c_c00341{left:273.900000px;}
.x7_c00341{left:276.000000px;}
.xed_c00341{left:277.350000px;}
.xa8_c00341{left:278.700000px;}
.xfb_c00341{left:280.050000px;}
.x24_c00341{left:283.800000px;}
.x52_c00341{left:285.300000px;}
.xf2_c00341{left:286.500000px;}
.x16_c00341{left:288.600000px;}
.xe0_c00341{left:290.400000px;}
.x10d_c00341{left:291.600000px;}
.x108_c00341{left:292.950000px;}
.xaf_c00341{left:294.600000px;}
.xb3_c00341{left:295.800000px;}
.x6a_c00341{left:299.550000px;}
.x9e_c00341{left:300.900000px;}
.xd9_c00341{left:302.100000px;}
.x9a_c00341{left:304.500000px;}
.x40_c00341{left:305.850000px;}
.x11e_c00341{left:307.800000px;}
.x10e_c00341{left:308.850000px;}
.xc4_c00341{left:310.800000px;}
.x33_c00341{left:312.900000px;}
.x7d_c00341{left:315.300000px;}
.x17_c00341{left:316.650000px;}
.x41_c00341{left:320.550000px;}
.x130_c00341{left:321.600000px;}
.x53_c00341{left:323.400000px;}
.x8_c00341{left:325.350000px;}
.x102_c00341{left:327.150000px;}
.xb4_c00341{left:328.500000px;}
.xe8_c00341{left:330.150000px;}
.xcc_c00341{left:331.200000px;}
.x9b_c00341{left:332.550000px;}
.x135_c00341{left:333.750000px;}
.x25_c00341{left:334.950000px;}
.xd0_c00341{left:337.800000px;}
.x73_c00341{left:340.650000px;}
.x93_c00341{left:342.000000px;}
.xc5_c00341{left:345.300000px;}
.xe1_c00341{left:347.250000px;}
.x116_c00341{left:348.750000px;}
.xee_c00341{left:351.150000px;}
.x54_c00341{left:353.700000px;}
.x87_c00341{left:355.650000px;}
.xd1_c00341{left:356.850000px;}
.xda_c00341{left:358.650000px;}
.xa9_c00341{left:360.300000px;}
.x94_c00341{left:362.550000px;}
.xf7_c00341{left:363.750000px;}
.x26_c00341{left:364.800000px;}
.x42_c00341{left:367.350000px;}
.x10f_c00341{left:368.700000px;}
.x88_c00341{left:370.050000px;}
.xc6_c00341{left:372.000000px;}
.x6b_c00341{left:373.350000px;}
.x61_c00341{left:374.700000px;}
.xe2_c00341{left:375.750000px;}
.x117_c00341{left:377.250000px;}
.x9_c00341{left:378.600000px;}
.xd2_c00341{left:382.050000px;}
.x109_c00341{left:383.100000px;}
.x55_c00341{left:385.050000px;}
.x34_c00341{left:388.800000px;}
.x1_c00341{left:391.350000px;}
.xe9_c00341{left:392.550000px;}
.x129_c00341{left:394.350000px;}
.x18_c00341{left:396.150000px;}
.xb5_c00341{left:399.450000px;}
.x27_c00341{left:401.550000px;}
.x56_c00341{left:404.100000px;}
.x43_c00341{left:406.200000px;}
.x89_c00341{left:407.850000px;}
.xc7_c00341{left:410.100000px;}
.x118_c00341{left:411.450000px;}
.xa_c00341{left:413.100000px;}
.x12a_c00341{left:414.150000px;}
.x120_c00341{left:415.350000px;}
.x19_c00341{left:417.750000px;}
.x12e_c00341{left:419.400000px;}
.x9f_c00341{left:420.450000px;}
.x35_c00341{left:423.750000px;}
.x103_c00341{left:426.150000px;}
.x44_c00341{left:428.100000px;}
.x12f_c00341{left:431.700000px;}
.x57_c00341{left:433.650000px;}
.x8a_c00341{left:435.900000px;}
.x95_c00341{left:438.150000px;}
.x28_c00341{left:440.100000px;}
.xb_c00341{left:441.150000px;}
.x119_c00341{left:443.850000px;}
.x36_c00341{left:445.650000px;}
.x7e_c00341{left:450.750000px;}
.xbd_c00341{left:452.550000px;}
.xd3_c00341{left:455.550000px;}
.x10a_c00341{left:456.900000px;}
.x29_c00341{left:460.650000px;}
.xaa_c00341{left:463.200000px;}
.x8b_c00341{left:465.450000px;}
.x74_c00341{left:467.100000px;}
.xef_c00341{left:469.050000px;}
.x45_c00341{left:470.250000px;}
.xa0_c00341{left:471.300000px;}
.x11a_c00341{left:472.650000px;}
.x131_c00341{left:474.150000px;}
.x37_c00341{left:475.200000px;}
.xfc_c00341{left:476.550000px;}
.xe3_c00341{left:477.750000px;}
.x7f_c00341{left:479.850000px;}
.x62_c00341{left:481.950000px;}
.x1a_c00341{left:485.400000px;}
.xf3_c00341{left:487.350000px;}
.x58_c00341{left:488.700000px;}
.x121_c00341{left:492.750000px;}
.xfd_c00341{left:493.800000px;}
.xa1_c00341{left:502.650000px;}
.x2a_c00341{left:503.850000px;}
.x38_c00341{left:505.500000px;}
.x59_c00341{left:510.600000px;}
.xb6_c00341{left:511.650000px;}
.x80_c00341{left:513.750000px;}
.x46_c00341{left:515.550000px;}
.x1b_c00341{left:517.500000px;}
.xf8_c00341{left:523.050000px;}
.xbe_c00341{left:526.050000px;}
.xf0_c00341{left:529.500000px;}
.x132_c00341{left:530.700000px;}
.x2b_c00341{left:532.950000px;}
.x104_c00341{left:534.150000px;}
.x81_c00341{left:536.100000px;}
.xb7_c00341{left:537.150000px;}
.x47_c00341{left:540.000000px;}
.x11b_c00341{left:541.050000px;}
.xd4_c00341{left:543.300000px;}
.xa2_c00341{left:544.350000px;}
.xbf_c00341{left:546.150000px;}
.xe4_c00341{left:547.500000px;}
.x133_c00341{left:548.700000px;}
.x1c_c00341{left:555.600000px;}
.xea_c00341{left:557.100000px;}
.x5a_c00341{left:558.450000px;}
.x6c_c00341{left:561.000000px;}
.xc_c00341{left:562.200000px;}
.xc8_c00341{left:564.900000px;}
.xdb_c00341{left:566.550000px;}
.x125_c00341{left:567.900000px;}
.x39_c00341{left:571.800000px;}
.x63_c00341{left:573.750000px;}
.xab_c00341{left:575.250000px;}
.xf4_c00341{left:580.200000px;}
.x122_c00341{left:581.250000px;}
.x126_c00341{left:583.050000px;}
.x1d_c00341{left:585.450000px;}
.x6d_c00341{left:586.500000px;}
.x96_c00341{left:588.000000px;}
.xfe_c00341{left:589.200000px;}
.xb8_c00341{left:590.400000px;}
.x3a_c00341{left:592.350000px;}
.x136_c00341{left:594.000000px;}
.xb0_c00341{left:596.250000px;}
.xc9_c00341{left:597.300000px;}
.x2c_c00341{left:599.850000px;}
.x5b_c00341{left:601.950000px;}
.x48_c00341{left:603.000000px;}
.xd5_c00341{left:606.600000px;}
.x97_c00341{left:607.800000px;}
.x75_c00341{left:609.750000px;}
.x64_c00341{left:612.600000px;}
.xac_c00341{left:613.800000px;}
.xd_c00341{left:617.250000px;}
.x110_c00341{left:619.050000px;}
.x8c_c00341{left:620.850000px;}
.xf5_c00341{left:622.650000px;}
.xd6_c00341{left:625.350000px;}
.xa3_c00341{left:628.200000px;}
.x76_c00341{left:630.300000px;}
.x10b_c00341{left:633.000000px;}
.x6e_c00341{left:635.850000px;}
.xcd_c00341{left:637.500000px;}
.x3b_c00341{left:639.150000px;}
.x8d_c00341{left:640.650000px;}
.xe_c00341{left:645.300000px;}
.xd7_c00341{left:650.850000px;}
.x111_c00341{left:654.000000px;}
.x105_c00341{left:655.800000px;}
.x5c_c00341{left:657.450000px;}
.xdc_c00341{left:659.550000px;}
.xb9_c00341{left:660.900000px;}
.xff_c00341{left:663.000000px;}
.x49_c00341{left:664.200000px;}
.xc0_c00341{left:666.000000px;}
.x6f_c00341{left:667.200000px;}
.x112_c00341{left:671.700000px;}
.x2d_c00341{left:672.900000px;}
.x8e_c00341{left:674.100000px;}
.xf9_c00341{left:678.000000px;}
.xe5_c00341{left:681.000000px;}
.x65_c00341{left:682.050000px;}
.x1e_c00341{left:683.850000px;}
.xeb_c00341{left:685.500000px;}
.x2e_c00341{left:686.550000px;}
.xb1_c00341{left:688.800000px;}
.x70_c00341{left:692.700000px;}
.xc1_c00341{left:694.800000px;}
.xf_c00341{left:696.000000px;}
.x82_c00341{left:697.650000px;}
.x123_c00341{left:699.750000px;}
.x8f_c00341{left:701.400000px;}
.x113_c00341{left:702.600000px;}
.xad_c00341{left:705.300000px;}
.xca_c00341{left:707.100000px;}
.x4a_c00341{left:708.600000px;}
.x77_c00341{left:710.250000px;}
.xba_c00341{left:712.050000px;}
.xd8_c00341{left:715.650000px;}
.x83_c00341{left:717.450000px;}
.xa4_c00341{left:718.800000px;}
.x100_c00341{left:721.350000px;}
.x78_c00341{left:722.850000px;}
.x1f_c00341{left:725.250000px;}
.xbb_c00341{left:730.350000px;}
.x5d_c00341{left:731.550000px;}
.xdd_c00341{left:733.050000px;}
.x3c_c00341{left:734.250000px;}
.x12b_c00341{left:736.650000px;}
.x2_c00341{left:737.700000px;}
.x2f_c00341{left:740.250000px;}
.x4b_c00341{left:742.800000px;}
.x66_c00341{left:747.900000px;}
.x137_c00341{left:750.600000px;}
.x10_c00341{left:752.100000px;}
.x79_c00341{left:754.200000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws7_c00341{word-spacing:-7.262873pt;}
.ws3_c00341{word-spacing:-4.320988pt;}
.ws8_c00341{word-spacing:0.000000pt;}
.ws1_c00341{word-spacing:0.542005pt;}
.ws2_c00341{word-spacing:1.111111pt;}
.ws0_c00341{word-spacing:4.444444pt;}
.ws4_c00341{word-spacing:7.283951pt;}
.ws5_c00341{word-spacing:9.281046pt;}
.ws6_c00341{word-spacing:13.898305pt;}
._0_c00341{width:35.204678pt;}
.fs0_c00341{font-size:53.333333pt;}
.y0_c00341{bottom:0.000000pt;}
.y2c_c00341{bottom:138.533333pt;}
.y2b_c00341{bottom:152.400000pt;}
.y2a_c00341{bottom:166.133333pt;}
.y29_c00341{bottom:194.000000pt;}
.y28_c00341{bottom:211.866667pt;}
.y27_c00341{bottom:229.466667pt;}
.y26_c00341{bottom:247.333333pt;}
.y25_c00341{bottom:265.333333pt;}
.y24_c00341{bottom:283.200000pt;}
.y23_c00341{bottom:301.066667pt;}
.y22_c00341{bottom:318.666667pt;}
.y21_c00341{bottom:336.533333pt;}
.y20_c00341{bottom:354.133333pt;}
.y1f_c00341{bottom:372.000000pt;}
.y1e_c00341{bottom:389.600000pt;}
.y1d_c00341{bottom:407.466667pt;}
.y1c_c00341{bottom:424.400000pt;}
.y1b_c00341{bottom:442.266667pt;}
.y1a_c00341{bottom:460.133333pt;}
.y19_c00341{bottom:477.733333pt;}
.y18_c00341{bottom:495.066667pt;}
.y17_c00341{bottom:512.933333pt;}
.y16_c00341{bottom:530.266667pt;}
.y15_c00341{bottom:560.400000pt;}
.y14_c00341{bottom:578.000000pt;}
.y13_c00341{bottom:595.866667pt;}
.y12_c00341{bottom:613.466667pt;}
.y11_c00341{bottom:631.066667pt;}
.y10_c00341{bottom:648.666667pt;}
.yf_c00341{bottom:666.533333pt;}
.ye_c00341{bottom:684.266667pt;}
.yd_c00341{bottom:701.866667pt;}
.yc_c00341{bottom:719.466667pt;}
.yb_c00341{bottom:737.066667pt;}
.ya_c00341{bottom:754.933333pt;}
.y9_c00341{bottom:772.533333pt;}
.y8_c00341{bottom:790.133333pt;}
.y7_c00341{bottom:807.733333pt;}
.y6_c00341{bottom:825.600000pt;}
.y5_c00341{bottom:843.200000pt;}
.y4_c00341{bottom:860.800000pt;}
.y3_c00341{bottom:878.666667pt;}
.y2_c00341{bottom:896.266667pt;}
.y1_c00341{bottom:930.533333pt;}
.h2_c00341{height:53.333333pt;}
.h0_c00341{height:1037.119955pt;}
.h1_c00341{height:1037.333333pt;}
.w1_c00341{width:812.000000pt;}
.w0_c00341{width:812.159993pt;}
.x0_c00341{left:0.000000pt;}
.x4c_c00341{left:85.200000pt;}
.x11_c00341{left:86.133333pt;}
.x124_c00341{left:96.000000pt;}
.xa5_c00341{left:101.333333pt;}
.x90_c00341{left:103.466667pt;}
.x98_c00341{left:106.133333pt;}
.x127_c00341{left:108.000000pt;}
.x67_c00341{left:109.866667pt;}
.x11f_c00341{left:112.666667pt;}
.x12_c00341{left:113.600000pt;}
.x3_c00341{left:114.533333pt;}
.x106_c00341{left:115.466667pt;}
.xce_c00341{left:117.866667pt;}
.xae_c00341{left:119.466667pt;}
.x4d_c00341{left:120.400000pt;}
.x3d_c00341{left:124.666667pt;}
.x20_c00341{left:126.933333pt;}
.x91_c00341{left:128.800000pt;}
.xe6_c00341{left:129.866667pt;}
.x5e_c00341{left:132.533333pt;}
.x7a_c00341{left:133.733333pt;}
.xb2_c00341{left:136.133333pt;}
.x84_c00341{left:137.600000pt;}
.x13_c00341{left:139.200000pt;}
.xbc_c00341{left:140.666667pt;}
.x3e_c00341{left:142.533333pt;}
.x12c_c00341{left:144.400000pt;}
.xe7_c00341{left:146.800000pt;}
.x30_c00341{left:148.266667pt;}
.x4e_c00341{left:149.866667pt;}
.x4_c00341{left:152.266667pt;}
.x11c_c00341{left:154.266667pt;}
.x14_c00341{left:155.200000pt;}
.xde_c00341{left:156.800000pt;}
.x21_c00341{left:159.866667pt;}
.x31_c00341{left:161.333333pt;}
.xc2_c00341{left:162.266667pt;}
.xf1_c00341{left:164.400000pt;}
.xf6_c00341{left:167.733333pt;}
.x9c_c00341{left:168.933333pt;}
.x71_c00341{left:170.933333pt;}
.x7b_c00341{left:172.133333pt;}
.x85_c00341{left:175.333333pt;}
.xcf_c00341{left:177.066667pt;}
.x11d_c00341{left:178.266667pt;}
.x4f_c00341{left:180.000000pt;}
.x5_c00341{left:181.333333pt;}
.x12d_c00341{left:182.533333pt;}
.xec_c00341{left:183.866667pt;}
.xa6_c00341{left:185.066667pt;}
.x99_c00341{left:186.800000pt;}
.x72_c00341{left:188.533333pt;}
.x15_c00341{left:189.733333pt;}
.x134_c00341{left:191.733333pt;}
.x50_c00341{left:193.066667pt;}
.x114_c00341{left:195.066667pt;}
.x86_c00341{left:196.400000pt;}
.x6_c00341{left:197.600000pt;}
.x10c_c00341{left:199.333333pt;}
.xdf_c00341{left:200.266667pt;}
.x92_c00341{left:201.200000pt;}
.x22_c00341{left:202.133333pt;}
.xa7_c00341{left:205.866667pt;}
.x32_c00341{left:206.800000pt;}
.xc3_c00341{left:210.266667pt;}
.x115_c00341{left:213.333333pt;}
.x68_c00341{left:214.533333pt;}
.x3f_c00341{left:216.133333pt;}
.x9d_c00341{left:217.200000pt;}
.x101_c00341{left:218.800000pt;}
.xfa_c00341{left:221.066667pt;}
.x5f_c00341{left:222.400000pt;}
.x23_c00341{left:224.800000pt;}
.x107_c00341{left:225.866667pt;}
.xcb_c00341{left:227.200000pt;}
.x69_c00341{left:232.400000pt;}
.x128_c00341{left:233.733333pt;}
.x138_c00341{left:235.066667pt;}
.x51_c00341{left:239.200000pt;}
.x60_c00341{left:240.666667pt;}
.x7c_c00341{left:243.466667pt;}
.x7_c00341{left:245.333333pt;}
.xed_c00341{left:246.533333pt;}
.xa8_c00341{left:247.733333pt;}
.xfb_c00341{left:248.933333pt;}
.x24_c00341{left:252.266667pt;}
.x52_c00341{left:253.600000pt;}
.xf2_c00341{left:254.666667pt;}
.x16_c00341{left:256.533333pt;}
.xe0_c00341{left:258.133333pt;}
.x10d_c00341{left:259.200000pt;}
.x108_c00341{left:260.400000pt;}
.xaf_c00341{left:261.866667pt;}
.xb3_c00341{left:262.933333pt;}
.x6a_c00341{left:266.266667pt;}
.x9e_c00341{left:267.466667pt;}
.xd9_c00341{left:268.533333pt;}
.x9a_c00341{left:270.666667pt;}
.x40_c00341{left:271.866667pt;}
.x11e_c00341{left:273.600000pt;}
.x10e_c00341{left:274.533333pt;}
.xc4_c00341{left:276.266667pt;}
.x33_c00341{left:278.133333pt;}
.x7d_c00341{left:280.266667pt;}
.x17_c00341{left:281.466667pt;}
.x41_c00341{left:284.933333pt;}
.x130_c00341{left:285.866667pt;}
.x53_c00341{left:287.466667pt;}
.x8_c00341{left:289.200000pt;}
.x102_c00341{left:290.800000pt;}
.xb4_c00341{left:292.000000pt;}
.xe8_c00341{left:293.466667pt;}
.xcc_c00341{left:294.400000pt;}
.x9b_c00341{left:295.600000pt;}
.x135_c00341{left:296.666667pt;}
.x25_c00341{left:297.733333pt;}
.xd0_c00341{left:300.266667pt;}
.x73_c00341{left:302.800000pt;}
.x93_c00341{left:304.000000pt;}
.xc5_c00341{left:306.933333pt;}
.xe1_c00341{left:308.666667pt;}
.x116_c00341{left:310.000000pt;}
.xee_c00341{left:312.133333pt;}
.x54_c00341{left:314.400000pt;}
.x87_c00341{left:316.133333pt;}
.xd1_c00341{left:317.200000pt;}
.xda_c00341{left:318.800000pt;}
.xa9_c00341{left:320.266667pt;}
.x94_c00341{left:322.266667pt;}
.xf7_c00341{left:323.333333pt;}
.x26_c00341{left:324.266667pt;}
.x42_c00341{left:326.533333pt;}
.x10f_c00341{left:327.733333pt;}
.x88_c00341{left:328.933333pt;}
.xc6_c00341{left:330.666667pt;}
.x6b_c00341{left:331.866667pt;}
.x61_c00341{left:333.066667pt;}
.xe2_c00341{left:334.000000pt;}
.x117_c00341{left:335.333333pt;}
.x9_c00341{left:336.533333pt;}
.xd2_c00341{left:339.600000pt;}
.x109_c00341{left:340.533333pt;}
.x55_c00341{left:342.266667pt;}
.x34_c00341{left:345.600000pt;}
.x1_c00341{left:347.866667pt;}
.xe9_c00341{left:348.933333pt;}
.x129_c00341{left:350.533333pt;}
.x18_c00341{left:352.133333pt;}
.xb5_c00341{left:355.066667pt;}
.x27_c00341{left:356.933333pt;}
.x56_c00341{left:359.200000pt;}
.x43_c00341{left:361.066667pt;}
.x89_c00341{left:362.533333pt;}
.xc7_c00341{left:364.533333pt;}
.x118_c00341{left:365.733333pt;}
.xa_c00341{left:367.200000pt;}
.x12a_c00341{left:368.133333pt;}
.x120_c00341{left:369.200000pt;}
.x19_c00341{left:371.333333pt;}
.x12e_c00341{left:372.800000pt;}
.x9f_c00341{left:373.733333pt;}
.x35_c00341{left:376.666667pt;}
.x103_c00341{left:378.800000pt;}
.x44_c00341{left:380.533333pt;}
.x12f_c00341{left:383.733333pt;}
.x57_c00341{left:385.466667pt;}
.x8a_c00341{left:387.466667pt;}
.x95_c00341{left:389.466667pt;}
.x28_c00341{left:391.200000pt;}
.xb_c00341{left:392.133333pt;}
.x119_c00341{left:394.533333pt;}
.x36_c00341{left:396.133333pt;}
.x7e_c00341{left:400.666667pt;}
.xbd_c00341{left:402.266667pt;}
.xd3_c00341{left:404.933333pt;}
.x10a_c00341{left:406.133333pt;}
.x29_c00341{left:409.466667pt;}
.xaa_c00341{left:411.733333pt;}
.x8b_c00341{left:413.733333pt;}
.x74_c00341{left:415.200000pt;}
.xef_c00341{left:416.933333pt;}
.x45_c00341{left:418.000000pt;}
.xa0_c00341{left:418.933333pt;}
.x11a_c00341{left:420.133333pt;}
.x131_c00341{left:421.466667pt;}
.x37_c00341{left:422.400000pt;}
.xfc_c00341{left:423.600000pt;}
.xe3_c00341{left:424.666667pt;}
.x7f_c00341{left:426.533333pt;}
.x62_c00341{left:428.400000pt;}
.x1a_c00341{left:431.466667pt;}
.xf3_c00341{left:433.200000pt;}
.x58_c00341{left:434.400000pt;}
.x121_c00341{left:438.000000pt;}
.xfd_c00341{left:438.933333pt;}
.xa1_c00341{left:446.800000pt;}
.x2a_c00341{left:447.866667pt;}
.x38_c00341{left:449.333333pt;}
.x59_c00341{left:453.866667pt;}
.xb6_c00341{left:454.800000pt;}
.x80_c00341{left:456.666667pt;}
.x46_c00341{left:458.266667pt;}
.x1b_c00341{left:460.000000pt;}
.xf8_c00341{left:464.933333pt;}
.xbe_c00341{left:467.600000pt;}
.xf0_c00341{left:470.666667pt;}
.x132_c00341{left:471.733333pt;}
.x2b_c00341{left:473.733333pt;}
.x104_c00341{left:474.800000pt;}
.x81_c00341{left:476.533333pt;}
.xb7_c00341{left:477.466667pt;}
.x47_c00341{left:480.000000pt;}
.x11b_c00341{left:480.933333pt;}
.xd4_c00341{left:482.933333pt;}
.xa2_c00341{left:483.866667pt;}
.xbf_c00341{left:485.466667pt;}
.xe4_c00341{left:486.666667pt;}
.x133_c00341{left:487.733333pt;}
.x1c_c00341{left:493.866667pt;}
.xea_c00341{left:495.200000pt;}
.x5a_c00341{left:496.400000pt;}
.x6c_c00341{left:498.666667pt;}
.xc_c00341{left:499.733333pt;}
.xc8_c00341{left:502.133333pt;}
.xdb_c00341{left:503.600000pt;}
.x125_c00341{left:504.800000pt;}
.x39_c00341{left:508.266667pt;}
.x63_c00341{left:510.000000pt;}
.xab_c00341{left:511.333333pt;}
.xf4_c00341{left:515.733333pt;}
.x122_c00341{left:516.666667pt;}
.x126_c00341{left:518.266667pt;}
.x1d_c00341{left:520.400000pt;}
.x6d_c00341{left:521.333333pt;}
.x96_c00341{left:522.666667pt;}
.xfe_c00341{left:523.733333pt;}
.xb8_c00341{left:524.800000pt;}
.x3a_c00341{left:526.533333pt;}
.x136_c00341{left:528.000000pt;}
.xb0_c00341{left:530.000000pt;}
.xc9_c00341{left:530.933333pt;}
.x2c_c00341{left:533.200000pt;}
.x5b_c00341{left:535.066667pt;}
.x48_c00341{left:536.000000pt;}
.xd5_c00341{left:539.200000pt;}
.x97_c00341{left:540.266667pt;}
.x75_c00341{left:542.000000pt;}
.x64_c00341{left:544.533333pt;}
.xac_c00341{left:545.600000pt;}
.xd_c00341{left:548.666667pt;}
.x110_c00341{left:550.266667pt;}
.x8c_c00341{left:551.866667pt;}
.xf5_c00341{left:553.466667pt;}
.xd6_c00341{left:555.866667pt;}
.xa3_c00341{left:558.400000pt;}
.x76_c00341{left:560.266667pt;}
.x10b_c00341{left:562.666667pt;}
.x6e_c00341{left:565.200000pt;}
.xcd_c00341{left:566.666667pt;}
.x3b_c00341{left:568.133333pt;}
.x8d_c00341{left:569.466667pt;}
.xe_c00341{left:573.600000pt;}
.xd7_c00341{left:578.533333pt;}
.x111_c00341{left:581.333333pt;}
.x105_c00341{left:582.933333pt;}
.x5c_c00341{left:584.400000pt;}
.xdc_c00341{left:586.266667pt;}
.xb9_c00341{left:587.466667pt;}
.xff_c00341{left:589.333333pt;}
.x49_c00341{left:590.400000pt;}
.xc0_c00341{left:592.000000pt;}
.x6f_c00341{left:593.066667pt;}
.x112_c00341{left:597.066667pt;}
.x2d_c00341{left:598.133333pt;}
.x8e_c00341{left:599.200000pt;}
.xf9_c00341{left:602.666667pt;}
.xe5_c00341{left:605.333333pt;}
.x65_c00341{left:606.266667pt;}
.x1e_c00341{left:607.866667pt;}
.xeb_c00341{left:609.333333pt;}
.x2e_c00341{left:610.266667pt;}
.xb1_c00341{left:612.266667pt;}
.x70_c00341{left:615.733333pt;}
.xc1_c00341{left:617.600000pt;}
.xf_c00341{left:618.666667pt;}
.x82_c00341{left:620.133333pt;}
.x123_c00341{left:622.000000pt;}
.x8f_c00341{left:623.466667pt;}
.x113_c00341{left:624.533333pt;}
.xad_c00341{left:626.933333pt;}
.xca_c00341{left:628.533333pt;}
.x4a_c00341{left:629.866667pt;}
.x77_c00341{left:631.333333pt;}
.xba_c00341{left:632.933333pt;}
.xd8_c00341{left:636.133333pt;}
.x83_c00341{left:637.733333pt;}
.xa4_c00341{left:638.933333pt;}
.x100_c00341{left:641.200000pt;}
.x78_c00341{left:642.533333pt;}
.x1f_c00341{left:644.666667pt;}
.xbb_c00341{left:649.200000pt;}
.x5d_c00341{left:650.266667pt;}
.xdd_c00341{left:651.600000pt;}
.x3c_c00341{left:652.666667pt;}
.x12b_c00341{left:654.800000pt;}
.x2_c00341{left:655.733333pt;}
.x2f_c00341{left:658.000000pt;}
.x4b_c00341{left:660.266667pt;}
.x66_c00341{left:664.800000pt;}
.x137_c00341{left:667.200000pt;}
.x10_c00341{left:668.533333pt;}
.x79_c00341{left:670.400000pt;}
}





/* 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_c00342 {
    display:none;
  }
  .loading-indicator_c00342.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00342 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_c00342 { 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_c00342" -> "#page-container .classname_c00342")
 */
.pf_c00342 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00342 { /* 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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00342 { /* 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_c00342 { /* 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_c00342 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00342 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00342 {overflow:visible;}
  }
}
.c_c00342 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00342 { /* 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_c00342:after { /* webkit #35443 */
  content: '';
}
.t_c00342:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00342 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 */
}
.__c00342 { /* 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_c00342 { /* info for Javascript */
  display:none;
}
.l_c00342 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00342 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00342 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00342: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_c00342 {
    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_c00342.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00342.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_c00342 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00342{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00342;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.000000;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;}
.m6a_c00342{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m45_c00342{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00342{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m99_c00342{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00342{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m63_c00342{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m49_c00342{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m72_c00342{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00342{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m20_c00342{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00342{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00342{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00342{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m91_c00342{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00342{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00342{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00342{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m73_c00342{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00342{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00342{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00342{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m83_c00342{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00342{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m59_c00342{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m95_c00342{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m97_c00342{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m80_c00342{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m62_c00342{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00342{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00342{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m92_c00342{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m89_c00342{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m82_c00342{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00342{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00342{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00342{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m53_c00342{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m46_c00342{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m98_c00342{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m36_c00342{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m40_c00342{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00342{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00342{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m93_c00342{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00342{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00342{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00342{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m87_c00342{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00342{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00342{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00342{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00342{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m41_c00342{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00342{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m28_c00342{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m77_c00342{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00342{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m44_c00342{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m47_c00342{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m51_c00342{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m76_c00342{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m88_c00342{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m70_c00342{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m60_c00342{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00342{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00342{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00342{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m54_c00342{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00342{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m61_c00342{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m13_c00342{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00342{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00342{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00342{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8_c00342{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00342{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{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);}
.m71_c00342{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m50_c00342{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00342{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00342{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.md_c00342{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00342{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00342{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00342{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00342{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00342{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m66_c00342{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m57_c00342{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.me_c00342{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m74_c00342{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m68_c00342{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00342{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m56_c00342{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00342{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m96_c00342{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m58_c00342{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00342{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00342{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00342{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00342{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00342{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00342{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m17_c00342{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m75_c00342{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00342{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00342{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m48_c00342{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m16_c00342{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m79_c00342{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m31_c00342{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m86_c00342{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m43_c00342{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00342{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00342{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00342{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00342{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m42_c00342{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00342{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m64_c00342{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m85_c00342{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m90_c00342{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00342{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00342{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m81_c00342{transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315250,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m69_c00342{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00342{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m55_c00342{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m30_c00342{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m52_c00342{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.ls0_c00342{letter-spacing:0.000000px;}
.sc__c00342{text-shadow:none;}
.sc0_c00342{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__c00342{-webkit-text-stroke:0px transparent;}
.sc0_c00342{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00342{word-spacing:-7.250000px;}
.ws4_c00342{word-spacing:-1.750000px;}
.ws9_c00342{word-spacing:0.000000px;}
.ws1_c00342{word-spacing:4.997795px;}
.ws8_c00342{word-spacing:6.111111px;}
.ws3_c00342{word-spacing:7.375000px;}
.ws7_c00342{word-spacing:8.336624px;}
.ws6_c00342{word-spacing:10.318328px;}
.ws0_c00342{word-spacing:12.000000px;}
.ws2_c00342{word-spacing:18.907631px;}
.fc0_c00342{color:transparent;}
.fs0_c00342{font-size:54.000000px;}
.y0_c00342{bottom:0.000000px;}
.y2c_c00342{bottom:154.500000px;}
.y2b_c00342{bottom:169.500000px;}
.y2a_c00342{bottom:218.100000px;}
.y29_c00342{bottom:237.900000px;}
.y28_c00342{bottom:257.700000px;}
.y27_c00342{bottom:277.500000px;}
.y26_c00342{bottom:297.300000px;}
.y25_c00342{bottom:317.100000px;}
.y24_c00342{bottom:336.900000px;}
.y23_c00342{bottom:356.700000px;}
.y22_c00342{bottom:376.500000px;}
.y21_c00342{bottom:396.300000px;}
.y20_c00342{bottom:416.400000px;}
.y1f_c00342{bottom:436.200000px;}
.y1e_c00342{bottom:456.000000px;}
.y1d_c00342{bottom:475.800000px;}
.y1c_c00342{bottom:495.900000px;}
.y1b_c00342{bottom:515.700000px;}
.y1a_c00342{bottom:535.800000px;}
.y19_c00342{bottom:555.900000px;}
.y18_c00342{bottom:575.700000px;}
.y17_c00342{bottom:595.500000px;}
.y16_c00342{bottom:615.300000px;}
.y15_c00342{bottom:635.400000px;}
.y14_c00342{bottom:655.200000px;}
.y13_c00342{bottom:675.300000px;}
.y12_c00342{bottom:695.100000px;}
.y11_c00342{bottom:714.600000px;}
.y10_c00342{bottom:735.150000px;}
.yf_c00342{bottom:755.250000px;}
.ye_c00342{bottom:774.750000px;}
.yd_c00342{bottom:794.700000px;}
.yc_c00342{bottom:814.500000px;}
.yb_c00342{bottom:834.600000px;}
.ya_c00342{bottom:854.400000px;}
.y9_c00342{bottom:874.500000px;}
.y8_c00342{bottom:894.000000px;}
.y7_c00342{bottom:913.800000px;}
.y6_c00342{bottom:933.600000px;}
.y5_c00342{bottom:953.700000px;}
.y4_c00342{bottom:973.500000px;}
.y3_c00342{bottom:993.600000px;}
.y2_c00342{bottom:1013.400000px;}
.y1_c00342{bottom:1052.700000px;}
.h2_c00342{height:54.000000px;}
.h0_c00342{height:1166.759949px;}
.h1_c00342{height:1167.000000px;}
.w1_c00342{width:913.500000px;}
.w0_c00342{width:913.679993px;}
.x0_c00342{left:0.000000px;}
.x133_c00342{left:155.550000px;}
.x109_c00342{left:156.600000px;}
.xe5_c00342{left:157.650000px;}
.x7a_c00342{left:158.850000px;}
.x37_c00342{left:159.900000px;}
.x1_c00342{left:161.250000px;}
.x11d_c00342{left:174.750000px;}
.xbd_c00342{left:175.800000px;}
.x99_c00342{left:178.050000px;}
.x123_c00342{left:182.100000px;}
.x63_c00342{left:183.150000px;}
.xff_c00342{left:184.200000px;}
.x38_c00342{left:185.850000px;}
.x7b_c00342{left:187.650000px;}
.x46_c00342{left:189.900000px;}
.x3_c00342{left:191.850000px;}
.xb6_c00342{left:193.050000px;}
.xa1_c00342{left:195.150000px;}
.x127_c00342{left:197.700000px;}
.x134_c00342{left:200.850000px;}
.x1e_c00342{left:203.700000px;}
.x9a_c00342{left:205.800000px;}
.xf8_c00342{left:206.850000px;}
.x51_c00342{left:210.000000px;}
.xa8_c00342{left:211.050000px;}
.x10a_c00342{left:212.700000px;}
.x100_c00342{left:214.050000px;}
.x135_c00342{left:215.550000px;}
.x111_c00342{left:218.400000px;}
.xc9_c00342{left:219.600000px;}
.x103_c00342{left:220.650000px;}
.x12_c00342{left:223.350000px;}
.x4_c00342{left:226.800000px;}
.x29_c00342{left:229.500000px;}
.x12f_c00342{left:230.550000px;}
.xec_c00342{left:232.350000px;}
.xf4_c00342{left:234.000000px;}
.x39_c00342{left:235.200000px;}
.x136_c00342{left:237.450000px;}
.x47_c00342{left:243.600000px;}
.xa9_c00342{left:245.550000px;}
.x64_c00342{left:247.200000px;}
.xbe_c00342{left:249.600000px;}
.x1f_c00342{left:251.550000px;}
.xdf_c00342{left:252.900000px;}
.xd3_c00342{left:253.950000px;}
.x13_c00342{left:255.450000px;}
.xa2_c00342{left:256.650000px;}
.xaa_c00342{left:260.700000px;}
.x52_c00342{left:262.500000px;}
.xf9_c00342{left:264.750000px;}
.x6e_c00342{left:266.550000px;}
.xad_c00342{left:268.500000px;}
.x91_c00342{left:270.450000px;}
.x9b_c00342{left:274.950000px;}
.x14_c00342{left:276.000000px;}
.xd4_c00342{left:277.050000px;}
.x5_c00342{left:279.000000px;}
.xca_c00342{left:281.850000px;}
.x2a_c00342{left:283.500000px;}
.x53_c00342{left:284.850000px;}
.x65_c00342{left:286.800000px;}
.x11e_c00342{left:289.350000px;}
.x124_c00342{left:290.400000px;}
.xab_c00342{left:291.600000px;}
.x6f_c00342{left:293.850000px;}
.x10b_c00342{left:295.650000px;}
.xae_c00342{left:297.300000px;}
.x7c_c00342{left:303.150000px;}
.x8e_c00342{left:305.550000px;}
.xe0_c00342{left:307.950000px;}
.x87_c00342{left:309.150000px;}
.x54_c00342{left:312.900000px;}
.x125_c00342{left:314.850000px;}
.x6_c00342{left:316.050000px;}
.x11f_c00342{left:319.950000px;}
.x3a_c00342{left:321.300000px;}
.x112_c00342{left:322.350000px;}
.xcb_c00342{left:324.750000px;}
.xbf_c00342{left:326.550000px;}
.x7d_c00342{left:328.650000px;}
.x104_c00342{left:329.850000px;}
.x119_c00342{left:331.500000px;}
.x8f_c00342{left:333.600000px;}
.xb7_c00342{left:334.650000px;}
.x9c_c00342{left:337.950000px;}
.x55_c00342{left:342.450000px;}
.xd5_c00342{left:343.950000px;}
.x20_c00342{left:345.150000px;}
.x2b_c00342{left:346.800000px;}
.x3b_c00342{left:349.800000px;}
.x15_c00342{left:353.100000px;}
.x66_c00342{left:358.050000px;}
.x56_c00342{left:359.700000px;}
.x12e_c00342{left:361.200000px;}
.xed_c00342{left:362.250000px;}
.xb8_c00342{left:365.550000px;}
.xd6_c00342{left:367.050000px;}
.xac_c00342{left:368.700000px;}
.x7_c00342{left:370.050000px;}
.xe1_c00342{left:371.250000px;}
.xc6_c00342{left:372.750000px;}
.x2c_c00342{left:375.900000px;}
.x128_c00342{left:377.700000px;}
.x70_c00342{left:378.900000px;}
.xfd_c00342{left:380.400000px;}
.x7e_c00342{left:382.350000px;}
.xcc_c00342{left:383.400000px;}
.x137_c00342{left:384.450000px;}
.xaf_c00342{left:386.550000px;}
.xc0_c00342{left:389.250000px;}
.x21_c00342{left:391.950000px;}
.x11a_c00342{left:393.150000px;}
.xb9_c00342{left:394.350000px;}
.x88_c00342{left:395.700000px;}
.x57_c00342{left:398.250000px;}
.x9d_c00342{left:400.350000px;}
.x48_c00342{left:402.000000px;}
.xc7_c00342{left:403.350000px;}
.xf2_c00342{left:406.350000px;}
.xe9_c00342{left:407.700000px;}
.x3c_c00342{left:409.500000px;}
.x10c_c00342{left:415.050000px;}
.x89_c00342{left:418.050000px;}
.xb0_c00342{left:421.800000px;}
.xe2_c00342{left:423.150000px;}
.x2d_c00342{left:425.250000px;}
.x3d_c00342{left:426.450000px;}
.x58_c00342{left:429.150000px;}
.xfa_c00342{left:430.350000px;}
.x49_c00342{left:431.550000px;}
.x22_c00342{left:433.350000px;}
.x16_c00342{left:435.150000px;}
.x105_c00342{left:436.800000px;}
.xa3_c00342{left:439.200000px;}
.x67_c00342{left:441.150000px;}
.x7f_c00342{left:447.450000px;}
.xd7_c00342{left:448.800000px;}
.x71_c00342{left:450.900000px;}
.x3e_c00342{left:451.950000px;}
.x120_c00342{left:453.150000px;}
.x8_c00342{left:454.950000px;}
.x2_c00342{left:457.950000px;}
.xcd_c00342{left:460.800000px;}
.x17_c00342{left:462.150000px;}
.x59_c00342{left:464.850000px;}
.xee_c00342{left:466.350000px;}
.x23_c00342{left:469.350000px;}
.xc1_c00342{left:471.000000px;}
.x12c_c00342{left:472.050000px;}
.x68_c00342{left:473.250000px;}
.x130_c00342{left:474.900000px;}
.xd8_c00342{left:476.550000px;}
.x80_c00342{left:478.350000px;}
.x90_c00342{left:482.250000px;}
.x106_c00342{left:485.400000px;}
.x8a_c00342{left:487.200000px;}
.xe3_c00342{left:491.100000px;}
.x9_c00342{left:492.450000px;}
.x4a_c00342{left:494.250000px;}
.xba_c00342{left:496.650000px;}
.x5a_c00342{left:498.300000px;}
.x24_c00342{left:501.450000px;}
.x129_c00342{left:503.700000px;}
.x131_c00342{left:505.200000px;}
.x11b_c00342{left:508.200000px;}
.x92_c00342{left:509.400000px;}
.xe4_c00342{left:510.600000px;}
.xe6_c00342{left:512.850000px;}
.x69_c00342{left:516.450000px;}
.xa_c00342{left:520.500000px;}
.xef_c00342{left:522.450000px;}
.x18_c00342{left:524.850000px;}
.x2e_c00342{left:526.350000px;}
.x9e_c00342{left:528.150000px;}
.x72_c00342{left:529.350000px;}
.xb1_c00342{left:531.600000px;}
.x3f_c00342{left:533.250000px;}
.xbb_c00342{left:535.200000px;}
.x5b_c00342{left:536.850000px;}
.x8b_c00342{left:538.350000px;}
.xd9_c00342{left:539.550000px;}
.xc8_c00342{left:540.600000px;}
.xf5_c00342{left:541.800000px;}
.x11c_c00342{left:543.150000px;}
.x2f_c00342{left:544.350000px;}
.x19_c00342{left:546.450000px;}
.xfb_c00342{left:550.650000px;}
.x6a_c00342{left:553.200000px;}
.xda_c00342{left:556.800000px;}
.x4b_c00342{left:558.300000px;}
.xb2_c00342{left:560.100000px;}
.x10d_c00342{left:561.150000px;}
.x113_c00342{left:563.550000px;}
.x5c_c00342{left:567.750000px;}
.x73_c00342{left:568.950000px;}
.x1a_c00342{left:571.950000px;}
.xf6_c00342{left:573.900000px;}
.xa4_c00342{left:575.550000px;}
.xdb_c00342{left:577.350000px;}
.x4c_c00342{left:579.900000px;}
.xb_c00342{left:581.400000px;}
.x81_c00342{left:584.550000px;}
.x8c_c00342{left:586.200000px;}
.x25_c00342{left:587.850000px;}
.x138_c00342{left:589.800000px;}
.x5d_c00342{left:591.150000px;}
.x114_c00342{left:592.350000px;}
.xf7_c00342{left:593.400000px;}
.x40_c00342{left:595.500000px;}
.x93_c00342{left:597.150000px;}
.xe7_c00342{left:598.500000px;}
.x74_c00342{left:599.850000px;}
.x9f_c00342{left:605.250000px;}
.xdc_c00342{left:609.750000px;}
.x121_c00342{left:610.800000px;}
.x94_c00342{left:612.300000px;}
.x41_c00342{left:613.500000px;}
.x26_c00342{left:616.950000px;}
.x10e_c00342{left:619.500000px;}
.x12d_c00342{left:621.450000px;}
.x30_c00342{left:622.500000px;}
.x4d_c00342{left:624.600000px;}
.x12a_c00342{left:626.100000px;}
.x6b_c00342{left:627.300000px;}
.xf0_c00342{left:631.650000px;}
.xce_c00342{left:633.000000px;}
.x82_c00342{left:636.000000px;}
.xb3_c00342{left:637.200000px;}
.x75_c00342{left:638.700000px;}
.x10f_c00342{left:640.050000px;}
.xc_c00342{left:641.550000px;}
.x5e_c00342{left:645.150000px;}
.x101_c00342{left:646.350000px;}
.x42_c00342{left:647.400000px;}
.x31_c00342{left:648.750000px;}
.x95_c00342{left:650.400000px;}
.x115_c00342{left:651.750000px;}
.x1b_c00342{left:652.950000px;}
.xa5_c00342{left:654.450000px;}
.x83_c00342{left:655.500000px;}
.xd_c00342{left:657.750000px;}
.xcf_c00342{left:660.750000px;}
.x76_c00342{left:661.800000px;}
.xbc_c00342{left:664.950000px;}
.x6c_c00342{left:666.600000px;}
.x102_c00342{left:667.650000px;}
.x116_c00342{left:669.750000px;}
.x5f_c00342{left:671.400000px;}
.xdd_c00342{left:673.800000px;}
.xa6_c00342{left:675.000000px;}
.xc2_c00342{left:677.250000px;}
.x32_c00342{left:679.350000px;}
.x12b_c00342{left:688.800000px;}
.xe_c00342{left:689.850000px;}
.x4e_c00342{left:690.900000px;}
.xd0_c00342{left:692.400000px;}
.xfe_c00342{left:694.350000px;}
.x6d_c00342{left:695.700000px;}
.xea_c00342{left:698.850000px;}
.x139_c00342{left:700.050000px;}
.x96_c00342{left:701.100000px;}
.x84_c00342{left:703.350000px;}
.x1c_c00342{left:705.450000px;}
.xd1_c00342{left:707.550000px;}
.x126_c00342{left:709.200000px;}
.x117_c00342{left:711.450000px;}
.x8d_c00342{left:716.100000px;}
.xf_c00342{left:718.350000px;}
.x77_c00342{left:719.400000px;}
.x85_c00342{left:724.950000px;}
.xa0_c00342{left:726.900000px;}
.xde_c00342{left:728.850000px;}
.x97_c00342{left:730.200000px;}
.xc3_c00342{left:732.000000px;}
.x110_c00342{left:734.700000px;}
.x27_c00342{left:736.050000px;}
.x33_c00342{left:738.750000px;}
.x60_c00342{left:740.850000px;}
.xfc_c00342{left:742.350000px;}
.x28_c00342{left:746.850000px;}
.x43_c00342{left:749.250000px;}
.x132_c00342{left:750.450000px;}
.x78_c00342{left:752.850000px;}
.xa7_c00342{left:753.900000px;}
.x34_c00342{left:756.450000px;}
.x107_c00342{left:758.100000px;}
.x4f_c00342{left:759.300000px;}
.xb4_c00342{left:762.600000px;}
.x61_c00342{left:766.050000px;}
.xc4_c00342{left:767.250000px;}
.xeb_c00342{left:769.050000px;}
.x44_c00342{left:770.550000px;}
.x98_c00342{left:774.900000px;}
.x79_c00342{left:776.550000px;}
.x35_c00342{left:779.850000px;}
.x122_c00342{left:781.500000px;}
.x10_c00342{left:782.850000px;}
.xc5_c00342{left:784.950000px;}
.xd2_c00342{left:787.350000px;}
.x86_c00342{left:790.050000px;}
.x118_c00342{left:791.100000px;}
.xb5_c00342{left:794.250000px;}
.x1d_c00342{left:796.200000px;}
.xe8_c00342{left:801.750000px;}
.x50_c00342{left:804.600000px;}
.x108_c00342{left:808.500000px;}
.xf3_c00342{left:810.150000px;}
.x36_c00342{left:811.200000px;}
.x45_c00342{left:812.700000px;}
.x62_c00342{left:815.400000px;}
.xf1_c00342{left:817.050000px;}
.x11_c00342{left:820.950000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws5_c00342{word-spacing:-6.444444pt;}
.ws4_c00342{word-spacing:-1.555556pt;}
.ws9_c00342{word-spacing:0.000000pt;}
.ws1_c00342{word-spacing:4.442484pt;}
.ws8_c00342{word-spacing:5.432099pt;}
.ws3_c00342{word-spacing:6.555556pt;}
.ws7_c00342{word-spacing:7.410332pt;}
.ws6_c00342{word-spacing:9.171847pt;}
.ws0_c00342{word-spacing:10.666667pt;}
.ws2_c00342{word-spacing:16.806783pt;}
.fs0_c00342{font-size:48.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y2c_c00342{bottom:137.333333pt;}
.y2b_c00342{bottom:150.666667pt;}
.y2a_c00342{bottom:193.866667pt;}
.y29_c00342{bottom:211.466667pt;}
.y28_c00342{bottom:229.066667pt;}
.y27_c00342{bottom:246.666667pt;}
.y26_c00342{bottom:264.266667pt;}
.y25_c00342{bottom:281.866667pt;}
.y24_c00342{bottom:299.466667pt;}
.y23_c00342{bottom:317.066667pt;}
.y22_c00342{bottom:334.666667pt;}
.y21_c00342{bottom:352.266667pt;}
.y20_c00342{bottom:370.133333pt;}
.y1f_c00342{bottom:387.733333pt;}
.y1e_c00342{bottom:405.333333pt;}
.y1d_c00342{bottom:422.933333pt;}
.y1c_c00342{bottom:440.800000pt;}
.y1b_c00342{bottom:458.400000pt;}
.y1a_c00342{bottom:476.266667pt;}
.y19_c00342{bottom:494.133333pt;}
.y18_c00342{bottom:511.733333pt;}
.y17_c00342{bottom:529.333333pt;}
.y16_c00342{bottom:546.933333pt;}
.y15_c00342{bottom:564.800000pt;}
.y14_c00342{bottom:582.400000pt;}
.y13_c00342{bottom:600.266667pt;}
.y12_c00342{bottom:617.866667pt;}
.y11_c00342{bottom:635.200000pt;}
.y10_c00342{bottom:653.466667pt;}
.yf_c00342{bottom:671.333333pt;}
.ye_c00342{bottom:688.666667pt;}
.yd_c00342{bottom:706.400000pt;}
.yc_c00342{bottom:724.000000pt;}
.yb_c00342{bottom:741.866667pt;}
.ya_c00342{bottom:759.466667pt;}
.y9_c00342{bottom:777.333333pt;}
.y8_c00342{bottom:794.666667pt;}
.y7_c00342{bottom:812.266667pt;}
.y6_c00342{bottom:829.866667pt;}
.y5_c00342{bottom:847.733333pt;}
.y4_c00342{bottom:865.333333pt;}
.y3_c00342{bottom:883.200000pt;}
.y2_c00342{bottom:900.800000pt;}
.y1_c00342{bottom:935.733333pt;}
.h2_c00342{height:48.000000pt;}
.h0_c00342{height:1037.119955pt;}
.h1_c00342{height:1037.333333pt;}
.w1_c00342{width:812.000000pt;}
.w0_c00342{width:812.159993pt;}
.x0_c00342{left:0.000000pt;}
.x133_c00342{left:138.266667pt;}
.x109_c00342{left:139.200000pt;}
.xe5_c00342{left:140.133333pt;}
.x7a_c00342{left:141.200000pt;}
.x37_c00342{left:142.133333pt;}
.x1_c00342{left:143.333333pt;}
.x11d_c00342{left:155.333333pt;}
.xbd_c00342{left:156.266667pt;}
.x99_c00342{left:158.266667pt;}
.x123_c00342{left:161.866667pt;}
.x63_c00342{left:162.800000pt;}
.xff_c00342{left:163.733333pt;}
.x38_c00342{left:165.200000pt;}
.x7b_c00342{left:166.800000pt;}
.x46_c00342{left:168.800000pt;}
.x3_c00342{left:170.533333pt;}
.xb6_c00342{left:171.600000pt;}
.xa1_c00342{left:173.466667pt;}
.x127_c00342{left:175.733333pt;}
.x134_c00342{left:178.533333pt;}
.x1e_c00342{left:181.066667pt;}
.x9a_c00342{left:182.933333pt;}
.xf8_c00342{left:183.866667pt;}
.x51_c00342{left:186.666667pt;}
.xa8_c00342{left:187.600000pt;}
.x10a_c00342{left:189.066667pt;}
.x100_c00342{left:190.266667pt;}
.x135_c00342{left:191.600000pt;}
.x111_c00342{left:194.133333pt;}
.xc9_c00342{left:195.200000pt;}
.x103_c00342{left:196.133333pt;}
.x12_c00342{left:198.533333pt;}
.x4_c00342{left:201.600000pt;}
.x29_c00342{left:204.000000pt;}
.x12f_c00342{left:204.933333pt;}
.xec_c00342{left:206.533333pt;}
.xf4_c00342{left:208.000000pt;}
.x39_c00342{left:209.066667pt;}
.x136_c00342{left:211.066667pt;}
.x47_c00342{left:216.533333pt;}
.xa9_c00342{left:218.266667pt;}
.x64_c00342{left:219.733333pt;}
.xbe_c00342{left:221.866667pt;}
.x1f_c00342{left:223.600000pt;}
.xdf_c00342{left:224.800000pt;}
.xd3_c00342{left:225.733333pt;}
.x13_c00342{left:227.066667pt;}
.xa2_c00342{left:228.133333pt;}
.xaa_c00342{left:231.733333pt;}
.x52_c00342{left:233.333333pt;}
.xf9_c00342{left:235.333333pt;}
.x6e_c00342{left:236.933333pt;}
.xad_c00342{left:238.666667pt;}
.x91_c00342{left:240.400000pt;}
.x9b_c00342{left:244.400000pt;}
.x14_c00342{left:245.333333pt;}
.xd4_c00342{left:246.266667pt;}
.x5_c00342{left:248.000000pt;}
.xca_c00342{left:250.533333pt;}
.x2a_c00342{left:252.000000pt;}
.x53_c00342{left:253.200000pt;}
.x65_c00342{left:254.933333pt;}
.x11e_c00342{left:257.200000pt;}
.x124_c00342{left:258.133333pt;}
.xab_c00342{left:259.200000pt;}
.x6f_c00342{left:261.200000pt;}
.x10b_c00342{left:262.800000pt;}
.xae_c00342{left:264.266667pt;}
.x7c_c00342{left:269.466667pt;}
.x8e_c00342{left:271.600000pt;}
.xe0_c00342{left:273.733333pt;}
.x87_c00342{left:274.800000pt;}
.x54_c00342{left:278.133333pt;}
.x125_c00342{left:279.866667pt;}
.x6_c00342{left:280.933333pt;}
.x11f_c00342{left:284.400000pt;}
.x3a_c00342{left:285.600000pt;}
.x112_c00342{left:286.533333pt;}
.xcb_c00342{left:288.666667pt;}
.xbf_c00342{left:290.266667pt;}
.x7d_c00342{left:292.133333pt;}
.x104_c00342{left:293.200000pt;}
.x119_c00342{left:294.666667pt;}
.x8f_c00342{left:296.533333pt;}
.xb7_c00342{left:297.466667pt;}
.x9c_c00342{left:300.400000pt;}
.x55_c00342{left:304.400000pt;}
.xd5_c00342{left:305.733333pt;}
.x20_c00342{left:306.800000pt;}
.x2b_c00342{left:308.266667pt;}
.x3b_c00342{left:310.933333pt;}
.x15_c00342{left:313.866667pt;}
.x66_c00342{left:318.266667pt;}
.x56_c00342{left:319.733333pt;}
.x12e_c00342{left:321.066667pt;}
.xed_c00342{left:322.000000pt;}
.xb8_c00342{left:324.933333pt;}
.xd6_c00342{left:326.266667pt;}
.xac_c00342{left:327.733333pt;}
.x7_c00342{left:328.933333pt;}
.xe1_c00342{left:330.000000pt;}
.xc6_c00342{left:331.333333pt;}
.x2c_c00342{left:334.133333pt;}
.x128_c00342{left:335.733333pt;}
.x70_c00342{left:336.800000pt;}
.xfd_c00342{left:338.133333pt;}
.x7e_c00342{left:339.866667pt;}
.xcc_c00342{left:340.800000pt;}
.x137_c00342{left:341.733333pt;}
.xaf_c00342{left:343.600000pt;}
.xc0_c00342{left:346.000000pt;}
.x21_c00342{left:348.400000pt;}
.x11a_c00342{left:349.466667pt;}
.xb9_c00342{left:350.533333pt;}
.x88_c00342{left:351.733333pt;}
.x57_c00342{left:354.000000pt;}
.x9d_c00342{left:355.866667pt;}
.x48_c00342{left:357.333333pt;}
.xc7_c00342{left:358.533333pt;}
.xf2_c00342{left:361.200000pt;}
.xe9_c00342{left:362.400000pt;}
.x3c_c00342{left:364.000000pt;}
.x10c_c00342{left:368.933333pt;}
.x89_c00342{left:371.600000pt;}
.xb0_c00342{left:374.933333pt;}
.xe2_c00342{left:376.133333pt;}
.x2d_c00342{left:378.000000pt;}
.x3d_c00342{left:379.066667pt;}
.x58_c00342{left:381.466667pt;}
.xfa_c00342{left:382.533333pt;}
.x49_c00342{left:383.600000pt;}
.x22_c00342{left:385.200000pt;}
.x16_c00342{left:386.800000pt;}
.x105_c00342{left:388.266667pt;}
.xa3_c00342{left:390.400000pt;}
.x67_c00342{left:392.133333pt;}
.x7f_c00342{left:397.733333pt;}
.xd7_c00342{left:398.933333pt;}
.x71_c00342{left:400.800000pt;}
.x3e_c00342{left:401.733333pt;}
.x120_c00342{left:402.800000pt;}
.x8_c00342{left:404.400000pt;}
.x2_c00342{left:407.066667pt;}
.xcd_c00342{left:409.600000pt;}
.x17_c00342{left:410.800000pt;}
.x59_c00342{left:413.200000pt;}
.xee_c00342{left:414.533333pt;}
.x23_c00342{left:417.200000pt;}
.xc1_c00342{left:418.666667pt;}
.x12c_c00342{left:419.600000pt;}
.x68_c00342{left:420.666667pt;}
.x130_c00342{left:422.133333pt;}
.xd8_c00342{left:423.600000pt;}
.x80_c00342{left:425.200000pt;}
.x90_c00342{left:428.666667pt;}
.x106_c00342{left:431.466667pt;}
.x8a_c00342{left:433.066667pt;}
.xe3_c00342{left:436.533333pt;}
.x9_c00342{left:437.733333pt;}
.x4a_c00342{left:439.333333pt;}
.xba_c00342{left:441.466667pt;}
.x5a_c00342{left:442.933333pt;}
.x24_c00342{left:445.733333pt;}
.x129_c00342{left:447.733333pt;}
.x131_c00342{left:449.066667pt;}
.x11b_c00342{left:451.733333pt;}
.x92_c00342{left:452.800000pt;}
.xe4_c00342{left:453.866667pt;}
.xe6_c00342{left:455.866667pt;}
.x69_c00342{left:459.066667pt;}
.xa_c00342{left:462.666667pt;}
.xef_c00342{left:464.400000pt;}
.x18_c00342{left:466.533333pt;}
.x2e_c00342{left:467.866667pt;}
.x9e_c00342{left:469.466667pt;}
.x72_c00342{left:470.533333pt;}
.xb1_c00342{left:472.533333pt;}
.x3f_c00342{left:474.000000pt;}
.xbb_c00342{left:475.733333pt;}
.x5b_c00342{left:477.200000pt;}
.x8b_c00342{left:478.533333pt;}
.xd9_c00342{left:479.600000pt;}
.xc8_c00342{left:480.533333pt;}
.xf5_c00342{left:481.600000pt;}
.x11c_c00342{left:482.800000pt;}
.x2f_c00342{left:483.866667pt;}
.x19_c00342{left:485.733333pt;}
.xfb_c00342{left:489.466667pt;}
.x6a_c00342{left:491.733333pt;}
.xda_c00342{left:494.933333pt;}
.x4b_c00342{left:496.266667pt;}
.xb2_c00342{left:497.866667pt;}
.x10d_c00342{left:498.800000pt;}
.x113_c00342{left:500.933333pt;}
.x5c_c00342{left:504.666667pt;}
.x73_c00342{left:505.733333pt;}
.x1a_c00342{left:508.400000pt;}
.xf6_c00342{left:510.133333pt;}
.xa4_c00342{left:511.600000pt;}
.xdb_c00342{left:513.200000pt;}
.x4c_c00342{left:515.466667pt;}
.xb_c00342{left:516.800000pt;}
.x81_c00342{left:519.600000pt;}
.x8c_c00342{left:521.066667pt;}
.x25_c00342{left:522.533333pt;}
.x138_c00342{left:524.266667pt;}
.x5d_c00342{left:525.466667pt;}
.x114_c00342{left:526.533333pt;}
.xf7_c00342{left:527.466667pt;}
.x40_c00342{left:529.333333pt;}
.x93_c00342{left:530.800000pt;}
.xe7_c00342{left:532.000000pt;}
.x74_c00342{left:533.200000pt;}
.x9f_c00342{left:538.000000pt;}
.xdc_c00342{left:542.000000pt;}
.x121_c00342{left:542.933333pt;}
.x94_c00342{left:544.266667pt;}
.x41_c00342{left:545.333333pt;}
.x26_c00342{left:548.400000pt;}
.x10e_c00342{left:550.666667pt;}
.x12d_c00342{left:552.400000pt;}
.x30_c00342{left:553.333333pt;}
.x4d_c00342{left:555.200000pt;}
.x12a_c00342{left:556.533333pt;}
.x6b_c00342{left:557.600000pt;}
.xf0_c00342{left:561.466667pt;}
.xce_c00342{left:562.666667pt;}
.x82_c00342{left:565.333333pt;}
.xb3_c00342{left:566.400000pt;}
.x75_c00342{left:567.733333pt;}
.x10f_c00342{left:568.933333pt;}
.xc_c00342{left:570.266667pt;}
.x5e_c00342{left:573.466667pt;}
.x101_c00342{left:574.533333pt;}
.x42_c00342{left:575.466667pt;}
.x31_c00342{left:576.666667pt;}
.x95_c00342{left:578.133333pt;}
.x115_c00342{left:579.333333pt;}
.x1b_c00342{left:580.400000pt;}
.xa5_c00342{left:581.733333pt;}
.x83_c00342{left:582.666667pt;}
.xd_c00342{left:584.666667pt;}
.xcf_c00342{left:587.333333pt;}
.x76_c00342{left:588.266667pt;}
.xbc_c00342{left:591.066667pt;}
.x6c_c00342{left:592.533333pt;}
.x102_c00342{left:593.466667pt;}
.x116_c00342{left:595.333333pt;}
.x5f_c00342{left:596.800000pt;}
.xdd_c00342{left:598.933333pt;}
.xa6_c00342{left:600.000000pt;}
.xc2_c00342{left:602.000000pt;}
.x32_c00342{left:603.866667pt;}
.x12b_c00342{left:612.266667pt;}
.xe_c00342{left:613.200000pt;}
.x4e_c00342{left:614.133333pt;}
.xd0_c00342{left:615.466667pt;}
.xfe_c00342{left:617.200000pt;}
.x6d_c00342{left:618.400000pt;}
.xea_c00342{left:621.200000pt;}
.x139_c00342{left:622.266667pt;}
.x96_c00342{left:623.200000pt;}
.x84_c00342{left:625.200000pt;}
.x1c_c00342{left:627.066667pt;}
.xd1_c00342{left:628.933333pt;}
.x126_c00342{left:630.400000pt;}
.x117_c00342{left:632.400000pt;}
.x8d_c00342{left:636.533333pt;}
.xf_c00342{left:638.533333pt;}
.x77_c00342{left:639.466667pt;}
.x85_c00342{left:644.400000pt;}
.xa0_c00342{left:646.133333pt;}
.xde_c00342{left:647.866667pt;}
.x97_c00342{left:649.066667pt;}
.xc3_c00342{left:650.666667pt;}
.x110_c00342{left:653.066667pt;}
.x27_c00342{left:654.266667pt;}
.x33_c00342{left:656.666667pt;}
.x60_c00342{left:658.533333pt;}
.xfc_c00342{left:659.866667pt;}
.x28_c00342{left:663.866667pt;}
.x43_c00342{left:666.000000pt;}
.x132_c00342{left:667.066667pt;}
.x78_c00342{left:669.200000pt;}
.xa7_c00342{left:670.133333pt;}
.x34_c00342{left:672.400000pt;}
.x107_c00342{left:673.866667pt;}
.x4f_c00342{left:674.933333pt;}
.xb4_c00342{left:677.866667pt;}
.x61_c00342{left:680.933333pt;}
.xc4_c00342{left:682.000000pt;}
.xeb_c00342{left:683.600000pt;}
.x44_c00342{left:684.933333pt;}
.x98_c00342{left:688.800000pt;}
.x79_c00342{left:690.266667pt;}
.x35_c00342{left:693.200000pt;}
.x122_c00342{left:694.666667pt;}
.x10_c00342{left:695.866667pt;}
.xc5_c00342{left:697.733333pt;}
.xd2_c00342{left:699.866667pt;}
.x86_c00342{left:702.266667pt;}
.x118_c00342{left:703.200000pt;}
.xb5_c00342{left:706.000000pt;}
.x1d_c00342{left:707.733333pt;}
.xe8_c00342{left:712.666667pt;}
.x50_c00342{left:715.200000pt;}
.x108_c00342{left:718.666667pt;}
.xf3_c00342{left:720.133333pt;}
.x36_c00342{left:721.066667pt;}
.x45_c00342{left:722.400000pt;}
.x62_c00342{left:724.800000pt;}
.xf1_c00342{left:726.266667pt;}
.x11_c00342{left:729.733333pt;}
}





/* 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_c00343 {
    display:none;
  }
  .loading-indicator_c00343.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00343 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_c00343 { 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_c00343" -> "#page-container .classname_c00343")
 */
.pf_c00343 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00343 { /* 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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00343 { /* 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_c00343 { /* 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_c00343 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00343 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00343 {overflow:visible;}
  }
}
.c_c00343 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00343 { /* 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_c00343:after { /* webkit #35443 */
  content: '';
}
.t_c00343:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00343 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 */
}
.__c00343 { /* 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_c00343 { /* info for Javascript */
  display:none;
}
.l_c00343 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00343 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00343 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00343: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_c00343 {
    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_c00343.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00343.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_c00343 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00343{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00343;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.000000;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;}
.m47_c00343{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00343{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00343{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m25_c00343{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m92_c00343{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00343{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m91_c00343{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00343{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m72_c00343{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m51_c00343{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m75_c00343{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00343{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m9_c00343{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7_c00343{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.maa_c00343{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mac_c00343{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00343{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m59_c00343{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00343{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m90_c00343{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m70_c00343{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m23_c00343{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00343{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00343{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00343{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m12_c00343{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m74_c00343{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00343{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m73_c00343{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mc_c00343{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00343{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m62_c00343{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00343{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5_c00343{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m94_c00343{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00343{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00343{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00343{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00343{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00343{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m93_c00343{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m57_c00343{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00343{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mab_c00343{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00343{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma_c00343{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m58_c00343{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m41_c00343{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00343{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m97_c00343{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00343{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m61_c00343{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m46_c00343{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00343{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00343{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf_c00343{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00343{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m42_c00343{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m64_c00343{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00343{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00343{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00343{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00343{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00343{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m6_c00343{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00343{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m32_c00343{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m79_c00343{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m66_c00343{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m33_c00343{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m80_c00343{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m18_c00343{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00343{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m89_c00343{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00343{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00343{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m49_c00343{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00343{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00343{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md_c00343{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m95_c00343{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00343{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb_c00343{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m14_c00343{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00343{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m88_c00343{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m81_c00343{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m17_c00343{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00343{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m11_c00343{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.me_c00343{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00343{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00343{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00343{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00343{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m52_c00343{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m54_c00343{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00343{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00343{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m68_c00343{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00343{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m15_c00343{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00343{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m36_c00343{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m45_c00343{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00343{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m48_c00343{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m30_c00343{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m38_c00343{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m82_c00343{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m27_c00343{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00343{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00343{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m8_c00343{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00343{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m21_c00343{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m28_c00343{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00343{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2_c00343{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00343{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00343{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m37_c00343{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00343{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m16_c00343{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00343{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m55_c00343{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m34_c00343{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00343{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m96_c00343{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m13_c00343{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m78_c00343{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m86_c00343{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m65_c00343{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m50_c00343{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m43_c00343{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00343{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m24_c00343{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m35_c00343{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20_c00343{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m87_c00343{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00343{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00343{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m19_c00343{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00343{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m60_c00343{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00343{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00343{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00343{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00343{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00343{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00343{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m56_c00343{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m84_c00343{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m29_c00343{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00343{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m63_c00343{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m71_c00343{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c00343{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m4_c00343{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00343{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m40_c00343{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00343{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00343{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m77_c00343{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00343{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00343{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m83_c00343{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m98_c00343{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00343{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00343{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mad_c00343{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m76_c00343{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00343{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m99_c00343{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00343{vertical-align:0.000000px;}
.ls0_c00343{letter-spacing:0.000000px;}
.sc__c00343{text-shadow:none;}
.sc0_c00343{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__c00343{-webkit-text-stroke:0px transparent;}
.sc0_c00343{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00343{word-spacing:-11.805556px;}
.wsc_c00343{word-spacing:-10.000000px;}
.ws8_c00343{word-spacing:-6.160714px;}
.ws1_c00343{word-spacing:-4.861111px;}
.wsa_c00343{word-spacing:-3.082707px;}
.wsd_c00343{word-spacing:-0.868421px;}
.wse_c00343{word-spacing:0.000000px;}
.ws9_c00343{word-spacing:0.277778px;}
.ws5_c00343{word-spacing:0.714286px;}
.ws6_c00343{word-spacing:1.363636px;}
.ws2_c00343{word-spacing:1.666667px;}
.ws0_c00343{word-spacing:5.138889px;}
.ws3_c00343{word-spacing:6.315789px;}
.ws4_c00343{word-spacing:6.666667px;}
.ws7_c00343{word-spacing:8.333333px;}
.fc0_c00343{color:transparent;}
.fs1_c00343{font-size:36.000000px;}
.fs0_c00343{font-size:60.000000px;}
.y0_c00343{bottom:0.000000px;}
.y2d_c00343{bottom:136.800000px;}
.y2c_c00343{bottom:155.850000px;}
.y2b_c00343{bottom:194.550000px;}
.y2a_c00343{bottom:214.650000px;}
.y29_c00343{bottom:234.450000px;}
.y28_c00343{bottom:254.550000px;}
.y27_c00343{bottom:274.050000px;}
.y26_c00343{bottom:294.600000px;}
.y25_c00343{bottom:314.400000px;}
.y24_c00343{bottom:334.500000px;}
.y23_c00343{bottom:354.300000px;}
.y22_c00343{bottom:374.100000px;}
.y21_c00343{bottom:393.900000px;}
.y20_c00343{bottom:413.700000px;}
.y1f_c00343{bottom:433.950000px;}
.y1e_c00343{bottom:454.050000px;}
.y1d_c00343{bottom:473.850000px;}
.y1c_c00343{bottom:493.950000px;}
.y1b_c00343{bottom:514.050000px;}
.y1a_c00343{bottom:533.850000px;}
.y19_c00343{bottom:553.950000px;}
.y18_c00343{bottom:573.750000px;}
.y17_c00343{bottom:593.850000px;}
.y16_c00343{bottom:613.650000px;}
.y15_c00343{bottom:633.450000px;}
.y14_c00343{bottom:653.250000px;}
.y13_c00343{bottom:673.350000px;}
.y12_c00343{bottom:693.150000px;}
.y11_c00343{bottom:713.250000px;}
.y10_c00343{bottom:733.350000px;}
.yf_c00343{bottom:753.600000px;}
.ye_c00343{bottom:773.700000px;}
.yd_c00343{bottom:793.500000px;}
.yc_c00343{bottom:813.600000px;}
.yb_c00343{bottom:833.400000px;}
.ya_c00343{bottom:853.200000px;}
.y9_c00343{bottom:873.300000px;}
.y8_c00343{bottom:893.100000px;}
.y7_c00343{bottom:913.200000px;}
.y6_c00343{bottom:933.300000px;}
.y5_c00343{bottom:953.100000px;}
.y4_c00343{bottom:973.200000px;}
.y3_c00343{bottom:993.300000px;}
.y2_c00343{bottom:1013.100000px;}
.y1_c00343{bottom:1050.900000px;}
.h3_c00343{height:36.000000px;}
.h2_c00343{height:60.000000px;}
.h0_c00343{height:1166.759949px;}
.h1_c00343{height:1167.000000px;}
.w1_c00343{width:913.500000px;}
.w0_c00343{width:913.679993px;}
.x0_c00343{left:0.000000px;}
.xa2_c00343{left:97.200000px;}
.x3_c00343{left:98.250000px;}
.x66_c00343{left:117.450000px;}
.x7d_c00343{left:118.650000px;}
.x126_c00343{left:120.600000px;}
.xa8_c00343{left:122.250000px;}
.x113_c00343{left:123.600000px;}
.x13_c00343{left:125.550000px;}
.x3f_c00343{left:127.800000px;}
.x9c_c00343{left:128.850000px;}
.x12f_c00343{left:132.750000px;}
.x93_c00343{left:134.850000px;}
.x7e_c00343{left:136.650000px;}
.xfa_c00343{left:137.850000px;}
.xce_c00343{left:138.900000px;}
.x24_c00343{left:141.300000px;}
.x67_c00343{left:144.450000px;}
.x71_c00343{left:147.450000px;}
.xa3_c00343{left:148.650000px;}
.x10e_c00343{left:150.600000px;}
.x14_c00343{left:152.250000px;}
.x4c_c00343{left:154.350000px;}
.xbb_c00343{left:155.550000px;}
.x5e_c00343{left:157.650000px;}
.x12b_c00343{left:159.150000px;}
.x72_c00343{left:160.800000px;}
.x4_c00343{left:163.350000px;}
.x7f_c00343{left:165.150000px;}
.xa9_c00343{left:168.300000px;}
.x25_c00343{left:169.350000px;}
.xc7_c00343{left:171.150000px;}
.x40_c00343{left:174.600000px;}
.x107_c00343{left:176.550000px;}
.x54_c00343{left:177.750000px;}
.x114_c00343{left:179.100000px;}
.xd9_c00343{left:180.300000px;}
.x88_c00343{left:183.750000px;}
.x32_c00343{left:187.050000px;}
.x9a_c00343{left:189.900000px;}
.x15_c00343{left:192.150000px;}
.xb4_c00343{left:193.650000px;}
.xaa_c00343{left:196.050000px;}
.x68_c00343{left:197.400000px;}
.x108_c00343{left:198.900000px;}
.x26_c00343{left:204.600000px;}
.x137_c00343{left:205.950000px;}
.x73_c00343{left:207.300000px;}
.x9d_c00343{left:208.350000px;}
.x16_c00343{left:210.150000px;}
.xfb_c00343{left:211.650000px;}
.x89_c00343{left:214.350000px;}
.x136_c00343{left:216.150000px;}
.x33_c00343{left:217.350000px;}
.x27_c00343{left:219.750000px;}
.x5_c00343{left:220.950000px;}
.x115_c00343{left:224.100000px;}
.x74_c00343{left:226.350000px;}
.xbc_c00343{left:229.800000px;}
.x11a_c00343{left:232.800000px;}
.xda_c00343{left:234.000000px;}
.x55_c00343{left:235.050000px;}
.xb5_c00343{left:237.900000px;}
.x9e_c00343{left:240.000000px;}
.xe1_c00343{left:244.350000px;}
.xf0_c00343{left:245.550000px;}
.x17_c00343{left:247.650000px;}
.x41_c00343{left:248.700000px;}
.x80_c00343{left:250.800000px;}
.x6_c00343{left:254.100000px;}
.x5f_c00343{left:255.900000px;}
.x75_c00343{left:258.450000px;}
.x28_c00343{left:260.400000px;}
.xab_c00343{left:261.900000px;}
.x130_c00343{left:263.100000px;}
.xdb_c00343{left:264.600000px;}
.x94_c00343{left:266.250000px;}
.x4d_c00343{left:268.500000px;}
.x105_c00343{left:270.450000px;}
.x69_c00343{left:273.000000px;}
.x8a_c00343{left:274.500000px;}
.x127_c00343{left:275.850000px;}
.xd4_c00343{left:277.500000px;}
.xfc_c00343{left:278.550000px;}
.x42_c00343{left:281.100000px;}
.xac_c00343{left:283.200000px;}
.x7_c00343{left:286.800000px;}
.x60_c00343{left:288.600000px;}
.xe7_c00343{left:291.150000px;}
.x76_c00343{left:293.400000px;}
.x95_c00343{left:297.150000px;}
.x34_c00343{left:298.350000px;}
.xb6_c00343{left:300.150000px;}
.xcf_c00343{left:302.850000px;}
.x9b_c00343{left:305.100000px;}
.x56_c00343{left:306.300000px;}
.x18_c00343{left:308.850000px;}
.xe8_c00343{left:310.650000px;}
.xad_c00343{left:312.300000px;}
.x120_c00343{left:313.350000px;}
.x10f_c00343{left:315.750000px;}
.x35_c00343{left:317.100000px;}
.x109_c00343{left:319.200000px;}
.xfd_c00343{left:321.000000px;}
.x19_c00343{left:322.950000px;}
.xc8_c00343{left:324.450000px;}
.x11b_c00343{left:325.650000px;}
.x102_c00343{left:327.150000px;}
.x6a_c00343{left:328.800000px;}
.xbd_c00343{left:331.350000px;}
.x57_c00343{left:333.600000px;}
.xe2_c00343{left:336.600000px;}
.xd0_c00343{left:339.600000px;}
.x11c_c00343{left:342.600000px;}
.x36_c00343{left:344.400000px;}
.x10a_c00343{left:347.250000px;}
.x116_c00343{left:348.300000px;}
.x61_c00343{left:350.550000px;}
.x8_c00343{left:353.100000px;}
.x11d_c00343{left:354.900000px;}
.x9f_c00343{left:355.950000px;}
.x77_c00343{left:358.200000px;}
.xe4_c00343{left:360.000000px;}
.x103_c00343{left:361.350000px;}
.x128_c00343{left:363.750000px;}
.xdc_c00343{left:365.400000px;}
.x1a_c00343{left:366.900000px;}
.x1_c00343{left:368.700000px;}
.xe9_c00343{left:370.800000px;}
.x9_c00343{left:371.850000px;}
.x81_c00343{left:373.050000px;}
.x96_c00343{left:375.900000px;}
.x8b_c00343{left:377.700000px;}
.x110_c00343{left:378.750000px;}
.x12c_c00343{left:380.100000px;}
.x78_c00343{left:383.700000px;}
.x29_c00343{left:385.350000px;}
.x1b_c00343{left:386.400000px;}
.x37_c00343{left:387.900000px;}
.x4e_c00343{left:389.550000px;}
.xbe_c00343{left:390.750000px;}
.x10b_c00343{left:391.950000px;}
.x131_c00343{left:393.300000px;}
.xdd_c00343{left:394.500000px;}
.x62_c00343{left:396.000000px;}
.xfe_c00343{left:398.700000px;}
.x43_c00343{left:401.700000px;}
.xa_c00343{left:404.550000px;}
.x2a_c00343{left:405.900000px;}
.x58_c00343{left:407.100000px;}
.x8c_c00343{left:408.300000px;}
.xbf_c00343{left:410.850000px;}
.xf1_c00343{left:411.900000px;}
.x104_c00343{left:413.550000px;}
.x1c_c00343{left:415.200000px;}
.xae_c00343{left:416.400000px;}
.xc9_c00343{left:420.600000px;}
.xb7_c00343{left:422.250000px;}
.x138_c00343{left:423.600000px;}
.x97_c00343{left:426.600000px;}
.xde_c00343{left:427.650000px;}
.x38_c00343{left:430.800000px;}
.x4f_c00343{left:432.000000px;}
.xa0_c00343{left:433.350000px;}
.x2b_c00343{left:436.200000px;}
.xaf_c00343{left:438.300000px;}
.xe5_c00343{left:440.400000px;}
.xd5_c00343{left:441.450000px;}
.x1d_c00343{left:444.750000px;}
.x6b_c00343{left:446.550000px;}
.x44_c00343{left:449.550000px;}
.x117_c00343{left:450.600000px;}
.xdf_c00343{left:452.850000px;}
.xea_c00343{left:454.800000px;}
.x11e_c00343{left:456.450000px;}
.xa1_c00343{left:458.250000px;}
.x1e_c00343{left:462.750000px;}
.x50_c00343{left:464.100000px;}
.xb_c00343{left:466.500000px;}
.xc0_c00343{left:468.750000px;}
.x121_c00343{left:470.550000px;}
.x79_c00343{left:471.900000px;}
.x59_c00343{left:476.250000px;}
.x39_c00343{left:478.350000px;}
.xe3_c00343{left:479.400000px;}
.x8d_c00343{left:481.800000px;}
.x6c_c00343{left:484.350000px;}
.x1f_c00343{left:485.400000px;}
.xeb_c00343{left:490.500000px;}
.xc_c00343{left:496.050000px;}
.xd6_c00343{left:498.300000px;}
.xf5_c00343{left:500.550000px;}
.x3a_c00343{left:501.750000px;}
.xd1_c00343{left:502.950000px;}
.xc1_c00343{left:504.000000px;}
.xb0_c00343{left:507.450000px;}
.xff_c00343{left:509.850000px;}
.x82_c00343{left:511.650000px;}
.x2c_c00343{left:513.600000px;}
.xca_c00343{left:515.400000px;}
.xd_c00343{left:516.600000px;}
.x118_c00343{left:518.550000px;}
.x8e_c00343{left:520.350000px;}
.x132_c00343{left:521.850000px;}
.x63_c00343{left:523.500000px;}
.x122_c00343{left:531.750000px;}
.x5a_c00343{left:535.350000px;}
.x45_c00343{left:539.850000px;}
.xb1_c00343{left:540.900000px;}
.xe_c00343{left:542.100000px;}
.xa4_c00343{left:543.750000px;}
.x3b_c00343{left:544.950000px;}
.x51_c00343{left:547.650000px;}
.x133_c00343{left:549.150000px;}
.x123_c00343{left:550.500000px;}
.x7a_c00343{left:551.850000px;}
.xec_c00343{left:553.500000px;}
.x8f_c00343{left:554.550000px;}
.x83_c00343{left:556.950000px;}
.xc2_c00343{left:559.500000px;}
.x20_c00343{left:560.700000px;}
.x10c_c00343{left:562.200000px;}
.x2d_c00343{left:563.700000px;}
.x12d_c00343{left:565.800000px;}
.x46_c00343{left:567.600000px;}
.xf6_c00343{left:568.950000px;}
.xf_c00343{left:570.600000px;}
.x90_c00343{left:571.800000px;}
.x106_c00343{left:573.900000px;}
.xb8_c00343{left:575.250000px;}
.xc3_c00343{left:581.400000px;}
.x64_c00343{left:582.900000px;}
.x111_c00343{left:585.750000px;}
.x139_c00343{left:590.700000px;}
.x84_c00343{left:592.650000px;}
.x134_c00343{left:593.850000px;}
.x3c_c00343{left:595.350000px;}
.x21_c00343{left:597.450000px;}
.xe6_c00343{left:599.550000px;}
.xf2_c00343{left:602.100000px;}
.x10_c00343{left:603.750000px;}
.x2e_c00343{left:607.200000px;}
.x6d_c00343{left:609.300000px;}
.xa5_c00343{left:611.850000px;}
.x12e_c00343{left:613.050000px;}
.xe0_c00343{left:614.850000px;}
.x47_c00343{left:616.500000px;}
.xb9_c00343{left:617.700000px;}
.x5b_c00343{left:620.700000px;}
.x2f_c00343{left:622.350000px;}
.xf7_c00343{left:624.750000px;}
.xc4_c00343{left:627.150000px;}
.x65_c00343{left:628.950000px;}
.x11_c00343{left:630.750000px;}
.xcb_c00343{left:632.850000px;}
.x48_c00343{left:637.050000px;}
.xd2_c00343{left:640.200000px;}
.xa6_c00343{left:643.200000px;}
.xf3_c00343{left:645.000000px;}
.x22_c00343{left:646.800000px;}
.x85_c00343{left:648.450000px;}
.xed_c00343{left:649.950000px;}
.x13a_c00343{left:651.150000px;}
.xcc_c00343{left:652.950000px;}
.x7b_c00343{left:654.000000px;}
.x129_c00343{left:656.850000px;}
.x6e_c00343{left:658.950000px;}
.x100_c00343{left:661.050000px;}
.xb2_c00343{left:663.000000px;}
.x49_c00343{left:665.100000px;}
.xd7_c00343{left:666.300000px;}
.x3d_c00343{left:667.350000px;}
.x112_c00343{left:669.300000px;}
.x91_c00343{left:670.500000px;}
.x10d_c00343{left:672.750000px;}
.x6f_c00343{left:674.850000px;}
.x23_c00343{left:675.900000px;}
.x7c_c00343{left:677.100000px;}
.x5c_c00343{left:680.400000px;}
.x13b_c00343{left:681.900000px;}
.x124_c00343{left:685.800000px;}
.x30_c00343{left:687.150000px;}
.xb3_c00343{left:691.500000px;}
.xcd_c00343{left:692.550000px;}
.x101_c00343{left:694.500000px;}
.x52_c00343{left:696.000000px;}
.xd8_c00343{left:697.950000px;}
.xf4_c00343{left:699.000000px;}
.x135_c00343{left:700.800000px;}
.x11f_c00343{left:702.750000px;}
.xc5_c00343{left:705.000000px;}
.x12_c00343{left:707.400000px;}
.x86_c00343{left:708.900000px;}
.xf8_c00343{left:711.600000px;}
.x5d_c00343{left:713.850000px;}
.xee_c00343{left:716.250000px;}
.x119_c00343{left:718.050000px;}
.xba_c00343{left:720.300000px;}
.x4a_c00343{left:721.650000px;}
.xc6_c00343{left:722.700000px;}
.xf9_c00343{left:723.900000px;}
.x98_c00343{left:724.950000px;}
.x12a_c00343{left:726.000000px;}
.x70_c00343{left:727.050000px;}
.x87_c00343{left:731.250000px;}
.xd3_c00343{left:732.600000px;}
.x3e_c00343{left:735.450000px;}
.x2_c00343{left:737.700000px;}
.x99_c00343{left:739.650000px;}
.x92_c00343{left:741.750000px;}
.xef_c00343{left:742.950000px;}
.x4b_c00343{left:744.000000px;}
.xa7_c00343{left:746.550000px;}
.x31_c00343{left:751.200000px;}
.x53_c00343{left:752.550000px;}
.x125_c00343{left:761.700000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.wsb_c00343{word-spacing:-10.493827pt;}
.wsc_c00343{word-spacing:-8.888889pt;}
.ws8_c00343{word-spacing:-5.476190pt;}
.ws1_c00343{word-spacing:-4.320988pt;}
.wsa_c00343{word-spacing:-2.740184pt;}
.wsd_c00343{word-spacing:-0.771930pt;}
.wse_c00343{word-spacing:0.000000pt;}
.ws9_c00343{word-spacing:0.246914pt;}
.ws5_c00343{word-spacing:0.634921pt;}
.ws6_c00343{word-spacing:1.212121pt;}
.ws2_c00343{word-spacing:1.481481pt;}
.ws0_c00343{word-spacing:4.567901pt;}
.ws3_c00343{word-spacing:5.614035pt;}
.ws4_c00343{word-spacing:5.925926pt;}
.ws7_c00343{word-spacing:7.407407pt;}
.fs1_c00343{font-size:32.000000pt;}
.fs0_c00343{font-size:53.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y2d_c00343{bottom:121.600000pt;}
.y2c_c00343{bottom:138.533333pt;}
.y2b_c00343{bottom:172.933333pt;}
.y2a_c00343{bottom:190.800000pt;}
.y29_c00343{bottom:208.400000pt;}
.y28_c00343{bottom:226.266667pt;}
.y27_c00343{bottom:243.600000pt;}
.y26_c00343{bottom:261.866667pt;}
.y25_c00343{bottom:279.466667pt;}
.y24_c00343{bottom:297.333333pt;}
.y23_c00343{bottom:314.933333pt;}
.y22_c00343{bottom:332.533333pt;}
.y21_c00343{bottom:350.133333pt;}
.y20_c00343{bottom:367.733333pt;}
.y1f_c00343{bottom:385.733333pt;}
.y1e_c00343{bottom:403.600000pt;}
.y1d_c00343{bottom:421.200000pt;}
.y1c_c00343{bottom:439.066667pt;}
.y1b_c00343{bottom:456.933333pt;}
.y1a_c00343{bottom:474.533333pt;}
.y19_c00343{bottom:492.400000pt;}
.y18_c00343{bottom:510.000000pt;}
.y17_c00343{bottom:527.866667pt;}
.y16_c00343{bottom:545.466667pt;}
.y15_c00343{bottom:563.066667pt;}
.y14_c00343{bottom:580.666667pt;}
.y13_c00343{bottom:598.533333pt;}
.y12_c00343{bottom:616.133333pt;}
.y11_c00343{bottom:634.000000pt;}
.y10_c00343{bottom:651.866667pt;}
.yf_c00343{bottom:669.866667pt;}
.ye_c00343{bottom:687.733333pt;}
.yd_c00343{bottom:705.333333pt;}
.yc_c00343{bottom:723.200000pt;}
.yb_c00343{bottom:740.800000pt;}
.ya_c00343{bottom:758.400000pt;}
.y9_c00343{bottom:776.266667pt;}
.y8_c00343{bottom:793.866667pt;}
.y7_c00343{bottom:811.733333pt;}
.y6_c00343{bottom:829.600000pt;}
.y5_c00343{bottom:847.200000pt;}
.y4_c00343{bottom:865.066667pt;}
.y3_c00343{bottom:882.933333pt;}
.y2_c00343{bottom:900.533333pt;}
.y1_c00343{bottom:934.133333pt;}
.h3_c00343{height:32.000000pt;}
.h2_c00343{height:53.333333pt;}
.h0_c00343{height:1037.119955pt;}
.h1_c00343{height:1037.333333pt;}
.w1_c00343{width:812.000000pt;}
.w0_c00343{width:812.159993pt;}
.x0_c00343{left:0.000000pt;}
.xa2_c00343{left:86.400000pt;}
.x3_c00343{left:87.333333pt;}
.x66_c00343{left:104.400000pt;}
.x7d_c00343{left:105.466667pt;}
.x126_c00343{left:107.200000pt;}
.xa8_c00343{left:108.666667pt;}
.x113_c00343{left:109.866667pt;}
.x13_c00343{left:111.600000pt;}
.x3f_c00343{left:113.600000pt;}
.x9c_c00343{left:114.533333pt;}
.x12f_c00343{left:118.000000pt;}
.x93_c00343{left:119.866667pt;}
.x7e_c00343{left:121.466667pt;}
.xfa_c00343{left:122.533333pt;}
.xce_c00343{left:123.466667pt;}
.x24_c00343{left:125.600000pt;}
.x67_c00343{left:128.400000pt;}
.x71_c00343{left:131.066667pt;}
.xa3_c00343{left:132.133333pt;}
.x10e_c00343{left:133.866667pt;}
.x14_c00343{left:135.333333pt;}
.x4c_c00343{left:137.200000pt;}
.xbb_c00343{left:138.266667pt;}
.x5e_c00343{left:140.133333pt;}
.x12b_c00343{left:141.466667pt;}
.x72_c00343{left:142.933333pt;}
.x4_c00343{left:145.200000pt;}
.x7f_c00343{left:146.800000pt;}
.xa9_c00343{left:149.600000pt;}
.x25_c00343{left:150.533333pt;}
.xc7_c00343{left:152.133333pt;}
.x40_c00343{left:155.200000pt;}
.x107_c00343{left:156.933333pt;}
.x54_c00343{left:158.000000pt;}
.x114_c00343{left:159.200000pt;}
.xd9_c00343{left:160.266667pt;}
.x88_c00343{left:163.333333pt;}
.x32_c00343{left:166.266667pt;}
.x9a_c00343{left:168.800000pt;}
.x15_c00343{left:170.800000pt;}
.xb4_c00343{left:172.133333pt;}
.xaa_c00343{left:174.266667pt;}
.x68_c00343{left:175.466667pt;}
.x108_c00343{left:176.800000pt;}
.x26_c00343{left:181.866667pt;}
.x137_c00343{left:183.066667pt;}
.x73_c00343{left:184.266667pt;}
.x9d_c00343{left:185.200000pt;}
.x16_c00343{left:186.800000pt;}
.xfb_c00343{left:188.133333pt;}
.x89_c00343{left:190.533333pt;}
.x136_c00343{left:192.133333pt;}
.x33_c00343{left:193.200000pt;}
.x27_c00343{left:195.333333pt;}
.x5_c00343{left:196.400000pt;}
.x115_c00343{left:199.200000pt;}
.x74_c00343{left:201.200000pt;}
.xbc_c00343{left:204.266667pt;}
.x11a_c00343{left:206.933333pt;}
.xda_c00343{left:208.000000pt;}
.x55_c00343{left:208.933333pt;}
.xb5_c00343{left:211.466667pt;}
.x9e_c00343{left:213.333333pt;}
.xe1_c00343{left:217.200000pt;}
.xf0_c00343{left:218.266667pt;}
.x17_c00343{left:220.133333pt;}
.x41_c00343{left:221.066667pt;}
.x80_c00343{left:222.933333pt;}
.x6_c00343{left:225.866667pt;}
.x5f_c00343{left:227.466667pt;}
.x75_c00343{left:229.733333pt;}
.x28_c00343{left:231.466667pt;}
.xab_c00343{left:232.800000pt;}
.x130_c00343{left:233.866667pt;}
.xdb_c00343{left:235.200000pt;}
.x94_c00343{left:236.666667pt;}
.x4d_c00343{left:238.666667pt;}
.x105_c00343{left:240.400000pt;}
.x69_c00343{left:242.666667pt;}
.x8a_c00343{left:244.000000pt;}
.x127_c00343{left:245.200000pt;}
.xd4_c00343{left:246.666667pt;}
.xfc_c00343{left:247.600000pt;}
.x42_c00343{left:249.866667pt;}
.xac_c00343{left:251.733333pt;}
.x7_c00343{left:254.933333pt;}
.x60_c00343{left:256.533333pt;}
.xe7_c00343{left:258.800000pt;}
.x76_c00343{left:260.800000pt;}
.x95_c00343{left:264.133333pt;}
.x34_c00343{left:265.200000pt;}
.xb6_c00343{left:266.800000pt;}
.xcf_c00343{left:269.200000pt;}
.x9b_c00343{left:271.200000pt;}
.x56_c00343{left:272.266667pt;}
.x18_c00343{left:274.533333pt;}
.xe8_c00343{left:276.133333pt;}
.xad_c00343{left:277.600000pt;}
.x120_c00343{left:278.533333pt;}
.x10f_c00343{left:280.666667pt;}
.x35_c00343{left:281.866667pt;}
.x109_c00343{left:283.733333pt;}
.xfd_c00343{left:285.333333pt;}
.x19_c00343{left:287.066667pt;}
.xc8_c00343{left:288.400000pt;}
.x11b_c00343{left:289.466667pt;}
.x102_c00343{left:290.800000pt;}
.x6a_c00343{left:292.266667pt;}
.xbd_c00343{left:294.533333pt;}
.x57_c00343{left:296.533333pt;}
.xe2_c00343{left:299.200000pt;}
.xd0_c00343{left:301.866667pt;}
.x11c_c00343{left:304.533333pt;}
.x36_c00343{left:306.133333pt;}
.x10a_c00343{left:308.666667pt;}
.x116_c00343{left:309.600000pt;}
.x61_c00343{left:311.600000pt;}
.x8_c00343{left:313.866667pt;}
.x11d_c00343{left:315.466667pt;}
.x9f_c00343{left:316.400000pt;}
.x77_c00343{left:318.400000pt;}
.xe4_c00343{left:320.000000pt;}
.x103_c00343{left:321.200000pt;}
.x128_c00343{left:323.333333pt;}
.xdc_c00343{left:324.800000pt;}
.x1a_c00343{left:326.133333pt;}
.x1_c00343{left:327.733333pt;}
.xe9_c00343{left:329.600000pt;}
.x9_c00343{left:330.533333pt;}
.x81_c00343{left:331.600000pt;}
.x96_c00343{left:334.133333pt;}
.x8b_c00343{left:335.733333pt;}
.x110_c00343{left:336.666667pt;}
.x12c_c00343{left:337.866667pt;}
.x78_c00343{left:341.066667pt;}
.x29_c00343{left:342.533333pt;}
.x1b_c00343{left:343.466667pt;}
.x37_c00343{left:344.800000pt;}
.x4e_c00343{left:346.266667pt;}
.xbe_c00343{left:347.333333pt;}
.x10b_c00343{left:348.400000pt;}
.x131_c00343{left:349.600000pt;}
.xdd_c00343{left:350.666667pt;}
.x62_c00343{left:352.000000pt;}
.xfe_c00343{left:354.400000pt;}
.x43_c00343{left:357.066667pt;}
.xa_c00343{left:359.600000pt;}
.x2a_c00343{left:360.800000pt;}
.x58_c00343{left:361.866667pt;}
.x8c_c00343{left:362.933333pt;}
.xbf_c00343{left:365.200000pt;}
.xf1_c00343{left:366.133333pt;}
.x104_c00343{left:367.600000pt;}
.x1c_c00343{left:369.066667pt;}
.xae_c00343{left:370.133333pt;}
.xc9_c00343{left:373.866667pt;}
.xb7_c00343{left:375.333333pt;}
.x138_c00343{left:376.533333pt;}
.x97_c00343{left:379.200000pt;}
.xde_c00343{left:380.133333pt;}
.x38_c00343{left:382.933333pt;}
.x4f_c00343{left:384.000000pt;}
.xa0_c00343{left:385.200000pt;}
.x2b_c00343{left:387.733333pt;}
.xaf_c00343{left:389.600000pt;}
.xe5_c00343{left:391.466667pt;}
.xd5_c00343{left:392.400000pt;}
.x1d_c00343{left:395.333333pt;}
.x6b_c00343{left:396.933333pt;}
.x44_c00343{left:399.600000pt;}
.x117_c00343{left:400.533333pt;}
.xdf_c00343{left:402.533333pt;}
.xea_c00343{left:404.266667pt;}
.x11e_c00343{left:405.733333pt;}
.xa1_c00343{left:407.333333pt;}
.x1e_c00343{left:411.333333pt;}
.x50_c00343{left:412.533333pt;}
.xb_c00343{left:414.666667pt;}
.xc0_c00343{left:416.666667pt;}
.x121_c00343{left:418.266667pt;}
.x79_c00343{left:419.466667pt;}
.x59_c00343{left:423.333333pt;}
.x39_c00343{left:425.200000pt;}
.xe3_c00343{left:426.133333pt;}
.x8d_c00343{left:428.266667pt;}
.x6c_c00343{left:430.533333pt;}
.x1f_c00343{left:431.466667pt;}
.xeb_c00343{left:436.000000pt;}
.xc_c00343{left:440.933333pt;}
.xd6_c00343{left:442.933333pt;}
.xf5_c00343{left:444.933333pt;}
.x3a_c00343{left:446.000000pt;}
.xd1_c00343{left:447.066667pt;}
.xc1_c00343{left:448.000000pt;}
.xb0_c00343{left:451.066667pt;}
.xff_c00343{left:453.200000pt;}
.x82_c00343{left:454.800000pt;}
.x2c_c00343{left:456.533333pt;}
.xca_c00343{left:458.133333pt;}
.xd_c00343{left:459.200000pt;}
.x118_c00343{left:460.933333pt;}
.x8e_c00343{left:462.533333pt;}
.x132_c00343{left:463.866667pt;}
.x63_c00343{left:465.333333pt;}
.x122_c00343{left:472.666667pt;}
.x5a_c00343{left:475.866667pt;}
.x45_c00343{left:479.866667pt;}
.xb1_c00343{left:480.800000pt;}
.xe_c00343{left:481.866667pt;}
.xa4_c00343{left:483.333333pt;}
.x3b_c00343{left:484.400000pt;}
.x51_c00343{left:486.800000pt;}
.x133_c00343{left:488.133333pt;}
.x123_c00343{left:489.333333pt;}
.x7a_c00343{left:490.533333pt;}
.xec_c00343{left:492.000000pt;}
.x8f_c00343{left:492.933333pt;}
.x83_c00343{left:495.066667pt;}
.xc2_c00343{left:497.333333pt;}
.x20_c00343{left:498.400000pt;}
.x10c_c00343{left:499.733333pt;}
.x2d_c00343{left:501.066667pt;}
.x12d_c00343{left:502.933333pt;}
.x46_c00343{left:504.533333pt;}
.xf6_c00343{left:505.733333pt;}
.xf_c00343{left:507.200000pt;}
.x90_c00343{left:508.266667pt;}
.x106_c00343{left:510.133333pt;}
.xb8_c00343{left:511.333333pt;}
.xc3_c00343{left:516.800000pt;}
.x64_c00343{left:518.133333pt;}
.x111_c00343{left:520.666667pt;}
.x139_c00343{left:525.066667pt;}
.x84_c00343{left:526.800000pt;}
.x134_c00343{left:527.866667pt;}
.x3c_c00343{left:529.200000pt;}
.x21_c00343{left:531.066667pt;}
.xe6_c00343{left:532.933333pt;}
.xf2_c00343{left:535.200000pt;}
.x10_c00343{left:536.666667pt;}
.x2e_c00343{left:539.733333pt;}
.x6d_c00343{left:541.600000pt;}
.xa5_c00343{left:543.866667pt;}
.x12e_c00343{left:544.933333pt;}
.xe0_c00343{left:546.533333pt;}
.x47_c00343{left:548.000000pt;}
.xb9_c00343{left:549.066667pt;}
.x5b_c00343{left:551.733333pt;}
.x2f_c00343{left:553.200000pt;}
.xf7_c00343{left:555.333333pt;}
.xc4_c00343{left:557.466667pt;}
.x65_c00343{left:559.066667pt;}
.x11_c00343{left:560.666667pt;}
.xcb_c00343{left:562.533333pt;}
.x48_c00343{left:566.266667pt;}
.xd2_c00343{left:569.066667pt;}
.xa6_c00343{left:571.733333pt;}
.xf3_c00343{left:573.333333pt;}
.x22_c00343{left:574.933333pt;}
.x85_c00343{left:576.400000pt;}
.xed_c00343{left:577.733333pt;}
.x13a_c00343{left:578.800000pt;}
.xcc_c00343{left:580.400000pt;}
.x7b_c00343{left:581.333333pt;}
.x129_c00343{left:583.866667pt;}
.x6e_c00343{left:585.733333pt;}
.x100_c00343{left:587.600000pt;}
.xb2_c00343{left:589.333333pt;}
.x49_c00343{left:591.200000pt;}
.xd7_c00343{left:592.266667pt;}
.x3d_c00343{left:593.200000pt;}
.x112_c00343{left:594.933333pt;}
.x91_c00343{left:596.000000pt;}
.x10d_c00343{left:598.000000pt;}
.x6f_c00343{left:599.866667pt;}
.x23_c00343{left:600.800000pt;}
.x7c_c00343{left:601.866667pt;}
.x5c_c00343{left:604.800000pt;}
.x13b_c00343{left:606.133333pt;}
.x124_c00343{left:609.600000pt;}
.x30_c00343{left:610.800000pt;}
.xb3_c00343{left:614.666667pt;}
.xcd_c00343{left:615.600000pt;}
.x101_c00343{left:617.333333pt;}
.x52_c00343{left:618.666667pt;}
.xd8_c00343{left:620.400000pt;}
.xf4_c00343{left:621.333333pt;}
.x135_c00343{left:622.933333pt;}
.x11f_c00343{left:624.666667pt;}
.xc5_c00343{left:626.666667pt;}
.x12_c00343{left:628.800000pt;}
.x86_c00343{left:630.133333pt;}
.xf8_c00343{left:632.533333pt;}
.x5d_c00343{left:634.533333pt;}
.xee_c00343{left:636.666667pt;}
.x119_c00343{left:638.266667pt;}
.xba_c00343{left:640.266667pt;}
.x4a_c00343{left:641.466667pt;}
.xc6_c00343{left:642.400000pt;}
.xf9_c00343{left:643.466667pt;}
.x98_c00343{left:644.400000pt;}
.x12a_c00343{left:645.333333pt;}
.x70_c00343{left:646.266667pt;}
.x87_c00343{left:650.000000pt;}
.xd3_c00343{left:651.200000pt;}
.x3e_c00343{left:653.733333pt;}
.x2_c00343{left:655.733333pt;}
.x99_c00343{left:657.466667pt;}
.x92_c00343{left:659.333333pt;}
.xef_c00343{left:660.400000pt;}
.x4b_c00343{left:661.333333pt;}
.xa7_c00343{left:663.600000pt;}
.x31_c00343{left:667.733333pt;}
.x53_c00343{left:668.933333pt;}
.x125_c00343{left:677.066667pt;}
}





/* 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_c00344 {
    display:none;
  }
  .loading-indicator_c00344.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00344 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_c00344 { 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_c00344" -> "#page-container .classname_c00344")
 */
.pf_c00344 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00344 { /* 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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00344 { /* 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_c00344 { /* 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_c00344 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00344 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00344 {overflow:visible;}
  }
}
.c_c00344 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00344 { /* 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_c00344:after { /* webkit #35443 */
  content: '';
}
.t_c00344:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00344 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 */
}
.__c00344 { /* 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_c00344 { /* info for Javascript */
  display:none;
}
.l_c00344 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00344 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00344 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00344: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_c00344 {
    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_c00344.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00344.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_c00344 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00344{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00344;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.000000;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;}
.m27_c00344{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m81_c00344{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00344{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m44_c00344{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m15_c00344{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00344{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m30_c00344{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00344{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00344{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00344{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m48_c00344{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00344{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00344{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00344{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m90_c00344{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m16_c00344{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m50_c00344{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m95_c00344{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00344{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m84_c00344{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00344{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m78_c00344{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00344{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m92_c00344{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00344{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m76_c00344{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m23_c00344{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m32_c00344{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m99_c00344{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m88_c00344{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00344{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00344{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m45_c00344{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00344{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m17_c00344{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m72_c00344{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m80_c00344{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00344{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00344{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00344{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m43_c00344{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m11_c00344{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00344{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m65_c00344{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00344{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m51_c00344{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m74_c00344{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m67_c00344{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m59_c00344{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m71_c00344{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00344{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00344{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m29_c00344{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00344{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m12_c00344{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00344{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m47_c00344{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00344{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.mc_c00344{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m20_c00344{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m34_c00344{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00344{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m79_c00344{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb_c00344{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00344{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00344{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00344{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m28_c00344{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m41_c00344{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00344{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m56_c00344{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m22_c00344{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00344{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00344{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00344{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m25_c00344{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9_c00344{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00344{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m35_c00344{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00344{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m24_c00344{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m42_c00344{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m98_c00344{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m58_c00344{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m89_c00344{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00344{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m33_c00344{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00344{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00344{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m83_c00344{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00344{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m60_c00344{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m55_c00344{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mf_c00344{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00344{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me_c00344{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m66_c00344{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00344{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m87_c00344{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00344{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00344{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00344{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00344{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00344{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m36_c00344{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00344{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00344{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m96_c00344{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m0_c00344{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00344{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00344{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00344{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00344{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00344{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m68_c00344{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00344{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m94_c00344{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m63_c00344{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00344{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m31_c00344{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md_c00344{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m37_c00344{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00344{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m82_c00344{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m52_c00344{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00344{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m75_c00344{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00344{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m10_c00344{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00344{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);}
.m26_c00344{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m91_c00344{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00344{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m85_c00344{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13_c00344{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00344{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m54_c00344{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00344{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00344{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m39_c00344{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m53_c00344{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m19_c00344{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00344{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m7_c00344{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m62_c00344{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m93_c00344{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m38_c00344{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00344{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m73_c00344{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m14_c00344{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m8_c00344{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00344{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00344{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m46_c00344{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00344{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m57_c00344{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m49_c00344{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m69_c00344{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m70_c00344{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00344{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00344{vertical-align:0.000000px;}
.ls0_c00344{letter-spacing:0.000000px;}
.sc__c00344{text-shadow:none;}
.sc0_c00344{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__c00344{-webkit-text-stroke:0px transparent;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00344{word-spacing:-10.138889px;}
.ws2_c00344{word-spacing:-6.250000px;}
.ws6_c00344{word-spacing:-5.138889px;}
.ws3_c00344{word-spacing:-4.868421px;}
.ws8_c00344{word-spacing:0.000000px;}
.ws5_c00344{word-spacing:1.171875px;}
.wsb_c00344{word-spacing:3.055556px;}
.ws9_c00344{word-spacing:6.315789px;}
.ws4_c00344{word-spacing:7.058824px;}
.ws0_c00344{word-spacing:7.500000px;}
.ws1_c00344{word-spacing:13.194444px;}
.wsa_c00344{word-spacing:21.470588px;}
.fc0_c00344{color:transparent;}
.fs0_c00344{font-size:54.000000px;}
.fs1_c00344{font-size:60.000000px;}
.y0_c00344{bottom:0.000000px;}
.y2c_c00344{bottom:152.850000px;}
.y2b_c00344{bottom:172.650000px;}
.y2a_c00344{bottom:192.750000px;}
.y29_c00344{bottom:212.550000px;}
.y28_c00344{bottom:232.650000px;}
.y27_c00344{bottom:252.750000px;}
.y26_c00344{bottom:272.550000px;}
.y25_c00344{bottom:292.350000px;}
.y24_c00344{bottom:311.550000px;}
.y23_c00344{bottom:332.100000px;}
.y22_c00344{bottom:351.900000px;}
.y21_c00344{bottom:371.700000px;}
.y20_c00344{bottom:391.500000px;}
.y1f_c00344{bottom:411.600000px;}
.y1e_c00344{bottom:431.400000px;}
.y1d_c00344{bottom:451.500000px;}
.y1c_c00344{bottom:471.600000px;}
.y1b_c00344{bottom:491.700000px;}
.y1a_c00344{bottom:511.500000px;}
.y19_c00344{bottom:531.000000px;}
.y18_c00344{bottom:551.100000px;}
.y17_c00344{bottom:570.900000px;}
.y16_c00344{bottom:590.700000px;}
.y15_c00344{bottom:631.200000px;}
.y14_c00344{bottom:651.000000px;}
.y13_c00344{bottom:671.100000px;}
.y12_c00344{bottom:690.900000px;}
.y11_c00344{bottom:711.000000px;}
.y10_c00344{bottom:730.800000px;}
.yf_c00344{bottom:751.200000px;}
.ye_c00344{bottom:771.000000px;}
.yd_c00344{bottom:791.100000px;}
.yc_c00344{bottom:811.200000px;}
.yb_c00344{bottom:831.000000px;}
.ya_c00344{bottom:851.100000px;}
.y9_c00344{bottom:871.200000px;}
.y8_c00344{bottom:891.300000px;}
.y7_c00344{bottom:911.400000px;}
.y6_c00344{bottom:931.200000px;}
.y5_c00344{bottom:951.000000px;}
.y4_c00344{bottom:970.800000px;}
.y3_c00344{bottom:990.600000px;}
.y2_c00344{bottom:1010.100000px;}
.y1_c00344{bottom:1049.400000px;}
.h2_c00344{height:54.000000px;}
.h3_c00344{height:60.000000px;}
.h0_c00344{height:1166.759949px;}
.h1_c00344{height:1167.000000px;}
.w1_c00344{width:913.500000px;}
.w0_c00344{width:913.679993px;}
.x0_c00344{left:0.000000px;}
.x100_c00344{left:152.700000px;}
.x69_c00344{left:154.050000px;}
.x1_c00344{left:155.550000px;}
.xa7_c00344{left:171.900000px;}
.xc8_c00344{left:173.700000px;}
.xe7_c00344{left:174.750000px;}
.x137_c00344{left:177.000000px;}
.x76_c00344{left:179.850000px;}
.x119_c00344{left:183.900000px;}
.x106_c00344{left:185.100000px;}
.x3_c00344{left:186.150000px;}
.x112_c00344{left:188.100000px;}
.x22_c00344{left:189.900000px;}
.xe1_c00344{left:191.250000px;}
.x11_c00344{left:194.550000px;}
.x12e_c00344{left:196.950000px;}
.xf9_c00344{left:198.750000px;}
.x101_c00344{left:199.800000px;}
.x8c_c00344{left:201.300000px;}
.xf1_c00344{left:203.100000px;}
.x4_c00344{left:206.250000px;}
.x138_c00344{left:207.300000px;}
.x31_c00344{left:208.800000px;}
.x48_c00344{left:210.150000px;}
.xc2_c00344{left:211.350000px;}
.x125_c00344{left:214.500000px;}
.x93_c00344{left:216.750000px;}
.xf2_c00344{left:220.050000px;}
.x3e_c00344{left:221.400000px;}
.x77_c00344{left:223.800000px;}
.x52_c00344{left:225.900000px;}
.xb3_c00344{left:229.350000px;}
.x12_c00344{left:234.450000px;}
.x114_c00344{left:237.300000px;}
.x6a_c00344{left:239.400000px;}
.x3f_c00344{left:243.750000px;}
.x5e_c00344{left:245.700000px;}
.x5_c00344{left:248.400000px;}
.x23_c00344{left:251.850000px;}
.x32_c00344{left:254.550000px;}
.xce_c00344{left:256.500000px;}
.xe8_c00344{left:259.350000px;}
.x107_c00344{left:260.700000px;}
.xd5_c00344{left:261.900000px;}
.x40_c00344{left:263.850000px;}
.x53_c00344{left:268.050000px;}
.xbc_c00344{left:269.700000px;}
.x9c_c00344{left:271.200000px;}
.x102_c00344{left:273.300000px;}
.x94_c00344{left:275.100000px;}
.x11f_c00344{left:277.650000px;}
.xe9_c00344{left:279.450000px;}
.x13_c00344{left:280.500000px;}
.xa8_c00344{left:282.450000px;}
.x24_c00344{left:286.050000px;}
.x9d_c00344{left:288.450000px;}
.x33_c00344{left:290.250000px;}
.x6_c00344{left:293.100000px;}
.x49_c00344{left:295.050000px;}
.x12f_c00344{left:296.550000px;}
.xe2_c00344{left:298.500000px;}
.x6b_c00344{left:300.900000px;}
.x103_c00344{left:302.100000px;}
.x83_c00344{left:305.400000px;}
.x10c_c00344{left:307.500000px;}
.x12b_c00344{left:309.300000px;}
.x41_c00344{left:310.950000px;}
.x78_c00344{left:312.150000px;}
.x14_c00344{left:313.950000px;}
.x6c_c00344{left:315.000000px;}
.x54_c00344{left:317.400000px;}
.xbd_c00344{left:320.100000px;}
.xea_c00344{left:322.650000px;}
.x25_c00344{left:330.750000px;}
.x4a_c00344{left:332.850000px;}
.x7_c00344{left:334.200000px;}
.x130_c00344{left:335.400000px;}
.x79_c00344{left:337.050000px;}
.x108_c00344{left:338.850000px;}
.x55_c00344{left:340.800000px;}
.x6d_c00344{left:342.000000px;}
.xb4_c00344{left:343.500000px;}
.x10d_c00344{left:344.550000px;}
.x120_c00344{left:345.750000px;}
.x42_c00344{left:347.250000px;}
.x95_c00344{left:349.350000px;}
.x84_c00344{left:350.700000px;}
.x15_c00344{left:356.400000px;}
.x56_c00344{left:358.050000px;}
.x6e_c00344{left:359.700000px;}
.x5f_c00344{left:360.750000px;}
.xc9_c00344{left:364.050000px;}
.x26_c00344{left:365.250000px;}
.xcf_c00344{left:367.350000px;}
.x85_c00344{left:368.700000px;}
.x34_c00344{left:371.550000px;}
.x10e_c00344{left:374.850000px;}
.x16_c00344{left:376.200000px;}
.x96_c00344{left:377.850000px;}
.xc3_c00344{left:379.200000px;}
.xf3_c00344{left:383.400000px;}
.x9e_c00344{left:388.800000px;}
.xbe_c00344{left:392.100000px;}
.xeb_c00344{left:393.150000px;}
.x43_c00344{left:395.100000px;}
.x121_c00344{left:397.200000px;}
.x8_c00344{left:398.250000px;}
.xac_c00344{left:399.900000px;}
.x10f_c00344{left:402.900000px;}
.xb5_c00344{left:403.950000px;}
.x17_c00344{left:410.100000px;}
.x131_c00344{left:411.750000px;}
.x104_c00344{left:412.950000px;}
.x57_c00344{left:414.600000px;}
.xe3_c00344{left:416.700000px;}
.x27_c00344{left:418.950000px;}
.x35_c00344{left:421.650000px;}
.xc4_c00344{left:423.450000px;}
.x9_c00344{left:424.950000px;}
.xbf_c00344{left:426.300000px;}
.x60_c00344{left:428.100000px;}
.x12c_c00344{left:430.200000px;}
.x4b_c00344{left:431.850000px;}
.xd6_c00344{left:432.900000px;}
.x7a_c00344{left:434.700000px;}
.xf4_c00344{left:435.900000px;}
.xfa_c00344{left:438.150000px;}
.x36_c00344{left:439.650000px;}
.xdc_c00344{left:440.700000px;}
.x122_c00344{left:442.200000px;}
.x86_c00344{left:445.650000px;}
.x18_c00344{left:447.900000px;}
.x9f_c00344{left:449.250000px;}
.xd7_c00344{left:450.600000px;}
.x2_c00344{left:452.550000px;}
.xd0_c00344{left:454.800000px;}
.xb6_c00344{left:455.850000px;}
.x4c_c00344{left:458.100000px;}
.x115_c00344{left:459.300000px;}
.x37_c00344{left:460.500000px;}
.x109_c00344{left:461.700000px;}
.xa_c00344{left:462.750000px;}
.x7b_c00344{left:464.550000px;}
.x6f_c00344{left:465.900000px;}
.x11a_c00344{left:468.000000px;}
.xa0_c00344{left:469.800000px;}
.x110_c00344{left:471.750000px;}
.xc0_c00344{left:474.900000px;}
.x61_c00344{left:475.950000px;}
.x7c_c00344{left:481.800000px;}
.x19_c00344{left:485.400000px;}
.xb_c00344{left:487.650000px;}
.xec_c00344{left:490.350000px;}
.x58_c00344{left:492.000000px;}
.x62_c00344{left:493.650000px;}
.xa1_c00344{left:496.050000px;}
.x87_c00344{left:499.950000px;}
.xa9_c00344{left:501.750000px;}
.x38_c00344{left:503.700000px;}
.x11b_c00344{left:506.850000px;}
.xc5_c00344{left:508.800000px;}
.x10a_c00344{left:510.600000px;}
.x28_c00344{left:511.800000px;}
.x63_c00344{left:513.750000px;}
.x97_c00344{left:515.700000px;}
.xb7_c00344{left:517.800000px;}
.xaa_c00344{left:521.550000px;}
.x7d_c00344{left:525.300000px;}
.x1a_c00344{left:526.500000px;}
.xa2_c00344{left:528.750000px;}
.xd1_c00344{left:531.150000px;}
.xdd_c00344{left:532.500000px;}
.xc1_c00344{left:534.300000px;}
.x4d_c00344{left:535.500000px;}
.xed_c00344{left:536.700000px;}
.xfb_c00344{left:537.900000px;}
.x64_c00344{left:542.550000px;}
.x8d_c00344{left:544.200000px;}
.x39_c00344{left:546.150000px;}
.x44_c00344{left:548.100000px;}
.xc_c00344{left:551.400000px;}
.x1b_c00344{left:552.450000px;}
.x70_c00344{left:554.400000px;}
.xb8_c00344{left:555.900000px;}
.x129_c00344{left:557.550000px;}
.x88_c00344{left:560.100000px;}
.x29_c00344{left:561.150000px;}
.xad_c00344{left:563.700000px;}
.x1c_c00344{left:567.600000px;}
.xd8_c00344{left:570.900000px;}
.xa3_c00344{left:571.950000px;}
.x8e_c00344{left:573.000000px;}
.xc6_c00344{left:576.150000px;}
.x134_c00344{left:577.350000px;}
.x4e_c00344{left:578.400000px;}
.x126_c00344{left:579.900000px;}
.x2a_c00344{left:581.700000px;}
.xb9_c00344{left:583.650000px;}
.x11c_c00344{left:584.850000px;}
.xee_c00344{left:586.350000px;}
.xab_c00344{left:587.400000px;}
.xd_c00344{left:589.500000px;}
.xca_c00344{left:591.600000px;}
.x89_c00344{left:592.800000px;}
.xae_c00344{left:596.850000px;}
.xd9_c00344{left:599.400000px;}
.x59_c00344{left:600.750000px;}
.x1d_c00344{left:603.600000px;}
.xfc_c00344{left:604.800000px;}
.x8f_c00344{left:606.150000px;}
.x2b_c00344{left:609.750000px;}
.xe4_c00344{left:612.000000px;}
.x71_c00344{left:615.300000px;}
.x12a_c00344{left:616.650000px;}
.x7e_c00344{left:618.600000px;}
.x45_c00344{left:620.850000px;}
.xa4_c00344{left:622.350000px;}
.xaf_c00344{left:624.150000px;}
.x116_c00344{left:625.950000px;}
.x3a_c00344{left:628.200000px;}
.x132_c00344{left:632.100000px;}
.xe_c00344{left:633.450000px;}
.x8a_c00344{left:634.500000px;}
.x98_c00344{left:636.000000px;}
.x90_c00344{left:637.500000px;}
.x5a_c00344{left:640.050000px;}
.x4f_c00344{left:641.400000px;}
.x123_c00344{left:643.350000px;}
.xfd_c00344{left:646.500000px;}
.xf5_c00344{left:649.500000px;}
.x1e_c00344{left:651.450000px;}
.x135_c00344{left:655.800000px;}
.xba_c00344{left:657.150000px;}
.x65_c00344{left:658.500000px;}
.xde_c00344{left:660.000000px;}
.x127_c00344{left:663.450000px;}
.x2c_c00344{left:664.500000px;}
.x50_c00344{left:665.550000px;}
.x7f_c00344{left:668.700000px;}
.xc7_c00344{left:671.850000px;}
.x46_c00344{left:674.850000px;}
.x99_c00344{left:677.700000px;}
.xcb_c00344{left:678.750000px;}
.x117_c00344{left:680.250000px;}
.x91_c00344{left:681.750000px;}
.x66_c00344{left:684.000000px;}
.x72_c00344{left:685.800000px;}
.xe5_c00344{left:688.350000px;}
.x2d_c00344{left:691.500000px;}
.x1f_c00344{left:694.650000px;}
.x105_c00344{left:695.850000px;}
.xb0_c00344{left:696.900000px;}
.xd2_c00344{left:698.250000px;}
.xdf_c00344{left:699.300000px;}
.x80_c00344{left:700.800000px;}
.x73_c00344{left:703.050000px;}
.x133_c00344{left:704.100000px;}
.x124_c00344{left:706.650000px;}
.x2e_c00344{left:707.700000px;}
.x5b_c00344{left:710.550000px;}
.xda_c00344{left:712.050000px;}
.x67_c00344{left:713.100000px;}
.x81_c00344{left:716.250000px;}
.xb1_c00344{left:717.750000px;}
.xfe_c00344{left:718.800000px;}
.xf_c00344{left:725.550000px;}
.xf6_c00344{left:726.900000px;}
.x74_c00344{left:728.550000px;}
.x3b_c00344{left:730.350000px;}
.x111_c00344{left:731.400000px;}
.x113_c00344{left:733.350000px;}
.x10b_c00344{left:734.550000px;}
.x2f_c00344{left:735.750000px;}
.xb2_c00344{left:736.800000px;}
.x68_c00344{left:738.600000px;}
.xe6_c00344{left:740.250000px;}
.x9a_c00344{left:741.750000px;}
.x5c_c00344{left:744.000000px;}
.xff_c00344{left:746.100000px;}
.xdb_c00344{left:749.400000px;}
.x92_c00344{left:750.900000px;}
.x20_c00344{left:752.550000px;}
.x51_c00344{left:755.550000px;}
.x3c_c00344{left:758.100000px;}
.xa5_c00344{left:759.150000px;}
.x118_c00344{left:761.250000px;}
.x128_c00344{left:764.850000px;}
.xd3_c00344{left:766.950000px;}
.xcc_c00344{left:768.450000px;}
.x12d_c00344{left:770.850000px;}
.x3d_c00344{left:772.200000px;}
.xf7_c00344{left:773.400000px;}
.x5d_c00344{left:774.900000px;}
.x11d_c00344{left:777.150000px;}
.xe0_c00344{left:779.100000px;}
.xef_c00344{left:780.450000px;}
.x30_c00344{left:782.250000px;}
.xa6_c00344{left:784.650000px;}
.x10_c00344{left:786.000000px;}
.xd4_c00344{left:787.500000px;}
.xf8_c00344{left:788.550000px;}
.xbb_c00344{left:792.150000px;}
.x75_c00344{left:794.100000px;}
.x82_c00344{left:795.750000px;}
.x8b_c00344{left:798.450000px;}
.xf0_c00344{left:799.950000px;}
.x136_c00344{left:802.350000px;}
.xcd_c00344{left:803.400000px;}
.x21_c00344{left:804.750000px;}
.x9b_c00344{left:806.550000px;}
.x47_c00344{left:808.050000px;}
.x11e_c00344{left:816.450000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws7_c00344{word-spacing:-9.012346pt;}
.ws2_c00344{word-spacing:-5.555556pt;}
.ws6_c00344{word-spacing:-4.567901pt;}
.ws3_c00344{word-spacing:-4.327485pt;}
.ws8_c00344{word-spacing:0.000000pt;}
.ws5_c00344{word-spacing:1.041667pt;}
.wsb_c00344{word-spacing:2.716049pt;}
.ws9_c00344{word-spacing:5.614035pt;}
.ws4_c00344{word-spacing:6.274510pt;}
.ws0_c00344{word-spacing:6.666667pt;}
.ws1_c00344{word-spacing:11.728395pt;}
.wsa_c00344{word-spacing:19.084967pt;}
.fs0_c00344{font-size:48.000000pt;}
.fs1_c00344{font-size:53.333333pt;}
.y0_c00344{bottom:0.000000pt;}
.y2c_c00344{bottom:135.866667pt;}
.y2b_c00344{bottom:153.466667pt;}
.y2a_c00344{bottom:171.333333pt;}
.y29_c00344{bottom:188.933333pt;}
.y28_c00344{bottom:206.800000pt;}
.y27_c00344{bottom:224.666667pt;}
.y26_c00344{bottom:242.266667pt;}
.y25_c00344{bottom:259.866667pt;}
.y24_c00344{bottom:276.933333pt;}
.y23_c00344{bottom:295.200000pt;}
.y22_c00344{bottom:312.800000pt;}
.y21_c00344{bottom:330.400000pt;}
.y20_c00344{bottom:348.000000pt;}
.y1f_c00344{bottom:365.866667pt;}
.y1e_c00344{bottom:383.466667pt;}
.y1d_c00344{bottom:401.333333pt;}
.y1c_c00344{bottom:419.200000pt;}
.y1b_c00344{bottom:437.066667pt;}
.y1a_c00344{bottom:454.666667pt;}
.y19_c00344{bottom:472.000000pt;}
.y18_c00344{bottom:489.866667pt;}
.y17_c00344{bottom:507.466667pt;}
.y16_c00344{bottom:525.066667pt;}
.y15_c00344{bottom:561.066667pt;}
.y14_c00344{bottom:578.666667pt;}
.y13_c00344{bottom:596.533333pt;}
.y12_c00344{bottom:614.133333pt;}
.y11_c00344{bottom:632.000000pt;}
.y10_c00344{bottom:649.600000pt;}
.yf_c00344{bottom:667.733333pt;}
.ye_c00344{bottom:685.333333pt;}
.yd_c00344{bottom:703.200000pt;}
.yc_c00344{bottom:721.066667pt;}
.yb_c00344{bottom:738.666667pt;}
.ya_c00344{bottom:756.533333pt;}
.y9_c00344{bottom:774.400000pt;}
.y8_c00344{bottom:792.266667pt;}
.y7_c00344{bottom:810.133333pt;}
.y6_c00344{bottom:827.733333pt;}
.y5_c00344{bottom:845.333333pt;}
.y4_c00344{bottom:862.933333pt;}
.y3_c00344{bottom:880.533333pt;}
.y2_c00344{bottom:897.866667pt;}
.y1_c00344{bottom:932.800000pt;}
.h2_c00344{height:48.000000pt;}
.h3_c00344{height:53.333333pt;}
.h0_c00344{height:1037.119955pt;}
.h1_c00344{height:1037.333333pt;}
.w1_c00344{width:812.000000pt;}
.w0_c00344{width:812.159993pt;}
.x0_c00344{left:0.000000pt;}
.x100_c00344{left:135.733333pt;}
.x69_c00344{left:136.933333pt;}
.x1_c00344{left:138.266667pt;}
.xa7_c00344{left:152.800000pt;}
.xc8_c00344{left:154.400000pt;}
.xe7_c00344{left:155.333333pt;}
.x137_c00344{left:157.333333pt;}
.x76_c00344{left:159.866667pt;}
.x119_c00344{left:163.466667pt;}
.x106_c00344{left:164.533333pt;}
.x3_c00344{left:165.466667pt;}
.x112_c00344{left:167.200000pt;}
.x22_c00344{left:168.800000pt;}
.xe1_c00344{left:170.000000pt;}
.x11_c00344{left:172.933333pt;}
.x12e_c00344{left:175.066667pt;}
.xf9_c00344{left:176.666667pt;}
.x101_c00344{left:177.600000pt;}
.x8c_c00344{left:178.933333pt;}
.xf1_c00344{left:180.533333pt;}
.x4_c00344{left:183.333333pt;}
.x138_c00344{left:184.266667pt;}
.x31_c00344{left:185.600000pt;}
.x48_c00344{left:186.800000pt;}
.xc2_c00344{left:187.866667pt;}
.x125_c00344{left:190.666667pt;}
.x93_c00344{left:192.666667pt;}
.xf2_c00344{left:195.600000pt;}
.x3e_c00344{left:196.800000pt;}
.x77_c00344{left:198.933333pt;}
.x52_c00344{left:200.800000pt;}
.xb3_c00344{left:203.866667pt;}
.x12_c00344{left:208.400000pt;}
.x114_c00344{left:210.933333pt;}
.x6a_c00344{left:212.800000pt;}
.x3f_c00344{left:216.666667pt;}
.x5e_c00344{left:218.400000pt;}
.x5_c00344{left:220.800000pt;}
.x23_c00344{left:223.866667pt;}
.x32_c00344{left:226.266667pt;}
.xce_c00344{left:228.000000pt;}
.xe8_c00344{left:230.533333pt;}
.x107_c00344{left:231.733333pt;}
.xd5_c00344{left:232.800000pt;}
.x40_c00344{left:234.533333pt;}
.x53_c00344{left:238.266667pt;}
.xbc_c00344{left:239.733333pt;}
.x9c_c00344{left:241.066667pt;}
.x102_c00344{left:242.933333pt;}
.x94_c00344{left:244.533333pt;}
.x11f_c00344{left:246.800000pt;}
.xe9_c00344{left:248.400000pt;}
.x13_c00344{left:249.333333pt;}
.xa8_c00344{left:251.066667pt;}
.x24_c00344{left:254.266667pt;}
.x9d_c00344{left:256.400000pt;}
.x33_c00344{left:258.000000pt;}
.x6_c00344{left:260.533333pt;}
.x49_c00344{left:262.266667pt;}
.x12f_c00344{left:263.600000pt;}
.xe2_c00344{left:265.333333pt;}
.x6b_c00344{left:267.466667pt;}
.x103_c00344{left:268.533333pt;}
.x83_c00344{left:271.466667pt;}
.x10c_c00344{left:273.333333pt;}
.x12b_c00344{left:274.933333pt;}
.x41_c00344{left:276.400000pt;}
.x78_c00344{left:277.466667pt;}
.x14_c00344{left:279.066667pt;}
.x6c_c00344{left:280.000000pt;}
.x54_c00344{left:282.133333pt;}
.xbd_c00344{left:284.533333pt;}
.xea_c00344{left:286.800000pt;}
.x25_c00344{left:294.000000pt;}
.x4a_c00344{left:295.866667pt;}
.x7_c00344{left:297.066667pt;}
.x130_c00344{left:298.133333pt;}
.x79_c00344{left:299.600000pt;}
.x108_c00344{left:301.200000pt;}
.x55_c00344{left:302.933333pt;}
.x6d_c00344{left:304.000000pt;}
.xb4_c00344{left:305.333333pt;}
.x10d_c00344{left:306.266667pt;}
.x120_c00344{left:307.333333pt;}
.x42_c00344{left:308.666667pt;}
.x95_c00344{left:310.533333pt;}
.x84_c00344{left:311.733333pt;}
.x15_c00344{left:316.800000pt;}
.x56_c00344{left:318.266667pt;}
.x6e_c00344{left:319.733333pt;}
.x5f_c00344{left:320.666667pt;}
.xc9_c00344{left:323.600000pt;}
.x26_c00344{left:324.666667pt;}
.xcf_c00344{left:326.533333pt;}
.x85_c00344{left:327.733333pt;}
.x34_c00344{left:330.266667pt;}
.x10e_c00344{left:333.200000pt;}
.x16_c00344{left:334.400000pt;}
.x96_c00344{left:335.866667pt;}
.xc3_c00344{left:337.066667pt;}
.xf3_c00344{left:340.800000pt;}
.x9e_c00344{left:345.600000pt;}
.xbe_c00344{left:348.533333pt;}
.xeb_c00344{left:349.466667pt;}
.x43_c00344{left:351.200000pt;}
.x121_c00344{left:353.066667pt;}
.x8_c00344{left:354.000000pt;}
.xac_c00344{left:355.466667pt;}
.x10f_c00344{left:358.133333pt;}
.xb5_c00344{left:359.066667pt;}
.x17_c00344{left:364.533333pt;}
.x131_c00344{left:366.000000pt;}
.x104_c00344{left:367.066667pt;}
.x57_c00344{left:368.533333pt;}
.xe3_c00344{left:370.400000pt;}
.x27_c00344{left:372.400000pt;}
.x35_c00344{left:374.800000pt;}
.xc4_c00344{left:376.400000pt;}
.x9_c00344{left:377.733333pt;}
.xbf_c00344{left:378.933333pt;}
.x60_c00344{left:380.533333pt;}
.x12c_c00344{left:382.400000pt;}
.x4b_c00344{left:383.866667pt;}
.xd6_c00344{left:384.800000pt;}
.x7a_c00344{left:386.400000pt;}
.xf4_c00344{left:387.466667pt;}
.xfa_c00344{left:389.466667pt;}
.x36_c00344{left:390.800000pt;}
.xdc_c00344{left:391.733333pt;}
.x122_c00344{left:393.066667pt;}
.x86_c00344{left:396.133333pt;}
.x18_c00344{left:398.133333pt;}
.x9f_c00344{left:399.333333pt;}
.xd7_c00344{left:400.533333pt;}
.x2_c00344{left:402.266667pt;}
.xd0_c00344{left:404.266667pt;}
.xb6_c00344{left:405.200000pt;}
.x4c_c00344{left:407.200000pt;}
.x115_c00344{left:408.266667pt;}
.x37_c00344{left:409.333333pt;}
.x109_c00344{left:410.400000pt;}
.xa_c00344{left:411.333333pt;}
.x7b_c00344{left:412.933333pt;}
.x6f_c00344{left:414.133333pt;}
.x11a_c00344{left:416.000000pt;}
.xa0_c00344{left:417.600000pt;}
.x110_c00344{left:419.333333pt;}
.xc0_c00344{left:422.133333pt;}
.x61_c00344{left:423.066667pt;}
.x7c_c00344{left:428.266667pt;}
.x19_c00344{left:431.466667pt;}
.xb_c00344{left:433.466667pt;}
.xec_c00344{left:435.866667pt;}
.x58_c00344{left:437.333333pt;}
.x62_c00344{left:438.800000pt;}
.xa1_c00344{left:440.933333pt;}
.x87_c00344{left:444.400000pt;}
.xa9_c00344{left:446.000000pt;}
.x38_c00344{left:447.733333pt;}
.x11b_c00344{left:450.533333pt;}
.xc5_c00344{left:452.266667pt;}
.x10a_c00344{left:453.866667pt;}
.x28_c00344{left:454.933333pt;}
.x63_c00344{left:456.666667pt;}
.x97_c00344{left:458.400000pt;}
.xb7_c00344{left:460.266667pt;}
.xaa_c00344{left:463.600000pt;}
.x7d_c00344{left:466.933333pt;}
.x1a_c00344{left:468.000000pt;}
.xa2_c00344{left:470.000000pt;}
.xd1_c00344{left:472.133333pt;}
.xdd_c00344{left:473.333333pt;}
.xc1_c00344{left:474.933333pt;}
.x4d_c00344{left:476.000000pt;}
.xed_c00344{left:477.066667pt;}
.xfb_c00344{left:478.133333pt;}
.x64_c00344{left:482.266667pt;}
.x8d_c00344{left:483.733333pt;}
.x39_c00344{left:485.466667pt;}
.x44_c00344{left:487.200000pt;}
.xc_c00344{left:490.133333pt;}
.x1b_c00344{left:491.066667pt;}
.x70_c00344{left:492.800000pt;}
.xb8_c00344{left:494.133333pt;}
.x129_c00344{left:495.600000pt;}
.x88_c00344{left:497.866667pt;}
.x29_c00344{left:498.800000pt;}
.xad_c00344{left:501.066667pt;}
.x1c_c00344{left:504.533333pt;}
.xd8_c00344{left:507.466667pt;}
.xa3_c00344{left:508.400000pt;}
.x8e_c00344{left:509.333333pt;}
.xc6_c00344{left:512.133333pt;}
.x134_c00344{left:513.200000pt;}
.x4e_c00344{left:514.133333pt;}
.x126_c00344{left:515.466667pt;}
.x2a_c00344{left:517.066667pt;}
.xb9_c00344{left:518.800000pt;}
.x11c_c00344{left:519.866667pt;}
.xee_c00344{left:521.200000pt;}
.xab_c00344{left:522.133333pt;}
.xd_c00344{left:524.000000pt;}
.xca_c00344{left:525.866667pt;}
.x89_c00344{left:526.933333pt;}
.xae_c00344{left:530.533333pt;}
.xd9_c00344{left:532.800000pt;}
.x59_c00344{left:534.000000pt;}
.x1d_c00344{left:536.533333pt;}
.xfc_c00344{left:537.600000pt;}
.x8f_c00344{left:538.800000pt;}
.x2b_c00344{left:542.000000pt;}
.xe4_c00344{left:544.000000pt;}
.x71_c00344{left:546.933333pt;}
.x12a_c00344{left:548.133333pt;}
.x7e_c00344{left:549.866667pt;}
.x45_c00344{left:551.866667pt;}
.xa4_c00344{left:553.200000pt;}
.xaf_c00344{left:554.800000pt;}
.x116_c00344{left:556.400000pt;}
.x3a_c00344{left:558.400000pt;}
.x132_c00344{left:561.866667pt;}
.xe_c00344{left:563.066667pt;}
.x8a_c00344{left:564.000000pt;}
.x98_c00344{left:565.333333pt;}
.x90_c00344{left:566.666667pt;}
.x5a_c00344{left:568.933333pt;}
.x4f_c00344{left:570.133333pt;}
.x123_c00344{left:571.866667pt;}
.xfd_c00344{left:574.666667pt;}
.xf5_c00344{left:577.333333pt;}
.x1e_c00344{left:579.066667pt;}
.x135_c00344{left:582.933333pt;}
.xba_c00344{left:584.133333pt;}
.x65_c00344{left:585.333333pt;}
.xde_c00344{left:586.666667pt;}
.x127_c00344{left:589.733333pt;}
.x2c_c00344{left:590.666667pt;}
.x50_c00344{left:591.600000pt;}
.x7f_c00344{left:594.400000pt;}
.xc7_c00344{left:597.200000pt;}
.x46_c00344{left:599.866667pt;}
.x99_c00344{left:602.400000pt;}
.xcb_c00344{left:603.333333pt;}
.x117_c00344{left:604.666667pt;}
.x91_c00344{left:606.000000pt;}
.x66_c00344{left:608.000000pt;}
.x72_c00344{left:609.600000pt;}
.xe5_c00344{left:611.866667pt;}
.x2d_c00344{left:614.666667pt;}
.x1f_c00344{left:617.466667pt;}
.x105_c00344{left:618.533333pt;}
.xb0_c00344{left:619.466667pt;}
.xd2_c00344{left:620.666667pt;}
.xdf_c00344{left:621.600000pt;}
.x80_c00344{left:622.933333pt;}
.x73_c00344{left:624.933333pt;}
.x133_c00344{left:625.866667pt;}
.x124_c00344{left:628.133333pt;}
.x2e_c00344{left:629.066667pt;}
.x5b_c00344{left:631.600000pt;}
.xda_c00344{left:632.933333pt;}
.x67_c00344{left:633.866667pt;}
.x81_c00344{left:636.666667pt;}
.xb1_c00344{left:638.000000pt;}
.xfe_c00344{left:638.933333pt;}
.xf_c00344{left:644.933333pt;}
.xf6_c00344{left:646.133333pt;}
.x74_c00344{left:647.600000pt;}
.x3b_c00344{left:649.200000pt;}
.x111_c00344{left:650.133333pt;}
.x113_c00344{left:651.866667pt;}
.x10b_c00344{left:652.933333pt;}
.x2f_c00344{left:654.000000pt;}
.xb2_c00344{left:654.933333pt;}
.x68_c00344{left:656.533333pt;}
.xe6_c00344{left:658.000000pt;}
.x9a_c00344{left:659.333333pt;}
.x5c_c00344{left:661.333333pt;}
.xff_c00344{left:663.200000pt;}
.xdb_c00344{left:666.133333pt;}
.x92_c00344{left:667.466667pt;}
.x20_c00344{left:668.933333pt;}
.x51_c00344{left:671.600000pt;}
.x3c_c00344{left:673.866667pt;}
.xa5_c00344{left:674.800000pt;}
.x118_c00344{left:676.666667pt;}
.x128_c00344{left:679.866667pt;}
.xd3_c00344{left:681.733333pt;}
.xcc_c00344{left:683.066667pt;}
.x12d_c00344{left:685.200000pt;}
.x3d_c00344{left:686.400000pt;}
.xf7_c00344{left:687.466667pt;}
.x5d_c00344{left:688.800000pt;}
.x11d_c00344{left:690.800000pt;}
.xe0_c00344{left:692.533333pt;}
.xef_c00344{left:693.733333pt;}
.x30_c00344{left:695.333333pt;}
.xa6_c00344{left:697.466667pt;}
.x10_c00344{left:698.666667pt;}
.xd4_c00344{left:700.000000pt;}
.xf8_c00344{left:700.933333pt;}
.xbb_c00344{left:704.133333pt;}
.x75_c00344{left:705.866667pt;}
.x82_c00344{left:707.333333pt;}
.x8b_c00344{left:709.733333pt;}
.xf0_c00344{left:711.066667pt;}
.x136_c00344{left:713.200000pt;}
.xcd_c00344{left:714.133333pt;}
.x21_c00344{left:715.333333pt;}
.x9b_c00344{left:716.933333pt;}
.x47_c00344{left:718.266667pt;}
.x11e_c00344{left:725.733333pt;}
}





/* 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_c00345 {
    display:none;
  }
  .loading-indicator_c00345.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00345 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_c00345 { 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_c00345" -> "#page-container .classname_c00345")
 */
.pf_c00345 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00345 { /* 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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00345 { /* 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_c00345 { /* 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_c00345 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00345 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00345 {overflow:visible;}
  }
}
.c_c00345 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00345 { /* 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_c00345:after { /* webkit #35443 */
  content: '';
}
.t_c00345:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00345 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 */
}
.__c00345 { /* 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_c00345 { /* info for Javascript */
  display:none;
}
.l_c00345 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00345 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00345 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00345: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_c00345 {
    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_c00345.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00345.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_c00345 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00345{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00345;src:url('chunks/assets/font_93085d03a3a393c79b680376.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.000000;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_c00345{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.v0_c00345{vertical-align:0.000000px;}
.ls0_c00345{letter-spacing:0.000000px;}
.sc__c00345{text-shadow:none;}
.sc0_c00345{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__c00345{-webkit-text-stroke:0px transparent;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-15.000000px;}
.ws1_c00345{word-spacing:0.000000px;}
._0_c00345{margin-left:-80.833333px;}
.fc0_c00345{color:transparent;}
.fs0_c00345{font-size:30.000000px;}
.y0_c00345{bottom:0.000000px;}
.y1_c00345{bottom:33.900000px;}
.y2_c00345{bottom:1087.950000px;}
.h2_c00345{height:30.000000px;}
.h0_c00345{height:1166.759949px;}
.h1_c00345{height:1167.000000px;}
.w1_c00345{width:913.500000px;}
.w0_c00345{width:913.679993px;}
.x0_c00345{left:0.000000px;}
.x6_c00345{left:706.800000px;}
.x5_c00345{left:751.350000px;}
.x4_c00345{left:774.000000px;}
.x3_c00345{left:796.350000px;}
.x2_c00345{left:801.000000px;}
.x1_c00345{left:819.750000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:-13.333333pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._0_c00345{margin-left:-71.851852pt;}
.fs0_c00345{font-size:26.666667pt;}
.y0_c00345{bottom:0.000000pt;}
.y1_c00345{bottom:30.133333pt;}
.y2_c00345{bottom:967.066667pt;}
.h2_c00345{height:26.666667pt;}
.h0_c00345{height:1037.119955pt;}
.h1_c00345{height:1037.333333pt;}
.w1_c00345{width:812.000000pt;}
.w0_c00345{width:812.159993pt;}
.x0_c00345{left:0.000000pt;}
.x6_c00345{left:628.266667pt;}
.x5_c00345{left:667.866667pt;}
.x4_c00345{left:688.000000pt;}
.x3_c00345{left:707.866667pt;}
.x2_c00345{left:712.000000pt;}
.x1_c00345{left:728.666667pt;}
}





/* 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_c00346 {
    display:none;
  }
  .loading-indicator_c00346.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00346 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_c00346 { 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_c00346" -> "#page-container .classname_c00346")
 */
.pf_c00346 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00346 { /* 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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00346 { /* 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_c00346 { /* 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_c00346 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00346 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00346 {overflow:visible;}
  }
}
.c_c00346 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00346 { /* 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_c00346:after { /* webkit #35443 */
  content: '';
}
.t_c00346:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00346 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 */
}
.__c00346 { /* 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_c00346 { /* info for Javascript */
  display:none;
}
.l_c00346 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00346 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00346 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00346: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_c00346 {
    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_c00346.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00346.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_c00346 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00346{font-family:sans-serif;visibility:hidden;}
.sc__c00346{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00346{-webkit-text-stroke:0px transparent;}
}
.y0_c00346{bottom:0.000000px;}
.h0_c00346{height:1166.759949px;}
.h1_c00346{height:1167.000000px;}
.w1_c00346{width:913.500000px;}
.w0_c00346{width:913.679993px;}
.x0_c00346{left:0.000000px;}
@media print{
.y0_c00346{bottom:0.000000pt;}
.h0_c00346{height:1037.119955pt;}
.h1_c00346{height:1037.333333pt;}
.w1_c00346{width:812.000000pt;}
.w0_c00346{width:812.159993pt;}
.x0_c00346{left:0.000000pt;}
}





/* 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_c00347 {
    display:none;
  }
  .loading-indicator_c00347.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00347 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_c00347 { 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_c00347" -> "#page-container .classname_c00347")
 */
.pf_c00347 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00347 { /* 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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00347 { /* 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_c00347 { /* 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_c00347 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00347 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00347 {overflow:visible;}
  }
}
.c_c00347 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00347 { /* 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_c00347:after { /* webkit #35443 */
  content: '';
}
.t_c00347:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00347 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 */
}
.__c00347 { /* 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_c00347 { /* info for Javascript */
  display:none;
}
.l_c00347 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00347 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00347 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00347: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_c00347 {
    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_c00347.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00347.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_c00347 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00347{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00347;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.000000;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;}
.mb1_c00347{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.md_c00347{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m33_c00347{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00347{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00347{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m81_c00347{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m65_c00347{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00347{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mae_c00347{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00347{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m88_c00347{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.maa_c00347{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m97_c00347{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00347{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mad_c00347{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m53_c00347{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00347{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00347{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00347{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00347{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mab_c00347{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mac_c00347{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.maf_c00347{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00347{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m78_c00347{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m51_c00347{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m13_c00347{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00347{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38_c00347{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00347{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m47_c00347{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00347{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00347{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m74_c00347{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m94_c00347{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m55_c00347{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00347{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m76_c00347{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m28_c00347{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00347{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00347{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m92_c00347{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m69_c00347{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00347{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00347{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m45_c00347{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00347{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00347{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m73_c00347{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00347{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10_c00347{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m95_c00347{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00347{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m48_c00347{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m66_c00347{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00347{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00347{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m27_c00347{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00347{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00347{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m96_c00347{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00347{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00347{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00347{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m12_c00347{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m37_c00347{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00347{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m29_c00347{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m91_c00347{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m79_c00347{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m54_c00347{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00347{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00347{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m67_c00347{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00347{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m56_c00347{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m35_c00347{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00347{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00347{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c00347{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m71_c00347{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00347{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m34_c00347{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00347{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18_c00347{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m61_c00347{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m25_c00347{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00347{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m59_c00347{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00347{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);}
.m6a_c00347{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00347{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00347{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m89_c00347{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc_c00347{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00347{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m23_c00347{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m19_c00347{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00347{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m40_c00347{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m57_c00347{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00347{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00347{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m77_c00347{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m68_c00347{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00347{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00347{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00347{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00347{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m58_c00347{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m85_c00347{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m17_c00347{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m86_c00347{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m99_c00347{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m50_c00347{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m44_c00347{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00347{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00347{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m16_c00347{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00347{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m83_c00347{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m42_c00347{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m62_c00347{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m26_c00347{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00347{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m63_c00347{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m32_c00347{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00347{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m87_c00347{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m80_c00347{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m43_c00347{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00347{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m75_c00347{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m14_c00347{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m24_c00347{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m11_c00347{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m52_c00347{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00347{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m30_c00347{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m93_c00347{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m39_c00347{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00347{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00347{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mb_c00347{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00347{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00347{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00347{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.me_c00347{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m31_c00347{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m22_c00347{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m36_c00347{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m46_c00347{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m90_c00347{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m64_c00347{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m21_c00347{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m84_c00347{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m41_c00347{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m60_c00347{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m98_c00347{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m70_c00347{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00347{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00347{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00347{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m72_c00347{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00347{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m49_c00347{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00347{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m82_c00347{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m1_c00347{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.ls0_c00347{letter-spacing:0.000000px;}
.sc__c00347{text-shadow:none;}
.sc0_c00347{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__c00347{-webkit-text-stroke:0px transparent;}
.sc0_c00347{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00347{word-spacing:-1.175258px;}
.ws7_c00347{word-spacing:0.000000px;}
.ws4_c00347{word-spacing:1.500000px;}
.ws9_c00347{word-spacing:1.501850px;}
.ws8_c00347{word-spacing:1.650392px;}
.ws1_c00347{word-spacing:4.750000px;}
.ws5_c00347{word-spacing:7.375000px;}
.ws0_c00347{word-spacing:7.750000px;}
.ws3_c00347{word-spacing:9.791411px;}
.ws2_c00347{word-spacing:57.250000px;}
._0_c00347{width:29.750000px;}
.fc0_c00347{color:transparent;}
.fs0_c00347{font-size:54.000000px;}
.y0_c00347{bottom:0.000000px;}
.y2d_c00347{bottom:133.500000px;}
.y2c_c00347{bottom:150.150000px;}
.y2b_c00347{bottom:165.300000px;}
.y2a_c00347{bottom:181.050000px;}
.y29_c00347{bottom:196.950000px;}
.y28_c00347{bottom:212.700000px;}
.y27_c00347{bottom:243.900000px;}
.y26_c00347{bottom:264.000000px;}
.y25_c00347{bottom:283.800000px;}
.y24_c00347{bottom:303.900000px;}
.y23_c00347{bottom:323.700000px;}
.y22_c00347{bottom:343.800000px;}
.y21_c00347{bottom:363.600000px;}
.y20_c00347{bottom:383.400000px;}
.y1f_c00347{bottom:403.500000px;}
.y1e_c00347{bottom:423.900000px;}
.y1d_c00347{bottom:443.700000px;}
.y1c_c00347{bottom:463.500000px;}
.y1b_c00347{bottom:483.600000px;}
.y1a_c00347{bottom:503.700000px;}
.y19_c00347{bottom:543.300000px;}
.y18_c00347{bottom:563.400000px;}
.y17_c00347{bottom:583.200000px;}
.y16_c00347{bottom:603.300000px;}
.y15_c00347{bottom:623.100000px;}
.y14_c00347{bottom:643.350000px;}
.y13_c00347{bottom:663.150000px;}
.y12_c00347{bottom:683.250000px;}
.y11_c00347{bottom:703.050000px;}
.y10_c00347{bottom:722.850000px;}
.yf_c00347{bottom:742.950000px;}
.ye_c00347{bottom:763.050000px;}
.yd_c00347{bottom:783.150000px;}
.yc_c00347{bottom:802.950000px;}
.yb_c00347{bottom:822.750000px;}
.ya_c00347{bottom:842.850000px;}
.y9_c00347{bottom:862.650000px;}
.y8_c00347{bottom:882.750000px;}
.y7_c00347{bottom:902.550000px;}
.y6_c00347{bottom:922.350000px;}
.y5_c00347{bottom:942.900000px;}
.y4_c00347{bottom:962.700000px;}
.y3_c00347{bottom:982.500000px;}
.y2_c00347{bottom:1002.300000px;}
.y1_c00347{bottom:1040.700000px;}
.h2_c00347{height:54.000000px;}
.h0_c00347{height:1166.759949px;}
.h1_c00347{height:1167.000000px;}
.w1_c00347{width:913.500000px;}
.w0_c00347{width:913.679993px;}
.x0_c00347{left:0.000000px;}
.x5_c00347{left:90.750000px;}
.xa7_c00347{left:91.950000px;}
.xff_c00347{left:93.150000px;}
.x92_c00347{left:109.950000px;}
.x112_c00347{left:112.050000px;}
.x19_c00347{left:113.550000px;}
.xcb_c00347{left:114.900000px;}
.xec_c00347{left:117.900000px;}
.xb6_c00347{left:120.300000px;}
.xad_c00347{left:122.400000px;}
.x62_c00347{left:123.600000px;}
.x10f_c00347{left:124.950000px;}
.x4a_c00347{left:126.300000px;}
.x87_c00347{left:130.350000px;}
.x78_c00347{left:132.150000px;}
.x10b_c00347{left:134.100000px;}
.x6d_c00347{left:136.050000px;}
.x25_c00347{left:137.700000px;}
.xe4_c00347{left:138.750000px;}
.x31_c00347{left:140.850000px;}
.x128_c00347{left:141.900000px;}
.x58_c00347{left:142.950000px;}
.x6_c00347{left:144.450000px;}
.x93_c00347{left:146.400000px;}
.x79_c00347{left:149.850000px;}
.xae_c00347{left:152.700000px;}
.x4b_c00347{left:154.350000px;}
.xd6_c00347{left:155.850000px;}
.xfc_c00347{left:158.250000px;}
.x3a_c00347{left:161.850000px;}
.xc0_c00347{left:162.900000px;}
.x32_c00347{left:163.950000px;}
.x63_c00347{left:165.300000px;}
.x7_c00347{left:167.100000px;}
.xa8_c00347{left:168.600000px;}
.x59_c00347{left:170.700000px;}
.xb7_c00347{left:176.850000px;}
.x11b_c00347{left:178.050000px;}
.xda_c00347{left:181.650000px;}
.x3b_c00347{left:183.750000px;}
.xa9_c00347{left:188.700000px;}
.xe5_c00347{left:189.900000px;}
.x64_c00347{left:192.000000px;}
.xb8_c00347{left:193.800000px;}
.x8_c00347{left:195.600000px;}
.xdb_c00347{left:196.800000px;}
.x26_c00347{left:198.300000px;}
.x7a_c00347{left:202.050000px;}
.x113_c00347{left:204.600000px;}
.xaf_c00347{left:205.950000px;}
.x100_c00347{left:207.300000px;}
.x103_c00347{left:211.050000px;}
.x94_c00347{left:214.500000px;}
.x6e_c00347{left:216.750000px;}
.x129_c00347{left:218.850000px;}
.x65_c00347{left:221.550000px;}
.x7b_c00347{left:225.750000px;}
.xcc_c00347{left:227.250000px;}
.x9_c00347{left:229.050000px;}
.xed_c00347{left:231.300000px;}
.x108_c00347{left:232.350000px;}
.x114_c00347{left:235.200000px;}
.x9d_c00347{left:236.250000px;}
.x3c_c00347{left:238.050000px;}
.xb0_c00347{left:242.250000px;}
.x6f_c00347{left:245.250000px;}
.x95_c00347{left:246.900000px;}
.xee_c00347{left:250.800000px;}
.x33_c00347{left:254.700000px;}
.xe6_c00347{left:255.750000px;}
.xa_c00347{left:257.100000px;}
.x88_c00347{left:258.900000px;}
.x1a_c00347{left:260.400000px;}
.xc1_c00347{left:262.200000px;}
.xf4_c00347{left:264.750000px;}
.x9e_c00347{left:267.900000px;}
.x7c_c00347{left:269.700000px;}
.x3d_c00347{left:271.500000px;}
.x96_c00347{left:274.200000px;}
.xaa_c00347{left:276.300000px;}
.xc2_c00347{left:277.650000px;}
.x106_c00347{left:279.300000px;}
.x66_c00347{left:281.250000px;}
.x7d_c00347{left:284.400000px;}
.x4c_c00347{left:285.450000px;}
.x27_c00347{left:288.000000px;}
.x70_c00347{left:289.500000px;}
.xdc_c00347{left:293.550000px;}
.x3e_c00347{left:295.200000px;}
.xf5_c00347{left:298.650000px;}
.xd0_c00347{left:301.350000px;}
.xe1_c00347{left:304.350000px;}
.x97_c00347{left:305.550000px;}
.x125_c00347{left:307.800000px;}
.x28_c00347{left:309.900000px;}
.x4d_c00347{left:313.500000px;}
.xf6_c00347{left:315.900000px;}
.xd7_c00347{left:317.100000px;}
.x5a_c00347{left:318.300000px;}
.x7e_c00347{left:319.650000px;}
.x1b_c00347{left:321.900000px;}
.xb_c00347{left:323.700000px;}
.x1_c00347{left:325.500000px;}
.x118_c00347{left:329.400000px;}
.xc3_c00347{left:330.900000px;}
.xd1_c00347{left:332.250000px;}
.x10c_c00347{left:333.600000px;}
.x34_c00347{left:334.950000px;}
.x29_c00347{left:336.900000px;}
.x67_c00347{left:338.850000px;}
.x115_c00347{left:339.900000px;}
.x7f_c00347{left:341.250000px;}
.xef_c00347{left:342.750000px;}
.x126_c00347{left:345.600000px;}
.xfd_c00347{left:348.900000px;}
.xd2_c00347{left:351.300000px;}
.x3f_c00347{left:353.850000px;}
.xe7_c00347{left:355.800000px;}
.x104_c00347{left:357.600000px;}
.x9f_c00347{left:359.400000px;}
.xc_c00347{left:360.450000px;}
.x12e_c00347{left:361.650000px;}
.x101_c00347{left:363.300000px;}
.x4e_c00347{left:365.700000px;}
.x2a_c00347{left:368.250000px;}
.x89_c00347{left:372.000000px;}
.x80_c00347{left:373.650000px;}
.x1c_c00347{left:375.150000px;}
.xd_c00347{left:378.450000px;}
.x5b_c00347{left:381.000000px;}
.x11c_c00347{left:382.800000px;}
.x4f_c00347{left:384.000000px;}
.xe2_c00347{left:385.350000px;}
.xb9_c00347{left:386.400000px;}
.x40_c00347{left:387.750000px;}
.xc4_c00347{left:388.800000px;}
.x10d_c00347{left:390.150000px;}
.x127_c00347{left:393.900000px;}
.xe8_c00347{left:399.000000px;}
.xf7_c00347{left:400.950000px;}
.x2b_c00347{left:403.500000px;}
.x41_c00347{left:406.050000px;}
.xc5_c00347{left:409.650000px;}
.x5c_c00347{left:411.900000px;}
.x2_c00347{left:414.000000px;}
.xf0_c00347{left:416.850000px;}
.x71_c00347{left:420.300000px;}
.x1d_c00347{left:421.650000px;}
.x68_c00347{left:423.750000px;}
.xe_c00347{left:426.300000px;}
.x35_c00347{left:429.300000px;}
.x8a_c00347{left:430.650000px;}
.x3_c00347{left:434.100000px;}
.x2c_c00347{left:435.600000px;}
.x50_c00347{left:437.250000px;}
.x42_c00347{left:439.200000px;}
.x1e_c00347{left:442.200000px;}
.xa0_c00347{left:443.400000px;}
.x119_c00347{left:445.350000px;}
.xf1_c00347{left:448.950000px;}
.x116_c00347{left:450.450000px;}
.x72_c00347{left:451.950000px;}
.x69_c00347{left:453.600000px;}
.xdd_c00347{left:454.800000px;}
.xf_c00347{left:455.850000px;}
.xf8_c00347{left:457.800000px;}
.x43_c00347{left:459.000000px;}
.x5d_c00347{left:460.200000px;}
.x8b_c00347{left:461.550000px;}
.x51_c00347{left:463.950000px;}
.x105_c00347{left:465.300000px;}
.xba_c00347{left:466.350000px;}
.x98_c00347{left:467.700000px;}
.x73_c00347{left:470.250000px;}
.x2d_c00347{left:474.900000px;}
.xbb_c00347{left:477.150000px;}
.x52_c00347{left:479.100000px;}
.x10_c00347{left:481.050000px;}
.x44_c00347{left:482.100000px;}
.x5e_c00347{left:484.350000px;}
.x1f_c00347{left:486.150000px;}
.x117_c00347{left:487.200000px;}
.x10e_c00347{left:488.700000px;}
.x8c_c00347{left:491.100000px;}
.x81_c00347{left:492.750000px;}
.x6a_c00347{left:495.300000px;}
.x36_c00347{left:496.950000px;}
.x2e_c00347{left:498.300000px;}
.x107_c00347{left:502.500000px;}
.xcd_c00347{left:505.350000px;}
.xbc_c00347{left:507.750000px;}
.xa1_c00347{left:508.950000px;}
.xb1_c00347{left:510.750000px;}
.xf9_c00347{left:514.050000px;}
.x53_c00347{left:517.650000px;}
.x11_c00347{left:519.900000px;}
.xe9_c00347{left:521.400000px;}
.x11a_c00347{left:523.050000px;}
.x12f_c00347{left:525.300000px;}
.xbd_c00347{left:526.500000px;}
.x109_c00347{left:529.050000px;}
.x12_c00347{left:530.700000px;}
.xc6_c00347{left:532.050000px;}
.xd3_c00347{left:533.850000px;}
.x11d_c00347{left:535.050000px;}
.xb2_c00347{left:536.700000px;}
.x99_c00347{left:539.400000px;}
.x12a_c00347{left:540.600000px;}
.x102_c00347{left:541.800000px;}
.x45_c00347{left:543.600000px;}
.x2f_c00347{left:545.850000px;}
.xc7_c00347{left:547.200000px;}
.xea_c00347{left:549.150000px;}
.x20_c00347{left:550.200000px;}
.xab_c00347{left:553.500000px;}
.xa2_c00347{left:556.050000px;}
.x82_c00347{left:558.600000px;}
.x13_c00347{left:560.250000px;}
.x8d_c00347{left:561.300000px;}
.x46_c00347{left:563.700000px;}
.x120_c00347{left:568.200000px;}
.x21_c00347{left:570.000000px;}
.x37_c00347{left:571.800000px;}
.x130_c00347{left:573.150000px;}
.x54_c00347{left:574.200000px;}
.x74_c00347{left:575.400000px;}
.xc8_c00347{left:576.750000px;}
.x14_c00347{left:579.300000px;}
.xac_c00347{left:581.550000px;}
.xd4_c00347{left:585.000000px;}
.x5f_c00347{left:586.200000px;}
.x83_c00347{left:590.250000px;}
.xbe_c00347{left:592.650000px;}
.xd8_c00347{left:593.700000px;}
.xa3_c00347{left:594.900000px;}
.x12b_c00347{left:596.400000px;}
.x55_c00347{left:599.700000px;}
.xf2_c00347{left:600.900000px;}
.x131_c00347{left:601.950000px;}
.x15_c00347{left:604.800000px;}
.xd5_c00347{left:606.900000px;}
.xc9_c00347{left:608.100000px;}
.x8e_c00347{left:609.900000px;}
.x12c_c00347{left:611.850000px;}
.x60_c00347{left:614.700000px;}
.x75_c00347{left:616.800000px;}
.x22_c00347{left:619.350000px;}
.x47_c00347{left:622.350000px;}
.x121_c00347{left:626.100000px;}
.xa4_c00347{left:627.300000px;}
.x9a_c00347{left:631.200000px;}
.x76_c00347{left:634.050000px;}
.xb3_c00347{left:637.200000px;}
.x12d_c00347{left:640.350000px;}
.x38_c00347{left:641.700000px;}
.x84_c00347{left:642.750000px;}
.x11e_c00347{left:645.300000px;}
.x16_c00347{left:647.700000px;}
.x110_c00347{left:648.750000px;}
.xd9_c00347{left:651.000000px;}
.xfa_c00347{left:653.100000px;}
.xde_c00347{left:654.150000px;}
.x48_c00347{left:656.550000px;}
.xce_c00347{left:658.350000px;}
.xa5_c00347{left:661.200000px;}
.x122_c00347{left:662.400000px;}
.x56_c00347{left:664.200000px;}
.x8f_c00347{left:665.700000px;}
.x39_c00347{left:666.900000px;}
.x17_c00347{left:668.550000px;}
.xfb_c00347{left:670.800000px;}
.x23_c00347{left:672.600000px;}
.xb4_c00347{left:675.750000px;}
.x10a_c00347{left:681.300000px;}
.xeb_c00347{left:683.100000px;}
.x6b_c00347{left:686.100000px;}
.x49_c00347{left:688.950000px;}
.xbf_c00347{left:690.450000px;}
.x24_c00347{left:692.100000px;}
.x123_c00347{left:693.300000px;}
.x111_c00347{left:694.500000px;}
.x85_c00347{left:697.050000px;}
.x77_c00347{left:699.900000px;}
.xdf_c00347{left:701.250000px;}
.x30_c00347{left:702.450000px;}
.x90_c00347{left:703.500000px;}
.x18_c00347{left:706.050000px;}
.x9b_c00347{left:707.100000px;}
.x11f_c00347{left:710.100000px;}
.x61_c00347{left:711.150000px;}
.x86_c00347{left:712.500000px;}
.x124_c00347{left:713.850000px;}
.xcf_c00347{left:717.000000px;}
.x57_c00347{left:718.200000px;}
.xca_c00347{left:719.400000px;}
.x9c_c00347{left:722.550000px;}
.xa6_c00347{left:727.350000px;}
.x4_c00347{left:730.350000px;}
.x91_c00347{left:732.300000px;}
.xe3_c00347{left:735.150000px;}
.xf3_c00347{left:736.950000px;}
.xe0_c00347{left:739.050000px;}
.xfe_c00347{left:741.450000px;}
.xb5_c00347{left:747.000000px;}
.x6c_c00347{left:748.350000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.ls0_c00347{letter-spacing:0.000000pt;}
.ws6_c00347{word-spacing:-1.044674pt;}
.ws7_c00347{word-spacing:0.000000pt;}
.ws4_c00347{word-spacing:1.333333pt;}
.ws9_c00347{word-spacing:1.334977pt;}
.ws8_c00347{word-spacing:1.467015pt;}
.ws1_c00347{word-spacing:4.222222pt;}
.ws5_c00347{word-spacing:6.555556pt;}
.ws0_c00347{word-spacing:6.888889pt;}
.ws3_c00347{word-spacing:8.703476pt;}
.ws2_c00347{word-spacing:50.888889pt;}
._0_c00347{width:26.444444pt;}
.fs0_c00347{font-size:48.000000pt;}
.y0_c00347{bottom:0.000000pt;}
.y2d_c00347{bottom:118.666667pt;}
.y2c_c00347{bottom:133.466667pt;}
.y2b_c00347{bottom:146.933333pt;}
.y2a_c00347{bottom:160.933333pt;}
.y29_c00347{bottom:175.066667pt;}
.y28_c00347{bottom:189.066667pt;}
.y27_c00347{bottom:216.800000pt;}
.y26_c00347{bottom:234.666667pt;}
.y25_c00347{bottom:252.266667pt;}
.y24_c00347{bottom:270.133333pt;}
.y23_c00347{bottom:287.733333pt;}
.y22_c00347{bottom:305.600000pt;}
.y21_c00347{bottom:323.200000pt;}
.y20_c00347{bottom:340.800000pt;}
.y1f_c00347{bottom:358.666667pt;}
.y1e_c00347{bottom:376.800000pt;}
.y1d_c00347{bottom:394.400000pt;}
.y1c_c00347{bottom:412.000000pt;}
.y1b_c00347{bottom:429.866667pt;}
.y1a_c00347{bottom:447.733333pt;}
.y19_c00347{bottom:482.933333pt;}
.y18_c00347{bottom:500.800000pt;}
.y17_c00347{bottom:518.400000pt;}
.y16_c00347{bottom:536.266667pt;}
.y15_c00347{bottom:553.866667pt;}
.y14_c00347{bottom:571.866667pt;}
.y13_c00347{bottom:589.466667pt;}
.y12_c00347{bottom:607.333333pt;}
.y11_c00347{bottom:624.933333pt;}
.y10_c00347{bottom:642.533333pt;}
.yf_c00347{bottom:660.400000pt;}
.ye_c00347{bottom:678.266667pt;}
.yd_c00347{bottom:696.133333pt;}
.yc_c00347{bottom:713.733333pt;}
.yb_c00347{bottom:731.333333pt;}
.ya_c00347{bottom:749.200000pt;}
.y9_c00347{bottom:766.800000pt;}
.y8_c00347{bottom:784.666667pt;}
.y7_c00347{bottom:802.266667pt;}
.y6_c00347{bottom:819.866667pt;}
.y5_c00347{bottom:838.133333pt;}
.y4_c00347{bottom:855.733333pt;}
.y3_c00347{bottom:873.333333pt;}
.y2_c00347{bottom:890.933333pt;}
.y1_c00347{bottom:925.066667pt;}
.h2_c00347{height:48.000000pt;}
.h0_c00347{height:1037.119955pt;}
.h1_c00347{height:1037.333333pt;}
.w1_c00347{width:812.000000pt;}
.w0_c00347{width:812.159993pt;}
.x0_c00347{left:0.000000pt;}
.x5_c00347{left:80.666667pt;}
.xa7_c00347{left:81.733333pt;}
.xff_c00347{left:82.800000pt;}
.x92_c00347{left:97.733333pt;}
.x112_c00347{left:99.600000pt;}
.x19_c00347{left:100.933333pt;}
.xcb_c00347{left:102.133333pt;}
.xec_c00347{left:104.800000pt;}
.xb6_c00347{left:106.933333pt;}
.xad_c00347{left:108.800000pt;}
.x62_c00347{left:109.866667pt;}
.x10f_c00347{left:111.066667pt;}
.x4a_c00347{left:112.266667pt;}
.x87_c00347{left:115.866667pt;}
.x78_c00347{left:117.466667pt;}
.x10b_c00347{left:119.200000pt;}
.x6d_c00347{left:120.933333pt;}
.x25_c00347{left:122.400000pt;}
.xe4_c00347{left:123.333333pt;}
.x31_c00347{left:125.200000pt;}
.x128_c00347{left:126.133333pt;}
.x58_c00347{left:127.066667pt;}
.x6_c00347{left:128.400000pt;}
.x93_c00347{left:130.133333pt;}
.x79_c00347{left:133.200000pt;}
.xae_c00347{left:135.733333pt;}
.x4b_c00347{left:137.200000pt;}
.xd6_c00347{left:138.533333pt;}
.xfc_c00347{left:140.666667pt;}
.x3a_c00347{left:143.866667pt;}
.xc0_c00347{left:144.800000pt;}
.x32_c00347{left:145.733333pt;}
.x63_c00347{left:146.933333pt;}
.x7_c00347{left:148.533333pt;}
.xa8_c00347{left:149.866667pt;}
.x59_c00347{left:151.733333pt;}
.xb7_c00347{left:157.200000pt;}
.x11b_c00347{left:158.266667pt;}
.xda_c00347{left:161.466667pt;}
.x3b_c00347{left:163.333333pt;}
.xa9_c00347{left:167.733333pt;}
.xe5_c00347{left:168.800000pt;}
.x64_c00347{left:170.666667pt;}
.xb8_c00347{left:172.266667pt;}
.x8_c00347{left:173.866667pt;}
.xdb_c00347{left:174.933333pt;}
.x26_c00347{left:176.266667pt;}
.x7a_c00347{left:179.600000pt;}
.x113_c00347{left:181.866667pt;}
.xaf_c00347{left:183.066667pt;}
.x100_c00347{left:184.266667pt;}
.x103_c00347{left:187.600000pt;}
.x94_c00347{left:190.666667pt;}
.x6e_c00347{left:192.666667pt;}
.x129_c00347{left:194.533333pt;}
.x65_c00347{left:196.933333pt;}
.x7b_c00347{left:200.666667pt;}
.xcc_c00347{left:202.000000pt;}
.x9_c00347{left:203.600000pt;}
.xed_c00347{left:205.600000pt;}
.x108_c00347{left:206.533333pt;}
.x114_c00347{left:209.066667pt;}
.x9d_c00347{left:210.000000pt;}
.x3c_c00347{left:211.600000pt;}
.xb0_c00347{left:215.333333pt;}
.x6f_c00347{left:218.000000pt;}
.x95_c00347{left:219.466667pt;}
.xee_c00347{left:222.933333pt;}
.x33_c00347{left:226.400000pt;}
.xe6_c00347{left:227.333333pt;}
.xa_c00347{left:228.533333pt;}
.x88_c00347{left:230.133333pt;}
.x1a_c00347{left:231.466667pt;}
.xc1_c00347{left:233.066667pt;}
.xf4_c00347{left:235.333333pt;}
.x9e_c00347{left:238.133333pt;}
.x7c_c00347{left:239.733333pt;}
.x3d_c00347{left:241.333333pt;}
.x96_c00347{left:243.733333pt;}
.xaa_c00347{left:245.600000pt;}
.xc2_c00347{left:246.800000pt;}
.x106_c00347{left:248.266667pt;}
.x66_c00347{left:250.000000pt;}
.x7d_c00347{left:252.800000pt;}
.x4c_c00347{left:253.733333pt;}
.x27_c00347{left:256.000000pt;}
.x70_c00347{left:257.333333pt;}
.xdc_c00347{left:260.933333pt;}
.x3e_c00347{left:262.400000pt;}
.xf5_c00347{left:265.466667pt;}
.xd0_c00347{left:267.866667pt;}
.xe1_c00347{left:270.533333pt;}
.x97_c00347{left:271.600000pt;}
.x125_c00347{left:273.600000pt;}
.x28_c00347{left:275.466667pt;}
.x4d_c00347{left:278.666667pt;}
.xf6_c00347{left:280.800000pt;}
.xd7_c00347{left:281.866667pt;}
.x5a_c00347{left:282.933333pt;}
.x7e_c00347{left:284.133333pt;}
.x1b_c00347{left:286.133333pt;}
.xb_c00347{left:287.733333pt;}
.x1_c00347{left:289.333333pt;}
.x118_c00347{left:292.800000pt;}
.xc3_c00347{left:294.133333pt;}
.xd1_c00347{left:295.333333pt;}
.x10c_c00347{left:296.533333pt;}
.x34_c00347{left:297.733333pt;}
.x29_c00347{left:299.466667pt;}
.x67_c00347{left:301.200000pt;}
.x115_c00347{left:302.133333pt;}
.x7f_c00347{left:303.333333pt;}
.xef_c00347{left:304.666667pt;}
.x126_c00347{left:307.200000pt;}
.xfd_c00347{left:310.133333pt;}
.xd2_c00347{left:312.266667pt;}
.x3f_c00347{left:314.533333pt;}
.xe7_c00347{left:316.266667pt;}
.x104_c00347{left:317.866667pt;}
.x9f_c00347{left:319.466667pt;}
.xc_c00347{left:320.400000pt;}
.x12e_c00347{left:321.466667pt;}
.x101_c00347{left:322.933333pt;}
.x4e_c00347{left:325.066667pt;}
.x2a_c00347{left:327.333333pt;}
.x89_c00347{left:330.666667pt;}
.x80_c00347{left:332.133333pt;}
.x1c_c00347{left:333.466667pt;}
.xd_c00347{left:336.400000pt;}
.x5b_c00347{left:338.666667pt;}
.x11c_c00347{left:340.266667pt;}
.x4f_c00347{left:341.333333pt;}
.xe2_c00347{left:342.533333pt;}
.xb9_c00347{left:343.466667pt;}
.x40_c00347{left:344.666667pt;}
.xc4_c00347{left:345.600000pt;}
.x10d_c00347{left:346.800000pt;}
.x127_c00347{left:350.133333pt;}
.xe8_c00347{left:354.666667pt;}
.xf7_c00347{left:356.400000pt;}
.x2b_c00347{left:358.666667pt;}
.x41_c00347{left:360.933333pt;}
.xc5_c00347{left:364.133333pt;}
.x5c_c00347{left:366.133333pt;}
.x2_c00347{left:368.000000pt;}
.xf0_c00347{left:370.533333pt;}
.x71_c00347{left:373.600000pt;}
.x1d_c00347{left:374.800000pt;}
.x68_c00347{left:376.666667pt;}
.xe_c00347{left:378.933333pt;}
.x35_c00347{left:381.600000pt;}
.x8a_c00347{left:382.800000pt;}
.x3_c00347{left:385.866667pt;}
.x2c_c00347{left:387.200000pt;}
.x50_c00347{left:388.666667pt;}
.x42_c00347{left:390.400000pt;}
.x1e_c00347{left:393.066667pt;}
.xa0_c00347{left:394.133333pt;}
.x119_c00347{left:395.866667pt;}
.xf1_c00347{left:399.066667pt;}
.x116_c00347{left:400.400000pt;}
.x72_c00347{left:401.733333pt;}
.x69_c00347{left:403.200000pt;}
.xdd_c00347{left:404.266667pt;}
.xf_c00347{left:405.200000pt;}
.xf8_c00347{left:406.933333pt;}
.x43_c00347{left:408.000000pt;}
.x5d_c00347{left:409.066667pt;}
.x8b_c00347{left:410.266667pt;}
.x51_c00347{left:412.400000pt;}
.x105_c00347{left:413.600000pt;}
.xba_c00347{left:414.533333pt;}
.x98_c00347{left:415.733333pt;}
.x73_c00347{left:418.000000pt;}
.x2d_c00347{left:422.133333pt;}
.xbb_c00347{left:424.133333pt;}
.x52_c00347{left:425.866667pt;}
.x10_c00347{left:427.600000pt;}
.x44_c00347{left:428.533333pt;}
.x5e_c00347{left:430.533333pt;}
.x1f_c00347{left:432.133333pt;}
.x117_c00347{left:433.066667pt;}
.x10e_c00347{left:434.400000pt;}
.x8c_c00347{left:436.533333pt;}
.x81_c00347{left:438.000000pt;}
.x6a_c00347{left:440.266667pt;}
.x36_c00347{left:441.733333pt;}
.x2e_c00347{left:442.933333pt;}
.x107_c00347{left:446.666667pt;}
.xcd_c00347{left:449.200000pt;}
.xbc_c00347{left:451.333333pt;}
.xa1_c00347{left:452.400000pt;}
.xb1_c00347{left:454.000000pt;}
.xf9_c00347{left:456.933333pt;}
.x53_c00347{left:460.133333pt;}
.x11_c00347{left:462.133333pt;}
.xe9_c00347{left:463.466667pt;}
.x11a_c00347{left:464.933333pt;}
.x12f_c00347{left:466.933333pt;}
.xbd_c00347{left:468.000000pt;}
.x109_c00347{left:470.266667pt;}
.x12_c00347{left:471.733333pt;}
.xc6_c00347{left:472.933333pt;}
.xd3_c00347{left:474.533333pt;}
.x11d_c00347{left:475.600000pt;}
.xb2_c00347{left:477.066667pt;}
.x99_c00347{left:479.466667pt;}
.x12a_c00347{left:480.533333pt;}
.x102_c00347{left:481.600000pt;}
.x45_c00347{left:483.200000pt;}
.x2f_c00347{left:485.200000pt;}
.xc7_c00347{left:486.400000pt;}
.xea_c00347{left:488.133333pt;}
.x20_c00347{left:489.066667pt;}
.xab_c00347{left:492.000000pt;}
.xa2_c00347{left:494.266667pt;}
.x82_c00347{left:496.533333pt;}
.x13_c00347{left:498.000000pt;}
.x8d_c00347{left:498.933333pt;}
.x46_c00347{left:501.066667pt;}
.x120_c00347{left:505.066667pt;}
.x21_c00347{left:506.666667pt;}
.x37_c00347{left:508.266667pt;}
.x130_c00347{left:509.466667pt;}
.x54_c00347{left:510.400000pt;}
.x74_c00347{left:511.466667pt;}
.xc8_c00347{left:512.666667pt;}
.x14_c00347{left:514.933333pt;}
.xac_c00347{left:516.933333pt;}
.xd4_c00347{left:520.000000pt;}
.x5f_c00347{left:521.066667pt;}
.x83_c00347{left:524.666667pt;}
.xbe_c00347{left:526.800000pt;}
.xd8_c00347{left:527.733333pt;}
.xa3_c00347{left:528.800000pt;}
.x12b_c00347{left:530.133333pt;}
.x55_c00347{left:533.066667pt;}
.xf2_c00347{left:534.133333pt;}
.x131_c00347{left:535.066667pt;}
.x15_c00347{left:537.600000pt;}
.xd5_c00347{left:539.466667pt;}
.xc9_c00347{left:540.533333pt;}
.x8e_c00347{left:542.133333pt;}
.x12c_c00347{left:543.866667pt;}
.x60_c00347{left:546.400000pt;}
.x75_c00347{left:548.266667pt;}
.x22_c00347{left:550.533333pt;}
.x47_c00347{left:553.200000pt;}
.x121_c00347{left:556.533333pt;}
.xa4_c00347{left:557.600000pt;}
.x9a_c00347{left:561.066667pt;}
.x76_c00347{left:563.600000pt;}
.xb3_c00347{left:566.400000pt;}
.x12d_c00347{left:569.200000pt;}
.x38_c00347{left:570.400000pt;}
.x84_c00347{left:571.333333pt;}
.x11e_c00347{left:573.600000pt;}
.x16_c00347{left:575.733333pt;}
.x110_c00347{left:576.666667pt;}
.xd9_c00347{left:578.666667pt;}
.xfa_c00347{left:580.533333pt;}
.xde_c00347{left:581.466667pt;}
.x48_c00347{left:583.600000pt;}
.xce_c00347{left:585.200000pt;}
.xa5_c00347{left:587.733333pt;}
.x122_c00347{left:588.800000pt;}
.x56_c00347{left:590.400000pt;}
.x8f_c00347{left:591.733333pt;}
.x39_c00347{left:592.800000pt;}
.x17_c00347{left:594.266667pt;}
.xfb_c00347{left:596.266667pt;}
.x23_c00347{left:597.866667pt;}
.xb4_c00347{left:600.666667pt;}
.x10a_c00347{left:605.600000pt;}
.xeb_c00347{left:607.200000pt;}
.x6b_c00347{left:609.866667pt;}
.x49_c00347{left:612.400000pt;}
.xbf_c00347{left:613.733333pt;}
.x24_c00347{left:615.200000pt;}
.x123_c00347{left:616.266667pt;}
.x111_c00347{left:617.333333pt;}
.x85_c00347{left:619.600000pt;}
.x77_c00347{left:622.133333pt;}
.xdf_c00347{left:623.333333pt;}
.x30_c00347{left:624.400000pt;}
.x90_c00347{left:625.333333pt;}
.x18_c00347{left:627.600000pt;}
.x9b_c00347{left:628.533333pt;}
.x11f_c00347{left:631.200000pt;}
.x61_c00347{left:632.133333pt;}
.x86_c00347{left:633.333333pt;}
.x124_c00347{left:634.533333pt;}
.xcf_c00347{left:637.333333pt;}
.x57_c00347{left:638.400000pt;}
.xca_c00347{left:639.466667pt;}
.x9c_c00347{left:642.266667pt;}
.xa6_c00347{left:646.533333pt;}
.x4_c00347{left:649.200000pt;}
.x91_c00347{left:650.933333pt;}
.xe3_c00347{left:653.466667pt;}
.xf3_c00347{left:655.066667pt;}
.xe0_c00347{left:656.933333pt;}
.xfe_c00347{left:659.066667pt;}
.xb5_c00347{left:664.000000pt;}
.x6c_c00347{left:665.200000pt;}
}





/* 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_c00348 {
    display:none;
  }
  .loading-indicator_c00348.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00348 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_c00348 { 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_c00348" -> "#page-container .classname_c00348")
 */
.pf_c00348 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00348 { /* 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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00348 { /* 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_c00348 { /* 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_c00348 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00348 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00348 {overflow:visible;}
  }
}
.c_c00348 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00348 { /* 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_c00348:after { /* webkit #35443 */
  content: '';
}
.t_c00348:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00348 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 */
}
.__c00348 { /* 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_c00348 { /* info for Javascript */
  display:none;
}
.l_c00348 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00348 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00348 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00348: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_c00348 {
    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_c00348.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00348.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_c00348 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00348{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00348;src:url('chunks/assets/font_61a2dbaccd85e5c230bed072.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.000000;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;}
.m32_c00348{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m46_c00348{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m49_c00348{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00348{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m40_c00348{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00348{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m48_c00348{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m42_c00348{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00348{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00348{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00348{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m47_c00348{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00348{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m15_c00348{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00348{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m30_c00348{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m34_c00348{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m13_c00348{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m33_c00348{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m17_c00348{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m23_c00348{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9_c00348{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00348{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m35_c00348{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m25_c00348{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00348{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00348{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00348{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00348{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m10_c00348{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mc_c00348{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00348{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m43_c00348{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m44_c00348{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m37_c00348{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md_c00348{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m21_c00348{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m24_c00348{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m14_c00348{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00348{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00348{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.v0_c00348{vertical-align:0.000000px;}
.ls0_c00348{letter-spacing:0.000000px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{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__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00348{word-spacing:0.000000px;}
.ws1_c00348{word-spacing:0.277778px;}
.ws3_c00348{word-spacing:4.722222px;}
.ws2_c00348{word-spacing:7.857143px;}
.ws4_c00348{word-spacing:15.277778px;}
.ws0_c00348{word-spacing:41.052632px;}
.fc0_c00348{color:transparent;}
.fs0_c00348{font-size:60.000000px;}
.y0_c00348{bottom:0.000000px;}
.yc_c00348{bottom:790.500000px;}
.yb_c00348{bottom:829.650000px;}
.ya_c00348{bottom:849.750000px;}
.y9_c00348{bottom:869.550000px;}
.y8_c00348{bottom:889.350000px;}
.y7_c00348{bottom:909.450000px;}
.y6_c00348{bottom:929.550000px;}
.y5_c00348{bottom:949.350000px;}
.y4_c00348{bottom:969.150000px;}
.y3_c00348{bottom:988.950000px;}
.y2_c00348{bottom:1009.050000px;}
.y1_c00348{bottom:1047.600000px;}
.h2_c00348{height:60.000000px;}
.h0_c00348{height:1166.759949px;}
.h1_c00348{height:1167.000000px;}
.w1_c00348{width:913.500000px;}
.w0_c00348{width:913.679993px;}
.x0_c00348{left:0.000000px;}
.x60_c00348{left:161.850000px;}
.x3c_c00348{left:163.050000px;}
.x11_c00348{left:164.250000px;}
.x1_c00348{left:165.600000px;}
.x4b_c00348{left:182.400000px;}
.x12_c00348{left:188.400000px;}
.x68_c00348{left:191.400000px;}
.x2e_c00348{left:195.450000px;}
.x3_c00348{left:196.950000px;}
.x73_c00348{left:219.150000px;}
.x2f_c00348{left:225.300000px;}
.x4_c00348{left:226.800000px;}
.x3d_c00348{left:229.650000px;}
.x61_c00348{left:233.250000px;}
.x13_c00348{left:237.750000px;}
.x55_c00348{left:240.750000px;}
.x74_c00348{left:250.500000px;}
.x4c_c00348{left:254.400000px;}
.x69_c00348{left:259.800000px;}
.x22_c00348{left:262.650000px;}
.x3e_c00348{left:263.850000px;}
.x14_c00348{left:266.250000px;}
.x75_c00348{left:271.350000px;}
.x56_c00348{left:274.200000px;}
.x30_c00348{left:277.800000px;}
.x3f_c00348{left:287.550000px;}
.x23_c00348{left:289.350000px;}
.x31_c00348{left:295.050000px;}
.x76_c00348{left:301.200000px;}
.x15_c00348{left:306.600000px;}
.x24_c00348{left:322.050000px;}
.x16_c00348{left:323.850000px;}
.x32_c00348{left:331.350000px;}
.x40_c00348{left:340.500000px;}
.x25_c00348{left:341.850000px;}
.x17_c00348{left:345.150000px;}
.x5_c00348{left:347.400000px;}
.x4d_c00348{left:349.050000px;}
.x77_c00348{left:355.500000px;}
.x26_c00348{left:364.200000px;}
.x78_c00348{left:376.050000px;}
.x33_c00348{left:383.850000px;}
.x6_c00348{left:387.750000px;}
.x7c_c00348{left:393.450000px;}
.x7d_c00348{left:405.000000px;}
.x27_c00348{left:408.450000px;}
.x57_c00348{left:409.800000px;}
.x62_c00348{left:412.500000px;}
.x4e_c00348{left:415.200000px;}
.x7_c00348{left:424.050000px;}
.x28_c00348{left:429.000000px;}
.x34_c00348{left:431.700000px;}
.x79_c00348{left:435.150000px;}
.x58_c00348{left:441.900000px;}
.x7e_c00348{left:445.350000px;}
.x41_c00348{left:446.700000px;}
.x35_c00348{left:449.400000px;}
.x18_c00348{left:451.350000px;}
.x8_c00348{left:455.400000px;}
.x29_c00348{left:457.500000px;}
.x7f_c00348{left:460.050000px;}
.x2_c00348{left:462.600000px;}
.x59_c00348{left:464.250000px;}
.x36_c00348{left:468.900000px;}
.x4f_c00348{left:472.500000px;}
.x6a_c00348{left:480.000000px;}
.x63_c00348{left:484.050000px;}
.x19_c00348{left:489.450000px;}
.x50_c00348{left:494.850000px;}
.x64_c00348{left:499.200000px;}
.x42_c00348{left:501.000000px;}
.x1a_c00348{left:504.600000px;}
.x2a_c00348{left:512.250000px;}
.x6b_c00348{left:514.200000px;}
.x43_c00348{left:520.800000px;}
.x80_c00348{left:525.600000px;}
.x7a_c00348{left:532.050000px;}
.x5a_c00348{left:535.500000px;}
.x9_c00348{left:540.300000px;}
.x81_c00348{left:543.900000px;}
.x44_c00348{left:546.000000px;}
.x51_c00348{left:560.400000px;}
.x6c_c00348{left:568.650000px;}
.x82_c00348{left:572.400000px;}
.x37_c00348{left:575.550000px;}
.x2b_c00348{left:576.750000px;}
.x5b_c00348{left:590.250000px;}
.xa_c00348{left:591.450000px;}
.x7b_c00348{left:596.100000px;}
.x6d_c00348{left:597.150000px;}
.x38_c00348{left:604.050000px;}
.x45_c00348{left:611.550000px;}
.x5c_c00348{left:615.450000px;}
.x2c_c00348{left:616.650000px;}
.xb_c00348{left:619.500000px;}
.x1b_c00348{left:633.750000px;}
.x39_c00348{left:637.950000px;}
.x46_c00348{left:642.900000px;}
.x65_c00348{left:645.300000px;}
.x52_c00348{left:651.450000px;}
.x6e_c00348{left:653.700000px;}
.x1c_c00348{left:659.250000px;}
.xc_c00348{left:663.450000px;}
.x2d_c00348{left:670.050000px;}
.x66_c00348{left:678.450000px;}
.x6f_c00348{left:682.200000px;}
.xd_c00348{left:683.250000px;}
.x1d_c00348{left:685.200000px;}
.x5d_c00348{left:686.400000px;}
.x3a_c00348{left:695.850000px;}
.x70_c00348{left:707.700000px;}
.x53_c00348{left:708.750000px;}
.x1e_c00348{left:715.500000px;}
.x5e_c00348{left:719.850000px;}
.xe_c00348{left:727.200000px;}
.x47_c00348{left:732.150000px;}
.x5f_c00348{left:746.850000px;}
.x3b_c00348{left:751.650000px;}
.x1f_c00348{left:753.000000px;}
.x71_c00348{left:757.050000px;}
.x67_c00348{left:758.400000px;}
.x48_c00348{left:762.750000px;}
.x20_c00348{left:771.000000px;}
.x72_c00348{left:779.700000px;}
.xf_c00348{left:788.400000px;}
.x21_c00348{left:793.650000px;}
.x49_c00348{left:807.750000px;}
.x54_c00348{left:810.600000px;}
.x4a_c00348{left:818.550000px;}
.x10_c00348{left:819.750000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws5_c00348{word-spacing:0.000000pt;}
.ws1_c00348{word-spacing:0.246914pt;}
.ws3_c00348{word-spacing:4.197531pt;}
.ws2_c00348{word-spacing:6.984127pt;}
.ws4_c00348{word-spacing:13.580247pt;}
.ws0_c00348{word-spacing:36.491228pt;}
.fs0_c00348{font-size:53.333333pt;}
.y0_c00348{bottom:0.000000pt;}
.yc_c00348{bottom:702.666667pt;}
.yb_c00348{bottom:737.466667pt;}
.ya_c00348{bottom:755.333333pt;}
.y9_c00348{bottom:772.933333pt;}
.y8_c00348{bottom:790.533333pt;}
.y7_c00348{bottom:808.400000pt;}
.y6_c00348{bottom:826.266667pt;}
.y5_c00348{bottom:843.866667pt;}
.y4_c00348{bottom:861.466667pt;}
.y3_c00348{bottom:879.066667pt;}
.y2_c00348{bottom:896.933333pt;}
.y1_c00348{bottom:931.200000pt;}
.h2_c00348{height:53.333333pt;}
.h0_c00348{height:1037.119955pt;}
.h1_c00348{height:1037.333333pt;}
.w1_c00348{width:812.000000pt;}
.w0_c00348{width:812.159993pt;}
.x0_c00348{left:0.000000pt;}
.x60_c00348{left:143.866667pt;}
.x3c_c00348{left:144.933333pt;}
.x11_c00348{left:146.000000pt;}
.x1_c00348{left:147.200000pt;}
.x4b_c00348{left:162.133333pt;}
.x12_c00348{left:167.466667pt;}
.x68_c00348{left:170.133333pt;}
.x2e_c00348{left:173.733333pt;}
.x3_c00348{left:175.066667pt;}
.x73_c00348{left:194.800000pt;}
.x2f_c00348{left:200.266667pt;}
.x4_c00348{left:201.600000pt;}
.x3d_c00348{left:204.133333pt;}
.x61_c00348{left:207.333333pt;}
.x13_c00348{left:211.333333pt;}
.x55_c00348{left:214.000000pt;}
.x74_c00348{left:222.666667pt;}
.x4c_c00348{left:226.133333pt;}
.x69_c00348{left:230.933333pt;}
.x22_c00348{left:233.466667pt;}
.x3e_c00348{left:234.533333pt;}
.x14_c00348{left:236.666667pt;}
.x75_c00348{left:241.200000pt;}
.x56_c00348{left:243.733333pt;}
.x30_c00348{left:246.933333pt;}
.x3f_c00348{left:255.600000pt;}
.x23_c00348{left:257.200000pt;}
.x31_c00348{left:262.266667pt;}
.x76_c00348{left:267.733333pt;}
.x15_c00348{left:272.533333pt;}
.x24_c00348{left:286.266667pt;}
.x16_c00348{left:287.866667pt;}
.x32_c00348{left:294.533333pt;}
.x40_c00348{left:302.666667pt;}
.x25_c00348{left:303.866667pt;}
.x17_c00348{left:306.800000pt;}
.x5_c00348{left:308.800000pt;}
.x4d_c00348{left:310.266667pt;}
.x77_c00348{left:316.000000pt;}
.x26_c00348{left:323.733333pt;}
.x78_c00348{left:334.266667pt;}
.x33_c00348{left:341.200000pt;}
.x6_c00348{left:344.666667pt;}
.x7c_c00348{left:349.733333pt;}
.x7d_c00348{left:360.000000pt;}
.x27_c00348{left:363.066667pt;}
.x57_c00348{left:364.266667pt;}
.x62_c00348{left:366.666667pt;}
.x4e_c00348{left:369.066667pt;}
.x7_c00348{left:376.933333pt;}
.x28_c00348{left:381.333333pt;}
.x34_c00348{left:383.733333pt;}
.x79_c00348{left:386.800000pt;}
.x58_c00348{left:392.800000pt;}
.x7e_c00348{left:395.866667pt;}
.x41_c00348{left:397.066667pt;}
.x35_c00348{left:399.466667pt;}
.x18_c00348{left:401.200000pt;}
.x8_c00348{left:404.800000pt;}
.x29_c00348{left:406.666667pt;}
.x7f_c00348{left:408.933333pt;}
.x2_c00348{left:411.200000pt;}
.x59_c00348{left:412.666667pt;}
.x36_c00348{left:416.800000pt;}
.x4f_c00348{left:420.000000pt;}
.x6a_c00348{left:426.666667pt;}
.x63_c00348{left:430.266667pt;}
.x19_c00348{left:435.066667pt;}
.x50_c00348{left:439.866667pt;}
.x64_c00348{left:443.733333pt;}
.x42_c00348{left:445.333333pt;}
.x1a_c00348{left:448.533333pt;}
.x2a_c00348{left:455.333333pt;}
.x6b_c00348{left:457.066667pt;}
.x43_c00348{left:462.933333pt;}
.x80_c00348{left:467.200000pt;}
.x7a_c00348{left:472.933333pt;}
.x5a_c00348{left:476.000000pt;}
.x9_c00348{left:480.266667pt;}
.x81_c00348{left:483.466667pt;}
.x44_c00348{left:485.333333pt;}
.x51_c00348{left:498.133333pt;}
.x6c_c00348{left:505.466667pt;}
.x82_c00348{left:508.800000pt;}
.x37_c00348{left:511.600000pt;}
.x2b_c00348{left:512.666667pt;}
.x5b_c00348{left:524.666667pt;}
.xa_c00348{left:525.733333pt;}
.x7b_c00348{left:529.866667pt;}
.x6d_c00348{left:530.800000pt;}
.x38_c00348{left:536.933333pt;}
.x45_c00348{left:543.600000pt;}
.x5c_c00348{left:547.066667pt;}
.x2c_c00348{left:548.133333pt;}
.xb_c00348{left:550.666667pt;}
.x1b_c00348{left:563.333333pt;}
.x39_c00348{left:567.066667pt;}
.x46_c00348{left:571.466667pt;}
.x65_c00348{left:573.600000pt;}
.x52_c00348{left:579.066667pt;}
.x6e_c00348{left:581.066667pt;}
.x1c_c00348{left:586.000000pt;}
.xc_c00348{left:589.733333pt;}
.x2d_c00348{left:595.600000pt;}
.x66_c00348{left:603.066667pt;}
.x6f_c00348{left:606.400000pt;}
.xd_c00348{left:607.333333pt;}
.x1d_c00348{left:609.066667pt;}
.x5d_c00348{left:610.133333pt;}
.x3a_c00348{left:618.533333pt;}
.x70_c00348{left:629.066667pt;}
.x53_c00348{left:630.000000pt;}
.x1e_c00348{left:636.000000pt;}
.x5e_c00348{left:639.866667pt;}
.xe_c00348{left:646.400000pt;}
.x47_c00348{left:650.800000pt;}
.x5f_c00348{left:663.866667pt;}
.x3b_c00348{left:668.133333pt;}
.x1f_c00348{left:669.333333pt;}
.x71_c00348{left:672.933333pt;}
.x67_c00348{left:674.133333pt;}
.x48_c00348{left:678.000000pt;}
.x20_c00348{left:685.333333pt;}
.x72_c00348{left:693.066667pt;}
.xf_c00348{left:700.800000pt;}
.x21_c00348{left:705.466667pt;}
.x49_c00348{left:718.000000pt;}
.x54_c00348{left:720.533333pt;}
.x4a_c00348{left:727.600000pt;}
.x10_c00348{left:728.666667pt;}
}





/* 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_c00349 {
    display:none;
  }
  .loading-indicator_c00349.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00349 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_c00349 { 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_c00349" -> "#page-container .classname_c00349")
 */
.pf_c00349 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00349 { /* 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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00349 { /* 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_c00349 { /* 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_c00349 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00349 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00349 {overflow:visible;}
  }
}
.c_c00349 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00349 { /* 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_c00349:after { /* webkit #35443 */
  content: '';
}
.t_c00349:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00349 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 */
}
.__c00349 { /* 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_c00349 { /* info for Javascript */
  display:none;
}
.l_c00349 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00349 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00349 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00349: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_c00349 {
    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_c00349.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00349.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_c00349 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00349{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00349;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.000000;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;}
.m3f_c00349{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00349{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m45_c00349{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m75_c00349{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00349{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00349{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00349{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00349{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m93_c00349{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00349{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00349{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00349{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00349{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m89_c00349{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m50_c00349{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m69_c00349{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m12_c00349{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00349{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m72_c00349{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m97_c00349{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m65_c00349{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00349{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m86_c00349{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00349{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00349{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00349{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00349{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00349{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m13_c00349{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m34_c00349{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m74_c00349{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m44_c00349{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00349{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m66_c00349{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m36_c00349{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m56_c00349{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m83_c00349{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m96_c00349{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m88_c00349{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00349{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m91_c00349{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00349{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00349{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00349{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00349{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00349{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m21_c00349{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m46_c00349{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m40_c00349{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m68_c00349{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m82_c00349{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00349{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00349{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m87_c00349{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m81_c00349{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00349{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m61_c00349{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m85_c00349{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00349{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00349{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc_c00349{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00349{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00349{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m20_c00349{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00349{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m43_c00349{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00349{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m18_c00349{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00349{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m32_c00349{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m84_c00349{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m37_c00349{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17_c00349{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m59_c00349{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00349{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m14_c00349{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m11_c00349{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m58_c00349{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m27_c00349{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m67_c00349{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m76_c00349{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m22_c00349{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00349{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m31_c00349{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00349{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m23_c00349{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb_c00349{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m94_c00349{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m71_c00349{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m77_c00349{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m38_c00349{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00349{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m54_c00349{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m25_c00349{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m49_c00349{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m57_c00349{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m26_c00349{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m73_c00349{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00349{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m64_c00349{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m70_c00349{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m55_c00349{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m30_c00349{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00349{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m60_c00349{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m15_c00349{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m42_c00349{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m78_c00349{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c00349{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28_c00349{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00349{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m47_c00349{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m39_c00349{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00349{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m41_c00349{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m95_c00349{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m9_c00349{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m53_c00349{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16_c00349{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m35_c00349{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m79_c00349{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00349{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m51_c00349{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m48_c00349{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8_c00349{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m0_c00349{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m52_c00349{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m80_c00349{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00349{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00349{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma_c00349{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00349{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00349{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m33_c00349{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00349{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.me_c00349{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00349{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00349{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10_c00349{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m90_c00349{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00349{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00349{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00349{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m4_c00349{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352750,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358250,0.000000,0.000000,0.250000,0,0);}
.m1_c00349{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00349{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m92_c00349{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.v0_c00349{vertical-align:0.000000px;}
.ls0_c00349{letter-spacing:0.000000px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{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__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00349{word-spacing:-7.500000px;}
.ws6_c00349{word-spacing:0.000000px;}
.ws4_c00349{word-spacing:1.898734px;}
.ws0_c00349{word-spacing:4.696970px;}
.ws2_c00349{word-spacing:7.115385px;}
.ws5_c00349{word-spacing:10.625000px;}
.ws3_c00349{word-spacing:12.976190px;}
.fc0_c00349{color:transparent;}
.fs2_c00349{font-size:42.000000px;}
.fs1_c00349{font-size:60.000000px;}
.fs0_c00349{font-size:66.000000px;}
.y0_c00349{bottom:0.000000px;}
.y23_c00349{bottom:154.800000px;}
.y22_c00349{bottom:174.600000px;}
.y21_c00349{bottom:194.700000px;}
.y20_c00349{bottom:214.500000px;}
.y1f_c00349{bottom:234.300000px;}
.y1e_c00349{bottom:254.250000px;}
.y1d_c00349{bottom:274.800000px;}
.y1c_c00349{bottom:294.600000px;}
.y1b_c00349{bottom:315.150000px;}
.y1a_c00349{bottom:334.950000px;}
.y19_c00349{bottom:354.450000px;}
.y18_c00349{bottom:374.250000px;}
.y17_c00349{bottom:394.350000px;}
.y16_c00349{bottom:413.850000px;}
.y15_c00349{bottom:433.650000px;}
.y14_c00349{bottom:453.450000px;}
.y13_c00349{bottom:473.550000px;}
.y12_c00349{bottom:493.350000px;}
.y11_c00349{bottom:513.450000px;}
.y10_c00349{bottom:533.250000px;}
.yf_c00349{bottom:553.050000px;}
.ye_c00349{bottom:573.150000px;}
.yd_c00349{bottom:592.950000px;}
.yc_c00349{bottom:612.750000px;}
.yb_c00349{bottom:633.300000px;}
.ya_c00349{bottom:653.400000px;}
.y9_c00349{bottom:673.200000px;}
.y8_c00349{bottom:693.300000px;}
.y7_c00349{bottom:713.550000px;}
.y6_c00349{bottom:733.350000px;}
.y5_c00349{bottom:753.900000px;}
.y4_c00349{bottom:773.700000px;}
.y3_c00349{bottom:807.150000px;}
.y2_c00349{bottom:839.850000px;}
.y1_c00349{bottom:1052.700000px;}
.h4_c00349{height:42.000000px;}
.h3_c00349{height:60.000000px;}
.h2_c00349{height:66.000000px;}
.h0_c00349{height:1166.759949px;}
.h1_c00349{height:1167.000000px;}
.w1_c00349{width:913.500000px;}
.w0_c00349{width:913.679993px;}
.x0_c00349{left:0.000000px;}
.xf6_c00349{left:106.950000px;}
.xc7_c00349{left:108.150000px;}
.x9a_c00349{left:109.350000px;}
.x7a_c00349{left:110.850000px;}
.x9_c00349{left:112.650000px;}
.xbf_c00349{left:127.050000px;}
.xce_c00349{left:130.950000px;}
.x36_c00349{left:132.900000px;}
.x9b_c00349{left:134.550000px;}
.x18_c00349{left:135.600000px;}
.xa_c00349{left:137.850000px;}
.x105_c00349{left:138.900000px;}
.x25_c00349{left:140.400000px;}
.x3c_c00349{left:142.950000px;}
.x59_c00349{left:144.300000px;}
.xed_c00349{left:145.500000px;}
.x91_c00349{left:150.000000px;}
.xf7_c00349{left:153.750000px;}
.xaf_c00349{left:155.550000px;}
.x26_c00349{left:158.700000px;}
.xd6_c00349{left:160.950000px;}
.xcf_c00349{left:164.100000px;}
.x5a_c00349{left:165.600000px;}
.xe7_c00349{left:167.850000px;}
.x37_c00349{left:169.200000px;}
.x11c_c00349{left:170.250000px;}
.x7b_c00349{left:173.100000px;}
.x6d_c00349{left:174.900000px;}
.x3d_c00349{left:176.850000px;}
.x92_c00349{left:178.800000px;}
.xff_c00349{left:180.000000px;}
.xd0_c00349{left:181.050000px;}
.xee_c00349{left:182.550000px;}
.x19_c00349{left:184.500000px;}
.xd7_c00349{left:186.450000px;}
.x87_c00349{left:187.650000px;}
.x4a_c00349{left:189.150000px;}
.x63_c00349{left:191.850000px;}
.xea_c00349{left:193.500000px;}
.x5b_c00349{left:194.700000px;}
.xc8_c00349{left:197.100000px;}
.xb_c00349{left:199.350000px;}
.x7c_c00349{left:202.650000px;}
.x93_c00349{left:204.000000px;}
.x64_c00349{left:205.500000px;}
.x38_c00349{left:207.750000px;}
.xdf_c00349{left:209.550000px;}
.xc0_c00349{left:210.600000px;}
.x6e_c00349{left:213.000000px;}
.x1a_c00349{left:214.050000px;}
.x9c_c00349{left:215.100000px;}
.x3e_c00349{left:216.150000px;}
.x88_c00349{left:217.200000px;}
.xc_c00349{left:223.500000px;}
.x112_c00349{left:224.700000px;}
.xb0_c00349{left:226.800000px;}
.x65_c00349{left:233.550000px;}
.x27_c00349{left:234.600000px;}
.xa3_c00349{left:235.650000px;}
.xb1_c00349{left:239.100000px;}
.x89_c00349{left:243.900000px;}
.xeb_c00349{left:246.450000px;}
.xc1_c00349{left:247.650000px;}
.x113_c00349{left:249.600000px;}
.xd_c00349{left:253.800000px;}
.xef_c00349{left:259.500000px;}
.x116_c00349{left:261.000000px;}
.x10d_c00349{left:263.250000px;}
.xd1_c00349{left:266.250000px;}
.x28_c00349{left:267.300000px;}
.x9d_c00349{left:271.650000px;}
.x3f_c00349{left:275.250000px;}
.xa4_c00349{left:276.750000px;}
.xc9_c00349{left:278.100000px;}
.x4_c00349{left:279.750000px;}
.x4b_c00349{left:282.000000px;}
.x1b_c00349{left:289.650000px;}
.xc2_c00349{left:292.650000px;}
.x6f_c00349{left:294.750000px;}
.xe_c00349{left:295.950000px;}
.xa5_c00349{left:298.050000px;}
.x66_c00349{left:299.100000px;}
.x94_c00349{left:300.150000px;}
.x39_c00349{left:302.100000px;}
.xe0_c00349{left:303.150000px;}
.x7d_c00349{left:304.200000px;}
.x117_c00349{left:307.800000px;}
.xbc_c00349{left:310.200000px;}
.x106_c00349{left:312.750000px;}
.xf_c00349{left:315.750000px;}
.xf0_c00349{left:318.600000px;}
.xf8_c00349{left:319.650000px;}
.x29_c00349{left:321.000000px;}
.x5c_c00349{left:322.800000px;}
.xe1_c00349{left:324.000000px;}
.x4c_c00349{left:327.300000px;}
.x3a_c00349{left:334.500000px;}
.x70_c00349{left:336.450000px;}
.x7e_c00349{left:338.100000px;}
.x118_c00349{left:341.250000px;}
.x95_c00349{left:342.600000px;}
.xa6_c00349{left:344.550000px;}
.x2a_c00349{left:346.200000px;}
.x67_c00349{left:351.300000px;}
.x104_c00349{left:354.000000px;}
.x40_c00349{left:355.200000px;}
.x71_c00349{left:357.300000px;}
.x3b_c00349{left:360.000000px;}
.xf9_c00349{left:362.100000px;}
.x4d_c00349{left:363.600000px;}
.xb2_c00349{left:367.950000px;}
.xe8_c00349{left:370.950000px;}
.x5_c00349{left:373.050000px;}
.x10e_c00349{left:374.850000px;}
.xa7_c00349{left:375.900000px;}
.x2_c00349{left:378.000000px;}
.x1c_c00349{left:379.350000px;}
.xbd_c00349{left:381.150000px;}
.x41_c00349{left:383.700000px;}
.x96_c00349{left:386.400000px;}
.x7f_c00349{left:387.450000px;}
.x10_c00349{left:389.250000px;}
.xd8_c00349{left:391.650000px;}
.xf1_c00349{left:393.900000px;}
.xca_c00349{left:395.400000px;}
.x72_c00349{left:396.600000px;}
.xb3_c00349{left:398.850000px;}
.x2b_c00349{left:400.500000px;}
.x5d_c00349{left:404.250000px;}
.x68_c00349{left:407.850000px;}
.xd9_c00349{left:408.900000px;}
.x11_c00349{left:410.850000px;}
.x4e_c00349{left:412.200000px;}
.x100_c00349{left:413.250000px;}
.xa8_c00349{left:415.500000px;}
.xd2_c00349{left:416.700000px;}
.xc3_c00349{left:417.900000px;}
.x6_c00349{left:420.150000px;}
.x69_c00349{left:421.500000px;}
.xfa_c00349{left:423.600000px;}
.x2c_c00349{left:429.600000px;}
.xa9_c00349{left:430.950000px;}
.x1_c00349{left:434.850000px;}
.xd3_c00349{left:436.500000px;}
.xb4_c00349{left:437.700000px;}
.xcb_c00349{left:440.100000px;}
.xfb_c00349{left:443.700000px;}
.x6a_c00349{left:452.100000px;}
.x4f_c00349{left:453.900000px;}
.xe2_c00349{left:455.400000px;}
.x119_c00349{left:456.900000px;}
.x97_c00349{left:458.700000px;}
.x2d_c00349{left:461.250000px;}
.x3_c00349{left:462.300000px;}
.x80_c00349{left:464.550000px;}
.xda_c00349{left:465.750000px;}
.x42_c00349{left:468.000000px;}
.xb5_c00349{left:470.100000px;}
.x50_c00349{left:471.900000px;}
.x7_c00349{left:478.050000px;}
.x6b_c00349{left:479.100000px;}
.xaa_c00349{left:482.100000px;}
.x5e_c00349{left:485.550000px;}
.x10f_c00349{left:487.800000px;}
.xe3_c00349{left:491.100000px;}
.xb6_c00349{left:492.450000px;}
.x1d_c00349{left:493.500000px;}
.x11d_c00349{left:494.550000px;}
.x107_c00349{left:497.850000px;}
.x8a_c00349{left:499.050000px;}
.x51_c00349{left:501.000000px;}
.x73_c00349{left:502.050000px;}
.x2e_c00349{left:504.750000px;}
.x101_c00349{left:508.050000px;}
.xf2_c00349{left:509.400000px;}
.x12_c00349{left:511.350000px;}
.xc4_c00349{left:519.000000px;}
.x1e_c00349{left:521.250000px;}
.x2f_c00349{left:524.550000px;}
.x110_c00349{left:525.900000px;}
.x43_c00349{left:527.100000px;}
.xbe_c00349{left:533.100000px;}
.x108_c00349{left:534.900000px;}
.x74_c00349{left:536.250000px;}
.x8_c00349{left:537.750000px;}
.x52_c00349{left:539.550000px;}
.xb7_c00349{left:540.750000px;}
.xf3_c00349{left:542.550000px;}
.xdb_c00349{left:544.200000px;}
.x8b_c00349{left:549.750000px;}
.x13_c00349{left:551.250000px;}
.x98_c00349{left:553.650000px;}
.x44_c00349{left:555.600000px;}
.x53_c00349{left:557.250000px;}
.x30_c00349{left:559.050000px;}
.x11e_c00349{left:560.400000px;}
.x8c_c00349{left:563.100000px;}
.xb8_c00349{left:564.150000px;}
.x1f_c00349{left:568.050000px;}
.xc5_c00349{left:569.400000px;}
.x102_c00349{left:570.600000px;}
.xdc_c00349{left:572.250000px;}
.x75_c00349{left:573.300000px;}
.xcc_c00349{left:575.850000px;}
.x6c_c00349{left:578.400000px;}
.x54_c00349{left:581.700000px;}
.x9e_c00349{left:588.000000px;}
.x31_c00349{left:589.950000px;}
.x8d_c00349{left:591.150000px;}
.x20_c00349{left:593.550000px;}
.xc6_c00349{left:597.450000px;}
.xdd_c00349{left:598.500000px;}
.x76_c00349{left:601.350000px;}
.x81_c00349{left:603.900000px;}
.x5f_c00349{left:605.100000px;}
.x109_c00349{left:607.650000px;}
.xd4_c00349{left:611.250000px;}
.x55_c00349{left:612.300000px;}
.x8e_c00349{left:613.500000px;}
.x32_c00349{left:614.850000px;}
.x14_c00349{left:616.350000px;}
.xb9_c00349{left:618.450000px;}
.x45_c00349{left:620.100000px;}
.x82_c00349{left:621.900000px;}
.xfc_c00349{left:623.250000px;}
.xab_c00349{left:624.300000px;}
.x9f_c00349{left:626.850000px;}
.x77_c00349{left:630.450000px;}
.x33_c00349{left:632.550000px;}
.x60_c00349{left:635.400000px;}
.x15_c00349{left:638.250000px;}
.x114_c00349{left:640.350000px;}
.x11f_c00349{left:641.400000px;}
.xe4_c00349{left:643.050000px;}
.x56_c00349{left:649.050000px;}
.x46_c00349{left:651.750000px;}
.xf4_c00349{left:654.300000px;}
.x21_c00349{left:658.050000px;}
.x103_c00349{left:660.600000px;}
.x8f_c00349{left:663.150000px;}
.x83_c00349{left:666.150000px;}
.x47_c00349{left:667.950000px;}
.x34_c00349{left:672.150000px;}
.x22_c00349{left:674.250000px;}
.xfd_c00349{left:676.500000px;}
.xde_c00349{left:678.750000px;}
.x120_c00349{left:680.250000px;}
.x57_c00349{left:682.500000px;}
.xac_c00349{left:683.700000px;}
.x10a_c00349{left:686.250000px;}
.x84_c00349{left:687.450000px;}
.x99_c00349{left:691.800000px;}
.xba_c00349{left:693.300000px;}
.x61_c00349{left:694.500000px;}
.x115_c00349{left:699.000000px;}
.x35_c00349{left:700.650000px;}
.xa0_c00349{left:702.450000px;}
.x48_c00349{left:705.750000px;}
.xe5_c00349{left:706.800000px;}
.xad_c00349{left:709.650000px;}
.x23_c00349{left:711.750000px;}
.xd5_c00349{left:714.600000px;}
.x10b_c00349{left:715.800000px;}
.x111_c00349{left:717.000000px;}
.x78_c00349{left:718.800000px;}
.x62_c00349{left:720.750000px;}
.xbb_c00349{left:721.800000px;}
.xa1_c00349{left:723.000000px;}
.xec_c00349{left:724.050000px;}
.x58_c00349{left:726.000000px;}
.x85_c00349{left:727.800000px;}
.x11a_c00349{left:732.300000px;}
.x90_c00349{left:733.650000px;}
.x16_c00349{left:734.700000px;}
.x10c_c00349{left:737.100000px;}
.x79_c00349{left:739.350000px;}
.xf5_c00349{left:742.050000px;}
.xe6_c00349{left:743.100000px;}
.xae_c00349{left:744.150000px;}
.xa2_c00349{left:746.400000px;}
.x17_c00349{left:749.850000px;}
.x24_c00349{left:752.400000px;}
.xe9_c00349{left:753.900000px;}
.x11b_c00349{left:756.750000px;}
.x86_c00349{left:758.700000px;}
.x49_c00349{left:760.050000px;}
.xfe_c00349{left:761.400000px;}
.xcd_c00349{left:772.050000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws1_c00349{word-spacing:-6.666667pt;}
.ws6_c00349{word-spacing:0.000000pt;}
.ws4_c00349{word-spacing:1.687764pt;}
.ws0_c00349{word-spacing:4.175084pt;}
.ws2_c00349{word-spacing:6.324786pt;}
.ws5_c00349{word-spacing:9.444444pt;}
.ws3_c00349{word-spacing:11.534392pt;}
.fs2_c00349{font-size:37.333333pt;}
.fs1_c00349{font-size:53.333333pt;}
.fs0_c00349{font-size:58.666667pt;}
.y0_c00349{bottom:0.000000pt;}
.y23_c00349{bottom:137.600000pt;}
.y22_c00349{bottom:155.200000pt;}
.y21_c00349{bottom:173.066667pt;}
.y20_c00349{bottom:190.666667pt;}
.y1f_c00349{bottom:208.266667pt;}
.y1e_c00349{bottom:226.000000pt;}
.y1d_c00349{bottom:244.266667pt;}
.y1c_c00349{bottom:261.866667pt;}
.y1b_c00349{bottom:280.133333pt;}
.y1a_c00349{bottom:297.733333pt;}
.y19_c00349{bottom:315.066667pt;}
.y18_c00349{bottom:332.666667pt;}
.y17_c00349{bottom:350.533333pt;}
.y16_c00349{bottom:367.866667pt;}
.y15_c00349{bottom:385.466667pt;}
.y14_c00349{bottom:403.066667pt;}
.y13_c00349{bottom:420.933333pt;}
.y12_c00349{bottom:438.533333pt;}
.y11_c00349{bottom:456.400000pt;}
.y10_c00349{bottom:474.000000pt;}
.yf_c00349{bottom:491.600000pt;}
.ye_c00349{bottom:509.466667pt;}
.yd_c00349{bottom:527.066667pt;}
.yc_c00349{bottom:544.666667pt;}
.yb_c00349{bottom:562.933333pt;}
.ya_c00349{bottom:580.800000pt;}
.y9_c00349{bottom:598.400000pt;}
.y8_c00349{bottom:616.266667pt;}
.y7_c00349{bottom:634.266667pt;}
.y6_c00349{bottom:651.866667pt;}
.y5_c00349{bottom:670.133333pt;}
.y4_c00349{bottom:687.733333pt;}
.y3_c00349{bottom:717.466667pt;}
.y2_c00349{bottom:746.533333pt;}
.y1_c00349{bottom:935.733333pt;}
.h4_c00349{height:37.333333pt;}
.h3_c00349{height:53.333333pt;}
.h2_c00349{height:58.666667pt;}
.h0_c00349{height:1037.119955pt;}
.h1_c00349{height:1037.333333pt;}
.w1_c00349{width:812.000000pt;}
.w0_c00349{width:812.159993pt;}
.x0_c00349{left:0.000000pt;}
.xf6_c00349{left:95.066667pt;}
.xc7_c00349{left:96.133333pt;}
.x9a_c00349{left:97.200000pt;}
.x7a_c00349{left:98.533333pt;}
.x9_c00349{left:100.133333pt;}
.xbf_c00349{left:112.933333pt;}
.xce_c00349{left:116.400000pt;}
.x36_c00349{left:118.133333pt;}
.x9b_c00349{left:119.600000pt;}
.x18_c00349{left:120.533333pt;}
.xa_c00349{left:122.533333pt;}
.x105_c00349{left:123.466667pt;}
.x25_c00349{left:124.800000pt;}
.x3c_c00349{left:127.066667pt;}
.x59_c00349{left:128.266667pt;}
.xed_c00349{left:129.333333pt;}
.x91_c00349{left:133.333333pt;}
.xf7_c00349{left:136.666667pt;}
.xaf_c00349{left:138.266667pt;}
.x26_c00349{left:141.066667pt;}
.xd6_c00349{left:143.066667pt;}
.xcf_c00349{left:145.866667pt;}
.x5a_c00349{left:147.200000pt;}
.xe7_c00349{left:149.200000pt;}
.x37_c00349{left:150.400000pt;}
.x11c_c00349{left:151.333333pt;}
.x7b_c00349{left:153.866667pt;}
.x6d_c00349{left:155.466667pt;}
.x3d_c00349{left:157.200000pt;}
.x92_c00349{left:158.933333pt;}
.xff_c00349{left:160.000000pt;}
.xd0_c00349{left:160.933333pt;}
.xee_c00349{left:162.266667pt;}
.x19_c00349{left:164.000000pt;}
.xd7_c00349{left:165.733333pt;}
.x87_c00349{left:166.800000pt;}
.x4a_c00349{left:168.133333pt;}
.x63_c00349{left:170.533333pt;}
.xea_c00349{left:172.000000pt;}
.x5b_c00349{left:173.066667pt;}
.xc8_c00349{left:175.200000pt;}
.xb_c00349{left:177.200000pt;}
.x7c_c00349{left:180.133333pt;}
.x93_c00349{left:181.333333pt;}
.x64_c00349{left:182.666667pt;}
.x38_c00349{left:184.666667pt;}
.xdf_c00349{left:186.266667pt;}
.xc0_c00349{left:187.200000pt;}
.x6e_c00349{left:189.333333pt;}
.x1a_c00349{left:190.266667pt;}
.x9c_c00349{left:191.200000pt;}
.x3e_c00349{left:192.133333pt;}
.x88_c00349{left:193.066667pt;}
.xc_c00349{left:198.666667pt;}
.x112_c00349{left:199.733333pt;}
.xb0_c00349{left:201.600000pt;}
.x65_c00349{left:207.600000pt;}
.x27_c00349{left:208.533333pt;}
.xa3_c00349{left:209.466667pt;}
.xb1_c00349{left:212.533333pt;}
.x89_c00349{left:216.800000pt;}
.xeb_c00349{left:219.066667pt;}
.xc1_c00349{left:220.133333pt;}
.x113_c00349{left:221.866667pt;}
.xd_c00349{left:225.600000pt;}
.xef_c00349{left:230.666667pt;}
.x116_c00349{left:232.000000pt;}
.x10d_c00349{left:234.000000pt;}
.xd1_c00349{left:236.666667pt;}
.x28_c00349{left:237.600000pt;}
.x9d_c00349{left:241.466667pt;}
.x3f_c00349{left:244.666667pt;}
.xa4_c00349{left:246.000000pt;}
.xc9_c00349{left:247.200000pt;}
.x4_c00349{left:248.666667pt;}
.x4b_c00349{left:250.666667pt;}
.x1b_c00349{left:257.466667pt;}
.xc2_c00349{left:260.133333pt;}
.x6f_c00349{left:262.000000pt;}
.xe_c00349{left:263.066667pt;}
.xa5_c00349{left:264.933333pt;}
.x66_c00349{left:265.866667pt;}
.x94_c00349{left:266.800000pt;}
.x39_c00349{left:268.533333pt;}
.xe0_c00349{left:269.466667pt;}
.x7d_c00349{left:270.400000pt;}
.x117_c00349{left:273.600000pt;}
.xbc_c00349{left:275.733333pt;}
.x106_c00349{left:278.000000pt;}
.xf_c00349{left:280.666667pt;}
.xf0_c00349{left:283.200000pt;}
.xf8_c00349{left:284.133333pt;}
.x29_c00349{left:285.333333pt;}
.x5c_c00349{left:286.933333pt;}
.xe1_c00349{left:288.000000pt;}
.x4c_c00349{left:290.933333pt;}
.x3a_c00349{left:297.333333pt;}
.x70_c00349{left:299.066667pt;}
.x7e_c00349{left:300.533333pt;}
.x118_c00349{left:303.333333pt;}
.x95_c00349{left:304.533333pt;}
.xa6_c00349{left:306.266667pt;}
.x2a_c00349{left:307.733333pt;}
.x67_c00349{left:312.266667pt;}
.x104_c00349{left:314.666667pt;}
.x40_c00349{left:315.733333pt;}
.x71_c00349{left:317.600000pt;}
.x3b_c00349{left:320.000000pt;}
.xf9_c00349{left:321.866667pt;}
.x4d_c00349{left:323.200000pt;}
.xb2_c00349{left:327.066667pt;}
.xe8_c00349{left:329.733333pt;}
.x5_c00349{left:331.600000pt;}
.x10e_c00349{left:333.200000pt;}
.xa7_c00349{left:334.133333pt;}
.x2_c00349{left:336.000000pt;}
.x1c_c00349{left:337.200000pt;}
.xbd_c00349{left:338.800000pt;}
.x41_c00349{left:341.066667pt;}
.x96_c00349{left:343.466667pt;}
.x7f_c00349{left:344.400000pt;}
.x10_c00349{left:346.000000pt;}
.xd8_c00349{left:348.133333pt;}
.xf1_c00349{left:350.133333pt;}
.xca_c00349{left:351.466667pt;}
.x72_c00349{left:352.533333pt;}
.xb3_c00349{left:354.533333pt;}
.x2b_c00349{left:356.000000pt;}
.x5d_c00349{left:359.333333pt;}
.x68_c00349{left:362.533333pt;}
.xd9_c00349{left:363.466667pt;}
.x11_c00349{left:365.200000pt;}
.x4e_c00349{left:366.400000pt;}
.x100_c00349{left:367.333333pt;}
.xa8_c00349{left:369.333333pt;}
.xd2_c00349{left:370.400000pt;}
.xc3_c00349{left:371.466667pt;}
.x6_c00349{left:373.466667pt;}
.x69_c00349{left:374.666667pt;}
.xfa_c00349{left:376.533333pt;}
.x2c_c00349{left:381.866667pt;}
.xa9_c00349{left:383.066667pt;}
.x1_c00349{left:386.533333pt;}
.xd3_c00349{left:388.000000pt;}
.xb4_c00349{left:389.066667pt;}
.xcb_c00349{left:391.200000pt;}
.xfb_c00349{left:394.400000pt;}
.x6a_c00349{left:401.866667pt;}
.x4f_c00349{left:403.466667pt;}
.xe2_c00349{left:404.800000pt;}
.x119_c00349{left:406.133333pt;}
.x97_c00349{left:407.733333pt;}
.x2d_c00349{left:410.000000pt;}
.x3_c00349{left:410.933333pt;}
.x80_c00349{left:412.933333pt;}
.xda_c00349{left:414.000000pt;}
.x42_c00349{left:416.000000pt;}
.xb5_c00349{left:417.866667pt;}
.x50_c00349{left:419.466667pt;}
.x7_c00349{left:424.933333pt;}
.x6b_c00349{left:425.866667pt;}
.xaa_c00349{left:428.533333pt;}
.x5e_c00349{left:431.600000pt;}
.x10f_c00349{left:433.600000pt;}
.xe3_c00349{left:436.533333pt;}
.xb6_c00349{left:437.733333pt;}
.x1d_c00349{left:438.666667pt;}
.x11d_c00349{left:439.600000pt;}
.x107_c00349{left:442.533333pt;}
.x8a_c00349{left:443.600000pt;}
.x51_c00349{left:445.333333pt;}
.x73_c00349{left:446.266667pt;}
.x2e_c00349{left:448.666667pt;}
.x101_c00349{left:451.600000pt;}
.xf2_c00349{left:452.800000pt;}
.x12_c00349{left:454.533333pt;}
.xc4_c00349{left:461.333333pt;}
.x1e_c00349{left:463.333333pt;}
.x2f_c00349{left:466.266667pt;}
.x110_c00349{left:467.466667pt;}
.x43_c00349{left:468.533333pt;}
.xbe_c00349{left:473.866667pt;}
.x108_c00349{left:475.466667pt;}
.x74_c00349{left:476.666667pt;}
.x8_c00349{left:478.000000pt;}
.x52_c00349{left:479.600000pt;}
.xb7_c00349{left:480.666667pt;}
.xf3_c00349{left:482.266667pt;}
.xdb_c00349{left:483.733333pt;}
.x8b_c00349{left:488.666667pt;}
.x13_c00349{left:490.000000pt;}
.x98_c00349{left:492.133333pt;}
.x44_c00349{left:493.866667pt;}
.x53_c00349{left:495.333333pt;}
.x30_c00349{left:496.933333pt;}
.x11e_c00349{left:498.133333pt;}
.x8c_c00349{left:500.533333pt;}
.xb8_c00349{left:501.466667pt;}
.x1f_c00349{left:504.933333pt;}
.xc5_c00349{left:506.133333pt;}
.x102_c00349{left:507.200000pt;}
.xdc_c00349{left:508.666667pt;}
.x75_c00349{left:509.600000pt;}
.xcc_c00349{left:511.866667pt;}
.x6c_c00349{left:514.133333pt;}
.x54_c00349{left:517.066667pt;}
.x9e_c00349{left:522.666667pt;}
.x31_c00349{left:524.400000pt;}
.x8d_c00349{left:525.466667pt;}
.x20_c00349{left:527.600000pt;}
.xc6_c00349{left:531.066667pt;}
.xdd_c00349{left:532.000000pt;}
.x76_c00349{left:534.533333pt;}
.x81_c00349{left:536.800000pt;}
.x5f_c00349{left:537.866667pt;}
.x109_c00349{left:540.133333pt;}
.xd4_c00349{left:543.333333pt;}
.x55_c00349{left:544.266667pt;}
.x8e_c00349{left:545.333333pt;}
.x32_c00349{left:546.533333pt;}
.x14_c00349{left:547.866667pt;}
.xb9_c00349{left:549.733333pt;}
.x45_c00349{left:551.200000pt;}
.x82_c00349{left:552.800000pt;}
.xfc_c00349{left:554.000000pt;}
.xab_c00349{left:554.933333pt;}
.x9f_c00349{left:557.200000pt;}
.x77_c00349{left:560.400000pt;}
.x33_c00349{left:562.266667pt;}
.x60_c00349{left:564.800000pt;}
.x15_c00349{left:567.333333pt;}
.x114_c00349{left:569.200000pt;}
.x11f_c00349{left:570.133333pt;}
.xe4_c00349{left:571.600000pt;}
.x56_c00349{left:576.933333pt;}
.x46_c00349{left:579.333333pt;}
.xf4_c00349{left:581.600000pt;}
.x21_c00349{left:584.933333pt;}
.x103_c00349{left:587.200000pt;}
.x8f_c00349{left:589.466667pt;}
.x83_c00349{left:592.133333pt;}
.x47_c00349{left:593.733333pt;}
.x34_c00349{left:597.466667pt;}
.x22_c00349{left:599.333333pt;}
.xfd_c00349{left:601.333333pt;}
.xde_c00349{left:603.333333pt;}
.x120_c00349{left:604.666667pt;}
.x57_c00349{left:606.666667pt;}
.xac_c00349{left:607.733333pt;}
.x10a_c00349{left:610.000000pt;}
.x84_c00349{left:611.066667pt;}
.x99_c00349{left:614.933333pt;}
.xba_c00349{left:616.266667pt;}
.x61_c00349{left:617.333333pt;}
.x115_c00349{left:621.333333pt;}
.x35_c00349{left:622.800000pt;}
.xa0_c00349{left:624.400000pt;}
.x48_c00349{left:627.333333pt;}
.xe5_c00349{left:628.266667pt;}
.xad_c00349{left:630.800000pt;}
.x23_c00349{left:632.666667pt;}
.xd5_c00349{left:635.200000pt;}
.x10b_c00349{left:636.266667pt;}
.x111_c00349{left:637.333333pt;}
.x78_c00349{left:638.933333pt;}
.x62_c00349{left:640.666667pt;}
.xbb_c00349{left:641.600000pt;}
.xa1_c00349{left:642.666667pt;}
.xec_c00349{left:643.600000pt;}
.x58_c00349{left:645.333333pt;}
.x85_c00349{left:646.933333pt;}
.x11a_c00349{left:650.933333pt;}
.x90_c00349{left:652.133333pt;}
.x16_c00349{left:653.066667pt;}
.x10c_c00349{left:655.200000pt;}
.x79_c00349{left:657.200000pt;}
.xf5_c00349{left:659.600000pt;}
.xe6_c00349{left:660.533333pt;}
.xae_c00349{left:661.466667pt;}
.xa2_c00349{left:663.466667pt;}
.x17_c00349{left:666.533333pt;}
.x24_c00349{left:668.800000pt;}
.xe9_c00349{left:670.133333pt;}
.x11b_c00349{left:672.666667pt;}
.x86_c00349{left:674.400000pt;}
.x49_c00349{left:675.600000pt;}
.xfe_c00349{left:676.800000pt;}
.xcd_c00349{left:686.266667pt;}
}





/* 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_c00350 {
    display:none;
  }
  .loading-indicator_c00350.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00350 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_c00350 { 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_c00350" -> "#page-container .classname_c00350")
 */
.pf_c00350 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00350 { /* 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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00350 { /* 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_c00350 { /* 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_c00350 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00350 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00350 {overflow:visible;}
  }
}
.c_c00350 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00350 { /* 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_c00350:after { /* webkit #35443 */
  content: '';
}
.t_c00350:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00350 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 */
}
.__c00350 { /* 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_c00350 { /* info for Javascript */
  display:none;
}
.l_c00350 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00350 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00350 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00350: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_c00350 {
    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_c00350.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00350.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_c00350 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00350{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00350;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.000000;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;}
.maa_c00350{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m79_c00350{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m31_c00350{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00350{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00350{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m76_c00350{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mac_c00350{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00350{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00350{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4_c00350{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m89_c00350{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00350{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5_c00350{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00350{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00350{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m40_c00350{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00350{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mad_c00350{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00350{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m62_c00350{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m77_c00350{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00350{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00350{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00350{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mae_c00350{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m21_c00350{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m71_c00350{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m96_c00350{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00350{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00350{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maf_c00350{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m67_c00350{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00350{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m63_c00350{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00350{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00350{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00350{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00350{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m59_c00350{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00350{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c00350{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00350{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m83_c00350{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m22_c00350{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00350{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m85_c00350{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00350{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m68_c00350{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m36_c00350{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m23_c00350{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10_c00350{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m86_c00350{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.ma_c00350{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m42_c00350{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m45_c00350{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00350{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00350{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m44_c00350{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m56_c00350{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00350{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m47_c00350{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m32_c00350{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m19_c00350{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00350{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00350{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m16_c00350{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m46_c00350{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m25_c00350{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m48_c00350{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m11_c00350{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6_c00350{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00350{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m20_c00350{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00350{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m37_c00350{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00350{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3_c00350{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m50_c00350{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m51_c00350{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m26_c00350{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m90_c00350{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m41_c00350{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m12_c00350{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m8_c00350{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m91_c00350{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m64_c00350{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m53_c00350{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00350{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m61_c00350{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m34_c00350{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00350{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mf_c00350{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00350{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m17_c00350{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m94_c00350{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00350{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);}
.m14_c00350{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m73_c00350{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27_c00350{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00350{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me_c00350{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00350{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00350{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00350{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m81_c00350{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00350{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00350{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.mc_c00350{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00350{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00350{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m29_c00350{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00350{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m78_c00350{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m65_c00350{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00350{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00350{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1_c00350{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m55_c00350{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00350{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00350{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00350{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m93_c00350{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c00350{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m87_c00350{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m52_c00350{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m97_c00350{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00350{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m58_c00350{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m72_c00350{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00350{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00350{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m66_c00350{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00350{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m74_c00350{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9_c00350{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m28_c00350{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m80_c00350{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m57_c00350{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00350{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m60_c00350{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m38_c00350{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00350{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00350{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00350{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c00350{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m39_c00350{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00350{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m18_c00350{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00350{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.mb_c00350{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00350{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00350{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m84_c00350{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m2_c00350{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.md_c00350{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m35_c00350{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c00350{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00350{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00350{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00350{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m49_c00350{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m30_c00350{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00350{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m95_c00350{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00350{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00350{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m33_c00350{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00350{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00350{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m99_c00350{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m24_c00350{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00350{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m92_c00350{transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322000,0.000000,0.000000,0.250000,0,0);}
.m54_c00350{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00350{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m75_c00350{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m69_c00350{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m82_c00350{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m98_c00350{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m88_c00350{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00350{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00350{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00350{vertical-align:0.000000px;}
.ls0_c00350{letter-spacing:0.000000px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{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__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00350{word-spacing:-4.750000px;}
.wsa_c00350{word-spacing:-1.024390px;}
.wsb_c00350{word-spacing:0.000000px;}
.ws9_c00350{word-spacing:0.124498px;}
.ws7_c00350{word-spacing:3.692308px;}
.ws8_c00350{word-spacing:5.597938px;}
.ws1_c00350{word-spacing:7.500000px;}
.ws5_c00350{word-spacing:8.875000px;}
.ws2_c00350{word-spacing:12.764057px;}
.ws3_c00350{word-spacing:22.500000px;}
.ws6_c00350{word-spacing:36.000000px;}
.ws0_c00350{word-spacing:825.750000px;}
.fc0_c00350{color:transparent;}
.fs0_c00350{font-size:54.000000px;}
.y0_c00350{bottom:0.000000px;}
.y2b_c00350{bottom:153.750000px;}
.y2a_c00350{bottom:169.500000px;}
.y29_c00350{bottom:185.400000px;}
.y28_c00350{bottom:200.850000px;}
.y27_c00350{bottom:217.050000px;}
.y26_c00350{bottom:256.200000px;}
.y25_c00350{bottom:276.000000px;}
.y24_c00350{bottom:296.100000px;}
.y23_c00350{bottom:315.900000px;}
.y22_c00350{bottom:335.700000px;}
.y21_c00350{bottom:355.800000px;}
.y20_c00350{bottom:375.600000px;}
.y1f_c00350{bottom:395.400000px;}
.y1e_c00350{bottom:415.500000px;}
.y1d_c00350{bottom:435.300000px;}
.y1c_c00350{bottom:454.650000px;}
.y1b_c00350{bottom:475.200000px;}
.y1a_c00350{bottom:495.300000px;}
.y19_c00350{bottom:514.350000px;}
.y18_c00350{bottom:535.650000px;}
.y17_c00350{bottom:555.450000px;}
.y16_c00350{bottom:592.650000px;}
.y15_c00350{bottom:612.750000px;}
.y14_c00350{bottom:633.300000px;}
.y13_c00350{bottom:652.350000px;}
.y12_c00350{bottom:672.450000px;}
.y11_c00350{bottom:692.250000px;}
.y10_c00350{bottom:712.350000px;}
.yf_c00350{bottom:732.150000px;}
.ye_c00350{bottom:752.700000px;}
.yd_c00350{bottom:772.500000px;}
.yc_c00350{bottom:812.850000px;}
.yb_c00350{bottom:832.950000px;}
.ya_c00350{bottom:852.750000px;}
.y9_c00350{bottom:872.850000px;}
.y8_c00350{bottom:892.650000px;}
.y7_c00350{bottom:912.750000px;}
.y6_c00350{bottom:932.550000px;}
.y5_c00350{bottom:952.650000px;}
.y4_c00350{bottom:972.750000px;}
.y3_c00350{bottom:992.550000px;}
.y2_c00350{bottom:1012.350000px;}
.y1_c00350{bottom:1050.150000px;}
.h2_c00350{height:54.000000px;}
.h0_c00350{height:1166.759949px;}
.h1_c00350{height:1167.000000px;}
.w1_c00350{width:913.500000px;}
.w0_c00350{width:913.679993px;}
.x0_c00350{left:0.000000px;}
.x129_c00350{left:145.800000px;}
.x14_c00350{left:147.600000px;}
.x2_c00350{left:148.650000px;}
.x1_c00350{left:149.700000px;}
.xd6_c00350{left:164.850000px;}
.xf6_c00350{left:166.050000px;}
.xb3_c00350{left:167.250000px;}
.xd1_c00350{left:168.300000px;}
.x122_c00350{left:173.850000px;}
.x1f_c00350{left:175.200000px;}
.x7f_c00350{left:178.950000px;}
.xc9_c00350{left:180.000000px;}
.x64_c00350{left:181.650000px;}
.x37_c00350{left:183.300000px;}
.x45_c00350{left:185.250000px;}
.x115_c00350{left:187.500000px;}
.x88_c00350{left:189.150000px;}
.xd7_c00350{left:190.350000px;}
.x6e_c00350{left:193.650000px;}
.x112_c00350{left:195.900000px;}
.xad_c00350{left:197.400000px;}
.xa1_c00350{left:198.900000px;}
.x51_c00350{left:203.400000px;}
.x46_c00350{left:206.550000px;}
.x80_c00350{left:208.500000px;}
.xb6_c00350{left:210.900000px;}
.x38_c00350{left:212.100000px;}
.x3_c00350{left:213.750000px;}
.x2c_c00350{left:215.700000px;}
.x100_c00350{left:217.500000px;}
.x11a_c00350{left:218.850000px;}
.x65_c00350{left:221.550000px;}
.x6f_c00350{left:222.750000px;}
.xae_c00350{left:225.150000px;}
.xf0_c00350{left:227.550000px;}
.xd2_c00350{left:229.500000px;}
.x10f_c00350{left:231.600000px;}
.x11c_c00350{left:235.500000px;}
.x4_c00350{left:237.450000px;}
.xe6_c00350{left:238.500000px;}
.x20_c00350{left:241.500000px;}
.xca_c00350{left:242.700000px;}
.x78_c00350{left:245.100000px;}
.xa2_c00350{left:246.450000px;}
.x47_c00350{left:247.650000px;}
.xfa_c00350{left:249.000000px;}
.x70_c00350{left:250.050000px;}
.x11d_c00350{left:251.400000px;}
.x101_c00350{left:255.000000px;}
.xe7_c00350{left:259.800000px;}
.x52_c00350{left:263.100000px;}
.x21_c00350{left:264.150000px;}
.x81_c00350{left:265.800000px;}
.x39_c00350{left:267.900000px;}
.x2d_c00350{left:268.950000px;}
.x66_c00350{left:270.450000px;}
.x79_c00350{left:273.600000px;}
.x99_c00350{left:275.400000px;}
.x123_c00350{left:278.100000px;}
.x82_c00350{left:280.500000px;}
.x71_c00350{left:281.700000px;}
.x116_c00350{left:282.900000px;}
.x5_c00350{left:284.250000px;}
.x58_c00350{left:286.350000px;}
.xc5_c00350{left:289.500000px;}
.x15_c00350{left:290.550000px;}
.xf1_c00350{left:292.800000px;}
.xa3_c00350{left:295.050000px;}
.xf7_c00350{left:296.400000px;}
.x102_c00350{left:299.250000px;}
.x6_c00350{left:301.950000px;}
.x48_c00350{left:304.200000px;}
.x110_c00350{left:305.400000px;}
.x59_c00350{left:306.450000px;}
.xb4_c00350{left:307.650000px;}
.xb7_c00350{left:309.450000px;}
.x72_c00350{left:313.800000px;}
.x11b_c00350{left:315.750000px;}
.xe8_c00350{left:317.100000px;}
.xa4_c00350{left:319.500000px;}
.x7_c00350{left:320.700000px;}
.xe9_c00350{left:323.700000px;}
.x11e_c00350{left:325.950000px;}
.x7a_c00350{left:327.600000px;}
.x3a_c00350{left:329.400000px;}
.xbf_c00350{left:331.500000px;}
.x49_c00350{left:334.050000px;}
.xb5_c00350{left:335.700000px;}
.x2e_c00350{left:337.350000px;}
.x22_c00350{left:338.700000px;}
.x83_c00350{left:341.400000px;}
.x5a_c00350{left:344.250000px;}
.x67_c00350{left:347.550000px;}
.xaf_c00350{left:348.600000px;}
.xc0_c00350{left:351.300000px;}
.x4a_c00350{left:353.550000px;}
.x113_c00350{left:355.050000px;}
.xd9_c00350{left:356.100000px;}
.xb8_c00350{left:361.050000px;}
.x73_c00350{left:363.900000px;}
.x2f_c00350{left:365.400000px;}
.x103_c00350{left:367.950000px;}
.x91_c00350{left:369.300000px;}
.x84_c00350{left:370.950000px;}
.x109_c00350{left:373.950000px;}
.x7b_c00350{left:375.150000px;}
.x53_c00350{left:376.500000px;}
.xf2_c00350{left:378.150000px;}
.x23_c00350{left:379.350000px;}
.x8_c00350{left:380.400000px;}
.xc6_c00350{left:381.600000px;}
.x89_c00350{left:382.650000px;}
.x9a_c00350{left:383.700000px;}
.x68_c00350{left:385.650000px;}
.x74_c00350{left:388.800000px;}
.x92_c00350{left:390.600000px;}
.xcb_c00350{left:391.800000px;}
.x5b_c00350{left:392.850000px;}
.x7c_c00350{left:395.250000px;}
.xfb_c00350{left:397.050000px;}
.x104_c00350{left:398.250000px;}
.x9_c00350{left:399.900000px;}
.x11f_c00350{left:403.650000px;}
.x16_c00350{left:407.550000px;}
.xb0_c00350{left:411.300000px;}
.xc7_c00350{left:412.500000px;}
.xfc_c00350{left:414.000000px;}
.x75_c00350{left:415.800000px;}
.xd8_c00350{left:418.050000px;}
.xcc_c00350{left:419.550000px;}
.x3b_c00350{left:421.200000px;}
.x9b_c00350{left:423.600000px;}
.x54_c00350{left:426.150000px;}
.xa_c00350{left:427.200000px;}
.xd3_c00350{left:428.550000px;}
.xa5_c00350{left:431.100000px;}
.x124_c00350{left:433.200000px;}
.x24_c00350{left:435.150000px;}
.x30_c00350{left:437.100000px;}
.xda_c00350{left:446.100000px;}
.x5c_c00350{left:448.350000px;}
.xb1_c00350{left:450.150000px;}
.xa6_c00350{left:451.200000px;}
.x117_c00350{left:452.400000px;}
.x9c_c00350{left:454.950000px;}
.x4b_c00350{left:457.200000px;}
.xb9_c00350{left:459.300000px;}
.x3c_c00350{left:460.500000px;}
.x7d_c00350{left:463.350000px;}
.x10a_c00350{left:464.700000px;}
.xc8_c00350{left:466.800000px;}
.x8a_c00350{left:469.050000px;}
.x76_c00350{left:471.300000px;}
.xea_c00350{left:472.350000px;}
.xdb_c00350{left:477.000000px;}
.x85_c00350{left:478.950000px;}
.xa7_c00350{left:480.000000px;}
.xfd_c00350{left:482.100000px;}
.x93_c00350{left:484.200000px;}
.xe1_c00350{left:486.900000px;}
.xc1_c00350{left:490.350000px;}
.x8b_c00350{left:492.450000px;}
.x25_c00350{left:494.850000px;}
.xcd_c00350{left:496.650000px;}
.x55_c00350{left:498.750000px;}
.xeb_c00350{left:500.100000px;}
.x17_c00350{left:502.650000px;}
.x69_c00350{left:505.800000px;}
.xf8_c00350{left:507.000000px;}
.x118_c00350{left:508.800000px;}
.x125_c00350{left:509.850000px;}
.x3d_c00350{left:511.200000px;}
.x4c_c00350{left:514.050000px;}
.xe2_c00350{left:516.000000px;}
.x10b_c00350{left:517.200000px;}
.xa8_c00350{left:519.600000px;}
.xba_c00350{left:521.250000px;}
.xb_c00350{left:522.900000px;}
.x126_c00350{left:525.300000px;}
.x6a_c00350{left:527.400000px;}
.xce_c00350{left:529.350000px;}
.x8c_c00350{left:532.350000px;}
.xd4_c00350{left:537.300000px;}
.xdc_c00350{left:538.950000px;}
.x3e_c00350{left:540.000000px;}
.x31_c00350{left:541.500000px;}
.x86_c00350{left:543.000000px;}
.xc_c00350{left:544.500000px;}
.xa9_c00350{left:545.550000px;}
.x7e_c00350{left:546.900000px;}
.x18_c00350{left:549.450000px;}
.x120_c00350{left:550.800000px;}
.x105_c00350{left:552.750000px;}
.xf3_c00350{left:554.250000px;}
.x6b_c00350{left:556.200000px;}
.x56_c00350{left:557.400000px;}
.x9d_c00350{left:559.050000px;}
.x26_c00350{left:563.250000px;}
.x5d_c00350{left:564.300000px;}
.x10c_c00350{left:565.350000px;}
.x19_c00350{left:568.500000px;}
.x32_c00350{left:569.550000px;}
.xec_c00350{left:570.600000px;}
.xd5_c00350{left:574.350000px;}
.xd_c00350{left:576.150000px;}
.xbb_c00350{left:578.100000px;}
.x3f_c00350{left:579.600000px;}
.xaa_c00350{left:582.600000px;}
.x5e_c00350{left:583.800000px;}
.x106_c00350{left:584.850000px;}
.x127_c00350{left:586.500000px;}
.x9e_c00350{left:590.700000px;}
.x94_c00350{left:594.000000px;}
.x1a_c00350{left:595.200000px;}
.xbc_c00350{left:597.900000px;}
.xcf_c00350{left:602.400000px;}
.x10d_c00350{left:604.650000px;}
.xe_c00350{left:605.700000px;}
.x4d_c00350{left:609.450000px;}
.x27_c00350{left:611.550000px;}
.x40_c00350{left:612.750000px;}
.x111_c00350{left:614.250000px;}
.x6c_c00350{left:618.150000px;}
.x8d_c00350{left:620.250000px;}
.xc2_c00350{left:621.750000px;}
.xab_c00350{left:624.300000px;}
.x33_c00350{left:625.350000px;}
.xdd_c00350{left:626.850000px;}
.x121_c00350{left:628.500000px;}
.x41_c00350{left:629.700000px;}
.x77_c00350{left:635.100000px;}
.x128_c00350{left:637.350000px;}
.xf9_c00350{left:639.150000px;}
.x119_c00350{left:640.650000px;}
.x28_c00350{left:644.250000px;}
.x107_c00350{left:646.500000px;}
.x95_c00350{left:647.700000px;}
.xf_c00350{left:648.900000px;}
.xde_c00350{left:658.200000px;}
.x1b_c00350{left:659.250000px;}
.x96_c00350{left:660.300000px;}
.xb2_c00350{left:663.300000px;}
.xd0_c00350{left:667.500000px;}
.x5f_c00350{left:671.700000px;}
.x29_c00350{left:673.350000px;}
.xf4_c00350{left:675.300000px;}
.xe3_c00350{left:677.400000px;}
.x10_c00350{left:681.300000px;}
.x87_c00350{left:685.200000px;}
.x114_c00350{left:686.550000px;}
.x34_c00350{left:690.150000px;}
.x97_c00350{left:692.700000px;}
.x4e_c00350{left:695.550000px;}
.xe4_c00350{left:697.200000px;}
.x1c_c00350{left:698.550000px;}
.x57_c00350{left:701.700000px;}
.x11_c00350{left:703.200000px;}
.xc3_c00350{left:704.850000px;}
.x35_c00350{left:707.850000px;}
.x60_c00350{left:710.250000px;}
.x2a_c00350{left:711.450000px;}
.xfe_c00350{left:712.500000px;}
.xf5_c00350{left:716.700000px;}
.xdf_c00350{left:717.900000px;}
.x12_c00350{left:719.400000px;}
.xbd_c00350{left:721.500000px;}
.x6d_c00350{left:724.350000px;}
.xed_c00350{left:729.000000px;}
.x8e_c00350{left:730.050000px;}
.x42_c00350{left:732.600000px;}
.xc4_c00350{left:736.200000px;}
.x61_c00350{left:738.000000px;}
.xe5_c00350{left:740.100000px;}
.x1d_c00350{left:744.300000px;}
.xac_c00350{left:752.400000px;}
.x108_c00350{left:753.750000px;}
.x4f_c00350{left:757.050000px;}
.xff_c00350{left:758.250000px;}
.xbe_c00350{left:759.300000px;}
.x13_c00350{left:761.100000px;}
.x2b_c00350{left:766.500000px;}
.x36_c00350{left:768.300000px;}
.x8f_c00350{left:769.650000px;}
.x62_c00350{left:770.700000px;}
.x1e_c00350{left:772.350000px;}
.x9f_c00350{left:773.850000px;}
.x43_c00350{left:778.350000px;}
.xee_c00350{left:779.700000px;}
.x98_c00350{left:784.200000px;}
.x90_c00350{left:787.950000px;}
.x50_c00350{left:789.450000px;}
.x44_c00350{left:790.650000px;}
.xe0_c00350{left:792.300000px;}
.xef_c00350{left:795.600000px;}
.xa0_c00350{left:799.350000px;}
.x63_c00350{left:803.850000px;}
.x10e_c00350{left:805.350000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws4_c00350{word-spacing:-4.222222pt;}
.wsa_c00350{word-spacing:-0.910569pt;}
.wsb_c00350{word-spacing:0.000000pt;}
.ws9_c00350{word-spacing:0.110665pt;}
.ws7_c00350{word-spacing:3.282051pt;}
.ws8_c00350{word-spacing:4.975945pt;}
.ws1_c00350{word-spacing:6.666667pt;}
.ws5_c00350{word-spacing:7.888889pt;}
.ws2_c00350{word-spacing:11.345829pt;}
.ws3_c00350{word-spacing:20.000000pt;}
.ws6_c00350{word-spacing:32.000000pt;}
.ws0_c00350{word-spacing:734.000000pt;}
.fs0_c00350{font-size:48.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y2b_c00350{bottom:136.666667pt;}
.y2a_c00350{bottom:150.666667pt;}
.y29_c00350{bottom:164.800000pt;}
.y28_c00350{bottom:178.533333pt;}
.y27_c00350{bottom:192.933333pt;}
.y26_c00350{bottom:227.733333pt;}
.y25_c00350{bottom:245.333333pt;}
.y24_c00350{bottom:263.200000pt;}
.y23_c00350{bottom:280.800000pt;}
.y22_c00350{bottom:298.400000pt;}
.y21_c00350{bottom:316.266667pt;}
.y20_c00350{bottom:333.866667pt;}
.y1f_c00350{bottom:351.466667pt;}
.y1e_c00350{bottom:369.333333pt;}
.y1d_c00350{bottom:386.933333pt;}
.y1c_c00350{bottom:404.133333pt;}
.y1b_c00350{bottom:422.400000pt;}
.y1a_c00350{bottom:440.266667pt;}
.y19_c00350{bottom:457.200000pt;}
.y18_c00350{bottom:476.133333pt;}
.y17_c00350{bottom:493.733333pt;}
.y16_c00350{bottom:526.800000pt;}
.y15_c00350{bottom:544.666667pt;}
.y14_c00350{bottom:562.933333pt;}
.y13_c00350{bottom:579.866667pt;}
.y12_c00350{bottom:597.733333pt;}
.y11_c00350{bottom:615.333333pt;}
.y10_c00350{bottom:633.200000pt;}
.yf_c00350{bottom:650.800000pt;}
.ye_c00350{bottom:669.066667pt;}
.yd_c00350{bottom:686.666667pt;}
.yc_c00350{bottom:722.533333pt;}
.yb_c00350{bottom:740.400000pt;}
.ya_c00350{bottom:758.000000pt;}
.y9_c00350{bottom:775.866667pt;}
.y8_c00350{bottom:793.466667pt;}
.y7_c00350{bottom:811.333333pt;}
.y6_c00350{bottom:828.933333pt;}
.y5_c00350{bottom:846.800000pt;}
.y4_c00350{bottom:864.666667pt;}
.y3_c00350{bottom:882.266667pt;}
.y2_c00350{bottom:899.866667pt;}
.y1_c00350{bottom:933.466667pt;}
.h2_c00350{height:48.000000pt;}
.h0_c00350{height:1037.119955pt;}
.h1_c00350{height:1037.333333pt;}
.w1_c00350{width:812.000000pt;}
.w0_c00350{width:812.159993pt;}
.x0_c00350{left:0.000000pt;}
.x129_c00350{left:129.600000pt;}
.x14_c00350{left:131.200000pt;}
.x2_c00350{left:132.133333pt;}
.x1_c00350{left:133.066667pt;}
.xd6_c00350{left:146.533333pt;}
.xf6_c00350{left:147.600000pt;}
.xb3_c00350{left:148.666667pt;}
.xd1_c00350{left:149.600000pt;}
.x122_c00350{left:154.533333pt;}
.x1f_c00350{left:155.733333pt;}
.x7f_c00350{left:159.066667pt;}
.xc9_c00350{left:160.000000pt;}
.x64_c00350{left:161.466667pt;}
.x37_c00350{left:162.933333pt;}
.x45_c00350{left:164.666667pt;}
.x115_c00350{left:166.666667pt;}
.x88_c00350{left:168.133333pt;}
.xd7_c00350{left:169.200000pt;}
.x6e_c00350{left:172.133333pt;}
.x112_c00350{left:174.133333pt;}
.xad_c00350{left:175.466667pt;}
.xa1_c00350{left:176.800000pt;}
.x51_c00350{left:180.800000pt;}
.x46_c00350{left:183.600000pt;}
.x80_c00350{left:185.333333pt;}
.xb6_c00350{left:187.466667pt;}
.x38_c00350{left:188.533333pt;}
.x3_c00350{left:190.000000pt;}
.x2c_c00350{left:191.733333pt;}
.x100_c00350{left:193.333333pt;}
.x11a_c00350{left:194.533333pt;}
.x65_c00350{left:196.933333pt;}
.x6f_c00350{left:198.000000pt;}
.xae_c00350{left:200.133333pt;}
.xf0_c00350{left:202.266667pt;}
.xd2_c00350{left:204.000000pt;}
.x10f_c00350{left:205.866667pt;}
.x11c_c00350{left:209.333333pt;}
.x4_c00350{left:211.066667pt;}
.xe6_c00350{left:212.000000pt;}
.x20_c00350{left:214.666667pt;}
.xca_c00350{left:215.733333pt;}
.x78_c00350{left:217.866667pt;}
.xa2_c00350{left:219.066667pt;}
.x47_c00350{left:220.133333pt;}
.xfa_c00350{left:221.333333pt;}
.x70_c00350{left:222.266667pt;}
.x11d_c00350{left:223.466667pt;}
.x101_c00350{left:226.666667pt;}
.xe7_c00350{left:230.933333pt;}
.x52_c00350{left:233.866667pt;}
.x21_c00350{left:234.800000pt;}
.x81_c00350{left:236.266667pt;}
.x39_c00350{left:238.133333pt;}
.x2d_c00350{left:239.066667pt;}
.x66_c00350{left:240.400000pt;}
.x79_c00350{left:243.200000pt;}
.x99_c00350{left:244.800000pt;}
.x123_c00350{left:247.200000pt;}
.x82_c00350{left:249.333333pt;}
.x71_c00350{left:250.400000pt;}
.x116_c00350{left:251.466667pt;}
.x5_c00350{left:252.666667pt;}
.x58_c00350{left:254.533333pt;}
.xc5_c00350{left:257.333333pt;}
.x15_c00350{left:258.266667pt;}
.xf1_c00350{left:260.266667pt;}
.xa3_c00350{left:262.266667pt;}
.xf7_c00350{left:263.466667pt;}
.x102_c00350{left:266.000000pt;}
.x6_c00350{left:268.400000pt;}
.x48_c00350{left:270.400000pt;}
.x110_c00350{left:271.466667pt;}
.x59_c00350{left:272.400000pt;}
.xb4_c00350{left:273.466667pt;}
.xb7_c00350{left:275.066667pt;}
.x72_c00350{left:278.933333pt;}
.x11b_c00350{left:280.666667pt;}
.xe8_c00350{left:281.866667pt;}
.xa4_c00350{left:284.000000pt;}
.x7_c00350{left:285.066667pt;}
.xe9_c00350{left:287.733333pt;}
.x11e_c00350{left:289.733333pt;}
.x7a_c00350{left:291.200000pt;}
.x3a_c00350{left:292.800000pt;}
.xbf_c00350{left:294.666667pt;}
.x49_c00350{left:296.933333pt;}
.xb5_c00350{left:298.400000pt;}
.x2e_c00350{left:299.866667pt;}
.x22_c00350{left:301.066667pt;}
.x83_c00350{left:303.466667pt;}
.x5a_c00350{left:306.000000pt;}
.x67_c00350{left:308.933333pt;}
.xaf_c00350{left:309.866667pt;}
.xc0_c00350{left:312.266667pt;}
.x4a_c00350{left:314.266667pt;}
.x113_c00350{left:315.600000pt;}
.xd9_c00350{left:316.533333pt;}
.xb8_c00350{left:320.933333pt;}
.x73_c00350{left:323.466667pt;}
.x2f_c00350{left:324.800000pt;}
.x103_c00350{left:327.066667pt;}
.x91_c00350{left:328.266667pt;}
.x84_c00350{left:329.733333pt;}
.x109_c00350{left:332.400000pt;}
.x7b_c00350{left:333.466667pt;}
.x53_c00350{left:334.666667pt;}
.xf2_c00350{left:336.133333pt;}
.x23_c00350{left:337.200000pt;}
.x8_c00350{left:338.133333pt;}
.xc6_c00350{left:339.200000pt;}
.x89_c00350{left:340.133333pt;}
.x9a_c00350{left:341.066667pt;}
.x68_c00350{left:342.800000pt;}
.x74_c00350{left:345.600000pt;}
.x92_c00350{left:347.200000pt;}
.xcb_c00350{left:348.266667pt;}
.x5b_c00350{left:349.200000pt;}
.x7c_c00350{left:351.333333pt;}
.xfb_c00350{left:352.933333pt;}
.x104_c00350{left:354.000000pt;}
.x9_c00350{left:355.466667pt;}
.x11f_c00350{left:358.800000pt;}
.x16_c00350{left:362.266667pt;}
.xb0_c00350{left:365.600000pt;}
.xc7_c00350{left:366.666667pt;}
.xfc_c00350{left:368.000000pt;}
.x75_c00350{left:369.600000pt;}
.xd8_c00350{left:371.600000pt;}
.xcc_c00350{left:372.933333pt;}
.x3b_c00350{left:374.400000pt;}
.x9b_c00350{left:376.533333pt;}
.x54_c00350{left:378.800000pt;}
.xa_c00350{left:379.733333pt;}
.xd3_c00350{left:380.933333pt;}
.xa5_c00350{left:383.200000pt;}
.x124_c00350{left:385.066667pt;}
.x24_c00350{left:386.800000pt;}
.x30_c00350{left:388.533333pt;}
.xda_c00350{left:396.533333pt;}
.x5c_c00350{left:398.533333pt;}
.xb1_c00350{left:400.133333pt;}
.xa6_c00350{left:401.066667pt;}
.x117_c00350{left:402.133333pt;}
.x9c_c00350{left:404.400000pt;}
.x4b_c00350{left:406.400000pt;}
.xb9_c00350{left:408.266667pt;}
.x3c_c00350{left:409.333333pt;}
.x7d_c00350{left:411.866667pt;}
.x10a_c00350{left:413.066667pt;}
.xc8_c00350{left:414.933333pt;}
.x8a_c00350{left:416.933333pt;}
.x76_c00350{left:418.933333pt;}
.xea_c00350{left:419.866667pt;}
.xdb_c00350{left:424.000000pt;}
.x85_c00350{left:425.733333pt;}
.xa7_c00350{left:426.666667pt;}
.xfd_c00350{left:428.533333pt;}
.x93_c00350{left:430.400000pt;}
.xe1_c00350{left:432.800000pt;}
.xc1_c00350{left:435.866667pt;}
.x8b_c00350{left:437.733333pt;}
.x25_c00350{left:439.866667pt;}
.xcd_c00350{left:441.466667pt;}
.x55_c00350{left:443.333333pt;}
.xeb_c00350{left:444.533333pt;}
.x17_c00350{left:446.800000pt;}
.x69_c00350{left:449.600000pt;}
.xf8_c00350{left:450.666667pt;}
.x118_c00350{left:452.266667pt;}
.x125_c00350{left:453.200000pt;}
.x3d_c00350{left:454.400000pt;}
.x4c_c00350{left:456.933333pt;}
.xe2_c00350{left:458.666667pt;}
.x10b_c00350{left:459.733333pt;}
.xa8_c00350{left:461.866667pt;}
.xba_c00350{left:463.333333pt;}
.xb_c00350{left:464.800000pt;}
.x126_c00350{left:466.933333pt;}
.x6a_c00350{left:468.800000pt;}
.xce_c00350{left:470.533333pt;}
.x8c_c00350{left:473.200000pt;}
.xd4_c00350{left:477.600000pt;}
.xdc_c00350{left:479.066667pt;}
.x3e_c00350{left:480.000000pt;}
.x31_c00350{left:481.333333pt;}
.x86_c00350{left:482.666667pt;}
.xc_c00350{left:484.000000pt;}
.xa9_c00350{left:484.933333pt;}
.x7e_c00350{left:486.133333pt;}
.x18_c00350{left:488.400000pt;}
.x120_c00350{left:489.600000pt;}
.x105_c00350{left:491.333333pt;}
.xf3_c00350{left:492.666667pt;}
.x6b_c00350{left:494.400000pt;}
.x56_c00350{left:495.466667pt;}
.x9d_c00350{left:496.933333pt;}
.x26_c00350{left:500.666667pt;}
.x5d_c00350{left:501.600000pt;}
.x10c_c00350{left:502.533333pt;}
.x19_c00350{left:505.333333pt;}
.x32_c00350{left:506.266667pt;}
.xec_c00350{left:507.200000pt;}
.xd5_c00350{left:510.533333pt;}
.xd_c00350{left:512.133333pt;}
.xbb_c00350{left:513.866667pt;}
.x3f_c00350{left:515.200000pt;}
.xaa_c00350{left:517.866667pt;}
.x5e_c00350{left:518.933333pt;}
.x106_c00350{left:519.866667pt;}
.x127_c00350{left:521.333333pt;}
.x9e_c00350{left:525.066667pt;}
.x94_c00350{left:528.000000pt;}
.x1a_c00350{left:529.066667pt;}
.xbc_c00350{left:531.466667pt;}
.xcf_c00350{left:535.466667pt;}
.x10d_c00350{left:537.466667pt;}
.xe_c00350{left:538.400000pt;}
.x4d_c00350{left:541.733333pt;}
.x27_c00350{left:543.600000pt;}
.x40_c00350{left:544.666667pt;}
.x111_c00350{left:546.000000pt;}
.x6c_c00350{left:549.466667pt;}
.x8d_c00350{left:551.333333pt;}
.xc2_c00350{left:552.666667pt;}
.xab_c00350{left:554.933333pt;}
.x33_c00350{left:555.866667pt;}
.xdd_c00350{left:557.200000pt;}
.x121_c00350{left:558.666667pt;}
.x41_c00350{left:559.733333pt;}
.x77_c00350{left:564.533333pt;}
.x128_c00350{left:566.533333pt;}
.xf9_c00350{left:568.133333pt;}
.x119_c00350{left:569.466667pt;}
.x28_c00350{left:572.666667pt;}
.x107_c00350{left:574.666667pt;}
.x95_c00350{left:575.733333pt;}
.xf_c00350{left:576.800000pt;}
.xde_c00350{left:585.066667pt;}
.x1b_c00350{left:586.000000pt;}
.x96_c00350{left:586.933333pt;}
.xb2_c00350{left:589.600000pt;}
.xd0_c00350{left:593.333333pt;}
.x5f_c00350{left:597.066667pt;}
.x29_c00350{left:598.533333pt;}
.xf4_c00350{left:600.266667pt;}
.xe3_c00350{left:602.133333pt;}
.x10_c00350{left:605.600000pt;}
.x87_c00350{left:609.066667pt;}
.x114_c00350{left:610.266667pt;}
.x34_c00350{left:613.466667pt;}
.x97_c00350{left:615.733333pt;}
.x4e_c00350{left:618.266667pt;}
.xe4_c00350{left:619.733333pt;}
.x1c_c00350{left:620.933333pt;}
.x57_c00350{left:623.733333pt;}
.x11_c00350{left:625.066667pt;}
.xc3_c00350{left:626.533333pt;}
.x35_c00350{left:629.200000pt;}
.x60_c00350{left:631.333333pt;}
.x2a_c00350{left:632.400000pt;}
.xfe_c00350{left:633.333333pt;}
.xf5_c00350{left:637.066667pt;}
.xdf_c00350{left:638.133333pt;}
.x12_c00350{left:639.466667pt;}
.xbd_c00350{left:641.333333pt;}
.x6d_c00350{left:643.866667pt;}
.xed_c00350{left:648.000000pt;}
.x8e_c00350{left:648.933333pt;}
.x42_c00350{left:651.200000pt;}
.xc4_c00350{left:654.400000pt;}
.x61_c00350{left:656.000000pt;}
.xe5_c00350{left:657.866667pt;}
.x1d_c00350{left:661.600000pt;}
.xac_c00350{left:668.800000pt;}
.x108_c00350{left:670.000000pt;}
.x4f_c00350{left:672.933333pt;}
.xff_c00350{left:674.000000pt;}
.xbe_c00350{left:674.933333pt;}
.x13_c00350{left:676.533333pt;}
.x2b_c00350{left:681.333333pt;}
.x36_c00350{left:682.933333pt;}
.x8f_c00350{left:684.133333pt;}
.x62_c00350{left:685.066667pt;}
.x1e_c00350{left:686.533333pt;}
.x9f_c00350{left:687.866667pt;}
.x43_c00350{left:691.866667pt;}
.xee_c00350{left:693.066667pt;}
.x98_c00350{left:697.066667pt;}
.x90_c00350{left:700.400000pt;}
.x50_c00350{left:701.733333pt;}
.x44_c00350{left:702.800000pt;}
.xe0_c00350{left:704.266667pt;}
.xef_c00350{left:707.200000pt;}
.xa0_c00350{left:710.533333pt;}
.x63_c00350{left:714.533333pt;}
.x10e_c00350{left:715.866667pt;}
}





/* 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_c00351 {
    display:none;
  }
  .loading-indicator_c00351.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00351 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_c00351 { 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_c00351" -> "#page-container .classname_c00351")
 */
.pf_c00351 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00351 { /* 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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00351 { /* 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_c00351 { /* 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_c00351 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00351 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00351 {overflow:visible;}
  }
}
.c_c00351 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00351 { /* 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_c00351:after { /* webkit #35443 */
  content: '';
}
.t_c00351:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00351 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 */
}
.__c00351 { /* 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_c00351 { /* info for Javascript */
  display:none;
}
.l_c00351 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00351 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00351 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00351: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_c00351 {
    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_c00351.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00351.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_c00351 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00351{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00351;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.000000;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_c00351{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m2_c00351{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5_c00351{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.ma_c00351{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9_c00351{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00351{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00351{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m1_c00351{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00351{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00351{transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374500,0.000000,0.000000,0.250000,0,0);}
.m7_c00351{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0_c00351{vertical-align:0.000000px;}
.ls0_c00351{letter-spacing:0.000000px;}
.sc__c00351{text-shadow:none;}
.sc0_c00351{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__c00351{-webkit-text-stroke:0px transparent;}
.sc0_c00351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00351{word-spacing:-18.000000px;}
.ws1_c00351{word-spacing:0.000000px;}
._0_c00351{margin-left:-97.000000px;}
.fc0_c00351{color:transparent;}
.fs2_c00351{font-size:36.000000px;}
.fs1_c00351{font-size:42.000000px;}
.fs0_c00351{font-size:60.000000px;}
.fs3_c00351{font-size:66.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1_c00351{bottom:21.600000px;}
.y2_c00351{bottom:602.700000px;}
.y3_c00351{bottom:657.000000px;}
.y4_c00351{bottom:658.050000px;}
.y5_c00351{bottom:676.050000px;}
.y6_c00351{bottom:729.000000px;}
.h4_c00351{height:36.000000px;}
.h3_c00351{height:42.000000px;}
.h2_c00351{height:60.000000px;}
.h5_c00351{height:66.000000px;}
.h0_c00351{height:1166.759949px;}
.h1_c00351{height:1167.000000px;}
.w1_c00351{width:913.500000px;}
.w0_c00351{width:913.679993px;}
.x0_c00351{left:0.000000px;}
.xb_c00351{left:81.450000px;}
.x5_c00351{left:99.000000px;}
.xa_c00351{left:100.500000px;}
.x7_c00351{left:117.000000px;}
.x9_c00351{left:120.600000px;}
.x8_c00351{left:171.750000px;}
.x6_c00351{left:176.400000px;}
.x4_c00351{left:753.750000px;}
.x3_c00351{left:776.100000px;}
.x2_c00351{left:783.000000px;}
.x1_c00351{left:799.200000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:-16.000000pt;}
.ws1_c00351{word-spacing:0.000000pt;}
._0_c00351{margin-left:-86.222222pt;}
.fs2_c00351{font-size:32.000000pt;}
.fs1_c00351{font-size:37.333333pt;}
.fs0_c00351{font-size:53.333333pt;}
.fs3_c00351{font-size:58.666667pt;}
.y0_c00351{bottom:0.000000pt;}
.y1_c00351{bottom:19.200000pt;}
.y2_c00351{bottom:535.733333pt;}
.y3_c00351{bottom:584.000000pt;}
.y4_c00351{bottom:584.933333pt;}
.y5_c00351{bottom:600.933333pt;}
.y6_c00351{bottom:648.000000pt;}
.h4_c00351{height:32.000000pt;}
.h3_c00351{height:37.333333pt;}
.h2_c00351{height:53.333333pt;}
.h5_c00351{height:58.666667pt;}
.h0_c00351{height:1037.119955pt;}
.h1_c00351{height:1037.333333pt;}
.w1_c00351{width:812.000000pt;}
.w0_c00351{width:812.159993pt;}
.x0_c00351{left:0.000000pt;}
.xb_c00351{left:72.400000pt;}
.x5_c00351{left:88.000000pt;}
.xa_c00351{left:89.333333pt;}
.x7_c00351{left:104.000000pt;}
.x9_c00351{left:107.200000pt;}
.x8_c00351{left:152.666667pt;}
.x6_c00351{left:156.800000pt;}
.x4_c00351{left:670.000000pt;}
.x3_c00351{left:689.866667pt;}
.x2_c00351{left:696.000000pt;}
.x1_c00351{left:710.400000pt;}
}





/* 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_c00352 {
    display:none;
  }
  .loading-indicator_c00352.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00352 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_c00352 { 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_c00352" -> "#page-container .classname_c00352")
 */
.pf_c00352 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00352 { /* 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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00352 { /* 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_c00352 { /* 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_c00352 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00352 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00352 {overflow:visible;}
  }
}
.c_c00352 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00352 { /* 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_c00352:after { /* webkit #35443 */
  content: '';
}
.t_c00352:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00352 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 */
}
.__c00352 { /* 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_c00352 { /* info for Javascript */
  display:none;
}
.l_c00352 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00352 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00352 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00352: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_c00352 {
    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_c00352.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00352.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_c00352 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00352{font-family:sans-serif;visibility:hidden;}
.sc__c00352{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
}
.y0_c00352{bottom:0.000000px;}
.h0_c00352{height:1166.759949px;}
.h1_c00352{height:1167.000000px;}
.w1_c00352{width:913.500000px;}
.w0_c00352{width:913.679993px;}
.x0_c00352{left:0.000000px;}
@media print{
.y0_c00352{bottom:0.000000pt;}
.h0_c00352{height:1037.119955pt;}
.h1_c00352{height:1037.333333pt;}
.w1_c00352{width:812.000000pt;}
.w0_c00352{width:812.159993pt;}
.x0_c00352{left:0.000000pt;}
}





/* 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_c00353 {
    display:none;
  }
  .loading-indicator_c00353.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00353 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_c00353 { 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_c00353" -> "#page-container .classname_c00353")
 */
.pf_c00353 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00353 { /* 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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00353 { /* 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_c00353 { /* 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_c00353 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00353 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00353 {overflow:visible;}
  }
}
.c_c00353 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00353 { /* 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_c00353:after { /* webkit #35443 */
  content: '';
}
.t_c00353:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00353 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 */
}
.__c00353 { /* 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_c00353 { /* info for Javascript */
  display:none;
}
.l_c00353 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00353 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00353 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00353: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_c00353 {
    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_c00353.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00353.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_c00353 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00353{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00353;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.000000;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;}
.ma6_c00353{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m63_c00353{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00353{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.maf_c00353{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.maa_c00353{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00353{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00353{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00353{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00353{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m33_c00353{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00353{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00353{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00353{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00353{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00353{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m85_c00353{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m72_c00353{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m54_c00353{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00353{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m66_c00353{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00353{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00353{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00353{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mae_c00353{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m76_c00353{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mac_c00353{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00353{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00353{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00353{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m99_c00353{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m53_c00353{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m57_c00353{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m95_c00353{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m42_c00353{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00353{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00353{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mad_c00353{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m40_c00353{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m27_c00353{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m69_c00353{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00353{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m92_c00353{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00353{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m49_c00353{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m59_c00353{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m78_c00353{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00353{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00353{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m41_c00353{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m84_c00353{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00353{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00353{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md_c00353{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m80_c00353{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00353{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00353{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m86_c00353{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00353{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00353{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m44_c00353{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00353{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m32_c00353{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m11_c00353{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m38_c00353{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m39_c00353{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m79_c00353{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m29_c00353{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m61_c00353{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9_c00353{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00353{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m20_c00353{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m34_c00353{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00353{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m90_c00353{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m31_c00353{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m10_c00353{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00353{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00353{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m35_c00353{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00353{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m88_c00353{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m18_c00353{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m13_c00353{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m47_c00353{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00353{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00353{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m17_c00353{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00353{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00353{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m97_c00353{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00353{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.ma_c00353{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m73_c00353{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m36_c00353{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);}
.m6a_c00353{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m64_c00353{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m22_c00353{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00353{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m25_c00353{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00353{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m26_c00353{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00353{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00353{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00353{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00353{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m48_c00353{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00353{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00353{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m82_c00353{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00353{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00353{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7_c00353{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00353{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m37_c00353{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m43_c00353{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00353{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m24_c00353{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00353{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m94_c00353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00353{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2_c00353{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00353{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8_c00353{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m87_c00353{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mc_c00353{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00353{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00353{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m83_c00353{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mab_c00353{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m56_c00353{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00353{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00353{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00353{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m71_c00353{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m98_c00353{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m30_c00353{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00353{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00353{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m81_c00353{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m65_c00353{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c00353{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m52_c00353{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m77_c00353{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.me_c00353{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00353{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mb_c00353{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mf_c00353{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00353{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m58_c00353{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m23_c00353{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00353{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m19_c00353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00353{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m96_c00353{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m89_c00353{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00353{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m51_c00353{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m28_c00353{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00353{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00353{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m68_c00353{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00353{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00353{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m45_c00353{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00353{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m62_c00353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m93_c00353{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m75_c00353{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m46_c00353{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m67_c00353{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c00353{vertical-align:0.000000px;}
.ls0_c00353{letter-spacing:0.000000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{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__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00353{word-spacing:-10.375000px;}
.ws1_c00353{word-spacing:-4.772598px;}
.ws6_c00353{word-spacing:-1.285291px;}
.ws2_c00353{word-spacing:-0.803970px;}
.ws9_c00353{word-spacing:0.000000px;}
.ws4_c00353{word-spacing:5.875000px;}
.ws8_c00353{word-spacing:6.112561px;}
.ws0_c00353{word-spacing:6.723926px;}
.ws3_c00353{word-spacing:26.286624px;}
.ws7_c00353{word-spacing:26.890973px;}
._0_c00353{width:29.760118px;}
.fc0_c00353{color:transparent;}
.fs0_c00353{font-size:54.000000px;}
.y0_c00353{bottom:0.000000px;}
.y2b_c00353{bottom:142.950000px;}
.y2a_c00353{bottom:159.150000px;}
.y29_c00353{bottom:174.600000px;}
.y28_c00353{bottom:223.200000px;}
.y27_c00353{bottom:242.700000px;}
.y26_c00353{bottom:262.800000px;}
.y25_c00353{bottom:282.900000px;}
.y24_c00353{bottom:302.700000px;}
.y23_c00353{bottom:322.500000px;}
.y22_c00353{bottom:343.050000px;}
.y21_c00353{bottom:363.150000px;}
.y20_c00353{bottom:383.250000px;}
.y1f_c00353{bottom:402.750000px;}
.y1e_c00353{bottom:422.850000px;}
.y1d_c00353{bottom:442.650000px;}
.y1c_c00353{bottom:462.450000px;}
.y1b_c00353{bottom:482.550000px;}
.y1a_c00353{bottom:502.350000px;}
.y19_c00353{bottom:522.450000px;}
.y18_c00353{bottom:542.250000px;}
.y17_c00353{bottom:562.350000px;}
.y16_c00353{bottom:581.400000px;}
.y15_c00353{bottom:601.950000px;}
.y14_c00353{bottom:622.500000px;}
.y13_c00353{bottom:660.600000px;}
.y12_c00353{bottom:681.000000px;}
.y11_c00353{bottom:700.800000px;}
.y10_c00353{bottom:720.900000px;}
.yf_c00353{bottom:740.700000px;}
.ye_c00353{bottom:760.800000px;}
.yd_c00353{bottom:780.900000px;}
.yc_c00353{bottom:801.450000px;}
.yb_c00353{bottom:821.550000px;}
.ya_c00353{bottom:841.650000px;}
.y9_c00353{bottom:861.450000px;}
.y8_c00353{bottom:881.550000px;}
.y7_c00353{bottom:901.650000px;}
.y6_c00353{bottom:921.750000px;}
.y5_c00353{bottom:941.850000px;}
.y4_c00353{bottom:961.650000px;}
.y3_c00353{bottom:981.450000px;}
.y2_c00353{bottom:1001.550000px;}
.y1_c00353{bottom:1039.650000px;}
.h2_c00353{height:54.000000px;}
.h0_c00353{height:1166.759949px;}
.h1_c00353{height:1167.000000px;}
.w1_c00353{width:913.500000px;}
.w0_c00353{width:913.679993px;}
.x0_c00353{left:0.000000px;}
.x120_c00353{left:100.050000px;}
.xe9_c00353{left:101.100000px;}
.xcb_c00353{left:102.150000px;}
.xbe_c00353{left:103.200000px;}
.x8d_c00353{left:104.250000px;}
.x16_c00353{left:106.200000px;}
.xf5_c00353{left:118.350000px;}
.x118_c00353{left:120.300000px;}
.x8e_c00353{left:124.050000px;}
.x3d_c00353{left:125.100000px;}
.x115_c00353{left:130.200000px;}
.xea_c00353{left:131.400000px;}
.x102_c00353{left:132.450000px;}
.xc1_c00353{left:133.500000px;}
.xb0_c00353{left:134.700000px;}
.x80_c00353{left:135.750000px;}
.x5_c00353{left:137.850000px;}
.x17_c00353{left:139.650000px;}
.x10a_c00353{left:141.150000px;}
.x55_c00353{left:142.800000px;}
.xf6_c00353{left:143.850000px;}
.x26_c00353{left:144.900000px;}
.xd3_c00353{left:146.850000px;}
.x3e_c00353{left:149.250000px;}
.xcc_c00353{left:152.250000px;}
.xb7_c00353{left:155.850000px;}
.x6_c00353{left:158.400000px;}
.x56_c00353{left:162.600000px;}
.xbf_c00353{left:163.650000px;}
.x81_c00353{left:167.400000px;}
.x18_c00353{left:168.450000px;}
.x27_c00353{left:170.400000px;}
.xab_c00353{left:172.050000px;}
.x60_c00353{left:174.450000px;}
.x7f_c00353{left:175.950000px;}
.xdb_c00353{left:177.300000px;}
.x10b_c00353{left:178.650000px;}
.x19_c00353{left:181.350000px;}
.x34_c00353{left:182.550000px;}
.xb8_c00353{left:183.600000px;}
.x9c_c00353{left:184.800000px;}
.xef_c00353{left:189.000000px;}
.x7_c00353{left:190.500000px;}
.x49_c00353{left:192.750000px;}
.x61_c00353{left:194.250000px;}
.x108_c00353{left:197.850000px;}
.x119_c00353{left:199.050000px;}
.x6e_c00353{left:200.400000px;}
.xc5_c00353{left:202.350000px;}
.x82_c00353{left:204.150000px;}
.xd4_c00353{left:205.200000px;}
.x96_c00353{left:206.700000px;}
.x3f_c00353{left:209.400000px;}
.xad_c00353{left:212.100000px;}
.x10c_c00353{left:213.900000px;}
.x8_c00353{left:216.450000px;}
.x78_c00353{left:220.050000px;}
.x62_c00353{left:222.300000px;}
.x83_c00353{left:223.950000px;}
.xdc_c00353{left:227.700000px;}
.xa3_c00353{left:231.450000px;}
.x4a_c00353{left:236.250000px;}
.x1a_c00353{left:240.450000px;}
.x57_c00353{left:242.850000px;}
.x11a_c00353{left:244.050000px;}
.xb1_c00353{left:245.700000px;}
.x35_c00353{left:249.150000px;}
.x4b_c00353{left:251.400000px;}
.x9_c00353{left:253.200000px;}
.xfc_c00353{left:259.800000px;}
.xeb_c00353{left:264.600000px;}
.xcd_c00353{left:267.450000px;}
.xd5_c00353{left:270.300000px;}
.x63_c00353{left:273.000000px;}
.xc0_c00353{left:274.200000px;}
.x40_c00353{left:275.700000px;}
.x28_c00353{left:278.100000px;}
.x79_c00353{left:279.450000px;}
.x11b_c00353{left:281.850000px;}
.x1b_c00353{left:286.200000px;}
.xf7_c00353{left:287.850000px;}
.x8f_c00353{left:288.900000px;}
.xf0_c00353{left:290.550000px;}
.xe3_c00353{left:291.600000px;}
.x111_c00353{left:292.950000px;}
.x36_c00353{left:295.950000px;}
.x9d_c00353{left:298.500000px;}
.x1c_c00353{left:305.700000px;}
.x41_c00353{left:308.100000px;}
.xc6_c00353{left:309.150000px;}
.x90_c00353{left:310.200000px;}
.xa4_c00353{left:312.000000px;}
.xa_c00353{left:313.650000px;}
.x84_c00353{left:315.000000px;}
.x64_c00353{left:316.200000px;}
.x29_c00353{left:318.000000px;}
.x112_c00353{left:319.650000px;}
.xd6_c00353{left:321.000000px;}
.xf1_c00353{left:322.200000px;}
.x58_c00353{left:324.150000px;}
.xb9_c00353{left:327.150000px;}
.x6f_c00353{left:329.550000px;}
.x1d_c00353{left:332.400000px;}
.xae_c00353{left:333.750000px;}
.x2a_c00353{left:338.550000px;}
.x4c_c00353{left:340.350000px;}
.xce_c00353{left:342.000000px;}
.xe1_c00353{left:343.950000px;}
.x65_c00353{left:345.750000px;}
.xb_c00353{left:347.850000px;}
.x59_c00353{left:351.450000px;}
.x70_c00353{left:352.950000px;}
.x42_c00353{left:355.650000px;}
.x91_c00353{left:358.800000px;}
.x7a_c00353{left:360.750000px;}
.x4d_c00353{left:363.450000px;}
.x66_c00353{left:365.550000px;}
.x10d_c00353{left:368.250000px;}
.xc7_c00353{left:369.300000px;}
.xc2_c00353{left:372.450000px;}
.x2b_c00353{left:375.300000px;}
.x1_c00353{left:376.950000px;}
.xdd_c00353{left:378.150000px;}
.x97_c00353{left:379.200000px;}
.x71_c00353{left:380.700000px;}
.xaf_c00353{left:382.350000px;}
.xa5_c00353{left:383.700000px;}
.xcf_c00353{left:387.300000px;}
.x1e_c00353{left:388.950000px;}
.x4e_c00353{left:390.150000px;}
.xec_c00353{left:392.100000px;}
.x67_c00353{left:393.600000px;}
.x10e_c00353{left:396.300000px;}
.xf8_c00353{left:397.650000px;}
.x98_c00353{left:401.100000px;}
.x103_c00353{left:402.300000px;}
.xc3_c00353{left:405.150000px;}
.x2c_c00353{left:406.200000px;}
.xd0_c00353{left:408.600000px;}
.x5a_c00353{left:410.100000px;}
.xe4_c00353{left:412.200000px;}
.xb2_c00353{left:413.700000px;}
.x9e_c00353{left:414.900000px;}
.xc_c00353{left:416.550000px;}
.x2_c00353{left:421.950000px;}
.x85_c00353{left:424.800000px;}
.xfd_c00353{left:426.450000px;}
.x37_c00353{left:427.500000px;}
.x92_c00353{left:430.500000px;}
.x43_c00353{left:432.750000px;}
.x72_c00353{left:436.800000px;}
.x3_c00353{left:442.050000px;}
.x86_c00353{left:443.550000px;}
.x7b_c00353{left:445.500000px;}
.x109_c00353{left:447.000000px;}
.xd_c00353{left:448.200000px;}
.xa6_c00353{left:449.250000px;}
.x2d_c00353{left:450.450000px;}
.x38_c00353{left:452.400000px;}
.xed_c00353{left:454.050000px;}
.xb3_c00353{left:456.150000px;}
.x1f_c00353{left:457.350000px;}
.xde_c00353{left:460.200000px;}
.xfe_c00353{left:463.950000px;}
.x68_c00353{left:466.650000px;}
.x44_c00353{left:470.550000px;}
.x122_c00353{left:471.600000px;}
.x4f_c00353{left:473.250000px;}
.x104_c00353{left:474.300000px;}
.x20_c00353{left:475.650000px;}
.xba_c00353{left:480.150000px;}
.x7c_c00353{left:481.200000px;}
.xac_c00353{left:483.450000px;}
.x87_c00353{left:486.450000px;}
.x11c_c00353{left:488.100000px;}
.xe_c00353{left:492.900000px;}
.xe2_c00353{left:494.400000px;}
.x39_c00353{left:495.600000px;}
.xd7_c00353{left:497.400000px;}
.xc8_c00353{left:498.600000px;}
.x69_c00353{left:499.800000px;}
.x21_c00353{left:500.850000px;}
.x2e_c00353{left:503.700000px;}
.x50_c00353{left:505.650000px;}
.xff_c00353{left:507.900000px;}
.xf2_c00353{left:510.000000px;}
.xf_c00353{left:514.200000px;}
.x5b_c00353{left:515.550000px;}
.x6a_c00353{left:517.500000px;}
.x113_c00353{left:520.800000px;}
.x88_c00353{left:522.750000px;}
.xdf_c00353{left:525.300000px;}
.x9f_c00353{left:528.150000px;}
.xbb_c00353{left:529.500000px;}
.x73_c00353{left:531.450000px;}
.xd8_c00353{left:532.650000px;}
.xd1_c00353{left:535.650000px;}
.x93_c00353{left:542.100000px;}
.x10f_c00353{left:545.700000px;}
.x51_c00353{left:547.050000px;}
.xe5_c00353{left:548.250000px;}
.x89_c00353{left:549.450000px;}
.x45_c00353{left:553.350000px;}
.x99_c00353{left:556.200000px;}
.x7d_c00353{left:558.600000px;}
.xd9_c00353{left:560.700000px;}
.x10_c00353{left:562.050000px;}
.xe6_c00353{left:564.450000px;}
.x11d_c00353{left:565.800000px;}
.xf9_c00353{left:567.600000px;}
.x22_c00353{left:570.750000px;}
.x114_c00353{left:571.950000px;}
.xa7_c00353{left:574.200000px;}
.x9a_c00353{left:577.500000px;}
.x46_c00353{left:580.350000px;}
.x2f_c00353{left:581.400000px;}
.x11e_c00353{left:585.600000px;}
.xfa_c00353{left:588.450000px;}
.x74_c00353{left:590.550000px;}
.x116_c00353{left:592.950000px;}
.x5c_c00353{left:594.450000px;}
.xbc_c00353{left:596.400000px;}
.xf3_c00353{left:600.750000px;}
.x3a_c00353{left:601.800000px;}
.xb4_c00353{left:604.050000px;}
.x105_c00353{left:607.950000px;}
.xc9_c00353{left:609.000000px;}
.x8a_c00353{left:610.350000px;}
.x5d_c00353{left:614.250000px;}
.x30_c00353{left:615.300000px;}
.xfb_c00353{left:619.800000px;}
.x75_c00353{left:622.200000px;}
.x11_c00353{left:625.050000px;}
.x23_c00353{left:626.850000px;}
.x6b_c00353{left:629.850000px;}
.x52_c00353{left:631.650000px;}
.x117_c00353{left:636.900000px;}
.xa0_c00353{left:637.950000px;}
.x110_c00353{left:640.350000px;}
.xee_c00353{left:643.800000px;}
.x12_c00353{left:645.150000px;}
.xb5_c00353{left:646.200000px;}
.x6c_c00353{left:648.150000px;}
.xa8_c00353{left:649.350000px;}
.x76_c00353{left:651.000000px;}
.x3b_c00353{left:654.000000px;}
.x31_c00353{left:658.800000px;}
.x8b_c00353{left:660.000000px;}
.xa1_c00353{left:661.350000px;}
.xca_c00353{left:663.750000px;}
.x121_c00353{left:665.700000px;}
.xda_c00353{left:666.750000px;}
.x100_c00353{left:669.150000px;}
.x24_c00353{left:671.850000px;}
.x32_c00353{left:677.850000px;}
.x13_c00353{left:679.650000px;}
.x6d_c00353{left:682.350000px;}
.x106_c00353{left:686.850000px;}
.x53_c00353{left:688.200000px;}
.x7e_c00353{left:690.750000px;}
.xa2_c00353{left:693.000000px;}
.x94_c00353{left:695.250000px;}
.xd2_c00353{left:697.650000px;}
.x14_c00353{left:700.200000px;}
.x8c_c00353{left:701.400000px;}
.xb6_c00353{left:703.800000px;}
.x107_c00353{left:708.750000px;}
.x47_c00353{left:711.150000px;}
.x9b_c00353{left:713.550000px;}
.x54_c00353{left:714.900000px;}
.x3c_c00353{left:717.300000px;}
.xe7_c00353{left:718.500000px;}
.xbd_c00353{left:720.300000px;}
.x15_c00353{left:721.800000px;}
.x25_c00353{left:723.750000px;}
.x5e_c00353{left:727.350000px;}
.x101_c00353{left:729.600000px;}
.x77_c00353{left:733.800000px;}
.xa9_c00353{left:737.250000px;}
.x48_c00353{left:739.200000px;}
.x11f_c00353{left:741.300000px;}
.xf4_c00353{left:742.650000px;}
.xe0_c00353{left:743.850000px;}
.x4_c00353{left:745.200000px;}
.x33_c00353{left:747.750000px;}
.xaa_c00353{left:748.800000px;}
.x95_c00353{left:753.150000px;}
.xe8_c00353{left:755.550000px;}
.xc4_c00353{left:757.800000px;}
.x5f_c00353{left:761.250000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws5_c00353{word-spacing:-9.222222pt;}
.ws1_c00353{word-spacing:-4.242309pt;}
.ws6_c00353{word-spacing:-1.142481pt;}
.ws2_c00353{word-spacing:-0.714640pt;}
.ws9_c00353{word-spacing:0.000000pt;}
.ws4_c00353{word-spacing:5.222222pt;}
.ws8_c00353{word-spacing:5.433388pt;}
.ws0_c00353{word-spacing:5.976823pt;}
.ws3_c00353{word-spacing:23.365888pt;}
.ws7_c00353{word-spacing:23.903087pt;}
._0_c00353{width:26.453439pt;}
.fs0_c00353{font-size:48.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y2b_c00353{bottom:127.066667pt;}
.y2a_c00353{bottom:141.466667pt;}
.y29_c00353{bottom:155.200000pt;}
.y28_c00353{bottom:198.400000pt;}
.y27_c00353{bottom:215.733333pt;}
.y26_c00353{bottom:233.600000pt;}
.y25_c00353{bottom:251.466667pt;}
.y24_c00353{bottom:269.066667pt;}
.y23_c00353{bottom:286.666667pt;}
.y22_c00353{bottom:304.933333pt;}
.y21_c00353{bottom:322.800000pt;}
.y20_c00353{bottom:340.666667pt;}
.y1f_c00353{bottom:358.000000pt;}
.y1e_c00353{bottom:375.866667pt;}
.y1d_c00353{bottom:393.466667pt;}
.y1c_c00353{bottom:411.066667pt;}
.y1b_c00353{bottom:428.933333pt;}
.y1a_c00353{bottom:446.533333pt;}
.y19_c00353{bottom:464.400000pt;}
.y18_c00353{bottom:482.000000pt;}
.y17_c00353{bottom:499.866667pt;}
.y16_c00353{bottom:516.800000pt;}
.y15_c00353{bottom:535.066667pt;}
.y14_c00353{bottom:553.333333pt;}
.y13_c00353{bottom:587.200000pt;}
.y12_c00353{bottom:605.333333pt;}
.y11_c00353{bottom:622.933333pt;}
.y10_c00353{bottom:640.800000pt;}
.yf_c00353{bottom:658.400000pt;}
.ye_c00353{bottom:676.266667pt;}
.yd_c00353{bottom:694.133333pt;}
.yc_c00353{bottom:712.400000pt;}
.yb_c00353{bottom:730.266667pt;}
.ya_c00353{bottom:748.133333pt;}
.y9_c00353{bottom:765.733333pt;}
.y8_c00353{bottom:783.600000pt;}
.y7_c00353{bottom:801.466667pt;}
.y6_c00353{bottom:819.333333pt;}
.y5_c00353{bottom:837.200000pt;}
.y4_c00353{bottom:854.800000pt;}
.y3_c00353{bottom:872.400000pt;}
.y2_c00353{bottom:890.266667pt;}
.y1_c00353{bottom:924.133333pt;}
.h2_c00353{height:48.000000pt;}
.h0_c00353{height:1037.119955pt;}
.h1_c00353{height:1037.333333pt;}
.w1_c00353{width:812.000000pt;}
.w0_c00353{width:812.159993pt;}
.x0_c00353{left:0.000000pt;}
.x120_c00353{left:88.933333pt;}
.xe9_c00353{left:89.866667pt;}
.xcb_c00353{left:90.800000pt;}
.xbe_c00353{left:91.733333pt;}
.x8d_c00353{left:92.666667pt;}
.x16_c00353{left:94.400000pt;}
.xf5_c00353{left:105.200000pt;}
.x118_c00353{left:106.933333pt;}
.x8e_c00353{left:110.266667pt;}
.x3d_c00353{left:111.200000pt;}
.x115_c00353{left:115.733333pt;}
.xea_c00353{left:116.800000pt;}
.x102_c00353{left:117.733333pt;}
.xc1_c00353{left:118.666667pt;}
.xb0_c00353{left:119.733333pt;}
.x80_c00353{left:120.666667pt;}
.x5_c00353{left:122.533333pt;}
.x17_c00353{left:124.133333pt;}
.x10a_c00353{left:125.466667pt;}
.x55_c00353{left:126.933333pt;}
.xf6_c00353{left:127.866667pt;}
.x26_c00353{left:128.800000pt;}
.xd3_c00353{left:130.533333pt;}
.x3e_c00353{left:132.666667pt;}
.xcc_c00353{left:135.333333pt;}
.xb7_c00353{left:138.533333pt;}
.x6_c00353{left:140.800000pt;}
.x56_c00353{left:144.533333pt;}
.xbf_c00353{left:145.466667pt;}
.x81_c00353{left:148.800000pt;}
.x18_c00353{left:149.733333pt;}
.x27_c00353{left:151.466667pt;}
.xab_c00353{left:152.933333pt;}
.x60_c00353{left:155.066667pt;}
.x7f_c00353{left:156.400000pt;}
.xdb_c00353{left:157.600000pt;}
.x10b_c00353{left:158.800000pt;}
.x19_c00353{left:161.200000pt;}
.x34_c00353{left:162.266667pt;}
.xb8_c00353{left:163.200000pt;}
.x9c_c00353{left:164.266667pt;}
.xef_c00353{left:168.000000pt;}
.x7_c00353{left:169.333333pt;}
.x49_c00353{left:171.333333pt;}
.x61_c00353{left:172.666667pt;}
.x108_c00353{left:175.866667pt;}
.x119_c00353{left:176.933333pt;}
.x6e_c00353{left:178.133333pt;}
.xc5_c00353{left:179.866667pt;}
.x82_c00353{left:181.466667pt;}
.xd4_c00353{left:182.400000pt;}
.x96_c00353{left:183.733333pt;}
.x3f_c00353{left:186.133333pt;}
.xad_c00353{left:188.533333pt;}
.x10c_c00353{left:190.133333pt;}
.x8_c00353{left:192.400000pt;}
.x78_c00353{left:195.600000pt;}
.x62_c00353{left:197.600000pt;}
.x83_c00353{left:199.066667pt;}
.xdc_c00353{left:202.400000pt;}
.xa3_c00353{left:205.733333pt;}
.x4a_c00353{left:210.000000pt;}
.x1a_c00353{left:213.733333pt;}
.x57_c00353{left:215.866667pt;}
.x11a_c00353{left:216.933333pt;}
.xb1_c00353{left:218.400000pt;}
.x35_c00353{left:221.466667pt;}
.x4b_c00353{left:223.466667pt;}
.x9_c00353{left:225.066667pt;}
.xfc_c00353{left:230.933333pt;}
.xeb_c00353{left:235.200000pt;}
.xcd_c00353{left:237.733333pt;}
.xd5_c00353{left:240.266667pt;}
.x63_c00353{left:242.666667pt;}
.xc0_c00353{left:243.733333pt;}
.x40_c00353{left:245.066667pt;}
.x28_c00353{left:247.200000pt;}
.x79_c00353{left:248.400000pt;}
.x11b_c00353{left:250.533333pt;}
.x1b_c00353{left:254.400000pt;}
.xf7_c00353{left:255.866667pt;}
.x8f_c00353{left:256.800000pt;}
.xf0_c00353{left:258.266667pt;}
.xe3_c00353{left:259.200000pt;}
.x111_c00353{left:260.400000pt;}
.x36_c00353{left:263.066667pt;}
.x9d_c00353{left:265.333333pt;}
.x1c_c00353{left:271.733333pt;}
.x41_c00353{left:273.866667pt;}
.xc6_c00353{left:274.800000pt;}
.x90_c00353{left:275.733333pt;}
.xa4_c00353{left:277.333333pt;}
.xa_c00353{left:278.800000pt;}
.x84_c00353{left:280.000000pt;}
.x64_c00353{left:281.066667pt;}
.x29_c00353{left:282.666667pt;}
.x112_c00353{left:284.133333pt;}
.xd6_c00353{left:285.333333pt;}
.xf1_c00353{left:286.400000pt;}
.x58_c00353{left:288.133333pt;}
.xb9_c00353{left:290.800000pt;}
.x6f_c00353{left:292.933333pt;}
.x1d_c00353{left:295.466667pt;}
.xae_c00353{left:296.666667pt;}
.x2a_c00353{left:300.933333pt;}
.x4c_c00353{left:302.533333pt;}
.xce_c00353{left:304.000000pt;}
.xe1_c00353{left:305.733333pt;}
.x65_c00353{left:307.333333pt;}
.xb_c00353{left:309.200000pt;}
.x59_c00353{left:312.400000pt;}
.x70_c00353{left:313.733333pt;}
.x42_c00353{left:316.133333pt;}
.x91_c00353{left:318.933333pt;}
.x7a_c00353{left:320.666667pt;}
.x4d_c00353{left:323.066667pt;}
.x66_c00353{left:324.933333pt;}
.x10d_c00353{left:327.333333pt;}
.xc7_c00353{left:328.266667pt;}
.xc2_c00353{left:331.066667pt;}
.x2b_c00353{left:333.600000pt;}
.x1_c00353{left:335.066667pt;}
.xdd_c00353{left:336.133333pt;}
.x97_c00353{left:337.066667pt;}
.x71_c00353{left:338.400000pt;}
.xaf_c00353{left:339.866667pt;}
.xa5_c00353{left:341.066667pt;}
.xcf_c00353{left:344.266667pt;}
.x1e_c00353{left:345.733333pt;}
.x4e_c00353{left:346.800000pt;}
.xec_c00353{left:348.533333pt;}
.x67_c00353{left:349.866667pt;}
.x10e_c00353{left:352.266667pt;}
.xf8_c00353{left:353.466667pt;}
.x98_c00353{left:356.533333pt;}
.x103_c00353{left:357.600000pt;}
.xc3_c00353{left:360.133333pt;}
.x2c_c00353{left:361.066667pt;}
.xd0_c00353{left:363.200000pt;}
.x5a_c00353{left:364.533333pt;}
.xe4_c00353{left:366.400000pt;}
.xb2_c00353{left:367.733333pt;}
.x9e_c00353{left:368.800000pt;}
.xc_c00353{left:370.266667pt;}
.x2_c00353{left:375.066667pt;}
.x85_c00353{left:377.600000pt;}
.xfd_c00353{left:379.066667pt;}
.x37_c00353{left:380.000000pt;}
.x92_c00353{left:382.666667pt;}
.x43_c00353{left:384.666667pt;}
.x72_c00353{left:388.266667pt;}
.x3_c00353{left:392.933333pt;}
.x86_c00353{left:394.266667pt;}
.x7b_c00353{left:396.000000pt;}
.x109_c00353{left:397.333333pt;}
.xd_c00353{left:398.400000pt;}
.xa6_c00353{left:399.333333pt;}
.x2d_c00353{left:400.400000pt;}
.x38_c00353{left:402.133333pt;}
.xed_c00353{left:403.600000pt;}
.xb3_c00353{left:405.466667pt;}
.x1f_c00353{left:406.533333pt;}
.xde_c00353{left:409.066667pt;}
.xfe_c00353{left:412.400000pt;}
.x68_c00353{left:414.800000pt;}
.x44_c00353{left:418.266667pt;}
.x122_c00353{left:419.200000pt;}
.x4f_c00353{left:420.666667pt;}
.x104_c00353{left:421.600000pt;}
.x20_c00353{left:422.800000pt;}
.xba_c00353{left:426.800000pt;}
.x7c_c00353{left:427.733333pt;}
.xac_c00353{left:429.733333pt;}
.x87_c00353{left:432.400000pt;}
.x11c_c00353{left:433.866667pt;}
.xe_c00353{left:438.133333pt;}
.xe2_c00353{left:439.466667pt;}
.x39_c00353{left:440.533333pt;}
.xd7_c00353{left:442.133333pt;}
.xc8_c00353{left:443.200000pt;}
.x69_c00353{left:444.266667pt;}
.x21_c00353{left:445.200000pt;}
.x2e_c00353{left:447.733333pt;}
.x50_c00353{left:449.466667pt;}
.xff_c00353{left:451.466667pt;}
.xf2_c00353{left:453.333333pt;}
.xf_c00353{left:457.066667pt;}
.x5b_c00353{left:458.266667pt;}
.x6a_c00353{left:460.000000pt;}
.x113_c00353{left:462.933333pt;}
.x88_c00353{left:464.666667pt;}
.xdf_c00353{left:466.933333pt;}
.x9f_c00353{left:469.466667pt;}
.xbb_c00353{left:470.666667pt;}
.x73_c00353{left:472.400000pt;}
.xd8_c00353{left:473.466667pt;}
.xd1_c00353{left:476.133333pt;}
.x93_c00353{left:481.866667pt;}
.x10f_c00353{left:485.066667pt;}
.x51_c00353{left:486.266667pt;}
.xe5_c00353{left:487.333333pt;}
.x89_c00353{left:488.400000pt;}
.x45_c00353{left:491.866667pt;}
.x99_c00353{left:494.400000pt;}
.x7d_c00353{left:496.533333pt;}
.xd9_c00353{left:498.400000pt;}
.x10_c00353{left:499.600000pt;}
.xe6_c00353{left:501.733333pt;}
.x11d_c00353{left:502.933333pt;}
.xf9_c00353{left:504.533333pt;}
.x22_c00353{left:507.333333pt;}
.x114_c00353{left:508.400000pt;}
.xa7_c00353{left:510.400000pt;}
.x9a_c00353{left:513.333333pt;}
.x46_c00353{left:515.866667pt;}
.x2f_c00353{left:516.800000pt;}
.x11e_c00353{left:520.533333pt;}
.xfa_c00353{left:523.066667pt;}
.x74_c00353{left:524.933333pt;}
.x116_c00353{left:527.066667pt;}
.x5c_c00353{left:528.400000pt;}
.xbc_c00353{left:530.133333pt;}
.xf3_c00353{left:534.000000pt;}
.x3a_c00353{left:534.933333pt;}
.xb4_c00353{left:536.933333pt;}
.x105_c00353{left:540.400000pt;}
.xc9_c00353{left:541.333333pt;}
.x8a_c00353{left:542.533333pt;}
.x5d_c00353{left:546.000000pt;}
.x30_c00353{left:546.933333pt;}
.xfb_c00353{left:550.933333pt;}
.x75_c00353{left:553.066667pt;}
.x11_c00353{left:555.600000pt;}
.x23_c00353{left:557.200000pt;}
.x6b_c00353{left:559.866667pt;}
.x52_c00353{left:561.466667pt;}
.x117_c00353{left:566.133333pt;}
.xa0_c00353{left:567.066667pt;}
.x110_c00353{left:569.200000pt;}
.xee_c00353{left:572.266667pt;}
.x12_c00353{left:573.466667pt;}
.xb5_c00353{left:574.400000pt;}
.x6c_c00353{left:576.133333pt;}
.xa8_c00353{left:577.200000pt;}
.x76_c00353{left:578.666667pt;}
.x3b_c00353{left:581.333333pt;}
.x31_c00353{left:585.600000pt;}
.x8b_c00353{left:586.666667pt;}
.xa1_c00353{left:587.866667pt;}
.xca_c00353{left:590.000000pt;}
.x121_c00353{left:591.733333pt;}
.xda_c00353{left:592.666667pt;}
.x100_c00353{left:594.800000pt;}
.x24_c00353{left:597.200000pt;}
.x32_c00353{left:602.533333pt;}
.x13_c00353{left:604.133333pt;}
.x6d_c00353{left:606.533333pt;}
.x106_c00353{left:610.533333pt;}
.x53_c00353{left:611.733333pt;}
.x7e_c00353{left:614.000000pt;}
.xa2_c00353{left:616.000000pt;}
.x94_c00353{left:618.000000pt;}
.xd2_c00353{left:620.133333pt;}
.x14_c00353{left:622.400000pt;}
.x8c_c00353{left:623.466667pt;}
.xb6_c00353{left:625.600000pt;}
.x107_c00353{left:630.000000pt;}
.x47_c00353{left:632.133333pt;}
.x9b_c00353{left:634.266667pt;}
.x54_c00353{left:635.466667pt;}
.x3c_c00353{left:637.600000pt;}
.xe7_c00353{left:638.666667pt;}
.xbd_c00353{left:640.266667pt;}
.x15_c00353{left:641.600000pt;}
.x25_c00353{left:643.333333pt;}
.x5e_c00353{left:646.533333pt;}
.x101_c00353{left:648.533333pt;}
.x77_c00353{left:652.266667pt;}
.xa9_c00353{left:655.333333pt;}
.x48_c00353{left:657.066667pt;}
.x11f_c00353{left:658.933333pt;}
.xf4_c00353{left:660.133333pt;}
.xe0_c00353{left:661.200000pt;}
.x4_c00353{left:662.400000pt;}
.x33_c00353{left:664.666667pt;}
.xaa_c00353{left:665.600000pt;}
.x95_c00353{left:669.466667pt;}
.xe8_c00353{left:671.600000pt;}
.xc4_c00353{left:673.600000pt;}
.x5f_c00353{left:676.666667pt;}
}





/* 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_c00354 {
    display:none;
  }
  .loading-indicator_c00354.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00354 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_c00354 { 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_c00354" -> "#page-container .classname_c00354")
 */
.pf_c00354 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00354 { /* 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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00354 { /* 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_c00354 { /* 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_c00354 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00354 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00354 {overflow:visible;}
  }
}
.c_c00354 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00354 { /* 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_c00354:after { /* webkit #35443 */
  content: '';
}
.t_c00354:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00354 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 */
}
.__c00354 { /* 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_c00354 { /* info for Javascript */
  display:none;
}
.l_c00354 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00354 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00354 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00354: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_c00354 {
    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_c00354.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00354.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_c00354 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00354{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00354;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.000000;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;}
.m6e_c00354{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m61_c00354{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00354{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00354{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00354{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00354{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m85_c00354{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m82_c00354{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m30_c00354{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00354{transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180750,0.000000,0.000000,0.250000,0,0);}
.mba_c00354{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00354{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m14_c00354{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00354{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00354{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00354{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m65_c00354{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m62_c00354{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00354{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00354{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00354{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00354{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00354{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00354{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00354{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m67_c00354{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m40_c00354{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m75_c00354{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m33_c00354{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m96_c00354{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00354{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12_c00354{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m66_c00354{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00354{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00354{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mac_c00354{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00354{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m16_c00354{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00354{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m36_c00354{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc_c00354{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m87_c00354{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00354{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00354{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m44_c00354{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00354{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00354{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m53_c00354{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00354{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.md_c00354{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m24_c00354{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00354{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m20_c00354{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.maa_c00354{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m64_c00354{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00354{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m55_c00354{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7_c00354{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m39_c00354{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00354{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00354{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m21_c00354{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00354{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m81_c00354{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00354{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mae_c00354{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00354{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00354{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00354{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m49_c00354{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m73_c00354{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m98_c00354{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c00354{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m37_c00354{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00354{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00354{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m83_c00354{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00354{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m31_c00354{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m13_c00354{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00354{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.maf_c00354{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00354{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m68_c00354{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m90_c00354{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6_c00354{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m86_c00354{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m18_c00354{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m10_c00354{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m70_c00354{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m95_c00354{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m79_c00354{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mab_c00354{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11_c00354{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m93_c00354{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00354{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00354{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);}
.ma3_c00354{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m56_c00354{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00354{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m63_c00354{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00354{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00354{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00354{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m50_c00354{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00354{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mf_c00354{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00354{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00354{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m26_c00354{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb_c00354{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00354{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00354{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00354{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m89_c00354{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00354{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00354{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m92_c00354{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00354{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00354{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m77_c00354{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m97_c00354{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m80_c00354{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00354{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m42_c00354{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m25_c00354{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m54_c00354{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00354{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00354{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00354{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.ma_c00354{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m43_c00354{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00354{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00354{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00354{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m58_c00354{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m72_c00354{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m22_c00354{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mad_c00354{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m29_c00354{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m48_c00354{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00354{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m76_c00354{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m71_c00354{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m19_c00354{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m46_c00354{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m41_c00354{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m52_c00354{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00354{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m27_c00354{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00354{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00354{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00354{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m34_c00354{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m38_c00354{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8_c00354{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m35_c00354{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00354{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00354{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00354{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m60_c00354{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m59_c00354{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00354{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m23_c00354{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00354{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00354{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m28_c00354{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00354{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00354{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00354{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m91_c00354{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00354{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m57_c00354{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00354{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00354{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00354{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00354{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00354{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00354{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00354{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m99_c00354{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m94_c00354{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m74_c00354{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m17_c00354{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m51_c00354{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m69_c00354{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00354{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00354{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.v0_c00354{vertical-align:0.000000px;}
.ls0_c00354{letter-spacing:0.000000px;}
.sc__c00354{text-shadow:none;}
.sc0_c00354{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__c00354{-webkit-text-stroke:0px transparent;}
.sc0_c00354{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00354{word-spacing:-3.125000px;}
.ws4_c00354{word-spacing:0.000000px;}
.ws0_c00354{word-spacing:5.835222px;}
.ws1_c00354{word-spacing:6.288279px;}
.ws3_c00354{word-spacing:13.750000px;}
.fc0_c00354{color:transparent;}
.fs0_c00354{font-size:54.000000px;}
.y0_c00354{bottom:0.000000px;}
.y2d_c00354{bottom:139.350000px;}
.y2c_c00354{bottom:155.550000px;}
.y2b_c00354{bottom:173.550000px;}
.y2a_c00354{bottom:208.050000px;}
.y29_c00354{bottom:228.150000px;}
.y28_c00354{bottom:247.950000px;}
.y27_c00354{bottom:267.750000px;}
.y26_c00354{bottom:287.550000px;}
.y25_c00354{bottom:307.650000px;}
.y24_c00354{bottom:327.450000px;}
.y23_c00354{bottom:347.250000px;}
.y22_c00354{bottom:367.050000px;}
.y21_c00354{bottom:387.150000px;}
.y20_c00354{bottom:406.950000px;}
.y1f_c00354{bottom:426.750000px;}
.y1e_c00354{bottom:446.550000px;}
.y1d_c00354{bottom:466.350000px;}
.y1c_c00354{bottom:486.450000px;}
.y1b_c00354{bottom:506.250000px;}
.y1a_c00354{bottom:526.350000px;}
.y19_c00354{bottom:546.450000px;}
.y18_c00354{bottom:566.250000px;}
.y17_c00354{bottom:586.350000px;}
.y16_c00354{bottom:606.150000px;}
.y15_c00354{bottom:625.950000px;}
.y14_c00354{bottom:646.050000px;}
.y13_c00354{bottom:665.850000px;}
.y12_c00354{bottom:685.950000px;}
.y11_c00354{bottom:705.750000px;}
.y10_c00354{bottom:725.850000px;}
.yf_c00354{bottom:745.950000px;}
.ye_c00354{bottom:766.050000px;}
.yd_c00354{bottom:786.150000px;}
.yc_c00354{bottom:805.950000px;}
.yb_c00354{bottom:825.750000px;}
.ya_c00354{bottom:845.850000px;}
.y9_c00354{bottom:865.650000px;}
.y8_c00354{bottom:885.750000px;}
.y7_c00354{bottom:905.550000px;}
.y6_c00354{bottom:925.350000px;}
.y5_c00354{bottom:945.450000px;}
.y4_c00354{bottom:965.250000px;}
.y3_c00354{bottom:985.350000px;}
.y2_c00354{bottom:1005.450000px;}
.y1_c00354{bottom:1043.700000px;}
.h2_c00354{height:54.000000px;}
.h0_c00354{height:1166.759949px;}
.h1_c00354{height:1167.000000px;}
.w1_c00354{width:913.500000px;}
.w0_c00354{width:913.679993px;}
.x0_c00354{left:0.000000px;}
.x2e_c00354{left:139.350000px;}
.x1_c00354{left:140.700000px;}
.x12c_c00354{left:142.200000px;}
.xc9_c00354{left:157.500000px;}
.xb8_c00354{left:159.000000px;}
.x11_c00354{left:160.650000px;}
.x10a_c00354{left:165.150000px;}
.xdf_c00354{left:166.350000px;}
.x81_c00354{left:168.300000px;}
.x92_c00354{left:169.350000px;}
.x10f_c00354{left:170.400000px;}
.x118_c00354{left:173.250000px;}
.x3_c00354{left:176.100000px;}
.xda_c00354{left:179.100000px;}
.xb9_c00354{left:181.350000px;}
.x20_c00354{left:182.850000px;}
.x99_c00354{left:184.650000px;}
.x11a_c00354{left:185.850000px;}
.xe6_c00354{left:187.200000px;}
.xd2_c00354{left:189.150000px;}
.x12_c00354{left:190.500000px;}
.x131_c00354{left:192.150000px;}
.x125_c00354{left:194.400000px;}
.x57_c00354{left:197.850000px;}
.xdb_c00354{left:199.200000px;}
.x2f_c00354{left:201.600000px;}
.x128_c00354{left:203.250000px;}
.x3d_c00354{left:204.750000px;}
.x8c_c00354{left:206.100000px;}
.x11b_c00354{left:207.150000px;}
.x64_c00354{left:211.800000px;}
.x127_c00354{left:215.400000px;}
.x7a_c00354{left:217.950000px;}
.x93_c00354{left:220.800000px;}
.xe0_c00354{left:223.200000px;}
.x21_c00354{left:225.000000px;}
.xfd_c00354{left:226.650000px;}
.x6c_c00354{left:229.050000px;}
.xa0_c00354{left:230.850000px;}
.x3e_c00354{left:232.800000px;}
.x58_c00354{left:234.900000px;}
.x4_c00354{left:236.550000px;}
.x10b_c00354{left:238.950000px;}
.x122_c00354{left:240.600000px;}
.x22_c00354{left:243.300000px;}
.x12d_c00354{left:246.300000px;}
.x82_c00354{left:247.800000px;}
.x9a_c00354{left:249.450000px;}
.x4a_c00354{left:250.950000px;}
.xfe_c00354{left:254.700000px;}
.x13_c00354{left:256.800000px;}
.xca_c00354{left:259.650000px;}
.xa1_c00354{left:261.450000px;}
.x3f_c00354{left:263.400000px;}
.x12e_c00354{left:265.350000px;}
.xb0_c00354{left:271.050000px;}
.x8d_c00354{left:273.450000px;}
.x30_c00354{left:275.400000px;}
.x14_c00354{left:277.650000px;}
.x6d_c00354{left:279.450000px;}
.x65_c00354{left:280.500000px;}
.xd3_c00354{left:283.500000px;}
.x129_c00354{left:285.750000px;}
.xa2_c00354{left:288.750000px;}
.xb1_c00354{left:290.850000px;}
.x40_c00354{left:292.200000px;}
.x8e_c00354{left:293.550000px;}
.x110_c00354{left:295.950000px;}
.xd6_c00354{left:298.050000px;}
.x5_c00354{left:300.300000px;}
.x31_c00354{left:303.450000px;}
.x105_c00354{left:305.100000px;}
.xaa_c00354{left:306.900000px;}
.x12f_c00354{left:310.350000px;}
.x66_c00354{left:311.850000px;}
.xc3_c00354{left:313.650000px;}
.xba_c00354{left:315.600000px;}
.x6_c00354{left:318.300000px;}
.x83_c00354{left:319.500000px;}
.x23_c00354{left:320.700000px;}
.x7b_c00354{left:324.900000px;}
.x6e_c00354{left:327.750000px;}
.xc4_c00354{left:330.150000px;}
.xf3_c00354{left:331.800000px;}
.xbb_c00354{left:332.850000px;}
.x15_c00354{left:334.500000px;}
.xe1_c00354{left:336.900000px;}
.x59_c00354{left:341.400000px;}
.x10c_c00354{left:342.600000px;}
.x7_c00354{left:343.800000px;}
.x32_c00354{left:348.750000px;}
.xea_c00354{left:351.900000px;}
.x41_c00354{left:354.150000px;}
.xa3_c00354{left:355.650000px;}
.x9b_c00354{left:357.450000px;}
.x16_c00354{left:358.950000px;}
.x5a_c00354{left:361.500000px;}
.x4b_c00354{left:364.050000px;}
.x94_c00354{left:365.850000px;}
.x33_c00354{left:367.050000px;}
.xf4_c00354{left:371.400000px;}
.xcb_c00354{left:376.200000px;}
.x130_c00354{left:378.300000px;}
.xa4_c00354{left:380.100000px;}
.x24_c00354{left:382.200000px;}
.x73_c00354{left:384.750000px;}
.xdc_c00354{left:387.300000px;}
.x8f_c00354{left:388.950000px;}
.xab_c00354{left:393.300000px;}
.x84_c00354{left:394.350000px;}
.x25_c00354{left:395.850000px;}
.x67_c00354{left:399.300000px;}
.xbc_c00354{left:401.250000px;}
.x5b_c00354{left:403.200000px;}
.x111_c00354{left:405.450000px;}
.xa5_c00354{left:407.400000px;}
.x17_c00354{left:410.400000px;}
.x74_c00354{left:411.750000px;}
.xd7_c00354{left:413.100000px;}
.x68_c00354{left:416.250000px;}
.xdd_c00354{left:418.650000px;}
.xeb_c00354{left:421.050000px;}
.x12a_c00354{left:422.850000px;}
.x8_c00354{left:424.800000px;}
.xe7_c00354{left:426.300000px;}
.x5c_c00354{left:427.650000px;}
.x4c_c00354{left:431.700000px;}
.xf0_c00354{left:433.050000px;}
.x34_c00354{left:434.400000px;}
.x2_c00354{left:436.950000px;}
.xb2_c00354{left:440.700000px;}
.xf5_c00354{left:442.650000px;}
.x26_c00354{left:444.750000px;}
.xc5_c00354{left:446.100000px;}
.xe2_c00354{left:450.300000px;}
.x7c_c00354{left:453.450000px;}
.x9_c00354{left:455.100000px;}
.x6f_c00354{left:456.600000px;}
.x112_c00354{left:457.650000px;}
.x106_c00354{left:458.700000px;}
.x42_c00354{left:459.750000px;}
.x4d_c00354{left:461.550000px;}
.x119_c00354{left:463.500000px;}
.x18_c00354{left:465.450000px;}
.x75_c00354{left:471.150000px;}
.xcc_c00354{left:473.100000px;}
.xa6_c00354{left:474.300000px;}
.xe3_c00354{left:475.500000px;}
.xec_c00354{left:477.900000px;}
.x5d_c00354{left:479.100000px;}
.xff_c00354{left:480.150000px;}
.xe8_c00354{left:482.100000px;}
.xa_c00354{left:483.150000px;}
.x35_c00354{left:485.100000px;}
.x4e_c00354{left:487.050000px;}
.xc6_c00354{left:488.550000px;}
.xf6_c00354{left:492.000000px;}
.x43_c00354{left:493.200000px;}
.x19_c00354{left:495.000000px;}
.x100_c00354{left:497.100000px;}
.x5e_c00354{left:502.500000px;}
.x12b_c00354{left:503.850000px;}
.x36_c00354{left:505.650000px;}
.x70_c00354{left:507.300000px;}
.x7d_c00354{left:509.250000px;}
.xa7_c00354{left:510.300000px;}
.xcd_c00354{left:513.750000px;}
.xf1_c00354{left:514.800000px;}
.x27_c00354{left:516.000000px;}
.xac_c00354{left:518.100000px;}
.xb_c00354{left:519.450000px;}
.x10d_c00354{left:520.650000px;}
.x107_c00354{left:523.500000px;}
.xe4_c00354{left:525.150000px;}
.x11c_c00354{left:528.150000px;}
.x123_c00354{left:529.200000px;}
.x95_c00354{left:530.400000px;}
.xb3_c00354{left:531.750000px;}
.xc_c00354{left:533.100000px;}
.x101_c00354{left:535.650000px;}
.x1a_c00354{left:538.500000px;}
.x4f_c00354{left:539.550000px;}
.x7e_c00354{left:541.950000px;}
.x28_c00354{left:544.050000px;}
.xbd_c00354{left:546.300000px;}
.x85_c00354{left:547.350000px;}
.xb4_c00354{left:549.450000px;}
.xc7_c00354{left:550.500000px;}
.xad_c00354{left:552.000000px;}
.x11f_c00354{left:554.550000px;}
.xd8_c00354{left:557.100000px;}
.x44_c00354{left:558.750000px;}
.x37_c00354{left:559.950000px;}
.x9c_c00354{left:562.950000px;}
.xbe_c00354{left:566.850000px;}
.x50_c00354{left:570.150000px;}
.xd4_c00354{left:571.350000px;}
.x102_c00354{left:572.400000px;}
.x5f_c00354{left:575.250000px;}
.x45_c00354{left:576.450000px;}
.x124_c00354{left:577.800000px;}
.x96_c00354{left:580.800000px;}
.xed_c00354{left:582.150000px;}
.x115_c00354{left:583.650000px;}
.x120_c00354{left:584.850000px;}
.x86_c00354{left:587.250000px;}
.x126_c00354{left:588.300000px;}
.x76_c00354{left:590.700000px;}
.x38_c00354{left:592.350000px;}
.xbf_c00354{left:594.900000px;}
.x51_c00354{left:596.400000px;}
.xce_c00354{left:599.850000px;}
.x71_c00354{left:602.700000px;}
.xfa_c00354{left:606.000000px;}
.x1b_c00354{left:607.200000px;}
.x77_c00354{left:609.750000px;}
.xf7_c00354{left:611.550000px;}
.x39_c00354{left:616.800000px;}
.x29_c00354{left:618.150000px;}
.x9d_c00354{left:620.850000px;}
.x60_c00354{left:622.800000px;}
.xfb_c00354{left:625.500000px;}
.xe9_c00354{left:628.350000px;}
.xcf_c00354{left:629.400000px;}
.x116_c00354{left:632.250000px;}
.xae_c00354{left:633.450000px;}
.x87_c00354{left:635.850000px;}
.x2a_c00354{left:637.200000px;}
.x46_c00354{left:638.400000px;}
.x1c_c00354{left:640.350000px;}
.x72_c00354{left:642.000000px;}
.xd_c00354{left:644.400000px;}
.x61_c00354{left:645.900000px;}
.x3a_c00354{left:647.400000px;}
.xa8_c00354{left:649.200000px;}
.x69_c00354{left:650.250000px;}
.x9e_c00354{left:651.750000px;}
.xf8_c00354{left:652.950000px;}
.x52_c00354{left:654.000000px;}
.x108_c00354{left:656.700000px;}
.xe5_c00354{left:658.500000px;}
.x7f_c00354{left:659.700000px;}
.xd0_c00354{left:661.500000px;}
.xe_c00354{left:663.900000px;}
.x121_c00354{left:665.100000px;}
.x11d_c00354{left:668.400000px;}
.x53_c00354{left:672.000000px;}
.x103_c00354{left:673.650000px;}
.x62_c00354{left:674.700000px;}
.x10e_c00354{left:676.200000px;}
.x88_c00354{left:678.750000px;}
.x113_c00354{left:679.800000px;}
.xb5_c00354{left:681.150000px;}
.xc8_c00354{left:683.100000px;}
.xc0_c00354{left:685.650000px;}
.x1d_c00354{left:686.850000px;}
.xd1_c00354{left:691.350000px;}
.x47_c00354{left:692.400000px;}
.x2b_c00354{left:698.100000px;}
.x97_c00354{left:699.900000px;}
.xa9_c00354{left:701.100000px;}
.x89_c00354{left:702.150000px;}
.xee_c00354{left:704.250000px;}
.xc1_c00354{left:705.450000px;}
.x109_c00354{left:707.400000px;}
.x90_c00354{left:708.750000px;}
.x3b_c00354{left:711.900000px;}
.x9f_c00354{left:715.350000px;}
.xb6_c00354{left:717.150000px;}
.x2c_c00354{left:718.950000px;}
.x78_c00354{left:721.350000px;}
.x54_c00354{left:723.450000px;}
.x80_c00354{left:725.550000px;}
.x1e_c00354{left:728.550000px;}
.xfc_c00354{left:729.600000px;}
.x8a_c00354{left:731.700000px;}
.xc2_c00354{left:733.500000px;}
.xef_c00354{left:735.150000px;}
.xf_c00354{left:737.400000px;}
.x11e_c00354{left:738.600000px;}
.x48_c00354{left:740.250000px;}
.x104_c00354{left:743.850000px;}
.x91_c00354{left:746.550000px;}
.x6a_c00354{left:748.200000px;}
.xf2_c00354{left:750.450000px;}
.x55_c00354{left:754.800000px;}
.x10_c00354{left:757.500000px;}
.x63_c00354{left:759.000000px;}
.x49_c00354{left:760.350000px;}
.xd9_c00354{left:761.550000px;}
.x8b_c00354{left:763.800000px;}
.x6b_c00354{left:765.150000px;}
.xb7_c00354{left:767.550000px;}
.xd5_c00354{left:770.400000px;}
.x1f_c00354{left:771.750000px;}
.x56_c00354{left:774.600000px;}
.x117_c00354{left:775.800000px;}
.x2d_c00354{left:777.600000px;}
.xf9_c00354{left:780.150000px;}
.x3c_c00354{left:782.100000px;}
.xaf_c00354{left:785.400000px;}
.x79_c00354{left:788.250000px;}
.x98_c00354{left:790.950000px;}
.xde_c00354{left:792.300000px;}
.x114_c00354{left:795.000000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws2_c00354{word-spacing:-2.777778pt;}
.ws4_c00354{word-spacing:0.000000pt;}
.ws0_c00354{word-spacing:5.186864pt;}
.ws1_c00354{word-spacing:5.589581pt;}
.ws3_c00354{word-spacing:12.222222pt;}
.fs0_c00354{font-size:48.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y2d_c00354{bottom:123.866667pt;}
.y2c_c00354{bottom:138.266667pt;}
.y2b_c00354{bottom:154.266667pt;}
.y2a_c00354{bottom:184.933333pt;}
.y29_c00354{bottom:202.800000pt;}
.y28_c00354{bottom:220.400000pt;}
.y27_c00354{bottom:238.000000pt;}
.y26_c00354{bottom:255.600000pt;}
.y25_c00354{bottom:273.466667pt;}
.y24_c00354{bottom:291.066667pt;}
.y23_c00354{bottom:308.666667pt;}
.y22_c00354{bottom:326.266667pt;}
.y21_c00354{bottom:344.133333pt;}
.y20_c00354{bottom:361.733333pt;}
.y1f_c00354{bottom:379.333333pt;}
.y1e_c00354{bottom:396.933333pt;}
.y1d_c00354{bottom:414.533333pt;}
.y1c_c00354{bottom:432.400000pt;}
.y1b_c00354{bottom:450.000000pt;}
.y1a_c00354{bottom:467.866667pt;}
.y19_c00354{bottom:485.733333pt;}
.y18_c00354{bottom:503.333333pt;}
.y17_c00354{bottom:521.200000pt;}
.y16_c00354{bottom:538.800000pt;}
.y15_c00354{bottom:556.400000pt;}
.y14_c00354{bottom:574.266667pt;}
.y13_c00354{bottom:591.866667pt;}
.y12_c00354{bottom:609.733333pt;}
.y11_c00354{bottom:627.333333pt;}
.y10_c00354{bottom:645.200000pt;}
.yf_c00354{bottom:663.066667pt;}
.ye_c00354{bottom:680.933333pt;}
.yd_c00354{bottom:698.800000pt;}
.yc_c00354{bottom:716.400000pt;}
.yb_c00354{bottom:734.000000pt;}
.ya_c00354{bottom:751.866667pt;}
.y9_c00354{bottom:769.466667pt;}
.y8_c00354{bottom:787.333333pt;}
.y7_c00354{bottom:804.933333pt;}
.y6_c00354{bottom:822.533333pt;}
.y5_c00354{bottom:840.400000pt;}
.y4_c00354{bottom:858.000000pt;}
.y3_c00354{bottom:875.866667pt;}
.y2_c00354{bottom:893.733333pt;}
.y1_c00354{bottom:927.733333pt;}
.h2_c00354{height:48.000000pt;}
.h0_c00354{height:1037.119955pt;}
.h1_c00354{height:1037.333333pt;}
.w1_c00354{width:812.000000pt;}
.w0_c00354{width:812.159993pt;}
.x0_c00354{left:0.000000pt;}
.x2e_c00354{left:123.866667pt;}
.x1_c00354{left:125.066667pt;}
.x12c_c00354{left:126.400000pt;}
.xc9_c00354{left:140.000000pt;}
.xb8_c00354{left:141.333333pt;}
.x11_c00354{left:142.800000pt;}
.x10a_c00354{left:146.800000pt;}
.xdf_c00354{left:147.866667pt;}
.x81_c00354{left:149.600000pt;}
.x92_c00354{left:150.533333pt;}
.x10f_c00354{left:151.466667pt;}
.x118_c00354{left:154.000000pt;}
.x3_c00354{left:156.533333pt;}
.xda_c00354{left:159.200000pt;}
.xb9_c00354{left:161.200000pt;}
.x20_c00354{left:162.533333pt;}
.x99_c00354{left:164.133333pt;}
.x11a_c00354{left:165.200000pt;}
.xe6_c00354{left:166.400000pt;}
.xd2_c00354{left:168.133333pt;}
.x12_c00354{left:169.333333pt;}
.x131_c00354{left:170.800000pt;}
.x125_c00354{left:172.800000pt;}
.x57_c00354{left:175.866667pt;}
.xdb_c00354{left:177.066667pt;}
.x2f_c00354{left:179.200000pt;}
.x128_c00354{left:180.666667pt;}
.x3d_c00354{left:182.000000pt;}
.x8c_c00354{left:183.200000pt;}
.x11b_c00354{left:184.133333pt;}
.x64_c00354{left:188.266667pt;}
.x127_c00354{left:191.466667pt;}
.x7a_c00354{left:193.733333pt;}
.x93_c00354{left:196.266667pt;}
.xe0_c00354{left:198.400000pt;}
.x21_c00354{left:200.000000pt;}
.xfd_c00354{left:201.466667pt;}
.x6c_c00354{left:203.600000pt;}
.xa0_c00354{left:205.200000pt;}
.x3e_c00354{left:206.933333pt;}
.x58_c00354{left:208.800000pt;}
.x4_c00354{left:210.266667pt;}
.x10b_c00354{left:212.400000pt;}
.x122_c00354{left:213.866667pt;}
.x22_c00354{left:216.266667pt;}
.x12d_c00354{left:218.933333pt;}
.x82_c00354{left:220.266667pt;}
.x9a_c00354{left:221.733333pt;}
.x4a_c00354{left:223.066667pt;}
.xfe_c00354{left:226.400000pt;}
.x13_c00354{left:228.266667pt;}
.xca_c00354{left:230.800000pt;}
.xa1_c00354{left:232.400000pt;}
.x3f_c00354{left:234.133333pt;}
.x12e_c00354{left:235.866667pt;}
.xb0_c00354{left:240.933333pt;}
.x8d_c00354{left:243.066667pt;}
.x30_c00354{left:244.800000pt;}
.x14_c00354{left:246.800000pt;}
.x6d_c00354{left:248.400000pt;}
.x65_c00354{left:249.333333pt;}
.xd3_c00354{left:252.000000pt;}
.x129_c00354{left:254.000000pt;}
.xa2_c00354{left:256.666667pt;}
.xb1_c00354{left:258.533333pt;}
.x40_c00354{left:259.733333pt;}
.x8e_c00354{left:260.933333pt;}
.x110_c00354{left:263.066667pt;}
.xd6_c00354{left:264.933333pt;}
.x5_c00354{left:266.933333pt;}
.x31_c00354{left:269.733333pt;}
.x105_c00354{left:271.200000pt;}
.xaa_c00354{left:272.800000pt;}
.x12f_c00354{left:275.866667pt;}
.x66_c00354{left:277.200000pt;}
.xc3_c00354{left:278.800000pt;}
.xba_c00354{left:280.533333pt;}
.x6_c00354{left:282.933333pt;}
.x83_c00354{left:284.000000pt;}
.x23_c00354{left:285.066667pt;}
.x7b_c00354{left:288.800000pt;}
.x6e_c00354{left:291.333333pt;}
.xc4_c00354{left:293.466667pt;}
.xf3_c00354{left:294.933333pt;}
.xbb_c00354{left:295.866667pt;}
.x15_c00354{left:297.333333pt;}
.xe1_c00354{left:299.466667pt;}
.x59_c00354{left:303.466667pt;}
.x10c_c00354{left:304.533333pt;}
.x7_c00354{left:305.600000pt;}
.x32_c00354{left:310.000000pt;}
.xea_c00354{left:312.800000pt;}
.x41_c00354{left:314.800000pt;}
.xa3_c00354{left:316.133333pt;}
.x9b_c00354{left:317.733333pt;}
.x16_c00354{left:319.066667pt;}
.x5a_c00354{left:321.333333pt;}
.x4b_c00354{left:323.600000pt;}
.x94_c00354{left:325.200000pt;}
.x33_c00354{left:326.266667pt;}
.xf4_c00354{left:330.133333pt;}
.xcb_c00354{left:334.400000pt;}
.x130_c00354{left:336.266667pt;}
.xa4_c00354{left:337.866667pt;}
.x24_c00354{left:339.733333pt;}
.x73_c00354{left:342.000000pt;}
.xdc_c00354{left:344.266667pt;}
.x8f_c00354{left:345.733333pt;}
.xab_c00354{left:349.600000pt;}
.x84_c00354{left:350.533333pt;}
.x25_c00354{left:351.866667pt;}
.x67_c00354{left:354.933333pt;}
.xbc_c00354{left:356.666667pt;}
.x5b_c00354{left:358.400000pt;}
.x111_c00354{left:360.400000pt;}
.xa5_c00354{left:362.133333pt;}
.x17_c00354{left:364.800000pt;}
.x74_c00354{left:366.000000pt;}
.xd7_c00354{left:367.200000pt;}
.x68_c00354{left:370.000000pt;}
.xdd_c00354{left:372.133333pt;}
.xeb_c00354{left:374.266667pt;}
.x12a_c00354{left:375.866667pt;}
.x8_c00354{left:377.600000pt;}
.xe7_c00354{left:378.933333pt;}
.x5c_c00354{left:380.133333pt;}
.x4c_c00354{left:383.733333pt;}
.xf0_c00354{left:384.933333pt;}
.x34_c00354{left:386.133333pt;}
.x2_c00354{left:388.400000pt;}
.xb2_c00354{left:391.733333pt;}
.xf5_c00354{left:393.466667pt;}
.x26_c00354{left:395.333333pt;}
.xc5_c00354{left:396.533333pt;}
.xe2_c00354{left:400.266667pt;}
.x7c_c00354{left:403.066667pt;}
.x9_c00354{left:404.533333pt;}
.x6f_c00354{left:405.866667pt;}
.x112_c00354{left:406.800000pt;}
.x106_c00354{left:407.733333pt;}
.x42_c00354{left:408.666667pt;}
.x4d_c00354{left:410.266667pt;}
.x119_c00354{left:412.000000pt;}
.x18_c00354{left:413.733333pt;}
.x75_c00354{left:418.800000pt;}
.xcc_c00354{left:420.533333pt;}
.xa6_c00354{left:421.600000pt;}
.xe3_c00354{left:422.666667pt;}
.xec_c00354{left:424.800000pt;}
.x5d_c00354{left:425.866667pt;}
.xff_c00354{left:426.800000pt;}
.xe8_c00354{left:428.533333pt;}
.xa_c00354{left:429.466667pt;}
.x35_c00354{left:431.200000pt;}
.x4e_c00354{left:432.933333pt;}
.xc6_c00354{left:434.266667pt;}
.xf6_c00354{left:437.333333pt;}
.x43_c00354{left:438.400000pt;}
.x19_c00354{left:440.000000pt;}
.x100_c00354{left:441.866667pt;}
.x5e_c00354{left:446.666667pt;}
.x12b_c00354{left:447.866667pt;}
.x36_c00354{left:449.466667pt;}
.x70_c00354{left:450.933333pt;}
.x7d_c00354{left:452.666667pt;}
.xa7_c00354{left:453.600000pt;}
.xcd_c00354{left:456.666667pt;}
.xf1_c00354{left:457.600000pt;}
.x27_c00354{left:458.666667pt;}
.xac_c00354{left:460.533333pt;}
.xb_c00354{left:461.733333pt;}
.x10d_c00354{left:462.800000pt;}
.x107_c00354{left:465.333333pt;}
.xe4_c00354{left:466.800000pt;}
.x11c_c00354{left:469.466667pt;}
.x123_c00354{left:470.400000pt;}
.x95_c00354{left:471.466667pt;}
.xb3_c00354{left:472.666667pt;}
.xc_c00354{left:473.866667pt;}
.x101_c00354{left:476.133333pt;}
.x1a_c00354{left:478.666667pt;}
.x4f_c00354{left:479.600000pt;}
.x7e_c00354{left:481.733333pt;}
.x28_c00354{left:483.600000pt;}
.xbd_c00354{left:485.600000pt;}
.x85_c00354{left:486.533333pt;}
.xb4_c00354{left:488.400000pt;}
.xc7_c00354{left:489.333333pt;}
.xad_c00354{left:490.666667pt;}
.x11f_c00354{left:492.933333pt;}
.xd8_c00354{left:495.200000pt;}
.x44_c00354{left:496.666667pt;}
.x37_c00354{left:497.733333pt;}
.x9c_c00354{left:500.400000pt;}
.xbe_c00354{left:503.866667pt;}
.x50_c00354{left:506.800000pt;}
.xd4_c00354{left:507.866667pt;}
.x102_c00354{left:508.800000pt;}
.x5f_c00354{left:511.333333pt;}
.x45_c00354{left:512.400000pt;}
.x124_c00354{left:513.600000pt;}
.x96_c00354{left:516.266667pt;}
.xed_c00354{left:517.466667pt;}
.x115_c00354{left:518.800000pt;}
.x120_c00354{left:519.866667pt;}
.x86_c00354{left:522.000000pt;}
.x126_c00354{left:522.933333pt;}
.x76_c00354{left:525.066667pt;}
.x38_c00354{left:526.533333pt;}
.xbf_c00354{left:528.800000pt;}
.x51_c00354{left:530.133333pt;}
.xce_c00354{left:533.200000pt;}
.x71_c00354{left:535.733333pt;}
.xfa_c00354{left:538.666667pt;}
.x1b_c00354{left:539.733333pt;}
.x77_c00354{left:542.000000pt;}
.xf7_c00354{left:543.600000pt;}
.x39_c00354{left:548.266667pt;}
.x29_c00354{left:549.466667pt;}
.x9d_c00354{left:551.866667pt;}
.x60_c00354{left:553.600000pt;}
.xfb_c00354{left:556.000000pt;}
.xe9_c00354{left:558.533333pt;}
.xcf_c00354{left:559.466667pt;}
.x116_c00354{left:562.000000pt;}
.xae_c00354{left:563.066667pt;}
.x87_c00354{left:565.200000pt;}
.x2a_c00354{left:566.400000pt;}
.x46_c00354{left:567.466667pt;}
.x1c_c00354{left:569.200000pt;}
.x72_c00354{left:570.666667pt;}
.xd_c00354{left:572.800000pt;}
.x61_c00354{left:574.133333pt;}
.x3a_c00354{left:575.466667pt;}
.xa8_c00354{left:577.066667pt;}
.x69_c00354{left:578.000000pt;}
.x9e_c00354{left:579.333333pt;}
.xf8_c00354{left:580.400000pt;}
.x52_c00354{left:581.333333pt;}
.x108_c00354{left:583.733333pt;}
.xe5_c00354{left:585.333333pt;}
.x7f_c00354{left:586.400000pt;}
.xd0_c00354{left:588.000000pt;}
.xe_c00354{left:590.133333pt;}
.x121_c00354{left:591.200000pt;}
.x11d_c00354{left:594.133333pt;}
.x53_c00354{left:597.333333pt;}
.x103_c00354{left:598.800000pt;}
.x62_c00354{left:599.733333pt;}
.x10e_c00354{left:601.066667pt;}
.x88_c00354{left:603.333333pt;}
.x113_c00354{left:604.266667pt;}
.xb5_c00354{left:605.466667pt;}
.xc8_c00354{left:607.200000pt;}
.xc0_c00354{left:609.466667pt;}
.x1d_c00354{left:610.533333pt;}
.xd1_c00354{left:614.533333pt;}
.x47_c00354{left:615.466667pt;}
.x2b_c00354{left:620.533333pt;}
.x97_c00354{left:622.133333pt;}
.xa9_c00354{left:623.200000pt;}
.x89_c00354{left:624.133333pt;}
.xee_c00354{left:626.000000pt;}
.xc1_c00354{left:627.066667pt;}
.x109_c00354{left:628.800000pt;}
.x90_c00354{left:630.000000pt;}
.x3b_c00354{left:632.800000pt;}
.x9f_c00354{left:635.866667pt;}
.xb6_c00354{left:637.466667pt;}
.x2c_c00354{left:639.066667pt;}
.x78_c00354{left:641.200000pt;}
.x54_c00354{left:643.066667pt;}
.x80_c00354{left:644.933333pt;}
.x1e_c00354{left:647.600000pt;}
.xfc_c00354{left:648.533333pt;}
.x8a_c00354{left:650.400000pt;}
.xc2_c00354{left:652.000000pt;}
.xef_c00354{left:653.466667pt;}
.xf_c00354{left:655.466667pt;}
.x11e_c00354{left:656.533333pt;}
.x48_c00354{left:658.000000pt;}
.x104_c00354{left:661.200000pt;}
.x91_c00354{left:663.600000pt;}
.x6a_c00354{left:665.066667pt;}
.xf2_c00354{left:667.066667pt;}
.x55_c00354{left:670.933333pt;}
.x10_c00354{left:673.333333pt;}
.x63_c00354{left:674.666667pt;}
.x49_c00354{left:675.866667pt;}
.xd9_c00354{left:676.933333pt;}
.x8b_c00354{left:678.933333pt;}
.x6b_c00354{left:680.133333pt;}
.xb7_c00354{left:682.266667pt;}
.xd5_c00354{left:684.800000pt;}
.x1f_c00354{left:686.000000pt;}
.x56_c00354{left:688.533333pt;}
.x117_c00354{left:689.600000pt;}
.x2d_c00354{left:691.200000pt;}
.xf9_c00354{left:693.466667pt;}
.x3c_c00354{left:695.200000pt;}
.xaf_c00354{left:698.133333pt;}
.x79_c00354{left:700.666667pt;}
.x98_c00354{left:703.066667pt;}
.xde_c00354{left:704.266667pt;}
.x114_c00354{left:706.666667pt;}
}





/* 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_c00355 {
    display:none;
  }
  .loading-indicator_c00355.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00355 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_c00355 { 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_c00355" -> "#page-container .classname_c00355")
 */
.pf_c00355 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00355 { /* 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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00355 { /* 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_c00355 { /* 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_c00355 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00355 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00355 {overflow:visible;}
  }
}
.c_c00355 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00355 { /* 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_c00355:after { /* webkit #35443 */
  content: '';
}
.t_c00355:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00355 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 */
}
.__c00355 { /* 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_c00355 { /* info for Javascript */
  display:none;
}
.l_c00355 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00355 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00355 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00355: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_c00355 {
    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_c00355.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00355.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_c00355 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00355{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.000000;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;}
.m2a_c00355{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m23_c00355{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.me_c00355{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6_c00355{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m12_c00355{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb_c00355{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma_c00355{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4_c00355{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mc_c00355{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m20_c00355{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m25_c00355{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00355{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7_c00355{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m21_c00355{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m26_c00355{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1_c00355{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00355{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m28_c00355{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5_c00355{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m2_c00355{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m29_c00355{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00355{transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.410000,0.000000,0.000000,0.250000,0,0);}
.m22_c00355{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00355{transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432000,0.000000,0.000000,0.250000,0,0);}
.m27_c00355{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.498000,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00355{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m13_c00355{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.866750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00355{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{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__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:0.000000px;}
.fc0_c00355{color:transparent;}
.fs2_c00355{font-size:24.000000px;}
.fs0_c00355{font-size:42.000000px;}
.fs1_c00355{font-size:54.000000px;}
.fs3_c00355{font-size:60.000000px;}
.y0_c00355{bottom:0.000000px;}
.yd_c00355{bottom:24.450000px;}
.yc_c00355{bottom:59.100000px;}
.yb_c00355{bottom:73.800000px;}
.ya_c00355{bottom:93.300000px;}
.y9_c00355{bottom:109.500000px;}
.y8_c00355{bottom:126.750000px;}
.y7_c00355{bottom:160.200000px;}
.y6_c00355{bottom:173.550000px;}
.y4_c00355{bottom:623.850000px;}
.y3_c00355{bottom:636.000000px;}
.y2_c00355{bottom:649.350000px;}
.y5_c00355{bottom:657.750000px;}
.y1_c00355{bottom:661.650000px;}
.h4_c00355{height:24.000000px;}
.h2_c00355{height:42.000000px;}
.h3_c00355{height:54.000000px;}
.h5_c00355{height:60.000000px;}
.h0_c00355{height:1166.759949px;}
.h1_c00355{height:1167.000000px;}
.w1_c00355{width:913.500000px;}
.w0_c00355{width:913.679993px;}
.x0_c00355{left:0.000000px;}
.x7_c00355{left:80.700000px;}
.x12_c00355{left:82.500000px;}
.x22_c00355{left:86.400000px;}
.x1e_c00355{left:87.750000px;}
.x1_c00355{left:98.250000px;}
.x6_c00355{left:99.600000px;}
.x8_c00355{left:103.350000px;}
.x1d_c00355{left:104.700000px;}
.x13_c00355{left:108.000000px;}
.x1c_c00355{left:119.550000px;}
.x15_c00355{left:120.900000px;}
.x1f_c00355{left:125.850000px;}
.x2_c00355{left:127.050000px;}
.x4_c00355{left:129.150000px;}
.x9_c00355{left:131.100000px;}
.x23_c00355{left:134.700000px;}
.x14_c00355{left:138.300000px;}
.x16_c00355{left:142.200000px;}
.xa_c00355{left:146.550000px;}
.x20_c00355{left:148.500000px;}
.x21_c00355{left:151.200000px;}
.x17_c00355{left:154.350000px;}
.x24_c00355{left:156.600000px;}
.x18_c00355{left:159.750000px;}
.x5_c00355{left:162.300000px;}
.x3_c00355{left:163.350000px;}
.x19_c00355{left:173.850000px;}
.xb_c00355{left:180.000000px;}
.x1a_c00355{left:181.350000px;}
.x1b_c00355{left:196.050000px;}
.xc_c00355{left:211.650000px;}
.x25_c00355{left:220.350000px;}
.xd_c00355{left:232.200000px;}
.xe_c00355{left:264.300000px;}
.xf_c00355{left:736.500000px;}
.x10_c00355{left:759.600000px;}
.x11_c00355{left:782.700000px;}
.x26_c00355{left:806.100000px;}
.x27_c00355{left:818.700000px;}
.x28_c00355{left:826.650000px;}
.x29_c00355{left:836.700000px;}
.x2a_c00355{left:860.400000px;}
.x2b_c00355{left:864.000000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.fs2_c00355{font-size:21.333333pt;}
.fs0_c00355{font-size:37.333333pt;}
.fs1_c00355{font-size:48.000000pt;}
.fs3_c00355{font-size:53.333333pt;}
.y0_c00355{bottom:0.000000pt;}
.yd_c00355{bottom:21.733333pt;}
.yc_c00355{bottom:52.533333pt;}
.yb_c00355{bottom:65.600000pt;}
.ya_c00355{bottom:82.933333pt;}
.y9_c00355{bottom:97.333333pt;}
.y8_c00355{bottom:112.666667pt;}
.y7_c00355{bottom:142.400000pt;}
.y6_c00355{bottom:154.266667pt;}
.y4_c00355{bottom:554.533333pt;}
.y3_c00355{bottom:565.333333pt;}
.y2_c00355{bottom:577.200000pt;}
.y5_c00355{bottom:584.666667pt;}
.y1_c00355{bottom:588.133333pt;}
.h4_c00355{height:21.333333pt;}
.h2_c00355{height:37.333333pt;}
.h3_c00355{height:48.000000pt;}
.h5_c00355{height:53.333333pt;}
.h0_c00355{height:1037.119955pt;}
.h1_c00355{height:1037.333333pt;}
.w1_c00355{width:812.000000pt;}
.w0_c00355{width:812.159993pt;}
.x0_c00355{left:0.000000pt;}
.x7_c00355{left:71.733333pt;}
.x12_c00355{left:73.333333pt;}
.x22_c00355{left:76.800000pt;}
.x1e_c00355{left:78.000000pt;}
.x1_c00355{left:87.333333pt;}
.x6_c00355{left:88.533333pt;}
.x8_c00355{left:91.866667pt;}
.x1d_c00355{left:93.066667pt;}
.x13_c00355{left:96.000000pt;}
.x1c_c00355{left:106.266667pt;}
.x15_c00355{left:107.466667pt;}
.x1f_c00355{left:111.866667pt;}
.x2_c00355{left:112.933333pt;}
.x4_c00355{left:114.800000pt;}
.x9_c00355{left:116.533333pt;}
.x23_c00355{left:119.733333pt;}
.x14_c00355{left:122.933333pt;}
.x16_c00355{left:126.400000pt;}
.xa_c00355{left:130.266667pt;}
.x20_c00355{left:132.000000pt;}
.x21_c00355{left:134.400000pt;}
.x17_c00355{left:137.200000pt;}
.x24_c00355{left:139.200000pt;}
.x18_c00355{left:142.000000pt;}
.x5_c00355{left:144.266667pt;}
.x3_c00355{left:145.200000pt;}
.x19_c00355{left:154.533333pt;}
.xb_c00355{left:160.000000pt;}
.x1a_c00355{left:161.200000pt;}
.x1b_c00355{left:174.266667pt;}
.xc_c00355{left:188.133333pt;}
.x25_c00355{left:195.866667pt;}
.xd_c00355{left:206.400000pt;}
.xe_c00355{left:234.933333pt;}
.xf_c00355{left:654.666667pt;}
.x10_c00355{left:675.200000pt;}
.x11_c00355{left:695.733333pt;}
.x26_c00355{left:716.533333pt;}
.x27_c00355{left:727.733333pt;}
.x28_c00355{left:734.800000pt;}
.x29_c00355{left:743.733333pt;}
.x2a_c00355{left:764.800000pt;}
.x2b_c00355{left:768.000000pt;}
}





/* 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_c00356 {
    display:none;
  }
  .loading-indicator_c00356.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00356 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_c00356 { 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_c00356" -> "#page-container .classname_c00356")
 */
.pf_c00356 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00356 { /* 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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00356 { /* 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_c00356 { /* 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_c00356 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00356 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00356 {overflow:visible;}
  }
}
.c_c00356 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00356 { /* 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_c00356:after { /* webkit #35443 */
  content: '';
}
.t_c00356:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00356 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 */
}
.__c00356 { /* 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_c00356 { /* info for Javascript */
  display:none;
}
.l_c00356 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00356 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00356 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00356: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_c00356 {
    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_c00356.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00356.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_c00356 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00356{font-family:sans-serif;visibility:hidden;}
.sc__c00356{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
}
.y0_c00356{bottom:0.000000px;}
.h0_c00356{height:1166.759949px;}
.h1_c00356{height:1167.000000px;}
.w1_c00356{width:913.500000px;}
.w0_c00356{width:913.679993px;}
.x0_c00356{left:0.000000px;}
@media print{
.y0_c00356{bottom:0.000000pt;}
.h0_c00356{height:1037.119955pt;}
.h1_c00356{height:1037.333333pt;}
.w1_c00356{width:812.000000pt;}
.w0_c00356{width:812.159993pt;}
.x0_c00356{left:0.000000pt;}
}





/* 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_c00357 {
    display:none;
  }
  .loading-indicator_c00357.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00357 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_c00357 { 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_c00357" -> "#page-container .classname_c00357")
 */
.pf_c00357 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00357 { /* 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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00357 { /* 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_c00357 { /* 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_c00357 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00357 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00357 {overflow:visible;}
  }
}
.c_c00357 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00357 { /* 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_c00357:after { /* webkit #35443 */
  content: '';
}
.t_c00357:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00357 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 */
}
.__c00357 { /* 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_c00357 { /* info for Javascript */
  display:none;
}
.l_c00357 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00357 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00357 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00357: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_c00357 {
    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_c00357.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00357.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_c00357 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00357{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00357;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.000000;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;}
.ma5_c00357{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00357{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00357{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m20_c00357{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m27_c00357{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00357{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m33_c00357{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00357{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00357{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m67_c00357{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m74_c00357{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m94_c00357{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m65_c00357{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00357{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00357{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m45_c00357{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m31_c00357{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m55_c00357{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00357{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00357{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m75_c00357{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m44_c00357{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m90_c00357{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00357{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m24_c00357{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m58_c00357{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00357{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00357{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m56_c00357{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00357{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m35_c00357{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00357{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00357{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00357{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m46_c00357{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m66_c00357{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m99_c00357{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00357{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m96_c00357{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00357{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m30_c00357{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m88_c00357{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m62_c00357{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m48_c00357{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00357{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00357{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m60_c00357{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00357{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00357{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00357{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m81_c00357{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00357{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m87_c00357{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m12_c00357{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00357{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00357{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m36_c00357{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m82_c00357{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m19_c00357{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m51_c00357{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m80_c00357{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m86_c00357{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m78_c00357{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00357{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15_c00357{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00357{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00357{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00357{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00357{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m98_c00357{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);}
.m1d_c00357{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m64_c00357{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m57_c00357{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m50_c00357{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.me_c00357{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m73_c00357{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00357{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m69_c00357{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m61_c00357{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m49_c00357{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m18_c00357{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00357{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00357{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m43_c00357{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00357{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00357{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m16_c00357{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m68_c00357{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m79_c00357{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m38_c00357{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m32_c00357{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m92_c00357{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m34_c00357{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m37_c00357{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m21_c00357{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00357{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m47_c00357{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00357{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2_c00357{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m28_c00357{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m97_c00357{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00357{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m95_c00357{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m71_c00357{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00357{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00357{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00357{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00357{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00357{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m72_c00357{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m26_c00357{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m41_c00357{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m89_c00357{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m85_c00357{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00357{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m17_c00357{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00357{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m63_c00357{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m53_c00357{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00357{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m42_c00357{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00357{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m22_c00357{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00357{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m59_c00357{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00357{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m52_c00357{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m84_c00357{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m40_c00357{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00357{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00357{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00357{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m70_c00357{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00357{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m13_c00357{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m25_c00357{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00357{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m29_c00357{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m83_c00357{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00357{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00357{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m77_c00357{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00357{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00357{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m14_c00357{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m91_c00357{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m76_c00357{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m93_c00357{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00357{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00357{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m54_c00357{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00357{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00357{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m3_c00357{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00357{vertical-align:0.000000px;}
.ls0_c00357{letter-spacing:0.000000px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{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__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00357{word-spacing:-10.987842px;}
.ws2_c00357{word-spacing:-9.125000px;}
.ws5_c00357{word-spacing:-3.978444px;}
.ws0_c00357{word-spacing:-3.834688px;}
.wsa_c00357{word-spacing:-2.836926px;}
.wsb_c00357{word-spacing:0.000000px;}
.ws4_c00357{word-spacing:3.125000px;}
.ws8_c00357{word-spacing:3.166667px;}
.ws3_c00357{word-spacing:3.906752px;}
.ws9_c00357{word-spacing:5.750000px;}
.ws1_c00357{word-spacing:6.002849px;}
.ws6_c00357{word-spacing:6.705717px;}
.fc0_c00357{color:transparent;}
.fs2_c00357{font-size:48.000000px;}
.fs1_c00357{font-size:54.000000px;}
.fs0_c00357{font-size:60.000000px;}
.y0_c00357{bottom:0.000000px;}
.y2b_c00357{bottom:128.100000px;}
.y2a_c00357{bottom:174.900000px;}
.y29_c00357{bottom:194.400000px;}
.y28_c00357{bottom:214.200000px;}
.y27_c00357{bottom:234.000000px;}
.y26_c00357{bottom:253.500000px;}
.y25_c00357{bottom:273.600000px;}
.y24_c00357{bottom:293.400000px;}
.y23_c00357{bottom:313.200000px;}
.y22_c00357{bottom:333.000000px;}
.y21_c00357{bottom:352.800000px;}
.y20_c00357{bottom:372.900000px;}
.y1f_c00357{bottom:392.550000px;}
.y1e_c00357{bottom:412.650000px;}
.y1d_c00357{bottom:432.450000px;}
.y1c_c00357{bottom:452.250000px;}
.y1b_c00357{bottom:472.350000px;}
.y1a_c00357{bottom:510.450000px;}
.y19_c00357{bottom:530.250000px;}
.y18_c00357{bottom:550.350000px;}
.y17_c00357{bottom:570.900000px;}
.y16_c00357{bottom:591.000000px;}
.y15_c00357{bottom:610.500000px;}
.y14_c00357{bottom:630.600000px;}
.y13_c00357{bottom:650.700000px;}
.y12_c00357{bottom:670.200000px;}
.y11_c00357{bottom:690.000000px;}
.y10_c00357{bottom:710.100000px;}
.yf_c00357{bottom:730.200000px;}
.ye_c00357{bottom:750.000000px;}
.yd_c00357{bottom:769.800000px;}
.yc_c00357{bottom:789.900000px;}
.yb_c00357{bottom:809.700000px;}
.ya_c00357{bottom:847.800000px;}
.y9_c00357{bottom:867.900000px;}
.y8_c00357{bottom:888.300000px;}
.y7_c00357{bottom:908.100000px;}
.y6_c00357{bottom:928.200000px;}
.y5_c00357{bottom:948.000000px;}
.y4_c00357{bottom:968.100000px;}
.y3_c00357{bottom:988.200000px;}
.y2_c00357{bottom:1008.000000px;}
.y1_c00357{bottom:1046.100000px;}
.h4_c00357{height:48.000000px;}
.h3_c00357{height:54.000000px;}
.h2_c00357{height:60.000000px;}
.h0_c00357{height:1166.759949px;}
.h1_c00357{height:1167.000000px;}
.w1_c00357{width:913.500000px;}
.w0_c00357{width:913.679993px;}
.x0_c00357{left:0.000000px;}
.x13_c00357{left:94.050000px;}
.xe7_c00357{left:95.100000px;}
.x12c_c00357{left:113.250000px;}
.x102_c00357{left:115.050000px;}
.x10a_c00357{left:118.650000px;}
.x9b_c00357{left:120.900000px;}
.xc1_c00357{left:123.750000px;}
.x3_c00357{left:125.250000px;}
.xe2_c00357{left:126.300000px;}
.x7c_c00357{left:128.700000px;}
.x4d_c00357{left:129.750000px;}
.x132_c00357{left:131.100000px;}
.xef_c00357{left:132.150000px;}
.xdc_c00357{left:133.200000px;}
.x33_c00357{left:134.550000px;}
.xfb_c00357{left:137.850000px;}
.x8e_c00357{left:139.500000px;}
.x25_c00357{left:146.850000px;}
.x7d_c00357{left:148.500000px;}
.x14_c00357{left:149.850000px;}
.x60_c00357{left:150.900000px;}
.x86_c00357{left:151.950000px;}
.x42_c00357{left:153.150000px;}
.x103_c00357{left:154.350000px;}
.xab_c00357{left:157.650000px;}
.x11f_c00357{left:160.500000px;}
.xd3_c00357{left:162.300000px;}
.xcb_c00357{left:163.650000px;}
.x75_c00357{left:166.050000px;}
.x9c_c00357{left:167.400000px;}
.x8f_c00357{left:169.050000px;}
.xc5_c00357{left:170.550000px;}
.x12d_c00357{left:172.950000px;}
.xdd_c00357{left:176.850000px;}
.x15_c00357{left:178.350000px;}
.xe8_c00357{left:179.400000px;}
.x120_c00357{left:180.600000px;}
.xf0_c00357{left:182.550000px;}
.x69_c00357{left:184.800000px;}
.x4e_c00357{left:186.600000px;}
.x34_c00357{left:190.050000px;}
.x61_c00357{left:192.300000px;}
.x43_c00357{left:194.550000px;}
.x16_c00357{left:196.350000px;}
.xbb_c00357{left:197.550000px;}
.xe3_c00357{left:199.800000px;}
.x87_c00357{left:201.300000px;}
.x90_c00357{left:206.100000px;}
.x5b_c00357{left:207.750000px;}
.xa3_c00357{left:210.000000px;}
.x4f_c00357{left:211.050000px;}
.x110_c00357{left:213.300000px;}
.x7e_c00357{left:216.600000px;}
.x133_c00357{left:219.300000px;}
.xac_c00357{left:222.450000px;}
.x35_c00357{left:224.250000px;}
.x76_c00357{left:225.450000px;}
.x4_c00357{left:226.800000px;}
.xd4_c00357{left:228.600000px;}
.xb5_c00357{left:230.700000px;}
.xbc_c00357{left:231.750000px;}
.x26_c00357{left:233.550000px;}
.x91_c00357{left:235.950000px;}
.x50_c00357{left:237.000000px;}
.x127_c00357{left:238.350000px;}
.xa4_c00357{left:240.900000px;}
.x106_c00357{left:243.000000px;}
.x5_c00357{left:244.050000px;}
.xcc_c00357{left:245.850000px;}
.x10b_c00357{left:247.650000px;}
.x5c_c00357{left:249.150000px;}
.xc2_c00357{left:254.100000px;}
.x27_c00357{left:255.900000px;}
.x62_c00357{left:257.850000px;}
.x6a_c00357{left:259.350000px;}
.x134_c00357{left:260.700000px;}
.x51_c00357{left:262.500000px;}
.x77_c00357{left:265.350000px;}
.x36_c00357{left:266.700000px;}
.x6c_c00357{left:267.900000px;}
.x5d_c00357{left:269.250000px;}
.xde_c00357{left:270.450000px;}
.x88_c00357{left:273.000000px;}
.x12e_c00357{left:274.050000px;}
.x17_c00357{left:275.850000px;}
.x44_c00357{left:277.650000px;}
.x6b_c00357{left:279.900000px;}
.x6_c00357{left:281.850000px;}
.x37_c00357{left:283.650000px;}
.xa5_c00357{left:285.600000px;}
.xc6_c00357{left:288.300000px;}
.xf1_c00357{left:289.500000px;}
.x104_c00357{left:291.150000px;}
.x78_c00357{left:292.350000px;}
.xff_c00357{left:294.750000px;}
.x5e_c00357{left:297.750000px;}
.x119_c00357{left:299.550000px;}
.x6d_c00357{left:300.600000px;}
.xe4_c00357{left:301.650000px;}
.x52_c00357{left:302.850000px;}
.x92_c00357{left:305.100000px;}
.x7_c00357{left:311.700000px;}
.x107_c00357{left:312.900000px;}
.xdf_c00357{left:314.400000px;}
.x45_c00357{left:315.750000px;}
.x38_c00357{left:317.550000px;}
.x7f_c00357{left:319.650000px;}
.x18_c00357{left:323.700000px;}
.xad_c00357{left:324.750000px;}
.x89_c00357{left:327.000000px;}
.x28_c00357{left:328.950000px;}
.x93_c00357{left:330.000000px;}
.xfc_c00357{left:333.000000px;}
.xbd_c00357{left:335.700000px;}
.x111_c00357{left:339.600000px;}
.xe9_c00357{left:340.950000px;}
.xf2_c00357{left:344.250000px;}
.x63_c00357{left:345.300000px;}
.x29_c00357{left:348.000000px;}
.x19_c00357{left:349.650000px;}
.xbe_c00357{left:351.150000px;}
.xcd_c00357{left:352.500000px;}
.x8_c00357{left:353.850000px;}
.x5f_c00357{left:355.050000px;}
.x94_c00357{left:358.500000px;}
.xb6_c00357{left:362.100000px;}
.xa6_c00357{left:363.450000px;}
.x46_c00357{left:365.700000px;}
.x39_c00357{left:369.000000px;}
.x80_c00357{left:371.550000px;}
.x112_c00357{left:373.800000px;}
.x2a_c00357{left:376.050000px;}
.x9_c00357{left:378.750000px;}
.x6e_c00357{left:379.800000px;}
.x1_c00357{left:382.650000px;}
.xd7_c00357{left:384.900000px;}
.x108_c00357{left:386.700000px;}
.x128_c00357{left:388.350000px;}
.x9d_c00357{left:389.550000px;}
.x3a_c00357{left:390.600000px;}
.xe0_c00357{left:392.550000px;}
.x11a_c00357{left:398.100000px;}
.x81_c00357{left:401.100000px;}
.xfd_c00357{left:402.750000px;}
.xa_c00357{left:403.950000px;}
.xa7_c00357{left:405.900000px;}
.x10c_c00357{left:407.550000px;}
.xae_c00357{left:408.750000px;}
.x95_c00357{left:411.450000px;}
.xea_c00357{left:414.300000px;}
.xb7_c00357{left:416.400000px;}
.x121_c00357{left:417.750000px;}
.x113_c00357{left:420.300000px;}
.xce_c00357{left:423.450000px;}
.x12f_c00357{left:424.800000px;}
.x53_c00357{left:427.050000px;}
.x1a_c00357{left:429.150000px;}
.xf3_c00357{left:431.400000px;}
.x6f_c00357{left:432.750000px;}
.xa8_c00357{left:435.000000px;}
.x82_c00357{left:436.350000px;}
.xaf_c00357{left:439.350000px;}
.xf8_c00357{left:440.550000px;}
.x11b_c00357{left:441.600000px;}
.x2b_c00357{left:444.750000px;}
.x3b_c00357{left:449.250000px;}
.x114_c00357{left:451.950000px;}
.x70_c00357{left:454.650000px;}
.x47_c00357{left:457.200000px;}
.x122_c00357{left:458.850000px;}
.xe5_c00357{left:460.050000px;}
.xfe_c00357{left:461.550000px;}
.x1b_c00357{left:463.050000px;}
.x8a_c00357{left:465.300000px;}
.xd8_c00357{left:468.000000px;}
.xd5_c00357{left:469.950000px;}
.x54_c00357{left:472.350000px;}
.x115_c00357{left:476.400000px;}
.x3c_c00357{left:478.800000px;}
.xf9_c00357{left:480.150000px;}
.xf4_c00357{left:482.100000px;}
.x83_c00357{left:486.750000px;}
.x1c_c00357{left:488.550000px;}
.xd6_c00357{left:489.750000px;}
.xc3_c00357{left:492.750000px;}
.xc7_c00357{left:493.800000px;}
.x64_c00357{left:495.750000px;}
.xe1_c00357{left:497.250000px;}
.x55_c00357{left:500.400000px;}
.xeb_c00357{left:502.950000px;}
.x96_c00357{left:504.450000px;}
.xb_c00357{left:505.800000px;}
.x11c_c00357{left:510.000000px;}
.xb8_c00357{left:511.350000px;}
.xa9_c00357{left:513.450000px;}
.x129_c00357{left:515.100000px;}
.xcf_c00357{left:518.400000px;}
.x2c_c00357{left:521.400000px;}
.xec_c00357{left:522.450000px;}
.xc_c00357{left:523.800000px;}
.x71_c00357{left:525.150000px;}
.x3d_c00357{left:527.700000px;}
.x1d_c00357{left:529.650000px;}
.x48_c00357{left:532.050000px;}
.x65_c00357{left:533.250000px;}
.x56_c00357{left:534.300000px;}
.x100_c00357{left:535.500000px;}
.xc4_c00357{left:536.700000px;}
.x97_c00357{left:538.650000px;}
.x2d_c00357{left:541.200000px;}
.x123_c00357{left:545.100000px;}
.x1e_c00357{left:546.600000px;}
.xd_c00357{left:548.250000px;}
.x79_c00357{left:550.200000px;}
.x116_c00357{left:552.300000px;}
.x84_c00357{left:554.400000px;}
.xbf_c00357{left:556.500000px;}
.xc8_c00357{left:557.850000px;}
.x49_c00357{left:559.050000px;}
.x124_c00357{left:562.050000px;}
.xd9_c00357{left:564.450000px;}
.x10d_c00357{left:566.250000px;}
.x11d_c00357{left:567.900000px;}
.x2e_c00357{left:568.950000px;}
.x3e_c00357{left:570.150000px;}
.xaa_c00357{left:571.350000px;}
.x72_c00357{left:578.700000px;}
.xb0_c00357{left:580.050000px;}
.x57_c00357{left:581.400000px;}
.x12a_c00357{left:583.500000px;}
.x8b_c00357{left:584.850000px;}
.x1f_c00357{left:590.550000px;}
.x3f_c00357{left:592.050000px;}
.x130_c00357{left:594.750000px;}
.x9e_c00357{left:595.800000px;}
.xb1_c00357{left:598.800000px;}
.xc0_c00357{left:601.200000px;}
.xb9_c00357{left:602.400000px;}
.xed_c00357{left:606.300000px;}
.x117_c00357{left:608.400000px;}
.x7a_c00357{left:609.600000px;}
.x105_c00357{left:611.700000px;}
.x10e_c00357{left:613.800000px;}
.xf5_c00357{left:614.850000px;}
.x2f_c00357{left:616.800000px;}
.x98_c00357{left:617.850000px;}
.x4a_c00357{left:619.500000px;}
.xe6_c00357{left:621.450000px;}
.x20_c00357{left:622.650000px;}
.xe_c00357{left:625.350000px;}
.x66_c00357{left:627.150000px;}
.x30_c00357{left:631.500000px;}
.xb2_c00357{left:635.100000px;}
.x4b_c00357{left:637.800000px;}
.x9f_c00357{left:639.300000px;}
.xf_c00357{left:642.300000px;}
.xd0_c00357{left:646.200000px;}
.x40_c00357{left:650.250000px;}
.x58_c00357{left:653.100000px;}
.xba_c00357{left:654.300000px;}
.xda_c00357{left:657.000000px;}
.xf6_c00357{left:658.350000px;}
.x21_c00357{left:659.700000px;}
.x12b_c00357{left:661.500000px;}
.x8c_c00357{left:666.600000px;}
.x10_c00357{left:668.250000px;}
.xa0_c00357{left:671.400000px;}
.x31_c00357{left:672.600000px;}
.x59_c00357{left:674.400000px;}
.x7b_c00357{left:676.950000px;}
.x22_c00357{left:678.000000px;}
.xd1_c00357{left:680.100000px;}
.x10f_c00357{left:681.150000px;}
.xfa_c00357{left:682.200000px;}
.x125_c00357{left:684.450000px;}
.x99_c00357{left:687.600000px;}
.x67_c00357{left:689.400000px;}
.x4c_c00357{left:691.050000px;}
.x101_c00357{left:698.250000px;}
.x73_c00357{left:699.300000px;}
.x8d_c00357{left:701.100000px;}
.x5a_c00357{left:702.450000px;}
.xc9_c00357{left:703.650000px;}
.x68_c00357{left:706.350000px;}
.xb3_c00357{left:709.950000px;}
.xa1_c00357{left:711.750000px;}
.xd2_c00357{left:713.850000px;}
.xdb_c00357{left:716.400000px;}
.x131_c00357{left:718.650000px;}
.x74_c00357{left:720.150000px;}
.x11_c00357{left:721.500000px;}
.x126_c00357{left:723.300000px;}
.x118_c00357{left:726.150000px;}
.x85_c00357{left:729.000000px;}
.xa2_c00357{left:731.550000px;}
.x2_c00357{left:733.350000px;}
.x23_c00357{left:735.900000px;}
.xb4_c00357{left:738.000000px;}
.x12_c00357{left:739.500000px;}
.x11e_c00357{left:741.450000px;}
.x41_c00357{left:742.500000px;}
.x32_c00357{left:743.550000px;}
.xf7_c00357{left:746.250000px;}
.x9a_c00357{left:748.800000px;}
.x109_c00357{left:750.150000px;}
.xca_c00357{left:751.500000px;}
.x24_c00357{left:752.850000px;}
.xee_c00357{left:754.650000px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls0_c00357{letter-spacing:0.000000pt;}
.ws7_c00357{word-spacing:-9.766971pt;}
.ws2_c00357{word-spacing:-8.111111pt;}
.ws5_c00357{word-spacing:-3.536395pt;}
.ws0_c00357{word-spacing:-3.408612pt;}
.wsa_c00357{word-spacing:-2.521712pt;}
.wsb_c00357{word-spacing:0.000000pt;}
.ws4_c00357{word-spacing:2.777778pt;}
.ws8_c00357{word-spacing:2.814815pt;}
.ws3_c00357{word-spacing:3.472669pt;}
.ws9_c00357{word-spacing:5.111111pt;}
.ws1_c00357{word-spacing:5.335866pt;}
.ws6_c00357{word-spacing:5.960637pt;}
.fs2_c00357{font-size:42.666667pt;}
.fs1_c00357{font-size:48.000000pt;}
.fs0_c00357{font-size:53.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y2b_c00357{bottom:113.866667pt;}
.y2a_c00357{bottom:155.466667pt;}
.y29_c00357{bottom:172.800000pt;}
.y28_c00357{bottom:190.400000pt;}
.y27_c00357{bottom:208.000000pt;}
.y26_c00357{bottom:225.333333pt;}
.y25_c00357{bottom:243.200000pt;}
.y24_c00357{bottom:260.800000pt;}
.y23_c00357{bottom:278.400000pt;}
.y22_c00357{bottom:296.000000pt;}
.y21_c00357{bottom:313.600000pt;}
.y20_c00357{bottom:331.466667pt;}
.y1f_c00357{bottom:348.933333pt;}
.y1e_c00357{bottom:366.800000pt;}
.y1d_c00357{bottom:384.400000pt;}
.y1c_c00357{bottom:402.000000pt;}
.y1b_c00357{bottom:419.866667pt;}
.y1a_c00357{bottom:453.733333pt;}
.y19_c00357{bottom:471.333333pt;}
.y18_c00357{bottom:489.200000pt;}
.y17_c00357{bottom:507.466667pt;}
.y16_c00357{bottom:525.333333pt;}
.y15_c00357{bottom:542.666667pt;}
.y14_c00357{bottom:560.533333pt;}
.y13_c00357{bottom:578.400000pt;}
.y12_c00357{bottom:595.733333pt;}
.y11_c00357{bottom:613.333333pt;}
.y10_c00357{bottom:631.200000pt;}
.yf_c00357{bottom:649.066667pt;}
.ye_c00357{bottom:666.666667pt;}
.yd_c00357{bottom:684.266667pt;}
.yc_c00357{bottom:702.133333pt;}
.yb_c00357{bottom:719.733333pt;}
.ya_c00357{bottom:753.600000pt;}
.y9_c00357{bottom:771.466667pt;}
.y8_c00357{bottom:789.600000pt;}
.y7_c00357{bottom:807.200000pt;}
.y6_c00357{bottom:825.066667pt;}
.y5_c00357{bottom:842.666667pt;}
.y4_c00357{bottom:860.533333pt;}
.y3_c00357{bottom:878.400000pt;}
.y2_c00357{bottom:896.000000pt;}
.y1_c00357{bottom:929.866667pt;}
.h4_c00357{height:42.666667pt;}
.h3_c00357{height:48.000000pt;}
.h2_c00357{height:53.333333pt;}
.h0_c00357{height:1037.119955pt;}
.h1_c00357{height:1037.333333pt;}
.w1_c00357{width:812.000000pt;}
.w0_c00357{width:812.159993pt;}
.x0_c00357{left:0.000000pt;}
.x13_c00357{left:83.600000pt;}
.xe7_c00357{left:84.533333pt;}
.x12c_c00357{left:100.666667pt;}
.x102_c00357{left:102.266667pt;}
.x10a_c00357{left:105.466667pt;}
.x9b_c00357{left:107.466667pt;}
.xc1_c00357{left:110.000000pt;}
.x3_c00357{left:111.333333pt;}
.xe2_c00357{left:112.266667pt;}
.x7c_c00357{left:114.400000pt;}
.x4d_c00357{left:115.333333pt;}
.x132_c00357{left:116.533333pt;}
.xef_c00357{left:117.466667pt;}
.xdc_c00357{left:118.400000pt;}
.x33_c00357{left:119.600000pt;}
.xfb_c00357{left:122.533333pt;}
.x8e_c00357{left:124.000000pt;}
.x25_c00357{left:130.533333pt;}
.x7d_c00357{left:132.000000pt;}
.x14_c00357{left:133.200000pt;}
.x60_c00357{left:134.133333pt;}
.x86_c00357{left:135.066667pt;}
.x42_c00357{left:136.133333pt;}
.x103_c00357{left:137.200000pt;}
.xab_c00357{left:140.133333pt;}
.x11f_c00357{left:142.666667pt;}
.xd3_c00357{left:144.266667pt;}
.xcb_c00357{left:145.466667pt;}
.x75_c00357{left:147.600000pt;}
.x9c_c00357{left:148.800000pt;}
.x8f_c00357{left:150.266667pt;}
.xc5_c00357{left:151.600000pt;}
.x12d_c00357{left:153.733333pt;}
.xdd_c00357{left:157.200000pt;}
.x15_c00357{left:158.533333pt;}
.xe8_c00357{left:159.466667pt;}
.x120_c00357{left:160.533333pt;}
.xf0_c00357{left:162.266667pt;}
.x69_c00357{left:164.266667pt;}
.x4e_c00357{left:165.866667pt;}
.x34_c00357{left:168.933333pt;}
.x61_c00357{left:170.933333pt;}
.x43_c00357{left:172.933333pt;}
.x16_c00357{left:174.533333pt;}
.xbb_c00357{left:175.600000pt;}
.xe3_c00357{left:177.600000pt;}
.x87_c00357{left:178.933333pt;}
.x90_c00357{left:183.200000pt;}
.x5b_c00357{left:184.666667pt;}
.xa3_c00357{left:186.666667pt;}
.x4f_c00357{left:187.600000pt;}
.x110_c00357{left:189.600000pt;}
.x7e_c00357{left:192.533333pt;}
.x133_c00357{left:194.933333pt;}
.xac_c00357{left:197.733333pt;}
.x35_c00357{left:199.333333pt;}
.x76_c00357{left:200.400000pt;}
.x4_c00357{left:201.600000pt;}
.xd4_c00357{left:203.200000pt;}
.xb5_c00357{left:205.066667pt;}
.xbc_c00357{left:206.000000pt;}
.x26_c00357{left:207.600000pt;}
.x91_c00357{left:209.733333pt;}
.x50_c00357{left:210.666667pt;}
.x127_c00357{left:211.866667pt;}
.xa4_c00357{left:214.133333pt;}
.x106_c00357{left:216.000000pt;}
.x5_c00357{left:216.933333pt;}
.xcc_c00357{left:218.533333pt;}
.x10b_c00357{left:220.133333pt;}
.x5c_c00357{left:221.466667pt;}
.xc2_c00357{left:225.866667pt;}
.x27_c00357{left:227.466667pt;}
.x62_c00357{left:229.200000pt;}
.x6a_c00357{left:230.533333pt;}
.x134_c00357{left:231.733333pt;}
.x51_c00357{left:233.333333pt;}
.x77_c00357{left:235.866667pt;}
.x36_c00357{left:237.066667pt;}
.x6c_c00357{left:238.133333pt;}
.x5d_c00357{left:239.333333pt;}
.xde_c00357{left:240.400000pt;}
.x88_c00357{left:242.666667pt;}
.x12e_c00357{left:243.600000pt;}
.x17_c00357{left:245.200000pt;}
.x44_c00357{left:246.800000pt;}
.x6b_c00357{left:248.800000pt;}
.x6_c00357{left:250.533333pt;}
.x37_c00357{left:252.133333pt;}
.xa5_c00357{left:253.866667pt;}
.xc6_c00357{left:256.266667pt;}
.xf1_c00357{left:257.333333pt;}
.x104_c00357{left:258.800000pt;}
.x78_c00357{left:259.866667pt;}
.xff_c00357{left:262.000000pt;}
.x5e_c00357{left:264.666667pt;}
.x119_c00357{left:266.266667pt;}
.x6d_c00357{left:267.200000pt;}
.xe4_c00357{left:268.133333pt;}
.x52_c00357{left:269.200000pt;}
.x92_c00357{left:271.200000pt;}
.x7_c00357{left:277.066667pt;}
.x107_c00357{left:278.133333pt;}
.xdf_c00357{left:279.466667pt;}
.x45_c00357{left:280.666667pt;}
.x38_c00357{left:282.266667pt;}
.x7f_c00357{left:284.133333pt;}
.x18_c00357{left:287.733333pt;}
.xad_c00357{left:288.666667pt;}
.x89_c00357{left:290.666667pt;}
.x28_c00357{left:292.400000pt;}
.x93_c00357{left:293.333333pt;}
.xfc_c00357{left:296.000000pt;}
.xbd_c00357{left:298.400000pt;}
.x111_c00357{left:301.866667pt;}
.xe9_c00357{left:303.066667pt;}
.xf2_c00357{left:306.000000pt;}
.x63_c00357{left:306.933333pt;}
.x29_c00357{left:309.333333pt;}
.x19_c00357{left:310.800000pt;}
.xbe_c00357{left:312.133333pt;}
.xcd_c00357{left:313.333333pt;}
.x8_c00357{left:314.533333pt;}
.x5f_c00357{left:315.600000pt;}
.x94_c00357{left:318.666667pt;}
.xb6_c00357{left:321.866667pt;}
.xa6_c00357{left:323.066667pt;}
.x46_c00357{left:325.066667pt;}
.x39_c00357{left:328.000000pt;}
.x80_c00357{left:330.266667pt;}
.x112_c00357{left:332.266667pt;}
.x2a_c00357{left:334.266667pt;}
.x9_c00357{left:336.666667pt;}
.x6e_c00357{left:337.600000pt;}
.x1_c00357{left:340.133333pt;}
.xd7_c00357{left:342.133333pt;}
.x108_c00357{left:343.733333pt;}
.x128_c00357{left:345.200000pt;}
.x9d_c00357{left:346.266667pt;}
.x3a_c00357{left:347.200000pt;}
.xe0_c00357{left:348.933333pt;}
.x11a_c00357{left:353.866667pt;}
.x81_c00357{left:356.533333pt;}
.xfd_c00357{left:358.000000pt;}
.xa_c00357{left:359.066667pt;}
.xa7_c00357{left:360.800000pt;}
.x10c_c00357{left:362.266667pt;}
.xae_c00357{left:363.333333pt;}
.x95_c00357{left:365.733333pt;}
.xea_c00357{left:368.266667pt;}
.xb7_c00357{left:370.133333pt;}
.x121_c00357{left:371.333333pt;}
.x113_c00357{left:373.600000pt;}
.xce_c00357{left:376.400000pt;}
.x12f_c00357{left:377.600000pt;}
.x53_c00357{left:379.600000pt;}
.x1a_c00357{left:381.466667pt;}
.xf3_c00357{left:383.466667pt;}
.x6f_c00357{left:384.666667pt;}
.xa8_c00357{left:386.666667pt;}
.x82_c00357{left:387.866667pt;}
.xaf_c00357{left:390.533333pt;}
.xf8_c00357{left:391.600000pt;}
.x11b_c00357{left:392.533333pt;}
.x2b_c00357{left:395.333333pt;}
.x3b_c00357{left:399.333333pt;}
.x114_c00357{left:401.733333pt;}
.x70_c00357{left:404.133333pt;}
.x47_c00357{left:406.400000pt;}
.x122_c00357{left:407.866667pt;}
.xe5_c00357{left:408.933333pt;}
.xfe_c00357{left:410.266667pt;}
.x1b_c00357{left:411.600000pt;}
.x8a_c00357{left:413.600000pt;}
.xd8_c00357{left:416.000000pt;}
.xd5_c00357{left:417.733333pt;}
.x54_c00357{left:419.866667pt;}
.x115_c00357{left:423.466667pt;}
.x3c_c00357{left:425.600000pt;}
.xf9_c00357{left:426.800000pt;}
.xf4_c00357{left:428.533333pt;}
.x83_c00357{left:432.666667pt;}
.x1c_c00357{left:434.266667pt;}
.xd6_c00357{left:435.333333pt;}
.xc3_c00357{left:438.000000pt;}
.xc7_c00357{left:438.933333pt;}
.x64_c00357{left:440.666667pt;}
.xe1_c00357{left:442.000000pt;}
.x55_c00357{left:444.800000pt;}
.xeb_c00357{left:447.066667pt;}
.x96_c00357{left:448.400000pt;}
.xb_c00357{left:449.600000pt;}
.x11c_c00357{left:453.333333pt;}
.xb8_c00357{left:454.533333pt;}
.xa9_c00357{left:456.400000pt;}
.x129_c00357{left:457.866667pt;}
.xcf_c00357{left:460.800000pt;}
.x2c_c00357{left:463.466667pt;}
.xec_c00357{left:464.400000pt;}
.xc_c00357{left:465.600000pt;}
.x71_c00357{left:466.800000pt;}
.x3d_c00357{left:469.066667pt;}
.x1d_c00357{left:470.800000pt;}
.x48_c00357{left:472.933333pt;}
.x65_c00357{left:474.000000pt;}
.x56_c00357{left:474.933333pt;}
.x100_c00357{left:476.000000pt;}
.xc4_c00357{left:477.066667pt;}
.x97_c00357{left:478.800000pt;}
.x2d_c00357{left:481.066667pt;}
.x123_c00357{left:484.533333pt;}
.x1e_c00357{left:485.866667pt;}
.xd_c00357{left:487.333333pt;}
.x79_c00357{left:489.066667pt;}
.x116_c00357{left:490.933333pt;}
.x84_c00357{left:492.800000pt;}
.xbf_c00357{left:494.666667pt;}
.xc8_c00357{left:495.866667pt;}
.x49_c00357{left:496.933333pt;}
.x124_c00357{left:499.600000pt;}
.xd9_c00357{left:501.733333pt;}
.x10d_c00357{left:503.333333pt;}
.x11d_c00357{left:504.800000pt;}
.x2e_c00357{left:505.733333pt;}
.x3e_c00357{left:506.800000pt;}
.xaa_c00357{left:507.866667pt;}
.x72_c00357{left:514.400000pt;}
.xb0_c00357{left:515.600000pt;}
.x57_c00357{left:516.800000pt;}
.x12a_c00357{left:518.666667pt;}
.x8b_c00357{left:519.866667pt;}
.x1f_c00357{left:524.933333pt;}
.x3f_c00357{left:526.266667pt;}
.x130_c00357{left:528.666667pt;}
.x9e_c00357{left:529.600000pt;}
.xb1_c00357{left:532.266667pt;}
.xc0_c00357{left:534.400000pt;}
.xb9_c00357{left:535.466667pt;}
.xed_c00357{left:538.933333pt;}
.x117_c00357{left:540.800000pt;}
.x7a_c00357{left:541.866667pt;}
.x105_c00357{left:543.733333pt;}
.x10e_c00357{left:545.600000pt;}
.xf5_c00357{left:546.533333pt;}
.x2f_c00357{left:548.266667pt;}
.x98_c00357{left:549.200000pt;}
.x4a_c00357{left:550.666667pt;}
.xe6_c00357{left:552.400000pt;}
.x20_c00357{left:553.466667pt;}
.xe_c00357{left:555.866667pt;}
.x66_c00357{left:557.466667pt;}
.x30_c00357{left:561.333333pt;}
.xb2_c00357{left:564.533333pt;}
.x4b_c00357{left:566.933333pt;}
.x9f_c00357{left:568.266667pt;}
.xf_c00357{left:570.933333pt;}
.xd0_c00357{left:574.400000pt;}
.x40_c00357{left:578.000000pt;}
.x58_c00357{left:580.533333pt;}
.xba_c00357{left:581.600000pt;}
.xda_c00357{left:584.000000pt;}
.xf6_c00357{left:585.200000pt;}
.x21_c00357{left:586.400000pt;}
.x12b_c00357{left:588.000000pt;}
.x8c_c00357{left:592.533333pt;}
.x10_c00357{left:594.000000pt;}
.xa0_c00357{left:596.800000pt;}
.x31_c00357{left:597.866667pt;}
.x59_c00357{left:599.466667pt;}
.x7b_c00357{left:601.733333pt;}
.x22_c00357{left:602.666667pt;}
.xd1_c00357{left:604.533333pt;}
.x10f_c00357{left:605.466667pt;}
.xfa_c00357{left:606.400000pt;}
.x125_c00357{left:608.400000pt;}
.x99_c00357{left:611.200000pt;}
.x67_c00357{left:612.800000pt;}
.x4c_c00357{left:614.266667pt;}
.x101_c00357{left:620.666667pt;}
.x73_c00357{left:621.600000pt;}
.x8d_c00357{left:623.200000pt;}
.x5a_c00357{left:624.400000pt;}
.xc9_c00357{left:625.466667pt;}
.x68_c00357{left:627.866667pt;}
.xb3_c00357{left:631.066667pt;}
.xa1_c00357{left:632.666667pt;}
.xd2_c00357{left:634.533333pt;}
.xdb_c00357{left:636.800000pt;}
.x131_c00357{left:638.800000pt;}
.x74_c00357{left:640.133333pt;}
.x11_c00357{left:641.333333pt;}
.x126_c00357{left:642.933333pt;}
.x118_c00357{left:645.466667pt;}
.x85_c00357{left:648.000000pt;}
.xa2_c00357{left:650.266667pt;}
.x2_c00357{left:651.866667pt;}
.x23_c00357{left:654.133333pt;}
.xb4_c00357{left:656.000000pt;}
.x12_c00357{left:657.333333pt;}
.x11e_c00357{left:659.066667pt;}
.x41_c00357{left:660.000000pt;}
.x32_c00357{left:660.933333pt;}
.xf7_c00357{left:663.333333pt;}
.x9a_c00357{left:665.600000pt;}
.x109_c00357{left:666.800000pt;}
.xca_c00357{left:668.000000pt;}
.x24_c00357{left:669.200000pt;}
.xee_c00357{left:670.800000pt;}
}





/* 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_c00358 {
    display:none;
  }
  .loading-indicator_c00358.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00358 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_c00358 { 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_c00358" -> "#page-container .classname_c00358")
 */
.pf_c00358 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00358 { /* 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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00358 { /* 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_c00358 { /* 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_c00358 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00358 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00358 {overflow:visible;}
  }
}
.c_c00358 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00358 { /* 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_c00358:after { /* webkit #35443 */
  content: '';
}
.t_c00358:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00358 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 */
}
.__c00358 { /* 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_c00358 { /* info for Javascript */
  display:none;
}
.l_c00358 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00358 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00358 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00358: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_c00358 {
    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_c00358.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00358.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_c00358 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00358{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00358;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.000000;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;}
.m74_c00358{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00358{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00358{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mab_c00358{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00358{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.maa_c00358{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00358{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m60_c00358{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00358{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m30_c00358{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m77_c00358{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mad_c00358{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00358{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00358{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00358{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mac_c00358{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00358{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m58_c00358{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m78_c00358{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00358{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m95_c00358{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00358{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00358{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mae_c00358{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m67_c00358{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00358{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00358{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m17_c00358{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m94_c00358{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m40_c00358{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m55_c00358{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m88_c00358{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m56_c00358{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00358{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00358{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m18_c00358{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m44_c00358{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m80_c00358{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00358{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m12_c00358{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m97_c00358{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m84_c00358{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m70_c00358{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00358{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00358{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00358{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m28_c00358{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m72_c00358{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00358{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m16_c00358{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00358{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m51_c00358{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00358{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m83_c00358{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m46_c00358{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00358{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00358{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m14_c00358{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m91_c00358{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00358{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m29_c00358{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m26_c00358{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m37_c00358{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m33_c00358{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00358{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00358{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00358{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00358{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m86_c00358{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00358{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m66_c00358{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.me_c00358{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m15_c00358{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00358{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m45_c00358{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00358{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00358{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00358{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m39_c00358{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m41_c00358{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m61_c00358{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf_c00358{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m49_c00358{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m89_c00358{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00358{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m87_c00358{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m63_c00358{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00358{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m85_c00358{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00358{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m52_c00358{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00358{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m50_c00358{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00358{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00358{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);}
.m13_c00358{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m62_c00358{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m79_c00358{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m68_c00358{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m82_c00358{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m20_c00358{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m59_c00358{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m81_c00358{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m38_c00358{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m53_c00358{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m71_c00358{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00358{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.maf_c00358{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m22_c00358{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m19_c00358{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m0_c00358{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00358{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m47_c00358{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m27_c00358{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m64_c00358{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00358{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00358{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00358{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m34_c00358{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m24_c00358{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m54_c00358{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00358{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00358{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c00358{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00358{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m31_c00358{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00358{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00358{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00358{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m32_c00358{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m65_c00358{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m98_c00358{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00358{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00358{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00358{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.md_c00358{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00358{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00358{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00358{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m76_c00358{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m21_c00358{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m69_c00358{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m25_c00358{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m92_c00358{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m57_c00358{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m42_c00358{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00358{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00358{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m43_c00358{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m11_c00358{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00358{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m75_c00358{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00358{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m93_c00358{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00358{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m35_c00358{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m96_c00358{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00358{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c00358{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c00358{transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332250,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mb_c00358{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00358{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.mc_c00358{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);}
.m90_c00358{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m1_c00358{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00358{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);}
.v0_c00358{vertical-align:0.000000px;}
.ls0_c00358{letter-spacing:0.000000px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{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__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00358{word-spacing:-4.375000px;}
.ws2_c00358{word-spacing:-2.543408px;}
.ws8_c00358{word-spacing:0.000000px;}
.ws5_c00358{word-spacing:1.202454px;}
.ws6_c00358{word-spacing:1.951317px;}
.ws3_c00358{word-spacing:3.125000px;}
.ws7_c00358{word-spacing:4.375000px;}
.ws1_c00358{word-spacing:8.750000px;}
.ws0_c00358{word-spacing:9.000000px;}
._0_c00358{width:43.375000px;}
.fc0_c00358{color:transparent;}
.fs2_c00358{font-size:42.000000px;}
.fs1_c00358{font-size:54.000000px;}
.fs0_c00358{font-size:66.000000px;}
.y0_c00358{bottom:0.000000px;}
.y23_c00358{bottom:148.050000px;}
.y22_c00358{bottom:163.500000px;}
.y21_c00358{bottom:179.700000px;}
.y20_c00358{bottom:215.400000px;}
.y1f_c00358{bottom:235.500000px;}
.y1e_c00358{bottom:255.000000px;}
.y1d_c00358{bottom:275.100000px;}
.y1c_c00358{bottom:295.200000px;}
.y1b_c00358{bottom:315.000000px;}
.y1a_c00358{bottom:335.100000px;}
.y19_c00358{bottom:354.900000px;}
.y18_c00358{bottom:374.700000px;}
.y17_c00358{bottom:394.800000px;}
.y16_c00358{bottom:414.900000px;}
.y15_c00358{bottom:435.000000px;}
.y14_c00358{bottom:454.800000px;}
.y13_c00358{bottom:474.900000px;}
.y12_c00358{bottom:495.000000px;}
.y11_c00358{bottom:515.100000px;}
.y10_c00358{bottom:535.200000px;}
.yf_c00358{bottom:555.300000px;}
.ye_c00358{bottom:575.100000px;}
.yd_c00358{bottom:594.900000px;}
.yc_c00358{bottom:615.000000px;}
.yb_c00358{bottom:635.100000px;}
.ya_c00358{bottom:654.900000px;}
.y9_c00358{bottom:675.000000px;}
.y8_c00358{bottom:694.800000px;}
.y7_c00358{bottom:714.900000px;}
.y6_c00358{bottom:734.700000px;}
.y5_c00358{bottom:754.500000px;}
.y4_c00358{bottom:788.100000px;}
.y3_c00358{bottom:808.200000px;}
.y2_c00358{bottom:841.650000px;}
.y1_c00358{bottom:1047.300000px;}
.h4_c00358{height:42.000000px;}
.h3_c00358{height:54.000000px;}
.h2_c00358{height:66.000000px;}
.h0_c00358{height:1166.759949px;}
.h1_c00358{height:1167.000000px;}
.w1_c00358{width:913.500000px;}
.w0_c00358{width:913.679993px;}
.x0_c00358{left:0.000000px;}
.x3a_c00358{left:150.750000px;}
.x10_c00358{left:151.950000px;}
.x3b_c00358{left:169.050000px;}
.xed_c00358{left:171.150000px;}
.xaa_c00358{left:172.800000px;}
.x1e_c00358{left:174.750000px;}
.xd0_c00358{left:177.000000px;}
.x5d_c00358{left:178.350000px;}
.x2e_c00358{left:180.000000px;}
.xfd_c00358{left:182.100000px;}
.x10f_c00358{left:183.900000px;}
.x52_c00358{left:187.950000px;}
.xe4_c00358{left:189.150000px;}
.x3c_c00358{left:190.350000px;}
.xdf_c00358{left:196.350000px;}
.x11_c00358{left:198.000000px;}
.xdc_c00358{left:201.000000px;}
.x4_c00358{left:202.350000px;}
.xb4_c00358{left:203.700000px;}
.xab_c00358{left:205.950000px;}
.xa2_c00358{left:210.600000px;}
.x118_c00358{left:215.250000px;}
.x90_c00358{left:217.800000px;}
.x6a_c00358{left:219.300000px;}
.x7e_c00358{left:222.900000px;}
.x113_c00358{left:225.000000px;}
.xc7_c00358{left:227.550000px;}
.x3d_c00358{left:229.650000px;}
.x2f_c00358{left:231.450000px;}
.x99_c00358{left:234.750000px;}
.x89_c00358{left:236.400000px;}
.x5e_c00358{left:237.450000px;}
.xac_c00358{left:239.850000px;}
.xa3_c00358{left:242.250000px;}
.xb5_c00358{left:243.300000px;}
.x53_c00358{left:245.250000px;}
.x6b_c00358{left:248.850000px;}
.x4a_c00358{left:250.800000px;}
.x1f_c00358{left:252.450000px;}
.x91_c00358{left:254.550000px;}
.x5f_c00358{left:256.950000px;}
.xb6_c00358{left:259.200000px;}
.xd1_c00358{left:262.350000px;}
.x74_c00358{left:263.550000px;}
.x10b_c00358{left:265.050000px;}
.xd2_c00358{left:273.900000px;}
.x102_c00358{left:275.850000px;}
.x20_c00358{left:277.950000px;}
.x54_c00358{left:281.550000px;}
.x11d_c00358{left:283.800000px;}
.xe5_c00358{left:285.000000px;}
.x5_c00358{left:286.200000px;}
.xb7_c00358{left:288.300000px;}
.xf5_c00358{left:290.100000px;}
.x75_c00358{left:292.650000px;}
.x103_c00358{left:295.650000px;}
.xc8_c00358{left:296.700000px;}
.x6_c00358{left:301.350000px;}
.x55_c00358{left:303.450000px;}
.x12_c00358{left:304.950000px;}
.xfe_c00358{left:306.300000px;}
.xf6_c00358{left:307.350000px;}
.xd3_c00358{left:308.400000px;}
.x9a_c00358{left:312.450000px;}
.xc9_c00358{left:313.650000px;}
.xa4_c00358{left:317.100000px;}
.x21_c00358{left:319.050000px;}
.x3e_c00358{left:320.700000px;}
.x30_c00358{left:322.500000px;}
.x7f_c00358{left:323.850000px;}
.x60_c00358{left:325.350000px;}
.xd4_c00358{left:327.900000px;}
.x92_c00358{left:329.100000px;}
.xe6_c00358{left:332.850000px;}
.xbe_c00358{left:335.100000px;}
.x13_c00358{left:337.650000px;}
.x3f_c00358{left:338.700000px;}
.x4b_c00358{left:343.650000px;}
.x7_c00358{left:344.850000px;}
.x9b_c00358{left:346.350000px;}
.x119_c00358{left:348.000000px;}
.x31_c00358{left:349.800000px;}
.xad_c00358{left:351.150000px;}
.x40_c00358{left:353.850000px;}
.x22_c00358{left:356.100000px;}
.x114_c00358{left:359.850000px;}
.x56_c00358{left:362.100000px;}
.x61_c00358{left:363.900000px;}
.x9c_c00358{left:365.100000px;}
.xe7_c00358{left:366.750000px;}
.xff_c00358{left:369.000000px;}
.x80_c00358{left:370.350000px;}
.x41_c00358{left:371.550000px;}
.xe0_c00358{left:372.750000px;}
.x104_c00358{left:374.400000px;}
.x6c_c00358{left:376.350000px;}
.x76_c00358{left:378.300000px;}
.x11e_c00358{left:381.750000px;}
.xbf_c00358{left:386.250000px;}
.xf7_c00358{left:387.600000px;}
.x23_c00358{left:388.800000px;}
.x42_c00358{left:391.350000px;}
.x62_c00358{left:392.700000px;}
.x115_c00358{left:393.750000px;}
.xe8_c00358{left:394.800000px;}
.x81_c00358{left:397.350000px;}
.x77_c00358{left:399.900000px;}
.x14_c00358{left:402.450000px;}
.xee_c00358{left:404.100000px;}
.x57_c00358{left:407.100000px;}
.x93_c00358{left:409.350000px;}
.x105_c00358{left:411.150000px;}
.xf8_c00358{left:412.800000px;}
.x2_c00358{left:414.300000px;}
.x116_c00358{left:416.100000px;}
.x100_c00358{left:422.700000px;}
.x8a_c00358{left:424.800000px;}
.x32_c00358{left:426.150000px;}
.x24_c00358{left:428.100000px;}
.x8_c00358{left:432.750000px;}
.xe1_c00358{left:433.950000px;}
.xd5_c00358{left:435.600000px;}
.xb8_c00358{left:437.400000px;}
.x82_c00358{left:440.550000px;}
.xf_c00358{left:441.750000px;}
.x11a_c00358{left:443.400000px;}
.xae_c00358{left:444.750000px;}
.x25_c00358{left:446.850000px;}
.x15_c00358{left:448.500000px;}
.xd6_c00358{left:450.300000px;}
.x43_c00358{left:454.050000px;}
.x110_c00358{left:455.250000px;}
.xe9_c00358{left:458.100000px;}
.xca_c00358{left:459.150000px;}
.xe2_c00358{left:460.200000px;}
.x9_c00358{left:461.550000px;}
.x33_c00358{left:463.200000px;}
.xb9_c00358{left:466.500000px;}
.xef_c00358{left:469.200000px;}
.x78_c00358{left:470.550000px;}
.x1_c00358{left:472.650000px;}
.x4c_c00358{left:475.350000px;}
.xa_c00358{left:476.700000px;}
.x63_c00358{left:478.350000px;}
.x34_c00358{left:484.500000px;}
.x9d_c00358{left:487.050000px;}
.x6d_c00358{left:490.500000px;}
.xa5_c00358{left:492.450000px;}
.xe3_c00358{left:494.100000px;}
.x26_c00358{left:495.450000px;}
.x16_c00358{left:497.400000px;}
.x3_c00358{left:498.600000px;}
.xdd_c00358{left:499.800000px;}
.x44_c00358{left:502.950000px;}
.xf9_c00358{left:504.300000px;}
.x58_c00358{left:510.450000px;}
.x35_c00358{left:512.250000px;}
.xaf_c00358{left:513.450000px;}
.xcb_c00358{left:518.550000px;}
.x45_c00358{left:520.950000px;}
.x17_c00358{left:522.900000px;}
.xc0_c00358{left:524.400000px;}
.x8b_c00358{left:525.900000px;}
.x106_c00358{left:528.600000px;}
.x79_c00358{left:532.050000px;}
.x4d_c00358{left:534.000000px;}
.x11b_c00358{left:535.950000px;}
.xa6_c00358{left:537.450000px;}
.xfa_c00358{left:540.300000px;}
.x27_c00358{left:541.500000px;}
.x6e_c00358{left:543.000000px;}
.x64_c00358{left:544.650000px;}
.x9e_c00358{left:549.300000px;}
.x111_c00358{left:551.400000px;}
.x46_c00358{left:553.350000px;}
.x65_c00358{left:555.750000px;}
.x11c_c00358{left:560.100000px;}
.xcc_c00358{left:562.500000px;}
.xd7_c00358{left:563.700000px;}
.x59_c00358{left:565.950000px;}
.xa7_c00358{left:567.300000px;}
.x28_c00358{left:568.500000px;}
.xc1_c00358{left:570.150000px;}
.xb_c00358{left:572.850000px;}
.x4e_c00358{left:574.650000px;}
.x6f_c00358{left:576.900000px;}
.xea_c00358{left:579.750000px;}
.xb0_c00358{left:580.800000px;}
.x7a_c00358{left:582.150000px;}
.x94_c00358{left:586.800000px;}
.x107_c00358{left:588.300000px;}
.xf0_c00358{left:590.250000px;}
.x18_c00358{left:591.300000px;}
.x83_c00358{left:593.100000px;}
.xa8_c00358{left:594.600000px;}
.x5a_c00358{left:597.600000px;}
.xc2_c00358{left:600.450000px;}
.x7b_c00358{left:601.950000px;}
.xba_c00358{left:603.300000px;}
.x29_c00358{left:605.550000px;}
.x9f_c00358{left:606.600000px;}
.x19_c00358{left:609.300000px;}
.x66_c00358{left:613.050000px;}
.x84_c00358{left:615.450000px;}
.xc_c00358{left:617.850000px;}
.xd8_c00358{left:619.200000px;}
.x47_c00358{left:621.750000px;}
.xa0_c00358{left:623.550000px;}
.x70_c00358{left:625.200000px;}
.x95_c00358{left:630.750000px;}
.x85_c00358{left:633.150000px;}
.xde_c00358{left:634.500000px;}
.x1a_c00358{left:637.050000px;}
.xcd_c00358{left:638.550000px;}
.x7c_c00358{left:639.750000px;}
.x36_c00358{left:643.650000px;}
.xc3_c00358{left:644.700000px;}
.xa1_c00358{left:649.500000px;}
.xbb_c00358{left:654.450000px;}
.x4f_c00358{left:655.500000px;}
.xb1_c00358{left:657.000000px;}
.xd9_c00358{left:659.100000px;}
.x8c_c00358{left:660.900000px;}
.x71_c00358{left:662.700000px;}
.x108_c00358{left:665.700000px;}
.xeb_c00358{left:666.900000px;}
.xb2_c00358{left:668.850000px;}
.xc4_c00358{left:671.400000px;}
.xf1_c00358{left:672.600000px;}
.xfb_c00358{left:675.300000px;}
.x2a_c00358{left:676.800000px;}
.x37_c00358{left:678.900000px;}
.x96_c00358{left:680.100000px;}
.x101_c00358{left:681.900000px;}
.x7d_c00358{left:682.950000px;}
.xbc_c00358{left:684.000000px;}
.x10c_c00358{left:685.500000px;}
.x8d_c00358{left:686.850000px;}
.xda_c00358{left:688.650000px;}
.x72_c00358{left:691.200000px;}
.x86_c00358{left:693.300000px;}
.x2b_c00358{left:695.100000px;}
.xb3_c00358{left:696.600000px;}
.xf2_c00358{left:699.300000px;}
.x97_c00358{left:702.450000px;}
.x112_c00358{left:705.300000px;}
.xc5_c00358{left:706.650000px;}
.xfc_c00358{left:709.500000px;}
.x67_c00358{left:714.600000px;}
.x5b_c00358{left:715.950000px;}
.x48_c00358{left:717.750000px;}
.xa9_c00358{left:719.250000px;}
.xd_c00358{left:721.500000px;}
.x1b_c00358{left:723.450000px;}
.x109_c00358{left:726.150000px;}
.x10d_c00358{left:728.250000px;}
.x8e_c00358{left:729.300000px;}
.x98_c00358{left:730.500000px;}
.xf3_c00358{left:739.950000px;}
.x1c_c00358{left:741.450000px;}
.x73_c00358{left:743.100000px;}
.xec_c00358{left:746.550000px;}
.x50_c00358{left:750.600000px;}
.xe_c00358{left:751.800000px;}
.xf4_c00358{left:755.400000px;}
.x49_c00358{left:757.050000px;}
.x68_c00358{left:758.850000px;}
.x38_c00358{left:765.300000px;}
.xce_c00358{left:769.200000px;}
.x117_c00358{left:771.150000px;}
.x5c_c00358{left:772.800000px;}
.xdb_c00358{left:774.000000px;}
.xc6_c00358{left:777.150000px;}
.x1d_c00358{left:779.250000px;}
.x87_c00358{left:784.050000px;}
.x69_c00358{left:786.150000px;}
.x39_c00358{left:787.200000px;}
.x8f_c00358{left:788.400000px;}
.x10a_c00358{left:794.550000px;}
.x88_c00358{left:796.650000px;}
.x2c_c00358{left:798.000000px;}
.xbd_c00358{left:799.200000px;}
.x51_c00358{left:801.000000px;}
.x2d_c00358{left:804.900000px;}
.xcf_c00358{left:808.500000px;}
.x10e_c00358{left:813.150000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws4_c00358{word-spacing:-3.888889pt;}
.ws2_c00358{word-spacing:-2.260807pt;}
.ws8_c00358{word-spacing:0.000000pt;}
.ws5_c00358{word-spacing:1.068848pt;}
.ws6_c00358{word-spacing:1.734504pt;}
.ws3_c00358{word-spacing:2.777778pt;}
.ws7_c00358{word-spacing:3.888889pt;}
.ws1_c00358{word-spacing:7.777778pt;}
.ws0_c00358{word-spacing:8.000000pt;}
._0_c00358{width:38.555556pt;}
.fs2_c00358{font-size:37.333333pt;}
.fs1_c00358{font-size:48.000000pt;}
.fs0_c00358{font-size:58.666667pt;}
.y0_c00358{bottom:0.000000pt;}
.y23_c00358{bottom:131.600000pt;}
.y22_c00358{bottom:145.333333pt;}
.y21_c00358{bottom:159.733333pt;}
.y20_c00358{bottom:191.466667pt;}
.y1f_c00358{bottom:209.333333pt;}
.y1e_c00358{bottom:226.666667pt;}
.y1d_c00358{bottom:244.533333pt;}
.y1c_c00358{bottom:262.400000pt;}
.y1b_c00358{bottom:280.000000pt;}
.y1a_c00358{bottom:297.866667pt;}
.y19_c00358{bottom:315.466667pt;}
.y18_c00358{bottom:333.066667pt;}
.y17_c00358{bottom:350.933333pt;}
.y16_c00358{bottom:368.800000pt;}
.y15_c00358{bottom:386.666667pt;}
.y14_c00358{bottom:404.266667pt;}
.y13_c00358{bottom:422.133333pt;}
.y12_c00358{bottom:440.000000pt;}
.y11_c00358{bottom:457.866667pt;}
.y10_c00358{bottom:475.733333pt;}
.yf_c00358{bottom:493.600000pt;}
.ye_c00358{bottom:511.200000pt;}
.yd_c00358{bottom:528.800000pt;}
.yc_c00358{bottom:546.666667pt;}
.yb_c00358{bottom:564.533333pt;}
.ya_c00358{bottom:582.133333pt;}
.y9_c00358{bottom:600.000000pt;}
.y8_c00358{bottom:617.600000pt;}
.y7_c00358{bottom:635.466667pt;}
.y6_c00358{bottom:653.066667pt;}
.y5_c00358{bottom:670.666667pt;}
.y4_c00358{bottom:700.533333pt;}
.y3_c00358{bottom:718.400000pt;}
.y2_c00358{bottom:748.133333pt;}
.y1_c00358{bottom:930.933333pt;}
.h4_c00358{height:37.333333pt;}
.h3_c00358{height:48.000000pt;}
.h2_c00358{height:58.666667pt;}
.h0_c00358{height:1037.119955pt;}
.h1_c00358{height:1037.333333pt;}
.w1_c00358{width:812.000000pt;}
.w0_c00358{width:812.159993pt;}
.x0_c00358{left:0.000000pt;}
.x3a_c00358{left:134.000000pt;}
.x10_c00358{left:135.066667pt;}
.x3b_c00358{left:150.266667pt;}
.xed_c00358{left:152.133333pt;}
.xaa_c00358{left:153.600000pt;}
.x1e_c00358{left:155.333333pt;}
.xd0_c00358{left:157.333333pt;}
.x5d_c00358{left:158.533333pt;}
.x2e_c00358{left:160.000000pt;}
.xfd_c00358{left:161.866667pt;}
.x10f_c00358{left:163.466667pt;}
.x52_c00358{left:167.066667pt;}
.xe4_c00358{left:168.133333pt;}
.x3c_c00358{left:169.200000pt;}
.xdf_c00358{left:174.533333pt;}
.x11_c00358{left:176.000000pt;}
.xdc_c00358{left:178.666667pt;}
.x4_c00358{left:179.866667pt;}
.xb4_c00358{left:181.066667pt;}
.xab_c00358{left:183.066667pt;}
.xa2_c00358{left:187.200000pt;}
.x118_c00358{left:191.333333pt;}
.x90_c00358{left:193.600000pt;}
.x6a_c00358{left:194.933333pt;}
.x7e_c00358{left:198.133333pt;}
.x113_c00358{left:200.000000pt;}
.xc7_c00358{left:202.266667pt;}
.x3d_c00358{left:204.133333pt;}
.x2f_c00358{left:205.733333pt;}
.x99_c00358{left:208.666667pt;}
.x89_c00358{left:210.133333pt;}
.x5e_c00358{left:211.066667pt;}
.xac_c00358{left:213.200000pt;}
.xa3_c00358{left:215.333333pt;}
.xb5_c00358{left:216.266667pt;}
.x53_c00358{left:218.000000pt;}
.x6b_c00358{left:221.200000pt;}
.x4a_c00358{left:222.933333pt;}
.x1f_c00358{left:224.400000pt;}
.x91_c00358{left:226.266667pt;}
.x5f_c00358{left:228.400000pt;}
.xb6_c00358{left:230.400000pt;}
.xd1_c00358{left:233.200000pt;}
.x74_c00358{left:234.266667pt;}
.x10b_c00358{left:235.600000pt;}
.xd2_c00358{left:243.466667pt;}
.x102_c00358{left:245.200000pt;}
.x20_c00358{left:247.066667pt;}
.x54_c00358{left:250.266667pt;}
.x11d_c00358{left:252.266667pt;}
.xe5_c00358{left:253.333333pt;}
.x5_c00358{left:254.400000pt;}
.xb7_c00358{left:256.266667pt;}
.xf5_c00358{left:257.866667pt;}
.x75_c00358{left:260.133333pt;}
.x103_c00358{left:262.800000pt;}
.xc8_c00358{left:263.733333pt;}
.x6_c00358{left:267.866667pt;}
.x55_c00358{left:269.733333pt;}
.x12_c00358{left:271.066667pt;}
.xfe_c00358{left:272.266667pt;}
.xf6_c00358{left:273.200000pt;}
.xd3_c00358{left:274.133333pt;}
.x9a_c00358{left:277.733333pt;}
.xc9_c00358{left:278.800000pt;}
.xa4_c00358{left:281.866667pt;}
.x21_c00358{left:283.600000pt;}
.x3e_c00358{left:285.066667pt;}
.x30_c00358{left:286.666667pt;}
.x7f_c00358{left:287.866667pt;}
.x60_c00358{left:289.200000pt;}
.xd4_c00358{left:291.466667pt;}
.x92_c00358{left:292.533333pt;}
.xe6_c00358{left:295.866667pt;}
.xbe_c00358{left:297.866667pt;}
.x13_c00358{left:300.133333pt;}
.x3f_c00358{left:301.066667pt;}
.x4b_c00358{left:305.466667pt;}
.x7_c00358{left:306.533333pt;}
.x9b_c00358{left:307.866667pt;}
.x119_c00358{left:309.333333pt;}
.x31_c00358{left:310.933333pt;}
.xad_c00358{left:312.133333pt;}
.x40_c00358{left:314.533333pt;}
.x22_c00358{left:316.533333pt;}
.x114_c00358{left:319.866667pt;}
.x56_c00358{left:321.866667pt;}
.x61_c00358{left:323.466667pt;}
.x9c_c00358{left:324.533333pt;}
.xe7_c00358{left:326.000000pt;}
.xff_c00358{left:328.000000pt;}
.x80_c00358{left:329.200000pt;}
.x41_c00358{left:330.266667pt;}
.xe0_c00358{left:331.333333pt;}
.x104_c00358{left:332.800000pt;}
.x6c_c00358{left:334.533333pt;}
.x76_c00358{left:336.266667pt;}
.x11e_c00358{left:339.333333pt;}
.xbf_c00358{left:343.333333pt;}
.xf7_c00358{left:344.533333pt;}
.x23_c00358{left:345.600000pt;}
.x42_c00358{left:347.866667pt;}
.x62_c00358{left:349.066667pt;}
.x115_c00358{left:350.000000pt;}
.xe8_c00358{left:350.933333pt;}
.x81_c00358{left:353.200000pt;}
.x77_c00358{left:355.466667pt;}
.x14_c00358{left:357.733333pt;}
.xee_c00358{left:359.200000pt;}
.x57_c00358{left:361.866667pt;}
.x93_c00358{left:363.866667pt;}
.x105_c00358{left:365.466667pt;}
.xf8_c00358{left:366.933333pt;}
.x2_c00358{left:368.266667pt;}
.x116_c00358{left:369.866667pt;}
.x100_c00358{left:375.733333pt;}
.x8a_c00358{left:377.600000pt;}
.x32_c00358{left:378.800000pt;}
.x24_c00358{left:380.533333pt;}
.x8_c00358{left:384.666667pt;}
.xe1_c00358{left:385.733333pt;}
.xd5_c00358{left:387.200000pt;}
.xb8_c00358{left:388.800000pt;}
.x82_c00358{left:391.600000pt;}
.xf_c00358{left:392.666667pt;}
.x11a_c00358{left:394.133333pt;}
.xae_c00358{left:395.333333pt;}
.x25_c00358{left:397.200000pt;}
.x15_c00358{left:398.666667pt;}
.xd6_c00358{left:400.266667pt;}
.x43_c00358{left:403.600000pt;}
.x110_c00358{left:404.666667pt;}
.xe9_c00358{left:407.200000pt;}
.xca_c00358{left:408.133333pt;}
.xe2_c00358{left:409.066667pt;}
.x9_c00358{left:410.266667pt;}
.x33_c00358{left:411.733333pt;}
.xb9_c00358{left:414.666667pt;}
.xef_c00358{left:417.066667pt;}
.x78_c00358{left:418.266667pt;}
.x1_c00358{left:420.133333pt;}
.x4c_c00358{left:422.533333pt;}
.xa_c00358{left:423.733333pt;}
.x63_c00358{left:425.200000pt;}
.x34_c00358{left:430.666667pt;}
.x9d_c00358{left:432.933333pt;}
.x6d_c00358{left:436.000000pt;}
.xa5_c00358{left:437.733333pt;}
.xe3_c00358{left:439.200000pt;}
.x26_c00358{left:440.400000pt;}
.x16_c00358{left:442.133333pt;}
.x3_c00358{left:443.200000pt;}
.xdd_c00358{left:444.266667pt;}
.x44_c00358{left:447.066667pt;}
.xf9_c00358{left:448.266667pt;}
.x58_c00358{left:453.733333pt;}
.x35_c00358{left:455.333333pt;}
.xaf_c00358{left:456.400000pt;}
.xcb_c00358{left:460.933333pt;}
.x45_c00358{left:463.066667pt;}
.x17_c00358{left:464.800000pt;}
.xc0_c00358{left:466.133333pt;}
.x8b_c00358{left:467.466667pt;}
.x106_c00358{left:469.866667pt;}
.x79_c00358{left:472.933333pt;}
.x4d_c00358{left:474.666667pt;}
.x11b_c00358{left:476.400000pt;}
.xa6_c00358{left:477.733333pt;}
.xfa_c00358{left:480.266667pt;}
.x27_c00358{left:481.333333pt;}
.x6e_c00358{left:482.666667pt;}
.x64_c00358{left:484.133333pt;}
.x9e_c00358{left:488.266667pt;}
.x111_c00358{left:490.133333pt;}
.x46_c00358{left:491.866667pt;}
.x65_c00358{left:494.000000pt;}
.x11c_c00358{left:497.866667pt;}
.xcc_c00358{left:500.000000pt;}
.xd7_c00358{left:501.066667pt;}
.x59_c00358{left:503.066667pt;}
.xa7_c00358{left:504.266667pt;}
.x28_c00358{left:505.333333pt;}
.xc1_c00358{left:506.800000pt;}
.xb_c00358{left:509.200000pt;}
.x4e_c00358{left:510.800000pt;}
.x6f_c00358{left:512.800000pt;}
.xea_c00358{left:515.333333pt;}
.xb0_c00358{left:516.266667pt;}
.x7a_c00358{left:517.466667pt;}
.x94_c00358{left:521.600000pt;}
.x107_c00358{left:522.933333pt;}
.xf0_c00358{left:524.666667pt;}
.x18_c00358{left:525.600000pt;}
.x83_c00358{left:527.200000pt;}
.xa8_c00358{left:528.533333pt;}
.x5a_c00358{left:531.200000pt;}
.xc2_c00358{left:533.733333pt;}
.x7b_c00358{left:535.066667pt;}
.xba_c00358{left:536.266667pt;}
.x29_c00358{left:538.266667pt;}
.x9f_c00358{left:539.200000pt;}
.x19_c00358{left:541.600000pt;}
.x66_c00358{left:544.933333pt;}
.x84_c00358{left:547.066667pt;}
.xc_c00358{left:549.200000pt;}
.xd8_c00358{left:550.400000pt;}
.x47_c00358{left:552.666667pt;}
.xa0_c00358{left:554.266667pt;}
.x70_c00358{left:555.733333pt;}
.x95_c00358{left:560.666667pt;}
.x85_c00358{left:562.800000pt;}
.xde_c00358{left:564.000000pt;}
.x1a_c00358{left:566.266667pt;}
.xcd_c00358{left:567.600000pt;}
.x7c_c00358{left:568.666667pt;}
.x36_c00358{left:572.133333pt;}
.xc3_c00358{left:573.066667pt;}
.xa1_c00358{left:577.333333pt;}
.xbb_c00358{left:581.733333pt;}
.x4f_c00358{left:582.666667pt;}
.xb1_c00358{left:584.000000pt;}
.xd9_c00358{left:585.866667pt;}
.x8c_c00358{left:587.466667pt;}
.x71_c00358{left:589.066667pt;}
.x108_c00358{left:591.733333pt;}
.xeb_c00358{left:592.800000pt;}
.xb2_c00358{left:594.533333pt;}
.xc4_c00358{left:596.800000pt;}
.xf1_c00358{left:597.866667pt;}
.xfb_c00358{left:600.266667pt;}
.x2a_c00358{left:601.600000pt;}
.x37_c00358{left:603.466667pt;}
.x96_c00358{left:604.533333pt;}
.x101_c00358{left:606.133333pt;}
.x7d_c00358{left:607.066667pt;}
.xbc_c00358{left:608.000000pt;}
.x10c_c00358{left:609.333333pt;}
.x8d_c00358{left:610.533333pt;}
.xda_c00358{left:612.133333pt;}
.x72_c00358{left:614.400000pt;}
.x86_c00358{left:616.266667pt;}
.x2b_c00358{left:617.866667pt;}
.xb3_c00358{left:619.200000pt;}
.xf2_c00358{left:621.600000pt;}
.x97_c00358{left:624.400000pt;}
.x112_c00358{left:626.933333pt;}
.xc5_c00358{left:628.133333pt;}
.xfc_c00358{left:630.666667pt;}
.x67_c00358{left:635.200000pt;}
.x5b_c00358{left:636.400000pt;}
.x48_c00358{left:638.000000pt;}
.xa9_c00358{left:639.333333pt;}
.xd_c00358{left:641.333333pt;}
.x1b_c00358{left:643.066667pt;}
.x109_c00358{left:645.466667pt;}
.x10d_c00358{left:647.333333pt;}
.x8e_c00358{left:648.266667pt;}
.x98_c00358{left:649.333333pt;}
.xf3_c00358{left:657.733333pt;}
.x1c_c00358{left:659.066667pt;}
.x73_c00358{left:660.533333pt;}
.xec_c00358{left:663.600000pt;}
.x50_c00358{left:667.200000pt;}
.xe_c00358{left:668.266667pt;}
.xf4_c00358{left:671.466667pt;}
.x49_c00358{left:672.933333pt;}
.x68_c00358{left:674.533333pt;}
.x38_c00358{left:680.266667pt;}
.xce_c00358{left:683.733333pt;}
.x117_c00358{left:685.466667pt;}
.x5c_c00358{left:686.933333pt;}
.xdb_c00358{left:688.000000pt;}
.xc6_c00358{left:690.800000pt;}
.x1d_c00358{left:692.666667pt;}
.x87_c00358{left:696.933333pt;}
.x69_c00358{left:698.800000pt;}
.x39_c00358{left:699.733333pt;}
.x8f_c00358{left:700.800000pt;}
.x10a_c00358{left:706.266667pt;}
.x88_c00358{left:708.133333pt;}
.x2c_c00358{left:709.333333pt;}
.xbd_c00358{left:710.400000pt;}
.x51_c00358{left:712.000000pt;}
.x2d_c00358{left:715.466667pt;}
.xcf_c00358{left:718.666667pt;}
.x10e_c00358{left:722.800000pt;}
}





/* 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_c00359 {
    display:none;
  }
  .loading-indicator_c00359.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00359 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_c00359 { 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_c00359" -> "#page-container .classname_c00359")
 */
.pf_c00359 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00359 { /* 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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00359 { /* 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_c00359 { /* 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_c00359 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00359 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00359 {overflow:visible;}
  }
}
.c_c00359 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00359 { /* 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_c00359:after { /* webkit #35443 */
  content: '';
}
.t_c00359:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00359 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 */
}
.__c00359 { /* 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_c00359 { /* info for Javascript */
  display:none;
}
.l_c00359 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00359 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00359 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00359: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_c00359 {
    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_c00359.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00359.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_c00359 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00359{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00359;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.000000;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;}
.m12_c00359{transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.013250,0.000000,0.000000,0.250000,0,0);}
.md_c00359{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m13_c00359{transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049000,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00359{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00359{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00359{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6_c00359{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00359{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00359{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8_c00359{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00359{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m15_c00359{transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307250,0.000000,0.000000,0.250000,0,0);}
.m7_c00359{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.ma_c00359{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m4_c00359{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m14_c00359{transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472000,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.ls0_c00359{letter-spacing:0.000000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{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__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00359{word-spacing:0.000000px;}
.ws0_c00359{word-spacing:1689.396226px;}
.fc0_c00359{color:transparent;}
.fs3_c00359{font-size:36.000000px;}
.fs0_c00359{font-size:42.000000px;}
.fs2_c00359{font-size:54.000000px;}
.fs1_c00359{font-size:60.000000px;}
.y0_c00359{bottom:0.000000px;}
.yb_c00359{bottom:58.350000px;}
.ya_c00359{bottom:91.500000px;}
.y9_c00359{bottom:106.500000px;}
.y8_c00359{bottom:124.200000px;}
.y7_c00359{bottom:605.850000px;}
.y6_c00359{bottom:610.500000px;}
.y5_c00359{bottom:612.000000px;}
.y3_c00359{bottom:649.050000px;}
.y2_c00359{bottom:664.200000px;}
.y4_c00359{bottom:667.050000px;}
.y1_c00359{bottom:677.550000px;}
.h5_c00359{height:36.000000px;}
.h2_c00359{height:42.000000px;}
.h4_c00359{height:54.000000px;}
.h3_c00359{height:60.000000px;}
.h0_c00359{height:1166.759949px;}
.h1_c00359{height:1167.000000px;}
.w1_c00359{width:913.500000px;}
.w0_c00359{width:913.679993px;}
.x0_c00359{left:0.000000px;}
.x1b_c00359{left:30.900000px;}
.x4_c00359{left:55.500000px;}
.x1_c00359{left:57.300000px;}
.x1c_c00359{left:58.950000px;}
.x16_c00359{left:63.750000px;}
.x14_c00359{left:81.750000px;}
.x18_c00359{left:106.950000px;}
.x19_c00359{left:112.650000px;}
.x5_c00359{left:123.900000px;}
.x2_c00359{left:126.300000px;}
.x1d_c00359{left:130.200000px;}
.x15_c00359{left:140.850000px;}
.x1a_c00359{left:158.400000px;}
.x17_c00359{left:168.900000px;}
.x1e_c00359{left:174.900000px;}
.x1f_c00359{left:207.000000px;}
.x20_c00359{left:218.550000px;}
.x3_c00359{left:258.000000px;}
.x21_c00359{left:259.650000px;}
.x6_c00359{left:457.500000px;}
.x7_c00359{left:479.400000px;}
.x8_c00359{left:521.550000px;}
.x9_c00359{left:542.850000px;}
.xa_c00359{left:586.800000px;}
.xb_c00359{left:608.400000px;}
.xc_c00359{left:624.900000px;}
.xd_c00359{left:652.950000px;}
.xe_c00359{left:753.150000px;}
.xf_c00359{left:767.550000px;}
.x10_c00359{left:787.050000px;}
.x11_c00359{left:793.200000px;}
.x12_c00359{left:799.350000px;}
.x13_c00359{left:827.850000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws1_c00359{word-spacing:0.000000pt;}
.ws0_c00359{word-spacing:1501.685535pt;}
.fs3_c00359{font-size:32.000000pt;}
.fs0_c00359{font-size:37.333333pt;}
.fs2_c00359{font-size:48.000000pt;}
.fs1_c00359{font-size:53.333333pt;}
.y0_c00359{bottom:0.000000pt;}
.yb_c00359{bottom:51.866667pt;}
.ya_c00359{bottom:81.333333pt;}
.y9_c00359{bottom:94.666667pt;}
.y8_c00359{bottom:110.400000pt;}
.y7_c00359{bottom:538.533333pt;}
.y6_c00359{bottom:542.666667pt;}
.y5_c00359{bottom:544.000000pt;}
.y3_c00359{bottom:576.933333pt;}
.y2_c00359{bottom:590.400000pt;}
.y4_c00359{bottom:592.933333pt;}
.y1_c00359{bottom:602.266667pt;}
.h5_c00359{height:32.000000pt;}
.h2_c00359{height:37.333333pt;}
.h4_c00359{height:48.000000pt;}
.h3_c00359{height:53.333333pt;}
.h0_c00359{height:1037.119955pt;}
.h1_c00359{height:1037.333333pt;}
.w1_c00359{width:812.000000pt;}
.w0_c00359{width:812.159993pt;}
.x0_c00359{left:0.000000pt;}
.x1b_c00359{left:27.466667pt;}
.x4_c00359{left:49.333333pt;}
.x1_c00359{left:50.933333pt;}
.x1c_c00359{left:52.400000pt;}
.x16_c00359{left:56.666667pt;}
.x14_c00359{left:72.666667pt;}
.x18_c00359{left:95.066667pt;}
.x19_c00359{left:100.133333pt;}
.x5_c00359{left:110.133333pt;}
.x2_c00359{left:112.266667pt;}
.x1d_c00359{left:115.733333pt;}
.x15_c00359{left:125.200000pt;}
.x1a_c00359{left:140.800000pt;}
.x17_c00359{left:150.133333pt;}
.x1e_c00359{left:155.466667pt;}
.x1f_c00359{left:184.000000pt;}
.x20_c00359{left:194.266667pt;}
.x3_c00359{left:229.333333pt;}
.x21_c00359{left:230.800000pt;}
.x6_c00359{left:406.666667pt;}
.x7_c00359{left:426.133333pt;}
.x8_c00359{left:463.600000pt;}
.x9_c00359{left:482.533333pt;}
.xa_c00359{left:521.600000pt;}
.xb_c00359{left:540.800000pt;}
.xc_c00359{left:555.466667pt;}
.xd_c00359{left:580.400000pt;}
.xe_c00359{left:669.466667pt;}
.xf_c00359{left:682.266667pt;}
.x10_c00359{left:699.600000pt;}
.x11_c00359{left:705.066667pt;}
.x12_c00359{left:710.533333pt;}
.x13_c00359{left:735.866667pt;}
}





/* 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_c00360 {
    display:none;
  }
  .loading-indicator_c00360.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00360 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_c00360 { 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_c00360" -> "#page-container .classname_c00360")
 */
.pf_c00360 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00360 { /* 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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00360 { /* 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_c00360 { /* 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_c00360 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00360 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00360 {overflow:visible;}
  }
}
.c_c00360 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00360 { /* 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_c00360:after { /* webkit #35443 */
  content: '';
}
.t_c00360:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00360 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 */
}
.__c00360 { /* 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_c00360 { /* info for Javascript */
  display:none;
}
.l_c00360 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00360 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00360 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00360: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_c00360 {
    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_c00360.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00360.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_c00360 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00360{font-family:sans-serif;visibility:hidden;}
.sc__c00360{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
}
.y0_c00360{bottom:0.000000px;}
.h0_c00360{height:1166.759949px;}
.h1_c00360{height:1167.000000px;}
.w1_c00360{width:913.500000px;}
.w0_c00360{width:913.679993px;}
.x0_c00360{left:0.000000px;}
@media print{
.y0_c00360{bottom:0.000000pt;}
.h0_c00360{height:1037.119955pt;}
.h1_c00360{height:1037.333333pt;}
.w1_c00360{width:812.000000pt;}
.w0_c00360{width:812.159993pt;}
.x0_c00360{left:0.000000pt;}
}





/* 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_c00361 {
    display:none;
  }
  .loading-indicator_c00361.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00361 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_c00361 { 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_c00361" -> "#page-container .classname_c00361")
 */
.pf_c00361 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00361 { /* 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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00361 { /* 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_c00361 { /* 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_c00361 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00361 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00361 {overflow:visible;}
  }
}
.c_c00361 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00361 { /* 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_c00361:after { /* webkit #35443 */
  content: '';
}
.t_c00361:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00361 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 */
}
.__c00361 { /* 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_c00361 { /* info for Javascript */
  display:none;
}
.l_c00361 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00361 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00361 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00361: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_c00361 {
    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_c00361.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00361.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_c00361 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00361{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00361;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.000000;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;}
.m83_c00361{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m41_c00361{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m33_c00361{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00361{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00361{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.md_c00361{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m71_c00361{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m39_c00361{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00361{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m63_c00361{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00361{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m72_c00361{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m17_c00361{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m48_c00361{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m60_c00361{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m51_c00361{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m21_c00361{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m55_c00361{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m67_c00361{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00361{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00361{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00361{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m75_c00361{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00361{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m20_c00361{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00361{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m76_c00361{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00361{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m86_c00361{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m88_c00361{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m43_c00361{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m54_c00361{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m11_c00361{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00361{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00361{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00361{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m13_c00361{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m53_c00361{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m50_c00361{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m49_c00361{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00361{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00361{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m47_c00361{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m22_c00361{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00361{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00361{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00361{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m19_c00361{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m74_c00361{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14_c00361{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m59_c00361{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00361{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m62_c00361{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m28_c00361{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00361{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00361{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m61_c00361{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00361{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m46_c00361{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m84_c00361{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m29_c00361{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m12_c00361{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m26_c00361{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00361{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7_c00361{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8_c00361{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m73_c00361{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00361{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00361{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m25_c00361{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m27_c00361{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m52_c00361{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m15_c00361{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00361{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m32_c00361{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m65_c00361{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m38_c00361{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.me_c00361{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00361{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m70_c00361{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00361{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00361{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m56_c00361{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m34_c00361{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m58_c00361{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m35_c00361{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00361{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00361{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m64_c00361{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m16_c00361{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m37_c00361{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00361{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m79_c00361{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m18_c00361{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m77_c00361{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m42_c00361{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00361{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00361{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m44_c00361{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);}
.mc_c00361{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00361{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00361{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m80_c00361{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m36_c00361{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30_c00361{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m82_c00361{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00361{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00361{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4_c00361{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00361{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00361{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00361{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m57_c00361{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m68_c00361{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m40_c00361{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m87_c00361{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m66_c00361{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00361{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00361{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00361{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m78_c00361{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m69_c00361{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00361{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m23_c00361{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00361{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m31_c00361{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m81_c00361{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.ls0_c00361{letter-spacing:0.000000px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{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__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00361{word-spacing:-8.671875px;}
.ws5_c00361{word-spacing:-7.926829px;}
.ws4_c00361{word-spacing:-5.138889px;}
.ws6_c00361{word-spacing:-3.055556px;}
.ws7_c00361{word-spacing:-2.738095px;}
.ws2_c00361{word-spacing:-1.640625px;}
.ws9_c00361{word-spacing:0.000000px;}
.ws1_c00361{word-spacing:1.805556px;}
.ws3_c00361{word-spacing:3.421053px;}
.ws8_c00361{word-spacing:15.882353px;}
.fc0_c00361{color:transparent;}
.fs2_c00361{font-size:42.000000px;}
.fs0_c00361{font-size:54.000000px;}
.fs1_c00361{font-size:60.000000px;}
.y0_c00361{bottom:0.000000px;}
.y1b_c00361{bottom:142.950000px;}
.y1a_c00361{bottom:162.750000px;}
.y19_c00361{bottom:182.550000px;}
.y18_c00361{bottom:203.100000px;}
.y17_c00361{bottom:222.900000px;}
.y16_c00361{bottom:242.700000px;}
.y15_c00361{bottom:262.500000px;}
.y14_c00361{bottom:282.600000px;}
.y13_c00361{bottom:302.700000px;}
.y12_c00361{bottom:322.200000px;}
.y11_c00361{bottom:361.200000px;}
.y10_c00361{bottom:381.000000px;}
.yf_c00361{bottom:401.100000px;}
.ye_c00361{bottom:439.500000px;}
.yd_c00361{bottom:440.250000px;}
.yc_c00361{bottom:441.000000px;}
.yb_c00361{bottom:846.300000px;}
.ya_c00361{bottom:866.550000px;}
.y9_c00361{bottom:886.650000px;}
.y8_c00361{bottom:906.900000px;}
.y7_c00361{bottom:926.700000px;}
.y6_c00361{bottom:946.800000px;}
.y5_c00361{bottom:966.600000px;}
.y4_c00361{bottom:986.400000px;}
.y3_c00361{bottom:1006.500000px;}
.y2_c00361{bottom:1039.650000px;}
.y1_c00361{bottom:1042.950000px;}
.h4_c00361{height:42.000000px;}
.h2_c00361{height:54.000000px;}
.h3_c00361{height:60.000000px;}
.h0_c00361{height:1166.759949px;}
.h1_c00361{height:1167.000000px;}
.w1_c00361{width:913.500000px;}
.w0_c00361{width:913.679993px;}
.x0_c00361{left:0.000000px;}
.xd4_c00361{left:83.850000px;}
.x78_c00361{left:84.900000px;}
.x67_c00361{left:87.450000px;}
.x3_c00361{left:88.500000px;}
.x50_c00361{left:97.200000px;}
.xd5_c00361{left:110.850000px;}
.x14_c00361{left:116.100000px;}
.x39_c00361{left:118.800000px;}
.x5c_c00361{left:121.200000px;}
.x9d_c00361{left:122.250000px;}
.x33_c00361{left:123.750000px;}
.x4_c00361{left:126.000000px;}
.xb3_c00361{left:133.800000px;}
.x83_c00361{left:134.850000px;}
.x47_c00361{left:140.400000px;}
.xd1_c00361{left:144.600000px;}
.xc1_c00361{left:145.800000px;}
.x68_c00361{left:146.850000px;}
.x34_c00361{left:150.450000px;}
.x5_c00361{left:152.250000px;}
.x3a_c00361{left:153.300000px;}
.x79_c00361{left:155.400000px;}
.xa8_c00361{left:159.150000px;}
.x9e_c00361{left:162.900000px;}
.xad_c00361{left:164.850000px;}
.xc7_c00361{left:166.650000px;}
.x24_c00361{left:168.300000px;}
.xb4_c00361{left:170.550000px;}
.xbb_c00361{left:174.150000px;}
.x7a_c00361{left:175.950000px;}
.x3b_c00361{left:177.750000px;}
.x6_c00361{left:183.150000px;}
.x15_c00361{left:184.200000px;}
.x35_c00361{left:186.450000px;}
.x5d_c00361{left:188.100000px;}
.x8c_c00361{left:189.450000px;}
.xc8_c00361{left:195.150000px;}
.xa9_c00361{left:197.250000px;}
.x5e_c00361{left:199.200000px;}
.x36_c00361{left:200.550000px;}
.x25_c00361{left:202.200000px;}
.x51_c00361{left:203.850000px;}
.x69_c00361{left:205.500000px;}
.x95_c00361{left:206.550000px;}
.x9f_c00361{left:210.450000px;}
.xd6_c00361{left:214.950000px;}
.x7_c00361{left:220.650000px;}
.x16_c00361{left:221.700000px;}
.x84_c00361{left:223.350000px;}
.x8d_c00361{left:224.400000px;}
.x26_c00361{left:230.250000px;}
.x8_c00361{left:239.700000px;}
.x17_c00361{left:241.500000px;}
.x3c_c00361{left:245.850000px;}
.x73_c00361{left:249.450000px;}
.x96_c00361{left:251.550000px;}
.xae_c00361{left:256.650000px;}
.x48_c00361{left:258.150000px;}
.x74_c00361{left:261.300000px;}
.xc2_c00361{left:262.350000px;}
.x18_c00361{left:264.600000px;}
.x9_c00361{left:267.450000px;}
.xaa_c00361{left:269.250000px;}
.x6a_c00361{left:270.600000px;}
.x5f_c00361{left:276.900000px;}
.x8e_c00361{left:279.150000px;}
.x3d_c00361{left:280.800000px;}
.xa0_c00361{left:282.000000px;}
.x7b_c00361{left:285.000000px;}
.x37_c00361{left:286.650000px;}
.xb5_c00361{left:289.500000px;}
.x52_c00361{left:294.600000px;}
.x6b_c00361{left:296.850000px;}
.x85_c00361{left:298.650000px;}
.x27_c00361{left:299.700000px;}
.x38_c00361{left:305.400000px;}
.x3e_c00361{left:309.300000px;}
.xc9_c00361{left:316.050000px;}
.x86_c00361{left:318.150000px;}
.x7c_c00361{left:320.700000px;}
.x8f_c00361{left:322.350000px;}
.x60_c00361{left:325.200000px;}
.x19_c00361{left:327.600000px;}
.x6c_c00361{left:331.350000px;}
.xb6_c00361{left:332.700000px;}
.x53_c00361{left:335.250000px;}
.xca_c00361{left:336.900000px;}
.xab_c00361{left:341.550000px;}
.xbc_c00361{left:342.750000px;}
.x49_c00361{left:345.600000px;}
.x7d_c00361{left:346.950000px;}
.xb7_c00361{left:348.600000px;}
.x90_c00361{left:350.850000px;}
.x54_c00361{left:352.950000px;}
.xa_c00361{left:356.400000px;}
.xd2_c00361{left:361.950000px;}
.x1a_c00361{left:363.900000px;}
.x3f_c00361{left:365.400000px;}
.x91_c00361{left:367.800000px;}
.x97_c00361{left:370.350000px;}
.xb_c00361{left:375.450000px;}
.x7e_c00361{left:381.450000px;}
.x28_c00361{left:384.000000px;}
.xa1_c00361{left:387.750000px;}
.xcb_c00361{left:389.850000px;}
.x6d_c00361{left:393.300000px;}
.xb8_c00361{left:396.150000px;}
.xc_c00361{left:398.100000px;}
.x1b_c00361{left:399.900000px;}
.xc3_c00361{left:401.100000px;}
.x1_c00361{left:402.150000px;}
.x40_c00361{left:404.700000px;}
.x61_c00361{left:409.800000px;}
.xaf_c00361{left:412.800000px;}
.xa2_c00361{left:415.800000px;}
.x7f_c00361{left:417.450000px;}
.x29_c00361{left:419.250000px;}
.xd3_c00361{left:427.050000px;}
.xc4_c00361{left:430.650000px;}
.x98_c00361{left:431.850000px;}
.x55_c00361{left:436.950000px;}
.xbd_c00361{left:439.650000px;}
.x2a_c00361{left:441.150000px;}
.x87_c00361{left:445.200000px;}
.x92_c00361{left:446.250000px;}
.x4a_c00361{left:448.950000px;}
.x1c_c00361{left:453.600000px;}
.x75_c00361{left:455.700000px;}
.xcc_c00361{left:461.400000px;}
.xac_c00361{left:466.200000px;}
.x80_c00361{left:471.150000px;}
.x62_c00361{left:474.300000px;}
.xd_c00361{left:475.800000px;}
.x41_c00361{left:478.200000px;}
.xc5_c00361{left:482.550000px;}
.x88_c00361{left:484.050000px;}
.x56_c00361{left:486.750000px;}
.x76_c00361{left:487.800000px;}
.xd7_c00361{left:491.400000px;}
.x2b_c00361{left:495.900000px;}
.xcd_c00361{left:499.200000px;}
.x93_c00361{left:500.250000px;}
.xa3_c00361{left:504.150000px;}
.xbe_c00361{left:505.800000px;}
.x99_c00361{left:511.050000px;}
.x1d_c00361{left:513.000000px;}
.x4b_c00361{left:514.500000px;}
.x63_c00361{left:516.750000px;}
.xd8_c00361{left:518.700000px;}
.x57_c00361{left:526.050000px;}
.xce_c00361{left:528.000000px;}
.x6e_c00361{left:530.400000px;}
.xa4_c00361{left:533.250000px;}
.xe_c00361{left:535.200000px;}
.x2c_c00361{left:537.300000px;}
.x1e_c00361{left:538.500000px;}
.xc6_c00361{left:541.650000px;}
.x89_c00361{left:544.500000px;}
.xf_c00361{left:552.150000px;}
.xd9_c00361{left:554.400000px;}
.x42_c00361{left:555.600000px;}
.x2d_c00361{left:557.100000px;}
.x4c_c00361{left:563.850000px;}
.xa5_c00361{left:567.750000px;}
.xb0_c00361{left:572.700000px;}
.xbf_c00361{left:573.900000px;}
.x81_c00361{left:575.550000px;}
.x58_c00361{left:577.200000px;}
.x2e_c00361{left:578.400000px;}
.x10_c00361{left:580.200000px;}
.x43_c00361{left:583.650000px;}
.x8a_c00361{left:585.600000px;}
.xcf_c00361{left:586.650000px;}
.x77_c00361{left:587.850000px;}
.x4d_c00361{left:590.850000px;}
.x2f_c00361{left:592.050000px;}
.x1f_c00361{left:595.050000px;}
.xda_c00361{left:597.600000px;}
.x64_c00361{left:600.600000px;}
.x8b_c00361{left:602.550000px;}
.x6f_c00361{left:607.500000px;}
.x9a_c00361{left:614.100000px;}
.xa6_c00361{left:615.750000px;}
.x11_c00361{left:616.950000px;}
.x20_c00361{left:618.750000px;}
.x59_c00361{left:620.700000px;}
.xc0_c00361{left:627.600000px;}
.x70_c00361{left:628.800000px;}
.xb9_c00361{left:634.350000px;}
.x5a_c00361{left:640.800000px;}
.x44_c00361{left:643.050000px;}
.x82_c00361{left:648.300000px;}
.xb1_c00361{left:655.050000px;}
.xd0_c00361{left:656.550000px;}
.x9b_c00361{left:661.650000px;}
.x21_c00361{left:664.050000px;}
.x94_c00361{left:666.900000px;}
.x65_c00361{left:667.950000px;}
.x12_c00361{left:671.250000px;}
.x71_c00361{left:672.750000px;}
.x30_c00361{left:676.950000px;}
.x45_c00361{left:679.350000px;}
.xba_c00361{left:685.050000px;}
.x66_c00361{left:687.000000px;}
.x72_c00361{left:690.450000px;}
.x31_c00361{left:696.750000px;}
.x46_c00361{left:699.900000px;}
.x22_c00361{left:701.850000px;}
.x4e_c00361{left:707.100000px;}
.x9c_c00361{left:710.550000px;}
.xa7_c00361{left:715.350000px;}
.x23_c00361{left:719.550000px;}
.x32_c00361{left:723.450000px;}
.x13_c00361{left:726.750000px;}
.x2_c00361{left:730.800000px;}
.xb2_c00361{left:732.150000px;}
.x5b_c00361{left:736.950000px;}
.x4f_c00361{left:743.100000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls0_c00361{letter-spacing:0.000000pt;}
.ws0_c00361{word-spacing:-7.708333pt;}
.ws5_c00361{word-spacing:-7.046070pt;}
.ws4_c00361{word-spacing:-4.567901pt;}
.ws6_c00361{word-spacing:-2.716049pt;}
.ws7_c00361{word-spacing:-2.433862pt;}
.ws2_c00361{word-spacing:-1.458333pt;}
.ws9_c00361{word-spacing:0.000000pt;}
.ws1_c00361{word-spacing:1.604938pt;}
.ws3_c00361{word-spacing:3.040936pt;}
.ws8_c00361{word-spacing:14.117647pt;}
.fs2_c00361{font-size:37.333333pt;}
.fs0_c00361{font-size:48.000000pt;}
.fs1_c00361{font-size:53.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y1b_c00361{bottom:127.066667pt;}
.y1a_c00361{bottom:144.666667pt;}
.y19_c00361{bottom:162.266667pt;}
.y18_c00361{bottom:180.533333pt;}
.y17_c00361{bottom:198.133333pt;}
.y16_c00361{bottom:215.733333pt;}
.y15_c00361{bottom:233.333333pt;}
.y14_c00361{bottom:251.200000pt;}
.y13_c00361{bottom:269.066667pt;}
.y12_c00361{bottom:286.400000pt;}
.y11_c00361{bottom:321.066667pt;}
.y10_c00361{bottom:338.666667pt;}
.yf_c00361{bottom:356.533333pt;}
.ye_c00361{bottom:390.666667pt;}
.yd_c00361{bottom:391.333333pt;}
.yc_c00361{bottom:392.000000pt;}
.yb_c00361{bottom:752.266667pt;}
.ya_c00361{bottom:770.266667pt;}
.y9_c00361{bottom:788.133333pt;}
.y8_c00361{bottom:806.133333pt;}
.y7_c00361{bottom:823.733333pt;}
.y6_c00361{bottom:841.600000pt;}
.y5_c00361{bottom:859.200000pt;}
.y4_c00361{bottom:876.800000pt;}
.y3_c00361{bottom:894.666667pt;}
.y2_c00361{bottom:924.133333pt;}
.y1_c00361{bottom:927.066667pt;}
.h4_c00361{height:37.333333pt;}
.h2_c00361{height:48.000000pt;}
.h3_c00361{height:53.333333pt;}
.h0_c00361{height:1037.119955pt;}
.h1_c00361{height:1037.333333pt;}
.w1_c00361{width:812.000000pt;}
.w0_c00361{width:812.159993pt;}
.x0_c00361{left:0.000000pt;}
.xd4_c00361{left:74.533333pt;}
.x78_c00361{left:75.466667pt;}
.x67_c00361{left:77.733333pt;}
.x3_c00361{left:78.666667pt;}
.x50_c00361{left:86.400000pt;}
.xd5_c00361{left:98.533333pt;}
.x14_c00361{left:103.200000pt;}
.x39_c00361{left:105.600000pt;}
.x5c_c00361{left:107.733333pt;}
.x9d_c00361{left:108.666667pt;}
.x33_c00361{left:110.000000pt;}
.x4_c00361{left:112.000000pt;}
.xb3_c00361{left:118.933333pt;}
.x83_c00361{left:119.866667pt;}
.x47_c00361{left:124.800000pt;}
.xd1_c00361{left:128.533333pt;}
.xc1_c00361{left:129.600000pt;}
.x68_c00361{left:130.533333pt;}
.x34_c00361{left:133.733333pt;}
.x5_c00361{left:135.333333pt;}
.x3a_c00361{left:136.266667pt;}
.x79_c00361{left:138.133333pt;}
.xa8_c00361{left:141.466667pt;}
.x9e_c00361{left:144.800000pt;}
.xad_c00361{left:146.533333pt;}
.xc7_c00361{left:148.133333pt;}
.x24_c00361{left:149.600000pt;}
.xb4_c00361{left:151.600000pt;}
.xbb_c00361{left:154.800000pt;}
.x7a_c00361{left:156.400000pt;}
.x3b_c00361{left:158.000000pt;}
.x6_c00361{left:162.800000pt;}
.x15_c00361{left:163.733333pt;}
.x35_c00361{left:165.733333pt;}
.x5d_c00361{left:167.200000pt;}
.x8c_c00361{left:168.400000pt;}
.xc8_c00361{left:173.466667pt;}
.xa9_c00361{left:175.333333pt;}
.x5e_c00361{left:177.066667pt;}
.x36_c00361{left:178.266667pt;}
.x25_c00361{left:179.733333pt;}
.x51_c00361{left:181.200000pt;}
.x69_c00361{left:182.666667pt;}
.x95_c00361{left:183.600000pt;}
.x9f_c00361{left:187.066667pt;}
.xd6_c00361{left:191.066667pt;}
.x7_c00361{left:196.133333pt;}
.x16_c00361{left:197.066667pt;}
.x84_c00361{left:198.533333pt;}
.x8d_c00361{left:199.466667pt;}
.x26_c00361{left:204.666667pt;}
.x8_c00361{left:213.066667pt;}
.x17_c00361{left:214.666667pt;}
.x3c_c00361{left:218.533333pt;}
.x73_c00361{left:221.733333pt;}
.x96_c00361{left:223.600000pt;}
.xae_c00361{left:228.133333pt;}
.x48_c00361{left:229.466667pt;}
.x74_c00361{left:232.266667pt;}
.xc2_c00361{left:233.200000pt;}
.x18_c00361{left:235.200000pt;}
.x9_c00361{left:237.733333pt;}
.xaa_c00361{left:239.333333pt;}
.x6a_c00361{left:240.533333pt;}
.x5f_c00361{left:246.133333pt;}
.x8e_c00361{left:248.133333pt;}
.x3d_c00361{left:249.600000pt;}
.xa0_c00361{left:250.666667pt;}
.x7b_c00361{left:253.333333pt;}
.x37_c00361{left:254.800000pt;}
.xb5_c00361{left:257.333333pt;}
.x52_c00361{left:261.866667pt;}
.x6b_c00361{left:263.866667pt;}
.x85_c00361{left:265.466667pt;}
.x27_c00361{left:266.400000pt;}
.x38_c00361{left:271.466667pt;}
.x3e_c00361{left:274.933333pt;}
.xc9_c00361{left:280.933333pt;}
.x86_c00361{left:282.800000pt;}
.x7c_c00361{left:285.066667pt;}
.x8f_c00361{left:286.533333pt;}
.x60_c00361{left:289.066667pt;}
.x19_c00361{left:291.200000pt;}
.x6c_c00361{left:294.533333pt;}
.xb6_c00361{left:295.733333pt;}
.x53_c00361{left:298.000000pt;}
.xca_c00361{left:299.466667pt;}
.xab_c00361{left:303.600000pt;}
.xbc_c00361{left:304.666667pt;}
.x49_c00361{left:307.200000pt;}
.x7d_c00361{left:308.400000pt;}
.xb7_c00361{left:309.866667pt;}
.x90_c00361{left:311.866667pt;}
.x54_c00361{left:313.733333pt;}
.xa_c00361{left:316.800000pt;}
.xd2_c00361{left:321.733333pt;}
.x1a_c00361{left:323.466667pt;}
.x3f_c00361{left:324.800000pt;}
.x91_c00361{left:326.933333pt;}
.x97_c00361{left:329.200000pt;}
.xb_c00361{left:333.733333pt;}
.x7e_c00361{left:339.066667pt;}
.x28_c00361{left:341.333333pt;}
.xa1_c00361{left:344.666667pt;}
.xcb_c00361{left:346.533333pt;}
.x6d_c00361{left:349.600000pt;}
.xb8_c00361{left:352.133333pt;}
.xc_c00361{left:353.866667pt;}
.x1b_c00361{left:355.466667pt;}
.xc3_c00361{left:356.533333pt;}
.x1_c00361{left:357.466667pt;}
.x40_c00361{left:359.733333pt;}
.x61_c00361{left:364.266667pt;}
.xaf_c00361{left:366.933333pt;}
.xa2_c00361{left:369.600000pt;}
.x7f_c00361{left:371.066667pt;}
.x29_c00361{left:372.666667pt;}
.xd3_c00361{left:379.600000pt;}
.xc4_c00361{left:382.800000pt;}
.x98_c00361{left:383.866667pt;}
.x55_c00361{left:388.400000pt;}
.xbd_c00361{left:390.800000pt;}
.x2a_c00361{left:392.133333pt;}
.x87_c00361{left:395.733333pt;}
.x92_c00361{left:396.666667pt;}
.x4a_c00361{left:399.066667pt;}
.x1c_c00361{left:403.200000pt;}
.x75_c00361{left:405.066667pt;}
.xcc_c00361{left:410.133333pt;}
.xac_c00361{left:414.400000pt;}
.x80_c00361{left:418.800000pt;}
.x62_c00361{left:421.600000pt;}
.xd_c00361{left:422.933333pt;}
.x41_c00361{left:425.066667pt;}
.xc5_c00361{left:428.933333pt;}
.x88_c00361{left:430.266667pt;}
.x56_c00361{left:432.666667pt;}
.x76_c00361{left:433.600000pt;}
.xd7_c00361{left:436.800000pt;}
.x2b_c00361{left:440.800000pt;}
.xcd_c00361{left:443.733333pt;}
.x93_c00361{left:444.666667pt;}
.xa3_c00361{left:448.133333pt;}
.xbe_c00361{left:449.600000pt;}
.x99_c00361{left:454.266667pt;}
.x1d_c00361{left:456.000000pt;}
.x4b_c00361{left:457.333333pt;}
.x63_c00361{left:459.333333pt;}
.xd8_c00361{left:461.066667pt;}
.x57_c00361{left:467.600000pt;}
.xce_c00361{left:469.333333pt;}
.x6e_c00361{left:471.466667pt;}
.xa4_c00361{left:474.000000pt;}
.xe_c00361{left:475.733333pt;}
.x2c_c00361{left:477.600000pt;}
.x1e_c00361{left:478.666667pt;}
.xc6_c00361{left:481.466667pt;}
.x89_c00361{left:484.000000pt;}
.xf_c00361{left:490.800000pt;}
.xd9_c00361{left:492.800000pt;}
.x42_c00361{left:493.866667pt;}
.x2d_c00361{left:495.200000pt;}
.x4c_c00361{left:501.200000pt;}
.xa5_c00361{left:504.666667pt;}
.xb0_c00361{left:509.066667pt;}
.xbf_c00361{left:510.133333pt;}
.x81_c00361{left:511.600000pt;}
.x58_c00361{left:513.066667pt;}
.x2e_c00361{left:514.133333pt;}
.x10_c00361{left:515.733333pt;}
.x43_c00361{left:518.800000pt;}
.x8a_c00361{left:520.533333pt;}
.xcf_c00361{left:521.466667pt;}
.x77_c00361{left:522.533333pt;}
.x4d_c00361{left:525.200000pt;}
.x2f_c00361{left:526.266667pt;}
.x1f_c00361{left:528.933333pt;}
.xda_c00361{left:531.200000pt;}
.x64_c00361{left:533.866667pt;}
.x8b_c00361{left:535.600000pt;}
.x6f_c00361{left:540.000000pt;}
.x9a_c00361{left:545.866667pt;}
.xa6_c00361{left:547.333333pt;}
.x11_c00361{left:548.400000pt;}
.x20_c00361{left:550.000000pt;}
.x59_c00361{left:551.733333pt;}
.xc0_c00361{left:557.866667pt;}
.x70_c00361{left:558.933333pt;}
.xb9_c00361{left:563.866667pt;}
.x5a_c00361{left:569.600000pt;}
.x44_c00361{left:571.600000pt;}
.x82_c00361{left:576.266667pt;}
.xb1_c00361{left:582.266667pt;}
.xd0_c00361{left:583.600000pt;}
.x9b_c00361{left:588.133333pt;}
.x21_c00361{left:590.266667pt;}
.x94_c00361{left:592.800000pt;}
.x65_c00361{left:593.733333pt;}
.x12_c00361{left:596.666667pt;}
.x71_c00361{left:598.000000pt;}
.x30_c00361{left:601.733333pt;}
.x45_c00361{left:603.866667pt;}
.xba_c00361{left:608.933333pt;}
.x66_c00361{left:610.666667pt;}
.x72_c00361{left:613.733333pt;}
.x31_c00361{left:619.333333pt;}
.x46_c00361{left:622.133333pt;}
.x22_c00361{left:623.866667pt;}
.x4e_c00361{left:628.533333pt;}
.x9c_c00361{left:631.600000pt;}
.xa7_c00361{left:635.866667pt;}
.x23_c00361{left:639.600000pt;}
.x32_c00361{left:643.066667pt;}
.x13_c00361{left:646.000000pt;}
.x2_c00361{left:649.600000pt;}
.xb2_c00361{left:650.800000pt;}
.x5b_c00361{left:655.066667pt;}
.x4f_c00361{left:660.533333pt;}
}





/* 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_c00362 {
    display:none;
  }
  .loading-indicator_c00362.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00362 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_c00362 { 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_c00362" -> "#page-container .classname_c00362")
 */
.pf_c00362 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00362 { /* 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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00362 { /* 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_c00362 { /* 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_c00362 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00362 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00362 {overflow:visible;}
  }
}
.c_c00362 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00362 { /* 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_c00362:after { /* webkit #35443 */
  content: '';
}
.t_c00362:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00362 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 */
}
.__c00362 { /* 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_c00362 { /* info for Javascript */
  display:none;
}
.l_c00362 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00362 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00362 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00362: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_c00362 {
    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_c00362.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00362.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_c00362 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00362{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00362;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.000000;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;}
.m6_c00362{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00362{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m46_c00362{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m18_c00362{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00362{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m96_c00362{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00362{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m72_c00362{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m90_c00362{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00362{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00362{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m32_c00362{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m49_c00362{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11_c00362{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00362{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00362{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m58_c00362{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00362{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m81_c00362{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00362{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m12_c00362{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m79_c00362{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00362{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00362{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00362{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m26_c00362{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2_c00362{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00362{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00362{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m56_c00362{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m10_c00362{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m48_c00362{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00362{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m78_c00362{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m38_c00362{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00362{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m16_c00362{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00362{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00362{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m88_c00362{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00362{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m74_c00362{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m28_c00362{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m52_c00362{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00362{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00362{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00362{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m22_c00362{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00362{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m60_c00362{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m42_c00362{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m20_c00362{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m37_c00362{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m34_c00362{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m61_c00362{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m91_c00362{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00362{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00362{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m45_c00362{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m83_c00362{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m7_c00362{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00362{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m55_c00362{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m44_c00362{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00362{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m24_c00362{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m71_c00362{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m31_c00362{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m84_c00362{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m57_c00362{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00362{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00362{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00362{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m69_c00362{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m65_c00362{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m97_c00362{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00362{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00362{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00362{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00362{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25_c00362{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00362{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14_c00362{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00362{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m63_c00362{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);}
.m6c_c00362{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00362{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m98_c00362{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m47_c00362{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc_c00362{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m89_c00362{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19_c00362{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m70_c00362{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00362{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00362{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00362{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m30_c00362{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00362{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00362{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00362{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m62_c00362{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m4_c00362{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m86_c00362{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00362{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00362{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00362{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m54_c00362{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m17_c00362{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00362{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m29_c00362{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md_c00362{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00362{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00362{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00362{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00362{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.mf_c00362{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00362{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m39_c00362{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m33_c00362{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00362{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m68_c00362{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m59_c00362{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m36_c00362{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00362{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m80_c00362{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mb_c00362{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m77_c00362{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m82_c00362{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m13_c00362{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00362{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00362{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m85_c00362{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m66_c00362{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00362{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m23_c00362{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m0_c00362{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m9_c00362{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m53_c00362{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m40_c00362{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m76_c00362{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m35_c00362{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.me_c00362{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8_c00362{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00362{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m21_c00362{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00362{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m75_c00362{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m27_c00362{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00362{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m94_c00362{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00362{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m92_c00362{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m64_c00362{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m67_c00362{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00362{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00362{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m15_c00362{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00362{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00362{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m5_c00362{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m73_c00362{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m43_c00362{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m93_c00362{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m41_c00362{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00362{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00362{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00362{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m99_c00362{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m87_c00362{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m95_c00362{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00362{vertical-align:0.000000px;}
.ls0_c00362{letter-spacing:0.000000px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{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__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00362{word-spacing:-9.125000px;}
.ws0_c00362{word-spacing:-7.321048px;}
.wsf_c00362{word-spacing:0.000000px;}
.ws4_c00362{word-spacing:0.250000px;}
.ws7_c00362{word-spacing:1.861160px;}
.wsa_c00362{word-spacing:2.750000px;}
.ws1_c00362{word-spacing:5.875000px;}
.wse_c00362{word-spacing:6.125000px;}
.ws9_c00362{word-spacing:7.375000px;}
.ws6_c00362{word-spacing:7.897571px;}
.wsd_c00362{word-spacing:8.875000px;}
.ws8_c00362{word-spacing:9.162073px;}
.ws3_c00362{word-spacing:9.701213px;}
.wsc_c00362{word-spacing:13.166667px;}
.wsb_c00362{word-spacing:14.891566px;}
.ws2_c00362{word-spacing:40.666667px;}
.fc0_c00362{color:transparent;}
.fs1_c00362{font-size:54.000000px;}
.fs0_c00362{font-size:60.000000px;}
.y0_c00362{bottom:0.000000px;}
.y2c_c00362{bottom:147.900000px;}
.y2b_c00362{bottom:168.000000px;}
.y2a_c00362{bottom:188.100000px;}
.y29_c00362{bottom:208.200000px;}
.y28_c00362{bottom:228.000000px;}
.y27_c00362{bottom:247.800000px;}
.y26_c00362{bottom:267.900000px;}
.y25_c00362{bottom:287.700000px;}
.y24_c00362{bottom:307.800000px;}
.y23_c00362{bottom:328.350000px;}
.y22_c00362{bottom:348.150000px;}
.y21_c00362{bottom:379.050000px;}
.y20_c00362{bottom:399.150000px;}
.y1f_c00362{bottom:418.950000px;}
.y1e_c00362{bottom:439.050000px;}
.y1d_c00362{bottom:459.150000px;}
.y1c_c00362{bottom:478.950000px;}
.y1b_c00362{bottom:499.050000px;}
.y1a_c00362{bottom:518.850000px;}
.y19_c00362{bottom:538.950000px;}
.y18_c00362{bottom:558.600000px;}
.y17_c00362{bottom:579.150000px;}
.y16_c00362{bottom:599.250000px;}
.y15_c00362{bottom:619.350000px;}
.y14_c00362{bottom:639.150000px;}
.y13_c00362{bottom:658.950000px;}
.y12_c00362{bottom:678.450000px;}
.y11_c00362{bottom:698.550000px;}
.y10_c00362{bottom:718.350000px;}
.yf_c00362{bottom:738.450000px;}
.ye_c00362{bottom:758.550000px;}
.yd_c00362{bottom:778.650000px;}
.yc_c00362{bottom:806.850000px;}
.yb_c00362{bottom:827.400000px;}
.ya_c00362{bottom:847.200000px;}
.y9_c00362{bottom:867.750000px;}
.y8_c00362{bottom:887.850000px;}
.y7_c00362{bottom:907.950000px;}
.y6_c00362{bottom:927.000000px;}
.y5_c00362{bottom:947.250000px;}
.y4_c00362{bottom:968.100000px;}
.y3_c00362{bottom:988.200000px;}
.y2_c00362{bottom:1008.300000px;}
.y1_c00362{bottom:1045.500000px;}
.h3_c00362{height:54.000000px;}
.h2_c00362{height:60.000000px;}
.h0_c00362{height:1166.759949px;}
.h1_c00362{height:1167.000000px;}
.w1_c00362{width:913.500000px;}
.w0_c00362{width:913.679993px;}
.x0_c00362{left:0.000000px;}
.x5b_c00362{left:150.000000px;}
.x11_c00362{left:151.650000px;}
.x1_c00362{left:152.700000px;}
.xfa_c00362{left:153.750000px;}
.xee_c00362{left:155.100000px;}
.xd8_c00362{left:170.550000px;}
.x116_c00362{left:172.500000px;}
.x40_c00362{left:173.700000px;}
.xc2_c00362{left:175.800000px;}
.x10d_c00362{left:179.700000px;}
.x12_c00362{left:181.500000px;}
.x3_c00362{left:183.600000px;}
.xff_c00362{left:184.650000px;}
.x80_c00362{left:186.900000px;}
.x8a_c00362{left:188.400000px;}
.xa7_c00362{left:190.050000px;}
.x4e_c00362{left:192.150000px;}
.x41_c00362{left:194.550000px;}
.x9e_c00362{left:196.650000px;}
.x94_c00362{left:199.350000px;}
.x112_c00362{left:203.550000px;}
.xad_c00362{left:205.050000px;}
.xd9_c00362{left:206.250000px;}
.xa8_c00362{left:208.050000px;}
.x12c_c00362{left:210.300000px;}
.x20_c00362{left:212.400000px;}
.x72_c00362{left:214.350000px;}
.x2b_c00362{left:216.600000px;}
.x4f_c00362{left:222.000000px;}
.x113_c00362{left:223.050000px;}
.x32_c00362{left:224.400000px;}
.x4_c00362{left:227.850000px;}
.x5c_c00362{left:228.900000px;}
.x67_c00362{left:233.400000px;}
.xef_c00362{left:236.850000px;}
.xfb_c00362{left:239.550000px;}
.x104_c00362{left:241.050000px;}
.x13_c00362{left:242.400000px;}
.x50_c00362{left:243.600000px;}
.x42_c00362{left:245.700000px;}
.xbb_c00362{left:246.750000px;}
.x5_c00362{left:247.950000px;}
.xb3_c00362{left:249.600000px;}
.x33_c00362{left:251.100000px;}
.x11a_c00362{left:253.500000px;}
.x95_c00362{left:255.150000px;}
.xd2_c00362{left:257.400000px;}
.xf0_c00362{left:258.450000px;}
.x14_c00362{left:260.100000px;}
.x68_c00362{left:261.150000px;}
.x5d_c00362{left:262.350000px;}
.x43_c00362{left:263.400000px;}
.xda_c00362{left:266.400000px;}
.xa9_c00362{left:269.250000px;}
.xae_c00362{left:271.200000px;}
.xfc_c00362{left:272.250000px;}
.xb4_c00362{left:274.800000px;}
.xc3_c00362{left:276.300000px;}
.x8b_c00362{left:277.350000px;}
.x126_c00362{left:278.400000px;}
.x34_c00362{left:279.900000px;}
.x21_c00362{left:281.850000px;}
.x44_c00362{left:283.950000px;}
.x51_c00362{left:285.300000px;}
.x76_c00362{left:287.700000px;}
.x2c_c00362{left:292.500000px;}
.xbc_c00362{left:295.050000px;}
.x6_c00362{left:296.550000px;}
.x73_c00362{left:297.900000px;}
.x81_c00362{left:303.150000px;}
.x52_c00362{left:305.400000px;}
.xca_c00362{left:310.050000px;}
.x127_c00362{left:312.300000px;}
.x10e_c00362{left:314.550000px;}
.x8c_c00362{left:316.200000px;}
.xaf_c00362{left:318.300000px;}
.x22_c00362{left:319.350000px;}
.x11b_c00362{left:320.550000px;}
.x35_c00362{left:323.850000px;}
.x69_c00362{left:327.000000px;}
.xd3_c00362{left:328.650000px;}
.x117_c00362{left:332.250000px;}
.xe1_c00362{left:333.300000px;}
.x2d_c00362{left:334.650000px;}
.x23_c00362{left:338.400000px;}
.x15_c00362{left:341.100000px;}
.x128_c00362{left:343.950000px;}
.xcb_c00362{left:346.050000px;}
.x9f_c00362{left:348.450000px;}
.x38_c00362{left:351.150000px;}
.xe9_c00362{left:352.350000px;}
.x74_c00362{left:354.000000px;}
.x114_c00362{left:355.950000px;}
.x5e_c00362{left:358.500000px;}
.x77_c00362{left:361.050000px;}
.x7_c00362{left:362.850000px;}
.x24_c00362{left:367.950000px;}
.x16_c00362{left:369.600000px;}
.x106_c00362{left:370.950000px;}
.xc8_c00362{left:372.450000px;}
.x8_c00362{left:373.950000px;}
.xf1_c00362{left:375.000000px;}
.x96_c00362{left:378.150000px;}
.xea_c00362{left:381.150000px;}
.x45_c00362{left:382.200000px;}
.x53_c00362{left:385.800000px;}
.x2e_c00362{left:387.150000px;}
.x36_c00362{left:389.400000px;}
.xbd_c00362{left:390.450000px;}
.x75_c00362{left:391.500000px;}
.x8d_c00362{left:394.350000px;}
.x17_c00362{left:395.550000px;}
.x5f_c00362{left:396.600000px;}
.x46_c00362{left:399.150000px;}
.xfd_c00362{left:401.400000px;}
.x54_c00362{left:404.850000px;}
.x121_c00362{left:406.050000px;}
.x6a_c00362{left:408.000000px;}
.x39_c00362{left:415.650000px;}
.x25_c00362{left:417.300000px;}
.x82_c00362{left:419.100000px;}
.xd4_c00362{left:421.500000px;}
.xf2_c00362{left:423.300000px;}
.x2f_c00362{left:425.700000px;}
.xcc_c00362{left:427.350000px;}
.x10f_c00362{left:428.850000px;}
.x9_c00362{left:431.850000px;}
.x26_c00362{left:435.000000px;}
.xbe_c00362{left:437.550000px;}
.x6b_c00362{left:440.100000px;}
.x107_c00362{left:442.200000px;}
.x37_c00362{left:443.700000px;}
.xdb_c00362{left:445.350000px;}
.xb7_c00362{left:446.550000px;}
.x97_c00362{left:448.350000px;}
.x2_c00362{left:449.700000px;}
.x129_c00362{left:451.500000px;}
.xa0_c00362{left:454.350000px;}
.x11d_c00362{left:456.300000px;}
.x83_c00362{left:457.950000px;}
.x30_c00362{left:459.150000px;}
.x18_c00362{left:464.250000px;}
.xfe_c00362{left:465.450000px;}
.xf6_c00362{left:467.700000px;}
.xc9_c00362{left:470.400000px;}
.x12d_c00362{left:472.050000px;}
.x60_c00362{left:476.100000px;}
.x122_c00362{left:478.500000px;}
.x27_c00362{left:481.050000px;}
.xf3_c00362{left:482.400000px;}
.xdc_c00362{left:483.450000px;}
.x118_c00362{left:486.750000px;}
.xa1_c00362{left:489.600000px;}
.x55_c00362{left:493.050000px;}
.xc4_c00362{left:495.600000px;}
.xa_c00362{left:499.950000px;}
.x31_c00362{left:501.600000px;}
.xe2_c00362{left:503.250000px;}
.x115_c00362{left:504.600000px;}
.xeb_c00362{left:506.100000px;}
.x61_c00362{left:508.200000px;}
.x28_c00362{left:509.550000px;}
.x78_c00362{left:510.900000px;}
.x84_c00362{left:513.000000px;}
.x6c_c00362{left:517.500000px;}
.x19_c00362{left:520.800000px;}
.x3a_c00362{left:521.850000px;}
.x47_c00362{left:524.100000px;}
.x108_c00362{left:525.600000px;}
.xf7_c00362{left:527.400000px;}
.xb5_c00362{left:531.150000px;}
.xcd_c00362{left:533.850000px;}
.xb8_c00362{left:536.250000px;}
.x85_c00362{left:537.900000px;}
.x48_c00362{left:539.250000px;}
.xa2_c00362{left:540.300000px;}
.x100_c00362{left:546.000000px;}
.xf4_c00362{left:547.200000px;}
.x79_c00362{left:548.700000px;}
.x62_c00362{left:550.950000px;}
.x11c_c00362{left:552.000000px;}
.xc5_c00362{left:556.350000px;}
.x86_c00362{left:558.450000px;}
.x8e_c00362{left:561.150000px;}
.xf8_c00362{left:562.350000px;}
.x11e_c00362{left:563.850000px;}
.x56_c00362{left:565.800000px;}
.x6d_c00362{left:566.850000px;}
.xaa_c00362{left:568.200000px;}
.x101_c00362{left:570.450000px;}
.x49_c00362{left:574.200000px;}
.xb_c00362{left:575.250000px;}
.xe7_c00362{left:577.350000px;}
.x123_c00362{left:579.000000px;}
.x1a_c00362{left:583.500000px;}
.x98_c00362{left:585.300000px;}
.x7a_c00362{left:586.800000px;}
.x63_c00362{left:589.800000px;}
.x8f_c00362{left:591.750000px;}
.xb0_c00362{left:596.250000px;}
.x1b_c00362{left:598.650000px;}
.xe8_c00362{left:600.000000px;}
.x109_c00362{left:601.200000px;}
.xe3_c00362{left:602.250000px;}
.xdd_c00362{left:603.450000px;}
.x3b_c00362{left:606.450000px;}
.xd5_c00362{left:608.400000px;}
.x57_c00362{left:609.750000px;}
.xbf_c00362{left:612.150000px;}
.x7b_c00362{left:614.550000px;}
.xa3_c00362{left:615.600000px;}
.xec_c00362{left:616.950000px;}
.x4a_c00362{left:619.200000px;}
.x99_c00362{left:620.250000px;}
.xb9_c00362{left:621.450000px;}
.x102_c00362{left:624.150000px;}
.xc_c00362{left:625.350000px;}
.xce_c00362{left:626.700000px;}
.x11f_c00362{left:628.650000px;}
.x12a_c00362{left:629.700000px;}
.x124_c00362{left:635.550000px;}
.x87_c00362{left:637.050000px;}
.x9a_c00362{left:638.250000px;}
.x6e_c00362{left:642.750000px;}
.xde_c00362{left:643.800000px;}
.xe4_c00362{left:645.450000px;}
.xa4_c00362{left:646.500000px;}
.x3c_c00362{left:648.150000px;}
.x1c_c00362{left:650.850000px;}
.x7c_c00362{left:654.450000px;}
.x9b_c00362{left:656.550000px;}
.x29_c00362{left:657.600000px;}
.x6f_c00362{left:660.750000px;}
.xd_c00362{left:663.150000px;}
.x58_c00362{left:665.550000px;}
.xb1_c00362{left:668.250000px;}
.xf5_c00362{left:671.400000px;}
.xe5_c00362{left:674.250000px;}
.xdf_c00362{left:676.950000px;}
.x4b_c00362{left:682.200000px;}
.x90_c00362{left:683.850000px;}
.x1d_c00362{left:685.350000px;}
.x110_c00362{left:687.150000px;}
.x120_c00362{left:688.800000px;}
.xe_c00362{left:690.150000px;}
.x64_c00362{left:694.650000px;}
.xcf_c00362{left:695.850000px;}
.xed_c00362{left:696.900000px;}
.x119_c00362{left:698.100000px;}
.xb6_c00362{left:699.300000px;}
.x111_c00362{left:700.800000px;}
.x10a_c00362{left:702.450000px;}
.x3d_c00362{left:705.000000px;}
.xc6_c00362{left:706.050000px;}
.xab_c00362{left:707.250000px;}
.x4c_c00362{left:712.050000px;}
.x70_c00362{left:715.800000px;}
.x9c_c00362{left:718.050000px;}
.xb2_c00362{left:719.700000px;}
.x105_c00362{left:724.500000px;}
.x88_c00362{left:727.500000px;}
.xa5_c00362{left:728.550000px;}
.x91_c00362{left:729.600000px;}
.xc7_c00362{left:731.550000px;}
.x3e_c00362{left:733.500000px;}
.x7d_c00362{left:735.450000px;}
.x2a_c00362{left:736.800000px;}
.xc0_c00362{left:738.900000px;}
.xf_c00362{left:740.250000px;}
.xd6_c00362{left:742.200000px;}
.x1e_c00362{left:745.500000px;}
.x59_c00362{left:747.600000px;}
.x12b_c00362{left:750.750000px;}
.x7e_c00362{left:755.550000px;}
.xd0_c00362{left:757.050000px;}
.x92_c00362{left:758.100000px;}
.xe6_c00362{left:759.150000px;}
.x125_c00362{left:760.350000px;}
.xc1_c00362{left:762.000000px;}
.x1f_c00362{left:763.200000px;}
.xba_c00362{left:765.900000px;}
.x3f_c00362{left:768.000000px;}
.x10_c00362{left:769.050000px;}
.xf9_c00362{left:770.400000px;}
.xe0_c00362{left:772.050000px;}
.x65_c00362{left:773.400000px;}
.x5a_c00362{left:774.600000px;}
.x7f_c00362{left:776.400000px;}
.x71_c00362{left:778.500000px;}
.x10b_c00362{left:779.850000px;}
.xac_c00362{left:781.050000px;}
.xa6_c00362{left:784.650000px;}
.xd1_c00362{left:788.700000px;}
.x9d_c00362{left:790.650000px;}
.x93_c00362{left:793.050000px;}
.xd7_c00362{left:796.950000px;}
.x89_c00362{left:799.200000px;}
.x103_c00362{left:802.050000px;}
.x66_c00362{left:805.050000px;}
.x4d_c00362{left:807.450000px;}
.x10c_c00362{left:809.700000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws5_c00362{word-spacing:-8.111111pt;}
.ws0_c00362{word-spacing:-6.507598pt;}
.wsf_c00362{word-spacing:0.000000pt;}
.ws4_c00362{word-spacing:0.222222pt;}
.ws7_c00362{word-spacing:1.654364pt;}
.wsa_c00362{word-spacing:2.444444pt;}
.ws1_c00362{word-spacing:5.222222pt;}
.wse_c00362{word-spacing:5.444444pt;}
.ws9_c00362{word-spacing:6.555556pt;}
.ws6_c00362{word-spacing:7.020063pt;}
.wsd_c00362{word-spacing:7.888889pt;}
.ws8_c00362{word-spacing:8.144065pt;}
.ws3_c00362{word-spacing:8.623300pt;}
.wsc_c00362{word-spacing:11.703704pt;}
.wsb_c00362{word-spacing:13.236948pt;}
.ws2_c00362{word-spacing:36.148148pt;}
.fs1_c00362{font-size:48.000000pt;}
.fs0_c00362{font-size:53.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y2c_c00362{bottom:131.466667pt;}
.y2b_c00362{bottom:149.333333pt;}
.y2a_c00362{bottom:167.200000pt;}
.y29_c00362{bottom:185.066667pt;}
.y28_c00362{bottom:202.666667pt;}
.y27_c00362{bottom:220.266667pt;}
.y26_c00362{bottom:238.133333pt;}
.y25_c00362{bottom:255.733333pt;}
.y24_c00362{bottom:273.600000pt;}
.y23_c00362{bottom:291.866667pt;}
.y22_c00362{bottom:309.466667pt;}
.y21_c00362{bottom:336.933333pt;}
.y20_c00362{bottom:354.800000pt;}
.y1f_c00362{bottom:372.400000pt;}
.y1e_c00362{bottom:390.266667pt;}
.y1d_c00362{bottom:408.133333pt;}
.y1c_c00362{bottom:425.733333pt;}
.y1b_c00362{bottom:443.600000pt;}
.y1a_c00362{bottom:461.200000pt;}
.y19_c00362{bottom:479.066667pt;}
.y18_c00362{bottom:496.533333pt;}
.y17_c00362{bottom:514.800000pt;}
.y16_c00362{bottom:532.666667pt;}
.y15_c00362{bottom:550.533333pt;}
.y14_c00362{bottom:568.133333pt;}
.y13_c00362{bottom:585.733333pt;}
.y12_c00362{bottom:603.066667pt;}
.y11_c00362{bottom:620.933333pt;}
.y10_c00362{bottom:638.533333pt;}
.yf_c00362{bottom:656.400000pt;}
.ye_c00362{bottom:674.266667pt;}
.yd_c00362{bottom:692.133333pt;}
.yc_c00362{bottom:717.200000pt;}
.yb_c00362{bottom:735.466667pt;}
.ya_c00362{bottom:753.066667pt;}
.y9_c00362{bottom:771.333333pt;}
.y8_c00362{bottom:789.200000pt;}
.y7_c00362{bottom:807.066667pt;}
.y6_c00362{bottom:824.000000pt;}
.y5_c00362{bottom:842.000000pt;}
.y4_c00362{bottom:860.533333pt;}
.y3_c00362{bottom:878.400000pt;}
.y2_c00362{bottom:896.266667pt;}
.y1_c00362{bottom:929.333333pt;}
.h3_c00362{height:48.000000pt;}
.h2_c00362{height:53.333333pt;}
.h0_c00362{height:1037.119955pt;}
.h1_c00362{height:1037.333333pt;}
.w1_c00362{width:812.000000pt;}
.w0_c00362{width:812.159993pt;}
.x0_c00362{left:0.000000pt;}
.x5b_c00362{left:133.333333pt;}
.x11_c00362{left:134.800000pt;}
.x1_c00362{left:135.733333pt;}
.xfa_c00362{left:136.666667pt;}
.xee_c00362{left:137.866667pt;}
.xd8_c00362{left:151.600000pt;}
.x116_c00362{left:153.333333pt;}
.x40_c00362{left:154.400000pt;}
.xc2_c00362{left:156.266667pt;}
.x10d_c00362{left:159.733333pt;}
.x12_c00362{left:161.333333pt;}
.x3_c00362{left:163.200000pt;}
.xff_c00362{left:164.133333pt;}
.x80_c00362{left:166.133333pt;}
.x8a_c00362{left:167.466667pt;}
.xa7_c00362{left:168.933333pt;}
.x4e_c00362{left:170.800000pt;}
.x41_c00362{left:172.933333pt;}
.x9e_c00362{left:174.800000pt;}
.x94_c00362{left:177.200000pt;}
.x112_c00362{left:180.933333pt;}
.xad_c00362{left:182.266667pt;}
.xd9_c00362{left:183.333333pt;}
.xa8_c00362{left:184.933333pt;}
.x12c_c00362{left:186.933333pt;}
.x20_c00362{left:188.800000pt;}
.x72_c00362{left:190.533333pt;}
.x2b_c00362{left:192.533333pt;}
.x4f_c00362{left:197.333333pt;}
.x113_c00362{left:198.266667pt;}
.x32_c00362{left:199.466667pt;}
.x4_c00362{left:202.533333pt;}
.x5c_c00362{left:203.466667pt;}
.x67_c00362{left:207.466667pt;}
.xef_c00362{left:210.533333pt;}
.xfb_c00362{left:212.933333pt;}
.x104_c00362{left:214.266667pt;}
.x13_c00362{left:215.466667pt;}
.x50_c00362{left:216.533333pt;}
.x42_c00362{left:218.400000pt;}
.xbb_c00362{left:219.333333pt;}
.x5_c00362{left:220.400000pt;}
.xb3_c00362{left:221.866667pt;}
.x33_c00362{left:223.200000pt;}
.x11a_c00362{left:225.333333pt;}
.x95_c00362{left:226.800000pt;}
.xd2_c00362{left:228.800000pt;}
.xf0_c00362{left:229.733333pt;}
.x14_c00362{left:231.200000pt;}
.x68_c00362{left:232.133333pt;}
.x5d_c00362{left:233.200000pt;}
.x43_c00362{left:234.133333pt;}
.xda_c00362{left:236.800000pt;}
.xa9_c00362{left:239.333333pt;}
.xae_c00362{left:241.066667pt;}
.xfc_c00362{left:242.000000pt;}
.xb4_c00362{left:244.266667pt;}
.xc3_c00362{left:245.600000pt;}
.x8b_c00362{left:246.533333pt;}
.x126_c00362{left:247.466667pt;}
.x34_c00362{left:248.800000pt;}
.x21_c00362{left:250.533333pt;}
.x44_c00362{left:252.400000pt;}
.x51_c00362{left:253.600000pt;}
.x76_c00362{left:255.733333pt;}
.x2c_c00362{left:260.000000pt;}
.xbc_c00362{left:262.266667pt;}
.x6_c00362{left:263.600000pt;}
.x73_c00362{left:264.800000pt;}
.x81_c00362{left:269.466667pt;}
.x52_c00362{left:271.466667pt;}
.xca_c00362{left:275.600000pt;}
.x127_c00362{left:277.600000pt;}
.x10e_c00362{left:279.600000pt;}
.x8c_c00362{left:281.066667pt;}
.xaf_c00362{left:282.933333pt;}
.x22_c00362{left:283.866667pt;}
.x11b_c00362{left:284.933333pt;}
.x35_c00362{left:287.866667pt;}
.x69_c00362{left:290.666667pt;}
.xd3_c00362{left:292.133333pt;}
.x117_c00362{left:295.333333pt;}
.xe1_c00362{left:296.266667pt;}
.x2d_c00362{left:297.466667pt;}
.x23_c00362{left:300.800000pt;}
.x15_c00362{left:303.200000pt;}
.x128_c00362{left:305.733333pt;}
.xcb_c00362{left:307.600000pt;}
.x9f_c00362{left:309.733333pt;}
.x38_c00362{left:312.133333pt;}
.xe9_c00362{left:313.200000pt;}
.x74_c00362{left:314.666667pt;}
.x114_c00362{left:316.400000pt;}
.x5e_c00362{left:318.666667pt;}
.x77_c00362{left:320.933333pt;}
.x7_c00362{left:322.533333pt;}
.x24_c00362{left:327.066667pt;}
.x16_c00362{left:328.533333pt;}
.x106_c00362{left:329.733333pt;}
.xc8_c00362{left:331.066667pt;}
.x8_c00362{left:332.400000pt;}
.xf1_c00362{left:333.333333pt;}
.x96_c00362{left:336.133333pt;}
.xea_c00362{left:338.800000pt;}
.x45_c00362{left:339.733333pt;}
.x53_c00362{left:342.933333pt;}
.x2e_c00362{left:344.133333pt;}
.x36_c00362{left:346.133333pt;}
.xbd_c00362{left:347.066667pt;}
.x75_c00362{left:348.000000pt;}
.x8d_c00362{left:350.533333pt;}
.x17_c00362{left:351.600000pt;}
.x5f_c00362{left:352.533333pt;}
.x46_c00362{left:354.800000pt;}
.xfd_c00362{left:356.800000pt;}
.x54_c00362{left:359.866667pt;}
.x121_c00362{left:360.933333pt;}
.x6a_c00362{left:362.666667pt;}
.x39_c00362{left:369.466667pt;}
.x25_c00362{left:370.933333pt;}
.x82_c00362{left:372.533333pt;}
.xd4_c00362{left:374.666667pt;}
.xf2_c00362{left:376.266667pt;}
.x2f_c00362{left:378.400000pt;}
.xcc_c00362{left:379.866667pt;}
.x10f_c00362{left:381.200000pt;}
.x9_c00362{left:383.866667pt;}
.x26_c00362{left:386.666667pt;}
.xbe_c00362{left:388.933333pt;}
.x6b_c00362{left:391.200000pt;}
.x107_c00362{left:393.066667pt;}
.x37_c00362{left:394.400000pt;}
.xdb_c00362{left:395.866667pt;}
.xb7_c00362{left:396.933333pt;}
.x97_c00362{left:398.533333pt;}
.x2_c00362{left:399.733333pt;}
.x129_c00362{left:401.333333pt;}
.xa0_c00362{left:403.866667pt;}
.x11d_c00362{left:405.600000pt;}
.x83_c00362{left:407.066667pt;}
.x30_c00362{left:408.133333pt;}
.x18_c00362{left:412.666667pt;}
.xfe_c00362{left:413.733333pt;}
.xf6_c00362{left:415.733333pt;}
.xc9_c00362{left:418.133333pt;}
.x12d_c00362{left:419.600000pt;}
.x60_c00362{left:423.200000pt;}
.x122_c00362{left:425.333333pt;}
.x27_c00362{left:427.600000pt;}
.xf3_c00362{left:428.800000pt;}
.xdc_c00362{left:429.733333pt;}
.x118_c00362{left:432.666667pt;}
.xa1_c00362{left:435.200000pt;}
.x55_c00362{left:438.266667pt;}
.xc4_c00362{left:440.533333pt;}
.xa_c00362{left:444.400000pt;}
.x31_c00362{left:445.866667pt;}
.xe2_c00362{left:447.333333pt;}
.x115_c00362{left:448.533333pt;}
.xeb_c00362{left:449.866667pt;}
.x61_c00362{left:451.733333pt;}
.x28_c00362{left:452.933333pt;}
.x78_c00362{left:454.133333pt;}
.x84_c00362{left:456.000000pt;}
.x6c_c00362{left:460.000000pt;}
.x19_c00362{left:462.933333pt;}
.x3a_c00362{left:463.866667pt;}
.x47_c00362{left:465.866667pt;}
.x108_c00362{left:467.200000pt;}
.xf7_c00362{left:468.800000pt;}
.xb5_c00362{left:472.133333pt;}
.xcd_c00362{left:474.533333pt;}
.xb8_c00362{left:476.666667pt;}
.x85_c00362{left:478.133333pt;}
.x48_c00362{left:479.333333pt;}
.xa2_c00362{left:480.266667pt;}
.x100_c00362{left:485.333333pt;}
.xf4_c00362{left:486.400000pt;}
.x79_c00362{left:487.733333pt;}
.x62_c00362{left:489.733333pt;}
.x11c_c00362{left:490.666667pt;}
.xc5_c00362{left:494.533333pt;}
.x86_c00362{left:496.400000pt;}
.x8e_c00362{left:498.800000pt;}
.xf8_c00362{left:499.866667pt;}
.x11e_c00362{left:501.200000pt;}
.x56_c00362{left:502.933333pt;}
.x6d_c00362{left:503.866667pt;}
.xaa_c00362{left:505.066667pt;}
.x101_c00362{left:507.066667pt;}
.x49_c00362{left:510.400000pt;}
.xb_c00362{left:511.333333pt;}
.xe7_c00362{left:513.200000pt;}
.x123_c00362{left:514.666667pt;}
.x1a_c00362{left:518.666667pt;}
.x98_c00362{left:520.266667pt;}
.x7a_c00362{left:521.600000pt;}
.x63_c00362{left:524.266667pt;}
.x8f_c00362{left:526.000000pt;}
.xb0_c00362{left:530.000000pt;}
.x1b_c00362{left:532.133333pt;}
.xe8_c00362{left:533.333333pt;}
.x109_c00362{left:534.400000pt;}
.xe3_c00362{left:535.333333pt;}
.xdd_c00362{left:536.400000pt;}
.x3b_c00362{left:539.066667pt;}
.xd5_c00362{left:540.800000pt;}
.x57_c00362{left:542.000000pt;}
.xbf_c00362{left:544.133333pt;}
.x7b_c00362{left:546.266667pt;}
.xa3_c00362{left:547.200000pt;}
.xec_c00362{left:548.400000pt;}
.x4a_c00362{left:550.400000pt;}
.x99_c00362{left:551.333333pt;}
.xb9_c00362{left:552.400000pt;}
.x102_c00362{left:554.800000pt;}
.xc_c00362{left:555.866667pt;}
.xce_c00362{left:557.066667pt;}
.x11f_c00362{left:558.800000pt;}
.x12a_c00362{left:559.733333pt;}
.x124_c00362{left:564.933333pt;}
.x87_c00362{left:566.266667pt;}
.x9a_c00362{left:567.333333pt;}
.x6e_c00362{left:571.333333pt;}
.xde_c00362{left:572.266667pt;}
.xe4_c00362{left:573.733333pt;}
.xa4_c00362{left:574.666667pt;}
.x3c_c00362{left:576.133333pt;}
.x1c_c00362{left:578.533333pt;}
.x7c_c00362{left:581.733333pt;}
.x9b_c00362{left:583.600000pt;}
.x29_c00362{left:584.533333pt;}
.x6f_c00362{left:587.333333pt;}
.xd_c00362{left:589.466667pt;}
.x58_c00362{left:591.600000pt;}
.xb1_c00362{left:594.000000pt;}
.xf5_c00362{left:596.800000pt;}
.xe5_c00362{left:599.333333pt;}
.xdf_c00362{left:601.733333pt;}
.x4b_c00362{left:606.400000pt;}
.x90_c00362{left:607.866667pt;}
.x1d_c00362{left:609.200000pt;}
.x110_c00362{left:610.800000pt;}
.x120_c00362{left:612.266667pt;}
.xe_c00362{left:613.466667pt;}
.x64_c00362{left:617.466667pt;}
.xcf_c00362{left:618.533333pt;}
.xed_c00362{left:619.466667pt;}
.x119_c00362{left:620.533333pt;}
.xb6_c00362{left:621.600000pt;}
.x111_c00362{left:622.933333pt;}
.x10a_c00362{left:624.400000pt;}
.x3d_c00362{left:626.666667pt;}
.xc6_c00362{left:627.600000pt;}
.xab_c00362{left:628.666667pt;}
.x4c_c00362{left:632.933333pt;}
.x70_c00362{left:636.266667pt;}
.x9c_c00362{left:638.266667pt;}
.xb2_c00362{left:639.733333pt;}
.x105_c00362{left:644.000000pt;}
.x88_c00362{left:646.666667pt;}
.xa5_c00362{left:647.600000pt;}
.x91_c00362{left:648.533333pt;}
.xc7_c00362{left:650.266667pt;}
.x3e_c00362{left:652.000000pt;}
.x7d_c00362{left:653.733333pt;}
.x2a_c00362{left:654.933333pt;}
.xc0_c00362{left:656.800000pt;}
.xf_c00362{left:658.000000pt;}
.xd6_c00362{left:659.733333pt;}
.x1e_c00362{left:662.666667pt;}
.x59_c00362{left:664.533333pt;}
.x12b_c00362{left:667.333333pt;}
.x7e_c00362{left:671.600000pt;}
.xd0_c00362{left:672.933333pt;}
.x92_c00362{left:673.866667pt;}
.xe6_c00362{left:674.800000pt;}
.x125_c00362{left:675.866667pt;}
.xc1_c00362{left:677.333333pt;}
.x1f_c00362{left:678.400000pt;}
.xba_c00362{left:680.800000pt;}
.x3f_c00362{left:682.666667pt;}
.x10_c00362{left:683.600000pt;}
.xf9_c00362{left:684.800000pt;}
.xe0_c00362{left:686.266667pt;}
.x65_c00362{left:687.466667pt;}
.x5a_c00362{left:688.533333pt;}
.x7f_c00362{left:690.133333pt;}
.x71_c00362{left:692.000000pt;}
.x10b_c00362{left:693.200000pt;}
.xac_c00362{left:694.266667pt;}
.xa6_c00362{left:697.466667pt;}
.xd1_c00362{left:701.066667pt;}
.x9d_c00362{left:702.800000pt;}
.x93_c00362{left:704.933333pt;}
.xd7_c00362{left:708.400000pt;}
.x89_c00362{left:710.400000pt;}
.x103_c00362{left:712.933333pt;}
.x66_c00362{left:715.600000pt;}
.x4d_c00362{left:717.733333pt;}
.x10c_c00362{left:719.733333pt;}
}





/* 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_c00363 {
    display:none;
  }
  .loading-indicator_c00363.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00363 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_c00363 { 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_c00363" -> "#page-container .classname_c00363")
 */
.pf_c00363 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00363 { /* 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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00363 { /* 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_c00363 { /* 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_c00363 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00363 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00363 {overflow:visible;}
  }
}
.c_c00363 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00363 { /* 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_c00363:after { /* webkit #35443 */
  content: '';
}
.t_c00363:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00363 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 */
}
.__c00363 { /* 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_c00363 { /* info for Javascript */
  display:none;
}
.l_c00363 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00363 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00363 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00363: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_c00363 {
    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_c00363.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00363.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_c00363 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00363{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00363;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00363{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.me_c00363{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mf_c00363{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11_c00363{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mc_c00363{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.md_c00363{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma_c00363{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10_c00363{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6_c00363{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00363{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7_c00363{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00363{transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);}
.m2_c00363{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00363{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c00363{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00363{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00363{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m0_c00363{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.v0_c00363{vertical-align:0.000000px;}
.ls0_c00363{letter-spacing:0.000000px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{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__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:0.000000px;}
.fc0_c00363{color:transparent;}
.fs1_c00363{font-size:36.000000px;}
.fs0_c00363{font-size:48.000000px;}
.y0_c00363{bottom:0.000000px;}
.y4_c00363{bottom:635.700000px;}
.y3_c00363{bottom:668.100000px;}
.y2_c00363{bottom:684.600000px;}
.y1_c00363{bottom:702.300000px;}
.h3_c00363{height:36.000000px;}
.h2_c00363{height:48.000000px;}
.h0_c00363{height:1166.759949px;}
.h1_c00363{height:1167.000000px;}
.w1_c00363{width:913.500000px;}
.w0_c00363{width:913.679993px;}
.x0_c00363{left:0.000000px;}
.xc_c00363{left:37.500000px;}
.x8_c00363{left:58.650000px;}
.x3_c00363{left:64.050000px;}
.x1_c00363{left:77.100000px;}
.x4_c00363{left:106.200000px;}
.x9_c00363{left:117.300000px;}
.xd_c00363{left:118.800000px;}
.x2_c00363{left:130.350000px;}
.xe_c00363{left:155.100000px;}
.x5_c00363{left:162.300000px;}
.xa_c00363{left:195.450000px;}
.xf_c00363{left:196.800000px;}
.x10_c00363{left:207.900000px;}
.x11_c00363{left:244.650000px;}
.xb_c00363{left:254.550000px;}
.x6_c00363{left:256.650000px;}
.x7_c00363{left:288.750000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs1_c00363{font-size:32.000000pt;}
.fs0_c00363{font-size:42.666667pt;}
.y0_c00363{bottom:0.000000pt;}
.y4_c00363{bottom:565.066667pt;}
.y3_c00363{bottom:593.866667pt;}
.y2_c00363{bottom:608.533333pt;}
.y1_c00363{bottom:624.266667pt;}
.h3_c00363{height:32.000000pt;}
.h2_c00363{height:42.666667pt;}
.h0_c00363{height:1037.119955pt;}
.h1_c00363{height:1037.333333pt;}
.w1_c00363{width:812.000000pt;}
.w0_c00363{width:812.159993pt;}
.x0_c00363{left:0.000000pt;}
.xc_c00363{left:33.333333pt;}
.x8_c00363{left:52.133333pt;}
.x3_c00363{left:56.933333pt;}
.x1_c00363{left:68.533333pt;}
.x4_c00363{left:94.400000pt;}
.x9_c00363{left:104.266667pt;}
.xd_c00363{left:105.600000pt;}
.x2_c00363{left:115.866667pt;}
.xe_c00363{left:137.866667pt;}
.x5_c00363{left:144.266667pt;}
.xa_c00363{left:173.733333pt;}
.xf_c00363{left:174.933333pt;}
.x10_c00363{left:184.800000pt;}
.x11_c00363{left:217.466667pt;}
.xb_c00363{left:226.266667pt;}
.x6_c00363{left:228.133333pt;}
.x7_c00363{left:256.666667pt;}
}





/* 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_c00364 {
    display:none;
  }
  .loading-indicator_c00364.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00364 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_c00364 { 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_c00364" -> "#page-container .classname_c00364")
 */
.pf_c00364 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00364 { /* 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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00364 { /* 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_c00364 { /* 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_c00364 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00364 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00364 {overflow:visible;}
  }
}
.c_c00364 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00364 { /* 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_c00364:after { /* webkit #35443 */
  content: '';
}
.t_c00364:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00364 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 */
}
.__c00364 { /* 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_c00364 { /* info for Javascript */
  display:none;
}
.l_c00364 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00364 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00364 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00364: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_c00364 {
    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_c00364.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00364.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_c00364 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00364{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00364;src:url('chunks/assets/font_0a228155deabf294bf4bdf30.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.000000;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;}
.m1_c00364{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m0_c00364{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.v0_c00364{vertical-align:0.000000px;}
.ls0_c00364{letter-spacing:0.000000px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{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__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:0.000000px;}
.fc0_c00364{color:transparent;}
.fs0_c00364{font-size:36.000000px;}
.y0_c00364{bottom:0.000000px;}
.y1_c00364{bottom:1113.150000px;}
.h2_c00364{height:36.000000px;}
.h0_c00364{height:1166.759949px;}
.h1_c00364{height:1167.000000px;}
.w1_c00364{width:913.500000px;}
.w0_c00364{width:913.679993px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:880.950000px;}
.x2_c00364{left:904.350000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.fs0_c00364{font-size:32.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y1_c00364{bottom:989.466667pt;}
.h2_c00364{height:32.000000pt;}
.h0_c00364{height:1037.119955pt;}
.h1_c00364{height:1037.333333pt;}
.w1_c00364{width:812.000000pt;}
.w0_c00364{width:812.159993pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:783.066667pt;}
.x2_c00364{left:803.866667pt;}
}





/* 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_c00365 {
    display:none;
  }
  .loading-indicator_c00365.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00365 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_c00365 { 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_c00365" -> "#page-container .classname_c00365")
 */
.pf_c00365 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00365 { /* 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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00365 { /* 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_c00365 { /* 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_c00365 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00365 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00365 {overflow:visible;}
  }
}
.c_c00365 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00365 { /* 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_c00365:after { /* webkit #35443 */
  content: '';
}
.t_c00365:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00365 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 */
}
.__c00365 { /* 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_c00365 { /* info for Javascript */
  display:none;
}
.l_c00365 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00365 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00365 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00365: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_c00365 {
    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_c00365.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00365.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_c00365 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00365{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.000000;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;}
.mb2_c00365{transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071000,0.000000,0.000000,0.250000,0,0);}
.m46_c00365{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m97_c00365{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00365{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m38_c00365{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m98_c00365{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m63_c00365{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mac_c00365{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m35_c00365{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m27_c00365{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mad_c00365{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m39_c00365{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m84_c00365{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m50_c00365{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00365{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m85_c00365{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00365{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00365{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00365{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00365{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m88_c00365{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mab_c00365{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m54_c00365{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m72_c00365{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00365{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m59_c00365{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m26_c00365{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m65_c00365{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00365{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m14_c00365{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00365{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00365{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m55_c00365{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m74_c00365{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m8_c00365{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00365{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00365{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00365{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.maa_c00365{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m15_c00365{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mae_c00365{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m94_c00365{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m77_c00365{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m89_c00365{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6_c00365{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00365{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00365{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m45_c00365{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m17_c00365{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m49_c00365{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00365{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00365{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00365{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00365{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.maf_c00365{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m83_c00365{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m41_c00365{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m31_c00365{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m11_c00365{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00365{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf_c00365{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m90_c00365{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00365{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00365{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m29_c00365{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00365{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7_c00365{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m99_c00365{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00365{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m47_c00365{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00365{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m48_c00365{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m66_c00365{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m28_c00365{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00365{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00365{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m68_c00365{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00365{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00365{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m96_c00365{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00365{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m37_c00365{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5_c00365{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.md_c00365{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00365{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m95_c00365{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12_c00365{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m36_c00365{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00365{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m24_c00365{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m82_c00365{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00365{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00365{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m69_c00365{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m73_c00365{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00365{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m70_c00365{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00365{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00365{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00365{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00365{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m67_c00365{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m53_c00365{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m80_c00365{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00365{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m22_c00365{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00365{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m93_c00365{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m52_c00365{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m58_c00365{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m25_c00365{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m32_c00365{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00365{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m16_c00365{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00365{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00365{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m57_c00365{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m23_c00365{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m10_c00365{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00365{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00365{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m62_c00365{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m9_c00365{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00365{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m18_c00365{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00365{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19_c00365{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00365{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4_c00365{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m0_c00365{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2_c00365{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m78_c00365{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00365{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m40_c00365{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00365{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00365{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00365{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m20_c00365{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.me_c00365{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00365{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m44_c00365{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m51_c00365{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mc_c00365{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m61_c00365{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m76_c00365{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m13_c00365{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m21_c00365{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m71_c00365{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mb_c00365{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m86_c00365{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m79_c00365{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00365{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m92_c00365{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma_c00365{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m34_c00365{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00365{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3_c00365{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00365{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m33_c00365{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00365{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00365{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00365{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00365{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m60_c00365{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m1_c00365{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00365{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00365{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00365{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00365{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00365{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00365{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m30_c00365{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00365{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m87_c00365{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m42_c00365{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00365{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m43_c00365{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00365{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00365{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m75_c00365{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{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__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00365{word-spacing:-6.750000px;}
.ws4_c00365{word-spacing:-6.629179px;}
.wsa_c00365{word-spacing:-1.079585px;}
.wsc_c00365{word-spacing:-0.489647px;}
.wsd_c00365{word-spacing:0.000000px;}
.ws9_c00365{word-spacing:0.250000px;}
.ws0_c00365{word-spacing:4.537019px;}
.ws8_c00365{word-spacing:5.875000px;}
.ws6_c00365{word-spacing:9.250000px;}
.ws5_c00365{word-spacing:10.422842px;}
.ws2_c00365{word-spacing:14.259625px;}
.ws1_c00365{word-spacing:16.500000px;}
.wsb_c00365{word-spacing:19.026242px;}
.ws7_c00365{word-spacing:21.000000px;}
.fc0_c00365{color:transparent;}
.fs0_c00365{font-size:54.000000px;}
.y0_c00365{bottom:0.000000px;}
.y2c_c00365{bottom:151.200000px;}
.y2b_c00365{bottom:162.000000px;}
.y2a_c00365{bottom:198.150000px;}
.y29_c00365{bottom:218.250000px;}
.y28_c00365{bottom:238.350000px;}
.y27_c00365{bottom:272.400000px;}
.y26_c00365{bottom:292.200000px;}
.y25_c00365{bottom:312.000000px;}
.y24_c00365{bottom:331.800000px;}
.y23_c00365{bottom:351.600000px;}
.y22_c00365{bottom:371.700000px;}
.y21_c00365{bottom:391.500000px;}
.y20_c00365{bottom:411.600000px;}
.y1f_c00365{bottom:431.400000px;}
.y1e_c00365{bottom:451.500000px;}
.y1d_c00365{bottom:471.300000px;}
.y1c_c00365{bottom:491.400000px;}
.y1b_c00365{bottom:511.200000px;}
.y1a_c00365{bottom:531.300000px;}
.y19_c00365{bottom:551.100000px;}
.y18_c00365{bottom:571.200000px;}
.y17_c00365{bottom:591.000000px;}
.y16_c00365{bottom:611.100000px;}
.y15_c00365{bottom:631.200000px;}
.y14_c00365{bottom:651.000000px;}
.y13_c00365{bottom:670.800000px;}
.y12_c00365{bottom:690.900000px;}
.y11_c00365{bottom:710.700000px;}
.y10_c00365{bottom:730.500000px;}
.yf_c00365{bottom:750.600000px;}
.ye_c00365{bottom:770.700000px;}
.yd_c00365{bottom:790.500000px;}
.yc_c00365{bottom:810.300000px;}
.yb_c00365{bottom:830.700000px;}
.ya_c00365{bottom:850.500000px;}
.y9_c00365{bottom:870.600000px;}
.y8_c00365{bottom:890.700000px;}
.y7_c00365{bottom:910.500000px;}
.y6_c00365{bottom:930.000000px;}
.y5_c00365{bottom:950.100000px;}
.y4_c00365{bottom:969.900000px;}
.y3_c00365{bottom:990.000000px;}
.y2_c00365{bottom:1009.800000px;}
.y1_c00365{bottom:1048.350000px;}
.h2_c00365{height:54.000000px;}
.h0_c00365{height:1166.759949px;}
.h1_c00365{height:1167.000000px;}
.w1_c00365{width:913.500000px;}
.w0_c00365{width:913.679993px;}
.x0_c00365{left:0.000000px;}
.x10e_c00365{left:105.600000px;}
.xd3_c00365{left:106.650000px;}
.x96_c00365{left:108.000000px;}
.x68_c00365{left:109.050000px;}
.xf_c00365{left:110.250000px;}
.x115_c00365{left:124.350000px;}
.xb4_c00365{left:125.700000px;}
.x100_c00365{left:127.200000px;}
.x2b_c00365{left:129.300000px;}
.xaf_c00365{left:130.500000px;}
.xd4_c00365{left:135.450000px;}
.x84_c00365{left:136.800000px;}
.x10_c00365{left:139.050000px;}
.x3_c00365{left:141.150000px;}
.xe0_c00365{left:144.300000px;}
.x37_c00365{left:145.350000px;}
.x97_c00365{left:147.300000px;}
.x8d_c00365{left:148.950000px;}
.x69_c00365{left:150.150000px;}
.x10f_c00365{left:152.700000px;}
.x50_c00365{left:154.650000px;}
.x5c_c00365{left:155.700000px;}
.x9e_c00365{left:159.450000px;}
.x1e_c00365{left:160.650000px;}
.xfa_c00365{left:161.850000px;}
.x126_c00365{left:163.200000px;}
.xd5_c00365{left:164.250000px;}
.xf5_c00365{left:165.900000px;}
.x6a_c00365{left:169.200000px;}
.x11_c00365{left:170.400000px;}
.xb5_c00365{left:171.750000px;}
.xa4_c00365{left:176.400000px;}
.xd0_c00365{left:177.750000px;}
.x8e_c00365{left:179.550000px;}
.x11b_c00365{left:181.950000px;}
.x75_c00365{left:184.350000px;}
.x104_c00365{left:187.650000px;}
.x2c_c00365{left:189.450000px;}
.x6b_c00365{left:192.900000px;}
.x12c_c00365{left:193.950000px;}
.x51_c00365{left:196.800000px;}
.xe9_c00365{left:198.150000px;}
.x38_c00365{left:200.850000px;}
.x108_c00365{left:201.900000px;}
.x12d_c00365{left:202.950000px;}
.x1f_c00365{left:205.650000px;}
.xc5_c00365{left:208.050000px;}
.x116_c00365{left:210.150000px;}
.x110_c00365{left:211.350000px;}
.xe1_c00365{left:212.700000px;}
.x11c_c00365{left:214.650000px;}
.x52_c00365{left:216.600000px;}
.x9f_c00365{left:217.800000px;}
.xa5_c00365{left:219.600000px;}
.x101_c00365{left:224.700000px;}
.x46_c00365{left:227.400000px;}
.x12e_c00365{left:230.100000px;}
.x85_c00365{left:235.050000px;}
.x20_c00365{left:236.250000px;}
.x4_c00365{left:237.300000px;}
.xa6_c00365{left:238.350000px;}
.xea_c00365{left:242.100000px;}
.x5d_c00365{left:243.150000px;}
.xef_c00365{left:244.650000px;}
.xc6_c00365{left:245.850000px;}
.xd1_c00365{left:246.900000px;}
.xbc_c00365{left:247.950000px;}
.xa0_c00365{left:249.450000px;}
.xb0_c00365{left:251.400000px;}
.x53_c00365{left:252.900000px;}
.xe2_c00365{left:254.850000px;}
.x78_c00365{left:255.900000px;}
.x102_c00365{left:257.100000px;}
.x86_c00365{left:258.450000px;}
.x39_c00365{left:260.250000px;}
.x47_c00365{left:263.400000px;}
.x109_c00365{left:264.600000px;}
.x12_c00365{left:266.550000px;}
.x5_c00365{left:267.900000px;}
.x6c_c00365{left:269.700000px;}
.x105_c00365{left:272.550000px;}
.x54_c00365{left:274.500000px;}
.xf0_c00365{left:278.850000px;}
.x21_c00365{left:281.250000px;}
.xcb_c00365{left:282.750000px;}
.x3a_c00365{left:284.700000px;}
.x11d_c00365{left:286.950000px;}
.x48_c00365{left:291.900000px;}
.xb1_c00365{left:293.100000px;}
.x5e_c00365{left:294.900000px;}
.x127_c00365{left:296.850000px;}
.x79_c00365{left:299.100000px;}
.x22_c00365{left:301.050000px;}
.x6_c00365{left:303.150000px;}
.xa1_c00365{left:304.200000px;}
.x10a_c00365{left:306.000000px;}
.x2d_c00365{left:307.200000px;}
.x12f_c00365{left:308.550000px;}
.x55_c00365{left:309.750000px;}
.xf1_c00365{left:311.550000px;}
.x13_c00365{left:313.350000px;}
.x3b_c00365{left:318.600000px;}
.x7a_c00365{left:324.000000px;}
.x12b_c00365{left:325.200000px;}
.xa7_c00365{left:327.300000px;}
.x98_c00365{left:328.800000px;}
.xd9_c00365{left:331.050000px;}
.x6d_c00365{left:332.400000px;}
.xcc_c00365{left:339.600000px;}
.x14_c00365{left:340.650000px;}
.xc1_c00365{left:342.450000px;}
.x8f_c00365{left:343.650000px;}
.x111_c00365{left:346.800000px;}
.x7b_c00365{left:349.500000px;}
.x49_c00365{left:350.550000px;}
.x23_c00365{left:353.550000px;}
.x2e_c00365{left:359.400000px;}
.x6e_c00365{left:360.450000px;}
.x3c_c00365{left:361.500000px;}
.x11e_c00365{left:362.850000px;}
.x5f_c00365{left:366.150000px;}
.x76_c00365{left:367.950000px;}
.x7_c00365{left:369.450000px;}
.xe3_c00365{left:373.200000px;}
.x56_c00365{left:374.850000px;}
.xda_c00365{left:376.050000px;}
.xf6_c00365{left:377.400000px;}
.xeb_c00365{left:378.900000px;}
.x2f_c00365{left:380.250000px;}
.xb6_c00365{left:382.050000px;}
.x15_c00365{left:384.600000px;}
.x77_c00365{left:388.500000px;}
.xfb_c00365{left:393.750000px;}
.x4a_c00365{left:395.550000px;}
.xcd_c00365{left:399.450000px;}
.x3d_c00365{left:403.950000px;}
.x16_c00365{left:406.500000px;}
.xf7_c00365{left:408.750000px;}
.xbd_c00365{left:409.950000px;}
.x6f_c00365{left:411.900000px;}
.xb7_c00365{left:412.950000px;}
.x4b_c00365{left:416.850000px;}
.x8_c00365{left:418.050000px;}
.x7c_c00365{left:420.450000px;}
.x30_c00365{left:423.150000px;}
.x1_c00365{left:424.800000px;}
.x117_c00365{left:425.850000px;}
.x3e_c00365{left:427.050000px;}
.x60_c00365{left:429.900000px;}
.xe4_c00365{left:431.100000px;}
.x24_c00365{left:432.450000px;}
.xf2_c00365{left:435.450000px;}
.x9_c00365{left:437.550000px;}
.x118_c00365{left:440.550000px;}
.x99_c00365{left:441.750000px;}
.xdb_c00365{left:442.950000px;}
.x120_c00365{left:444.150000px;}
.x57_c00365{left:445.800000px;}
.x61_c00365{left:450.750000px;}
.x31_c00365{left:454.500000px;}
.xd6_c00365{left:457.650000px;}
.x87_c00365{left:459.600000px;}
.x3f_c00365{left:462.750000px;}
.x90_c00365{left:466.500000px;}
.xa_c00365{left:469.200000px;}
.x9a_c00365{left:472.050000px;}
.x10b_c00365{left:474.150000px;}
.x17_c00365{left:477.450000px;}
.x121_c00365{left:479.100000px;}
.xb8_c00365{left:480.900000px;}
.x32_c00365{left:482.550000px;}
.x4c_c00365{left:483.750000px;}
.xc2_c00365{left:486.150000px;}
.xb2_c00365{left:487.500000px;}
.xc7_c00365{left:489.900000px;}
.xce_c00365{left:494.850000px;}
.x18_c00365{left:496.950000px;}
.x25_c00365{left:499.050000px;}
.xf8_c00365{left:500.250000px;}
.x128_c00365{left:502.500000px;}
.x58_c00365{left:503.700000px;}
.x88_c00365{left:506.100000px;}
.xd2_c00365{left:507.150000px;}
.xa8_c00365{left:510.600000px;}
.xb_c00365{left:511.650000px;}
.x62_c00365{left:514.050000px;}
.x70_c00365{left:516.750000px;}
.x9b_c00365{left:518.850000px;}
.x10c_c00365{left:519.900000px;}
.x119_c00365{left:522.600000px;}
.xdc_c00365{left:526.050000px;}
.x89_c00365{left:528.750000px;}
.xa9_c00365{left:530.100000px;}
.xf3_c00365{left:531.150000px;}
.x26_c00365{left:534.000000px;}
.xc_c00365{left:536.100000px;}
.x7d_c00365{left:537.450000px;}
.xec_c00365{left:538.650000px;}
.x129_c00365{left:541.050000px;}
.x33_c00365{left:543.450000px;}
.xe5_c00365{left:545.850000px;}
.x106_c00365{left:549.000000px;}
.xb9_c00365{left:552.900000px;}
.x91_c00365{left:555.750000px;}
.x4d_c00365{left:556.800000px;}
.xaa_c00365{left:559.200000px;}
.x124_c00365{left:560.400000px;}
.x19_c00365{left:561.450000px;}
.xd_c00365{left:563.100000px;}
.xd7_c00365{left:565.500000px;}
.xe6_c00365{left:569.250000px;}
.x71_c00365{left:570.450000px;}
.x40_c00365{left:571.500000px;}
.x7e_c00365{left:575.550000px;}
.xcf_c00365{left:578.850000px;}
.x10d_c00365{left:586.200000px;}
.x27_c00365{left:587.700000px;}
.x112_c00365{left:588.750000px;}
.xbe_c00365{left:590.250000px;}
.x1a_c00365{left:591.300000px;}
.x7f_c00365{left:593.250000px;}
.x8a_c00365{left:594.300000px;}
.xc8_c00365{left:595.650000px;}
.xd8_c00365{left:597.900000px;}
.x41_c00365{left:599.250000px;}
.x72_c00365{left:601.350000px;}
.xdd_c00365{left:602.700000px;}
.x63_c00365{left:604.500000px;}
.x92_c00365{left:607.650000px;}
.x122_c00365{left:609.000000px;}
.x9c_c00365{left:610.650000px;}
.xc9_c00365{left:613.350000px;}
.x34_c00365{left:615.450000px;}
.xde_c00365{left:617.100000px;}
.xb3_c00365{left:619.950000px;}
.x64_c00365{left:622.500000px;}
.x59_c00365{left:624.000000px;}
.x80_c00365{left:625.350000px;}
.x123_c00365{left:629.550000px;}
.x42_c00365{left:632.400000px;}
.x1b_c00365{left:633.750000px;}
.x8b_c00365{left:635.700000px;}
.x125_c00365{left:636.750000px;}
.x28_c00365{left:638.100000px;}
.xab_c00365{left:640.200000px;}
.xc3_c00365{left:641.400000px;}
.xfc_c00365{left:642.450000px;}
.x35_c00365{left:643.950000px;}
.x4e_c00365{left:647.850000px;}
.x113_c00365{left:649.200000px;}
.xed_c00365{left:650.550000px;}
.x73_c00365{left:652.800000px;}
.xf4_c00365{left:654.000000px;}
.x12a_c00365{left:655.500000px;}
.xe_c00365{left:658.200000px;}
.xbf_c00365{left:663.000000px;}
.xca_c00365{left:666.750000px;}
.x1c_c00365{left:668.250000px;}
.x93_c00365{left:670.650000px;}
.x29_c00365{left:672.300000px;}
.x81_c00365{left:673.650000px;}
.xba_c00365{left:675.000000px;}
.x5a_c00365{left:676.950000px;}
.x43_c00365{left:679.500000px;}
.xac_c00365{left:680.550000px;}
.x114_c00365{left:683.100000px;}
.xdf_c00365{left:684.750000px;}
.x4f_c00365{left:687.000000px;}
.x94_c00365{left:690.150000px;}
.x82_c00365{left:691.950000px;}
.x36_c00365{left:694.650000px;}
.xa2_c00365{left:697.200000px;}
.x65_c00365{left:700.650000px;}
.x44_c00365{left:701.850000px;}
.x5b_c00365{left:702.900000px;}
.xe7_c00365{left:704.850000px;}
.x8c_c00365{left:705.900000px;}
.xfd_c00365{left:708.300000px;}
.xad_c00365{left:709.350000px;}
.x107_c00365{left:715.050000px;}
.x9d_c00365{left:717.150000px;}
.x11a_c00365{left:718.350000px;}
.xfe_c00365{left:719.400000px;}
.xc4_c00365{left:721.050000px;}
.xe8_c00365{left:724.950000px;}
.x11f_c00365{left:727.050000px;}
.xbb_c00365{left:729.000000px;}
.x103_c00365{left:732.000000px;}
.xf9_c00365{left:734.550000px;}
.xc0_c00365{left:735.750000px;}
.xee_c00365{left:736.950000px;}
.x95_c00365{left:738.000000px;}
.x2a_c00365{left:741.000000px;}
.x83_c00365{left:744.150000px;}
.x66_c00365{left:745.650000px;}
.x74_c00365{left:746.700000px;}
.x45_c00365{left:748.650000px;}
.x2_c00365{left:752.400000px;}
.xae_c00365{left:754.350000px;}
.x1d_c00365{left:755.400000px;}
.x67_c00365{left:756.750000px;}
.xa3_c00365{left:764.250000px;}
.xff_c00365{left:766.200000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws3_c00365{word-spacing:-6.000000pt;}
.ws4_c00365{word-spacing:-5.892604pt;}
.wsa_c00365{word-spacing:-0.959631pt;}
.wsc_c00365{word-spacing:-0.435242pt;}
.wsd_c00365{word-spacing:0.000000pt;}
.ws9_c00365{word-spacing:0.222222pt;}
.ws0_c00365{word-spacing:4.032906pt;}
.ws8_c00365{word-spacing:5.222222pt;}
.ws6_c00365{word-spacing:8.222222pt;}
.ws5_c00365{word-spacing:9.264749pt;}
.ws2_c00365{word-spacing:12.675222pt;}
.ws1_c00365{word-spacing:14.666667pt;}
.wsb_c00365{word-spacing:16.912215pt;}
.ws7_c00365{word-spacing:18.666667pt;}
.fs0_c00365{font-size:48.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y2c_c00365{bottom:134.400000pt;}
.y2b_c00365{bottom:144.000000pt;}
.y2a_c00365{bottom:176.133333pt;}
.y29_c00365{bottom:194.000000pt;}
.y28_c00365{bottom:211.866667pt;}
.y27_c00365{bottom:242.133333pt;}
.y26_c00365{bottom:259.733333pt;}
.y25_c00365{bottom:277.333333pt;}
.y24_c00365{bottom:294.933333pt;}
.y23_c00365{bottom:312.533333pt;}
.y22_c00365{bottom:330.400000pt;}
.y21_c00365{bottom:348.000000pt;}
.y20_c00365{bottom:365.866667pt;}
.y1f_c00365{bottom:383.466667pt;}
.y1e_c00365{bottom:401.333333pt;}
.y1d_c00365{bottom:418.933333pt;}
.y1c_c00365{bottom:436.800000pt;}
.y1b_c00365{bottom:454.400000pt;}
.y1a_c00365{bottom:472.266667pt;}
.y19_c00365{bottom:489.866667pt;}
.y18_c00365{bottom:507.733333pt;}
.y17_c00365{bottom:525.333333pt;}
.y16_c00365{bottom:543.200000pt;}
.y15_c00365{bottom:561.066667pt;}
.y14_c00365{bottom:578.666667pt;}
.y13_c00365{bottom:596.266667pt;}
.y12_c00365{bottom:614.133333pt;}
.y11_c00365{bottom:631.733333pt;}
.y10_c00365{bottom:649.333333pt;}
.yf_c00365{bottom:667.200000pt;}
.ye_c00365{bottom:685.066667pt;}
.yd_c00365{bottom:702.666667pt;}
.yc_c00365{bottom:720.266667pt;}
.yb_c00365{bottom:738.400000pt;}
.ya_c00365{bottom:756.000000pt;}
.y9_c00365{bottom:773.866667pt;}
.y8_c00365{bottom:791.733333pt;}
.y7_c00365{bottom:809.333333pt;}
.y6_c00365{bottom:826.666667pt;}
.y5_c00365{bottom:844.533333pt;}
.y4_c00365{bottom:862.133333pt;}
.y3_c00365{bottom:880.000000pt;}
.y2_c00365{bottom:897.600000pt;}
.y1_c00365{bottom:931.866667pt;}
.h2_c00365{height:48.000000pt;}
.h0_c00365{height:1037.119955pt;}
.h1_c00365{height:1037.333333pt;}
.w1_c00365{width:812.000000pt;}
.w0_c00365{width:812.159993pt;}
.x0_c00365{left:0.000000pt;}
.x10e_c00365{left:93.866667pt;}
.xd3_c00365{left:94.800000pt;}
.x96_c00365{left:96.000000pt;}
.x68_c00365{left:96.933333pt;}
.xf_c00365{left:98.000000pt;}
.x115_c00365{left:110.533333pt;}
.xb4_c00365{left:111.733333pt;}
.x100_c00365{left:113.066667pt;}
.x2b_c00365{left:114.933333pt;}
.xaf_c00365{left:116.000000pt;}
.xd4_c00365{left:120.400000pt;}
.x84_c00365{left:121.600000pt;}
.x10_c00365{left:123.600000pt;}
.x3_c00365{left:125.466667pt;}
.xe0_c00365{left:128.266667pt;}
.x37_c00365{left:129.200000pt;}
.x97_c00365{left:130.933333pt;}
.x8d_c00365{left:132.400000pt;}
.x69_c00365{left:133.466667pt;}
.x10f_c00365{left:135.733333pt;}
.x50_c00365{left:137.466667pt;}
.x5c_c00365{left:138.400000pt;}
.x9e_c00365{left:141.733333pt;}
.x1e_c00365{left:142.800000pt;}
.xfa_c00365{left:143.866667pt;}
.x126_c00365{left:145.066667pt;}
.xd5_c00365{left:146.000000pt;}
.xf5_c00365{left:147.466667pt;}
.x6a_c00365{left:150.400000pt;}
.x11_c00365{left:151.466667pt;}
.xb5_c00365{left:152.666667pt;}
.xa4_c00365{left:156.800000pt;}
.xd0_c00365{left:158.000000pt;}
.x8e_c00365{left:159.600000pt;}
.x11b_c00365{left:161.733333pt;}
.x75_c00365{left:163.866667pt;}
.x104_c00365{left:166.800000pt;}
.x2c_c00365{left:168.400000pt;}
.x6b_c00365{left:171.466667pt;}
.x12c_c00365{left:172.400000pt;}
.x51_c00365{left:174.933333pt;}
.xe9_c00365{left:176.133333pt;}
.x38_c00365{left:178.533333pt;}
.x108_c00365{left:179.466667pt;}
.x12d_c00365{left:180.400000pt;}
.x1f_c00365{left:182.800000pt;}
.xc5_c00365{left:184.933333pt;}
.x116_c00365{left:186.800000pt;}
.x110_c00365{left:187.866667pt;}
.xe1_c00365{left:189.066667pt;}
.x11c_c00365{left:190.800000pt;}
.x52_c00365{left:192.533333pt;}
.x9f_c00365{left:193.600000pt;}
.xa5_c00365{left:195.200000pt;}
.x101_c00365{left:199.733333pt;}
.x46_c00365{left:202.133333pt;}
.x12e_c00365{left:204.533333pt;}
.x85_c00365{left:208.933333pt;}
.x20_c00365{left:210.000000pt;}
.x4_c00365{left:210.933333pt;}
.xa6_c00365{left:211.866667pt;}
.xea_c00365{left:215.200000pt;}
.x5d_c00365{left:216.133333pt;}
.xef_c00365{left:217.466667pt;}
.xc6_c00365{left:218.533333pt;}
.xd1_c00365{left:219.466667pt;}
.xbc_c00365{left:220.400000pt;}
.xa0_c00365{left:221.733333pt;}
.xb0_c00365{left:223.466667pt;}
.x53_c00365{left:224.800000pt;}
.xe2_c00365{left:226.533333pt;}
.x78_c00365{left:227.466667pt;}
.x102_c00365{left:228.533333pt;}
.x86_c00365{left:229.733333pt;}
.x39_c00365{left:231.333333pt;}
.x47_c00365{left:234.133333pt;}
.x109_c00365{left:235.200000pt;}
.x12_c00365{left:236.933333pt;}
.x5_c00365{left:238.133333pt;}
.x6c_c00365{left:239.733333pt;}
.x105_c00365{left:242.266667pt;}
.x54_c00365{left:244.000000pt;}
.xf0_c00365{left:247.866667pt;}
.x21_c00365{left:250.000000pt;}
.xcb_c00365{left:251.333333pt;}
.x3a_c00365{left:253.066667pt;}
.x11d_c00365{left:255.066667pt;}
.x48_c00365{left:259.466667pt;}
.xb1_c00365{left:260.533333pt;}
.x5e_c00365{left:262.133333pt;}
.x127_c00365{left:263.866667pt;}
.x79_c00365{left:265.866667pt;}
.x22_c00365{left:267.600000pt;}
.x6_c00365{left:269.466667pt;}
.xa1_c00365{left:270.400000pt;}
.x10a_c00365{left:272.000000pt;}
.x2d_c00365{left:273.066667pt;}
.x12f_c00365{left:274.266667pt;}
.x55_c00365{left:275.333333pt;}
.xf1_c00365{left:276.933333pt;}
.x13_c00365{left:278.533333pt;}
.x3b_c00365{left:283.200000pt;}
.x7a_c00365{left:288.000000pt;}
.x12b_c00365{left:289.066667pt;}
.xa7_c00365{left:290.933333pt;}
.x98_c00365{left:292.266667pt;}
.xd9_c00365{left:294.266667pt;}
.x6d_c00365{left:295.466667pt;}
.xcc_c00365{left:301.866667pt;}
.x14_c00365{left:302.800000pt;}
.xc1_c00365{left:304.400000pt;}
.x8f_c00365{left:305.466667pt;}
.x111_c00365{left:308.266667pt;}
.x7b_c00365{left:310.666667pt;}
.x49_c00365{left:311.600000pt;}
.x23_c00365{left:314.266667pt;}
.x2e_c00365{left:319.466667pt;}
.x6e_c00365{left:320.400000pt;}
.x3c_c00365{left:321.333333pt;}
.x11e_c00365{left:322.533333pt;}
.x5f_c00365{left:325.466667pt;}
.x76_c00365{left:327.066667pt;}
.x7_c00365{left:328.400000pt;}
.xe3_c00365{left:331.733333pt;}
.x56_c00365{left:333.200000pt;}
.xda_c00365{left:334.266667pt;}
.xf6_c00365{left:335.466667pt;}
.xeb_c00365{left:336.800000pt;}
.x2f_c00365{left:338.000000pt;}
.xb6_c00365{left:339.600000pt;}
.x15_c00365{left:341.866667pt;}
.x77_c00365{left:345.333333pt;}
.xfb_c00365{left:350.000000pt;}
.x4a_c00365{left:351.600000pt;}
.xcd_c00365{left:355.066667pt;}
.x3d_c00365{left:359.066667pt;}
.x16_c00365{left:361.333333pt;}
.xf7_c00365{left:363.333333pt;}
.xbd_c00365{left:364.400000pt;}
.x6f_c00365{left:366.133333pt;}
.xb7_c00365{left:367.066667pt;}
.x4b_c00365{left:370.533333pt;}
.x8_c00365{left:371.600000pt;}
.x7c_c00365{left:373.733333pt;}
.x30_c00365{left:376.133333pt;}
.x1_c00365{left:377.600000pt;}
.x117_c00365{left:378.533333pt;}
.x3e_c00365{left:379.600000pt;}
.x60_c00365{left:382.133333pt;}
.xe4_c00365{left:383.200000pt;}
.x24_c00365{left:384.400000pt;}
.xf2_c00365{left:387.066667pt;}
.x9_c00365{left:388.933333pt;}
.x118_c00365{left:391.600000pt;}
.x99_c00365{left:392.666667pt;}
.xdb_c00365{left:393.733333pt;}
.x120_c00365{left:394.800000pt;}
.x57_c00365{left:396.266667pt;}
.x61_c00365{left:400.666667pt;}
.x31_c00365{left:404.000000pt;}
.xd6_c00365{left:406.800000pt;}
.x87_c00365{left:408.533333pt;}
.x3f_c00365{left:411.333333pt;}
.x90_c00365{left:414.666667pt;}
.xa_c00365{left:417.066667pt;}
.x9a_c00365{left:419.600000pt;}
.x10b_c00365{left:421.466667pt;}
.x17_c00365{left:424.400000pt;}
.x121_c00365{left:425.866667pt;}
.xb8_c00365{left:427.466667pt;}
.x32_c00365{left:428.933333pt;}
.x4c_c00365{left:430.000000pt;}
.xc2_c00365{left:432.133333pt;}
.xb2_c00365{left:433.333333pt;}
.xc7_c00365{left:435.466667pt;}
.xce_c00365{left:439.866667pt;}
.x18_c00365{left:441.733333pt;}
.x25_c00365{left:443.600000pt;}
.xf8_c00365{left:444.666667pt;}
.x128_c00365{left:446.666667pt;}
.x58_c00365{left:447.733333pt;}
.x88_c00365{left:449.866667pt;}
.xd2_c00365{left:450.800000pt;}
.xa8_c00365{left:453.866667pt;}
.xb_c00365{left:454.800000pt;}
.x62_c00365{left:456.933333pt;}
.x70_c00365{left:459.333333pt;}
.x9b_c00365{left:461.200000pt;}
.x10c_c00365{left:462.133333pt;}
.x119_c00365{left:464.533333pt;}
.xdc_c00365{left:467.600000pt;}
.x89_c00365{left:470.000000pt;}
.xa9_c00365{left:471.200000pt;}
.xf3_c00365{left:472.133333pt;}
.x26_c00365{left:474.666667pt;}
.xc_c00365{left:476.533333pt;}
.x7d_c00365{left:477.733333pt;}
.xec_c00365{left:478.800000pt;}
.x129_c00365{left:480.933333pt;}
.x33_c00365{left:483.066667pt;}
.xe5_c00365{left:485.200000pt;}
.x106_c00365{left:488.000000pt;}
.xb9_c00365{left:491.466667pt;}
.x91_c00365{left:494.000000pt;}
.x4d_c00365{left:494.933333pt;}
.xaa_c00365{left:497.066667pt;}
.x124_c00365{left:498.133333pt;}
.x19_c00365{left:499.066667pt;}
.xd_c00365{left:500.533333pt;}
.xd7_c00365{left:502.666667pt;}
.xe6_c00365{left:506.000000pt;}
.x71_c00365{left:507.066667pt;}
.x40_c00365{left:508.000000pt;}
.x7e_c00365{left:511.600000pt;}
.xcf_c00365{left:514.533333pt;}
.x10d_c00365{left:521.066667pt;}
.x27_c00365{left:522.400000pt;}
.x112_c00365{left:523.333333pt;}
.xbe_c00365{left:524.666667pt;}
.x1a_c00365{left:525.600000pt;}
.x7f_c00365{left:527.333333pt;}
.x8a_c00365{left:528.266667pt;}
.xc8_c00365{left:529.466667pt;}
.xd8_c00365{left:531.466667pt;}
.x41_c00365{left:532.666667pt;}
.x72_c00365{left:534.533333pt;}
.xdd_c00365{left:535.733333pt;}
.x63_c00365{left:537.333333pt;}
.x92_c00365{left:540.133333pt;}
.x122_c00365{left:541.333333pt;}
.x9c_c00365{left:542.800000pt;}
.xc9_c00365{left:545.200000pt;}
.x34_c00365{left:547.066667pt;}
.xde_c00365{left:548.533333pt;}
.xb3_c00365{left:551.066667pt;}
.x64_c00365{left:553.333333pt;}
.x59_c00365{left:554.666667pt;}
.x80_c00365{left:555.866667pt;}
.x123_c00365{left:559.600000pt;}
.x42_c00365{left:562.133333pt;}
.x1b_c00365{left:563.333333pt;}
.x8b_c00365{left:565.066667pt;}
.x125_c00365{left:566.000000pt;}
.x28_c00365{left:567.200000pt;}
.xab_c00365{left:569.066667pt;}
.xc3_c00365{left:570.133333pt;}
.xfc_c00365{left:571.066667pt;}
.x35_c00365{left:572.400000pt;}
.x4e_c00365{left:575.866667pt;}
.x113_c00365{left:577.066667pt;}
.xed_c00365{left:578.266667pt;}
.x73_c00365{left:580.266667pt;}
.xf4_c00365{left:581.333333pt;}
.x12a_c00365{left:582.666667pt;}
.xe_c00365{left:585.066667pt;}
.xbf_c00365{left:589.333333pt;}
.xca_c00365{left:592.666667pt;}
.x1c_c00365{left:594.000000pt;}
.x93_c00365{left:596.133333pt;}
.x29_c00365{left:597.600000pt;}
.x81_c00365{left:598.800000pt;}
.xba_c00365{left:600.000000pt;}
.x5a_c00365{left:601.733333pt;}
.x43_c00365{left:604.000000pt;}
.xac_c00365{left:604.933333pt;}
.x114_c00365{left:607.200000pt;}
.xdf_c00365{left:608.666667pt;}
.x4f_c00365{left:610.666667pt;}
.x94_c00365{left:613.466667pt;}
.x82_c00365{left:615.066667pt;}
.x36_c00365{left:617.466667pt;}
.xa2_c00365{left:619.733333pt;}
.x65_c00365{left:622.800000pt;}
.x44_c00365{left:623.866667pt;}
.x5b_c00365{left:624.800000pt;}
.xe7_c00365{left:626.533333pt;}
.x8c_c00365{left:627.466667pt;}
.xfd_c00365{left:629.600000pt;}
.xad_c00365{left:630.533333pt;}
.x107_c00365{left:635.600000pt;}
.x9d_c00365{left:637.466667pt;}
.x11a_c00365{left:638.533333pt;}
.xfe_c00365{left:639.466667pt;}
.xc4_c00365{left:640.933333pt;}
.xe8_c00365{left:644.400000pt;}
.x11f_c00365{left:646.266667pt;}
.xbb_c00365{left:648.000000pt;}
.x103_c00365{left:650.666667pt;}
.xf9_c00365{left:652.933333pt;}
.xc0_c00365{left:654.000000pt;}
.xee_c00365{left:655.066667pt;}
.x95_c00365{left:656.000000pt;}
.x2a_c00365{left:658.666667pt;}
.x83_c00365{left:661.466667pt;}
.x66_c00365{left:662.800000pt;}
.x74_c00365{left:663.733333pt;}
.x45_c00365{left:665.466667pt;}
.x2_c00365{left:668.800000pt;}
.xae_c00365{left:670.533333pt;}
.x1d_c00365{left:671.466667pt;}
.x67_c00365{left:672.666667pt;}
.xa3_c00365{left:679.333333pt;}
.xff_c00365{left:681.066667pt;}
}





/* 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_c00366 {
    display:none;
  }
  .loading-indicator_c00366.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00366 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_c00366 { 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_c00366" -> "#page-container .classname_c00366")
 */
.pf_c00366 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00366 { /* 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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00366 { /* 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_c00366 { /* 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_c00366 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00366 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00366 {overflow:visible;}
  }
}
.c_c00366 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00366 { /* 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_c00366:after { /* webkit #35443 */
  content: '';
}
.t_c00366:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00366 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 */
}
.__c00366 { /* 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_c00366 { /* info for Javascript */
  display:none;
}
.l_c00366 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00366 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00366 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00366: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_c00366 {
    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_c00366.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00366.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_c00366 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00366{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00366;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.000000;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;}
.m45_c00366{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m62_c00366{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00366{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00366{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00366{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00366{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m95_c00366{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00366{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00366{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m80_c00366{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00366{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00366{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m18_c00366{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00366{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.maf_c00366{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00366{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00366{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00366{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00366{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00366{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00366{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mac_c00366{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00366{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mad_c00366{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00366{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m93_c00366{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00366{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00366{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mae_c00366{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00366{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00366{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00366{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00366{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m87_c00366{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00366{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00366{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m53_c00366{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m97_c00366{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m64_c00366{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m44_c00366{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00366{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00366{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00366{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m75_c00366{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m68_c00366{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m98_c00366{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m90_c00366{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00366{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00366{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m96_c00366{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m91_c00366{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m41_c00366{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m92_c00366{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00366{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m81_c00366{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m10_c00366{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00366{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m13_c00366{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00366{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m65_c00366{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m85_c00366{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c00366{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00366{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00366{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00366{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.maa_c00366{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00366{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00366{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m37_c00366{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00366{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00366{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m58_c00366{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m38_c00366{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m72_c00366{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m52_c00366{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m43_c00366{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00366{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m86_c00366{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m51_c00366{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);}
.m60_c00366{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00366{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00366{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11_c00366{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m99_c00366{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m39_c00366{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00366{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00366{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00366{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m61_c00366{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m71_c00366{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m78_c00366{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m42_c00366{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m59_c00366{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.md_c00366{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m88_c00366{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m94_c00366{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00366{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m26_c00366{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m74_c00366{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00366{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m84_c00366{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00366{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m66_c00366{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00366{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m63_c00366{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00366{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00366{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf_c00366{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m83_c00366{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m25_c00366{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00366{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00366{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m48_c00366{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m55_c00366{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m47_c00366{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m70_c00366{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00366{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00366{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m79_c00366{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00366{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m50_c00366{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m20_c00366{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00366{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00366{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m33_c00366{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mab_c00366{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m54_c00366{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00366{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00366{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m57_c00366{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00366{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m28_c00366{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00366{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m82_c00366{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00366{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m40_c00366{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00366{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m1_c00366{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m46_c00366{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m77_c00366{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00366{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m69_c00366{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m49_c00366{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m56_c00366{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00366{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m73_c00366{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m89_c00366{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m35_c00366{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.m76_c00366{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00366{vertical-align:0.000000px;}
.ls0_c00366{letter-spacing:0.000000px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{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__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00366{word-spacing:-12.000000px;}
.ws13_c00366{word-spacing:-10.612795px;}
.ws6_c00366{word-spacing:-4.750000px;}
.ws5_c00366{word-spacing:-4.375000px;}
.wsc_c00366{word-spacing:-3.125000px;}
.ws0_c00366{word-spacing:-2.875000px;}
.wsa_c00366{word-spacing:-2.578313px;}
.wse_c00366{word-spacing:-1.625000px;}
.ws10_c00366{word-spacing:-0.042174px;}
.ws14_c00366{word-spacing:0.000000px;}
.wsd_c00366{word-spacing:0.250000px;}
.ws8_c00366{word-spacing:0.562310px;}
.ws4_c00366{word-spacing:1.250000px;}
.ws7_c00366{word-spacing:3.106614px;}
.wsb_c00366{word-spacing:4.625000px;}
.ws12_c00366{word-spacing:4.825799px;}
.ws11_c00366{word-spacing:4.976971px;}
.ws3_c00366{word-spacing:5.750000px;}
.wsf_c00366{word-spacing:5.822310px;}
.ws9_c00366{word-spacing:7.750000px;}
.ws2_c00366{word-spacing:8.867470px;}
._0_c00366{width:35.750000px;}
.fc0_c00366{color:transparent;}
.fs0_c00366{font-size:54.000000px;}
.y0_c00366{bottom:0.000000px;}
.y2c_c00366{bottom:153.750000px;}
.y2b_c00366{bottom:169.500000px;}
.y2a_c00366{bottom:185.100000px;}
.y29_c00366{bottom:230.550000px;}
.y28_c00366{bottom:250.650000px;}
.y27_c00366{bottom:270.450000px;}
.y26_c00366{bottom:290.550000px;}
.y25_c00366{bottom:310.950000px;}
.y24_c00366{bottom:331.050000px;}
.y23_c00366{bottom:350.850000px;}
.y22_c00366{bottom:370.950000px;}
.y21_c00366{bottom:390.750000px;}
.y20_c00366{bottom:410.850000px;}
.y1f_c00366{bottom:430.650000px;}
.y1e_c00366{bottom:450.750000px;}
.y1d_c00366{bottom:470.550000px;}
.y1c_c00366{bottom:490.650000px;}
.y1b_c00366{bottom:511.050000px;}
.y1a_c00366{bottom:531.150000px;}
.y19_c00366{bottom:550.950000px;}
.y18_c00366{bottom:571.050000px;}
.y17_c00366{bottom:590.850000px;}
.y16_c00366{bottom:610.650000px;}
.y15_c00366{bottom:631.200000px;}
.y14_c00366{bottom:651.000000px;}
.y13_c00366{bottom:671.100000px;}
.y12_c00366{bottom:690.900000px;}
.y11_c00366{bottom:710.700000px;}
.y10_c00366{bottom:730.800000px;}
.yf_c00366{bottom:750.900000px;}
.ye_c00366{bottom:771.000000px;}
.yd_c00366{bottom:791.100000px;}
.yc_c00366{bottom:811.200000px;}
.yb_c00366{bottom:831.300000px;}
.ya_c00366{bottom:851.400000px;}
.y9_c00366{bottom:870.900000px;}
.y8_c00366{bottom:891.000000px;}
.y7_c00366{bottom:911.250000px;}
.y6_c00366{bottom:931.350000px;}
.y5_c00366{bottom:951.150000px;}
.y4_c00366{bottom:971.700000px;}
.y3_c00366{bottom:991.800000px;}
.y2_c00366{bottom:1011.600000px;}
.y1_c00366{bottom:1049.700000px;}
.h2_c00366{height:54.000000px;}
.h0_c00366{height:1166.759949px;}
.h1_c00366{height:1167.000000px;}
.w1_c00366{width:913.500000px;}
.w0_c00366{width:913.679993px;}
.x0_c00366{left:0.000000px;}
.x3_c00366{left:125.250000px;}
.x1_c00366{left:126.300000px;}
.x10f_c00366{left:127.500000px;}
.xd1_c00366{left:138.300000px;}
.x99_c00366{left:140.250000px;}
.x12c_c00366{left:146.550000px;}
.x5f_c00366{left:150.450000px;}
.xd6_c00366{left:152.550000px;}
.x10_c00366{left:156.300000px;}
.x9a_c00366{left:157.500000px;}
.x2e_c00366{left:158.700000px;}
.x12d_c00366{left:159.900000px;}
.xa7_c00366{left:162.000000px;}
.x102_c00366{left:163.350000px;}
.xb6_c00366{left:165.000000px;}
.x4_c00366{left:170.550000px;}
.x1f_c00366{left:173.550000px;}
.x11c_c00366{left:175.500000px;}
.x3d_c00366{left:176.550000px;}
.xc0_c00366{left:180.600000px;}
.xb7_c00366{left:182.250000px;}
.x60_c00366{left:183.600000px;}
.x11_c00366{left:185.850000px;}
.xf9_c00366{left:190.050000px;}
.x110_c00366{left:191.250000px;}
.xae_c00366{left:192.450000px;}
.xed_c00366{left:194.700000px;}
.x8f_c00366{left:195.750000px;}
.xd2_c00366{left:196.950000px;}
.x115_c00366{left:199.200000px;}
.xe4_c00366{left:201.450000px;}
.xd7_c00366{left:204.300000px;}
.x3e_c00366{left:205.350000px;}
.x4c_c00366{left:207.450000px;}
.x126_c00366{left:209.700000px;}
.x6b_c00366{left:210.900000px;}
.x2f_c00366{left:213.000000px;}
.x83_c00366{left:214.950000px;}
.x72_c00366{left:216.300000px;}
.xe8_c00366{left:217.350000px;}
.x9b_c00366{left:221.550000px;}
.x120_c00366{left:223.650000px;}
.x30_c00366{left:225.300000px;}
.x5_c00366{left:231.000000px;}
.x20_c00366{left:232.200000px;}
.x11d_c00366{left:233.850000px;}
.x61_c00366{left:235.050000px;}
.xd3_c00366{left:236.250000px;}
.xaf_c00366{left:237.450000px;}
.x3f_c00366{left:239.250000px;}
.x121_c00366{left:242.400000px;}
.xfa_c00366{left:246.150000px;}
.xa0_c00366{left:248.850000px;}
.x4d_c00366{left:250.200000px;}
.x116_c00366{left:251.400000px;}
.x54_c00366{left:252.450000px;}
.xdd_c00366{left:254.100000px;}
.x62_c00366{left:256.350000px;}
.x6c_c00366{left:257.700000px;}
.x6_c00366{left:258.750000px;}
.x12_c00366{left:259.950000px;}
.x10b_c00366{left:262.500000px;}
.xfb_c00366{left:263.850000px;}
.xe9_c00366{left:265.200000px;}
.x79_c00366{left:267.000000px;}
.x40_c00366{left:270.600000px;}
.xc7_c00366{left:271.650000px;}
.xc1_c00366{left:273.150000px;}
.xd8_c00366{left:276.600000px;}
.xb8_c00366{left:279.150000px;}
.x84_c00366{left:280.800000px;}
.x31_c00366{left:281.850000px;}
.x41_c00366{left:285.300000px;}
.xe7_c00366{left:287.100000px;}
.xc2_c00366{left:288.600000px;}
.x103_c00366{left:289.800000px;}
.xf3_c00366{left:291.000000px;}
.x85_c00366{left:293.100000px;}
.xde_c00366{left:296.250000px;}
.x55_c00366{left:297.450000px;}
.x6d_c00366{left:300.150000px;}
.xee_c00366{left:301.950000px;}
.x131_c00366{left:303.000000px;}
.x90_c00366{left:305.100000px;}
.x21_c00366{left:307.800000px;}
.x4e_c00366{left:310.650000px;}
.x104_c00366{left:312.900000px;}
.x42_c00366{left:314.100000px;}
.x9c_c00366{left:315.600000px;}
.x13_c00366{left:316.800000px;}
.x73_c00366{left:321.450000px;}
.x63_c00366{left:323.250000px;}
.xfc_c00366{left:324.750000px;}
.x43_c00366{left:326.400000px;}
.x4f_c00366{left:328.950000px;}
.xf4_c00366{left:331.350000px;}
.xd9_c00366{left:332.400000px;}
.x7a_c00366{left:333.600000px;}
.x91_c00366{left:334.650000px;}
.x14_c00366{left:336.300000px;}
.xc3_c00366{left:337.950000px;}
.xfd_c00366{left:340.200000px;}
.x105_c00366{left:341.400000px;}
.x56_c00366{left:345.300000px;}
.x7_c00366{left:347.250000px;}
.xa1_c00366{left:348.900000px;}
.xb0_c00366{left:350.100000px;}
.x15_c00366{left:351.450000px;}
.xb9_c00366{left:353.250000px;}
.x64_c00366{left:355.650000px;}
.x12a_c00366{left:357.000000px;}
.x122_c00366{left:359.400000px;}
.x44_c00366{left:360.600000px;}
.x50_c00366{left:364.200000px;}
.x57_c00366{left:367.200000px;}
.x32_c00366{left:370.650000px;}
.x22_c00366{left:372.600000px;}
.xda_c00366{left:374.100000px;}
.x65_c00366{left:375.150000px;}
.x8_c00366{left:377.550000px;}
.x51_c00366{left:380.400000px;}
.xa2_c00366{left:383.100000px;}
.x7b_c00366{left:386.550000px;}
.x6e_c00366{left:388.350000px;}
.x23_c00366{left:391.650000px;}
.x11a_c00366{left:393.000000px;}
.xa8_c00366{left:394.500000px;}
.x45_c00366{left:396.900000px;}
.x86_c00366{left:399.300000px;}
.x92_c00366{left:401.550000px;}
.x111_c00366{left:402.600000px;}
.x16_c00366{left:403.650000px;}
.x9_c00366{left:405.600000px;}
.x127_c00366{left:411.900000px;}
.x24_c00366{left:412.950000px;}
.x112_c00366{left:415.950000px;}
.x132_c00366{left:417.150000px;}
.xba_c00366{left:419.850000px;}
.x2_c00366{left:424.350000px;}
.x7c_c00366{left:426.150000px;}
.x33_c00366{left:429.300000px;}
.x87_c00366{left:430.650000px;}
.xa3_c00366{left:432.300000px;}
.xc8_c00366{left:434.100000px;}
.x6f_c00366{left:435.450000px;}
.x123_c00366{left:436.500000px;}
.xa_c00366{left:438.000000px;}
.x12b_c00366{left:439.800000px;}
.x52_c00366{left:440.850000px;}
.x106_c00366{left:445.050000px;}
.x17_c00366{left:447.150000px;}
.xc9_c00366{left:448.800000px;}
.x93_c00366{left:450.900000px;}
.x34_c00366{left:454.500000px;}
.xbb_c00366{left:455.550000px;}
.x46_c00366{left:456.600000px;}
.x88_c00366{left:459.750000px;}
.x107_c00366{left:460.950000px;}
.x58_c00366{left:464.400000px;}
.xbc_c00366{left:468.450000px;}
.x74_c00366{left:469.800000px;}
.xe5_c00366{left:471.450000px;}
.xea_c00366{left:472.650000px;}
.x128_c00366{left:474.150000px;}
.xef_c00366{left:475.200000px;}
.xf5_c00366{left:478.200000px;}
.x18_c00366{left:479.250000px;}
.x7d_c00366{left:481.500000px;}
.x47_c00366{left:483.600000px;}
.x25_c00366{left:485.250000px;}
.xa9_c00366{left:486.300000px;}
.xca_c00366{left:489.900000px;}
.x129_c00366{left:494.700000px;}
.xfe_c00366{left:496.200000px;}
.x35_c00366{left:499.800000px;}
.x10c_c00366{left:501.150000px;}
.x94_c00366{left:505.200000px;}
.xb1_c00366{left:507.450000px;}
.x7e_c00366{left:511.050000px;}
.x12e_c00366{left:512.700000px;}
.x89_c00366{left:515.550000px;}
.xcb_c00366{left:516.600000px;}
.x75_c00366{left:518.700000px;}
.x53_c00366{left:520.350000px;}
.x117_c00366{left:521.700000px;}
.x26_c00366{left:528.450000px;}
.x95_c00366{left:531.150000px;}
.x19_c00366{left:532.500000px;}
.xb2_c00366{left:534.750000px;}
.x11f_c00366{left:535.800000px;}
.x59_c00366{left:537.150000px;}
.xb_c00366{left:539.100000px;}
.x11e_c00366{left:542.100000px;}
.x9d_c00366{left:545.100000px;}
.x8a_c00366{left:547.950000px;}
.x7f_c00366{left:550.050000px;}
.x96_c00366{left:552.000000px;}
.xdf_c00366{left:553.200000px;}
.x48_c00366{left:554.850000px;}
.xdb_c00366{left:556.950000px;}
.x27_c00366{left:558.000000px;}
.x36_c00366{left:560.250000px;}
.xf6_c00366{left:561.750000px;}
.x108_c00366{left:563.250000px;}
.x1a_c00366{left:566.700000px;}
.x8b_c00366{left:568.800000px;}
.x76_c00366{left:570.150000px;}
.xc_c00366{left:572.550000px;}
.xa4_c00366{left:578.850000px;}
.x5a_c00366{left:580.650000px;}
.xaa_c00366{left:582.750000px;}
.x37_c00366{left:585.750000px;}
.x80_c00366{left:588.900000px;}
.xeb_c00366{left:592.050000px;}
.xb3_c00366{left:593.100000px;}
.x118_c00366{left:594.150000px;}
.xcc_c00366{left:595.800000px;}
.x5b_c00366{left:598.650000px;}
.x28_c00366{left:600.150000px;}
.xf0_c00366{left:601.650000px;}
.x66_c00366{left:606.900000px;}
.xa5_c00366{left:609.750000px;}
.xcd_c00366{left:613.050000px;}
.x109_c00366{left:615.450000px;}
.xe0_c00366{left:616.950000px;}
.x8c_c00366{left:618.600000px;}
.x29_c00366{left:619.950000px;}
.x124_c00366{left:621.150000px;}
.xab_c00366{left:622.650000px;}
.xb4_c00366{left:624.450000px;}
.x97_c00366{left:627.600000px;}
.xd4_c00366{left:628.950000px;}
.xd_c00366{left:630.150000px;}
.x77_c00366{left:633.150000px;}
.xc4_c00366{left:634.950000px;}
.x38_c00366{left:636.150000px;}
.xf1_c00366{left:639.150000px;}
.xe6_c00366{left:640.350000px;}
.x49_c00366{left:642.000000px;}
.x8d_c00366{left:643.800000px;}
.x12f_c00366{left:645.000000px;}
.x2a_c00366{left:648.750000px;}
.x5c_c00366{left:650.550000px;}
.x1b_c00366{left:654.150000px;}
.x125_c00366{left:656.400000px;}
.xff_c00366{left:657.450000px;}
.x67_c00366{left:659.100000px;}
.x78_c00366{left:661.650000px;}
.x113_c00366{left:662.850000px;}
.x70_c00366{left:666.000000px;}
.xce_c00366{left:668.100000px;}
.xbd_c00366{left:671.250000px;}
.x5d_c00366{left:674.250000px;}
.x81_c00366{left:676.800000px;}
.x10d_c00366{left:678.000000px;}
.xdc_c00366{left:679.800000px;}
.xac_c00366{left:681.750000px;}
.xf7_c00366{left:685.050000px;}
.x68_c00366{left:686.100000px;}
.xa6_c00366{left:688.650000px;}
.xe1_c00366{left:690.750000px;}
.x2b_c00366{left:692.250000px;}
.x39_c00366{left:693.750000px;}
.xe_c00366{left:696.000000px;}
.x8e_c00366{left:697.500000px;}
.xcf_c00366{left:698.700000px;}
.x4a_c00366{left:699.900000px;}
.xb5_c00366{left:703.200000px;}
.xc5_c00366{left:705.450000px;}
.x114_c00366{left:707.550000px;}
.xe2_c00366{left:709.050000px;}
.xad_c00366{left:710.550000px;}
.x3a_c00366{left:711.750000px;}
.x1c_c00366{left:715.650000px;}
.x82_c00366{left:718.950000px;}
.xf_c00366{left:721.500000px;}
.xe3_c00366{left:726.300000px;}
.x100_c00366{left:727.350000px;}
.xec_c00366{left:728.850000px;}
.x11b_c00366{left:729.900000px;}
.x69_c00366{left:731.100000px;}
.x9e_c00366{left:733.050000px;}
.xc6_c00366{left:734.550000px;}
.x2c_c00366{left:735.750000px;}
.x5e_c00366{left:738.750000px;}
.xd5_c00366{left:740.100000px;}
.xf2_c00366{left:741.450000px;}
.x3b_c00366{left:745.650000px;}
.x98_c00366{left:747.900000px;}
.x4b_c00366{left:749.550000px;}
.x71_c00366{left:751.950000px;}
.xbe_c00366{left:754.050000px;}
.x1d_c00366{left:756.750000px;}
.x130_c00366{left:758.100000px;}
.x6a_c00366{left:760.950000px;}
.x9f_c00366{left:762.900000px;}
.xf8_c00366{left:766.800000px;}
.xd0_c00366{left:767.850000px;}
.x2d_c00366{left:770.250000px;}
.x10e_c00366{left:771.900000px;}
.xbf_c00366{left:773.550000px;}
.x3c_c00366{left:777.000000px;}
.x1e_c00366{left:778.350000px;}
.x119_c00366{left:781.050000px;}
.x101_c00366{left:782.100000px;}
.x10a_c00366{left:787.950000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws1_c00366{word-spacing:-10.666667pt;}
.ws13_c00366{word-spacing:-9.433595pt;}
.ws6_c00366{word-spacing:-4.222222pt;}
.ws5_c00366{word-spacing:-3.888889pt;}
.wsc_c00366{word-spacing:-2.777778pt;}
.ws0_c00366{word-spacing:-2.555556pt;}
.wsa_c00366{word-spacing:-2.291834pt;}
.wse_c00366{word-spacing:-1.444444pt;}
.ws10_c00366{word-spacing:-0.037488pt;}
.ws14_c00366{word-spacing:0.000000pt;}
.wsd_c00366{word-spacing:0.222222pt;}
.ws8_c00366{word-spacing:0.499831pt;}
.ws4_c00366{word-spacing:1.111111pt;}
.ws7_c00366{word-spacing:2.761435pt;}
.wsb_c00366{word-spacing:4.111111pt;}
.ws12_c00366{word-spacing:4.289599pt;}
.ws11_c00366{word-spacing:4.423974pt;}
.ws3_c00366{word-spacing:5.111111pt;}
.wsf_c00366{word-spacing:5.175387pt;}
.ws9_c00366{word-spacing:6.888889pt;}
.ws2_c00366{word-spacing:7.882195pt;}
._0_c00366{width:31.777778pt;}
.fs0_c00366{font-size:48.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y2c_c00366{bottom:136.666667pt;}
.y2b_c00366{bottom:150.666667pt;}
.y2a_c00366{bottom:164.533333pt;}
.y29_c00366{bottom:204.933333pt;}
.y28_c00366{bottom:222.800000pt;}
.y27_c00366{bottom:240.400000pt;}
.y26_c00366{bottom:258.266667pt;}
.y25_c00366{bottom:276.400000pt;}
.y24_c00366{bottom:294.266667pt;}
.y23_c00366{bottom:311.866667pt;}
.y22_c00366{bottom:329.733333pt;}
.y21_c00366{bottom:347.333333pt;}
.y20_c00366{bottom:365.200000pt;}
.y1f_c00366{bottom:382.800000pt;}
.y1e_c00366{bottom:400.666667pt;}
.y1d_c00366{bottom:418.266667pt;}
.y1c_c00366{bottom:436.133333pt;}
.y1b_c00366{bottom:454.266667pt;}
.y1a_c00366{bottom:472.133333pt;}
.y19_c00366{bottom:489.733333pt;}
.y18_c00366{bottom:507.600000pt;}
.y17_c00366{bottom:525.200000pt;}
.y16_c00366{bottom:542.800000pt;}
.y15_c00366{bottom:561.066667pt;}
.y14_c00366{bottom:578.666667pt;}
.y13_c00366{bottom:596.533333pt;}
.y12_c00366{bottom:614.133333pt;}
.y11_c00366{bottom:631.733333pt;}
.y10_c00366{bottom:649.600000pt;}
.yf_c00366{bottom:667.466667pt;}
.ye_c00366{bottom:685.333333pt;}
.yd_c00366{bottom:703.200000pt;}
.yc_c00366{bottom:721.066667pt;}
.yb_c00366{bottom:738.933333pt;}
.ya_c00366{bottom:756.800000pt;}
.y9_c00366{bottom:774.133333pt;}
.y8_c00366{bottom:792.000000pt;}
.y7_c00366{bottom:810.000000pt;}
.y6_c00366{bottom:827.866667pt;}
.y5_c00366{bottom:845.466667pt;}
.y4_c00366{bottom:863.733333pt;}
.y3_c00366{bottom:881.600000pt;}
.y2_c00366{bottom:899.200000pt;}
.y1_c00366{bottom:933.066667pt;}
.h2_c00366{height:48.000000pt;}
.h0_c00366{height:1037.119955pt;}
.h1_c00366{height:1037.333333pt;}
.w1_c00366{width:812.000000pt;}
.w0_c00366{width:812.159993pt;}
.x0_c00366{left:0.000000pt;}
.x3_c00366{left:111.333333pt;}
.x1_c00366{left:112.266667pt;}
.x10f_c00366{left:113.333333pt;}
.xd1_c00366{left:122.933333pt;}
.x99_c00366{left:124.666667pt;}
.x12c_c00366{left:130.266667pt;}
.x5f_c00366{left:133.733333pt;}
.xd6_c00366{left:135.600000pt;}
.x10_c00366{left:138.933333pt;}
.x9a_c00366{left:140.000000pt;}
.x2e_c00366{left:141.066667pt;}
.x12d_c00366{left:142.133333pt;}
.xa7_c00366{left:144.000000pt;}
.x102_c00366{left:145.200000pt;}
.xb6_c00366{left:146.666667pt;}
.x4_c00366{left:151.600000pt;}
.x1f_c00366{left:154.266667pt;}
.x11c_c00366{left:156.000000pt;}
.x3d_c00366{left:156.933333pt;}
.xc0_c00366{left:160.533333pt;}
.xb7_c00366{left:162.000000pt;}
.x60_c00366{left:163.200000pt;}
.x11_c00366{left:165.200000pt;}
.xf9_c00366{left:168.933333pt;}
.x110_c00366{left:170.000000pt;}
.xae_c00366{left:171.066667pt;}
.xed_c00366{left:173.066667pt;}
.x8f_c00366{left:174.000000pt;}
.xd2_c00366{left:175.066667pt;}
.x115_c00366{left:177.066667pt;}
.xe4_c00366{left:179.066667pt;}
.xd7_c00366{left:181.600000pt;}
.x3e_c00366{left:182.533333pt;}
.x4c_c00366{left:184.400000pt;}
.x126_c00366{left:186.400000pt;}
.x6b_c00366{left:187.466667pt;}
.x2f_c00366{left:189.333333pt;}
.x83_c00366{left:191.066667pt;}
.x72_c00366{left:192.266667pt;}
.xe8_c00366{left:193.200000pt;}
.x9b_c00366{left:196.933333pt;}
.x120_c00366{left:198.800000pt;}
.x30_c00366{left:200.266667pt;}
.x5_c00366{left:205.333333pt;}
.x20_c00366{left:206.400000pt;}
.x11d_c00366{left:207.866667pt;}
.x61_c00366{left:208.933333pt;}
.xd3_c00366{left:210.000000pt;}
.xaf_c00366{left:211.066667pt;}
.x3f_c00366{left:212.666667pt;}
.x121_c00366{left:215.466667pt;}
.xfa_c00366{left:218.800000pt;}
.xa0_c00366{left:221.200000pt;}
.x4d_c00366{left:222.400000pt;}
.x116_c00366{left:223.466667pt;}
.x54_c00366{left:224.400000pt;}
.xdd_c00366{left:225.866667pt;}
.x62_c00366{left:227.866667pt;}
.x6c_c00366{left:229.066667pt;}
.x6_c00366{left:230.000000pt;}
.x12_c00366{left:231.066667pt;}
.x10b_c00366{left:233.333333pt;}
.xfb_c00366{left:234.533333pt;}
.xe9_c00366{left:235.733333pt;}
.x79_c00366{left:237.333333pt;}
.x40_c00366{left:240.533333pt;}
.xc7_c00366{left:241.466667pt;}
.xc1_c00366{left:242.800000pt;}
.xd8_c00366{left:245.866667pt;}
.xb8_c00366{left:248.133333pt;}
.x84_c00366{left:249.600000pt;}
.x31_c00366{left:250.533333pt;}
.x41_c00366{left:253.600000pt;}
.xe7_c00366{left:255.200000pt;}
.xc2_c00366{left:256.533333pt;}
.x103_c00366{left:257.600000pt;}
.xf3_c00366{left:258.666667pt;}
.x85_c00366{left:260.533333pt;}
.xde_c00366{left:263.333333pt;}
.x55_c00366{left:264.400000pt;}
.x6d_c00366{left:266.800000pt;}
.xee_c00366{left:268.400000pt;}
.x131_c00366{left:269.333333pt;}
.x90_c00366{left:271.200000pt;}
.x21_c00366{left:273.600000pt;}
.x4e_c00366{left:276.133333pt;}
.x104_c00366{left:278.133333pt;}
.x42_c00366{left:279.200000pt;}
.x9c_c00366{left:280.533333pt;}
.x13_c00366{left:281.600000pt;}
.x73_c00366{left:285.733333pt;}
.x63_c00366{left:287.333333pt;}
.xfc_c00366{left:288.666667pt;}
.x43_c00366{left:290.133333pt;}
.x4f_c00366{left:292.400000pt;}
.xf4_c00366{left:294.533333pt;}
.xd9_c00366{left:295.466667pt;}
.x7a_c00366{left:296.533333pt;}
.x91_c00366{left:297.466667pt;}
.x14_c00366{left:298.933333pt;}
.xc3_c00366{left:300.400000pt;}
.xfd_c00366{left:302.400000pt;}
.x105_c00366{left:303.466667pt;}
.x56_c00366{left:306.933333pt;}
.x7_c00366{left:308.666667pt;}
.xa1_c00366{left:310.133333pt;}
.xb0_c00366{left:311.200000pt;}
.x15_c00366{left:312.400000pt;}
.xb9_c00366{left:314.000000pt;}
.x64_c00366{left:316.133333pt;}
.x12a_c00366{left:317.333333pt;}
.x122_c00366{left:319.466667pt;}
.x44_c00366{left:320.533333pt;}
.x50_c00366{left:323.733333pt;}
.x57_c00366{left:326.400000pt;}
.x32_c00366{left:329.466667pt;}
.x22_c00366{left:331.200000pt;}
.xda_c00366{left:332.533333pt;}
.x65_c00366{left:333.466667pt;}
.x8_c00366{left:335.600000pt;}
.x51_c00366{left:338.133333pt;}
.xa2_c00366{left:340.533333pt;}
.x7b_c00366{left:343.600000pt;}
.x6e_c00366{left:345.200000pt;}
.x23_c00366{left:348.133333pt;}
.x11a_c00366{left:349.333333pt;}
.xa8_c00366{left:350.666667pt;}
.x45_c00366{left:352.800000pt;}
.x86_c00366{left:354.933333pt;}
.x92_c00366{left:356.933333pt;}
.x111_c00366{left:357.866667pt;}
.x16_c00366{left:358.800000pt;}
.x9_c00366{left:360.533333pt;}
.x127_c00366{left:366.133333pt;}
.x24_c00366{left:367.066667pt;}
.x112_c00366{left:369.733333pt;}
.x132_c00366{left:370.800000pt;}
.xba_c00366{left:373.200000pt;}
.x2_c00366{left:377.200000pt;}
.x7c_c00366{left:378.800000pt;}
.x33_c00366{left:381.600000pt;}
.x87_c00366{left:382.800000pt;}
.xa3_c00366{left:384.266667pt;}
.xc8_c00366{left:385.866667pt;}
.x6f_c00366{left:387.066667pt;}
.x123_c00366{left:388.000000pt;}
.xa_c00366{left:389.333333pt;}
.x12b_c00366{left:390.933333pt;}
.x52_c00366{left:391.866667pt;}
.x106_c00366{left:395.600000pt;}
.x17_c00366{left:397.466667pt;}
.xc9_c00366{left:398.933333pt;}
.x93_c00366{left:400.800000pt;}
.x34_c00366{left:404.000000pt;}
.xbb_c00366{left:404.933333pt;}
.x46_c00366{left:405.866667pt;}
.x88_c00366{left:408.666667pt;}
.x107_c00366{left:409.733333pt;}
.x58_c00366{left:412.800000pt;}
.xbc_c00366{left:416.400000pt;}
.x74_c00366{left:417.600000pt;}
.xe5_c00366{left:419.066667pt;}
.xea_c00366{left:420.133333pt;}
.x128_c00366{left:421.466667pt;}
.xef_c00366{left:422.400000pt;}
.xf5_c00366{left:425.066667pt;}
.x18_c00366{left:426.000000pt;}
.x7d_c00366{left:428.000000pt;}
.x47_c00366{left:429.866667pt;}
.x25_c00366{left:431.333333pt;}
.xa9_c00366{left:432.266667pt;}
.xca_c00366{left:435.466667pt;}
.x129_c00366{left:439.733333pt;}
.xfe_c00366{left:441.066667pt;}
.x35_c00366{left:444.266667pt;}
.x10c_c00366{left:445.466667pt;}
.x94_c00366{left:449.066667pt;}
.xb1_c00366{left:451.066667pt;}
.x7e_c00366{left:454.266667pt;}
.x12e_c00366{left:455.733333pt;}
.x89_c00366{left:458.266667pt;}
.xcb_c00366{left:459.200000pt;}
.x75_c00366{left:461.066667pt;}
.x53_c00366{left:462.533333pt;}
.x117_c00366{left:463.733333pt;}
.x26_c00366{left:469.733333pt;}
.x95_c00366{left:472.133333pt;}
.x19_c00366{left:473.333333pt;}
.xb2_c00366{left:475.333333pt;}
.x11f_c00366{left:476.266667pt;}
.x59_c00366{left:477.466667pt;}
.xb_c00366{left:479.200000pt;}
.x11e_c00366{left:481.866667pt;}
.x9d_c00366{left:484.533333pt;}
.x8a_c00366{left:487.066667pt;}
.x7f_c00366{left:488.933333pt;}
.x96_c00366{left:490.666667pt;}
.xdf_c00366{left:491.733333pt;}
.x48_c00366{left:493.200000pt;}
.xdb_c00366{left:495.066667pt;}
.x27_c00366{left:496.000000pt;}
.x36_c00366{left:498.000000pt;}
.xf6_c00366{left:499.333333pt;}
.x108_c00366{left:500.666667pt;}
.x1a_c00366{left:503.733333pt;}
.x8b_c00366{left:505.600000pt;}
.x76_c00366{left:506.800000pt;}
.xc_c00366{left:508.933333pt;}
.xa4_c00366{left:514.533333pt;}
.x5a_c00366{left:516.133333pt;}
.xaa_c00366{left:518.000000pt;}
.x37_c00366{left:520.666667pt;}
.x80_c00366{left:523.466667pt;}
.xeb_c00366{left:526.266667pt;}
.xb3_c00366{left:527.200000pt;}
.x118_c00366{left:528.133333pt;}
.xcc_c00366{left:529.600000pt;}
.x5b_c00366{left:532.133333pt;}
.x28_c00366{left:533.466667pt;}
.xf0_c00366{left:534.800000pt;}
.x66_c00366{left:539.466667pt;}
.xa5_c00366{left:542.000000pt;}
.xcd_c00366{left:544.933333pt;}
.x109_c00366{left:547.066667pt;}
.xe0_c00366{left:548.400000pt;}
.x8c_c00366{left:549.866667pt;}
.x29_c00366{left:551.066667pt;}
.x124_c00366{left:552.133333pt;}
.xab_c00366{left:553.466667pt;}
.xb4_c00366{left:555.066667pt;}
.x97_c00366{left:557.866667pt;}
.xd4_c00366{left:559.066667pt;}
.xd_c00366{left:560.133333pt;}
.x77_c00366{left:562.800000pt;}
.xc4_c00366{left:564.400000pt;}
.x38_c00366{left:565.466667pt;}
.xf1_c00366{left:568.133333pt;}
.xe6_c00366{left:569.200000pt;}
.x49_c00366{left:570.666667pt;}
.x8d_c00366{left:572.266667pt;}
.x12f_c00366{left:573.333333pt;}
.x2a_c00366{left:576.666667pt;}
.x5c_c00366{left:578.266667pt;}
.x1b_c00366{left:581.466667pt;}
.x125_c00366{left:583.466667pt;}
.xff_c00366{left:584.400000pt;}
.x67_c00366{left:585.866667pt;}
.x78_c00366{left:588.133333pt;}
.x113_c00366{left:589.200000pt;}
.x70_c00366{left:592.000000pt;}
.xce_c00366{left:593.866667pt;}
.xbd_c00366{left:596.666667pt;}
.x5d_c00366{left:599.333333pt;}
.x81_c00366{left:601.600000pt;}
.x10d_c00366{left:602.666667pt;}
.xdc_c00366{left:604.266667pt;}
.xac_c00366{left:606.000000pt;}
.xf7_c00366{left:608.933333pt;}
.x68_c00366{left:609.866667pt;}
.xa6_c00366{left:612.133333pt;}
.xe1_c00366{left:614.000000pt;}
.x2b_c00366{left:615.333333pt;}
.x39_c00366{left:616.666667pt;}
.xe_c00366{left:618.666667pt;}
.x8e_c00366{left:620.000000pt;}
.xcf_c00366{left:621.066667pt;}
.x4a_c00366{left:622.133333pt;}
.xb5_c00366{left:625.066667pt;}
.xc5_c00366{left:627.066667pt;}
.x114_c00366{left:628.933333pt;}
.xe2_c00366{left:630.266667pt;}
.xad_c00366{left:631.600000pt;}
.x3a_c00366{left:632.666667pt;}
.x1c_c00366{left:636.133333pt;}
.x82_c00366{left:639.066667pt;}
.xf_c00366{left:641.333333pt;}
.xe3_c00366{left:645.600000pt;}
.x100_c00366{left:646.533333pt;}
.xec_c00366{left:647.866667pt;}
.x11b_c00366{left:648.800000pt;}
.x69_c00366{left:649.866667pt;}
.x9e_c00366{left:651.600000pt;}
.xc6_c00366{left:652.933333pt;}
.x2c_c00366{left:654.000000pt;}
.x5e_c00366{left:656.666667pt;}
.xd5_c00366{left:657.866667pt;}
.xf2_c00366{left:659.066667pt;}
.x3b_c00366{left:662.800000pt;}
.x98_c00366{left:664.800000pt;}
.x4b_c00366{left:666.266667pt;}
.x71_c00366{left:668.400000pt;}
.xbe_c00366{left:670.266667pt;}
.x1d_c00366{left:672.666667pt;}
.x130_c00366{left:673.866667pt;}
.x6a_c00366{left:676.400000pt;}
.x9f_c00366{left:678.133333pt;}
.xf8_c00366{left:681.600000pt;}
.xd0_c00366{left:682.533333pt;}
.x2d_c00366{left:684.666667pt;}
.x10e_c00366{left:686.133333pt;}
.xbf_c00366{left:687.600000pt;}
.x3c_c00366{left:690.666667pt;}
.x1e_c00366{left:691.866667pt;}
.x119_c00366{left:694.266667pt;}
.x101_c00366{left:695.200000pt;}
.x10a_c00366{left:700.400000pt;}
}





/* 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_c00367 {
    display:none;
  }
  .loading-indicator_c00367.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00367 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_c00367 { 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_c00367" -> "#page-container .classname_c00367")
 */
.pf_c00367 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00367 { /* 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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00367 { /* 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_c00367 { /* 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_c00367 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00367 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00367 {overflow:visible;}
  }
}
.c_c00367 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00367 { /* 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_c00367:after { /* webkit #35443 */
  content: '';
}
.t_c00367:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00367 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 */
}
.__c00367 { /* 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_c00367 { /* info for Javascript */
  display:none;
}
.l_c00367 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00367 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00367 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00367: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_c00367 {
    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_c00367.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00367.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_c00367 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00367{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00367;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.000000;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;}
.m5f_c00367{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m54_c00367{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m76_c00367{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m12_c00367{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m55_c00367{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00367{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00367{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m80_c00367{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m67_c00367{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00367{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00367{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m81_c00367{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m40_c00367{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00367{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00367{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m57_c00367{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m61_c00367{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m33_c00367{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00367{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00367{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m13_c00367{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00367{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m47_c00367{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00367{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00367{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m53_c00367{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00367{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00367{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00367{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m79_c00367{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m63_c00367{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m24_c00367{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00367{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb_c00367{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00367{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00367{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me_c00367{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m45_c00367{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m52_c00367{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m68_c00367{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m56_c00367{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m44_c00367{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m70_c00367{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m17_c00367{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m25_c00367{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00367{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m27_c00367{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3_c00367{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00367{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m59_c00367{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00367{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m41_c00367{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m30_c00367{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00367{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00367{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m48_c00367{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m71_c00367{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m72_c00367{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c00367{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00367{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m64_c00367{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m15_c00367{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2_c00367{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m32_c00367{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m22_c00367{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m75_c00367{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma_c00367{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00367{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m46_c00367{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8_c00367{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m58_c00367{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m78_c00367{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6_c00367{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00367{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00367{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md_c00367{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00367{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00367{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m23_c00367{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m74_c00367{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00367{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m34_c00367{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m19_c00367{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m51_c00367{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9_c00367{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00367{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m21_c00367{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00367{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00367{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m73_c00367{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m14_c00367{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00367{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m31_c00367{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00367{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4_c00367{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m43_c00367{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m65_c00367{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m28_c00367{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29_c00367{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m0_c00367{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00367{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18_c00367{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00367{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m11_c00367{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m38_c00367{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.mf_c00367{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m16_c00367{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m35_c00367{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00367{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m20_c00367{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m69_c00367{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00367{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc_c00367{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00367{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00367{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m26_c00367{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00367{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00367{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00367{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m1_c00367{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00367{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00367{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00367{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m37_c00367{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m50_c00367{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m60_c00367{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m77_c00367{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m49_c00367{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00367{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m36_c00367{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00367{vertical-align:0.000000px;}
.ls0_c00367{letter-spacing:0.000000px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{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__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:-8.671875px;}
.ws1_c00367{word-spacing:-3.398438px;}
.ws6_c00367{word-spacing:0.000000px;}
.ws4_c00367{word-spacing:1.666667px;}
.ws3_c00367{word-spacing:8.333333px;}
.ws5_c00367{word-spacing:9.589041px;}
.ws2_c00367{word-spacing:11.428571px;}
._0_c00367{width:30.937500px;}
.fc0_c00367{color:transparent;}
.fs0_c00367{font-size:60.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1d_c00367{bottom:452.550000px;}
.y1c_c00367{bottom:468.000000px;}
.y1b_c00367{bottom:503.850000px;}
.y1a_c00367{bottom:523.950000px;}
.y19_c00367{bottom:544.500000px;}
.y18_c00367{bottom:564.300000px;}
.y17_c00367{bottom:584.100000px;}
.y16_c00367{bottom:604.200000px;}
.y15_c00367{bottom:624.000000px;}
.y14_c00367{bottom:644.100000px;}
.y13_c00367{bottom:663.900000px;}
.y12_c00367{bottom:683.400000px;}
.y11_c00367{bottom:703.200000px;}
.y10_c00367{bottom:723.300000px;}
.yf_c00367{bottom:743.400000px;}
.ye_c00367{bottom:763.200000px;}
.yd_c00367{bottom:783.300000px;}
.yc_c00367{bottom:803.100000px;}
.yb_c00367{bottom:823.200000px;}
.ya_c00367{bottom:843.300000px;}
.y9_c00367{bottom:863.400000px;}
.y8_c00367{bottom:883.200000px;}
.y7_c00367{bottom:903.000000px;}
.y6_c00367{bottom:923.100000px;}
.y5_c00367{bottom:943.200000px;}
.y4_c00367{bottom:963.000000px;}
.y3_c00367{bottom:983.250000px;}
.y2_c00367{bottom:1003.350000px;}
.y1_c00367{bottom:1041.150000px;}
.h2_c00367{height:60.000000px;}
.h0_c00367{height:1166.759949px;}
.h1_c00367{height:1167.000000px;}
.w1_c00367{width:913.500000px;}
.w0_c00367{width:913.679993px;}
.x0_c00367{left:0.000000px;}
.xc5_c00367{left:108.750000px;}
.x3_c00367{left:109.800000px;}
.x7b_c00367{left:129.750000px;}
.x5d_c00367{left:132.000000px;}
.x28_c00367{left:133.050000px;}
.xee_c00367{left:135.000000px;}
.x88_c00367{left:137.100000px;}
.x1b_c00367{left:141.150000px;}
.xb4_c00367{left:144.450000px;}
.x35_c00367{left:147.150000px;}
.xd8_c00367{left:149.250000px;}
.xdb_c00367{left:153.150000px;}
.x94_c00367{left:155.250000px;}
.xa3_c00367{left:158.100000px;}
.x40_c00367{left:160.350000px;}
.x12_c00367{left:162.300000px;}
.x1c_c00367{left:164.850000px;}
.xd3_c00367{left:168.000000px;}
.x4_c00367{left:169.950000px;}
.xbc_c00367{left:175.350000px;}
.x6a_c00367{left:178.050000px;}
.x5e_c00367{left:180.300000px;}
.x7c_c00367{left:181.650000px;}
.x41_c00367{left:183.750000px;}
.x5_c00367{left:188.250000px;}
.x13_c00367{left:193.200000px;}
.x4f_c00367{left:199.350000px;}
.x7d_c00367{left:204.750000px;}
.xa4_c00367{left:209.550000px;}
.x14_c00367{left:211.200000px;}
.x29_c00367{left:214.350000px;}
.x9e_c00367{left:216.450000px;}
.xc6_c00367{left:217.500000px;}
.xd4_c00367{left:219.150000px;}
.xcd_c00367{left:222.750000px;}
.x36_c00367{left:229.950000px;}
.x7e_c00367{left:232.050000px;}
.xac_c00367{left:233.400000px;}
.x50_c00367{left:236.400000px;}
.xe5_c00367{left:239.700000px;}
.x2a_c00367{left:242.100000px;}
.x15_c00367{left:243.300000px;}
.x89_c00367{left:245.400000px;}
.x71_c00367{left:246.900000px;}
.xdc_c00367{left:250.350000px;}
.xd9_c00367{left:252.300000px;}
.x5f_c00367{left:254.400000px;}
.x7f_c00367{left:256.500000px;}
.x9f_c00367{left:258.900000px;}
.x42_c00367{left:263.550000px;}
.x6b_c00367{left:265.200000px;}
.x6_c00367{left:270.300000px;}
.x60_c00367{left:273.450000px;}
.x51_c00367{left:276.750000px;}
.xa0_c00367{left:279.450000px;}
.x2b_c00367{left:281.400000px;}
.x1d_c00367{left:283.350000px;}
.xe7_c00367{left:286.350000px;}
.x16_c00367{left:288.000000px;}
.x37_c00367{left:291.450000px;}
.x52_c00367{left:292.950000px;}
.x6c_c00367{left:295.050000px;}
.xf3_c00367{left:296.700000px;}
.x43_c00367{left:298.800000px;}
.xc7_c00367{left:300.000000px;}
.x7_c00367{left:303.000000px;}
.xda_c00367{left:304.800000px;}
.x17_c00367{left:308.850000px;}
.x61_c00367{left:311.550000px;}
.xe8_c00367{left:314.100000px;}
.xa5_c00367{left:315.150000px;}
.x72_c00367{left:318.150000px;}
.xb5_c00367{left:319.350000px;}
.xdd_c00367{left:323.700000px;}
.x1e_c00367{left:324.750000px;}
.xa6_c00367{left:326.250000px;}
.x38_c00367{left:328.200000px;}
.x8_c00367{left:329.700000px;}
.xad_c00367{left:331.350000px;}
.x80_c00367{left:335.700000px;}
.x18_c00367{left:337.350000px;}
.x53_c00367{left:339.750000px;}
.x95_c00367{left:341.850000px;}
.xa7_c00367{left:343.200000px;}
.x44_c00367{left:345.600000px;}
.x8a_c00367{left:348.300000px;}
.xf4_c00367{left:349.950000px;}
.x73_c00367{left:351.600000px;}
.xd5_c00367{left:352.800000px;}
.x9_c00367{left:355.950000px;}
.x8b_c00367{left:358.800000px;}
.x96_c00367{left:359.850000px;}
.x45_c00367{left:366.150000px;}
.xce_c00367{left:370.050000px;}
.x54_c00367{left:371.100000px;}
.x81_c00367{left:373.500000px;}
.xde_c00367{left:375.900000px;}
.xbd_c00367{left:376.950000px;}
.x39_c00367{left:379.350000px;}
.xe9_c00367{left:380.700000px;}
.x8c_c00367{left:382.950000px;}
.x62_c00367{left:384.150000px;}
.xae_c00367{left:386.400000px;}
.x97_c00367{left:388.650000px;}
.xa8_c00367{left:393.300000px;}
.xa_c00367{left:396.300000px;}
.x2c_c00367{left:401.250000px;}
.xbe_c00367{left:403.650000px;}
.x19_c00367{left:405.450000px;}
.x3a_c00367{left:406.650000px;}
.xaf_c00367{left:407.700000px;}
.x55_c00367{left:411.450000px;}
.x46_c00367{left:415.800000px;}
.x74_c00367{left:417.450000px;}
.xdf_c00367{left:419.400000px;}
.x1_c00367{left:424.800000px;}
.x63_c00367{left:426.600000px;}
.xb_c00367{left:437.400000px;}
.x2d_c00367{left:440.850000px;}
.xb6_c00367{left:445.950000px;}
.x1f_c00367{left:447.450000px;}
.x98_c00367{left:448.800000px;}
.x8d_c00367{left:451.950000px;}
.xea_c00367{left:453.300000px;}
.x47_c00367{left:454.650000px;}
.xbf_c00367{left:456.150000px;}
.x2e_c00367{left:458.850000px;}
.x75_c00367{left:462.150000px;}
.x1a_c00367{left:467.400000px;}
.x99_c00367{left:468.900000px;}
.xb7_c00367{left:471.900000px;}
.x20_c00367{left:474.150000px;}
.x3b_c00367{left:477.900000px;}
.x56_c00367{left:482.700000px;}
.xe6_c00367{left:484.200000px;}
.x82_c00367{left:486.900000px;}
.x8e_c00367{left:489.000000px;}
.xa9_c00367{left:492.600000px;}
.xc_c00367{left:494.700000px;}
.x2f_c00367{left:496.950000px;}
.x48_c00367{left:500.400000px;}
.xd6_c00367{left:503.250000px;}
.x3c_c00367{left:505.200000px;}
.xe0_c00367{left:506.550000px;}
.xc0_c00367{left:510.150000px;}
.x76_c00367{left:513.150000px;}
.x21_c00367{left:514.800000px;}
.xb0_c00367{left:516.450000px;}
.x9a_c00367{left:517.500000px;}
.x30_c00367{left:523.650000px;}
.xc8_c00367{left:525.450000px;}
.xef_c00367{left:526.650000px;}
.x64_c00367{left:527.850000px;}
.x49_c00367{left:531.000000px;}
.xaa_c00367{left:532.200000px;}
.xd_c00367{left:534.600000px;}
.xb8_c00367{left:536.400000px;}
.x57_c00367{left:539.550000px;}
.x9b_c00367{left:540.900000px;}
.xcf_c00367{left:544.650000px;}
.x31_c00367{left:549.150000px;}
.x83_c00367{left:550.650000px;}
.x8f_c00367{left:553.050000px;}
.x22_c00367{left:556.200000px;}
.xd7_c00367{left:559.350000px;}
.xeb_c00367{left:560.850000px;}
.xc1_c00367{left:563.850000px;}
.x3d_c00367{left:567.150000px;}
.x9c_c00367{left:568.950000px;}
.x58_c00367{left:571.950000px;}
.x23_c00367{left:574.200000px;}
.xe1_c00367{left:576.750000px;}
.xec_c00367{left:580.350000px;}
.xf0_c00367{left:581.700000px;}
.xa1_c00367{left:584.400000px;}
.x32_c00367{left:585.900000px;}
.x90_c00367{left:587.250000px;}
.x4a_c00367{left:590.400000px;}
.x77_c00367{left:593.850000px;}
.xc2_c00367{left:595.500000px;}
.x84_c00367{left:597.450000px;}
.xe_c00367{left:598.650000px;}
.xc9_c00367{left:604.350000px;}
.xb1_c00367{left:605.700000px;}
.x24_c00367{left:608.100000px;}
.xd0_c00367{left:610.200000px;}
.x59_c00367{left:612.300000px;}
.x85_c00367{left:614.700000px;}
.xab_c00367{left:618.900000px;}
.xc3_c00367{left:623.250000px;}
.x3e_c00367{left:624.750000px;}
.x4b_c00367{left:626.100000px;}
.xca_c00367{left:627.750000px;}
.x78_c00367{left:630.600000px;}
.x25_c00367{left:634.050000px;}
.xf1_c00367{left:636.000000px;}
.x6d_c00367{left:637.200000px;}
.xed_c00367{left:639.450000px;}
.xf_c00367{left:644.400000px;}
.x4c_c00367{left:645.900000px;}
.x65_c00367{left:647.100000px;}
.x91_c00367{left:653.100000px;}
.x86_c00367{left:656.400000px;}
.xe2_c00367{left:661.800000px;}
.x5a_c00367{left:663.000000px;}
.xb2_c00367{left:667.200000px;}
.x66_c00367{left:669.000000px;}
.x3f_c00367{left:671.250000px;}
.x4d_c00367{left:672.900000px;}
.xd1_c00367{left:677.100000px;}
.xa2_c00367{left:679.350000px;}
.xc4_c00367{left:681.150000px;}
.x87_c00367{left:685.500000px;}
.x79_c00367{left:688.200000px;}
.x33_c00367{left:690.000000px;}
.x26_c00367{left:691.050000px;}
.x6e_c00367{left:692.700000px;}
.x67_c00367{left:697.500000px;}
.xb9_c00367{left:699.150000px;}
.xe3_c00367{left:703.200000px;}
.x10_c00367{left:706.650000px;}
.x5b_c00367{left:707.700000px;}
.x7a_c00367{left:714.450000px;}
.x92_c00367{left:716.850000px;}
.x6f_c00367{left:718.200000px;}
.x34_c00367{left:720.300000px;}
.x9d_c00367{left:722.550000px;}
.x27_c00367{left:726.000000px;}
.xba_c00367{left:731.250000px;}
.x68_c00367{left:735.300000px;}
.xcb_c00367{left:737.250000px;}
.x11_c00367{left:739.050000px;}
.x5c_c00367{left:744.000000px;}
.x4e_c00367{left:745.200000px;}
.xe4_c00367{left:746.700000px;}
.x2_c00367{left:750.600000px;}
.xd2_c00367{left:752.700000px;}
.xcc_c00367{left:754.500000px;}
.x69_c00367{left:757.950000px;}
.xbb_c00367{left:763.650000px;}
.xb3_c00367{left:765.450000px;}
.x70_c00367{left:766.800000px;}
.xf2_c00367{left:768.150000px;}
.x93_c00367{left:771.150000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:-7.708333pt;}
.ws1_c00367{word-spacing:-3.020833pt;}
.ws6_c00367{word-spacing:0.000000pt;}
.ws4_c00367{word-spacing:1.481481pt;}
.ws3_c00367{word-spacing:7.407407pt;}
.ws5_c00367{word-spacing:8.523592pt;}
.ws2_c00367{word-spacing:10.158730pt;}
._0_c00367{width:27.500000pt;}
.fs0_c00367{font-size:53.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y1d_c00367{bottom:402.266667pt;}
.y1c_c00367{bottom:416.000000pt;}
.y1b_c00367{bottom:447.866667pt;}
.y1a_c00367{bottom:465.733333pt;}
.y19_c00367{bottom:484.000000pt;}
.y18_c00367{bottom:501.600000pt;}
.y17_c00367{bottom:519.200000pt;}
.y16_c00367{bottom:537.066667pt;}
.y15_c00367{bottom:554.666667pt;}
.y14_c00367{bottom:572.533333pt;}
.y13_c00367{bottom:590.133333pt;}
.y12_c00367{bottom:607.466667pt;}
.y11_c00367{bottom:625.066667pt;}
.y10_c00367{bottom:642.933333pt;}
.yf_c00367{bottom:660.800000pt;}
.ye_c00367{bottom:678.400000pt;}
.yd_c00367{bottom:696.266667pt;}
.yc_c00367{bottom:713.866667pt;}
.yb_c00367{bottom:731.733333pt;}
.ya_c00367{bottom:749.600000pt;}
.y9_c00367{bottom:767.466667pt;}
.y8_c00367{bottom:785.066667pt;}
.y7_c00367{bottom:802.666667pt;}
.y6_c00367{bottom:820.533333pt;}
.y5_c00367{bottom:838.400000pt;}
.y4_c00367{bottom:856.000000pt;}
.y3_c00367{bottom:874.000000pt;}
.y2_c00367{bottom:891.866667pt;}
.y1_c00367{bottom:925.466667pt;}
.h2_c00367{height:53.333333pt;}
.h0_c00367{height:1037.119955pt;}
.h1_c00367{height:1037.333333pt;}
.w1_c00367{width:812.000000pt;}
.w0_c00367{width:812.159993pt;}
.x0_c00367{left:0.000000pt;}
.xc5_c00367{left:96.666667pt;}
.x3_c00367{left:97.600000pt;}
.x7b_c00367{left:115.333333pt;}
.x5d_c00367{left:117.333333pt;}
.x28_c00367{left:118.266667pt;}
.xee_c00367{left:120.000000pt;}
.x88_c00367{left:121.866667pt;}
.x1b_c00367{left:125.466667pt;}
.xb4_c00367{left:128.400000pt;}
.x35_c00367{left:130.800000pt;}
.xd8_c00367{left:132.666667pt;}
.xdb_c00367{left:136.133333pt;}
.x94_c00367{left:138.000000pt;}
.xa3_c00367{left:140.533333pt;}
.x40_c00367{left:142.533333pt;}
.x12_c00367{left:144.266667pt;}
.x1c_c00367{left:146.533333pt;}
.xd3_c00367{left:149.333333pt;}
.x4_c00367{left:151.066667pt;}
.xbc_c00367{left:155.866667pt;}
.x6a_c00367{left:158.266667pt;}
.x5e_c00367{left:160.266667pt;}
.x7c_c00367{left:161.466667pt;}
.x41_c00367{left:163.333333pt;}
.x5_c00367{left:167.333333pt;}
.x13_c00367{left:171.733333pt;}
.x4f_c00367{left:177.200000pt;}
.x7d_c00367{left:182.000000pt;}
.xa4_c00367{left:186.266667pt;}
.x14_c00367{left:187.733333pt;}
.x29_c00367{left:190.533333pt;}
.x9e_c00367{left:192.400000pt;}
.xc6_c00367{left:193.333333pt;}
.xd4_c00367{left:194.800000pt;}
.xcd_c00367{left:198.000000pt;}
.x36_c00367{left:204.400000pt;}
.x7e_c00367{left:206.266667pt;}
.xac_c00367{left:207.466667pt;}
.x50_c00367{left:210.133333pt;}
.xe5_c00367{left:213.066667pt;}
.x2a_c00367{left:215.200000pt;}
.x15_c00367{left:216.266667pt;}
.x89_c00367{left:218.133333pt;}
.x71_c00367{left:219.466667pt;}
.xdc_c00367{left:222.533333pt;}
.xd9_c00367{left:224.266667pt;}
.x5f_c00367{left:226.133333pt;}
.x7f_c00367{left:228.000000pt;}
.x9f_c00367{left:230.133333pt;}
.x42_c00367{left:234.266667pt;}
.x6b_c00367{left:235.733333pt;}
.x6_c00367{left:240.266667pt;}
.x60_c00367{left:243.066667pt;}
.x51_c00367{left:246.000000pt;}
.xa0_c00367{left:248.400000pt;}
.x2b_c00367{left:250.133333pt;}
.x1d_c00367{left:251.866667pt;}
.xe7_c00367{left:254.533333pt;}
.x16_c00367{left:256.000000pt;}
.x37_c00367{left:259.066667pt;}
.x52_c00367{left:260.400000pt;}
.x6c_c00367{left:262.266667pt;}
.xf3_c00367{left:263.733333pt;}
.x43_c00367{left:265.600000pt;}
.xc7_c00367{left:266.666667pt;}
.x7_c00367{left:269.333333pt;}
.xda_c00367{left:270.933333pt;}
.x17_c00367{left:274.533333pt;}
.x61_c00367{left:276.933333pt;}
.xe8_c00367{left:279.200000pt;}
.xa5_c00367{left:280.133333pt;}
.x72_c00367{left:282.800000pt;}
.xb5_c00367{left:283.866667pt;}
.xdd_c00367{left:287.733333pt;}
.x1e_c00367{left:288.666667pt;}
.xa6_c00367{left:290.000000pt;}
.x38_c00367{left:291.733333pt;}
.x8_c00367{left:293.066667pt;}
.xad_c00367{left:294.533333pt;}
.x80_c00367{left:298.400000pt;}
.x18_c00367{left:299.866667pt;}
.x53_c00367{left:302.000000pt;}
.x95_c00367{left:303.866667pt;}
.xa7_c00367{left:305.066667pt;}
.x44_c00367{left:307.200000pt;}
.x8a_c00367{left:309.600000pt;}
.xf4_c00367{left:311.066667pt;}
.x73_c00367{left:312.533333pt;}
.xd5_c00367{left:313.600000pt;}
.x9_c00367{left:316.400000pt;}
.x8b_c00367{left:318.933333pt;}
.x96_c00367{left:319.866667pt;}
.x45_c00367{left:325.466667pt;}
.xce_c00367{left:328.933333pt;}
.x54_c00367{left:329.866667pt;}
.x81_c00367{left:332.000000pt;}
.xde_c00367{left:334.133333pt;}
.xbd_c00367{left:335.066667pt;}
.x39_c00367{left:337.200000pt;}
.xe9_c00367{left:338.400000pt;}
.x8c_c00367{left:340.400000pt;}
.x62_c00367{left:341.466667pt;}
.xae_c00367{left:343.466667pt;}
.x97_c00367{left:345.466667pt;}
.xa8_c00367{left:349.600000pt;}
.xa_c00367{left:352.266667pt;}
.x2c_c00367{left:356.666667pt;}
.xbe_c00367{left:358.800000pt;}
.x19_c00367{left:360.400000pt;}
.x3a_c00367{left:361.466667pt;}
.xaf_c00367{left:362.400000pt;}
.x55_c00367{left:365.733333pt;}
.x46_c00367{left:369.600000pt;}
.x74_c00367{left:371.066667pt;}
.xdf_c00367{left:372.800000pt;}
.x1_c00367{left:377.600000pt;}
.x63_c00367{left:379.200000pt;}
.xb_c00367{left:388.800000pt;}
.x2d_c00367{left:391.866667pt;}
.xb6_c00367{left:396.400000pt;}
.x1f_c00367{left:397.733333pt;}
.x98_c00367{left:398.933333pt;}
.x8d_c00367{left:401.733333pt;}
.xea_c00367{left:402.933333pt;}
.x47_c00367{left:404.133333pt;}
.xbf_c00367{left:405.466667pt;}
.x2e_c00367{left:407.866667pt;}
.x75_c00367{left:410.800000pt;}
.x1a_c00367{left:415.466667pt;}
.x99_c00367{left:416.800000pt;}
.xb7_c00367{left:419.466667pt;}
.x20_c00367{left:421.466667pt;}
.x3b_c00367{left:424.800000pt;}
.x56_c00367{left:429.066667pt;}
.xe6_c00367{left:430.400000pt;}
.x82_c00367{left:432.800000pt;}
.x8e_c00367{left:434.666667pt;}
.xa9_c00367{left:437.866667pt;}
.xc_c00367{left:439.733333pt;}
.x2f_c00367{left:441.733333pt;}
.x48_c00367{left:444.800000pt;}
.xd6_c00367{left:447.333333pt;}
.x3c_c00367{left:449.066667pt;}
.xe0_c00367{left:450.266667pt;}
.xc0_c00367{left:453.466667pt;}
.x76_c00367{left:456.133333pt;}
.x21_c00367{left:457.600000pt;}
.xb0_c00367{left:459.066667pt;}
.x9a_c00367{left:460.000000pt;}
.x30_c00367{left:465.466667pt;}
.xc8_c00367{left:467.066667pt;}
.xef_c00367{left:468.133333pt;}
.x64_c00367{left:469.200000pt;}
.x49_c00367{left:472.000000pt;}
.xaa_c00367{left:473.066667pt;}
.xd_c00367{left:475.200000pt;}
.xb8_c00367{left:476.800000pt;}
.x57_c00367{left:479.600000pt;}
.x9b_c00367{left:480.800000pt;}
.xcf_c00367{left:484.133333pt;}
.x31_c00367{left:488.133333pt;}
.x83_c00367{left:489.466667pt;}
.x8f_c00367{left:491.600000pt;}
.x22_c00367{left:494.400000pt;}
.xd7_c00367{left:497.200000pt;}
.xeb_c00367{left:498.533333pt;}
.xc1_c00367{left:501.200000pt;}
.x3d_c00367{left:504.133333pt;}
.x9c_c00367{left:505.733333pt;}
.x58_c00367{left:508.400000pt;}
.x23_c00367{left:510.400000pt;}
.xe1_c00367{left:512.666667pt;}
.xec_c00367{left:515.866667pt;}
.xf0_c00367{left:517.066667pt;}
.xa1_c00367{left:519.466667pt;}
.x32_c00367{left:520.800000pt;}
.x90_c00367{left:522.000000pt;}
.x4a_c00367{left:524.800000pt;}
.x77_c00367{left:527.866667pt;}
.xc2_c00367{left:529.333333pt;}
.x84_c00367{left:531.066667pt;}
.xe_c00367{left:532.133333pt;}
.xc9_c00367{left:537.200000pt;}
.xb1_c00367{left:538.400000pt;}
.x24_c00367{left:540.533333pt;}
.xd0_c00367{left:542.400000pt;}
.x59_c00367{left:544.266667pt;}
.x85_c00367{left:546.400000pt;}
.xab_c00367{left:550.133333pt;}
.xc3_c00367{left:554.000000pt;}
.x3e_c00367{left:555.333333pt;}
.x4b_c00367{left:556.533333pt;}
.xca_c00367{left:558.000000pt;}
.x78_c00367{left:560.533333pt;}
.x25_c00367{left:563.600000pt;}
.xf1_c00367{left:565.333333pt;}
.x6d_c00367{left:566.400000pt;}
.xed_c00367{left:568.400000pt;}
.xf_c00367{left:572.800000pt;}
.x4c_c00367{left:574.133333pt;}
.x65_c00367{left:575.200000pt;}
.x91_c00367{left:580.533333pt;}
.x86_c00367{left:583.466667pt;}
.xe2_c00367{left:588.266667pt;}
.x5a_c00367{left:589.333333pt;}
.xb2_c00367{left:593.066667pt;}
.x66_c00367{left:594.666667pt;}
.x3f_c00367{left:596.666667pt;}
.x4d_c00367{left:598.133333pt;}
.xd1_c00367{left:601.866667pt;}
.xa2_c00367{left:603.866667pt;}
.xc4_c00367{left:605.466667pt;}
.x87_c00367{left:609.333333pt;}
.x79_c00367{left:611.733333pt;}
.x33_c00367{left:613.333333pt;}
.x26_c00367{left:614.266667pt;}
.x6e_c00367{left:615.733333pt;}
.x67_c00367{left:620.000000pt;}
.xb9_c00367{left:621.466667pt;}
.xe3_c00367{left:625.066667pt;}
.x10_c00367{left:628.133333pt;}
.x5b_c00367{left:629.066667pt;}
.x7a_c00367{left:635.066667pt;}
.x92_c00367{left:637.200000pt;}
.x6f_c00367{left:638.400000pt;}
.x34_c00367{left:640.266667pt;}
.x9d_c00367{left:642.266667pt;}
.x27_c00367{left:645.333333pt;}
.xba_c00367{left:650.000000pt;}
.x68_c00367{left:653.600000pt;}
.xcb_c00367{left:655.333333pt;}
.x11_c00367{left:656.933333pt;}
.x5c_c00367{left:661.333333pt;}
.x4e_c00367{left:662.400000pt;}
.xe4_c00367{left:663.733333pt;}
.x2_c00367{left:667.200000pt;}
.xd2_c00367{left:669.066667pt;}
.xcc_c00367{left:670.666667pt;}
.x69_c00367{left:673.733333pt;}
.xbb_c00367{left:678.800000pt;}
.xb3_c00367{left:680.400000pt;}
.x70_c00367{left:681.600000pt;}
.xf2_c00367{left:682.800000pt;}
.x93_c00367{left:685.466667pt;}
}





/* 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_c00368 {
    display:none;
  }
  .loading-indicator_c00368.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00368 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_c00368 { 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_c00368" -> "#page-container .classname_c00368")
 */
.pf_c00368 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00368 { /* 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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00368 { /* 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_c00368 { /* 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_c00368 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00368 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00368 {overflow:visible;}
  }
}
.c_c00368 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00368 { /* 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_c00368:after { /* webkit #35443 */
  content: '';
}
.t_c00368:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00368 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 */
}
.__c00368 { /* 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_c00368 { /* info for Javascript */
  display:none;
}
.l_c00368 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00368 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00368 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00368: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_c00368 {
    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_c00368.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00368.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_c00368 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00368{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00368;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.000000;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;}
.m1f_c00368{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m98_c00368{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00368{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m80_c00368{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m32_c00368{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m97_c00368{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00368{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m46_c00368{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m52_c00368{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00368{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m19_c00368{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m96_c00368{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00368{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m58_c00368{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m99_c00368{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m60_c00368{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m81_c00368{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m88_c00368{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m64_c00368{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00368{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00368{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00368{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m37_c00368{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m82_c00368{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00368{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m13_c00368{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m61_c00368{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m79_c00368{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m40_c00368{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00368{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m78_c00368{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m56_c00368{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m24_c00368{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00368{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m51_c00368{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m69_c00368{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m44_c00368{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00368{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m94_c00368{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00368{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m90_c00368{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00368{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m47_c00368{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m30_c00368{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00368{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00368{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m68_c00368{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m95_c00368{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m22_c00368{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m35_c00368{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m84_c00368{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m25_c00368{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00368{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11_c00368{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00368{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00368{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m55_c00368{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m86_c00368{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00368{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00368{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00368{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m72_c00368{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00368{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00368{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m27_c00368{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00368{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00368{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m36_c00368{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m49_c00368{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mf_c00368{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma_c00368{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00368{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00368{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00368{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m91_c00368{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m54_c00368{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m83_c00368{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m28_c00368{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00368{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m17_c00368{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m75_c00368{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.md_c00368{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m41_c00368{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m21_c00368{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00368{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00368{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00368{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00368{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m67_c00368{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00368{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00368{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00368{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m53_c00368{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00368{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00368{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00368{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m15_c00368{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m59_c00368{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m85_c00368{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m14_c00368{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00368{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00368{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m26_c00368{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00368{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m57_c00368{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00368{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m77_c00368{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00368{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00368{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00368{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18_c00368{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00368{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m50_c00368{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00368{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00368{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m20_c00368{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m23_c00368{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m74_c00368{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m76_c00368{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m38_c00368{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m87_c00368{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m89_c00368{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m92_c00368{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m66_c00368{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00368{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m12_c00368{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00368{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m43_c00368{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m45_c00368{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m39_c00368{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m65_c00368{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m63_c00368{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00368{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00368{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00368{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00368{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m71_c00368{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m31_c00368{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m93_c00368{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m33_c00368{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00368{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m34_c00368{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m62_c00368{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m29_c00368{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00368{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m16_c00368{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6_c00368{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m73_c00368{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00368{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00368{transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367250,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00368{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls0_c00368{letter-spacing:0.000000px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{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__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00368{word-spacing:-5.714286px;}
.ws8_c00368{word-spacing:0.000000px;}
.ws5_c00368{word-spacing:1.617647px;}
.ws4_c00368{word-spacing:2.109375px;}
.ws0_c00368{word-spacing:3.658537px;}
.ws2_c00368{word-spacing:5.223214px;}
.ws1_c00368{word-spacing:8.571429px;}
.ws3_c00368{word-spacing:13.472222px;}
.ws7_c00368{word-spacing:17.946429px;}
.fc0_c00368{color:transparent;}
.fs1_c00368{font-size:42.000000px;}
.fs3_c00368{font-size:54.000000px;}
.fs2_c00368{font-size:60.000000px;}
.fs0_c00368{font-size:66.000000px;}
.y0_c00368{bottom:0.000000px;}
.y23_c00368{bottom:148.350000px;}
.y22_c00368{bottom:163.350000px;}
.y21_c00368{bottom:179.250000px;}
.y20_c00368{bottom:206.700000px;}
.y1f_c00368{bottom:226.800000px;}
.y1e_c00368{bottom:246.600000px;}
.y1d_c00368{bottom:266.400000px;}
.y1c_c00368{bottom:286.200000px;}
.y1b_c00368{bottom:306.300000px;}
.y1a_c00368{bottom:326.400000px;}
.y19_c00368{bottom:346.200000px;}
.y18_c00368{bottom:366.000000px;}
.y17_c00368{bottom:385.800000px;}
.y16_c00368{bottom:405.900000px;}
.y15_c00368{bottom:425.700000px;}
.y14_c00368{bottom:445.800000px;}
.y13_c00368{bottom:465.600000px;}
.y12_c00368{bottom:485.700000px;}
.y11_c00368{bottom:505.800000px;}
.y10_c00368{bottom:525.900000px;}
.yf_c00368{bottom:545.700000px;}
.ye_c00368{bottom:565.500000px;}
.yd_c00368{bottom:585.000000px;}
.yc_c00368{bottom:605.100000px;}
.yb_c00368{bottom:624.600000px;}
.ya_c00368{bottom:644.700000px;}
.y9_c00368{bottom:664.650000px;}
.y8_c00368{bottom:684.750000px;}
.y7_c00368{bottom:705.300000px;}
.y6_c00368{bottom:725.100000px;}
.y5_c00368{bottom:744.900000px;}
.y4_c00368{bottom:765.000000px;}
.y3_c00368{bottom:797.700000px;}
.y2_c00368{bottom:831.600000px;}
.y1_c00368{bottom:1049.700000px;}
.h3_c00368{height:42.000000px;}
.h5_c00368{height:54.000000px;}
.h4_c00368{height:60.000000px;}
.h2_c00368{height:66.000000px;}
.h0_c00368{height:1166.759949px;}
.h1_c00368{height:1167.000000px;}
.w1_c00368{width:913.500000px;}
.w0_c00368{width:913.679993px;}
.x0_c00368{left:0.000000px;}
.xcd_c00368{left:130.500000px;}
.x7_c00368{left:131.700000px;}
.x84_c00368{left:132.900000px;}
.x106_c00368{left:145.200000px;}
.xce_c00368{left:148.500000px;}
.x101_c00368{left:149.700000px;}
.x4a_c00368{left:151.050000px;}
.x8d_c00368{left:153.000000px;}
.x17_c00368{left:158.550000px;}
.xad_c00368{left:160.500000px;}
.x3c_c00368{left:162.900000px;}
.x8_c00368{left:164.850000px;}
.xd7_c00368{left:166.950000px;}
.x30_c00368{left:169.950000px;}
.xc3_c00368{left:176.700000px;}
.xa3_c00368{left:181.950000px;}
.x62_c00368{left:183.600000px;}
.x3d_c00368{left:185.250000px;}
.x31_c00368{left:190.800000px;}
.x59_c00368{left:200.250000px;}
.x7a_c00368{left:204.300000px;}
.x32_c00368{left:206.700000px;}
.x63_c00368{left:207.750000px;}
.x18_c00368{left:208.950000px;}
.x24_c00368{left:210.000000px;}
.x4b_c00368{left:212.250000px;}
.x70_c00368{left:213.750000px;}
.xec_c00368{left:217.350000px;}
.x3e_c00368{left:220.950000px;}
.x9_c00368{left:222.450000px;}
.xae_c00368{left:225.000000px;}
.x95_c00368{left:228.000000px;}
.xa4_c00368{left:231.150000px;}
.xdd_c00368{left:234.900000px;}
.x7b_c00368{left:235.950000px;}
.x64_c00368{left:238.350000px;}
.xc9_c00368{left:241.200000px;}
.x102_c00368{left:242.550000px;}
.x71_c00368{left:243.600000px;}
.x108_c00368{left:245.100000px;}
.xe4_c00368{left:246.450000px;}
.xaf_c00368{left:248.400000px;}
.x25_c00368{left:250.650000px;}
.x3f_c00368{left:253.050000px;}
.x109_c00368{left:254.100000px;}
.xb5_c00368{left:260.250000px;}
.x33_c00368{left:261.750000px;}
.x96_c00368{left:262.950000px;}
.xf6_c00368{left:265.800000px;}
.x103_c00368{left:268.500000px;}
.x7c_c00368{left:269.850000px;}
.xa_c00368{left:271.050000px;}
.x4f_c00368{left:274.350000px;}
.xfb_c00368{left:275.400000px;}
.x5a_c00368{left:276.600000px;}
.xb6_c00368{left:279.750000px;}
.x65_c00368{left:283.050000px;}
.x19_c00368{left:285.600000px;}
.xb0_c00368{left:289.500000px;}
.xd8_c00368{left:293.700000px;}
.xc4_c00368{left:297.450000px;}
.x26_c00368{left:298.500000px;}
.xe5_c00368{left:299.700000px;}
.x50_c00368{left:301.050000px;}
.x4c_c00368{left:303.000000px;}
.xde_c00368{left:306.150000px;}
.x5b_c00368{left:308.250000px;}
.xa5_c00368{left:312.900000px;}
.xb_c00368{left:315.300000px;}
.x8e_c00368{left:318.600000px;}
.xca_c00368{left:319.650000px;}
.x4d_c00368{left:323.550000px;}
.xf4_c00368{left:326.100000px;}
.x97_c00368{left:327.300000px;}
.x66_c00368{left:329.550000px;}
.x7d_c00368{left:334.950000px;}
.x85_c00368{left:338.400000px;}
.xfc_c00368{left:339.450000px;}
.xe6_c00368{left:341.100000px;}
.xc_c00368{left:342.600000px;}
.x40_c00368{left:344.400000px;}
.x34_c00368{left:346.650000px;}
.x4e_c00368{left:349.050000px;}
.x7e_c00368{left:350.100000px;}
.xbb_c00368{left:351.450000px;}
.x51_c00368{left:352.500000px;}
.xa6_c00368{left:355.050000px;}
.x98_c00368{left:356.850000px;}
.x27_c00368{left:362.250000px;}
.xb1_c00368{left:364.050000px;}
.x10a_c00368{left:366.750000px;}
.x8f_c00368{left:371.850000px;}
.x1a_c00368{left:374.550000px;}
.xed_c00368{left:375.750000px;}
.x2_c00368{left:377.700000px;}
.x72_c00368{left:379.200000px;}
.x67_c00368{left:381.450000px;}
.x86_c00368{left:383.100000px;}
.x41_c00368{left:384.750000px;}
.xf7_c00368{left:388.050000px;}
.x1b_c00368{left:389.250000px;}
.xdf_c00368{left:390.750000px;}
.x28_c00368{left:391.800000px;}
.x35_c00368{left:393.150000px;}
.x107_c00368{left:395.700000px;}
.xe7_c00368{left:397.200000px;}
.x99_c00368{left:399.300000px;}
.x4_c00368{left:402.900000px;}
.x68_c00368{left:404.550000px;}
.x42_c00368{left:409.650000px;}
.x90_c00368{left:412.800000px;}
.xc5_c00368{left:414.750000px;}
.xe8_c00368{left:416.250000px;}
.xf8_c00368{left:424.350000px;}
.xe0_c00368{left:426.000000px;}
.xd_c00368{left:427.200000px;}
.xcf_c00368{left:429.300000px;}
.x1c_c00368{left:430.650000px;}
.xbc_c00368{left:433.950000px;}
.x52_c00368{left:435.900000px;}
.xd9_c00368{left:437.400000px;}
.x43_c00368{left:441.300000px;}
.x87_c00368{left:444.300000px;}
.xfd_c00368{left:445.650000px;}
.x9a_c00368{left:447.600000px;}
.xe1_c00368{left:451.500000px;}
.x1_c00368{left:453.300000px;}
.xe_c00368{left:455.700000px;}
.x73_c00368{left:458.100000px;}
.x1d_c00368{left:459.150000px;}
.xee_c00368{left:463.500000px;}
.x53_c00368{left:469.800000px;}
.x5_c00368{left:471.600000px;}
.xa7_c00368{left:473.100000px;}
.x44_c00368{left:474.450000px;}
.x29_c00368{left:480.300000px;}
.x5c_c00368{left:481.500000px;}
.xef_c00368{left:482.550000px;}
.xd0_c00368{left:483.600000px;}
.xbd_c00368{left:484.650000px;}
.x69_c00368{left:487.800000px;}
.x3_c00368{left:489.600000px;}
.xb2_c00368{left:496.800000px;}
.x45_c00368{left:498.900000px;}
.x9b_c00368{left:500.100000px;}
.xbe_c00368{left:504.150000px;}
.x74_c00368{left:505.200000px;}
.x36_c00368{left:507.150000px;}
.xf_c00368{left:509.700000px;}
.xf0_c00368{left:511.050000px;}
.xf5_c00368{left:512.400000px;}
.x2a_c00368{left:513.750000px;}
.xfe_c00368{left:516.150000px;}
.xc6_c00368{left:519.450000px;}
.xa8_c00368{left:521.400000px;}
.x88_c00368{left:522.750000px;}
.x46_c00368{left:525.150000px;}
.x6_c00368{left:527.100000px;}
.x37_c00368{left:528.750000px;}
.x9c_c00368{left:533.250000px;}
.x10_c00368{left:534.900000px;}
.xb3_c00368{left:536.700000px;}
.x54_c00368{left:541.800000px;}
.x104_c00368{left:544.200000px;}
.x9d_c00368{left:545.550000px;}
.xa9_c00368{left:547.350000px;}
.x1e_c00368{left:550.950000px;}
.xb7_c00368{left:553.050000px;}
.xd1_c00368{left:554.100000px;}
.x47_c00368{left:556.500000px;}
.x75_c00368{left:557.850000px;}
.xe9_c00368{left:559.950000px;}
.x6a_c00368{left:562.350000px;}
.x7f_c00368{left:563.550000px;}
.xaa_c00368{left:567.450000px;}
.x55_c00368{left:570.300000px;}
.xd2_c00368{left:571.350000px;}
.x89_c00368{left:573.900000px;}
.x2b_c00368{left:574.950000px;}
.x38_c00368{left:576.600000px;}
.xc7_c00368{left:578.850000px;}
.x91_c00368{left:580.200000px;}
.xea_c00368{left:583.650000px;}
.x9e_c00368{left:586.200000px;}
.x80_c00368{left:590.250000px;}
.xd3_c00368{left:591.450000px;}
.x1f_c00368{left:592.650000px;}
.x39_c00368{left:597.150000px;}
.xf9_c00368{left:599.250000px;}
.x6b_c00368{left:601.200000px;}
.x8a_c00368{left:602.400000px;}
.x9f_c00368{left:603.900000px;}
.xb8_c00368{left:605.250000px;}
.x76_c00368{left:607.200000px;}
.xd4_c00368{left:609.150000px;}
.x5d_c00368{left:612.600000px;}
.x81_c00368{left:616.950000px;}
.x48_c00368{left:618.450000px;}
.x77_c00368{left:621.900000px;}
.x2c_c00368{left:623.850000px;}
.x11_c00368{left:625.650000px;}
.xcb_c00368{left:628.050000px;}
.xda_c00368{left:630.300000px;}
.xff_c00368{left:631.650000px;}
.xbf_c00368{left:634.350000px;}
.xfa_c00368{left:636.750000px;}
.x6c_c00368{left:639.750000px;}
.x12_c00368{left:642.900000px;}
.x49_c00368{left:643.950000px;}
.x78_c00368{left:645.000000px;}
.x2d_c00368{left:647.250000px;}
.xab_c00368{left:651.300000px;}
.x56_c00368{left:652.350000px;}
.x13_c00368{left:655.200000px;}
.x92_c00368{left:656.550000px;}
.x2e_c00368{left:664.200000px;}
.xa0_c00368{left:665.400000px;}
.x5e_c00368{left:667.650000px;}
.x57_c00368{left:676.500000px;}
.xac_c00368{left:678.600000px;}
.x5f_c00368{left:682.050000px;}
.x14_c00368{left:683.700000px;}
.xb9_c00368{left:685.200000px;}
.xe2_c00368{left:686.700000px;}
.x79_c00368{left:690.000000px;}
.x6d_c00368{left:693.750000px;}
.x93_c00368{left:696.450000px;}
.xd5_c00368{left:697.650000px;}
.xf1_c00368{left:700.050000px;}
.x15_c00368{left:701.400000px;}
.x20_c00368{left:703.200000px;}
.x82_c00368{left:704.850000px;}
.x6e_c00368{left:709.950000px;}
.x100_c00368{left:711.600000px;}
.xe3_c00368{left:712.650000px;}
.x3a_c00368{left:717.750000px;}
.x21_c00368{left:719.400000px;}
.xa1_c00368{left:720.900000px;}
.xf2_c00368{left:722.700000px;}
.xba_c00368{left:725.850000px;}
.x8b_c00368{left:727.350000px;}
.xb4_c00368{left:729.600000px;}
.xc0_c00368{left:730.800000px;}
.x83_c00368{left:733.350000px;}
.x2f_c00368{left:735.900000px;}
.xd6_c00368{left:736.950000px;}
.x6f_c00368{left:738.000000px;}
.xc8_c00368{left:739.800000px;}
.x105_c00368{left:741.450000px;}
.xa2_c00368{left:745.350000px;}
.xeb_c00368{left:747.450000px;}
.xc1_c00368{left:750.900000px;}
.x3b_c00368{left:751.950000px;}
.x22_c00368{left:753.600000px;}
.x58_c00368{left:754.950000px;}
.x60_c00368{left:759.750000px;}
.xdb_c00368{left:762.750000px;}
.x16_c00368{left:764.100000px;}
.x94_c00368{left:766.950000px;}
.xcc_c00368{left:769.500000px;}
.x23_c00368{left:770.550000px;}
.xf3_c00368{left:776.400000px;}
.xc2_c00368{left:777.900000px;}
.x61_c00368{left:779.850000px;}
.xdc_c00368{left:786.900000px;}
.x8c_c00368{left:788.100000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws6_c00368{word-spacing:-5.079365pt;}
.ws8_c00368{word-spacing:0.000000pt;}
.ws5_c00368{word-spacing:1.437908pt;}
.ws4_c00368{word-spacing:1.875000pt;}
.ws0_c00368{word-spacing:3.252033pt;}
.ws2_c00368{word-spacing:4.642857pt;}
.ws1_c00368{word-spacing:7.619048pt;}
.ws3_c00368{word-spacing:11.975309pt;}
.ws7_c00368{word-spacing:15.952381pt;}
.fs1_c00368{font-size:37.333333pt;}
.fs3_c00368{font-size:48.000000pt;}
.fs2_c00368{font-size:53.333333pt;}
.fs0_c00368{font-size:58.666667pt;}
.y0_c00368{bottom:0.000000pt;}
.y23_c00368{bottom:131.866667pt;}
.y22_c00368{bottom:145.200000pt;}
.y21_c00368{bottom:159.333333pt;}
.y20_c00368{bottom:183.733333pt;}
.y1f_c00368{bottom:201.600000pt;}
.y1e_c00368{bottom:219.200000pt;}
.y1d_c00368{bottom:236.800000pt;}
.y1c_c00368{bottom:254.400000pt;}
.y1b_c00368{bottom:272.266667pt;}
.y1a_c00368{bottom:290.133333pt;}
.y19_c00368{bottom:307.733333pt;}
.y18_c00368{bottom:325.333333pt;}
.y17_c00368{bottom:342.933333pt;}
.y16_c00368{bottom:360.800000pt;}
.y15_c00368{bottom:378.400000pt;}
.y14_c00368{bottom:396.266667pt;}
.y13_c00368{bottom:413.866667pt;}
.y12_c00368{bottom:431.733333pt;}
.y11_c00368{bottom:449.600000pt;}
.y10_c00368{bottom:467.466667pt;}
.yf_c00368{bottom:485.066667pt;}
.ye_c00368{bottom:502.666667pt;}
.yd_c00368{bottom:520.000000pt;}
.yc_c00368{bottom:537.866667pt;}
.yb_c00368{bottom:555.200000pt;}
.ya_c00368{bottom:573.066667pt;}
.y9_c00368{bottom:590.800000pt;}
.y8_c00368{bottom:608.666667pt;}
.y7_c00368{bottom:626.933333pt;}
.y6_c00368{bottom:644.533333pt;}
.y5_c00368{bottom:662.133333pt;}
.y4_c00368{bottom:680.000000pt;}
.y3_c00368{bottom:709.066667pt;}
.y2_c00368{bottom:739.200000pt;}
.y1_c00368{bottom:933.066667pt;}
.h3_c00368{height:37.333333pt;}
.h5_c00368{height:48.000000pt;}
.h4_c00368{height:53.333333pt;}
.h2_c00368{height:58.666667pt;}
.h0_c00368{height:1037.119955pt;}
.h1_c00368{height:1037.333333pt;}
.w1_c00368{width:812.000000pt;}
.w0_c00368{width:812.159993pt;}
.x0_c00368{left:0.000000pt;}
.xcd_c00368{left:116.000000pt;}
.x7_c00368{left:117.066667pt;}
.x84_c00368{left:118.133333pt;}
.x106_c00368{left:129.066667pt;}
.xce_c00368{left:132.000000pt;}
.x101_c00368{left:133.066667pt;}
.x4a_c00368{left:134.266667pt;}
.x8d_c00368{left:136.000000pt;}
.x17_c00368{left:140.933333pt;}
.xad_c00368{left:142.666667pt;}
.x3c_c00368{left:144.800000pt;}
.x8_c00368{left:146.533333pt;}
.xd7_c00368{left:148.400000pt;}
.x30_c00368{left:151.066667pt;}
.xc3_c00368{left:157.066667pt;}
.xa3_c00368{left:161.733333pt;}
.x62_c00368{left:163.200000pt;}
.x3d_c00368{left:164.666667pt;}
.x31_c00368{left:169.600000pt;}
.x59_c00368{left:178.000000pt;}
.x7a_c00368{left:181.600000pt;}
.x32_c00368{left:183.733333pt;}
.x63_c00368{left:184.666667pt;}
.x18_c00368{left:185.733333pt;}
.x24_c00368{left:186.666667pt;}
.x4b_c00368{left:188.666667pt;}
.x70_c00368{left:190.000000pt;}
.xec_c00368{left:193.200000pt;}
.x3e_c00368{left:196.400000pt;}
.x9_c00368{left:197.733333pt;}
.xae_c00368{left:200.000000pt;}
.x95_c00368{left:202.666667pt;}
.xa4_c00368{left:205.466667pt;}
.xdd_c00368{left:208.800000pt;}
.x7b_c00368{left:209.733333pt;}
.x64_c00368{left:211.866667pt;}
.xc9_c00368{left:214.400000pt;}
.x102_c00368{left:215.600000pt;}
.x71_c00368{left:216.533333pt;}
.x108_c00368{left:217.866667pt;}
.xe4_c00368{left:219.066667pt;}
.xaf_c00368{left:220.800000pt;}
.x25_c00368{left:222.800000pt;}
.x3f_c00368{left:224.933333pt;}
.x109_c00368{left:225.866667pt;}
.xb5_c00368{left:231.333333pt;}
.x33_c00368{left:232.666667pt;}
.x96_c00368{left:233.733333pt;}
.xf6_c00368{left:236.266667pt;}
.x103_c00368{left:238.666667pt;}
.x7c_c00368{left:239.866667pt;}
.xa_c00368{left:240.933333pt;}
.x4f_c00368{left:243.866667pt;}
.xfb_c00368{left:244.800000pt;}
.x5a_c00368{left:245.866667pt;}
.xb6_c00368{left:248.666667pt;}
.x65_c00368{left:251.600000pt;}
.x19_c00368{left:253.866667pt;}
.xb0_c00368{left:257.333333pt;}
.xd8_c00368{left:261.066667pt;}
.xc4_c00368{left:264.400000pt;}
.x26_c00368{left:265.333333pt;}
.xe5_c00368{left:266.400000pt;}
.x50_c00368{left:267.600000pt;}
.x4c_c00368{left:269.333333pt;}
.xde_c00368{left:272.133333pt;}
.x5b_c00368{left:274.000000pt;}
.xa5_c00368{left:278.133333pt;}
.xb_c00368{left:280.266667pt;}
.x8e_c00368{left:283.200000pt;}
.xca_c00368{left:284.133333pt;}
.x4d_c00368{left:287.600000pt;}
.xf4_c00368{left:289.866667pt;}
.x97_c00368{left:290.933333pt;}
.x66_c00368{left:292.933333pt;}
.x7d_c00368{left:297.733333pt;}
.x85_c00368{left:300.800000pt;}
.xfc_c00368{left:301.733333pt;}
.xe6_c00368{left:303.200000pt;}
.xc_c00368{left:304.533333pt;}
.x40_c00368{left:306.133333pt;}
.x34_c00368{left:308.133333pt;}
.x4e_c00368{left:310.266667pt;}
.x7e_c00368{left:311.200000pt;}
.xbb_c00368{left:312.400000pt;}
.x51_c00368{left:313.333333pt;}
.xa6_c00368{left:315.600000pt;}
.x98_c00368{left:317.200000pt;}
.x27_c00368{left:322.000000pt;}
.xb1_c00368{left:323.600000pt;}
.x10a_c00368{left:326.000000pt;}
.x8f_c00368{left:330.533333pt;}
.x1a_c00368{left:332.933333pt;}
.xed_c00368{left:334.000000pt;}
.x2_c00368{left:335.733333pt;}
.x72_c00368{left:337.066667pt;}
.x67_c00368{left:339.066667pt;}
.x86_c00368{left:340.533333pt;}
.x41_c00368{left:342.000000pt;}
.xf7_c00368{left:344.933333pt;}
.x1b_c00368{left:346.000000pt;}
.xdf_c00368{left:347.333333pt;}
.x28_c00368{left:348.266667pt;}
.x35_c00368{left:349.466667pt;}
.x107_c00368{left:351.733333pt;}
.xe7_c00368{left:353.066667pt;}
.x99_c00368{left:354.933333pt;}
.x4_c00368{left:358.133333pt;}
.x68_c00368{left:359.600000pt;}
.x42_c00368{left:364.133333pt;}
.x90_c00368{left:366.933333pt;}
.xc5_c00368{left:368.666667pt;}
.xe8_c00368{left:370.000000pt;}
.xf8_c00368{left:377.200000pt;}
.xe0_c00368{left:378.666667pt;}
.xd_c00368{left:379.733333pt;}
.xcf_c00368{left:381.600000pt;}
.x1c_c00368{left:382.800000pt;}
.xbc_c00368{left:385.733333pt;}
.x52_c00368{left:387.466667pt;}
.xd9_c00368{left:388.800000pt;}
.x43_c00368{left:392.266667pt;}
.x87_c00368{left:394.933333pt;}
.xfd_c00368{left:396.133333pt;}
.x9a_c00368{left:397.866667pt;}
.xe1_c00368{left:401.333333pt;}
.x1_c00368{left:402.933333pt;}
.xe_c00368{left:405.066667pt;}
.x73_c00368{left:407.200000pt;}
.x1d_c00368{left:408.133333pt;}
.xee_c00368{left:412.000000pt;}
.x53_c00368{left:417.600000pt;}
.x5_c00368{left:419.200000pt;}
.xa7_c00368{left:420.533333pt;}
.x44_c00368{left:421.733333pt;}
.x29_c00368{left:426.933333pt;}
.x5c_c00368{left:428.000000pt;}
.xef_c00368{left:428.933333pt;}
.xd0_c00368{left:429.866667pt;}
.xbd_c00368{left:430.800000pt;}
.x69_c00368{left:433.600000pt;}
.x3_c00368{left:435.200000pt;}
.xb2_c00368{left:441.600000pt;}
.x45_c00368{left:443.466667pt;}
.x9b_c00368{left:444.533333pt;}
.xbe_c00368{left:448.133333pt;}
.x74_c00368{left:449.066667pt;}
.x36_c00368{left:450.800000pt;}
.xf_c00368{left:453.066667pt;}
.xf0_c00368{left:454.266667pt;}
.xf5_c00368{left:455.466667pt;}
.x2a_c00368{left:456.666667pt;}
.xfe_c00368{left:458.800000pt;}
.xc6_c00368{left:461.733333pt;}
.xa8_c00368{left:463.466667pt;}
.x88_c00368{left:464.666667pt;}
.x46_c00368{left:466.800000pt;}
.x6_c00368{left:468.533333pt;}
.x37_c00368{left:470.000000pt;}
.x9c_c00368{left:474.000000pt;}
.x10_c00368{left:475.466667pt;}
.xb3_c00368{left:477.066667pt;}
.x54_c00368{left:481.600000pt;}
.x104_c00368{left:483.733333pt;}
.x9d_c00368{left:484.933333pt;}
.xa9_c00368{left:486.533333pt;}
.x1e_c00368{left:489.733333pt;}
.xb7_c00368{left:491.600000pt;}
.xd1_c00368{left:492.533333pt;}
.x47_c00368{left:494.666667pt;}
.x75_c00368{left:495.866667pt;}
.xe9_c00368{left:497.733333pt;}
.x6a_c00368{left:499.866667pt;}
.x7f_c00368{left:500.933333pt;}
.xaa_c00368{left:504.400000pt;}
.x55_c00368{left:506.933333pt;}
.xd2_c00368{left:507.866667pt;}
.x89_c00368{left:510.133333pt;}
.x2b_c00368{left:511.066667pt;}
.x38_c00368{left:512.533333pt;}
.xc7_c00368{left:514.533333pt;}
.x91_c00368{left:515.733333pt;}
.xea_c00368{left:518.800000pt;}
.x9e_c00368{left:521.066667pt;}
.x80_c00368{left:524.666667pt;}
.xd3_c00368{left:525.733333pt;}
.x1f_c00368{left:526.800000pt;}
.x39_c00368{left:530.800000pt;}
.xf9_c00368{left:532.666667pt;}
.x6b_c00368{left:534.400000pt;}
.x8a_c00368{left:535.466667pt;}
.x9f_c00368{left:536.800000pt;}
.xb8_c00368{left:538.000000pt;}
.x76_c00368{left:539.733333pt;}
.xd4_c00368{left:541.466667pt;}
.x5d_c00368{left:544.533333pt;}
.x81_c00368{left:548.400000pt;}
.x48_c00368{left:549.733333pt;}
.x77_c00368{left:552.800000pt;}
.x2c_c00368{left:554.533333pt;}
.x11_c00368{left:556.133333pt;}
.xcb_c00368{left:558.266667pt;}
.xda_c00368{left:560.266667pt;}
.xff_c00368{left:561.466667pt;}
.xbf_c00368{left:563.866667pt;}
.xfa_c00368{left:566.000000pt;}
.x6c_c00368{left:568.666667pt;}
.x12_c00368{left:571.466667pt;}
.x49_c00368{left:572.400000pt;}
.x78_c00368{left:573.333333pt;}
.x2d_c00368{left:575.333333pt;}
.xab_c00368{left:578.933333pt;}
.x56_c00368{left:579.866667pt;}
.x13_c00368{left:582.400000pt;}
.x92_c00368{left:583.600000pt;}
.x2e_c00368{left:590.400000pt;}
.xa0_c00368{left:591.466667pt;}
.x5e_c00368{left:593.466667pt;}
.x57_c00368{left:601.333333pt;}
.xac_c00368{left:603.200000pt;}
.x5f_c00368{left:606.266667pt;}
.x14_c00368{left:607.733333pt;}
.xb9_c00368{left:609.066667pt;}
.xe2_c00368{left:610.400000pt;}
.x79_c00368{left:613.333333pt;}
.x6d_c00368{left:616.666667pt;}
.x93_c00368{left:619.066667pt;}
.xd5_c00368{left:620.133333pt;}
.xf1_c00368{left:622.266667pt;}
.x15_c00368{left:623.466667pt;}
.x20_c00368{left:625.066667pt;}
.x82_c00368{left:626.533333pt;}
.x6e_c00368{left:631.066667pt;}
.x100_c00368{left:632.533333pt;}
.xe3_c00368{left:633.466667pt;}
.x3a_c00368{left:638.000000pt;}
.x21_c00368{left:639.466667pt;}
.xa1_c00368{left:640.800000pt;}
.xf2_c00368{left:642.400000pt;}
.xba_c00368{left:645.200000pt;}
.x8b_c00368{left:646.533333pt;}
.xb4_c00368{left:648.533333pt;}
.xc0_c00368{left:649.600000pt;}
.x83_c00368{left:651.866667pt;}
.x2f_c00368{left:654.133333pt;}
.xd6_c00368{left:655.066667pt;}
.x6f_c00368{left:656.000000pt;}
.xc8_c00368{left:657.600000pt;}
.x105_c00368{left:659.066667pt;}
.xa2_c00368{left:662.533333pt;}
.xeb_c00368{left:664.400000pt;}
.xc1_c00368{left:667.466667pt;}
.x3b_c00368{left:668.400000pt;}
.x22_c00368{left:669.866667pt;}
.x58_c00368{left:671.066667pt;}
.x60_c00368{left:675.333333pt;}
.xdb_c00368{left:678.000000pt;}
.x16_c00368{left:679.200000pt;}
.x94_c00368{left:681.733333pt;}
.xcc_c00368{left:684.000000pt;}
.x23_c00368{left:684.933333pt;}
.xf3_c00368{left:690.133333pt;}
.xc2_c00368{left:691.466667pt;}
.x61_c00368{left:693.200000pt;}
.xdc_c00368{left:699.466667pt;}
.x8c_c00368{left:700.533333pt;}
}





/* 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_c00369 {
    display:none;
  }
  .loading-indicator_c00369.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00369 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_c00369 { 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_c00369" -> "#page-container .classname_c00369")
 */
.pf_c00369 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00369 { /* 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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00369 { /* 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_c00369 { /* 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_c00369 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00369 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00369 {overflow:visible;}
  }
}
.c_c00369 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00369 { /* 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_c00369:after { /* webkit #35443 */
  content: '';
}
.t_c00369:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00369 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 */
}
.__c00369 { /* 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_c00369 { /* info for Javascript */
  display:none;
}
.l_c00369 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00369 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00369 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00369: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_c00369 {
    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_c00369.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00369.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_c00369 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00369{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00369;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.000000;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;}
.ma_c00369{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00369{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00369{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00369{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m89_c00369{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00369{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00369{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00369{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m95_c00369{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m55_c00369{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb_c00369{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m60_c00369{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m14_c00369{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m59_c00369{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00369{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.me_c00369{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m94_c00369{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m66_c00369{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00369{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m31_c00369{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m52_c00369{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00369{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m79_c00369{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m85_c00369{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00369{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00369{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00369{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00369{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m93_c00369{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00369{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00369{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m61_c00369{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00369{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4_c00369{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m17_c00369{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m44_c00369{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m23_c00369{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00369{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m63_c00369{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m78_c00369{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00369{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m72_c00369{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00369{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m74_c00369{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00369{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00369{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00369{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11_c00369{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00369{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m53_c00369{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m16_c00369{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00369{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m90_c00369{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m27_c00369{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00369{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m87_c00369{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m76_c00369{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m18_c00369{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00369{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00369{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m67_c00369{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m38_c00369{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m97_c00369{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m82_c00369{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m65_c00369{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m12_c00369{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00369{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00369{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m43_c00369{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m39_c00369{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m40_c00369{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m24_c00369{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00369{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m10_c00369{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m83_c00369{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m48_c00369{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00369{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00369{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m34_c00369{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00369{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m15_c00369{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m73_c00369{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00369{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m64_c00369{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00369{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m91_c00369{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m69_c00369{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00369{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m20_c00369{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00369{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m22_c00369{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00369{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.md_c00369{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m30_c00369{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m13_c00369{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00369{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m81_c00369{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m25_c00369{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00369{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00369{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m46_c00369{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m42_c00369{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m37_c00369{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m86_c00369{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m19_c00369{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00369{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00369{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00369{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00369{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m36_c00369{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00369{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m80_c00369{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m29_c00369{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00369{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m45_c00369{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00369{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m68_c00369{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00369{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28_c00369{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00369{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00369{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00369{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m88_c00369{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21_c00369{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00369{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m70_c00369{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00369{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m47_c00369{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m32_c00369{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m54_c00369{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00369{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00369{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m26_c00369{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00369{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m92_c00369{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m77_c00369{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00369{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00369{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m57_c00369{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00369{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc_c00369{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m41_c00369{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mf_c00369{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m58_c00369{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m51_c00369{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m50_c00369{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m96_c00369{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m99_c00369{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m56_c00369{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00369{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00369{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m98_c00369{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00369{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m49_c00369{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m71_c00369{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m75_c00369{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3_c00369{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00369{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00369{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m33_c00369{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m5_c00369{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00369{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00369{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m1_c00369{transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.ls0_c00369{letter-spacing:0.000000px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{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__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00369{word-spacing:-6.184211px;}
.wse_c00369{word-spacing:-4.861111px;}
.wsa_c00369{word-spacing:-4.375000px;}
.ws12_c00369{word-spacing:0.000000px;}
.ws9_c00369{word-spacing:0.277778px;}
.ws8_c00369{word-spacing:0.937500px;}
.ws2_c00369{word-spacing:1.666667px;}
.ws11_c00369{word-spacing:1.730769px;}
.ws4_c00369{word-spacing:3.125000px;}
.wsf_c00369{word-spacing:4.054054px;}
.wsc_c00369{word-spacing:5.000000px;}
.ws5_c00369{word-spacing:6.805556px;}
.ws3_c00369{word-spacing:7.500000px;}
.ws10_c00369{word-spacing:7.631579px;}
.ws7_c00369{word-spacing:14.629630px;}
.wsb_c00369{word-spacing:22.105263px;}
.wsd_c00369{word-spacing:27.592593px;}
.ws0_c00369{word-spacing:29.696970px;}
.ws1_c00369{word-spacing:34.107143px;}
.fc0_c00369{color:transparent;}
.fs2_c00369{font-size:42.000000px;}
.fs0_c00369{font-size:54.000000px;}
.fs1_c00369{font-size:60.000000px;}
.y0_c00369{bottom:0.000000px;}
.y2d_c00369{bottom:131.700000px;}
.y2c_c00369{bottom:153.000000px;}
.y2b_c00369{bottom:173.100000px;}
.y2a_c00369{bottom:192.900000px;}
.y29_c00369{bottom:213.000000px;}
.y28_c00369{bottom:232.500000px;}
.y27_c00369{bottom:252.600000px;}
.y26_c00369{bottom:272.100000px;}
.y25_c00369{bottom:291.900000px;}
.y24_c00369{bottom:311.850000px;}
.y23_c00369{bottom:331.950000px;}
.y22_c00369{bottom:351.750000px;}
.y21_c00369{bottom:371.550000px;}
.y20_c00369{bottom:391.350000px;}
.y1f_c00369{bottom:411.150000px;}
.y1e_c00369{bottom:430.950000px;}
.y1d_c00369{bottom:450.450000px;}
.y1c_c00369{bottom:471.000000px;}
.y1b_c00369{bottom:491.100000px;}
.y1a_c00369{bottom:510.900000px;}
.y19_c00369{bottom:530.400000px;}
.y18_c00369{bottom:550.500000px;}
.y17_c00369{bottom:570.300000px;}
.y16_c00369{bottom:608.100000px;}
.y15_c00369{bottom:628.200000px;}
.y14_c00369{bottom:648.300000px;}
.y13_c00369{bottom:668.100000px;}
.y12_c00369{bottom:687.900000px;}
.y11_c00369{bottom:707.700000px;}
.y10_c00369{bottom:727.950000px;}
.yf_c00369{bottom:747.750000px;}
.ye_c00369{bottom:767.550000px;}
.yd_c00369{bottom:788.100000px;}
.yc_c00369{bottom:807.900000px;}
.yb_c00369{bottom:827.700000px;}
.ya_c00369{bottom:847.500000px;}
.y9_c00369{bottom:867.600000px;}
.y8_c00369{bottom:887.850000px;}
.y7_c00369{bottom:907.650000px;}
.y6_c00369{bottom:927.450000px;}
.y5_c00369{bottom:947.250000px;}
.y4_c00369{bottom:967.350000px;}
.y3_c00369{bottom:987.150000px;}
.y2_c00369{bottom:1006.950000px;}
.y1_c00369{bottom:1045.800000px;}
.h4_c00369{height:42.000000px;}
.h2_c00369{height:54.000000px;}
.h3_c00369{height:60.000000px;}
.h0_c00369{height:1166.759949px;}
.h1_c00369{height:1167.000000px;}
.w1_c00369{width:913.500000px;}
.w0_c00369{width:913.679993px;}
.x0_c00369{left:0.000000px;}
.x117_c00369{left:99.300000px;}
.xe7_c00369{left:100.800000px;}
.x5_c00369{left:101.850000px;}
.x9b_c00369{left:114.450000px;}
.x134_c00369{left:118.500000px;}
.x76_c00369{left:120.150000px;}
.x20_c00369{left:121.650000px;}
.xc1_c00369{left:126.750000px;}
.x2c_c00369{left:129.000000px;}
.xa6_c00369{left:130.650000px;}
.x9c_c00369{left:131.700000px;}
.x4f_c00369{left:132.900000px;}
.xf3_c00369{left:133.950000px;}
.xed_c00369{left:135.000000px;}
.xc7_c00369{left:136.950000px;}
.x43_c00369{left:139.350000px;}
.x136_c00369{left:140.700000px;}
.x81_c00369{left:141.750000px;}
.x10a_c00369{left:144.000000px;}
.x66_c00369{left:145.650000px;}
.xda_c00369{left:147.300000px;}
.xe2_c00369{left:148.800000px;}
.x121_c00369{left:149.850000px;}
.x91_c00369{left:151.800000px;}
.x21_c00369{left:154.350000px;}
.x5a_c00369{left:156.600000px;}
.x89_c00369{left:158.550000px;}
.x12d_c00369{left:159.750000px;}
.x77_c00369{left:162.300000px;}
.x113_c00369{left:164.100000px;}
.x50_c00369{left:165.600000px;}
.x38_c00369{left:167.850000px;}
.x137_c00369{left:169.800000px;}
.x5b_c00369{left:171.750000px;}
.x2d_c00369{left:174.000000px;}
.x9d_c00369{left:176.700000px;}
.xdb_c00369{left:178.200000px;}
.x6_c00369{left:179.550000px;}
.x14_c00369{left:183.750000px;}
.xe8_c00369{left:185.400000px;}
.xff_c00369{left:187.800000px;}
.x5c_c00369{left:189.450000px;}
.xb6_c00369{left:190.950000px;}
.x44_c00369{left:194.850000px;}
.x67_c00369{left:196.050000px;}
.xc2_c00369{left:198.450000px;}
.xaf_c00369{left:199.500000px;}
.x8a_c00369{left:200.700000px;}
.x10b_c00369{left:205.200000px;}
.x7_c00369{left:206.550000px;}
.x82_c00369{left:207.900000px;}
.x39_c00369{left:209.550000px;}
.x11d_c00369{left:211.500000px;}
.x12e_c00369{left:215.250000px;}
.x2e_c00369{left:216.450000px;}
.x92_c00369{left:218.100000px;}
.xf9_c00369{left:219.450000px;}
.x15_c00369{left:220.500000px;}
.x51_c00369{left:223.500000px;}
.xc8_c00369{left:225.750000px;}
.x118_c00369{left:227.850000px;}
.xc3_c00369{left:229.350000px;}
.x78_c00369{left:232.050000px;}
.x45_c00369{left:235.200000px;}
.x3a_c00369{left:237.600000px;}
.x16_c00369{left:240.000000px;}
.xfa_c00369{left:242.100000px;}
.x68_c00369{left:243.600000px;}
.x52_c00369{left:247.950000px;}
.x135_c00369{left:249.600000px;}
.xf4_c00369{left:251.400000px;}
.xc9_c00369{left:253.800000px;}
.x9e_c00369{left:254.850000px;}
.xe3_c00369{left:256.350000px;}
.x126_c00369{left:258.450000px;}
.xdc_c00369{left:261.000000px;}
.x69_c00369{left:263.700000px;}
.x2f_c00369{left:268.650000px;}
.xb7_c00369{left:270.150000px;}
.x22_c00369{left:272.400000px;}
.x17_c00369{left:275.250000px;}
.x93_c00369{left:276.450000px;}
.x104_c00369{left:279.450000px;}
.xa7_c00369{left:281.550000px;}
.x127_c00369{left:283.650000px;}
.x10c_c00369{left:286.950000px;}
.x5d_c00369{left:288.150000px;}
.x79_c00369{left:289.950000px;}
.x8_c00369{left:292.650000px;}
.xd0_c00369{left:295.800000px;}
.x105_c00369{left:297.450000px;}
.x46_c00369{left:300.000000px;}
.x23_c00369{left:301.200000px;}
.x100_c00369{left:302.250000px;}
.xe4_c00369{left:304.650000px;}
.xfb_c00369{left:306.900000px;}
.x5e_c00369{left:307.950000px;}
.x53_c00369{left:310.200000px;}
.xdd_c00369{left:311.400000px;}
.xb8_c00369{left:313.350000px;}
.x94_c00369{left:314.550000px;}
.x83_c00369{left:317.700000px;}
.x9_c00369{left:322.500000px;}
.x9f_c00369{left:325.350000px;}
.x132_c00369{left:327.150000px;}
.x6a_c00369{left:329.550000px;}
.xc4_c00369{left:330.900000px;}
.xd1_c00369{left:332.100000px;}
.x30_c00369{left:333.750000px;}
.xa8_c00369{left:335.550000px;}
.xca_c00369{left:338.100000px;}
.x3b_c00369{left:339.150000px;}
.x1_c00369{left:340.200000px;}
.xee_c00369{left:341.700000px;}
.x8b_c00369{left:344.400000px;}
.x84_c00369{left:345.750000px;}
.x6b_c00369{left:350.100000px;}
.xd2_c00369{left:351.900000px;}
.x54_c00369{left:353.100000px;}
.xa_c00369{left:355.200000px;}
.x5f_c00369{left:356.550000px;}
.xd6_c00369{left:358.200000px;}
.x106_c00369{left:361.500000px;}
.x18_c00369{left:362.700000px;}
.x12f_c00369{left:363.900000px;}
.x3c_c00369{left:366.450000px;}
.x7a_c00369{left:368.550000px;}
.xef_c00369{left:370.200000px;}
.xb9_c00369{left:374.850000px;}
.x6c_c00369{left:378.150000px;}
.xd7_c00369{left:379.500000px;}
.xd3_c00369{left:380.700000px;}
.x19_c00369{left:382.200000px;}
.x119_c00369{left:385.200000px;}
.xde_c00369{left:388.200000px;}
.x10d_c00369{left:389.250000px;}
.xf5_c00369{left:391.500000px;}
.x11e_c00369{left:392.700000px;}
.xb_c00369{left:394.050000px;}
.x85_c00369{left:395.850000px;}
.x24_c00369{left:398.100000px;}
.xa0_c00369{left:399.450000px;}
.x31_c00369{left:400.650000px;}
.x60_c00369{left:401.850000px;}
.x2_c00369{left:402.900000px;}
.xc_c00369{left:405.900000px;}
.xd8_c00369{left:407.550000px;}
.x55_c00369{left:408.600000px;}
.x95_c00369{left:409.650000px;}
.x8c_c00369{left:412.200000px;}
.x1a_c00369{left:414.900000px;}
.x3d_c00369{left:418.950000px;}
.x7b_c00369{left:420.750000px;}
.x114_c00369{left:422.250000px;}
.x3_c00369{left:423.450000px;}
.xd_c00369{left:425.400000px;}
.x107_c00369{left:427.350000px;}
.x47_c00369{left:428.550000px;}
.x122_c00369{left:430.800000px;}
.xa9_c00369{left:433.800000px;}
.x8d_c00369{left:438.150000px;}
.x32_c00369{left:441.000000px;}
.x6d_c00369{left:442.650000px;}
.xcb_c00369{left:446.850000px;}
.x61_c00369{left:448.350000px;}
.xa1_c00369{left:451.650000px;}
.x11a_c00369{left:453.300000px;}
.xe_c00369{left:455.250000px;}
.xba_c00369{left:457.650000px;}
.xaa_c00369{left:459.750000px;}
.x7c_c00369{left:461.400000px;}
.x86_c00369{left:466.350000px;}
.x3e_c00369{left:469.050000px;}
.x6e_c00369{left:471.150000px;}
.xb0_c00369{left:473.550000px;}
.x128_c00369{left:475.050000px;}
.x8e_c00369{left:477.000000px;}
.x48_c00369{left:479.700000px;}
.x96_c00369{left:481.950000px;}
.xbb_c00369{left:484.650000px;}
.x10e_c00369{left:486.450000px;}
.x11f_c00369{left:488.400000px;}
.x25_c00369{left:489.900000px;}
.xd4_c00369{left:491.100000px;}
.xa2_c00369{left:493.050000px;}
.x1b_c00369{left:494.100000px;}
.xe9_c00369{left:495.300000px;}
.xdf_c00369{left:496.500000px;}
.x101_c00369{left:498.750000px;}
.xb1_c00369{left:499.800000px;}
.x6f_c00369{left:502.800000px;}
.x56_c00369{left:504.000000px;}
.xe5_c00369{left:505.200000px;}
.xab_c00369{left:506.850000px;}
.x26_c00369{left:507.900000px;}
.x33_c00369{left:510.150000px;}
.x123_c00369{left:513.300000px;}
.xea_c00369{left:516.150000px;}
.x49_c00369{left:517.500000px;}
.xd5_c00369{left:519.150000px;}
.x3f_c00369{left:520.950000px;}
.x62_c00369{left:522.150000px;}
.x108_c00369{left:524.550000px;}
.xfc_c00369{left:526.350000px;}
.x97_c00369{left:527.700000px;}
.xbc_c00369{left:529.650000px;}
.x34_c00369{left:532.500000px;}
.xf6_c00369{left:535.500000px;}
.x130_c00369{left:537.750000px;}
.xf0_c00369{left:538.800000px;}
.x11b_c00369{left:540.000000px;}
.x8f_c00369{left:541.800000px;}
.xcc_c00369{left:543.300000px;}
.xb2_c00369{left:545.550000px;}
.x7d_c00369{left:549.300000px;}
.x70_c00369{left:550.350000px;}
.x1c_c00369{left:551.700000px;}
.xc5_c00369{left:553.350000px;}
.x115_c00369{left:554.700000px;}
.xa3_c00369{left:556.050000px;}
.x120_c00369{left:557.100000px;}
.x129_c00369{left:559.650000px;}
.xac_c00369{left:560.850000px;}
.xf_c00369{left:563.550000px;}
.x4a_c00369{left:566.400000px;}
.x90_c00369{left:569.550000px;}
.x57_c00369{left:571.650000px;}
.x1d_c00369{left:573.000000px;}
.x11c_c00369{left:574.200000px;}
.xbd_c00369{left:576.450000px;}
.x40_c00369{left:578.550000px;}
.x10_c00369{left:580.800000px;}
.x98_c00369{left:582.000000px;}
.xfd_c00369{left:586.350000px;}
.xe6_c00369{left:590.400000px;}
.x27_c00369{left:592.500000px;}
.xa4_c00369{left:595.950000px;}
.xcd_c00369{left:597.000000px;}
.xc6_c00369{left:598.050000px;}
.x102_c00369{left:599.550000px;}
.xd9_c00369{left:600.900000px;}
.x99_c00369{left:602.550000px;}
.x71_c00369{left:604.050000px;}
.xbe_c00369{left:606.000000px;}
.x1e_c00369{left:608.250000px;}
.x4b_c00369{left:609.300000px;}
.x11_c00369{left:611.100000px;}
.x12a_c00369{left:612.600000px;}
.x28_c00369{left:614.400000px;}
.xf7_c00369{left:616.050000px;}
.xeb_c00369{left:620.550000px;}
.x10f_c00369{left:621.750000px;}
.xa5_c00369{left:624.750000px;}
.x133_c00369{left:626.850000px;}
.x4c_c00369{left:629.100000px;}
.x72_c00369{left:631.050000px;}
.x12b_c00369{left:633.150000px;}
.x29_c00369{left:635.250000px;}
.xe0_c00369{left:637.350000px;}
.x109_c00369{left:639.150000px;}
.xb3_c00369{left:640.200000px;}
.x63_c00369{left:642.450000px;}
.x9a_c00369{left:643.650000px;}
.x58_c00369{left:646.500000px;}
.x7e_c00369{left:649.050000px;}
.x110_c00369{left:650.850000px;}
.x35_c00369{left:652.050000px;}
.x4d_c00369{left:656.850000px;}
.x2a_c00369{left:658.950000px;}
.xb4_c00369{left:660.300000px;}
.x124_c00369{left:661.650000px;}
.x59_c00369{left:664.500000px;}
.xbf_c00369{left:665.700000px;}
.x41_c00369{left:667.800000px;}
.xec_c00369{left:668.850000px;}
.xce_c00369{left:670.800000px;}
.xf8_c00369{left:672.600000px;}
.x1f_c00369{left:678.150000px;}
.xad_c00369{left:679.650000px;}
.x73_c00369{left:681.450000px;}
.xcf_c00369{left:682.650000px;}
.x36_c00369{left:683.700000px;}
.x87_c00369{left:685.200000px;}
.xfe_c00369{left:686.700000px;}
.xf1_c00369{left:688.800000px;}
.x139_c00369{left:691.200000px;}
.x116_c00369{left:693.750000px;}
.x74_c00369{left:696.900000px;}
.x12_c00369{left:698.550000px;}
.x103_c00369{left:699.600000px;}
.xb5_c00369{left:700.650000px;}
.x13a_c00369{left:702.000000px;}
.x64_c00369{left:706.500000px;}
.x37_c00369{left:709.950000px;}
.x111_c00369{left:711.000000px;}
.xae_c00369{left:714.300000px;}
.xf2_c00369{left:716.850000px;}
.x7f_c00369{left:719.250000px;}
.x131_c00369{left:720.300000px;}
.x4e_c00369{left:721.650000px;}
.x42_c00369{left:725.100000px;}
.x12c_c00369{left:727.800000px;}
.x2b_c00369{left:730.200000px;}
.x88_c00369{left:734.550000px;}
.x80_c00369{left:736.950000px;}
.x138_c00369{left:738.300000px;}
.x75_c00369{left:739.350000px;}
.xc0_c00369{left:740.550000px;}
.x4_c00369{left:742.800000px;}
.x125_c00369{left:744.900000px;}
.x112_c00369{left:747.300000px;}
.x13_c00369{left:748.650000px;}
.xe1_c00369{left:754.350000px;}
.x65_c00369{left:755.400000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls0_c00369{letter-spacing:0.000000pt;}
.ws6_c00369{word-spacing:-5.497076pt;}
.wse_c00369{word-spacing:-4.320988pt;}
.wsa_c00369{word-spacing:-3.888889pt;}
.ws12_c00369{word-spacing:0.000000pt;}
.ws9_c00369{word-spacing:0.246914pt;}
.ws8_c00369{word-spacing:0.833333pt;}
.ws2_c00369{word-spacing:1.481481pt;}
.ws11_c00369{word-spacing:1.538462pt;}
.ws4_c00369{word-spacing:2.777778pt;}
.wsf_c00369{word-spacing:3.603604pt;}
.wsc_c00369{word-spacing:4.444444pt;}
.ws5_c00369{word-spacing:6.049383pt;}
.ws3_c00369{word-spacing:6.666667pt;}
.ws10_c00369{word-spacing:6.783626pt;}
.ws7_c00369{word-spacing:13.004115pt;}
.wsb_c00369{word-spacing:19.649123pt;}
.wsd_c00369{word-spacing:24.526749pt;}
.ws0_c00369{word-spacing:26.397306pt;}
.ws1_c00369{word-spacing:30.317460pt;}
.fs2_c00369{font-size:37.333333pt;}
.fs0_c00369{font-size:48.000000pt;}
.fs1_c00369{font-size:53.333333pt;}
.y0_c00369{bottom:0.000000pt;}
.y2d_c00369{bottom:117.066667pt;}
.y2c_c00369{bottom:136.000000pt;}
.y2b_c00369{bottom:153.866667pt;}
.y2a_c00369{bottom:171.466667pt;}
.y29_c00369{bottom:189.333333pt;}
.y28_c00369{bottom:206.666667pt;}
.y27_c00369{bottom:224.533333pt;}
.y26_c00369{bottom:241.866667pt;}
.y25_c00369{bottom:259.466667pt;}
.y24_c00369{bottom:277.200000pt;}
.y23_c00369{bottom:295.066667pt;}
.y22_c00369{bottom:312.666667pt;}
.y21_c00369{bottom:330.266667pt;}
.y20_c00369{bottom:347.866667pt;}
.y1f_c00369{bottom:365.466667pt;}
.y1e_c00369{bottom:383.066667pt;}
.y1d_c00369{bottom:400.400000pt;}
.y1c_c00369{bottom:418.666667pt;}
.y1b_c00369{bottom:436.533333pt;}
.y1a_c00369{bottom:454.133333pt;}
.y19_c00369{bottom:471.466667pt;}
.y18_c00369{bottom:489.333333pt;}
.y17_c00369{bottom:506.933333pt;}
.y16_c00369{bottom:540.533333pt;}
.y15_c00369{bottom:558.400000pt;}
.y14_c00369{bottom:576.266667pt;}
.y13_c00369{bottom:593.866667pt;}
.y12_c00369{bottom:611.466667pt;}
.y11_c00369{bottom:629.066667pt;}
.y10_c00369{bottom:647.066667pt;}
.yf_c00369{bottom:664.666667pt;}
.ye_c00369{bottom:682.266667pt;}
.yd_c00369{bottom:700.533333pt;}
.yc_c00369{bottom:718.133333pt;}
.yb_c00369{bottom:735.733333pt;}
.ya_c00369{bottom:753.333333pt;}
.y9_c00369{bottom:771.200000pt;}
.y8_c00369{bottom:789.200000pt;}
.y7_c00369{bottom:806.800000pt;}
.y6_c00369{bottom:824.400000pt;}
.y5_c00369{bottom:842.000000pt;}
.y4_c00369{bottom:859.866667pt;}
.y3_c00369{bottom:877.466667pt;}
.y2_c00369{bottom:895.066667pt;}
.y1_c00369{bottom:929.600000pt;}
.h4_c00369{height:37.333333pt;}
.h2_c00369{height:48.000000pt;}
.h3_c00369{height:53.333333pt;}
.h0_c00369{height:1037.119955pt;}
.h1_c00369{height:1037.333333pt;}
.w1_c00369{width:812.000000pt;}
.w0_c00369{width:812.159993pt;}
.x0_c00369{left:0.000000pt;}
.x117_c00369{left:88.266667pt;}
.xe7_c00369{left:89.600000pt;}
.x5_c00369{left:90.533333pt;}
.x9b_c00369{left:101.733333pt;}
.x134_c00369{left:105.333333pt;}
.x76_c00369{left:106.800000pt;}
.x20_c00369{left:108.133333pt;}
.xc1_c00369{left:112.666667pt;}
.x2c_c00369{left:114.666667pt;}
.xa6_c00369{left:116.133333pt;}
.x9c_c00369{left:117.066667pt;}
.x4f_c00369{left:118.133333pt;}
.xf3_c00369{left:119.066667pt;}
.xed_c00369{left:120.000000pt;}
.xc7_c00369{left:121.733333pt;}
.x43_c00369{left:123.866667pt;}
.x136_c00369{left:125.066667pt;}
.x81_c00369{left:126.000000pt;}
.x10a_c00369{left:128.000000pt;}
.x66_c00369{left:129.466667pt;}
.xda_c00369{left:130.933333pt;}
.xe2_c00369{left:132.266667pt;}
.x121_c00369{left:133.200000pt;}
.x91_c00369{left:134.933333pt;}
.x21_c00369{left:137.200000pt;}
.x5a_c00369{left:139.200000pt;}
.x89_c00369{left:140.933333pt;}
.x12d_c00369{left:142.000000pt;}
.x77_c00369{left:144.266667pt;}
.x113_c00369{left:145.866667pt;}
.x50_c00369{left:147.200000pt;}
.x38_c00369{left:149.200000pt;}
.x137_c00369{left:150.933333pt;}
.x5b_c00369{left:152.666667pt;}
.x2d_c00369{left:154.666667pt;}
.x9d_c00369{left:157.066667pt;}
.xdb_c00369{left:158.400000pt;}
.x6_c00369{left:159.600000pt;}
.x14_c00369{left:163.333333pt;}
.xe8_c00369{left:164.800000pt;}
.xff_c00369{left:166.933333pt;}
.x5c_c00369{left:168.400000pt;}
.xb6_c00369{left:169.733333pt;}
.x44_c00369{left:173.200000pt;}
.x67_c00369{left:174.266667pt;}
.xc2_c00369{left:176.400000pt;}
.xaf_c00369{left:177.333333pt;}
.x8a_c00369{left:178.400000pt;}
.x10b_c00369{left:182.400000pt;}
.x7_c00369{left:183.600000pt;}
.x82_c00369{left:184.800000pt;}
.x39_c00369{left:186.266667pt;}
.x11d_c00369{left:188.000000pt;}
.x12e_c00369{left:191.333333pt;}
.x2e_c00369{left:192.400000pt;}
.x92_c00369{left:193.866667pt;}
.xf9_c00369{left:195.066667pt;}
.x15_c00369{left:196.000000pt;}
.x51_c00369{left:198.666667pt;}
.xc8_c00369{left:200.666667pt;}
.x118_c00369{left:202.533333pt;}
.xc3_c00369{left:203.866667pt;}
.x78_c00369{left:206.266667pt;}
.x45_c00369{left:209.066667pt;}
.x3a_c00369{left:211.200000pt;}
.x16_c00369{left:213.333333pt;}
.xfa_c00369{left:215.200000pt;}
.x68_c00369{left:216.533333pt;}
.x52_c00369{left:220.400000pt;}
.x135_c00369{left:221.866667pt;}
.xf4_c00369{left:223.466667pt;}
.xc9_c00369{left:225.600000pt;}
.x9e_c00369{left:226.533333pt;}
.xe3_c00369{left:227.866667pt;}
.x126_c00369{left:229.733333pt;}
.xdc_c00369{left:232.000000pt;}
.x69_c00369{left:234.400000pt;}
.x2f_c00369{left:238.800000pt;}
.xb7_c00369{left:240.133333pt;}
.x22_c00369{left:242.133333pt;}
.x17_c00369{left:244.666667pt;}
.x93_c00369{left:245.733333pt;}
.x104_c00369{left:248.400000pt;}
.xa7_c00369{left:250.266667pt;}
.x127_c00369{left:252.133333pt;}
.x10c_c00369{left:255.066667pt;}
.x5d_c00369{left:256.133333pt;}
.x79_c00369{left:257.733333pt;}
.x8_c00369{left:260.133333pt;}
.xd0_c00369{left:262.933333pt;}
.x105_c00369{left:264.400000pt;}
.x46_c00369{left:266.666667pt;}
.x23_c00369{left:267.733333pt;}
.x100_c00369{left:268.666667pt;}
.xe4_c00369{left:270.800000pt;}
.xfb_c00369{left:272.800000pt;}
.x5e_c00369{left:273.733333pt;}
.x53_c00369{left:275.733333pt;}
.xdd_c00369{left:276.800000pt;}
.xb8_c00369{left:278.533333pt;}
.x94_c00369{left:279.600000pt;}
.x83_c00369{left:282.400000pt;}
.x9_c00369{left:286.666667pt;}
.x9f_c00369{left:289.200000pt;}
.x132_c00369{left:290.800000pt;}
.x6a_c00369{left:292.933333pt;}
.xc4_c00369{left:294.133333pt;}
.xd1_c00369{left:295.200000pt;}
.x30_c00369{left:296.666667pt;}
.xa8_c00369{left:298.266667pt;}
.xca_c00369{left:300.533333pt;}
.x3b_c00369{left:301.466667pt;}
.x1_c00369{left:302.400000pt;}
.xee_c00369{left:303.733333pt;}
.x8b_c00369{left:306.133333pt;}
.x84_c00369{left:307.333333pt;}
.x6b_c00369{left:311.200000pt;}
.xd2_c00369{left:312.800000pt;}
.x54_c00369{left:313.866667pt;}
.xa_c00369{left:315.733333pt;}
.x5f_c00369{left:316.933333pt;}
.xd6_c00369{left:318.400000pt;}
.x106_c00369{left:321.333333pt;}
.x18_c00369{left:322.400000pt;}
.x12f_c00369{left:323.466667pt;}
.x3c_c00369{left:325.733333pt;}
.x7a_c00369{left:327.600000pt;}
.xef_c00369{left:329.066667pt;}
.xb9_c00369{left:333.200000pt;}
.x6c_c00369{left:336.133333pt;}
.xd7_c00369{left:337.333333pt;}
.xd3_c00369{left:338.400000pt;}
.x19_c00369{left:339.733333pt;}
.x119_c00369{left:342.400000pt;}
.xde_c00369{left:345.066667pt;}
.x10d_c00369{left:346.000000pt;}
.xf5_c00369{left:348.000000pt;}
.x11e_c00369{left:349.066667pt;}
.xb_c00369{left:350.266667pt;}
.x85_c00369{left:351.866667pt;}
.x24_c00369{left:353.866667pt;}
.xa0_c00369{left:355.066667pt;}
.x31_c00369{left:356.133333pt;}
.x60_c00369{left:357.200000pt;}
.x2_c00369{left:358.133333pt;}
.xc_c00369{left:360.800000pt;}
.xd8_c00369{left:362.266667pt;}
.x55_c00369{left:363.200000pt;}
.x95_c00369{left:364.133333pt;}
.x8c_c00369{left:366.400000pt;}
.x1a_c00369{left:368.800000pt;}
.x3d_c00369{left:372.400000pt;}
.x7b_c00369{left:374.000000pt;}
.x114_c00369{left:375.333333pt;}
.x3_c00369{left:376.400000pt;}
.xd_c00369{left:378.133333pt;}
.x107_c00369{left:379.866667pt;}
.x47_c00369{left:380.933333pt;}
.x122_c00369{left:382.933333pt;}
.xa9_c00369{left:385.600000pt;}
.x8d_c00369{left:389.466667pt;}
.x32_c00369{left:392.000000pt;}
.x6d_c00369{left:393.466667pt;}
.xcb_c00369{left:397.200000pt;}
.x61_c00369{left:398.533333pt;}
.xa1_c00369{left:401.466667pt;}
.x11a_c00369{left:402.933333pt;}
.xe_c00369{left:404.666667pt;}
.xba_c00369{left:406.800000pt;}
.xaa_c00369{left:408.666667pt;}
.x7c_c00369{left:410.133333pt;}
.x86_c00369{left:414.533333pt;}
.x3e_c00369{left:416.933333pt;}
.x6e_c00369{left:418.800000pt;}
.xb0_c00369{left:420.933333pt;}
.x128_c00369{left:422.266667pt;}
.x8e_c00369{left:424.000000pt;}
.x48_c00369{left:426.400000pt;}
.x96_c00369{left:428.400000pt;}
.xbb_c00369{left:430.800000pt;}
.x10e_c00369{left:432.400000pt;}
.x11f_c00369{left:434.133333pt;}
.x25_c00369{left:435.466667pt;}
.xd4_c00369{left:436.533333pt;}
.xa2_c00369{left:438.266667pt;}
.x1b_c00369{left:439.200000pt;}
.xe9_c00369{left:440.266667pt;}
.xdf_c00369{left:441.333333pt;}
.x101_c00369{left:443.333333pt;}
.xb1_c00369{left:444.266667pt;}
.x6f_c00369{left:446.933333pt;}
.x56_c00369{left:448.000000pt;}
.xe5_c00369{left:449.066667pt;}
.xab_c00369{left:450.533333pt;}
.x26_c00369{left:451.466667pt;}
.x33_c00369{left:453.466667pt;}
.x123_c00369{left:456.266667pt;}
.xea_c00369{left:458.800000pt;}
.x49_c00369{left:460.000000pt;}
.xd5_c00369{left:461.466667pt;}
.x3f_c00369{left:463.066667pt;}
.x62_c00369{left:464.133333pt;}
.x108_c00369{left:466.266667pt;}
.xfc_c00369{left:467.866667pt;}
.x97_c00369{left:469.066667pt;}
.xbc_c00369{left:470.800000pt;}
.x34_c00369{left:473.333333pt;}
.xf6_c00369{left:476.000000pt;}
.x130_c00369{left:478.000000pt;}
.xf0_c00369{left:478.933333pt;}
.x11b_c00369{left:480.000000pt;}
.x8f_c00369{left:481.600000pt;}
.xcc_c00369{left:482.933333pt;}
.xb2_c00369{left:484.933333pt;}
.x7d_c00369{left:488.266667pt;}
.x70_c00369{left:489.200000pt;}
.x1c_c00369{left:490.400000pt;}
.xc5_c00369{left:491.866667pt;}
.x115_c00369{left:493.066667pt;}
.xa3_c00369{left:494.266667pt;}
.x120_c00369{left:495.200000pt;}
.x129_c00369{left:497.466667pt;}
.xac_c00369{left:498.533333pt;}
.xf_c00369{left:500.933333pt;}
.x4a_c00369{left:503.466667pt;}
.x90_c00369{left:506.266667pt;}
.x57_c00369{left:508.133333pt;}
.x1d_c00369{left:509.333333pt;}
.x11c_c00369{left:510.400000pt;}
.xbd_c00369{left:512.400000pt;}
.x40_c00369{left:514.266667pt;}
.x10_c00369{left:516.266667pt;}
.x98_c00369{left:517.333333pt;}
.xfd_c00369{left:521.200000pt;}
.xe6_c00369{left:524.800000pt;}
.x27_c00369{left:526.666667pt;}
.xa4_c00369{left:529.733333pt;}
.xcd_c00369{left:530.666667pt;}
.xc6_c00369{left:531.600000pt;}
.x102_c00369{left:532.933333pt;}
.xd9_c00369{left:534.133333pt;}
.x99_c00369{left:535.600000pt;}
.x71_c00369{left:536.933333pt;}
.xbe_c00369{left:538.666667pt;}
.x1e_c00369{left:540.666667pt;}
.x4b_c00369{left:541.600000pt;}
.x11_c00369{left:543.200000pt;}
.x12a_c00369{left:544.533333pt;}
.x28_c00369{left:546.133333pt;}
.xf7_c00369{left:547.600000pt;}
.xeb_c00369{left:551.600000pt;}
.x10f_c00369{left:552.666667pt;}
.xa5_c00369{left:555.333333pt;}
.x133_c00369{left:557.200000pt;}
.x4c_c00369{left:559.200000pt;}
.x72_c00369{left:560.933333pt;}
.x12b_c00369{left:562.800000pt;}
.x29_c00369{left:564.666667pt;}
.xe0_c00369{left:566.533333pt;}
.x109_c00369{left:568.133333pt;}
.xb3_c00369{left:569.066667pt;}
.x63_c00369{left:571.066667pt;}
.x9a_c00369{left:572.133333pt;}
.x58_c00369{left:574.666667pt;}
.x7e_c00369{left:576.933333pt;}
.x110_c00369{left:578.533333pt;}
.x35_c00369{left:579.600000pt;}
.x4d_c00369{left:583.866667pt;}
.x2a_c00369{left:585.733333pt;}
.xb4_c00369{left:586.933333pt;}
.x124_c00369{left:588.133333pt;}
.x59_c00369{left:590.666667pt;}
.xbf_c00369{left:591.733333pt;}
.x41_c00369{left:593.600000pt;}
.xec_c00369{left:594.533333pt;}
.xce_c00369{left:596.266667pt;}
.xf8_c00369{left:597.866667pt;}
.x1f_c00369{left:602.800000pt;}
.xad_c00369{left:604.133333pt;}
.x73_c00369{left:605.733333pt;}
.xcf_c00369{left:606.800000pt;}
.x36_c00369{left:607.733333pt;}
.x87_c00369{left:609.066667pt;}
.xfe_c00369{left:610.400000pt;}
.xf1_c00369{left:612.266667pt;}
.x139_c00369{left:614.400000pt;}
.x116_c00369{left:616.666667pt;}
.x74_c00369{left:619.466667pt;}
.x12_c00369{left:620.933333pt;}
.x103_c00369{left:621.866667pt;}
.xb5_c00369{left:622.800000pt;}
.x13a_c00369{left:624.000000pt;}
.x64_c00369{left:628.000000pt;}
.x37_c00369{left:631.066667pt;}
.x111_c00369{left:632.000000pt;}
.xae_c00369{left:634.933333pt;}
.xf2_c00369{left:637.200000pt;}
.x7f_c00369{left:639.333333pt;}
.x131_c00369{left:640.266667pt;}
.x4e_c00369{left:641.466667pt;}
.x42_c00369{left:644.533333pt;}
.x12c_c00369{left:646.933333pt;}
.x2b_c00369{left:649.066667pt;}
.x88_c00369{left:652.933333pt;}
.x80_c00369{left:655.066667pt;}
.x138_c00369{left:656.266667pt;}
.x75_c00369{left:657.200000pt;}
.xc0_c00369{left:658.266667pt;}
.x4_c00369{left:660.266667pt;}
.x125_c00369{left:662.133333pt;}
.x112_c00369{left:664.266667pt;}
.x13_c00369{left:665.466667pt;}
.xe1_c00369{left:670.533333pt;}
.x65_c00369{left:671.466667pt;}
}





/* 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_c00370 {
    display:none;
  }
  .loading-indicator_c00370.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00370 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_c00370 { 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_c00370" -> "#page-container .classname_c00370")
 */
.pf_c00370 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00370 { /* 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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00370 { /* 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_c00370 { /* 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_c00370 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00370 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00370 {overflow:visible;}
  }
}
.c_c00370 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00370 { /* 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_c00370:after { /* webkit #35443 */
  content: '';
}
.t_c00370:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00370 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 */
}
.__c00370 { /* 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_c00370 { /* info for Javascript */
  display:none;
}
.l_c00370 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00370 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00370 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00370: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_c00370 {
    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_c00370.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00370.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_c00370 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00370{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00370;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.000000;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;}
.m67_c00370{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m25_c00370{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m60_c00370{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m65_c00370{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00370{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00370{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00370{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m47_c00370{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m63_c00370{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m59_c00370{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m31_c00370{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00370{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m13_c00370{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00370{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m18_c00370{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb_c00370{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m28_c00370{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16_c00370{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m14_c00370{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m30_c00370{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00370{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00370{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00370{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00370{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m48_c00370{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m33_c00370{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00370{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00370{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00370{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m51_c00370{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8_c00370{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m55_c00370{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m17_c00370{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m23_c00370{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00370{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m38_c00370{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m52_c00370{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00370{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00370{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00370{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m11_c00370{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m70_c00370{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m10_c00370{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m20_c00370{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00370{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00370{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m44_c00370{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m26_c00370{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m43_c00370{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m34_c00370{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m68_c00370{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mf_c00370{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00370{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m72_c00370{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00370{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m50_c00370{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00370{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00370{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m56_c00370{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m45_c00370{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00370{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m49_c00370{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.md_c00370{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00370{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00370{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00370{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m66_c00370{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00370{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m46_c00370{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m27_c00370{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00370{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00370{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m29_c00370{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m36_c00370{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m57_c00370{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m61_c00370{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m21_c00370{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00370{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00370{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00370{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12_c00370{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00370{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00370{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m22_c00370{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00370{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc_c00370{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m54_c00370{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00370{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);}
.m35_c00370{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m40_c00370{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00370{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7_c00370{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00370{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m64_c00370{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m42_c00370{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00370{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m15_c00370{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00370{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00370{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m71_c00370{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m37_c00370{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00370{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m32_c00370{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m58_c00370{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00370{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m0_c00370{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m39_c00370{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m69_c00370{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m62_c00370{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.v0_c00370{vertical-align:0.000000px;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{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__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00370{word-spacing:0.000000px;}
.ws2_c00370{word-spacing:1.190476px;}
.ws9_c00370{word-spacing:6.527778px;}
.ws0_c00370{word-spacing:8.055556px;}
.ws6_c00370{word-spacing:8.303571px;}
.ws1_c00370{word-spacing:8.529412px;}
.ws3_c00370{word-spacing:9.545455px;}
.ws8_c00370{word-spacing:10.000000px;}
.ws4_c00370{word-spacing:11.388889px;}
.ws7_c00370{word-spacing:12.195122px;}
.ws5_c00370{word-spacing:22.962963px;}
._0_c00370{width:40.735294px;}
.fc0_c00370{color:transparent;}
.fs0_c00370{font-size:60.000000px;}
.y0_c00370{bottom:0.000000px;}
.y15_c00370{bottom:633.000000px;}
.y14_c00370{bottom:653.100000px;}
.y13_c00370{bottom:672.900000px;}
.y12_c00370{bottom:692.700000px;}
.y11_c00370{bottom:712.800000px;}
.y10_c00370{bottom:732.600000px;}
.yf_c00370{bottom:752.400000px;}
.ye_c00370{bottom:772.200000px;}
.yd_c00370{bottom:792.300000px;}
.yc_c00370{bottom:812.100000px;}
.yb_c00370{bottom:832.200000px;}
.ya_c00370{bottom:852.000000px;}
.y9_c00370{bottom:872.100000px;}
.y8_c00370{bottom:891.900000px;}
.y7_c00370{bottom:911.700000px;}
.y6_c00370{bottom:931.800000px;}
.y5_c00370{bottom:951.600000px;}
.y4_c00370{bottom:971.700000px;}
.y3_c00370{bottom:991.800000px;}
.y2_c00370{bottom:1011.300000px;}
.y1_c00370{bottom:1049.400000px;}
.h2_c00370{height:60.000000px;}
.h0_c00370{height:1166.759949px;}
.h1_c00370{height:1167.000000px;}
.w1_c00370{width:913.500000px;}
.w0_c00370{width:913.679993px;}
.x0_c00370{left:0.000000px;}
.x6e_c00370{left:141.150000px;}
.x1_c00370{left:142.950000px;}
.x63_c00370{left:154.350000px;}
.x11_c00370{left:162.150000px;}
.xb8_c00370{left:165.150000px;}
.x6f_c00370{left:169.950000px;}
.x9f_c00370{left:172.050000px;}
.x2c_c00370{left:174.600000px;}
.x3_c00370{left:182.850000px;}
.xbf_c00370{left:184.350000px;}
.x3c_c00370{left:186.900000px;}
.xa0_c00370{left:190.800000px;}
.x12_c00370{left:193.050000px;}
.x1f_c00370{left:194.400000px;}
.x7a_c00370{left:198.750000px;}
.x95_c00370{left:200.550000px;}
.x47_c00370{left:202.950000px;}
.x3d_c00370{left:205.650000px;}
.x20_c00370{left:212.100000px;}
.x70_c00370{left:213.450000px;}
.xc4_c00370{left:217.950000px;}
.x2d_c00370{left:221.100000px;}
.xb1_c00370{left:222.600000px;}
.x48_c00370{left:224.250000px;}
.x64_c00370{left:227.850000px;}
.x4_c00370{left:231.750000px;}
.x71_c00370{left:234.750000px;}
.x21_c00370{left:237.600000px;}
.x2e_c00370{left:241.650000px;}
.xa1_c00370{left:244.800000px;}
.x7b_c00370{left:247.650000px;}
.x56_c00370{left:251.100000px;}
.x49_c00370{left:252.300000px;}
.x84_c00370{left:253.650000px;}
.x96_c00370{left:262.800000px;}
.x5_c00370{left:263.850000px;}
.x8b_c00370{left:265.950000px;}
.xb9_c00370{left:268.500000px;}
.x2f_c00370{left:270.150000px;}
.xc5_c00370{left:272.700000px;}
.xa9_c00370{left:273.900000px;}
.x22_c00370{left:281.100000px;}
.x57_c00370{left:282.450000px;}
.xba_c00370{left:285.750000px;}
.xb2_c00370{left:288.450000px;}
.x7c_c00370{left:291.900000px;}
.xa2_c00370{left:293.400000px;}
.x65_c00370{left:295.500000px;}
.x13_c00370{left:298.200000px;}
.x8c_c00370{left:301.200000px;}
.x97_c00370{left:308.100000px;}
.x85_c00370{left:313.050000px;}
.x4a_c00370{left:314.250000px;}
.x14_c00370{left:320.100000px;}
.x66_c00370{left:324.000000px;}
.x30_c00370{left:326.250000px;}
.x58_c00370{left:327.750000px;}
.x6_c00370{left:335.100000px;}
.xc6_c00370{left:339.000000px;}
.x3e_c00370{left:340.950000px;}
.x31_c00370{left:344.550000px;}
.xa3_c00370{left:346.650000px;}
.x86_c00370{left:350.550000px;}
.x4b_c00370{left:352.800000px;}
.xaa_c00370{left:354.450000px;}
.x7d_c00370{left:363.150000px;}
.x23_c00370{left:364.350000px;}
.x8d_c00370{left:372.150000px;}
.xc7_c00370{left:376.050000px;}
.xb3_c00370{left:378.750000px;}
.x7_c00370{left:380.100000px;}
.xc0_c00370{left:382.800000px;}
.x59_c00370{left:385.350000px;}
.x98_c00370{left:388.350000px;}
.x15_c00370{left:389.550000px;}
.x8e_c00370{left:392.250000px;}
.x32_c00370{left:393.450000px;}
.xca_c00370{left:398.700000px;}
.x3f_c00370{left:400.350000px;}
.x67_c00370{left:405.300000px;}
.x72_c00370{left:408.900000px;}
.x4c_c00370{left:411.900000px;}
.xa4_c00370{left:417.150000px;}
.x24_c00370{left:419.100000px;}
.x8f_c00370{left:421.050000px;}
.x5a_c00370{left:422.100000px;}
.x16_c00370{left:423.750000px;}
.x68_c00370{left:425.400000px;}
.x99_c00370{left:426.450000px;}
.x40_c00370{left:429.150000px;}
.x4d_c00370{left:436.350000px;}
.x2_c00370{left:439.950000px;}
.x5b_c00370{left:442.950000px;}
.xc1_c00370{left:446.550000px;}
.x17_c00370{left:447.900000px;}
.x8_c00370{left:450.600000px;}
.x33_c00370{left:457.200000px;}
.x73_c00370{left:466.500000px;}
.x41_c00370{left:470.250000px;}
.xc8_c00370{left:473.100000px;}
.x18_c00370{left:477.450000px;}
.x34_c00370{left:478.800000px;}
.x4e_c00370{left:480.600000px;}
.xbb_c00370{left:481.650000px;}
.x7e_c00370{left:483.750000px;}
.x9_c00370{left:485.100000px;}
.x25_c00370{left:488.250000px;}
.x74_c00370{left:496.050000px;}
.xc2_c00370{left:499.500000px;}
.x35_c00370{left:500.700000px;}
.xbc_c00370{left:505.350000px;}
.xcb_c00370{left:506.400000px;}
.x90_c00370{left:507.750000px;}
.xa5_c00370{left:508.950000px;}
.xab_c00370{left:511.500000px;}
.x7f_c00370{left:515.850000px;}
.xa_c00370{left:517.200000px;}
.x5c_c00370{left:521.850000px;}
.x26_c00370{left:526.800000px;}
.x36_c00370{left:529.800000px;}
.x69_c00370{left:531.900000px;}
.x42_c00370{left:533.250000px;}
.x19_c00370{left:536.850000px;}
.x80_c00370{left:539.550000px;}
.x5d_c00370{left:542.400000px;}
.x27_c00370{left:544.050000px;}
.x87_c00370{left:546.450000px;}
.xac_c00370{left:550.050000px;}
.xb4_c00370{left:551.100000px;}
.x91_c00370{left:556.650000px;}
.x75_c00370{left:558.750000px;}
.x4f_c00370{left:560.550000px;}
.xb_c00370{left:562.200000px;}
.x43_c00370{left:565.350000px;}
.x28_c00370{left:570.000000px;}
.x9a_c00370{left:573.300000px;}
.x76_c00370{left:580.050000px;}
.xcc_c00370{left:582.300000px;}
.x37_c00370{left:584.550000px;}
.xa6_c00370{left:588.150000px;}
.x1a_c00370{left:591.900000px;}
.x44_c00370{left:594.450000px;}
.x50_c00370{left:595.800000px;}
.xad_c00370{left:599.700000px;}
.xb5_c00370{left:602.550000px;}
.x81_c00370{left:603.600000px;}
.x77_c00370{left:608.850000px;}
.x38_c00370{left:614.400000px;}
.xcd_c00370{left:616.200000px;}
.xc_c00370{left:620.100000px;}
.x29_c00370{left:621.450000px;}
.xa7_c00370{left:622.650000px;}
.x82_c00370{left:624.900000px;}
.x88_c00370{left:629.550000px;}
.x6a_c00370{left:637.200000px;}
.x51_c00370{left:638.700000px;}
.x5e_c00370{left:642.450000px;}
.xae_c00370{left:645.750000px;}
.x39_c00370{left:648.300000px;}
.x1b_c00370{left:651.000000px;}
.xc9_c00370{left:654.450000px;}
.xd_c00370{left:657.150000px;}
.x92_c00370{left:660.000000px;}
.x9b_c00370{left:661.500000px;}
.xbd_c00370{left:664.500000px;}
.x52_c00370{left:667.800000px;}
.x89_c00370{left:673.800000px;}
.x5f_c00370{left:674.850000px;}
.xaf_c00370{left:679.650000px;}
.x2a_c00370{left:684.750000px;}
.x1c_c00370{left:686.250000px;}
.x3a_c00370{left:690.750000px;}
.x60_c00370{left:692.550000px;}
.xe_c00370{left:695.700000px;}
.xbe_c00370{left:696.900000px;}
.x45_c00370{left:699.300000px;}
.x6b_c00370{left:703.800000px;}
.x53_c00370{left:706.350000px;}
.x2b_c00370{left:712.800000px;}
.xb6_c00370{left:724.950000px;}
.x54_c00370{left:726.450000px;}
.x9c_c00370{left:728.400000px;}
.xf_c00370{left:730.200000px;}
.x46_c00370{left:733.500000px;}
.x1d_c00370{left:742.050000px;}
.x6c_c00370{left:743.100000px;}
.x9d_c00370{left:748.500000px;}
.xc3_c00370{left:750.750000px;}
.x55_c00370{left:754.500000px;}
.x93_c00370{left:756.300000px;}
.xb7_c00370{left:758.100000px;}
.xa8_c00370{left:760.200000px;}
.x10_c00370{left:761.850000px;}
.x3b_c00370{left:763.950000px;}
.x8a_c00370{left:766.350000px;}
.x61_c00370{left:767.700000px;}
.x78_c00370{left:769.050000px;}
.x6d_c00370{left:774.000000px;}
.x9e_c00370{left:777.600000px;}
.x94_c00370{left:781.500000px;}
.x1e_c00370{left:782.700000px;}
.x79_c00370{left:787.800000px;}
.xb0_c00370{left:795.300000px;}
.x83_c00370{left:797.250000px;}
.x62_c00370{left:802.650000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.wsa_c00370{word-spacing:0.000000pt;}
.ws2_c00370{word-spacing:1.058201pt;}
.ws9_c00370{word-spacing:5.802469pt;}
.ws0_c00370{word-spacing:7.160494pt;}
.ws6_c00370{word-spacing:7.380952pt;}
.ws1_c00370{word-spacing:7.581699pt;}
.ws3_c00370{word-spacing:8.484848pt;}
.ws8_c00370{word-spacing:8.888889pt;}
.ws4_c00370{word-spacing:10.123457pt;}
.ws7_c00370{word-spacing:10.840108pt;}
.ws5_c00370{word-spacing:20.411523pt;}
._0_c00370{width:36.209150pt;}
.fs0_c00370{font-size:53.333333pt;}
.y0_c00370{bottom:0.000000pt;}
.y15_c00370{bottom:562.666667pt;}
.y14_c00370{bottom:580.533333pt;}
.y13_c00370{bottom:598.133333pt;}
.y12_c00370{bottom:615.733333pt;}
.y11_c00370{bottom:633.600000pt;}
.y10_c00370{bottom:651.200000pt;}
.yf_c00370{bottom:668.800000pt;}
.ye_c00370{bottom:686.400000pt;}
.yd_c00370{bottom:704.266667pt;}
.yc_c00370{bottom:721.866667pt;}
.yb_c00370{bottom:739.733333pt;}
.ya_c00370{bottom:757.333333pt;}
.y9_c00370{bottom:775.200000pt;}
.y8_c00370{bottom:792.800000pt;}
.y7_c00370{bottom:810.400000pt;}
.y6_c00370{bottom:828.266667pt;}
.y5_c00370{bottom:845.866667pt;}
.y4_c00370{bottom:863.733333pt;}
.y3_c00370{bottom:881.600000pt;}
.y2_c00370{bottom:898.933333pt;}
.y1_c00370{bottom:932.800000pt;}
.h2_c00370{height:53.333333pt;}
.h0_c00370{height:1037.119955pt;}
.h1_c00370{height:1037.333333pt;}
.w1_c00370{width:812.000000pt;}
.w0_c00370{width:812.159993pt;}
.x0_c00370{left:0.000000pt;}
.x6e_c00370{left:125.466667pt;}
.x1_c00370{left:127.066667pt;}
.x63_c00370{left:137.200000pt;}
.x11_c00370{left:144.133333pt;}
.xb8_c00370{left:146.800000pt;}
.x6f_c00370{left:151.066667pt;}
.x9f_c00370{left:152.933333pt;}
.x2c_c00370{left:155.200000pt;}
.x3_c00370{left:162.533333pt;}
.xbf_c00370{left:163.866667pt;}
.x3c_c00370{left:166.133333pt;}
.xa0_c00370{left:169.600000pt;}
.x12_c00370{left:171.600000pt;}
.x1f_c00370{left:172.800000pt;}
.x7a_c00370{left:176.666667pt;}
.x95_c00370{left:178.266667pt;}
.x47_c00370{left:180.400000pt;}
.x3d_c00370{left:182.800000pt;}
.x20_c00370{left:188.533333pt;}
.x70_c00370{left:189.733333pt;}
.xc4_c00370{left:193.733333pt;}
.x2d_c00370{left:196.533333pt;}
.xb1_c00370{left:197.866667pt;}
.x48_c00370{left:199.333333pt;}
.x64_c00370{left:202.533333pt;}
.x4_c00370{left:206.000000pt;}
.x71_c00370{left:208.666667pt;}
.x21_c00370{left:211.200000pt;}
.x2e_c00370{left:214.800000pt;}
.xa1_c00370{left:217.600000pt;}
.x7b_c00370{left:220.133333pt;}
.x56_c00370{left:223.200000pt;}
.x49_c00370{left:224.266667pt;}
.x84_c00370{left:225.466667pt;}
.x96_c00370{left:233.600000pt;}
.x5_c00370{left:234.533333pt;}
.x8b_c00370{left:236.400000pt;}
.xb9_c00370{left:238.666667pt;}
.x2f_c00370{left:240.133333pt;}
.xc5_c00370{left:242.400000pt;}
.xa9_c00370{left:243.466667pt;}
.x22_c00370{left:249.866667pt;}
.x57_c00370{left:251.066667pt;}
.xba_c00370{left:254.000000pt;}
.xb2_c00370{left:256.400000pt;}
.x7c_c00370{left:259.466667pt;}
.xa2_c00370{left:260.800000pt;}
.x65_c00370{left:262.666667pt;}
.x13_c00370{left:265.066667pt;}
.x8c_c00370{left:267.733333pt;}
.x97_c00370{left:273.866667pt;}
.x85_c00370{left:278.266667pt;}
.x4a_c00370{left:279.333333pt;}
.x14_c00370{left:284.533333pt;}
.x66_c00370{left:288.000000pt;}
.x30_c00370{left:290.000000pt;}
.x58_c00370{left:291.333333pt;}
.x6_c00370{left:297.866667pt;}
.xc6_c00370{left:301.333333pt;}
.x3e_c00370{left:303.066667pt;}
.x31_c00370{left:306.266667pt;}
.xa3_c00370{left:308.133333pt;}
.x86_c00370{left:311.600000pt;}
.x4b_c00370{left:313.600000pt;}
.xaa_c00370{left:315.066667pt;}
.x7d_c00370{left:322.800000pt;}
.x23_c00370{left:323.866667pt;}
.x8d_c00370{left:330.800000pt;}
.xc7_c00370{left:334.266667pt;}
.xb3_c00370{left:336.666667pt;}
.x7_c00370{left:337.866667pt;}
.xc0_c00370{left:340.266667pt;}
.x59_c00370{left:342.533333pt;}
.x98_c00370{left:345.200000pt;}
.x15_c00370{left:346.266667pt;}
.x8e_c00370{left:348.666667pt;}
.x32_c00370{left:349.733333pt;}
.xca_c00370{left:354.400000pt;}
.x3f_c00370{left:355.866667pt;}
.x67_c00370{left:360.266667pt;}
.x72_c00370{left:363.466667pt;}
.x4c_c00370{left:366.133333pt;}
.xa4_c00370{left:370.800000pt;}
.x24_c00370{left:372.533333pt;}
.x8f_c00370{left:374.266667pt;}
.x5a_c00370{left:375.200000pt;}
.x16_c00370{left:376.666667pt;}
.x68_c00370{left:378.133333pt;}
.x99_c00370{left:379.066667pt;}
.x40_c00370{left:381.466667pt;}
.x4d_c00370{left:387.866667pt;}
.x2_c00370{left:391.066667pt;}
.x5b_c00370{left:393.733333pt;}
.xc1_c00370{left:396.933333pt;}
.x17_c00370{left:398.133333pt;}
.x8_c00370{left:400.533333pt;}
.x33_c00370{left:406.400000pt;}
.x73_c00370{left:414.666667pt;}
.x41_c00370{left:418.000000pt;}
.xc8_c00370{left:420.533333pt;}
.x18_c00370{left:424.400000pt;}
.x34_c00370{left:425.600000pt;}
.x4e_c00370{left:427.200000pt;}
.xbb_c00370{left:428.133333pt;}
.x7e_c00370{left:430.000000pt;}
.x9_c00370{left:431.200000pt;}
.x25_c00370{left:434.000000pt;}
.x74_c00370{left:440.933333pt;}
.xc2_c00370{left:444.000000pt;}
.x35_c00370{left:445.066667pt;}
.xbc_c00370{left:449.200000pt;}
.xcb_c00370{left:450.133333pt;}
.x90_c00370{left:451.333333pt;}
.xa5_c00370{left:452.400000pt;}
.xab_c00370{left:454.666667pt;}
.x7f_c00370{left:458.533333pt;}
.xa_c00370{left:459.733333pt;}
.x5c_c00370{left:463.866667pt;}
.x26_c00370{left:468.266667pt;}
.x36_c00370{left:470.933333pt;}
.x69_c00370{left:472.800000pt;}
.x42_c00370{left:474.000000pt;}
.x19_c00370{left:477.200000pt;}
.x80_c00370{left:479.600000pt;}
.x5d_c00370{left:482.133333pt;}
.x27_c00370{left:483.600000pt;}
.x87_c00370{left:485.733333pt;}
.xac_c00370{left:488.933333pt;}
.xb4_c00370{left:489.866667pt;}
.x91_c00370{left:494.800000pt;}
.x75_c00370{left:496.666667pt;}
.x4f_c00370{left:498.266667pt;}
.xb_c00370{left:499.733333pt;}
.x43_c00370{left:502.533333pt;}
.x28_c00370{left:506.666667pt;}
.x9a_c00370{left:509.600000pt;}
.x76_c00370{left:515.600000pt;}
.xcc_c00370{left:517.600000pt;}
.x37_c00370{left:519.600000pt;}
.xa6_c00370{left:522.800000pt;}
.x1a_c00370{left:526.133333pt;}
.x44_c00370{left:528.400000pt;}
.x50_c00370{left:529.600000pt;}
.xad_c00370{left:533.066667pt;}
.xb5_c00370{left:535.600000pt;}
.x81_c00370{left:536.533333pt;}
.x77_c00370{left:541.200000pt;}
.x38_c00370{left:546.133333pt;}
.xcd_c00370{left:547.733333pt;}
.xc_c00370{left:551.200000pt;}
.x29_c00370{left:552.400000pt;}
.xa7_c00370{left:553.466667pt;}
.x82_c00370{left:555.466667pt;}
.x88_c00370{left:559.600000pt;}
.x6a_c00370{left:566.400000pt;}
.x51_c00370{left:567.733333pt;}
.x5e_c00370{left:571.066667pt;}
.xae_c00370{left:574.000000pt;}
.x39_c00370{left:576.266667pt;}
.x1b_c00370{left:578.666667pt;}
.xc9_c00370{left:581.733333pt;}
.xd_c00370{left:584.133333pt;}
.x92_c00370{left:586.666667pt;}
.x9b_c00370{left:588.000000pt;}
.xbd_c00370{left:590.666667pt;}
.x52_c00370{left:593.600000pt;}
.x89_c00370{left:598.933333pt;}
.x5f_c00370{left:599.866667pt;}
.xaf_c00370{left:604.133333pt;}
.x2a_c00370{left:608.666667pt;}
.x1c_c00370{left:610.000000pt;}
.x3a_c00370{left:614.000000pt;}
.x60_c00370{left:615.600000pt;}
.xe_c00370{left:618.400000pt;}
.xbe_c00370{left:619.466667pt;}
.x45_c00370{left:621.600000pt;}
.x6b_c00370{left:625.600000pt;}
.x53_c00370{left:627.866667pt;}
.x2b_c00370{left:633.600000pt;}
.xb6_c00370{left:644.400000pt;}
.x54_c00370{left:645.733333pt;}
.x9c_c00370{left:647.466667pt;}
.xf_c00370{left:649.066667pt;}
.x46_c00370{left:652.000000pt;}
.x1d_c00370{left:659.600000pt;}
.x6c_c00370{left:660.533333pt;}
.x9d_c00370{left:665.333333pt;}
.xc3_c00370{left:667.333333pt;}
.x55_c00370{left:670.666667pt;}
.x93_c00370{left:672.266667pt;}
.xb7_c00370{left:673.866667pt;}
.xa8_c00370{left:675.733333pt;}
.x10_c00370{left:677.200000pt;}
.x3b_c00370{left:679.066667pt;}
.x8a_c00370{left:681.200000pt;}
.x61_c00370{left:682.400000pt;}
.x78_c00370{left:683.600000pt;}
.x6d_c00370{left:688.000000pt;}
.x9e_c00370{left:691.200000pt;}
.x94_c00370{left:694.666667pt;}
.x1e_c00370{left:695.733333pt;}
.x79_c00370{left:700.266667pt;}
.xb0_c00370{left:706.933333pt;}
.x83_c00370{left:708.666667pt;}
.x62_c00370{left:713.466667pt;}
}





/* 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_c00371 {
    display:none;
  }
  .loading-indicator_c00371.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00371 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_c00371 { 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_c00371" -> "#page-container .classname_c00371")
 */
.pf_c00371 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00371 { /* 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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00371 { /* 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_c00371 { /* 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_c00371 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00371 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00371 {overflow:visible;}
  }
}
.c_c00371 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00371 { /* 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_c00371:after { /* webkit #35443 */
  content: '';
}
.t_c00371:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00371 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 */
}
.__c00371 { /* 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_c00371 { /* info for Javascript */
  display:none;
}
.l_c00371 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00371 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00371 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00371: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_c00371 {
    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_c00371.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00371.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_c00371 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00371{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00371;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.000000;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;}
.m3_c00371{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.v0_c00371{vertical-align:0.000000px;}
.ls0_c00371{letter-spacing:0.000000px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{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__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:0.000000px;}
.fc0_c00371{color:transparent;}
.fs0_c00371{font-size:30.000000px;}
.y0_c00371{bottom:0.000000px;}
.y2_c00371{bottom:33.900000px;}
.y1_c00371{bottom:606.900000px;}
.h2_c00371{height:30.000000px;}
.h0_c00371{height:1166.759949px;}
.h1_c00371{height:1167.000000px;}
.w1_c00371{width:913.500000px;}
.w0_c00371{width:913.679993px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:788.700000px;}
.x2_c00371{left:789.900000px;}
.x3_c00371{left:820.500000px;}
.x4_c00371{left:849.000000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.fs0_c00371{font-size:26.666667pt;}
.y0_c00371{bottom:0.000000pt;}
.y2_c00371{bottom:30.133333pt;}
.y1_c00371{bottom:539.466667pt;}
.h2_c00371{height:26.666667pt;}
.h0_c00371{height:1037.119955pt;}
.h1_c00371{height:1037.333333pt;}
.w1_c00371{width:812.000000pt;}
.w0_c00371{width:812.159993pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:701.066667pt;}
.x2_c00371{left:702.133333pt;}
.x3_c00371{left:729.333333pt;}
.x4_c00371{left:754.666667pt;}
}





/* 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_c00372 {
    display:none;
  }
  .loading-indicator_c00372.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00372 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_c00372 { 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_c00372" -> "#page-container .classname_c00372")
 */
.pf_c00372 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00372 { /* 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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00372 { /* 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_c00372 { /* 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_c00372 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00372 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00372 {overflow:visible;}
  }
}
.c_c00372 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00372 { /* 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_c00372:after { /* webkit #35443 */
  content: '';
}
.t_c00372:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00372 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 */
}
.__c00372 { /* 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_c00372 { /* info for Javascript */
  display:none;
}
.l_c00372 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00372 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00372 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00372: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_c00372 {
    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_c00372.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00372.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_c00372 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00372{font-family:sans-serif;visibility:hidden;}
.sc__c00372{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00372{-webkit-text-stroke:0px transparent;}
}
.y0_c00372{bottom:0.000000px;}
.h0_c00372{height:1166.759949px;}
.h1_c00372{height:1167.000000px;}
.w1_c00372{width:913.500000px;}
.w0_c00372{width:913.679993px;}
.x0_c00372{left:0.000000px;}
@media print{
.y0_c00372{bottom:0.000000pt;}
.h0_c00372{height:1037.119955pt;}
.h1_c00372{height:1037.333333pt;}
.w1_c00372{width:812.000000pt;}
.w0_c00372{width:812.159993pt;}
.x0_c00372{left:0.000000pt;}
}





/* 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_c00373 {
    display:none;
  }
  .loading-indicator_c00373.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00373 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_c00373 { 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_c00373" -> "#page-container .classname_c00373")
 */
.pf_c00373 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00373 { /* 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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00373 { /* 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_c00373 { /* 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_c00373 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00373 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00373 {overflow:visible;}
  }
}
.c_c00373 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00373 { /* 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_c00373:after { /* webkit #35443 */
  content: '';
}
.t_c00373:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00373 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 */
}
.__c00373 { /* 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_c00373 { /* info for Javascript */
  display:none;
}
.l_c00373 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00373 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00373 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00373: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_c00373 {
    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_c00373.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00373.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_c00373 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00373{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00373;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.000000;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;}
.m34_c00373{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m17_c00373{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00373{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m62_c00373{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m93_c00373{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00373{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m99_c00373{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m58_c00373{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00373{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m39_c00373{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m47_c00373{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m98_c00373{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m42_c00373{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m89_c00373{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00373{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00373{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00373{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00373{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m84_c00373{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00373{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00373{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m83_c00373{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m37_c00373{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m78_c00373{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00373{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m67_c00373{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00373{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00373{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00373{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00373{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m88_c00373{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00373{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00373{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m77_c00373{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m38_c00373{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m86_c00373{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m25_c00373{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m95_c00373{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m13_c00373{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m73_c00373{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m60_c00373{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00373{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00373{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m69_c00373{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m26_c00373{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00373{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m30_c00373{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m94_c00373{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00373{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00373{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m79_c00373{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m23_c00373{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m71_c00373{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00373{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m48_c00373{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00373{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m11_c00373{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00373{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m97_c00373{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00373{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00373{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00373{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00373{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m15_c00373{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m45_c00373{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21_c00373{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m12_c00373{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);}
.m22_c00373{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m20_c00373{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m27_c00373{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m36_c00373{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00373{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00373{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m31_c00373{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m24_c00373{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00373{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m63_c00373{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m41_c00373{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mf_c00373{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m18_c00373{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m16_c00373{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m66_c00373{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00373{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m33_c00373{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00373{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m35_c00373{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m91_c00373{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00373{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00373{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m29_c00373{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m81_c00373{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00373{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m49_c00373{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m54_c00373{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00373{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m74_c00373{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00373{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00373{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m59_c00373{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m28_c00373{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m61_c00373{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m76_c00373{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m96_c00373{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m52_c00373{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m75_c00373{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m51_c00373{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m50_c00373{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m6_c00373{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m14_c00373{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m40_c00373{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m70_c00373{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m56_c00373{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00373{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00373{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m92_c00373{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.md_c00373{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m80_c00373{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00373{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m72_c00373{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m32_c00373{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m44_c00373{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m68_c00373{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m85_c00373{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m64_c00373{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mc_c00373{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00373{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00373{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00373{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00373{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma_c00373{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00373{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m65_c00373{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m43_c00373{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m10_c00373{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2_c00373{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m57_c00373{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m90_c00373{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.mb_c00373{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00373{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00373{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m87_c00373{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00373{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.me_c00373{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m1_c00373{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m55_c00373{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00373{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00373{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00373{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00373{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls0_c00373{letter-spacing:0.000000px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{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__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00373{word-spacing:0.000000px;}
.ws4_c00373{word-spacing:0.458967px;}
.ws0_c00373{word-spacing:1.279548px;}
.ws2_c00373{word-spacing:5.866732px;}
.ws1_c00373{word-spacing:7.662651px;}
.ws6_c00373{word-spacing:10.337621px;}
.ws5_c00373{word-spacing:21.954545px;}
.ws3_c00373{word-spacing:28.074039px;}
.fc0_c00373{color:transparent;}
.fs2_c00373{font-size:48.000000px;}
.fs3_c00373{font-size:54.000000px;}
.fs1_c00373{font-size:66.000000px;}
.fs0_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y23_c00373{bottom:139.650000px;}
.y22_c00373{bottom:155.550000px;}
.y21_c00373{bottom:185.700000px;}
.y20_c00373{bottom:205.500000px;}
.y1f_c00373{bottom:225.150000px;}
.y1e_c00373{bottom:248.850000px;}
.y1d_c00373{bottom:266.100000px;}
.y1c_c00373{bottom:285.900000px;}
.y1b_c00373{bottom:306.000000px;}
.y1a_c00373{bottom:325.500000px;}
.y19_c00373{bottom:344.400000px;}
.y18_c00373{bottom:365.700000px;}
.y17_c00373{bottom:385.500000px;}
.y16_c00373{bottom:405.300000px;}
.y15_c00373{bottom:425.100000px;}
.y14_c00373{bottom:445.200000px;}
.y13_c00373{bottom:465.000000px;}
.y12_c00373{bottom:484.800000px;}
.y11_c00373{bottom:504.900000px;}
.y10_c00373{bottom:524.700000px;}
.yf_c00373{bottom:544.500000px;}
.ye_c00373{bottom:564.600000px;}
.yd_c00373{bottom:584.700000px;}
.yc_c00373{bottom:613.500000px;}
.yb_c00373{bottom:634.050000px;}
.ya_c00373{bottom:653.850000px;}
.y9_c00373{bottom:673.950000px;}
.y8_c00373{bottom:693.750000px;}
.y7_c00373{bottom:713.550000px;}
.y6_c00373{bottom:733.350000px;}
.y5_c00373{bottom:753.450000px;}
.y4_c00373{bottom:786.300000px;}
.y3_c00373{bottom:807.150000px;}
.y2_c00373{bottom:839.550000px;}
.y1_c00373{bottom:1039.650000px;}
.h4_c00373{height:48.000000px;}
.h5_c00373{height:54.000000px;}
.h3_c00373{height:66.000000px;}
.h2_c00373{height:72.000000px;}
.h0_c00373{height:1166.759949px;}
.h1_c00373{height:1167.000000px;}
.w1_c00373{width:913.500000px;}
.w0_c00373{width:913.679993px;}
.x0_c00373{left:0.000000px;}
.xe8_c00373{left:88.800000px;}
.xb1_c00373{left:89.850000px;}
.x44_c00373{left:91.350000px;}
.xe_c00373{left:92.550000px;}
.xe9_c00373{left:108.300000px;}
.x8b_c00373{left:110.100000px;}
.xd5_c00373{left:112.050000px;}
.xe1_c00373{left:115.050000px;}
.xcb_c00373{left:120.300000px;}
.x3_c00373{left:121.650000px;}
.x8c_c00373{left:124.800000px;}
.x45_c00373{left:129.150000px;}
.xf_c00373{left:132.450000px;}
.x52_c00373{left:133.950000px;}
.xfa_c00373{left:136.950000px;}
.x99_c00373{left:138.750000px;}
.xd8_c00373{left:141.600000px;}
.x2c_c00373{left:143.850000px;}
.x1e_c00373{left:147.300000px;}
.x7c_c00373{left:152.550000px;}
.xa6_c00373{left:154.350000px;}
.xbb_c00373{left:156.600000px;}
.x46_c00373{left:157.950000px;}
.xeb_c00373{left:162.900000px;}
.xe2_c00373{left:163.950000px;}
.x9a_c00373{left:165.450000px;}
.x1f_c00373{left:167.850000px;}
.x9f_c00373{left:169.650000px;}
.x36_c00373{left:171.900000px;}
.x61_c00373{left:174.900000px;}
.xf0_c00373{left:180.750000px;}
.x4_c00373{left:181.800000px;}
.xfb_c00373{left:183.000000px;}
.xc3_c00373{left:184.050000px;}
.x8d_c00373{left:188.100000px;}
.xa0_c00373{left:190.200000px;}
.x9b_c00373{left:191.700000px;}
.xec_c00373{left:193.800000px;}
.xcc_c00373{left:196.350000px;}
.x37_c00373{left:200.400000px;}
.x53_c00373{left:202.350000px;}
.xf1_c00373{left:204.150000px;}
.x20_c00373{left:205.350000px;}
.x6a_c00373{left:211.500000px;}
.x84_c00373{left:213.750000px;}
.xd9_c00373{left:216.900000px;}
.x7d_c00373{left:218.400000px;}
.x21_c00373{left:220.800000px;}
.xb6_c00373{left:222.750000px;}
.x10_c00373{left:224.250000px;}
.x38_c00373{left:225.900000px;}
.x47_c00373{left:227.400000px;}
.x8e_c00373{left:228.750000px;}
.x54_c00373{left:230.400000px;}
.x7e_c00373{left:235.650000px;}
.x5_c00373{left:239.100000px;}
.xc4_c00373{left:243.750000px;}
.xf5_c00373{left:244.800000px;}
.x48_c00373{left:247.200000px;}
.x62_c00373{left:248.700000px;}
.xed_c00373{left:251.100000px;}
.xb7_c00373{left:252.600000px;}
.x6_c00373{left:253.800000px;}
.x8f_c00373{left:255.450000px;}
.x85_c00373{left:257.700000px;}
.x6b_c00373{left:259.050000px;}
.x2d_c00373{left:262.650000px;}
.x9c_c00373{left:263.700000px;}
.x11_c00373{left:265.350000px;}
.x55_c00373{left:266.700000px;}
.x39_c00373{left:268.050000px;}
.x6c_c00373{left:270.150000px;}
.x49_c00373{left:274.200000px;}
.xda_c00373{left:276.300000px;}
.xb2_c00373{left:277.800000px;}
.x86_c00373{left:281.850000px;}
.x22_c00373{left:286.650000px;}
.xf2_c00373{left:289.500000px;}
.xa1_c00373{left:293.850000px;}
.x12_c00373{left:294.900000px;}
.x3a_c00373{left:296.100000px;}
.x9d_c00373{left:298.200000px;}
.x6d_c00373{left:299.700000px;}
.xc5_c00373{left:301.350000px;}
.xa7_c00373{left:303.450000px;}
.xb3_c00373{left:304.500000px;}
.x23_c00373{left:306.150000px;}
.x56_c00373{left:312.000000px;}
.x63_c00373{left:313.800000px;}
.xa8_c00373{left:317.850000px;}
.xdb_c00373{left:318.900000px;}
.x7f_c00373{left:321.450000px;}
.xf6_c00373{left:325.500000px;}
.xcd_c00373{left:329.550000px;}
.x90_c00373{left:331.650000px;}
.x13_c00373{left:335.250000px;}
.xf3_c00373{left:336.750000px;}
.x87_c00373{left:341.550000px;}
.x7_c00373{left:343.500000px;}
.x24_c00373{left:344.700000px;}
.x57_c00373{left:346.500000px;}
.xbc_c00373{left:348.150000px;}
.xce_c00373{left:350.400000px;}
.xc_c00373{left:352.500000px;}
.x3b_c00373{left:355.800000px;}
.x2_c00373{left:358.200000px;}
.x6e_c00373{left:359.400000px;}
.xb4_c00373{left:363.600000px;}
.xbd_c00373{left:367.200000px;}
.xf4_c00373{left:369.450000px;}
.x73_c00373{left:371.250000px;}
.x3c_c00373{left:374.100000px;}
.x14_c00373{left:377.400000px;}
.x2e_c00373{left:378.900000px;}
.x80_c00373{left:389.850000px;}
.x91_c00373{left:392.850000px;}
.xcf_c00373{left:394.950000px;}
.xc6_c00373{left:396.750000px;}
.x58_c00373{left:398.400000px;}
.x64_c00373{left:403.350000px;}
.xa9_c00373{left:405.300000px;}
.x2f_c00373{left:407.700000px;}
.x74_c00373{left:408.750000px;}
.x92_c00373{left:413.700000px;}
.x81_c00373{left:415.350000px;}
.xf7_c00373{left:416.550000px;}
.xd_c00373{left:418.050000px;}
.x15_c00373{left:419.100000px;}
.x8_c00373{left:421.200000px;}
.xff_c00373{left:424.200000px;}
.xaa_c00373{left:426.600000px;}
.x59_c00373{left:428.250000px;}
.x65_c00373{left:430.350000px;}
.x4a_c00373{left:432.300000px;}
.x25_c00373{left:436.800000px;}
.x100_c00373{left:437.850000px;}
.xe3_c00373{left:438.900000px;}
.x1_c00373{left:441.750000px;}
.x6f_c00373{left:444.300000px;}
.x93_c00373{left:447.600000px;}
.x4b_c00373{left:454.950000px;}
.xbe_c00373{left:456.150000px;}
.xe4_c00373{left:457.950000px;}
.x16_c00373{left:459.750000px;}
.xdc_c00373{left:460.800000px;}
.xa2_c00373{left:462.000000px;}
.x5a_c00373{left:463.200000px;}
.x30_c00373{left:465.300000px;}
.x94_c00373{left:467.700000px;}
.xee_c00373{left:469.350000px;}
.xfc_c00373{left:470.550000px;}
.x9_c00373{left:478.050000px;}
.x9e_c00373{left:479.700000px;}
.x3d_c00373{left:481.050000px;}
.xa3_c00373{left:482.550000px;}
.x75_c00373{left:485.850000px;}
.xea_c00373{left:487.350000px;}
.x4c_c00373{left:489.150000px;}
.x17_c00373{left:490.650000px;}
.x26_c00373{left:492.600000px;}
.x70_c00373{left:498.600000px;}
.xc7_c00373{left:501.900000px;}
.xab_c00373{left:506.100000px;}
.x3e_c00373{left:507.300000px;}
.xbf_c00373{left:510.600000px;}
.xd0_c00373{left:511.650000px;}
.x5b_c00373{left:512.850000px;}
.x88_c00373{left:515.100000px;}
.xfd_c00373{left:517.050000px;}
.x27_c00373{left:520.350000px;}
.xe5_c00373{left:522.300000px;}
.x4d_c00373{left:523.350000px;}
.xd6_c00373{left:526.800000px;}
.x71_c00373{left:529.500000px;}
.x95_c00373{left:530.700000px;}
.x101_c00373{left:532.050000px;}
.x31_c00373{left:533.400000px;}
.xac_c00373{left:535.200000px;}
.x5c_c00373{left:538.050000px;}
.xfe_c00373{left:540.150000px;}
.x66_c00373{left:541.650000px;}
.x3f_c00373{left:543.600000px;}
.xdd_c00373{left:550.800000px;}
.x4e_c00373{left:552.900000px;}
.x76_c00373{left:554.550000px;}
.x32_c00373{left:557.100000px;}
.xd1_c00373{left:558.750000px;}
.xf8_c00373{left:561.900000px;}
.x5d_c00373{left:563.550000px;}
.x18_c00373{left:566.250000px;}
.x40_c00373{left:568.800000px;}
.xa_c00373{left:573.150000px;}
.xde_c00373{left:575.700000px;}
.xb8_c00373{left:578.100000px;}
.xc8_c00373{left:579.900000px;}
.xd2_c00373{left:581.400000px;}
.x19_c00373{left:582.750000px;}
.xef_c00373{left:586.350000px;}
.x77_c00373{left:588.450000px;}
.xb9_c00373{left:592.200000px;}
.xc9_c00373{left:596.400000px;}
.x72_c00373{left:598.650000px;}
.x28_c00373{left:600.300000px;}
.xad_c00373{left:601.500000px;}
.x4f_c00373{left:602.550000px;}
.x78_c00373{left:607.950000px;}
.x41_c00373{left:611.250000px;}
.xdf_c00373{left:612.450000px;}
.x1a_c00373{left:615.450000px;}
.x67_c00373{left:618.300000px;}
.xae_c00373{left:619.800000px;}
.x5e_c00373{left:624.450000px;}
.x29_c00373{left:628.800000px;}
.x82_c00373{left:630.000000px;}
.xe6_c00373{left:631.350000px;}
.xe0_c00373{left:632.550000px;}
.x79_c00373{left:636.750000px;}
.xc0_c00373{left:639.150000px;}
.x1b_c00373{left:642.150000px;}
.xf9_c00373{left:643.950000px;}
.xb_c00373{left:646.200000px;}
.x68_c00373{left:650.400000px;}
.xc1_c00373{left:656.400000px;}
.x33_c00373{left:658.650000px;}
.xb5_c00373{left:660.900000px;}
.x89_c00373{left:662.400000px;}
.x96_c00373{left:668.700000px;}
.x50_c00373{left:675.300000px;}
.xe7_c00373{left:676.350000px;}
.x2a_c00373{left:677.400000px;}
.x42_c00373{left:678.900000px;}
.x97_c00373{left:681.600000px;}
.xa4_c00373{left:683.100000px;}
.xaf_c00373{left:686.400000px;}
.x1c_c00373{left:687.900000px;}
.x83_c00373{left:690.450000px;}
.x51_c00373{left:696.600000px;}
.x5f_c00373{left:698.550000px;}
.x7a_c00373{left:700.800000px;}
.xa5_c00373{left:704.400000px;}
.x34_c00373{left:705.450000px;}
.xc2_c00373{left:708.900000px;}
.xd7_c00373{left:711.900000px;}
.x8a_c00373{left:713.100000px;}
.xd3_c00373{left:715.050000px;}
.xca_c00373{left:716.550000px;}
.x1d_c00373{left:718.500000px;}
.xba_c00373{left:719.700000px;}
.x98_c00373{left:723.000000px;}
.xb0_c00373{left:725.250000px;}
.x60_c00373{left:728.400000px;}
.x43_c00373{left:730.350000px;}
.x69_c00373{left:732.150000px;}
.x7b_c00373{left:736.050000px;}
.x2b_c00373{left:737.850000px;}
.xd4_c00373{left:740.250000px;}
.x35_c00373{left:745.350000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws7_c00373{word-spacing:0.000000pt;}
.ws4_c00373{word-spacing:0.407970pt;}
.ws0_c00373{word-spacing:1.137376pt;}
.ws2_c00373{word-spacing:5.214873pt;}
.ws1_c00373{word-spacing:6.811245pt;}
.ws6_c00373{word-spacing:9.188996pt;}
.ws5_c00373{word-spacing:19.515152pt;}
.ws3_c00373{word-spacing:24.954702pt;}
.fs2_c00373{font-size:42.666667pt;}
.fs3_c00373{font-size:48.000000pt;}
.fs1_c00373{font-size:58.666667pt;}
.fs0_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y23_c00373{bottom:124.133333pt;}
.y22_c00373{bottom:138.266667pt;}
.y21_c00373{bottom:165.066667pt;}
.y20_c00373{bottom:182.666667pt;}
.y1f_c00373{bottom:200.133333pt;}
.y1e_c00373{bottom:221.200000pt;}
.y1d_c00373{bottom:236.533333pt;}
.y1c_c00373{bottom:254.133333pt;}
.y1b_c00373{bottom:272.000000pt;}
.y1a_c00373{bottom:289.333333pt;}
.y19_c00373{bottom:306.133333pt;}
.y18_c00373{bottom:325.066667pt;}
.y17_c00373{bottom:342.666667pt;}
.y16_c00373{bottom:360.266667pt;}
.y15_c00373{bottom:377.866667pt;}
.y14_c00373{bottom:395.733333pt;}
.y13_c00373{bottom:413.333333pt;}
.y12_c00373{bottom:430.933333pt;}
.y11_c00373{bottom:448.800000pt;}
.y10_c00373{bottom:466.400000pt;}
.yf_c00373{bottom:484.000000pt;}
.ye_c00373{bottom:501.866667pt;}
.yd_c00373{bottom:519.733333pt;}
.yc_c00373{bottom:545.333333pt;}
.yb_c00373{bottom:563.600000pt;}
.ya_c00373{bottom:581.200000pt;}
.y9_c00373{bottom:599.066667pt;}
.y8_c00373{bottom:616.666667pt;}
.y7_c00373{bottom:634.266667pt;}
.y6_c00373{bottom:651.866667pt;}
.y5_c00373{bottom:669.733333pt;}
.y4_c00373{bottom:698.933333pt;}
.y3_c00373{bottom:717.466667pt;}
.y2_c00373{bottom:746.266667pt;}
.y1_c00373{bottom:924.133333pt;}
.h4_c00373{height:42.666667pt;}
.h5_c00373{height:48.000000pt;}
.h3_c00373{height:58.666667pt;}
.h2_c00373{height:64.000000pt;}
.h0_c00373{height:1037.119955pt;}
.h1_c00373{height:1037.333333pt;}
.w1_c00373{width:812.000000pt;}
.w0_c00373{width:812.159993pt;}
.x0_c00373{left:0.000000pt;}
.xe8_c00373{left:78.933333pt;}
.xb1_c00373{left:79.866667pt;}
.x44_c00373{left:81.200000pt;}
.xe_c00373{left:82.266667pt;}
.xe9_c00373{left:96.266667pt;}
.x8b_c00373{left:97.866667pt;}
.xd5_c00373{left:99.600000pt;}
.xe1_c00373{left:102.266667pt;}
.xcb_c00373{left:106.933333pt;}
.x3_c00373{left:108.133333pt;}
.x8c_c00373{left:110.933333pt;}
.x45_c00373{left:114.800000pt;}
.xf_c00373{left:117.733333pt;}
.x52_c00373{left:119.066667pt;}
.xfa_c00373{left:121.733333pt;}
.x99_c00373{left:123.333333pt;}
.xd8_c00373{left:125.866667pt;}
.x2c_c00373{left:127.866667pt;}
.x1e_c00373{left:130.933333pt;}
.x7c_c00373{left:135.600000pt;}
.xa6_c00373{left:137.200000pt;}
.xbb_c00373{left:139.200000pt;}
.x46_c00373{left:140.400000pt;}
.xeb_c00373{left:144.800000pt;}
.xe2_c00373{left:145.733333pt;}
.x9a_c00373{left:147.066667pt;}
.x1f_c00373{left:149.200000pt;}
.x9f_c00373{left:150.800000pt;}
.x36_c00373{left:152.800000pt;}
.x61_c00373{left:155.466667pt;}
.xf0_c00373{left:160.666667pt;}
.x4_c00373{left:161.600000pt;}
.xfb_c00373{left:162.666667pt;}
.xc3_c00373{left:163.600000pt;}
.x8d_c00373{left:167.200000pt;}
.xa0_c00373{left:169.066667pt;}
.x9b_c00373{left:170.400000pt;}
.xec_c00373{left:172.266667pt;}
.xcc_c00373{left:174.533333pt;}
.x37_c00373{left:178.133333pt;}
.x53_c00373{left:179.866667pt;}
.xf1_c00373{left:181.466667pt;}
.x20_c00373{left:182.533333pt;}
.x6a_c00373{left:188.000000pt;}
.x84_c00373{left:190.000000pt;}
.xd9_c00373{left:192.800000pt;}
.x7d_c00373{left:194.133333pt;}
.x21_c00373{left:196.266667pt;}
.xb6_c00373{left:198.000000pt;}
.x10_c00373{left:199.333333pt;}
.x38_c00373{left:200.800000pt;}
.x47_c00373{left:202.133333pt;}
.x8e_c00373{left:203.333333pt;}
.x54_c00373{left:204.800000pt;}
.x7e_c00373{left:209.466667pt;}
.x5_c00373{left:212.533333pt;}
.xc4_c00373{left:216.666667pt;}
.xf5_c00373{left:217.600000pt;}
.x48_c00373{left:219.733333pt;}
.x62_c00373{left:221.066667pt;}
.xed_c00373{left:223.200000pt;}
.xb7_c00373{left:224.533333pt;}
.x6_c00373{left:225.600000pt;}
.x8f_c00373{left:227.066667pt;}
.x85_c00373{left:229.066667pt;}
.x6b_c00373{left:230.266667pt;}
.x2d_c00373{left:233.466667pt;}
.x9c_c00373{left:234.400000pt;}
.x11_c00373{left:235.866667pt;}
.x55_c00373{left:237.066667pt;}
.x39_c00373{left:238.266667pt;}
.x6c_c00373{left:240.133333pt;}
.x49_c00373{left:243.733333pt;}
.xda_c00373{left:245.600000pt;}
.xb2_c00373{left:246.933333pt;}
.x86_c00373{left:250.533333pt;}
.x22_c00373{left:254.800000pt;}
.xf2_c00373{left:257.333333pt;}
.xa1_c00373{left:261.200000pt;}
.x12_c00373{left:262.133333pt;}
.x3a_c00373{left:263.200000pt;}
.x9d_c00373{left:265.066667pt;}
.x6d_c00373{left:266.400000pt;}
.xc5_c00373{left:267.866667pt;}
.xa7_c00373{left:269.733333pt;}
.xb3_c00373{left:270.666667pt;}
.x23_c00373{left:272.133333pt;}
.x56_c00373{left:277.333333pt;}
.x63_c00373{left:278.933333pt;}
.xa8_c00373{left:282.533333pt;}
.xdb_c00373{left:283.466667pt;}
.x7f_c00373{left:285.733333pt;}
.xf6_c00373{left:289.333333pt;}
.xcd_c00373{left:292.933333pt;}
.x90_c00373{left:294.800000pt;}
.x13_c00373{left:298.000000pt;}
.xf3_c00373{left:299.333333pt;}
.x87_c00373{left:303.600000pt;}
.x7_c00373{left:305.333333pt;}
.x24_c00373{left:306.400000pt;}
.x57_c00373{left:308.000000pt;}
.xbc_c00373{left:309.466667pt;}
.xce_c00373{left:311.466667pt;}
.xc_c00373{left:313.333333pt;}
.x3b_c00373{left:316.266667pt;}
.x2_c00373{left:318.400000pt;}
.x6e_c00373{left:319.466667pt;}
.xb4_c00373{left:323.200000pt;}
.xbd_c00373{left:326.400000pt;}
.xf4_c00373{left:328.400000pt;}
.x73_c00373{left:330.000000pt;}
.x3c_c00373{left:332.533333pt;}
.x14_c00373{left:335.466667pt;}
.x2e_c00373{left:336.800000pt;}
.x80_c00373{left:346.533333pt;}
.x91_c00373{left:349.200000pt;}
.xcf_c00373{left:351.066667pt;}
.xc6_c00373{left:352.666667pt;}
.x58_c00373{left:354.133333pt;}
.x64_c00373{left:358.533333pt;}
.xa9_c00373{left:360.266667pt;}
.x2f_c00373{left:362.400000pt;}
.x74_c00373{left:363.333333pt;}
.x92_c00373{left:367.733333pt;}
.x81_c00373{left:369.200000pt;}
.xf7_c00373{left:370.266667pt;}
.xd_c00373{left:371.600000pt;}
.x15_c00373{left:372.533333pt;}
.x8_c00373{left:374.400000pt;}
.xff_c00373{left:377.066667pt;}
.xaa_c00373{left:379.200000pt;}
.x59_c00373{left:380.666667pt;}
.x65_c00373{left:382.533333pt;}
.x4a_c00373{left:384.266667pt;}
.x25_c00373{left:388.266667pt;}
.x100_c00373{left:389.200000pt;}
.xe3_c00373{left:390.133333pt;}
.x1_c00373{left:392.666667pt;}
.x6f_c00373{left:394.933333pt;}
.x93_c00373{left:397.866667pt;}
.x4b_c00373{left:404.400000pt;}
.xbe_c00373{left:405.466667pt;}
.xe4_c00373{left:407.066667pt;}
.x16_c00373{left:408.666667pt;}
.xdc_c00373{left:409.600000pt;}
.xa2_c00373{left:410.666667pt;}
.x5a_c00373{left:411.733333pt;}
.x30_c00373{left:413.600000pt;}
.x94_c00373{left:415.733333pt;}
.xee_c00373{left:417.200000pt;}
.xfc_c00373{left:418.266667pt;}
.x9_c00373{left:424.933333pt;}
.x9e_c00373{left:426.400000pt;}
.x3d_c00373{left:427.600000pt;}
.xa3_c00373{left:428.933333pt;}
.x75_c00373{left:431.866667pt;}
.xea_c00373{left:433.200000pt;}
.x4c_c00373{left:434.800000pt;}
.x17_c00373{left:436.133333pt;}
.x26_c00373{left:437.866667pt;}
.x70_c00373{left:443.200000pt;}
.xc7_c00373{left:446.133333pt;}
.xab_c00373{left:449.866667pt;}
.x3e_c00373{left:450.933333pt;}
.xbf_c00373{left:453.866667pt;}
.xd0_c00373{left:454.800000pt;}
.x5b_c00373{left:455.866667pt;}
.x88_c00373{left:457.866667pt;}
.xfd_c00373{left:459.600000pt;}
.x27_c00373{left:462.533333pt;}
.xe5_c00373{left:464.266667pt;}
.x4d_c00373{left:465.200000pt;}
.xd6_c00373{left:468.266667pt;}
.x71_c00373{left:470.666667pt;}
.x95_c00373{left:471.733333pt;}
.x101_c00373{left:472.933333pt;}
.x31_c00373{left:474.133333pt;}
.xac_c00373{left:475.733333pt;}
.x5c_c00373{left:478.266667pt;}
.xfe_c00373{left:480.133333pt;}
.x66_c00373{left:481.466667pt;}
.x3f_c00373{left:483.200000pt;}
.xdd_c00373{left:489.600000pt;}
.x4e_c00373{left:491.466667pt;}
.x76_c00373{left:492.933333pt;}
.x32_c00373{left:495.200000pt;}
.xd1_c00373{left:496.666667pt;}
.xf8_c00373{left:499.466667pt;}
.x5d_c00373{left:500.933333pt;}
.x18_c00373{left:503.333333pt;}
.x40_c00373{left:505.600000pt;}
.xa_c00373{left:509.466667pt;}
.xde_c00373{left:511.733333pt;}
.xb8_c00373{left:513.866667pt;}
.xc8_c00373{left:515.466667pt;}
.xd2_c00373{left:516.800000pt;}
.x19_c00373{left:518.000000pt;}
.xef_c00373{left:521.200000pt;}
.x77_c00373{left:523.066667pt;}
.xb9_c00373{left:526.400000pt;}
.xc9_c00373{left:530.133333pt;}
.x72_c00373{left:532.133333pt;}
.x28_c00373{left:533.600000pt;}
.xad_c00373{left:534.666667pt;}
.x4f_c00373{left:535.600000pt;}
.x78_c00373{left:540.400000pt;}
.x41_c00373{left:543.333333pt;}
.xdf_c00373{left:544.400000pt;}
.x1a_c00373{left:547.066667pt;}
.x67_c00373{left:549.600000pt;}
.xae_c00373{left:550.933333pt;}
.x5e_c00373{left:555.066667pt;}
.x29_c00373{left:558.933333pt;}
.x82_c00373{left:560.000000pt;}
.xe6_c00373{left:561.200000pt;}
.xe0_c00373{left:562.266667pt;}
.x79_c00373{left:566.000000pt;}
.xc0_c00373{left:568.133333pt;}
.x1b_c00373{left:570.800000pt;}
.xf9_c00373{left:572.400000pt;}
.xb_c00373{left:574.400000pt;}
.x68_c00373{left:578.133333pt;}
.xc1_c00373{left:583.466667pt;}
.x33_c00373{left:585.466667pt;}
.xb5_c00373{left:587.466667pt;}
.x89_c00373{left:588.800000pt;}
.x96_c00373{left:594.400000pt;}
.x50_c00373{left:600.266667pt;}
.xe7_c00373{left:601.200000pt;}
.x2a_c00373{left:602.133333pt;}
.x42_c00373{left:603.466667pt;}
.x97_c00373{left:605.866667pt;}
.xa4_c00373{left:607.200000pt;}
.xaf_c00373{left:610.133333pt;}
.x1c_c00373{left:611.466667pt;}
.x83_c00373{left:613.733333pt;}
.x51_c00373{left:619.200000pt;}
.x5f_c00373{left:620.933333pt;}
.x7a_c00373{left:622.933333pt;}
.xa5_c00373{left:626.133333pt;}
.x34_c00373{left:627.066667pt;}
.xc2_c00373{left:630.133333pt;}
.xd7_c00373{left:632.800000pt;}
.x8a_c00373{left:633.866667pt;}
.xd3_c00373{left:635.600000pt;}
.xca_c00373{left:636.933333pt;}
.x1d_c00373{left:638.666667pt;}
.xba_c00373{left:639.733333pt;}
.x98_c00373{left:642.666667pt;}
.xb0_c00373{left:644.666667pt;}
.x60_c00373{left:647.466667pt;}
.x43_c00373{left:649.200000pt;}
.x69_c00373{left:650.800000pt;}
.x7b_c00373{left:654.266667pt;}
.x2b_c00373{left:655.866667pt;}
.xd4_c00373{left:658.000000pt;}
.x35_c00373{left:662.533333pt;}
}





/* 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_c00374 {
    display:none;
  }
  .loading-indicator_c00374.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00374 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_c00374 { 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_c00374" -> "#page-container .classname_c00374")
 */
.pf_c00374 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00374 { /* 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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00374 { /* 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_c00374 { /* 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_c00374 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00374 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00374 {overflow:visible;}
  }
}
.c_c00374 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00374 { /* 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_c00374:after { /* webkit #35443 */
  content: '';
}
.t_c00374:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00374 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 */
}
.__c00374 { /* 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_c00374 { /* info for Javascript */
  display:none;
}
.l_c00374 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00374 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00374 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00374: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_c00374 {
    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_c00374.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00374.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_c00374 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00374{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00374;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.000000;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;}
.m13_c00374{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m65_c00374{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m78_c00374{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m89_c00374{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00374{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m87_c00374{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00374{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m99_c00374{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00374{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m64_c00374{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m10_c00374{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m80_c00374{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00374{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m41_c00374{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m76_c00374{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00374{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00374{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m62_c00374{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m83_c00374{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m58_c00374{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00374{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m81_c00374{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00374{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00374{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m88_c00374{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m77_c00374{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m19_c00374{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m69_c00374{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m97_c00374{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.me_c00374{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m25_c00374{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m60_c00374{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m32_c00374{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00374{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00374{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00374{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00374{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m28_c00374{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m75_c00374{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m47_c00374{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m59_c00374{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m92_c00374{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m71_c00374{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00374{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00374{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3_c00374{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00374{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00374{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m61_c00374{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m29_c00374{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5_c00374{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00374{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2_c00374{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00374{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00374{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00374{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m36_c00374{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00374{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m15_c00374{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00374{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m35_c00374{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m68_c00374{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00374{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m79_c00374{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00374{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m86_c00374{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00374{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00374{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00374{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m72_c00374{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m98_c00374{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00374{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m49_c00374{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m51_c00374{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m96_c00374{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m95_c00374{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00374{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00374{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00374{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00374{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00374{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m74_c00374{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00374{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m31_c00374{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m91_c00374{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00374{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m48_c00374{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00374{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m82_c00374{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00374{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m21_c00374{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00374{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m45_c00374{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00374{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00374{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m53_c00374{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m94_c00374{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m57_c00374{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m46_c00374{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m52_c00374{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m37_c00374{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m90_c00374{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00374{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00374{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);}
.ma4_c00374{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m50_c00374{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00374{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00374{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m40_c00374{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m43_c00374{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m70_c00374{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m54_c00374{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00374{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00374{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00374{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00374{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00374{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00374{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c00374{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00374{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00374{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m67_c00374{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m73_c00374{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m84_c00374{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00374{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00374{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m42_c00374{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00374{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m66_c00374{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00374{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00374{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00374{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m63_c00374{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.v0_c00374{vertical-align:0.000000px;}
.ls0_c00374{letter-spacing:0.000000px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{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__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00374{word-spacing:-3.194444px;}
.wsb_c00374{word-spacing:0.000000px;}
.ws6_c00374{word-spacing:1.666667px;}
.ws4_c00374{word-spacing:3.518519px;}
.ws0_c00374{word-spacing:4.137931px;}
.ws9_c00374{word-spacing:5.000000px;}
.wsa_c00374{word-spacing:6.527778px;}
.ws1_c00374{word-spacing:8.055556px;}
.ws8_c00374{word-spacing:8.529412px;}
.ws7_c00374{word-spacing:14.411765px;}
.ws5_c00374{word-spacing:17.808219px;}
.ws2_c00374{word-spacing:27.592593px;}
.fc0_c00374{color:transparent;}
.fs0_c00374{font-size:60.000000px;}
.y0_c00374{bottom:0.000000px;}
.y2d_c00374{bottom:154.650000px;}
.y2c_c00374{bottom:174.450000px;}
.y2b_c00374{bottom:194.550000px;}
.y2a_c00374{bottom:214.650000px;}
.y29_c00374{bottom:234.450000px;}
.y28_c00374{bottom:254.250000px;}
.y27_c00374{bottom:274.050000px;}
.y26_c00374{bottom:294.150000px;}
.y25_c00374{bottom:314.250000px;}
.y24_c00374{bottom:334.050000px;}
.y23_c00374{bottom:354.150000px;}
.y22_c00374{bottom:373.950000px;}
.y21_c00374{bottom:394.050000px;}
.y20_c00374{bottom:414.150000px;}
.y1f_c00374{bottom:433.950000px;}
.y1e_c00374{bottom:454.050000px;}
.y1d_c00374{bottom:474.150000px;}
.y1c_c00374{bottom:494.250000px;}
.y1b_c00374{bottom:514.050000px;}
.y1a_c00374{bottom:532.800000px;}
.y19_c00374{bottom:554.400000px;}
.y18_c00374{bottom:574.200000px;}
.y17_c00374{bottom:594.000000px;}
.y16_c00374{bottom:614.100000px;}
.y15_c00374{bottom:634.050000px;}
.y14_c00374{bottom:654.150000px;}
.y13_c00374{bottom:674.700000px;}
.y12_c00374{bottom:694.800000px;}
.y11_c00374{bottom:714.600000px;}
.y10_c00374{bottom:734.700000px;}
.yf_c00374{bottom:754.500000px;}
.ye_c00374{bottom:774.600000px;}
.yd_c00374{bottom:794.100000px;}
.yc_c00374{bottom:812.700000px;}
.yb_c00374{bottom:834.300000px;}
.ya_c00374{bottom:854.400000px;}
.y9_c00374{bottom:874.500000px;}
.y8_c00374{bottom:894.300000px;}
.y7_c00374{bottom:914.400000px;}
.y6_c00374{bottom:934.500000px;}
.y5_c00374{bottom:954.300000px;}
.y4_c00374{bottom:974.400000px;}
.y3_c00374{bottom:993.900000px;}
.y2_c00374{bottom:1014.450000px;}
.y1_c00374{bottom:1050.150000px;}
.h2_c00374{height:60.000000px;}
.h0_c00374{height:1166.759949px;}
.h1_c00374{height:1167.000000px;}
.w1_c00374{width:913.500000px;}
.w0_c00374{width:913.679993px;}
.x0_c00374{left:0.000000px;}
.x52_c00374{left:140.850000px;}
.x1_c00374{left:142.200000px;}
.x90_c00374{left:143.250000px;}
.xbe_c00374{left:144.450000px;}
.xe6_c00374{left:145.500000px;}
.x10d_c00374{left:146.700000px;}
.x13f_c00374{left:148.050000px;}
.x14c_c00374{left:149.100000px;}
.x68_c00374{left:160.200000px;}
.x3_c00374{left:161.700000px;}
.x13_c00374{left:163.950000px;}
.xda_c00374{left:165.150000px;}
.xc6_c00374{left:166.500000px;}
.x5a_c00374{left:169.650000px;}
.x77_c00374{left:171.300000px;}
.x43_c00374{left:173.700000px;}
.x99_c00374{left:175.350000px;}
.xdf_c00374{left:176.400000px;}
.x69_c00374{left:177.900000px;}
.x25_c00374{left:179.550000px;}
.xe7_c00374{left:180.750000px;}
.x101_c00374{left:181.800000px;}
.x85_c00374{left:183.300000px;}
.x115_c00374{left:184.800000px;}
.xc7_c00374{left:187.350000px;}
.xbf_c00374{left:189.150000px;}
.x26_c00374{left:190.350000px;}
.xf5_c00374{left:192.600000px;}
.x14_c00374{left:195.300000px;}
.xa7_c00374{left:196.950000px;}
.x36_c00374{left:198.600000px;}
.x5b_c00374{left:199.950000px;}
.x10e_c00374{left:201.450000px;}
.x9a_c00374{left:205.650000px;}
.x27_c00374{left:208.050000px;}
.xc0_c00374{left:209.250000px;}
.x86_c00374{left:211.050000px;}
.xf6_c00374{left:212.100000px;}
.x6a_c00374{left:214.500000px;}
.xa8_c00374{left:216.450000px;}
.x147_c00374{left:219.150000px;}
.x140_c00374{left:220.650000px;}
.x44_c00374{left:222.000000px;}
.xee_c00374{left:223.350000px;}
.x126_c00374{left:226.050000px;}
.x4_c00374{left:228.300000px;}
.xe8_c00374{left:230.400000px;}
.x102_c00374{left:231.450000px;}
.xcf_c00374{left:234.300000px;}
.x129_c00374{left:235.500000px;}
.x91_c00374{left:236.850000px;}
.x28_c00374{left:238.350000px;}
.x10f_c00374{left:240.300000px;}
.xb6_c00374{left:241.950000px;}
.xc8_c00374{left:243.450000px;}
.x11f_c00374{left:246.300000px;}
.x15_c00374{left:250.350000px;}
.x78_c00374{left:252.000000px;}
.x45_c00374{left:253.350000px;}
.x116_c00374{left:254.700000px;}
.xef_c00374{left:256.050000px;}
.xc1_c00374{left:257.100000px;}
.x5_c00374{left:258.600000px;}
.x5c_c00374{left:260.400000px;}
.xa9_c00374{left:262.500000px;}
.xfc_c00374{left:263.850000px;}
.x53_c00374{left:264.900000px;}
.x29_c00374{left:267.150000px;}
.x92_c00374{left:268.950000px;}
.x12a_c00374{left:270.000000px;}
.x16_c00374{left:273.000000px;}
.x9b_c00374{left:274.350000px;}
.x103_c00374{left:275.400000px;}
.xb7_c00374{left:279.450000px;}
.xe0_c00374{left:281.850000px;}
.x120_c00374{left:283.350000px;}
.x93_c00374{left:284.400000px;}
.x14d_c00374{left:286.650000px;}
.x108_c00374{left:289.200000px;}
.xdb_c00374{left:293.550000px;}
.x37_c00374{left:295.500000px;}
.x6b_c00374{left:297.300000px;}
.xd4_c00374{left:299.250000px;}
.xaf_c00374{left:300.900000px;}
.x17_c00374{left:302.100000px;}
.x46_c00374{left:307.350000px;}
.x110_c00374{left:308.700000px;}
.x6_c00374{left:311.550000px;}
.x79_c00374{left:314.250000px;}
.x38_c00374{left:315.600000px;}
.xc9_c00374{left:317.250000px;}
.xd5_c00374{left:318.750000px;}
.x2a_c00374{left:321.150000px;}
.xb0_c00374{left:323.250000px;}
.xfd_c00374{left:325.800000px;}
.x6c_c00374{left:328.200000px;}
.x7_c00374{left:329.850000px;}
.x9c_c00374{left:331.200000px;}
.xc2_c00374{left:333.000000px;}
.x13a_c00374{left:334.050000px;}
.x7a_c00374{left:335.100000px;}
.x39_c00374{left:339.000000px;}
.x87_c00374{left:340.950000px;}
.x117_c00374{left:342.150000px;}
.x5d_c00374{left:343.950000px;}
.x104_c00374{left:349.200000px;}
.x18_c00374{left:351.000000px;}
.xdc_c00374{left:352.950000px;}
.xb1_c00374{left:354.150000px;}
.x47_c00374{left:355.200000px;}
.x8_c00374{left:357.900000px;}
.xe1_c00374{left:358.950000px;}
.x88_c00374{left:360.450000px;}
.x152_c00374{left:361.950000px;}
.x142_c00374{left:363.000000px;}
.x7b_c00374{left:364.200000px;}
.xf0_c00374{left:365.250000px;}
.x19_c00374{left:367.200000px;}
.x121_c00374{left:368.850000px;}
.x148_c00374{left:371.400000px;}
.x5e_c00374{left:372.750000px;}
.x48_c00374{left:374.250000px;}
.x3a_c00374{left:375.750000px;}
.xca_c00374{left:377.400000px;}
.x2b_c00374{left:379.500000px;}
.xf7_c00374{left:383.400000px;}
.x11a_c00374{left:386.250000px;}
.x1a_c00374{left:387.300000px;}
.xb8_c00374{left:391.350000px;}
.x94_c00374{left:393.600000px;}
.x9d_c00374{left:395.400000px;}
.x132_c00374{left:397.350000px;}
.x3b_c00374{left:399.450000px;}
.x137_c00374{left:400.500000px;}
.x109_c00374{left:401.850000px;}
.xe9_c00374{left:403.800000px;}
.x143_c00374{left:405.150000px;}
.x49_c00374{left:406.650000px;}
.x6d_c00374{left:408.150000px;}
.x9_c00374{left:410.100000px;}
.x2c_c00374{left:412.200000px;}
.x111_c00374{left:414.600000px;}
.x5f_c00374{left:415.950000px;}
.x54_c00374{left:418.500000px;}
.x1b_c00374{left:420.000000px;}
.x127_c00374{left:421.800000px;}
.x7c_c00374{left:424.650000px;}
.xf8_c00374{left:426.300000px;}
.xea_c00374{left:427.950000px;}
.xa_c00374{left:429.150000px;}
.x60_c00374{left:430.350000px;}
.x13b_c00374{left:433.500000px;}
.x4a_c00374{left:436.200000px;}
.x2_c00374{left:439.200000px;}
.x9e_c00374{left:441.150000px;}
.xd6_c00374{left:444.450000px;}
.x61_c00374{left:446.250000px;}
.x3c_c00374{left:448.350000px;}
.xcb_c00374{left:450.150000px;}
.x1c_c00374{left:452.100000px;}
.x7d_c00374{left:453.450000px;}
.x4b_c00374{left:455.700000px;}
.xb_c00374{left:457.650000px;}
.x10a_c00374{left:459.900000px;}
.x9f_c00374{left:461.250000px;}
.x95_c00374{left:463.500000px;}
.x149_c00374{left:464.550000px;}
.x105_c00374{left:467.400000px;}
.xfe_c00374{left:469.350000px;}
.x89_c00374{left:472.050000px;}
.x11b_c00374{left:474.150000px;}
.x6e_c00374{left:475.200000px;}
.x96_c00374{left:477.900000px;}
.xe2_c00374{left:479.550000px;}
.x4c_c00374{left:482.700000px;}
.xaa_c00374{left:483.900000px;}
.xdd_c00374{left:485.100000px;}
.x2d_c00374{left:487.050000px;}
.x7e_c00374{left:489.150000px;}
.x12b_c00374{left:491.700000px;}
.x112_c00374{left:493.350000px;}
.xff_c00374{left:494.550000px;}
.x62_c00374{left:496.350000px;}
.x8a_c00374{left:498.300000px;}
.x6f_c00374{left:500.400000px;}
.xf1_c00374{left:502.350000px;}
.xa0_c00374{left:503.400000px;}
.x122_c00374{left:504.600000px;}
.xf9_c00374{left:506.100000px;}
.x63_c00374{left:507.150000px;}
.x97_c00374{left:508.500000px;}
.x1d_c00374{left:510.000000px;}
.x113_c00374{left:512.400000px;}
.xb9_c00374{left:517.650000px;}
.x2e_c00374{left:518.700000px;}
.x98_c00374{left:520.350000px;}
.xeb_c00374{left:522.000000px;}
.x12c_c00374{left:528.000000px;}
.xd0_c00374{left:529.350000px;}
.x100_c00374{left:530.850000px;}
.x7f_c00374{left:532.650000px;}
.x4d_c00374{left:535.200000px;}
.xe3_c00374{left:536.850000px;}
.x12d_c00374{left:539.100000px;}
.x145_c00374{left:540.150000px;}
.xf2_c00374{left:541.200000px;}
.xab_c00374{left:542.550000px;}
.xc_c00374{left:544.350000px;}
.x2f_c00374{left:546.750000px;}
.x14e_c00374{left:547.950000px;}
.x8b_c00374{left:549.000000px;}
.x70_c00374{left:550.800000px;}
.x80_c00374{left:552.750000px;}
.xd7_c00374{left:554.550000px;}
.x4e_c00374{left:556.050000px;}
.xd_c00374{left:558.450000px;}
.x13c_c00374{left:559.500000px;}
.xd1_c00374{left:560.700000px;}
.xcc_c00374{left:562.350000px;}
.xa1_c00374{left:566.400000px;}
.x71_c00374{left:568.500000px;}
.x10b_c00374{left:570.150000px;}
.x1e_c00374{left:574.050000px;}
.xe_c00374{left:576.150000px;}
.x3d_c00374{left:579.000000px;}
.x144_c00374{left:583.650000px;}
.xc3_c00374{left:584.850000px;}
.x11c_c00374{left:586.200000px;}
.xf3_c00374{left:587.250000px;}
.x81_c00374{left:588.450000px;}
.x128_c00374{left:590.250000px;}
.x55_c00374{left:592.200000px;}
.x133_c00374{left:593.250000px;}
.x8c_c00374{left:594.750000px;}
.xba_c00374{left:596.550000px;}
.x30_c00374{left:598.650000px;}
.x14f_c00374{left:601.200000px;}
.x72_c00374{left:602.700000px;}
.x14a_c00374{left:603.900000px;}
.x106_c00374{left:604.950000px;}
.xe4_c00374{left:607.050000px;}
.x1f_c00374{left:608.250000px;}
.xd8_c00374{left:610.050000px;}
.xb2_c00374{left:612.300000px;}
.x12e_c00374{left:613.950000px;}
.xac_c00374{left:616.350000px;}
.x31_c00374{left:618.450000px;}
.xa2_c00374{left:620.100000px;}
.x3e_c00374{left:621.900000px;}
.xec_c00374{left:623.250000px;}
.xfa_c00374{left:626.700000px;}
.x12f_c00374{left:629.100000px;}
.x73_c00374{left:630.750000px;}
.x64_c00374{left:632.400000px;}
.x56_c00374{left:633.900000px;}
.xf_c00374{left:635.250000px;}
.xad_c00374{left:636.450000px;}
.xbb_c00374{left:637.650000px;}
.x123_c00374{left:638.850000px;}
.x134_c00374{left:640.800000px;}
.xb3_c00374{left:641.850000px;}
.x4f_c00374{left:644.100000px;}
.x32_c00374{left:645.750000px;}
.x65_c00374{left:647.850000px;}
.x20_c00374{left:652.500000px;}
.xcd_c00374{left:656.250000px;}
.x150_c00374{left:658.050000px;}
.x66_c00374{left:660.150000px;}
.xd2_c00374{left:661.800000px;}
.x82_c00374{left:666.750000px;}
.x124_c00374{left:668.700000px;}
.xe5_c00374{left:671.850000px;}
.xd9_c00374{left:673.050000px;}
.x21_c00374{left:674.850000px;}
.x74_c00374{left:676.800000px;}
.x57_c00374{left:678.900000px;}
.x146_c00374{left:680.550000px;}
.xc4_c00374{left:682.800000px;}
.x13d_c00374{left:685.500000px;}
.x3f_c00374{left:686.700000px;}
.x8d_c00374{left:687.900000px;}
.x151_c00374{left:689.400000px;}
.x10_c00374{left:691.050000px;}
.x50_c00374{left:693.450000px;}
.xa3_c00374{left:695.250000px;}
.x75_c00374{left:697.650000px;}
.xb4_c00374{left:700.200000px;}
.xed_c00374{left:702.150000px;}
.xfb_c00374{left:703.650000px;}
.x130_c00374{left:706.050000px;}
.x22_c00374{left:708.000000px;}
.x40_c00374{left:709.350000px;}
.xce_c00374{left:713.400000px;}
.x58_c00374{left:716.250000px;}
.x8e_c00374{left:718.800000px;}
.xae_c00374{left:721.050000px;}
.x125_c00374{left:722.250000px;}
.x10c_c00374{left:724.500000px;}
.xa4_c00374{left:726.600000px;}
.x14b_c00374{left:728.400000px;}
.x33_c00374{left:729.600000px;}
.x135_c00374{left:730.650000px;}
.x83_c00374{left:731.850000px;}
.x67_c00374{left:733.650000px;}
.xf4_c00374{left:735.450000px;}
.x107_c00374{left:736.950000px;}
.xde_c00374{left:739.350000px;}
.x34_c00374{left:740.700000px;}
.x41_c00374{left:741.750000px;}
.x138_c00374{left:744.300000px;}
.x8f_c00374{left:746.550000px;}
.x136_c00374{left:748.350000px;}
.x11_c00374{left:749.700000px;}
.x141_c00374{left:750.750000px;}
.xd3_c00374{left:753.600000px;}
.x35_c00374{left:756.900000px;}
.x118_c00374{left:760.800000px;}
.x139_c00374{left:763.050000px;}
.x114_c00374{left:764.700000px;}
.x23_c00374{left:766.650000px;}
.xb5_c00374{left:767.850000px;}
.xbc_c00374{left:769.050000px;}
.xa5_c00374{left:770.550000px;}
.x11d_c00374{left:773.100000px;}
.x84_c00374{left:774.750000px;}
.x42_c00374{left:775.950000px;}
.x59_c00374{left:777.450000px;}
.x51_c00374{left:778.800000px;}
.x12_c00374{left:780.000000px;}
.xc5_c00374{left:781.800000px;}
.x119_c00374{left:783.150000px;}
.x131_c00374{left:786.000000px;}
.x13e_c00374{left:787.050000px;}
.x24_c00374{left:789.000000px;}
.xa6_c00374{left:790.650000px;}
.x11e_c00374{left:793.200000px;}
.x76_c00374{left:798.450000px;}
.xbd_c00374{left:807.900000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws3_c00374{word-spacing:-2.839506pt;}
.wsb_c00374{word-spacing:0.000000pt;}
.ws6_c00374{word-spacing:1.481481pt;}
.ws4_c00374{word-spacing:3.127572pt;}
.ws0_c00374{word-spacing:3.678161pt;}
.ws9_c00374{word-spacing:4.444444pt;}
.wsa_c00374{word-spacing:5.802469pt;}
.ws1_c00374{word-spacing:7.160494pt;}
.ws8_c00374{word-spacing:7.581699pt;}
.ws7_c00374{word-spacing:12.810458pt;}
.ws5_c00374{word-spacing:15.829528pt;}
.ws2_c00374{word-spacing:24.526749pt;}
.fs0_c00374{font-size:53.333333pt;}
.y0_c00374{bottom:0.000000pt;}
.y2d_c00374{bottom:137.466667pt;}
.y2c_c00374{bottom:155.066667pt;}
.y2b_c00374{bottom:172.933333pt;}
.y2a_c00374{bottom:190.800000pt;}
.y29_c00374{bottom:208.400000pt;}
.y28_c00374{bottom:226.000000pt;}
.y27_c00374{bottom:243.600000pt;}
.y26_c00374{bottom:261.466667pt;}
.y25_c00374{bottom:279.333333pt;}
.y24_c00374{bottom:296.933333pt;}
.y23_c00374{bottom:314.800000pt;}
.y22_c00374{bottom:332.400000pt;}
.y21_c00374{bottom:350.266667pt;}
.y20_c00374{bottom:368.133333pt;}
.y1f_c00374{bottom:385.733333pt;}
.y1e_c00374{bottom:403.600000pt;}
.y1d_c00374{bottom:421.466667pt;}
.y1c_c00374{bottom:439.333333pt;}
.y1b_c00374{bottom:456.933333pt;}
.y1a_c00374{bottom:473.600000pt;}
.y19_c00374{bottom:492.800000pt;}
.y18_c00374{bottom:510.400000pt;}
.y17_c00374{bottom:528.000000pt;}
.y16_c00374{bottom:545.866667pt;}
.y15_c00374{bottom:563.600000pt;}
.y14_c00374{bottom:581.466667pt;}
.y13_c00374{bottom:599.733333pt;}
.y12_c00374{bottom:617.600000pt;}
.y11_c00374{bottom:635.200000pt;}
.y10_c00374{bottom:653.066667pt;}
.yf_c00374{bottom:670.666667pt;}
.ye_c00374{bottom:688.533333pt;}
.yd_c00374{bottom:705.866667pt;}
.yc_c00374{bottom:722.400000pt;}
.yb_c00374{bottom:741.600000pt;}
.ya_c00374{bottom:759.466667pt;}
.y9_c00374{bottom:777.333333pt;}
.y8_c00374{bottom:794.933333pt;}
.y7_c00374{bottom:812.800000pt;}
.y6_c00374{bottom:830.666667pt;}
.y5_c00374{bottom:848.266667pt;}
.y4_c00374{bottom:866.133333pt;}
.y3_c00374{bottom:883.466667pt;}
.y2_c00374{bottom:901.733333pt;}
.y1_c00374{bottom:933.466667pt;}
.h2_c00374{height:53.333333pt;}
.h0_c00374{height:1037.119955pt;}
.h1_c00374{height:1037.333333pt;}
.w1_c00374{width:812.000000pt;}
.w0_c00374{width:812.159993pt;}
.x0_c00374{left:0.000000pt;}
.x52_c00374{left:125.200000pt;}
.x1_c00374{left:126.400000pt;}
.x90_c00374{left:127.333333pt;}
.xbe_c00374{left:128.400000pt;}
.xe6_c00374{left:129.333333pt;}
.x10d_c00374{left:130.400000pt;}
.x13f_c00374{left:131.600000pt;}
.x14c_c00374{left:132.533333pt;}
.x68_c00374{left:142.400000pt;}
.x3_c00374{left:143.733333pt;}
.x13_c00374{left:145.733333pt;}
.xda_c00374{left:146.800000pt;}
.xc6_c00374{left:148.000000pt;}
.x5a_c00374{left:150.800000pt;}
.x77_c00374{left:152.266667pt;}
.x43_c00374{left:154.400000pt;}
.x99_c00374{left:155.866667pt;}
.xdf_c00374{left:156.800000pt;}
.x69_c00374{left:158.133333pt;}
.x25_c00374{left:159.600000pt;}
.xe7_c00374{left:160.666667pt;}
.x101_c00374{left:161.600000pt;}
.x85_c00374{left:162.933333pt;}
.x115_c00374{left:164.266667pt;}
.xc7_c00374{left:166.533333pt;}
.xbf_c00374{left:168.133333pt;}
.x26_c00374{left:169.200000pt;}
.xf5_c00374{left:171.200000pt;}
.x14_c00374{left:173.600000pt;}
.xa7_c00374{left:175.066667pt;}
.x36_c00374{left:176.533333pt;}
.x5b_c00374{left:177.733333pt;}
.x10e_c00374{left:179.066667pt;}
.x9a_c00374{left:182.800000pt;}
.x27_c00374{left:184.933333pt;}
.xc0_c00374{left:186.000000pt;}
.x86_c00374{left:187.600000pt;}
.xf6_c00374{left:188.533333pt;}
.x6a_c00374{left:190.666667pt;}
.xa8_c00374{left:192.400000pt;}
.x147_c00374{left:194.800000pt;}
.x140_c00374{left:196.133333pt;}
.x44_c00374{left:197.333333pt;}
.xee_c00374{left:198.533333pt;}
.x126_c00374{left:200.933333pt;}
.x4_c00374{left:202.933333pt;}
.xe8_c00374{left:204.800000pt;}
.x102_c00374{left:205.733333pt;}
.xcf_c00374{left:208.266667pt;}
.x129_c00374{left:209.333333pt;}
.x91_c00374{left:210.533333pt;}
.x28_c00374{left:211.866667pt;}
.x10f_c00374{left:213.600000pt;}
.xb6_c00374{left:215.066667pt;}
.xc8_c00374{left:216.400000pt;}
.x11f_c00374{left:218.933333pt;}
.x15_c00374{left:222.533333pt;}
.x78_c00374{left:224.000000pt;}
.x45_c00374{left:225.200000pt;}
.x116_c00374{left:226.400000pt;}
.xef_c00374{left:227.600000pt;}
.xc1_c00374{left:228.533333pt;}
.x5_c00374{left:229.866667pt;}
.x5c_c00374{left:231.466667pt;}
.xa9_c00374{left:233.333333pt;}
.xfc_c00374{left:234.533333pt;}
.x53_c00374{left:235.466667pt;}
.x29_c00374{left:237.466667pt;}
.x92_c00374{left:239.066667pt;}
.x12a_c00374{left:240.000000pt;}
.x16_c00374{left:242.666667pt;}
.x9b_c00374{left:243.866667pt;}
.x103_c00374{left:244.800000pt;}
.xb7_c00374{left:248.400000pt;}
.xe0_c00374{left:250.533333pt;}
.x120_c00374{left:251.866667pt;}
.x93_c00374{left:252.800000pt;}
.x14d_c00374{left:254.800000pt;}
.x108_c00374{left:257.066667pt;}
.xdb_c00374{left:260.933333pt;}
.x37_c00374{left:262.666667pt;}
.x6b_c00374{left:264.266667pt;}
.xd4_c00374{left:266.000000pt;}
.xaf_c00374{left:267.466667pt;}
.x17_c00374{left:268.533333pt;}
.x46_c00374{left:273.200000pt;}
.x110_c00374{left:274.400000pt;}
.x6_c00374{left:276.933333pt;}
.x79_c00374{left:279.333333pt;}
.x38_c00374{left:280.533333pt;}
.xc9_c00374{left:282.000000pt;}
.xd5_c00374{left:283.333333pt;}
.x2a_c00374{left:285.466667pt;}
.xb0_c00374{left:287.333333pt;}
.xfd_c00374{left:289.600000pt;}
.x6c_c00374{left:291.733333pt;}
.x7_c00374{left:293.200000pt;}
.x9c_c00374{left:294.400000pt;}
.xc2_c00374{left:296.000000pt;}
.x13a_c00374{left:296.933333pt;}
.x7a_c00374{left:297.866667pt;}
.x39_c00374{left:301.333333pt;}
.x87_c00374{left:303.066667pt;}
.x117_c00374{left:304.133333pt;}
.x5d_c00374{left:305.733333pt;}
.x104_c00374{left:310.400000pt;}
.x18_c00374{left:312.000000pt;}
.xdc_c00374{left:313.733333pt;}
.xb1_c00374{left:314.800000pt;}
.x47_c00374{left:315.733333pt;}
.x8_c00374{left:318.133333pt;}
.xe1_c00374{left:319.066667pt;}
.x88_c00374{left:320.400000pt;}
.x152_c00374{left:321.733333pt;}
.x142_c00374{left:322.666667pt;}
.x7b_c00374{left:323.733333pt;}
.xf0_c00374{left:324.666667pt;}
.x19_c00374{left:326.400000pt;}
.x121_c00374{left:327.866667pt;}
.x148_c00374{left:330.133333pt;}
.x5e_c00374{left:331.333333pt;}
.x48_c00374{left:332.666667pt;}
.x3a_c00374{left:334.000000pt;}
.xca_c00374{left:335.466667pt;}
.x2b_c00374{left:337.333333pt;}
.xf7_c00374{left:340.800000pt;}
.x11a_c00374{left:343.333333pt;}
.x1a_c00374{left:344.266667pt;}
.xb8_c00374{left:347.866667pt;}
.x94_c00374{left:349.866667pt;}
.x9d_c00374{left:351.466667pt;}
.x132_c00374{left:353.200000pt;}
.x3b_c00374{left:355.066667pt;}
.x137_c00374{left:356.000000pt;}
.x109_c00374{left:357.200000pt;}
.xe9_c00374{left:358.933333pt;}
.x143_c00374{left:360.133333pt;}
.x49_c00374{left:361.466667pt;}
.x6d_c00374{left:362.800000pt;}
.x9_c00374{left:364.533333pt;}
.x2c_c00374{left:366.400000pt;}
.x111_c00374{left:368.533333pt;}
.x5f_c00374{left:369.733333pt;}
.x54_c00374{left:372.000000pt;}
.x1b_c00374{left:373.333333pt;}
.x127_c00374{left:374.933333pt;}
.x7c_c00374{left:377.466667pt;}
.xf8_c00374{left:378.933333pt;}
.xea_c00374{left:380.400000pt;}
.xa_c00374{left:381.466667pt;}
.x60_c00374{left:382.533333pt;}
.x13b_c00374{left:385.333333pt;}
.x4a_c00374{left:387.733333pt;}
.x2_c00374{left:390.400000pt;}
.x9e_c00374{left:392.133333pt;}
.xd6_c00374{left:395.066667pt;}
.x61_c00374{left:396.666667pt;}
.x3c_c00374{left:398.533333pt;}
.xcb_c00374{left:400.133333pt;}
.x1c_c00374{left:401.866667pt;}
.x7d_c00374{left:403.066667pt;}
.x4b_c00374{left:405.066667pt;}
.xb_c00374{left:406.800000pt;}
.x10a_c00374{left:408.800000pt;}
.x9f_c00374{left:410.000000pt;}
.x95_c00374{left:412.000000pt;}
.x149_c00374{left:412.933333pt;}
.x105_c00374{left:415.466667pt;}
.xfe_c00374{left:417.200000pt;}
.x89_c00374{left:419.600000pt;}
.x11b_c00374{left:421.466667pt;}
.x6e_c00374{left:422.400000pt;}
.x96_c00374{left:424.800000pt;}
.xe2_c00374{left:426.266667pt;}
.x4c_c00374{left:429.066667pt;}
.xaa_c00374{left:430.133333pt;}
.xdd_c00374{left:431.200000pt;}
.x2d_c00374{left:432.933333pt;}
.x7e_c00374{left:434.800000pt;}
.x12b_c00374{left:437.066667pt;}
.x112_c00374{left:438.533333pt;}
.xff_c00374{left:439.600000pt;}
.x62_c00374{left:441.200000pt;}
.x8a_c00374{left:442.933333pt;}
.x6f_c00374{left:444.800000pt;}
.xf1_c00374{left:446.533333pt;}
.xa0_c00374{left:447.466667pt;}
.x122_c00374{left:448.533333pt;}
.xf9_c00374{left:449.866667pt;}
.x63_c00374{left:450.800000pt;}
.x97_c00374{left:452.000000pt;}
.x1d_c00374{left:453.333333pt;}
.x113_c00374{left:455.466667pt;}
.xb9_c00374{left:460.133333pt;}
.x2e_c00374{left:461.066667pt;}
.x98_c00374{left:462.533333pt;}
.xeb_c00374{left:464.000000pt;}
.x12c_c00374{left:469.333333pt;}
.xd0_c00374{left:470.533333pt;}
.x100_c00374{left:471.866667pt;}
.x7f_c00374{left:473.466667pt;}
.x4d_c00374{left:475.733333pt;}
.xe3_c00374{left:477.200000pt;}
.x12d_c00374{left:479.200000pt;}
.x145_c00374{left:480.133333pt;}
.xf2_c00374{left:481.066667pt;}
.xab_c00374{left:482.266667pt;}
.xc_c00374{left:483.866667pt;}
.x2f_c00374{left:486.000000pt;}
.x14e_c00374{left:487.066667pt;}
.x8b_c00374{left:488.000000pt;}
.x70_c00374{left:489.600000pt;}
.x80_c00374{left:491.333333pt;}
.xd7_c00374{left:492.933333pt;}
.x4e_c00374{left:494.266667pt;}
.xd_c00374{left:496.400000pt;}
.x13c_c00374{left:497.333333pt;}
.xd1_c00374{left:498.400000pt;}
.xcc_c00374{left:499.866667pt;}
.xa1_c00374{left:503.466667pt;}
.x71_c00374{left:505.333333pt;}
.x10b_c00374{left:506.800000pt;}
.x1e_c00374{left:510.266667pt;}
.xe_c00374{left:512.133333pt;}
.x3d_c00374{left:514.666667pt;}
.x144_c00374{left:518.800000pt;}
.xc3_c00374{left:519.866667pt;}
.x11c_c00374{left:521.066667pt;}
.xf3_c00374{left:522.000000pt;}
.x81_c00374{left:523.066667pt;}
.x128_c00374{left:524.666667pt;}
.x55_c00374{left:526.400000pt;}
.x133_c00374{left:527.333333pt;}
.x8c_c00374{left:528.666667pt;}
.xba_c00374{left:530.266667pt;}
.x30_c00374{left:532.133333pt;}
.x14f_c00374{left:534.400000pt;}
.x72_c00374{left:535.733333pt;}
.x14a_c00374{left:536.800000pt;}
.x106_c00374{left:537.733333pt;}
.xe4_c00374{left:539.600000pt;}
.x1f_c00374{left:540.666667pt;}
.xd8_c00374{left:542.266667pt;}
.xb2_c00374{left:544.266667pt;}
.x12e_c00374{left:545.733333pt;}
.xac_c00374{left:547.866667pt;}
.x31_c00374{left:549.733333pt;}
.xa2_c00374{left:551.200000pt;}
.x3e_c00374{left:552.800000pt;}
.xec_c00374{left:554.000000pt;}
.xfa_c00374{left:557.066667pt;}
.x12f_c00374{left:559.200000pt;}
.x73_c00374{left:560.666667pt;}
.x64_c00374{left:562.133333pt;}
.x56_c00374{left:563.466667pt;}
.xf_c00374{left:564.666667pt;}
.xad_c00374{left:565.733333pt;}
.xbb_c00374{left:566.800000pt;}
.x123_c00374{left:567.866667pt;}
.x134_c00374{left:569.600000pt;}
.xb3_c00374{left:570.533333pt;}
.x4f_c00374{left:572.533333pt;}
.x32_c00374{left:574.000000pt;}
.x65_c00374{left:575.866667pt;}
.x20_c00374{left:580.000000pt;}
.xcd_c00374{left:583.333333pt;}
.x150_c00374{left:584.933333pt;}
.x66_c00374{left:586.800000pt;}
.xd2_c00374{left:588.266667pt;}
.x82_c00374{left:592.666667pt;}
.x124_c00374{left:594.400000pt;}
.xe5_c00374{left:597.200000pt;}
.xd9_c00374{left:598.266667pt;}
.x21_c00374{left:599.866667pt;}
.x74_c00374{left:601.600000pt;}
.x57_c00374{left:603.466667pt;}
.x146_c00374{left:604.933333pt;}
.xc4_c00374{left:606.933333pt;}
.x13d_c00374{left:609.333333pt;}
.x3f_c00374{left:610.400000pt;}
.x8d_c00374{left:611.466667pt;}
.x151_c00374{left:612.800000pt;}
.x10_c00374{left:614.266667pt;}
.x50_c00374{left:616.400000pt;}
.xa3_c00374{left:618.000000pt;}
.x75_c00374{left:620.133333pt;}
.xb4_c00374{left:622.400000pt;}
.xed_c00374{left:624.133333pt;}
.xfb_c00374{left:625.466667pt;}
.x130_c00374{left:627.600000pt;}
.x22_c00374{left:629.333333pt;}
.x40_c00374{left:630.533333pt;}
.xce_c00374{left:634.133333pt;}
.x58_c00374{left:636.666667pt;}
.x8e_c00374{left:638.933333pt;}
.xae_c00374{left:640.933333pt;}
.x125_c00374{left:642.000000pt;}
.x10c_c00374{left:644.000000pt;}
.xa4_c00374{left:645.866667pt;}
.x14b_c00374{left:647.466667pt;}
.x33_c00374{left:648.533333pt;}
.x135_c00374{left:649.466667pt;}
.x83_c00374{left:650.533333pt;}
.x67_c00374{left:652.133333pt;}
.xf4_c00374{left:653.733333pt;}
.x107_c00374{left:655.066667pt;}
.xde_c00374{left:657.200000pt;}
.x34_c00374{left:658.400000pt;}
.x41_c00374{left:659.333333pt;}
.x138_c00374{left:661.600000pt;}
.x8f_c00374{left:663.600000pt;}
.x136_c00374{left:665.200000pt;}
.x11_c00374{left:666.400000pt;}
.x141_c00374{left:667.333333pt;}
.xd3_c00374{left:669.866667pt;}
.x35_c00374{left:672.800000pt;}
.x118_c00374{left:676.266667pt;}
.x139_c00374{left:678.266667pt;}
.x114_c00374{left:679.733333pt;}
.x23_c00374{left:681.466667pt;}
.xb5_c00374{left:682.533333pt;}
.xbc_c00374{left:683.600000pt;}
.xa5_c00374{left:684.933333pt;}
.x11d_c00374{left:687.200000pt;}
.x84_c00374{left:688.666667pt;}
.x42_c00374{left:689.733333pt;}
.x59_c00374{left:691.066667pt;}
.x51_c00374{left:692.266667pt;}
.x12_c00374{left:693.333333pt;}
.xc5_c00374{left:694.933333pt;}
.x119_c00374{left:696.133333pt;}
.x131_c00374{left:698.666667pt;}
.x13e_c00374{left:699.600000pt;}
.x24_c00374{left:701.333333pt;}
.xa6_c00374{left:702.800000pt;}
.x11e_c00374{left:705.066667pt;}
.x76_c00374{left:709.733333pt;}
.xbd_c00374{left:718.133333pt;}
}





/* 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_c00375 {
    display:none;
  }
  .loading-indicator_c00375.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00375 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_c00375 { 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_c00375" -> "#page-container .classname_c00375")
 */
.pf_c00375 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00375 { /* 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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00375 { /* 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_c00375 { /* 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_c00375 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00375 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00375 {overflow:visible;}
  }
}
.c_c00375 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00375 { /* 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_c00375:after { /* webkit #35443 */
  content: '';
}
.t_c00375:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00375 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 */
}
.__c00375 { /* 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_c00375 { /* info for Javascript */
  display:none;
}
.l_c00375 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00375 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00375 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00375: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_c00375 {
    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_c00375.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00375.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_c00375 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00375{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00375;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.000000;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;}
.m16_c00375{transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.012000,0.000000,0.000000,0.250000,0,0);}
.m14_c00375{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m8_c00375{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m7_c00375{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m5_c00375{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00375{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m0_c00375{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6_c00375{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3_c00375{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c00375{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m1_c00375{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c00375{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me_c00375{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma_c00375{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9_c00375{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m13_c00375{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00375{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00375{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c00375{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12_c00375{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.mf_c00375{transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377750,0.000000,0.000000,0.250000,0,0);}
.m11_c00375{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00375{transform:matrix(0.971000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.971000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.971000,0.000000,0.000000,0.250000,0,0);}
.v0_c00375{vertical-align:0.000000px;}
.ls0_c00375{letter-spacing:0.000000px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{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__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:0.000000px;}
.fc0_c00375{color:transparent;}
.fs0_c00375{font-size:36.000000px;}
.fs2_c00375{font-size:60.000000px;}
.fs1_c00375{font-size:108.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1_c00375{bottom:52.950000px;}
.y4_c00375{bottom:86.700000px;}
.y2_c00375{bottom:89.700000px;}
.y5_c00375{bottom:102.300000px;}
.y3_c00375{bottom:118.500000px;}
.y6_c00375{bottom:598.350000px;}
.h2_c00375{height:36.000000px;}
.h4_c00375{height:60.000000px;}
.h3_c00375{height:108.000000px;}
.h0_c00375{height:1166.759949px;}
.h1_c00375{height:1167.000000px;}
.w1_c00375{width:913.500000px;}
.w0_c00375{width:913.679993px;}
.x0_c00375{left:0.000000px;}
.x8_c00375{left:63.300000px;}
.x7_c00375{left:83.400000px;}
.x18_c00375{left:109.200000px;}
.x6_c00375{left:121.950000px;}
.x5_c00375{left:130.950000px;}
.x17_c00375{left:132.600000px;}
.x11_c00375{left:134.250000px;}
.x16_c00375{left:140.850000px;}
.x15_c00375{left:153.750000px;}
.x4_c00375{left:160.800000px;}
.x14_c00375{left:181.050000px;}
.x13_c00375{left:192.600000px;}
.x3_c00375{left:201.900000px;}
.x12_c00375{left:203.100000px;}
.x2_c00375{left:268.500000px;}
.x1_c00375{left:277.500000px;}
.xe_c00375{left:483.150000px;}
.xd_c00375{left:680.400000px;}
.xc_c00375{left:702.000000px;}
.xb_c00375{left:724.350000px;}
.xa_c00375{left:747.750000px;}
.x10_c00375{left:760.650000px;}
.x9_c00375{left:770.100000px;}
.xf_c00375{left:812.550000px;}
.x19_c00375{left:858.600000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs0_c00375{font-size:32.000000pt;}
.fs2_c00375{font-size:53.333333pt;}
.fs1_c00375{font-size:96.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y1_c00375{bottom:47.066667pt;}
.y4_c00375{bottom:77.066667pt;}
.y2_c00375{bottom:79.733333pt;}
.y5_c00375{bottom:90.933333pt;}
.y3_c00375{bottom:105.333333pt;}
.y6_c00375{bottom:531.866667pt;}
.h2_c00375{height:32.000000pt;}
.h4_c00375{height:53.333333pt;}
.h3_c00375{height:96.000000pt;}
.h0_c00375{height:1037.119955pt;}
.h1_c00375{height:1037.333333pt;}
.w1_c00375{width:812.000000pt;}
.w0_c00375{width:812.159993pt;}
.x0_c00375{left:0.000000pt;}
.x8_c00375{left:56.266667pt;}
.x7_c00375{left:74.133333pt;}
.x18_c00375{left:97.066667pt;}
.x6_c00375{left:108.400000pt;}
.x5_c00375{left:116.400000pt;}
.x17_c00375{left:117.866667pt;}
.x11_c00375{left:119.333333pt;}
.x16_c00375{left:125.200000pt;}
.x15_c00375{left:136.666667pt;}
.x4_c00375{left:142.933333pt;}
.x14_c00375{left:160.933333pt;}
.x13_c00375{left:171.200000pt;}
.x3_c00375{left:179.466667pt;}
.x12_c00375{left:180.533333pt;}
.x2_c00375{left:238.666667pt;}
.x1_c00375{left:246.666667pt;}
.xe_c00375{left:429.466667pt;}
.xd_c00375{left:604.800000pt;}
.xc_c00375{left:624.000000pt;}
.xb_c00375{left:643.866667pt;}
.xa_c00375{left:664.666667pt;}
.x10_c00375{left:676.133333pt;}
.x9_c00375{left:684.533333pt;}
.xf_c00375{left:722.266667pt;}
.x19_c00375{left:763.200000pt;}
}





/* 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_c00376 {
    display:none;
  }
  .loading-indicator_c00376.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00376 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_c00376 { 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_c00376" -> "#page-container .classname_c00376")
 */
.pf_c00376 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00376 { /* 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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00376 { /* 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_c00376 { /* 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_c00376 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00376 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00376 {overflow:visible;}
  }
}
.c_c00376 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00376 { /* 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_c00376:after { /* webkit #35443 */
  content: '';
}
.t_c00376:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00376 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 */
}
.__c00376 { /* 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_c00376 { /* info for Javascript */
  display:none;
}
.l_c00376 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00376 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00376 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00376: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_c00376 {
    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_c00376.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00376.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_c00376 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00376{font-family:sans-serif;visibility:hidden;}
.sc__c00376{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
}
.y0_c00376{bottom:0.000000px;}
.h0_c00376{height:1166.759949px;}
.h1_c00376{height:1167.000000px;}
.w1_c00376{width:913.500000px;}
.w0_c00376{width:913.679993px;}
.x0_c00376{left:0.000000px;}
@media print{
.y0_c00376{bottom:0.000000pt;}
.h0_c00376{height:1037.119955pt;}
.h1_c00376{height:1037.333333pt;}
.w1_c00376{width:812.000000pt;}
.w0_c00376{width:812.159993pt;}
.x0_c00376{left:0.000000pt;}
}





/* 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_c00377 {
    display:none;
  }
  .loading-indicator_c00377.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00377 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_c00377 { 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_c00377" -> "#page-container .classname_c00377")
 */
.pf_c00377 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00377 { /* 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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00377 { /* 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_c00377 { /* 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_c00377 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00377 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00377 {overflow:visible;}
  }
}
.c_c00377 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00377 { /* 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_c00377:after { /* webkit #35443 */
  content: '';
}
.t_c00377:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00377 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 */
}
.__c00377 { /* 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_c00377 { /* info for Javascript */
  display:none;
}
.l_c00377 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00377 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00377 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00377: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_c00377 {
    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_c00377.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00377.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_c00377 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00377{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00377;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.000000;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;}
.m2e_c00377{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m32_c00377{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m41_c00377{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.maf_c00377{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mac_c00377{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf_c00377{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00377{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m8_c00377{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00377{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00377{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.mad_c00377{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m94_c00377{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00377{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma_c00377{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m79_c00377{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mab_c00377{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m64_c00377{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00377{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00377{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00377{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m13_c00377{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.maa_c00377{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m39_c00377{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00377{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m98_c00377{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m84_c00377{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m17_c00377{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00377{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00377{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00377{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m47_c00377{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m55_c00377{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m62_c00377{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00377{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00377{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00377{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00377{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00377{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00377{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc_c00377{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00377{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m30_c00377{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m20_c00377{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.me_c00377{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00377{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m36_c00377{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00377{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m93_c00377{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00377{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m80_c00377{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m29_c00377{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00377{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00377{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m56_c00377{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00377{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m38_c00377{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m77_c00377{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m87_c00377{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m70_c00377{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m65_c00377{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m52_c00377{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00377{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00377{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c00377{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m88_c00377{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m18_c00377{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00377{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00377{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00377{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m83_c00377{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00377{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00377{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m44_c00377{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m49_c00377{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00377{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00377{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00377{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00377{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00377{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00377{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m58_c00377{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00377{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m95_c00377{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00377{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00377{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m50_c00377{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m78_c00377{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m35_c00377{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mae_c00377{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00377{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m92_c00377{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m91_c00377{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m73_c00377{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00377{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md_c00377{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m16_c00377{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m15_c00377{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00377{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00377{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mb_c00377{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m23_c00377{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m46_c00377{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00377{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7_c00377{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m25_c00377{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00377{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m26_c00377{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m63_c00377{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m75_c00377{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m57_c00377{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m9_c00377{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m96_c00377{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m27_c00377{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m53_c00377{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00377{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00377{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m42_c00377{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m43_c00377{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00377{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00377{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m68_c00377{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m28_c00377{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00377{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m74_c00377{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m81_c00377{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21_c00377{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m99_c00377{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00377{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00377{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);}
.ma4_c00377{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m10_c00377{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00377{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00377{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00377{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m33_c00377{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m34_c00377{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m5_c00377{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00377{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m71_c00377{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m12_c00377{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m97_c00377{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m72_c00377{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m22_c00377{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m31_c00377{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m82_c00377{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m40_c00377{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00377{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00377{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m59_c00377{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m85_c00377{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00377{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m90_c00377{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00377{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m19_c00377{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m54_c00377{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m37_c00377{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00377{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00377{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00377{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00377{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m89_c00377{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m24_c00377{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00377{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m67_c00377{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m61_c00377{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m86_c00377{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m76_c00377{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00377{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00377{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m51_c00377{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m1_c00377{transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.653250,0.000000,0.000000,0.250000,0,0);}
.v0_c00377{vertical-align:0.000000px;}
.ls0_c00377{letter-spacing:0.000000px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{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__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00377{word-spacing:-11.527778px;}
.ws4_c00377{word-spacing:-11.315789px;}
.ws8_c00377{word-spacing:-6.853448px;}
.ws7_c00377{word-spacing:-6.666667px;}
.ws1_c00377{word-spacing:-1.710526px;}
.ws9_c00377{word-spacing:0.000000px;}
.ws6_c00377{word-spacing:0.535714px;}
.ws2_c00377{word-spacing:3.125000px;}
.ws3_c00377{word-spacing:6.805556px;}
.ws0_c00377{word-spacing:81.323529px;}
.fc0_c00377{color:transparent;}
.fs0_c00377{font-size:54.000000px;}
.fs1_c00377{font-size:60.000000px;}
.y0_c00377{bottom:0.000000px;}
.y2b_c00377{bottom:148.350000px;}
.y2a_c00377{bottom:163.800000px;}
.y29_c00377{bottom:208.950000px;}
.y28_c00377{bottom:228.750000px;}
.y27_c00377{bottom:248.550000px;}
.y26_c00377{bottom:268.650000px;}
.y25_c00377{bottom:288.450000px;}
.y24_c00377{bottom:308.250000px;}
.y23_c00377{bottom:328.350000px;}
.y22_c00377{bottom:348.150000px;}
.y21_c00377{bottom:368.250000px;}
.y20_c00377{bottom:387.750000px;}
.y1f_c00377{bottom:408.300000px;}
.y1e_c00377{bottom:428.100000px;}
.y1d_c00377{bottom:448.200000px;}
.y1c_c00377{bottom:468.300000px;}
.y1b_c00377{bottom:488.400000px;}
.y1a_c00377{bottom:508.200000px;}
.y19_c00377{bottom:528.000000px;}
.y18_c00377{bottom:547.800000px;}
.y17_c00377{bottom:567.900000px;}
.y16_c00377{bottom:587.700000px;}
.y15_c00377{bottom:607.500000px;}
.y14_c00377{bottom:627.600000px;}
.y13_c00377{bottom:647.400000px;}
.y12_c00377{bottom:667.200000px;}
.y11_c00377{bottom:687.300000px;}
.y10_c00377{bottom:707.100000px;}
.yf_c00377{bottom:727.200000px;}
.ye_c00377{bottom:747.300000px;}
.yd_c00377{bottom:785.250000px;}
.yc_c00377{bottom:805.350000px;}
.yb_c00377{bottom:825.150000px;}
.ya_c00377{bottom:844.950000px;}
.y9_c00377{bottom:865.200000px;}
.y8_c00377{bottom:885.000000px;}
.y7_c00377{bottom:904.800000px;}
.y6_c00377{bottom:924.900000px;}
.y5_c00377{bottom:945.000000px;}
.y4_c00377{bottom:964.500000px;}
.y3_c00377{bottom:984.600000px;}
.y2_c00377{bottom:1004.700000px;}
.y1_c00377{bottom:1042.500000px;}
.h2_c00377{height:54.000000px;}
.h3_c00377{height:60.000000px;}
.h0_c00377{height:1166.759949px;}
.h1_c00377{height:1167.000000px;}
.w1_c00377{width:913.500000px;}
.w0_c00377{width:913.679993px;}
.x0_c00377{left:0.000000px;}
.x5_c00377{left:100.800000px;}
.x7f_c00377{left:102.300000px;}
.xc1_c00377{left:103.350000px;}
.xe4_c00377{left:104.700000px;}
.x8c_c00377{left:119.400000px;}
.x61_c00377{left:124.050000px;}
.x111_c00377{left:125.100000px;}
.xce_c00377{left:128.400000px;}
.x1c_c00377{left:132.150000px;}
.x39_c00377{left:133.500000px;}
.x53_c00377{left:135.300000px;}
.x126_c00377{left:137.400000px;}
.xa1_c00377{left:138.450000px;}
.x14_c00377{left:144.750000px;}
.x78_c00377{left:148.200000px;}
.xc2_c00377{left:150.900000px;}
.xe5_c00377{left:152.250000px;}
.x117_c00377{left:153.600000px;}
.x80_c00377{left:156.000000px;}
.xd7_c00377{left:158.550000px;}
.x64_c00377{left:159.750000px;}
.x8d_c00377{left:161.850000px;}
.x1d_c00377{left:165.300000px;}
.x79_c00377{left:168.300000px;}
.xbc_c00377{left:169.650000px;}
.x3a_c00377{left:171.300000px;}
.xe0_c00377{left:173.850000px;}
.x62_c00377{left:175.950000px;}
.x6_c00377{left:178.950000px;}
.x103_c00377{left:180.450000px;}
.x8e_c00377{left:181.650000px;}
.x2b_c00377{left:185.850000px;}
.x11d_c00377{left:187.650000px;}
.xaf_c00377{left:188.850000px;}
.x6f_c00377{left:190.350000px;}
.x121_c00377{left:191.550000px;}
.x3b_c00377{left:194.400000px;}
.x1e_c00377{left:196.200000px;}
.xf0_c00377{left:199.650000px;}
.xc8_c00377{left:201.900000px;}
.x65_c00377{left:206.250000px;}
.x127_c00377{left:207.300000px;}
.x108_c00377{left:210.000000px;}
.xb4_c00377{left:212.100000px;}
.x54_c00377{left:213.450000px;}
.x7a_c00377{left:214.800000px;}
.x1f_c00377{left:216.300000px;}
.xfe_c00377{left:217.650000px;}
.xb0_c00377{left:220.200000px;}
.x63_c00377{left:222.750000px;}
.x7_c00377{left:224.250000px;}
.x70_c00377{left:226.050000px;}
.xa2_c00377{left:227.700000px;}
.x81_c00377{left:229.650000px;}
.xc9_c00377{left:232.500000px;}
.x15_c00377{left:233.700000px;}
.x66_c00377{left:234.750000px;}
.x3c_c00377{left:239.100000px;}
.xe1_c00377{left:241.950000px;}
.x20_c00377{left:244.350000px;}
.x2c_c00377{left:246.000000px;}
.x11e_c00377{left:250.200000px;}
.x8_c00377{left:251.250000px;}
.x3d_c00377{left:253.200000px;}
.x109_c00377{left:255.000000px;}
.xb5_c00377{left:256.050000px;}
.xe6_c00377{left:257.100000px;}
.x128_c00377{left:258.450000px;}
.xb1_c00377{left:259.500000px;}
.x71_c00377{left:261.000000px;}
.x2d_c00377{left:262.500000px;}
.x16_c00377{left:264.300000px;}
.x55_c00377{left:266.100000px;}
.xa3_c00377{left:272.400000px;}
.x67_c00377{left:276.150000px;}
.x72_c00377{left:280.500000px;}
.x2e_c00377{left:282.300000px;}
.xf6_c00377{left:283.650000px;}
.xd8_c00377{left:286.650000px;}
.x17_c00377{left:289.200000px;}
.x12f_c00377{left:291.150000px;}
.x8f_c00377{left:292.200000px;}
.xbd_c00377{left:293.250000px;}
.x21_c00377{left:294.450000px;}
.x3e_c00377{left:297.150000px;}
.xa4_c00377{left:300.150000px;}
.x122_c00377{left:301.950000px;}
.x56_c00377{left:306.750000px;}
.x9_c00377{left:307.800000px;}
.x99_c00377{left:309.000000px;}
.x114_c00377{left:310.350000px;}
.xca_c00377{left:313.500000px;}
.xb6_c00377{left:317.250000px;}
.x3f_c00377{left:318.750000px;}
.x22_c00377{left:321.750000px;}
.xa_c00377{left:325.050000px;}
.x57_c00377{left:326.850000px;}
.x68_c00377{left:328.650000px;}
.x1_c00377{left:332.250000px;}
.xb7_c00377{left:334.950000px;}
.xed_c00377{left:336.450000px;}
.xfc_c00377{left:338.400000px;}
.x4a_c00377{left:339.600000px;}
.x18_c00377{left:341.400000px;}
.xcb_c00377{left:343.050000px;}
.x90_c00377{left:346.200000px;}
.x112_c00377{left:347.250000px;}
.x10a_c00377{left:348.900000px;}
.x82_c00377{left:350.250000px;}
.x2f_c00377{left:352.500000px;}
.x9a_c00377{left:355.050000px;}
.xc3_c00377{left:357.150000px;}
.xd9_c00377{left:360.450000px;}
.x4b_c00377{left:361.500000px;}
.xb_c00377{left:362.850000px;}
.x91_c00377{left:363.900000px;}
.x129_c00377{left:364.950000px;}
.xbe_c00377{left:366.000000px;}
.x118_c00377{left:367.500000px;}
.x58_c00377{left:369.750000px;}
.x23_c00377{left:371.850000px;}
.xa5_c00377{left:375.450000px;}
.xf7_c00377{left:376.800000px;}
.x40_c00377{left:378.150000px;}
.xe7_c00377{left:381.300000px;}
.x69_c00377{left:382.650000px;}
.x19_c00377{left:384.600000px;}
.xa6_c00377{left:386.250000px;}
.x30_c00377{left:388.800000px;}
.x83_c00377{left:390.900000px;}
.x123_c00377{left:391.950000px;}
.xda_c00377{left:394.350000px;}
.xcf_c00377{left:399.900000px;}
.x130_c00377{left:401.250000px;}
.x92_c00377{left:403.200000px;}
.x59_c00377{left:406.050000px;}
.xf1_c00377{left:410.400000px;}
.x1a_c00377{left:411.600000px;}
.x41_c00377{left:413.100000px;}
.xc_c00377{left:414.300000px;}
.x31_c00377{left:416.100000px;}
.x2_c00377{left:418.650000px;}
.x10b_c00377{left:421.200000px;}
.x11f_c00377{left:423.750000px;}
.xcc_c00377{left:425.550000px;}
.x5a_c00377{left:426.900000px;}
.x84_c00377{left:431.550000px;}
.x42_c00377{left:432.900000px;}
.xb8_c00377{left:433.950000px;}
.x24_c00377{left:435.150000px;}
.xfd_c00377{left:436.350000px;}
.x3_c00377{left:438.750000px;}
.xd_c00377{left:443.400000px;}
.xc4_c00377{left:444.600000px;}
.xd0_c00377{left:445.650000px;}
.x1b_c00377{left:447.300000px;}
.x4c_c00377{left:448.950000px;}
.x113_c00377{left:451.950000px;}
.x5b_c00377{left:453.900000px;}
.xe8_c00377{left:455.100000px;}
.x9b_c00377{left:458.400000px;}
.xee_c00377{left:459.600000px;}
.x73_c00377{left:460.950000px;}
.x43_c00377{left:462.750000px;}
.x124_c00377{left:466.050000px;}
.x93_c00377{left:467.700000px;}
.xdb_c00377{left:469.650000px;}
.xd1_c00377{left:472.950000px;}
.xc5_c00377{left:476.700000px;}
.x6a_c00377{left:480.150000px;}
.x85_c00377{left:484.800000px;}
.xe9_c00377{left:486.000000px;}
.x25_c00377{left:487.050000px;}
.xa7_c00377{left:489.150000px;}
.x32_c00377{left:491.700000px;}
.xe_c00377{left:494.850000px;}
.x12a_c00377{left:496.650000px;}
.x5c_c00377{left:497.850000px;}
.x11b_c00377{left:499.050000px;}
.x133_c00377{left:501.900000px;}
.xff_c00377{left:504.150000px;}
.x44_c00377{left:507.000000px;}
.x5d_c00377{left:508.950000px;}
.x33_c00377{left:511.500000px;}
.xf8_c00377{left:512.850000px;}
.xea_c00377{left:514.050000px;}
.xb9_c00377{left:516.000000px;}
.xe2_c00377{left:517.950000px;}
.x4d_c00377{left:519.150000px;}
.xbf_c00377{left:521.100000px;}
.x26_c00377{left:523.050000px;}
.x10c_c00377{left:524.250000px;}
.x104_c00377{left:525.300000px;}
.x94_c00377{left:526.500000px;}
.xa8_c00377{left:528.750000px;}
.x34_c00377{left:532.050000px;}
.x86_c00377{left:537.300000px;}
.xf_c00377{left:538.350000px;}
.x9c_c00377{left:540.450000px;}
.xdc_c00377{left:541.650000px;}
.x35_c00377{left:543.900000px;}
.x5e_c00377{left:546.000000px;}
.xd2_c00377{left:547.050000px;}
.xf2_c00377{left:549.750000px;}
.x7b_c00377{left:550.950000px;}
.x100_c00377{left:552.750000px;}
.x45_c00377{left:553.800000px;}
.x105_c00377{left:554.850000px;}
.x74_c00377{left:556.650000px;}
.x95_c00377{left:557.850000px;}
.x12c_c00377{left:559.200000px;}
.x12b_c00377{left:560.700000px;}
.x4e_c00377{left:563.400000px;}
.x6b_c00377{left:566.250000px;}
.x115_c00377{left:570.000000px;}
.xba_c00377{left:571.050000px;}
.xa9_c00377{left:573.000000px;}
.x10d_c00377{left:575.400000px;}
.x27_c00377{left:577.050000px;}
.x9d_c00377{left:578.550000px;}
.x4f_c00377{left:584.700000px;}
.x7c_c00377{left:590.850000px;}
.xaa_c00377{left:592.500000px;}
.x36_c00377{left:594.300000px;}
.xd3_c00377{left:597.450000px;}
.x9e_c00377{left:599.400000px;}
.x10e_c00377{left:600.600000px;}
.x87_c00377{left:603.150000px;}
.xf9_c00377{left:604.650000px;}
.x7d_c00377{left:609.150000px;}
.xeb_c00377{left:610.800000px;}
.xb2_c00377{left:613.350000px;}
.xab_c00377{left:614.850000px;}
.x5f_c00377{left:616.950000px;}
.xcd_c00377{left:618.000000px;}
.x120_c00377{left:619.500000px;}
.x119_c00377{left:621.000000px;}
.x131_c00377{left:622.200000px;}
.x7e_c00377{left:624.600000px;}
.xdd_c00377{left:626.250000px;}
.x46_c00377{left:627.600000px;}
.x88_c00377{left:630.150000px;}
.x10_c00377{left:631.200000px;}
.xd4_c00377{left:633.750000px;}
.xbb_c00377{left:635.550000px;}
.x132_c00377{left:636.900000px;}
.x101_c00377{left:637.950000px;}
.x50_c00377{left:639.450000px;}
.x28_c00377{left:641.550000px;}
.x6c_c00377{left:645.750000px;}
.xc6_c00377{left:647.250000px;}
.x9f_c00377{left:649.050000px;}
.xde_c00377{left:653.250000px;}
.xf3_c00377{left:654.450000px;}
.x37_c00377{left:657.000000px;}
.x116_c00377{left:658.200000px;}
.x96_c00377{left:661.950000px;}
.x12d_c00377{left:665.700000px;}
.x11c_c00377{left:666.750000px;}
.xa0_c00377{left:668.850000px;}
.xc7_c00377{left:670.650000px;}
.xe3_c00377{left:673.500000px;}
.x47_c00377{left:674.850000px;}
.x51_c00377{left:676.200000px;}
.xac_c00377{left:678.150000px;}
.x97_c00377{left:679.200000px;}
.x89_c00377{left:680.250000px;}
.x125_c00377{left:681.300000px;}
.x75_c00377{left:683.400000px;}
.xb3_c00377{left:685.050000px;}
.x29_c00377{left:687.300000px;}
.xd5_c00377{left:689.850000px;}
.xec_c00377{left:691.800000px;}
.xc0_c00377{left:693.000000px;}
.x11_c00377{left:694.500000px;}
.x48_c00377{left:698.550000px;}
.x38_c00377{left:700.200000px;}
.xad_c00377{left:702.300000px;}
.x60_c00377{left:703.650000px;}
.x10f_c00377{left:705.150000px;}
.x6d_c00377{left:706.200000px;}
.xef_c00377{left:707.550000px;}
.x2a_c00377{left:715.350000px;}
.x8a_c00377{left:717.750000px;}
.x11a_c00377{left:718.950000px;}
.x6e_c00377{left:720.900000px;}
.x106_c00377{left:723.300000px;}
.x76_c00377{left:726.300000px;}
.x102_c00377{left:727.950000px;}
.x110_c00377{left:730.350000px;}
.x12_c00377{left:732.000000px;}
.x12e_c00377{left:735.900000px;}
.xfa_c00377{left:737.400000px;}
.xf4_c00377{left:738.750000px;}
.x4_c00377{left:740.850000px;}
.x98_c00377{left:741.900000px;}
.x8b_c00377{left:743.250000px;}
.xdf_c00377{left:744.750000px;}
.xae_c00377{left:746.550000px;}
.x13_c00377{left:748.200000px;}
.x107_c00377{left:749.550000px;}
.xd6_c00377{left:750.750000px;}
.xfb_c00377{left:755.700000px;}
.x52_c00377{left:756.900000px;}
.xf5_c00377{left:758.850000px;}
.x77_c00377{left:762.000000px;}
.x49_c00377{left:765.450000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws5_c00377{word-spacing:-10.246914pt;}
.ws4_c00377{word-spacing:-10.058480pt;}
.ws8_c00377{word-spacing:-6.091954pt;}
.ws7_c00377{word-spacing:-5.925926pt;}
.ws1_c00377{word-spacing:-1.520468pt;}
.ws9_c00377{word-spacing:0.000000pt;}
.ws6_c00377{word-spacing:0.476190pt;}
.ws2_c00377{word-spacing:2.777778pt;}
.ws3_c00377{word-spacing:6.049383pt;}
.ws0_c00377{word-spacing:72.287582pt;}
.fs0_c00377{font-size:48.000000pt;}
.fs1_c00377{font-size:53.333333pt;}
.y0_c00377{bottom:0.000000pt;}
.y2b_c00377{bottom:131.866667pt;}
.y2a_c00377{bottom:145.600000pt;}
.y29_c00377{bottom:185.733333pt;}
.y28_c00377{bottom:203.333333pt;}
.y27_c00377{bottom:220.933333pt;}
.y26_c00377{bottom:238.800000pt;}
.y25_c00377{bottom:256.400000pt;}
.y24_c00377{bottom:274.000000pt;}
.y23_c00377{bottom:291.866667pt;}
.y22_c00377{bottom:309.466667pt;}
.y21_c00377{bottom:327.333333pt;}
.y20_c00377{bottom:344.666667pt;}
.y1f_c00377{bottom:362.933333pt;}
.y1e_c00377{bottom:380.533333pt;}
.y1d_c00377{bottom:398.400000pt;}
.y1c_c00377{bottom:416.266667pt;}
.y1b_c00377{bottom:434.133333pt;}
.y1a_c00377{bottom:451.733333pt;}
.y19_c00377{bottom:469.333333pt;}
.y18_c00377{bottom:486.933333pt;}
.y17_c00377{bottom:504.800000pt;}
.y16_c00377{bottom:522.400000pt;}
.y15_c00377{bottom:540.000000pt;}
.y14_c00377{bottom:557.866667pt;}
.y13_c00377{bottom:575.466667pt;}
.y12_c00377{bottom:593.066667pt;}
.y11_c00377{bottom:610.933333pt;}
.y10_c00377{bottom:628.533333pt;}
.yf_c00377{bottom:646.400000pt;}
.ye_c00377{bottom:664.266667pt;}
.yd_c00377{bottom:698.000000pt;}
.yc_c00377{bottom:715.866667pt;}
.yb_c00377{bottom:733.466667pt;}
.ya_c00377{bottom:751.066667pt;}
.y9_c00377{bottom:769.066667pt;}
.y8_c00377{bottom:786.666667pt;}
.y7_c00377{bottom:804.266667pt;}
.y6_c00377{bottom:822.133333pt;}
.y5_c00377{bottom:840.000000pt;}
.y4_c00377{bottom:857.333333pt;}
.y3_c00377{bottom:875.200000pt;}
.y2_c00377{bottom:893.066667pt;}
.y1_c00377{bottom:926.666667pt;}
.h2_c00377{height:48.000000pt;}
.h3_c00377{height:53.333333pt;}
.h0_c00377{height:1037.119955pt;}
.h1_c00377{height:1037.333333pt;}
.w1_c00377{width:812.000000pt;}
.w0_c00377{width:812.159993pt;}
.x0_c00377{left:0.000000pt;}
.x5_c00377{left:89.600000pt;}
.x7f_c00377{left:90.933333pt;}
.xc1_c00377{left:91.866667pt;}
.xe4_c00377{left:93.066667pt;}
.x8c_c00377{left:106.133333pt;}
.x61_c00377{left:110.266667pt;}
.x111_c00377{left:111.200000pt;}
.xce_c00377{left:114.133333pt;}
.x1c_c00377{left:117.466667pt;}
.x39_c00377{left:118.666667pt;}
.x53_c00377{left:120.266667pt;}
.x126_c00377{left:122.133333pt;}
.xa1_c00377{left:123.066667pt;}
.x14_c00377{left:128.666667pt;}
.x78_c00377{left:131.733333pt;}
.xc2_c00377{left:134.133333pt;}
.xe5_c00377{left:135.333333pt;}
.x117_c00377{left:136.533333pt;}
.x80_c00377{left:138.666667pt;}
.xd7_c00377{left:140.933333pt;}
.x64_c00377{left:142.000000pt;}
.x8d_c00377{left:143.866667pt;}
.x1d_c00377{left:146.933333pt;}
.x79_c00377{left:149.600000pt;}
.xbc_c00377{left:150.800000pt;}
.x3a_c00377{left:152.266667pt;}
.xe0_c00377{left:154.533333pt;}
.x62_c00377{left:156.400000pt;}
.x6_c00377{left:159.066667pt;}
.x103_c00377{left:160.400000pt;}
.x8e_c00377{left:161.466667pt;}
.x2b_c00377{left:165.200000pt;}
.x11d_c00377{left:166.800000pt;}
.xaf_c00377{left:167.866667pt;}
.x6f_c00377{left:169.200000pt;}
.x121_c00377{left:170.266667pt;}
.x3b_c00377{left:172.800000pt;}
.x1e_c00377{left:174.400000pt;}
.xf0_c00377{left:177.466667pt;}
.xc8_c00377{left:179.466667pt;}
.x65_c00377{left:183.333333pt;}
.x127_c00377{left:184.266667pt;}
.x108_c00377{left:186.666667pt;}
.xb4_c00377{left:188.533333pt;}
.x54_c00377{left:189.733333pt;}
.x7a_c00377{left:190.933333pt;}
.x1f_c00377{left:192.266667pt;}
.xfe_c00377{left:193.466667pt;}
.xb0_c00377{left:195.733333pt;}
.x63_c00377{left:198.000000pt;}
.x7_c00377{left:199.333333pt;}
.x70_c00377{left:200.933333pt;}
.xa2_c00377{left:202.400000pt;}
.x81_c00377{left:204.133333pt;}
.xc9_c00377{left:206.666667pt;}
.x15_c00377{left:207.733333pt;}
.x66_c00377{left:208.666667pt;}
.x3c_c00377{left:212.533333pt;}
.xe1_c00377{left:215.066667pt;}
.x20_c00377{left:217.200000pt;}
.x2c_c00377{left:218.666667pt;}
.x11e_c00377{left:222.400000pt;}
.x8_c00377{left:223.333333pt;}
.x3d_c00377{left:225.066667pt;}
.x109_c00377{left:226.666667pt;}
.xb5_c00377{left:227.600000pt;}
.xe6_c00377{left:228.533333pt;}
.x128_c00377{left:229.733333pt;}
.xb1_c00377{left:230.666667pt;}
.x71_c00377{left:232.000000pt;}
.x2d_c00377{left:233.333333pt;}
.x16_c00377{left:234.933333pt;}
.x55_c00377{left:236.533333pt;}
.xa3_c00377{left:242.133333pt;}
.x67_c00377{left:245.466667pt;}
.x72_c00377{left:249.333333pt;}
.x2e_c00377{left:250.933333pt;}
.xf6_c00377{left:252.133333pt;}
.xd8_c00377{left:254.800000pt;}
.x17_c00377{left:257.066667pt;}
.x12f_c00377{left:258.800000pt;}
.x8f_c00377{left:259.733333pt;}
.xbd_c00377{left:260.666667pt;}
.x21_c00377{left:261.733333pt;}
.x3e_c00377{left:264.133333pt;}
.xa4_c00377{left:266.800000pt;}
.x122_c00377{left:268.400000pt;}
.x56_c00377{left:272.666667pt;}
.x9_c00377{left:273.600000pt;}
.x99_c00377{left:274.666667pt;}
.x114_c00377{left:275.866667pt;}
.xca_c00377{left:278.666667pt;}
.xb6_c00377{left:282.000000pt;}
.x3f_c00377{left:283.333333pt;}
.x22_c00377{left:286.000000pt;}
.xa_c00377{left:288.933333pt;}
.x57_c00377{left:290.533333pt;}
.x68_c00377{left:292.133333pt;}
.x1_c00377{left:295.333333pt;}
.xb7_c00377{left:297.733333pt;}
.xed_c00377{left:299.066667pt;}
.xfc_c00377{left:300.800000pt;}
.x4a_c00377{left:301.866667pt;}
.x18_c00377{left:303.466667pt;}
.xcb_c00377{left:304.933333pt;}
.x90_c00377{left:307.733333pt;}
.x112_c00377{left:308.666667pt;}
.x10a_c00377{left:310.133333pt;}
.x82_c00377{left:311.333333pt;}
.x2f_c00377{left:313.333333pt;}
.x9a_c00377{left:315.600000pt;}
.xc3_c00377{left:317.466667pt;}
.xd9_c00377{left:320.400000pt;}
.x4b_c00377{left:321.333333pt;}
.xb_c00377{left:322.533333pt;}
.x91_c00377{left:323.466667pt;}
.x129_c00377{left:324.400000pt;}
.xbe_c00377{left:325.333333pt;}
.x118_c00377{left:326.666667pt;}
.x58_c00377{left:328.666667pt;}
.x23_c00377{left:330.533333pt;}
.xa5_c00377{left:333.733333pt;}
.xf7_c00377{left:334.933333pt;}
.x40_c00377{left:336.133333pt;}
.xe7_c00377{left:338.933333pt;}
.x69_c00377{left:340.133333pt;}
.x19_c00377{left:341.866667pt;}
.xa6_c00377{left:343.333333pt;}
.x30_c00377{left:345.600000pt;}
.x83_c00377{left:347.466667pt;}
.x123_c00377{left:348.400000pt;}
.xda_c00377{left:350.533333pt;}
.xcf_c00377{left:355.466667pt;}
.x130_c00377{left:356.666667pt;}
.x92_c00377{left:358.400000pt;}
.x59_c00377{left:360.933333pt;}
.xf1_c00377{left:364.800000pt;}
.x1a_c00377{left:365.866667pt;}
.x41_c00377{left:367.200000pt;}
.xc_c00377{left:368.266667pt;}
.x31_c00377{left:369.866667pt;}
.x2_c00377{left:372.133333pt;}
.x10b_c00377{left:374.400000pt;}
.x11f_c00377{left:376.666667pt;}
.xcc_c00377{left:378.266667pt;}
.x5a_c00377{left:379.466667pt;}
.x84_c00377{left:383.600000pt;}
.x42_c00377{left:384.800000pt;}
.xb8_c00377{left:385.733333pt;}
.x24_c00377{left:386.800000pt;}
.xfd_c00377{left:387.866667pt;}
.x3_c00377{left:390.000000pt;}
.xd_c00377{left:394.133333pt;}
.xc4_c00377{left:395.200000pt;}
.xd0_c00377{left:396.133333pt;}
.x1b_c00377{left:397.600000pt;}
.x4c_c00377{left:399.066667pt;}
.x113_c00377{left:401.733333pt;}
.x5b_c00377{left:403.466667pt;}
.xe8_c00377{left:404.533333pt;}
.x9b_c00377{left:407.466667pt;}
.xee_c00377{left:408.533333pt;}
.x73_c00377{left:409.733333pt;}
.x43_c00377{left:411.333333pt;}
.x124_c00377{left:414.266667pt;}
.x93_c00377{left:415.733333pt;}
.xdb_c00377{left:417.466667pt;}
.xd1_c00377{left:420.400000pt;}
.xc5_c00377{left:423.733333pt;}
.x6a_c00377{left:426.800000pt;}
.x85_c00377{left:430.933333pt;}
.xe9_c00377{left:432.000000pt;}
.x25_c00377{left:432.933333pt;}
.xa7_c00377{left:434.800000pt;}
.x32_c00377{left:437.066667pt;}
.xe_c00377{left:439.866667pt;}
.x12a_c00377{left:441.466667pt;}
.x5c_c00377{left:442.533333pt;}
.x11b_c00377{left:443.600000pt;}
.x133_c00377{left:446.133333pt;}
.xff_c00377{left:448.133333pt;}
.x44_c00377{left:450.666667pt;}
.x5d_c00377{left:452.400000pt;}
.x33_c00377{left:454.666667pt;}
.xf8_c00377{left:455.866667pt;}
.xea_c00377{left:456.933333pt;}
.xb9_c00377{left:458.666667pt;}
.xe2_c00377{left:460.400000pt;}
.x4d_c00377{left:461.466667pt;}
.xbf_c00377{left:463.200000pt;}
.x26_c00377{left:464.933333pt;}
.x10c_c00377{left:466.000000pt;}
.x104_c00377{left:466.933333pt;}
.x94_c00377{left:468.000000pt;}
.xa8_c00377{left:470.000000pt;}
.x34_c00377{left:472.933333pt;}
.x86_c00377{left:477.600000pt;}
.xf_c00377{left:478.533333pt;}
.x9c_c00377{left:480.400000pt;}
.xdc_c00377{left:481.466667pt;}
.x35_c00377{left:483.466667pt;}
.x5e_c00377{left:485.333333pt;}
.xd2_c00377{left:486.266667pt;}
.xf2_c00377{left:488.666667pt;}
.x7b_c00377{left:489.733333pt;}
.x100_c00377{left:491.333333pt;}
.x45_c00377{left:492.266667pt;}
.x105_c00377{left:493.200000pt;}
.x74_c00377{left:494.800000pt;}
.x95_c00377{left:495.866667pt;}
.x12c_c00377{left:497.066667pt;}
.x12b_c00377{left:498.400000pt;}
.x4e_c00377{left:500.800000pt;}
.x6b_c00377{left:503.333333pt;}
.x115_c00377{left:506.666667pt;}
.xba_c00377{left:507.600000pt;}
.xa9_c00377{left:509.333333pt;}
.x10d_c00377{left:511.466667pt;}
.x27_c00377{left:512.933333pt;}
.x9d_c00377{left:514.266667pt;}
.x4f_c00377{left:519.733333pt;}
.x7c_c00377{left:525.200000pt;}
.xaa_c00377{left:526.666667pt;}
.x36_c00377{left:528.266667pt;}
.xd3_c00377{left:531.066667pt;}
.x9e_c00377{left:532.800000pt;}
.x10e_c00377{left:533.866667pt;}
.x87_c00377{left:536.133333pt;}
.xf9_c00377{left:537.466667pt;}
.x7d_c00377{left:541.466667pt;}
.xeb_c00377{left:542.933333pt;}
.xb2_c00377{left:545.200000pt;}
.xab_c00377{left:546.533333pt;}
.x5f_c00377{left:548.400000pt;}
.xcd_c00377{left:549.333333pt;}
.x120_c00377{left:550.666667pt;}
.x119_c00377{left:552.000000pt;}
.x131_c00377{left:553.066667pt;}
.x7e_c00377{left:555.200000pt;}
.xdd_c00377{left:556.666667pt;}
.x46_c00377{left:557.866667pt;}
.x88_c00377{left:560.133333pt;}
.x10_c00377{left:561.066667pt;}
.xd4_c00377{left:563.333333pt;}
.xbb_c00377{left:564.933333pt;}
.x132_c00377{left:566.133333pt;}
.x101_c00377{left:567.066667pt;}
.x50_c00377{left:568.400000pt;}
.x28_c00377{left:570.266667pt;}
.x6c_c00377{left:574.000000pt;}
.xc6_c00377{left:575.333333pt;}
.x9f_c00377{left:576.933333pt;}
.xde_c00377{left:580.666667pt;}
.xf3_c00377{left:581.733333pt;}
.x37_c00377{left:584.000000pt;}
.x116_c00377{left:585.066667pt;}
.x96_c00377{left:588.400000pt;}
.x12d_c00377{left:591.733333pt;}
.x11c_c00377{left:592.666667pt;}
.xa0_c00377{left:594.533333pt;}
.xc7_c00377{left:596.133333pt;}
.xe3_c00377{left:598.666667pt;}
.x47_c00377{left:599.866667pt;}
.x51_c00377{left:601.066667pt;}
.xac_c00377{left:602.800000pt;}
.x97_c00377{left:603.733333pt;}
.x89_c00377{left:604.666667pt;}
.x125_c00377{left:605.600000pt;}
.x75_c00377{left:607.466667pt;}
.xb3_c00377{left:608.933333pt;}
.x29_c00377{left:610.933333pt;}
.xd5_c00377{left:613.200000pt;}
.xec_c00377{left:614.933333pt;}
.xc0_c00377{left:616.000000pt;}
.x11_c00377{left:617.333333pt;}
.x48_c00377{left:620.933333pt;}
.x38_c00377{left:622.400000pt;}
.xad_c00377{left:624.266667pt;}
.x60_c00377{left:625.466667pt;}
.x10f_c00377{left:626.800000pt;}
.x6d_c00377{left:627.733333pt;}
.xef_c00377{left:628.933333pt;}
.x2a_c00377{left:635.866667pt;}
.x8a_c00377{left:638.000000pt;}
.x11a_c00377{left:639.066667pt;}
.x6e_c00377{left:640.800000pt;}
.x106_c00377{left:642.933333pt;}
.x76_c00377{left:645.600000pt;}
.x102_c00377{left:647.066667pt;}
.x110_c00377{left:649.200000pt;}
.x12_c00377{left:650.666667pt;}
.x12e_c00377{left:654.133333pt;}
.xfa_c00377{left:655.466667pt;}
.xf4_c00377{left:656.666667pt;}
.x4_c00377{left:658.533333pt;}
.x98_c00377{left:659.466667pt;}
.x8b_c00377{left:660.666667pt;}
.xdf_c00377{left:662.000000pt;}
.xae_c00377{left:663.600000pt;}
.x13_c00377{left:665.066667pt;}
.x107_c00377{left:666.266667pt;}
.xd6_c00377{left:667.333333pt;}
.xfb_c00377{left:671.733333pt;}
.x52_c00377{left:672.800000pt;}
.xf5_c00377{left:674.533333pt;}
.x77_c00377{left:677.333333pt;}
.x49_c00377{left:680.400000pt;}
}





/* 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_c00378 {
    display:none;
  }
  .loading-indicator_c00378.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00378 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_c00378 { 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_c00378" -> "#page-container .classname_c00378")
 */
.pf_c00378 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00378 { /* 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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00378 { /* 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_c00378 { /* 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_c00378 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00378 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00378 {overflow:visible;}
  }
}
.c_c00378 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00378 { /* 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_c00378:after { /* webkit #35443 */
  content: '';
}
.t_c00378:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00378 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 */
}
.__c00378 { /* 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_c00378 { /* info for Javascript */
  display:none;
}
.l_c00378 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00378 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00378 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00378: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_c00378 {
    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_c00378.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00378.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_c00378 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00378{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00378;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.000000;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;}
.m6c_c00378{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m21_c00378{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m61_c00378{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00378{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m99_c00378{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00378{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m93_c00378{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m69_c00378{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m76_c00378{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00378{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00378{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00378{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00378{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m38_c00378{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00378{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00378{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m81_c00378{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m79_c00378{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m10_c00378{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m98_c00378{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m78_c00378{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00378{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m47_c00378{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00378{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m83_c00378{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m90_c00378{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00378{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m17_c00378{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m68_c00378{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00378{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m88_c00378{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m28_c00378{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m67_c00378{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mb_c00378{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m15_c00378{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m86_c00378{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00378{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00378{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00378{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00378{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m63_c00378{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00378{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m66_c00378{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00378{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00378{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m41_c00378{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m48_c00378{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m37_c00378{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00378{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m46_c00378{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00378{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m24_c00378{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m33_c00378{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00378{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m70_c00378{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m80_c00378{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m89_c00378{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m49_c00378{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00378{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m84_c00378{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m16_c00378{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m74_c00378{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m55_c00378{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m23_c00378{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m91_c00378{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m19_c00378{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m58_c00378{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00378{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00378{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00378{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00378{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m30_c00378{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m64_c00378{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00378{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m34_c00378{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m75_c00378{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m18_c00378{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m53_c00378{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00378{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00378{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m95_c00378{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00378{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m22_c00378{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00378{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m97_c00378{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m57_c00378{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8_c00378{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m56_c00378{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00378{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m43_c00378{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m32_c00378{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m36_c00378{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00378{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m71_c00378{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m42_c00378{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m26_c00378{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m94_c00378{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m13_c00378{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m87_c00378{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m12_c00378{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m27_c00378{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m31_c00378{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00378{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00378{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m52_c00378{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m14_c00378{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00378{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00378{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00378{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00378{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m45_c00378{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00378{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00378{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf_c00378{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00378{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00378{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00378{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4_c00378{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m72_c00378{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);}
.m73_c00378{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00378{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35_c00378{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m50_c00378{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m29_c00378{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m60_c00378{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m25_c00378{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m11_c00378{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m92_c00378{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m85_c00378{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m40_c00378{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m59_c00378{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m44_c00378{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00378{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m54_c00378{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m65_c00378{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m96_c00378{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00378{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m20_c00378{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00378{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m51_c00378{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m39_c00378{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00378{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00378{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00378{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00378{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m77_c00378{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00378{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m82_c00378{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls0_c00378{letter-spacing:0.000000px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{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__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00378{word-spacing:-9.756098px;}
.ws3_c00378{word-spacing:-5.000000px;}
.ws0_c00378{word-spacing:-4.669811px;}
.wsa_c00378{word-spacing:0.000000px;}
.ws6_c00378{word-spacing:6.527778px;}
.ws8_c00378{word-spacing:8.333333px;}
.ws9_c00378{word-spacing:10.138889px;}
.ws5_c00378{word-spacing:11.527778px;}
.ws7_c00378{word-spacing:15.243902px;}
.ws2_c00378{word-spacing:21.111111px;}
.ws1_c00378{word-spacing:27.592593px;}
._0_c00378{width:43.472222px;}
.fc0_c00378{color:transparent;}
.fs0_c00378{font-size:60.000000px;}
.y0_c00378{bottom:0.000000px;}
.y2b_c00378{bottom:141.450000px;}
.y2a_c00378{bottom:189.900000px;}
.y29_c00378{bottom:210.000000px;}
.y28_c00378{bottom:229.800000px;}
.y27_c00378{bottom:249.900000px;}
.y26_c00378{bottom:269.700000px;}
.y25_c00378{bottom:289.800000px;}
.y24_c00378{bottom:309.600000px;}
.y23_c00378{bottom:328.350000px;}
.y22_c00378{bottom:349.200000px;}
.y21_c00378{bottom:369.000000px;}
.y20_c00378{bottom:389.100000px;}
.y1f_c00378{bottom:409.200000px;}
.y1e_c00378{bottom:429.000000px;}
.y1d_c00378{bottom:448.800000px;}
.y1c_c00378{bottom:468.600000px;}
.y1b_c00378{bottom:488.700000px;}
.y1a_c00378{bottom:508.500000px;}
.y19_c00378{bottom:528.600000px;}
.y18_c00378{bottom:548.400000px;}
.y17_c00378{bottom:568.500000px;}
.y16_c00378{bottom:588.300000px;}
.y15_c00378{bottom:608.100000px;}
.y14_c00378{bottom:627.900000px;}
.y13_c00378{bottom:648.000000px;}
.y12_c00378{bottom:667.800000px;}
.y11_c00378{bottom:687.900000px;}
.y10_c00378{bottom:708.000000px;}
.yf_c00378{bottom:728.100000px;}
.ye_c00378{bottom:747.900000px;}
.yd_c00378{bottom:767.700000px;}
.yc_c00378{bottom:787.500000px;}
.yb_c00378{bottom:807.600000px;}
.ya_c00378{bottom:827.400000px;}
.y9_c00378{bottom:847.500000px;}
.y8_c00378{bottom:885.450000px;}
.y7_c00378{bottom:905.550000px;}
.y6_c00378{bottom:925.350000px;}
.y5_c00378{bottom:945.150000px;}
.y4_c00378{bottom:964.950000px;}
.y3_c00378{bottom:985.050000px;}
.y2_c00378{bottom:1005.150000px;}
.y1_c00378{bottom:1044.000000px;}
.h2_c00378{height:60.000000px;}
.h0_c00378{height:1166.759949px;}
.h1_c00378{height:1167.000000px;}
.w1_c00378{width:913.500000px;}
.w0_c00378{width:913.679993px;}
.x0_c00378{left:0.000000px;}
.x12c_c00378{left:138.900000px;}
.x11a_c00378{left:139.950000px;}
.xa7_c00378{left:141.300000px;}
.x89_c00378{left:142.650000px;}
.x3c_c00378{left:144.300000px;}
.x3_c00378{left:145.500000px;}
.x1_c00378{left:148.350000px;}
.x131_c00378{left:151.350000px;}
.x142_c00378{left:155.550000px;}
.x13b_c00378{left:158.700000px;}
.x146_c00378{left:160.800000px;}
.x1f_c00378{left:162.300000px;}
.xfa_c00378{left:166.200000px;}
.xb9_c00378{left:170.400000px;}
.x61_c00378{left:171.600000px;}
.x10_c00378{left:174.300000px;}
.x56_c00378{left:176.100000px;}
.x48_c00378{left:178.500000px;}
.x8a_c00378{left:180.750000px;}
.x7a_c00378{left:184.800000px;}
.xa8_c00378{left:186.300000px;}
.x20_c00378{left:188.250000px;}
.xcf_c00378{left:189.600000px;}
.xe0_c00378{left:192.300000px;}
.x143_c00378{left:194.850000px;}
.x51_c00378{left:196.050000px;}
.x112_c00378{left:197.250000px;}
.x4_c00378{left:198.750000px;}
.x6f_c00378{left:201.900000px;}
.x2f_c00378{left:202.950000px;}
.x7b_c00378{left:205.350000px;}
.x104_c00378{left:207.000000px;}
.xd6_c00378{left:208.650000px;}
.x9d_c00378{left:209.850000px;}
.xc3_c00378{left:212.250000px;}
.x62_c00378{left:214.050000px;}
.x136_c00378{left:215.100000px;}
.xba_c00378{left:216.450000px;}
.x93_c00378{left:220.200000px;}
.x30_c00378{left:224.250000px;}
.x11e_c00378{left:226.500000px;}
.xfd_c00378{left:229.050000px;}
.x11_c00378{left:232.200000px;}
.x7c_c00378{left:234.150000px;}
.x147_c00378{left:235.350000px;}
.x12d_c00378{left:237.900000px;}
.x9e_c00378{left:239.700000px;}
.x105_c00378{left:241.950000px;}
.x49_c00378{left:243.600000px;}
.x70_c00378{left:245.400000px;}
.x31_c00378{left:246.900000px;}
.xf1_c00378{left:248.850000px;}
.x21_c00378{left:250.500000px;}
.xc4_c00378{left:253.650000px;}
.xe1_c00378{left:258.150000px;}
.xbb_c00378{left:259.950000px;}
.x12_c00378{left:261.000000px;}
.x63_c00378{left:262.350000px;}
.xd0_c00378{left:263.400000px;}
.x5_c00378{left:266.400000px;}
.x71_c00378{left:267.750000px;}
.x137_c00378{left:269.100000px;}
.x22_c00378{left:270.300000px;}
.x13_c00378{left:272.100000px;}
.x64_c00378{left:273.150000px;}
.xbc_c00378{left:275.100000px;}
.x8b_c00378{left:276.750000px;}
.xc5_c00378{left:278.100000px;}
.x52_c00378{left:281.700000px;}
.xaf_c00378{left:283.800000px;}
.x3d_c00378{left:285.000000px;}
.x106_c00378{left:286.200000px;}
.xbd_c00378{left:287.400000px;}
.x11f_c00378{left:290.550000px;}
.x10b_c00378{left:292.500000px;}
.x23_c00378{left:295.500000px;}
.x7d_c00378{left:297.450000px;}
.x9f_c00378{left:299.100000px;}
.x72_c00378{left:302.700000px;}
.xe2_c00378{left:304.200000px;}
.x32_c00378{left:305.250000px;}
.xc6_c00378{left:307.650000px;}
.x65_c00378{left:309.450000px;}
.x14_c00378{left:310.650000px;}
.x6_c00378{left:312.450000px;}
.xd7_c00378{left:314.400000px;}
.x7e_c00378{left:316.200000px;}
.x12e_c00378{left:318.150000px;}
.x8c_c00378{left:319.650000px;}
.x94_c00378{left:321.300000px;}
.x10c_c00378{left:322.800000px;}
.xec_c00378{left:324.000000px;}
.x57_c00378{left:325.800000px;}
.x7_c00378{left:328.650000px;}
.x113_c00378{left:330.600000px;}
.x24_c00378{left:331.800000px;}
.x129_c00378{left:333.000000px;}
.x3e_c00378{left:334.350000px;}
.x53_c00378{left:336.000000px;}
.x132_c00378{left:337.050000px;}
.x4a_c00378{left:338.550000px;}
.xe3_c00378{left:339.900000px;}
.x8_c00378{left:343.350000px;}
.x7f_c00378{left:344.700000px;}
.x14c_c00378{left:348.150000px;}
.xa9_c00378{left:349.350000px;}
.xf2_c00378{left:351.450000px;}
.x66_c00378{left:352.950000px;}
.xed_c00378{left:356.400000px;}
.x15_c00378{left:358.200000px;}
.x73_c00378{left:360.000000px;}
.xfe_c00378{left:361.200000px;}
.x13c_c00378{left:362.400000px;}
.x54_c00378{left:363.750000px;}
.x133_c00378{left:370.500000px;}
.x4b_c00378{left:371.700000px;}
.x120_c00378{left:373.050000px;}
.xaa_c00378{left:374.850000px;}
.x144_c00378{left:376.800000px;}
.x107_c00378{left:378.000000px;}
.xd8_c00378{left:379.200000px;}
.xb0_c00378{left:381.000000px;}
.xff_c00378{left:382.050000px;}
.x33_c00378{left:383.700000px;}
.xe4_c00378{left:384.900000px;}
.xc7_c00378{left:387.600000px;}
.x3f_c00378{left:389.400000px;}
.x25_c00378{left:394.500000px;}
.x148_c00378{left:398.100000px;}
.x9_c00378{left:399.450000px;}
.x16_c00378{left:402.150000px;}
.x80_c00378{left:404.400000px;}
.x26_c00378{left:406.800000px;}
.xa0_c00378{left:408.450000px;}
.x58_c00378{left:410.100000px;}
.xf3_c00378{left:411.150000px;}
.x10d_c00378{left:412.500000px;}
.x34_c00378{left:415.050000px;}
.x40_c00378{left:417.900000px;}
.xb1_c00378{left:419.550000px;}
.x100_c00378{left:420.900000px;}
.xe5_c00378{left:422.700000px;}
.x114_c00378{left:423.900000px;}
.x4c_c00378{left:426.000000px;}
.xc8_c00378{left:431.250000px;}
.x27_c00378{left:432.300000px;}
.x59_c00378{left:436.050000px;}
.x17_c00378{left:437.850000px;}
.xab_c00378{left:440.700000px;}
.x67_c00378{left:443.250000px;}
.x2_c00378{left:445.350000px;}
.x74_c00378{left:446.700000px;}
.x55_c00378{left:448.050000px;}
.x28_c00378{left:450.300000px;}
.x121_c00378{left:452.250000px;}
.x41_c00378{left:454.950000px;}
.x8d_c00378{left:456.750000px;}
.x12a_c00378{left:458.250000px;}
.xc9_c00378{left:459.300000px;}
.xbe_c00378{left:460.350000px;}
.xb2_c00378{left:462.450000px;}
.xfb_c00378{left:464.100000px;}
.x68_c00378{left:465.900000px;}
.x35_c00378{left:468.000000px;}
.xa1_c00378{left:472.200000px;}
.x108_c00378{left:473.700000px;}
.x18_c00378{left:475.350000px;}
.xf4_c00378{left:477.750000px;}
.xee_c00378{left:479.550000px;}
.x12b_c00378{left:480.600000px;}
.x29_c00378{left:483.000000px;}
.x81_c00378{left:485.100000px;}
.x122_c00378{left:486.150000px;}
.x13d_c00378{left:489.000000px;}
.x36_c00378{left:490.650000px;}
.xa_c00378{left:493.050000px;}
.xd1_c00378{left:496.350000px;}
.x12f_c00378{left:497.700000px;}
.x5a_c00378{left:498.750000px;}
.x117_c00378{left:500.250000px;}
.x95_c00378{left:501.900000px;}
.x42_c00378{left:508.200000px;}
.x4d_c00378{left:509.400000px;}
.xd9_c00378{left:514.050000px;}
.xca_c00378{left:515.100000px;}
.xb_c00378{left:516.150000px;}
.x13e_c00378{left:518.850000px;}
.x10e_c00378{left:520.200000px;}
.x75_c00378{left:521.550000px;}
.xa2_c00378{left:522.900000px;}
.xbf_c00378{left:524.700000px;}
.x123_c00378{left:526.050000px;}
.x82_c00378{left:528.600000px;}
.x11b_c00378{left:530.850000px;}
.x109_c00378{left:533.400000px;}
.xb3_c00378{left:535.050000px;}
.xda_c00378{left:537.450000px;}
.x5b_c00378{left:539.100000px;}
.xc_c00378{left:540.300000px;}
.xe6_c00378{left:541.500000px;}
.x2a_c00378{left:542.700000px;}
.xa3_c00378{left:543.750000px;}
.x8e_c00378{left:545.550000px;}
.x130_c00378{left:548.400000px;}
.x138_c00378{left:549.600000px;}
.xac_c00378{left:551.250000px;}
.xd2_c00378{left:552.450000px;}
.x19_c00378{left:554.250000px;}
.x149_c00378{left:555.900000px;}
.x83_c00378{left:557.400000px;}
.x5c_c00378{left:558.600000px;}
.x101_c00378{left:561.000000px;}
.xe7_c00378{left:562.350000px;}
.x69_c00378{left:563.400000px;}
.x10f_c00378{left:564.900000px;}
.xcb_c00378{left:567.300000px;}
.x43_c00378{left:569.400000px;}
.x37_c00378{left:572.400000px;}
.xb4_c00378{left:573.600000px;}
.x14d_c00378{left:575.850000px;}
.x96_c00378{left:576.900000px;}
.x10a_c00378{left:579.450000px;}
.x1a_c00378{left:580.950000px;}
.x2b_c00378{left:582.600000px;}
.x5d_c00378{left:584.550000px;}
.xc0_c00378{left:587.700000px;}
.xef_c00378{left:590.100000px;}
.x134_c00378{left:592.200000px;}
.x8f_c00378{left:593.850000px;}
.x97_c00378{left:595.200000px;}
.xe8_c00378{left:597.600000px;}
.xb5_c00378{left:599.550000px;}
.xdb_c00378{left:600.900000px;}
.x4e_c00378{left:603.300000px;}
.x124_c00378{left:604.500000px;}
.x1b_c00378{left:608.700000px;}
.x90_c00378{left:613.650000px;}
.xcc_c00378{left:619.800000px;}
.xdc_c00378{left:621.750000px;}
.x98_c00378{left:622.950000px;}
.x84_c00378{left:624.750000px;}
.xa4_c00378{left:626.850000px;}
.xf5_c00378{left:627.900000px;}
.xd_c00378{left:630.600000px;}
.x139_c00378{left:631.650000px;}
.x38_c00378{left:632.850000px;}
.x44_c00378{left:633.900000px;}
.xe9_c00378{left:635.100000px;}
.x115_c00378{left:637.950000px;}
.x6a_c00378{left:640.050000px;}
.x76_c00378{left:642.150000px;}
.x4f_c00378{left:643.950000px;}
.xf6_c00378{left:646.200000px;}
.xd3_c00378{left:649.950000px;}
.x2c_c00378{left:651.750000px;}
.x125_c00378{left:653.100000px;}
.x39_c00378{left:654.450000px;}
.x99_c00378{left:656.400000px;}
.xb6_c00378{left:657.900000px;}
.x77_c00378{left:659.400000px;}
.xad_c00378{left:660.450000px;}
.x50_c00378{left:666.300000px;}
.x110_c00378{left:669.000000px;}
.x118_c00378{left:671.250000px;}
.xa5_c00378{left:672.900000px;}
.x91_c00378{left:675.450000px;}
.x85_c00378{left:677.250000px;}
.x3a_c00378{left:678.900000px;}
.x13a_c00378{left:680.250000px;}
.x111_c00378{left:683.400000px;}
.x6b_c00378{left:687.150000px;}
.x1c_c00378{left:688.950000px;}
.x9a_c00378{left:690.900000px;}
.x135_c00378{left:692.700000px;}
.x5e_c00378{left:694.650000px;}
.x11c_c00378{left:696.450000px;}
.x2d_c00378{left:697.500000px;}
.xd4_c00378{left:699.900000px;}
.x102_c00378{left:700.950000px;}
.xae_c00378{left:702.900000px;}
.xfc_c00378{left:704.400000px;}
.xcd_c00378{left:705.750000px;}
.x14a_c00378{left:706.800000px;}
.xb7_c00378{left:708.300000px;}
.x1d_c00378{left:709.500000px;}
.xc1_c00378{left:711.600000px;}
.x45_c00378{left:713.400000px;}
.x13f_c00378{left:714.900000px;}
.x9b_c00378{left:717.900000px;}
.xe_c00378{left:719.100000px;}
.x78_c00378{left:721.650000px;}
.x127_c00378{left:723.600000px;}
.x145_c00378{left:724.650000px;}
.x86_c00378{left:725.850000px;}
.xdd_c00378{left:728.250000px;}
.x5f_c00378{left:730.650000px;}
.x140_c00378{left:731.850000px;}
.x46_c00378{left:734.250000px;}
.x6c_c00378{left:736.800000px;}
.xea_c00378{left:742.650000px;}
.x128_c00378{left:744.450000px;}
.xc2_c00378{left:746.550000px;}
.x2e_c00378{left:747.600000px;}
.xf7_c00378{left:749.100000px;}
.x141_c00378{left:751.350000px;}
.x3b_c00378{left:755.250000px;}
.x1e_c00378{left:756.300000px;}
.xd5_c00378{left:758.400000px;}
.xde_c00378{left:759.600000px;}
.x92_c00378{left:761.250000px;}
.xb8_c00378{left:762.300000px;}
.xf8_c00378{left:763.500000px;}
.xce_c00378{left:765.150000px;}
.x103_c00378{left:767.250000px;}
.x119_c00378{left:768.450000px;}
.x11d_c00378{left:769.500000px;}
.x6d_c00378{left:771.750000px;}
.xf0_c00378{left:775.500000px;}
.xeb_c00378{left:776.850000px;}
.x47_c00378{left:780.000000px;}
.x60_c00378{left:781.050000px;}
.x87_c00378{left:783.450000px;}
.xf9_c00378{left:784.800000px;}
.x126_c00378{left:786.300000px;}
.xa6_c00378{left:788.550000px;}
.x6e_c00378{left:790.800000px;}
.xdf_c00378{left:793.500000px;}
.xf_c00378{left:796.800000px;}
.x79_c00378{left:799.050000px;}
.x116_c00378{left:800.700000px;}
.x14b_c00378{left:801.900000px;}
.x88_c00378{left:803.250000px;}
.x9c_c00378{left:805.800000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls0_c00378{letter-spacing:0.000000pt;}
.ws4_c00378{word-spacing:-8.672087pt;}
.ws3_c00378{word-spacing:-4.444444pt;}
.ws0_c00378{word-spacing:-4.150943pt;}
.wsa_c00378{word-spacing:0.000000pt;}
.ws6_c00378{word-spacing:5.802469pt;}
.ws8_c00378{word-spacing:7.407407pt;}
.ws9_c00378{word-spacing:9.012346pt;}
.ws5_c00378{word-spacing:10.246914pt;}
.ws7_c00378{word-spacing:13.550136pt;}
.ws2_c00378{word-spacing:18.765432pt;}
.ws1_c00378{word-spacing:24.526749pt;}
._0_c00378{width:38.641975pt;}
.fs0_c00378{font-size:53.333333pt;}
.y0_c00378{bottom:0.000000pt;}
.y2b_c00378{bottom:125.733333pt;}
.y2a_c00378{bottom:168.800000pt;}
.y29_c00378{bottom:186.666667pt;}
.y28_c00378{bottom:204.266667pt;}
.y27_c00378{bottom:222.133333pt;}
.y26_c00378{bottom:239.733333pt;}
.y25_c00378{bottom:257.600000pt;}
.y24_c00378{bottom:275.200000pt;}
.y23_c00378{bottom:291.866667pt;}
.y22_c00378{bottom:310.400000pt;}
.y21_c00378{bottom:328.000000pt;}
.y20_c00378{bottom:345.866667pt;}
.y1f_c00378{bottom:363.733333pt;}
.y1e_c00378{bottom:381.333333pt;}
.y1d_c00378{bottom:398.933333pt;}
.y1c_c00378{bottom:416.533333pt;}
.y1b_c00378{bottom:434.400000pt;}
.y1a_c00378{bottom:452.000000pt;}
.y19_c00378{bottom:469.866667pt;}
.y18_c00378{bottom:487.466667pt;}
.y17_c00378{bottom:505.333333pt;}
.y16_c00378{bottom:522.933333pt;}
.y15_c00378{bottom:540.533333pt;}
.y14_c00378{bottom:558.133333pt;}
.y13_c00378{bottom:576.000000pt;}
.y12_c00378{bottom:593.600000pt;}
.y11_c00378{bottom:611.466667pt;}
.y10_c00378{bottom:629.333333pt;}
.yf_c00378{bottom:647.200000pt;}
.ye_c00378{bottom:664.800000pt;}
.yd_c00378{bottom:682.400000pt;}
.yc_c00378{bottom:700.000000pt;}
.yb_c00378{bottom:717.866667pt;}
.ya_c00378{bottom:735.466667pt;}
.y9_c00378{bottom:753.333333pt;}
.y8_c00378{bottom:787.066667pt;}
.y7_c00378{bottom:804.933333pt;}
.y6_c00378{bottom:822.533333pt;}
.y5_c00378{bottom:840.133333pt;}
.y4_c00378{bottom:857.733333pt;}
.y3_c00378{bottom:875.600000pt;}
.y2_c00378{bottom:893.466667pt;}
.y1_c00378{bottom:928.000000pt;}
.h2_c00378{height:53.333333pt;}
.h0_c00378{height:1037.119955pt;}
.h1_c00378{height:1037.333333pt;}
.w1_c00378{width:812.000000pt;}
.w0_c00378{width:812.159993pt;}
.x0_c00378{left:0.000000pt;}
.x12c_c00378{left:123.466667pt;}
.x11a_c00378{left:124.400000pt;}
.xa7_c00378{left:125.600000pt;}
.x89_c00378{left:126.800000pt;}
.x3c_c00378{left:128.266667pt;}
.x3_c00378{left:129.333333pt;}
.x1_c00378{left:131.866667pt;}
.x131_c00378{left:134.533333pt;}
.x142_c00378{left:138.266667pt;}
.x13b_c00378{left:141.066667pt;}
.x146_c00378{left:142.933333pt;}
.x1f_c00378{left:144.266667pt;}
.xfa_c00378{left:147.733333pt;}
.xb9_c00378{left:151.466667pt;}
.x61_c00378{left:152.533333pt;}
.x10_c00378{left:154.933333pt;}
.x56_c00378{left:156.533333pt;}
.x48_c00378{left:158.666667pt;}
.x8a_c00378{left:160.666667pt;}
.x7a_c00378{left:164.266667pt;}
.xa8_c00378{left:165.600000pt;}
.x20_c00378{left:167.333333pt;}
.xcf_c00378{left:168.533333pt;}
.xe0_c00378{left:170.933333pt;}
.x143_c00378{left:173.200000pt;}
.x51_c00378{left:174.266667pt;}
.x112_c00378{left:175.333333pt;}
.x4_c00378{left:176.666667pt;}
.x6f_c00378{left:179.466667pt;}
.x2f_c00378{left:180.400000pt;}
.x7b_c00378{left:182.533333pt;}
.x104_c00378{left:184.000000pt;}
.xd6_c00378{left:185.466667pt;}
.x9d_c00378{left:186.533333pt;}
.xc3_c00378{left:188.666667pt;}
.x62_c00378{left:190.266667pt;}
.x136_c00378{left:191.200000pt;}
.xba_c00378{left:192.400000pt;}
.x93_c00378{left:195.733333pt;}
.x30_c00378{left:199.333333pt;}
.x11e_c00378{left:201.333333pt;}
.xfd_c00378{left:203.600000pt;}
.x11_c00378{left:206.400000pt;}
.x7c_c00378{left:208.133333pt;}
.x147_c00378{left:209.200000pt;}
.x12d_c00378{left:211.466667pt;}
.x9e_c00378{left:213.066667pt;}
.x105_c00378{left:215.066667pt;}
.x49_c00378{left:216.533333pt;}
.x70_c00378{left:218.133333pt;}
.x31_c00378{left:219.466667pt;}
.xf1_c00378{left:221.200000pt;}
.x21_c00378{left:222.666667pt;}
.xc4_c00378{left:225.466667pt;}
.xe1_c00378{left:229.466667pt;}
.xbb_c00378{left:231.066667pt;}
.x12_c00378{left:232.000000pt;}
.x63_c00378{left:233.200000pt;}
.xd0_c00378{left:234.133333pt;}
.x5_c00378{left:236.800000pt;}
.x71_c00378{left:238.000000pt;}
.x137_c00378{left:239.200000pt;}
.x22_c00378{left:240.266667pt;}
.x13_c00378{left:241.866667pt;}
.x64_c00378{left:242.800000pt;}
.xbc_c00378{left:244.533333pt;}
.x8b_c00378{left:246.000000pt;}
.xc5_c00378{left:247.200000pt;}
.x52_c00378{left:250.400000pt;}
.xaf_c00378{left:252.266667pt;}
.x3d_c00378{left:253.333333pt;}
.x106_c00378{left:254.400000pt;}
.xbd_c00378{left:255.466667pt;}
.x11f_c00378{left:258.266667pt;}
.x10b_c00378{left:260.000000pt;}
.x23_c00378{left:262.666667pt;}
.x7d_c00378{left:264.400000pt;}
.x9f_c00378{left:265.866667pt;}
.x72_c00378{left:269.066667pt;}
.xe2_c00378{left:270.400000pt;}
.x32_c00378{left:271.333333pt;}
.xc6_c00378{left:273.466667pt;}
.x65_c00378{left:275.066667pt;}
.x14_c00378{left:276.133333pt;}
.x6_c00378{left:277.733333pt;}
.xd7_c00378{left:279.466667pt;}
.x7e_c00378{left:281.066667pt;}
.x12e_c00378{left:282.800000pt;}
.x8c_c00378{left:284.133333pt;}
.x94_c00378{left:285.600000pt;}
.x10c_c00378{left:286.933333pt;}
.xec_c00378{left:288.000000pt;}
.x57_c00378{left:289.600000pt;}
.x7_c00378{left:292.133333pt;}
.x113_c00378{left:293.866667pt;}
.x24_c00378{left:294.933333pt;}
.x129_c00378{left:296.000000pt;}
.x3e_c00378{left:297.200000pt;}
.x53_c00378{left:298.666667pt;}
.x132_c00378{left:299.600000pt;}
.x4a_c00378{left:300.933333pt;}
.xe3_c00378{left:302.133333pt;}
.x8_c00378{left:305.200000pt;}
.x7f_c00378{left:306.400000pt;}
.x14c_c00378{left:309.466667pt;}
.xa9_c00378{left:310.533333pt;}
.xf2_c00378{left:312.400000pt;}
.x66_c00378{left:313.733333pt;}
.xed_c00378{left:316.800000pt;}
.x15_c00378{left:318.400000pt;}
.x73_c00378{left:320.000000pt;}
.xfe_c00378{left:321.066667pt;}
.x13c_c00378{left:322.133333pt;}
.x54_c00378{left:323.333333pt;}
.x133_c00378{left:329.333333pt;}
.x4b_c00378{left:330.400000pt;}
.x120_c00378{left:331.600000pt;}
.xaa_c00378{left:333.200000pt;}
.x144_c00378{left:334.933333pt;}
.x107_c00378{left:336.000000pt;}
.xd8_c00378{left:337.066667pt;}
.xb0_c00378{left:338.666667pt;}
.xff_c00378{left:339.600000pt;}
.x33_c00378{left:341.066667pt;}
.xe4_c00378{left:342.133333pt;}
.xc7_c00378{left:344.533333pt;}
.x3f_c00378{left:346.133333pt;}
.x25_c00378{left:350.666667pt;}
.x148_c00378{left:353.866667pt;}
.x9_c00378{left:355.066667pt;}
.x16_c00378{left:357.466667pt;}
.x80_c00378{left:359.466667pt;}
.x26_c00378{left:361.600000pt;}
.xa0_c00378{left:363.066667pt;}
.x58_c00378{left:364.533333pt;}
.xf3_c00378{left:365.466667pt;}
.x10d_c00378{left:366.666667pt;}
.x34_c00378{left:368.933333pt;}
.x40_c00378{left:371.466667pt;}
.xb1_c00378{left:372.933333pt;}
.x100_c00378{left:374.133333pt;}
.xe5_c00378{left:375.733333pt;}
.x114_c00378{left:376.800000pt;}
.x4c_c00378{left:378.666667pt;}
.xc8_c00378{left:383.333333pt;}
.x27_c00378{left:384.266667pt;}
.x59_c00378{left:387.600000pt;}
.x17_c00378{left:389.200000pt;}
.xab_c00378{left:391.733333pt;}
.x67_c00378{left:394.000000pt;}
.x2_c00378{left:395.866667pt;}
.x74_c00378{left:397.066667pt;}
.x55_c00378{left:398.266667pt;}
.x28_c00378{left:400.266667pt;}
.x121_c00378{left:402.000000pt;}
.x41_c00378{left:404.400000pt;}
.x8d_c00378{left:406.000000pt;}
.x12a_c00378{left:407.333333pt;}
.xc9_c00378{left:408.266667pt;}
.xbe_c00378{left:409.200000pt;}
.xb2_c00378{left:411.066667pt;}
.xfb_c00378{left:412.533333pt;}
.x68_c00378{left:414.133333pt;}
.x35_c00378{left:416.000000pt;}
.xa1_c00378{left:419.733333pt;}
.x108_c00378{left:421.066667pt;}
.x18_c00378{left:422.533333pt;}
.xf4_c00378{left:424.666667pt;}
.xee_c00378{left:426.266667pt;}
.x12b_c00378{left:427.200000pt;}
.x29_c00378{left:429.333333pt;}
.x81_c00378{left:431.200000pt;}
.x122_c00378{left:432.133333pt;}
.x13d_c00378{left:434.666667pt;}
.x36_c00378{left:436.133333pt;}
.xa_c00378{left:438.266667pt;}
.xd1_c00378{left:441.200000pt;}
.x12f_c00378{left:442.400000pt;}
.x5a_c00378{left:443.333333pt;}
.x117_c00378{left:444.666667pt;}
.x95_c00378{left:446.133333pt;}
.x42_c00378{left:451.733333pt;}
.x4d_c00378{left:452.800000pt;}
.xd9_c00378{left:456.933333pt;}
.xca_c00378{left:457.866667pt;}
.xb_c00378{left:458.800000pt;}
.x13e_c00378{left:461.200000pt;}
.x10e_c00378{left:462.400000pt;}
.x75_c00378{left:463.600000pt;}
.xa2_c00378{left:464.800000pt;}
.xbf_c00378{left:466.400000pt;}
.x123_c00378{left:467.600000pt;}
.x82_c00378{left:469.866667pt;}
.x11b_c00378{left:471.866667pt;}
.x109_c00378{left:474.133333pt;}
.xb3_c00378{left:475.600000pt;}
.xda_c00378{left:477.733333pt;}
.x5b_c00378{left:479.200000pt;}
.xc_c00378{left:480.266667pt;}
.xe6_c00378{left:481.333333pt;}
.x2a_c00378{left:482.400000pt;}
.xa3_c00378{left:483.333333pt;}
.x8e_c00378{left:484.933333pt;}
.x130_c00378{left:487.466667pt;}
.x138_c00378{left:488.533333pt;}
.xac_c00378{left:490.000000pt;}
.xd2_c00378{left:491.066667pt;}
.x19_c00378{left:492.666667pt;}
.x149_c00378{left:494.133333pt;}
.x83_c00378{left:495.466667pt;}
.x5c_c00378{left:496.533333pt;}
.x101_c00378{left:498.666667pt;}
.xe7_c00378{left:499.866667pt;}
.x69_c00378{left:500.800000pt;}
.x10f_c00378{left:502.133333pt;}
.xcb_c00378{left:504.266667pt;}
.x43_c00378{left:506.133333pt;}
.x37_c00378{left:508.800000pt;}
.xb4_c00378{left:509.866667pt;}
.x14d_c00378{left:511.866667pt;}
.x96_c00378{left:512.800000pt;}
.x10a_c00378{left:515.066667pt;}
.x1a_c00378{left:516.400000pt;}
.x2b_c00378{left:517.866667pt;}
.x5d_c00378{left:519.600000pt;}
.xc0_c00378{left:522.400000pt;}
.xef_c00378{left:524.533333pt;}
.x134_c00378{left:526.400000pt;}
.x8f_c00378{left:527.866667pt;}
.x97_c00378{left:529.066667pt;}
.xe8_c00378{left:531.200000pt;}
.xb5_c00378{left:532.933333pt;}
.xdb_c00378{left:534.133333pt;}
.x4e_c00378{left:536.266667pt;}
.x124_c00378{left:537.333333pt;}
.x1b_c00378{left:541.066667pt;}
.x90_c00378{left:545.466667pt;}
.xcc_c00378{left:550.933333pt;}
.xdc_c00378{left:552.666667pt;}
.x98_c00378{left:553.733333pt;}
.x84_c00378{left:555.333333pt;}
.xa4_c00378{left:557.200000pt;}
.xf5_c00378{left:558.133333pt;}
.xd_c00378{left:560.533333pt;}
.x139_c00378{left:561.466667pt;}
.x38_c00378{left:562.533333pt;}
.x44_c00378{left:563.466667pt;}
.xe9_c00378{left:564.533333pt;}
.x115_c00378{left:567.066667pt;}
.x6a_c00378{left:568.933333pt;}
.x76_c00378{left:570.800000pt;}
.x4f_c00378{left:572.400000pt;}
.xf6_c00378{left:574.400000pt;}
.xd3_c00378{left:577.733333pt;}
.x2c_c00378{left:579.333333pt;}
.x125_c00378{left:580.533333pt;}
.x39_c00378{left:581.733333pt;}
.x99_c00378{left:583.466667pt;}
.xb6_c00378{left:584.800000pt;}
.x77_c00378{left:586.133333pt;}
.xad_c00378{left:587.066667pt;}
.x50_c00378{left:592.266667pt;}
.x110_c00378{left:594.666667pt;}
.x118_c00378{left:596.666667pt;}
.xa5_c00378{left:598.133333pt;}
.x91_c00378{left:600.400000pt;}
.x85_c00378{left:602.000000pt;}
.x3a_c00378{left:603.466667pt;}
.x13a_c00378{left:604.666667pt;}
.x111_c00378{left:607.466667pt;}
.x6b_c00378{left:610.800000pt;}
.x1c_c00378{left:612.400000pt;}
.x9a_c00378{left:614.133333pt;}
.x135_c00378{left:615.733333pt;}
.x5e_c00378{left:617.466667pt;}
.x11c_c00378{left:619.066667pt;}
.x2d_c00378{left:620.000000pt;}
.xd4_c00378{left:622.133333pt;}
.x102_c00378{left:623.066667pt;}
.xae_c00378{left:624.800000pt;}
.xfc_c00378{left:626.133333pt;}
.xcd_c00378{left:627.333333pt;}
.x14a_c00378{left:628.266667pt;}
.xb7_c00378{left:629.600000pt;}
.x1d_c00378{left:630.666667pt;}
.xc1_c00378{left:632.533333pt;}
.x45_c00378{left:634.133333pt;}
.x13f_c00378{left:635.466667pt;}
.x9b_c00378{left:638.133333pt;}
.xe_c00378{left:639.200000pt;}
.x78_c00378{left:641.466667pt;}
.x127_c00378{left:643.200000pt;}
.x145_c00378{left:644.133333pt;}
.x86_c00378{left:645.200000pt;}
.xdd_c00378{left:647.333333pt;}
.x5f_c00378{left:649.466667pt;}
.x140_c00378{left:650.533333pt;}
.x46_c00378{left:652.666667pt;}
.x6c_c00378{left:654.933333pt;}
.xea_c00378{left:660.133333pt;}
.x128_c00378{left:661.733333pt;}
.xc2_c00378{left:663.600000pt;}
.x2e_c00378{left:664.533333pt;}
.xf7_c00378{left:665.866667pt;}
.x141_c00378{left:667.866667pt;}
.x3b_c00378{left:671.333333pt;}
.x1e_c00378{left:672.266667pt;}
.xd5_c00378{left:674.133333pt;}
.xde_c00378{left:675.200000pt;}
.x92_c00378{left:676.666667pt;}
.xb8_c00378{left:677.600000pt;}
.xf8_c00378{left:678.666667pt;}
.xce_c00378{left:680.133333pt;}
.x103_c00378{left:682.000000pt;}
.x119_c00378{left:683.066667pt;}
.x11d_c00378{left:684.000000pt;}
.x6d_c00378{left:686.000000pt;}
.xf0_c00378{left:689.333333pt;}
.xeb_c00378{left:690.533333pt;}
.x47_c00378{left:693.333333pt;}
.x60_c00378{left:694.266667pt;}
.x87_c00378{left:696.400000pt;}
.xf9_c00378{left:697.600000pt;}
.x126_c00378{left:698.933333pt;}
.xa6_c00378{left:700.933333pt;}
.x6e_c00378{left:702.933333pt;}
.xdf_c00378{left:705.333333pt;}
.xf_c00378{left:708.266667pt;}
.x79_c00378{left:710.266667pt;}
.x116_c00378{left:711.733333pt;}
.x14b_c00378{left:712.800000pt;}
.x88_c00378{left:714.000000pt;}
.x9c_c00378{left:716.266667pt;}
}





/* 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_c00379 {
    display:none;
  }
  .loading-indicator_c00379.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00379 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_c00379 { 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_c00379" -> "#page-container .classname_c00379")
 */
.pf_c00379 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00379 { /* 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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00379 { /* 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_c00379 { /* 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_c00379 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00379 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00379 {overflow:visible;}
  }
}
.c_c00379 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00379 { /* 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_c00379:after { /* webkit #35443 */
  content: '';
}
.t_c00379:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00379 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 */
}
.__c00379 { /* 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_c00379 { /* info for Javascript */
  display:none;
}
.l_c00379 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00379 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00379 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00379: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_c00379 {
    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_c00379.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00379.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_c00379 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00379{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.000000;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;}
.m27_c00379{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00379{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00379{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m14_c00379{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mac_c00379{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m26_c00379{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00379{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m19_c00379{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00379{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00379{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m15_c00379{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m62_c00379{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00379{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m13_c00379{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m90_c00379{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00379{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m77_c00379{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00379{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m29_c00379{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m97_c00379{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m66_c00379{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00379{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00379{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m42_c00379{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00379{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00379{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m58_c00379{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m95_c00379{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m65_c00379{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m41_c00379{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m24_c00379{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.maa_c00379{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00379{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m91_c00379{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m80_c00379{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mad_c00379{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00379{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00379{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00379{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00379{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m96_c00379{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00379{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m22_c00379{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m10_c00379{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00379{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00379{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mf_c00379{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m33_c00379{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m74_c00379{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb_c00379{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m52_c00379{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m56_c00379{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m25_c00379{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00379{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m60_c00379{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00379{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00379{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m11_c00379{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00379{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00379{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m18_c00379{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00379{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00379{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00379{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m45_c00379{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00379{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m36_c00379{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00379{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m67_c00379{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8_c00379{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m43_c00379{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00379{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00379{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00379{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00379{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00379{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00379{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m61_c00379{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m28_c00379{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m31_c00379{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m34_c00379{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m23_c00379{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m86_c00379{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00379{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m59_c00379{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00379{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md_c00379{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00379{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00379{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00379{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m64_c00379{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m76_c00379{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00379{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m88_c00379{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5_c00379{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m53_c00379{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m17_c00379{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m92_c00379{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m20_c00379{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00379{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m93_c00379{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00379{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00379{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00379{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mae_c00379{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m68_c00379{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00379{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00379{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m55_c00379{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m12_c00379{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00379{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m50_c00379{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m39_c00379{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00379{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00379{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m54_c00379{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m40_c00379{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00379{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc_c00379{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m35_c00379{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m94_c00379{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00379{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m99_c00379{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m30_c00379{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00379{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00379{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);}
.m69_c00379{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m49_c00379{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00379{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m21_c00379{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m72_c00379{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00379{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m87_c00379{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m71_c00379{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m89_c00379{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00379{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00379{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00379{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m7_c00379{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.maf_c00379{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00379{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m51_c00379{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m46_c00379{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m98_c00379{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00379{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6_c00379{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00379{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m81_c00379{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m44_c00379{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00379{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m47_c00379{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m84_c00379{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00379{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m83_c00379{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00379{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00379{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m57_c00379{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00379{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.me_c00379{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m63_c00379{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m16_c00379{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m48_c00379{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mab_c00379{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m82_c00379{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m38_c00379{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00379{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m73_c00379{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00379{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00379{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma_c00379{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2_c00379{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m79_c00379{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00379{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m3_c00379{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m75_c00379{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m1_c00379{transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.626750,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{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__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00379{word-spacing:-7.926829px;}
.wsb_c00379{word-spacing:0.000000px;}
.ws5_c00379{word-spacing:6.041190px;}
.ws4_c00379{word-spacing:6.315789px;}
.ws3_c00379{word-spacing:10.277778px;}
.ws1_c00379{word-spacing:13.194444px;}
.ws8_c00379{word-spacing:15.789474px;}
.wsa_c00379{word-spacing:15.882353px;}
.ws9_c00379{word-spacing:16.265060px;}
.ws0_c00379{word-spacing:20.138889px;}
.ws6_c00379{word-spacing:21.607143px;}
.ws7_c00379{word-spacing:23.392857px;}
.fc0_c00379{color:transparent;}
.fs0_c00379{font-size:54.000000px;}
.fs1_c00379{font-size:60.000000px;}
.y0_c00379{bottom:0.000000px;}
.y2b_c00379{bottom:146.250000px;}
.y2a_c00379{bottom:166.350000px;}
.y29_c00379{bottom:205.200000px;}
.y28_c00379{bottom:225.000000px;}
.y27_c00379{bottom:244.800000px;}
.y26_c00379{bottom:264.900000px;}
.y25_c00379{bottom:284.700000px;}
.y24_c00379{bottom:304.500000px;}
.y23_c00379{bottom:324.300000px;}
.y22_c00379{bottom:344.400000px;}
.y21_c00379{bottom:364.500000px;}
.y20_c00379{bottom:384.300000px;}
.y1f_c00379{bottom:404.100000px;}
.y1e_c00379{bottom:423.900000px;}
.y1d_c00379{bottom:444.000000px;}
.y1c_c00379{bottom:463.800000px;}
.y1b_c00379{bottom:483.900000px;}
.y1a_c00379{bottom:504.000000px;}
.y19_c00379{bottom:523.800000px;}
.y18_c00379{bottom:543.900000px;}
.y17_c00379{bottom:564.000000px;}
.y16_c00379{bottom:583.800000px;}
.y15_c00379{bottom:603.600000px;}
.y14_c00379{bottom:623.700000px;}
.y13_c00379{bottom:643.800000px;}
.y12_c00379{bottom:663.600000px;}
.y11_c00379{bottom:683.400000px;}
.y10_c00379{bottom:703.500000px;}
.yf_c00379{bottom:741.600000px;}
.ye_c00379{bottom:761.400000px;}
.yd_c00379{bottom:781.200000px;}
.yc_c00379{bottom:801.300000px;}
.yb_c00379{bottom:821.400000px;}
.ya_c00379{bottom:841.200000px;}
.y9_c00379{bottom:861.750000px;}
.y8_c00379{bottom:881.250000px;}
.y7_c00379{bottom:901.650000px;}
.y6_c00379{bottom:921.750000px;}
.y5_c00379{bottom:941.850000px;}
.y4_c00379{bottom:962.400000px;}
.y3_c00379{bottom:982.500000px;}
.y2_c00379{bottom:1002.600000px;}
.y1_c00379{bottom:1038.900000px;}
.h2_c00379{height:54.000000px;}
.h3_c00379{height:60.000000px;}
.h0_c00379{height:1166.759949px;}
.h1_c00379{height:1167.000000px;}
.w1_c00379{width:913.500000px;}
.w0_c00379{width:913.679993px;}
.x0_c00379{left:0.000000px;}
.x132_c00379{left:95.400000px;}
.xaf_c00379{left:96.450000px;}
.x44_c00379{left:97.500000px;}
.x5_c00379{left:98.700000px;}
.x133_c00379{left:109.800000px;}
.xba_c00379{left:111.750000px;}
.x11d_c00379{left:116.100000px;}
.xb0_c00379{left:119.850000px;}
.xc9_c00379{left:122.100000px;}
.xfd_c00379{left:123.150000px;}
.x127_c00379{left:124.650000px;}
.x2a_c00379{left:126.000000px;}
.x12c_c00379{left:127.050000px;}
.x99_c00379{left:128.850000px;}
.x59_c00379{left:129.900000px;}
.x71_c00379{left:133.800000px;}
.x4e_c00379{left:136.950000px;}
.xca_c00379{left:138.300000px;}
.x16_c00379{left:139.800000px;}
.x8c_c00379{left:143.250000px;}
.xc0_c00379{left:144.750000px;}
.x11e_c00379{left:145.950000px;}
.x103_c00379{left:148.500000px;}
.xee_c00379{left:150.000000px;}
.x6_c00379{left:152.700000px;}
.x134_c00379{left:154.350000px;}
.xc4_c00379{left:157.500000px;}
.xb1_c00379{left:159.150000px;}
.x80_c00379{left:160.950000px;}
.x5a_c00379{left:162.000000px;}
.xd8_c00379{left:164.250000px;}
.x11a_c00379{left:165.450000px;}
.x36_c00379{left:166.650000px;}
.x45_c00379{left:167.700000px;}
.x77_c00379{left:170.250000px;}
.x9a_c00379{left:171.300000px;}
.x17_c00379{left:172.950000px;}
.xa3_c00379{left:174.750000px;}
.x115_c00379{left:177.450000px;}
.x97_c00379{left:179.250000px;}
.x5b_c00379{left:180.300000px;}
.x7d_c00379{left:183.450000px;}
.xf7_c00379{left:184.950000px;}
.x128_c00379{left:186.150000px;}
.x18_c00379{left:187.650000px;}
.xe0_c00379{left:190.050000px;}
.xfe_c00379{left:191.850000px;}
.x135_c00379{left:192.900000px;}
.xa4_c00379{left:194.850000px;}
.x7_c00379{left:196.200000px;}
.xd9_c00379{left:198.150000px;}
.xb2_c00379{left:203.400000px;}
.x8d_c00379{left:205.200000px;}
.x10f_c00379{left:207.150000px;}
.x2b_c00379{left:208.500000px;}
.xa5_c00379{left:209.550000px;}
.xe7_c00379{left:210.600000px;}
.x37_c00379{left:214.500000px;}
.x67_c00379{left:217.050000px;}
.x98_c00379{left:218.550000px;}
.x19_c00379{left:221.100000px;}
.x78_c00379{left:222.450000px;}
.x81_c00379{left:225.450000px;}
.xd0_c00379{left:227.250000px;}
.x8e_c00379{left:233.700000px;}
.x2c_c00379{left:234.750000px;}
.x8_c00379{left:236.550000px;}
.x129_c00379{left:238.050000px;}
.x72_c00379{left:244.050000px;}
.x109_c00379{left:245.250000px;}
.xc5_c00379{left:247.200000px;}
.x5c_c00379{left:249.150000px;}
.x46_c00379{left:251.250000px;}
.xc1_c00379{left:253.200000px;}
.xda_c00379{left:255.300000px;}
.x4f_c00379{left:256.950000px;}
.xf8_c00379{left:258.000000px;}
.x105_c00379{left:260.850000px;}
.x1a_c00379{left:262.800000px;}
.xbb_c00379{left:264.450000px;}
.xe1_c00379{left:265.650000px;}
.xf5_c00379{left:267.300000px;}
.x68_c00379{left:269.250000px;}
.xef_c00379{left:271.050000px;}
.x82_c00379{left:275.100000px;}
.x73_c00379{left:276.150000px;}
.x1b_c00379{left:277.500000px;}
.xd1_c00379{left:279.450000px;}
.x7e_c00379{left:281.700000px;}
.xa6_c00379{left:284.100000px;}
.x9_c00379{left:285.150000px;}
.x5d_c00379{left:286.650000px;}
.x47_c00379{left:292.650000px;}
.xf9_c00379{left:293.700000px;}
.x50_c00379{left:294.750000px;}
.x79_c00379{left:296.250000px;}
.xcb_c00379{left:297.750000px;}
.x104_c00379{left:299.100000px;}
.x11f_c00379{left:300.750000px;}
.xc2_c00379{left:302.550000px;}
.x8f_c00379{left:304.950000px;}
.x38_c00379{left:306.300000px;}
.x9b_c00379{left:309.150000px;}
.x136_c00379{left:310.200000px;}
.xa7_c00379{left:313.950000px;}
.x10a_c00379{left:315.900000px;}
.x5e_c00379{left:317.250000px;}
.x124_c00379{left:318.300000px;}
.xe8_c00379{left:320.400000px;}
.x1c_c00379{left:321.750000px;}
.x51_c00379{left:322.800000px;}
.x83_c00379{left:324.000000px;}
.xff_c00379{left:325.500000px;}
.x2d_c00379{left:327.300000px;}
.xdb_c00379{left:329.100000px;}
.x48_c00379{left:331.500000px;}
.x69_c00379{left:334.050000px;}
.x1_c00379{left:336.600000px;}
.x1d_c00379{left:338.700000px;}
.xa_c00379{left:339.900000px;}
.x110_c00379{left:340.950000px;}
.x12a_c00379{left:343.500000px;}
.xe9_c00379{left:348.900000px;}
.x9c_c00379{left:350.250000px;}
.x84_c00379{left:351.300000px;}
.x39_c00379{left:352.650000px;}
.xcc_c00379{left:354.000000px;}
.x1e_c00379{left:355.950000px;}
.x5f_c00379{left:357.900000px;}
.x12d_c00379{left:359.250000px;}
.xb_c00379{left:361.200000px;}
.x3a_c00379{left:363.750000px;}
.x137_c00379{left:365.250000px;}
.x121_c00379{left:367.050000px;}
.xf0_c00379{left:369.000000px;}
.x125_c00379{left:372.300000px;}
.x52_c00379{left:375.300000px;}
.x2e_c00379{left:378.450000px;}
.x1f_c00379{left:379.650000px;}
.xc3_c00379{left:381.000000px;}
.xf4_c00379{left:383.250000px;}
.xb3_c00379{left:385.500000px;}
.xe2_c00379{left:387.000000px;}
.x100_c00379{left:388.500000px;}
.x9d_c00379{left:389.550000px;}
.x3b_c00379{left:391.800000px;}
.xea_c00379{left:394.650000px;}
.x90_c00379{left:395.700000px;}
.x106_c00379{left:397.950000px;}
.x85_c00379{left:399.600000px;}
.xd2_c00379{left:402.600000px;}
.x7a_c00379{left:404.400000px;}
.xc_c00379{left:406.200000px;}
.x74_c00379{left:407.550000px;}
.xdc_c00379{left:409.350000px;}
.x122_c00379{left:411.000000px;}
.x101_c00379{left:414.000000px;}
.x20_c00379{left:415.350000px;}
.xa8_c00379{left:416.550000px;}
.x12e_c00379{left:417.900000px;}
.x6a_c00379{left:418.950000px;}
.x91_c00379{left:422.400000px;}
.x86_c00379{left:424.050000px;}
.x2_c00379{left:425.100000px;}
.x53_c00379{left:426.450000px;}
.x111_c00379{left:428.400000px;}
.x107_c00379{left:430.650000px;}
.x9e_c00379{left:431.700000px;}
.x12b_c00379{left:434.550000px;}
.x3c_c00379{left:436.050000px;}
.x120_c00379{left:437.250000px;}
.x21_c00379{left:438.750000px;}
.x2f_c00379{left:440.400000px;}
.x7b_c00379{left:443.250000px;}
.x3_c00379{left:444.900000px;}
.xeb_c00379{left:446.400000px;}
.x112_c00379{left:448.950000px;}
.x3d_c00379{left:450.450000px;}
.x138_c00379{left:452.400000px;}
.xd3_c00379{left:454.050000px;}
.x9f_c00379{left:456.150000px;}
.xa9_c00379{left:459.750000px;}
.xf6_c00379{left:461.700000px;}
.x6b_c00379{left:463.950000px;}
.xfa_c00379{left:465.750000px;}
.xbc_c00379{left:466.800000px;}
.x54_c00379{left:468.150000px;}
.x60_c00379{left:469.800000px;}
.xd4_c00379{left:472.050000px;}
.x87_c00379{left:473.700000px;}
.x30_c00379{left:478.500000px;}
.xd_c00379{left:480.000000px;}
.x116_c00379{left:484.800000px;}
.xb4_c00379{left:486.750000px;}
.x55_c00379{left:488.250000px;}
.x22_c00379{left:490.200000px;}
.xcd_c00379{left:491.250000px;}
.x6c_c00379{left:492.450000px;}
.x10b_c00379{left:495.150000px;}
.xaa_c00379{left:496.500000px;}
.x139_c00379{left:498.900000px;}
.x49_c00379{left:500.100000px;}
.xe_c00379{left:503.400000px;}
.x61_c00379{left:505.050000px;}
.x92_c00379{left:506.250000px;}
.xdd_c00379{left:507.300000px;}
.xf1_c00379{left:508.350000px;}
.x88_c00379{left:510.750000px;}
.x31_c00379{left:513.750000px;}
.x10c_c00379{left:514.950000px;}
.x56_c00379{left:516.300000px;}
.x113_c00379{left:517.800000px;}
.xd5_c00379{left:518.850000px;}
.x123_c00379{left:522.150000px;}
.x23_c00379{left:527.250000px;}
.xf_c00379{left:528.600000px;}
.xec_c00379{left:530.700000px;}
.x6d_c00379{left:533.850000px;}
.x7f_c00379{left:536.850000px;}
.xd6_c00379{left:538.650000px;}
.x32_c00379{left:540.750000px;}
.x62_c00379{left:542.100000px;}
.x3e_c00379{left:543.750000px;}
.xfb_c00379{left:547.500000px;}
.x12f_c00379{left:549.000000px;}
.xf2_c00379{left:550.050000px;}
.x89_c00379{left:551.400000px;}
.x3f_c00379{left:554.850000px;}
.xb5_c00379{left:561.000000px;}
.x93_c00379{left:563.550000px;}
.x10_c00379{left:564.600000px;}
.x24_c00379{left:567.900000px;}
.xed_c00379{left:569.250000px;}
.x4a_c00379{left:571.350000px;}
.x57_c00379{left:574.650000px;}
.xe3_c00379{left:577.800000px;}
.x75_c00379{left:578.850000px;}
.x130_c00379{left:579.900000px;}
.x11_c00379{left:581.550000px;}
.x6e_c00379{left:584.250000px;}
.xfc_c00379{left:588.600000px;}
.xc6_c00379{left:590.100000px;}
.xbd_c00379{left:593.850000px;}
.x40_c00379{left:596.550000px;}
.xe4_c00379{left:598.350000px;}
.x4b_c00379{left:599.400000px;}
.xab_c00379{left:604.050000px;}
.xde_c00379{left:605.550000px;}
.x76_c00379{left:607.350000px;}
.x63_c00379{left:610.050000px;}
.x58_c00379{left:611.700000px;}
.x94_c00379{left:613.200000px;}
.x11b_c00379{left:615.450000px;}
.x25_c00379{left:616.800000px;}
.xce_c00379{left:618.300000px;}
.xd7_c00379{left:619.950000px;}
.xe5_c00379{left:623.250000px;}
.xb6_c00379{left:627.300000px;}
.x114_c00379{left:628.350000px;}
.x64_c00379{left:630.900000px;}
.x117_c00379{left:633.450000px;}
.x33_c00379{left:634.650000px;}
.xc7_c00379{left:636.150000px;}
.x10d_c00379{left:637.950000px;}
.xac_c00379{left:639.300000px;}
.x12_c00379{left:640.650000px;}
.x26_c00379{left:643.050000px;}
.x11c_c00379{left:646.350000px;}
.xa0_c00379{left:647.550000px;}
.xb7_c00379{left:649.950000px;}
.x118_c00379{left:651.150000px;}
.xc8_c00379{left:653.850000px;}
.x41_c00379{left:655.950000px;}
.x6f_c00379{left:657.600000px;}
.xad_c00379{left:659.850000px;}
.x4c_c00379{left:661.350000px;}
.x131_c00379{left:662.700000px;}
.x7c_c00379{left:666.600000px;}
.x8a_c00379{left:668.100000px;}
.x95_c00379{left:669.300000px;}
.x42_c00379{left:670.350000px;}
.x65_c00379{left:675.600000px;}
.xdf_c00379{left:677.850000px;}
.x27_c00379{left:679.350000px;}
.x4d_c00379{left:683.700000px;}
.x34_c00379{left:687.600000px;}
.xe6_c00379{left:689.100000px;}
.xa1_c00379{left:691.050000px;}
.xbe_c00379{left:693.300000px;}
.x119_c00379{left:697.200000px;}
.xf3_c00379{left:698.400000px;}
.x13_c00379{left:700.800000px;}
.xb8_c00379{left:703.200000px;}
.x70_c00379{left:704.700000px;}
.x126_c00379{left:706.500000px;}
.x96_c00379{left:708.150000px;}
.xae_c00379{left:712.050000px;}
.xbf_c00379{left:716.700000px;}
.x108_c00379{left:717.900000px;}
.x43_c00379{left:720.000000px;}
.x35_c00379{left:722.550000px;}
.x14_c00379{left:724.200000px;}
.xb9_c00379{left:725.550000px;}
.x10e_c00379{left:727.950000px;}
.x28_c00379{left:730.050000px;}
.x102_c00379{left:732.750000px;}
.xa2_c00379{left:735.750000px;}
.xcf_c00379{left:737.100000px;}
.x4_c00379{left:738.300000px;}
.x15_c00379{left:741.450000px;}
.x29_c00379{left:744.150000px;}
.x66_c00379{left:750.150000px;}
.x8b_c00379{left:752.400000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws2_c00379{word-spacing:-7.046070pt;}
.wsb_c00379{word-spacing:0.000000pt;}
.ws5_c00379{word-spacing:5.369947pt;}
.ws4_c00379{word-spacing:5.614035pt;}
.ws3_c00379{word-spacing:9.135802pt;}
.ws1_c00379{word-spacing:11.728395pt;}
.ws8_c00379{word-spacing:14.035088pt;}
.wsa_c00379{word-spacing:14.117647pt;}
.ws9_c00379{word-spacing:14.457831pt;}
.ws0_c00379{word-spacing:17.901235pt;}
.ws6_c00379{word-spacing:19.206349pt;}
.ws7_c00379{word-spacing:20.793651pt;}
.fs0_c00379{font-size:48.000000pt;}
.fs1_c00379{font-size:53.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y2b_c00379{bottom:130.000000pt;}
.y2a_c00379{bottom:147.866667pt;}
.y29_c00379{bottom:182.400000pt;}
.y28_c00379{bottom:200.000000pt;}
.y27_c00379{bottom:217.600000pt;}
.y26_c00379{bottom:235.466667pt;}
.y25_c00379{bottom:253.066667pt;}
.y24_c00379{bottom:270.666667pt;}
.y23_c00379{bottom:288.266667pt;}
.y22_c00379{bottom:306.133333pt;}
.y21_c00379{bottom:324.000000pt;}
.y20_c00379{bottom:341.600000pt;}
.y1f_c00379{bottom:359.200000pt;}
.y1e_c00379{bottom:376.800000pt;}
.y1d_c00379{bottom:394.666667pt;}
.y1c_c00379{bottom:412.266667pt;}
.y1b_c00379{bottom:430.133333pt;}
.y1a_c00379{bottom:448.000000pt;}
.y19_c00379{bottom:465.600000pt;}
.y18_c00379{bottom:483.466667pt;}
.y17_c00379{bottom:501.333333pt;}
.y16_c00379{bottom:518.933333pt;}
.y15_c00379{bottom:536.533333pt;}
.y14_c00379{bottom:554.400000pt;}
.y13_c00379{bottom:572.266667pt;}
.y12_c00379{bottom:589.866667pt;}
.y11_c00379{bottom:607.466667pt;}
.y10_c00379{bottom:625.333333pt;}
.yf_c00379{bottom:659.200000pt;}
.ye_c00379{bottom:676.800000pt;}
.yd_c00379{bottom:694.400000pt;}
.yc_c00379{bottom:712.266667pt;}
.yb_c00379{bottom:730.133333pt;}
.ya_c00379{bottom:747.733333pt;}
.y9_c00379{bottom:766.000000pt;}
.y8_c00379{bottom:783.333333pt;}
.y7_c00379{bottom:801.466667pt;}
.y6_c00379{bottom:819.333333pt;}
.y5_c00379{bottom:837.200000pt;}
.y4_c00379{bottom:855.466667pt;}
.y3_c00379{bottom:873.333333pt;}
.y2_c00379{bottom:891.200000pt;}
.y1_c00379{bottom:923.466667pt;}
.h2_c00379{height:48.000000pt;}
.h3_c00379{height:53.333333pt;}
.h0_c00379{height:1037.119955pt;}
.h1_c00379{height:1037.333333pt;}
.w1_c00379{width:812.000000pt;}
.w0_c00379{width:812.159993pt;}
.x0_c00379{left:0.000000pt;}
.x132_c00379{left:84.800000pt;}
.xaf_c00379{left:85.733333pt;}
.x44_c00379{left:86.666667pt;}
.x5_c00379{left:87.733333pt;}
.x133_c00379{left:97.600000pt;}
.xba_c00379{left:99.333333pt;}
.x11d_c00379{left:103.200000pt;}
.xb0_c00379{left:106.533333pt;}
.xc9_c00379{left:108.533333pt;}
.xfd_c00379{left:109.466667pt;}
.x127_c00379{left:110.800000pt;}
.x2a_c00379{left:112.000000pt;}
.x12c_c00379{left:112.933333pt;}
.x99_c00379{left:114.533333pt;}
.x59_c00379{left:115.466667pt;}
.x71_c00379{left:118.933333pt;}
.x4e_c00379{left:121.733333pt;}
.xca_c00379{left:122.933333pt;}
.x16_c00379{left:124.266667pt;}
.x8c_c00379{left:127.333333pt;}
.xc0_c00379{left:128.666667pt;}
.x11e_c00379{left:129.733333pt;}
.x103_c00379{left:132.000000pt;}
.xee_c00379{left:133.333333pt;}
.x6_c00379{left:135.733333pt;}
.x134_c00379{left:137.200000pt;}
.xc4_c00379{left:140.000000pt;}
.xb1_c00379{left:141.466667pt;}
.x80_c00379{left:143.066667pt;}
.x5a_c00379{left:144.000000pt;}
.xd8_c00379{left:146.000000pt;}
.x11a_c00379{left:147.066667pt;}
.x36_c00379{left:148.133333pt;}
.x45_c00379{left:149.066667pt;}
.x77_c00379{left:151.333333pt;}
.x9a_c00379{left:152.266667pt;}
.x17_c00379{left:153.733333pt;}
.xa3_c00379{left:155.333333pt;}
.x115_c00379{left:157.733333pt;}
.x97_c00379{left:159.333333pt;}
.x5b_c00379{left:160.266667pt;}
.x7d_c00379{left:163.066667pt;}
.xf7_c00379{left:164.400000pt;}
.x128_c00379{left:165.466667pt;}
.x18_c00379{left:166.800000pt;}
.xe0_c00379{left:168.933333pt;}
.xfe_c00379{left:170.533333pt;}
.x135_c00379{left:171.466667pt;}
.xa4_c00379{left:173.200000pt;}
.x7_c00379{left:174.400000pt;}
.xd9_c00379{left:176.133333pt;}
.xb2_c00379{left:180.800000pt;}
.x8d_c00379{left:182.400000pt;}
.x10f_c00379{left:184.133333pt;}
.x2b_c00379{left:185.333333pt;}
.xa5_c00379{left:186.266667pt;}
.xe7_c00379{left:187.200000pt;}
.x37_c00379{left:190.666667pt;}
.x67_c00379{left:192.933333pt;}
.x98_c00379{left:194.266667pt;}
.x19_c00379{left:196.533333pt;}
.x78_c00379{left:197.733333pt;}
.x81_c00379{left:200.400000pt;}
.xd0_c00379{left:202.000000pt;}
.x8e_c00379{left:207.733333pt;}
.x2c_c00379{left:208.666667pt;}
.x8_c00379{left:210.266667pt;}
.x129_c00379{left:211.600000pt;}
.x72_c00379{left:216.933333pt;}
.x109_c00379{left:218.000000pt;}
.xc5_c00379{left:219.733333pt;}
.x5c_c00379{left:221.466667pt;}
.x46_c00379{left:223.333333pt;}
.xc1_c00379{left:225.066667pt;}
.xda_c00379{left:226.933333pt;}
.x4f_c00379{left:228.400000pt;}
.xf8_c00379{left:229.333333pt;}
.x105_c00379{left:231.866667pt;}
.x1a_c00379{left:233.600000pt;}
.xbb_c00379{left:235.066667pt;}
.xe1_c00379{left:236.133333pt;}
.xf5_c00379{left:237.600000pt;}
.x68_c00379{left:239.333333pt;}
.xef_c00379{left:240.933333pt;}
.x82_c00379{left:244.533333pt;}
.x73_c00379{left:245.466667pt;}
.x1b_c00379{left:246.666667pt;}
.xd1_c00379{left:248.400000pt;}
.x7e_c00379{left:250.400000pt;}
.xa6_c00379{left:252.533333pt;}
.x9_c00379{left:253.466667pt;}
.x5d_c00379{left:254.800000pt;}
.x47_c00379{left:260.133333pt;}
.xf9_c00379{left:261.066667pt;}
.x50_c00379{left:262.000000pt;}
.x79_c00379{left:263.333333pt;}
.xcb_c00379{left:264.666667pt;}
.x104_c00379{left:265.866667pt;}
.x11f_c00379{left:267.333333pt;}
.xc2_c00379{left:268.933333pt;}
.x8f_c00379{left:271.066667pt;}
.x38_c00379{left:272.266667pt;}
.x9b_c00379{left:274.800000pt;}
.x136_c00379{left:275.733333pt;}
.xa7_c00379{left:279.066667pt;}
.x10a_c00379{left:280.800000pt;}
.x5e_c00379{left:282.000000pt;}
.x124_c00379{left:282.933333pt;}
.xe8_c00379{left:284.800000pt;}
.x1c_c00379{left:286.000000pt;}
.x51_c00379{left:286.933333pt;}
.x83_c00379{left:288.000000pt;}
.xff_c00379{left:289.333333pt;}
.x2d_c00379{left:290.933333pt;}
.xdb_c00379{left:292.533333pt;}
.x48_c00379{left:294.666667pt;}
.x69_c00379{left:296.933333pt;}
.x1_c00379{left:299.200000pt;}
.x1d_c00379{left:301.066667pt;}
.xa_c00379{left:302.133333pt;}
.x110_c00379{left:303.066667pt;}
.x12a_c00379{left:305.333333pt;}
.xe9_c00379{left:310.133333pt;}
.x9c_c00379{left:311.333333pt;}
.x84_c00379{left:312.266667pt;}
.x39_c00379{left:313.466667pt;}
.xcc_c00379{left:314.666667pt;}
.x1e_c00379{left:316.400000pt;}
.x5f_c00379{left:318.133333pt;}
.x12d_c00379{left:319.333333pt;}
.xb_c00379{left:321.066667pt;}
.x3a_c00379{left:323.333333pt;}
.x137_c00379{left:324.666667pt;}
.x121_c00379{left:326.266667pt;}
.xf0_c00379{left:328.000000pt;}
.x125_c00379{left:330.933333pt;}
.x52_c00379{left:333.600000pt;}
.x2e_c00379{left:336.400000pt;}
.x1f_c00379{left:337.466667pt;}
.xc3_c00379{left:338.666667pt;}
.xf4_c00379{left:340.666667pt;}
.xb3_c00379{left:342.666667pt;}
.xe2_c00379{left:344.000000pt;}
.x100_c00379{left:345.333333pt;}
.x9d_c00379{left:346.266667pt;}
.x3b_c00379{left:348.266667pt;}
.xea_c00379{left:350.800000pt;}
.x90_c00379{left:351.733333pt;}
.x106_c00379{left:353.733333pt;}
.x85_c00379{left:355.200000pt;}
.xd2_c00379{left:357.866667pt;}
.x7a_c00379{left:359.466667pt;}
.xc_c00379{left:361.066667pt;}
.x74_c00379{left:362.266667pt;}
.xdc_c00379{left:363.866667pt;}
.x122_c00379{left:365.333333pt;}
.x101_c00379{left:368.000000pt;}
.x20_c00379{left:369.200000pt;}
.xa8_c00379{left:370.266667pt;}
.x12e_c00379{left:371.466667pt;}
.x6a_c00379{left:372.400000pt;}
.x91_c00379{left:375.466667pt;}
.x86_c00379{left:376.933333pt;}
.x2_c00379{left:377.866667pt;}
.x53_c00379{left:379.066667pt;}
.x111_c00379{left:380.800000pt;}
.x107_c00379{left:382.800000pt;}
.x9e_c00379{left:383.733333pt;}
.x12b_c00379{left:386.266667pt;}
.x3c_c00379{left:387.600000pt;}
.x120_c00379{left:388.666667pt;}
.x21_c00379{left:390.000000pt;}
.x2f_c00379{left:391.466667pt;}
.x7b_c00379{left:394.000000pt;}
.x3_c00379{left:395.466667pt;}
.xeb_c00379{left:396.800000pt;}
.x112_c00379{left:399.066667pt;}
.x3d_c00379{left:400.400000pt;}
.x138_c00379{left:402.133333pt;}
.xd3_c00379{left:403.600000pt;}
.x9f_c00379{left:405.466667pt;}
.xa9_c00379{left:408.666667pt;}
.xf6_c00379{left:410.400000pt;}
.x6b_c00379{left:412.400000pt;}
.xfa_c00379{left:414.000000pt;}
.xbc_c00379{left:414.933333pt;}
.x54_c00379{left:416.133333pt;}
.x60_c00379{left:417.600000pt;}
.xd4_c00379{left:419.600000pt;}
.x87_c00379{left:421.066667pt;}
.x30_c00379{left:425.333333pt;}
.xd_c00379{left:426.666667pt;}
.x116_c00379{left:430.933333pt;}
.xb4_c00379{left:432.666667pt;}
.x55_c00379{left:434.000000pt;}
.x22_c00379{left:435.733333pt;}
.xcd_c00379{left:436.666667pt;}
.x6c_c00379{left:437.733333pt;}
.x10b_c00379{left:440.133333pt;}
.xaa_c00379{left:441.333333pt;}
.x139_c00379{left:443.466667pt;}
.x49_c00379{left:444.533333pt;}
.xe_c00379{left:447.466667pt;}
.x61_c00379{left:448.933333pt;}
.x92_c00379{left:450.000000pt;}
.xdd_c00379{left:450.933333pt;}
.xf1_c00379{left:451.866667pt;}
.x88_c00379{left:454.000000pt;}
.x31_c00379{left:456.666667pt;}
.x10c_c00379{left:457.733333pt;}
.x56_c00379{left:458.933333pt;}
.x113_c00379{left:460.266667pt;}
.xd5_c00379{left:461.200000pt;}
.x123_c00379{left:464.133333pt;}
.x23_c00379{left:468.666667pt;}
.xf_c00379{left:469.866667pt;}
.xec_c00379{left:471.733333pt;}
.x6d_c00379{left:474.533333pt;}
.x7f_c00379{left:477.200000pt;}
.xd6_c00379{left:478.800000pt;}
.x32_c00379{left:480.666667pt;}
.x62_c00379{left:481.866667pt;}
.x3e_c00379{left:483.333333pt;}
.xfb_c00379{left:486.666667pt;}
.x12f_c00379{left:488.000000pt;}
.xf2_c00379{left:488.933333pt;}
.x89_c00379{left:490.133333pt;}
.x3f_c00379{left:493.200000pt;}
.xb5_c00379{left:498.666667pt;}
.x93_c00379{left:500.933333pt;}
.x10_c00379{left:501.866667pt;}
.x24_c00379{left:504.800000pt;}
.xed_c00379{left:506.000000pt;}
.x4a_c00379{left:507.866667pt;}
.x57_c00379{left:510.800000pt;}
.xe3_c00379{left:513.600000pt;}
.x75_c00379{left:514.533333pt;}
.x130_c00379{left:515.466667pt;}
.x11_c00379{left:516.933333pt;}
.x6e_c00379{left:519.333333pt;}
.xfc_c00379{left:523.200000pt;}
.xc6_c00379{left:524.533333pt;}
.xbd_c00379{left:527.866667pt;}
.x40_c00379{left:530.266667pt;}
.xe4_c00379{left:531.866667pt;}
.x4b_c00379{left:532.800000pt;}
.xab_c00379{left:536.933333pt;}
.xde_c00379{left:538.266667pt;}
.x76_c00379{left:539.866667pt;}
.x63_c00379{left:542.266667pt;}
.x58_c00379{left:543.733333pt;}
.x94_c00379{left:545.066667pt;}
.x11b_c00379{left:547.066667pt;}
.x25_c00379{left:548.266667pt;}
.xce_c00379{left:549.600000pt;}
.xd7_c00379{left:551.066667pt;}
.xe5_c00379{left:554.000000pt;}
.xb6_c00379{left:557.600000pt;}
.x114_c00379{left:558.533333pt;}
.x64_c00379{left:560.800000pt;}
.x117_c00379{left:563.066667pt;}
.x33_c00379{left:564.133333pt;}
.xc7_c00379{left:565.466667pt;}
.x10d_c00379{left:567.066667pt;}
.xac_c00379{left:568.266667pt;}
.x12_c00379{left:569.466667pt;}
.x26_c00379{left:571.600000pt;}
.x11c_c00379{left:574.533333pt;}
.xa0_c00379{left:575.600000pt;}
.xb7_c00379{left:577.733333pt;}
.x118_c00379{left:578.800000pt;}
.xc8_c00379{left:581.200000pt;}
.x41_c00379{left:583.066667pt;}
.x6f_c00379{left:584.533333pt;}
.xad_c00379{left:586.533333pt;}
.x4c_c00379{left:587.866667pt;}
.x131_c00379{left:589.066667pt;}
.x7c_c00379{left:592.533333pt;}
.x8a_c00379{left:593.866667pt;}
.x95_c00379{left:594.933333pt;}
.x42_c00379{left:595.866667pt;}
.x65_c00379{left:600.533333pt;}
.xdf_c00379{left:602.533333pt;}
.x27_c00379{left:603.866667pt;}
.x4d_c00379{left:607.733333pt;}
.x34_c00379{left:611.200000pt;}
.xe6_c00379{left:612.533333pt;}
.xa1_c00379{left:614.266667pt;}
.xbe_c00379{left:616.266667pt;}
.x119_c00379{left:619.733333pt;}
.xf3_c00379{left:620.800000pt;}
.x13_c00379{left:622.933333pt;}
.xb8_c00379{left:625.066667pt;}
.x70_c00379{left:626.400000pt;}
.x126_c00379{left:628.000000pt;}
.x96_c00379{left:629.466667pt;}
.xae_c00379{left:632.933333pt;}
.xbf_c00379{left:637.066667pt;}
.x108_c00379{left:638.133333pt;}
.x43_c00379{left:640.000000pt;}
.x35_c00379{left:642.266667pt;}
.x14_c00379{left:643.733333pt;}
.xb9_c00379{left:644.933333pt;}
.x10e_c00379{left:647.066667pt;}
.x28_c00379{left:648.933333pt;}
.x102_c00379{left:651.333333pt;}
.xa2_c00379{left:654.000000pt;}
.xcf_c00379{left:655.200000pt;}
.x4_c00379{left:656.266667pt;}
.x15_c00379{left:659.066667pt;}
.x29_c00379{left:661.466667pt;}
.x66_c00379{left:666.800000pt;}
.x8b_c00379{left:668.800000pt;}
}





/* 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_c00380 {
    display:none;
  }
  .loading-indicator_c00380.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00380 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_c00380 { 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_c00380" -> "#page-container .classname_c00380")
 */
.pf_c00380 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00380 { /* 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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00380 { /* 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_c00380 { /* 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_c00380 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00380 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00380 {overflow:visible;}
  }
}
.c_c00380 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00380 { /* 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_c00380:after { /* webkit #35443 */
  content: '';
}
.t_c00380:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00380 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 */
}
.__c00380 { /* 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_c00380 { /* info for Javascript */
  display:none;
}
.l_c00380 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00380 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00380 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00380: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_c00380 {
    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_c00380.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00380.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_c00380 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00380{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00380;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.000000;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;}
.m3a_c00380{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m35_c00380{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00380{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m82_c00380{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m64_c00380{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m85_c00380{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m57_c00380{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00380{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m49_c00380{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00380{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m89_c00380{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m84_c00380{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m88_c00380{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m3_c00380{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m40_c00380{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m32_c00380{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00380{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m80_c00380{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m54_c00380{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00380{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m28_c00380{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m43_c00380{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m59_c00380{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00380{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00380{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m45_c00380{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m21_c00380{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00380{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m51_c00380{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m14_c00380{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m26_c00380{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m68_c00380{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m47_c00380{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00380{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00380{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00380{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8_c00380{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m37_c00380{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00380{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m76_c00380{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m44_c00380{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00380{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m69_c00380{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00380{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00380{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m93_c00380{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m17_c00380{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m39_c00380{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m63_c00380{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00380{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00380{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00380{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m83_c00380{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m67_c00380{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00380{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m16_c00380{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00380{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00380{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00380{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4_c00380{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00380{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m25_c00380{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00380{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m41_c00380{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00380{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m48_c00380{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb_c00380{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m38_c00380{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m50_c00380{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m71_c00380{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mc_c00380{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00380{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m86_c00380{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m55_c00380{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00380{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00380{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m70_c00380{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00380{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m87_c00380{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00380{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00380{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00380{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00380{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m96_c00380{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m77_c00380{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00380{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00380{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m11_c00380{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00380{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m58_c00380{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m34_c00380{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00380{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00380{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m92_c00380{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m10_c00380{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00380{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m56_c00380{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma_c00380{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m24_c00380{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00380{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00380{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m79_c00380{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m94_c00380{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00380{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m13_c00380{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m31_c00380{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m61_c00380{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md_c00380{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7_c00380{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m90_c00380{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf_c00380{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00380{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m62_c00380{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00380{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m60_c00380{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00380{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m66_c00380{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00380{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m97_c00380{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m46_c00380{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m74_c00380{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00380{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m33_c00380{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m99_c00380{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00380{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);}
.m95_c00380{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00380{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m15_c00380{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00380{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m52_c00380{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00380{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m75_c00380{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m27_c00380{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00380{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m29_c00380{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00380{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00380{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m73_c00380{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m72_c00380{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00380{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m12_c00380{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m65_c00380{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m91_c00380{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00380{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m78_c00380{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00380{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2_c00380{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00380{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m18_c00380{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c00380{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00380{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m20_c00380{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5_c00380{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00380{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00380{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00380{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m81_c00380{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.me_c00380{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m22_c00380{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00380{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00380{vertical-align:0.000000px;}
.ls0_c00380{letter-spacing:0.000000px;}
.sc__c00380{text-shadow:none;}
.sc0_c00380{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__c00380{-webkit-text-stroke:0px transparent;}
.sc0_c00380{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00380{word-spacing:-5.915493px;}
.ws4_c00380{word-spacing:0.000000px;}
.ws2_c00380{word-spacing:4.102564px;}
.ws0_c00380{word-spacing:6.136364px;}
.ws1_c00380{word-spacing:6.315789px;}
.fc0_c00380{color:transparent;}
.fs0_c00380{font-size:60.000000px;}
.y0_c00380{bottom:0.000000px;}
.y25_c00380{bottom:274.350000px;}
.y24_c00380{bottom:305.550000px;}
.y23_c00380{bottom:326.100000px;}
.y22_c00380{bottom:346.200000px;}
.y21_c00380{bottom:366.300000px;}
.y20_c00380{bottom:386.400000px;}
.y1f_c00380{bottom:406.200000px;}
.y1e_c00380{bottom:426.300000px;}
.y1d_c00380{bottom:446.100000px;}
.y1c_c00380{bottom:465.900000px;}
.y1b_c00380{bottom:485.700000px;}
.y1a_c00380{bottom:505.500000px;}
.y19_c00380{bottom:525.600000px;}
.y18_c00380{bottom:545.550000px;}
.y17_c00380{bottom:565.350000px;}
.y16_c00380{bottom:585.450000px;}
.y15_c00380{bottom:605.250000px;}
.y14_c00380{bottom:625.050000px;}
.y13_c00380{bottom:645.150000px;}
.y12_c00380{bottom:664.950000px;}
.y11_c00380{bottom:685.050000px;}
.y10_c00380{bottom:704.850000px;}
.yf_c00380{bottom:724.650000px;}
.ye_c00380{bottom:744.450000px;}
.yd_c00380{bottom:764.250000px;}
.yc_c00380{bottom:784.650000px;}
.yb_c00380{bottom:804.450000px;}
.ya_c00380{bottom:824.250000px;}
.y9_c00380{bottom:844.050000px;}
.y8_c00380{bottom:864.150000px;}
.y7_c00380{bottom:884.250000px;}
.y6_c00380{bottom:904.350000px;}
.y5_c00380{bottom:924.450000px;}
.y4_c00380{bottom:962.400000px;}
.y3_c00380{bottom:982.500000px;}
.y2_c00380{bottom:1002.600000px;}
.y1_c00380{bottom:1040.400000px;}
.h2_c00380{height:60.000000px;}
.h0_c00380{height:1166.759949px;}
.h1_c00380{height:1167.000000px;}
.w1_c00380{width:913.500000px;}
.w0_c00380{width:913.679993px;}
.x0_c00380{left:0.000000px;}
.x31_c00380{left:150.150000px;}
.x1_c00380{left:151.500000px;}
.x8a_c00380{left:168.150000px;}
.x102_c00380{left:172.200000px;}
.xfd_c00380{left:175.500000px;}
.xb2_c00380{left:177.300000px;}
.x5d_c00380{left:181.050000px;}
.x28_c00380{left:182.100000px;}
.x3_c00380{left:183.600000px;}
.x4a_c00380{left:195.450000px;}
.xbb_c00380{left:196.950000px;}
.x24_c00380{left:198.600000px;}
.xed_c00380{left:203.550000px;}
.x96_c00380{left:206.250000px;}
.x4_c00380{left:209.100000px;}
.x14_c00380{left:213.450000px;}
.xc4_c00380{left:217.500000px;}
.x5e_c00380{left:218.550000px;}
.x81_c00380{left:220.950000px;}
.x32_c00380{left:222.900000px;}
.x3f_c00380{left:223.950000px;}
.x4b_c00380{left:225.300000px;}
.xe4_c00380{left:226.500000px;}
.x6b_c00380{left:227.550000px;}
.x52_c00380{left:228.750000px;}
.x10e_c00380{left:229.800000px;}
.xfe_c00380{left:231.600000px;}
.x15_c00380{left:232.950000px;}
.xb3_c00380{left:236.700000px;}
.xd5_c00380{left:238.500000px;}
.x25_c00380{left:240.000000px;}
.x40_c00380{left:243.000000px;}
.xee_c00380{left:244.950000px;}
.x5f_c00380{left:249.450000px;}
.x109_c00380{left:250.650000px;}
.x97_c00380{left:252.300000px;}
.x33_c00380{left:254.250000px;}
.x6c_c00380{left:257.100000px;}
.xd6_c00380{left:258.300000px;}
.x53_c00380{left:259.650000px;}
.x16_c00380{left:262.500000px;}
.xef_c00380{left:265.500000px;}
.x29_c00380{left:267.000000px;}
.xa3_c00380{left:270.000000px;}
.x98_c00380{left:271.800000px;}
.x5_c00380{left:272.850000px;}
.xcb_c00380{left:273.900000px;}
.xc5_c00380{left:275.100000px;}
.x103_c00380{left:277.350000px;}
.x17_c00380{left:282.000000px;}
.xbc_c00380{left:283.050000px;}
.x60_c00380{left:291.600000px;}
.x34_c00380{left:293.550000px;}
.x54_c00380{left:295.950000px;}
.x41_c00380{left:301.050000px;}
.x4c_c00380{left:304.200000px;}
.xb4_c00380{left:305.700000px;}
.x10f_c00380{left:307.950000px;}
.x10a_c00380{left:309.000000px;}
.x99_c00380{left:310.350000px;}
.xcc_c00380{left:311.700000px;}
.x6d_c00380{left:312.900000px;}
.xbd_c00380{left:314.400000px;}
.x18_c00380{left:315.450000px;}
.x6_c00380{left:317.850000px;}
.xe5_c00380{left:319.800000px;}
.x7a_c00380{left:321.000000px;}
.x55_c00380{left:323.250000px;}
.x8b_c00380{left:324.750000px;}
.x61_c00380{left:330.450000px;}
.x6e_c00380{left:331.650000px;}
.xcd_c00380{left:339.750000px;}
.x42_c00380{left:341.400000px;}
.x26_c00380{left:342.450000px;}
.x8c_c00380{left:343.500000px;}
.x7_c00380{left:345.150000px;}
.x35_c00380{left:349.650000px;}
.xff_c00380{left:350.700000px;}
.xc6_c00380{left:351.750000px;}
.xa4_c00380{left:352.800000px;}
.x9a_c00380{left:353.850000px;}
.xbe_c00380{left:358.650000px;}
.x6f_c00380{left:359.700000px;}
.x7b_c00380{left:363.450000px;}
.x19_c00380{left:364.800000px;}
.x36_c00380{left:367.350000px;}
.xf5_c00380{left:368.850000px;}
.x43_c00380{left:370.500000px;}
.xa5_c00380{left:373.650000px;}
.x104_c00380{left:375.000000px;}
.x118_c00380{left:377.250000px;}
.xd9_c00380{left:378.750000px;}
.xb5_c00380{left:382.800000px;}
.x4d_c00380{left:384.450000px;}
.x8_c00380{left:389.100000px;}
.x70_c00380{left:390.300000px;}
.x62_c00380{left:395.250000px;}
.x9b_c00380{left:398.100000px;}
.x82_c00380{left:401.700000px;}
.xfb_c00380{left:402.900000px;}
.x7c_c00380{left:404.850000px;}
.x2a_c00380{left:406.350000px;}
.x9_c00380{left:409.650000px;}
.xda_c00380{left:411.150000px;}
.x27_c00380{left:412.950000px;}
.xce_c00380{left:415.050000px;}
.xa6_c00380{left:416.100000px;}
.x119_c00380{left:417.600000px;}
.x9c_c00380{left:418.650000px;}
.x56_c00380{left:420.150000px;}
.x110_c00380{left:421.800000px;}
.x8d_c00380{left:423.150000px;}
.xe6_c00380{left:424.200000px;}
.xb6_c00380{left:426.750000px;}
.x2b_c00380{left:431.550000px;}
.x83_c00380{left:432.600000px;}
.x63_c00380{left:436.650000px;}
.xa_c00380{left:437.700000px;}
.xbf_c00380{left:440.700000px;}
.x11a_c00380{left:441.750000px;}
.x44_c00380{left:443.250000px;}
.xf0_c00380{left:445.500000px;}
.x2c_c00380{left:447.450000px;}
.x2_c00380{left:448.800000px;}
.x7d_c00380{left:450.150000px;}
.x105_c00380{left:453.450000px;}
.x4e_c00380{left:454.650000px;}
.x1a_c00380{left:456.300000px;}
.xe7_c00380{left:460.200000px;}
.xf6_c00380{left:461.400000px;}
.xa7_c00380{left:464.700000px;}
.x84_c00380{left:467.550000px;}
.xfc_c00380{left:469.050000px;}
.x71_c00380{left:472.800000px;}
.xb_c00380{left:474.000000px;}
.xc7_c00380{left:475.950000px;}
.xb7_c00380{left:477.450000px;}
.x2d_c00380{left:479.850000px;}
.x37_c00380{left:481.050000px;}
.x111_c00380{left:482.250000px;}
.x8e_c00380{left:486.900000px;}
.x4f_c00380{left:488.100000px;}
.x57_c00380{left:490.650000px;}
.x10b_c00380{left:492.300000px;}
.xc_c00380{left:493.800000px;}
.x106_c00380{left:496.950000px;}
.xf1_c00380{left:499.800000px;}
.xdb_c00380{left:500.850000px;}
.xcf_c00380{left:502.800000px;}
.xad_c00380{left:504.600000px;}
.x64_c00380{left:505.800000px;}
.xc8_c00380{left:506.850000px;}
.x9d_c00380{left:508.200000px;}
.x38_c00380{left:513.750000px;}
.x58_c00380{left:514.800000px;}
.xe3_c00380{left:517.050000px;}
.x85_c00380{left:518.250000px;}
.xd_c00380{left:522.300000px;}
.xf7_c00380{left:523.350000px;}
.x7e_c00380{left:525.750000px;}
.x1b_c00380{left:526.800000px;}
.x112_c00380{left:530.100000px;}
.x45_c00380{left:532.800000px;}
.x72_c00380{left:534.300000px;}
.x116_c00380{left:535.800000px;}
.xd0_c00380{left:538.500000px;}
.xae_c00380{left:542.400000px;}
.xf8_c00380{left:544.200000px;}
.x73_c00380{left:545.850000px;}
.x59_c00380{left:547.500000px;}
.xa8_c00380{left:550.350000px;}
.x8f_c00380{left:552.150000px;}
.xc0_c00380{left:555.150000px;}
.x1c_c00380{left:559.500000px;}
.xe8_c00380{left:560.700000px;}
.x39_c00380{left:562.050000px;}
.x9e_c00380{left:567.900000px;}
.x50_c00380{left:570.600000px;}
.x90_c00380{left:571.650000px;}
.x46_c00380{left:573.450000px;}
.xdc_c00380{left:574.950000px;}
.x113_c00380{left:576.600000px;}
.x1d_c00380{left:583.200000px;}
.x65_c00380{left:586.350000px;}
.xe_c00380{left:587.400000px;}
.xd1_c00380{left:589.200000px;}
.xe9_c00380{left:591.000000px;}
.x107_c00380{left:592.050000px;}
.xf2_c00380{left:594.150000px;}
.xc9_c00380{left:595.800000px;}
.x91_c00380{left:596.850000px;}
.xa9_c00380{left:598.500000px;}
.xdd_c00380{left:602.250000px;}
.x86_c00380{left:605.700000px;}
.xf_c00380{left:609.300000px;}
.x5a_c00380{left:610.800000px;}
.xf9_c00380{left:611.850000px;}
.x100_c00380{left:613.200000px;}
.x117_c00380{left:615.000000px;}
.x74_c00380{left:618.600000px;}
.xc1_c00380{left:620.700000px;}
.x3a_c00380{left:622.950000px;}
.x1e_c00380{left:628.500000px;}
.x87_c00380{left:631.200000px;}
.xea_c00380{left:633.150000px;}
.x2e_c00380{left:634.350000px;}
.x66_c00380{left:637.500000px;}
.x92_c00380{left:639.000000px;}
.x3b_c00380{left:640.200000px;}
.xc2_c00380{left:641.250000px;}
.x10c_c00380{left:643.800000px;}
.x9f_c00380{left:645.900000px;}
.x10_c00380{left:648.900000px;}
.x1f_c00380{left:650.100000px;}
.x7f_c00380{left:651.300000px;}
.x47_c00380{left:652.650000px;}
.xd2_c00380{left:654.750000px;}
.x75_c00380{left:656.100000px;}
.xb8_c00380{left:663.600000px;}
.x20_c00380{left:666.000000px;}
.xd7_c00380{left:668.250000px;}
.xc3_c00380{left:669.750000px;}
.x5b_c00380{left:673.500000px;}
.xde_c00380{left:675.000000px;}
.xaf_c00380{left:676.350000px;}
.xca_c00380{left:677.850000px;}
.xeb_c00380{left:679.500000px;}
.x3c_c00380{left:682.350000px;}
.xaa_c00380{left:683.700000px;}
.x10d_c00380{left:687.750000px;}
.x93_c00380{left:689.400000px;}
.xdf_c00380{left:693.000000px;}
.x76_c00380{left:697.200000px;}
.xd3_c00380{left:701.250000px;}
.x114_c00380{left:706.800000px;}
.xb9_c00380{left:709.650000px;}
.x51_c00380{left:710.700000px;}
.x2f_c00380{left:711.750000px;}
.xab_c00380{left:712.800000px;}
.xb0_c00380{left:714.450000px;}
.x11_c00380{left:715.800000px;}
.x48_c00380{left:718.950000px;}
.x67_c00380{left:720.000000px;}
.xa0_c00380{left:722.250000px;}
.x80_c00380{left:723.750000px;}
.xba_c00380{left:725.100000px;}
.x21_c00380{left:728.250000px;}
.xac_c00380{left:730.500000px;}
.xd8_c00380{left:736.200000px;}
.xe0_c00380{left:737.250000px;}
.x68_c00380{left:739.500000px;}
.x88_c00380{left:741.300000px;}
.x5c_c00380{left:743.700000px;}
.x77_c00380{left:745.050000px;}
.xa1_c00380{left:746.700000px;}
.x94_c00380{left:751.350000px;}
.x49_c00380{left:752.400000px;}
.xfa_c00380{left:754.200000px;}
.x3d_c00380{left:755.400000px;}
.x30_c00380{left:756.750000px;}
.xa2_c00380{left:759.000000px;}
.xe1_c00380{left:760.350000px;}
.x78_c00380{left:763.050000px;}
.xf3_c00380{left:764.400000px;}
.xd4_c00380{left:765.750000px;}
.x69_c00380{left:768.300000px;}
.x115_c00380{left:769.800000px;}
.xec_c00380{left:772.050000px;}
.x22_c00380{left:773.250000px;}
.x12_c00380{left:774.900000px;}
.x101_c00380{left:777.000000px;}
.x95_c00380{left:780.900000px;}
.x89_c00380{left:781.950000px;}
.x108_c00380{left:783.450000px;}
.x3e_c00380{left:786.750000px;}
.xe2_c00380{left:788.100000px;}
.x79_c00380{left:791.850000px;}
.xf4_c00380{left:793.200000px;}
.x23_c00380{left:795.900000px;}
.x13_c00380{left:797.250000px;}
.x6a_c00380{left:799.650000px;}
.xb1_c00380{left:804.750000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws3_c00380{word-spacing:-5.258216pt;}
.ws4_c00380{word-spacing:0.000000pt;}
.ws2_c00380{word-spacing:3.646724pt;}
.ws0_c00380{word-spacing:5.454545pt;}
.ws1_c00380{word-spacing:5.614035pt;}
.fs0_c00380{font-size:53.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y25_c00380{bottom:243.866667pt;}
.y24_c00380{bottom:271.600000pt;}
.y23_c00380{bottom:289.866667pt;}
.y22_c00380{bottom:307.733333pt;}
.y21_c00380{bottom:325.600000pt;}
.y20_c00380{bottom:343.466667pt;}
.y1f_c00380{bottom:361.066667pt;}
.y1e_c00380{bottom:378.933333pt;}
.y1d_c00380{bottom:396.533333pt;}
.y1c_c00380{bottom:414.133333pt;}
.y1b_c00380{bottom:431.733333pt;}
.y1a_c00380{bottom:449.333333pt;}
.y19_c00380{bottom:467.200000pt;}
.y18_c00380{bottom:484.933333pt;}
.y17_c00380{bottom:502.533333pt;}
.y16_c00380{bottom:520.400000pt;}
.y15_c00380{bottom:538.000000pt;}
.y14_c00380{bottom:555.600000pt;}
.y13_c00380{bottom:573.466667pt;}
.y12_c00380{bottom:591.066667pt;}
.y11_c00380{bottom:608.933333pt;}
.y10_c00380{bottom:626.533333pt;}
.yf_c00380{bottom:644.133333pt;}
.ye_c00380{bottom:661.733333pt;}
.yd_c00380{bottom:679.333333pt;}
.yc_c00380{bottom:697.466667pt;}
.yb_c00380{bottom:715.066667pt;}
.ya_c00380{bottom:732.666667pt;}
.y9_c00380{bottom:750.266667pt;}
.y8_c00380{bottom:768.133333pt;}
.y7_c00380{bottom:786.000000pt;}
.y6_c00380{bottom:803.866667pt;}
.y5_c00380{bottom:821.733333pt;}
.y4_c00380{bottom:855.466667pt;}
.y3_c00380{bottom:873.333333pt;}
.y2_c00380{bottom:891.200000pt;}
.y1_c00380{bottom:924.800000pt;}
.h2_c00380{height:53.333333pt;}
.h0_c00380{height:1037.119955pt;}
.h1_c00380{height:1037.333333pt;}
.w1_c00380{width:812.000000pt;}
.w0_c00380{width:812.159993pt;}
.x0_c00380{left:0.000000pt;}
.x31_c00380{left:133.466667pt;}
.x1_c00380{left:134.666667pt;}
.x8a_c00380{left:149.466667pt;}
.x102_c00380{left:153.066667pt;}
.xfd_c00380{left:156.000000pt;}
.xb2_c00380{left:157.600000pt;}
.x5d_c00380{left:160.933333pt;}
.x28_c00380{left:161.866667pt;}
.x3_c00380{left:163.200000pt;}
.x4a_c00380{left:173.733333pt;}
.xbb_c00380{left:175.066667pt;}
.x24_c00380{left:176.533333pt;}
.xed_c00380{left:180.933333pt;}
.x96_c00380{left:183.333333pt;}
.x4_c00380{left:185.866667pt;}
.x14_c00380{left:189.733333pt;}
.xc4_c00380{left:193.333333pt;}
.x5e_c00380{left:194.266667pt;}
.x81_c00380{left:196.400000pt;}
.x32_c00380{left:198.133333pt;}
.x3f_c00380{left:199.066667pt;}
.x4b_c00380{left:200.266667pt;}
.xe4_c00380{left:201.333333pt;}
.x6b_c00380{left:202.266667pt;}
.x52_c00380{left:203.333333pt;}
.x10e_c00380{left:204.266667pt;}
.xfe_c00380{left:205.866667pt;}
.x15_c00380{left:207.066667pt;}
.xb3_c00380{left:210.400000pt;}
.xd5_c00380{left:212.000000pt;}
.x25_c00380{left:213.333333pt;}
.x40_c00380{left:216.000000pt;}
.xee_c00380{left:217.733333pt;}
.x5f_c00380{left:221.733333pt;}
.x109_c00380{left:222.800000pt;}
.x97_c00380{left:224.266667pt;}
.x33_c00380{left:226.000000pt;}
.x6c_c00380{left:228.533333pt;}
.xd6_c00380{left:229.600000pt;}
.x53_c00380{left:230.800000pt;}
.x16_c00380{left:233.333333pt;}
.xef_c00380{left:236.000000pt;}
.x29_c00380{left:237.333333pt;}
.xa3_c00380{left:240.000000pt;}
.x98_c00380{left:241.600000pt;}
.x5_c00380{left:242.533333pt;}
.xcb_c00380{left:243.466667pt;}
.xc5_c00380{left:244.533333pt;}
.x103_c00380{left:246.533333pt;}
.x17_c00380{left:250.666667pt;}
.xbc_c00380{left:251.600000pt;}
.x60_c00380{left:259.200000pt;}
.x34_c00380{left:260.933333pt;}
.x54_c00380{left:263.066667pt;}
.x41_c00380{left:267.600000pt;}
.x4c_c00380{left:270.400000pt;}
.xb4_c00380{left:271.733333pt;}
.x10f_c00380{left:273.733333pt;}
.x10a_c00380{left:274.666667pt;}
.x99_c00380{left:275.866667pt;}
.xcc_c00380{left:277.066667pt;}
.x6d_c00380{left:278.133333pt;}
.xbd_c00380{left:279.466667pt;}
.x18_c00380{left:280.400000pt;}
.x6_c00380{left:282.533333pt;}
.xe5_c00380{left:284.266667pt;}
.x7a_c00380{left:285.333333pt;}
.x55_c00380{left:287.333333pt;}
.x8b_c00380{left:288.666667pt;}
.x61_c00380{left:293.733333pt;}
.x6e_c00380{left:294.800000pt;}
.xcd_c00380{left:302.000000pt;}
.x42_c00380{left:303.466667pt;}
.x26_c00380{left:304.400000pt;}
.x8c_c00380{left:305.333333pt;}
.x7_c00380{left:306.800000pt;}
.x35_c00380{left:310.800000pt;}
.xff_c00380{left:311.733333pt;}
.xc6_c00380{left:312.666667pt;}
.xa4_c00380{left:313.600000pt;}
.x9a_c00380{left:314.533333pt;}
.xbe_c00380{left:318.800000pt;}
.x6f_c00380{left:319.733333pt;}
.x7b_c00380{left:323.066667pt;}
.x19_c00380{left:324.266667pt;}
.x36_c00380{left:326.533333pt;}
.xf5_c00380{left:327.866667pt;}
.x43_c00380{left:329.333333pt;}
.xa5_c00380{left:332.133333pt;}
.x104_c00380{left:333.333333pt;}
.x118_c00380{left:335.333333pt;}
.xd9_c00380{left:336.666667pt;}
.xb5_c00380{left:340.266667pt;}
.x4d_c00380{left:341.733333pt;}
.x8_c00380{left:345.866667pt;}
.x70_c00380{left:346.933333pt;}
.x62_c00380{left:351.333333pt;}
.x9b_c00380{left:353.866667pt;}
.x82_c00380{left:357.066667pt;}
.xfb_c00380{left:358.133333pt;}
.x7c_c00380{left:359.866667pt;}
.x2a_c00380{left:361.200000pt;}
.x9_c00380{left:364.133333pt;}
.xda_c00380{left:365.466667pt;}
.x27_c00380{left:367.066667pt;}
.xce_c00380{left:368.933333pt;}
.xa6_c00380{left:369.866667pt;}
.x119_c00380{left:371.200000pt;}
.x9c_c00380{left:372.133333pt;}
.x56_c00380{left:373.466667pt;}
.x110_c00380{left:374.933333pt;}
.x8d_c00380{left:376.133333pt;}
.xe6_c00380{left:377.066667pt;}
.xb6_c00380{left:379.333333pt;}
.x2b_c00380{left:383.600000pt;}
.x83_c00380{left:384.533333pt;}
.x63_c00380{left:388.133333pt;}
.xa_c00380{left:389.066667pt;}
.xbf_c00380{left:391.733333pt;}
.x11a_c00380{left:392.666667pt;}
.x44_c00380{left:394.000000pt;}
.xf0_c00380{left:396.000000pt;}
.x2c_c00380{left:397.733333pt;}
.x2_c00380{left:398.933333pt;}
.x7d_c00380{left:400.133333pt;}
.x105_c00380{left:403.066667pt;}
.x4e_c00380{left:404.133333pt;}
.x1a_c00380{left:405.600000pt;}
.xe7_c00380{left:409.066667pt;}
.xf6_c00380{left:410.133333pt;}
.xa7_c00380{left:413.066667pt;}
.x84_c00380{left:415.600000pt;}
.xfc_c00380{left:416.933333pt;}
.x71_c00380{left:420.266667pt;}
.xb_c00380{left:421.333333pt;}
.xc7_c00380{left:423.066667pt;}
.xb7_c00380{left:424.400000pt;}
.x2d_c00380{left:426.533333pt;}
.x37_c00380{left:427.600000pt;}
.x111_c00380{left:428.666667pt;}
.x8e_c00380{left:432.800000pt;}
.x4f_c00380{left:433.866667pt;}
.x57_c00380{left:436.133333pt;}
.x10b_c00380{left:437.600000pt;}
.xc_c00380{left:438.933333pt;}
.x106_c00380{left:441.733333pt;}
.xf1_c00380{left:444.266667pt;}
.xdb_c00380{left:445.200000pt;}
.xcf_c00380{left:446.933333pt;}
.xad_c00380{left:448.533333pt;}
.x64_c00380{left:449.600000pt;}
.xc8_c00380{left:450.533333pt;}
.x9d_c00380{left:451.733333pt;}
.x38_c00380{left:456.666667pt;}
.x58_c00380{left:457.600000pt;}
.xe3_c00380{left:459.600000pt;}
.x85_c00380{left:460.666667pt;}
.xd_c00380{left:464.266667pt;}
.xf7_c00380{left:465.200000pt;}
.x7e_c00380{left:467.333333pt;}
.x1b_c00380{left:468.266667pt;}
.x112_c00380{left:471.200000pt;}
.x45_c00380{left:473.600000pt;}
.x72_c00380{left:474.933333pt;}
.x116_c00380{left:476.266667pt;}
.xd0_c00380{left:478.666667pt;}
.xae_c00380{left:482.133333pt;}
.xf8_c00380{left:483.733333pt;}
.x73_c00380{left:485.200000pt;}
.x59_c00380{left:486.666667pt;}
.xa8_c00380{left:489.200000pt;}
.x8f_c00380{left:490.800000pt;}
.xc0_c00380{left:493.466667pt;}
.x1c_c00380{left:497.333333pt;}
.xe8_c00380{left:498.400000pt;}
.x39_c00380{left:499.600000pt;}
.x9e_c00380{left:504.800000pt;}
.x50_c00380{left:507.200000pt;}
.x90_c00380{left:508.133333pt;}
.x46_c00380{left:509.733333pt;}
.xdc_c00380{left:511.066667pt;}
.x113_c00380{left:512.533333pt;}
.x1d_c00380{left:518.400000pt;}
.x65_c00380{left:521.200000pt;}
.xe_c00380{left:522.133333pt;}
.xd1_c00380{left:523.733333pt;}
.xe9_c00380{left:525.333333pt;}
.x107_c00380{left:526.266667pt;}
.xf2_c00380{left:528.133333pt;}
.xc9_c00380{left:529.600000pt;}
.x91_c00380{left:530.533333pt;}
.xa9_c00380{left:532.000000pt;}
.xdd_c00380{left:535.333333pt;}
.x86_c00380{left:538.400000pt;}
.xf_c00380{left:541.600000pt;}
.x5a_c00380{left:542.933333pt;}
.xf9_c00380{left:543.866667pt;}
.x100_c00380{left:545.066667pt;}
.x117_c00380{left:546.666667pt;}
.x74_c00380{left:549.866667pt;}
.xc1_c00380{left:551.733333pt;}
.x3a_c00380{left:553.733333pt;}
.x1e_c00380{left:558.666667pt;}
.x87_c00380{left:561.066667pt;}
.xea_c00380{left:562.800000pt;}
.x2e_c00380{left:563.866667pt;}
.x66_c00380{left:566.666667pt;}
.x92_c00380{left:568.000000pt;}
.x3b_c00380{left:569.066667pt;}
.xc2_c00380{left:570.000000pt;}
.x10c_c00380{left:572.266667pt;}
.x9f_c00380{left:574.133333pt;}
.x10_c00380{left:576.800000pt;}
.x1f_c00380{left:577.866667pt;}
.x7f_c00380{left:578.933333pt;}
.x47_c00380{left:580.133333pt;}
.xd2_c00380{left:582.000000pt;}
.x75_c00380{left:583.200000pt;}
.xb8_c00380{left:589.866667pt;}
.x20_c00380{left:592.000000pt;}
.xd7_c00380{left:594.000000pt;}
.xc3_c00380{left:595.333333pt;}
.x5b_c00380{left:598.666667pt;}
.xde_c00380{left:600.000000pt;}
.xaf_c00380{left:601.200000pt;}
.xca_c00380{left:602.533333pt;}
.xeb_c00380{left:604.000000pt;}
.x3c_c00380{left:606.533333pt;}
.xaa_c00380{left:607.733333pt;}
.x10d_c00380{left:611.333333pt;}
.x93_c00380{left:612.800000pt;}
.xdf_c00380{left:616.000000pt;}
.x76_c00380{left:619.733333pt;}
.xd3_c00380{left:623.333333pt;}
.x114_c00380{left:628.266667pt;}
.xb9_c00380{left:630.800000pt;}
.x51_c00380{left:631.733333pt;}
.x2f_c00380{left:632.666667pt;}
.xab_c00380{left:633.600000pt;}
.xb0_c00380{left:635.066667pt;}
.x11_c00380{left:636.266667pt;}
.x48_c00380{left:639.066667pt;}
.x67_c00380{left:640.000000pt;}
.xa0_c00380{left:642.000000pt;}
.x80_c00380{left:643.333333pt;}
.xba_c00380{left:644.533333pt;}
.x21_c00380{left:647.333333pt;}
.xac_c00380{left:649.333333pt;}
.xd8_c00380{left:654.400000pt;}
.xe0_c00380{left:655.333333pt;}
.x68_c00380{left:657.333333pt;}
.x88_c00380{left:658.933333pt;}
.x5c_c00380{left:661.066667pt;}
.x77_c00380{left:662.266667pt;}
.xa1_c00380{left:663.733333pt;}
.x94_c00380{left:667.866667pt;}
.x49_c00380{left:668.800000pt;}
.xfa_c00380{left:670.400000pt;}
.x3d_c00380{left:671.466667pt;}
.x30_c00380{left:672.666667pt;}
.xa2_c00380{left:674.666667pt;}
.xe1_c00380{left:675.866667pt;}
.x78_c00380{left:678.266667pt;}
.xf3_c00380{left:679.466667pt;}
.xd4_c00380{left:680.666667pt;}
.x69_c00380{left:682.933333pt;}
.x115_c00380{left:684.266667pt;}
.xec_c00380{left:686.266667pt;}
.x22_c00380{left:687.333333pt;}
.x12_c00380{left:688.800000pt;}
.x101_c00380{left:690.666667pt;}
.x95_c00380{left:694.133333pt;}
.x89_c00380{left:695.066667pt;}
.x108_c00380{left:696.400000pt;}
.x3e_c00380{left:699.333333pt;}
.xe2_c00380{left:700.533333pt;}
.x79_c00380{left:703.866667pt;}
.xf4_c00380{left:705.066667pt;}
.x23_c00380{left:707.466667pt;}
.x13_c00380{left:708.666667pt;}
.x6a_c00380{left:710.800000pt;}
.xb1_c00380{left:715.333333pt;}
}





/* 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_c00381 {
    display:none;
  }
  .loading-indicator_c00381.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00381 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_c00381 { 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_c00381" -> "#page-container .classname_c00381")
 */
.pf_c00381 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00381 { /* 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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00381 { /* 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_c00381 { /* 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_c00381 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00381 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00381 {overflow:visible;}
  }
}
.c_c00381 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00381 { /* 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_c00381:after { /* webkit #35443 */
  content: '';
}
.t_c00381:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00381 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 */
}
.__c00381 { /* 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_c00381 { /* info for Javascript */
  display:none;
}
.l_c00381 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00381 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00381 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00381: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_c00381 {
    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_c00381.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00381.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_c00381 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00381{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00381;src:url('chunks/assets/font_45ffea73e0687a46e49f5278.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.000000;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;}
.m2_c00381{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m7_c00381{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1_c00381{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me_c00381{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mb_c00381{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00381{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls0_c00381{letter-spacing:0.000000px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{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__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:0.000000px;}
.fc0_c00381{color:transparent;}
.fs1_c00381{font-size:24.000000px;}
.fs0_c00381{font-size:42.000000px;}
.y0_c00381{bottom:0.000000px;}
.y4_c00381{bottom:31.350000px;}
.y3_c00381{bottom:74.100000px;}
.y2_c00381{bottom:85.950000px;}
.y1_c00381{bottom:98.250000px;}
.h3_c00381{height:24.000000px;}
.h2_c00381{height:42.000000px;}
.h0_c00381{height:1166.759949px;}
.h1_c00381{height:1167.000000px;}
.w1_c00381{width:913.500000px;}
.w0_c00381{width:913.679993px;}
.x0_c00381{left:0.000000px;}
.x1_c00381{left:84.300000px;}
.x2_c00381{left:106.200000px;}
.x3_c00381{left:124.200000px;}
.x4_c00381{left:127.800000px;}
.x5_c00381{left:135.300000px;}
.x7_c00381{left:148.650000px;}
.x6_c00381{left:177.450000px;}
.x8_c00381{left:231.450000px;}
.x9_c00381{left:794.100000px;}
.xa_c00381{left:798.750000px;}
.xb_c00381{left:806.250000px;}
.xc_c00381{left:812.400000px;}
.xd_c00381{left:825.000000px;}
.xe_c00381{left:848.100000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs1_c00381{font-size:21.333333pt;}
.fs0_c00381{font-size:37.333333pt;}
.y0_c00381{bottom:0.000000pt;}
.y4_c00381{bottom:27.866667pt;}
.y3_c00381{bottom:65.866667pt;}
.y2_c00381{bottom:76.400000pt;}
.y1_c00381{bottom:87.333333pt;}
.h3_c00381{height:21.333333pt;}
.h2_c00381{height:37.333333pt;}
.h0_c00381{height:1037.119955pt;}
.h1_c00381{height:1037.333333pt;}
.w1_c00381{width:812.000000pt;}
.w0_c00381{width:812.159993pt;}
.x0_c00381{left:0.000000pt;}
.x1_c00381{left:74.933333pt;}
.x2_c00381{left:94.400000pt;}
.x3_c00381{left:110.400000pt;}
.x4_c00381{left:113.600000pt;}
.x5_c00381{left:120.266667pt;}
.x7_c00381{left:132.133333pt;}
.x6_c00381{left:157.733333pt;}
.x8_c00381{left:205.733333pt;}
.x9_c00381{left:705.866667pt;}
.xa_c00381{left:710.000000pt;}
.xb_c00381{left:716.666667pt;}
.xc_c00381{left:722.133333pt;}
.xd_c00381{left:733.333333pt;}
.xe_c00381{left:753.866667pt;}
}





/* 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_c00382 {
    display:none;
  }
  .loading-indicator_c00382.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00382 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_c00382 { 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_c00382" -> "#page-container .classname_c00382")
 */
.pf_c00382 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00382 { /* 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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00382 { /* 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_c00382 { /* 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_c00382 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00382 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00382 {overflow:visible;}
  }
}
.c_c00382 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00382 { /* 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_c00382:after { /* webkit #35443 */
  content: '';
}
.t_c00382:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00382 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 */
}
.__c00382 { /* 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_c00382 { /* info for Javascript */
  display:none;
}
.l_c00382 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00382 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00382 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00382: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_c00382 {
    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_c00382.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00382.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_c00382 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00382{font-family:sans-serif;visibility:hidden;}
.sc__c00382{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
}
.y0_c00382{bottom:0.000000px;}
.h0_c00382{height:1166.759949px;}
.h1_c00382{height:1167.000000px;}
.w1_c00382{width:913.500000px;}
.w0_c00382{width:913.679993px;}
.x0_c00382{left:0.000000px;}
@media print{
.y0_c00382{bottom:0.000000pt;}
.h0_c00382{height:1037.119955pt;}
.h1_c00382{height:1037.333333pt;}
.w1_c00382{width:812.000000pt;}
.w0_c00382{width:812.159993pt;}
.x0_c00382{left:0.000000pt;}
}





/* 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_c00383 {
    display:none;
  }
  .loading-indicator_c00383.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00383 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_c00383 { 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_c00383" -> "#page-container .classname_c00383")
 */
.pf_c00383 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00383 { /* 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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00383 { /* 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_c00383 { /* 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_c00383 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00383 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00383 {overflow:visible;}
  }
}
.c_c00383 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00383 { /* 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_c00383:after { /* webkit #35443 */
  content: '';
}
.t_c00383:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00383 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 */
}
.__c00383 { /* 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_c00383 { /* info for Javascript */
  display:none;
}
.l_c00383 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00383 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00383 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00383: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_c00383 {
    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_c00383.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00383.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_c00383 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00383{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00383;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.000000;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;}
.m63_c00383{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00383{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00383{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m94_c00383{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m98_c00383{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m40_c00383{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00383{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m39_c00383{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00383{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00383{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00383{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m95_c00383{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m90_c00383{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00383{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00383{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m97_c00383{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m28_c00383{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m89_c00383{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m99_c00383{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m37_c00383{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m38_c00383{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m96_c00383{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00383{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m93_c00383{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m44_c00383{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m56_c00383{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m80_c00383{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m36_c00383{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00383{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.md_c00383{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00383{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m35_c00383{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m66_c00383{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33_c00383{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m81_c00383{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m30_c00383{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma_c00383{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m46_c00383{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb_c00383{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m49_c00383{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m32_c00383{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00383{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m60_c00383{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00383{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m86_c00383{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m34_c00383{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m65_c00383{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00383{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00383{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m71_c00383{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00383{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m55_c00383{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m70_c00383{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m69_c00383{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00383{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00383{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00383{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00383{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m10_c00383{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m76_c00383{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m22_c00383{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00383{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m29_c00383{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00383{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00383{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m20_c00383{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m13_c00383{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m88_c00383{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00383{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00383{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00383{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m74_c00383{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00383{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m45_c00383{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m21_c00383{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m57_c00383{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m54_c00383{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6_c00383{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00383{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m58_c00383{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m64_c00383{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m16_c00383{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00383{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.mf_c00383{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m67_c00383{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m51_c00383{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00383{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m72_c00383{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m15_c00383{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m84_c00383{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m31_c00383{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m25_c00383{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m23_c00383{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m87_c00383{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m73_c00383{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m17_c00383{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00383{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m27_c00383{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00383{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m18_c00383{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m92_c00383{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00383{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m41_c00383{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00383{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m59_c00383{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00383{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m11_c00383{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00383{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m78_c00383{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m82_c00383{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m68_c00383{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m83_c00383{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00383{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m26_c00383{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00383{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00383{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me_c00383{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m50_c00383{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12_c00383{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m75_c00383{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00383{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m62_c00383{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00383{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);}
.mc_c00383{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3_c00383{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00383{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00383{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00383{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m48_c00383{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00383{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00383{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m79_c00383{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m14_c00383{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00383{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m19_c00383{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00383{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m47_c00383{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00383{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00383{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00383{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9_c00383{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00383{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00383{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m7_c00383{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m61_c00383{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m0_c00383{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m77_c00383{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m52_c00383{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00383{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00383{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00383{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2_c00383{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1_c00383{transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00383{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00383{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m5_c00383{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m43_c00383{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00383{vertical-align:0.000000px;}
.ls0_c00383{letter-spacing:0.000000px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{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__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-7.261905px;}
.ws2_c00383{word-spacing:-3.194444px;}
.ws3_c00383{word-spacing:-1.144068px;}
.ws8_c00383{word-spacing:0.000000px;}
.ws5_c00383{word-spacing:1.388889px;}
.ws4_c00383{word-spacing:4.861111px;}
.ws6_c00383{word-spacing:7.115385px;}
.ws7_c00383{word-spacing:7.500000px;}
.ws1_c00383{word-spacing:40.543478px;}
.fc0_c00383{color:transparent;}
.fs1_c00383{font-size:42.000000px;}
.fs0_c00383{font-size:60.000000px;}
.y0_c00383{bottom:0.000000px;}
.y24_c00383{bottom:133.950000px;}
.y23_c00383{bottom:154.500000px;}
.y22_c00383{bottom:170.250000px;}
.y21_c00383{bottom:185.700000px;}
.y20_c00383{bottom:217.650000px;}
.y1f_c00383{bottom:238.200000px;}
.y1e_c00383{bottom:258.300000px;}
.y1d_c00383{bottom:278.100000px;}
.y1c_c00383{bottom:298.200000px;}
.y1b_c00383{bottom:318.300000px;}
.y1a_c00383{bottom:338.100000px;}
.y19_c00383{bottom:358.500000px;}
.y18_c00383{bottom:378.000000px;}
.y17_c00383{bottom:398.100000px;}
.y16_c00383{bottom:418.200000px;}
.y15_c00383{bottom:437.700000px;}
.y14_c00383{bottom:457.800000px;}
.y13_c00383{bottom:477.900000px;}
.y12_c00383{bottom:497.700000px;}
.y11_c00383{bottom:517.500000px;}
.y10_c00383{bottom:537.600000px;}
.yf_c00383{bottom:557.400000px;}
.ye_c00383{bottom:577.500000px;}
.yd_c00383{bottom:597.600000px;}
.yc_c00383{bottom:617.400000px;}
.yb_c00383{bottom:637.950000px;}
.ya_c00383{bottom:657.750000px;}
.y9_c00383{bottom:677.550000px;}
.y8_c00383{bottom:697.650000px;}
.y7_c00383{bottom:717.150000px;}
.y6_c00383{bottom:737.250000px;}
.y5_c00383{bottom:757.800000px;}
.y4_c00383{bottom:777.600000px;}
.y3_c00383{bottom:810.750000px;}
.y2_c00383{bottom:843.900000px;}
.y1_c00383{bottom:1052.700000px;}
.h3_c00383{height:42.000000px;}
.h2_c00383{height:60.000000px;}
.h0_c00383{height:1166.759949px;}
.h1_c00383{height:1167.000000px;}
.w1_c00383{width:913.500000px;}
.w0_c00383{width:913.679993px;}
.x0_c00383{left:0.000000px;}
.x9_c00383{left:91.500000px;}
.x4a_c00383{left:92.550000px;}
.x8c_c00383{left:93.600000px;}
.xb8_c00383{left:94.800000px;}
.xd9_c00383{left:95.850000px;}
.xec_c00383{left:97.200000px;}
.x103_c00383{left:98.250000px;}
.x113_c00383{left:99.750000px;}
.x83_c00383{left:108.150000px;}
.x36_c00383{left:112.200000px;}
.xe2_c00383{left:116.100000px;}
.x78_c00383{left:118.650000px;}
.xc1_c00383{left:120.900000px;}
.x27_c00383{left:123.000000px;}
.xe5_c00383{left:128.100000px;}
.xc7_c00383{left:129.750000px;}
.x57_c00383{left:130.800000px;}
.xda_c00383{left:132.600000px;}
.x114_c00383{left:137.850000px;}
.xae_c00383{left:140.250000px;}
.xf9_c00383{left:141.600000px;}
.x28_c00383{left:142.800000px;}
.x84_c00383{left:145.950000px;}
.xa1_c00383{left:147.000000px;}
.x18_c00383{left:149.700000px;}
.xa_c00383{left:152.700000px;}
.x38_c00383{left:153.750000px;}
.xb9_c00383{left:155.250000px;}
.x79_c00383{left:156.450000px;}
.xaf_c00383{left:157.500000px;}
.x6f_c00383{left:162.150000px;}
.xdb_c00383{left:163.950000px;}
.x29_c00383{left:165.450000px;}
.xc2_c00383{left:168.450000px;}
.x19_c00383{left:171.000000px;}
.xed_c00383{left:172.500000px;}
.x37_c00383{left:174.450000px;}
.xb_c00383{left:175.800000px;}
.x58_c00383{left:179.100000px;}
.xa2_c00383{left:183.000000px;}
.x85_c00383{left:186.300000px;}
.x62_c00383{left:188.250000px;}
.x70_c00383{left:189.450000px;}
.x10e_c00383{left:192.600000px;}
.x39_c00383{left:195.900000px;}
.xc8_c00383{left:199.200000px;}
.xe3_c00383{left:202.050000px;}
.x2a_c00383{left:203.250000px;}
.x4b_c00383{left:204.600000px;}
.x63_c00383{left:208.050000px;}
.xa3_c00383{left:210.750000px;}
.x3a_c00383{left:211.800000px;}
.xd0_c00383{left:212.850000px;}
.x1a_c00383{left:214.950000px;}
.x9a_c00383{left:216.150000px;}
.xb0_c00383{left:219.000000px;}
.xc9_c00383{left:221.100000px;}
.x2b_c00383{left:223.800000px;}
.x104_c00383{left:224.850000px;}
.xe6_c00383{left:226.050000px;}
.xd1_c00383{left:228.000000px;}
.xee_c00383{left:231.150000px;}
.x64_c00383{left:233.250000px;}
.x10f_c00383{left:234.750000px;}
.xfa_c00383{left:237.000000px;}
.x3b_c00383{left:238.800000px;}
.x92_c00383{left:242.250000px;}
.x59_c00383{left:243.600000px;}
.x1b_c00383{left:249.450000px;}
.x10b_c00383{left:250.500000px;}
.xca_c00383{left:253.200000px;}
.x3c_c00383{left:256.050000px;}
.xd2_c00383{left:259.350000px;}
.x2c_c00383{left:262.350000px;}
.x4c_c00383{left:266.250000px;}
.xba_c00383{left:267.750000px;}
.x7a_c00383{left:269.850000px;}
.xa4_c00383{left:272.250000px;}
.x4_c00383{left:273.300000px;}
.x8d_c00383{left:276.150000px;}
.x115_c00383{left:279.000000px;}
.x93_c00383{left:280.350000px;}
.x3d_c00383{left:281.550000px;}
.xc_c00383{left:285.600000px;}
.x7b_c00383{left:289.650000px;}
.xc3_c00383{left:290.700000px;}
.x65_c00383{left:291.900000px;}
.x2d_c00383{left:292.950000px;}
.x5a_c00383{left:294.600000px;}
.xcb_c00383{left:296.100000px;}
.x9b_c00383{left:298.950000px;}
.x4d_c00383{left:301.500000px;}
.xef_c00383{left:304.650000px;}
.x86_c00383{left:307.200000px;}
.x1c_c00383{left:308.850000px;}
.x3e_c00383{left:317.250000px;}
.x4e_c00383{left:319.200000px;}
.x66_c00383{left:323.250000px;}
.xe4_c00383{left:324.900000px;}
.xd_c00383{left:327.000000px;}
.xb1_c00383{left:329.550000px;}
.x5_c00383{left:331.650000px;}
.x9c_c00383{left:332.850000px;}
.x5b_c00383{left:336.300000px;}
.x1d_c00383{left:337.350000px;}
.x2e_c00383{left:340.500000px;}
.x7c_c00383{left:342.600000px;}
.xbb_c00383{left:343.800000px;}
.xa5_c00383{left:349.200000px;}
.x94_c00383{left:350.850000px;}
.x2_c00383{left:352.800000px;}
.xb2_c00383{left:356.550000px;}
.xdc_c00383{left:357.600000px;}
.xcc_c00383{left:359.400000px;}
.xe_c00383{left:361.200000px;}
.x1e_c00383{left:363.300000px;}
.xe7_c00383{left:365.250000px;}
.x10c_c00383{left:366.300000px;}
.x71_c00383{left:369.600000px;}
.x3f_c00383{left:372.000000px;}
.xd3_c00383{left:373.050000px;}
.xbc_c00383{left:377.250000px;}
.x105_c00383{left:381.000000px;}
.xcd_c00383{left:382.050000px;}
.x8e_c00383{left:384.150000px;}
.x5c_c00383{left:387.450000px;}
.x6_c00383{left:388.500000px;}
.x2f_c00383{left:390.900000px;}
.xdd_c00383{left:392.850000px;}
.xfe_c00383{left:395.550000px;}
.xf0_c00383{left:397.500000px;}
.x67_c00383{left:399.900000px;}
.x7_c00383{left:403.950000px;}
.x106_c00383{left:406.500000px;}
.x1_c00383{left:407.850000px;}
.x1f_c00383{left:409.800000px;}
.x4f_c00383{left:411.000000px;}
.xf_c00383{left:414.450000px;}
.x68_c00383{left:416.850000px;}
.x7d_c00383{left:418.500000px;}
.x95_c00383{left:420.300000px;}
.xbd_c00383{left:422.550000px;}
.xa6_c00383{left:423.750000px;}
.x40_c00383{left:427.050000px;}
.x5d_c00383{left:428.100000px;}
.x50_c00383{left:430.800000px;}
.xff_c00383{left:432.300000px;}
.xde_c00383{left:436.050000px;}
.x3_c00383{left:437.400000px;}
.xf4_c00383{left:440.250000px;}
.x10d_c00383{left:442.200000px;}
.x41_c00383{left:444.300000px;}
.xfb_c00383{left:446.850000px;}
.xe8_c00383{left:450.150000px;}
.x20_c00383{left:451.500000px;}
.x30_c00383{left:453.150000px;}
.xa7_c00383{left:459.000000px;}
.x9d_c00383{left:462.450000px;}
.x107_c00383{left:463.800000px;}
.x72_c00383{left:466.800000px;}
.xf5_c00383{left:469.350000px;}
.x87_c00383{left:471.000000px;}
.x42_c00383{left:473.100000px;}
.x110_c00383{left:474.900000px;}
.x8_c00383{left:477.750000px;}
.xdf_c00383{left:480.300000px;}
.x108_c00383{left:483.900000px;}
.x9e_c00383{left:487.350000px;}
.x43_c00383{left:490.050000px;}
.x10_c00383{left:491.850000px;}
.xf1_c00383{left:494.100000px;}
.xd4_c00383{left:495.450000px;}
.xa8_c00383{left:499.650000px;}
.x69_c00383{left:501.750000px;}
.xb3_c00383{left:504.900000px;}
.x8f_c00383{left:507.900000px;}
.xf6_c00383{left:508.950000px;}
.x5e_c00383{left:513.000000px;}
.x21_c00383{left:514.200000px;}
.xbe_c00383{left:515.400000px;}
.x44_c00383{left:517.800000px;}
.x31_c00383{left:519.000000px;}
.xf2_c00383{left:521.850000px;}
.x9f_c00383{left:523.650000px;}
.x11_c00383{left:525.300000px;}
.x51_c00383{left:528.300000px;}
.xa9_c00383{left:530.550000px;}
.xce_c00383{left:531.900000px;}
.xe9_c00383{left:537.900000px;}
.xd5_c00383{left:538.950000px;}
.x88_c00383{left:542.700000px;}
.x100_c00383{left:547.500000px;}
.x7e_c00383{left:549.900000px;}
.x22_c00383{left:551.250000px;}
.xf7_c00383{left:553.950000px;}
.x5f_c00383{left:555.450000px;}
.x52_c00383{left:556.800000px;}
.x73_c00383{left:558.900000px;}
.x90_c00383{left:562.650000px;}
.x6a_c00383{left:564.750000px;}
.x96_c00383{left:565.800000px;}
.x7f_c00383{left:567.150000px;}
.x89_c00383{left:569.400000px;}
.x12_c00383{left:571.800000px;}
.xb4_c00383{left:572.850000px;}
.x32_c00383{left:577.650000px;}
.xaa_c00383{left:579.150000px;}
.x80_c00383{left:581.850000px;}
.x101_c00383{left:583.500000px;}
.x53_c00383{left:585.600000px;}
.xf8_c00383{left:587.400000px;}
.x6b_c00383{left:588.900000px;}
.xcf_c00383{left:591.600000px;}
.x13_c00383{left:594.450000px;}
.x33_c00383{left:595.950000px;}
.xab_c00383{left:598.200000px;}
.x74_c00383{left:600.750000px;}
.x54_c00383{left:605.700000px;}
.xf3_c00383{left:607.050000px;}
.x23_c00383{left:608.550000px;}
.xa0_c00383{left:610.050000px;}
.x45_c00383{left:611.850000px;}
.xfc_c00383{left:612.900000px;}
.x6c_c00383{left:614.400000px;}
.x34_c00383{left:616.500000px;}
.x109_c00383{left:618.900000px;}
.x81_c00383{left:621.150000px;}
.xea_c00383{left:622.500000px;}
.x111_c00383{left:623.550000px;}
.x46_c00383{left:627.300000px;}
.xd6_c00383{left:629.400000px;}
.xe0_c00383{left:633.000000px;}
.x55_c00383{left:634.200000px;}
.x24_c00383{left:637.350000px;}
.x8a_c00383{left:641.100000px;}
.xc4_c00383{left:642.750000px;}
.x14_c00383{left:645.150000px;}
.x75_c00383{left:648.600000px;}
.xac_c00383{left:649.650000px;}
.xbf_c00383{left:651.900000px;}
.x6d_c00383{left:654.300000px;}
.xb5_c00383{left:655.650000px;}
.x112_c00383{left:657.450000px;}
.x60_c00383{left:659.100000px;}
.x97_c00383{left:661.800000px;}
.xe1_c00383{left:664.350000px;}
.x76_c00383{left:666.300000px;}
.xd7_c00383{left:667.500000px;}
.x47_c00383{left:670.200000px;}
.xfd_c00383{left:673.050000px;}
.x15_c00383{left:675.750000px;}
.x91_c00383{left:677.400000px;}
.xad_c00383{left:678.750000px;}
.x48_c00383{left:682.800000px;}
.xb6_c00383{left:684.150000px;}
.x56_c00383{left:687.150000px;}
.xc5_c00383{left:688.800000px;}
.x16_c00383{left:692.250000px;}
.x102_c00383{left:693.600000px;}
.x61_c00383{left:698.400000px;}
.x25_c00383{left:701.850000px;}
.x8b_c00383{left:704.850000px;}
.x82_c00383{left:711.150000px;}
.x6e_c00383{left:714.000000px;}
.xeb_c00383{left:715.350000px;}
.x98_c00383{left:718.650000px;}
.x35_c00383{left:720.150000px;}
.xb7_c00383{left:724.800000px;}
.x17_c00383{left:726.150000px;}
.xd8_c00383{left:732.300000px;}
.x49_c00383{left:734.700000px;}
.x77_c00383{left:735.750000px;}
.x10a_c00383{left:737.700000px;}
.x26_c00383{left:740.400000px;}
.x99_c00383{left:741.750000px;}
.xc6_c00383{left:748.950000px;}
.xc0_c00383{left:759.900000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:-6.455026pt;}
.ws2_c00383{word-spacing:-2.839506pt;}
.ws3_c00383{word-spacing:-1.016949pt;}
.ws8_c00383{word-spacing:0.000000pt;}
.ws5_c00383{word-spacing:1.234568pt;}
.ws4_c00383{word-spacing:4.320988pt;}
.ws6_c00383{word-spacing:6.324786pt;}
.ws7_c00383{word-spacing:6.666667pt;}
.ws1_c00383{word-spacing:36.038647pt;}
.fs1_c00383{font-size:37.333333pt;}
.fs0_c00383{font-size:53.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y24_c00383{bottom:119.066667pt;}
.y23_c00383{bottom:137.333333pt;}
.y22_c00383{bottom:151.333333pt;}
.y21_c00383{bottom:165.066667pt;}
.y20_c00383{bottom:193.466667pt;}
.y1f_c00383{bottom:211.733333pt;}
.y1e_c00383{bottom:229.600000pt;}
.y1d_c00383{bottom:247.200000pt;}
.y1c_c00383{bottom:265.066667pt;}
.y1b_c00383{bottom:282.933333pt;}
.y1a_c00383{bottom:300.533333pt;}
.y19_c00383{bottom:318.666667pt;}
.y18_c00383{bottom:336.000000pt;}
.y17_c00383{bottom:353.866667pt;}
.y16_c00383{bottom:371.733333pt;}
.y15_c00383{bottom:389.066667pt;}
.y14_c00383{bottom:406.933333pt;}
.y13_c00383{bottom:424.800000pt;}
.y12_c00383{bottom:442.400000pt;}
.y11_c00383{bottom:460.000000pt;}
.y10_c00383{bottom:477.866667pt;}
.yf_c00383{bottom:495.466667pt;}
.ye_c00383{bottom:513.333333pt;}
.yd_c00383{bottom:531.200000pt;}
.yc_c00383{bottom:548.800000pt;}
.yb_c00383{bottom:567.066667pt;}
.ya_c00383{bottom:584.666667pt;}
.y9_c00383{bottom:602.266667pt;}
.y8_c00383{bottom:620.133333pt;}
.y7_c00383{bottom:637.466667pt;}
.y6_c00383{bottom:655.333333pt;}
.y5_c00383{bottom:673.600000pt;}
.y4_c00383{bottom:691.200000pt;}
.y3_c00383{bottom:720.666667pt;}
.y2_c00383{bottom:750.133333pt;}
.y1_c00383{bottom:935.733333pt;}
.h3_c00383{height:37.333333pt;}
.h2_c00383{height:53.333333pt;}
.h0_c00383{height:1037.119955pt;}
.h1_c00383{height:1037.333333pt;}
.w1_c00383{width:812.000000pt;}
.w0_c00383{width:812.159993pt;}
.x0_c00383{left:0.000000pt;}
.x9_c00383{left:81.333333pt;}
.x4a_c00383{left:82.266667pt;}
.x8c_c00383{left:83.200000pt;}
.xb8_c00383{left:84.266667pt;}
.xd9_c00383{left:85.200000pt;}
.xec_c00383{left:86.400000pt;}
.x103_c00383{left:87.333333pt;}
.x113_c00383{left:88.666667pt;}
.x83_c00383{left:96.133333pt;}
.x36_c00383{left:99.733333pt;}
.xe2_c00383{left:103.200000pt;}
.x78_c00383{left:105.466667pt;}
.xc1_c00383{left:107.466667pt;}
.x27_c00383{left:109.333333pt;}
.xe5_c00383{left:113.866667pt;}
.xc7_c00383{left:115.333333pt;}
.x57_c00383{left:116.266667pt;}
.xda_c00383{left:117.866667pt;}
.x114_c00383{left:122.533333pt;}
.xae_c00383{left:124.666667pt;}
.xf9_c00383{left:125.866667pt;}
.x28_c00383{left:126.933333pt;}
.x84_c00383{left:129.733333pt;}
.xa1_c00383{left:130.666667pt;}
.x18_c00383{left:133.066667pt;}
.xa_c00383{left:135.733333pt;}
.x38_c00383{left:136.666667pt;}
.xb9_c00383{left:138.000000pt;}
.x79_c00383{left:139.066667pt;}
.xaf_c00383{left:140.000000pt;}
.x6f_c00383{left:144.133333pt;}
.xdb_c00383{left:145.733333pt;}
.x29_c00383{left:147.066667pt;}
.xc2_c00383{left:149.733333pt;}
.x19_c00383{left:152.000000pt;}
.xed_c00383{left:153.333333pt;}
.x37_c00383{left:155.066667pt;}
.xb_c00383{left:156.266667pt;}
.x58_c00383{left:159.200000pt;}
.xa2_c00383{left:162.666667pt;}
.x85_c00383{left:165.600000pt;}
.x62_c00383{left:167.333333pt;}
.x70_c00383{left:168.400000pt;}
.x10e_c00383{left:171.200000pt;}
.x39_c00383{left:174.133333pt;}
.xc8_c00383{left:177.066667pt;}
.xe3_c00383{left:179.600000pt;}
.x2a_c00383{left:180.666667pt;}
.x4b_c00383{left:181.866667pt;}
.x63_c00383{left:184.933333pt;}
.xa3_c00383{left:187.333333pt;}
.x3a_c00383{left:188.266667pt;}
.xd0_c00383{left:189.200000pt;}
.x1a_c00383{left:191.066667pt;}
.x9a_c00383{left:192.133333pt;}
.xb0_c00383{left:194.666667pt;}
.xc9_c00383{left:196.533333pt;}
.x2b_c00383{left:198.933333pt;}
.x104_c00383{left:199.866667pt;}
.xe6_c00383{left:200.933333pt;}
.xd1_c00383{left:202.666667pt;}
.xee_c00383{left:205.466667pt;}
.x64_c00383{left:207.333333pt;}
.x10f_c00383{left:208.666667pt;}
.xfa_c00383{left:210.666667pt;}
.x3b_c00383{left:212.266667pt;}
.x92_c00383{left:215.333333pt;}
.x59_c00383{left:216.533333pt;}
.x1b_c00383{left:221.733333pt;}
.x10b_c00383{left:222.666667pt;}
.xca_c00383{left:225.066667pt;}
.x3c_c00383{left:227.600000pt;}
.xd2_c00383{left:230.533333pt;}
.x2c_c00383{left:233.200000pt;}
.x4c_c00383{left:236.666667pt;}
.xba_c00383{left:238.000000pt;}
.x7a_c00383{left:239.866667pt;}
.xa4_c00383{left:242.000000pt;}
.x4_c00383{left:242.933333pt;}
.x8d_c00383{left:245.466667pt;}
.x115_c00383{left:248.000000pt;}
.x93_c00383{left:249.200000pt;}
.x3d_c00383{left:250.266667pt;}
.xc_c00383{left:253.866667pt;}
.x7b_c00383{left:257.466667pt;}
.xc3_c00383{left:258.400000pt;}
.x65_c00383{left:259.466667pt;}
.x2d_c00383{left:260.400000pt;}
.x5a_c00383{left:261.866667pt;}
.xcb_c00383{left:263.200000pt;}
.x9b_c00383{left:265.733333pt;}
.x4d_c00383{left:268.000000pt;}
.xef_c00383{left:270.800000pt;}
.x86_c00383{left:273.066667pt;}
.x1c_c00383{left:274.533333pt;}
.x3e_c00383{left:282.000000pt;}
.x4e_c00383{left:283.733333pt;}
.x66_c00383{left:287.333333pt;}
.xe4_c00383{left:288.800000pt;}
.xd_c00383{left:290.666667pt;}
.xb1_c00383{left:292.933333pt;}
.x5_c00383{left:294.800000pt;}
.x9c_c00383{left:295.866667pt;}
.x5b_c00383{left:298.933333pt;}
.x1d_c00383{left:299.866667pt;}
.x2e_c00383{left:302.666667pt;}
.x7c_c00383{left:304.533333pt;}
.xbb_c00383{left:305.600000pt;}
.xa5_c00383{left:310.400000pt;}
.x94_c00383{left:311.866667pt;}
.x2_c00383{left:313.600000pt;}
.xb2_c00383{left:316.933333pt;}
.xdc_c00383{left:317.866667pt;}
.xcc_c00383{left:319.466667pt;}
.xe_c00383{left:321.066667pt;}
.x1e_c00383{left:322.933333pt;}
.xe7_c00383{left:324.666667pt;}
.x10c_c00383{left:325.600000pt;}
.x71_c00383{left:328.533333pt;}
.x3f_c00383{left:330.666667pt;}
.xd3_c00383{left:331.600000pt;}
.xbc_c00383{left:335.333333pt;}
.x105_c00383{left:338.666667pt;}
.xcd_c00383{left:339.600000pt;}
.x8e_c00383{left:341.466667pt;}
.x5c_c00383{left:344.400000pt;}
.x6_c00383{left:345.333333pt;}
.x2f_c00383{left:347.466667pt;}
.xdd_c00383{left:349.200000pt;}
.xfe_c00383{left:351.600000pt;}
.xf0_c00383{left:353.333333pt;}
.x67_c00383{left:355.466667pt;}
.x7_c00383{left:359.066667pt;}
.x106_c00383{left:361.333333pt;}
.x1_c00383{left:362.533333pt;}
.x1f_c00383{left:364.266667pt;}
.x4f_c00383{left:365.333333pt;}
.xf_c00383{left:368.400000pt;}
.x68_c00383{left:370.533333pt;}
.x7d_c00383{left:372.000000pt;}
.x95_c00383{left:373.600000pt;}
.xbd_c00383{left:375.600000pt;}
.xa6_c00383{left:376.666667pt;}
.x40_c00383{left:379.600000pt;}
.x5d_c00383{left:380.533333pt;}
.x50_c00383{left:382.933333pt;}
.xff_c00383{left:384.266667pt;}
.xde_c00383{left:387.600000pt;}
.x3_c00383{left:388.800000pt;}
.xf4_c00383{left:391.333333pt;}
.x10d_c00383{left:393.066667pt;}
.x41_c00383{left:394.933333pt;}
.xfb_c00383{left:397.200000pt;}
.xe8_c00383{left:400.133333pt;}
.x20_c00383{left:401.333333pt;}
.x30_c00383{left:402.800000pt;}
.xa7_c00383{left:408.000000pt;}
.x9d_c00383{left:411.066667pt;}
.x107_c00383{left:412.266667pt;}
.x72_c00383{left:414.933333pt;}
.xf5_c00383{left:417.200000pt;}
.x87_c00383{left:418.666667pt;}
.x42_c00383{left:420.533333pt;}
.x110_c00383{left:422.133333pt;}
.x8_c00383{left:424.666667pt;}
.xdf_c00383{left:426.933333pt;}
.x108_c00383{left:430.133333pt;}
.x9e_c00383{left:433.200000pt;}
.x43_c00383{left:435.600000pt;}
.x10_c00383{left:437.200000pt;}
.xf1_c00383{left:439.200000pt;}
.xd4_c00383{left:440.400000pt;}
.xa8_c00383{left:444.133333pt;}
.x69_c00383{left:446.000000pt;}
.xb3_c00383{left:448.800000pt;}
.x8f_c00383{left:451.466667pt;}
.xf6_c00383{left:452.400000pt;}
.x5e_c00383{left:456.000000pt;}
.x21_c00383{left:457.066667pt;}
.xbe_c00383{left:458.133333pt;}
.x44_c00383{left:460.266667pt;}
.x31_c00383{left:461.333333pt;}
.xf2_c00383{left:463.866667pt;}
.x9f_c00383{left:465.466667pt;}
.x11_c00383{left:466.933333pt;}
.x51_c00383{left:469.600000pt;}
.xa9_c00383{left:471.600000pt;}
.xce_c00383{left:472.800000pt;}
.xe9_c00383{left:478.133333pt;}
.xd5_c00383{left:479.066667pt;}
.x88_c00383{left:482.400000pt;}
.x100_c00383{left:486.666667pt;}
.x7e_c00383{left:488.800000pt;}
.x22_c00383{left:490.000000pt;}
.xf7_c00383{left:492.400000pt;}
.x5f_c00383{left:493.733333pt;}
.x52_c00383{left:494.933333pt;}
.x73_c00383{left:496.800000pt;}
.x90_c00383{left:500.133333pt;}
.x6a_c00383{left:502.000000pt;}
.x96_c00383{left:502.933333pt;}
.x7f_c00383{left:504.133333pt;}
.x89_c00383{left:506.133333pt;}
.x12_c00383{left:508.266667pt;}
.xb4_c00383{left:509.200000pt;}
.x32_c00383{left:513.466667pt;}
.xaa_c00383{left:514.800000pt;}
.x80_c00383{left:517.200000pt;}
.x101_c00383{left:518.666667pt;}
.x53_c00383{left:520.533333pt;}
.xf8_c00383{left:522.133333pt;}
.x6b_c00383{left:523.466667pt;}
.xcf_c00383{left:525.866667pt;}
.x13_c00383{left:528.400000pt;}
.x33_c00383{left:529.733333pt;}
.xab_c00383{left:531.733333pt;}
.x74_c00383{left:534.000000pt;}
.x54_c00383{left:538.400000pt;}
.xf3_c00383{left:539.600000pt;}
.x23_c00383{left:540.933333pt;}
.xa0_c00383{left:542.266667pt;}
.x45_c00383{left:543.866667pt;}
.xfc_c00383{left:544.800000pt;}
.x6c_c00383{left:546.133333pt;}
.x34_c00383{left:548.000000pt;}
.x109_c00383{left:550.133333pt;}
.x81_c00383{left:552.133333pt;}
.xea_c00383{left:553.333333pt;}
.x111_c00383{left:554.266667pt;}
.x46_c00383{left:557.600000pt;}
.xd6_c00383{left:559.466667pt;}
.xe0_c00383{left:562.666667pt;}
.x55_c00383{left:563.733333pt;}
.x24_c00383{left:566.533333pt;}
.x8a_c00383{left:569.866667pt;}
.xc4_c00383{left:571.333333pt;}
.x14_c00383{left:573.466667pt;}
.x75_c00383{left:576.533333pt;}
.xac_c00383{left:577.466667pt;}
.xbf_c00383{left:579.466667pt;}
.x6d_c00383{left:581.600000pt;}
.xb5_c00383{left:582.800000pt;}
.x112_c00383{left:584.400000pt;}
.x60_c00383{left:585.866667pt;}
.x97_c00383{left:588.266667pt;}
.xe1_c00383{left:590.533333pt;}
.x76_c00383{left:592.266667pt;}
.xd7_c00383{left:593.333333pt;}
.x47_c00383{left:595.733333pt;}
.xfd_c00383{left:598.266667pt;}
.x15_c00383{left:600.666667pt;}
.x91_c00383{left:602.133333pt;}
.xad_c00383{left:603.333333pt;}
.x48_c00383{left:606.933333pt;}
.xb6_c00383{left:608.133333pt;}
.x56_c00383{left:610.800000pt;}
.xc5_c00383{left:612.266667pt;}
.x16_c00383{left:615.333333pt;}
.x102_c00383{left:616.533333pt;}
.x61_c00383{left:620.800000pt;}
.x25_c00383{left:623.866667pt;}
.x8b_c00383{left:626.533333pt;}
.x82_c00383{left:632.133333pt;}
.x6e_c00383{left:634.666667pt;}
.xeb_c00383{left:635.866667pt;}
.x98_c00383{left:638.800000pt;}
.x35_c00383{left:640.133333pt;}
.xb7_c00383{left:644.266667pt;}
.x17_c00383{left:645.466667pt;}
.xd8_c00383{left:650.933333pt;}
.x49_c00383{left:653.066667pt;}
.x77_c00383{left:654.000000pt;}
.x10a_c00383{left:655.733333pt;}
.x26_c00383{left:658.133333pt;}
.x99_c00383{left:659.333333pt;}
.xc6_c00383{left:665.733333pt;}
.xc0_c00383{left:675.466667pt;}
}





/* 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_c00384 {
    display:none;
  }
  .loading-indicator_c00384.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00384 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_c00384 { 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_c00384" -> "#page-container .classname_c00384")
 */
.pf_c00384 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00384 { /* 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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00384 { /* 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_c00384 { /* 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_c00384 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00384 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00384 {overflow:visible;}
  }
}
.c_c00384 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00384 { /* 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_c00384:after { /* webkit #35443 */
  content: '';
}
.t_c00384:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00384 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 */
}
.__c00384 { /* 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_c00384 { /* info for Javascript */
  display:none;
}
.l_c00384 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00384 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00384 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00384: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_c00384 {
    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_c00384.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00384.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_c00384 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00384{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00384;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.000000;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;}
.m10_c00384{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00384{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m91_c00384{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m93_c00384{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00384{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m43_c00384{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6_c00384{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00384{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m26_c00384{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m59_c00384{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m47_c00384{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00384{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00384{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00384{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5_c00384{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00384{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00384{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m76_c00384{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m60_c00384{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m77_c00384{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf_c00384{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m65_c00384{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00384{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m72_c00384{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m84_c00384{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m15_c00384{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3_c00384{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00384{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00384{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m73_c00384{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m69_c00384{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00384{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00384{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m82_c00384{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00384{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00384{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00384{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00384{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00384{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4_c00384{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m17_c00384{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m56_c00384{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m30_c00384{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m85_c00384{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m42_c00384{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00384{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m25_c00384{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00384{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00384{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8_c00384{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2_c00384{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00384{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m67_c00384{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m13_c00384{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m28_c00384{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m54_c00384{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00384{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m57_c00384{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00384{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m32_c00384{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m24_c00384{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m83_c00384{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7_c00384{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m19_c00384{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m51_c00384{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m27_c00384{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00384{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00384{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m75_c00384{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m36_c00384{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.ma_c00384{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00384{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb_c00384{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m55_c00384{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m63_c00384{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9_c00384{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.md_c00384{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m70_c00384{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20_c00384{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00384{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00384{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m23_c00384{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00384{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00384{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00384{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m78_c00384{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m86_c00384{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00384{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00384{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00384{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m49_c00384{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00384{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m44_c00384{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00384{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00384{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m92_c00384{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00384{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m37_c00384{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00384{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.me_c00384{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00384{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m90_c00384{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m29_c00384{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m33_c00384{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00384{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m14_c00384{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m81_c00384{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m66_c00384{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m41_c00384{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m40_c00384{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m80_c00384{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m79_c00384{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00384{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00384{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m18_c00384{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m61_c00384{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m16_c00384{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m52_c00384{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m88_c00384{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00384{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00384{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00384{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m31_c00384{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m71_c00384{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11_c00384{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m12_c00384{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m45_c00384{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m35_c00384{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m34_c00384{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00384{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m53_c00384{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00384{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m39_c00384{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m50_c00384{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m58_c00384{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m22_c00384{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00384{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m62_c00384{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00384{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00384{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m64_c00384{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m1_c00384{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m89_c00384{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m87_c00384{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00384{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m74_c00384{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00384{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00384{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.v0_c00384{vertical-align:0.000000px;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{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__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00384{word-spacing:-8.741995px;}
.ws1_c00384{word-spacing:-3.125000px;}
.ws0_c00384{word-spacing:-2.875000px;}
.ws5_c00384{word-spacing:0.000000px;}
.ws3_c00384{word-spacing:2.750000px;}
.ws4_c00384{word-spacing:7.636364px;}
._0_c00384{width:87.000000px;}
.fc0_c00384{color:transparent;}
.fs0_c00384{font-size:54.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1e_c00384{bottom:446.400000px;}
.y1d_c00384{bottom:477.750000px;}
.y1c_c00384{bottom:498.600000px;}
.y1b_c00384{bottom:517.650000px;}
.y1a_c00384{bottom:538.500000px;}
.y19_c00384{bottom:558.600000px;}
.y18_c00384{bottom:578.400000px;}
.y17_c00384{bottom:597.900000px;}
.y16_c00384{bottom:618.300000px;}
.y15_c00384{bottom:638.400000px;}
.y14_c00384{bottom:658.500000px;}
.y13_c00384{bottom:678.300000px;}
.y12_c00384{bottom:698.100000px;}
.y11_c00384{bottom:718.200000px;}
.y10_c00384{bottom:738.000000px;}
.yf_c00384{bottom:757.800000px;}
.ye_c00384{bottom:777.900000px;}
.yd_c00384{bottom:798.000000px;}
.yc_c00384{bottom:818.550000px;}
.yb_c00384{bottom:838.050000px;}
.ya_c00384{bottom:857.700000px;}
.y9_c00384{bottom:877.800000px;}
.y8_c00384{bottom:897.900000px;}
.y7_c00384{bottom:918.000000px;}
.y6_c00384{bottom:938.100000px;}
.y5_c00384{bottom:957.900000px;}
.y4_c00384{bottom:977.700000px;}
.y3_c00384{bottom:997.500000px;}
.y2_c00384{bottom:1017.300000px;}
.y1_c00384{bottom:1055.850000px;}
.h2_c00384{height:54.000000px;}
.h0_c00384{height:1166.759949px;}
.h1_c00384{height:1167.000000px;}
.w1_c00384{width:913.500000px;}
.w0_c00384{width:913.679993px;}
.x0_c00384{left:0.000000px;}
.xe7_c00384{left:157.800000px;}
.xc8_c00384{left:159.000000px;}
.x5f_c00384{left:160.650000px;}
.x16_c00384{left:161.850000px;}
.x1_c00384{left:163.500000px;}
.x9e_c00384{left:177.900000px;}
.xa8_c00384{left:179.550000px;}
.xee_c00384{left:186.150000px;}
.xf3_c00384{left:189.000000px;}
.x17_c00384{left:190.350000px;}
.x7b_c00384{left:191.550000px;}
.x3_c00384{left:193.650000px;}
.xdd_c00384{left:195.450000px;}
.x37_c00384{left:198.600000px;}
.xef_c00384{left:204.450000px;}
.x95_c00384{left:207.750000px;}
.xd1_c00384{left:208.950000px;}
.xe1_c00384{left:210.150000px;}
.x4_c00384{left:211.650000px;}
.x60_c00384{left:215.400000px;}
.x50_c00384{left:218.100000px;}
.xa9_c00384{left:219.900000px;}
.x7c_c00384{left:221.400000px;}
.xc2_c00384{left:225.450000px;}
.x18_c00384{left:226.650000px;}
.x77_c00384{left:228.900000px;}
.x96_c00384{left:230.100000px;}
.xbc_c00384{left:235.800000px;}
.x42_c00384{left:238.200000px;}
.x5_c00384{left:240.750000px;}
.x86_c00384{left:243.600000px;}
.x6d_c00384{left:245.400000px;}
.xd2_c00384{left:247.050000px;}
.x7d_c00384{left:250.950000px;}
.xf4_c00384{left:253.500000px;}
.x38_c00384{left:258.300000px;}
.x51_c00384{left:261.600000px;}
.x19_c00384{left:263.400000px;}
.x43_c00384{left:265.950000px;}
.xc3_c00384{left:267.450000px;}
.x87_c00384{left:269.100000px;}
.xe8_c00384{left:270.150000px;}
.x29_c00384{left:271.800000px;}
.xd3_c00384{left:274.800000px;}
.xf7_c00384{left:277.050000px;}
.x9f_c00384{left:279.150000px;}
.x6_c00384{left:283.200000px;}
.x39_c00384{left:286.350000px;}
.x1a_c00384{left:291.450000px;}
.x7e_c00384{left:292.650000px;}
.x6e_c00384{left:295.050000px;}
.x7_c00384{left:299.100000px;}
.x78_c00384{left:300.600000px;}
.xf5_c00384{left:302.100000px;}
.xf0_c00384{left:306.750000px;}
.x1b_c00384{left:309.150000px;}
.xd7_c00384{left:311.400000px;}
.x2a_c00384{left:312.450000px;}
.xd4_c00384{left:314.100000px;}
.xaa_c00384{left:316.800000px;}
.x52_c00384{left:318.450000px;}
.x8_c00384{left:320.700000px;}
.x97_c00384{left:321.900000px;}
.x88_c00384{left:324.900000px;}
.xa0_c00384{left:327.750000px;}
.xe2_c00384{left:330.450000px;}
.x1c_c00384{left:332.250000px;}
.xd5_c00384{left:333.900000px;}
.xbd_c00384{left:335.250000px;}
.x9_c00384{left:337.950000px;}
.x61_c00384{left:339.000000px;}
.xab_c00384{left:342.000000px;}
.x98_c00384{left:343.500000px;}
.xe9_c00384{left:347.850000px;}
.x62_c00384{left:350.550000px;}
.xde_c00384{left:352.200000px;}
.xa_c00384{left:353.400000px;}
.xb4_c00384{left:355.050000px;}
.x6f_c00384{left:357.000000px;}
.x44_c00384{left:359.250000px;}
.x89_c00384{left:362.400000px;}
.xb_c00384{left:365.700000px;}
.x1d_c00384{left:367.950000px;}
.x79_c00384{left:369.750000px;}
.xc9_c00384{left:372.750000px;}
.xb5_c00384{left:376.650000px;}
.x53_c00384{left:378.600000px;}
.x45_c00384{left:380.550000px;}
.xd8_c00384{left:382.350000px;}
.x2b_c00384{left:384.450000px;}
.xc4_c00384{left:388.800000px;}
.x8a_c00384{left:391.200000px;}
.xfd_c00384{left:393.150000px;}
.x63_c00384{left:394.500000px;}
.xb6_c00384{left:396.750000px;}
.x99_c00384{left:399.600000px;}
.xca_c00384{left:400.800000px;}
.xfe_c00384{left:406.050000px;}
.x64_c00384{left:409.650000px;}
.xac_c00384{left:411.450000px;}
.xe3_c00384{left:413.850000px;}
.xf8_c00384{left:417.750000px;}
.x46_c00384{left:419.400000px;}
.xdf_c00384{left:420.600000px;}
.x3a_c00384{left:422.700000px;}
.x7a_c00384{left:425.850000px;}
.x65_c00384{left:426.900000px;}
.xc_c00384{left:427.950000px;}
.xf1_c00384{left:429.900000px;}
.x70_c00384{left:431.550000px;}
.x54_c00384{left:433.200000px;}
.x1e_c00384{left:436.050000px;}
.xf9_c00384{left:437.850000px;}
.x2c_c00384{left:440.250000px;}
.x66_c00384{left:446.700000px;}
.xd9_c00384{left:448.950000px;}
.x71_c00384{left:451.350000px;}
.x3b_c00384{left:454.050000px;}
.x1f_c00384{left:455.100000px;}
.xc5_c00384{left:458.250000px;}
.x2_c00384{left:460.800000px;}
.xad_c00384{left:463.650000px;}
.x55_c00384{left:467.400000px;}
.xf6_c00384{left:468.450000px;}
.xfa_c00384{left:475.650000px;}
.xff_c00384{left:477.750000px;}
.xf2_c00384{left:479.550000px;}
.x2d_c00384{left:482.400000px;}
.xae_c00384{left:483.450000px;}
.xe0_c00384{left:485.400000px;}
.xd_c00384{left:488.100000px;}
.x9a_c00384{left:489.600000px;}
.x8b_c00384{left:492.600000px;}
.x7f_c00384{left:494.250000px;}
.xa1_c00384{left:497.100000px;}
.x47_c00384{left:498.900000px;}
.xda_c00384{left:501.150000px;}
.x20_c00384{left:506.250000px;}
.xcb_c00384{left:507.300000px;}
.x2e_c00384{left:510.900000px;}
.x72_c00384{left:512.850000px;}
.xbe_c00384{left:515.550000px;}
.x48_c00384{left:516.600000px;}
.x3c_c00384{left:519.600000px;}
.xc6_c00384{left:521.550000px;}
.xa2_c00384{left:523.050000px;}
.x56_c00384{left:526.050000px;}
.xcc_c00384{left:528.900000px;}
.x67_c00384{left:530.550000px;}
.xe_c00384{left:532.800000px;}
.x9b_c00384{left:536.700000px;}
.xe4_c00384{left:538.350000px;}
.x8c_c00384{left:540.450000px;}
.x21_c00384{left:541.950000px;}
.xaf_c00384{left:543.450000px;}
.x80_c00384{left:545.700000px;}
.x73_c00384{left:550.350000px;}
.xf_c00384{left:552.600000px;}
.x49_c00384{left:554.100000px;}
.x8d_c00384{left:558.150000px;}
.x2f_c00384{left:559.500000px;}
.x22_c00384{left:566.850000px;}
.xb7_c00384{left:568.500000px;}
.x74_c00384{left:572.250000px;}
.x81_c00384{left:574.200000px;}
.xcd_c00384{left:576.450000px;}
.x57_c00384{left:577.500000px;}
.x8e_c00384{left:579.000000px;}
.x68_c00384{left:583.950000px;}
.xb0_c00384{left:585.600000px;}
.x58_c00384{left:588.600000px;}
.xea_c00384{left:589.800000px;}
.xc7_c00384{left:592.050000px;}
.xbf_c00384{left:595.800000px;}
.x9c_c00384{left:598.350000px;}
.x69_c00384{left:599.400000px;}
.x30_c00384{left:609.600000px;}
.xc0_c00384{left:613.050000px;}
.x31_c00384{left:620.700000px;}
.x59_c00384{left:622.500000px;}
.xce_c00384{left:624.300000px;}
.x4a_c00384{left:625.350000px;}
.x3d_c00384{left:627.000000px;}
.xfb_c00384{left:628.200000px;}
.xa3_c00384{left:631.800000px;}
.x8f_c00384{left:635.100000px;}
.xb8_c00384{left:638.250000px;}
.xb1_c00384{left:639.300000px;}
.xec_c00384{left:640.950000px;}
.x10_c00384{left:642.900000px;}
.x23_c00384{left:644.250000px;}
.x32_c00384{left:646.200000px;}
.xc1_c00384{left:648.750000px;}
.x5a_c00384{left:649.800000px;}
.x90_c00384{left:653.100000px;}
.x3e_c00384{left:654.750000px;}
.x4b_c00384{left:656.250000px;}
.x11_c00384{left:660.900000px;}
.x82_c00384{left:662.850000px;}
.x91_c00384{left:665.400000px;}
.x6a_c00384{left:667.800000px;}
.x5b_c00384{left:669.300000px;}
.xa4_c00384{left:670.650000px;}
.xed_c00384{left:672.900000px;}
.x24_c00384{left:675.600000px;}
.xb2_c00384{left:678.600000px;}
.x4c_c00384{left:682.950000px;}
.x6b_c00384{left:685.050000px;}
.xfc_c00384{left:686.250000px;}
.x33_c00384{left:688.650000px;}
.xb9_c00384{left:690.750000px;}
.x83_c00384{left:697.050000px;}
.x5c_c00384{left:698.400000px;}
.xe5_c00384{left:700.650000px;}
.xdb_c00384{left:704.850000px;}
.x4d_c00384{left:715.650000px;}
.x25_c00384{left:716.700000px;}
.x9d_c00384{left:717.900000px;}
.xcf_c00384{left:721.500000px;}
.xd6_c00384{left:724.950000px;}
.x75_c00384{left:727.800000px;}
.x5d_c00384{left:731.100000px;}
.x92_c00384{left:732.750000px;}
.x26_c00384{left:734.700000px;}
.x3f_c00384{left:739.350000px;}
.x4e_c00384{left:740.850000px;}
.x84_c00384{left:742.350000px;}
.x34_c00384{left:743.700000px;}
.x93_c00384{left:745.050000px;}
.x12_c00384{left:746.550000px;}
.xba_c00384{left:753.450000px;}
.xa5_c00384{left:755.250000px;}
.x76_c00384{left:756.600000px;}
.x35_c00384{left:759.150000px;}
.x27_c00384{left:764.550000px;}
.xb3_c00384{left:767.550000px;}
.xbb_c00384{left:770.400000px;}
.xdc_c00384{left:772.200000px;}
.x40_c00384{left:773.550000px;}
.x5e_c00384{left:777.600000px;}
.x13_c00384{left:781.050000px;}
.x4f_c00384{left:783.000000px;}
.x28_c00384{left:785.850000px;}
.xeb_c00384{left:787.050000px;}
.xd0_c00384{left:788.850000px;}
.xa6_c00384{left:791.250000px;}
.x6c_c00384{left:793.650000px;}
.x41_c00384{left:797.250000px;}
.x94_c00384{left:798.750000px;}
.x14_c00384{left:800.100000px;}
.xa7_c00384{left:802.800000px;}
.x36_c00384{left:810.600000px;}
.xe6_c00384{left:811.950000px;}
.x85_c00384{left:817.650000px;}
.x15_c00384{left:827.100000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws2_c00384{word-spacing:-7.770662pt;}
.ws1_c00384{word-spacing:-2.777778pt;}
.ws0_c00384{word-spacing:-2.555556pt;}
.ws5_c00384{word-spacing:0.000000pt;}
.ws3_c00384{word-spacing:2.444444pt;}
.ws4_c00384{word-spacing:6.787879pt;}
._0_c00384{width:77.333333pt;}
.fs0_c00384{font-size:48.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y1e_c00384{bottom:396.800000pt;}
.y1d_c00384{bottom:424.666667pt;}
.y1c_c00384{bottom:443.200000pt;}
.y1b_c00384{bottom:460.133333pt;}
.y1a_c00384{bottom:478.666667pt;}
.y19_c00384{bottom:496.533333pt;}
.y18_c00384{bottom:514.133333pt;}
.y17_c00384{bottom:531.466667pt;}
.y16_c00384{bottom:549.600000pt;}
.y15_c00384{bottom:567.466667pt;}
.y14_c00384{bottom:585.333333pt;}
.y13_c00384{bottom:602.933333pt;}
.y12_c00384{bottom:620.533333pt;}
.y11_c00384{bottom:638.400000pt;}
.y10_c00384{bottom:656.000000pt;}
.yf_c00384{bottom:673.600000pt;}
.ye_c00384{bottom:691.466667pt;}
.yd_c00384{bottom:709.333333pt;}
.yc_c00384{bottom:727.600000pt;}
.yb_c00384{bottom:744.933333pt;}
.ya_c00384{bottom:762.400000pt;}
.y9_c00384{bottom:780.266667pt;}
.y8_c00384{bottom:798.133333pt;}
.y7_c00384{bottom:816.000000pt;}
.y6_c00384{bottom:833.866667pt;}
.y5_c00384{bottom:851.466667pt;}
.y4_c00384{bottom:869.066667pt;}
.y3_c00384{bottom:886.666667pt;}
.y2_c00384{bottom:904.266667pt;}
.y1_c00384{bottom:938.533333pt;}
.h2_c00384{height:48.000000pt;}
.h0_c00384{height:1037.119955pt;}
.h1_c00384{height:1037.333333pt;}
.w1_c00384{width:812.000000pt;}
.w0_c00384{width:812.159993pt;}
.x0_c00384{left:0.000000pt;}
.xe7_c00384{left:140.266667pt;}
.xc8_c00384{left:141.333333pt;}
.x5f_c00384{left:142.800000pt;}
.x16_c00384{left:143.866667pt;}
.x1_c00384{left:145.333333pt;}
.x9e_c00384{left:158.133333pt;}
.xa8_c00384{left:159.600000pt;}
.xee_c00384{left:165.466667pt;}
.xf3_c00384{left:168.000000pt;}
.x17_c00384{left:169.200000pt;}
.x7b_c00384{left:170.266667pt;}
.x3_c00384{left:172.133333pt;}
.xdd_c00384{left:173.733333pt;}
.x37_c00384{left:176.533333pt;}
.xef_c00384{left:181.733333pt;}
.x95_c00384{left:184.666667pt;}
.xd1_c00384{left:185.733333pt;}
.xe1_c00384{left:186.800000pt;}
.x4_c00384{left:188.133333pt;}
.x60_c00384{left:191.466667pt;}
.x50_c00384{left:193.866667pt;}
.xa9_c00384{left:195.466667pt;}
.x7c_c00384{left:196.800000pt;}
.xc2_c00384{left:200.400000pt;}
.x18_c00384{left:201.466667pt;}
.x77_c00384{left:203.466667pt;}
.x96_c00384{left:204.533333pt;}
.xbc_c00384{left:209.600000pt;}
.x42_c00384{left:211.733333pt;}
.x5_c00384{left:214.000000pt;}
.x86_c00384{left:216.533333pt;}
.x6d_c00384{left:218.133333pt;}
.xd2_c00384{left:219.600000pt;}
.x7d_c00384{left:223.066667pt;}
.xf4_c00384{left:225.333333pt;}
.x38_c00384{left:229.600000pt;}
.x51_c00384{left:232.533333pt;}
.x19_c00384{left:234.133333pt;}
.x43_c00384{left:236.400000pt;}
.xc3_c00384{left:237.733333pt;}
.x87_c00384{left:239.200000pt;}
.xe8_c00384{left:240.133333pt;}
.x29_c00384{left:241.600000pt;}
.xd3_c00384{left:244.266667pt;}
.xf7_c00384{left:246.266667pt;}
.x9f_c00384{left:248.133333pt;}
.x6_c00384{left:251.733333pt;}
.x39_c00384{left:254.533333pt;}
.x1a_c00384{left:259.066667pt;}
.x7e_c00384{left:260.133333pt;}
.x6e_c00384{left:262.266667pt;}
.x7_c00384{left:265.866667pt;}
.x78_c00384{left:267.200000pt;}
.xf5_c00384{left:268.533333pt;}
.xf0_c00384{left:272.666667pt;}
.x1b_c00384{left:274.800000pt;}
.xd7_c00384{left:276.800000pt;}
.x2a_c00384{left:277.733333pt;}
.xd4_c00384{left:279.200000pt;}
.xaa_c00384{left:281.600000pt;}
.x52_c00384{left:283.066667pt;}
.x8_c00384{left:285.066667pt;}
.x97_c00384{left:286.133333pt;}
.x88_c00384{left:288.800000pt;}
.xa0_c00384{left:291.333333pt;}
.xe2_c00384{left:293.733333pt;}
.x1c_c00384{left:295.333333pt;}
.xd5_c00384{left:296.800000pt;}
.xbd_c00384{left:298.000000pt;}
.x9_c00384{left:300.400000pt;}
.x61_c00384{left:301.333333pt;}
.xab_c00384{left:304.000000pt;}
.x98_c00384{left:305.333333pt;}
.xe9_c00384{left:309.200000pt;}
.x62_c00384{left:311.600000pt;}
.xde_c00384{left:313.066667pt;}
.xa_c00384{left:314.133333pt;}
.xb4_c00384{left:315.600000pt;}
.x6f_c00384{left:317.333333pt;}
.x44_c00384{left:319.333333pt;}
.x89_c00384{left:322.133333pt;}
.xb_c00384{left:325.066667pt;}
.x1d_c00384{left:327.066667pt;}
.x79_c00384{left:328.666667pt;}
.xc9_c00384{left:331.333333pt;}
.xb5_c00384{left:334.800000pt;}
.x53_c00384{left:336.533333pt;}
.x45_c00384{left:338.266667pt;}
.xd8_c00384{left:339.866667pt;}
.x2b_c00384{left:341.733333pt;}
.xc4_c00384{left:345.600000pt;}
.x8a_c00384{left:347.733333pt;}
.xfd_c00384{left:349.466667pt;}
.x63_c00384{left:350.666667pt;}
.xb6_c00384{left:352.666667pt;}
.x99_c00384{left:355.200000pt;}
.xca_c00384{left:356.266667pt;}
.xfe_c00384{left:360.933333pt;}
.x64_c00384{left:364.133333pt;}
.xac_c00384{left:365.733333pt;}
.xe3_c00384{left:367.866667pt;}
.xf8_c00384{left:371.333333pt;}
.x46_c00384{left:372.800000pt;}
.xdf_c00384{left:373.866667pt;}
.x3a_c00384{left:375.733333pt;}
.x7a_c00384{left:378.533333pt;}
.x65_c00384{left:379.466667pt;}
.xc_c00384{left:380.400000pt;}
.xf1_c00384{left:382.133333pt;}
.x70_c00384{left:383.600000pt;}
.x54_c00384{left:385.066667pt;}
.x1e_c00384{left:387.600000pt;}
.xf9_c00384{left:389.200000pt;}
.x2c_c00384{left:391.333333pt;}
.x66_c00384{left:397.066667pt;}
.xd9_c00384{left:399.066667pt;}
.x71_c00384{left:401.200000pt;}
.x3b_c00384{left:403.600000pt;}
.x1f_c00384{left:404.533333pt;}
.xc5_c00384{left:407.333333pt;}
.x2_c00384{left:409.600000pt;}
.xad_c00384{left:412.133333pt;}
.x55_c00384{left:415.466667pt;}
.xf6_c00384{left:416.400000pt;}
.xfa_c00384{left:422.800000pt;}
.xff_c00384{left:424.666667pt;}
.xf2_c00384{left:426.266667pt;}
.x2d_c00384{left:428.800000pt;}
.xae_c00384{left:429.733333pt;}
.xe0_c00384{left:431.466667pt;}
.xd_c00384{left:433.866667pt;}
.x9a_c00384{left:435.200000pt;}
.x8b_c00384{left:437.866667pt;}
.x7f_c00384{left:439.333333pt;}
.xa1_c00384{left:441.866667pt;}
.x47_c00384{left:443.466667pt;}
.xda_c00384{left:445.466667pt;}
.x20_c00384{left:450.000000pt;}
.xcb_c00384{left:450.933333pt;}
.x2e_c00384{left:454.133333pt;}
.x72_c00384{left:455.866667pt;}
.xbe_c00384{left:458.266667pt;}
.x48_c00384{left:459.200000pt;}
.x3c_c00384{left:461.866667pt;}
.xc6_c00384{left:463.600000pt;}
.xa2_c00384{left:464.933333pt;}
.x56_c00384{left:467.600000pt;}
.xcc_c00384{left:470.133333pt;}
.x67_c00384{left:471.600000pt;}
.xe_c00384{left:473.600000pt;}
.x9b_c00384{left:477.066667pt;}
.xe4_c00384{left:478.533333pt;}
.x8c_c00384{left:480.400000pt;}
.x21_c00384{left:481.733333pt;}
.xaf_c00384{left:483.066667pt;}
.x80_c00384{left:485.066667pt;}
.x73_c00384{left:489.200000pt;}
.xf_c00384{left:491.200000pt;}
.x49_c00384{left:492.533333pt;}
.x8d_c00384{left:496.133333pt;}
.x2f_c00384{left:497.333333pt;}
.x22_c00384{left:503.866667pt;}
.xb7_c00384{left:505.333333pt;}
.x74_c00384{left:508.666667pt;}
.x81_c00384{left:510.400000pt;}
.xcd_c00384{left:512.400000pt;}
.x57_c00384{left:513.333333pt;}
.x8e_c00384{left:514.666667pt;}
.x68_c00384{left:519.066667pt;}
.xb0_c00384{left:520.533333pt;}
.x58_c00384{left:523.200000pt;}
.xea_c00384{left:524.266667pt;}
.xc7_c00384{left:526.266667pt;}
.xbf_c00384{left:529.600000pt;}
.x9c_c00384{left:531.866667pt;}
.x69_c00384{left:532.800000pt;}
.x30_c00384{left:541.866667pt;}
.xc0_c00384{left:544.933333pt;}
.x31_c00384{left:551.733333pt;}
.x59_c00384{left:553.333333pt;}
.xce_c00384{left:554.933333pt;}
.x4a_c00384{left:555.866667pt;}
.x3d_c00384{left:557.333333pt;}
.xfb_c00384{left:558.400000pt;}
.xa3_c00384{left:561.600000pt;}
.x8f_c00384{left:564.533333pt;}
.xb8_c00384{left:567.333333pt;}
.xb1_c00384{left:568.266667pt;}
.xec_c00384{left:569.733333pt;}
.x10_c00384{left:571.466667pt;}
.x23_c00384{left:572.666667pt;}
.x32_c00384{left:574.400000pt;}
.xc1_c00384{left:576.666667pt;}
.x5a_c00384{left:577.600000pt;}
.x90_c00384{left:580.533333pt;}
.x3e_c00384{left:582.000000pt;}
.x4b_c00384{left:583.333333pt;}
.x11_c00384{left:587.466667pt;}
.x82_c00384{left:589.200000pt;}
.x91_c00384{left:591.466667pt;}
.x6a_c00384{left:593.600000pt;}
.x5b_c00384{left:594.933333pt;}
.xa4_c00384{left:596.133333pt;}
.xed_c00384{left:598.133333pt;}
.x24_c00384{left:600.533333pt;}
.xb2_c00384{left:603.200000pt;}
.x4c_c00384{left:607.066667pt;}
.x6b_c00384{left:608.933333pt;}
.xfc_c00384{left:610.000000pt;}
.x33_c00384{left:612.133333pt;}
.xb9_c00384{left:614.000000pt;}
.x83_c00384{left:619.600000pt;}
.x5c_c00384{left:620.800000pt;}
.xe5_c00384{left:622.800000pt;}
.xdb_c00384{left:626.533333pt;}
.x4d_c00384{left:636.133333pt;}
.x25_c00384{left:637.066667pt;}
.x9d_c00384{left:638.133333pt;}
.xcf_c00384{left:641.333333pt;}
.xd6_c00384{left:644.400000pt;}
.x75_c00384{left:646.933333pt;}
.x5d_c00384{left:649.866667pt;}
.x92_c00384{left:651.333333pt;}
.x26_c00384{left:653.066667pt;}
.x3f_c00384{left:657.200000pt;}
.x4e_c00384{left:658.533333pt;}
.x84_c00384{left:659.866667pt;}
.x34_c00384{left:661.066667pt;}
.x93_c00384{left:662.266667pt;}
.x12_c00384{left:663.600000pt;}
.xba_c00384{left:669.733333pt;}
.xa5_c00384{left:671.333333pt;}
.x76_c00384{left:672.533333pt;}
.x35_c00384{left:674.800000pt;}
.x27_c00384{left:679.600000pt;}
.xb3_c00384{left:682.266667pt;}
.xbb_c00384{left:684.800000pt;}
.xdc_c00384{left:686.400000pt;}
.x40_c00384{left:687.600000pt;}
.x5e_c00384{left:691.200000pt;}
.x13_c00384{left:694.266667pt;}
.x4f_c00384{left:696.000000pt;}
.x28_c00384{left:698.533333pt;}
.xeb_c00384{left:699.600000pt;}
.xd0_c00384{left:701.200000pt;}
.xa6_c00384{left:703.333333pt;}
.x6c_c00384{left:705.466667pt;}
.x41_c00384{left:708.666667pt;}
.x94_c00384{left:710.000000pt;}
.x14_c00384{left:711.200000pt;}
.xa7_c00384{left:713.600000pt;}
.x36_c00384{left:720.533333pt;}
.xe6_c00384{left:721.733333pt;}
.x85_c00384{left:726.800000pt;}
.x15_c00384{left:735.200000pt;}
}





/* 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_c00385 {
    display:none;
  }
  .loading-indicator_c00385.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00385 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_c00385 { 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_c00385" -> "#page-container .classname_c00385")
 */
.pf_c00385 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00385 { /* 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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00385 { /* 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_c00385 { /* 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_c00385 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00385 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00385 {overflow:visible;}
  }
}
.c_c00385 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00385 { /* 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_c00385:after { /* webkit #35443 */
  content: '';
}
.t_c00385:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00385 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 */
}
.__c00385 { /* 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_c00385 { /* info for Javascript */
  display:none;
}
.l_c00385 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00385 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00385 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00385: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_c00385 {
    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_c00385.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00385.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_c00385 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00385{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00385;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.000000;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;}
.m1_c00385{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls0_c00385{letter-spacing:0.000000px;}
.sc__c00385{text-shadow:none;}
.sc0_c00385{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__c00385{-webkit-text-stroke:0px transparent;}
.sc0_c00385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00385{word-spacing:0.000000px;}
.fc0_c00385{color:transparent;}
.fs0_c00385{font-size:36.000000px;}
.fs1_c00385{font-size:60.000000px;}
.y0_c00385{bottom:0.000000px;}
.y1_c00385{bottom:34.500000px;}
.y2_c00385{bottom:607.650000px;}
.h2_c00385{height:36.000000px;}
.h3_c00385{height:60.000000px;}
.h0_c00385{height:1166.759949px;}
.h1_c00385{height:1167.000000px;}
.w1_c00385{width:913.500000px;}
.w0_c00385{width:913.679993px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:787.350000px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls0_c00385{letter-spacing:0.000000pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs0_c00385{font-size:32.000000pt;}
.fs1_c00385{font-size:53.333333pt;}
.y0_c00385{bottom:0.000000pt;}
.y1_c00385{bottom:30.666667pt;}
.y2_c00385{bottom:540.133333pt;}
.h2_c00385{height:32.000000pt;}
.h3_c00385{height:53.333333pt;}
.h0_c00385{height:1037.119955pt;}
.h1_c00385{height:1037.333333pt;}
.w1_c00385{width:812.000000pt;}
.w0_c00385{width:812.159993pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:699.866667pt;}
}





/* 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_c00386 {
    display:none;
  }
  .loading-indicator_c00386.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00386 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_c00386 { 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_c00386" -> "#page-container .classname_c00386")
 */
.pf_c00386 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00386 { /* 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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00386 { /* 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_c00386 { /* 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_c00386 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00386 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00386 {overflow:visible;}
  }
}
.c_c00386 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00386 { /* 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_c00386:after { /* webkit #35443 */
  content: '';
}
.t_c00386:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00386 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 */
}
.__c00386 { /* 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_c00386 { /* info for Javascript */
  display:none;
}
.l_c00386 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00386 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00386 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00386: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_c00386 {
    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_c00386.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00386.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_c00386 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00386{font-family:sans-serif;visibility:hidden;}
.sc__c00386{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
}
.y0_c00386{bottom:0.000000px;}
.h0_c00386{height:1166.759949px;}
.h1_c00386{height:1167.000000px;}
.w1_c00386{width:913.500000px;}
.w0_c00386{width:913.679993px;}
.x0_c00386{left:0.000000px;}
@media print{
.y0_c00386{bottom:0.000000pt;}
.h0_c00386{height:1037.119955pt;}
.h1_c00386{height:1037.333333pt;}
.w1_c00386{width:812.000000pt;}
.w0_c00386{width:812.159993pt;}
.x0_c00386{left:0.000000pt;}
}





/* 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_c00387 {
    display:none;
  }
  .loading-indicator_c00387.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00387 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_c00387 { 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_c00387" -> "#page-container .classname_c00387")
 */
.pf_c00387 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00387 { /* 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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00387 { /* 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_c00387 { /* 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_c00387 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00387 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00387 {overflow:visible;}
  }
}
.c_c00387 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00387 { /* 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_c00387:after { /* webkit #35443 */
  content: '';
}
.t_c00387:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00387 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 */
}
.__c00387 { /* 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_c00387 { /* info for Javascript */
  display:none;
}
.l_c00387 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00387 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00387 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00387: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_c00387 {
    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_c00387.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00387.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_c00387 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00387{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00387;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.000000;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;}
.m41_c00387{transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053250,0.000000,0.000000,0.250000,0,0);}
.m31_c00387{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00387{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00387{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m53_c00387{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00387{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m70_c00387{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00387{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00387{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00387{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00387{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00387{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m40_c00387{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m26_c00387{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00387{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m78_c00387{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m19_c00387{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00387{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00387{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m87_c00387{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m69_c00387{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00387{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m14_c00387{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m21_c00387{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00387{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00387{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m79_c00387{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m71_c00387{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m85_c00387{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00387{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00387{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mf_c00387{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00387{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m52_c00387{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m92_c00387{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00387{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m20_c00387{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m34_c00387{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00387{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m60_c00387{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m74_c00387{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m25_c00387{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma_c00387{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m93_c00387{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00387{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m47_c00387{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00387{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m46_c00387{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00387{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00387{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m63_c00387{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m17_c00387{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00387{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m55_c00387{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00387{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m37_c00387{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m56_c00387{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00387{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m38_c00387{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28_c00387{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10_c00387{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m33_c00387{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m57_c00387{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m45_c00387{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00387{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00387{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m91_c00387{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11_c00387{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m13_c00387{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m65_c00387{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m84_c00387{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m73_c00387{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00387{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00387{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m35_c00387{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00387{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m61_c00387{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7_c00387{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m18_c00387{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m36_c00387{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00387{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00387{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m51_c00387{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.me_c00387{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00387{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m76_c00387{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m64_c00387{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00387{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m66_c00387{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m80_c00387{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m24_c00387{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m23_c00387{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c00387{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m72_c00387{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m22_c00387{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m48_c00387{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00387{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m43_c00387{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00387{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m12_c00387{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m15_c00387{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00387{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m82_c00387{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m94_c00387{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m30_c00387{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m32_c00387{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m49_c00387{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00387{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m58_c00387{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m89_c00387{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00387{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m29_c00387{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m88_c00387{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00387{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m27_c00387{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00387{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m59_c00387{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00387{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m81_c00387{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m67_c00387{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00387{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00387{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00387{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m68_c00387{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m39_c00387{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m83_c00387{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mb_c00387{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m42_c00387{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00387{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00387{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m86_c00387{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m90_c00387{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m50_c00387{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00387{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00387{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00387{transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330750,0.000000,0.000000,0.250000,0,0);}
.m75_c00387{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m62_c00387{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m77_c00387{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m1_c00387{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00387{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls0_c00387{letter-spacing:0.000000px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{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__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00387{word-spacing:-0.771084px;}
.ws8_c00387{word-spacing:0.000000px;}
.ws2_c00387{word-spacing:1.500000px;}
.ws5_c00387{word-spacing:2.786317px;}
.ws6_c00387{word-spacing:5.750000px;}
.ws4_c00387{word-spacing:6.074215px;}
.ws3_c00387{word-spacing:6.428571px;}
.ws1_c00387{word-spacing:6.457831px;}
.ws0_c00387{word-spacing:9.000000px;}
.fc0_c00387{color:transparent;}
.fs0_c00387{font-size:54.000000px;}
.y0_c00387{bottom:0.000000px;}
.y23_c00387{bottom:137.550000px;}
.y22_c00387{bottom:158.100000px;}
.y21_c00387{bottom:177.900000px;}
.y20_c00387{bottom:198.000000px;}
.y1f_c00387{bottom:217.350000px;}
.y1e_c00387{bottom:237.900000px;}
.y1d_c00387{bottom:257.700000px;}
.y1c_c00387{bottom:277.500000px;}
.y1b_c00387{bottom:297.300000px;}
.y1a_c00387{bottom:330.900000px;}
.y19_c00387{bottom:350.700000px;}
.y18_c00387{bottom:370.500000px;}
.y17_c00387{bottom:390.450000px;}
.y16_c00387{bottom:410.550000px;}
.y15_c00387{bottom:430.350000px;}
.y14_c00387{bottom:450.900000px;}
.y13_c00387{bottom:470.700000px;}
.y12_c00387{bottom:490.500000px;}
.y11_c00387{bottom:510.300000px;}
.y10_c00387{bottom:530.100000px;}
.yf_c00387{bottom:550.200000px;}
.ye_c00387{bottom:570.000000px;}
.yd_c00387{bottom:590.100000px;}
.yc_c00387{bottom:609.900000px;}
.yb_c00387{bottom:630.000000px;}
.ya_c00387{bottom:649.800000px;}
.y9_c00387{bottom:670.050000px;}
.y8_c00387{bottom:690.150000px;}
.y7_c00387{bottom:709.950000px;}
.y6_c00387{bottom:730.050000px;}
.y5_c00387{bottom:749.850000px;}
.y4_c00387{bottom:769.650000px;}
.y3_c00387{bottom:802.800000px;}
.y2_c00387{bottom:835.950000px;}
.y1_c00387{bottom:1038.900000px;}
.h2_c00387{height:54.000000px;}
.h0_c00387{height:1166.759949px;}
.h1_c00387{height:1167.000000px;}
.w1_c00387{width:913.500000px;}
.w0_c00387{width:913.679993px;}
.x0_c00387{left:0.000000px;}
.xfb_c00387{left:87.000000px;}
.xe9_c00387{left:88.650000px;}
.x89_c00387{left:89.700000px;}
.x68_c00387{left:90.750000px;}
.x39_c00387{left:92.100000px;}
.xc_c00387{left:93.600000px;}
.x94_c00387{left:108.150000px;}
.x3a_c00387{left:110.400000px;}
.x77_c00387{left:115.200000px;}
.x105_c00387{left:116.250000px;}
.xb3_c00387{left:117.750000px;}
.xda_c00387{left:119.850000px;}
.x53_c00387{left:122.700000px;}
.x60_c00387{left:124.050000px;}
.xa7_c00387{left:129.300000px;}
.x95_c00387{left:133.650000px;}
.x8a_c00387{left:136.500000px;}
.xe0_c00387{left:138.150000px;}
.xd0_c00387{left:141.000000px;}
.x1d_c00387{left:142.950000px;}
.x2a_c00387{left:144.150000px;}
.x8b_c00387{left:148.050000px;}
.xca_c00387{left:149.250000px;}
.x45_c00387{left:152.400000px;}
.x69_c00387{left:153.750000px;}
.x1e_c00387{left:155.250000px;}
.xf3_c00387{left:158.850000px;}
.x51_c00387{left:163.050000px;}
.x110_c00387{left:165.000000px;}
.xec_c00387{left:166.350000px;}
.xc1_c00387{left:168.600000px;}
.xd_c00387{left:171.750000px;}
.x10a_c00387{left:173.850000px;}
.x3b_c00387{left:175.200000px;}
.x6a_c00387{left:180.450000px;}
.x2b_c00387{left:181.950000px;}
.x78_c00387{left:183.600000px;}
.x9e_c00387{left:185.100000px;}
.x7d_c00387{left:186.900000px;}
.xea_c00387{left:189.150000px;}
.xf4_c00387{left:190.200000px;}
.xb4_c00387{left:192.000000px;}
.x10b_c00387{left:193.950000px;}
.x54_c00387{left:196.050000px;}
.x61_c00387{left:197.850000px;}
.x102_c00387{left:198.900000px;}
.xa8_c00387{left:200.100000px;}
.x46_c00387{left:201.300000px;}
.x3c_c00387{left:204.300000px;}
.x9f_c00387{left:206.400000px;}
.x106_c00387{left:209.550000px;}
.x6b_c00387{left:212.100000px;}
.x7e_c00387{left:213.150000px;}
.xb9_c00387{left:214.200000px;}
.xc2_c00387{left:217.950000px;}
.x2c_c00387{left:220.500000px;}
.xed_c00387{left:222.150000px;}
.x1f_c00387{left:223.350000px;}
.x47_c00387{left:226.200000px;}
.xa0_c00387{left:230.100000px;}
.x96_c00387{left:231.600000px;}
.xe_c00387{left:233.250000px;}
.xf5_c00387{left:236.250000px;}
.x6c_c00387{left:238.350000px;}
.xa9_c00387{left:241.500000px;}
.x55_c00387{left:244.650000px;}
.xdb_c00387{left:246.150000px;}
.xd1_c00387{left:249.750000px;}
.xba_c00387{left:250.950000px;}
.x52_c00387{left:254.100000px;}
.xc3_c00387{left:256.050000px;}
.x3d_c00387{left:257.250000px;}
.xa1_c00387{left:261.450000px;}
.x6d_c00387{left:263.550000px;}
.xaa_c00387{left:264.600000px;}
.x2d_c00387{left:265.800000px;}
.x4_c00387{left:268.200000px;}
.x56_c00387{left:269.550000px;}
.xf_c00387{left:272.100000px;}
.x20_c00387{left:274.500000px;}
.x48_c00387{left:279.900000px;}
.x2e_c00387{left:287.700000px;}
.x8c_c00387{left:288.750000px;}
.xe1_c00387{left:291.450000px;}
.xab_c00387{left:292.650000px;}
.x111_c00387{left:295.050000px;}
.x57_c00387{left:296.550000px;}
.xee_c00387{left:299.250000px;}
.x79_c00387{left:300.600000px;}
.x62_c00387{left:302.550000px;}
.x116_c00387{left:303.600000px;}
.xcb_c00387{left:305.700000px;}
.xf6_c00387{left:307.200000px;}
.x3e_c00387{left:309.150000px;}
.x49_c00387{left:311.250000px;}
.x10_c00387{left:312.750000px;}
.x58_c00387{left:314.550000px;}
.xdc_c00387{left:321.000000px;}
.xd2_c00387{left:323.250000px;}
.x6e_c00387{left:325.050000px;}
.x5_c00387{left:326.550000px;}
.x11_c00387{left:328.650000px;}
.xf7_c00387{left:329.850000px;}
.xbb_c00387{left:333.300000px;}
.xa2_c00387{left:336.000000px;}
.xac_c00387{left:339.450000px;}
.xcc_c00387{left:341.400000px;}
.x6f_c00387{left:344.850000px;}
.x3f_c00387{left:348.450000px;}
.xc4_c00387{left:349.950000px;}
.x2_c00387{left:351.750000px;}
.x97_c00387{left:353.250000px;}
.x21_c00387{left:357.600000px;}
.x112_c00387{left:360.600000px;}
.x7f_c00387{left:361.800000px;}
.x103_c00387{left:365.250000px;}
.xcd_c00387{left:366.300000px;}
.xe2_c00387{left:367.350000px;}
.xb5_c00387{left:368.700000px;}
.xef_c00387{left:370.050000px;}
.x12_c00387{left:373.650000px;}
.x22_c00387{left:375.300000px;}
.x2f_c00387{left:379.200000px;}
.x40_c00387{left:381.150000px;}
.xd3_c00387{left:382.350000px;}
.x6_c00387{left:383.850000px;}
.xf8_c00387{left:385.950000px;}
.xc5_c00387{left:387.450000px;}
.x113_c00387{left:391.950000px;}
.x80_c00387{left:393.900000px;}
.x13_c00387{left:395.550000px;}
.x4a_c00387{left:396.900000px;}
.x30_c00387{left:400.050000px;}
.x7_c00387{left:401.550000px;}
.xfc_c00387{left:407.400000px;}
.xbc_c00387{left:408.600000px;}
.x70_c00387{left:410.400000px;}
.xd4_c00387{left:413.700000px;}
.x1_c00387{left:415.050000px;}
.xf0_c00387{left:416.850000px;}
.xad_c00387{left:418.650000px;}
.xeb_c00387{left:420.900000px;}
.x107_c00387{left:421.950000px;}
.x14_c00387{left:423.600000px;}
.x7a_c00387{left:427.050000px;}
.x114_c00387{left:428.250000px;}
.x63_c00387{left:434.250000px;}
.x3_c00387{left:436.050000px;}
.x71_c00387{left:438.450000px;}
.x81_c00387{left:439.950000px;}
.xdd_c00387{left:442.800000px;}
.x104_c00387{left:445.200000px;}
.x4b_c00387{left:448.800000px;}
.x23_c00387{left:451.200000px;}
.x98_c00387{left:452.700000px;}
.x31_c00387{left:454.050000px;}
.xb6_c00387{left:456.600000px;}
.xd5_c00387{left:460.500000px;}
.x10c_c00387{left:462.600000px;}
.x8_c00387{left:466.650000px;}
.x15_c00387{left:468.600000px;}
.xfd_c00387{left:470.700000px;}
.x8d_c00387{left:471.750000px;}
.x41_c00387{left:475.350000px;}
.x72_c00387{left:478.050000px;}
.x64_c00387{left:480.000000px;}
.xa3_c00387{left:481.050000px;}
.x10d_c00387{left:482.100000px;}
.xe3_c00387{left:483.300000px;}
.x9_c00387{left:485.700000px;}
.xbd_c00387{left:488.250000px;}
.x8e_c00387{left:490.050000px;}
.xf1_c00387{left:491.400000px;}
.xd6_c00387{left:492.900000px;}
.x82_c00387{left:493.950000px;}
.x73_c00387{left:497.550000px;}
.x4c_c00387{left:499.950000px;}
.x100_c00387{left:501.900000px;}
.x16_c00387{left:503.850000px;}
.x108_c00387{left:505.050000px;}
.x99_c00387{left:506.700000px;}
.xbe_c00387{left:508.350000px;}
.x24_c00387{left:509.850000px;}
.x8f_c00387{left:512.700000px;}
.x83_c00387{left:514.500000px;}
.x59_c00387{left:515.850000px;}
.xd7_c00387{left:520.650000px;}
.xa_c00387{left:522.750000px;}
.x65_c00387{left:524.250000px;}
.x9a_c00387{left:526.800000px;}
.xc6_c00387{left:528.150000px;}
.x5a_c00387{left:531.300000px;}
.xae_c00387{left:532.350000px;}
.xe4_c00387{left:534.000000px;}
.xfe_c00387{left:536.250000px;}
.xb_c00387{left:540.000000px;}
.x4d_c00387{left:542.100000px;}
.x84_c00387{left:543.300000px;}
.x32_c00387{left:547.650000px;}
.x17_c00387{left:550.650000px;}
.x25_c00387{left:552.750000px;}
.xe5_c00387{left:553.800000px;}
.x9b_c00387{left:554.850000px;}
.x42_c00387{left:558.150000px;}
.x90_c00387{left:561.000000px;}
.xe6_c00387{left:565.650000px;}
.x33_c00387{left:567.750000px;}
.xaf_c00387{left:569.100000px;}
.xde_c00387{left:571.050000px;}
.x66_c00387{left:576.450000px;}
.xc7_c00387{left:577.800000px;}
.x18_c00387{left:579.150000px;}
.x4e_c00387{left:581.700000px;}
.x85_c00387{left:582.900000px;}
.xd8_c00387{left:586.950000px;}
.x91_c00387{left:590.100000px;}
.x43_c00387{left:592.650000px;}
.x34_c00387{left:594.000000px;}
.xb7_c00387{left:596.400000px;}
.xbf_c00387{left:597.900000px;}
.x26_c00387{left:599.850000px;}
.xa4_c00387{left:602.400000px;}
.x44_c00387{left:604.200000px;}
.x115_c00387{left:605.700000px;}
.xd9_c00387{left:607.800000px;}
.x92_c00387{left:609.600000px;}
.x101_c00387{left:611.250000px;}
.xe7_c00387{left:612.450000px;}
.xc8_c00387{left:617.400000px;}
.x86_c00387{left:619.950000px;}
.x5b_c00387{left:621.300000px;}
.xf9_c00387{left:623.550000px;}
.x19_c00387{left:624.900000px;}
.x67_c00387{left:626.550000px;}
.xdf_c00387{left:629.400000px;}
.xb0_c00387{left:632.850000px;}
.x35_c00387{left:634.350000px;}
.x93_c00387{left:636.900000px;}
.x5c_c00387{left:638.550000px;}
.xce_c00387{left:640.350000px;}
.x7b_c00387{left:641.550000px;}
.x27_c00387{left:642.750000px;}
.x87_c00387{left:644.850000px;}
.x109_c00387{left:646.200000px;}
.x1a_c00387{left:648.300000px;}
.xe8_c00387{left:654.150000px;}
.x4f_c00387{left:655.500000px;}
.xb8_c00387{left:659.100000px;}
.x36_c00387{left:661.350000px;}
.x74_c00387{left:663.150000px;}
.x9c_c00387{left:669.300000px;}
.x7c_c00387{left:670.650000px;}
.x88_c00387{left:672.900000px;}
.xfa_c00387{left:676.800000px;}
.x50_c00387{left:678.900000px;}
.xcf_c00387{left:679.950000px;}
.x37_c00387{left:681.150000px;}
.xa5_c00387{left:682.950000px;}
.x5d_c00387{left:685.050000px;}
.xb1_c00387{left:687.300000px;}
.x75_c00387{left:691.650000px;}
.x10e_c00387{left:692.850000px;}
.xf2_c00387{left:693.900000px;}
.x28_c00387{left:698.550000px;}
.x5e_c00387{left:705.150000px;}
.x1b_c00387{left:707.400000px;}
.x38_c00387{left:709.200000px;}
.xc9_c00387{left:713.100000px;}
.x29_c00387{left:715.500000px;}
.xa6_c00387{left:720.750000px;}
.x9d_c00387{left:724.350000px;}
.xb2_c00387{left:727.200000px;}
.x10f_c00387{left:728.400000px;}
.x1c_c00387{left:729.750000px;}
.x5f_c00387{left:731.100000px;}
.xc0_c00387{left:734.250000px;}
.x76_c00387{left:736.950000px;}
.xff_c00387{left:739.650000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws7_c00387{word-spacing:-0.685408pt;}
.ws8_c00387{word-spacing:0.000000pt;}
.ws2_c00387{word-spacing:1.333333pt;}
.ws5_c00387{word-spacing:2.476726pt;}
.ws6_c00387{word-spacing:5.111111pt;}
.ws4_c00387{word-spacing:5.399302pt;}
.ws3_c00387{word-spacing:5.714286pt;}
.ws1_c00387{word-spacing:5.740295pt;}
.ws0_c00387{word-spacing:8.000000pt;}
.fs0_c00387{font-size:48.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y23_c00387{bottom:122.266667pt;}
.y22_c00387{bottom:140.533333pt;}
.y21_c00387{bottom:158.133333pt;}
.y20_c00387{bottom:176.000000pt;}
.y1f_c00387{bottom:193.200000pt;}
.y1e_c00387{bottom:211.466667pt;}
.y1d_c00387{bottom:229.066667pt;}
.y1c_c00387{bottom:246.666667pt;}
.y1b_c00387{bottom:264.266667pt;}
.y1a_c00387{bottom:294.133333pt;}
.y19_c00387{bottom:311.733333pt;}
.y18_c00387{bottom:329.333333pt;}
.y17_c00387{bottom:347.066667pt;}
.y16_c00387{bottom:364.933333pt;}
.y15_c00387{bottom:382.533333pt;}
.y14_c00387{bottom:400.800000pt;}
.y13_c00387{bottom:418.400000pt;}
.y12_c00387{bottom:436.000000pt;}
.y11_c00387{bottom:453.600000pt;}
.y10_c00387{bottom:471.200000pt;}
.yf_c00387{bottom:489.066667pt;}
.ye_c00387{bottom:506.666667pt;}
.yd_c00387{bottom:524.533333pt;}
.yc_c00387{bottom:542.133333pt;}
.yb_c00387{bottom:560.000000pt;}
.ya_c00387{bottom:577.600000pt;}
.y9_c00387{bottom:595.600000pt;}
.y8_c00387{bottom:613.466667pt;}
.y7_c00387{bottom:631.066667pt;}
.y6_c00387{bottom:648.933333pt;}
.y5_c00387{bottom:666.533333pt;}
.y4_c00387{bottom:684.133333pt;}
.y3_c00387{bottom:713.600000pt;}
.y2_c00387{bottom:743.066667pt;}
.y1_c00387{bottom:923.466667pt;}
.h2_c00387{height:48.000000pt;}
.h0_c00387{height:1037.119955pt;}
.h1_c00387{height:1037.333333pt;}
.w1_c00387{width:812.000000pt;}
.w0_c00387{width:812.159993pt;}
.x0_c00387{left:0.000000pt;}
.xfb_c00387{left:77.333333pt;}
.xe9_c00387{left:78.800000pt;}
.x89_c00387{left:79.733333pt;}
.x68_c00387{left:80.666667pt;}
.x39_c00387{left:81.866667pt;}
.xc_c00387{left:83.200000pt;}
.x94_c00387{left:96.133333pt;}
.x3a_c00387{left:98.133333pt;}
.x77_c00387{left:102.400000pt;}
.x105_c00387{left:103.333333pt;}
.xb3_c00387{left:104.666667pt;}
.xda_c00387{left:106.533333pt;}
.x53_c00387{left:109.066667pt;}
.x60_c00387{left:110.266667pt;}
.xa7_c00387{left:114.933333pt;}
.x95_c00387{left:118.800000pt;}
.x8a_c00387{left:121.333333pt;}
.xe0_c00387{left:122.800000pt;}
.xd0_c00387{left:125.333333pt;}
.x1d_c00387{left:127.066667pt;}
.x2a_c00387{left:128.133333pt;}
.x8b_c00387{left:131.600000pt;}
.xca_c00387{left:132.666667pt;}
.x45_c00387{left:135.466667pt;}
.x69_c00387{left:136.666667pt;}
.x1e_c00387{left:138.000000pt;}
.xf3_c00387{left:141.200000pt;}
.x51_c00387{left:144.933333pt;}
.x110_c00387{left:146.666667pt;}
.xec_c00387{left:147.866667pt;}
.xc1_c00387{left:149.866667pt;}
.xd_c00387{left:152.666667pt;}
.x10a_c00387{left:154.533333pt;}
.x3b_c00387{left:155.733333pt;}
.x6a_c00387{left:160.400000pt;}
.x2b_c00387{left:161.733333pt;}
.x78_c00387{left:163.200000pt;}
.x9e_c00387{left:164.533333pt;}
.x7d_c00387{left:166.133333pt;}
.xea_c00387{left:168.133333pt;}
.xf4_c00387{left:169.066667pt;}
.xb4_c00387{left:170.666667pt;}
.x10b_c00387{left:172.400000pt;}
.x54_c00387{left:174.266667pt;}
.x61_c00387{left:175.866667pt;}
.x102_c00387{left:176.800000pt;}
.xa8_c00387{left:177.866667pt;}
.x46_c00387{left:178.933333pt;}
.x3c_c00387{left:181.600000pt;}
.x9f_c00387{left:183.466667pt;}
.x106_c00387{left:186.266667pt;}
.x6b_c00387{left:188.533333pt;}
.x7e_c00387{left:189.466667pt;}
.xb9_c00387{left:190.400000pt;}
.xc2_c00387{left:193.733333pt;}
.x2c_c00387{left:196.000000pt;}
.xed_c00387{left:197.466667pt;}
.x1f_c00387{left:198.533333pt;}
.x47_c00387{left:201.066667pt;}
.xa0_c00387{left:204.533333pt;}
.x96_c00387{left:205.866667pt;}
.xe_c00387{left:207.333333pt;}
.xf5_c00387{left:210.000000pt;}
.x6c_c00387{left:211.866667pt;}
.xa9_c00387{left:214.666667pt;}
.x55_c00387{left:217.466667pt;}
.xdb_c00387{left:218.800000pt;}
.xd1_c00387{left:222.000000pt;}
.xba_c00387{left:223.066667pt;}
.x52_c00387{left:225.866667pt;}
.xc3_c00387{left:227.600000pt;}
.x3d_c00387{left:228.666667pt;}
.xa1_c00387{left:232.400000pt;}
.x6d_c00387{left:234.266667pt;}
.xaa_c00387{left:235.200000pt;}
.x2d_c00387{left:236.266667pt;}
.x4_c00387{left:238.400000pt;}
.x56_c00387{left:239.600000pt;}
.xf_c00387{left:241.866667pt;}
.x20_c00387{left:244.000000pt;}
.x48_c00387{left:248.800000pt;}
.x2e_c00387{left:255.733333pt;}
.x8c_c00387{left:256.666667pt;}
.xe1_c00387{left:259.066667pt;}
.xab_c00387{left:260.133333pt;}
.x111_c00387{left:262.266667pt;}
.x57_c00387{left:263.600000pt;}
.xee_c00387{left:266.000000pt;}
.x79_c00387{left:267.200000pt;}
.x62_c00387{left:268.933333pt;}
.x116_c00387{left:269.866667pt;}
.xcb_c00387{left:271.733333pt;}
.xf6_c00387{left:273.066667pt;}
.x3e_c00387{left:274.800000pt;}
.x49_c00387{left:276.666667pt;}
.x10_c00387{left:278.000000pt;}
.x58_c00387{left:279.600000pt;}
.xdc_c00387{left:285.333333pt;}
.xd2_c00387{left:287.333333pt;}
.x6e_c00387{left:288.933333pt;}
.x5_c00387{left:290.266667pt;}
.x11_c00387{left:292.133333pt;}
.xf7_c00387{left:293.200000pt;}
.xbb_c00387{left:296.266667pt;}
.xa2_c00387{left:298.666667pt;}
.xac_c00387{left:301.733333pt;}
.xcc_c00387{left:303.466667pt;}
.x6f_c00387{left:306.533333pt;}
.x3f_c00387{left:309.733333pt;}
.xc4_c00387{left:311.066667pt;}
.x2_c00387{left:312.666667pt;}
.x97_c00387{left:314.000000pt;}
.x21_c00387{left:317.866667pt;}
.x112_c00387{left:320.533333pt;}
.x7f_c00387{left:321.600000pt;}
.x103_c00387{left:324.666667pt;}
.xcd_c00387{left:325.600000pt;}
.xe2_c00387{left:326.533333pt;}
.xb5_c00387{left:327.733333pt;}
.xef_c00387{left:328.933333pt;}
.x12_c00387{left:332.133333pt;}
.x22_c00387{left:333.600000pt;}
.x2f_c00387{left:337.066667pt;}
.x40_c00387{left:338.800000pt;}
.xd3_c00387{left:339.866667pt;}
.x6_c00387{left:341.200000pt;}
.xf8_c00387{left:343.066667pt;}
.xc5_c00387{left:344.400000pt;}
.x113_c00387{left:348.400000pt;}
.x80_c00387{left:350.133333pt;}
.x13_c00387{left:351.600000pt;}
.x4a_c00387{left:352.800000pt;}
.x30_c00387{left:355.600000pt;}
.x7_c00387{left:356.933333pt;}
.xfc_c00387{left:362.133333pt;}
.xbc_c00387{left:363.200000pt;}
.x70_c00387{left:364.800000pt;}
.xd4_c00387{left:367.733333pt;}
.x1_c00387{left:368.933333pt;}
.xf0_c00387{left:370.533333pt;}
.xad_c00387{left:372.133333pt;}
.xeb_c00387{left:374.133333pt;}
.x107_c00387{left:375.066667pt;}
.x14_c00387{left:376.533333pt;}
.x7a_c00387{left:379.600000pt;}
.x114_c00387{left:380.666667pt;}
.x63_c00387{left:386.000000pt;}
.x3_c00387{left:387.600000pt;}
.x71_c00387{left:389.733333pt;}
.x81_c00387{left:391.066667pt;}
.xdd_c00387{left:393.600000pt;}
.x104_c00387{left:395.733333pt;}
.x4b_c00387{left:398.933333pt;}
.x23_c00387{left:401.066667pt;}
.x98_c00387{left:402.400000pt;}
.x31_c00387{left:403.600000pt;}
.xb6_c00387{left:405.866667pt;}
.xd5_c00387{left:409.333333pt;}
.x10c_c00387{left:411.200000pt;}
.x8_c00387{left:414.800000pt;}
.x15_c00387{left:416.533333pt;}
.xfd_c00387{left:418.400000pt;}
.x8d_c00387{left:419.333333pt;}
.x41_c00387{left:422.533333pt;}
.x72_c00387{left:424.933333pt;}
.x64_c00387{left:426.666667pt;}
.xa3_c00387{left:427.600000pt;}
.x10d_c00387{left:428.533333pt;}
.xe3_c00387{left:429.600000pt;}
.x9_c00387{left:431.733333pt;}
.xbd_c00387{left:434.000000pt;}
.x8e_c00387{left:435.600000pt;}
.xf1_c00387{left:436.800000pt;}
.xd6_c00387{left:438.133333pt;}
.x82_c00387{left:439.066667pt;}
.x73_c00387{left:442.266667pt;}
.x4c_c00387{left:444.400000pt;}
.x100_c00387{left:446.133333pt;}
.x16_c00387{left:447.866667pt;}
.x108_c00387{left:448.933333pt;}
.x99_c00387{left:450.400000pt;}
.xbe_c00387{left:451.866667pt;}
.x24_c00387{left:453.200000pt;}
.x8f_c00387{left:455.733333pt;}
.x83_c00387{left:457.333333pt;}
.x59_c00387{left:458.533333pt;}
.xd7_c00387{left:462.800000pt;}
.xa_c00387{left:464.666667pt;}
.x65_c00387{left:466.000000pt;}
.x9a_c00387{left:468.266667pt;}
.xc6_c00387{left:469.466667pt;}
.x5a_c00387{left:472.266667pt;}
.xae_c00387{left:473.200000pt;}
.xe4_c00387{left:474.666667pt;}
.xfe_c00387{left:476.666667pt;}
.xb_c00387{left:480.000000pt;}
.x4d_c00387{left:481.866667pt;}
.x84_c00387{left:482.933333pt;}
.x32_c00387{left:486.800000pt;}
.x17_c00387{left:489.466667pt;}
.x25_c00387{left:491.333333pt;}
.xe5_c00387{left:492.266667pt;}
.x9b_c00387{left:493.200000pt;}
.x42_c00387{left:496.133333pt;}
.x90_c00387{left:498.666667pt;}
.xe6_c00387{left:502.800000pt;}
.x33_c00387{left:504.666667pt;}
.xaf_c00387{left:505.866667pt;}
.xde_c00387{left:507.600000pt;}
.x66_c00387{left:512.400000pt;}
.xc7_c00387{left:513.600000pt;}
.x18_c00387{left:514.800000pt;}
.x4e_c00387{left:517.066667pt;}
.x85_c00387{left:518.133333pt;}
.xd8_c00387{left:521.733333pt;}
.x91_c00387{left:524.533333pt;}
.x43_c00387{left:526.800000pt;}
.x34_c00387{left:528.000000pt;}
.xb7_c00387{left:530.133333pt;}
.xbf_c00387{left:531.466667pt;}
.x26_c00387{left:533.200000pt;}
.xa4_c00387{left:535.466667pt;}
.x44_c00387{left:537.066667pt;}
.x115_c00387{left:538.400000pt;}
.xd9_c00387{left:540.266667pt;}
.x92_c00387{left:541.866667pt;}
.x101_c00387{left:543.333333pt;}
.xe7_c00387{left:544.400000pt;}
.xc8_c00387{left:548.800000pt;}
.x86_c00387{left:551.066667pt;}
.x5b_c00387{left:552.266667pt;}
.xf9_c00387{left:554.266667pt;}
.x19_c00387{left:555.466667pt;}
.x67_c00387{left:556.933333pt;}
.xdf_c00387{left:559.466667pt;}
.xb0_c00387{left:562.533333pt;}
.x35_c00387{left:563.866667pt;}
.x93_c00387{left:566.133333pt;}
.x5c_c00387{left:567.600000pt;}
.xce_c00387{left:569.200000pt;}
.x7b_c00387{left:570.266667pt;}
.x27_c00387{left:571.333333pt;}
.x87_c00387{left:573.200000pt;}
.x109_c00387{left:574.400000pt;}
.x1a_c00387{left:576.266667pt;}
.xe8_c00387{left:581.466667pt;}
.x4f_c00387{left:582.666667pt;}
.xb8_c00387{left:585.866667pt;}
.x36_c00387{left:587.866667pt;}
.x74_c00387{left:589.466667pt;}
.x9c_c00387{left:594.933333pt;}
.x7c_c00387{left:596.133333pt;}
.x88_c00387{left:598.133333pt;}
.xfa_c00387{left:601.600000pt;}
.x50_c00387{left:603.466667pt;}
.xcf_c00387{left:604.400000pt;}
.x37_c00387{left:605.466667pt;}
.xa5_c00387{left:607.066667pt;}
.x5d_c00387{left:608.933333pt;}
.xb1_c00387{left:610.933333pt;}
.x75_c00387{left:614.800000pt;}
.x10e_c00387{left:615.866667pt;}
.xf2_c00387{left:616.800000pt;}
.x28_c00387{left:620.933333pt;}
.x5e_c00387{left:626.800000pt;}
.x1b_c00387{left:628.800000pt;}
.x38_c00387{left:630.400000pt;}
.xc9_c00387{left:633.866667pt;}
.x29_c00387{left:636.000000pt;}
.xa6_c00387{left:640.666667pt;}
.x9d_c00387{left:643.866667pt;}
.xb2_c00387{left:646.400000pt;}
.x10f_c00387{left:647.466667pt;}
.x1c_c00387{left:648.666667pt;}
.x5f_c00387{left:649.866667pt;}
.xc0_c00387{left:652.666667pt;}
.x76_c00387{left:655.066667pt;}
.xff_c00387{left:657.466667pt;}
}





/* 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_c00388 {
    display:none;
  }
  .loading-indicator_c00388.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00388 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_c00388 { 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_c00388" -> "#page-container .classname_c00388")
 */
.pf_c00388 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00388 { /* 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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00388 { /* 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_c00388 { /* 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_c00388 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00388 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00388 {overflow:visible;}
  }
}
.c_c00388 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00388 { /* 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_c00388:after { /* webkit #35443 */
  content: '';
}
.t_c00388:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00388 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 */
}
.__c00388 { /* 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_c00388 { /* info for Javascript */
  display:none;
}
.l_c00388 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00388 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00388 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00388: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_c00388 {
    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_c00388.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00388.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_c00388 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00388{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00388;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.000000;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;}
.m40_c00388{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00388{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mac_c00388{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00388{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00388{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00388{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m15_c00388{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mab_c00388{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00388{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00388{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m41_c00388{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00388{transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00388{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.maf_c00388{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.maa_c00388{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mf_c00388{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00388{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00388{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m97_c00388{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m79_c00388{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m67_c00388{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mad_c00388{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00388{transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00388{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m89_c00388{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00388{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m22_c00388{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m56_c00388{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00388{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00388{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m33_c00388{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mae_c00388{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m37_c00388{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00388{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00388{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m26_c00388{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m72_c00388{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00388{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00388{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00388{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m76_c00388{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m82_c00388{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m17_c00388{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00388{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m88_c00388{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00388{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m50_c00388{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m59_c00388{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00388{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m69_c00388{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m86_c00388{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m18_c00388{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m55_c00388{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.md_c00388{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00388{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m34_c00388{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00388{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00388{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00388{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00388{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m80_c00388{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m24_c00388{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00388{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m75_c00388{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m53_c00388{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m48_c00388{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m98_c00388{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2_c00388{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m51_c00388{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m31_c00388{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00388{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00388{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00388{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00388{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m30_c00388{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m23_c00388{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00388{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00388{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m45_c00388{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9_c00388{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m68_c00388{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00388{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m58_c00388{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m78_c00388{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m91_c00388{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00388{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m70_c00388{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6_c00388{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00388{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m25_c00388{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00388{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m29_c00388{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00388{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m12_c00388{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00388{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m87_c00388{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m71_c00388{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.me_c00388{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00388{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5_c00388{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00388{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m77_c00388{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m66_c00388{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00388{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00388{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m11_c00388{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m73_c00388{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m92_c00388{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00388{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m93_c00388{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m32_c00388{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m49_c00388{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4_c00388{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m36_c00388{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m21_c00388{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00388{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m62_c00388{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m44_c00388{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m61_c00388{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8_c00388{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00388{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m20_c00388{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00388{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00388{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00388{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00388{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00388{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc_c00388{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m57_c00388{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m81_c00388{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00388{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m27_c00388{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m64_c00388{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m42_c00388{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m38_c00388{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m39_c00388{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00388{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00388{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13_c00388{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00388{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7_c00388{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00388{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m43_c00388{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m52_c00388{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00388{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m54_c00388{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);}
.m96_c00388{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m28_c00388{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m95_c00388{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m63_c00388{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00388{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00388{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m14_c00388{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m19_c00388{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.ma_c00388{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00388{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mb_c00388{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00388{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00388{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m90_c00388{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m74_c00388{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00388{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00388{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m47_c00388{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00388{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m84_c00388{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m35_c00388{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m60_c00388{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m94_c00388{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00388{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00388{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00388{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m16_c00388{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m46_c00388{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00388{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00388{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m85_c00388{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m83_c00388{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00388{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00388{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls0_c00388{letter-spacing:0.000000px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{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__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00388{word-spacing:-7.261905px;}
.wsd_c00388{word-spacing:-6.935484px;}
.ws2_c00388{word-spacing:-5.479452px;}
.ws9_c00388{word-spacing:-5.277778px;}
.wse_c00388{word-spacing:0.000000px;}
.ws0_c00388{word-spacing:0.535714px;}
.ws6_c00388{word-spacing:1.666667px;}
.ws8_c00388{word-spacing:1.911765px;}
.ws5_c00388{word-spacing:3.125000px;}
.wsa_c00388{word-spacing:3.164557px;}
.ws3_c00388{word-spacing:3.518519px;}
.wsc_c00388{word-spacing:4.166667px;}
.wsb_c00388{word-spacing:5.223214px;}
.ws4_c00388{word-spacing:11.428571px;}
.ws1_c00388{word-spacing:52.941176px;}
.fc0_c00388{color:transparent;}
.fs0_c00388{font-size:60.000000px;}
.y0_c00388{bottom:0.000000px;}
.y2d_c00388{bottom:148.650000px;}
.y2c_c00388{bottom:164.850000px;}
.y2b_c00388{bottom:180.300000px;}
.y2a_c00388{bottom:196.200000px;}
.y29_c00388{bottom:211.650000px;}
.y28_c00388{bottom:227.550000px;}
.y27_c00388{bottom:270.150000px;}
.y26_c00388{bottom:292.050000px;}
.y25_c00388{bottom:312.150000px;}
.y24_c00388{bottom:331.950000px;}
.y23_c00388{bottom:350.700000px;}
.y22_c00388{bottom:372.000000px;}
.y21_c00388{bottom:391.800000px;}
.y20_c00388{bottom:411.900000px;}
.y1f_c00388{bottom:431.700000px;}
.y1e_c00388{bottom:451.500000px;}
.y1d_c00388{bottom:471.300000px;}
.y1c_c00388{bottom:491.400000px;}
.y1b_c00388{bottom:510.450000px;}
.y1a_c00388{bottom:531.000000px;}
.y19_c00388{bottom:550.800000px;}
.y18_c00388{bottom:570.600000px;}
.y17_c00388{bottom:590.400000px;}
.y16_c00388{bottom:610.500000px;}
.y15_c00388{bottom:630.300000px;}
.y14_c00388{bottom:650.400000px;}
.y13_c00388{bottom:670.500000px;}
.y12_c00388{bottom:690.300000px;}
.y11_c00388{bottom:710.400000px;}
.y10_c00388{bottom:730.500000px;}
.yf_c00388{bottom:750.000000px;}
.ye_c00388{bottom:769.800000px;}
.yd_c00388{bottom:789.900000px;}
.yc_c00388{bottom:809.700000px;}
.yb_c00388{bottom:829.500000px;}
.ya_c00388{bottom:849.300000px;}
.y9_c00388{bottom:869.100000px;}
.y8_c00388{bottom:889.200000px;}
.y7_c00388{bottom:909.150000px;}
.y6_c00388{bottom:929.700000px;}
.y5_c00388{bottom:949.500000px;}
.y4_c00388{bottom:969.600000px;}
.y3_c00388{bottom:989.700000px;}
.y2_c00388{bottom:1011.600000px;}
.y1_c00388{bottom:1047.600000px;}
.h2_c00388{height:60.000000px;}
.h0_c00388{height:1166.759949px;}
.h1_c00388{height:1167.000000px;}
.w1_c00388{width:913.500000px;}
.w0_c00388{width:913.679993px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:150.450000px;}
.xd3_c00388{left:151.650000px;}
.xe4_c00388{left:152.700000px;}
.x30_c00388{left:166.950000px;}
.x11a_c00388{left:168.300000px;}
.x23_c00388{left:170.700000px;}
.x4d_c00388{left:171.900000px;}
.x103_c00388{left:177.750000px;}
.x41_c00388{left:179.550000px;}
.x3_c00388{left:180.750000px;}
.x56_c00388{left:182.100000px;}
.xd5_c00388{left:183.300000px;}
.x113_c00388{left:184.350000px;}
.x82_c00388{left:185.700000px;}
.xc5_c00388{left:188.100000px;}
.x4e_c00388{left:189.600000px;}
.x12c_c00388{left:191.850000px;}
.xfe_c00388{left:192.900000px;}
.x13_c00388{left:194.100000px;}
.x98_c00388{left:196.350000px;}
.xd6_c00388{left:197.400000px;}
.xe6_c00388{left:201.750000px;}
.x24_c00388{left:202.800000px;}
.x57_c00388{left:204.450000px;}
.xf2_c00388{left:207.900000px;}
.x13a_c00388{left:208.950000px;}
.x60_c00388{left:210.300000px;}
.x129_c00388{left:212.400000px;}
.x4_c00388{left:213.900000px;}
.x14_c00388{left:214.950000px;}
.x131_c00388{left:216.000000px;}
.xa5_c00388{left:217.950000px;}
.x42_c00388{left:219.150000px;}
.xb6_c00388{left:220.350000px;}
.xac_c00388{left:222.750000px;}
.x58_c00388{left:225.000000px;}
.x104_c00388{left:227.100000px;}
.x13e_c00388{left:228.150000px;}
.x31_c00388{left:229.650000px;}
.x78_c00388{left:231.000000px;}
.xff_c00388{left:232.200000px;}
.xde_c00388{left:233.250000px;}
.xd4_c00388{left:235.200000px;}
.x6e_c00388{left:237.150000px;}
.x83_c00388{left:239.400000px;}
.x61_c00388{left:240.900000px;}
.x15_c00388{left:243.000000px;}
.x10c_c00388{left:245.400000px;}
.x13b_c00388{left:246.450000px;}
.xa6_c00388{left:248.850000px;}
.x13f_c00388{left:250.050000px;}
.x5_c00388{left:254.550000px;}
.x132_c00388{left:256.350000px;}
.x12d_c00388{left:258.150000px;}
.x125_c00388{left:259.200000px;}
.x32_c00388{left:260.250000px;}
.x99_c00388{left:262.950000px;}
.x126_c00388{left:264.600000px;}
.x11b_c00388{left:266.850000px;}
.xc6_c00388{left:268.800000px;}
.x62_c00388{left:270.000000px;}
.xcb_c00388{left:272.700000px;}
.x43_c00388{left:274.650000px;}
.xf6_c00388{left:275.850000px;}
.xad_c00388{left:278.850000px;}
.xb7_c00388{left:280.500000px;}
.x114_c00388{left:281.550000px;}
.xd7_c00388{left:283.050000px;}
.x16_c00388{left:285.150000px;}
.x122_c00388{left:287.400000px;}
.xf3_c00388{left:289.650000px;}
.x9a_c00388{left:291.750000px;}
.x4f_c00388{left:294.300000px;}
.x12e_c00388{left:295.650000px;}
.xcc_c00388{left:297.150000px;}
.x33_c00388{left:298.800000px;}
.xe7_c00388{left:301.050000px;}
.x25_c00388{left:302.850000px;}
.x17_c00388{left:305.250000px;}
.x105_c00388{left:306.300000px;}
.x59_c00388{left:307.350000px;}
.x6_c00388{left:308.850000px;}
.x12a_c00388{left:310.350000px;}
.x84_c00388{left:311.400000px;}
.x133_c00388{left:313.950000px;}
.x79_c00388{left:315.600000px;}
.x10f_c00388{left:317.400000px;}
.xed_c00388{left:318.600000px;}
.xcd_c00388{left:320.850000px;}
.xb8_c00388{left:324.000000px;}
.xf4_c00388{left:325.650000px;}
.xae_c00388{left:327.450000px;}
.x85_c00388{left:329.400000px;}
.x44_c00388{left:330.450000px;}
.x63_c00388{left:331.950000px;}
.x11c_c00388{left:333.000000px;}
.x115_c00388{left:335.100000px;}
.x100_c00388{left:338.400000px;}
.x6f_c00388{left:339.750000px;}
.x7_c00388{left:341.550000px;}
.x64_c00388{left:343.050000px;}
.x45_c00388{left:348.450000px;}
.xa7_c00388{left:349.650000px;}
.x34_c00388{left:351.750000px;}
.x13c_c00388{left:354.450000px;}
.x70_c00388{left:355.950000px;}
.x50_c00388{left:358.800000px;}
.xf7_c00388{left:360.750000px;}
.x5a_c00388{left:362.700000px;}
.x26_c00388{left:365.100000px;}
.x8_c00388{left:366.750000px;}
.x35_c00388{left:369.000000px;}
.x11d_c00388{left:370.500000px;}
.x18_c00388{left:372.150000px;}
.x7a_c00388{left:373.950000px;}
.x9b_c00388{left:375.600000px;}
.x86_c00388{left:376.950000px;}
.xa8_c00388{left:380.250000px;}
.x46_c00388{left:382.350000px;}
.xb9_c00388{left:383.400000px;}
.x134_c00388{left:384.450000px;}
.x71_c00388{left:385.500000px;}
.xc0_c00388{left:386.850000px;}
.xaf_c00388{left:389.400000px;}
.x65_c00388{left:390.900000px;}
.xc7_c00388{left:393.750000px;}
.x87_c00388{left:396.450000px;}
.xfa_c00388{left:399.600000px;}
.x9c_c00388{left:402.300000px;}
.x19_c00388{left:403.500000px;}
.x72_c00388{left:405.300000px;}
.x13d_c00388{left:406.650000px;}
.x9_c00388{left:409.200000px;}
.xce_c00388{left:411.900000px;}
.x8f_c00388{left:416.100000px;}
.xf5_c00388{left:418.950000px;}
.x66_c00388{left:420.000000px;}
.x47_c00388{left:422.700000px;}
.x7b_c00388{left:424.650000px;}
.x5b_c00388{left:427.050000px;}
.x27_c00388{left:428.400000px;}
.x73_c00388{left:430.800000px;}
.x90_c00388{left:432.600000px;}
.xd8_c00388{left:434.700000px;}
.x9d_c00388{left:437.550000px;}
.x140_c00388{left:439.050000px;}
.x1a_c00388{left:440.250000px;}
.x36_c00388{left:442.050000px;}
.xe8_c00388{left:445.800000px;}
.x11e_c00388{left:446.850000px;}
.x2_c00388{left:448.500000px;}
.xa_c00388{left:449.850000px;}
.x51_c00388{left:452.100000px;}
.x9e_c00388{left:454.800000px;}
.xb0_c00388{left:456.450000px;}
.x10a_c00388{left:458.400000px;}
.xba_c00388{left:460.500000px;}
.x1b_c00388{left:461.550000px;}
.x67_c00388{left:464.250000px;}
.xc1_c00388{left:465.300000px;}
.xb_c00388{left:467.100000px;}
.xdf_c00388{left:468.300000px;}
.x37_c00388{left:472.350000px;}
.x91_c00388{left:477.600000px;}
.x10d_c00388{left:479.550000px;}
.xf8_c00388{left:481.950000px;}
.x7c_c00388{left:483.000000px;}
.xd9_c00388{left:484.050000px;}
.x48_c00388{left:486.750000px;}
.x28_c00388{left:489.300000px;}
.x38_c00388{left:490.350000px;}
.x88_c00388{left:495.450000px;}
.x74_c00388{left:496.950000px;}
.x9f_c00388{left:498.000000px;}
.xc2_c00388{left:499.500000px;}
.x106_c00388{left:502.950000px;}
.xbb_c00388{left:505.200000px;}
.xc8_c00388{left:507.150000px;}
.xc3_c00388{left:512.100000px;}
.xe9_c00388{left:513.450000px;}
.x5c_c00388{left:514.950000px;}
.xda_c00388{left:516.450000px;}
.x68_c00388{left:517.500000px;}
.xc_c00388{left:519.000000px;}
.x29_c00388{left:520.950000px;}
.x92_c00388{left:523.650000px;}
.xa9_c00388{left:526.200000px;}
.x127_c00388{left:527.250000px;}
.x116_c00388{left:530.550000px;}
.x12b_c00388{left:535.350000px;}
.x69_c00388{left:538.050000px;}
.xbc_c00388{left:541.500000px;}
.xfb_c00388{left:543.150000px;}
.x52_c00388{left:544.350000px;}
.x89_c00388{left:545.550000px;}
.xd_c00388{left:547.500000px;}
.x5d_c00388{left:550.200000px;}
.x2a_c00388{left:551.550000px;}
.x1c_c00388{left:553.350000px;}
.x39_c00388{left:554.850000px;}
.x101_c00388{left:556.050000px;}
.xee_c00388{left:559.050000px;}
.x49_c00388{left:560.550000px;}
.x53_c00388{left:562.350000px;}
.x6a_c00388{left:566.550000px;}
.xcf_c00388{left:568.350000px;}
.x93_c00388{left:571.200000px;}
.xea_c00388{left:573.600000px;}
.x5e_c00388{left:574.650000px;}
.xa0_c00388{left:575.850000px;}
.xc9_c00388{left:577.350000px;}
.xbd_c00388{left:579.300000px;}
.xe_c00388{left:581.700000px;}
.x102_c00388{left:582.750000px;}
.x7d_c00388{left:583.800000px;}
.x1d_c00388{left:585.750000px;}
.xe0_c00388{left:586.800000px;}
.x3a_c00388{left:589.050000px;}
.xd0_c00388{left:591.450000px;}
.x135_c00388{left:593.250000px;}
.x2b_c00388{left:596.250000px;}
.x6b_c00388{left:597.900000px;}
.xf_c00388{left:601.200000px;}
.x1e_c00388{left:604.500000px;}
.xfc_c00388{left:607.950000px;}
.xa1_c00388{left:614.700000px;}
.x2c_c00388{left:616.350000px;}
.x8a_c00388{left:619.350000px;}
.x75_c00388{left:622.200000px;}
.x94_c00388{left:627.300000px;}
.x123_c00388{left:628.650000px;}
.x3b_c00388{left:630.750000px;}
.x7e_c00388{left:634.200000px;}
.xef_c00388{left:636.000000px;}
.x136_c00388{left:637.950000px;}
.x54_c00388{left:640.800000px;}
.xb1_c00388{left:643.050000px;}
.x4a_c00388{left:645.450000px;}
.xdb_c00388{left:647.250000px;}
.x10e_c00388{left:649.350000px;}
.x3c_c00388{left:650.550000px;}
.xbe_c00388{left:652.350000px;}
.x107_c00388{left:656.550000px;}
.x6c_c00388{left:658.050000px;}
.x11f_c00388{left:660.600000px;}
.xb2_c00388{left:663.150000px;}
.x1f_c00388{left:665.700000px;}
.x110_c00388{left:667.050000px;}
.x117_c00388{left:668.400000px;}
.x55_c00388{left:669.600000px;}
.x124_c00388{left:673.350000px;}
.xdc_c00388{left:675.000000px;}
.x10_c00388{left:676.050000px;}
.x2d_c00388{left:678.300000px;}
.xf9_c00388{left:681.750000px;}
.x137_c00388{left:684.750000px;}
.x4b_c00388{left:686.100000px;}
.x20_c00388{left:689.100000px;}
.x95_c00388{left:690.600000px;}
.x111_c00388{left:691.950000px;}
.x118_c00388{left:693.900000px;}
.xaa_c00388{left:695.400000px;}
.xeb_c00388{left:697.050000px;}
.xb3_c00388{left:699.150000px;}
.x108_c00388{left:701.250000px;}
.xa2_c00388{left:703.200000px;}
.x138_c00388{left:706.650000px;}
.x76_c00388{left:708.600000px;}
.x5f_c00388{left:709.650000px;}
.xe5_c00388{left:711.300000px;}
.x128_c00388{left:712.800000px;}
.x3d_c00388{left:715.050000px;}
.x8b_c00388{left:716.550000px;}
.x21_c00388{left:717.900000px;}
.x77_c00388{left:720.450000px;}
.x7f_c00388{left:722.100000px;}
.x6d_c00388{left:725.400000px;}
.xb4_c00388{left:727.200000px;}
.x120_c00388{left:728.700000px;}
.xca_c00388{left:730.050000px;}
.xa3_c00388{left:731.250000px;}
.x3e_c00388{left:732.300000px;}
.x2e_c00388{left:733.800000px;}
.xe1_c00388{left:735.150000px;}
.x11_c00388{left:737.250000px;}
.x119_c00388{left:739.950000px;}
.xab_c00388{left:741.450000px;}
.x12f_c00388{left:742.800000px;}
.x80_c00388{left:745.200000px;}
.x10b_c00388{left:746.550000px;}
.xe2_c00388{left:752.100000px;}
.x12_c00388{left:753.150000px;}
.xc4_c00388{left:754.350000px;}
.x139_c00388{left:756.300000px;}
.xf0_c00388{left:757.350000px;}
.x96_c00388{left:758.700000px;}
.x2f_c00388{left:762.300000px;}
.x8c_c00388{left:765.900000px;}
.xec_c00388{left:767.250000px;}
.x121_c00388{left:768.300000px;}
.xd1_c00388{left:770.100000px;}
.x81_c00388{left:773.250000px;}
.xe3_c00388{left:774.750000px;}
.xa4_c00388{left:775.950000px;}
.x4c_c00388{left:778.200000px;}
.x112_c00388{left:780.150000px;}
.x8d_c00388{left:781.800000px;}
.xdd_c00388{left:784.050000px;}
.x3f_c00388{left:785.250000px;}
.x109_c00388{left:787.350000px;}
.xb5_c00388{left:788.700000px;}
.x130_c00388{left:789.900000px;}
.x97_c00388{left:791.850000px;}
.xf1_c00388{left:795.150000px;}
.x8e_c00388{left:796.200000px;}
.x40_c00388{left:797.550000px;}
.xfd_c00388{left:799.500000px;}
.xbf_c00388{left:801.900000px;}
.x141_c00388{left:803.400000px;}
.x22_c00388{left:806.100000px;}
.xd2_c00388{left:807.150000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws7_c00388{word-spacing:-6.455026pt;}
.wsd_c00388{word-spacing:-6.164875pt;}
.ws2_c00388{word-spacing:-4.870624pt;}
.ws9_c00388{word-spacing:-4.691358pt;}
.wse_c00388{word-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.476190pt;}
.ws6_c00388{word-spacing:1.481481pt;}
.ws8_c00388{word-spacing:1.699346pt;}
.ws5_c00388{word-spacing:2.777778pt;}
.wsa_c00388{word-spacing:2.812940pt;}
.ws3_c00388{word-spacing:3.127572pt;}
.wsc_c00388{word-spacing:3.703704pt;}
.wsb_c00388{word-spacing:4.642857pt;}
.ws4_c00388{word-spacing:10.158730pt;}
.ws1_c00388{word-spacing:47.058824pt;}
.fs0_c00388{font-size:53.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y2d_c00388{bottom:132.133333pt;}
.y2c_c00388{bottom:146.533333pt;}
.y2b_c00388{bottom:160.266667pt;}
.y2a_c00388{bottom:174.400000pt;}
.y29_c00388{bottom:188.133333pt;}
.y28_c00388{bottom:202.266667pt;}
.y27_c00388{bottom:240.133333pt;}
.y26_c00388{bottom:259.600000pt;}
.y25_c00388{bottom:277.466667pt;}
.y24_c00388{bottom:295.066667pt;}
.y23_c00388{bottom:311.733333pt;}
.y22_c00388{bottom:330.666667pt;}
.y21_c00388{bottom:348.266667pt;}
.y20_c00388{bottom:366.133333pt;}
.y1f_c00388{bottom:383.733333pt;}
.y1e_c00388{bottom:401.333333pt;}
.y1d_c00388{bottom:418.933333pt;}
.y1c_c00388{bottom:436.800000pt;}
.y1b_c00388{bottom:453.733333pt;}
.y1a_c00388{bottom:472.000000pt;}
.y19_c00388{bottom:489.600000pt;}
.y18_c00388{bottom:507.200000pt;}
.y17_c00388{bottom:524.800000pt;}
.y16_c00388{bottom:542.666667pt;}
.y15_c00388{bottom:560.266667pt;}
.y14_c00388{bottom:578.133333pt;}
.y13_c00388{bottom:596.000000pt;}
.y12_c00388{bottom:613.600000pt;}
.y11_c00388{bottom:631.466667pt;}
.y10_c00388{bottom:649.333333pt;}
.yf_c00388{bottom:666.666667pt;}
.ye_c00388{bottom:684.266667pt;}
.yd_c00388{bottom:702.133333pt;}
.yc_c00388{bottom:719.733333pt;}
.yb_c00388{bottom:737.333333pt;}
.ya_c00388{bottom:754.933333pt;}
.y9_c00388{bottom:772.533333pt;}
.y8_c00388{bottom:790.400000pt;}
.y7_c00388{bottom:808.133333pt;}
.y6_c00388{bottom:826.400000pt;}
.y5_c00388{bottom:844.000000pt;}
.y4_c00388{bottom:861.866667pt;}
.y3_c00388{bottom:879.733333pt;}
.y2_c00388{bottom:899.200000pt;}
.y1_c00388{bottom:931.200000pt;}
.h2_c00388{height:53.333333pt;}
.h0_c00388{height:1037.119955pt;}
.h1_c00388{height:1037.333333pt;}
.w1_c00388{width:812.000000pt;}
.w0_c00388{width:812.159993pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:133.733333pt;}
.xd3_c00388{left:134.800000pt;}
.xe4_c00388{left:135.733333pt;}
.x30_c00388{left:148.400000pt;}
.x11a_c00388{left:149.600000pt;}
.x23_c00388{left:151.733333pt;}
.x4d_c00388{left:152.800000pt;}
.x103_c00388{left:158.000000pt;}
.x41_c00388{left:159.600000pt;}
.x3_c00388{left:160.666667pt;}
.x56_c00388{left:161.866667pt;}
.xd5_c00388{left:162.933333pt;}
.x113_c00388{left:163.866667pt;}
.x82_c00388{left:165.066667pt;}
.xc5_c00388{left:167.200000pt;}
.x4e_c00388{left:168.533333pt;}
.x12c_c00388{left:170.533333pt;}
.xfe_c00388{left:171.466667pt;}
.x13_c00388{left:172.533333pt;}
.x98_c00388{left:174.533333pt;}
.xd6_c00388{left:175.466667pt;}
.xe6_c00388{left:179.333333pt;}
.x24_c00388{left:180.266667pt;}
.x57_c00388{left:181.733333pt;}
.xf2_c00388{left:184.800000pt;}
.x13a_c00388{left:185.733333pt;}
.x60_c00388{left:186.933333pt;}
.x129_c00388{left:188.800000pt;}
.x4_c00388{left:190.133333pt;}
.x14_c00388{left:191.066667pt;}
.x131_c00388{left:192.000000pt;}
.xa5_c00388{left:193.733333pt;}
.x42_c00388{left:194.800000pt;}
.xb6_c00388{left:195.866667pt;}
.xac_c00388{left:198.000000pt;}
.x58_c00388{left:200.000000pt;}
.x104_c00388{left:201.866667pt;}
.x13e_c00388{left:202.800000pt;}
.x31_c00388{left:204.133333pt;}
.x78_c00388{left:205.333333pt;}
.xff_c00388{left:206.400000pt;}
.xde_c00388{left:207.333333pt;}
.xd4_c00388{left:209.066667pt;}
.x6e_c00388{left:210.800000pt;}
.x83_c00388{left:212.800000pt;}
.x61_c00388{left:214.133333pt;}
.x15_c00388{left:216.000000pt;}
.x10c_c00388{left:218.133333pt;}
.x13b_c00388{left:219.066667pt;}
.xa6_c00388{left:221.200000pt;}
.x13f_c00388{left:222.266667pt;}
.x5_c00388{left:226.266667pt;}
.x132_c00388{left:227.866667pt;}
.x12d_c00388{left:229.466667pt;}
.x125_c00388{left:230.400000pt;}
.x32_c00388{left:231.333333pt;}
.x99_c00388{left:233.733333pt;}
.x126_c00388{left:235.200000pt;}
.x11b_c00388{left:237.200000pt;}
.xc6_c00388{left:238.933333pt;}
.x62_c00388{left:240.000000pt;}
.xcb_c00388{left:242.400000pt;}
.x43_c00388{left:244.133333pt;}
.xf6_c00388{left:245.200000pt;}
.xad_c00388{left:247.866667pt;}
.xb7_c00388{left:249.333333pt;}
.x114_c00388{left:250.266667pt;}
.xd7_c00388{left:251.600000pt;}
.x16_c00388{left:253.466667pt;}
.x122_c00388{left:255.466667pt;}
.xf3_c00388{left:257.466667pt;}
.x9a_c00388{left:259.333333pt;}
.x4f_c00388{left:261.600000pt;}
.x12e_c00388{left:262.800000pt;}
.xcc_c00388{left:264.133333pt;}
.x33_c00388{left:265.600000pt;}
.xe7_c00388{left:267.600000pt;}
.x25_c00388{left:269.200000pt;}
.x17_c00388{left:271.333333pt;}
.x105_c00388{left:272.266667pt;}
.x59_c00388{left:273.200000pt;}
.x6_c00388{left:274.533333pt;}
.x12a_c00388{left:275.866667pt;}
.x84_c00388{left:276.800000pt;}
.x133_c00388{left:279.066667pt;}
.x79_c00388{left:280.533333pt;}
.x10f_c00388{left:282.133333pt;}
.xed_c00388{left:283.200000pt;}
.xcd_c00388{left:285.200000pt;}
.xb8_c00388{left:288.000000pt;}
.xf4_c00388{left:289.466667pt;}
.xae_c00388{left:291.066667pt;}
.x85_c00388{left:292.800000pt;}
.x44_c00388{left:293.733333pt;}
.x63_c00388{left:295.066667pt;}
.x11c_c00388{left:296.000000pt;}
.x115_c00388{left:297.866667pt;}
.x100_c00388{left:300.800000pt;}
.x6f_c00388{left:302.000000pt;}
.x7_c00388{left:303.600000pt;}
.x64_c00388{left:304.933333pt;}
.x45_c00388{left:309.733333pt;}
.xa7_c00388{left:310.800000pt;}
.x34_c00388{left:312.666667pt;}
.x13c_c00388{left:315.066667pt;}
.x70_c00388{left:316.400000pt;}
.x50_c00388{left:318.933333pt;}
.xf7_c00388{left:320.666667pt;}
.x5a_c00388{left:322.400000pt;}
.x26_c00388{left:324.533333pt;}
.x8_c00388{left:326.000000pt;}
.x35_c00388{left:328.000000pt;}
.x11d_c00388{left:329.333333pt;}
.x18_c00388{left:330.800000pt;}
.x7a_c00388{left:332.400000pt;}
.x9b_c00388{left:333.866667pt;}
.x86_c00388{left:335.066667pt;}
.xa8_c00388{left:338.000000pt;}
.x46_c00388{left:339.866667pt;}
.xb9_c00388{left:340.800000pt;}
.x134_c00388{left:341.733333pt;}
.x71_c00388{left:342.666667pt;}
.xc0_c00388{left:343.866667pt;}
.xaf_c00388{left:346.133333pt;}
.x65_c00388{left:347.466667pt;}
.xc7_c00388{left:350.000000pt;}
.x87_c00388{left:352.400000pt;}
.xfa_c00388{left:355.200000pt;}
.x9c_c00388{left:357.600000pt;}
.x19_c00388{left:358.666667pt;}
.x72_c00388{left:360.266667pt;}
.x13d_c00388{left:361.466667pt;}
.x9_c00388{left:363.733333pt;}
.xce_c00388{left:366.133333pt;}
.x8f_c00388{left:369.866667pt;}
.xf5_c00388{left:372.400000pt;}
.x66_c00388{left:373.333333pt;}
.x47_c00388{left:375.733333pt;}
.x7b_c00388{left:377.466667pt;}
.x5b_c00388{left:379.600000pt;}
.x27_c00388{left:380.800000pt;}
.x73_c00388{left:382.933333pt;}
.x90_c00388{left:384.533333pt;}
.xd8_c00388{left:386.400000pt;}
.x9d_c00388{left:388.933333pt;}
.x140_c00388{left:390.266667pt;}
.x1a_c00388{left:391.333333pt;}
.x36_c00388{left:392.933333pt;}
.xe8_c00388{left:396.266667pt;}
.x11e_c00388{left:397.200000pt;}
.x2_c00388{left:398.666667pt;}
.xa_c00388{left:399.866667pt;}
.x51_c00388{left:401.866667pt;}
.x9e_c00388{left:404.266667pt;}
.xb0_c00388{left:405.733333pt;}
.x10a_c00388{left:407.466667pt;}
.xba_c00388{left:409.333333pt;}
.x1b_c00388{left:410.266667pt;}
.x67_c00388{left:412.666667pt;}
.xc1_c00388{left:413.600000pt;}
.xb_c00388{left:415.200000pt;}
.xdf_c00388{left:416.266667pt;}
.x37_c00388{left:419.866667pt;}
.x91_c00388{left:424.533333pt;}
.x10d_c00388{left:426.266667pt;}
.xf8_c00388{left:428.400000pt;}
.x7c_c00388{left:429.333333pt;}
.xd9_c00388{left:430.266667pt;}
.x48_c00388{left:432.666667pt;}
.x28_c00388{left:434.933333pt;}
.x38_c00388{left:435.866667pt;}
.x88_c00388{left:440.400000pt;}
.x74_c00388{left:441.733333pt;}
.x9f_c00388{left:442.666667pt;}
.xc2_c00388{left:444.000000pt;}
.x106_c00388{left:447.066667pt;}
.xbb_c00388{left:449.066667pt;}
.xc8_c00388{left:450.800000pt;}
.xc3_c00388{left:455.200000pt;}
.xe9_c00388{left:456.400000pt;}
.x5c_c00388{left:457.733333pt;}
.xda_c00388{left:459.066667pt;}
.x68_c00388{left:460.000000pt;}
.xc_c00388{left:461.333333pt;}
.x29_c00388{left:463.066667pt;}
.x92_c00388{left:465.466667pt;}
.xa9_c00388{left:467.733333pt;}
.x127_c00388{left:468.666667pt;}
.x116_c00388{left:471.600000pt;}
.x12b_c00388{left:475.866667pt;}
.x69_c00388{left:478.266667pt;}
.xbc_c00388{left:481.333333pt;}
.xfb_c00388{left:482.800000pt;}
.x52_c00388{left:483.866667pt;}
.x89_c00388{left:484.933333pt;}
.xd_c00388{left:486.666667pt;}
.x5d_c00388{left:489.066667pt;}
.x2a_c00388{left:490.266667pt;}
.x1c_c00388{left:491.866667pt;}
.x39_c00388{left:493.200000pt;}
.x101_c00388{left:494.266667pt;}
.xee_c00388{left:496.933333pt;}
.x49_c00388{left:498.266667pt;}
.x53_c00388{left:499.866667pt;}
.x6a_c00388{left:503.600000pt;}
.xcf_c00388{left:505.200000pt;}
.x93_c00388{left:507.733333pt;}
.xea_c00388{left:509.866667pt;}
.x5e_c00388{left:510.800000pt;}
.xa0_c00388{left:511.866667pt;}
.xc9_c00388{left:513.200000pt;}
.xbd_c00388{left:514.933333pt;}
.xe_c00388{left:517.066667pt;}
.x102_c00388{left:518.000000pt;}
.x7d_c00388{left:518.933333pt;}
.x1d_c00388{left:520.666667pt;}
.xe0_c00388{left:521.600000pt;}
.x3a_c00388{left:523.600000pt;}
.xd0_c00388{left:525.733333pt;}
.x135_c00388{left:527.333333pt;}
.x2b_c00388{left:530.000000pt;}
.x6b_c00388{left:531.466667pt;}
.xf_c00388{left:534.400000pt;}
.x1e_c00388{left:537.333333pt;}
.xfc_c00388{left:540.400000pt;}
.xa1_c00388{left:546.400000pt;}
.x2c_c00388{left:547.866667pt;}
.x8a_c00388{left:550.533333pt;}
.x75_c00388{left:553.066667pt;}
.x94_c00388{left:557.600000pt;}
.x123_c00388{left:558.800000pt;}
.x3b_c00388{left:560.666667pt;}
.x7e_c00388{left:563.733333pt;}
.xef_c00388{left:565.333333pt;}
.x136_c00388{left:567.066667pt;}
.x54_c00388{left:569.600000pt;}
.xb1_c00388{left:571.600000pt;}
.x4a_c00388{left:573.733333pt;}
.xdb_c00388{left:575.333333pt;}
.x10e_c00388{left:577.200000pt;}
.x3c_c00388{left:578.266667pt;}
.xbe_c00388{left:579.866667pt;}
.x107_c00388{left:583.600000pt;}
.x6c_c00388{left:584.933333pt;}
.x11f_c00388{left:587.200000pt;}
.xb2_c00388{left:589.466667pt;}
.x1f_c00388{left:591.733333pt;}
.x110_c00388{left:592.933333pt;}
.x117_c00388{left:594.133333pt;}
.x55_c00388{left:595.200000pt;}
.x124_c00388{left:598.533333pt;}
.xdc_c00388{left:600.000000pt;}
.x10_c00388{left:600.933333pt;}
.x2d_c00388{left:602.933333pt;}
.xf9_c00388{left:606.000000pt;}
.x137_c00388{left:608.666667pt;}
.x4b_c00388{left:609.866667pt;}
.x20_c00388{left:612.533333pt;}
.x95_c00388{left:613.866667pt;}
.x111_c00388{left:615.066667pt;}
.x118_c00388{left:616.800000pt;}
.xaa_c00388{left:618.133333pt;}
.xeb_c00388{left:619.600000pt;}
.xb3_c00388{left:621.466667pt;}
.x108_c00388{left:623.333333pt;}
.xa2_c00388{left:625.066667pt;}
.x138_c00388{left:628.133333pt;}
.x76_c00388{left:629.866667pt;}
.x5f_c00388{left:630.800000pt;}
.xe5_c00388{left:632.266667pt;}
.x128_c00388{left:633.600000pt;}
.x3d_c00388{left:635.600000pt;}
.x8b_c00388{left:636.933333pt;}
.x21_c00388{left:638.133333pt;}
.x77_c00388{left:640.400000pt;}
.x7f_c00388{left:641.866667pt;}
.x6d_c00388{left:644.800000pt;}
.xb4_c00388{left:646.400000pt;}
.x120_c00388{left:647.733333pt;}
.xca_c00388{left:648.933333pt;}
.xa3_c00388{left:650.000000pt;}
.x3e_c00388{left:650.933333pt;}
.x2e_c00388{left:652.266667pt;}
.xe1_c00388{left:653.466667pt;}
.x11_c00388{left:655.333333pt;}
.x119_c00388{left:657.733333pt;}
.xab_c00388{left:659.066667pt;}
.x12f_c00388{left:660.266667pt;}
.x80_c00388{left:662.400000pt;}
.x10b_c00388{left:663.600000pt;}
.xe2_c00388{left:668.533333pt;}
.x12_c00388{left:669.466667pt;}
.xc4_c00388{left:670.533333pt;}
.x139_c00388{left:672.266667pt;}
.xf0_c00388{left:673.200000pt;}
.x96_c00388{left:674.400000pt;}
.x2f_c00388{left:677.600000pt;}
.x8c_c00388{left:680.800000pt;}
.xec_c00388{left:682.000000pt;}
.x121_c00388{left:682.933333pt;}
.xd1_c00388{left:684.533333pt;}
.x81_c00388{left:687.333333pt;}
.xe3_c00388{left:688.666667pt;}
.xa4_c00388{left:689.733333pt;}
.x4c_c00388{left:691.733333pt;}
.x112_c00388{left:693.466667pt;}
.x8d_c00388{left:694.933333pt;}
.xdd_c00388{left:696.933333pt;}
.x3f_c00388{left:698.000000pt;}
.x109_c00388{left:699.866667pt;}
.xb5_c00388{left:701.066667pt;}
.x130_c00388{left:702.133333pt;}
.x97_c00388{left:703.866667pt;}
.xf1_c00388{left:706.800000pt;}
.x8e_c00388{left:707.733333pt;}
.x40_c00388{left:708.933333pt;}
.xfd_c00388{left:710.666667pt;}
.xbf_c00388{left:712.800000pt;}
.x141_c00388{left:714.133333pt;}
.x22_c00388{left:716.533333pt;}
.xd2_c00388{left:717.466667pt;}
}





/* 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_c00389 {
    display:none;
  }
  .loading-indicator_c00389.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00389 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_c00389 { 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_c00389" -> "#page-container .classname_c00389")
 */
.pf_c00389 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00389 { /* 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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00389 { /* 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_c00389 { /* 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_c00389 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00389 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00389 {overflow:visible;}
  }
}
.c_c00389 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00389 { /* 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_c00389:after { /* webkit #35443 */
  content: '';
}
.t_c00389:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00389 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 */
}
.__c00389 { /* 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_c00389 { /* info for Javascript */
  display:none;
}
.l_c00389 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00389 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00389 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00389: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_c00389 {
    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_c00389.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00389.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_c00389 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00389{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.000000;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;}
.mba_c00389{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m82_c00389{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00389{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00389{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00389{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m95_c00389{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00389{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mae_c00389{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.maa_c00389{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00389{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m27_c00389{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m89_c00389{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00389{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m70_c00389{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00389{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00389{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m31_c00389{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00389{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mac_c00389{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00389{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00389{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00389{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m77_c00389{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00389{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00389{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m34_c00389{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00389{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00389{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00389{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00389{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m47_c00389{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m69_c00389{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00389{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m96_c00389{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m56_c00389{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00389{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00389{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m39_c00389{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00389{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00389{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m75_c00389{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00389{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m26_c00389{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00389{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00389{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00389{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m10_c00389{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00389{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m71_c00389{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m30_c00389{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00389{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m24_c00389{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m97_c00389{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m94_c00389{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00389{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m37_c00389{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00389{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00389{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00389{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m28_c00389{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m51_c00389{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m45_c00389{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.maf_c00389{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m16_c00389{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m62_c00389{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m65_c00389{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m86_c00389{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00389{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m50_c00389{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00389{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m93_c00389{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00389{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m80_c00389{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m68_c00389{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m57_c00389{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mab_c00389{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.md_c00389{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m99_c00389{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m49_c00389{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00389{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m52_c00389{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00389{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00389{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5_c00389{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m44_c00389{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m33_c00389{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m74_c00389{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00389{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m98_c00389{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mc_c00389{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00389{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00389{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m85_c00389{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00389{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m79_c00389{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma_c00389{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m78_c00389{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m25_c00389{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00389{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00389{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mad_c00389{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m81_c00389{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m76_c00389{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m38_c00389{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m29_c00389{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00389{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00389{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m60_c00389{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m43_c00389{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m64_c00389{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m63_c00389{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00389{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00389{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m83_c00389{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00389{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00389{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m48_c00389{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m41_c00389{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00389{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00389{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m54_c00389{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00389{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m21_c00389{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m53_c00389{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m58_c00389{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m73_c00389{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m67_c00389{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00389{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00389{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00389{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00389{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m40_c00389{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00389{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m59_c00389{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00389{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00389{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4_c00389{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00389{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00389{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00389{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00389{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00389{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00389{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00389{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00389{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m90_c00389{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00389{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m72_c00389{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m55_c00389{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00389{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m36_c00389{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m61_c00389{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00389{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m87_c00389{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00389{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m91_c00389{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00389{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m92_c00389{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m35_c00389{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00389{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8_c00389{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m46_c00389{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m88_c00389{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m20_c00389{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00389{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00389{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00389{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{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__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00389{word-spacing:-13.750000px;}
.ws6_c00389{word-spacing:-7.567568px;}
.ws9_c00389{word-spacing:-6.548652px;}
.ws8_c00389{word-spacing:-5.250000px;}
.ws3_c00389{word-spacing:-4.285714px;}
.ws1_c00389{word-spacing:-3.333333px;}
.wsc_c00389{word-spacing:0.000000px;}
.wsa_c00389{word-spacing:1.568581px;}
.ws0_c00389{word-spacing:2.460937px;}
.ws5_c00389{word-spacing:4.722222px;}
.wsb_c00389{word-spacing:6.924971px;}
.ws7_c00389{word-spacing:11.250000px;}
.ws2_c00389{word-spacing:13.472222px;}
._0_c00389{width:52.500000px;}
.fc0_c00389{color:transparent;}
.fs1_c00389{font-size:54.000000px;}
.fs0_c00389{font-size:60.000000px;}
.y0_c00389{bottom:0.000000px;}
.y2d_c00389{bottom:145.350000px;}
.y2c_c00389{bottom:161.550000px;}
.y2b_c00389{bottom:177.000000px;}
.y2a_c00389{bottom:193.200000px;}
.y29_c00389{bottom:209.100000px;}
.y28_c00389{bottom:224.550000px;}
.y27_c00389{bottom:240.450000px;}
.y26_c00389{bottom:255.900000px;}
.y25_c00389{bottom:304.500000px;}
.y24_c00389{bottom:325.050000px;}
.y23_c00389{bottom:344.850000px;}
.y22_c00389{bottom:364.500000px;}
.y21_c00389{bottom:384.600000px;}
.y20_c00389{bottom:404.700000px;}
.y1f_c00389{bottom:424.500000px;}
.y1e_c00389{bottom:444.600000px;}
.y1d_c00389{bottom:464.400000px;}
.y1c_c00389{bottom:484.500000px;}
.y1b_c00389{bottom:504.300000px;}
.y1a_c00389{bottom:524.100000px;}
.y19_c00389{bottom:544.800000px;}
.y18_c00389{bottom:564.900000px;}
.y17_c00389{bottom:585.000000px;}
.y16_c00389{bottom:605.100000px;}
.y15_c00389{bottom:625.200000px;}
.y14_c00389{bottom:645.000000px;}
.y13_c00389{bottom:665.100000px;}
.y12_c00389{bottom:685.200000px;}
.y11_c00389{bottom:705.000000px;}
.y10_c00389{bottom:725.100000px;}
.yf_c00389{bottom:744.900000px;}
.ye_c00389{bottom:765.000000px;}
.yd_c00389{bottom:784.800000px;}
.yc_c00389{bottom:804.600000px;}
.yb_c00389{bottom:824.700000px;}
.ya_c00389{bottom:844.800000px;}
.y9_c00389{bottom:864.900000px;}
.y8_c00389{bottom:885.000000px;}
.y7_c00389{bottom:905.100000px;}
.y6_c00389{bottom:924.900000px;}
.y5_c00389{bottom:945.000000px;}
.y4_c00389{bottom:965.100000px;}
.y3_c00389{bottom:985.200000px;}
.y2_c00389{bottom:1004.700000px;}
.y1_c00389{bottom:1042.200000px;}
.h3_c00389{height:54.000000px;}
.h2_c00389{height:60.000000px;}
.h0_c00389{height:1166.759949px;}
.h1_c00389{height:1167.000000px;}
.w1_c00389{width:913.500000px;}
.w0_c00389{width:913.679993px;}
.x0_c00389{left:0.000000px;}
.x13a_c00389{left:104.550000px;}
.x102_c00389{left:105.750000px;}
.x9f_c00389{left:107.100000px;}
.x46_c00389{left:108.450000px;}
.x12_c00389{left:109.500000px;}
.x128_c00389{left:120.300000px;}
.x10d_c00389{left:122.850000px;}
.x53_c00389{left:129.150000px;}
.x130_c00389{left:130.500000px;}
.x115_c00389{left:134.250000px;}
.xa6_c00389{left:136.050000px;}
.x5e_c00389{left:137.550000px;}
.x69_c00389{left:140.100000px;}
.x3_c00389{left:141.150000px;}
.x129_c00389{left:142.650000px;}
.x103_c00389{left:144.600000px;}
.xf2_c00389{left:145.950000px;}
.x47_c00389{left:147.300000px;}
.x112_c00389{left:148.500000px;}
.xd7_c00389{left:150.000000px;}
.x10e_c00389{left:151.650000px;}
.x11b_c00389{left:152.700000px;}
.x74_c00389{left:154.500000px;}
.x13_c00389{left:155.550000px;}
.x5f_c00389{left:158.100000px;}
.x2f_c00389{left:160.500000px;}
.x131_c00389{left:167.550000px;}
.xe0_c00389{left:168.750000px;}
.x1f_c00389{left:169.950000px;}
.x113_c00389{left:171.600000px;}
.x120_c00389{left:173.100000px;}
.xc1_c00389{left:174.300000px;}
.x4_c00389{left:176.100000px;}
.x3a_c00389{left:178.200000px;}
.x104_c00389{left:179.550000px;}
.x48_c00389{left:180.750000px;}
.x114_c00389{left:181.800000px;}
.x8f_c00389{left:184.350000px;}
.xf3_c00389{left:187.050000px;}
.x7f_c00389{left:188.550000px;}
.x97_c00389{left:190.350000px;}
.xed_c00389{left:193.800000px;}
.x14_c00389{left:195.150000px;}
.xc2_c00389{left:198.450000px;}
.xd1_c00389{left:201.450000px;}
.x105_c00389{left:204.450000px;}
.x60_c00389{left:205.650000px;}
.xbc_c00389{left:207.300000px;}
.xe1_c00389{left:208.500000px;}
.x20_c00389{left:209.850000px;}
.x30_c00389{left:210.900000px;}
.xcb_c00389{left:212.550000px;}
.x80_c00389{left:214.050000px;}
.xee_c00389{left:216.900000px;}
.xd8_c00389{left:218.400000px;}
.x90_c00389{left:219.600000px;}
.x88_c00389{left:221.700000px;}
.x54_c00389{left:224.250000px;}
.x5_c00389{left:226.200000px;}
.xc3_c00389{left:227.250000px;}
.xb3_c00389{left:228.900000px;}
.x6a_c00389{left:230.850000px;}
.x15_c00389{left:231.900000px;}
.xd2_c00389{left:233.100000px;}
.x136_c00389{left:235.050000px;}
.x61_c00389{left:236.250000px;}
.xef_c00389{left:242.400000px;}
.xd9_c00389{left:243.900000px;}
.x55_c00389{left:246.150000px;}
.x13d_c00389{left:250.800000px;}
.x75_c00389{left:251.850000px;}
.x49_c00389{left:253.050000px;}
.x3b_c00389{left:254.550000px;}
.x106_c00389{left:257.400000px;}
.x6b_c00389{left:258.900000px;}
.xc4_c00389{left:259.950000px;}
.x21_c00389{left:262.800000px;}
.xda_c00389{left:265.500000px;}
.x11c_c00389{left:267.150000px;}
.xcc_c00389{left:268.350000px;}
.x12a_c00389{left:269.400000px;}
.x31_c00389{left:270.600000px;}
.x56_c00389{left:271.650000px;}
.xad_c00389{left:272.850000px;}
.x22_c00389{left:273.900000px;}
.x6_c00389{left:275.100000px;}
.xd3_c00389{left:277.350000px;}
.xb4_c00389{left:280.800000px;}
.x81_c00389{left:282.450000px;}
.x3c_c00389{left:284.400000px;}
.x76_c00389{left:286.050000px;}
.x89_c00389{left:290.400000px;}
.xa0_c00389{left:293.250000px;}
.x16_c00389{left:294.900000px;}
.xc5_c00389{left:295.950000px;}
.x32_c00389{left:298.350000px;}
.x7_c00389{left:299.550000px;}
.xa7_c00389{left:301.200000px;}
.x23_c00389{left:305.250000px;}
.xb5_c00389{left:307.500000px;}
.x12b_c00389{left:308.700000px;}
.x98_c00389{left:310.950000px;}
.x107_c00389{left:314.250000px;}
.xc6_c00389{left:316.800000px;}
.xa8_c00389{left:318.450000px;}
.x24_c00389{left:319.950000px;}
.xe2_c00389{left:323.250000px;}
.x17_c00389{left:325.800000px;}
.x11d_c00389{left:327.600000px;}
.x123_c00389{left:329.100000px;}
.x8_c00389{left:330.900000px;}
.x62_c00389{left:332.700000px;}
.x137_c00389{left:335.550000px;}
.x77_c00389{left:337.650000px;}
.x6c_c00389{left:338.850000px;}
.x116_c00389{left:340.350000px;}
.x91_c00389{left:342.450000px;}
.x57_c00389{left:344.700000px;}
.x99_c00389{left:345.900000px;}
.x11e_c00389{left:350.250000px;}
.xf4_c00389{left:352.500000px;}
.x25_c00389{left:354.450000px;}
.xe7_c00389{left:356.700000px;}
.xcd_c00389{left:358.050000px;}
.x33_c00389{left:361.650000px;}
.x117_c00389{left:363.450000px;}
.x58_c00389{left:364.500000px;}
.x82_c00389{left:366.000000px;}
.x9_c00389{left:367.950000px;}
.x9a_c00389{left:371.100000px;}
.xe3_c00389{left:372.900000px;}
.xb6_c00389{left:374.850000px;}
.x26_c00389{left:376.800000px;}
.x132_c00389{left:378.150000px;}
.xc7_c00389{left:379.500000px;}
.x34_c00389{left:381.150000px;}
.xff_c00389{left:384.450000px;}
.x18_c00389{left:385.950000px;}
.x10f_c00389{left:388.650000px;}
.xa1_c00389{left:389.850000px;}
.x59_c00389{left:391.500000px;}
.x3d_c00389{left:393.000000px;}
.x63_c00389{left:394.500000px;}
.x108_c00389{left:396.600000px;}
.x6d_c00389{left:397.950000px;}
.x8a_c00389{left:401.250000px;}
.x13e_c00389{left:402.600000px;}
.x133_c00389{left:404.850000px;}
.x4a_c00389{left:406.050000px;}
.x9b_c00389{left:407.850000px;}
.x35_c00389{left:409.200000px;}
.xa9_c00389{left:412.500000px;}
.x3e_c00389{left:413.850000px;}
.x100_c00389{left:415.350000px;}
.x1_c00389{left:416.550000px;}
.x109_c00389{left:420.000000px;}
.xce_c00389{left:421.050000px;}
.x78_c00389{left:422.250000px;}
.x64_c00389{left:424.050000px;}
.x4b_c00389{left:427.650000px;}
.xa_c00389{left:429.900000px;}
.x6e_c00389{left:431.850000px;}
.x27_c00389{left:432.900000px;}
.x5a_c00389{left:435.750000px;}
.xc8_c00389{left:437.100000px;}
.xae_c00389{left:439.800000px;}
.xb7_c00389{left:441.750000px;}
.xdb_c00389{left:442.950000px;}
.x9c_c00389{left:445.950000px;}
.x124_c00389{left:447.450000px;}
.x10a_c00389{left:448.500000px;}
.x19_c00389{left:452.850000px;}
.xd4_c00389{left:455.550000px;}
.x3f_c00389{left:459.900000px;}
.xbd_c00389{left:463.650000px;}
.x12c_c00389{left:467.250000px;}
.x6f_c00389{left:468.600000px;}
.x83_c00389{left:470.400000px;}
.xaa_c00389{left:471.600000px;}
.x8b_c00389{left:473.550000px;}
.x1a_c00389{left:475.950000px;}
.xe4_c00389{left:477.600000px;}
.x138_c00389{left:479.400000px;}
.x12d_c00389{left:480.600000px;}
.xf5_c00389{left:482.100000px;}
.x79_c00389{left:483.450000px;}
.xb_c00389{left:484.650000px;}
.xcf_c00389{left:486.150000px;}
.x10b_c00389{left:489.150000px;}
.x118_c00389{left:490.650000px;}
.xb8_c00389{left:495.750000px;}
.xdc_c00389{left:498.000000px;}
.x92_c00389{left:499.350000px;}
.xf0_c00389{left:500.550000px;}
.x7a_c00389{left:502.950000px;}
.x9d_c00389{left:505.050000px;}
.xf6_c00389{left:506.250000px;}
.x36_c00389{left:509.250000px;}
.xaf_c00389{left:511.500000px;}
.x28_c00389{left:512.550000px;}
.xc_c00389{left:514.500000px;}
.xe8_c00389{left:517.650000px;}
.x93_c00389{left:519.450000px;}
.x125_c00389{left:523.050000px;}
.x121_c00389{left:526.500000px;}
.x4c_c00389{left:527.700000px;}
.xd5_c00389{left:529.350000px;}
.xab_c00389{left:530.700000px;}
.x84_c00389{left:533.400000px;}
.x5b_c00389{left:535.500000px;}
.x65_c00389{left:537.600000px;}
.xc9_c00389{left:539.100000px;}
.xfb_c00389{left:540.600000px;}
.xa2_c00389{left:541.800000px;}
.x7b_c00389{left:544.650000px;}
.xe9_c00389{left:546.150000px;}
.x134_c00389{left:548.100000px;}
.xbe_c00389{left:554.700000px;}
.x94_c00389{left:555.750000px;}
.x29_c00389{left:557.250000px;}
.x101_c00389{left:558.300000px;}
.x13b_c00389{left:559.350000px;}
.x12e_c00389{left:560.550000px;}
.x7c_c00389{left:561.600000px;}
.x119_c00389{left:564.450000px;}
.xdd_c00389{left:566.400000px;}
.x9e_c00389{left:569.100000px;}
.x70_c00389{left:570.900000px;}
.xb0_c00389{left:571.950000px;}
.x4d_c00389{left:574.800000px;}
.xea_c00389{left:576.000000px;}
.x2a_c00389{left:577.350000px;}
.x1b_c00389{left:580.350000px;}
.x8c_c00389{left:582.900000px;}
.x66_c00389{left:584.700000px;}
.xf7_c00389{left:585.750000px;}
.xd_c00389{left:587.250000px;}
.x126_c00389{left:588.900000px;}
.x40_c00389{left:591.600000px;}
.x4e_c00389{left:594.900000px;}
.x5c_c00389{left:597.000000px;}
.x139_c00389{left:600.300000px;}
.x110_c00389{left:603.150000px;}
.xb9_c00389{left:604.800000px;}
.x2b_c00389{left:605.850000px;}
.x13c_c00389{left:607.500000px;}
.x41_c00389{left:608.850000px;}
.x7d_c00389{left:610.950000px;}
.x37_c00389{left:614.700000px;}
.xde_c00389{left:616.350000px;}
.xbf_c00389{left:617.400000px;}
.xd0_c00389{left:620.100000px;}
.xe_c00389{left:622.200000px;}
.x127_c00389{left:625.650000px;}
.x71_c00389{left:626.700000px;}
.x38_c00389{left:628.350000px;}
.xfc_c00389{left:630.900000px;}
.x4f_c00389{left:632.400000px;}
.xf8_c00389{left:634.650000px;}
.x1c_c00389{left:635.850000px;}
.x8d_c00389{left:637.650000px;}
.x67_c00389{left:639.000000px;}
.x111_c00389{left:641.250000px;}
.xeb_c00389{left:643.050000px;}
.xa3_c00389{left:645.450000px;}
.xf_c00389{left:649.200000px;}
.x50_c00389{left:650.400000px;}
.x85_c00389{left:652.950000px;}
.x122_c00389{left:655.800000px;}
.xe5_c00389{left:657.150000px;}
.x2c_c00389{left:659.850000px;}
.x68_c00389{left:664.200000px;}
.x39_c00389{left:665.400000px;}
.x12f_c00389{left:668.250000px;}
.x1d_c00389{left:669.300000px;}
.xc0_c00389{left:671.700000px;}
.x42_c00389{left:673.350000px;}
.x95_c00389{left:674.700000px;}
.x51_c00389{left:676.350000px;}
.x86_c00389{left:678.900000px;}
.xba_c00389{left:681.450000px;}
.xca_c00389{left:685.200000px;}
.xf9_c00389{left:688.950000px;}
.xac_c00389{left:690.600000px;}
.xfd_c00389{left:693.150000px;}
.x96_c00389{left:694.800000px;}
.x2d_c00389{left:696.900000px;}
.xdf_c00389{left:699.600000px;}
.x135_c00389{left:700.650000px;}
.x43_c00389{left:702.150000px;}
.x1e_c00389{left:708.600000px;}
.xbb_c00389{left:711.750000px;}
.xec_c00389{left:713.250000px;}
.x5d_c00389{left:714.750000px;}
.x7e_c00389{left:717.600000px;}
.xb1_c00389{left:719.250000px;}
.xa4_c00389{left:720.750000px;}
.x72_c00389{left:721.800000px;}
.x11a_c00389{left:723.600000px;}
.x52_c00389{left:725.250000px;}
.xd6_c00389{left:728.850000px;}
.x10c_c00389{left:730.200000px;}
.xfa_c00389{left:732.900000px;}
.x10_c00389{left:734.100000px;}
.xf1_c00389{left:735.600000px;}
.x8e_c00389{left:736.650000px;}
.x44_c00389{left:738.450000px;}
.x73_c00389{left:740.100000px;}
.xa5_c00389{left:743.850000px;}
.x87_c00389{left:747.300000px;}
.x11f_c00389{left:749.700000px;}
.x2_c00389{left:751.050000px;}
.x45_c00389{left:755.700000px;}
.xe6_c00389{left:756.900000px;}
.xfe_c00389{left:760.800000px;}
.xb2_c00389{left:762.150000px;}
.x11_c00389{left:765.000000px;}
.x2e_c00389{left:769.950000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws4_c00389{word-spacing:-12.222222pt;}
.ws6_c00389{word-spacing:-6.726727pt;}
.ws9_c00389{word-spacing:-5.821024pt;}
.ws8_c00389{word-spacing:-4.666667pt;}
.ws3_c00389{word-spacing:-3.809524pt;}
.ws1_c00389{word-spacing:-2.962963pt;}
.wsc_c00389{word-spacing:0.000000pt;}
.wsa_c00389{word-spacing:1.394295pt;}
.ws0_c00389{word-spacing:2.187500pt;}
.ws5_c00389{word-spacing:4.197531pt;}
.wsb_c00389{word-spacing:6.155530pt;}
.ws7_c00389{word-spacing:10.000000pt;}
.ws2_c00389{word-spacing:11.975309pt;}
._0_c00389{width:46.666667pt;}
.fs1_c00389{font-size:48.000000pt;}
.fs0_c00389{font-size:53.333333pt;}
.y0_c00389{bottom:0.000000pt;}
.y2d_c00389{bottom:129.200000pt;}
.y2c_c00389{bottom:143.600000pt;}
.y2b_c00389{bottom:157.333333pt;}
.y2a_c00389{bottom:171.733333pt;}
.y29_c00389{bottom:185.866667pt;}
.y28_c00389{bottom:199.600000pt;}
.y27_c00389{bottom:213.733333pt;}
.y26_c00389{bottom:227.466667pt;}
.y25_c00389{bottom:270.666667pt;}
.y24_c00389{bottom:288.933333pt;}
.y23_c00389{bottom:306.533333pt;}
.y22_c00389{bottom:324.000000pt;}
.y21_c00389{bottom:341.866667pt;}
.y20_c00389{bottom:359.733333pt;}
.y1f_c00389{bottom:377.333333pt;}
.y1e_c00389{bottom:395.200000pt;}
.y1d_c00389{bottom:412.800000pt;}
.y1c_c00389{bottom:430.666667pt;}
.y1b_c00389{bottom:448.266667pt;}
.y1a_c00389{bottom:465.866667pt;}
.y19_c00389{bottom:484.266667pt;}
.y18_c00389{bottom:502.133333pt;}
.y17_c00389{bottom:520.000000pt;}
.y16_c00389{bottom:537.866667pt;}
.y15_c00389{bottom:555.733333pt;}
.y14_c00389{bottom:573.333333pt;}
.y13_c00389{bottom:591.200000pt;}
.y12_c00389{bottom:609.066667pt;}
.y11_c00389{bottom:626.666667pt;}
.y10_c00389{bottom:644.533333pt;}
.yf_c00389{bottom:662.133333pt;}
.ye_c00389{bottom:680.000000pt;}
.yd_c00389{bottom:697.600000pt;}
.yc_c00389{bottom:715.200000pt;}
.yb_c00389{bottom:733.066667pt;}
.ya_c00389{bottom:750.933333pt;}
.y9_c00389{bottom:768.800000pt;}
.y8_c00389{bottom:786.666667pt;}
.y7_c00389{bottom:804.533333pt;}
.y6_c00389{bottom:822.133333pt;}
.y5_c00389{bottom:840.000000pt;}
.y4_c00389{bottom:857.866667pt;}
.y3_c00389{bottom:875.733333pt;}
.y2_c00389{bottom:893.066667pt;}
.y1_c00389{bottom:926.400000pt;}
.h3_c00389{height:48.000000pt;}
.h2_c00389{height:53.333333pt;}
.h0_c00389{height:1037.119955pt;}
.h1_c00389{height:1037.333333pt;}
.w1_c00389{width:812.000000pt;}
.w0_c00389{width:812.159993pt;}
.x0_c00389{left:0.000000pt;}
.x13a_c00389{left:92.933333pt;}
.x102_c00389{left:94.000000pt;}
.x9f_c00389{left:95.200000pt;}
.x46_c00389{left:96.400000pt;}
.x12_c00389{left:97.333333pt;}
.x128_c00389{left:106.933333pt;}
.x10d_c00389{left:109.200000pt;}
.x53_c00389{left:114.800000pt;}
.x130_c00389{left:116.000000pt;}
.x115_c00389{left:119.333333pt;}
.xa6_c00389{left:120.933333pt;}
.x5e_c00389{left:122.266667pt;}
.x69_c00389{left:124.533333pt;}
.x3_c00389{left:125.466667pt;}
.x129_c00389{left:126.800000pt;}
.x103_c00389{left:128.533333pt;}
.xf2_c00389{left:129.733333pt;}
.x47_c00389{left:130.933333pt;}
.x112_c00389{left:132.000000pt;}
.xd7_c00389{left:133.333333pt;}
.x10e_c00389{left:134.800000pt;}
.x11b_c00389{left:135.733333pt;}
.x74_c00389{left:137.333333pt;}
.x13_c00389{left:138.266667pt;}
.x5f_c00389{left:140.533333pt;}
.x2f_c00389{left:142.666667pt;}
.x131_c00389{left:148.933333pt;}
.xe0_c00389{left:150.000000pt;}
.x1f_c00389{left:151.066667pt;}
.x113_c00389{left:152.533333pt;}
.x120_c00389{left:153.866667pt;}
.xc1_c00389{left:154.933333pt;}
.x4_c00389{left:156.533333pt;}
.x3a_c00389{left:158.400000pt;}
.x104_c00389{left:159.600000pt;}
.x48_c00389{left:160.666667pt;}
.x114_c00389{left:161.600000pt;}
.x8f_c00389{left:163.866667pt;}
.xf3_c00389{left:166.266667pt;}
.x7f_c00389{left:167.600000pt;}
.x97_c00389{left:169.200000pt;}
.xed_c00389{left:172.266667pt;}
.x14_c00389{left:173.466667pt;}
.xc2_c00389{left:176.400000pt;}
.xd1_c00389{left:179.066667pt;}
.x105_c00389{left:181.733333pt;}
.x60_c00389{left:182.800000pt;}
.xbc_c00389{left:184.266667pt;}
.xe1_c00389{left:185.333333pt;}
.x20_c00389{left:186.533333pt;}
.x30_c00389{left:187.466667pt;}
.xcb_c00389{left:188.933333pt;}
.x80_c00389{left:190.266667pt;}
.xee_c00389{left:192.800000pt;}
.xd8_c00389{left:194.133333pt;}
.x90_c00389{left:195.200000pt;}
.x88_c00389{left:197.066667pt;}
.x54_c00389{left:199.333333pt;}
.x5_c00389{left:201.066667pt;}
.xc3_c00389{left:202.000000pt;}
.xb3_c00389{left:203.466667pt;}
.x6a_c00389{left:205.200000pt;}
.x15_c00389{left:206.133333pt;}
.xd2_c00389{left:207.200000pt;}
.x136_c00389{left:208.933333pt;}
.x61_c00389{left:210.000000pt;}
.xef_c00389{left:215.466667pt;}
.xd9_c00389{left:216.800000pt;}
.x55_c00389{left:218.800000pt;}
.x13d_c00389{left:222.933333pt;}
.x75_c00389{left:223.866667pt;}
.x49_c00389{left:224.933333pt;}
.x3b_c00389{left:226.266667pt;}
.x106_c00389{left:228.800000pt;}
.x6b_c00389{left:230.133333pt;}
.xc4_c00389{left:231.066667pt;}
.x21_c00389{left:233.600000pt;}
.xda_c00389{left:236.000000pt;}
.x11c_c00389{left:237.466667pt;}
.xcc_c00389{left:238.533333pt;}
.x12a_c00389{left:239.466667pt;}
.x31_c00389{left:240.533333pt;}
.x56_c00389{left:241.466667pt;}
.xad_c00389{left:242.533333pt;}
.x22_c00389{left:243.466667pt;}
.x6_c00389{left:244.533333pt;}
.xd3_c00389{left:246.533333pt;}
.xb4_c00389{left:249.600000pt;}
.x81_c00389{left:251.066667pt;}
.x3c_c00389{left:252.800000pt;}
.x76_c00389{left:254.266667pt;}
.x89_c00389{left:258.133333pt;}
.xa0_c00389{left:260.666667pt;}
.x16_c00389{left:262.133333pt;}
.xc5_c00389{left:263.066667pt;}
.x32_c00389{left:265.200000pt;}
.x7_c00389{left:266.266667pt;}
.xa7_c00389{left:267.733333pt;}
.x23_c00389{left:271.333333pt;}
.xb5_c00389{left:273.333333pt;}
.x12b_c00389{left:274.400000pt;}
.x98_c00389{left:276.400000pt;}
.x107_c00389{left:279.333333pt;}
.xc6_c00389{left:281.600000pt;}
.xa8_c00389{left:283.066667pt;}
.x24_c00389{left:284.400000pt;}
.xe2_c00389{left:287.333333pt;}
.x17_c00389{left:289.600000pt;}
.x11d_c00389{left:291.200000pt;}
.x123_c00389{left:292.533333pt;}
.x8_c00389{left:294.133333pt;}
.x62_c00389{left:295.733333pt;}
.x137_c00389{left:298.266667pt;}
.x77_c00389{left:300.133333pt;}
.x6c_c00389{left:301.200000pt;}
.x116_c00389{left:302.533333pt;}
.x91_c00389{left:304.400000pt;}
.x57_c00389{left:306.400000pt;}
.x99_c00389{left:307.466667pt;}
.x11e_c00389{left:311.333333pt;}
.xf4_c00389{left:313.333333pt;}
.x25_c00389{left:315.066667pt;}
.xe7_c00389{left:317.066667pt;}
.xcd_c00389{left:318.266667pt;}
.x33_c00389{left:321.466667pt;}
.x117_c00389{left:323.066667pt;}
.x58_c00389{left:324.000000pt;}
.x82_c00389{left:325.333333pt;}
.x9_c00389{left:327.066667pt;}
.x9a_c00389{left:329.866667pt;}
.xe3_c00389{left:331.466667pt;}
.xb6_c00389{left:333.200000pt;}
.x26_c00389{left:334.933333pt;}
.x132_c00389{left:336.133333pt;}
.xc7_c00389{left:337.333333pt;}
.x34_c00389{left:338.800000pt;}
.xff_c00389{left:341.733333pt;}
.x18_c00389{left:343.066667pt;}
.x10f_c00389{left:345.466667pt;}
.xa1_c00389{left:346.533333pt;}
.x59_c00389{left:348.000000pt;}
.x3d_c00389{left:349.333333pt;}
.x63_c00389{left:350.666667pt;}
.x108_c00389{left:352.533333pt;}
.x6d_c00389{left:353.733333pt;}
.x8a_c00389{left:356.666667pt;}
.x13e_c00389{left:357.866667pt;}
.x133_c00389{left:359.866667pt;}
.x4a_c00389{left:360.933333pt;}
.x9b_c00389{left:362.533333pt;}
.x35_c00389{left:363.733333pt;}
.xa9_c00389{left:366.666667pt;}
.x3e_c00389{left:367.866667pt;}
.x100_c00389{left:369.200000pt;}
.x1_c00389{left:370.266667pt;}
.x109_c00389{left:373.333333pt;}
.xce_c00389{left:374.266667pt;}
.x78_c00389{left:375.333333pt;}
.x64_c00389{left:376.933333pt;}
.x4b_c00389{left:380.133333pt;}
.xa_c00389{left:382.133333pt;}
.x6e_c00389{left:383.866667pt;}
.x27_c00389{left:384.800000pt;}
.x5a_c00389{left:387.333333pt;}
.xc8_c00389{left:388.533333pt;}
.xae_c00389{left:390.933333pt;}
.xb7_c00389{left:392.666667pt;}
.xdb_c00389{left:393.733333pt;}
.x9c_c00389{left:396.400000pt;}
.x124_c00389{left:397.733333pt;}
.x10a_c00389{left:398.666667pt;}
.x19_c00389{left:402.533333pt;}
.xd4_c00389{left:404.933333pt;}
.x3f_c00389{left:408.800000pt;}
.xbd_c00389{left:412.133333pt;}
.x12c_c00389{left:415.333333pt;}
.x6f_c00389{left:416.533333pt;}
.x83_c00389{left:418.133333pt;}
.xaa_c00389{left:419.200000pt;}
.x8b_c00389{left:420.933333pt;}
.x1a_c00389{left:423.066667pt;}
.xe4_c00389{left:424.533333pt;}
.x138_c00389{left:426.133333pt;}
.x12d_c00389{left:427.200000pt;}
.xf5_c00389{left:428.533333pt;}
.x79_c00389{left:429.733333pt;}
.xb_c00389{left:430.800000pt;}
.xcf_c00389{left:432.133333pt;}
.x10b_c00389{left:434.800000pt;}
.x118_c00389{left:436.133333pt;}
.xb8_c00389{left:440.666667pt;}
.xdc_c00389{left:442.666667pt;}
.x92_c00389{left:443.866667pt;}
.xf0_c00389{left:444.933333pt;}
.x7a_c00389{left:447.066667pt;}
.x9d_c00389{left:448.933333pt;}
.xf6_c00389{left:450.000000pt;}
.x36_c00389{left:452.666667pt;}
.xaf_c00389{left:454.666667pt;}
.x28_c00389{left:455.600000pt;}
.xc_c00389{left:457.333333pt;}
.xe8_c00389{left:460.133333pt;}
.x93_c00389{left:461.733333pt;}
.x125_c00389{left:464.933333pt;}
.x121_c00389{left:468.000000pt;}
.x4c_c00389{left:469.066667pt;}
.xd5_c00389{left:470.533333pt;}
.xab_c00389{left:471.733333pt;}
.x84_c00389{left:474.133333pt;}
.x5b_c00389{left:476.000000pt;}
.x65_c00389{left:477.866667pt;}
.xc9_c00389{left:479.200000pt;}
.xfb_c00389{left:480.533333pt;}
.xa2_c00389{left:481.600000pt;}
.x7b_c00389{left:484.133333pt;}
.xe9_c00389{left:485.466667pt;}
.x134_c00389{left:487.200000pt;}
.xbe_c00389{left:493.066667pt;}
.x94_c00389{left:494.000000pt;}
.x29_c00389{left:495.333333pt;}
.x101_c00389{left:496.266667pt;}
.x13b_c00389{left:497.200000pt;}
.x12e_c00389{left:498.266667pt;}
.x7c_c00389{left:499.200000pt;}
.x119_c00389{left:501.733333pt;}
.xdd_c00389{left:503.466667pt;}
.x9e_c00389{left:505.866667pt;}
.x70_c00389{left:507.466667pt;}
.xb0_c00389{left:508.400000pt;}
.x4d_c00389{left:510.933333pt;}
.xea_c00389{left:512.000000pt;}
.x2a_c00389{left:513.200000pt;}
.x1b_c00389{left:515.866667pt;}
.x8c_c00389{left:518.133333pt;}
.x66_c00389{left:519.733333pt;}
.xf7_c00389{left:520.666667pt;}
.xd_c00389{left:522.000000pt;}
.x126_c00389{left:523.466667pt;}
.x40_c00389{left:525.866667pt;}
.x4e_c00389{left:528.800000pt;}
.x5c_c00389{left:530.666667pt;}
.x139_c00389{left:533.600000pt;}
.x110_c00389{left:536.133333pt;}
.xb9_c00389{left:537.600000pt;}
.x2b_c00389{left:538.533333pt;}
.x13c_c00389{left:540.000000pt;}
.x41_c00389{left:541.200000pt;}
.x7d_c00389{left:543.066667pt;}
.x37_c00389{left:546.400000pt;}
.xde_c00389{left:547.866667pt;}
.xbf_c00389{left:548.800000pt;}
.xd0_c00389{left:551.200000pt;}
.xe_c00389{left:553.066667pt;}
.x127_c00389{left:556.133333pt;}
.x71_c00389{left:557.066667pt;}
.x38_c00389{left:558.533333pt;}
.xfc_c00389{left:560.800000pt;}
.x4f_c00389{left:562.133333pt;}
.xf8_c00389{left:564.133333pt;}
.x1c_c00389{left:565.200000pt;}
.x8d_c00389{left:566.800000pt;}
.x67_c00389{left:568.000000pt;}
.x111_c00389{left:570.000000pt;}
.xeb_c00389{left:571.600000pt;}
.xa3_c00389{left:573.733333pt;}
.xf_c00389{left:577.066667pt;}
.x50_c00389{left:578.133333pt;}
.x85_c00389{left:580.400000pt;}
.x122_c00389{left:582.933333pt;}
.xe5_c00389{left:584.133333pt;}
.x2c_c00389{left:586.533333pt;}
.x68_c00389{left:590.400000pt;}
.x39_c00389{left:591.466667pt;}
.x12f_c00389{left:594.000000pt;}
.x1d_c00389{left:594.933333pt;}
.xc0_c00389{left:597.066667pt;}
.x42_c00389{left:598.533333pt;}
.x95_c00389{left:599.733333pt;}
.x51_c00389{left:601.200000pt;}
.x86_c00389{left:603.466667pt;}
.xba_c00389{left:605.733333pt;}
.xca_c00389{left:609.066667pt;}
.xf9_c00389{left:612.400000pt;}
.xac_c00389{left:613.866667pt;}
.xfd_c00389{left:616.133333pt;}
.x96_c00389{left:617.600000pt;}
.x2d_c00389{left:619.466667pt;}
.xdf_c00389{left:621.866667pt;}
.x135_c00389{left:622.800000pt;}
.x43_c00389{left:624.133333pt;}
.x1e_c00389{left:629.866667pt;}
.xbb_c00389{left:632.666667pt;}
.xec_c00389{left:634.000000pt;}
.x5d_c00389{left:635.333333pt;}
.x7e_c00389{left:637.866667pt;}
.xb1_c00389{left:639.333333pt;}
.xa4_c00389{left:640.666667pt;}
.x72_c00389{left:641.600000pt;}
.x11a_c00389{left:643.200000pt;}
.x52_c00389{left:644.666667pt;}
.xd6_c00389{left:647.866667pt;}
.x10c_c00389{left:649.066667pt;}
.xfa_c00389{left:651.466667pt;}
.x10_c00389{left:652.533333pt;}
.xf1_c00389{left:653.866667pt;}
.x8e_c00389{left:654.800000pt;}
.x44_c00389{left:656.400000pt;}
.x73_c00389{left:657.866667pt;}
.xa5_c00389{left:661.200000pt;}
.x87_c00389{left:664.266667pt;}
.x11f_c00389{left:666.400000pt;}
.x2_c00389{left:667.600000pt;}
.x45_c00389{left:671.733333pt;}
.xe6_c00389{left:672.800000pt;}
.xfe_c00389{left:676.266667pt;}
.xb2_c00389{left:677.466667pt;}
.x11_c00389{left:680.000000pt;}
.x2e_c00389{left:684.400000pt;}
}





/* 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_c00390 {
    display:none;
  }
  .loading-indicator_c00390.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00390 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_c00390 { 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_c00390" -> "#page-container .classname_c00390")
 */
.pf_c00390 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00390 { /* 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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00390 { /* 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_c00390 { /* 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_c00390 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00390 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00390 {overflow:visible;}
  }
}
.c_c00390 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00390 { /* 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_c00390:after { /* webkit #35443 */
  content: '';
}
.t_c00390:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00390 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 */
}
.__c00390 { /* 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_c00390 { /* info for Javascript */
  display:none;
}
.l_c00390 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00390 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00390 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00390: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_c00390 {
    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_c00390.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00390.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_c00390 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00390{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00390;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.000000;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;}
.m54_c00390{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m25_c00390{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m27_c00390{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m47_c00390{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m15_c00390{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m65_c00390{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00390{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m57_c00390{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m38_c00390{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m51_c00390{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m13_c00390{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00390{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00390{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00390{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m74_c00390{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mf_c00390{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00390{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m59_c00390{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.me_c00390{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00390{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00390{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00390{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00390{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m39_c00390{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8_c00390{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m71_c00390{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m31_c00390{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00390{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00390{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m35_c00390{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m11_c00390{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00390{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m75_c00390{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00390{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.mb_c00390{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00390{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00390{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m45_c00390{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m28_c00390{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m18_c00390{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m70_c00390{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m26_c00390{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00390{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m72_c00390{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma_c00390{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00390{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m55_c00390{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m60_c00390{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m32_c00390{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00390{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00390{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00390{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m78_c00390{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00390{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m30_c00390{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00390{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m34_c00390{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00390{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00390{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m79_c00390{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9_c00390{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00390{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m19_c00390{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00390{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00390{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5_c00390{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00390{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m42_c00390{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m41_c00390{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m37_c00390{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00390{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m16_c00390{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.md_c00390{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.mc_c00390{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m62_c00390{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m73_c00390{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00390{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m43_c00390{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m20_c00390{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00390{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m36_c00390{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m69_c00390{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00390{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m50_c00390{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m56_c00390{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00390{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m33_c00390{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00390{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m76_c00390{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m21_c00390{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m48_c00390{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m61_c00390{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m68_c00390{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00390{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m77_c00390{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m44_c00390{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00390{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00390{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00390{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m46_c00390{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00390{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m40_c00390{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m14_c00390{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m29_c00390{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00390{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m22_c00390{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00390{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00390{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m58_c00390{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2_c00390{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m49_c00390{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m12_c00390{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m24_c00390{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00390{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00390{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m52_c00390{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00390{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00390{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00390{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00390{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00390{vertical-align:0.000000px;}
.ls0_c00390{letter-spacing:0.000000px;}
.sc__c00390{text-shadow:none;}
.sc0_c00390{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__c00390{-webkit-text-stroke:0px transparent;}
.sc0_c00390{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00390{word-spacing:-5.479452px;}
.ws1_c00390{word-spacing:-5.256410px;}
.ws0_c00390{word-spacing:-1.250000px;}
.ws6_c00390{word-spacing:0.000000px;}
.ws2_c00390{word-spacing:1.666667px;}
.ws5_c00390{word-spacing:2.890849px;}
.ws3_c00390{word-spacing:9.722222px;}
.fc0_c00390{color:transparent;}
.fs1_c00390{font-size:48.000000px;}
.fs2_c00390{font-size:54.000000px;}
.fs0_c00390{font-size:60.000000px;}
.y0_c00390{bottom:0.000000px;}
.y19_c00390{bottom:539.250000px;}
.y18_c00390{bottom:565.500000px;}
.y17_c00390{bottom:586.050000px;}
.y16_c00390{bottom:606.150000px;}
.y15_c00390{bottom:625.950000px;}
.y14_c00390{bottom:645.450000px;}
.y13_c00390{bottom:665.700000px;}
.y12_c00390{bottom:685.800000px;}
.y11_c00390{bottom:705.900000px;}
.y10_c00390{bottom:726.000000px;}
.yf_c00390{bottom:746.100000px;}
.ye_c00390{bottom:765.900000px;}
.yd_c00390{bottom:786.000000px;}
.yc_c00390{bottom:806.100000px;}
.yb_c00390{bottom:825.900000px;}
.ya_c00390{bottom:845.850000px;}
.y9_c00390{bottom:865.650000px;}
.y8_c00390{bottom:885.750000px;}
.y7_c00390{bottom:905.850000px;}
.y6_c00390{bottom:925.650000px;}
.y5_c00390{bottom:945.750000px;}
.y4_c00390{bottom:965.250000px;}
.y3_c00390{bottom:985.350000px;}
.y2_c00390{bottom:1005.450000px;}
.y1_c00390{bottom:1043.700000px;}
.h3_c00390{height:48.000000px;}
.h4_c00390{height:54.000000px;}
.h2_c00390{height:60.000000px;}
.h0_c00390{height:1166.759949px;}
.h1_c00390{height:1167.000000px;}
.w1_c00390{width:913.500000px;}
.w0_c00390{width:913.679993px;}
.x0_c00390{left:0.000000px;}
.xb0_c00390{left:130.350000px;}
.x1_c00390{left:131.700000px;}
.xa6_c00390{left:151.800000px;}
.x3_c00390{left:162.750000px;}
.xd9_c00390{left:165.000000px;}
.x3b_c00390{left:166.950000px;}
.x2d_c00390{left:168.300000px;}
.x69_c00390{left:169.500000px;}
.x79_c00390{left:172.650000px;}
.x52_c00390{left:178.950000px;}
.x3c_c00390{left:188.850000px;}
.x91_c00390{left:190.050000px;}
.x12_c00390{left:192.300000px;}
.xd4_c00390{left:193.350000px;}
.xb7_c00390{left:195.900000px;}
.x7a_c00390{left:198.900000px;}
.x4_c00390{left:205.950000px;}
.x53_c00390{left:207.750000px;}
.x5d_c00390{left:210.450000px;}
.x2e_c00390{left:213.300000px;}
.x1f_c00390{left:215.850000px;}
.x13_c00390{left:218.550000px;}
.xa7_c00390{left:220.500000px;}
.xbd_c00390{left:227.700000px;}
.x3d_c00390{left:231.000000px;}
.x46_c00390{left:233.550000px;}
.x92_c00390{left:238.650000px;}
.x2f_c00390{left:241.800000px;}
.x6a_c00390{left:247.950000px;}
.x20_c00390{left:249.300000px;}
.x47_c00390{left:251.550000px;}
.x14_c00390{left:253.050000px;}
.x54_c00390{left:254.550000px;}
.x7b_c00390{left:256.200000px;}
.xda_c00390{left:258.600000px;}
.x3e_c00390{left:259.800000px;}
.xc1_c00390{left:261.000000px;}
.x9f_c00390{left:263.100000px;}
.x5e_c00390{left:264.150000px;}
.xd5_c00390{left:266.400000px;}
.x6b_c00390{left:267.750000px;}
.xcb_c00390{left:270.150000px;}
.x21_c00390{left:271.650000px;}
.x5_c00390{left:273.000000px;}
.x93_c00390{left:276.450000px;}
.x87_c00390{left:278.700000px;}
.x48_c00390{left:280.050000px;}
.x30_c00390{left:281.400000px;}
.xbe_c00390{left:284.250000px;}
.xb1_c00390{left:286.500000px;}
.x5f_c00390{left:289.650000px;}
.xdb_c00390{left:292.800000px;}
.x7c_c00390{left:294.000000px;}
.x6c_c00390{left:297.300000px;}
.xcc_c00390{left:298.950000px;}
.x3f_c00390{left:304.800000px;}
.x88_c00390{left:306.750000px;}
.x55_c00390{left:311.850000px;}
.xd6_c00390{left:315.000000px;}
.xa0_c00390{left:316.050000px;}
.x22_c00390{left:318.450000px;}
.xb2_c00390{left:321.450000px;}
.x7d_c00390{left:322.500000px;}
.x6_c00390{left:323.700000px;}
.x40_c00390{left:325.650000px;}
.xc2_c00390{left:332.400000px;}
.x60_c00390{left:335.700000px;}
.xbf_c00390{left:337.950000px;}
.x15_c00390{left:343.800000px;}
.x56_c00390{left:345.750000px;}
.x7e_c00390{left:348.000000px;}
.xb3_c00390{left:349.950000px;}
.x71_c00390{left:351.000000px;}
.x7_c00390{left:356.400000px;}
.x94_c00390{left:365.250000px;}
.x31_c00390{left:367.500000px;}
.x49_c00390{left:368.550000px;}
.x16_c00390{left:376.950000px;}
.x32_c00390{left:378.600000px;}
.x41_c00390{left:379.650000px;}
.xc3_c00390{left:380.700000px;}
.xc0_c00390{left:388.350000px;}
.xa8_c00390{left:390.000000px;}
.xcd_c00390{left:391.800000px;}
.x95_c00390{left:393.750000px;}
.x8_c00390{left:394.950000px;}
.x4a_c00390{left:398.100000px;}
.x7f_c00390{left:401.250000px;}
.x6d_c00390{left:403.500000px;}
.x23_c00390{left:405.900000px;}
.x33_c00390{left:409.950000px;}
.xce_c00390{left:411.900000px;}
.x89_c00390{left:417.900000px;}
.xb8_c00390{left:421.200000px;}
.x96_c00390{left:424.650000px;}
.x57_c00390{left:427.500000px;}
.x2_c00390{left:429.450000px;}
.x61_c00390{left:431.100000px;}
.xa9_c00390{left:436.050000px;}
.x24_c00390{left:438.000000px;}
.xb4_c00390{left:439.350000px;}
.x34_c00390{left:441.750000px;}
.xdc_c00390{left:446.100000px;}
.xcf_c00390{left:447.900000px;}
.x6e_c00390{left:449.250000px;}
.x8a_c00390{left:451.050000px;}
.x17_c00390{left:453.300000px;}
.xa1_c00390{left:456.000000px;}
.x72_c00390{left:457.500000px;}
.x62_c00390{left:458.850000px;}
.xb9_c00390{left:460.050000px;}
.x9_c00390{left:461.850000px;}
.x42_c00390{left:465.000000px;}
.xaa_c00390{left:470.250000px;}
.x80_c00390{left:472.950000px;}
.x97_c00390{left:474.300000px;}
.xd7_c00390{left:475.950000px;}
.xdd_c00390{left:479.550000px;}
.xa_c00390{left:481.350000px;}
.x58_c00390{left:484.800000px;}
.x35_c00390{left:486.000000px;}
.x25_c00390{left:490.200000px;}
.x4b_c00390{left:493.500000px;}
.x8b_c00390{left:497.100000px;}
.x63_c00390{left:498.150000px;}
.xba_c00390{left:503.550000px;}
.x6f_c00390{left:505.050000px;}
.xc4_c00390{left:507.150000px;}
.x26_c00390{left:509.250000px;}
.x43_c00390{left:513.600000px;}
.xd0_c00390{left:515.550000px;}
.x73_c00390{left:517.650000px;}
.xb5_c00390{left:519.300000px;}
.x4c_c00390{left:521.250000px;}
.x36_c00390{left:523.050000px;}
.x8c_c00390{left:524.400000px;}
.xde_c00390{left:528.150000px;}
.xbb_c00390{left:532.350000px;}
.x64_c00390{left:536.250000px;}
.x27_c00390{left:539.100000px;}
.xab_c00390{left:540.450000px;}
.x4d_c00390{left:544.950000px;}
.x59_c00390{left:548.100000px;}
.xa2_c00390{left:549.600000px;}
.x65_c00390{left:554.250000px;}
.x81_c00390{left:556.500000px;}
.xb_c00390{left:558.000000px;}
.x74_c00390{left:561.900000px;}
.x98_c00390{left:563.550000px;}
.xb6_c00390{left:565.800000px;}
.xc5_c00390{left:567.150000px;}
.x18_c00390{left:569.250000px;}
.x66_c00390{left:572.250000px;}
.x82_c00390{left:576.600000px;}
.xac_c00390{left:578.550000px;}
.x5a_c00390{left:581.250000px;}
.xa3_c00390{left:582.750000px;}
.x19_c00390{left:584.700000px;}
.xc_c00390{left:587.850000px;}
.xd1_c00390{left:589.050000px;}
.x83_c00390{left:592.050000px;}
.xd8_c00390{left:599.700000px;}
.x75_c00390{left:601.200000px;}
.xa4_c00390{left:602.550000px;}
.x84_c00390{left:603.900000px;}
.x8d_c00390{left:605.400000px;}
.x28_c00390{left:606.450000px;}
.x4e_c00390{left:609.450000px;}
.x99_c00390{left:611.850000px;}
.x76_c00390{left:622.500000px;}
.xc6_c00390{left:626.250000px;}
.xd_c00390{left:630.300000px;}
.x67_c00390{left:635.250000px;}
.x29_c00390{left:637.050000px;}
.x70_c00390{left:640.800000px;}
.x44_c00390{left:643.200000px;}
.x85_c00390{left:645.000000px;}
.x1a_c00390{left:646.650000px;}
.xe_c00390{left:650.100000px;}
.x9a_c00390{left:655.800000px;}
.x8e_c00390{left:657.900000px;}
.xd2_c00390{left:658.950000px;}
.x1b_c00390{left:663.900000px;}
.x37_c00390{left:665.250000px;}
.x68_c00390{left:668.700000px;}
.xa5_c00390{left:670.650000px;}
.x5b_c00390{left:673.350000px;}
.x9b_c00390{left:675.600000px;}
.xc7_c00390{left:681.300000px;}
.x1c_c00390{left:684.000000px;}
.x8f_c00390{left:687.000000px;}
.xad_c00390{left:692.250000px;}
.x2a_c00390{left:698.550000px;}
.xd3_c00390{left:702.450000px;}
.x5c_c00390{left:704.250000px;}
.xc8_c00390{left:707.250000px;}
.xf_c00390{left:708.450000px;}
.x45_c00390{left:710.850000px;}
.x38_c00390{left:714.600000px;}
.x9c_c00390{left:717.000000px;}
.x2b_c00390{left:719.100000px;}
.x77_c00390{left:721.800000px;}
.x4f_c00390{left:726.150000px;}
.x39_c00390{left:731.850000px;}
.x1d_c00390{left:733.650000px;}
.x2c_c00390{left:736.050000px;}
.x10_c00390{left:738.000000px;}
.xae_c00390{left:740.550000px;}
.x86_c00390{left:741.900000px;}
.x9d_c00390{left:743.700000px;}
.xdf_c00390{left:745.500000px;}
.x1e_c00390{left:751.650000px;}
.x50_c00390{left:755.700000px;}
.x3a_c00390{left:757.350000px;}
.x90_c00390{left:759.000000px;}
.x78_c00390{left:766.050000px;}
.x9e_c00390{left:770.400000px;}
.xc9_c00390{left:775.350000px;}
.x11_c00390{left:776.550000px;}
.xbc_c00390{left:780.300000px;}
.xca_c00390{left:786.450000px;}
.xaf_c00390{left:788.400000px;}
.x51_c00390{left:792.750000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws4_c00390{word-spacing:-4.870624pt;}
.ws1_c00390{word-spacing:-4.672365pt;}
.ws0_c00390{word-spacing:-1.111111pt;}
.ws6_c00390{word-spacing:0.000000pt;}
.ws2_c00390{word-spacing:1.481481pt;}
.ws5_c00390{word-spacing:2.569644pt;}
.ws3_c00390{word-spacing:8.641975pt;}
.fs1_c00390{font-size:42.666667pt;}
.fs2_c00390{font-size:48.000000pt;}
.fs0_c00390{font-size:53.333333pt;}
.y0_c00390{bottom:0.000000pt;}
.y19_c00390{bottom:479.333333pt;}
.y18_c00390{bottom:502.666667pt;}
.y17_c00390{bottom:520.933333pt;}
.y16_c00390{bottom:538.800000pt;}
.y15_c00390{bottom:556.400000pt;}
.y14_c00390{bottom:573.733333pt;}
.y13_c00390{bottom:591.733333pt;}
.y12_c00390{bottom:609.600000pt;}
.y11_c00390{bottom:627.466667pt;}
.y10_c00390{bottom:645.333333pt;}
.yf_c00390{bottom:663.200000pt;}
.ye_c00390{bottom:680.800000pt;}
.yd_c00390{bottom:698.666667pt;}
.yc_c00390{bottom:716.533333pt;}
.yb_c00390{bottom:734.133333pt;}
.ya_c00390{bottom:751.866667pt;}
.y9_c00390{bottom:769.466667pt;}
.y8_c00390{bottom:787.333333pt;}
.y7_c00390{bottom:805.200000pt;}
.y6_c00390{bottom:822.800000pt;}
.y5_c00390{bottom:840.666667pt;}
.y4_c00390{bottom:858.000000pt;}
.y3_c00390{bottom:875.866667pt;}
.y2_c00390{bottom:893.733333pt;}
.y1_c00390{bottom:927.733333pt;}
.h3_c00390{height:42.666667pt;}
.h4_c00390{height:48.000000pt;}
.h2_c00390{height:53.333333pt;}
.h0_c00390{height:1037.119955pt;}
.h1_c00390{height:1037.333333pt;}
.w1_c00390{width:812.000000pt;}
.w0_c00390{width:812.159993pt;}
.x0_c00390{left:0.000000pt;}
.xb0_c00390{left:115.866667pt;}
.x1_c00390{left:117.066667pt;}
.xa6_c00390{left:134.933333pt;}
.x3_c00390{left:144.666667pt;}
.xd9_c00390{left:146.666667pt;}
.x3b_c00390{left:148.400000pt;}
.x2d_c00390{left:149.600000pt;}
.x69_c00390{left:150.666667pt;}
.x79_c00390{left:153.466667pt;}
.x52_c00390{left:159.066667pt;}
.x3c_c00390{left:167.866667pt;}
.x91_c00390{left:168.933333pt;}
.x12_c00390{left:170.933333pt;}
.xd4_c00390{left:171.866667pt;}
.xb7_c00390{left:174.133333pt;}
.x7a_c00390{left:176.800000pt;}
.x4_c00390{left:183.066667pt;}
.x53_c00390{left:184.666667pt;}
.x5d_c00390{left:187.066667pt;}
.x2e_c00390{left:189.600000pt;}
.x1f_c00390{left:191.866667pt;}
.x13_c00390{left:194.266667pt;}
.xa7_c00390{left:196.000000pt;}
.xbd_c00390{left:202.400000pt;}
.x3d_c00390{left:205.333333pt;}
.x46_c00390{left:207.600000pt;}
.x92_c00390{left:212.133333pt;}
.x2f_c00390{left:214.933333pt;}
.x6a_c00390{left:220.400000pt;}
.x20_c00390{left:221.600000pt;}
.x47_c00390{left:223.600000pt;}
.x14_c00390{left:224.933333pt;}
.x54_c00390{left:226.266667pt;}
.x7b_c00390{left:227.733333pt;}
.xda_c00390{left:229.866667pt;}
.x3e_c00390{left:230.933333pt;}
.xc1_c00390{left:232.000000pt;}
.x9f_c00390{left:233.866667pt;}
.x5e_c00390{left:234.800000pt;}
.xd5_c00390{left:236.800000pt;}
.x6b_c00390{left:238.000000pt;}
.xcb_c00390{left:240.133333pt;}
.x21_c00390{left:241.466667pt;}
.x5_c00390{left:242.666667pt;}
.x93_c00390{left:245.733333pt;}
.x87_c00390{left:247.733333pt;}
.x48_c00390{left:248.933333pt;}
.x30_c00390{left:250.133333pt;}
.xbe_c00390{left:252.666667pt;}
.xb1_c00390{left:254.666667pt;}
.x5f_c00390{left:257.466667pt;}
.xdb_c00390{left:260.266667pt;}
.x7c_c00390{left:261.333333pt;}
.x6c_c00390{left:264.266667pt;}
.xcc_c00390{left:265.733333pt;}
.x3f_c00390{left:270.933333pt;}
.x88_c00390{left:272.666667pt;}
.x55_c00390{left:277.200000pt;}
.xd6_c00390{left:280.000000pt;}
.xa0_c00390{left:280.933333pt;}
.x22_c00390{left:283.066667pt;}
.xb2_c00390{left:285.733333pt;}
.x7d_c00390{left:286.666667pt;}
.x6_c00390{left:287.733333pt;}
.x40_c00390{left:289.466667pt;}
.xc2_c00390{left:295.466667pt;}
.x60_c00390{left:298.400000pt;}
.xbf_c00390{left:300.400000pt;}
.x15_c00390{left:305.600000pt;}
.x56_c00390{left:307.333333pt;}
.x7e_c00390{left:309.333333pt;}
.xb3_c00390{left:311.066667pt;}
.x71_c00390{left:312.000000pt;}
.x7_c00390{left:316.800000pt;}
.x94_c00390{left:324.666667pt;}
.x31_c00390{left:326.666667pt;}
.x49_c00390{left:327.600000pt;}
.x16_c00390{left:335.066667pt;}
.x32_c00390{left:336.533333pt;}
.x41_c00390{left:337.466667pt;}
.xc3_c00390{left:338.400000pt;}
.xc0_c00390{left:345.200000pt;}
.xa8_c00390{left:346.666667pt;}
.xcd_c00390{left:348.266667pt;}
.x95_c00390{left:350.000000pt;}
.x8_c00390{left:351.066667pt;}
.x4a_c00390{left:353.866667pt;}
.x7f_c00390{left:356.666667pt;}
.x6d_c00390{left:358.666667pt;}
.x23_c00390{left:360.800000pt;}
.x33_c00390{left:364.400000pt;}
.xce_c00390{left:366.133333pt;}
.x89_c00390{left:371.466667pt;}
.xb8_c00390{left:374.400000pt;}
.x96_c00390{left:377.466667pt;}
.x57_c00390{left:380.000000pt;}
.x2_c00390{left:381.733333pt;}
.x61_c00390{left:383.200000pt;}
.xa9_c00390{left:387.600000pt;}
.x24_c00390{left:389.333333pt;}
.xb4_c00390{left:390.533333pt;}
.x34_c00390{left:392.666667pt;}
.xdc_c00390{left:396.533333pt;}
.xcf_c00390{left:398.133333pt;}
.x6e_c00390{left:399.333333pt;}
.x8a_c00390{left:400.933333pt;}
.x17_c00390{left:402.933333pt;}
.xa1_c00390{left:405.333333pt;}
.x72_c00390{left:406.666667pt;}
.x62_c00390{left:407.866667pt;}
.xb9_c00390{left:408.933333pt;}
.x9_c00390{left:410.533333pt;}
.x42_c00390{left:413.333333pt;}
.xaa_c00390{left:418.000000pt;}
.x80_c00390{left:420.400000pt;}
.x97_c00390{left:421.600000pt;}
.xd7_c00390{left:423.066667pt;}
.xdd_c00390{left:426.266667pt;}
.xa_c00390{left:427.866667pt;}
.x58_c00390{left:430.933333pt;}
.x35_c00390{left:432.000000pt;}
.x25_c00390{left:435.733333pt;}
.x4b_c00390{left:438.666667pt;}
.x8b_c00390{left:441.866667pt;}
.x63_c00390{left:442.800000pt;}
.xba_c00390{left:447.600000pt;}
.x6f_c00390{left:448.933333pt;}
.xc4_c00390{left:450.800000pt;}
.x26_c00390{left:452.666667pt;}
.x43_c00390{left:456.533333pt;}
.xd0_c00390{left:458.266667pt;}
.x73_c00390{left:460.133333pt;}
.xb5_c00390{left:461.600000pt;}
.x4c_c00390{left:463.333333pt;}
.x36_c00390{left:464.933333pt;}
.x8c_c00390{left:466.133333pt;}
.xde_c00390{left:469.466667pt;}
.xbb_c00390{left:473.200000pt;}
.x64_c00390{left:476.666667pt;}
.x27_c00390{left:479.200000pt;}
.xab_c00390{left:480.400000pt;}
.x4d_c00390{left:484.400000pt;}
.x59_c00390{left:487.200000pt;}
.xa2_c00390{left:488.533333pt;}
.x65_c00390{left:492.666667pt;}
.x81_c00390{left:494.666667pt;}
.xb_c00390{left:496.000000pt;}
.x74_c00390{left:499.466667pt;}
.x98_c00390{left:500.933333pt;}
.xb6_c00390{left:502.933333pt;}
.xc5_c00390{left:504.133333pt;}
.x18_c00390{left:506.000000pt;}
.x66_c00390{left:508.666667pt;}
.x82_c00390{left:512.533333pt;}
.xac_c00390{left:514.266667pt;}
.x5a_c00390{left:516.666667pt;}
.xa3_c00390{left:518.000000pt;}
.x19_c00390{left:519.733333pt;}
.xc_c00390{left:522.533333pt;}
.xd1_c00390{left:523.600000pt;}
.x83_c00390{left:526.266667pt;}
.xd8_c00390{left:533.066667pt;}
.x75_c00390{left:534.400000pt;}
.xa4_c00390{left:535.600000pt;}
.x84_c00390{left:536.800000pt;}
.x8d_c00390{left:538.133333pt;}
.x28_c00390{left:539.066667pt;}
.x4e_c00390{left:541.733333pt;}
.x99_c00390{left:543.866667pt;}
.x76_c00390{left:553.333333pt;}
.xc6_c00390{left:556.666667pt;}
.xd_c00390{left:560.266667pt;}
.x67_c00390{left:564.666667pt;}
.x29_c00390{left:566.266667pt;}
.x70_c00390{left:569.600000pt;}
.x44_c00390{left:571.733333pt;}
.x85_c00390{left:573.333333pt;}
.x1a_c00390{left:574.800000pt;}
.xe_c00390{left:577.866667pt;}
.x9a_c00390{left:582.933333pt;}
.x8e_c00390{left:584.800000pt;}
.xd2_c00390{left:585.733333pt;}
.x1b_c00390{left:590.133333pt;}
.x37_c00390{left:591.333333pt;}
.x68_c00390{left:594.400000pt;}
.xa5_c00390{left:596.133333pt;}
.x5b_c00390{left:598.533333pt;}
.x9b_c00390{left:600.533333pt;}
.xc7_c00390{left:605.600000pt;}
.x1c_c00390{left:608.000000pt;}
.x8f_c00390{left:610.666667pt;}
.xad_c00390{left:615.333333pt;}
.x2a_c00390{left:620.933333pt;}
.xd3_c00390{left:624.400000pt;}
.x5c_c00390{left:626.000000pt;}
.xc8_c00390{left:628.666667pt;}
.xf_c00390{left:629.733333pt;}
.x45_c00390{left:631.866667pt;}
.x38_c00390{left:635.200000pt;}
.x9c_c00390{left:637.333333pt;}
.x2b_c00390{left:639.200000pt;}
.x77_c00390{left:641.600000pt;}
.x4f_c00390{left:645.466667pt;}
.x39_c00390{left:650.533333pt;}
.x1d_c00390{left:652.133333pt;}
.x2c_c00390{left:654.266667pt;}
.x10_c00390{left:656.000000pt;}
.xae_c00390{left:658.266667pt;}
.x86_c00390{left:659.466667pt;}
.x9d_c00390{left:661.066667pt;}
.xdf_c00390{left:662.666667pt;}
.x1e_c00390{left:668.133333pt;}
.x50_c00390{left:671.733333pt;}
.x3a_c00390{left:673.200000pt;}
.x90_c00390{left:674.666667pt;}
.x78_c00390{left:680.933333pt;}
.x9e_c00390{left:684.800000pt;}
.xc9_c00390{left:689.200000pt;}
.x11_c00390{left:690.266667pt;}
.xbc_c00390{left:693.600000pt;}
.xca_c00390{left:699.066667pt;}
.xaf_c00390{left:700.800000pt;}
.x51_c00390{left:704.666667pt;}
}





/* 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_c00391 {
    display:none;
  }
  .loading-indicator_c00391.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00391 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_c00391 { 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_c00391" -> "#page-container .classname_c00391")
 */
.pf_c00391 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00391 { /* 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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00391 { /* 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_c00391 { /* 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_c00391 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00391 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00391 {overflow:visible;}
  }
}
.c_c00391 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00391 { /* 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_c00391:after { /* webkit #35443 */
  content: '';
}
.t_c00391:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00391 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 */
}
.__c00391 { /* 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_c00391 { /* info for Javascript */
  display:none;
}
.l_c00391 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00391 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00391 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00391: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_c00391 {
    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_c00391.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00391.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_c00391 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00391{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00391;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.000000;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;}
.ma_c00391{transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015000,0.000000,0.000000,0.250000,0,0);}
.m1_c00391{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m6_c00391{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m0_c00391{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb_c00391{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.me_c00391{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3_c00391{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00391{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00391{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9_c00391{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mf_c00391{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00391{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00391{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5_c00391{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m8_c00391{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00391{vertical-align:0.000000px;}
.ls0_c00391{letter-spacing:0.000000px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{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__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00391{word-spacing:0.000000px;}
.ws0_c00391{word-spacing:32.437500px;}
.fc0_c00391{color:transparent;}
.fs0_c00391{font-size:24.000000px;}
.fs2_c00391{font-size:36.000000px;}
.fs3_c00391{font-size:48.000000px;}
.fs1_c00391{font-size:132.000000px;}
.y0_c00391{bottom:0.000000px;}
.y5_c00391{bottom:37.500000px;}
.y4_c00391{bottom:46.800000px;}
.y3_c00391{bottom:101.100000px;}
.y2_c00391{bottom:129.900000px;}
.y1_c00391{bottom:610.200000px;}
.h2_c00391{height:24.000000px;}
.h4_c00391{height:36.000000px;}
.h5_c00391{height:48.000000px;}
.h3_c00391{height:132.000000px;}
.h0_c00391{height:1166.759949px;}
.h1_c00391{height:1167.000000px;}
.w1_c00391{width:913.500000px;}
.w0_c00391{width:913.679993px;}
.x0_c00391{left:0.000000px;}
.x4_c00391{left:453.300000px;}
.x5_c00391{left:475.200000px;}
.x6_c00391{left:489.900000px;}
.x7_c00391{left:517.650000px;}
.x8_c00391{left:539.250000px;}
.x9_c00391{left:561.600000px;}
.xa_c00391{left:605.100000px;}
.xd_c00391{left:621.750000px;}
.xb_c00391{left:650.100000px;}
.xe_c00391{left:663.150000px;}
.xf_c00391{left:669.600000px;}
.x2_c00391{left:730.050000px;}
.xc_c00391{left:739.350000px;}
.x10_c00391{left:765.000000px;}
.x11_c00391{left:777.600000px;}
.x3_c00391{left:781.500000px;}
.x1_c00391{left:783.300000px;}
.x12_c00391{left:818.700000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws1_c00391{word-spacing:0.000000pt;}
.ws0_c00391{word-spacing:28.833333pt;}
.fs0_c00391{font-size:21.333333pt;}
.fs2_c00391{font-size:32.000000pt;}
.fs3_c00391{font-size:42.666667pt;}
.fs1_c00391{font-size:117.333333pt;}
.y0_c00391{bottom:0.000000pt;}
.y5_c00391{bottom:33.333333pt;}
.y4_c00391{bottom:41.600000pt;}
.y3_c00391{bottom:89.866667pt;}
.y2_c00391{bottom:115.466667pt;}
.y1_c00391{bottom:542.400000pt;}
.h2_c00391{height:21.333333pt;}
.h4_c00391{height:32.000000pt;}
.h5_c00391{height:42.666667pt;}
.h3_c00391{height:117.333333pt;}
.h0_c00391{height:1037.119955pt;}
.h1_c00391{height:1037.333333pt;}
.w1_c00391{width:812.000000pt;}
.w0_c00391{width:812.159993pt;}
.x0_c00391{left:0.000000pt;}
.x4_c00391{left:402.933333pt;}
.x5_c00391{left:422.400000pt;}
.x6_c00391{left:435.466667pt;}
.x7_c00391{left:460.133333pt;}
.x8_c00391{left:479.333333pt;}
.x9_c00391{left:499.200000pt;}
.xa_c00391{left:537.866667pt;}
.xd_c00391{left:552.666667pt;}
.xb_c00391{left:577.866667pt;}
.xe_c00391{left:589.466667pt;}
.xf_c00391{left:595.200000pt;}
.x2_c00391{left:648.933333pt;}
.xc_c00391{left:657.200000pt;}
.x10_c00391{left:680.000000pt;}
.x11_c00391{left:691.200000pt;}
.x3_c00391{left:694.666667pt;}
.x1_c00391{left:696.266667pt;}
.x12_c00391{left:727.733333pt;}
}





/* 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_c00392 {
    display:none;
  }
  .loading-indicator_c00392.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00392 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_c00392 { 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_c00392" -> "#page-container .classname_c00392")
 */
.pf_c00392 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00392 { /* 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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00392 { /* 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_c00392 { /* 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_c00392 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00392 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00392 {overflow:visible;}
  }
}
.c_c00392 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00392 { /* 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_c00392:after { /* webkit #35443 */
  content: '';
}
.t_c00392:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00392 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 */
}
.__c00392 { /* 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_c00392 { /* info for Javascript */
  display:none;
}
.l_c00392 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00392 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00392 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00392: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_c00392 {
    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_c00392.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00392.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_c00392 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00392{font-family:sans-serif;visibility:hidden;}
.sc__c00392{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
}
.y0_c00392{bottom:0.000000px;}
.h0_c00392{height:1166.759949px;}
.h1_c00392{height:1167.000000px;}
.w1_c00392{width:913.500000px;}
.w0_c00392{width:913.679993px;}
.x0_c00392{left:0.000000px;}
@media print{
.y0_c00392{bottom:0.000000pt;}
.h0_c00392{height:1037.119955pt;}
.h1_c00392{height:1037.333333pt;}
.w1_c00392{width:812.000000pt;}
.w0_c00392{width:812.159993pt;}
.x0_c00392{left:0.000000pt;}
}





/* 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_c00393 {
    display:none;
  }
  .loading-indicator_c00393.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00393 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_c00393 { 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_c00393" -> "#page-container .classname_c00393")
 */
.pf_c00393 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00393 { /* 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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00393 { /* 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_c00393 { /* 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_c00393 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00393 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00393 {overflow:visible;}
  }
}
.c_c00393 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00393 { /* 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_c00393:after { /* webkit #35443 */
  content: '';
}
.t_c00393:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00393 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 */
}
.__c00393 { /* 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_c00393 { /* info for Javascript */
  display:none;
}
.l_c00393 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00393 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00393 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00393: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_c00393 {
    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_c00393.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00393.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_c00393 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00393{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00393;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.000000;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;}
.m72_c00393{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00393{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mf_c00393{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m37_c00393{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m16_c00393{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00393{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m57_c00393{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m88_c00393{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m78_c00393{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00393{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00393{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00393{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m31_c00393{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m59_c00393{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m73_c00393{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m36_c00393{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00393{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc_c00393{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m93_c00393{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m40_c00393{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m89_c00393{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m58_c00393{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m11_c00393{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00393{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m20_c00393{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m47_c00393{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m42_c00393{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m84_c00393{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00393{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m86_c00393{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00393{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00393{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m83_c00393{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m19_c00393{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m67_c00393{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m61_c00393{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m4_c00393{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00393{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00393{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m79_c00393{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00393{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00393{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00393{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m53_c00393{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00393{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00393{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00393{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m45_c00393{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m82_c00393{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00393{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00393{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00393{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00393{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m55_c00393{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m81_c00393{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m38_c00393{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00393{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00393{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00393{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00393{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12_c00393{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m43_c00393{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);}
.m71_c00393{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00393{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00393{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00393{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17_c00393{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m94_c00393{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m60_c00393{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m29_c00393{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.me_c00393{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m28_c00393{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m69_c00393{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m50_c00393{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00393{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m62_c00393{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m23_c00393{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m85_c00393{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00393{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.md_c00393{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00393{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m87_c00393{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m34_c00393{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00393{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m35_c00393{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.ma_c00393{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00393{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00393{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m46_c00393{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00393{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m7_c00393{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00393{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m30_c00393{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m33_c00393{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m27_c00393{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00393{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00393{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00393{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m26_c00393{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m22_c00393{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m91_c00393{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c00393{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m21_c00393{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00393{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00393{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m8_c00393{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00393{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00393{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m18_c00393{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m49_c00393{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m6_c00393{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00393{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3_c00393{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00393{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m32_c00393{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00393{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00393{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m63_c00393{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m14_c00393{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m15_c00393{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m51_c00393{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m56_c00393{transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00393{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m65_c00393{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m13_c00393{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m80_c00393{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c00393{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m70_c00393{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00393{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m90_c00393{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m92_c00393{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m64_c00393{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m24_c00393{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00393{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m9_c00393{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00393{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00393{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m0_c00393{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m75_c00393{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m66_c00393{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00393{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m48_c00393{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m77_c00393{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m68_c00393{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m2_c00393{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00393{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m1_c00393{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m54_c00393{transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413250,0.000000,0.000000,0.250000,0,0);}
.m5_c00393{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mb_c00393{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{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__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-9.267477px;}
.ws2_c00393{word-spacing:-5.997255px;}
.ws1_c00393{word-spacing:-1.392857px;}
.wsa_c00393{word-spacing:-0.638037px;}
.wsb_c00393{word-spacing:0.000000px;}
.ws5_c00393{word-spacing:2.760118px;}
.ws4_c00393{word-spacing:5.875000px;}
.ws8_c00393{word-spacing:7.252715px;}
.ws9_c00393{word-spacing:9.000000px;}
.ws3_c00393{word-spacing:15.826902px;}
.ws7_c00393{word-spacing:19.000000px;}
.ws6_c00393{word-spacing:45.726688px;}
._0_c00393{width:37.625000px;}
._1_c00393{width:39.000000px;}
.fc0_c00393{color:transparent;}
.fs1_c00393{font-size:48.000000px;}
.fs0_c00393{font-size:54.000000px;}
.y0_c00393{bottom:0.000000px;}
.y23_c00393{bottom:141.150000px;}
.y22_c00393{bottom:161.100000px;}
.y21_c00393{bottom:181.200000px;}
.y20_c00393{bottom:201.300000px;}
.y1f_c00393{bottom:221.100000px;}
.y1e_c00393{bottom:241.200000px;}
.y1d_c00393{bottom:261.150000px;}
.y1c_c00393{bottom:281.700000px;}
.y1b_c00393{bottom:301.800000px;}
.y1a_c00393{bottom:321.600000px;}
.y19_c00393{bottom:341.700000px;}
.y18_c00393{bottom:361.800000px;}
.y17_c00393{bottom:381.300000px;}
.y16_c00393{bottom:401.400000px;}
.y15_c00393{bottom:421.200000px;}
.y14_c00393{bottom:440.250000px;}
.y13_c00393{bottom:479.400000px;}
.y12_c00393{bottom:499.200000px;}
.y11_c00393{bottom:519.300000px;}
.y10_c00393{bottom:539.100000px;}
.yf_c00393{bottom:559.200000px;}
.ye_c00393{bottom:579.000000px;}
.yd_c00393{bottom:598.800000px;}
.yc_c00393{bottom:618.900000px;}
.yb_c00393{bottom:638.700000px;}
.ya_c00393{bottom:659.250000px;}
.y9_c00393{bottom:679.050000px;}
.y8_c00393{bottom:699.150000px;}
.y7_c00393{bottom:718.950000px;}
.y6_c00393{bottom:739.500000px;}
.y5_c00393{bottom:759.300000px;}
.y4_c00393{bottom:779.400000px;}
.y3_c00393{bottom:812.100000px;}
.y2_c00393{bottom:845.700000px;}
.y1_c00393{bottom:1048.650000px;}
.h3_c00393{height:48.000000px;}
.h2_c00393{height:54.000000px;}
.h0_c00393{height:1166.759949px;}
.h1_c00393{height:1167.000000px;}
.w1_c00393{width:913.500000px;}
.w0_c00393{width:913.679993px;}
.x0_c00393{left:0.000000px;}
.x71_c00393{left:101.550000px;}
.xc_c00393{left:102.900000px;}
.xdf_c00393{left:104.850000px;}
.x1d_c00393{left:123.000000px;}
.xf8_c00393{left:124.650000px;}
.xa5_c00393{left:128.400000px;}
.xd9_c00393{left:130.350000px;}
.x53_c00393{left:132.900000px;}
.x2b_c00393{left:134.400000px;}
.x102_c00393{left:137.100000px;}
.xcf_c00393{left:140.400000px;}
.x91_c00393{left:142.200000px;}
.x3b_c00393{left:145.500000px;}
.x7e_c00393{left:147.150000px;}
.x98_c00393{left:151.050000px;}
.x72_c00393{left:152.700000px;}
.x2c_c00393{left:154.200000px;}
.xcb_c00393{left:155.400000px;}
.xd5_c00393{left:159.000000px;}
.x103_c00393{left:160.500000px;}
.x68_c00393{left:161.700000px;}
.x88_c00393{left:163.350000px;}
.x3c_c00393{left:165.300000px;}
.x99_c00393{left:168.750000px;}
.xea_c00393{left:169.950000px;}
.xa6_c00393{left:172.350000px;}
.x104_c00393{left:175.200000px;}
.xd_c00393{left:177.750000px;}
.xe0_c00393{left:178.950000px;}
.x49_c00393{left:182.700000px;}
.xae_c00393{left:185.250000px;}
.xc5_c00393{left:188.250000px;}
.x1e_c00393{left:189.300000px;}
.x9a_c00393{left:191.100000px;}
.x2d_c00393{left:194.550000px;}
.x7f_c00393{left:195.750000px;}
.x54_c00393{left:197.700000px;}
.x73_c00393{left:200.550000px;}
.x5d_c00393{left:204.600000px;}
.x92_c00393{left:205.950000px;}
.xeb_c00393{left:207.750000px;}
.xd6_c00393{left:209.100000px;}
.x4a_c00393{left:210.750000px;}
.x2e_c00393{left:215.100000px;}
.xa7_c00393{left:216.300000px;}
.xf3_c00393{left:217.500000px;}
.x89_c00393{left:219.900000px;}
.x74_c00393{left:221.400000px;}
.x105_c00393{left:224.550000px;}
.x1f_c00393{left:228.600000px;}
.x3d_c00393{left:230.400000px;}
.xba_c00393{left:232.200000px;}
.x9b_c00393{left:234.000000px;}
.x75_c00393{left:237.300000px;}
.xb3_c00393{left:238.950000px;}
.x2f_c00393{left:243.900000px;}
.xc0_c00393{left:246.600000px;}
.xd0_c00393{left:248.400000px;}
.xec_c00393{left:249.450000px;}
.x9c_c00393{left:251.700000px;}
.x4b_c00393{left:252.900000px;}
.x20_c00393{left:255.600000px;}
.xe_c00393{left:256.950000px;}
.x3e_c00393{left:260.250000px;}
.x4_c00393{left:261.300000px;}
.x69_c00393{left:266.400000px;}
.xd1_c00393{left:268.950000px;}
.xe1_c00393{left:270.000000px;}
.xf_c00393{left:275.700000px;}
.xc6_c00393{left:277.200000px;}
.xb4_c00393{left:278.550000px;}
.x9d_c00393{left:280.200000px;}
.x55_c00393{left:282.300000px;}
.xf4_c00393{left:283.350000px;}
.xa8_c00393{left:286.500000px;}
.xfc_c00393{left:288.150000px;}
.xe7_c00393{left:289.500000px;}
.x76_c00393{left:292.050000px;}
.x56_c00393{left:294.150000px;}
.x6a_c00393{left:297.000000px;}
.x30_c00393{left:299.700000px;}
.xc7_c00393{left:301.650000px;}
.xd2_c00393{left:303.150000px;}
.x5e_c00393{left:304.650000px;}
.x3f_c00393{left:307.350000px;}
.xed_c00393{left:308.850000px;}
.x4c_c00393{left:310.800000px;}
.x21_c00393{left:313.950000px;}
.x10_c00393{left:317.100000px;}
.x5_c00393{left:319.650000px;}
.xa9_c00393{left:322.200000px;}
.x5f_c00393{left:324.450000px;}
.x8a_c00393{left:328.200000px;}
.xcc_c00393{left:333.750000px;}
.xaf_c00393{left:335.250000px;}
.x9e_c00393{left:337.800000px;}
.xda_c00393{left:341.250000px;}
.x57_c00393{left:343.050000px;}
.x80_c00393{left:345.750000px;}
.x8b_c00393{left:347.250000px;}
.x77_c00393{left:351.750000px;}
.x11_c00393{left:353.400000px;}
.x106_c00393{left:356.250000px;}
.x2_c00393{left:357.450000px;}
.xb5_c00393{left:361.650000px;}
.x4d_c00393{left:364.500000px;}
.x22_c00393{left:370.500000px;}
.xd7_c00393{left:371.550000px;}
.xbb_c00393{left:373.950000px;}
.x78_c00393{left:377.250000px;}
.x81_c00393{left:378.450000px;}
.x6_c00393{left:379.800000px;}
.x58_c00393{left:383.400000px;}
.x93_c00393{left:385.050000px;}
.x40_c00393{left:386.850000px;}
.x12_c00393{left:389.400000px;}
.xb6_c00393{left:390.750000px;}
.xe8_c00393{left:394.200000px;}
.xc1_c00393{left:395.400000px;}
.x7_c00393{left:397.050000px;}
.x8c_c00393{left:401.550000px;}
.x79_c00393{left:405.300000px;}
.x31_c00393{left:406.650000px;}
.xb7_c00393{left:410.550000px;}
.xf5_c00393{left:412.350000px;}
.x41_c00393{left:414.600000px;}
.xd3_c00393{left:416.250000px;}
.x60_c00393{left:420.600000px;}
.x9f_c00393{left:422.700000px;}
.x1_c00393{left:425.100000px;}
.xcd_c00393{left:427.350000px;}
.xfd_c00393{left:430.950000px;}
.xe2_c00393{left:433.500000px;}
.x23_c00393{left:434.550000px;}
.x32_c00393{left:437.550000px;}
.x13_c00393{left:438.750000px;}
.xd4_c00393{left:440.700000px;}
.x3_c00393{left:441.750000px;}
.x7a_c00393{left:444.150000px;}
.xee_c00393{left:447.450000px;}
.x61_c00393{left:449.700000px;}
.x8_c00393{left:451.350000px;}
.x14_c00393{left:456.450000px;}
.x4e_c00393{left:461.400000px;}
.xe3_c00393{left:462.600000px;}
.x33_c00393{left:464.550000px;}
.x9_c00393{left:468.600000px;}
.xb8_c00393{left:469.650000px;}
.xd8_c00393{left:472.650000px;}
.xc8_c00393{left:474.450000px;}
.xdb_c00393{left:475.500000px;}
.x107_c00393{left:478.950000px;}
.x82_c00393{left:481.350000px;}
.x8d_c00393{left:483.150000px;}
.x34_c00393{left:484.350000px;}
.xa0_c00393{left:487.800000px;}
.x24_c00393{left:489.600000px;}
.x42_c00393{left:493.050000px;}
.x6b_c00393{left:495.000000px;}
.xef_c00393{left:496.050000px;}
.xe9_c00393{left:498.600000px;}
.x62_c00393{left:501.900000px;}
.xdc_c00393{left:504.000000px;}
.x94_c00393{left:509.250000px;}
.x35_c00393{left:511.650000px;}
.x8e_c00393{left:514.050000px;}
.x15_c00393{left:516.600000px;}
.xbc_c00393{left:518.250000px;}
.x59_c00393{left:520.200000px;}
.x43_c00393{left:524.400000px;}
.x7b_c00393{left:527.250000px;}
.xf9_c00393{left:529.950000px;}
.x83_c00393{left:533.850000px;}
.xa_c00393{left:534.900000px;}
.x16_c00393{left:537.150000px;}
.xe4_c00393{left:539.700000px;}
.x25_c00393{left:540.750000px;}
.xce_c00393{left:542.550000px;}
.xaa_c00393{left:545.550000px;}
.x44_c00393{left:549.600000px;}
.xb_c00393{left:551.850000px;}
.xc9_c00393{left:555.750000px;}
.xe5_c00393{left:557.700000px;}
.x36_c00393{left:560.550000px;}
.xb9_c00393{left:562.800000px;}
.x17_c00393{left:564.450000px;}
.xab_c00393{left:567.900000px;}
.x4f_c00393{left:570.150000px;}
.xfe_c00393{left:571.650000px;}
.xb0_c00393{left:574.650000px;}
.xa1_c00393{left:577.500000px;}
.xdd_c00393{left:581.850000px;}
.xc2_c00393{left:583.950000px;}
.x50_c00393{left:586.650000px;}
.x26_c00393{left:589.050000px;}
.x6c_c00393{left:592.500000px;}
.x18_c00393{left:594.300000px;}
.x84_c00393{left:595.350000px;}
.xfa_c00393{left:599.550000px;}
.x8f_c00393{left:601.500000px;}
.xc3_c00393{left:603.750000px;}
.x7c_c00393{left:606.150000px;}
.xb1_c00393{left:608.100000px;}
.x45_c00393{left:609.750000px;}
.x6d_c00393{left:612.000000px;}
.x37_c00393{left:617.400000px;}
.x63_c00393{left:618.600000px;}
.x85_c00393{left:620.250000px;}
.x95_c00393{left:621.600000px;}
.x27_c00393{left:624.000000px;}
.x5a_c00393{left:625.500000px;}
.x46_c00393{left:627.000000px;}
.x51_c00393{left:628.050000px;}
.xbd_c00393{left:629.550000px;}
.x6e_c00393{left:630.750000px;}
.xa2_c00393{left:636.600000px;}
.xf6_c00393{left:638.700000px;}
.xff_c00393{left:640.050000px;}
.xac_c00393{left:644.250000px;}
.xde_c00393{left:646.650000px;}
.x19_c00393{left:648.300000px;}
.x86_c00393{left:649.350000px;}
.x38_c00393{left:652.650000px;}
.x47_c00393{left:654.000000px;}
.x7d_c00393{left:655.050000px;}
.x28_c00393{left:658.950000px;}
.xbe_c00393{left:661.200000px;}
.xca_c00393{left:663.750000px;}
.x64_c00393{left:665.700000px;}
.x6f_c00393{left:667.500000px;}
.x5b_c00393{left:669.450000px;}
.xb2_c00393{left:671.100000px;}
.xf2_c00393{left:672.300000px;}
.x96_c00393{left:674.550000px;}
.xf0_c00393{left:676.350000px;}
.x100_c00393{left:679.950000px;}
.xfb_c00393{left:681.900000px;}
.x65_c00393{left:686.550000px;}
.x5c_c00393{left:687.750000px;}
.x90_c00393{left:690.750000px;}
.x1a_c00393{left:694.050000px;}
.x70_c00393{left:698.100000px;}
.x29_c00393{left:701.850000px;}
.xf7_c00393{left:705.300000px;}
.x52_c00393{left:707.550000px;}
.xa3_c00393{left:709.050000px;}
.x1b_c00393{left:712.050000px;}
.x66_c00393{left:715.050000px;}
.x2a_c00393{left:721.950000px;}
.x87_c00393{left:724.200000px;}
.xbf_c00393{left:729.600000px;}
.x39_c00393{left:732.300000px;}
.x101_c00393{left:734.700000px;}
.xa4_c00393{left:735.750000px;}
.xad_c00393{left:736.800000px;}
.x108_c00393{left:739.200000px;}
.x1c_c00393{left:740.850000px;}
.xe6_c00393{left:744.150000px;}
.x48_c00393{left:746.100000px;}
.x97_c00393{left:747.300000px;}
.x3a_c00393{left:750.600000px;}
.x67_c00393{left:758.250000px;}
.xf1_c00393{left:760.950000px;}
.xc4_c00393{left:769.650000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:-8.237758pt;}
.ws2_c00393{word-spacing:-5.330894pt;}
.ws1_c00393{word-spacing:-1.238095pt;}
.wsa_c00393{word-spacing:-0.567144pt;}
.wsb_c00393{word-spacing:0.000000pt;}
.ws5_c00393{word-spacing:2.453439pt;}
.ws4_c00393{word-spacing:5.222222pt;}
.ws8_c00393{word-spacing:6.446858pt;}
.ws9_c00393{word-spacing:8.000000pt;}
.ws3_c00393{word-spacing:14.068357pt;}
.ws7_c00393{word-spacing:16.888889pt;}
.ws6_c00393{word-spacing:40.645945pt;}
._0_c00393{width:33.444444pt;}
._1_c00393{width:34.666667pt;}
.fs1_c00393{font-size:42.666667pt;}
.fs0_c00393{font-size:48.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y23_c00393{bottom:125.466667pt;}
.y22_c00393{bottom:143.200000pt;}
.y21_c00393{bottom:161.066667pt;}
.y20_c00393{bottom:178.933333pt;}
.y1f_c00393{bottom:196.533333pt;}
.y1e_c00393{bottom:214.400000pt;}
.y1d_c00393{bottom:232.133333pt;}
.y1c_c00393{bottom:250.400000pt;}
.y1b_c00393{bottom:268.266667pt;}
.y1a_c00393{bottom:285.866667pt;}
.y19_c00393{bottom:303.733333pt;}
.y18_c00393{bottom:321.600000pt;}
.y17_c00393{bottom:338.933333pt;}
.y16_c00393{bottom:356.800000pt;}
.y15_c00393{bottom:374.400000pt;}
.y14_c00393{bottom:391.333333pt;}
.y13_c00393{bottom:426.133333pt;}
.y12_c00393{bottom:443.733333pt;}
.y11_c00393{bottom:461.600000pt;}
.y10_c00393{bottom:479.200000pt;}
.yf_c00393{bottom:497.066667pt;}
.ye_c00393{bottom:514.666667pt;}
.yd_c00393{bottom:532.266667pt;}
.yc_c00393{bottom:550.133333pt;}
.yb_c00393{bottom:567.733333pt;}
.ya_c00393{bottom:586.000000pt;}
.y9_c00393{bottom:603.600000pt;}
.y8_c00393{bottom:621.466667pt;}
.y7_c00393{bottom:639.066667pt;}
.y6_c00393{bottom:657.333333pt;}
.y5_c00393{bottom:674.933333pt;}
.y4_c00393{bottom:692.800000pt;}
.y3_c00393{bottom:721.866667pt;}
.y2_c00393{bottom:751.733333pt;}
.y1_c00393{bottom:932.133333pt;}
.h3_c00393{height:42.666667pt;}
.h2_c00393{height:48.000000pt;}
.h0_c00393{height:1037.119955pt;}
.h1_c00393{height:1037.333333pt;}
.w1_c00393{width:812.000000pt;}
.w0_c00393{width:812.159993pt;}
.x0_c00393{left:0.000000pt;}
.x71_c00393{left:90.266667pt;}
.xc_c00393{left:91.466667pt;}
.xdf_c00393{left:93.200000pt;}
.x1d_c00393{left:109.333333pt;}
.xf8_c00393{left:110.800000pt;}
.xa5_c00393{left:114.133333pt;}
.xd9_c00393{left:115.866667pt;}
.x53_c00393{left:118.133333pt;}
.x2b_c00393{left:119.466667pt;}
.x102_c00393{left:121.866667pt;}
.xcf_c00393{left:124.800000pt;}
.x91_c00393{left:126.400000pt;}
.x3b_c00393{left:129.333333pt;}
.x7e_c00393{left:130.800000pt;}
.x98_c00393{left:134.266667pt;}
.x72_c00393{left:135.733333pt;}
.x2c_c00393{left:137.066667pt;}
.xcb_c00393{left:138.133333pt;}
.xd5_c00393{left:141.333333pt;}
.x103_c00393{left:142.666667pt;}
.x68_c00393{left:143.733333pt;}
.x88_c00393{left:145.200000pt;}
.x3c_c00393{left:146.933333pt;}
.x99_c00393{left:150.000000pt;}
.xea_c00393{left:151.066667pt;}
.xa6_c00393{left:153.200000pt;}
.x104_c00393{left:155.733333pt;}
.xd_c00393{left:158.000000pt;}
.xe0_c00393{left:159.066667pt;}
.x49_c00393{left:162.400000pt;}
.xae_c00393{left:164.666667pt;}
.xc5_c00393{left:167.333333pt;}
.x1e_c00393{left:168.266667pt;}
.x9a_c00393{left:169.866667pt;}
.x2d_c00393{left:172.933333pt;}
.x7f_c00393{left:174.000000pt;}
.x54_c00393{left:175.733333pt;}
.x73_c00393{left:178.266667pt;}
.x5d_c00393{left:181.866667pt;}
.x92_c00393{left:183.066667pt;}
.xeb_c00393{left:184.666667pt;}
.xd6_c00393{left:185.866667pt;}
.x4a_c00393{left:187.333333pt;}
.x2e_c00393{left:191.200000pt;}
.xa7_c00393{left:192.266667pt;}
.xf3_c00393{left:193.333333pt;}
.x89_c00393{left:195.466667pt;}
.x74_c00393{left:196.800000pt;}
.x105_c00393{left:199.600000pt;}
.x1f_c00393{left:203.200000pt;}
.x3d_c00393{left:204.800000pt;}
.xba_c00393{left:206.400000pt;}
.x9b_c00393{left:208.000000pt;}
.x75_c00393{left:210.933333pt;}
.xb3_c00393{left:212.400000pt;}
.x2f_c00393{left:216.800000pt;}
.xc0_c00393{left:219.200000pt;}
.xd0_c00393{left:220.800000pt;}
.xec_c00393{left:221.733333pt;}
.x9c_c00393{left:223.733333pt;}
.x4b_c00393{left:224.800000pt;}
.x20_c00393{left:227.200000pt;}
.xe_c00393{left:228.400000pt;}
.x3e_c00393{left:231.333333pt;}
.x4_c00393{left:232.266667pt;}
.x69_c00393{left:236.800000pt;}
.xd1_c00393{left:239.066667pt;}
.xe1_c00393{left:240.000000pt;}
.xf_c00393{left:245.066667pt;}
.xc6_c00393{left:246.400000pt;}
.xb4_c00393{left:247.600000pt;}
.x9d_c00393{left:249.066667pt;}
.x55_c00393{left:250.933333pt;}
.xf4_c00393{left:251.866667pt;}
.xa8_c00393{left:254.666667pt;}
.xfc_c00393{left:256.133333pt;}
.xe7_c00393{left:257.333333pt;}
.x76_c00393{left:259.600000pt;}
.x56_c00393{left:261.466667pt;}
.x6a_c00393{left:264.000000pt;}
.x30_c00393{left:266.400000pt;}
.xc7_c00393{left:268.133333pt;}
.xd2_c00393{left:269.466667pt;}
.x5e_c00393{left:270.800000pt;}
.x3f_c00393{left:273.200000pt;}
.xed_c00393{left:274.533333pt;}
.x4c_c00393{left:276.266667pt;}
.x21_c00393{left:279.066667pt;}
.x10_c00393{left:281.866667pt;}
.x5_c00393{left:284.133333pt;}
.xa9_c00393{left:286.400000pt;}
.x5f_c00393{left:288.400000pt;}
.x8a_c00393{left:291.733333pt;}
.xcc_c00393{left:296.666667pt;}
.xaf_c00393{left:298.000000pt;}
.x9e_c00393{left:300.266667pt;}
.xda_c00393{left:303.333333pt;}
.x57_c00393{left:304.933333pt;}
.x80_c00393{left:307.333333pt;}
.x8b_c00393{left:308.666667pt;}
.x77_c00393{left:312.666667pt;}
.x11_c00393{left:314.133333pt;}
.x106_c00393{left:316.666667pt;}
.x2_c00393{left:317.733333pt;}
.xb5_c00393{left:321.466667pt;}
.x4d_c00393{left:324.000000pt;}
.x22_c00393{left:329.333333pt;}
.xd7_c00393{left:330.266667pt;}
.xbb_c00393{left:332.400000pt;}
.x78_c00393{left:335.333333pt;}
.x81_c00393{left:336.400000pt;}
.x6_c00393{left:337.600000pt;}
.x58_c00393{left:340.800000pt;}
.x93_c00393{left:342.266667pt;}
.x40_c00393{left:343.866667pt;}
.x12_c00393{left:346.133333pt;}
.xb6_c00393{left:347.333333pt;}
.xe8_c00393{left:350.400000pt;}
.xc1_c00393{left:351.466667pt;}
.x7_c00393{left:352.933333pt;}
.x8c_c00393{left:356.933333pt;}
.x79_c00393{left:360.266667pt;}
.x31_c00393{left:361.466667pt;}
.xb7_c00393{left:364.933333pt;}
.xf5_c00393{left:366.533333pt;}
.x41_c00393{left:368.533333pt;}
.xd3_c00393{left:370.000000pt;}
.x60_c00393{left:373.866667pt;}
.x9f_c00393{left:375.733333pt;}
.x1_c00393{left:377.866667pt;}
.xcd_c00393{left:379.866667pt;}
.xfd_c00393{left:383.066667pt;}
.xe2_c00393{left:385.333333pt;}
.x23_c00393{left:386.266667pt;}
.x32_c00393{left:388.933333pt;}
.x13_c00393{left:390.000000pt;}
.xd4_c00393{left:391.733333pt;}
.x3_c00393{left:392.666667pt;}
.x7a_c00393{left:394.800000pt;}
.xee_c00393{left:397.733333pt;}
.x61_c00393{left:399.733333pt;}
.x8_c00393{left:401.200000pt;}
.x14_c00393{left:405.733333pt;}
.x4e_c00393{left:410.133333pt;}
.xe3_c00393{left:411.200000pt;}
.x33_c00393{left:412.933333pt;}
.x9_c00393{left:416.533333pt;}
.xb8_c00393{left:417.466667pt;}
.xd8_c00393{left:420.133333pt;}
.xc8_c00393{left:421.733333pt;}
.xdb_c00393{left:422.666667pt;}
.x107_c00393{left:425.733333pt;}
.x82_c00393{left:427.866667pt;}
.x8d_c00393{left:429.466667pt;}
.x34_c00393{left:430.533333pt;}
.xa0_c00393{left:433.600000pt;}
.x24_c00393{left:435.200000pt;}
.x42_c00393{left:438.266667pt;}
.x6b_c00393{left:440.000000pt;}
.xef_c00393{left:440.933333pt;}
.xe9_c00393{left:443.200000pt;}
.x62_c00393{left:446.133333pt;}
.xdc_c00393{left:448.000000pt;}
.x94_c00393{left:452.666667pt;}
.x35_c00393{left:454.800000pt;}
.x8e_c00393{left:456.933333pt;}
.x15_c00393{left:459.200000pt;}
.xbc_c00393{left:460.666667pt;}
.x59_c00393{left:462.400000pt;}
.x43_c00393{left:466.133333pt;}
.x7b_c00393{left:468.666667pt;}
.xf9_c00393{left:471.066667pt;}
.x83_c00393{left:474.533333pt;}
.xa_c00393{left:475.466667pt;}
.x16_c00393{left:477.466667pt;}
.xe4_c00393{left:479.733333pt;}
.x25_c00393{left:480.666667pt;}
.xce_c00393{left:482.266667pt;}
.xaa_c00393{left:484.933333pt;}
.x44_c00393{left:488.533333pt;}
.xb_c00393{left:490.533333pt;}
.xc9_c00393{left:494.000000pt;}
.xe5_c00393{left:495.733333pt;}
.x36_c00393{left:498.266667pt;}
.xb9_c00393{left:500.266667pt;}
.x17_c00393{left:501.733333pt;}
.xab_c00393{left:504.800000pt;}
.x4f_c00393{left:506.800000pt;}
.xfe_c00393{left:508.133333pt;}
.xb0_c00393{left:510.800000pt;}
.xa1_c00393{left:513.333333pt;}
.xdd_c00393{left:517.200000pt;}
.xc2_c00393{left:519.066667pt;}
.x50_c00393{left:521.466667pt;}
.x26_c00393{left:523.600000pt;}
.x6c_c00393{left:526.666667pt;}
.x18_c00393{left:528.266667pt;}
.x84_c00393{left:529.200000pt;}
.xfa_c00393{left:532.933333pt;}
.x8f_c00393{left:534.666667pt;}
.xc3_c00393{left:536.666667pt;}
.x7c_c00393{left:538.800000pt;}
.xb1_c00393{left:540.533333pt;}
.x45_c00393{left:542.000000pt;}
.x6d_c00393{left:544.000000pt;}
.x37_c00393{left:548.800000pt;}
.x63_c00393{left:549.866667pt;}
.x85_c00393{left:551.333333pt;}
.x95_c00393{left:552.533333pt;}
.x27_c00393{left:554.666667pt;}
.x5a_c00393{left:556.000000pt;}
.x46_c00393{left:557.333333pt;}
.x51_c00393{left:558.266667pt;}
.xbd_c00393{left:559.600000pt;}
.x6e_c00393{left:560.666667pt;}
.xa2_c00393{left:565.866667pt;}
.xf6_c00393{left:567.733333pt;}
.xff_c00393{left:568.933333pt;}
.xac_c00393{left:572.666667pt;}
.xde_c00393{left:574.800000pt;}
.x19_c00393{left:576.266667pt;}
.x86_c00393{left:577.200000pt;}
.x38_c00393{left:580.133333pt;}
.x47_c00393{left:581.333333pt;}
.x7d_c00393{left:582.266667pt;}
.x28_c00393{left:585.733333pt;}
.xbe_c00393{left:587.733333pt;}
.xca_c00393{left:590.000000pt;}
.x64_c00393{left:591.733333pt;}
.x6f_c00393{left:593.333333pt;}
.x5b_c00393{left:595.066667pt;}
.xb2_c00393{left:596.533333pt;}
.xf2_c00393{left:597.600000pt;}
.x96_c00393{left:599.600000pt;}
.xf0_c00393{left:601.200000pt;}
.x100_c00393{left:604.400000pt;}
.xfb_c00393{left:606.133333pt;}
.x65_c00393{left:610.266667pt;}
.x5c_c00393{left:611.333333pt;}
.x90_c00393{left:614.000000pt;}
.x1a_c00393{left:616.933333pt;}
.x70_c00393{left:620.533333pt;}
.x29_c00393{left:623.866667pt;}
.xf7_c00393{left:626.933333pt;}
.x52_c00393{left:628.933333pt;}
.xa3_c00393{left:630.266667pt;}
.x1b_c00393{left:632.933333pt;}
.x66_c00393{left:635.600000pt;}
.x2a_c00393{left:641.733333pt;}
.x87_c00393{left:643.733333pt;}
.xbf_c00393{left:648.533333pt;}
.x39_c00393{left:650.933333pt;}
.x101_c00393{left:653.066667pt;}
.xa4_c00393{left:654.000000pt;}
.xad_c00393{left:654.933333pt;}
.x108_c00393{left:657.066667pt;}
.x1c_c00393{left:658.533333pt;}
.xe6_c00393{left:661.466667pt;}
.x48_c00393{left:663.200000pt;}
.x97_c00393{left:664.266667pt;}
.x3a_c00393{left:667.200000pt;}
.x67_c00393{left:674.000000pt;}
.xf1_c00393{left:676.400000pt;}
.xc4_c00393{left:684.133333pt;}
}





/* 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_c00394 {
    display:none;
  }
  .loading-indicator_c00394.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00394 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_c00394 { 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_c00394" -> "#page-container .classname_c00394")
 */
.pf_c00394 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00394 { /* 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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00394 { /* 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_c00394 { /* 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_c00394 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00394 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00394 {overflow:visible;}
  }
}
.c_c00394 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00394 { /* 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_c00394:after { /* webkit #35443 */
  content: '';
}
.t_c00394:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00394 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 */
}
.__c00394 { /* 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_c00394 { /* info for Javascript */
  display:none;
}
.l_c00394 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00394 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00394 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00394: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_c00394 {
    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_c00394.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00394.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_c00394 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00394{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00394;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.000000;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;}
.mba_c00394{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00394{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00394{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m34_c00394{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00394{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00394{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m53_c00394{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00394{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m29_c00394{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mae_c00394{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m2_c00394{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m58_c00394{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00394{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00394{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m87_c00394{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00394{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00394{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00394{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m60_c00394{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00394{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00394{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00394{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00394{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m61_c00394{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m98_c00394{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m99_c00394{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00394{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00394{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00394{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00394{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00394{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00394{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00394{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m93_c00394{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m77_c00394{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00394{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00394{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00394{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m71_c00394{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00394{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00394{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00394{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00394{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00394{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mad_c00394{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m57_c00394{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m85_c00394{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00394{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.maf_c00394{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m13_c00394{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.maa_c00394{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00394{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m84_c00394{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m37_c00394{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m76_c00394{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m44_c00394{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m97_c00394{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00394{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00394{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m72_c00394{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00394{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00394{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00394{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb_c00394{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m70_c00394{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.me_c00394{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00394{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m20_c00394{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m23_c00394{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m21_c00394{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00394{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m78_c00394{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00394{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00394{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00394{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00394{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m38_c00394{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00394{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4_c00394{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00394{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00394{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m42_c00394{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m5_c00394{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m88_c00394{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m24_c00394{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00394{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m31_c00394{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00394{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m16_c00394{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m52_c00394{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m15_c00394{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m50_c00394{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00394{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m19_c00394{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m68_c00394{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00394{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m64_c00394{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m81_c00394{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00394{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9_c00394{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m36_c00394{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m28_c00394{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m90_c00394{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m18_c00394{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m7_c00394{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m39_c00394{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00394{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00394{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14_c00394{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00394{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);}
.ma0_c00394{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m22_c00394{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00394{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00394{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m74_c00394{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m10_c00394{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m91_c00394{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00394{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m46_c00394{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m59_c00394{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m26_c00394{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00394{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mac_c00394{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m41_c00394{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m6_c00394{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00394{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m27_c00394{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m80_c00394{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m25_c00394{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m45_c00394{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00394{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00394{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m89_c00394{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m35_c00394{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00394{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00394{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m73_c00394{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m96_c00394{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00394{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m62_c00394{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00394{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m40_c00394{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00394{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m56_c00394{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m30_c00394{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m86_c00394{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m67_c00394{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m51_c00394{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00394{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.ma_c00394{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00394{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8_c00394{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00394{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m47_c00394{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00394{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00394{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00394{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.md_c00394{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m75_c00394{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00394{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00394{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00394{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m69_c00394{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00394{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc_c00394{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m49_c00394{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00394{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m92_c00394{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m12_c00394{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m63_c00394{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00394{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m66_c00394{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m43_c00394{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m79_c00394{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00394{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00394{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m55_c00394{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3_c00394{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00394{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m54_c00394{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.mab_c00394{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m82_c00394{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m65_c00394{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00394{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m94_c00394{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m0_c00394{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00394{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m95_c00394{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00394{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m83_c00394{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00394{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00394{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00394{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00394{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00394{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m48_c00394{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00394{vertical-align:0.000000px;}
.ls0_c00394{letter-spacing:0.000000px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{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__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00394{word-spacing:-10.375000px;}
.ws6_c00394{word-spacing:-3.250000px;}
.ws7_c00394{word-spacing:-3.125000px;}
.ws9_c00394{word-spacing:-2.875000px;}
.ws1_c00394{word-spacing:-1.617420px;}
.wsc_c00394{word-spacing:0.000000px;}
.ws2_c00394{word-spacing:2.669377px;}
.wsa_c00394{word-spacing:2.750000px;}
.wsb_c00394{word-spacing:7.625000px;}
.ws4_c00394{word-spacing:8.817116px;}
.ws8_c00394{word-spacing:8.875000px;}
.ws5_c00394{word-spacing:13.375000px;}
.ws0_c00394{word-spacing:15.582139px;}
._0_c00394{width:37.750000px;}
.fc0_c00394{color:transparent;}
.fs0_c00394{font-size:54.000000px;}
.y0_c00394{bottom:0.000000px;}
.y2c_c00394{bottom:149.400000px;}
.y2b_c00394{bottom:165.300000px;}
.y2a_c00394{bottom:181.050000px;}
.y29_c00394{bottom:196.500000px;}
.y28_c00394{bottom:234.450000px;}
.y27_c00394{bottom:254.550000px;}
.y26_c00394{bottom:274.650000px;}
.y25_c00394{bottom:294.450000px;}
.y24_c00394{bottom:314.550000px;}
.y23_c00394{bottom:334.350000px;}
.y22_c00394{bottom:354.900000px;}
.y21_c00394{bottom:374.700000px;}
.y20_c00394{bottom:394.500000px;}
.y1f_c00394{bottom:414.600000px;}
.y1e_c00394{bottom:434.400000px;}
.y1d_c00394{bottom:454.500000px;}
.y1c_c00394{bottom:474.300000px;}
.y1b_c00394{bottom:494.100000px;}
.y1a_c00394{bottom:514.650000px;}
.y19_c00394{bottom:534.450000px;}
.y18_c00394{bottom:554.250000px;}
.y17_c00394{bottom:574.050000px;}
.y16_c00394{bottom:594.150000px;}
.y15_c00394{bottom:614.250000px;}
.y14_c00394{bottom:634.050000px;}
.y13_c00394{bottom:653.850000px;}
.y12_c00394{bottom:673.950000px;}
.y11_c00394{bottom:694.200000px;}
.y10_c00394{bottom:714.000000px;}
.yf_c00394{bottom:734.100000px;}
.ye_c00394{bottom:754.200000px;}
.yd_c00394{bottom:774.000000px;}
.yc_c00394{bottom:793.800000px;}
.yb_c00394{bottom:831.750000px;}
.ya_c00394{bottom:851.550000px;}
.y9_c00394{bottom:871.650000px;}
.y8_c00394{bottom:891.450000px;}
.y7_c00394{bottom:911.550000px;}
.y6_c00394{bottom:931.650000px;}
.y5_c00394{bottom:951.600000px;}
.y4_c00394{bottom:971.700000px;}
.y3_c00394{bottom:991.800000px;}
.y2_c00394{bottom:1011.900000px;}
.y1_c00394{bottom:1050.150000px;}
.h2_c00394{height:54.000000px;}
.h0_c00394{height:1166.759949px;}
.h1_c00394{height:1167.000000px;}
.w1_c00394{width:913.500000px;}
.w0_c00394{width:913.679993px;}
.x0_c00394{left:0.000000px;}
.x9b_c00394{left:149.400000px;}
.x10_c00394{left:150.450000px;}
.x1_c00394{left:151.500000px;}
.x12d_c00394{left:160.500000px;}
.x134_c00394{left:165.300000px;}
.xad_c00394{left:167.850000px;}
.x3_c00394{left:169.650000px;}
.xe1_c00394{left:172.200000px;}
.x35_c00394{left:181.500000px;}
.xef_c00394{left:182.550000px;}
.x104_c00394{left:185.250000px;}
.x44_c00394{left:187.200000px;}
.x11a_c00394{left:191.700000px;}
.x2a_c00394{left:193.050000px;}
.x4_c00394{left:194.850000px;}
.x50_c00394{left:196.050000px;}
.x116_c00394{left:198.600000px;}
.xd9_c00394{left:201.300000px;}
.x13b_c00394{left:202.650000px;}
.x5c_c00394{left:203.850000px;}
.x1d_c00394{left:205.500000px;}
.xb8_c00394{left:209.100000px;}
.x111_c00394{left:211.350000px;}
.xc9_c00394{left:213.450000px;}
.x45_c00394{left:214.500000px;}
.x93_c00394{left:216.450000px;}
.x127_c00394{left:218.250000px;}
.x11b_c00394{left:219.450000px;}
.x11_c00394{left:220.950000px;}
.x66_c00394{left:222.900000px;}
.xbf_c00394{left:228.300000px;}
.x5_c00394{left:229.350000px;}
.x5d_c00394{left:232.350000px;}
.x88_c00394{left:235.500000px;}
.xa3_c00394{left:237.300000px;}
.x36_c00394{left:239.400000px;}
.xae_c00394{left:241.650000px;}
.xe8_c00394{left:243.750000px;}
.x2b_c00394{left:246.000000px;}
.x12_c00394{left:248.250000px;}
.xda_c00394{left:249.600000px;}
.x12f_c00394{left:251.850000px;}
.x67_c00394{left:254.250000px;}
.xa7_c00394{left:256.800000px;}
.x117_c00394{left:259.050000px;}
.x80_c00394{left:261.900000px;}
.xcf_c00394{left:263.250000px;}
.x12e_c00394{left:264.450000px;}
.x94_c00394{left:266.550000px;}
.x51_c00394{left:268.500000px;}
.xfe_c00394{left:269.700000px;}
.x89_c00394{left:272.250000px;}
.xf6_c00394{left:274.950000px;}
.x46_c00394{left:276.750000px;}
.xaf_c00394{left:277.950000px;}
.xe9_c00394{left:279.450000px;}
.x9c_c00394{left:280.800000px;}
.x5e_c00394{left:282.000000px;}
.x130_c00394{left:286.350000px;}
.x13_c00394{left:287.550000px;}
.x1e_c00394{left:289.800000px;}
.xc0_c00394{left:291.300000px;}
.xff_c00394{left:292.650000px;}
.x10a_c00394{left:295.050000px;}
.xb0_c00394{left:296.250000px;}
.x47_c00394{left:298.050000px;}
.x105_c00394{left:299.700000px;}
.x8a_c00394{left:301.350000px;}
.xd3_c00394{left:304.650000px;}
.x14_c00394{left:307.050000px;}
.x95_c00394{left:308.250000px;}
.x6_c00394{left:310.050000px;}
.x73_c00394{left:311.400000px;}
.xb9_c00394{left:312.750000px;}
.x5f_c00394{left:314.700000px;}
.x68_c00394{left:317.550000px;}
.x37_c00394{left:319.350000px;}
.x1f_c00394{left:320.400000px;}
.xf0_c00394{left:322.200000px;}
.xb1_c00394{left:324.300000px;}
.x100_c00394{left:325.350000px;}
.xa4_c00394{left:326.550000px;}
.x79_c00394{left:328.050000px;}
.xca_c00394{left:329.700000px;}
.xea_c00394{left:332.400000px;}
.x74_c00394{left:335.850000px;}
.x8b_c00394{left:337.350000px;}
.x52_c00394{left:339.300000px;}
.x2c_c00394{left:340.650000px;}
.xe2_c00394{left:342.750000px;}
.xd4_c00394{left:343.950000px;}
.x15_c00394{left:345.900000px;}
.x20_c00394{left:347.700000px;}
.x75_c00394{left:349.950000px;}
.x48_c00394{left:352.350000px;}
.x7_c00394{left:353.550000px;}
.xd0_c00394{left:356.400000px;}
.x7a_c00394{left:357.900000px;}
.xdb_c00394{left:360.450000px;}
.xa5_c00394{left:362.850000px;}
.x8c_c00394{left:364.650000px;}
.x112_c00394{left:365.700000px;}
.x121_c00394{left:367.200000px;}
.xf1_c00394{left:369.000000px;}
.x9d_c00394{left:371.550000px;}
.x53_c00394{left:373.800000px;}
.x38_c00394{left:376.200000px;}
.x125_c00394{left:378.000000px;}
.x60_c00394{left:380.250000px;}
.x131_c00394{left:382.500000px;}
.x69_c00394{left:384.900000px;}
.xc1_c00394{left:386.400000px;}
.x76_c00394{left:387.450000px;}
.xdc_c00394{left:388.950000px;}
.xba_c00394{left:390.150000px;}
.xf7_c00394{left:391.350000px;}
.x118_c00394{left:393.000000px;}
.x21_c00394{left:394.200000px;}
.x2d_c00394{left:397.950000px;}
.x136_c00394{left:401.250000px;}
.xe3_c00394{left:404.400000px;}
.xdd_c00394{left:406.650000px;}
.xa6_c00394{left:408.900000px;}
.xbb_c00394{left:410.250000px;}
.xb2_c00394{left:411.750000px;}
.x22_c00394{left:412.950000px;}
.xeb_c00394{left:415.950000px;}
.x39_c00394{left:418.650000px;}
.x11c_c00394{left:419.700000px;}
.xc2_c00394{left:424.200000px;}
.xec_c00394{left:427.800000px;}
.x8_c00394{left:429.450000px;}
.x23_c00394{left:431.250000px;}
.x54_c00394{left:433.200000px;}
.x96_c00394{left:436.050000px;}
.x10b_c00394{left:437.700000px;}
.x8d_c00394{left:439.200000px;}
.xd5_c00394{left:440.400000px;}
.x16_c00394{left:442.050000px;}
.x9e_c00394{left:444.300000px;}
.x101_c00394{left:445.650000px;}
.xde_c00394{left:447.300000px;}
.x2_c00394{left:448.500000px;}
.xf2_c00394{left:449.550000px;}
.x8e_c00394{left:450.750000px;}
.x6a_c00394{left:452.250000px;}
.x77_c00394{left:453.300000px;}
.x128_c00394{left:458.250000px;}
.x3a_c00394{left:459.750000px;}
.xbc_c00394{left:461.400000px;}
.x61_c00394{left:463.050000px;}
.x132_c00394{left:465.000000px;}
.x9_c00394{left:467.250000px;}
.x97_c00394{left:469.500000px;}
.xf3_c00394{left:471.150000px;}
.xe4_c00394{left:473.250000px;}
.x9f_c00394{left:475.950000px;}
.x11d_c00394{left:477.600000px;}
.x10d_c00394{left:479.250000px;}
.x55_c00394{left:480.300000px;}
.x8f_c00394{left:481.650000px;}
.x81_c00394{left:483.750000px;}
.x106_c00394{left:485.850000px;}
.xf8_c00394{left:487.500000px;}
.xd6_c00394{left:489.300000px;}
.x24_c00394{left:490.650000px;}
.xe5_c00394{left:492.300000px;}
.xb3_c00394{left:494.550000px;}
.x2e_c00394{left:495.900000px;}
.x6b_c00394{left:499.350000px;}
.x17_c00394{left:500.700000px;}
.x3b_c00394{left:501.900000px;}
.xc3_c00394{left:502.950000px;}
.x113_c00394{left:507.150000px;}
.xd7_c00394{left:509.400000px;}
.xa_c00394{left:510.450000px;}
.x56_c00394{left:511.650000px;}
.xa0_c00394{left:513.000000px;}
.xf9_c00394{left:517.050000px;}
.x2f_c00394{left:518.250000px;}
.xb4_c00394{left:520.050000px;}
.x10e_c00394{left:525.000000px;}
.x3c_c00394{left:526.800000px;}
.x18_c00394{left:532.800000px;}
.x10f_c00394{left:535.800000px;}
.x62_c00394{left:537.150000px;}
.x98_c00394{left:539.400000px;}
.xb_c00394{left:542.100000px;}
.x49_c00394{left:543.900000px;}
.x82_c00394{left:545.250000px;}
.x102_c00394{left:547.500000px;}
.x25_c00394{left:549.000000px;}
.x6c_c00394{left:550.800000px;}
.x57_c00394{left:555.900000px;}
.x78_c00394{left:559.050000px;}
.xfa_c00394{left:561.000000px;}
.x135_c00394{left:563.100000px;}
.x7b_c00394{left:565.800000px;}
.xb5_c00394{left:568.350000px;}
.x63_c00394{left:571.050000px;}
.x58_c00394{left:572.850000px;}
.x126_c00394{left:574.950000px;}
.x110_c00394{left:576.150000px;}
.x90_c00394{left:577.350000px;}
.x6d_c00394{left:580.350000px;}
.x4a_c00394{left:581.700000px;}
.x119_c00394{left:583.650000px;}
.xcb_c00394{left:585.000000px;}
.x114_c00394{left:586.350000px;}
.xe6_c00394{left:588.450000px;}
.x3d_c00394{left:590.100000px;}
.x10c_c00394{left:591.300000px;}
.x30_c00394{left:592.350000px;}
.xa8_c00394{left:594.600000px;}
.x137_c00394{left:597.000000px;}
.x19_c00394{left:600.450000px;}
.x107_c00394{left:603.300000px;}
.x26_c00394{left:605.100000px;}
.xd1_c00394{left:606.300000px;}
.xfb_c00394{left:608.550000px;}
.xc_c00394{left:609.750000px;}
.x138_c00394{left:611.400000px;}
.x83_c00394{left:612.600000px;}
.xcc_c00394{left:616.350000px;}
.xc4_c00394{left:617.850000px;}
.xed_c00394{left:619.200000px;}
.xbd_c00394{left:622.050000px;}
.x3e_c00394{left:624.000000px;}
.x4b_c00394{left:627.000000px;}
.x64_c00394{left:628.650000px;}
.x31_c00394{left:630.450000px;}
.x84_c00394{left:633.150000px;}
.xf4_c00394{left:634.950000px;}
.x7c_c00394{left:636.300000px;}
.xc5_c00394{left:637.950000px;}
.xee_c00394{left:640.050000px;}
.x6e_c00394{left:641.550000px;}
.x27_c00394{left:642.600000px;}
.xb6_c00394{left:645.750000px;}
.x129_c00394{left:649.050000px;}
.x99_c00394{left:650.250000px;}
.x32_c00394{left:652.350000px;}
.x115_c00394{left:653.700000px;}
.x1a_c00394{left:655.200000px;}
.xa1_c00394{left:657.000000px;}
.xd8_c00394{left:658.350000px;}
.x7d_c00394{left:661.200000px;}
.xa9_c00394{left:662.250000px;}
.x11e_c00394{left:664.050000px;}
.x4c_c00394{left:665.550000px;}
.x12a_c00394{left:667.350000px;}
.xd_c00394{left:669.900000px;}
.xdf_c00394{left:672.300000px;}
.xf5_c00394{left:673.800000px;}
.x3f_c00394{left:675.450000px;}
.x108_c00394{left:677.400000px;}
.x33_c00394{left:679.050000px;}
.x91_c00394{left:680.250000px;}
.x103_c00394{left:681.300000px;}
.x34_c00394{left:682.350000px;}
.xe7_c00394{left:688.800000px;}
.xaa_c00394{left:691.350000px;}
.x139_c00394{left:692.700000px;}
.x40_c00394{left:693.750000px;}
.x12b_c00394{left:696.150000px;}
.x6f_c00394{left:697.650000px;}
.x1b_c00394{left:700.200000px;}
.x85_c00394{left:706.200000px;}
.x28_c00394{left:708.150000px;}
.x7e_c00394{left:709.350000px;}
.x92_c00394{left:711.150000px;}
.xb7_c00394{left:712.350000px;}
.x122_c00394{left:713.850000px;}
.x59_c00394{left:715.350000px;}
.x4d_c00394{left:716.700000px;}
.xc6_c00394{left:717.900000px;}
.xd2_c00394{left:722.550000px;}
.xe0_c00394{left:725.250000px;}
.xc7_c00394{left:731.550000px;}
.x65_c00394{left:736.650000px;}
.x41_c00394{left:738.000000px;}
.xe_c00394{left:739.800000px;}
.x70_c00394{left:743.400000px;}
.x4e_c00394{left:745.800000px;}
.xbe_c00394{left:747.450000px;}
.xcd_c00394{left:748.800000px;}
.x11f_c00394{left:750.150000px;}
.x109_c00394{left:751.500000px;}
.x13a_c00394{left:752.550000px;}
.xfc_c00394{left:753.900000px;}
.x86_c00394{left:755.850000px;}
.x5a_c00394{left:758.550000px;}
.x123_c00394{left:762.750000px;}
.xc8_c00394{left:763.950000px;}
.x12c_c00394{left:765.300000px;}
.x9a_c00394{left:766.500000px;}
.xab_c00394{left:768.000000px;}
.x1c_c00394{left:772.500000px;}
.xf_c00394{left:774.000000px;}
.x87_c00394{left:775.650000px;}
.x7f_c00394{left:777.000000px;}
.xfd_c00394{left:779.400000px;}
.x71_c00394{left:782.250000px;}
.x4f_c00394{left:784.650000px;}
.x5b_c00394{left:786.600000px;}
.xac_c00394{left:788.100000px;}
.x120_c00394{left:789.750000px;}
.x42_c00394{left:792.000000px;}
.x29_c00394{left:793.500000px;}
.x72_c00394{left:796.950000px;}
.x124_c00394{left:799.050000px;}
.xa2_c00394{left:801.750000px;}
.xce_c00394{left:804.300000px;}
.x133_c00394{left:812.850000px;}
.x43_c00394{left:815.700000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws3_c00394{word-spacing:-9.222222pt;}
.ws6_c00394{word-spacing:-2.888889pt;}
.ws7_c00394{word-spacing:-2.777778pt;}
.ws9_c00394{word-spacing:-2.555556pt;}
.ws1_c00394{word-spacing:-1.437707pt;}
.wsc_c00394{word-spacing:0.000000pt;}
.ws2_c00394{word-spacing:2.372779pt;}
.wsa_c00394{word-spacing:2.444444pt;}
.wsb_c00394{word-spacing:6.777778pt;}
.ws4_c00394{word-spacing:7.837436pt;}
.ws8_c00394{word-spacing:7.888889pt;}
.ws5_c00394{word-spacing:11.888889pt;}
.ws0_c00394{word-spacing:13.850790pt;}
._0_c00394{width:33.555556pt;}
.fs0_c00394{font-size:48.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y2c_c00394{bottom:132.800000pt;}
.y2b_c00394{bottom:146.933333pt;}
.y2a_c00394{bottom:160.933333pt;}
.y29_c00394{bottom:174.666667pt;}
.y28_c00394{bottom:208.400000pt;}
.y27_c00394{bottom:226.266667pt;}
.y26_c00394{bottom:244.133333pt;}
.y25_c00394{bottom:261.733333pt;}
.y24_c00394{bottom:279.600000pt;}
.y23_c00394{bottom:297.200000pt;}
.y22_c00394{bottom:315.466667pt;}
.y21_c00394{bottom:333.066667pt;}
.y20_c00394{bottom:350.666667pt;}
.y1f_c00394{bottom:368.533333pt;}
.y1e_c00394{bottom:386.133333pt;}
.y1d_c00394{bottom:404.000000pt;}
.y1c_c00394{bottom:421.600000pt;}
.y1b_c00394{bottom:439.200000pt;}
.y1a_c00394{bottom:457.466667pt;}
.y19_c00394{bottom:475.066667pt;}
.y18_c00394{bottom:492.666667pt;}
.y17_c00394{bottom:510.266667pt;}
.y16_c00394{bottom:528.133333pt;}
.y15_c00394{bottom:546.000000pt;}
.y14_c00394{bottom:563.600000pt;}
.y13_c00394{bottom:581.200000pt;}
.y12_c00394{bottom:599.066667pt;}
.y11_c00394{bottom:617.066667pt;}
.y10_c00394{bottom:634.666667pt;}
.yf_c00394{bottom:652.533333pt;}
.ye_c00394{bottom:670.400000pt;}
.yd_c00394{bottom:688.000000pt;}
.yc_c00394{bottom:705.600000pt;}
.yb_c00394{bottom:739.333333pt;}
.ya_c00394{bottom:756.933333pt;}
.y9_c00394{bottom:774.800000pt;}
.y8_c00394{bottom:792.400000pt;}
.y7_c00394{bottom:810.266667pt;}
.y6_c00394{bottom:828.133333pt;}
.y5_c00394{bottom:845.866667pt;}
.y4_c00394{bottom:863.733333pt;}
.y3_c00394{bottom:881.600000pt;}
.y2_c00394{bottom:899.466667pt;}
.y1_c00394{bottom:933.466667pt;}
.h2_c00394{height:48.000000pt;}
.h0_c00394{height:1037.119955pt;}
.h1_c00394{height:1037.333333pt;}
.w1_c00394{width:812.000000pt;}
.w0_c00394{width:812.159993pt;}
.x0_c00394{left:0.000000pt;}
.x9b_c00394{left:132.800000pt;}
.x10_c00394{left:133.733333pt;}
.x1_c00394{left:134.666667pt;}
.x12d_c00394{left:142.666667pt;}
.x134_c00394{left:146.933333pt;}
.xad_c00394{left:149.200000pt;}
.x3_c00394{left:150.800000pt;}
.xe1_c00394{left:153.066667pt;}
.x35_c00394{left:161.333333pt;}
.xef_c00394{left:162.266667pt;}
.x104_c00394{left:164.666667pt;}
.x44_c00394{left:166.400000pt;}
.x11a_c00394{left:170.400000pt;}
.x2a_c00394{left:171.600000pt;}
.x4_c00394{left:173.200000pt;}
.x50_c00394{left:174.266667pt;}
.x116_c00394{left:176.533333pt;}
.xd9_c00394{left:178.933333pt;}
.x13b_c00394{left:180.133333pt;}
.x5c_c00394{left:181.200000pt;}
.x1d_c00394{left:182.666667pt;}
.xb8_c00394{left:185.866667pt;}
.x111_c00394{left:187.866667pt;}
.xc9_c00394{left:189.733333pt;}
.x45_c00394{left:190.666667pt;}
.x93_c00394{left:192.400000pt;}
.x127_c00394{left:194.000000pt;}
.x11b_c00394{left:195.066667pt;}
.x11_c00394{left:196.400000pt;}
.x66_c00394{left:198.133333pt;}
.xbf_c00394{left:202.933333pt;}
.x5_c00394{left:203.866667pt;}
.x5d_c00394{left:206.533333pt;}
.x88_c00394{left:209.333333pt;}
.xa3_c00394{left:210.933333pt;}
.x36_c00394{left:212.800000pt;}
.xae_c00394{left:214.800000pt;}
.xe8_c00394{left:216.666667pt;}
.x2b_c00394{left:218.666667pt;}
.x12_c00394{left:220.666667pt;}
.xda_c00394{left:221.866667pt;}
.x12f_c00394{left:223.866667pt;}
.x67_c00394{left:226.000000pt;}
.xa7_c00394{left:228.266667pt;}
.x117_c00394{left:230.266667pt;}
.x80_c00394{left:232.800000pt;}
.xcf_c00394{left:234.000000pt;}
.x12e_c00394{left:235.066667pt;}
.x94_c00394{left:236.933333pt;}
.x51_c00394{left:238.666667pt;}
.xfe_c00394{left:239.733333pt;}
.x89_c00394{left:242.000000pt;}
.xf6_c00394{left:244.400000pt;}
.x46_c00394{left:246.000000pt;}
.xaf_c00394{left:247.066667pt;}
.xe9_c00394{left:248.400000pt;}
.x9c_c00394{left:249.600000pt;}
.x5e_c00394{left:250.666667pt;}
.x130_c00394{left:254.533333pt;}
.x13_c00394{left:255.600000pt;}
.x1e_c00394{left:257.600000pt;}
.xc0_c00394{left:258.933333pt;}
.xff_c00394{left:260.133333pt;}
.x10a_c00394{left:262.266667pt;}
.xb0_c00394{left:263.333333pt;}
.x47_c00394{left:264.933333pt;}
.x105_c00394{left:266.400000pt;}
.x8a_c00394{left:267.866667pt;}
.xd3_c00394{left:270.800000pt;}
.x14_c00394{left:272.933333pt;}
.x95_c00394{left:274.000000pt;}
.x6_c00394{left:275.600000pt;}
.x73_c00394{left:276.800000pt;}
.xb9_c00394{left:278.000000pt;}
.x5f_c00394{left:279.733333pt;}
.x68_c00394{left:282.266667pt;}
.x37_c00394{left:283.866667pt;}
.x1f_c00394{left:284.800000pt;}
.xf0_c00394{left:286.400000pt;}
.xb1_c00394{left:288.266667pt;}
.x100_c00394{left:289.200000pt;}
.xa4_c00394{left:290.266667pt;}
.x79_c00394{left:291.600000pt;}
.xca_c00394{left:293.066667pt;}
.xea_c00394{left:295.466667pt;}
.x74_c00394{left:298.533333pt;}
.x8b_c00394{left:299.866667pt;}
.x52_c00394{left:301.600000pt;}
.x2c_c00394{left:302.800000pt;}
.xe2_c00394{left:304.666667pt;}
.xd4_c00394{left:305.733333pt;}
.x15_c00394{left:307.466667pt;}
.x20_c00394{left:309.066667pt;}
.x75_c00394{left:311.066667pt;}
.x48_c00394{left:313.200000pt;}
.x7_c00394{left:314.266667pt;}
.xd0_c00394{left:316.800000pt;}
.x7a_c00394{left:318.133333pt;}
.xdb_c00394{left:320.400000pt;}
.xa5_c00394{left:322.533333pt;}
.x8c_c00394{left:324.133333pt;}
.x112_c00394{left:325.066667pt;}
.x121_c00394{left:326.400000pt;}
.xf1_c00394{left:328.000000pt;}
.x9d_c00394{left:330.266667pt;}
.x53_c00394{left:332.266667pt;}
.x38_c00394{left:334.400000pt;}
.x125_c00394{left:336.000000pt;}
.x60_c00394{left:338.000000pt;}
.x131_c00394{left:340.000000pt;}
.x69_c00394{left:342.133333pt;}
.xc1_c00394{left:343.466667pt;}
.x76_c00394{left:344.400000pt;}
.xdc_c00394{left:345.733333pt;}
.xba_c00394{left:346.800000pt;}
.xf7_c00394{left:347.866667pt;}
.x118_c00394{left:349.333333pt;}
.x21_c00394{left:350.400000pt;}
.x2d_c00394{left:353.733333pt;}
.x136_c00394{left:356.666667pt;}
.xe3_c00394{left:359.466667pt;}
.xdd_c00394{left:361.466667pt;}
.xa6_c00394{left:363.466667pt;}
.xbb_c00394{left:364.666667pt;}
.xb2_c00394{left:366.000000pt;}
.x22_c00394{left:367.066667pt;}
.xeb_c00394{left:369.733333pt;}
.x39_c00394{left:372.133333pt;}
.x11c_c00394{left:373.066667pt;}
.xc2_c00394{left:377.066667pt;}
.xec_c00394{left:380.266667pt;}
.x8_c00394{left:381.733333pt;}
.x23_c00394{left:383.333333pt;}
.x54_c00394{left:385.066667pt;}
.x96_c00394{left:387.600000pt;}
.x10b_c00394{left:389.066667pt;}
.x8d_c00394{left:390.400000pt;}
.xd5_c00394{left:391.466667pt;}
.x16_c00394{left:392.933333pt;}
.x9e_c00394{left:394.933333pt;}
.x101_c00394{left:396.133333pt;}
.xde_c00394{left:397.600000pt;}
.x2_c00394{left:398.666667pt;}
.xf2_c00394{left:399.600000pt;}
.x8e_c00394{left:400.666667pt;}
.x6a_c00394{left:402.000000pt;}
.x77_c00394{left:402.933333pt;}
.x128_c00394{left:407.333333pt;}
.x3a_c00394{left:408.666667pt;}
.xbc_c00394{left:410.133333pt;}
.x61_c00394{left:411.600000pt;}
.x132_c00394{left:413.333333pt;}
.x9_c00394{left:415.333333pt;}
.x97_c00394{left:417.333333pt;}
.xf3_c00394{left:418.800000pt;}
.xe4_c00394{left:420.666667pt;}
.x9f_c00394{left:423.066667pt;}
.x11d_c00394{left:424.533333pt;}
.x10d_c00394{left:426.000000pt;}
.x55_c00394{left:426.933333pt;}
.x8f_c00394{left:428.133333pt;}
.x81_c00394{left:430.000000pt;}
.x106_c00394{left:431.866667pt;}
.xf8_c00394{left:433.333333pt;}
.xd6_c00394{left:434.933333pt;}
.x24_c00394{left:436.133333pt;}
.xe5_c00394{left:437.600000pt;}
.xb3_c00394{left:439.600000pt;}
.x2e_c00394{left:440.800000pt;}
.x6b_c00394{left:443.866667pt;}
.x17_c00394{left:445.066667pt;}
.x3b_c00394{left:446.133333pt;}
.xc3_c00394{left:447.066667pt;}
.x113_c00394{left:450.800000pt;}
.xd7_c00394{left:452.800000pt;}
.xa_c00394{left:453.733333pt;}
.x56_c00394{left:454.800000pt;}
.xa0_c00394{left:456.000000pt;}
.xf9_c00394{left:459.600000pt;}
.x2f_c00394{left:460.666667pt;}
.xb4_c00394{left:462.266667pt;}
.x10e_c00394{left:466.666667pt;}
.x3c_c00394{left:468.266667pt;}
.x18_c00394{left:473.600000pt;}
.x10f_c00394{left:476.266667pt;}
.x62_c00394{left:477.466667pt;}
.x98_c00394{left:479.466667pt;}
.xb_c00394{left:481.866667pt;}
.x49_c00394{left:483.466667pt;}
.x82_c00394{left:484.666667pt;}
.x102_c00394{left:486.666667pt;}
.x25_c00394{left:488.000000pt;}
.x6c_c00394{left:489.600000pt;}
.x57_c00394{left:494.133333pt;}
.x78_c00394{left:496.933333pt;}
.xfa_c00394{left:498.666667pt;}
.x135_c00394{left:500.533333pt;}
.x7b_c00394{left:502.933333pt;}
.xb5_c00394{left:505.200000pt;}
.x63_c00394{left:507.600000pt;}
.x58_c00394{left:509.200000pt;}
.x126_c00394{left:511.066667pt;}
.x110_c00394{left:512.133333pt;}
.x90_c00394{left:513.200000pt;}
.x6d_c00394{left:515.866667pt;}
.x4a_c00394{left:517.066667pt;}
.x119_c00394{left:518.800000pt;}
.xcb_c00394{left:520.000000pt;}
.x114_c00394{left:521.200000pt;}
.xe6_c00394{left:523.066667pt;}
.x3d_c00394{left:524.533333pt;}
.x10c_c00394{left:525.600000pt;}
.x30_c00394{left:526.533333pt;}
.xa8_c00394{left:528.533333pt;}
.x137_c00394{left:530.666667pt;}
.x19_c00394{left:533.733333pt;}
.x107_c00394{left:536.266667pt;}
.x26_c00394{left:537.866667pt;}
.xd1_c00394{left:538.933333pt;}
.xfb_c00394{left:540.933333pt;}
.xc_c00394{left:542.000000pt;}
.x138_c00394{left:543.466667pt;}
.x83_c00394{left:544.533333pt;}
.xcc_c00394{left:547.866667pt;}
.xc4_c00394{left:549.200000pt;}
.xed_c00394{left:550.400000pt;}
.xbd_c00394{left:552.933333pt;}
.x3e_c00394{left:554.666667pt;}
.x4b_c00394{left:557.333333pt;}
.x64_c00394{left:558.800000pt;}
.x31_c00394{left:560.400000pt;}
.x84_c00394{left:562.800000pt;}
.xf4_c00394{left:564.400000pt;}
.x7c_c00394{left:565.600000pt;}
.xc5_c00394{left:567.066667pt;}
.xee_c00394{left:568.933333pt;}
.x6e_c00394{left:570.266667pt;}
.x27_c00394{left:571.200000pt;}
.xb6_c00394{left:574.000000pt;}
.x129_c00394{left:576.933333pt;}
.x99_c00394{left:578.000000pt;}
.x32_c00394{left:579.866667pt;}
.x115_c00394{left:581.066667pt;}
.x1a_c00394{left:582.400000pt;}
.xa1_c00394{left:584.000000pt;}
.xd8_c00394{left:585.200000pt;}
.x7d_c00394{left:587.733333pt;}
.xa9_c00394{left:588.666667pt;}
.x11e_c00394{left:590.266667pt;}
.x4c_c00394{left:591.600000pt;}
.x12a_c00394{left:593.200000pt;}
.xd_c00394{left:595.466667pt;}
.xdf_c00394{left:597.600000pt;}
.xf5_c00394{left:598.933333pt;}
.x3f_c00394{left:600.400000pt;}
.x108_c00394{left:602.133333pt;}
.x33_c00394{left:603.600000pt;}
.x91_c00394{left:604.666667pt;}
.x103_c00394{left:605.600000pt;}
.x34_c00394{left:606.533333pt;}
.xe7_c00394{left:612.266667pt;}
.xaa_c00394{left:614.533333pt;}
.x139_c00394{left:615.733333pt;}
.x40_c00394{left:616.666667pt;}
.x12b_c00394{left:618.800000pt;}
.x6f_c00394{left:620.133333pt;}
.x1b_c00394{left:622.400000pt;}
.x85_c00394{left:627.733333pt;}
.x28_c00394{left:629.466667pt;}
.x7e_c00394{left:630.533333pt;}
.x92_c00394{left:632.133333pt;}
.xb7_c00394{left:633.200000pt;}
.x122_c00394{left:634.533333pt;}
.x59_c00394{left:635.866667pt;}
.x4d_c00394{left:637.066667pt;}
.xc6_c00394{left:638.133333pt;}
.xd2_c00394{left:642.266667pt;}
.xe0_c00394{left:644.666667pt;}
.xc7_c00394{left:650.266667pt;}
.x65_c00394{left:654.800000pt;}
.x41_c00394{left:656.000000pt;}
.xe_c00394{left:657.600000pt;}
.x70_c00394{left:660.800000pt;}
.x4e_c00394{left:662.933333pt;}
.xbe_c00394{left:664.400000pt;}
.xcd_c00394{left:665.600000pt;}
.x11f_c00394{left:666.800000pt;}
.x109_c00394{left:668.000000pt;}
.x13a_c00394{left:668.933333pt;}
.xfc_c00394{left:670.133333pt;}
.x86_c00394{left:671.866667pt;}
.x5a_c00394{left:674.266667pt;}
.x123_c00394{left:678.000000pt;}
.xc8_c00394{left:679.066667pt;}
.x12c_c00394{left:680.266667pt;}
.x9a_c00394{left:681.333333pt;}
.xab_c00394{left:682.666667pt;}
.x1c_c00394{left:686.666667pt;}
.xf_c00394{left:688.000000pt;}
.x87_c00394{left:689.466667pt;}
.x7f_c00394{left:690.666667pt;}
.xfd_c00394{left:692.800000pt;}
.x71_c00394{left:695.333333pt;}
.x4f_c00394{left:697.466667pt;}
.x5b_c00394{left:699.200000pt;}
.xac_c00394{left:700.533333pt;}
.x120_c00394{left:702.000000pt;}
.x42_c00394{left:704.000000pt;}
.x29_c00394{left:705.333333pt;}
.x72_c00394{left:708.400000pt;}
.x124_c00394{left:710.266667pt;}
.xa2_c00394{left:712.666667pt;}
.xce_c00394{left:714.933333pt;}
.x133_c00394{left:722.533333pt;}
.x43_c00394{left:725.066667pt;}
}





/* 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_c00395 {
    display:none;
  }
  .loading-indicator_c00395.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00395 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_c00395 { 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_c00395" -> "#page-container .classname_c00395")
 */
.pf_c00395 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00395 { /* 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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00395 { /* 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_c00395 { /* 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_c00395 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00395 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00395 {overflow:visible;}
  }
}
.c_c00395 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00395 { /* 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_c00395:after { /* webkit #35443 */
  content: '';
}
.t_c00395:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00395 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 */
}
.__c00395 { /* 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_c00395 { /* info for Javascript */
  display:none;
}
.l_c00395 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00395 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00395 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00395: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_c00395 {
    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_c00395.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00395.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_c00395 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00395{font-family:sans-serif;visibility:hidden;}
.sc__c00395{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00395{-webkit-text-stroke:0px transparent;}
}
.y0_c00395{bottom:0.000000px;}
.h0_c00395{height:1166.759949px;}
.h1_c00395{height:1167.000000px;}
.w1_c00395{width:913.500000px;}
.w0_c00395{width:913.679993px;}
.x0_c00395{left:0.000000px;}
@media print{
.y0_c00395{bottom:0.000000pt;}
.h0_c00395{height:1037.119955pt;}
.h1_c00395{height:1037.333333pt;}
.w1_c00395{width:812.000000pt;}
.w0_c00395{width:812.159993pt;}
.x0_c00395{left:0.000000pt;}
}





/* 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_c00396 {
    display:none;
  }
  .loading-indicator_c00396.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00396 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_c00396 { 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_c00396" -> "#page-container .classname_c00396")
 */
.pf_c00396 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00396 { /* 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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00396 { /* 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_c00396 { /* 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_c00396 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00396 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00396 {overflow:visible;}
  }
}
.c_c00396 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00396 { /* 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_c00396:after { /* webkit #35443 */
  content: '';
}
.t_c00396:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00396 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 */
}
.__c00396 { /* 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_c00396 { /* info for Javascript */
  display:none;
}
.l_c00396 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00396 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00396 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00396: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_c00396 {
    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_c00396.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00396.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_c00396 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00396{font-family:sans-serif;visibility:hidden;}
.sc__c00396{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
}
.y0_c00396{bottom:0.000000px;}
.h1_c00396{height:1166.250000px;}
.h0_c00396{height:1166.400056px;}
.w0_c00396{width:920.879975px;}
.w1_c00396{width:921.000000px;}
.x0_c00396{left:0.000000px;}
@media print{
.y0_c00396{bottom:0.000000pt;}
.h1_c00396{height:1036.666667pt;}
.h0_c00396{height:1036.800049pt;}
.w0_c00396{width:818.559977pt;}
.w1_c00396{width:818.666667pt;}
.x0_c00396{left:0.000000pt;}
}





/* 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_c00397 {
    display:none;
  }
  .loading-indicator_c00397.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00397 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_c00397 { 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_c00397" -> "#page-container .classname_c00397")
 */
.pf_c00397 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00397 { /* 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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00397 { /* 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_c00397 { /* 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_c00397 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00397 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00397 {overflow:visible;}
  }
}
.c_c00397 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00397 { /* 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_c00397:after { /* webkit #35443 */
  content: '';
}
.t_c00397:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00397 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 */
}
.__c00397 { /* 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_c00397 { /* info for Javascript */
  display:none;
}
.l_c00397 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00397 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00397 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00397: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_c00397 {
    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_c00397.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00397.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_c00397 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00397{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00397;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.000000;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;}
.mbe_c00397{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m62_c00397{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00397{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00397{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.md1_c00397{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.maf_c00397{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m75_c00397{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00397{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00397{transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00397{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m83_c00397{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00397{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00397{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.md0_c00397{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m95_c00397{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00397{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00397{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00397{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00397{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00397{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00397{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00397{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00397{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00397{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00397{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00397{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00397{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mce_c00397{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00397{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m72_c00397{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mab_c00397{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00397{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m69_c00397{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00397{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00397{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00397{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00397{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m87_c00397{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mba_c00397{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00397{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m99_c00397{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00397{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00397{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00397{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00397{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00397{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00397{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m61_c00397{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00397{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00397{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00397{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m22_c00397{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00397{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00397{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00397{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00397{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m92_c00397{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00397{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mae_c00397{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00397{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00397{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00397{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00397{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00397{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00397{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00397{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mad_c00397{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00397{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m74_c00397{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00397{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00397{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00397{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00397{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00397{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00397{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00397{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00397{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mac_c00397{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00397{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00397{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m30_c00397{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00397{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00397{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00397{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00397{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m98_c00397{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m48_c00397{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00397{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m89_c00397{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m68_c00397{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00397{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m11_c00397{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m35_c00397{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00397{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00397{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m46_c00397{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m73_c00397{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.maa_c00397{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb_c00397{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00397{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{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);}
.md_c00397{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00397{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00397{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m84_c00397{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00397{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00397{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m63_c00397{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m76_c00397{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m65_c00397{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m45_c00397{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00397{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m38_c00397{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m88_c00397{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00397{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m79_c00397{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00397{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mca_c00397{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00397{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00397{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m10_c00397{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m97_c00397{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00397{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m67_c00397{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c00397{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m77_c00397{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m86_c00397{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00397{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m91_c00397{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m70_c00397{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00397{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mf_c00397{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m94_c00397{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m93_c00397{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m90_c00397{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m51_c00397{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00397{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m64_c00397{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m80_c00397{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m23_c00397{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00397{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m52_c00397{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m66_c00397{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m81_c00397{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00397{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.mc_c00397{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m96_c00397{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00397{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00397{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m85_c00397{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m82_c00397{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.ls0_c00397{letter-spacing:0.000000px;}
.sc__c00397{text-shadow:none;}
.sc0_c00397{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__c00397{-webkit-text-stroke:0px transparent;}
.sc0_c00397{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00397{word-spacing:-8.658851px;}
.ws0_c00397{word-spacing:-7.125348px;}
.ws5_c00397{word-spacing:-4.762016px;}
.ws7_c00397{word-spacing:-4.095526px;}
.wsa_c00397{word-spacing:0.000000px;}
.ws3_c00397{word-spacing:1.500000px;}
.ws9_c00397{word-spacing:5.250000px;}
.ws8_c00397{word-spacing:6.545135px;}
.ws1_c00397{word-spacing:7.250000px;}
.ws4_c00397{word-spacing:7.750000px;}
.ws2_c00397{word-spacing:24.833333px;}
._0_c00397{width:37.500000px;}
.fc0_c00397{color:transparent;}
.fs2_c00397{font-size:36.000000px;}
.fs1_c00397{font-size:54.000000px;}
.fs0_c00397{font-size:60.000000px;}
.y0_c00397{bottom:0.000000px;}
.y2e_c00397{bottom:131.400000px;}
.y2d_c00397{bottom:150.900000px;}
.y2c_c00397{bottom:166.650000px;}
.y2b_c00397{bottom:181.800000px;}
.y2a_c00397{bottom:197.250000px;}
.y29_c00397{bottom:212.700000px;}
.y28_c00397{bottom:228.600000px;}
.y27_c00397{bottom:244.500000px;}
.y26_c00397{bottom:260.250000px;}
.y25_c00397{bottom:275.400000px;}
.y24_c00397{bottom:291.600000px;}
.y23_c00397{bottom:306.750000px;}
.y22_c00397{bottom:322.500000px;}
.y21_c00397{bottom:338.100000px;}
.y20_c00397{bottom:373.800000px;}
.y1f_c00397{bottom:393.600000px;}
.y1e_c00397{bottom:413.400000px;}
.y1d_c00397{bottom:433.200000px;}
.y1c_c00397{bottom:453.300000px;}
.y1b_c00397{bottom:473.100000px;}
.y1a_c00397{bottom:492.900000px;}
.y19_c00397{bottom:512.700000px;}
.y18_c00397{bottom:550.050000px;}
.y17_c00397{bottom:570.150000px;}
.y16_c00397{bottom:589.950000px;}
.y15_c00397{bottom:610.500000px;}
.y14_c00397{bottom:648.150000px;}
.y13_c00397{bottom:667.950000px;}
.y12_c00397{bottom:688.050000px;}
.y11_c00397{bottom:707.850000px;}
.y10_c00397{bottom:727.650000px;}
.yf_c00397{bottom:747.750000px;}
.ye_c00397{bottom:767.700000px;}
.yd_c00397{bottom:787.800000px;}
.yc_c00397{bottom:807.600000px;}
.yb_c00397{bottom:827.400000px;}
.ya_c00397{bottom:847.200000px;}
.y9_c00397{bottom:867.300000px;}
.y8_c00397{bottom:887.400000px;}
.y7_c00397{bottom:907.200000px;}
.y6_c00397{bottom:927.150000px;}
.y5_c00397{bottom:947.250000px;}
.y4_c00397{bottom:967.350000px;}
.y3_c00397{bottom:986.850000px;}
.y2_c00397{bottom:1006.950000px;}
.y1_c00397{bottom:1043.700000px;}
.h4_c00397{height:36.000000px;}
.h3_c00397{height:54.000000px;}
.h2_c00397{height:60.000000px;}
.h1_c00397{height:1166.250000px;}
.h0_c00397{height:1166.400056px;}
.w0_c00397{width:920.879975px;}
.w1_c00397{width:921.000000px;}
.x0_c00397{left:0.000000px;}
.x3_c00397{left:93.900000px;}
.x44_c00397{left:94.950000px;}
.x99_c00397{left:96.000000px;}
.x27_c00397{left:105.750000px;}
.xa9_c00397{left:107.100000px;}
.x108_c00397{left:109.650000px;}
.x57_c00397{left:115.050000px;}
.x143_c00397{left:116.550000px;}
.x128_c00397{left:118.350000px;}
.x116_c00397{left:119.850000px;}
.x48_c00397{left:125.250000px;}
.x61_c00397{left:127.050000px;}
.x12f_c00397{left:128.250000px;}
.x4_c00397{left:129.600000px;}
.x38_c00397{left:131.400000px;}
.x9a_c00397{left:133.050000px;}
.x133_c00397{left:134.250000px;}
.x14a_c00397{left:135.450000px;}
.x28_c00397{left:138.450000px;}
.x7c_c00397{left:140.250000px;}
.xaa_c00397{left:141.600000px;}
.x58_c00397{left:143.550000px;}
.x49_c00397{left:145.350000px;}
.x14_c00397{left:147.750000px;}
.x87_c00397{left:149.100000px;}
.xb6_c00397{left:151.800000px;}
.xe6_c00397{left:155.100000px;}
.x9b_c00397{left:156.150000px;}
.x29_c00397{left:157.950000px;}
.x13f_c00397{left:159.900000px;}
.x10d_c00397{left:161.100000px;}
.x6f_c00397{left:163.650000px;}
.x112_c00397{left:165.600000px;}
.x15_c00397{left:167.550000px;}
.xf5_c00397{left:169.500000px;}
.x5_c00397{left:171.000000px;}
.xef_c00397{left:173.400000px;}
.x8e_c00397{left:175.200000px;}
.xb7_c00397{left:177.000000px;}
.xe0_c00397{left:178.350000px;}
.xd0_c00397{left:179.550000px;}
.x134_c00397{left:180.750000px;}
.xe7_c00397{left:183.600000px;}
.x45_c00397{left:185.250000px;}
.xa4_c00397{left:186.600000px;}
.xd7_c00397{left:190.050000px;}
.x10e_c00397{left:192.450000px;}
.x88_c00397{left:195.600000px;}
.xc9_c00397{left:199.650000px;}
.x4a_c00397{left:201.450000px;}
.x46_c00397{left:205.350000px;}
.xc0_c00397{left:207.150000px;}
.x6_c00397{left:208.500000px;}
.x7d_c00397{left:210.150000px;}
.x39_c00397{left:211.650000px;}
.x14b_c00397{left:213.600000px;}
.x89_c00397{left:215.100000px;}
.x129_c00397{left:218.100000px;}
.xab_c00397{left:219.450000px;}
.x2a_c00397{left:220.950000px;}
.x16_c00397{left:223.050000px;}
.xd8_c00397{left:226.800000px;}
.x130_c00397{left:229.050000px;}
.xeb_c00397{left:230.100000px;}
.x8f_c00397{left:231.750000px;}
.x4b_c00397{left:233.100000px;}
.x10f_c00397{left:235.650000px;}
.x17_c00397{left:238.950000px;}
.x9c_c00397{left:241.200000px;}
.x62_c00397{left:242.700000px;}
.x70_c00397{left:244.950000px;}
.x59_c00397{left:249.300000px;}
.xcf_c00397{left:250.950000px;}
.xd9_c00397{left:252.000000px;}
.x117_c00397{left:253.650000px;}
.x7e_c00397{left:254.850000px;}
.x18_c00397{left:256.200000px;}
.xd1_c00397{left:258.450000px;}
.x71_c00397{left:260.100000px;}
.x3a_c00397{left:261.300000px;}
.x63_c00397{left:262.800000px;}
.x13a_c00397{left:263.850000px;}
.x124_c00397{left:265.650000px;}
.xec_c00397{left:267.150000px;}
.x140_c00397{left:269.250000px;}
.x4c_c00397{left:270.600000px;}
.x7f_c00397{left:273.900000px;}
.x144_c00397{left:275.700000px;}
.x64_c00397{left:277.500000px;}
.x12a_c00397{left:279.000000px;}
.xac_c00397{left:280.650000px;}
.x3b_c00397{left:282.600000px;}
.xb8_c00397{left:283.650000px;}
.x102_c00397{left:285.750000px;}
.x113_c00397{left:288.450000px;}
.x7_c00397{left:289.800000px;}
.xf6_c00397{left:290.850000px;}
.xf0_c00397{left:292.200000px;}
.x2b_c00397{left:295.050000px;}
.x19_c00397{left:297.900000px;}
.xad_c00397{left:301.950000px;}
.xda_c00397{left:304.200000px;}
.xd2_c00397{left:305.250000px;}
.xe1_c00397{left:306.450000px;}
.x3c_c00397{left:308.100000px;}
.x72_c00397{left:313.350000px;}
.x90_c00397{left:314.550000px;}
.x1a_c00397{left:315.600000px;}
.x9d_c00397{left:317.100000px;}
.x47_c00397{left:320.550000px;}
.xf7_c00397{left:322.950000px;}
.x8_c00397{left:325.800000px;}
.x4d_c00397{left:327.750000px;}
.x65_c00397{left:330.450000px;}
.x13b_c00397{left:331.950000px;}
.x73_c00397{left:333.900000px;}
.x1b_c00397{left:335.100000px;}
.x5a_c00397{left:337.200000px;}
.xf8_c00397{left:339.450000px;}
.xc1_c00397{left:341.850000px;}
.x9_c00397{left:343.050000px;}
.xf1_c00397{left:344.700000px;}
.x135_c00397{left:345.900000px;}
.x109_c00397{left:348.150000px;}
.x80_c00397{left:350.250000px;}
.x91_c00397{left:351.300000px;}
.xae_c00397{left:352.350000px;}
.x145_c00397{left:353.400000px;}
.x1c_c00397{left:355.200000px;}
.x4e_c00397{left:356.250000px;}
.x2c_c00397{left:357.300000px;}
.x127_c00397{left:359.250000px;}
.xb9_c00397{left:362.100000px;}
.x66_c00397{left:363.150000px;}
.x11f_c00397{left:365.850000px;}
.x9e_c00397{left:367.500000px;}
.x92_c00397{left:371.400000px;}
.x74_c00397{left:373.200000px;}
.x3d_c00397{left:374.700000px;}
.xe2_c00397{left:375.900000px;}
.x13c_c00397{left:378.000000px;}
.xa_c00397{left:379.350000px;}
.x103_c00397{left:380.400000px;}
.xf9_c00397{left:382.950000px;}
.x11b_c00397{left:384.300000px;}
.x2d_c00397{left:386.850000px;}
.x1_c00397{left:388.500000px;}
.xdb_c00397{left:389.550000px;}
.xc2_c00397{left:393.300000px;}
.xd3_c00397{left:394.500000px;}
.x9f_c00397{left:396.000000px;}
.x11c_c00397{left:398.400000px;}
.x8a_c00397{left:399.450000px;}
.x118_c00397{left:400.950000px;}
.x5b_c00397{left:402.000000px;}
.x101_c00397{left:403.350000px;}
.x4f_c00397{left:405.600000px;}
.x1d_c00397{left:407.100000px;}
.x67_c00397{left:408.900000px;}
.xe8_c00397{left:411.300000px;}
.xaf_c00397{left:413.850000px;}
.xba_c00397{left:415.050000px;}
.x10a_c00397{left:417.300000px;}
.xc3_c00397{left:418.500000px;}
.x110_c00397{left:422.100000px;}
.x81_c00397{left:423.300000px;}
.x75_c00397{left:428.700000px;}
.xf2_c00397{left:431.850000px;}
.x50_c00397{left:433.350000px;}
.xfa_c00397{left:435.900000px;}
.x136_c00397{left:436.950000px;}
.xca_c00397{left:438.000000px;}
.x3e_c00397{left:441.000000px;}
.x93_c00397{left:442.350000px;}
.xc4_c00397{left:443.700000px;}
.x1e_c00397{left:446.400000px;}
.xbb_c00397{left:448.200000px;}
.xb_c00397{left:450.600000px;}
.x2e_c00397{left:453.150000px;}
.xc5_c00397{left:454.800000px;}
.x82_c00397{left:457.200000px;}
.xcb_c00397{left:458.550000px;}
.xd4_c00397{left:460.350000px;}
.x5c_c00397{left:461.700000px;}
.x120_c00397{left:464.400000px;}
.xbc_c00397{left:466.200000px;}
.xfb_c00397{left:467.250000px;}
.xa5_c00397{left:468.900000px;}
.xe3_c00397{left:470.850000px;}
.x131_c00397{left:472.800000px;}
.x104_c00397{left:474.600000px;}
.x1f_c00397{left:477.000000px;}
.x5d_c00397{left:481.200000px;}
.x68_c00397{left:483.300000px;}
.xdc_c00397{left:484.500000px;}
.xc_c00397{left:485.550000px;}
.x83_c00397{left:486.750000px;}
.x2f_c00397{left:488.850000px;}
.x119_c00397{left:489.900000px;}
.xb0_c00397{left:491.250000px;}
.xc6_c00397{left:493.650000px;}
.x13d_c00397{left:496.200000px;}
.xa0_c00397{left:497.400000px;}
.x105_c00397{left:498.750000px;}
.x12b_c00397{left:502.200000px;}
.xdd_c00397{left:505.350000px;}
.x10b_c00397{left:506.400000px;}
.xd_c00397{left:507.450000px;}
.x30_c00397{left:508.950000px;}
.xa6_c00397{left:512.400000px;}
.x3f_c00397{left:513.750000px;}
.xa1_c00397{left:515.700000px;}
.x12c_c00397{left:518.700000px;}
.x8b_c00397{left:520.800000px;}
.xd5_c00397{left:523.050000px;}
.x137_c00397{left:524.100000px;}
.x121_c00397{left:525.300000px;}
.xfc_c00397{left:526.650000px;}
.x20_c00397{left:528.150000px;}
.x94_c00397{left:529.800000px;}
.x10c_c00397{left:531.900000px;}
.xe_c00397{left:532.950000px;}
.x31_c00397{left:536.250000px;}
.x8c_c00397{left:538.050000px;}
.x51_c00397{left:539.550000px;}
.x69_c00397{left:541.950000px;}
.xa2_c00397{left:543.750000px;}
.xfd_c00397{left:546.150000px;}
.xbd_c00397{left:547.200000px;}
.x76_c00397{left:548.550000px;}
.x147_c00397{left:550.200000px;}
.x125_c00397{left:553.500000px;}
.xde_c00397{left:556.500000px;}
.x52_c00397{left:558.300000px;}
.x5e_c00397{left:562.200000px;}
.x84_c00397{left:564.150000px;}
.xf3_c00397{left:565.800000px;}
.x77_c00397{left:568.650000px;}
.x12d_c00397{left:572.250000px;}
.x21_c00397{left:573.450000px;}
.xd6_c00397{left:576.300000px;}
.x32_c00397{left:578.400000px;}
.xb1_c00397{left:580.500000px;}
.x85_c00397{left:582.900000px;}
.x126_c00397{left:585.900000px;}
.x22_c00397{left:587.850000px;}
.xfe_c00397{left:590.100000px;}
.x95_c00397{left:592.050000px;}
.xa3_c00397{left:593.100000px;}
.x138_c00397{left:594.300000px;}
.xf_c00397{left:596.700000px;}
.x40_c00397{left:598.350000px;}
.x12e_c00397{left:599.550000px;}
.x33_c00397{left:602.100000px;}
.x106_c00397{left:607.800000px;}
.xb2_c00397{left:609.000000px;}
.xff_c00397{left:610.950000px;}
.x78_c00397{left:616.200000px;}
.x53_c00397{left:618.450000px;}
.xbe_c00397{left:619.800000px;}
.xed_c00397{left:621.000000px;}
.x148_c00397{left:622.200000px;}
.x8d_c00397{left:623.850000px;}
.x11d_c00397{left:625.200000px;}
.x23_c00397{left:627.750000px;}
.x41_c00397{left:629.250000px;}
.x11a_c00397{left:630.900000px;}
.xc7_c00397{left:632.550000px;}
.x34_c00397{left:633.750000px;}
.xcc_c00397{left:636.450000px;}
.x10_c00397{left:639.150000px;}
.x122_c00397{left:643.050000px;}
.x6a_c00397{left:647.100000px;}
.x42_c00397{left:649.050000px;}
.x114_c00397{left:650.400000px;}
.xa7_c00397{left:652.350000px;}
.x79_c00397{left:654.300000px;}
.x96_c00397{left:656.550000px;}
.xe9_c00397{left:659.700000px;}
.x132_c00397{left:660.900000px;}
.x24_c00397{left:661.950000px;}
.x13e_c00397{left:663.900000px;}
.x35_c00397{left:665.100000px;}
.x6b_c00397{left:666.600000px;}
.xe4_c00397{left:668.400000px;}
.x146_c00397{left:669.450000px;}
.x54_c00397{left:670.950000px;}
.x107_c00397{left:672.300000px;}
.x14c_c00397{left:673.500000px;}
.x123_c00397{left:675.750000px;}
.xea_c00397{left:676.950000px;}
.xb3_c00397{left:678.450000px;}
.xf4_c00397{left:681.000000px;}
.x7a_c00397{left:682.800000px;}
.x100_c00397{left:684.000000px;}
.x11_c00397{left:685.200000px;}
.xcd_c00397{left:686.550000px;}
.xbf_c00397{left:690.000000px;}
.x6c_c00397{left:692.100000px;}
.x5f_c00397{left:693.300000px;}
.x11e_c00397{left:694.350000px;}
.x36_c00397{left:695.400000px;}
.xe5_c00397{left:696.900000px;}
.x55_c00397{left:698.250000px;}
.x141_c00397{left:699.450000px;}
.xdf_c00397{left:701.850000px;}
.x97_c00397{left:703.350000px;}
.xce_c00397{left:706.050000px;}
.x111_c00397{left:707.700000px;}
.x12_c00397{left:709.350000px;}
.xb4_c00397{left:711.900000px;}
.x25_c00397{left:713.100000px;}
.x37_c00397{left:714.900000px;}
.x43_c00397{left:715.950000px;}
.x115_c00397{left:718.050000px;}
.x6d_c00397{left:719.100000px;}
.xc8_c00397{left:721.050000px;}
.x60_c00397{left:726.450000px;}
.x7b_c00397{left:728.100000px;}
.x149_c00397{left:730.650000px;}
.x2_c00397{left:733.050000px;}
.xa8_c00397{left:734.100000px;}
.x98_c00397{left:736.800000px;}
.x13_c00397{left:738.150000px;}
.x6e_c00397{left:739.950000px;}
.x56_c00397{left:741.150000px;}
.x142_c00397{left:742.350000px;}
.x26_c00397{left:744.000000px;}
.xee_c00397{left:745.950000px;}
.xb5_c00397{left:751.200000px;}
.x139_c00397{left:752.400000px;}
.x86_c00397{left:754.350000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws6_c00397{word-spacing:-7.696757pt;}
.ws0_c00397{word-spacing:-6.333643pt;}
.ws5_c00397{word-spacing:-4.232903pt;}
.ws7_c00397{word-spacing:-3.640468pt;}
.wsa_c00397{word-spacing:0.000000pt;}
.ws3_c00397{word-spacing:1.333333pt;}
.ws9_c00397{word-spacing:4.666667pt;}
.ws8_c00397{word-spacing:5.817898pt;}
.ws1_c00397{word-spacing:6.444444pt;}
.ws4_c00397{word-spacing:6.888889pt;}
.ws2_c00397{word-spacing:22.074074pt;}
._0_c00397{width:33.333333pt;}
.fs2_c00397{font-size:32.000000pt;}
.fs1_c00397{font-size:48.000000pt;}
.fs0_c00397{font-size:53.333333pt;}
.y0_c00397{bottom:0.000000pt;}
.y2e_c00397{bottom:116.800000pt;}
.y2d_c00397{bottom:134.133333pt;}
.y2c_c00397{bottom:148.133333pt;}
.y2b_c00397{bottom:161.600000pt;}
.y2a_c00397{bottom:175.333333pt;}
.y29_c00397{bottom:189.066667pt;}
.y28_c00397{bottom:203.200000pt;}
.y27_c00397{bottom:217.333333pt;}
.y26_c00397{bottom:231.333333pt;}
.y25_c00397{bottom:244.800000pt;}
.y24_c00397{bottom:259.200000pt;}
.y23_c00397{bottom:272.666667pt;}
.y22_c00397{bottom:286.666667pt;}
.y21_c00397{bottom:300.533333pt;}
.y20_c00397{bottom:332.266667pt;}
.y1f_c00397{bottom:349.866667pt;}
.y1e_c00397{bottom:367.466667pt;}
.y1d_c00397{bottom:385.066667pt;}
.y1c_c00397{bottom:402.933333pt;}
.y1b_c00397{bottom:420.533333pt;}
.y1a_c00397{bottom:438.133333pt;}
.y19_c00397{bottom:455.733333pt;}
.y18_c00397{bottom:488.933333pt;}
.y17_c00397{bottom:506.800000pt;}
.y16_c00397{bottom:524.400000pt;}
.y15_c00397{bottom:542.666667pt;}
.y14_c00397{bottom:576.133333pt;}
.y13_c00397{bottom:593.733333pt;}
.y12_c00397{bottom:611.600000pt;}
.y11_c00397{bottom:629.200000pt;}
.y10_c00397{bottom:646.800000pt;}
.yf_c00397{bottom:664.666667pt;}
.ye_c00397{bottom:682.400000pt;}
.yd_c00397{bottom:700.266667pt;}
.yc_c00397{bottom:717.866667pt;}
.yb_c00397{bottom:735.466667pt;}
.ya_c00397{bottom:753.066667pt;}
.y9_c00397{bottom:770.933333pt;}
.y8_c00397{bottom:788.800000pt;}
.y7_c00397{bottom:806.400000pt;}
.y6_c00397{bottom:824.133333pt;}
.y5_c00397{bottom:842.000000pt;}
.y4_c00397{bottom:859.866667pt;}
.y3_c00397{bottom:877.200000pt;}
.y2_c00397{bottom:895.066667pt;}
.y1_c00397{bottom:927.733333pt;}
.h4_c00397{height:32.000000pt;}
.h3_c00397{height:48.000000pt;}
.h2_c00397{height:53.333333pt;}
.h1_c00397{height:1036.666667pt;}
.h0_c00397{height:1036.800049pt;}
.w0_c00397{width:818.559977pt;}
.w1_c00397{width:818.666667pt;}
.x0_c00397{left:0.000000pt;}
.x3_c00397{left:83.466667pt;}
.x44_c00397{left:84.400000pt;}
.x99_c00397{left:85.333333pt;}
.x27_c00397{left:94.000000pt;}
.xa9_c00397{left:95.200000pt;}
.x108_c00397{left:97.466667pt;}
.x57_c00397{left:102.266667pt;}
.x143_c00397{left:103.600000pt;}
.x128_c00397{left:105.200000pt;}
.x116_c00397{left:106.533333pt;}
.x48_c00397{left:111.333333pt;}
.x61_c00397{left:112.933333pt;}
.x12f_c00397{left:114.000000pt;}
.x4_c00397{left:115.200000pt;}
.x38_c00397{left:116.800000pt;}
.x9a_c00397{left:118.266667pt;}
.x133_c00397{left:119.333333pt;}
.x14a_c00397{left:120.400000pt;}
.x28_c00397{left:123.066667pt;}
.x7c_c00397{left:124.666667pt;}
.xaa_c00397{left:125.866667pt;}
.x58_c00397{left:127.600000pt;}
.x49_c00397{left:129.200000pt;}
.x14_c00397{left:131.333333pt;}
.x87_c00397{left:132.533333pt;}
.xb6_c00397{left:134.933333pt;}
.xe6_c00397{left:137.866667pt;}
.x9b_c00397{left:138.800000pt;}
.x29_c00397{left:140.400000pt;}
.x13f_c00397{left:142.133333pt;}
.x10d_c00397{left:143.200000pt;}
.x6f_c00397{left:145.466667pt;}
.x112_c00397{left:147.200000pt;}
.x15_c00397{left:148.933333pt;}
.xf5_c00397{left:150.666667pt;}
.x5_c00397{left:152.000000pt;}
.xef_c00397{left:154.133333pt;}
.x8e_c00397{left:155.733333pt;}
.xb7_c00397{left:157.333333pt;}
.xe0_c00397{left:158.533333pt;}
.xd0_c00397{left:159.600000pt;}
.x134_c00397{left:160.666667pt;}
.xe7_c00397{left:163.200000pt;}
.x45_c00397{left:164.666667pt;}
.xa4_c00397{left:165.866667pt;}
.xd7_c00397{left:168.933333pt;}
.x10e_c00397{left:171.066667pt;}
.x88_c00397{left:173.866667pt;}
.xc9_c00397{left:177.466667pt;}
.x4a_c00397{left:179.066667pt;}
.x46_c00397{left:182.533333pt;}
.xc0_c00397{left:184.133333pt;}
.x6_c00397{left:185.333333pt;}
.x7d_c00397{left:186.800000pt;}
.x39_c00397{left:188.133333pt;}
.x14b_c00397{left:189.866667pt;}
.x89_c00397{left:191.200000pt;}
.x129_c00397{left:193.866667pt;}
.xab_c00397{left:195.066667pt;}
.x2a_c00397{left:196.400000pt;}
.x16_c00397{left:198.266667pt;}
.xd8_c00397{left:201.600000pt;}
.x130_c00397{left:203.600000pt;}
.xeb_c00397{left:204.533333pt;}
.x8f_c00397{left:206.000000pt;}
.x4b_c00397{left:207.200000pt;}
.x10f_c00397{left:209.466667pt;}
.x17_c00397{left:212.400000pt;}
.x9c_c00397{left:214.400000pt;}
.x62_c00397{left:215.733333pt;}
.x70_c00397{left:217.733333pt;}
.x59_c00397{left:221.600000pt;}
.xcf_c00397{left:223.066667pt;}
.xd9_c00397{left:224.000000pt;}
.x117_c00397{left:225.466667pt;}
.x7e_c00397{left:226.533333pt;}
.x18_c00397{left:227.733333pt;}
.xd1_c00397{left:229.733333pt;}
.x71_c00397{left:231.200000pt;}
.x3a_c00397{left:232.266667pt;}
.x63_c00397{left:233.600000pt;}
.x13a_c00397{left:234.533333pt;}
.x124_c00397{left:236.133333pt;}
.xec_c00397{left:237.466667pt;}
.x140_c00397{left:239.333333pt;}
.x4c_c00397{left:240.533333pt;}
.x7f_c00397{left:243.466667pt;}
.x144_c00397{left:245.066667pt;}
.x64_c00397{left:246.666667pt;}
.x12a_c00397{left:248.000000pt;}
.xac_c00397{left:249.466667pt;}
.x3b_c00397{left:251.200000pt;}
.xb8_c00397{left:252.133333pt;}
.x102_c00397{left:254.000000pt;}
.x113_c00397{left:256.400000pt;}
.x7_c00397{left:257.600000pt;}
.xf6_c00397{left:258.533333pt;}
.xf0_c00397{left:259.733333pt;}
.x2b_c00397{left:262.266667pt;}
.x19_c00397{left:264.800000pt;}
.xad_c00397{left:268.400000pt;}
.xda_c00397{left:270.400000pt;}
.xd2_c00397{left:271.333333pt;}
.xe1_c00397{left:272.400000pt;}
.x3c_c00397{left:273.866667pt;}
.x72_c00397{left:278.533333pt;}
.x90_c00397{left:279.600000pt;}
.x1a_c00397{left:280.533333pt;}
.x9d_c00397{left:281.866667pt;}
.x47_c00397{left:284.933333pt;}
.xf7_c00397{left:287.066667pt;}
.x8_c00397{left:289.600000pt;}
.x4d_c00397{left:291.333333pt;}
.x65_c00397{left:293.733333pt;}
.x13b_c00397{left:295.066667pt;}
.x73_c00397{left:296.800000pt;}
.x1b_c00397{left:297.866667pt;}
.x5a_c00397{left:299.733333pt;}
.xf8_c00397{left:301.733333pt;}
.xc1_c00397{left:303.866667pt;}
.x9_c00397{left:304.933333pt;}
.xf1_c00397{left:306.400000pt;}
.x135_c00397{left:307.466667pt;}
.x109_c00397{left:309.466667pt;}
.x80_c00397{left:311.333333pt;}
.x91_c00397{left:312.266667pt;}
.xae_c00397{left:313.200000pt;}
.x145_c00397{left:314.133333pt;}
.x1c_c00397{left:315.733333pt;}
.x4e_c00397{left:316.666667pt;}
.x2c_c00397{left:317.600000pt;}
.x127_c00397{left:319.333333pt;}
.xb9_c00397{left:321.866667pt;}
.x66_c00397{left:322.800000pt;}
.x11f_c00397{left:325.200000pt;}
.x9e_c00397{left:326.666667pt;}
.x92_c00397{left:330.133333pt;}
.x74_c00397{left:331.733333pt;}
.x3d_c00397{left:333.066667pt;}
.xe2_c00397{left:334.133333pt;}
.x13c_c00397{left:336.000000pt;}
.xa_c00397{left:337.200000pt;}
.x103_c00397{left:338.133333pt;}
.xf9_c00397{left:340.400000pt;}
.x11b_c00397{left:341.600000pt;}
.x2d_c00397{left:343.866667pt;}
.x1_c00397{left:345.333333pt;}
.xdb_c00397{left:346.266667pt;}
.xc2_c00397{left:349.600000pt;}
.xd3_c00397{left:350.666667pt;}
.x9f_c00397{left:352.000000pt;}
.x11c_c00397{left:354.133333pt;}
.x8a_c00397{left:355.066667pt;}
.x118_c00397{left:356.400000pt;}
.x5b_c00397{left:357.333333pt;}
.x101_c00397{left:358.533333pt;}
.x4f_c00397{left:360.533333pt;}
.x1d_c00397{left:361.866667pt;}
.x67_c00397{left:363.466667pt;}
.xe8_c00397{left:365.600000pt;}
.xaf_c00397{left:367.866667pt;}
.xba_c00397{left:368.933333pt;}
.x10a_c00397{left:370.933333pt;}
.xc3_c00397{left:372.000000pt;}
.x110_c00397{left:375.200000pt;}
.x81_c00397{left:376.266667pt;}
.x75_c00397{left:381.066667pt;}
.xf2_c00397{left:383.866667pt;}
.x50_c00397{left:385.200000pt;}
.xfa_c00397{left:387.466667pt;}
.x136_c00397{left:388.400000pt;}
.xca_c00397{left:389.333333pt;}
.x3e_c00397{left:392.000000pt;}
.x93_c00397{left:393.200000pt;}
.xc4_c00397{left:394.400000pt;}
.x1e_c00397{left:396.800000pt;}
.xbb_c00397{left:398.400000pt;}
.xb_c00397{left:400.533333pt;}
.x2e_c00397{left:402.800000pt;}
.xc5_c00397{left:404.266667pt;}
.x82_c00397{left:406.400000pt;}
.xcb_c00397{left:407.600000pt;}
.xd4_c00397{left:409.200000pt;}
.x5c_c00397{left:410.400000pt;}
.x120_c00397{left:412.800000pt;}
.xbc_c00397{left:414.400000pt;}
.xfb_c00397{left:415.333333pt;}
.xa5_c00397{left:416.800000pt;}
.xe3_c00397{left:418.533333pt;}
.x131_c00397{left:420.266667pt;}
.x104_c00397{left:421.866667pt;}
.x1f_c00397{left:424.000000pt;}
.x5d_c00397{left:427.733333pt;}
.x68_c00397{left:429.600000pt;}
.xdc_c00397{left:430.666667pt;}
.xc_c00397{left:431.600000pt;}
.x83_c00397{left:432.666667pt;}
.x2f_c00397{left:434.533333pt;}
.x119_c00397{left:435.466667pt;}
.xb0_c00397{left:436.666667pt;}
.xc6_c00397{left:438.800000pt;}
.x13d_c00397{left:441.066667pt;}
.xa0_c00397{left:442.133333pt;}
.x105_c00397{left:443.333333pt;}
.x12b_c00397{left:446.400000pt;}
.xdd_c00397{left:449.200000pt;}
.x10b_c00397{left:450.133333pt;}
.xd_c00397{left:451.066667pt;}
.x30_c00397{left:452.400000pt;}
.xa6_c00397{left:455.466667pt;}
.x3f_c00397{left:456.666667pt;}
.xa1_c00397{left:458.400000pt;}
.x12c_c00397{left:461.066667pt;}
.x8b_c00397{left:462.933333pt;}
.xd5_c00397{left:464.933333pt;}
.x137_c00397{left:465.866667pt;}
.x121_c00397{left:466.933333pt;}
.xfc_c00397{left:468.133333pt;}
.x20_c00397{left:469.466667pt;}
.x94_c00397{left:470.933333pt;}
.x10c_c00397{left:472.800000pt;}
.xe_c00397{left:473.733333pt;}
.x31_c00397{left:476.666667pt;}
.x8c_c00397{left:478.266667pt;}
.x51_c00397{left:479.600000pt;}
.x69_c00397{left:481.733333pt;}
.xa2_c00397{left:483.333333pt;}
.xfd_c00397{left:485.466667pt;}
.xbd_c00397{left:486.400000pt;}
.x76_c00397{left:487.600000pt;}
.x147_c00397{left:489.066667pt;}
.x125_c00397{left:492.000000pt;}
.xde_c00397{left:494.666667pt;}
.x52_c00397{left:496.266667pt;}
.x5e_c00397{left:499.733333pt;}
.x84_c00397{left:501.466667pt;}
.xf3_c00397{left:502.933333pt;}
.x77_c00397{left:505.466667pt;}
.x12d_c00397{left:508.666667pt;}
.x21_c00397{left:509.733333pt;}
.xd6_c00397{left:512.266667pt;}
.x32_c00397{left:514.133333pt;}
.xb1_c00397{left:516.000000pt;}
.x85_c00397{left:518.133333pt;}
.x126_c00397{left:520.800000pt;}
.x22_c00397{left:522.533333pt;}
.xfe_c00397{left:524.533333pt;}
.x95_c00397{left:526.266667pt;}
.xa3_c00397{left:527.200000pt;}
.x138_c00397{left:528.266667pt;}
.xf_c00397{left:530.400000pt;}
.x40_c00397{left:531.866667pt;}
.x12e_c00397{left:532.933333pt;}
.x33_c00397{left:535.200000pt;}
.x106_c00397{left:540.266667pt;}
.xb2_c00397{left:541.333333pt;}
.xff_c00397{left:543.066667pt;}
.x78_c00397{left:547.733333pt;}
.x53_c00397{left:549.733333pt;}
.xbe_c00397{left:550.933333pt;}
.xed_c00397{left:552.000000pt;}
.x148_c00397{left:553.066667pt;}
.x8d_c00397{left:554.533333pt;}
.x11d_c00397{left:555.733333pt;}
.x23_c00397{left:558.000000pt;}
.x41_c00397{left:559.333333pt;}
.x11a_c00397{left:560.800000pt;}
.xc7_c00397{left:562.266667pt;}
.x34_c00397{left:563.333333pt;}
.xcc_c00397{left:565.733333pt;}
.x10_c00397{left:568.133333pt;}
.x122_c00397{left:571.600000pt;}
.x6a_c00397{left:575.200000pt;}
.x42_c00397{left:576.933333pt;}
.x114_c00397{left:578.133333pt;}
.xa7_c00397{left:579.866667pt;}
.x79_c00397{left:581.600000pt;}
.x96_c00397{left:583.600000pt;}
.xe9_c00397{left:586.400000pt;}
.x132_c00397{left:587.466667pt;}
.x24_c00397{left:588.400000pt;}
.x13e_c00397{left:590.133333pt;}
.x35_c00397{left:591.200000pt;}
.x6b_c00397{left:592.533333pt;}
.xe4_c00397{left:594.133333pt;}
.x146_c00397{left:595.066667pt;}
.x54_c00397{left:596.400000pt;}
.x107_c00397{left:597.600000pt;}
.x14c_c00397{left:598.666667pt;}
.x123_c00397{left:600.666667pt;}
.xea_c00397{left:601.733333pt;}
.xb3_c00397{left:603.066667pt;}
.xf4_c00397{left:605.333333pt;}
.x7a_c00397{left:606.933333pt;}
.x100_c00397{left:608.000000pt;}
.x11_c00397{left:609.066667pt;}
.xcd_c00397{left:610.266667pt;}
.xbf_c00397{left:613.333333pt;}
.x6c_c00397{left:615.200000pt;}
.x5f_c00397{left:616.266667pt;}
.x11e_c00397{left:617.200000pt;}
.x36_c00397{left:618.133333pt;}
.xe5_c00397{left:619.466667pt;}
.x55_c00397{left:620.666667pt;}
.x141_c00397{left:621.733333pt;}
.xdf_c00397{left:623.866667pt;}
.x97_c00397{left:625.200000pt;}
.xce_c00397{left:627.600000pt;}
.x111_c00397{left:629.066667pt;}
.x12_c00397{left:630.533333pt;}
.xb4_c00397{left:632.800000pt;}
.x25_c00397{left:633.866667pt;}
.x37_c00397{left:635.466667pt;}
.x43_c00397{left:636.400000pt;}
.x115_c00397{left:638.266667pt;}
.x6d_c00397{left:639.200000pt;}
.xc8_c00397{left:640.933333pt;}
.x60_c00397{left:645.733333pt;}
.x7b_c00397{left:647.200000pt;}
.x149_c00397{left:649.466667pt;}
.x2_c00397{left:651.600000pt;}
.xa8_c00397{left:652.533333pt;}
.x98_c00397{left:654.933333pt;}
.x13_c00397{left:656.133333pt;}
.x6e_c00397{left:657.733333pt;}
.x56_c00397{left:658.800000pt;}
.x142_c00397{left:659.866667pt;}
.x26_c00397{left:661.333333pt;}
.xee_c00397{left:663.066667pt;}
.xb5_c00397{left:667.733333pt;}
.x139_c00397{left:668.800000pt;}
.x86_c00397{left:670.533333pt;}
}





/* 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_c00398 {
    display:none;
  }
  .loading-indicator_c00398.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00398 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_c00398 { 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_c00398" -> "#page-container .classname_c00398")
 */
.pf_c00398 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00398 { /* 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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00398 { /* 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_c00398 { /* 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_c00398 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00398 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00398 {overflow:visible;}
  }
}
.c_c00398 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00398 { /* 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_c00398:after { /* webkit #35443 */
  content: '';
}
.t_c00398:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00398 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 */
}
.__c00398 { /* 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_c00398 { /* info for Javascript */
  display:none;
}
.l_c00398 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00398 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00398 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00398: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_c00398 {
    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_c00398.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00398.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_c00398 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00398{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00398;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.000000;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;}
.m96_c00398{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m56_c00398{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00398{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00398{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m66_c00398{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mad_c00398{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m90_c00398{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m77_c00398{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00398{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m89_c00398{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m57_c00398{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00398{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00398{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00398{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m18_c00398{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00398{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m68_c00398{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00398{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m72_c00398{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m47_c00398{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m79_c00398{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m88_c00398{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m36_c00398{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m93_c00398{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00398{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m81_c00398{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00398{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00398{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m49_c00398{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00398{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00398{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00398{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00398{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m31_c00398{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.md_c00398{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00398{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m82_c00398{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mab_c00398{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6_c00398{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m46_c00398{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00398{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m40_c00398{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00398{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m20_c00398{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.maf_c00398{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00398{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00398{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00398{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m92_c00398{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m61_c00398{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m84_c00398{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m48_c00398{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00398{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m33_c00398{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00398{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m78_c00398{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m65_c00398{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m63_c00398{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00398{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00398{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m21_c00398{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00398{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m80_c00398{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00398{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb_c00398{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00398{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m62_c00398{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00398{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m26_c00398{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00398{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m53_c00398{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00398{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m44_c00398{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m13_c00398{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m41_c00398{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc_c00398{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00398{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00398{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m14_c00398{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m50_c00398{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00398{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m75_c00398{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m9_c00398{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00398{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4_c00398{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00398{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00398{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m91_c00398{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m11_c00398{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00398{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m27_c00398{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mae_c00398{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m70_c00398{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00398{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00398{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00398{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m86_c00398{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00398{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m55_c00398{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma_c00398{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m34_c00398{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m94_c00398{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m32_c00398{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m29_c00398{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00398{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00398{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10_c00398{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m16_c00398{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mac_c00398{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00398{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m99_c00398{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00398{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m38_c00398{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m43_c00398{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m24_c00398{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00398{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00398{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00398{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00398{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m64_c00398{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m15_c00398{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00398{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00398{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00398{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00398{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00398{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m58_c00398{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00398{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m51_c00398{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m76_c00398{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00398{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m30_c00398{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m37_c00398{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00398{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00398{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.maa_c00398{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m69_c00398{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00398{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m45_c00398{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00398{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m12_c00398{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m23_c00398{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00398{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m59_c00398{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m95_c00398{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m17_c00398{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00398{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m60_c00398{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m52_c00398{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00398{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m97_c00398{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00398{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00398{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m74_c00398{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m28_c00398{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00398{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00398{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00398{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00398{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m19_c00398{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m35_c00398{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00398{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m87_c00398{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m7_c00398{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00398{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00398{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m54_c00398{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00398{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m85_c00398{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m42_c00398{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00398{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.me_c00398{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00398{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m25_c00398{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m83_c00398{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00398{vertical-align:0.000000px;}
.ls0_c00398{letter-spacing:0.000000px;}
.sc__c00398{text-shadow:none;}
.sc0_c00398{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__c00398{-webkit-text-stroke:0px transparent;}
.sc0_c00398{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00398{word-spacing:-5.000000px;}
.ws6_c00398{word-spacing:-3.055556px;}
.ws5_c00398{word-spacing:-2.702703px;}
.ws1_c00398{word-spacing:-1.805556px;}
.ws8_c00398{word-spacing:0.000000px;}
.ws4_c00398{word-spacing:4.090909px;}
.ws2_c00398{word-spacing:8.611111px;}
.ws3_c00398{word-spacing:9.493671px;}
.ws0_c00398{word-spacing:10.277778px;}
._0_c00398{width:40.759494px;}
.fc0_c00398{color:transparent;}
.fs0_c00398{font-size:60.000000px;}
.y0_c00398{bottom:0.000000px;}
.y2c_c00398{bottom:156.300000px;}
.y2b_c00398{bottom:176.400000px;}
.y2a_c00398{bottom:195.900000px;}
.y29_c00398{bottom:215.700000px;}
.y28_c00398{bottom:235.500000px;}
.y27_c00398{bottom:255.300000px;}
.y26_c00398{bottom:275.100000px;}
.y25_c00398{bottom:294.900000px;}
.y24_c00398{bottom:315.000000px;}
.y23_c00398{bottom:335.700000px;}
.y22_c00398{bottom:355.500000px;}
.y21_c00398{bottom:375.600000px;}
.y20_c00398{bottom:395.400000px;}
.y1f_c00398{bottom:415.500000px;}
.y1e_c00398{bottom:435.600000px;}
.y1d_c00398{bottom:455.700000px;}
.y1c_c00398{bottom:475.500000px;}
.y1b_c00398{bottom:495.600000px;}
.y1a_c00398{bottom:515.400000px;}
.y19_c00398{bottom:535.500000px;}
.y18_c00398{bottom:555.300000px;}
.y17_c00398{bottom:575.100000px;}
.y16_c00398{bottom:595.200000px;}
.y15_c00398{bottom:614.700000px;}
.y14_c00398{bottom:634.500000px;}
.y13_c00398{bottom:654.600000px;}
.y12_c00398{bottom:674.700000px;}
.y11_c00398{bottom:694.500000px;}
.y10_c00398{bottom:714.600000px;}
.yf_c00398{bottom:734.100000px;}
.ye_c00398{bottom:754.200000px;}
.yd_c00398{bottom:774.000000px;}
.yc_c00398{bottom:794.100000px;}
.yb_c00398{bottom:813.900000px;}
.ya_c00398{bottom:833.700000px;}
.y9_c00398{bottom:853.950000px;}
.y8_c00398{bottom:874.050000px;}
.y7_c00398{bottom:893.850000px;}
.y6_c00398{bottom:933.900000px;}
.y5_c00398{bottom:954.000000px;}
.y4_c00398{bottom:973.800000px;}
.y3_c00398{bottom:993.900000px;}
.y2_c00398{bottom:1013.700000px;}
.y1_c00398{bottom:1051.500000px;}
.h2_c00398{height:60.000000px;}
.h1_c00398{height:1166.250000px;}
.h0_c00398{height:1166.400056px;}
.w0_c00398{width:920.879975px;}
.w1_c00398{width:921.000000px;}
.x0_c00398{left:0.000000px;}
.x124_c00398{left:165.000000px;}
.x110_c00398{left:166.950000px;}
.xd6_c00398{left:168.900000px;}
.x83_c00398{left:170.100000px;}
.x33_c00398{left:171.750000px;}
.x3_c00398{left:173.100000px;}
.x1_c00398{left:174.900000px;}
.x13c_c00398{left:186.000000px;}
.x6c_c00398{left:188.550000px;}
.x134_c00398{left:189.900000px;}
.x61_c00398{left:192.300000px;}
.xeb_c00398{left:194.850000px;}
.x11d_c00398{left:197.700000px;}
.xb4_c00398{left:199.950000px;}
.x4a_c00398{left:202.650000px;}
.x16_c00398{left:204.000000px;}
.x4_c00398{left:206.550000px;}
.x84_c00398{left:207.600000px;}
.xc4_c00398{left:208.950000px;}
.x125_c00398{left:211.800000px;}
.x100_c00398{left:213.450000px;}
.x6d_c00398{left:215.250000px;}
.xbe_c00398{left:217.500000px;}
.x42_c00398{left:218.700000px;}
.x5_c00398{left:221.700000px;}
.xcc_c00398{left:222.900000px;}
.x79_c00398{left:224.700000px;}
.x12c_c00398{left:227.550000px;}
.x135_c00398{left:229.800000px;}
.x63_c00398{left:231.750000px;}
.xc5_c00398{left:233.100000px;}
.x126_c00398{left:234.450000px;}
.x62_c00398{left:236.250000px;}
.xe2_c00398{left:238.050000px;}
.x34_c00398{left:242.700000px;}
.x85_c00398{left:243.900000px;}
.x92_c00398{left:245.550000px;}
.xbf_c00398{left:248.100000px;}
.xd7_c00398{left:249.150000px;}
.xae_c00398{left:252.000000px;}
.x6_c00398{left:254.850000px;}
.x130_c00398{left:256.950000px;}
.x109_c00398{left:259.350000px;}
.x6e_c00398{left:261.000000px;}
.x57_c00398{left:263.400000px;}
.x17_c00398{left:264.450000px;}
.xf2_c00398{left:265.500000px;}
.x27_c00398{left:266.550000px;}
.xd8_c00398{left:268.950000px;}
.xa6_c00398{left:270.450000px;}
.x10d_c00398{left:273.000000px;}
.xfa_c00398{left:276.600000px;}
.x7a_c00398{left:277.650000px;}
.x4b_c00398{left:279.750000px;}
.x12d_c00398{left:280.800000px;}
.x7_c00398{left:283.650000px;}
.xaf_c00398{left:286.500000px;}
.x86_c00398{left:288.150000px;}
.x113_c00398{left:289.650000px;}
.x43_c00398{left:293.250000px;}
.x6f_c00398{left:294.450000px;}
.xe7_c00398{left:296.400000px;}
.x64_c00398{left:300.150000px;}
.x116_c00398{left:301.350000px;}
.xc6_c00398{left:303.600000px;}
.x10a_c00398{left:305.100000px;}
.x10e_c00398{left:307.500000px;}
.x7b_c00398{left:309.750000px;}
.x35_c00398{left:310.800000px;}
.xb5_c00398{left:312.000000px;}
.xcd_c00398{left:313.950000px;}
.x131_c00398{left:315.600000px;}
.x4c_c00398{left:317.250000px;}
.xd9_c00398{left:319.650000px;}
.x8_c00398{left:321.750000px;}
.x28_c00398{left:323.100000px;}
.xa7_c00398{left:324.150000px;}
.x9c_c00398{left:325.350000px;}
.x58_c00398{left:326.400000px;}
.x36_c00398{left:328.800000px;}
.xf3_c00398{left:332.400000px;}
.x44_c00398{left:334.950000px;}
.x93_c00398{left:336.300000px;}
.x7c_c00398{left:339.600000px;}
.x29_c00398{left:342.150000px;}
.x101_c00398{left:344.850000px;}
.x37_c00398{left:346.800000px;}
.x9d_c00398{left:348.000000px;}
.x70_c00398{left:349.950000px;}
.x11b_c00398{left:352.500000px;}
.x87_c00398{left:353.700000px;}
.xa8_c00398{left:355.050000px;}
.x18_c00398{left:356.250000px;}
.x4d_c00398{left:357.900000px;}
.xec_c00398{left:360.150000px;}
.x45_c00398{left:362.250000px;}
.x9_c00398{left:364.650000px;}
.xf4_c00398{left:366.300000px;}
.xc7_c00398{left:369.450000px;}
.x111_c00398{left:370.800000px;}
.x65_c00398{left:372.450000px;}
.x59_c00398{left:375.000000px;}
.x9e_c00398{left:376.500000px;}
.xb6_c00398{left:378.600000px;}
.x102_c00398{left:379.800000px;}
.xa_c00398{left:381.900000px;}
.x2a_c00398{left:383.550000px;}
.x7d_c00398{left:387.900000px;}
.x66_c00398{left:389.400000px;}
.x88_c00398{left:390.450000px;}
.x38_c00398{left:392.850000px;}
.x4e_c00398{left:394.650000px;}
.xed_c00398{left:396.900000px;}
.x71_c00398{left:401.850000px;}
.x19_c00398{left:404.100000px;}
.x46_c00398{left:405.750000px;}
.x7e_c00398{left:407.400000px;}
.xf5_c00398{left:408.750000px;}
.xb_c00398{left:409.950000px;}
.x5a_c00398{left:413.100000px;}
.x67_c00398{left:414.900000px;}
.x12e_c00398{left:417.450000px;}
.x112_c00398{left:418.650000px;}
.x11e_c00398{left:420.600000px;}
.x1a_c00398{left:421.800000px;}
.x47_c00398{left:424.050000px;}
.x2b_c00398{left:425.250000px;}
.xa9_c00398{left:426.750000px;}
.xfb_c00398{left:427.800000px;}
.xb7_c00398{left:429.750000px;}
.x106_c00398{left:431.100000px;}
.xc0_c00398{left:432.450000px;}
.xe3_c00398{left:435.000000px;}
.x10f_c00398{left:436.650000px;}
.x72_c00398{left:438.150000px;}
.x127_c00398{left:439.500000px;}
.x1b_c00398{left:442.650000px;}
.x5b_c00398{left:444.000000px;}
.xc8_c00398{left:445.050000px;}
.x4f_c00398{left:446.550000px;}
.x10b_c00398{left:448.350000px;}
.xc_c00398{left:450.600000px;}
.xee_c00398{left:453.000000px;}
.x132_c00398{left:455.100000px;}
.xb8_c00398{left:457.500000px;}
.x103_c00398{left:458.700000px;}
.xce_c00398{left:460.350000px;}
.x12f_c00398{left:461.400000px;}
.x39_c00398{left:462.750000px;}
.x50_c00398{left:463.800000px;}
.xc1_c00398{left:464.850000px;}
.x94_c00398{left:466.350000px;}
.x89_c00398{left:467.400000px;}
.xd_c00398{left:470.400000px;}
.x2_c00398{left:471.600000px;}
.xf6_c00398{left:473.850000px;}
.xe8_c00398{left:475.200000px;}
.xda_c00398{left:476.850000px;}
.x95_c00398{left:477.900000px;}
.x2c_c00398{left:480.300000px;}
.x8a_c00398{left:485.400000px;}
.xfc_c00398{left:486.900000px;}
.x11f_c00398{left:487.950000px;}
.xef_c00398{left:489.000000px;}
.xaa_c00398{left:490.800000px;}
.x137_c00398{left:492.150000px;}
.x48_c00398{left:493.200000px;}
.xcf_c00398{left:495.300000px;}
.xdb_c00398{left:498.150000px;}
.xe_c00398{left:499.200000px;}
.xb9_c00398{left:500.700000px;}
.x1c_c00398{left:502.350000px;}
.x5c_c00398{left:503.400000px;}
.x13d_c00398{left:504.600000px;}
.x2d_c00398{left:509.100000px;}
.x8b_c00398{left:510.600000px;}
.x9f_c00398{left:513.600000px;}
.x138_c00398{left:516.300000px;}
.xe9_c00398{left:519.450000px;}
.x3a_c00398{left:521.100000px;}
.x51_c00398{left:522.150000px;}
.x5d_c00398{left:524.250000px;}
.xfd_c00398{left:525.450000px;}
.x136_c00398{left:526.800000px;}
.xba_c00398{left:528.450000px;}
.x96_c00398{left:531.300000px;}
.x1d_c00398{left:533.250000px;}
.xf_c00398{left:537.300000px;}
.x3b_c00398{left:539.100000px;}
.x128_c00398{left:540.300000px;}
.x114_c00398{left:541.650000px;}
.x68_c00398{left:543.450000px;}
.xc2_c00398{left:545.850000px;}
.x120_c00398{left:547.800000px;}
.xd0_c00398{left:549.600000px;}
.x1e_c00398{left:552.000000px;}
.x2e_c00398{left:553.050000px;}
.xf0_c00398{left:555.600000px;}
.x49_c00398{left:558.750000px;}
.xc9_c00398{left:563.100000px;}
.x13e_c00398{left:564.750000px;}
.x8c_c00398{left:567.150000px;}
.xf7_c00398{left:568.200000px;}
.x3c_c00398{left:570.000000px;}
.x1f_c00398{left:571.050000px;}
.x115_c00398{left:572.250000px;}
.x2f_c00398{left:573.900000px;}
.x142_c00398{left:576.600000px;}
.x73_c00398{left:578.250000px;}
.x52_c00398{left:586.350000px;}
.xbb_c00398{left:587.550000px;}
.x10_c00398{left:589.500000px;}
.xab_c00398{left:590.550000px;}
.x107_c00398{left:593.100000px;}
.x20_c00398{left:594.450000px;}
.xea_c00398{left:596.850000px;}
.x97_c00398{left:599.400000px;}
.xa0_c00398{left:601.350000px;}
.xf8_c00398{left:602.400000px;}
.x3d_c00398{left:603.900000px;}
.x7f_c00398{left:605.400000px;}
.xac_c00398{left:610.050000px;}
.x129_c00398{left:612.600000px;}
.x11_c00398{left:618.000000px;}
.x69_c00398{left:619.350000px;}
.x21_c00398{left:620.400000px;}
.x117_c00398{left:622.350000px;}
.xbc_c00398{left:623.550000px;}
.x98_c00398{left:624.900000px;}
.x121_c00398{left:627.300000px;}
.x12a_c00398{left:628.800000px;}
.x74_c00398{left:631.200000px;}
.x53_c00398{left:634.200000px;}
.xca_c00398{left:636.150000px;}
.xb0_c00398{left:638.550000px;}
.xc3_c00398{left:641.250000px;}
.xdc_c00398{left:642.300000px;}
.x3e_c00398{left:645.300000px;}
.x80_c00398{left:647.100000px;}
.x75_c00398{left:648.150000px;}
.xd1_c00398{left:649.650000px;}
.x143_c00398{left:651.450000px;}
.x12_c00398{left:652.500000px;}
.xdd_c00398{left:653.850000px;}
.x118_c00398{left:657.300000px;}
.xad_c00398{left:659.100000px;}
.x108_c00398{left:660.150000px;}
.x54_c00398{left:661.950000px;}
.x139_c00398{left:663.600000px;}
.xcb_c00398{left:664.950000px;}
.x11c_c00398{left:668.700000px;}
.xe4_c00398{left:669.900000px;}
.x122_c00398{left:671.250000px;}
.xde_c00398{left:672.600000px;}
.xf9_c00398{left:675.150000px;}
.x12b_c00398{left:676.650000px;}
.xd2_c00398{left:677.700000px;}
.x22_c00398{left:679.800000px;}
.xa1_c00398{left:682.050000px;}
.x6a_c00398{left:683.100000px;}
.x76_c00398{left:687.000000px;}
.x13f_c00398{left:688.200000px;}
.x8d_c00398{left:689.700000px;}
.xb1_c00398{left:691.050000px;}
.xdf_c00398{left:692.100000px;}
.x99_c00398{left:696.600000px;}
.xd3_c00398{left:697.800000px;}
.x13_c00398{left:700.050000px;}
.x5e_c00398{left:702.000000px;}
.x3f_c00398{left:703.200000px;}
.xe5_c00398{left:704.400000px;}
.x8e_c00398{left:706.650000px;}
.x23_c00398{left:708.900000px;}
.xa2_c00398{left:711.150000px;}
.x119_c00398{left:714.900000px;}
.x13a_c00398{left:717.150000px;}
.x30_c00398{left:719.700000px;}
.x5f_c00398{left:722.550000px;}
.x6b_c00398{left:727.350000px;}
.x24_c00398{left:729.750000px;}
.x104_c00398{left:733.350000px;}
.x8f_c00398{left:734.400000px;}
.x9a_c00398{left:735.450000px;}
.xbd_c00398{left:737.250000px;}
.xd4_c00398{left:738.450000px;}
.x81_c00398{left:741.150000px;}
.x140_c00398{left:743.250000px;}
.x77_c00398{left:744.900000px;}
.x123_c00398{left:747.150000px;}
.xfe_c00398{left:751.950000px;}
.x13b_c00398{left:753.900000px;}
.xa3_c00398{left:757.650000px;}
.x10c_c00398{left:759.000000px;}
.xe6_c00398{left:763.800000px;}
.x40_c00398{left:765.450000px;}
.xe0_c00398{left:767.400000px;}
.x31_c00398{left:769.350000px;}
.x14_c00398{left:771.750000px;}
.x9b_c00398{left:773.250000px;}
.x55_c00398{left:775.650000px;}
.x105_c00398{left:777.600000px;}
.x25_c00398{left:781.650000px;}
.x41_c00398{left:783.150000px;}
.x60_c00398{left:785.250000px;}
.xa4_c00398{left:786.750000px;}
.x90_c00398{left:789.150000px;}
.x141_c00398{left:791.850000px;}
.x15_c00398{left:793.050000px;}
.xb2_c00398{left:794.100000px;}
.xe1_c00398{left:795.900000px;}
.x133_c00398{left:797.250000px;}
.xff_c00398{left:803.850000px;}
.x56_c00398{left:807.000000px;}
.x82_c00398{left:808.050000px;}
.xd5_c00398{left:811.200000px;}
.xa5_c00398{left:813.750000px;}
.xf1_c00398{left:814.950000px;}
.x144_c00398{left:816.000000px;}
.x91_c00398{left:818.700000px;}
.x32_c00398{left:821.550000px;}
.xb3_c00398{left:823.200000px;}
.x78_c00398{left:826.200000px;}
.x26_c00398{left:828.150000px;}
.x11a_c00398{left:831.300000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws7_c00398{word-spacing:-4.444444pt;}
.ws6_c00398{word-spacing:-2.716049pt;}
.ws5_c00398{word-spacing:-2.402402pt;}
.ws1_c00398{word-spacing:-1.604938pt;}
.ws8_c00398{word-spacing:0.000000pt;}
.ws4_c00398{word-spacing:3.636364pt;}
.ws2_c00398{word-spacing:7.654321pt;}
.ws3_c00398{word-spacing:8.438819pt;}
.ws0_c00398{word-spacing:9.135802pt;}
._0_c00398{width:36.230661pt;}
.fs0_c00398{font-size:53.333333pt;}
.y0_c00398{bottom:0.000000pt;}
.y2c_c00398{bottom:138.933333pt;}
.y2b_c00398{bottom:156.800000pt;}
.y2a_c00398{bottom:174.133333pt;}
.y29_c00398{bottom:191.733333pt;}
.y28_c00398{bottom:209.333333pt;}
.y27_c00398{bottom:226.933333pt;}
.y26_c00398{bottom:244.533333pt;}
.y25_c00398{bottom:262.133333pt;}
.y24_c00398{bottom:280.000000pt;}
.y23_c00398{bottom:298.400000pt;}
.y22_c00398{bottom:316.000000pt;}
.y21_c00398{bottom:333.866667pt;}
.y20_c00398{bottom:351.466667pt;}
.y1f_c00398{bottom:369.333333pt;}
.y1e_c00398{bottom:387.200000pt;}
.y1d_c00398{bottom:405.066667pt;}
.y1c_c00398{bottom:422.666667pt;}
.y1b_c00398{bottom:440.533333pt;}
.y1a_c00398{bottom:458.133333pt;}
.y19_c00398{bottom:476.000000pt;}
.y18_c00398{bottom:493.600000pt;}
.y17_c00398{bottom:511.200000pt;}
.y16_c00398{bottom:529.066667pt;}
.y15_c00398{bottom:546.400000pt;}
.y14_c00398{bottom:564.000000pt;}
.y13_c00398{bottom:581.866667pt;}
.y12_c00398{bottom:599.733333pt;}
.y11_c00398{bottom:617.333333pt;}
.y10_c00398{bottom:635.200000pt;}
.yf_c00398{bottom:652.533333pt;}
.ye_c00398{bottom:670.400000pt;}
.yd_c00398{bottom:688.000000pt;}
.yc_c00398{bottom:705.866667pt;}
.yb_c00398{bottom:723.466667pt;}
.ya_c00398{bottom:741.066667pt;}
.y9_c00398{bottom:759.066667pt;}
.y8_c00398{bottom:776.933333pt;}
.y7_c00398{bottom:794.533333pt;}
.y6_c00398{bottom:830.133333pt;}
.y5_c00398{bottom:848.000000pt;}
.y4_c00398{bottom:865.600000pt;}
.y3_c00398{bottom:883.466667pt;}
.y2_c00398{bottom:901.066667pt;}
.y1_c00398{bottom:934.666667pt;}
.h2_c00398{height:53.333333pt;}
.h1_c00398{height:1036.666667pt;}
.h0_c00398{height:1036.800049pt;}
.w0_c00398{width:818.559977pt;}
.w1_c00398{width:818.666667pt;}
.x0_c00398{left:0.000000pt;}
.x124_c00398{left:146.666667pt;}
.x110_c00398{left:148.400000pt;}
.xd6_c00398{left:150.133333pt;}
.x83_c00398{left:151.200000pt;}
.x33_c00398{left:152.666667pt;}
.x3_c00398{left:153.866667pt;}
.x1_c00398{left:155.466667pt;}
.x13c_c00398{left:165.333333pt;}
.x6c_c00398{left:167.600000pt;}
.x134_c00398{left:168.800000pt;}
.x61_c00398{left:170.933333pt;}
.xeb_c00398{left:173.200000pt;}
.x11d_c00398{left:175.733333pt;}
.xb4_c00398{left:177.733333pt;}
.x4a_c00398{left:180.133333pt;}
.x16_c00398{left:181.333333pt;}
.x4_c00398{left:183.600000pt;}
.x84_c00398{left:184.533333pt;}
.xc4_c00398{left:185.733333pt;}
.x125_c00398{left:188.266667pt;}
.x100_c00398{left:189.733333pt;}
.x6d_c00398{left:191.333333pt;}
.xbe_c00398{left:193.333333pt;}
.x42_c00398{left:194.400000pt;}
.x5_c00398{left:197.066667pt;}
.xcc_c00398{left:198.133333pt;}
.x79_c00398{left:199.733333pt;}
.x12c_c00398{left:202.266667pt;}
.x135_c00398{left:204.266667pt;}
.x63_c00398{left:206.000000pt;}
.xc5_c00398{left:207.200000pt;}
.x126_c00398{left:208.400000pt;}
.x62_c00398{left:210.000000pt;}
.xe2_c00398{left:211.600000pt;}
.x34_c00398{left:215.733333pt;}
.x85_c00398{left:216.800000pt;}
.x92_c00398{left:218.266667pt;}
.xbf_c00398{left:220.533333pt;}
.xd7_c00398{left:221.466667pt;}
.xae_c00398{left:224.000000pt;}
.x6_c00398{left:226.533333pt;}
.x130_c00398{left:228.400000pt;}
.x109_c00398{left:230.533333pt;}
.x6e_c00398{left:232.000000pt;}
.x57_c00398{left:234.133333pt;}
.x17_c00398{left:235.066667pt;}
.xf2_c00398{left:236.000000pt;}
.x27_c00398{left:236.933333pt;}
.xd8_c00398{left:239.066667pt;}
.xa6_c00398{left:240.400000pt;}
.x10d_c00398{left:242.666667pt;}
.xfa_c00398{left:245.866667pt;}
.x7a_c00398{left:246.800000pt;}
.x4b_c00398{left:248.666667pt;}
.x12d_c00398{left:249.600000pt;}
.x7_c00398{left:252.133333pt;}
.xaf_c00398{left:254.666667pt;}
.x86_c00398{left:256.133333pt;}
.x113_c00398{left:257.466667pt;}
.x43_c00398{left:260.666667pt;}
.x6f_c00398{left:261.733333pt;}
.xe7_c00398{left:263.466667pt;}
.x64_c00398{left:266.800000pt;}
.x116_c00398{left:267.866667pt;}
.xc6_c00398{left:269.866667pt;}
.x10a_c00398{left:271.200000pt;}
.x10e_c00398{left:273.333333pt;}
.x7b_c00398{left:275.333333pt;}
.x35_c00398{left:276.266667pt;}
.xb5_c00398{left:277.333333pt;}
.xcd_c00398{left:279.066667pt;}
.x131_c00398{left:280.533333pt;}
.x4c_c00398{left:282.000000pt;}
.xd9_c00398{left:284.133333pt;}
.x8_c00398{left:286.000000pt;}
.x28_c00398{left:287.200000pt;}
.xa7_c00398{left:288.133333pt;}
.x9c_c00398{left:289.200000pt;}
.x58_c00398{left:290.133333pt;}
.x36_c00398{left:292.266667pt;}
.xf3_c00398{left:295.466667pt;}
.x44_c00398{left:297.733333pt;}
.x93_c00398{left:298.933333pt;}
.x7c_c00398{left:301.866667pt;}
.x29_c00398{left:304.133333pt;}
.x101_c00398{left:306.533333pt;}
.x37_c00398{left:308.266667pt;}
.x9d_c00398{left:309.333333pt;}
.x70_c00398{left:311.066667pt;}
.x11b_c00398{left:313.333333pt;}
.x87_c00398{left:314.400000pt;}
.xa8_c00398{left:315.600000pt;}
.x18_c00398{left:316.666667pt;}
.x4d_c00398{left:318.133333pt;}
.xec_c00398{left:320.133333pt;}
.x45_c00398{left:322.000000pt;}
.x9_c00398{left:324.133333pt;}
.xf4_c00398{left:325.600000pt;}
.xc7_c00398{left:328.400000pt;}
.x111_c00398{left:329.600000pt;}
.x65_c00398{left:331.066667pt;}
.x59_c00398{left:333.333333pt;}
.x9e_c00398{left:334.666667pt;}
.xb6_c00398{left:336.533333pt;}
.x102_c00398{left:337.600000pt;}
.xa_c00398{left:339.466667pt;}
.x2a_c00398{left:340.933333pt;}
.x7d_c00398{left:344.800000pt;}
.x66_c00398{left:346.133333pt;}
.x88_c00398{left:347.066667pt;}
.x38_c00398{left:349.200000pt;}
.x4e_c00398{left:350.800000pt;}
.xed_c00398{left:352.800000pt;}
.x71_c00398{left:357.200000pt;}
.x19_c00398{left:359.200000pt;}
.x46_c00398{left:360.666667pt;}
.x7e_c00398{left:362.133333pt;}
.xf5_c00398{left:363.333333pt;}
.xb_c00398{left:364.400000pt;}
.x5a_c00398{left:367.200000pt;}
.x67_c00398{left:368.800000pt;}
.x12e_c00398{left:371.066667pt;}
.x112_c00398{left:372.133333pt;}
.x11e_c00398{left:373.866667pt;}
.x1a_c00398{left:374.933333pt;}
.x47_c00398{left:376.933333pt;}
.x2b_c00398{left:378.000000pt;}
.xa9_c00398{left:379.333333pt;}
.xfb_c00398{left:380.266667pt;}
.xb7_c00398{left:382.000000pt;}
.x106_c00398{left:383.200000pt;}
.xc0_c00398{left:384.400000pt;}
.xe3_c00398{left:386.666667pt;}
.x10f_c00398{left:388.133333pt;}
.x72_c00398{left:389.466667pt;}
.x127_c00398{left:390.666667pt;}
.x1b_c00398{left:393.466667pt;}
.x5b_c00398{left:394.666667pt;}
.xc8_c00398{left:395.600000pt;}
.x4f_c00398{left:396.933333pt;}
.x10b_c00398{left:398.533333pt;}
.xc_c00398{left:400.533333pt;}
.xee_c00398{left:402.666667pt;}
.x132_c00398{left:404.533333pt;}
.xb8_c00398{left:406.666667pt;}
.x103_c00398{left:407.733333pt;}
.xce_c00398{left:409.200000pt;}
.x12f_c00398{left:410.133333pt;}
.x39_c00398{left:411.333333pt;}
.x50_c00398{left:412.266667pt;}
.xc1_c00398{left:413.200000pt;}
.x94_c00398{left:414.533333pt;}
.x89_c00398{left:415.466667pt;}
.xd_c00398{left:418.133333pt;}
.x2_c00398{left:419.200000pt;}
.xf6_c00398{left:421.200000pt;}
.xe8_c00398{left:422.400000pt;}
.xda_c00398{left:423.866667pt;}
.x95_c00398{left:424.800000pt;}
.x2c_c00398{left:426.933333pt;}
.x8a_c00398{left:431.466667pt;}
.xfc_c00398{left:432.800000pt;}
.x11f_c00398{left:433.733333pt;}
.xef_c00398{left:434.666667pt;}
.xaa_c00398{left:436.266667pt;}
.x137_c00398{left:437.466667pt;}
.x48_c00398{left:438.400000pt;}
.xcf_c00398{left:440.266667pt;}
.xdb_c00398{left:442.800000pt;}
.xe_c00398{left:443.733333pt;}
.xb9_c00398{left:445.066667pt;}
.x1c_c00398{left:446.533333pt;}
.x5c_c00398{left:447.466667pt;}
.x13d_c00398{left:448.533333pt;}
.x2d_c00398{left:452.533333pt;}
.x8b_c00398{left:453.866667pt;}
.x9f_c00398{left:456.533333pt;}
.x138_c00398{left:458.933333pt;}
.xe9_c00398{left:461.733333pt;}
.x3a_c00398{left:463.200000pt;}
.x51_c00398{left:464.133333pt;}
.x5d_c00398{left:466.000000pt;}
.xfd_c00398{left:467.066667pt;}
.x136_c00398{left:468.266667pt;}
.xba_c00398{left:469.733333pt;}
.x96_c00398{left:472.266667pt;}
.x1d_c00398{left:474.000000pt;}
.xf_c00398{left:477.600000pt;}
.x3b_c00398{left:479.200000pt;}
.x128_c00398{left:480.266667pt;}
.x114_c00398{left:481.466667pt;}
.x68_c00398{left:483.066667pt;}
.xc2_c00398{left:485.200000pt;}
.x120_c00398{left:486.933333pt;}
.xd0_c00398{left:488.533333pt;}
.x1e_c00398{left:490.666667pt;}
.x2e_c00398{left:491.600000pt;}
.xf0_c00398{left:493.866667pt;}
.x49_c00398{left:496.666667pt;}
.xc9_c00398{left:500.533333pt;}
.x13e_c00398{left:502.000000pt;}
.x8c_c00398{left:504.133333pt;}
.xf7_c00398{left:505.066667pt;}
.x3c_c00398{left:506.666667pt;}
.x1f_c00398{left:507.600000pt;}
.x115_c00398{left:508.666667pt;}
.x2f_c00398{left:510.133333pt;}
.x142_c00398{left:512.533333pt;}
.x73_c00398{left:514.000000pt;}
.x52_c00398{left:521.200000pt;}
.xbb_c00398{left:522.266667pt;}
.x10_c00398{left:524.000000pt;}
.xab_c00398{left:524.933333pt;}
.x107_c00398{left:527.200000pt;}
.x20_c00398{left:528.400000pt;}
.xea_c00398{left:530.533333pt;}
.x97_c00398{left:532.800000pt;}
.xa0_c00398{left:534.533333pt;}
.xf8_c00398{left:535.466667pt;}
.x3d_c00398{left:536.800000pt;}
.x7f_c00398{left:538.133333pt;}
.xac_c00398{left:542.266667pt;}
.x129_c00398{left:544.533333pt;}
.x11_c00398{left:549.333333pt;}
.x69_c00398{left:550.533333pt;}
.x21_c00398{left:551.466667pt;}
.x117_c00398{left:553.200000pt;}
.xbc_c00398{left:554.266667pt;}
.x98_c00398{left:555.466667pt;}
.x121_c00398{left:557.600000pt;}
.x12a_c00398{left:558.933333pt;}
.x74_c00398{left:561.066667pt;}
.x53_c00398{left:563.733333pt;}
.xca_c00398{left:565.466667pt;}
.xb0_c00398{left:567.600000pt;}
.xc3_c00398{left:570.000000pt;}
.xdc_c00398{left:570.933333pt;}
.x3e_c00398{left:573.600000pt;}
.x80_c00398{left:575.200000pt;}
.x75_c00398{left:576.133333pt;}
.xd1_c00398{left:577.466667pt;}
.x143_c00398{left:579.066667pt;}
.x12_c00398{left:580.000000pt;}
.xdd_c00398{left:581.200000pt;}
.x118_c00398{left:584.266667pt;}
.xad_c00398{left:585.866667pt;}
.x108_c00398{left:586.800000pt;}
.x54_c00398{left:588.400000pt;}
.x139_c00398{left:589.866667pt;}
.xcb_c00398{left:591.066667pt;}
.x11c_c00398{left:594.400000pt;}
.xe4_c00398{left:595.466667pt;}
.x122_c00398{left:596.666667pt;}
.xde_c00398{left:597.866667pt;}
.xf9_c00398{left:600.133333pt;}
.x12b_c00398{left:601.466667pt;}
.xd2_c00398{left:602.400000pt;}
.x22_c00398{left:604.266667pt;}
.xa1_c00398{left:606.266667pt;}
.x6a_c00398{left:607.200000pt;}
.x76_c00398{left:610.666667pt;}
.x13f_c00398{left:611.733333pt;}
.x8d_c00398{left:613.066667pt;}
.xb1_c00398{left:614.266667pt;}
.xdf_c00398{left:615.200000pt;}
.x99_c00398{left:619.200000pt;}
.xd3_c00398{left:620.266667pt;}
.x13_c00398{left:622.266667pt;}
.x5e_c00398{left:624.000000pt;}
.x3f_c00398{left:625.066667pt;}
.xe5_c00398{left:626.133333pt;}
.x8e_c00398{left:628.133333pt;}
.x23_c00398{left:630.133333pt;}
.xa2_c00398{left:632.133333pt;}
.x119_c00398{left:635.466667pt;}
.x13a_c00398{left:637.466667pt;}
.x30_c00398{left:639.733333pt;}
.x5f_c00398{left:642.266667pt;}
.x6b_c00398{left:646.533333pt;}
.x24_c00398{left:648.666667pt;}
.x104_c00398{left:651.866667pt;}
.x8f_c00398{left:652.800000pt;}
.x9a_c00398{left:653.733333pt;}
.xbd_c00398{left:655.333333pt;}
.xd4_c00398{left:656.400000pt;}
.x81_c00398{left:658.800000pt;}
.x140_c00398{left:660.666667pt;}
.x77_c00398{left:662.133333pt;}
.x123_c00398{left:664.133333pt;}
.xfe_c00398{left:668.400000pt;}
.x13b_c00398{left:670.133333pt;}
.xa3_c00398{left:673.466667pt;}
.x10c_c00398{left:674.666667pt;}
.xe6_c00398{left:678.933333pt;}
.x40_c00398{left:680.400000pt;}
.xe0_c00398{left:682.133333pt;}
.x31_c00398{left:683.866667pt;}
.x14_c00398{left:686.000000pt;}
.x9b_c00398{left:687.333333pt;}
.x55_c00398{left:689.466667pt;}
.x105_c00398{left:691.200000pt;}
.x25_c00398{left:694.800000pt;}
.x41_c00398{left:696.133333pt;}
.x60_c00398{left:698.000000pt;}
.xa4_c00398{left:699.333333pt;}
.x90_c00398{left:701.466667pt;}
.x141_c00398{left:703.866667pt;}
.x15_c00398{left:704.933333pt;}
.xb2_c00398{left:705.866667pt;}
.xe1_c00398{left:707.466667pt;}
.x133_c00398{left:708.666667pt;}
.xff_c00398{left:714.533333pt;}
.x56_c00398{left:717.333333pt;}
.x82_c00398{left:718.266667pt;}
.xd5_c00398{left:721.066667pt;}
.xa5_c00398{left:723.333333pt;}
.xf1_c00398{left:724.400000pt;}
.x144_c00398{left:725.333333pt;}
.x91_c00398{left:727.733333pt;}
.x32_c00398{left:730.266667pt;}
.xb3_c00398{left:731.733333pt;}
.x78_c00398{left:734.400000pt;}
.x26_c00398{left:736.133333pt;}
.x11a_c00398{left:738.933333pt;}
}





/* 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_c00399 {
    display:none;
  }
  .loading-indicator_c00399.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00399 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_c00399 { 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_c00399" -> "#page-container .classname_c00399")
 */
.pf_c00399 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00399 { /* 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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00399 { /* 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_c00399 { /* 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_c00399 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00399 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00399 {overflow:visible;}
  }
}
.c_c00399 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00399 { /* 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_c00399:after { /* webkit #35443 */
  content: '';
}
.t_c00399:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00399 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 */
}
.__c00399 { /* 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_c00399 { /* info for Javascript */
  display:none;
}
.l_c00399 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00399 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00399 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00399: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_c00399 {
    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_c00399.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00399.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_c00399 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00399{font-family:sans-serif;visibility:hidden;}
.sc__c00399{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
}
.y0_c00399{bottom:0.000000px;}
.h1_c00399{height:1166.250000px;}
.h0_c00399{height:1166.400056px;}
.w0_c00399{width:920.879975px;}
.w1_c00399{width:921.000000px;}
.x0_c00399{left:0.000000px;}
@media print{
.y0_c00399{bottom:0.000000pt;}
.h1_c00399{height:1036.666667pt;}
.h0_c00399{height:1036.800049pt;}
.w0_c00399{width:818.559977pt;}
.w1_c00399{width:818.666667pt;}
.x0_c00399{left:0.000000pt;}
}





/* 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_c00400 {
    display:none;
  }
  .loading-indicator_c00400.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00400 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_c00400 { 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_c00400" -> "#page-container .classname_c00400")
 */
.pf_c00400 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00400 { /* 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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00400 { /* 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_c00400 { /* 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_c00400 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00400 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00400 {overflow:visible;}
  }
}
.c_c00400 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00400 { /* 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_c00400:after { /* webkit #35443 */
  content: '';
}
.t_c00400:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00400 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 */
}
.__c00400 { /* 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_c00400 { /* info for Javascript */
  display:none;
}
.l_c00400 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00400 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00400 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00400: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_c00400 {
    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_c00400.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00400.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_c00400 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00400{font-family:sans-serif;visibility:hidden;}
.sc__c00400{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
}
.y0_c00400{bottom:0.000000px;}
.h1_c00400{height:1166.250000px;}
.h0_c00400{height:1166.400056px;}
.w0_c00400{width:920.879975px;}
.w1_c00400{width:921.000000px;}
.x0_c00400{left:0.000000px;}
@media print{
.y0_c00400{bottom:0.000000pt;}
.h1_c00400{height:1036.666667pt;}
.h0_c00400{height:1036.800049pt;}
.w0_c00400{width:818.559977pt;}
.w1_c00400{width:818.666667pt;}
.x0_c00400{left:0.000000pt;}
}





/* 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_c00401 {
    display:none;
  }
  .loading-indicator_c00401.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00401 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_c00401 { 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_c00401" -> "#page-container .classname_c00401")
 */
.pf_c00401 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00401 { /* 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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00401 { /* 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_c00401 { /* 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_c00401 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00401 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00401 {overflow:visible;}
  }
}
.c_c00401 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00401 { /* 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_c00401:after { /* webkit #35443 */
  content: '';
}
.t_c00401:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00401 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 */
}
.__c00401 { /* 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_c00401 { /* info for Javascript */
  display:none;
}
.l_c00401 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00401 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00401 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00401: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_c00401 {
    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_c00401.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00401.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_c00401 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00401{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00401;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.000000;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;}
.m94_c00401{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00401{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00401{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m70_c00401{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m34_c00401{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00401{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00401{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m72_c00401{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00401{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00401{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00401{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00401{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m44_c00401{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m49_c00401{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m62_c00401{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m68_c00401{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00401{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00401{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00401{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m51_c00401{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00401{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00401{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00401{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00401{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00401{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00401{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m75_c00401{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m78_c00401{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00401{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m71_c00401{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00401{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m38_c00401{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc_c00401{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00401{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m30_c00401{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m50_c00401{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m55_c00401{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00401{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00401{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00401{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m43_c00401{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00401{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00401{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m39_c00401{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m85_c00401{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00401{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00401{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m88_c00401{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m25_c00401{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m61_c00401{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m83_c00401{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00401{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00401{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mf_c00401{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00401{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m92_c00401{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m95_c00401{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00401{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md_c00401{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00401{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m74_c00401{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6_c00401{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00401{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m58_c00401{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m81_c00401{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m76_c00401{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00401{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m53_c00401{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m19_c00401{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00401{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00401{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m91_c00401{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);}
.m90_c00401{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00401{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00401{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m33_c00401{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m64_c00401{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m77_c00401{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m89_c00401{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00401{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m87_c00401{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00401{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m67_c00401{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m37_c00401{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00401{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5_c00401{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m98_c00401{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00401{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00401{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m96_c00401{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m60_c00401{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m41_c00401{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00401{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m56_c00401{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00401{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m10_c00401{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00401{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m59_c00401{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00401{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m84_c00401{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00401{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m63_c00401{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00401{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m47_c00401{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00401{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m23_c00401{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m45_c00401{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00401{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00401{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m42_c00401{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m79_c00401{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m93_c00401{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00401{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m80_c00401{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m86_c00401{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m16_c00401{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m48_c00401{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m66_c00401{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00401{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00401{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00401{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m3_c00401{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m32_c00401{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m46_c00401{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00401{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00401{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m82_c00401{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00401{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m57_c00401{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m97_c00401{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m54_c00401{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00401{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m99_c00401{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00401{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m52_c00401{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00401{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00401{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m31_c00401{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m69_c00401{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00401{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00401{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.v0_c00401{vertical-align:0.000000px;}
.ls0_c00401{letter-spacing:0.000000px;}
.sc__c00401{text-shadow:none;}
.sc0_c00401{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__c00401{-webkit-text-stroke:0px transparent;}
.sc0_c00401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00401{word-spacing:-6.428571px;}
.ws0_c00401{word-spacing:-2.940463px;}
.ws1_c00401{word-spacing:-0.545455px;}
.ws7_c00401{word-spacing:0.000000px;}
.ws4_c00401{word-spacing:0.806678px;}
.ws6_c00401{word-spacing:3.442882px;}
.ws2_c00401{word-spacing:4.778591px;}
.ws3_c00401{word-spacing:5.875000px;}
.fc0_c00401{color:transparent;}
.fs1_c00401{font-size:54.000000px;}
.fs0_c00401{font-size:60.000000px;}
.y0_c00401{bottom:0.000000px;}
.y2b_c00401{bottom:149.100000px;}
.y2a_c00401{bottom:187.950000px;}
.y29_c00401{bottom:207.450000px;}
.y28_c00401{bottom:226.950000px;}
.y27_c00401{bottom:247.050000px;}
.y26_c00401{bottom:267.150000px;}
.y25_c00401{bottom:286.950000px;}
.y24_c00401{bottom:306.750000px;}
.y23_c00401{bottom:326.250000px;}
.y22_c00401{bottom:346.350000px;}
.y21_c00401{bottom:365.850000px;}
.y20_c00401{bottom:385.950000px;}
.y1f_c00401{bottom:405.750000px;}
.y1e_c00401{bottom:425.550000px;}
.y1d_c00401{bottom:445.350000px;}
.y1c_c00401{bottom:485.850000px;}
.y1b_c00401{bottom:505.650000px;}
.y1a_c00401{bottom:525.750000px;}
.y19_c00401{bottom:545.550000px;}
.y18_c00401{bottom:565.650000px;}
.y17_c00401{bottom:585.450000px;}
.y16_c00401{bottom:605.550000px;}
.y15_c00401{bottom:625.050000px;}
.y14_c00401{bottom:644.850000px;}
.y13_c00401{bottom:664.950000px;}
.y12_c00401{bottom:685.650000px;}
.y11_c00401{bottom:705.750000px;}
.y10_c00401{bottom:725.850000px;}
.yf_c00401{bottom:745.950000px;}
.ye_c00401{bottom:765.750000px;}
.yd_c00401{bottom:785.250000px;}
.yc_c00401{bottom:805.350000px;}
.yb_c00401{bottom:825.150000px;}
.ya_c00401{bottom:844.950000px;}
.y9_c00401{bottom:865.050000px;}
.y8_c00401{bottom:884.850000px;}
.y7_c00401{bottom:904.650000px;}
.y6_c00401{bottom:924.450000px;}
.y5_c00401{bottom:944.700000px;}
.y4_c00401{bottom:964.500000px;}
.y3_c00401{bottom:984.300000px;}
.y2_c00401{bottom:1004.100000px;}
.y1_c00401{bottom:1041.150000px;}
.h3_c00401{height:54.000000px;}
.h2_c00401{height:60.000000px;}
.h1_c00401{height:1166.250000px;}
.h0_c00401{height:1166.400056px;}
.w0_c00401{width:920.879975px;}
.w1_c00401{width:921.000000px;}
.x0_c00401{left:0.000000px;}
.x5f_c00401{left:90.750000px;}
.x3_c00401{left:91.800000px;}
.xd0_c00401{left:93.150000px;}
.x46_c00401{left:109.200000px;}
.xef_c00401{left:110.550000px;}
.xa0_c00401{left:111.750000px;}
.x8f_c00401{left:116.100000px;}
.x7b_c00401{left:118.050000px;}
.xfe_c00401{left:120.750000px;}
.xdc_c00401{left:121.800000px;}
.x14_c00401{left:122.850000px;}
.xf2_c00401{left:124.200000px;}
.xa9_c00401{left:127.800000px;}
.x4_c00401{left:130.650000px;}
.x6c_c00401{left:135.750000px;}
.x60_c00401{left:137.550000px;}
.x15_c00401{left:139.800000px;}
.x47_c00401{left:140.850000px;}
.x124_c00401{left:143.700000px;}
.x90_c00401{left:145.650000px;}
.x6d_c00401{left:147.300000px;}
.x23_c00401{left:148.950000px;}
.xeb_c00401{left:151.800000px;}
.x32_c00401{left:153.900000px;}
.x37_c00401{left:155.100000px;}
.xff_c00401{left:158.850000px;}
.x7c_c00401{left:160.950000px;}
.x98_c00401{left:162.900000px;}
.xd5_c00401{left:166.200000px;}
.x16_c00401{left:170.700000px;}
.x106_c00401{left:172.650000px;}
.x24_c00401{left:173.850000px;}
.x48_c00401{left:175.800000px;}
.x52_c00401{left:177.150000px;}
.x100_c00401{left:178.350000px;}
.x6e_c00401{left:180.450000px;}
.xf3_c00401{left:181.500000px;}
.x118_c00401{left:183.000000px;}
.xba_c00401{left:184.350000px;}
.xb7_c00401{left:186.750000px;}
.xbd_c00401{left:188.550000px;}
.x107_c00401{left:189.900000px;}
.x33_c00401{left:193.500000px;}
.x129_c00401{left:194.700000px;}
.x91_c00401{left:197.100000px;}
.x38_c00401{left:200.100000px;}
.x25_c00401{left:201.900000px;}
.x5_c00401{left:204.750000px;}
.x6f_c00401{left:205.950000px;}
.xb8_c00401{left:207.300000px;}
.x119_c00401{left:208.500000px;}
.xaa_c00401{left:209.550000px;}
.xd1_c00401{left:210.900000px;}
.x17_c00401{left:212.100000px;}
.x34_c00401{left:213.600000px;}
.xe7_c00401{left:215.550000px;}
.x61_c00401{left:216.750000px;}
.x11e_c00401{left:218.400000px;}
.xbe_c00401{left:220.650000px;}
.xd6_c00401{left:222.000000px;}
.xe2_c00401{left:223.650000px;}
.x85_c00401{left:225.150000px;}
.x7d_c00401{left:228.600000px;}
.x26_c00401{left:231.000000px;}
.x70_c00401{left:232.200000px;}
.x53_c00401{left:235.500000px;}
.xb9_c00401{left:236.850000px;}
.x6_c00401{left:238.650000px;}
.xd7_c00401{left:239.700000px;}
.x35_c00401{left:242.100000px;}
.xaf_c00401{left:243.300000px;}
.xe3_c00401{left:245.550000px;}
.x121_c00401{left:249.300000px;}
.x49_c00401{left:251.400000px;}
.x27_c00401{left:252.900000px;}
.x86_c00401{left:254.700000px;}
.xbf_c00401{left:256.350000px;}
.x54_c00401{left:257.400000px;}
.x101_c00401{left:260.700000px;}
.x110_c00401{left:261.900000px;}
.x39_c00401{left:263.400000px;}
.x18_c00401{left:266.100000px;}
.x7_c00401{left:268.200000px;}
.x12a_c00401{left:272.100000px;}
.xe4_c00401{left:273.600000px;}
.xa1_c00401{left:275.250000px;}
.x125_c00401{left:276.600000px;}
.x62_c00401{left:278.700000px;}
.x7e_c00401{left:280.500000px;}
.xdd_c00401{left:282.600000px;}
.x92_c00401{left:287.100000px;}
.x19_c00401{left:289.800000px;}
.x36_c00401{left:291.750000px;}
.x28_c00401{left:294.300000px;}
.x111_c00401{left:295.350000px;}
.x12f_c00401{left:296.850000px;}
.x3a_c00401{left:298.800000px;}
.x55_c00401{left:299.850000px;}
.x122_c00401{left:301.500000px;}
.x99_c00401{left:302.850000px;}
.x8_c00401{left:303.900000px;}
.xf0_c00401{left:307.800000px;}
.xc0_c00401{left:310.050000px;}
.x93_c00401{left:312.300000px;}
.x29_c00401{left:313.800000px;}
.x87_c00401{left:316.200000px;}
.xde_c00401{left:318.900000px;}
.x9_c00401{left:322.200000px;}
.x3b_c00401{left:324.750000px;}
.x4a_c00401{left:325.950000px;}
.x63_c00401{left:327.300000px;}
.xc1_c00401{left:328.800000px;}
.xa2_c00401{left:330.750000px;}
.x71_c00401{left:332.700000px;}
.x10d_c00401{left:335.550000px;}
.x9a_c00401{left:336.750000px;}
.x1a_c00401{left:338.100000px;}
.xe5_c00401{left:339.450000px;}
.x2a_c00401{left:345.150000px;}
.x56_c00401{left:346.350000px;}
.x102_c00401{left:347.850000px;}
.xc2_c00401{left:349.650000px;}
.x132_c00401{left:351.300000px;}
.xb0_c00401{left:354.150000px;}
.x7f_c00401{left:356.850000px;}
.x72_c00401{left:358.950000px;}
.xe6_c00401{left:360.000000px;}
.xec_c00401{left:362.100000px;}
.x12b_c00401{left:363.900000px;}
.xdf_c00401{left:364.950000px;}
.x108_c00401{left:367.350000px;}
.x4b_c00401{left:368.850000px;}
.x3c_c00401{left:370.050000px;}
.xb1_c00401{left:371.100000px;}
.x2b_c00401{left:372.150000px;}
.x80_c00401{left:374.850000px;}
.x88_c00401{left:376.350000px;}
.x9b_c00401{left:377.400000px;}
.xf1_c00401{left:379.050000px;}
.xc9_c00401{left:381.000000px;}
.xa_c00401{left:383.100000px;}
.x123_c00401{left:385.050000px;}
.x1_c00401{left:386.250000px;}
.x81_c00401{left:387.750000px;}
.x3d_c00401{left:389.850000px;}
.x64_c00401{left:391.050000px;}
.xf4_c00401{left:393.900000px;}
.x4c_c00401{left:395.100000px;}
.x112_c00401{left:396.450000px;}
.xd2_c00401{left:398.100000px;}
.x126_c00401{left:401.100000px;}
.x73_c00401{left:402.450000px;}
.xb_c00401{left:404.700000px;}
.xa3_c00401{left:406.650000px;}
.x57_c00401{left:411.150000px;}
.x109_c00401{left:413.850000px;}
.x3e_c00401{left:415.350000px;}
.x1b_c00401{left:417.300000px;}
.xca_c00401{left:419.550000px;}
.x113_c00401{left:421.350000px;}
.x2c_c00401{left:422.550000px;}
.xf9_c00401{left:424.050000px;}
.x65_c00401{left:428.100000px;}
.xf5_c00401{left:430.650000px;}
.x74_c00401{left:432.300000px;}
.xc_c00401{left:433.800000px;}
.x4d_c00401{left:435.450000px;}
.xc3_c00401{left:437.550000px;}
.xcb_c00401{left:439.650000px;}
.x58_c00401{left:441.000000px;}
.x10e_c00401{left:443.550000px;}
.x11a_c00401{left:447.750000px;}
.xfa_c00401{left:449.250000px;}
.xe8_c00401{left:451.650000px;}
.x1c_c00401{left:453.600000px;}
.x75_c00401{left:457.800000px;}
.xb2_c00401{left:463.200000px;}
.x11b_c00401{left:465.750000px;}
.x66_c00401{left:466.950000px;}
.xcc_c00401{left:468.150000px;}
.xf6_c00401{left:469.200000px;}
.x2d_c00401{left:470.400000px;}
.xa4_c00401{left:471.750000px;}
.x4e_c00401{left:473.550000px;}
.xe0_c00401{left:476.550000px;}
.xc4_c00401{left:478.650000px;}
.x89_c00401{left:479.700000px;}
.xd_c00401{left:482.400000px;}
.xd3_c00401{left:484.500000px;}
.xab_c00401{left:485.550000px;}
.xfb_c00401{left:489.900000px;}
.x1d_c00401{left:491.100000px;}
.x114_c00401{left:493.650000px;}
.x127_c00401{left:495.750000px;}
.xb3_c00401{left:497.400000px;}
.x3f_c00401{left:498.450000px;}
.x10a_c00401{left:499.500000px;}
.xa5_c00401{left:502.050000px;}
.x59_c00401{left:505.500000px;}
.x8a_c00401{left:508.200000px;}
.x2e_c00401{left:509.250000px;}
.xc5_c00401{left:511.050000px;}
.x10b_c00401{left:513.600000px;}
.xed_c00401{left:515.850000px;}
.x40_c00401{left:518.250000px;}
.x94_c00401{left:519.900000px;}
.xfc_c00401{left:523.350000px;}
.x103_c00401{left:524.700000px;}
.xd8_c00401{left:526.050000px;}
.xcd_c00401{left:529.800000px;}
.xe1_c00401{left:530.850000px;}
.x5a_c00401{left:532.500000px;}
.xac_c00401{left:534.150000px;}
.xee_c00401{left:535.350000px;}
.xa6_c00401{left:537.750000px;}
.x67_c00401{left:540.000000px;}
.x82_c00401{left:543.300000px;}
.x1e_c00401{left:544.800000px;}
.x2f_c00401{left:547.050000px;}
.xc6_c00401{left:548.850000px;}
.x95_c00401{left:557.400000px;}
.xce_c00401{left:558.900000px;}
.xe_c00401{left:561.300000px;}
.x5b_c00401{left:563.100000px;}
.xc7_c00401{left:564.750000px;}
.x9c_c00401{left:566.400000px;}
.x12d_c00401{left:567.600000px;}
.x41_c00401{left:568.950000px;}
.x1f_c00401{left:573.300000px;}
.x68_c00401{left:577.050000px;}
.x10f_c00401{left:579.600000px;}
.xb4_c00401{left:581.250000px;}
.x115_c00401{left:582.900000px;}
.xf_c00401{left:583.950000px;}
.x8b_c00401{left:585.300000px;}
.x4f_c00401{left:588.000000px;}
.xbb_c00401{left:589.500000px;}
.xd9_c00401{left:590.550000px;}
.x76_c00401{left:595.350000px;}
.x130_c00401{left:597.300000px;}
.x83_c00401{left:600.600000px;}
.x10c_c00401{left:603.300000px;}
.x69_c00401{left:605.550000px;}
.x9d_c00401{left:611.100000px;}
.x10_c00401{left:613.500000px;}
.x12c_c00401{left:614.550000px;}
.xcf_c00401{left:615.750000px;}
.x131_c00401{left:617.850000px;}
.x20_c00401{left:619.800000px;}
.x116_c00401{left:621.000000px;}
.x5c_c00401{left:623.250000px;}
.x42_c00401{left:624.750000px;}
.x12e_c00401{left:627.300000px;}
.x77_c00401{left:629.550000px;}
.xfd_c00401{left:631.650000px;}
.xda_c00401{left:634.500000px;}
.x84_c00401{left:636.900000px;}
.x11c_c00401{left:638.700000px;}
.xc8_c00401{left:640.650000px;}
.x43_c00401{left:642.000000px;}
.xad_c00401{left:643.350000px;}
.xa7_c00401{left:645.450000px;}
.xe9_c00401{left:647.700000px;}
.xd4_c00401{left:649.350000px;}
.x78_c00401{left:651.150000px;}
.x8c_c00401{left:653.700000px;}
.x11f_c00401{left:655.800000px;}
.x6a_c00401{left:657.000000px;}
.x11d_c00401{left:659.700000px;}
.x96_c00401{left:660.750000px;}
.x11_c00401{left:663.900000px;}
.xf7_c00401{left:665.700000px;}
.x44_c00401{left:667.950000px;}
.xbc_c00401{left:670.800000px;}
.x9e_c00401{left:673.350000px;}
.x30_c00401{left:676.650000px;}
.x104_c00401{left:679.500000px;}
.x50_c00401{left:681.900000px;}
.x21_c00401{left:686.400000px;}
.x8d_c00401{left:688.200000px;}
.xb5_c00401{left:689.250000px;}
.xea_c00401{left:691.650000px;}
.x79_c00401{left:693.300000px;}
.x51_c00401{left:697.050000px;}
.x45_c00401{left:699.300000px;}
.xf8_c00401{left:705.600000px;}
.x5d_c00401{left:707.100000px;}
.xb6_c00401{left:709.800000px;}
.x12_c00401{left:712.200000px;}
.x22_c00401{left:717.750000px;}
.xdb_c00401{left:719.400000px;}
.x5e_c00401{left:721.800000px;}
.x105_c00401{left:723.450000px;}
.x6b_c00401{left:726.900000px;}
.x9f_c00401{left:728.850000px;}
.x2_c00401{left:730.350000px;}
.x120_c00401{left:732.150000px;}
.x128_c00401{left:733.200000px;}
.x31_c00401{left:734.250000px;}
.xae_c00401{left:735.450000px;}
.x13_c00401{left:736.650000px;}
.x97_c00401{left:737.850000px;}
.x8e_c00401{left:741.450000px;}
.xa8_c00401{left:745.200000px;}
.x7a_c00401{left:751.200000px;}
.x117_c00401{left:754.950000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws5_c00401{word-spacing:-5.714286pt;}
.ws0_c00401{word-spacing:-2.613745pt;}
.ws1_c00401{word-spacing:-0.484848pt;}
.ws7_c00401{word-spacing:0.000000pt;}
.ws4_c00401{word-spacing:0.717047pt;}
.ws6_c00401{word-spacing:3.060340pt;}
.ws2_c00401{word-spacing:4.247636pt;}
.ws3_c00401{word-spacing:5.222222pt;}
.fs1_c00401{font-size:48.000000pt;}
.fs0_c00401{font-size:53.333333pt;}
.y0_c00401{bottom:0.000000pt;}
.y2b_c00401{bottom:132.533333pt;}
.y2a_c00401{bottom:167.066667pt;}
.y29_c00401{bottom:184.400000pt;}
.y28_c00401{bottom:201.733333pt;}
.y27_c00401{bottom:219.600000pt;}
.y26_c00401{bottom:237.466667pt;}
.y25_c00401{bottom:255.066667pt;}
.y24_c00401{bottom:272.666667pt;}
.y23_c00401{bottom:290.000000pt;}
.y22_c00401{bottom:307.866667pt;}
.y21_c00401{bottom:325.200000pt;}
.y20_c00401{bottom:343.066667pt;}
.y1f_c00401{bottom:360.666667pt;}
.y1e_c00401{bottom:378.266667pt;}
.y1d_c00401{bottom:395.866667pt;}
.y1c_c00401{bottom:431.866667pt;}
.y1b_c00401{bottom:449.466667pt;}
.y1a_c00401{bottom:467.333333pt;}
.y19_c00401{bottom:484.933333pt;}
.y18_c00401{bottom:502.800000pt;}
.y17_c00401{bottom:520.400000pt;}
.y16_c00401{bottom:538.266667pt;}
.y15_c00401{bottom:555.600000pt;}
.y14_c00401{bottom:573.200000pt;}
.y13_c00401{bottom:591.066667pt;}
.y12_c00401{bottom:609.466667pt;}
.y11_c00401{bottom:627.333333pt;}
.y10_c00401{bottom:645.200000pt;}
.yf_c00401{bottom:663.066667pt;}
.ye_c00401{bottom:680.666667pt;}
.yd_c00401{bottom:698.000000pt;}
.yc_c00401{bottom:715.866667pt;}
.yb_c00401{bottom:733.466667pt;}
.ya_c00401{bottom:751.066667pt;}
.y9_c00401{bottom:768.933333pt;}
.y8_c00401{bottom:786.533333pt;}
.y7_c00401{bottom:804.133333pt;}
.y6_c00401{bottom:821.733333pt;}
.y5_c00401{bottom:839.733333pt;}
.y4_c00401{bottom:857.333333pt;}
.y3_c00401{bottom:874.933333pt;}
.y2_c00401{bottom:892.533333pt;}
.y1_c00401{bottom:925.466667pt;}
.h3_c00401{height:48.000000pt;}
.h2_c00401{height:53.333333pt;}
.h1_c00401{height:1036.666667pt;}
.h0_c00401{height:1036.800049pt;}
.w0_c00401{width:818.559977pt;}
.w1_c00401{width:818.666667pt;}
.x0_c00401{left:0.000000pt;}
.x5f_c00401{left:80.666667pt;}
.x3_c00401{left:81.600000pt;}
.xd0_c00401{left:82.800000pt;}
.x46_c00401{left:97.066667pt;}
.xef_c00401{left:98.266667pt;}
.xa0_c00401{left:99.333333pt;}
.x8f_c00401{left:103.200000pt;}
.x7b_c00401{left:104.933333pt;}
.xfe_c00401{left:107.333333pt;}
.xdc_c00401{left:108.266667pt;}
.x14_c00401{left:109.200000pt;}
.xf2_c00401{left:110.400000pt;}
.xa9_c00401{left:113.600000pt;}
.x4_c00401{left:116.133333pt;}
.x6c_c00401{left:120.666667pt;}
.x60_c00401{left:122.266667pt;}
.x15_c00401{left:124.266667pt;}
.x47_c00401{left:125.200000pt;}
.x124_c00401{left:127.733333pt;}
.x90_c00401{left:129.466667pt;}
.x6d_c00401{left:130.933333pt;}
.x23_c00401{left:132.400000pt;}
.xeb_c00401{left:134.933333pt;}
.x32_c00401{left:136.800000pt;}
.x37_c00401{left:137.866667pt;}
.xff_c00401{left:141.200000pt;}
.x7c_c00401{left:143.066667pt;}
.x98_c00401{left:144.800000pt;}
.xd5_c00401{left:147.733333pt;}
.x16_c00401{left:151.733333pt;}
.x106_c00401{left:153.466667pt;}
.x24_c00401{left:154.533333pt;}
.x48_c00401{left:156.266667pt;}
.x52_c00401{left:157.466667pt;}
.x100_c00401{left:158.533333pt;}
.x6e_c00401{left:160.400000pt;}
.xf3_c00401{left:161.333333pt;}
.x118_c00401{left:162.666667pt;}
.xba_c00401{left:163.866667pt;}
.xb7_c00401{left:166.000000pt;}
.xbd_c00401{left:167.600000pt;}
.x107_c00401{left:168.800000pt;}
.x33_c00401{left:172.000000pt;}
.x129_c00401{left:173.066667pt;}
.x91_c00401{left:175.200000pt;}
.x38_c00401{left:177.866667pt;}
.x25_c00401{left:179.466667pt;}
.x5_c00401{left:182.000000pt;}
.x6f_c00401{left:183.066667pt;}
.xb8_c00401{left:184.266667pt;}
.x119_c00401{left:185.333333pt;}
.xaa_c00401{left:186.266667pt;}
.xd1_c00401{left:187.466667pt;}
.x17_c00401{left:188.533333pt;}
.x34_c00401{left:189.866667pt;}
.xe7_c00401{left:191.600000pt;}
.x61_c00401{left:192.666667pt;}
.x11e_c00401{left:194.133333pt;}
.xbe_c00401{left:196.133333pt;}
.xd6_c00401{left:197.333333pt;}
.xe2_c00401{left:198.800000pt;}
.x85_c00401{left:200.133333pt;}
.x7d_c00401{left:203.200000pt;}
.x26_c00401{left:205.333333pt;}
.x70_c00401{left:206.400000pt;}
.x53_c00401{left:209.333333pt;}
.xb9_c00401{left:210.533333pt;}
.x6_c00401{left:212.133333pt;}
.xd7_c00401{left:213.066667pt;}
.x35_c00401{left:215.200000pt;}
.xaf_c00401{left:216.266667pt;}
.xe3_c00401{left:218.266667pt;}
.x121_c00401{left:221.600000pt;}
.x49_c00401{left:223.466667pt;}
.x27_c00401{left:224.800000pt;}
.x86_c00401{left:226.400000pt;}
.xbf_c00401{left:227.866667pt;}
.x54_c00401{left:228.800000pt;}
.x101_c00401{left:231.733333pt;}
.x110_c00401{left:232.800000pt;}
.x39_c00401{left:234.133333pt;}
.x18_c00401{left:236.533333pt;}
.x7_c00401{left:238.400000pt;}
.x12a_c00401{left:241.866667pt;}
.xe4_c00401{left:243.200000pt;}
.xa1_c00401{left:244.666667pt;}
.x125_c00401{left:245.866667pt;}
.x62_c00401{left:247.733333pt;}
.x7e_c00401{left:249.333333pt;}
.xdd_c00401{left:251.200000pt;}
.x92_c00401{left:255.200000pt;}
.x19_c00401{left:257.600000pt;}
.x36_c00401{left:259.333333pt;}
.x28_c00401{left:261.600000pt;}
.x111_c00401{left:262.533333pt;}
.x12f_c00401{left:263.866667pt;}
.x3a_c00401{left:265.600000pt;}
.x55_c00401{left:266.533333pt;}
.x122_c00401{left:268.000000pt;}
.x99_c00401{left:269.200000pt;}
.x8_c00401{left:270.133333pt;}
.xf0_c00401{left:273.600000pt;}
.xc0_c00401{left:275.600000pt;}
.x93_c00401{left:277.600000pt;}
.x29_c00401{left:278.933333pt;}
.x87_c00401{left:281.066667pt;}
.xde_c00401{left:283.466667pt;}
.x9_c00401{left:286.400000pt;}
.x3b_c00401{left:288.666667pt;}
.x4a_c00401{left:289.733333pt;}
.x63_c00401{left:290.933333pt;}
.xc1_c00401{left:292.266667pt;}
.xa2_c00401{left:294.000000pt;}
.x71_c00401{left:295.733333pt;}
.x10d_c00401{left:298.266667pt;}
.x9a_c00401{left:299.333333pt;}
.x1a_c00401{left:300.533333pt;}
.xe5_c00401{left:301.733333pt;}
.x2a_c00401{left:306.800000pt;}
.x56_c00401{left:307.866667pt;}
.x102_c00401{left:309.200000pt;}
.xc2_c00401{left:310.800000pt;}
.x132_c00401{left:312.266667pt;}
.xb0_c00401{left:314.800000pt;}
.x7f_c00401{left:317.200000pt;}
.x72_c00401{left:319.066667pt;}
.xe6_c00401{left:320.000000pt;}
.xec_c00401{left:321.866667pt;}
.x12b_c00401{left:323.466667pt;}
.xdf_c00401{left:324.400000pt;}
.x108_c00401{left:326.533333pt;}
.x4b_c00401{left:327.866667pt;}
.x3c_c00401{left:328.933333pt;}
.xb1_c00401{left:329.866667pt;}
.x2b_c00401{left:330.800000pt;}
.x80_c00401{left:333.200000pt;}
.x88_c00401{left:334.533333pt;}
.x9b_c00401{left:335.466667pt;}
.xf1_c00401{left:336.933333pt;}
.xc9_c00401{left:338.666667pt;}
.xa_c00401{left:340.533333pt;}
.x123_c00401{left:342.266667pt;}
.x1_c00401{left:343.333333pt;}
.x81_c00401{left:344.666667pt;}
.x3d_c00401{left:346.533333pt;}
.x64_c00401{left:347.600000pt;}
.xf4_c00401{left:350.133333pt;}
.x4c_c00401{left:351.200000pt;}
.x112_c00401{left:352.400000pt;}
.xd2_c00401{left:353.866667pt;}
.x126_c00401{left:356.533333pt;}
.x73_c00401{left:357.733333pt;}
.xb_c00401{left:359.733333pt;}
.xa3_c00401{left:361.466667pt;}
.x57_c00401{left:365.466667pt;}
.x109_c00401{left:367.866667pt;}
.x3e_c00401{left:369.200000pt;}
.x1b_c00401{left:370.933333pt;}
.xca_c00401{left:372.933333pt;}
.x113_c00401{left:374.533333pt;}
.x2c_c00401{left:375.600000pt;}
.xf9_c00401{left:376.933333pt;}
.x65_c00401{left:380.533333pt;}
.xf5_c00401{left:382.800000pt;}
.x74_c00401{left:384.266667pt;}
.xc_c00401{left:385.600000pt;}
.x4d_c00401{left:387.066667pt;}
.xc3_c00401{left:388.933333pt;}
.xcb_c00401{left:390.800000pt;}
.x58_c00401{left:392.000000pt;}
.x10e_c00401{left:394.266667pt;}
.x11a_c00401{left:398.000000pt;}
.xfa_c00401{left:399.333333pt;}
.xe8_c00401{left:401.466667pt;}
.x1c_c00401{left:403.200000pt;}
.x75_c00401{left:406.933333pt;}
.xb2_c00401{left:411.733333pt;}
.x11b_c00401{left:414.000000pt;}
.x66_c00401{left:415.066667pt;}
.xcc_c00401{left:416.133333pt;}
.xf6_c00401{left:417.066667pt;}
.x2d_c00401{left:418.133333pt;}
.xa4_c00401{left:419.333333pt;}
.x4e_c00401{left:420.933333pt;}
.xe0_c00401{left:423.600000pt;}
.xc4_c00401{left:425.466667pt;}
.x89_c00401{left:426.400000pt;}
.xd_c00401{left:428.800000pt;}
.xd3_c00401{left:430.666667pt;}
.xab_c00401{left:431.600000pt;}
.xfb_c00401{left:435.466667pt;}
.x1d_c00401{left:436.533333pt;}
.x114_c00401{left:438.800000pt;}
.x127_c00401{left:440.666667pt;}
.xb3_c00401{left:442.133333pt;}
.x3f_c00401{left:443.066667pt;}
.x10a_c00401{left:444.000000pt;}
.xa5_c00401{left:446.266667pt;}
.x59_c00401{left:449.333333pt;}
.x8a_c00401{left:451.733333pt;}
.x2e_c00401{left:452.666667pt;}
.xc5_c00401{left:454.266667pt;}
.x10b_c00401{left:456.533333pt;}
.xed_c00401{left:458.533333pt;}
.x40_c00401{left:460.666667pt;}
.x94_c00401{left:462.133333pt;}
.xfc_c00401{left:465.200000pt;}
.x103_c00401{left:466.400000pt;}
.xd8_c00401{left:467.600000pt;}
.xcd_c00401{left:470.933333pt;}
.xe1_c00401{left:471.866667pt;}
.x5a_c00401{left:473.333333pt;}
.xac_c00401{left:474.800000pt;}
.xee_c00401{left:475.866667pt;}
.xa6_c00401{left:478.000000pt;}
.x67_c00401{left:480.000000pt;}
.x82_c00401{left:482.933333pt;}
.x1e_c00401{left:484.266667pt;}
.x2f_c00401{left:486.266667pt;}
.xc6_c00401{left:487.866667pt;}
.x95_c00401{left:495.466667pt;}
.xce_c00401{left:496.800000pt;}
.xe_c00401{left:498.933333pt;}
.x5b_c00401{left:500.533333pt;}
.xc7_c00401{left:502.000000pt;}
.x9c_c00401{left:503.466667pt;}
.x12d_c00401{left:504.533333pt;}
.x41_c00401{left:505.733333pt;}
.x1f_c00401{left:509.600000pt;}
.x68_c00401{left:512.933333pt;}
.x10f_c00401{left:515.200000pt;}
.xb4_c00401{left:516.666667pt;}
.x115_c00401{left:518.133333pt;}
.xf_c00401{left:519.066667pt;}
.x8b_c00401{left:520.266667pt;}
.x4f_c00401{left:522.666667pt;}
.xbb_c00401{left:524.000000pt;}
.xd9_c00401{left:524.933333pt;}
.x76_c00401{left:529.200000pt;}
.x130_c00401{left:530.933333pt;}
.x83_c00401{left:533.866667pt;}
.x10c_c00401{left:536.266667pt;}
.x69_c00401{left:538.266667pt;}
.x9d_c00401{left:543.200000pt;}
.x10_c00401{left:545.333333pt;}
.x12c_c00401{left:546.266667pt;}
.xcf_c00401{left:547.333333pt;}
.x131_c00401{left:549.200000pt;}
.x20_c00401{left:550.933333pt;}
.x116_c00401{left:552.000000pt;}
.x5c_c00401{left:554.000000pt;}
.x42_c00401{left:555.333333pt;}
.x12e_c00401{left:557.600000pt;}
.x77_c00401{left:559.600000pt;}
.xfd_c00401{left:561.466667pt;}
.xda_c00401{left:564.000000pt;}
.x84_c00401{left:566.133333pt;}
.x11c_c00401{left:567.733333pt;}
.xc8_c00401{left:569.466667pt;}
.x43_c00401{left:570.666667pt;}
.xad_c00401{left:571.866667pt;}
.xa7_c00401{left:573.733333pt;}
.xe9_c00401{left:575.733333pt;}
.xd4_c00401{left:577.200000pt;}
.x78_c00401{left:578.800000pt;}
.x8c_c00401{left:581.066667pt;}
.x11f_c00401{left:582.933333pt;}
.x6a_c00401{left:584.000000pt;}
.x11d_c00401{left:586.400000pt;}
.x96_c00401{left:587.333333pt;}
.x11_c00401{left:590.133333pt;}
.xf7_c00401{left:591.733333pt;}
.x44_c00401{left:593.733333pt;}
.xbc_c00401{left:596.266667pt;}
.x9e_c00401{left:598.533333pt;}
.x30_c00401{left:601.466667pt;}
.x104_c00401{left:604.000000pt;}
.x50_c00401{left:606.133333pt;}
.x21_c00401{left:610.133333pt;}
.x8d_c00401{left:611.733333pt;}
.xb5_c00401{left:612.666667pt;}
.xea_c00401{left:614.800000pt;}
.x79_c00401{left:616.266667pt;}
.x51_c00401{left:619.600000pt;}
.x45_c00401{left:621.600000pt;}
.xf8_c00401{left:627.200000pt;}
.x5d_c00401{left:628.533333pt;}
.xb6_c00401{left:630.933333pt;}
.x12_c00401{left:633.066667pt;}
.x22_c00401{left:638.000000pt;}
.xdb_c00401{left:639.466667pt;}
.x5e_c00401{left:641.600000pt;}
.x105_c00401{left:643.066667pt;}
.x6b_c00401{left:646.133333pt;}
.x9f_c00401{left:647.866667pt;}
.x2_c00401{left:649.200000pt;}
.x120_c00401{left:650.800000pt;}
.x128_c00401{left:651.733333pt;}
.x31_c00401{left:652.666667pt;}
.xae_c00401{left:653.733333pt;}
.x13_c00401{left:654.800000pt;}
.x97_c00401{left:655.866667pt;}
.x8e_c00401{left:659.066667pt;}
.xa8_c00401{left:662.400000pt;}
.x7a_c00401{left:667.733333pt;}
.x117_c00401{left:671.066667pt;}
}





/* 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_c00402 {
    display:none;
  }
  .loading-indicator_c00402.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00402 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_c00402 { 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_c00402" -> "#page-container .classname_c00402")
 */
.pf_c00402 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00402 { /* 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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00402 { /* 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_c00402 { /* 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_c00402 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00402 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00402 {overflow:visible;}
  }
}
.c_c00402 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00402 { /* 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_c00402:after { /* webkit #35443 */
  content: '';
}
.t_c00402:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00402 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 */
}
.__c00402 { /* 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_c00402 { /* info for Javascript */
  display:none;
}
.l_c00402 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00402 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00402 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00402: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_c00402 {
    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_c00402.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00402.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_c00402 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00402{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00402;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.000000;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;}
.m92_c00402{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m77_c00402{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00402{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00402{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m64_c00402{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00402{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m12_c00402{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00402{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00402{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00402{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00402{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00402{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m22_c00402{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15_c00402{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00402{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00402{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00402{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m94_c00402{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00402{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m55_c00402{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00402{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mad_c00402{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00402{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00402{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m44_c00402{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00402{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m36_c00402{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00402{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.maf_c00402{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m81_c00402{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m85_c00402{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m48_c00402{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m58_c00402{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8_c00402{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m99_c00402{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6_c00402{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00402{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00402{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m90_c00402{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00402{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m20_c00402{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m35_c00402{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00402{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00402{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00402{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00402{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m50_c00402{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11_c00402{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m30_c00402{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m16_c00402{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m75_c00402{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00402{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m63_c00402{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m13_c00402{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m84_c00402{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m80_c00402{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m26_c00402{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00402{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00402{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m43_c00402{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m71_c00402{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m89_c00402{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m86_c00402{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00402{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00402{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00402{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m57_c00402{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m32_c00402{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00402{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00402{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m53_c00402{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00402{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mf_c00402{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00402{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m28_c00402{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m65_c00402{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m52_c00402{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00402{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m18_c00402{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.me_c00402{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00402{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m9_c00402{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m60_c00402{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m91_c00402{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc_c00402{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00402{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m24_c00402{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m37_c00402{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17_c00402{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m34_c00402{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb_c00402{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00402{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m38_c00402{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);}
.m68_c00402{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m87_c00402{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00402{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25_c00402{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00402{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m42_c00402{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m29_c00402{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m93_c00402{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00402{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m96_c00402{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00402{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00402{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m21_c00402{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.md_c00402{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m98_c00402{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m49_c00402{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00402{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00402{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m56_c00402{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m39_c00402{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2_c00402{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00402{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00402{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m27_c00402{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m19_c00402{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m61_c00402{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00402{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m73_c00402{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00402{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00402{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m66_c00402{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m62_c00402{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m46_c00402{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c00402{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00402{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00402{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m69_c00402{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00402{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m82_c00402{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00402{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m88_c00402{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m95_c00402{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00402{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mab_c00402{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00402{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00402{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m72_c00402{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m76_c00402{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00402{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mac_c00402{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00402{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m78_c00402{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m33_c00402{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00402{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.maa_c00402{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00402{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.ma_c00402{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00402{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m45_c00402{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00402{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m67_c00402{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00402{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00402{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00402{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m14_c00402{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00402{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00402{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m40_c00402{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00402{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m83_c00402{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00402{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3_c00402{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m74_c00402{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00402{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00402{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m51_c00402{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00402{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m54_c00402{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m97_c00402{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00402{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.mae_c00402{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m47_c00402{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00402{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m23_c00402{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00402{vertical-align:0.000000px;}
.ls0_c00402{letter-spacing:0.000000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{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__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00402{word-spacing:-5.044805px;}
.ws0_c00402{word-spacing:-3.170174px;}
.ws7_c00402{word-spacing:0.000000px;}
.ws4_c00402{word-spacing:5.740741px;}
.ws1_c00402{word-spacing:6.320838px;}
.ws3_c00402{word-spacing:6.538312px;}
.ws5_c00402{word-spacing:7.500000px;}
.ws2_c00402{word-spacing:10.500000px;}
._0_c00402{width:36.000000px;}
.fc0_c00402{color:transparent;}
.fs0_c00402{font-size:54.000000px;}
.y0_c00402{bottom:0.000000px;}
.y2c_c00402{bottom:151.500000px;}
.y2b_c00402{bottom:177.600000px;}
.y2a_c00402{bottom:197.400000px;}
.y29_c00402{bottom:217.500000px;}
.y28_c00402{bottom:237.300000px;}
.y27_c00402{bottom:257.100000px;}
.y26_c00402{bottom:276.900000px;}
.y25_c00402{bottom:296.700000px;}
.y24_c00402{bottom:316.500000px;}
.y23_c00402{bottom:336.300000px;}
.y22_c00402{bottom:356.100000px;}
.y21_c00402{bottom:376.200000px;}
.y20_c00402{bottom:395.700000px;}
.y1f_c00402{bottom:415.350000px;}
.y1e_c00402{bottom:435.450000px;}
.y1d_c00402{bottom:455.250000px;}
.y1c_c00402{bottom:475.050000px;}
.y1b_c00402{bottom:494.850000px;}
.y1a_c00402{bottom:515.400000px;}
.y19_c00402{bottom:535.200000px;}
.y18_c00402{bottom:555.000000px;}
.y17_c00402{bottom:574.500000px;}
.y16_c00402{bottom:594.300000px;}
.y15_c00402{bottom:631.050000px;}
.y14_c00402{bottom:652.350000px;}
.y13_c00402{bottom:672.450000px;}
.y12_c00402{bottom:692.250000px;}
.y11_c00402{bottom:711.750000px;}
.y10_c00402{bottom:731.550000px;}
.yf_c00402{bottom:751.350000px;}
.ye_c00402{bottom:771.450000px;}
.yd_c00402{bottom:790.950000px;}
.yc_c00402{bottom:810.150000px;}
.yb_c00402{bottom:831.000000px;}
.ya_c00402{bottom:850.800000px;}
.y9_c00402{bottom:870.600000px;}
.y8_c00402{bottom:890.700000px;}
.y7_c00402{bottom:910.500000px;}
.y6_c00402{bottom:930.600000px;}
.y5_c00402{bottom:950.700000px;}
.y4_c00402{bottom:970.200000px;}
.y3_c00402{bottom:990.000000px;}
.y2_c00402{bottom:1010.100000px;}
.y1_c00402{bottom:1047.600000px;}
.h2_c00402{height:54.000000px;}
.h1_c00402{height:1166.250000px;}
.h0_c00402{height:1166.400056px;}
.w0_c00402{width:920.879975px;}
.w1_c00402{width:921.000000px;}
.x0_c00402{left:0.000000px;}
.xc6_c00402{left:168.150000px;}
.x8c_c00402{left:169.500000px;}
.x3_c00402{left:171.000000px;}
.x1_c00402{left:172.050000px;}
.xc7_c00402{left:186.900000px;}
.xf2_c00402{left:189.000000px;}
.x9f_c00402{left:190.800000px;}
.x12b_c00402{left:193.650000px;}
.x36_c00402{left:194.700000px;}
.x60_c00402{left:197.100000px;}
.x16_c00402{left:199.200000px;}
.xd9_c00402{left:200.250000px;}
.x4_c00402{left:201.300000px;}
.xfb_c00402{left:203.700000px;}
.x113_c00402{left:206.550000px;}
.x78_c00402{left:208.500000px;}
.x8d_c00402{left:210.150000px;}
.x26_c00402{left:212.700000px;}
.xe6_c00402{left:213.900000px;}
.x55_c00402{left:214.950000px;}
.xf7_c00402{left:217.350000px;}
.xce_c00402{left:219.150000px;}
.xfe_c00402{left:222.000000px;}
.x27_c00402{left:224.550000px;}
.x5_c00402{left:226.500000px;}
.xbd_c00402{left:227.850000px;}
.x84_c00402{left:229.350000px;}
.x61_c00402{left:233.100000px;}
.x124_c00402{left:235.500000px;}
.x56_c00402{left:238.350000px;}
.x6d_c00402{left:240.150000px;}
.x37_c00402{left:241.200000px;}
.xab_c00402{left:243.000000px;}
.x62_c00402{left:244.650000px;}
.x97_c00402{left:247.050000px;}
.xc8_c00402{left:248.100000px;}
.xf3_c00402{left:249.450000px;}
.x4c_c00402{left:250.650000px;}
.xe0_c00402{left:253.200000px;}
.x6_c00402{left:256.350000px;}
.x41_c00402{left:257.400000px;}
.xf8_c00402{left:259.800000px;}
.x17_c00402{left:261.900000px;}
.x57_c00402{left:265.350000px;}
.x63_c00402{left:267.000000px;}
.x121_c00402{left:268.800000px;}
.xf4_c00402{left:270.000000px;}
.x125_c00402{left:271.200000px;}
.x8e_c00402{left:272.400000px;}
.x28_c00402{left:274.650000px;}
.x98_c00402{left:275.850000px;}
.xe1_c00402{left:278.700000px;}
.x79_c00402{left:280.800000px;}
.x42_c00402{left:282.600000px;}
.xb4_c00402{left:285.000000px;}
.x137_c00402{left:289.050000px;}
.x64_c00402{left:290.100000px;}
.x12d_c00402{left:291.150000px;}
.xd4_c00402{left:292.500000px;}
.x11a_c00402{left:293.550000px;}
.x83_c00402{left:295.200000px;}
.x18_c00402{left:296.850000px;}
.x8f_c00402{left:300.450000px;}
.x6e_c00402{left:303.150000px;}
.x38_c00402{left:304.500000px;}
.x7_c00402{left:306.750000px;}
.xe2_c00402{left:309.300000px;}
.x85_c00402{left:311.400000px;}
.x12c_c00402{left:312.450000px;}
.x4d_c00402{left:316.200000px;}
.xa0_c00402{left:317.850000px;}
.xda_c00402{left:320.100000px;}
.x43_c00402{left:323.700000px;}
.x10e_c00402{left:325.050000px;}
.xb5_c00402{left:327.900000px;}
.x29_c00402{left:328.950000px;}
.xff_c00402{left:330.300000px;}
.xbe_c00402{left:331.800000px;}
.xd5_c00402{left:333.600000px;}
.x19_c00402{left:335.400000px;}
.x12e_c00402{left:337.200000px;}
.xa1_c00402{left:338.400000px;}
.x7a_c00402{left:343.350000px;}
.x8_c00402{left:345.600000px;}
.xb6_c00402{left:347.700000px;}
.xd6_c00402{left:350.550000px;}
.xe3_c00402{left:352.800000px;}
.xa2_c00402{left:355.350000px;}
.x4e_c00402{left:358.350000px;}
.x9_c00402{left:362.850000px;}
.x2a_c00402{left:363.900000px;}
.xdb_c00402{left:366.150000px;}
.x58_c00402{left:367.950000px;}
.x39_c00402{left:370.050000px;}
.xbf_c00402{left:371.850000px;}
.x6f_c00402{left:373.650000px;}
.x114_c00402{left:375.000000px;}
.x1a_c00402{left:377.100000px;}
.x108_c00402{left:380.100000px;}
.xa3_c00402{left:383.400000px;}
.xa_c00402{left:384.450000px;}
.x65_c00402{left:385.800000px;}
.x59_c00402{left:387.450000px;}
.x100_c00402{left:388.950000px;}
.x126_c00402{left:391.050000px;}
.xe7_c00402{left:392.850000px;}
.x104_c00402{left:394.200000px;}
.xcf_c00402{left:396.000000px;}
.xfc_c00402{left:399.750000px;}
.x115_c00402{left:400.950000px;}
.xc9_c00402{left:402.450000px;}
.x101_c00402{left:405.900000px;}
.xc0_c00402{left:408.150000px;}
.xb_c00402{left:409.950000px;}
.xa4_c00402{left:412.200000px;}
.x86_c00402{left:414.000000px;}
.x2b_c00402{left:415.050000px;}
.x109_c00402{left:416.850000px;}
.x1b_c00402{left:420.000000px;}
.x66_c00402{left:421.050000px;}
.x7b_c00402{left:426.150000px;}
.x12f_c00402{left:427.200000px;}
.x44_c00402{left:431.700000px;}
.x102_c00402{left:432.900000px;}
.x90_c00402{left:433.950000px;}
.xe4_c00402{left:435.300000px;}
.x122_c00402{left:436.950000px;}
.x5a_c00402{left:439.350000px;}
.xb7_c00402{left:443.100000px;}
.x2c_c00402{left:445.650000px;}
.x134_c00402{left:446.700000px;}
.x4f_c00402{left:448.050000px;}
.x11b_c00402{left:449.100000px;}
.xca_c00402{left:451.050000px;}
.x1c_c00402{left:452.100000px;}
.x91_c00402{left:453.750000px;}
.x45_c00402{left:455.100000px;}
.xac_c00402{left:457.200000px;}
.xc_c00402{left:458.250000px;}
.xf5_c00402{left:460.050000px;}
.x123_c00402{left:462.450000px;}
.xe8_c00402{left:465.900000px;}
.x7c_c00402{left:467.250000px;}
.x2_c00402{left:469.050000px;}
.x11c_c00402{left:470.700000px;}
.x70_c00402{left:473.700000px;}
.x105_c00402{left:476.250000px;}
.xb8_c00402{left:477.300000px;}
.x3a_c00402{left:479.550000px;}
.xd_c00402{left:481.350000px;}
.x127_c00402{left:482.550000px;}
.x103_c00402{left:483.600000px;}
.xe9_c00402{left:486.000000px;}
.x99_c00402{left:490.500000px;}
.x67_c00402{left:492.600000px;}
.xb9_c00402{left:494.550000px;}
.x2d_c00402{left:495.750000px;}
.xee_c00402{left:497.250000px;}
.x10a_c00402{left:498.900000px;}
.x71_c00402{left:501.450000px;}
.xa5_c00402{left:504.600000px;}
.x1d_c00402{left:507.150000px;}
.x116_c00402{left:508.350000px;}
.xe_c00402{left:509.850000px;}
.xea_c00402{left:511.200000px;}
.x3b_c00402{left:512.700000px;}
.x2e_c00402{left:515.550000px;}
.x46_c00402{left:517.350000px;}
.xcb_c00402{left:519.150000px;}
.xf9_c00402{left:521.400000px;}
.xdc_c00402{left:524.550000px;}
.x50_c00402{left:528.000000px;}
.x106_c00402{left:529.950000px;}
.xad_c00402{left:531.000000px;}
.x1e_c00402{left:532.650000px;}
.xc1_c00402{left:533.700000px;}
.x9a_c00402{left:535.500000px;}
.xd0_c00402{left:536.850000px;}
.x2f_c00402{left:538.650000px;}
.x10f_c00402{left:540.900000px;}
.x47_c00402{left:542.250000px;}
.xa6_c00402{left:544.950000px;}
.x11d_c00402{left:546.300000px;}
.x128_c00402{left:547.650000px;}
.x3c_c00402{left:549.000000px;}
.xf_c00402{left:550.500000px;}
.x68_c00402{left:552.300000px;}
.x138_c00402{left:553.500000px;}
.x92_c00402{left:554.550000px;}
.x30_c00402{left:555.600000px;}
.xae_c00402{left:560.100000px;}
.x135_c00402{left:561.900000px;}
.xba_c00402{left:564.450000px;}
.x9b_c00402{left:566.100000px;}
.x110_c00402{left:568.950000px;}
.xa7_c00402{left:573.450000px;}
.xc2_c00402{left:575.400000px;}
.x31_c00402{left:576.900000px;}
.x1f_c00402{left:578.400000px;}
.xfd_c00402{left:579.450000px;}
.x130_c00402{left:580.950000px;}
.x69_c00402{left:582.900000px;}
.x5b_c00402{left:584.100000px;}
.x10b_c00402{left:587.400000px;}
.x87_c00402{left:591.150000px;}
.x72_c00402{left:592.200000px;}
.x10_c00402{left:594.000000px;}
.x5c_c00402{left:595.650000px;}
.x9c_c00402{left:597.450000px;}
.x131_c00402{left:598.650000px;}
.xaf_c00402{left:601.500000px;}
.xd7_c00402{left:603.600000px;}
.x7d_c00402{left:606.000000px;}
.x51_c00402{left:608.700000px;}
.x48_c00402{left:611.700000px;}
.xc3_c00402{left:613.200000px;}
.x117_c00402{left:614.250000px;}
.x32_c00402{left:616.500000px;}
.xdd_c00402{left:618.300000px;}
.x20_c00402{left:619.500000px;}
.x107_c00402{left:622.200000px;}
.x11e_c00402{left:623.700000px;}
.xa8_c00402{left:625.650000px;}
.x11_c00402{left:627.900000px;}
.xbb_c00402{left:631.050000px;}
.x49_c00402{left:632.550000px;}
.x7e_c00402{left:633.750000px;}
.xef_c00402{left:635.400000px;}
.x136_c00402{left:636.450000px;}
.x93_c00402{left:639.150000px;}
.x129_c00402{left:640.200000px;}
.xb0_c00402{left:642.900000px;}
.xd1_c00402{left:645.900000px;}
.x3d_c00402{left:648.750000px;}
.x73_c00402{left:655.200000px;}
.x118_c00402{left:656.400000px;}
.x88_c00402{left:659.850000px;}
.x12_c00402{left:661.800000px;}
.xb1_c00402{left:663.000000px;}
.x52_c00402{left:665.550000px;}
.x6a_c00402{left:667.200000px;}
.x33_c00402{left:668.700000px;}
.xeb_c00402{left:670.050000px;}
.x74_c00402{left:672.150000px;}
.x94_c00402{left:676.200000px;}
.x119_c00402{left:677.700000px;}
.x89_c00402{left:683.250000px;}
.x21_c00402{left:684.300000px;}
.x10c_c00402{left:686.400000px;}
.x11f_c00402{left:687.450000px;}
.x13_c00402{left:690.300000px;}
.x3e_c00402{left:691.650000px;}
.xb2_c00402{left:693.600000px;}
.x8a_c00402{left:696.600000px;}
.x95_c00402{left:698.850000px;}
.x132_c00402{left:703.350000px;}
.xd2_c00402{left:706.050000px;}
.xf6_c00402{left:707.250000px;}
.x22_c00402{left:709.500000px;}
.x3f_c00402{left:713.550000px;}
.xd8_c00402{left:715.200000px;}
.x5d_c00402{left:716.550000px;}
.x6b_c00402{left:719.400000px;}
.x7f_c00402{left:723.000000px;}
.xa9_c00402{left:725.400000px;}
.x4a_c00402{left:727.650000px;}
.x9d_c00402{left:729.150000px;}
.x75_c00402{left:731.550000px;}
.xec_c00402{left:732.750000px;}
.x34_c00402{left:733.800000px;}
.x5e_c00402{left:735.300000px;}
.x8b_c00402{left:739.050000px;}
.x133_c00402{left:740.700000px;}
.xde_c00402{left:742.500000px;}
.x40_c00402{left:744.900000px;}
.x53_c00402{left:747.300000px;}
.xc4_c00402{left:749.250000px;}
.x23_c00402{left:750.900000px;}
.x80_c00402{left:752.100000px;}
.xed_c00402{left:754.050000px;}
.xbc_c00402{left:756.000000px;}
.x6c_c00402{left:757.200000px;}
.xcc_c00402{left:759.450000px;}
.x76_c00402{left:761.400000px;}
.xf0_c00402{left:762.450000px;}
.x9e_c00402{left:763.650000px;}
.xd3_c00402{left:768.750000px;}
.x81_c00402{left:770.100000px;}
.x14_c00402{left:771.300000px;}
.x35_c00402{left:773.100000px;}
.x96_c00402{left:774.450000px;}
.x24_c00402{left:776.400000px;}
.x5f_c00402{left:779.550000px;}
.x111_c00402{left:781.500000px;}
.x12a_c00402{left:782.700000px;}
.xf1_c00402{left:783.750000px;}
.x4b_c00402{left:784.950000px;}
.xfa_c00402{left:786.900000px;}
.xcd_c00402{left:787.950000px;}
.xaa_c00402{left:790.950000px;}
.x54_c00402{left:792.000000px;}
.xe5_c00402{left:793.200000px;}
.x77_c00402{left:796.350000px;}
.xc5_c00402{left:797.850000px;}
.x82_c00402{left:801.750000px;}
.x10d_c00402{left:804.450000px;}
.xdf_c00402{left:810.150000px;}
.x112_c00402{left:811.350000px;}
.xb3_c00402{left:821.400000px;}
.x120_c00402{left:823.200000px;}
.x25_c00402{left:825.750000px;}
.x15_c00402{left:827.400000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws6_c00402{word-spacing:-4.484271pt;}
.ws0_c00402{word-spacing:-2.817932pt;}
.ws7_c00402{word-spacing:0.000000pt;}
.ws4_c00402{word-spacing:5.102881pt;}
.ws1_c00402{word-spacing:5.618523pt;}
.ws3_c00402{word-spacing:5.811833pt;}
.ws5_c00402{word-spacing:6.666667pt;}
.ws2_c00402{word-spacing:9.333333pt;}
._0_c00402{width:32.000000pt;}
.fs0_c00402{font-size:48.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y2c_c00402{bottom:134.666667pt;}
.y2b_c00402{bottom:157.866667pt;}
.y2a_c00402{bottom:175.466667pt;}
.y29_c00402{bottom:193.333333pt;}
.y28_c00402{bottom:210.933333pt;}
.y27_c00402{bottom:228.533333pt;}
.y26_c00402{bottom:246.133333pt;}
.y25_c00402{bottom:263.733333pt;}
.y24_c00402{bottom:281.333333pt;}
.y23_c00402{bottom:298.933333pt;}
.y22_c00402{bottom:316.533333pt;}
.y21_c00402{bottom:334.400000pt;}
.y20_c00402{bottom:351.733333pt;}
.y1f_c00402{bottom:369.200000pt;}
.y1e_c00402{bottom:387.066667pt;}
.y1d_c00402{bottom:404.666667pt;}
.y1c_c00402{bottom:422.266667pt;}
.y1b_c00402{bottom:439.866667pt;}
.y1a_c00402{bottom:458.133333pt;}
.y19_c00402{bottom:475.733333pt;}
.y18_c00402{bottom:493.333333pt;}
.y17_c00402{bottom:510.666667pt;}
.y16_c00402{bottom:528.266667pt;}
.y15_c00402{bottom:560.933333pt;}
.y14_c00402{bottom:579.866667pt;}
.y13_c00402{bottom:597.733333pt;}
.y12_c00402{bottom:615.333333pt;}
.y11_c00402{bottom:632.666667pt;}
.y10_c00402{bottom:650.266667pt;}
.yf_c00402{bottom:667.866667pt;}
.ye_c00402{bottom:685.733333pt;}
.yd_c00402{bottom:703.066667pt;}
.yc_c00402{bottom:720.133333pt;}
.yb_c00402{bottom:738.666667pt;}
.ya_c00402{bottom:756.266667pt;}
.y9_c00402{bottom:773.866667pt;}
.y8_c00402{bottom:791.733333pt;}
.y7_c00402{bottom:809.333333pt;}
.y6_c00402{bottom:827.200000pt;}
.y5_c00402{bottom:845.066667pt;}
.y4_c00402{bottom:862.400000pt;}
.y3_c00402{bottom:880.000000pt;}
.y2_c00402{bottom:897.866667pt;}
.y1_c00402{bottom:931.200000pt;}
.h2_c00402{height:48.000000pt;}
.h1_c00402{height:1036.666667pt;}
.h0_c00402{height:1036.800049pt;}
.w0_c00402{width:818.559977pt;}
.w1_c00402{width:818.666667pt;}
.x0_c00402{left:0.000000pt;}
.xc6_c00402{left:149.466667pt;}
.x8c_c00402{left:150.666667pt;}
.x3_c00402{left:152.000000pt;}
.x1_c00402{left:152.933333pt;}
.xc7_c00402{left:166.133333pt;}
.xf2_c00402{left:168.000000pt;}
.x9f_c00402{left:169.600000pt;}
.x12b_c00402{left:172.133333pt;}
.x36_c00402{left:173.066667pt;}
.x60_c00402{left:175.200000pt;}
.x16_c00402{left:177.066667pt;}
.xd9_c00402{left:178.000000pt;}
.x4_c00402{left:178.933333pt;}
.xfb_c00402{left:181.066667pt;}
.x113_c00402{left:183.600000pt;}
.x78_c00402{left:185.333333pt;}
.x8d_c00402{left:186.800000pt;}
.x26_c00402{left:189.066667pt;}
.xe6_c00402{left:190.133333pt;}
.x55_c00402{left:191.066667pt;}
.xf7_c00402{left:193.200000pt;}
.xce_c00402{left:194.800000pt;}
.xfe_c00402{left:197.333333pt;}
.x27_c00402{left:199.600000pt;}
.x5_c00402{left:201.333333pt;}
.xbd_c00402{left:202.533333pt;}
.x84_c00402{left:203.866667pt;}
.x61_c00402{left:207.200000pt;}
.x124_c00402{left:209.333333pt;}
.x56_c00402{left:211.866667pt;}
.x6d_c00402{left:213.466667pt;}
.x37_c00402{left:214.400000pt;}
.xab_c00402{left:216.000000pt;}
.x62_c00402{left:217.466667pt;}
.x97_c00402{left:219.600000pt;}
.xc8_c00402{left:220.533333pt;}
.xf3_c00402{left:221.733333pt;}
.x4c_c00402{left:222.800000pt;}
.xe0_c00402{left:225.066667pt;}
.x6_c00402{left:227.866667pt;}
.x41_c00402{left:228.800000pt;}
.xf8_c00402{left:230.933333pt;}
.x17_c00402{left:232.800000pt;}
.x57_c00402{left:235.866667pt;}
.x63_c00402{left:237.333333pt;}
.x121_c00402{left:238.933333pt;}
.xf4_c00402{left:240.000000pt;}
.x125_c00402{left:241.066667pt;}
.x8e_c00402{left:242.133333pt;}
.x28_c00402{left:244.133333pt;}
.x98_c00402{left:245.200000pt;}
.xe1_c00402{left:247.733333pt;}
.x79_c00402{left:249.600000pt;}
.x42_c00402{left:251.200000pt;}
.xb4_c00402{left:253.333333pt;}
.x137_c00402{left:256.933333pt;}
.x64_c00402{left:257.866667pt;}
.x12d_c00402{left:258.800000pt;}
.xd4_c00402{left:260.000000pt;}
.x11a_c00402{left:260.933333pt;}
.x83_c00402{left:262.400000pt;}
.x18_c00402{left:263.866667pt;}
.x8f_c00402{left:267.066667pt;}
.x6e_c00402{left:269.466667pt;}
.x38_c00402{left:270.666667pt;}
.x7_c00402{left:272.666667pt;}
.xe2_c00402{left:274.933333pt;}
.x85_c00402{left:276.800000pt;}
.x12c_c00402{left:277.733333pt;}
.x4d_c00402{left:281.066667pt;}
.xa0_c00402{left:282.533333pt;}
.xda_c00402{left:284.533333pt;}
.x43_c00402{left:287.733333pt;}
.x10e_c00402{left:288.933333pt;}
.xb5_c00402{left:291.466667pt;}
.x29_c00402{left:292.400000pt;}
.xff_c00402{left:293.600000pt;}
.xbe_c00402{left:294.933333pt;}
.xd5_c00402{left:296.533333pt;}
.x19_c00402{left:298.133333pt;}
.x12e_c00402{left:299.733333pt;}
.xa1_c00402{left:300.800000pt;}
.x7a_c00402{left:305.200000pt;}
.x8_c00402{left:307.200000pt;}
.xb6_c00402{left:309.066667pt;}
.xd6_c00402{left:311.600000pt;}
.xe3_c00402{left:313.600000pt;}
.xa2_c00402{left:315.866667pt;}
.x4e_c00402{left:318.533333pt;}
.x9_c00402{left:322.533333pt;}
.x2a_c00402{left:323.466667pt;}
.xdb_c00402{left:325.466667pt;}
.x58_c00402{left:327.066667pt;}
.x39_c00402{left:328.933333pt;}
.xbf_c00402{left:330.533333pt;}
.x6f_c00402{left:332.133333pt;}
.x114_c00402{left:333.333333pt;}
.x1a_c00402{left:335.200000pt;}
.x108_c00402{left:337.866667pt;}
.xa3_c00402{left:340.800000pt;}
.xa_c00402{left:341.733333pt;}
.x65_c00402{left:342.933333pt;}
.x59_c00402{left:344.400000pt;}
.x100_c00402{left:345.733333pt;}
.x126_c00402{left:347.600000pt;}
.xe7_c00402{left:349.200000pt;}
.x104_c00402{left:350.400000pt;}
.xcf_c00402{left:352.000000pt;}
.xfc_c00402{left:355.333333pt;}
.x115_c00402{left:356.400000pt;}
.xc9_c00402{left:357.733333pt;}
.x101_c00402{left:360.800000pt;}
.xc0_c00402{left:362.800000pt;}
.xb_c00402{left:364.400000pt;}
.xa4_c00402{left:366.400000pt;}
.x86_c00402{left:368.000000pt;}
.x2b_c00402{left:368.933333pt;}
.x109_c00402{left:370.533333pt;}
.x1b_c00402{left:373.333333pt;}
.x66_c00402{left:374.266667pt;}
.x7b_c00402{left:378.800000pt;}
.x12f_c00402{left:379.733333pt;}
.x44_c00402{left:383.733333pt;}
.x102_c00402{left:384.800000pt;}
.x90_c00402{left:385.733333pt;}
.xe4_c00402{left:386.933333pt;}
.x122_c00402{left:388.400000pt;}
.x5a_c00402{left:390.533333pt;}
.xb7_c00402{left:393.866667pt;}
.x2c_c00402{left:396.133333pt;}
.x134_c00402{left:397.066667pt;}
.x4f_c00402{left:398.266667pt;}
.x11b_c00402{left:399.200000pt;}
.xca_c00402{left:400.933333pt;}
.x1c_c00402{left:401.866667pt;}
.x91_c00402{left:403.333333pt;}
.x45_c00402{left:404.533333pt;}
.xac_c00402{left:406.400000pt;}
.xc_c00402{left:407.333333pt;}
.xf5_c00402{left:408.933333pt;}
.x123_c00402{left:411.066667pt;}
.xe8_c00402{left:414.133333pt;}
.x7c_c00402{left:415.333333pt;}
.x2_c00402{left:416.933333pt;}
.x11c_c00402{left:418.400000pt;}
.x70_c00402{left:421.066667pt;}
.x105_c00402{left:423.333333pt;}
.xb8_c00402{left:424.266667pt;}
.x3a_c00402{left:426.266667pt;}
.xd_c00402{left:427.866667pt;}
.x127_c00402{left:428.933333pt;}
.x103_c00402{left:429.866667pt;}
.xe9_c00402{left:432.000000pt;}
.x99_c00402{left:436.000000pt;}
.x67_c00402{left:437.866667pt;}
.xb9_c00402{left:439.600000pt;}
.x2d_c00402{left:440.666667pt;}
.xee_c00402{left:442.000000pt;}
.x10a_c00402{left:443.466667pt;}
.x71_c00402{left:445.733333pt;}
.xa5_c00402{left:448.533333pt;}
.x1d_c00402{left:450.800000pt;}
.x116_c00402{left:451.866667pt;}
.xe_c00402{left:453.200000pt;}
.xea_c00402{left:454.400000pt;}
.x3b_c00402{left:455.733333pt;}
.x2e_c00402{left:458.266667pt;}
.x46_c00402{left:459.866667pt;}
.xcb_c00402{left:461.466667pt;}
.xf9_c00402{left:463.466667pt;}
.xdc_c00402{left:466.266667pt;}
.x50_c00402{left:469.333333pt;}
.x106_c00402{left:471.066667pt;}
.xad_c00402{left:472.000000pt;}
.x1e_c00402{left:473.466667pt;}
.xc1_c00402{left:474.400000pt;}
.x9a_c00402{left:476.000000pt;}
.xd0_c00402{left:477.200000pt;}
.x2f_c00402{left:478.800000pt;}
.x10f_c00402{left:480.800000pt;}
.x47_c00402{left:482.000000pt;}
.xa6_c00402{left:484.400000pt;}
.x11d_c00402{left:485.600000pt;}
.x128_c00402{left:486.800000pt;}
.x3c_c00402{left:488.000000pt;}
.xf_c00402{left:489.333333pt;}
.x68_c00402{left:490.933333pt;}
.x138_c00402{left:492.000000pt;}
.x92_c00402{left:492.933333pt;}
.x30_c00402{left:493.866667pt;}
.xae_c00402{left:497.866667pt;}
.x135_c00402{left:499.466667pt;}
.xba_c00402{left:501.733333pt;}
.x9b_c00402{left:503.200000pt;}
.x110_c00402{left:505.733333pt;}
.xa7_c00402{left:509.733333pt;}
.xc2_c00402{left:511.466667pt;}
.x31_c00402{left:512.800000pt;}
.x1f_c00402{left:514.133333pt;}
.xfd_c00402{left:515.066667pt;}
.x130_c00402{left:516.400000pt;}
.x69_c00402{left:518.133333pt;}
.x5b_c00402{left:519.200000pt;}
.x10b_c00402{left:522.133333pt;}
.x87_c00402{left:525.466667pt;}
.x72_c00402{left:526.400000pt;}
.x10_c00402{left:528.000000pt;}
.x5c_c00402{left:529.466667pt;}
.x9c_c00402{left:531.066667pt;}
.x131_c00402{left:532.133333pt;}
.xaf_c00402{left:534.666667pt;}
.xd7_c00402{left:536.533333pt;}
.x7d_c00402{left:538.666667pt;}
.x51_c00402{left:541.066667pt;}
.x48_c00402{left:543.733333pt;}
.xc3_c00402{left:545.066667pt;}
.x117_c00402{left:546.000000pt;}
.x32_c00402{left:548.000000pt;}
.xdd_c00402{left:549.600000pt;}
.x20_c00402{left:550.666667pt;}
.x107_c00402{left:553.066667pt;}
.x11e_c00402{left:554.400000pt;}
.xa8_c00402{left:556.133333pt;}
.x11_c00402{left:558.133333pt;}
.xbb_c00402{left:560.933333pt;}
.x49_c00402{left:562.266667pt;}
.x7e_c00402{left:563.333333pt;}
.xef_c00402{left:564.800000pt;}
.x136_c00402{left:565.733333pt;}
.x93_c00402{left:568.133333pt;}
.x129_c00402{left:569.066667pt;}
.xb0_c00402{left:571.466667pt;}
.xd1_c00402{left:574.133333pt;}
.x3d_c00402{left:576.666667pt;}
.x73_c00402{left:582.400000pt;}
.x118_c00402{left:583.466667pt;}
.x88_c00402{left:586.533333pt;}
.x12_c00402{left:588.266667pt;}
.xb1_c00402{left:589.333333pt;}
.x52_c00402{left:591.600000pt;}
.x6a_c00402{left:593.066667pt;}
.x33_c00402{left:594.400000pt;}
.xeb_c00402{left:595.600000pt;}
.x74_c00402{left:597.466667pt;}
.x94_c00402{left:601.066667pt;}
.x119_c00402{left:602.400000pt;}
.x89_c00402{left:607.333333pt;}
.x21_c00402{left:608.266667pt;}
.x10c_c00402{left:610.133333pt;}
.x11f_c00402{left:611.066667pt;}
.x13_c00402{left:613.600000pt;}
.x3e_c00402{left:614.800000pt;}
.xb2_c00402{left:616.533333pt;}
.x8a_c00402{left:619.200000pt;}
.x95_c00402{left:621.200000pt;}
.x132_c00402{left:625.200000pt;}
.xd2_c00402{left:627.600000pt;}
.xf6_c00402{left:628.666667pt;}
.x22_c00402{left:630.666667pt;}
.x3f_c00402{left:634.266667pt;}
.xd8_c00402{left:635.733333pt;}
.x5d_c00402{left:636.933333pt;}
.x6b_c00402{left:639.466667pt;}
.x7f_c00402{left:642.666667pt;}
.xa9_c00402{left:644.800000pt;}
.x4a_c00402{left:646.800000pt;}
.x9d_c00402{left:648.133333pt;}
.x75_c00402{left:650.266667pt;}
.xec_c00402{left:651.333333pt;}
.x34_c00402{left:652.266667pt;}
.x5e_c00402{left:653.600000pt;}
.x8b_c00402{left:656.933333pt;}
.x133_c00402{left:658.400000pt;}
.xde_c00402{left:660.000000pt;}
.x40_c00402{left:662.133333pt;}
.x53_c00402{left:664.266667pt;}
.xc4_c00402{left:666.000000pt;}
.x23_c00402{left:667.466667pt;}
.x80_c00402{left:668.533333pt;}
.xed_c00402{left:670.266667pt;}
.xbc_c00402{left:672.000000pt;}
.x6c_c00402{left:673.066667pt;}
.xcc_c00402{left:675.066667pt;}
.x76_c00402{left:676.800000pt;}
.xf0_c00402{left:677.733333pt;}
.x9e_c00402{left:678.800000pt;}
.xd3_c00402{left:683.333333pt;}
.x81_c00402{left:684.533333pt;}
.x14_c00402{left:685.600000pt;}
.x35_c00402{left:687.200000pt;}
.x96_c00402{left:688.400000pt;}
.x24_c00402{left:690.133333pt;}
.x5f_c00402{left:692.933333pt;}
.x111_c00402{left:694.666667pt;}
.x12a_c00402{left:695.733333pt;}
.xf1_c00402{left:696.666667pt;}
.x4b_c00402{left:697.733333pt;}
.xfa_c00402{left:699.466667pt;}
.xcd_c00402{left:700.400000pt;}
.xaa_c00402{left:703.066667pt;}
.x54_c00402{left:704.000000pt;}
.xe5_c00402{left:705.066667pt;}
.x77_c00402{left:707.866667pt;}
.xc5_c00402{left:709.200000pt;}
.x82_c00402{left:712.666667pt;}
.x10d_c00402{left:715.066667pt;}
.xdf_c00402{left:720.133333pt;}
.x112_c00402{left:721.200000pt;}
.xb3_c00402{left:730.133333pt;}
.x120_c00402{left:731.733333pt;}
.x25_c00402{left:734.000000pt;}
.x15_c00402{left:735.466667pt;}
}





/* 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_c00403 {
    display:none;
  }
  .loading-indicator_c00403.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00403 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_c00403 { 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_c00403" -> "#page-container .classname_c00403")
 */
.pf_c00403 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00403 { /* 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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00403 { /* 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_c00403 { /* 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_c00403 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00403 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00403 {overflow:visible;}
  }
}
.c_c00403 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00403 { /* 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_c00403:after { /* webkit #35443 */
  content: '';
}
.t_c00403:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00403 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 */
}
.__c00403 { /* 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_c00403 { /* info for Javascript */
  display:none;
}
.l_c00403 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00403 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00403 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00403: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_c00403 {
    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_c00403.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00403.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_c00403 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00403{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00403;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.000000;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;}
.m8_c00403{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m0_c00403{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m9_c00403{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m15_c00403{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m7_c00403{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m16_c00403{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00403{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1_c00403{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00403{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5_c00403{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4_c00403{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m17_c00403{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m2_c00403{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3_c00403{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m12_c00403{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.ma_c00403{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m13_c00403{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00403{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);}
.m1c_c00403{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19_c00403{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00403{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf_c00403{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mb_c00403{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.md_c00403{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m11_c00403{transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362750,0.000000,0.000000,0.250000,0,0);}
.me_c00403{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.m14_c00403{transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395500,0.000000,0.000000,0.250000,0,0);}
.m10_c00403{transform:matrix(0.577250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577250,0.000000,0.000000,0.250000,0,0);}
.m18_c00403{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.ls0_c00403{letter-spacing:0.000000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{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__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:0.000000px;}
.fc0_c00403{color:transparent;}
.fs1_c00403{font-size:30.000000px;}
.fs0_c00403{font-size:42.000000px;}
.fs2_c00403{font-size:54.000000px;}
.y0_c00403{bottom:0.000000px;}
.y7_c00403{bottom:66.600000px;}
.y6_c00403{bottom:82.050000px;}
.y5_c00403{bottom:96.150000px;}
.y4_c00403{bottom:124.200000px;}
.y3_c00403{bottom:157.650000px;}
.y2_c00403{bottom:595.050000px;}
.y1_c00403{bottom:624.900000px;}
.h3_c00403{height:30.000000px;}
.h2_c00403{height:42.000000px;}
.h4_c00403{height:54.000000px;}
.h1_c00403{height:1166.250000px;}
.h0_c00403{height:1166.400056px;}
.w0_c00403{width:920.879975px;}
.w1_c00403{width:921.000000px;}
.x0_c00403{left:0.000000px;}
.xb_c00403{left:23.400000px;}
.xc_c00403{left:45.300000px;}
.x1_c00403{left:48.900000px;}
.xd_c00403{left:63.600000px;}
.x11_c00403{left:72.000000px;}
.x2_c00403{left:74.400000px;}
.xe_c00403{left:86.250000px;}
.x16_c00403{left:105.150000px;}
.xf_c00403{left:107.100000px;}
.x14_c00403{left:125.550000px;}
.x12_c00403{left:127.500000px;}
.x17_c00403{left:130.650000px;}
.x13_c00403{left:136.200000px;}
.x3_c00403{left:138.900000px;}
.x4_c00403{left:147.900000px;}
.x10_c00403{left:153.900000px;}
.x18_c00403{left:162.300000px;}
.x5_c00403{left:184.200000px;}
.x15_c00403{left:193.650000px;}
.x6_c00403{left:229.500000px;}
.x7_c00403{left:239.550000px;}
.x8_c00403{left:278.400000px;}
.x9_c00403{left:803.100000px;}
.xa_c00403{left:826.500000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs1_c00403{font-size:26.666667pt;}
.fs0_c00403{font-size:37.333333pt;}
.fs2_c00403{font-size:48.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y7_c00403{bottom:59.200000pt;}
.y6_c00403{bottom:72.933333pt;}
.y5_c00403{bottom:85.466667pt;}
.y4_c00403{bottom:110.400000pt;}
.y3_c00403{bottom:140.133333pt;}
.y2_c00403{bottom:528.933333pt;}
.y1_c00403{bottom:555.466667pt;}
.h3_c00403{height:26.666667pt;}
.h2_c00403{height:37.333333pt;}
.h4_c00403{height:48.000000pt;}
.h1_c00403{height:1036.666667pt;}
.h0_c00403{height:1036.800049pt;}
.w0_c00403{width:818.559977pt;}
.w1_c00403{width:818.666667pt;}
.x0_c00403{left:0.000000pt;}
.xb_c00403{left:20.800000pt;}
.xc_c00403{left:40.266667pt;}
.x1_c00403{left:43.466667pt;}
.xd_c00403{left:56.533333pt;}
.x11_c00403{left:64.000000pt;}
.x2_c00403{left:66.133333pt;}
.xe_c00403{left:76.666667pt;}
.x16_c00403{left:93.466667pt;}
.xf_c00403{left:95.200000pt;}
.x14_c00403{left:111.600000pt;}
.x12_c00403{left:113.333333pt;}
.x17_c00403{left:116.133333pt;}
.x13_c00403{left:121.066667pt;}
.x3_c00403{left:123.466667pt;}
.x4_c00403{left:131.466667pt;}
.x10_c00403{left:136.800000pt;}
.x18_c00403{left:144.266667pt;}
.x5_c00403{left:163.733333pt;}
.x15_c00403{left:172.133333pt;}
.x6_c00403{left:204.000000pt;}
.x7_c00403{left:212.933333pt;}
.x8_c00403{left:247.466667pt;}
.x9_c00403{left:713.866667pt;}
.xa_c00403{left:734.666667pt;}
}





/* 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_c00404 {
    display:none;
  }
  .loading-indicator_c00404.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00404 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_c00404 { 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_c00404" -> "#page-container .classname_c00404")
 */
.pf_c00404 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00404 { /* 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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00404 { /* 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_c00404 { /* 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_c00404 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00404 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00404 {overflow:visible;}
  }
}
.c_c00404 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00404 { /* 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_c00404:after { /* webkit #35443 */
  content: '';
}
.t_c00404:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00404 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 */
}
.__c00404 { /* 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_c00404 { /* info for Javascript */
  display:none;
}
.l_c00404 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00404 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00404 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00404: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_c00404 {
    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_c00404.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00404.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_c00404 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00404{font-family:sans-serif;visibility:hidden;}
.sc__c00404{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
}
.y0_c00404{bottom:0.000000px;}
.h1_c00404{height:1166.250000px;}
.h0_c00404{height:1166.400056px;}
.w0_c00404{width:920.879975px;}
.w1_c00404{width:921.000000px;}
.x0_c00404{left:0.000000px;}
@media print{
.y0_c00404{bottom:0.000000pt;}
.h1_c00404{height:1036.666667pt;}
.h0_c00404{height:1036.800049pt;}
.w0_c00404{width:818.559977pt;}
.w1_c00404{width:818.666667pt;}
.x0_c00404{left:0.000000pt;}
}





/* 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_c00405 {
    display:none;
  }
  .loading-indicator_c00405.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00405 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_c00405 { 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_c00405" -> "#page-container .classname_c00405")
 */
.pf_c00405 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00405 { /* 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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00405 { /* 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_c00405 { /* 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_c00405 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00405 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00405 {overflow:visible;}
  }
}
.c_c00405 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00405 { /* 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_c00405:after { /* webkit #35443 */
  content: '';
}
.t_c00405:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00405 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 */
}
.__c00405 { /* 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_c00405 { /* info for Javascript */
  display:none;
}
.l_c00405 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00405 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00405 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00405: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_c00405 {
    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_c00405.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00405.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_c00405 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00405{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00405;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.000000;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;}
.m1c_c00405{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m92_c00405{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m17_c00405{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00405{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m91_c00405{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00405{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m27_c00405{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00405{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m23_c00405{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00405{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m64_c00405{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00405{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m25_c00405{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m59_c00405{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m98_c00405{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00405{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m83_c00405{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00405{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00405{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00405{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m43_c00405{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m54_c00405{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00405{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00405{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m96_c00405{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00405{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00405{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00405{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m65_c00405{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mae_c00405{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m68_c00405{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00405{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00405{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mab_c00405{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00405{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00405{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00405{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mb_c00405{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00405{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9_c00405{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00405{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00405{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m95_c00405{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m66_c00405{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m93_c00405{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m85_c00405{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00405{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m33_c00405{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m19_c00405{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m34_c00405{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m49_c00405{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00405{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00405{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00405{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.maa_c00405{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m26_c00405{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m73_c00405{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m22_c00405{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00405{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00405{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mad_c00405{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.mf_c00405{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m71_c00405{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m58_c00405{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00405{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m53_c00405{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m99_c00405{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00405{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m40_c00405{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00405{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mac_c00405{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m4_c00405{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m50_c00405{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m47_c00405{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m46_c00405{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m45_c00405{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m69_c00405{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00405{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m86_c00405{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00405{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m7_c00405{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00405{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.md_c00405{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14_c00405{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00405{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00405{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00405{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00405{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00405{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8_c00405{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m37_c00405{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m87_c00405{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m67_c00405{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00405{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00405{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00405{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m61_c00405{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m82_c00405{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00405{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m28_c00405{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00405{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m90_c00405{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m70_c00405{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00405{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00405{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00405{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00405{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00405{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00405{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00405{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m31_c00405{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00405{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00405{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m11_c00405{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma_c00405{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m42_c00405{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m60_c00405{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00405{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m29_c00405{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00405{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m35_c00405{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m76_c00405{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m72_c00405{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.maf_c00405{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00405{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00405{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00405{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m16_c00405{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00405{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00405{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m48_c00405{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m94_c00405{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00405{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m20_c00405{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00405{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m80_c00405{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00405{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m38_c00405{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00405{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m97_c00405{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m18_c00405{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m52_c00405{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00405{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m36_c00405{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00405{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m89_c00405{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00405{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00405{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12_c00405{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00405{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00405{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m88_c00405{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m78_c00405{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mc_c00405{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m63_c00405{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m51_c00405{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00405{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m32_c00405{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00405{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m41_c00405{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00405{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m74_c00405{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00405{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m84_c00405{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00405{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m56_c00405{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m30_c00405{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m44_c00405{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m24_c00405{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m39_c00405{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m57_c00405{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00405{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m81_c00405{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00405{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00405{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m55_c00405{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m79_c00405{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00405{vertical-align:0.000000px;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{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__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00405{word-spacing:-10.848214px;}
.ws1_c00405{word-spacing:-10.384615px;}
.ws2_c00405{word-spacing:-8.024691px;}
.wsa_c00405{word-spacing:-6.521739px;}
.ws0_c00405{word-spacing:-6.447368px;}
.wsb_c00405{word-spacing:0.000000px;}
.ws9_c00405{word-spacing:3.569754px;}
.ws7_c00405{word-spacing:3.883929px;}
.ws5_c00405{word-spacing:4.047619px;}
.ws4_c00405{word-spacing:9.605263px;}
.ws3_c00405{word-spacing:17.352941px;}
.ws8_c00405{word-spacing:892.500000px;}
.fc0_c00405{color:transparent;}
.fs0_c00405{font-size:54.000000px;}
.fs1_c00405{font-size:60.000000px;}
.y0_c00405{bottom:0.000000px;}
.y2c_c00405{bottom:153.000000px;}
.y2b_c00405{bottom:168.450000px;}
.y2a_c00405{bottom:183.900000px;}
.y29_c00405{bottom:229.050000px;}
.y28_c00405{bottom:248.550000px;}
.y27_c00405{bottom:268.650000px;}
.y26_c00405{bottom:288.450000px;}
.y25_c00405{bottom:308.250000px;}
.y24_c00405{bottom:328.350000px;}
.y23_c00405{bottom:348.150000px;}
.y22_c00405{bottom:368.250000px;}
.y21_c00405{bottom:388.050000px;}
.y20_c00405{bottom:407.850000px;}
.y1f_c00405{bottom:427.650000px;}
.y1e_c00405{bottom:447.450000px;}
.y1d_c00405{bottom:467.250000px;}
.y1c_c00405{bottom:487.350000px;}
.y1b_c00405{bottom:506.850000px;}
.y1a_c00405{bottom:526.950000px;}
.y19_c00405{bottom:546.750000px;}
.y18_c00405{bottom:566.550000px;}
.y17_c00405{bottom:586.350000px;}
.y16_c00405{bottom:606.150000px;}
.y15_c00405{bottom:626.250000px;}
.y14_c00405{bottom:646.050000px;}
.y13_c00405{bottom:666.150000px;}
.y12_c00405{bottom:685.950000px;}
.y11_c00405{bottom:705.750000px;}
.y10_c00405{bottom:725.850000px;}
.yf_c00405{bottom:745.650000px;}
.ye_c00405{bottom:765.450000px;}
.yd_c00405{bottom:785.550000px;}
.yc_c00405{bottom:805.350000px;}
.yb_c00405{bottom:825.150000px;}
.ya_c00405{bottom:845.250000px;}
.y9_c00405{bottom:865.200000px;}
.y8_c00405{bottom:885.300000px;}
.y7_c00405{bottom:905.100000px;}
.y6_c00405{bottom:924.900000px;}
.y5_c00405{bottom:944.700000px;}
.y4_c00405{bottom:964.800000px;}
.y3_c00405{bottom:984.600000px;}
.y2_c00405{bottom:1004.400000px;}
.y1_c00405{bottom:1042.950000px;}
.h2_c00405{height:54.000000px;}
.h3_c00405{height:60.000000px;}
.h1_c00405{height:1166.250000px;}
.h0_c00405{height:1166.400056px;}
.w0_c00405{width:920.879975px;}
.w1_c00405{width:921.000000px;}
.x0_c00405{left:0.000000px;}
.x10b_c00405{left:108.900000px;}
.xd3_c00405{left:110.100000px;}
.x56_c00405{left:111.300000px;}
.x13_c00405{left:112.500000px;}
.xfc_c00405{left:120.900000px;}
.xaa_c00405{left:129.300000px;}
.x100_c00405{left:134.400000px;}
.x22_c00405{left:137.700000px;}
.x4a_c00405{left:139.800000px;}
.x64_c00405{left:142.500000px;}
.x3_c00405{left:143.700000px;}
.xc3_c00405{left:147.600000px;}
.x124_c00405{left:149.550000px;}
.x3d_c00405{left:150.750000px;}
.x23_c00405{left:151.800000px;}
.x10c_c00405{left:154.650000px;}
.xe5_c00405{left:157.350000px;}
.x119_c00405{left:160.350000px;}
.xfd_c00405{left:161.550000px;}
.x105_c00405{left:162.750000px;}
.xbe_c00405{left:163.800000px;}
.x70_c00405{left:166.500000px;}
.xc4_c00405{left:168.150000px;}
.x65_c00405{left:169.500000px;}
.x4_c00405{left:176.100000px;}
.x31_c00405{left:177.450000px;}
.x111_c00405{left:179.100000px;}
.x24_c00405{left:180.300000px;}
.xcc_c00405{left:181.650000px;}
.x11a_c00405{left:185.550000px;}
.x71_c00405{left:186.600000px;}
.xdb_c00405{left:187.950000px;}
.x4b_c00405{left:189.150000px;}
.x10d_c00405{left:190.650000px;}
.x11f_c00405{left:192.150000px;}
.xe6_c00405{left:194.400000px;}
.x84_c00405{left:196.950000px;}
.xb5_c00405{left:202.800000px;}
.x131_c00405{left:205.800000px;}
.xd4_c00405{left:207.000000px;}
.x25_c00405{left:208.350000px;}
.x11b_c00405{left:209.700000px;}
.x8e_c00405{left:210.750000px;}
.x14_c00405{left:212.550000px;}
.x9b_c00405{left:213.750000px;}
.x57_c00405{left:215.700000px;}
.x120_c00405{left:218.850000px;}
.xe7_c00405{left:221.100000px;}
.x32_c00405{left:223.800000px;}
.xa2_c00405{left:226.050000px;}
.x3e_c00405{left:227.850000px;}
.xab_c00405{left:230.100000px;}
.xb6_c00405{left:231.600000px;}
.xf4_c00405{left:233.850000px;}
.x33_c00405{left:236.100000px;}
.x8f_c00405{left:237.450000px;}
.x5_c00405{left:240.150000px;}
.x106_c00405{left:241.200000px;}
.x3f_c00405{left:243.300000px;}
.x140_c00405{left:244.350000px;}
.x15_c00405{left:246.000000px;}
.x72_c00405{left:247.800000px;}
.x90_c00405{left:249.300000px;}
.x26_c00405{left:250.800000px;}
.x66_c00405{left:253.050000px;}
.x9c_c00405{left:254.400000px;}
.x6_c00405{left:257.100000px;}
.x62_c00405{left:259.050000px;}
.xf1_c00405{left:261.600000px;}
.x16_c00405{left:264.000000px;}
.x85_c00405{left:265.050000px;}
.x135_c00405{left:267.150000px;}
.x58_c00405{left:268.200000px;}
.x73_c00405{left:270.150000px;}
.x27_c00405{left:273.450000px;}
.x107_c00405{left:275.100000px;}
.xdc_c00405{left:276.900000px;}
.xf5_c00405{left:278.400000px;}
.x4c_c00405{left:279.450000px;}
.x142_c00405{left:280.800000px;}
.x34_c00405{left:283.950000px;}
.xf2_c00405{left:285.000000px;}
.xed_c00405{left:286.500000px;}
.xb7_c00405{left:289.500000px;}
.x121_c00405{left:291.600000px;}
.x139_c00405{left:293.250000px;}
.x63_c00405{left:294.300000px;}
.xd5_c00405{left:296.250000px;}
.x7b_c00405{left:297.750000px;}
.x67_c00405{left:300.600000px;}
.xac_c00405{left:301.800000px;}
.x35_c00405{left:303.450000px;}
.x12d_c00405{left:306.000000px;}
.xa3_c00405{left:307.050000px;}
.x125_c00405{left:308.700000px;}
.x7_c00405{left:311.850000px;}
.x28_c00405{left:314.850000px;}
.x17_c00405{left:315.900000px;}
.x91_c00405{left:317.700000px;}
.xf6_c00405{left:318.750000px;}
.x112_c00405{left:322.800000px;}
.xdd_c00405{left:325.050000px;}
.xd6_c00405{left:327.150000px;}
.xee_c00405{left:328.200000px;}
.x74_c00405{left:329.550000px;}
.xcd_c00405{left:337.950000px;}
.xfe_c00405{left:339.000000px;}
.x59_c00405{left:340.950000px;}
.x40_c00405{left:343.050000px;}
.xe8_c00405{left:344.550000px;}
.x92_c00405{left:348.600000px;}
.x8_c00405{left:349.650000px;}
.x10e_c00405{left:351.150000px;}
.x7c_c00405{left:353.550000px;}
.x68_c00405{left:355.350000px;}
.xad_c00405{left:356.550000px;}
.x113_c00405{left:357.750000px;}
.x29_c00405{left:359.100000px;}
.x4d_c00405{left:362.250000px;}
.xff_c00405{left:363.450000px;}
.x122_c00405{left:367.200000px;}
.x5a_c00405{left:370.800000px;}
.x9_c00405{left:374.850000px;}
.x18_c00405{left:376.800000px;}
.xf3_c00405{left:377.850000px;}
.x4e_c00405{left:379.200000px;}
.x93_c00405{left:380.250000px;}
.x136_c00405{left:382.050000px;}
.x69_c00405{left:383.400000px;}
.xf7_c00405{left:385.350000px;}
.x41_c00405{left:388.050000px;}
.x101_c00405{left:389.100000px;}
.xa_c00405{left:391.800000px;}
.x94_c00405{left:393.900000px;}
.x7d_c00405{left:396.750000px;}
.x2a_c00405{left:397.950000px;}
.x9d_c00405{left:400.200000px;}
.x137_c00405{left:401.850000px;}
.xae_c00405{left:403.350000px;}
.x19_c00405{left:405.300000px;}
.xa4_c00405{left:406.350000px;}
.x1_c00405{left:407.550000px;}
.x36_c00405{left:409.350000px;}
.x42_c00405{left:410.700000px;}
.x95_c00405{left:411.900000px;}
.x114_c00405{left:413.550000px;}
.x141_c00405{left:415.050000px;}
.x4f_c00405{left:417.000000px;}
.xb_c00405{left:419.850000px;}
.x102_c00405{left:421.500000px;}
.x1a_c00405{left:423.300000px;}
.xc5_c00405{left:425.550000px;}
.x86_c00405{left:427.800000px;}
.xce_c00405{left:431.400000px;}
.xb8_c00405{left:433.650000px;}
.x7e_c00405{left:436.050000px;}
.x43_c00405{left:439.800000px;}
.x75_c00405{left:441.150000px;}
.x6a_c00405{left:445.650000px;}
.xc6_c00405{left:447.450000px;}
.x138_c00405{left:450.000000px;}
.x37_c00405{left:451.800000px;}
.x13a_c00405{left:453.150000px;}
.xe1_c00405{left:454.500000px;}
.xc_c00405{left:457.350000px;}
.x87_c00405{left:459.450000px;}
.x76_c00405{left:462.000000px;}
.x96_c00405{left:463.800000px;}
.x6b_c00405{left:467.250000px;}
.x5b_c00405{left:468.300000px;}
.xcf_c00405{left:470.250000px;}
.x115_c00405{left:472.950000px;}
.xd7_c00405{left:474.300000px;}
.x126_c00405{left:475.800000px;}
.xc7_c00405{left:477.000000px;}
.x50_c00405{left:478.950000px;}
.x38_c00405{left:481.350000px;}
.xe9_c00405{left:483.150000px;}
.x9e_c00405{left:484.500000px;}
.xe2_c00405{left:485.850000px;}
.xa5_c00405{left:487.050000px;}
.x11c_c00405{left:489.300000px;}
.x5c_c00405{left:490.950000px;}
.x77_c00405{left:493.350000px;}
.xf8_c00405{left:494.850000px;}
.x44_c00405{left:497.400000px;}
.xaf_c00405{left:498.450000px;}
.xbf_c00405{left:499.500000px;}
.x108_c00405{left:501.600000px;}
.x1b_c00405{left:503.550000px;}
.xde_c00405{left:504.600000px;}
.x13d_c00405{left:508.200000px;}
.xd8_c00405{left:510.600000px;}
.x116_c00405{left:512.250000px;}
.x39_c00405{left:513.450000px;}
.x10f_c00405{left:515.700000px;}
.x7f_c00405{left:516.750000px;}
.x9f_c00405{left:519.750000px;}
.x5d_c00405{left:520.800000px;}
.x127_c00405{left:524.400000px;}
.xc8_c00405{left:525.600000px;}
.xb9_c00405{left:527.550000px;}
.xd0_c00405{left:530.400000px;}
.x80_c00405{left:532.200000px;}
.x97_c00405{left:534.000000px;}
.x51_c00405{left:535.050000px;}
.x1c_c00405{left:536.250000px;}
.xd9_c00405{left:539.400000px;}
.x6c_c00405{left:540.750000px;}
.x2b_c00405{left:542.550000px;}
.xd_c00405{left:543.750000px;}
.xc9_c00405{left:545.400000px;}
.xdf_c00405{left:547.500000px;}
.xba_c00405{left:548.850000px;}
.x52_c00405{left:553.050000px;}
.xef_c00405{left:556.500000px;}
.x45_c00405{left:557.550000px;}
.x117_c00405{left:558.750000px;}
.xe3_c00405{left:559.950000px;}
.x88_c00405{left:561.300000px;}
.xe_c00405{left:563.850000px;}
.x3a_c00405{left:566.700000px;}
.xf9_c00405{left:570.150000px;}
.x46_c00405{left:573.000000px;}
.x110_c00405{left:574.800000px;}
.xb0_c00405{left:576.150000px;}
.x81_c00405{left:577.500000px;}
.x1d_c00405{left:583.050000px;}
.x128_c00405{left:585.300000px;}
.x89_c00405{left:586.500000px;}
.x5e_c00405{left:588.150000px;}
.xa6_c00405{left:592.200000px;}
.x109_c00405{left:594.150000px;}
.xf_c00405{left:595.500000px;}
.x78_c00405{left:597.000000px;}
.xe0_c00405{left:601.200000px;}
.x12e_c00405{left:604.350000px;}
.x8a_c00405{left:608.100000px;}
.x82_c00405{left:612.000000px;}
.xc0_c00405{left:613.200000px;}
.xd1_c00405{left:614.700000px;}
.xbb_c00405{left:616.200000px;}
.x129_c00405{left:617.400000px;}
.x53_c00405{left:618.600000px;}
.x2c_c00405{left:619.650000px;}
.x98_c00405{left:620.850000px;}
.x13b_c00405{left:621.900000px;}
.xb1_c00405{left:623.250000px;}
.x47_c00405{left:625.200000px;}
.xa7_c00405{left:626.400000px;}
.x10_c00405{left:627.600000px;}
.x133_c00405{left:628.950000px;}
.x11d_c00405{left:630.000000px;}
.x103_c00405{left:633.450000px;}
.xe4_c00405{left:634.500000px;}
.x2d_c00405{left:637.650000px;}
.x6d_c00405{left:640.200000px;}
.x1e_c00405{left:643.200000px;}
.x118_c00405{left:644.700000px;}
.xfa_c00405{left:646.500000px;}
.xea_c00405{left:648.750000px;}
.xca_c00405{left:650.850000px;}
.x83_c00405{left:652.350000px;}
.x48_c00405{left:656.100000px;}
.x12a_c00405{left:657.750000px;}
.x3b_c00405{left:658.800000px;}
.x5f_c00405{left:659.850000px;}
.x6e_c00405{left:661.800000px;}
.xb2_c00405{left:662.850000px;}
.x13e_c00405{left:663.900000px;}
.x11_c00405{left:669.750000px;}
.xa0_c00405{left:670.950000px;}
.x12f_c00405{left:672.450000px;}
.x8b_c00405{left:675.750000px;}
.x1f_c00405{left:677.400000px;}
.x2e_c00405{left:679.350000px;}
.xa8_c00405{left:681.450000px;}
.x79_c00405{left:684.150000px;}
.x3c_c00405{left:686.850000px;}
.xbc_c00405{left:688.950000px;}
.x6f_c00405{left:691.350000px;}
.xc1_c00405{left:692.400000px;}
.x10a_c00405{left:693.900000px;}
.x54_c00405{left:698.850000px;}
.x20_c00405{left:702.600000px;}
.x13f_c00405{left:703.800000px;}
.x2f_c00405{left:705.300000px;}
.xbd_c00405{left:706.650000px;}
.x134_c00405{left:707.850000px;}
.x8c_c00405{left:709.650000px;}
.xb3_c00405{left:711.150000px;}
.x60_c00405{left:713.550000px;}
.x7a_c00405{left:715.050000px;}
.x11e_c00405{left:716.400000px;}
.xeb_c00405{left:717.450000px;}
.xa9_c00405{left:720.000000px;}
.x12_c00405{left:721.950000px;}
.xf0_c00405{left:723.150000px;}
.x132_c00405{left:724.200000px;}
.x30_c00405{left:725.400000px;}
.x12b_c00405{left:727.650000px;}
.xda_c00405{left:728.700000px;}
.x8d_c00405{left:730.200000px;}
.xb4_c00405{left:731.700000px;}
.xa1_c00405{left:735.000000px;}
.x99_c00405{left:736.050000px;}
.xfb_c00405{left:738.000000px;}
.x49_c00405{left:740.400000px;}
.x123_c00405{left:743.850000px;}
.xd2_c00405{left:746.250000px;}
.x130_c00405{left:747.600000px;}
.x9a_c00405{left:748.650000px;}
.x2_c00405{left:752.400000px;}
.xcb_c00405{left:753.750000px;}
.x13c_c00405{left:755.550000px;}
.x61_c00405{left:757.050000px;}
.x55_c00405{left:759.300000px;}
.xc2_c00405{left:761.100000px;}
.xec_c00405{left:762.450000px;}
.x21_c00405{left:765.900000px;}
.x12c_c00405{left:769.350000px;}
.x104_c00405{left:773.100000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws6_c00405{word-spacing:-9.642857pt;}
.ws1_c00405{word-spacing:-9.230769pt;}
.ws2_c00405{word-spacing:-7.133059pt;}
.wsa_c00405{word-spacing:-5.797101pt;}
.ws0_c00405{word-spacing:-5.730994pt;}
.wsb_c00405{word-spacing:0.000000pt;}
.ws9_c00405{word-spacing:3.173114pt;}
.ws7_c00405{word-spacing:3.452381pt;}
.ws5_c00405{word-spacing:3.597884pt;}
.ws4_c00405{word-spacing:8.538012pt;}
.ws3_c00405{word-spacing:15.424837pt;}
.ws8_c00405{word-spacing:793.333333pt;}
.fs0_c00405{font-size:48.000000pt;}
.fs1_c00405{font-size:53.333333pt;}
.y0_c00405{bottom:0.000000pt;}
.y2c_c00405{bottom:136.000000pt;}
.y2b_c00405{bottom:149.733333pt;}
.y2a_c00405{bottom:163.466667pt;}
.y29_c00405{bottom:203.600000pt;}
.y28_c00405{bottom:220.933333pt;}
.y27_c00405{bottom:238.800000pt;}
.y26_c00405{bottom:256.400000pt;}
.y25_c00405{bottom:274.000000pt;}
.y24_c00405{bottom:291.866667pt;}
.y23_c00405{bottom:309.466667pt;}
.y22_c00405{bottom:327.333333pt;}
.y21_c00405{bottom:344.933333pt;}
.y20_c00405{bottom:362.533333pt;}
.y1f_c00405{bottom:380.133333pt;}
.y1e_c00405{bottom:397.733333pt;}
.y1d_c00405{bottom:415.333333pt;}
.y1c_c00405{bottom:433.200000pt;}
.y1b_c00405{bottom:450.533333pt;}
.y1a_c00405{bottom:468.400000pt;}
.y19_c00405{bottom:486.000000pt;}
.y18_c00405{bottom:503.600000pt;}
.y17_c00405{bottom:521.200000pt;}
.y16_c00405{bottom:538.800000pt;}
.y15_c00405{bottom:556.666667pt;}
.y14_c00405{bottom:574.266667pt;}
.y13_c00405{bottom:592.133333pt;}
.y12_c00405{bottom:609.733333pt;}
.y11_c00405{bottom:627.333333pt;}
.y10_c00405{bottom:645.200000pt;}
.yf_c00405{bottom:662.800000pt;}
.ye_c00405{bottom:680.400000pt;}
.yd_c00405{bottom:698.266667pt;}
.yc_c00405{bottom:715.866667pt;}
.yb_c00405{bottom:733.466667pt;}
.ya_c00405{bottom:751.333333pt;}
.y9_c00405{bottom:769.066667pt;}
.y8_c00405{bottom:786.933333pt;}
.y7_c00405{bottom:804.533333pt;}
.y6_c00405{bottom:822.133333pt;}
.y5_c00405{bottom:839.733333pt;}
.y4_c00405{bottom:857.600000pt;}
.y3_c00405{bottom:875.200000pt;}
.y2_c00405{bottom:892.800000pt;}
.y1_c00405{bottom:927.066667pt;}
.h2_c00405{height:48.000000pt;}
.h3_c00405{height:53.333333pt;}
.h1_c00405{height:1036.666667pt;}
.h0_c00405{height:1036.800049pt;}
.w0_c00405{width:818.559977pt;}
.w1_c00405{width:818.666667pt;}
.x0_c00405{left:0.000000pt;}
.x10b_c00405{left:96.800000pt;}
.xd3_c00405{left:97.866667pt;}
.x56_c00405{left:98.933333pt;}
.x13_c00405{left:100.000000pt;}
.xfc_c00405{left:107.466667pt;}
.xaa_c00405{left:114.933333pt;}
.x100_c00405{left:119.466667pt;}
.x22_c00405{left:122.400000pt;}
.x4a_c00405{left:124.266667pt;}
.x64_c00405{left:126.666667pt;}
.x3_c00405{left:127.733333pt;}
.xc3_c00405{left:131.200000pt;}
.x124_c00405{left:132.933333pt;}
.x3d_c00405{left:134.000000pt;}
.x23_c00405{left:134.933333pt;}
.x10c_c00405{left:137.466667pt;}
.xe5_c00405{left:139.866667pt;}
.x119_c00405{left:142.533333pt;}
.xfd_c00405{left:143.600000pt;}
.x105_c00405{left:144.666667pt;}
.xbe_c00405{left:145.600000pt;}
.x70_c00405{left:148.000000pt;}
.xc4_c00405{left:149.466667pt;}
.x65_c00405{left:150.666667pt;}
.x4_c00405{left:156.533333pt;}
.x31_c00405{left:157.733333pt;}
.x111_c00405{left:159.200000pt;}
.x24_c00405{left:160.266667pt;}
.xcc_c00405{left:161.466667pt;}
.x11a_c00405{left:164.933333pt;}
.x71_c00405{left:165.866667pt;}
.xdb_c00405{left:167.066667pt;}
.x4b_c00405{left:168.133333pt;}
.x10d_c00405{left:169.466667pt;}
.x11f_c00405{left:170.800000pt;}
.xe6_c00405{left:172.800000pt;}
.x84_c00405{left:175.066667pt;}
.xb5_c00405{left:180.266667pt;}
.x131_c00405{left:182.933333pt;}
.xd4_c00405{left:184.000000pt;}
.x25_c00405{left:185.200000pt;}
.x11b_c00405{left:186.400000pt;}
.x8e_c00405{left:187.333333pt;}
.x14_c00405{left:188.933333pt;}
.x9b_c00405{left:190.000000pt;}
.x57_c00405{left:191.733333pt;}
.x120_c00405{left:194.533333pt;}
.xe7_c00405{left:196.533333pt;}
.x32_c00405{left:198.933333pt;}
.xa2_c00405{left:200.933333pt;}
.x3e_c00405{left:202.533333pt;}
.xab_c00405{left:204.533333pt;}
.xb6_c00405{left:205.866667pt;}
.xf4_c00405{left:207.866667pt;}
.x33_c00405{left:209.866667pt;}
.x8f_c00405{left:211.066667pt;}
.x5_c00405{left:213.466667pt;}
.x106_c00405{left:214.400000pt;}
.x3f_c00405{left:216.266667pt;}
.x140_c00405{left:217.200000pt;}
.x15_c00405{left:218.666667pt;}
.x72_c00405{left:220.266667pt;}
.x90_c00405{left:221.600000pt;}
.x26_c00405{left:222.933333pt;}
.x66_c00405{left:224.933333pt;}
.x9c_c00405{left:226.133333pt;}
.x6_c00405{left:228.533333pt;}
.x62_c00405{left:230.266667pt;}
.xf1_c00405{left:232.533333pt;}
.x16_c00405{left:234.666667pt;}
.x85_c00405{left:235.600000pt;}
.x135_c00405{left:237.466667pt;}
.x58_c00405{left:238.400000pt;}
.x73_c00405{left:240.133333pt;}
.x27_c00405{left:243.066667pt;}
.x107_c00405{left:244.533333pt;}
.xdc_c00405{left:246.133333pt;}
.xf5_c00405{left:247.466667pt;}
.x4c_c00405{left:248.400000pt;}
.x142_c00405{left:249.600000pt;}
.x34_c00405{left:252.400000pt;}
.xf2_c00405{left:253.333333pt;}
.xed_c00405{left:254.666667pt;}
.xb7_c00405{left:257.333333pt;}
.x121_c00405{left:259.200000pt;}
.x139_c00405{left:260.666667pt;}
.x63_c00405{left:261.600000pt;}
.xd5_c00405{left:263.333333pt;}
.x7b_c00405{left:264.666667pt;}
.x67_c00405{left:267.200000pt;}
.xac_c00405{left:268.266667pt;}
.x35_c00405{left:269.733333pt;}
.x12d_c00405{left:272.000000pt;}
.xa3_c00405{left:272.933333pt;}
.x125_c00405{left:274.400000pt;}
.x7_c00405{left:277.200000pt;}
.x28_c00405{left:279.866667pt;}
.x17_c00405{left:280.800000pt;}
.x91_c00405{left:282.400000pt;}
.xf6_c00405{left:283.333333pt;}
.x112_c00405{left:286.933333pt;}
.xdd_c00405{left:288.933333pt;}
.xd6_c00405{left:290.800000pt;}
.xee_c00405{left:291.733333pt;}
.x74_c00405{left:292.933333pt;}
.xcd_c00405{left:300.400000pt;}
.xfe_c00405{left:301.333333pt;}
.x59_c00405{left:303.066667pt;}
.x40_c00405{left:304.933333pt;}
.xe8_c00405{left:306.266667pt;}
.x92_c00405{left:309.866667pt;}
.x8_c00405{left:310.800000pt;}
.x10e_c00405{left:312.133333pt;}
.x7c_c00405{left:314.266667pt;}
.x68_c00405{left:315.866667pt;}
.xad_c00405{left:316.933333pt;}
.x113_c00405{left:318.000000pt;}
.x29_c00405{left:319.200000pt;}
.x4d_c00405{left:322.000000pt;}
.xff_c00405{left:323.066667pt;}
.x122_c00405{left:326.400000pt;}
.x5a_c00405{left:329.600000pt;}
.x9_c00405{left:333.200000pt;}
.x18_c00405{left:334.933333pt;}
.xf3_c00405{left:335.866667pt;}
.x4e_c00405{left:337.066667pt;}
.x93_c00405{left:338.000000pt;}
.x136_c00405{left:339.600000pt;}
.x69_c00405{left:340.800000pt;}
.xf7_c00405{left:342.533333pt;}
.x41_c00405{left:344.933333pt;}
.x101_c00405{left:345.866667pt;}
.xa_c00405{left:348.266667pt;}
.x94_c00405{left:350.133333pt;}
.x7d_c00405{left:352.666667pt;}
.x2a_c00405{left:353.733333pt;}
.x9d_c00405{left:355.733333pt;}
.x137_c00405{left:357.200000pt;}
.xae_c00405{left:358.533333pt;}
.x19_c00405{left:360.266667pt;}
.xa4_c00405{left:361.200000pt;}
.x1_c00405{left:362.266667pt;}
.x36_c00405{left:363.866667pt;}
.x42_c00405{left:365.066667pt;}
.x95_c00405{left:366.133333pt;}
.x114_c00405{left:367.600000pt;}
.x141_c00405{left:368.933333pt;}
.x4f_c00405{left:370.666667pt;}
.xb_c00405{left:373.200000pt;}
.x102_c00405{left:374.666667pt;}
.x1a_c00405{left:376.266667pt;}
.xc5_c00405{left:378.266667pt;}
.x86_c00405{left:380.266667pt;}
.xce_c00405{left:383.466667pt;}
.xb8_c00405{left:385.466667pt;}
.x7e_c00405{left:387.600000pt;}
.x43_c00405{left:390.933333pt;}
.x75_c00405{left:392.133333pt;}
.x6a_c00405{left:396.133333pt;}
.xc6_c00405{left:397.733333pt;}
.x138_c00405{left:400.000000pt;}
.x37_c00405{left:401.600000pt;}
.x13a_c00405{left:402.800000pt;}
.xe1_c00405{left:404.000000pt;}
.xc_c00405{left:406.533333pt;}
.x87_c00405{left:408.400000pt;}
.x76_c00405{left:410.666667pt;}
.x96_c00405{left:412.266667pt;}
.x6b_c00405{left:415.333333pt;}
.x5b_c00405{left:416.266667pt;}
.xcf_c00405{left:418.000000pt;}
.x115_c00405{left:420.400000pt;}
.xd7_c00405{left:421.600000pt;}
.x126_c00405{left:422.933333pt;}
.xc7_c00405{left:424.000000pt;}
.x50_c00405{left:425.733333pt;}
.x38_c00405{left:427.866667pt;}
.xe9_c00405{left:429.466667pt;}
.x9e_c00405{left:430.666667pt;}
.xe2_c00405{left:431.866667pt;}
.xa5_c00405{left:432.933333pt;}
.x11c_c00405{left:434.933333pt;}
.x5c_c00405{left:436.400000pt;}
.x77_c00405{left:438.533333pt;}
.xf8_c00405{left:439.866667pt;}
.x44_c00405{left:442.133333pt;}
.xaf_c00405{left:443.066667pt;}
.xbf_c00405{left:444.000000pt;}
.x108_c00405{left:445.866667pt;}
.x1b_c00405{left:447.600000pt;}
.xde_c00405{left:448.533333pt;}
.x13d_c00405{left:451.733333pt;}
.xd8_c00405{left:453.866667pt;}
.x116_c00405{left:455.333333pt;}
.x39_c00405{left:456.400000pt;}
.x10f_c00405{left:458.400000pt;}
.x7f_c00405{left:459.333333pt;}
.x9f_c00405{left:462.000000pt;}
.x5d_c00405{left:462.933333pt;}
.x127_c00405{left:466.133333pt;}
.xc8_c00405{left:467.200000pt;}
.xb9_c00405{left:468.933333pt;}
.xd0_c00405{left:471.466667pt;}
.x80_c00405{left:473.066667pt;}
.x97_c00405{left:474.666667pt;}
.x51_c00405{left:475.600000pt;}
.x1c_c00405{left:476.666667pt;}
.xd9_c00405{left:479.466667pt;}
.x6c_c00405{left:480.666667pt;}
.x2b_c00405{left:482.266667pt;}
.xd_c00405{left:483.333333pt;}
.xc9_c00405{left:484.800000pt;}
.xdf_c00405{left:486.666667pt;}
.xba_c00405{left:487.866667pt;}
.x52_c00405{left:491.600000pt;}
.xef_c00405{left:494.666667pt;}
.x45_c00405{left:495.600000pt;}
.x117_c00405{left:496.666667pt;}
.xe3_c00405{left:497.733333pt;}
.x88_c00405{left:498.933333pt;}
.xe_c00405{left:501.200000pt;}
.x3a_c00405{left:503.733333pt;}
.xf9_c00405{left:506.800000pt;}
.x46_c00405{left:509.333333pt;}
.x110_c00405{left:510.933333pt;}
.xb0_c00405{left:512.133333pt;}
.x81_c00405{left:513.333333pt;}
.x1d_c00405{left:518.266667pt;}
.x128_c00405{left:520.266667pt;}
.x89_c00405{left:521.333333pt;}
.x5e_c00405{left:522.800000pt;}
.xa6_c00405{left:526.400000pt;}
.x109_c00405{left:528.133333pt;}
.xf_c00405{left:529.333333pt;}
.x78_c00405{left:530.666667pt;}
.xe0_c00405{left:534.400000pt;}
.x12e_c00405{left:537.200000pt;}
.x8a_c00405{left:540.533333pt;}
.x82_c00405{left:544.000000pt;}
.xc0_c00405{left:545.066667pt;}
.xd1_c00405{left:546.400000pt;}
.xbb_c00405{left:547.733333pt;}
.x129_c00405{left:548.800000pt;}
.x53_c00405{left:549.866667pt;}
.x2c_c00405{left:550.800000pt;}
.x98_c00405{left:551.866667pt;}
.x13b_c00405{left:552.800000pt;}
.xb1_c00405{left:554.000000pt;}
.x47_c00405{left:555.733333pt;}
.xa7_c00405{left:556.800000pt;}
.x10_c00405{left:557.866667pt;}
.x133_c00405{left:559.066667pt;}
.x11d_c00405{left:560.000000pt;}
.x103_c00405{left:563.066667pt;}
.xe4_c00405{left:564.000000pt;}
.x2d_c00405{left:566.800000pt;}
.x6d_c00405{left:569.066667pt;}
.x1e_c00405{left:571.733333pt;}
.x118_c00405{left:573.066667pt;}
.xfa_c00405{left:574.666667pt;}
.xea_c00405{left:576.666667pt;}
.xca_c00405{left:578.533333pt;}
.x83_c00405{left:579.866667pt;}
.x48_c00405{left:583.200000pt;}
.x12a_c00405{left:584.666667pt;}
.x3b_c00405{left:585.600000pt;}
.x5f_c00405{left:586.533333pt;}
.x6e_c00405{left:588.266667pt;}
.xb2_c00405{left:589.200000pt;}
.x13e_c00405{left:590.133333pt;}
.x11_c00405{left:595.333333pt;}
.xa0_c00405{left:596.400000pt;}
.x12f_c00405{left:597.733333pt;}
.x8b_c00405{left:600.666667pt;}
.x1f_c00405{left:602.133333pt;}
.x2e_c00405{left:603.866667pt;}
.xa8_c00405{left:605.733333pt;}
.x79_c00405{left:608.133333pt;}
.x3c_c00405{left:610.533333pt;}
.xbc_c00405{left:612.400000pt;}
.x6f_c00405{left:614.533333pt;}
.xc1_c00405{left:615.466667pt;}
.x10a_c00405{left:616.800000pt;}
.x54_c00405{left:621.200000pt;}
.x20_c00405{left:624.533333pt;}
.x13f_c00405{left:625.600000pt;}
.x2f_c00405{left:626.933333pt;}
.xbd_c00405{left:628.133333pt;}
.x134_c00405{left:629.200000pt;}
.x8c_c00405{left:630.800000pt;}
.xb3_c00405{left:632.133333pt;}
.x60_c00405{left:634.266667pt;}
.x7a_c00405{left:635.600000pt;}
.x11e_c00405{left:636.800000pt;}
.xeb_c00405{left:637.733333pt;}
.xa9_c00405{left:640.000000pt;}
.x12_c00405{left:641.733333pt;}
.xf0_c00405{left:642.800000pt;}
.x132_c00405{left:643.733333pt;}
.x30_c00405{left:644.800000pt;}
.x12b_c00405{left:646.800000pt;}
.xda_c00405{left:647.733333pt;}
.x8d_c00405{left:649.066667pt;}
.xb4_c00405{left:650.400000pt;}
.xa1_c00405{left:653.333333pt;}
.x99_c00405{left:654.266667pt;}
.xfb_c00405{left:656.000000pt;}
.x49_c00405{left:658.133333pt;}
.x123_c00405{left:661.200000pt;}
.xd2_c00405{left:663.333333pt;}
.x130_c00405{left:664.533333pt;}
.x9a_c00405{left:665.466667pt;}
.x2_c00405{left:668.800000pt;}
.xcb_c00405{left:670.000000pt;}
.x13c_c00405{left:671.600000pt;}
.x61_c00405{left:672.933333pt;}
.x55_c00405{left:674.933333pt;}
.xc2_c00405{left:676.533333pt;}
.xec_c00405{left:677.733333pt;}
.x21_c00405{left:680.800000pt;}
.x12c_c00405{left:683.866667pt;}
.x104_c00405{left:687.200000pt;}
}





/* 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_c00406 {
    display:none;
  }
  .loading-indicator_c00406.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00406 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_c00406 { 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_c00406" -> "#page-container .classname_c00406")
 */
.pf_c00406 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00406 { /* 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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00406 { /* 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_c00406 { /* 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_c00406 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00406 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00406 {overflow:visible;}
  }
}
.c_c00406 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00406 { /* 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_c00406:after { /* webkit #35443 */
  content: '';
}
.t_c00406:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00406 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 */
}
.__c00406 { /* 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_c00406 { /* info for Javascript */
  display:none;
}
.l_c00406 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00406 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00406 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00406: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_c00406 {
    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_c00406.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00406.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_c00406 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00406{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00406;src:url('chunks/assets/font_6bfbb8f1656a197db96ffd58.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.000000;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;}
.m53_c00406{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m14_c00406{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00406{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00406{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m99_c00406{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m68_c00406{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00406{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00406{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m80_c00406{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m73_c00406{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00406{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00406{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m66_c00406{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m98_c00406{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m97_c00406{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00406{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00406{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00406{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00406{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m10_c00406{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m51_c00406{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6_c00406{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m57_c00406{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m40_c00406{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00406{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m11_c00406{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00406{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00406{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m84_c00406{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00406{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m22_c00406{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3_c00406{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00406{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m75_c00406{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m60_c00406{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m48_c00406{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m96_c00406{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m44_c00406{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.mf_c00406{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc_c00406{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00406{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m29_c00406{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m23_c00406{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m18_c00406{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00406{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m24_c00406{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m42_c00406{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m25_c00406{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00406{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma_c00406{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00406{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m62_c00406{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00406{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m43_c00406{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5_c00406{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m95_c00406{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m69_c00406{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m91_c00406{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m88_c00406{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00406{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00406{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00406{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9_c00406{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00406{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m49_c00406{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m36_c00406{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mb_c00406{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00406{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26_c00406{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md_c00406{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m55_c00406{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m31_c00406{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00406{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m76_c00406{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m92_c00406{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m19_c00406{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);}
.m12_c00406{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00406{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m47_c00406{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m86_c00406{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m63_c00406{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m83_c00406{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8_c00406{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00406{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m17_c00406{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00406{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00406{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00406{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m64_c00406{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00406{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m16_c00406{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m70_c00406{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00406{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00406{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m27_c00406{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m39_c00406{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m85_c00406{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m15_c00406{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m90_c00406{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m59_c00406{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m87_c00406{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m54_c00406{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00406{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m71_c00406{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00406{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m32_c00406{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m35_c00406{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00406{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2_c00406{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m34_c00406{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00406{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m13_c00406{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m58_c00406{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00406{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m81_c00406{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m7_c00406{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m61_c00406{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m67_c00406{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m65_c00406{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m50_c00406{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00406{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m72_c00406{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m0_c00406{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m94_c00406{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00406{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m41_c00406{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m82_c00406{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m30_c00406{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m78_c00406{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m20_c00406{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00406{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4_c00406{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m93_c00406{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m33_c00406{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m37_c00406{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1_c00406{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00406{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m52_c00406{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m56_c00406{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00406{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00406{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00406{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00406{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00406{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m74_c00406{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00406{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m77_c00406{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00406{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m46_c00406{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m28_c00406{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m79_c00406{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00406{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00406{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m89_c00406{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m45_c00406{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00406{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.ls0_c00406{letter-spacing:0.000000px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{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__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00406{word-spacing:0.000000px;}
.ws2_c00406{word-spacing:1.961538px;}
.ws4_c00406{word-spacing:2.750000px;}
.ws1_c00406{word-spacing:4.537019px;}
.ws3_c00406{word-spacing:4.920973px;}
.ws6_c00406{word-spacing:5.596095px;}
.ws0_c00406{word-spacing:7.141479px;}
.ws7_c00406{word-spacing:7.916435px;}
.ws5_c00406{word-spacing:8.750000px;}
.fc0_c00406{color:transparent;}
.fs1_c00406{font-size:54.000000px;}
.fs0_c00406{font-size:60.000000px;}
.y0_c00406{bottom:0.000000px;}
.y26_c00406{bottom:256.350000px;}
.y25_c00406{bottom:271.800000px;}
.y24_c00406{bottom:303.450000px;}
.y23_c00406{bottom:323.250000px;}
.y22_c00406{bottom:343.050000px;}
.y21_c00406{bottom:362.850000px;}
.y20_c00406{bottom:383.100000px;}
.y1f_c00406{bottom:403.050000px;}
.y1e_c00406{bottom:422.850000px;}
.y1d_c00406{bottom:442.950000px;}
.y1c_c00406{bottom:462.750000px;}
.y1b_c00406{bottom:482.250000px;}
.y1a_c00406{bottom:502.350000px;}
.y19_c00406{bottom:522.450000px;}
.y18_c00406{bottom:542.250000px;}
.y17_c00406{bottom:561.750000px;}
.y16_c00406{bottom:581.850000px;}
.y15_c00406{bottom:601.950000px;}
.y14_c00406{bottom:640.050000px;}
.y13_c00406{bottom:659.850000px;}
.y12_c00406{bottom:680.400000px;}
.y11_c00406{bottom:699.900000px;}
.y10_c00406{bottom:720.000000px;}
.yf_c00406{bottom:739.800000px;}
.ye_c00406{bottom:759.600000px;}
.yd_c00406{bottom:779.400000px;}
.yc_c00406{bottom:799.500000px;}
.yb_c00406{bottom:832.350000px;}
.ya_c00406{bottom:852.450000px;}
.y9_c00406{bottom:872.250000px;}
.y8_c00406{bottom:892.050000px;}
.y7_c00406{bottom:911.850000px;}
.y6_c00406{bottom:931.800000px;}
.y5_c00406{bottom:951.900000px;}
.y4_c00406{bottom:971.700000px;}
.y3_c00406{bottom:991.800000px;}
.y2_c00406{bottom:1011.600000px;}
.y1_c00406{bottom:1049.700000px;}
.h3_c00406{height:54.000000px;}
.h2_c00406{height:60.000000px;}
.h1_c00406{height:1166.250000px;}
.h0_c00406{height:1166.400056px;}
.w0_c00406{width:920.879975px;}
.w1_c00406{width:921.000000px;}
.x0_c00406{left:0.000000px;}
.x111_c00406{left:139.500000px;}
.x3_c00406{left:140.700000px;}
.x1_c00406{left:142.500000px;}
.x5e_c00406{left:158.700000px;}
.xfa_c00406{left:159.900000px;}
.xb0_c00406{left:166.650000px;}
.x6a_c00406{left:169.350000px;}
.x48_c00406{left:171.750000px;}
.x21_c00406{left:173.700000px;}
.xe1_c00406{left:175.500000px;}
.x4_c00406{left:179.250000px;}
.x32_c00406{left:180.450000px;}
.x49_c00406{left:184.050000px;}
.xb6_c00406{left:186.600000px;}
.x3e_c00406{left:191.100000px;}
.x106_c00406{left:196.650000px;}
.x22_c00406{left:198.900000px;}
.x55_c00406{left:200.250000px;}
.x5_c00406{left:202.650000px;}
.xb7_c00406{left:204.900000px;}
.x6b_c00406{left:208.950000px;}
.x5f_c00406{left:210.600000px;}
.x76_c00406{left:213.600000px;}
.x10b_c00406{left:215.250000px;}
.xfb_c00406{left:216.450000px;}
.x4a_c00406{left:219.000000px;}
.x13_c00406{left:221.100000px;}
.xb1_c00406{left:223.200000px;}
.xc4_c00406{left:224.550000px;}
.x23_c00406{left:228.750000px;}
.x80_c00406{left:230.400000px;}
.xf5_c00406{left:231.900000px;}
.x3f_c00406{left:233.250000px;}
.x33_c00406{left:236.550000px;}
.x88_c00406{left:239.550000px;}
.x77_c00406{left:241.650000px;}
.x96_c00406{left:243.600000px;}
.x14_c00406{left:245.250000px;}
.xcd_c00406{left:247.050000px;}
.xc5_c00406{left:248.700000px;}
.xd4_c00406{left:250.950000px;}
.xb8_c00406{left:254.850000px;}
.xfc_c00406{left:256.050000px;}
.x24_c00406{left:257.250000px;}
.x15_c00406{left:259.350000px;}
.xf1_c00406{left:260.850000px;}
.x112_c00406{left:262.200000px;}
.x6c_c00406{left:263.250000px;}
.x60_c00406{left:267.000000px;}
.x56_c00406{left:268.350000px;}
.x81_c00406{left:270.000000px;}
.x8d_c00406{left:271.500000px;}
.x6_c00406{left:272.850000px;}
.xc6_c00406{left:275.400000px;}
.xd5_c00406{left:276.450000px;}
.x4b_c00406{left:278.400000px;}
.x40_c00406{left:280.800000px;}
.x78_c00406{left:283.050000px;}
.x25_c00406{left:284.550000px;}
.x10c_c00406{left:288.000000px;}
.x113_c00406{left:290.250000px;}
.x89_c00406{left:292.500000px;}
.x102_c00406{left:295.800000px;}
.xb9_c00406{left:297.300000px;}
.xa7_c00406{left:298.350000px;}
.x7_c00406{left:302.400000px;}
.xfd_c00406{left:303.450000px;}
.x8e_c00406{left:305.400000px;}
.x119_c00406{left:308.400000px;}
.x16_c00406{left:309.450000px;}
.xba_c00406{left:317.400000px;}
.x107_c00406{left:320.850000px;}
.x34_c00406{left:322.650000px;}
.x4c_c00406{left:325.200000px;}
.x8_c00406{left:326.550000px;}
.x9c_c00406{left:328.500000px;}
.x79_c00406{left:329.850000px;}
.x26_c00406{left:331.650000px;}
.xe2_c00406{left:333.150000px;}
.x41_c00406{left:334.500000px;}
.xbb_c00406{left:335.700000px;}
.x35_c00406{left:337.050000px;}
.x103_c00406{left:340.500000px;}
.xe6_c00406{left:342.300000px;}
.x8f_c00406{left:347.550000px;}
.xda_c00406{left:351.300000px;}
.xc7_c00406{left:352.500000px;}
.x27_c00406{left:355.050000px;}
.x4d_c00406{left:356.550000px;}
.x8a_c00406{left:358.650000px;}
.xd6_c00406{left:360.300000px;}
.x117_c00406{left:361.800000px;}
.x17_c00406{left:364.500000px;}
.x4e_c00406{left:368.850000px;}
.x11a_c00406{left:372.150000px;}
.xc8_c00406{left:373.350000px;}
.x90_c00406{left:374.850000px;}
.x7a_c00406{left:377.700000px;}
.x82_c00406{left:379.350000px;}
.x9d_c00406{left:381.450000px;}
.x57_c00406{left:382.800000px;}
.x6d_c00406{left:385.950000px;}
.xdb_c00406{left:387.000000px;}
.x11c_c00406{left:388.050000px;}
.xf6_c00406{left:389.250000px;}
.x9_c00406{left:390.300000px;}
.x18_c00406{left:393.000000px;}
.xc9_c00406{left:400.350000px;}
.x28_c00406{left:402.900000px;}
.x97_c00406{left:404.400000px;}
.x83_c00406{left:407.100000px;}
.x36_c00406{left:408.300000px;}
.xa_c00406{left:410.850000px;}
.x6e_c00406{left:414.000000px;}
.x9e_c00406{left:415.950000px;}
.x29_c00406{left:417.600000px;}
.xce_c00406{left:420.150000px;}
.x118_c00406{left:421.200000px;}
.xeb_c00406{left:424.050000px;}
.x4f_c00406{left:425.700000px;}
.xbc_c00406{left:428.250000px;}
.x11e_c00406{left:429.750000px;}
.xb_c00406{left:434.250000px;}
.xa8_c00406{left:435.450000px;}
.x61_c00406{left:437.250000px;}
.x2_c00406{left:439.200000px;}
.xca_c00406{left:441.750000px;}
.xdc_c00406{left:443.100000px;}
.xec_c00406{left:444.150000px;}
.x58_c00406{left:446.100000px;}
.xc_c00406{left:447.900000px;}
.xf2_c00406{left:450.150000px;}
.x50_c00406{left:451.200000px;}
.xfe_c00406{left:453.150000px;}
.x6f_c00406{left:454.350000px;}
.x10f_c00406{left:455.700000px;}
.x42_c00406{left:458.700000px;}
.xcf_c00406{left:462.600000px;}
.x2a_c00406{left:464.400000px;}
.x108_c00406{left:466.950000px;}
.xe7_c00406{left:468.300000px;}
.x11d_c00406{left:471.600000px;}
.xed_c00406{left:472.950000px;}
.xdd_c00406{left:474.000000px;}
.x62_c00406{left:475.050000px;}
.x9f_c00406{left:478.200000px;}
.x7b_c00406{left:479.700000px;}
.x43_c00406{left:481.800000px;}
.xa9_c00406{left:484.050000px;}
.x19_c00406{left:485.850000px;}
.x37_c00406{left:488.250000px;}
.xbd_c00406{left:491.250000px;}
.x63_c00406{left:492.750000px;}
.xcb_c00406{left:494.250000px;}
.x91_c00406{left:499.350000px;}
.x84_c00406{left:501.000000px;}
.x38_c00406{left:502.950000px;}
.x7c_c00406{left:505.200000px;}
.x2b_c00406{left:506.850000px;}
.xaa_c00406{left:510.000000px;}
.x8b_c00406{left:512.100000px;}
.xa0_c00406{left:513.150000px;}
.x70_c00406{left:514.800000px;}
.xd7_c00406{left:515.850000px;}
.x10d_c00406{left:519.150000px;}
.xe8_c00406{left:522.600000px;}
.xbe_c00406{left:525.150000px;}
.x85_c00406{left:528.750000px;}
.x59_c00406{left:531.000000px;}
.xb2_c00406{left:533.250000px;}
.xd_c00406{left:535.050000px;}
.x92_c00406{left:536.400000px;}
.x2c_c00406{left:538.200000px;}
.xbf_c00406{left:539.850000px;}
.xa1_c00406{left:541.200000px;}
.x109_c00406{left:543.150000px;}
.x64_c00406{left:546.450000px;}
.x5a_c00406{left:549.000000px;}
.xcc_c00406{left:551.100000px;}
.x44_c00406{left:554.100000px;}
.x1a_c00406{left:556.050000px;}
.x10e_c00406{left:562.350000px;}
.x7d_c00406{left:564.300000px;}
.xf3_c00406{left:565.650000px;}
.x1b_c00406{left:567.600000px;}
.xe3_c00406{left:570.900000px;}
.xee_c00406{left:571.950000px;}
.x51_c00406{left:575.850000px;}
.x8c_c00406{left:577.650000px;}
.xe_c00406{left:580.800000px;}
.x98_c00406{left:582.600000px;}
.xef_c00406{left:583.800000px;}
.x93_c00406{left:585.000000px;}
.xa2_c00406{left:586.950000px;}
.x39_c00406{left:590.850000px;}
.xe9_c00406{left:592.800000px;}
.xc0_c00406{left:594.600000px;}
.x52_c00406{left:595.650000px;}
.x65_c00406{left:599.400000px;}
.x71_c00406{left:601.950000px;}
.xab_c00406{left:604.650000px;}
.x94_c00406{left:606.300000px;}
.xd0_c00406{left:607.350000px;}
.x45_c00406{left:608.850000px;}
.x114_c00406{left:609.900000px;}
.x2d_c00406{left:610.950000px;}
.x10a_c00406{left:612.900000px;}
.xff_c00406{left:615.900000px;}
.x3a_c00406{left:617.100000px;}
.x66_c00406{left:620.700000px;}
.xde_c00406{left:623.100000px;}
.x1c_c00406{left:624.450000px;}
.x46_c00406{left:626.100000px;}
.x99_c00406{left:630.450000px;}
.xf_c00406{left:632.250000px;}
.x7e_c00406{left:633.750000px;}
.xea_c00406{left:638.100000px;}
.x53_c00406{left:639.150000px;}
.x115_c00406{left:640.800000px;}
.x72_c00406{left:643.050000px;}
.xb3_c00406{left:644.100000px;}
.x67_c00406{left:646.200000px;}
.xf7_c00406{left:651.000000px;}
.xa3_c00406{left:652.050000px;}
.x86_c00406{left:654.000000px;}
.x7f_c00406{left:658.950000px;}
.x3b_c00406{left:660.000000px;}
.x47_c00406{left:662.400000px;}
.xd1_c00406{left:663.900000px;}
.xac_c00406{left:666.150000px;}
.x2e_c00406{left:668.250000px;}
.x10_c00406{left:670.350000px;}
.x1d_c00406{left:672.300000px;}
.xf0_c00406{left:674.100000px;}
.x5b_c00406{left:676.800000px;}
.xa4_c00406{left:680.100000px;}
.x100_c00406{left:681.750000px;}
.xad_c00406{left:685.650000px;}
.x1e_c00406{left:687.000000px;}
.x3c_c00406{left:689.550000px;}
.x73_c00406{left:690.900000px;}
.x110_c00406{left:692.550000px;}
.x5c_c00406{left:693.750000px;}
.xb4_c00406{left:695.250000px;}
.xdf_c00406{left:697.200000px;}
.xf8_c00406{left:698.550000px;}
.x104_c00406{left:699.900000px;}
.x11b_c00406{left:701.700000px;}
.x9a_c00406{left:704.550000px;}
.xf4_c00406{left:707.850000px;}
.x74_c00406{left:711.450000px;}
.x2f_c00406{left:714.750000px;}
.xd2_c00406{left:717.900000px;}
.xd8_c00406{left:720.000000px;}
.x11_c00406{left:722.550000px;}
.x105_c00406{left:724.800000px;}
.xb5_c00406{left:726.150000px;}
.xa5_c00406{left:728.400000px;}
.x9b_c00406{left:733.650000px;}
.xe4_c00406{left:734.700000px;}
.xf9_c00406{left:736.650000px;}
.x30_c00406{left:742.050000px;}
.x87_c00406{left:743.250000px;}
.x3d_c00406{left:744.300000px;}
.x75_c00406{left:751.050000px;}
.x1f_c00406{left:752.100000px;}
.xae_c00406{left:753.300000px;}
.xd3_c00406{left:756.450000px;}
.x68_c00406{left:758.850000px;}
.xc1_c00406{left:759.900000px;}
.x116_c00406{left:762.000000px;}
.xe0_c00406{left:763.050000px;}
.xe5_c00406{left:766.050000px;}
.x101_c00406{left:768.900000px;}
.xd9_c00406{left:770.100000px;}
.x5d_c00406{left:771.450000px;}
.x54_c00406{left:774.150000px;}
.x20_c00406{left:775.200000px;}
.x69_c00406{left:776.550000px;}
.x95_c00406{left:778.800000px;}
.xc2_c00406{left:780.750000px;}
.x12_c00406{left:783.750000px;}
.xa6_c00406{left:788.100000px;}
.x31_c00406{left:790.950000px;}
.xaf_c00406{left:796.200000px;}
.xc3_c00406{left:798.000000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws8_c00406{word-spacing:0.000000pt;}
.ws2_c00406{word-spacing:1.743590pt;}
.ws4_c00406{word-spacing:2.444444pt;}
.ws1_c00406{word-spacing:4.032906pt;}
.ws3_c00406{word-spacing:4.374198pt;}
.ws6_c00406{word-spacing:4.974306pt;}
.ws0_c00406{word-spacing:6.347981pt;}
.ws7_c00406{word-spacing:7.036831pt;}
.ws5_c00406{word-spacing:7.777778pt;}
.fs1_c00406{font-size:48.000000pt;}
.fs0_c00406{font-size:53.333333pt;}
.y0_c00406{bottom:0.000000pt;}
.y26_c00406{bottom:227.866667pt;}
.y25_c00406{bottom:241.600000pt;}
.y24_c00406{bottom:269.733333pt;}
.y23_c00406{bottom:287.333333pt;}
.y22_c00406{bottom:304.933333pt;}
.y21_c00406{bottom:322.533333pt;}
.y20_c00406{bottom:340.533333pt;}
.y1f_c00406{bottom:358.266667pt;}
.y1e_c00406{bottom:375.866667pt;}
.y1d_c00406{bottom:393.733333pt;}
.y1c_c00406{bottom:411.333333pt;}
.y1b_c00406{bottom:428.666667pt;}
.y1a_c00406{bottom:446.533333pt;}
.y19_c00406{bottom:464.400000pt;}
.y18_c00406{bottom:482.000000pt;}
.y17_c00406{bottom:499.333333pt;}
.y16_c00406{bottom:517.200000pt;}
.y15_c00406{bottom:535.066667pt;}
.y14_c00406{bottom:568.933333pt;}
.y13_c00406{bottom:586.533333pt;}
.y12_c00406{bottom:604.800000pt;}
.y11_c00406{bottom:622.133333pt;}
.y10_c00406{bottom:640.000000pt;}
.yf_c00406{bottom:657.600000pt;}
.ye_c00406{bottom:675.200000pt;}
.yd_c00406{bottom:692.800000pt;}
.yc_c00406{bottom:710.666667pt;}
.yb_c00406{bottom:739.866667pt;}
.ya_c00406{bottom:757.733333pt;}
.y9_c00406{bottom:775.333333pt;}
.y8_c00406{bottom:792.933333pt;}
.y7_c00406{bottom:810.533333pt;}
.y6_c00406{bottom:828.266667pt;}
.y5_c00406{bottom:846.133333pt;}
.y4_c00406{bottom:863.733333pt;}
.y3_c00406{bottom:881.600000pt;}
.y2_c00406{bottom:899.200000pt;}
.y1_c00406{bottom:933.066667pt;}
.h3_c00406{height:48.000000pt;}
.h2_c00406{height:53.333333pt;}
.h1_c00406{height:1036.666667pt;}
.h0_c00406{height:1036.800049pt;}
.w0_c00406{width:818.559977pt;}
.w1_c00406{width:818.666667pt;}
.x0_c00406{left:0.000000pt;}
.x111_c00406{left:124.000000pt;}
.x3_c00406{left:125.066667pt;}
.x1_c00406{left:126.666667pt;}
.x5e_c00406{left:141.066667pt;}
.xfa_c00406{left:142.133333pt;}
.xb0_c00406{left:148.133333pt;}
.x6a_c00406{left:150.533333pt;}
.x48_c00406{left:152.666667pt;}
.x21_c00406{left:154.400000pt;}
.xe1_c00406{left:156.000000pt;}
.x4_c00406{left:159.333333pt;}
.x32_c00406{left:160.400000pt;}
.x49_c00406{left:163.600000pt;}
.xb6_c00406{left:165.866667pt;}
.x3e_c00406{left:169.866667pt;}
.x106_c00406{left:174.800000pt;}
.x22_c00406{left:176.800000pt;}
.x55_c00406{left:178.000000pt;}
.x5_c00406{left:180.133333pt;}
.xb7_c00406{left:182.133333pt;}
.x6b_c00406{left:185.733333pt;}
.x5f_c00406{left:187.200000pt;}
.x76_c00406{left:189.866667pt;}
.x10b_c00406{left:191.333333pt;}
.xfb_c00406{left:192.400000pt;}
.x4a_c00406{left:194.666667pt;}
.x13_c00406{left:196.533333pt;}
.xb1_c00406{left:198.400000pt;}
.xc4_c00406{left:199.600000pt;}
.x23_c00406{left:203.333333pt;}
.x80_c00406{left:204.800000pt;}
.xf5_c00406{left:206.133333pt;}
.x3f_c00406{left:207.333333pt;}
.x33_c00406{left:210.266667pt;}
.x88_c00406{left:212.933333pt;}
.x77_c00406{left:214.800000pt;}
.x96_c00406{left:216.533333pt;}
.x14_c00406{left:218.000000pt;}
.xcd_c00406{left:219.600000pt;}
.xc5_c00406{left:221.066667pt;}
.xd4_c00406{left:223.066667pt;}
.xb8_c00406{left:226.533333pt;}
.xfc_c00406{left:227.600000pt;}
.x24_c00406{left:228.666667pt;}
.x15_c00406{left:230.533333pt;}
.xf1_c00406{left:231.866667pt;}
.x112_c00406{left:233.066667pt;}
.x6c_c00406{left:234.000000pt;}
.x60_c00406{left:237.333333pt;}
.x56_c00406{left:238.533333pt;}
.x81_c00406{left:240.000000pt;}
.x8d_c00406{left:241.333333pt;}
.x6_c00406{left:242.533333pt;}
.xc6_c00406{left:244.800000pt;}
.xd5_c00406{left:245.733333pt;}
.x4b_c00406{left:247.466667pt;}
.x40_c00406{left:249.600000pt;}
.x78_c00406{left:251.600000pt;}
.x25_c00406{left:252.933333pt;}
.x10c_c00406{left:256.000000pt;}
.x113_c00406{left:258.000000pt;}
.x89_c00406{left:260.000000pt;}
.x102_c00406{left:262.933333pt;}
.xb9_c00406{left:264.266667pt;}
.xa7_c00406{left:265.200000pt;}
.x7_c00406{left:268.800000pt;}
.xfd_c00406{left:269.733333pt;}
.x8e_c00406{left:271.466667pt;}
.x119_c00406{left:274.133333pt;}
.x16_c00406{left:275.066667pt;}
.xba_c00406{left:282.133333pt;}
.x107_c00406{left:285.200000pt;}
.x34_c00406{left:286.800000pt;}
.x4c_c00406{left:289.066667pt;}
.x8_c00406{left:290.266667pt;}
.x9c_c00406{left:292.000000pt;}
.x79_c00406{left:293.200000pt;}
.x26_c00406{left:294.800000pt;}
.xe2_c00406{left:296.133333pt;}
.x41_c00406{left:297.333333pt;}
.xbb_c00406{left:298.400000pt;}
.x35_c00406{left:299.600000pt;}
.x103_c00406{left:302.666667pt;}
.xe6_c00406{left:304.266667pt;}
.x8f_c00406{left:308.933333pt;}
.xda_c00406{left:312.266667pt;}
.xc7_c00406{left:313.333333pt;}
.x27_c00406{left:315.600000pt;}
.x4d_c00406{left:316.933333pt;}
.x8a_c00406{left:318.800000pt;}
.xd6_c00406{left:320.266667pt;}
.x117_c00406{left:321.600000pt;}
.x17_c00406{left:324.000000pt;}
.x4e_c00406{left:327.866667pt;}
.x11a_c00406{left:330.800000pt;}
.xc8_c00406{left:331.866667pt;}
.x90_c00406{left:333.200000pt;}
.x7a_c00406{left:335.733333pt;}
.x82_c00406{left:337.200000pt;}
.x9d_c00406{left:339.066667pt;}
.x57_c00406{left:340.266667pt;}
.x6d_c00406{left:343.066667pt;}
.xdb_c00406{left:344.000000pt;}
.x11c_c00406{left:344.933333pt;}
.xf6_c00406{left:346.000000pt;}
.x9_c00406{left:346.933333pt;}
.x18_c00406{left:349.333333pt;}
.xc9_c00406{left:355.866667pt;}
.x28_c00406{left:358.133333pt;}
.x97_c00406{left:359.466667pt;}
.x83_c00406{left:361.866667pt;}
.x36_c00406{left:362.933333pt;}
.xa_c00406{left:365.200000pt;}
.x6e_c00406{left:368.000000pt;}
.x9e_c00406{left:369.733333pt;}
.x29_c00406{left:371.200000pt;}
.xce_c00406{left:373.466667pt;}
.x118_c00406{left:374.400000pt;}
.xeb_c00406{left:376.933333pt;}
.x4f_c00406{left:378.400000pt;}
.xbc_c00406{left:380.666667pt;}
.x11e_c00406{left:382.000000pt;}
.xb_c00406{left:386.000000pt;}
.xa8_c00406{left:387.066667pt;}
.x61_c00406{left:388.666667pt;}
.x2_c00406{left:390.400000pt;}
.xca_c00406{left:392.666667pt;}
.xdc_c00406{left:393.866667pt;}
.xec_c00406{left:394.800000pt;}
.x58_c00406{left:396.533333pt;}
.xc_c00406{left:398.133333pt;}
.xf2_c00406{left:400.133333pt;}
.x50_c00406{left:401.066667pt;}
.xfe_c00406{left:402.800000pt;}
.x6f_c00406{left:403.866667pt;}
.x10f_c00406{left:405.066667pt;}
.x42_c00406{left:407.733333pt;}
.xcf_c00406{left:411.200000pt;}
.x2a_c00406{left:412.800000pt;}
.x108_c00406{left:415.066667pt;}
.xe7_c00406{left:416.266667pt;}
.x11d_c00406{left:419.200000pt;}
.xed_c00406{left:420.400000pt;}
.xdd_c00406{left:421.333333pt;}
.x62_c00406{left:422.266667pt;}
.x9f_c00406{left:425.066667pt;}
.x7b_c00406{left:426.400000pt;}
.x43_c00406{left:428.266667pt;}
.xa9_c00406{left:430.266667pt;}
.x19_c00406{left:431.866667pt;}
.x37_c00406{left:434.000000pt;}
.xbd_c00406{left:436.666667pt;}
.x63_c00406{left:438.000000pt;}
.xcb_c00406{left:439.333333pt;}
.x91_c00406{left:443.866667pt;}
.x84_c00406{left:445.333333pt;}
.x38_c00406{left:447.066667pt;}
.x7c_c00406{left:449.066667pt;}
.x2b_c00406{left:450.533333pt;}
.xaa_c00406{left:453.333333pt;}
.x8b_c00406{left:455.200000pt;}
.xa0_c00406{left:456.133333pt;}
.x70_c00406{left:457.600000pt;}
.xd7_c00406{left:458.533333pt;}
.x10d_c00406{left:461.466667pt;}
.xe8_c00406{left:464.533333pt;}
.xbe_c00406{left:466.800000pt;}
.x85_c00406{left:470.000000pt;}
.x59_c00406{left:472.000000pt;}
.xb2_c00406{left:474.000000pt;}
.xd_c00406{left:475.600000pt;}
.x92_c00406{left:476.800000pt;}
.x2c_c00406{left:478.400000pt;}
.xbf_c00406{left:479.866667pt;}
.xa1_c00406{left:481.066667pt;}
.x109_c00406{left:482.800000pt;}
.x64_c00406{left:485.733333pt;}
.x5a_c00406{left:488.000000pt;}
.xcc_c00406{left:489.866667pt;}
.x44_c00406{left:492.533333pt;}
.x1a_c00406{left:494.266667pt;}
.x10e_c00406{left:499.866667pt;}
.x7d_c00406{left:501.600000pt;}
.xf3_c00406{left:502.800000pt;}
.x1b_c00406{left:504.533333pt;}
.xe3_c00406{left:507.466667pt;}
.xee_c00406{left:508.400000pt;}
.x51_c00406{left:511.866667pt;}
.x8c_c00406{left:513.466667pt;}
.xe_c00406{left:516.266667pt;}
.x98_c00406{left:517.866667pt;}
.xef_c00406{left:518.933333pt;}
.x93_c00406{left:520.000000pt;}
.xa2_c00406{left:521.733333pt;}
.x39_c00406{left:525.200000pt;}
.xe9_c00406{left:526.933333pt;}
.xc0_c00406{left:528.533333pt;}
.x52_c00406{left:529.466667pt;}
.x65_c00406{left:532.800000pt;}
.x71_c00406{left:535.066667pt;}
.xab_c00406{left:537.466667pt;}
.x94_c00406{left:538.933333pt;}
.xd0_c00406{left:539.866667pt;}
.x45_c00406{left:541.200000pt;}
.x114_c00406{left:542.133333pt;}
.x2d_c00406{left:543.066667pt;}
.x10a_c00406{left:544.800000pt;}
.xff_c00406{left:547.466667pt;}
.x3a_c00406{left:548.533333pt;}
.x66_c00406{left:551.733333pt;}
.xde_c00406{left:553.866667pt;}
.x1c_c00406{left:555.066667pt;}
.x46_c00406{left:556.533333pt;}
.x99_c00406{left:560.400000pt;}
.xf_c00406{left:562.000000pt;}
.x7e_c00406{left:563.333333pt;}
.xea_c00406{left:567.200000pt;}
.x53_c00406{left:568.133333pt;}
.x115_c00406{left:569.600000pt;}
.x72_c00406{left:571.600000pt;}
.xb3_c00406{left:572.533333pt;}
.x67_c00406{left:574.400000pt;}
.xf7_c00406{left:578.666667pt;}
.xa3_c00406{left:579.600000pt;}
.x86_c00406{left:581.333333pt;}
.x7f_c00406{left:585.733333pt;}
.x3b_c00406{left:586.666667pt;}
.x47_c00406{left:588.800000pt;}
.xd1_c00406{left:590.133333pt;}
.xac_c00406{left:592.133333pt;}
.x2e_c00406{left:594.000000pt;}
.x10_c00406{left:595.866667pt;}
.x1d_c00406{left:597.600000pt;}
.xf0_c00406{left:599.200000pt;}
.x5b_c00406{left:601.600000pt;}
.xa4_c00406{left:604.533333pt;}
.x100_c00406{left:606.000000pt;}
.xad_c00406{left:609.466667pt;}
.x1e_c00406{left:610.666667pt;}
.x3c_c00406{left:612.933333pt;}
.x73_c00406{left:614.133333pt;}
.x110_c00406{left:615.600000pt;}
.x5c_c00406{left:616.666667pt;}
.xb4_c00406{left:618.000000pt;}
.xdf_c00406{left:619.733333pt;}
.xf8_c00406{left:620.933333pt;}
.x104_c00406{left:622.133333pt;}
.x11b_c00406{left:623.733333pt;}
.x9a_c00406{left:626.266667pt;}
.xf4_c00406{left:629.200000pt;}
.x74_c00406{left:632.400000pt;}
.x2f_c00406{left:635.333333pt;}
.xd2_c00406{left:638.133333pt;}
.xd8_c00406{left:640.000000pt;}
.x11_c00406{left:642.266667pt;}
.x105_c00406{left:644.266667pt;}
.xb5_c00406{left:645.466667pt;}
.xa5_c00406{left:647.466667pt;}
.x9b_c00406{left:652.133333pt;}
.xe4_c00406{left:653.066667pt;}
.xf9_c00406{left:654.800000pt;}
.x30_c00406{left:659.600000pt;}
.x87_c00406{left:660.666667pt;}
.x3d_c00406{left:661.600000pt;}
.x75_c00406{left:667.600000pt;}
.x1f_c00406{left:668.533333pt;}
.xae_c00406{left:669.600000pt;}
.xd3_c00406{left:672.400000pt;}
.x68_c00406{left:674.533333pt;}
.xc1_c00406{left:675.466667pt;}
.x116_c00406{left:677.333333pt;}
.xe0_c00406{left:678.266667pt;}
.xe5_c00406{left:680.933333pt;}
.x101_c00406{left:683.466667pt;}
.xd9_c00406{left:684.533333pt;}
.x5d_c00406{left:685.733333pt;}
.x54_c00406{left:688.133333pt;}
.x20_c00406{left:689.066667pt;}
.x69_c00406{left:690.266667pt;}
.x95_c00406{left:692.266667pt;}
.xc2_c00406{left:694.000000pt;}
.x12_c00406{left:696.666667pt;}
.xa6_c00406{left:700.533333pt;}
.x31_c00406{left:703.066667pt;}
.xaf_c00406{left:707.733333pt;}
.xc3_c00406{left:709.333333pt;}
}





/* 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_c00407 {
    display:none;
  }
  .loading-indicator_c00407.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00407 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_c00407 { 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_c00407" -> "#page-container .classname_c00407")
 */
.pf_c00407 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00407 { /* 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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00407 { /* 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_c00407 { /* 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_c00407 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00407 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00407 {overflow:visible;}
  }
}
.c_c00407 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00407 { /* 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_c00407:after { /* webkit #35443 */
  content: '';
}
.t_c00407:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00407 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 */
}
.__c00407 { /* 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_c00407 { /* info for Javascript */
  display:none;
}
.l_c00407 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00407 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00407 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00407: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_c00407 {
    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_c00407.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00407.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_c00407 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00407{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00407;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.000000;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;}
.m95_c00407{transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066750,0.000000,0.000000,0.250000,0,0);}
.m70_c00407{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m20_c00407{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m86_c00407{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00407{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m97_c00407{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m91_c00407{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00407{transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00407{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00407{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00407{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00407{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00407{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m98_c00407{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m88_c00407{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m21_c00407{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m44_c00407{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m99_c00407{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m77_c00407{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m92_c00407{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00407{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m26_c00407{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m90_c00407{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00407{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00407{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00407{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00407{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m49_c00407{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m74_c00407{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m71_c00407{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00407{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m46_c00407{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m52_c00407{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m96_c00407{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m64_c00407{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00407{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m94_c00407{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m89_c00407{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m65_c00407{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00407{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00407{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m80_c00407{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00407{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00407{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00407{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00407{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00407{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00407{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m79_c00407{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00407{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m57_c00407{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m36_c00407{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m85_c00407{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m84_c00407{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m43_c00407{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m68_c00407{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00407{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m42_c00407{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00407{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00407{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00407{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m69_c00407{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00407{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m83_c00407{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00407{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m37_c00407{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m62_c00407{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m41_c00407{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m72_c00407{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m59_c00407{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m48_c00407{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m31_c00407{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m39_c00407{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);}
.m1e_c00407{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m50_c00407{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m25_c00407{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m53_c00407{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m24_c00407{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m81_c00407{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00407{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m22_c00407{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00407{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m63_c00407{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m66_c00407{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m61_c00407{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00407{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m34_c00407{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m58_c00407{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00407{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m23_c00407{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m38_c00407{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mb_c00407{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m56_c00407{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00407{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m75_c00407{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00407{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.ma_c00407{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00407{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00407{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6_c00407{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m45_c00407{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00407{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00407{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00407{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m78_c00407{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00407{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00407{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m33_c00407{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00407{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m55_c00407{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m87_c00407{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8_c00407{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00407{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00407{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m28_c00407{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00407{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00407{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00407{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00407{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00407{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m67_c00407{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m51_c00407{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m29_c00407{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m40_c00407{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00407{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m27_c00407{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m93_c00407{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00407{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m35_c00407{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00407{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00407{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m60_c00407{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m76_c00407{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00407{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00407{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m2_c00407{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00407{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00407{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m5_c00407{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00407{vertical-align:0.000000px;}
.ls0_c00407{letter-spacing:0.000000px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{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__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc_c00407{word-spacing:0.000000px;}
.ws2_c00407{word-spacing:2.875000px;}
.ws8_c00407{word-spacing:3.877226px;}
.ws7_c00407{word-spacing:4.375000px;}
.ws0_c00407{word-spacing:5.875000px;}
.ws4_c00407{word-spacing:7.141479px;}
.ws9_c00407{word-spacing:7.500000px;}
.ws1_c00407{word-spacing:8.750000px;}
.wsa_c00407{word-spacing:10.909091px;}
.ws3_c00407{word-spacing:17.333333px;}
.ws5_c00407{word-spacing:20.666667px;}
.ws6_c00407{word-spacing:45.668137px;}
.wsb_c00407{word-spacing:910.500000px;}
.fc0_c00407{color:transparent;}
.fs1_c00407{font-size:54.000000px;}
.fs0_c00407{font-size:66.000000px;}
.y0_c00407{bottom:0.000000px;}
.y22_c00407{bottom:142.200000px;}
.y21_c00407{bottom:158.700000px;}
.y20_c00407{bottom:173.850000px;}
.y1f_c00407{bottom:203.550000px;}
.y1e_c00407{bottom:223.350000px;}
.y1d_c00407{bottom:243.150000px;}
.y1c_c00407{bottom:263.250000px;}
.y1b_c00407{bottom:283.350000px;}
.y1a_c00407{bottom:302.850000px;}
.y19_c00407{bottom:323.400000px;}
.y18_c00407{bottom:343.200000px;}
.y17_c00407{bottom:363.000000px;}
.y16_c00407{bottom:382.800000px;}
.y15_c00407{bottom:402.900000px;}
.y14_c00407{bottom:422.700000px;}
.y13_c00407{bottom:442.500000px;}
.y12_c00407{bottom:462.600000px;}
.y11_c00407{bottom:482.100000px;}
.y10_c00407{bottom:502.650000px;}
.yf_c00407{bottom:522.450000px;}
.ye_c00407{bottom:542.550000px;}
.yd_c00407{bottom:562.350000px;}
.yc_c00407{bottom:582.900000px;}
.yb_c00407{bottom:601.650000px;}
.ya_c00407{bottom:622.500000px;}
.y9_c00407{bottom:642.600000px;}
.y8_c00407{bottom:662.400000px;}
.y7_c00407{bottom:681.450000px;}
.y6_c00407{bottom:721.650000px;}
.y5_c00407{bottom:742.200000px;}
.y4_c00407{bottom:761.700000px;}
.y3_c00407{bottom:794.550000px;}
.y2_c00407{bottom:827.250000px;}
.y1_c00407{bottom:1041.900000px;}
.h3_c00407{height:54.000000px;}
.h2_c00407{height:66.000000px;}
.h1_c00407{height:1166.250000px;}
.h0_c00407{height:1166.400056px;}
.w0_c00407{width:920.879975px;}
.w1_c00407{width:921.000000px;}
.x0_c00407{left:0.000000px;}
.xf1_c00407{left:104.100000px;}
.x89_c00407{left:105.150000px;}
.x54_c00407{left:106.200000px;}
.xf_c00407{left:107.250000px;}
.xff_c00407{left:123.450000px;}
.x31_c00407{left:124.950000px;}
.xf4_c00407{left:132.750000px;}
.x55_c00407{left:135.750000px;}
.x100_c00407{left:136.800000px;}
.x40_c00407{left:137.850000px;}
.xb1_c00407{left:141.600000px;}
.xba_c00407{left:143.100000px;}
.x7c_c00407{left:150.900000px;}
.x8a_c00407{left:153.750000px;}
.xe3_c00407{left:156.600000px;}
.xd2_c00407{left:158.700000px;}
.x32_c00407{left:162.000000px;}
.x56_c00407{left:163.050000px;}
.xdc_c00407{left:164.400000px;}
.xca_c00407{left:168.900000px;}
.x7d_c00407{left:171.750000px;}
.x10_c00407{left:173.550000px;}
.x62_c00407{left:176.100000px;}
.x71_c00407{left:177.300000px;}
.x21_c00407{left:179.100000px;}
.x4a_c00407{left:180.600000px;}
.xdd_c00407{left:182.400000px;}
.xc4_c00407{left:189.150000px;}
.xf9_c00407{left:190.350000px;}
.xd6_c00407{left:192.300000px;}
.x33_c00407{left:195.900000px;}
.x22_c00407{left:197.400000px;}
.x101_c00407{left:198.750000px;}
.x63_c00407{left:200.250000px;}
.x106_c00407{left:202.200000px;}
.xc5_c00407{left:203.250000px;}
.xd3_c00407{left:205.200000px;}
.x11_c00407{left:206.250000px;}
.x34_c00407{left:207.450000px;}
.x64_c00407{left:209.850000px;}
.xb2_c00407{left:212.100000px;}
.x9e_c00407{left:214.500000px;}
.xd7_c00407{left:216.450000px;}
.x7e_c00407{left:218.850000px;}
.x57_c00407{left:220.650000px;}
.x94_c00407{left:223.800000px;}
.xde_c00407{left:225.900000px;}
.x35_c00407{left:226.950000px;}
.x8b_c00407{left:228.300000px;}
.x41_c00407{left:232.500000px;}
.xb3_c00407{left:235.200000px;}
.x65_c00407{left:237.150000px;}
.x4_c00407{left:238.650000px;}
.x58_c00407{left:240.750000px;}
.xf5_c00407{left:242.850000px;}
.xeb_c00407{left:250.050000px;}
.x23_c00407{left:251.700000px;}
.x9f_c00407{left:253.350000px;}
.x7f_c00407{left:255.150000px;}
.x36_c00407{left:256.800000px;}
.x12_c00407{left:258.450000px;}
.x42_c00407{left:259.800000px;}
.x24_c00407{left:262.800000px;}
.xcb_c00407{left:264.000000px;}
.xe4_c00407{left:266.700000px;}
.x59_c00407{left:268.050000px;}
.x4b_c00407{left:270.300000px;}
.xdf_c00407{left:272.400000px;}
.x95_c00407{left:273.600000px;}
.xfa_c00407{left:274.950000px;}
.xa8_c00407{left:276.900000px;}
.xd8_c00407{left:278.400000px;}
.x25_c00407{left:279.750000px;}
.xc6_c00407{left:282.450000px;}
.x4c_c00407{left:285.750000px;}
.x72_c00407{left:288.900000px;}
.xe0_c00407{left:291.150000px;}
.x66_c00407{left:295.500000px;}
.x5_c00407{left:297.000000px;}
.x96_c00407{left:298.050000px;}
.xc7_c00407{left:299.400000px;}
.x43_c00407{left:301.500000px;}
.x80_c00407{left:303.000000px;}
.xa9_c00407{left:305.400000px;}
.x13_c00407{left:306.750000px;}
.x26_c00407{left:310.050000px;}
.xf6_c00407{left:312.000000px;}
.x67_c00407{left:315.600000px;}
.xaa_c00407{left:320.550000px;}
.x14_c00407{left:323.700000px;}
.xbb_c00407{left:325.650000px;}
.x5a_c00407{left:327.150000px;}
.xe5_c00407{left:328.200000px;}
.xfb_c00407{left:329.250000px;}
.x8c_c00407{left:330.900000px;}
.xf7_c00407{left:332.850000px;}
.x37_c00407{left:338.850000px;}
.x97_c00407{left:341.550000px;}
.xfc_c00407{left:343.350000px;}
.x4d_c00407{left:344.850000px;}
.xec_c00407{left:348.300000px;}
.x15_c00407{left:352.800000px;}
.x6_c00407{left:354.600000px;}
.x38_c00407{left:357.600000px;}
.x44_c00407{left:358.800000px;}
.xa0_c00407{left:362.400000px;}
.x2_c00407{left:370.500000px;}
.x7_c00407{left:372.300000px;}
.xb4_c00407{left:373.500000px;}
.xcc_c00407{left:375.900000px;}
.x81_c00407{left:377.100000px;}
.xab_c00407{left:378.450000px;}
.xfd_c00407{left:383.250000px;}
.x45_c00407{left:384.300000px;}
.x98_c00407{left:386.550000px;}
.x5b_c00407{left:387.750000px;}
.xbc_c00407{left:390.450000px;}
.xd4_c00407{left:391.650000px;}
.x8d_c00407{left:394.650000px;}
.x82_c00407{left:396.900000px;}
.x27_c00407{left:397.950000px;}
.xed_c00407{left:399.000000px;}
.xb5_c00407{left:400.200000px;}
.x73_c00407{left:401.250000px;}
.x16_c00407{left:403.200000px;}
.x68_c00407{left:405.600000px;}
.xf2_c00407{left:406.800000px;}
.x99_c00407{left:409.650000px;}
.xac_c00407{left:412.350000px;}
.x28_c00407{left:414.900000px;}
.xe6_c00407{left:416.400000px;}
.xbd_c00407{left:419.550000px;}
.xcd_c00407{left:422.700000px;}
.x8_c00407{left:423.750000px;}
.x39_c00407{left:425.550000px;}
.xc8_c00407{left:431.250000px;}
.xbe_c00407{left:437.250000px;}
.x1_c00407{left:438.900000px;}
.xd9_c00407{left:440.400000px;}
.x46_c00407{left:442.950000px;}
.x69_c00407{left:444.000000px;}
.x17_c00407{left:447.150000px;}
.x74_c00407{left:453.150000px;}
.x3_c00407{left:455.100000px;}
.x5c_c00407{left:457.200000px;}
.x4e_c00407{left:460.050000px;}
.xce_c00407{left:462.600000px;}
.x75_c00407{left:464.250000px;}
.x29_c00407{left:465.750000px;}
.xe1_c00407{left:468.600000px;}
.xad_c00407{left:471.450000px;}
.x3a_c00407{left:473.700000px;}
.x83_c00407{left:475.800000px;}
.x4f_c00407{left:477.750000px;}
.x2a_c00407{left:480.450000px;}
.xa1_c00407{left:481.500000px;}
.x18_c00407{left:483.150000px;}
.xd5_c00407{left:487.500000px;}
.xe7_c00407{left:489.900000px;}
.x50_c00407{left:491.850000px;}
.x9_c00407{left:494.400000px;}
.x84_c00407{left:495.900000px;}
.x6a_c00407{left:497.700000px;}
.x8e_c00407{left:499.050000px;}
.x5d_c00407{left:501.900000px;}
.xbf_c00407{left:503.850000px;}
.x3b_c00407{left:505.800000px;}
.xa_c00407{left:509.100000px;}
.x2b_c00407{left:510.750000px;}
.xcf_c00407{left:516.600000px;}
.x6b_c00407{left:520.350000px;}
.xee_c00407{left:523.200000px;}
.x8f_c00407{left:524.550000px;}
.xc0_c00407{left:529.350000px;}
.xda_c00407{left:533.250000px;}
.x47_c00407{left:534.450000px;}
.xa2_c00407{left:536.550000px;}
.x19_c00407{left:537.900000px;}
.x9a_c00407{left:541.800000px;}
.x76_c00407{left:543.900000px;}
.xb_c00407{left:545.400000px;}
.xe8_c00407{left:547.500000px;}
.xc1_c00407{left:549.450000px;}
.x5e_c00407{left:551.550000px;}
.x51_c00407{left:553.350000px;}
.x1a_c00407{left:555.600000px;}
.x85_c00407{left:558.900000px;}
.xc_c00407{left:561.600000px;}
.x6c_c00407{left:563.250000px;}
.x3c_c00407{left:564.450000px;}
.xd0_c00407{left:567.750000px;}
.x9b_c00407{left:569.850000px;}
.xb6_c00407{left:571.200000px;}
.xe2_c00407{left:573.450000px;}
.xa3_c00407{left:581.250000px;}
.x90_c00407{left:584.250000px;}
.xf8_c00407{left:586.200000px;}
.xc2_c00407{left:589.050000px;}
.xd_c00407{left:590.100000px;}
.x2c_c00407{left:592.050000px;}
.xef_c00407{left:594.450000px;}
.x77_c00407{left:596.100000px;}
.xae_c00407{left:598.500000px;}
.x48_c00407{left:600.000000px;}
.xa4_c00407{left:601.800000px;}
.x102_c00407{left:603.000000px;}
.x86_c00407{left:604.200000px;}
.xe_c00407{left:606.600000px;}
.x1b_c00407{left:608.850000px;}
.x5f_c00407{left:610.950000px;}
.x3d_c00407{left:619.200000px;}
.x6d_c00407{left:622.200000px;}
.x87_c00407{left:625.050000px;}
.xe9_c00407{left:627.000000px;}
.x78_c00407{left:630.000000px;}
.x1c_c00407{left:636.150000px;}
.x103_c00407{left:637.200000px;}
.x52_c00407{left:639.750000px;}
.xa5_c00407{left:642.900000px;}
.x2d_c00407{left:644.250000px;}
.x6e_c00407{left:646.350000px;}
.x3e_c00407{left:654.150000px;}
.x2e_c00407{left:655.350000px;}
.x91_c00407{left:656.850000px;}
.x60_c00407{left:658.500000px;}
.x79_c00407{left:665.400000px;}
.xa6_c00407{left:669.150000px;}
.xb7_c00407{left:670.500000px;}
.xc9_c00407{left:672.450000px;}
.x2f_c00407{left:673.650000px;}
.x6f_c00407{left:677.250000px;}
.x3f_c00407{left:682.650000px;}
.xea_c00407{left:685.350000px;}
.xc3_c00407{left:687.750000px;}
.xaf_c00407{left:692.850000px;}
.x7a_c00407{left:693.900000px;}
.x1d_c00407{left:695.250000px;}
.x104_c00407{left:696.300000px;}
.x107_c00407{left:701.250000px;}
.xf0_c00407{left:702.450000px;}
.x30_c00407{left:703.950000px;}
.x9c_c00407{left:705.600000px;}
.x88_c00407{left:712.500000px;}
.x1e_c00407{left:714.000000px;}
.x70_c00407{left:715.050000px;}
.x61_c00407{left:718.950000px;}
.x53_c00407{left:721.800000px;}
.xd1_c00407{left:723.900000px;}
.x9d_c00407{left:727.500000px;}
.x1f_c00407{left:731.250000px;}
.xf3_c00407{left:732.600000px;}
.xb0_c00407{left:734.250000px;}
.xb8_c00407{left:735.300000px;}
.x105_c00407{left:736.950000px;}
.xa7_c00407{left:740.850000px;}
.xfe_c00407{left:742.500000px;}
.x92_c00407{left:743.550000px;}
.x20_c00407{left:747.450000px;}
.xdb_c00407{left:748.650000px;}
.x49_c00407{left:751.650000px;}
.x7b_c00407{left:759.750000px;}
.x93_c00407{left:761.250000px;}
.xb9_c00407{left:765.150000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.wsc_c00407{word-spacing:0.000000pt;}
.ws2_c00407{word-spacing:2.555556pt;}
.ws8_c00407{word-spacing:3.446423pt;}
.ws7_c00407{word-spacing:3.888889pt;}
.ws0_c00407{word-spacing:5.222222pt;}
.ws4_c00407{word-spacing:6.347981pt;}
.ws9_c00407{word-spacing:6.666667pt;}
.ws1_c00407{word-spacing:7.777778pt;}
.wsa_c00407{word-spacing:9.696970pt;}
.ws3_c00407{word-spacing:15.407407pt;}
.ws5_c00407{word-spacing:18.370370pt;}
.ws6_c00407{word-spacing:40.593899pt;}
.wsb_c00407{word-spacing:809.333333pt;}
.fs1_c00407{font-size:48.000000pt;}
.fs0_c00407{font-size:58.666667pt;}
.y0_c00407{bottom:0.000000pt;}
.y22_c00407{bottom:126.400000pt;}
.y21_c00407{bottom:141.066667pt;}
.y20_c00407{bottom:154.533333pt;}
.y1f_c00407{bottom:180.933333pt;}
.y1e_c00407{bottom:198.533333pt;}
.y1d_c00407{bottom:216.133333pt;}
.y1c_c00407{bottom:234.000000pt;}
.y1b_c00407{bottom:251.866667pt;}
.y1a_c00407{bottom:269.200000pt;}
.y19_c00407{bottom:287.466667pt;}
.y18_c00407{bottom:305.066667pt;}
.y17_c00407{bottom:322.666667pt;}
.y16_c00407{bottom:340.266667pt;}
.y15_c00407{bottom:358.133333pt;}
.y14_c00407{bottom:375.733333pt;}
.y13_c00407{bottom:393.333333pt;}
.y12_c00407{bottom:411.200000pt;}
.y11_c00407{bottom:428.533333pt;}
.y10_c00407{bottom:446.800000pt;}
.yf_c00407{bottom:464.400000pt;}
.ye_c00407{bottom:482.266667pt;}
.yd_c00407{bottom:499.866667pt;}
.yc_c00407{bottom:518.133333pt;}
.yb_c00407{bottom:534.800000pt;}
.ya_c00407{bottom:553.333333pt;}
.y9_c00407{bottom:571.200000pt;}
.y8_c00407{bottom:588.800000pt;}
.y7_c00407{bottom:605.733333pt;}
.y6_c00407{bottom:641.466667pt;}
.y5_c00407{bottom:659.733333pt;}
.y4_c00407{bottom:677.066667pt;}
.y3_c00407{bottom:706.266667pt;}
.y2_c00407{bottom:735.333333pt;}
.y1_c00407{bottom:926.133333pt;}
.h3_c00407{height:48.000000pt;}
.h2_c00407{height:58.666667pt;}
.h1_c00407{height:1036.666667pt;}
.h0_c00407{height:1036.800049pt;}
.w0_c00407{width:818.559977pt;}
.w1_c00407{width:818.666667pt;}
.x0_c00407{left:0.000000pt;}
.xf1_c00407{left:92.533333pt;}
.x89_c00407{left:93.466667pt;}
.x54_c00407{left:94.400000pt;}
.xf_c00407{left:95.333333pt;}
.xff_c00407{left:109.733333pt;}
.x31_c00407{left:111.066667pt;}
.xf4_c00407{left:118.000000pt;}
.x55_c00407{left:120.666667pt;}
.x100_c00407{left:121.600000pt;}
.x40_c00407{left:122.533333pt;}
.xb1_c00407{left:125.866667pt;}
.xba_c00407{left:127.200000pt;}
.x7c_c00407{left:134.133333pt;}
.x8a_c00407{left:136.666667pt;}
.xe3_c00407{left:139.200000pt;}
.xd2_c00407{left:141.066667pt;}
.x32_c00407{left:144.000000pt;}
.x56_c00407{left:144.933333pt;}
.xdc_c00407{left:146.133333pt;}
.xca_c00407{left:150.133333pt;}
.x7d_c00407{left:152.666667pt;}
.x10_c00407{left:154.266667pt;}
.x62_c00407{left:156.533333pt;}
.x71_c00407{left:157.600000pt;}
.x21_c00407{left:159.200000pt;}
.x4a_c00407{left:160.533333pt;}
.xdd_c00407{left:162.133333pt;}
.xc4_c00407{left:168.133333pt;}
.xf9_c00407{left:169.200000pt;}
.xd6_c00407{left:170.933333pt;}
.x33_c00407{left:174.133333pt;}
.x22_c00407{left:175.466667pt;}
.x101_c00407{left:176.666667pt;}
.x63_c00407{left:178.000000pt;}
.x106_c00407{left:179.733333pt;}
.xc5_c00407{left:180.666667pt;}
.xd3_c00407{left:182.400000pt;}
.x11_c00407{left:183.333333pt;}
.x34_c00407{left:184.400000pt;}
.x64_c00407{left:186.533333pt;}
.xb2_c00407{left:188.533333pt;}
.x9e_c00407{left:190.666667pt;}
.xd7_c00407{left:192.400000pt;}
.x7e_c00407{left:194.533333pt;}
.x57_c00407{left:196.133333pt;}
.x94_c00407{left:198.933333pt;}
.xde_c00407{left:200.800000pt;}
.x35_c00407{left:201.733333pt;}
.x8b_c00407{left:202.933333pt;}
.x41_c00407{left:206.666667pt;}
.xb3_c00407{left:209.066667pt;}
.x65_c00407{left:210.800000pt;}
.x4_c00407{left:212.133333pt;}
.x58_c00407{left:214.000000pt;}
.xf5_c00407{left:215.866667pt;}
.xeb_c00407{left:222.266667pt;}
.x23_c00407{left:223.733333pt;}
.x9f_c00407{left:225.200000pt;}
.x7f_c00407{left:226.800000pt;}
.x36_c00407{left:228.266667pt;}
.x12_c00407{left:229.733333pt;}
.x42_c00407{left:230.933333pt;}
.x24_c00407{left:233.600000pt;}
.xcb_c00407{left:234.666667pt;}
.xe4_c00407{left:237.066667pt;}
.x59_c00407{left:238.266667pt;}
.x4b_c00407{left:240.266667pt;}
.xdf_c00407{left:242.133333pt;}
.x95_c00407{left:243.200000pt;}
.xfa_c00407{left:244.400000pt;}
.xa8_c00407{left:246.133333pt;}
.xd8_c00407{left:247.466667pt;}
.x25_c00407{left:248.666667pt;}
.xc6_c00407{left:251.066667pt;}
.x4c_c00407{left:254.000000pt;}
.x72_c00407{left:256.800000pt;}
.xe0_c00407{left:258.800000pt;}
.x66_c00407{left:262.666667pt;}
.x5_c00407{left:264.000000pt;}
.x96_c00407{left:264.933333pt;}
.xc7_c00407{left:266.133333pt;}
.x43_c00407{left:268.000000pt;}
.x80_c00407{left:269.333333pt;}
.xa9_c00407{left:271.466667pt;}
.x13_c00407{left:272.666667pt;}
.x26_c00407{left:275.600000pt;}
.xf6_c00407{left:277.333333pt;}
.x67_c00407{left:280.533333pt;}
.xaa_c00407{left:284.933333pt;}
.x14_c00407{left:287.733333pt;}
.xbb_c00407{left:289.466667pt;}
.x5a_c00407{left:290.800000pt;}
.xe5_c00407{left:291.733333pt;}
.xfb_c00407{left:292.666667pt;}
.x8c_c00407{left:294.133333pt;}
.xf7_c00407{left:295.866667pt;}
.x37_c00407{left:301.200000pt;}
.x97_c00407{left:303.600000pt;}
.xfc_c00407{left:305.200000pt;}
.x4d_c00407{left:306.533333pt;}
.xec_c00407{left:309.600000pt;}
.x15_c00407{left:313.600000pt;}
.x6_c00407{left:315.200000pt;}
.x38_c00407{left:317.866667pt;}
.x44_c00407{left:318.933333pt;}
.xa0_c00407{left:322.133333pt;}
.x2_c00407{left:329.333333pt;}
.x7_c00407{left:330.933333pt;}
.xb4_c00407{left:332.000000pt;}
.xcc_c00407{left:334.133333pt;}
.x81_c00407{left:335.200000pt;}
.xab_c00407{left:336.400000pt;}
.xfd_c00407{left:340.666667pt;}
.x45_c00407{left:341.600000pt;}
.x98_c00407{left:343.600000pt;}
.x5b_c00407{left:344.666667pt;}
.xbc_c00407{left:347.066667pt;}
.xd4_c00407{left:348.133333pt;}
.x8d_c00407{left:350.800000pt;}
.x82_c00407{left:352.800000pt;}
.x27_c00407{left:353.733333pt;}
.xed_c00407{left:354.666667pt;}
.xb5_c00407{left:355.733333pt;}
.x73_c00407{left:356.666667pt;}
.x16_c00407{left:358.400000pt;}
.x68_c00407{left:360.533333pt;}
.xf2_c00407{left:361.600000pt;}
.x99_c00407{left:364.133333pt;}
.xac_c00407{left:366.533333pt;}
.x28_c00407{left:368.800000pt;}
.xe6_c00407{left:370.133333pt;}
.xbd_c00407{left:372.933333pt;}
.xcd_c00407{left:375.733333pt;}
.x8_c00407{left:376.666667pt;}
.x39_c00407{left:378.266667pt;}
.xc8_c00407{left:383.333333pt;}
.xbe_c00407{left:388.666667pt;}
.x1_c00407{left:390.133333pt;}
.xd9_c00407{left:391.466667pt;}
.x46_c00407{left:393.733333pt;}
.x69_c00407{left:394.666667pt;}
.x17_c00407{left:397.466667pt;}
.x74_c00407{left:402.800000pt;}
.x3_c00407{left:404.533333pt;}
.x5c_c00407{left:406.400000pt;}
.x4e_c00407{left:408.933333pt;}
.xce_c00407{left:411.200000pt;}
.x75_c00407{left:412.666667pt;}
.x29_c00407{left:414.000000pt;}
.xe1_c00407{left:416.533333pt;}
.xad_c00407{left:419.066667pt;}
.x3a_c00407{left:421.066667pt;}
.x83_c00407{left:422.933333pt;}
.x4f_c00407{left:424.666667pt;}
.x2a_c00407{left:427.066667pt;}
.xa1_c00407{left:428.000000pt;}
.x18_c00407{left:429.466667pt;}
.xd5_c00407{left:433.333333pt;}
.xe7_c00407{left:435.466667pt;}
.x50_c00407{left:437.200000pt;}
.x9_c00407{left:439.466667pt;}
.x84_c00407{left:440.800000pt;}
.x6a_c00407{left:442.400000pt;}
.x8e_c00407{left:443.600000pt;}
.x5d_c00407{left:446.133333pt;}
.xbf_c00407{left:447.866667pt;}
.x3b_c00407{left:449.600000pt;}
.xa_c00407{left:452.533333pt;}
.x2b_c00407{left:454.000000pt;}
.xcf_c00407{left:459.200000pt;}
.x6b_c00407{left:462.533333pt;}
.xee_c00407{left:465.066667pt;}
.x8f_c00407{left:466.266667pt;}
.xc0_c00407{left:470.533333pt;}
.xda_c00407{left:474.000000pt;}
.x47_c00407{left:475.066667pt;}
.xa2_c00407{left:476.933333pt;}
.x19_c00407{left:478.133333pt;}
.x9a_c00407{left:481.600000pt;}
.x76_c00407{left:483.466667pt;}
.xb_c00407{left:484.800000pt;}
.xe8_c00407{left:486.666667pt;}
.xc1_c00407{left:488.400000pt;}
.x5e_c00407{left:490.266667pt;}
.x51_c00407{left:491.866667pt;}
.x1a_c00407{left:493.866667pt;}
.x85_c00407{left:496.800000pt;}
.xc_c00407{left:499.200000pt;}
.x6c_c00407{left:500.666667pt;}
.x3c_c00407{left:501.733333pt;}
.xd0_c00407{left:504.666667pt;}
.x9b_c00407{left:506.533333pt;}
.xb6_c00407{left:507.733333pt;}
.xe2_c00407{left:509.733333pt;}
.xa3_c00407{left:516.666667pt;}
.x90_c00407{left:519.333333pt;}
.xf8_c00407{left:521.066667pt;}
.xc2_c00407{left:523.600000pt;}
.xd_c00407{left:524.533333pt;}
.x2c_c00407{left:526.266667pt;}
.xef_c00407{left:528.400000pt;}
.x77_c00407{left:529.866667pt;}
.xae_c00407{left:532.000000pt;}
.x48_c00407{left:533.333333pt;}
.xa4_c00407{left:534.933333pt;}
.x102_c00407{left:536.000000pt;}
.x86_c00407{left:537.066667pt;}
.xe_c00407{left:539.200000pt;}
.x1b_c00407{left:541.200000pt;}
.x5f_c00407{left:543.066667pt;}
.x3d_c00407{left:550.400000pt;}
.x6d_c00407{left:553.066667pt;}
.x87_c00407{left:555.600000pt;}
.xe9_c00407{left:557.333333pt;}
.x78_c00407{left:560.000000pt;}
.x1c_c00407{left:565.466667pt;}
.x103_c00407{left:566.400000pt;}
.x52_c00407{left:568.666667pt;}
.xa5_c00407{left:571.466667pt;}
.x2d_c00407{left:572.666667pt;}
.x6e_c00407{left:574.533333pt;}
.x3e_c00407{left:581.466667pt;}
.x2e_c00407{left:582.533333pt;}
.x91_c00407{left:583.866667pt;}
.x60_c00407{left:585.333333pt;}
.x79_c00407{left:591.466667pt;}
.xa6_c00407{left:594.800000pt;}
.xb7_c00407{left:596.000000pt;}
.xc9_c00407{left:597.733333pt;}
.x2f_c00407{left:598.800000pt;}
.x6f_c00407{left:602.000000pt;}
.x3f_c00407{left:606.800000pt;}
.xea_c00407{left:609.200000pt;}
.xc3_c00407{left:611.333333pt;}
.xaf_c00407{left:615.866667pt;}
.x7a_c00407{left:616.800000pt;}
.x1d_c00407{left:618.000000pt;}
.x104_c00407{left:618.933333pt;}
.x107_c00407{left:623.333333pt;}
.xf0_c00407{left:624.400000pt;}
.x30_c00407{left:625.733333pt;}
.x9c_c00407{left:627.200000pt;}
.x88_c00407{left:633.333333pt;}
.x1e_c00407{left:634.666667pt;}
.x70_c00407{left:635.600000pt;}
.x61_c00407{left:639.066667pt;}
.x53_c00407{left:641.600000pt;}
.xd1_c00407{left:643.466667pt;}
.x9d_c00407{left:646.666667pt;}
.x1f_c00407{left:650.000000pt;}
.xf3_c00407{left:651.200000pt;}
.xb0_c00407{left:652.666667pt;}
.xb8_c00407{left:653.600000pt;}
.x105_c00407{left:655.066667pt;}
.xa7_c00407{left:658.533333pt;}
.xfe_c00407{left:660.000000pt;}
.x92_c00407{left:660.933333pt;}
.x20_c00407{left:664.400000pt;}
.xdb_c00407{left:665.466667pt;}
.x49_c00407{left:668.133333pt;}
.x7b_c00407{left:675.333333pt;}
.x93_c00407{left:676.666667pt;}
.xb9_c00407{left:680.133333pt;}
}





/* 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_c00408 {
    display:none;
  }
  .loading-indicator_c00408.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00408 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_c00408 { 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_c00408" -> "#page-container .classname_c00408")
 */
.pf_c00408 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00408 { /* 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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00408 { /* 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_c00408 { /* 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_c00408 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00408 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00408 {overflow:visible;}
  }
}
.c_c00408 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00408 { /* 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_c00408:after { /* webkit #35443 */
  content: '';
}
.t_c00408:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00408 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 */
}
.__c00408 { /* 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_c00408 { /* info for Javascript */
  display:none;
}
.l_c00408 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00408 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00408 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00408: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_c00408 {
    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_c00408.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00408.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_c00408 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00408{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00408;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.000000;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;}
.m7e_c00408{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m59_c00408{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00408{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m53_c00408{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00408{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00408{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00408{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00408{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00408{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00408{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00408{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m27_c00408{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m20_c00408{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m43_c00408{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m88_c00408{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mac_c00408{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00408{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mab_c00408{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m90_c00408{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m86_c00408{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00408{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.maf_c00408{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m64_c00408{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00408{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m81_c00408{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00408{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m10_c00408{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5_c00408{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00408{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m83_c00408{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00408{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00408{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00408{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m93_c00408{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m11_c00408{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mae_c00408{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mb_c00408{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00408{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2_c00408{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m65_c00408{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m89_c00408{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00408{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m12_c00408{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00408{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00408{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m41_c00408{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00408{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.me_c00408{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m68_c00408{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m97_c00408{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00408{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m52_c00408{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mad_c00408{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m49_c00408{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00408{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00408{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m98_c00408{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m77_c00408{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00408{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m28_c00408{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m87_c00408{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00408{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m61_c00408{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m56_c00408{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m78_c00408{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00408{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00408{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00408{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m63_c00408{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m24_c00408{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m95_c00408{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00408{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00408{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00408{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m44_c00408{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00408{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md_c00408{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00408{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m85_c00408{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00408{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00408{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4_c00408{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00408{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00408{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma_c00408{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m94_c00408{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6_c00408{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m82_c00408{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);}
.m47_c00408{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00408{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00408{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m38_c00408{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00408{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00408{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00408{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22_c00408{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00408{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00408{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30_c00408{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m80_c00408{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00408{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00408{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00408{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3_c00408{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7_c00408{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m33_c00408{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00408{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m40_c00408{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m96_c00408{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m26_c00408{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m48_c00408{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m31_c00408{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00408{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00408{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m71_c00408{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00408{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m84_c00408{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00408{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00408{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m15_c00408{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m75_c00408{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00408{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m19_c00408{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m37_c00408{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00408{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m46_c00408{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00408{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c00408{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m25_c00408{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m55_c00408{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m76_c00408{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m73_c00408{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00408{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00408{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00408{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00408{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m32_c00408{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00408{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m34_c00408{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m23_c00408{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m45_c00408{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m62_c00408{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00408{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m18_c00408{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.maa_c00408{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00408{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m29_c00408{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc_c00408{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m74_c00408{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m60_c00408{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m36_c00408{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m66_c00408{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00408{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m9_c00408{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00408{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m50_c00408{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00408{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m57_c00408{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m35_c00408{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m70_c00408{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m58_c00408{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m13_c00408{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m51_c00408{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m17_c00408{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00408{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m16_c00408{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m99_c00408{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m72_c00408{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00408{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00408{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m42_c00408{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m39_c00408{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00408{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00408{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m21_c00408{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m91_c00408{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m0_c00408{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00408{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00408{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00408{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m79_c00408{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00408{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00408{vertical-align:0.000000px;}
.ls0_c00408{letter-spacing:0.000000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{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__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00408{word-spacing:-8.156415px;}
.ws6_c00408{word-spacing:-5.431392px;}
.ws1_c00408{word-spacing:-1.883436px;}
.ws8_c00408{word-spacing:0.000000px;}
.ws5_c00408{word-spacing:0.250000px;}
.ws7_c00408{word-spacing:3.601824px;}
.ws3_c00408{word-spacing:7.375000px;}
.ws0_c00408{word-spacing:7.662651px;}
.ws4_c00408{word-spacing:10.064959px;}
.fc0_c00408{color:transparent;}
.fs0_c00408{font-size:54.000000px;}
.y0_c00408{bottom:0.000000px;}
.y2c_c00408{bottom:156.300000px;}
.y2b_c00408{bottom:171.750000px;}
.y2a_c00408{bottom:216.300000px;}
.y29_c00408{bottom:235.800000px;}
.y28_c00408{bottom:255.900000px;}
.y27_c00408{bottom:275.700000px;}
.y26_c00408{bottom:295.650000px;}
.y25_c00408{bottom:315.750000px;}
.y24_c00408{bottom:335.850000px;}
.y23_c00408{bottom:355.500000px;}
.y22_c00408{bottom:376.050000px;}
.y21_c00408{bottom:395.850000px;}
.y20_c00408{bottom:415.950000px;}
.y1f_c00408{bottom:435.750000px;}
.y1e_c00408{bottom:455.850000px;}
.y1d_c00408{bottom:475.650000px;}
.y1c_c00408{bottom:495.450000px;}
.y1b_c00408{bottom:515.250000px;}
.y1a_c00408{bottom:534.750000px;}
.y19_c00408{bottom:554.550000px;}
.y18_c00408{bottom:574.650000px;}
.y17_c00408{bottom:594.450000px;}
.y16_c00408{bottom:614.550000px;}
.y15_c00408{bottom:634.650000px;}
.y14_c00408{bottom:654.750000px;}
.y13_c00408{bottom:674.550000px;}
.y12_c00408{bottom:694.350000px;}
.y11_c00408{bottom:714.150000px;}
.y10_c00408{bottom:733.950000px;}
.yf_c00408{bottom:754.050000px;}
.ye_c00408{bottom:773.850000px;}
.yd_c00408{bottom:793.650000px;}
.yc_c00408{bottom:813.750000px;}
.yb_c00408{bottom:833.550000px;}
.ya_c00408{bottom:853.350000px;}
.y9_c00408{bottom:873.450000px;}
.y8_c00408{bottom:893.250000px;}
.y7_c00408{bottom:913.050000px;}
.y6_c00408{bottom:933.150000px;}
.y5_c00408{bottom:952.950000px;}
.y4_c00408{bottom:973.050000px;}
.y3_c00408{bottom:992.100000px;}
.y2_c00408{bottom:1012.650000px;}
.y1_c00408{bottom:1050.450000px;}
.h2_c00408{height:54.000000px;}
.h1_c00408{height:1166.250000px;}
.h0_c00408{height:1166.400056px;}
.w0_c00408{width:920.879975px;}
.w1_c00408{width:921.000000px;}
.x0_c00408{left:0.000000px;}
.x13a_c00408{left:146.100000px;}
.x105_c00408{left:147.450000px;}
.x22_c00408{left:148.500000px;}
.x1_c00408{left:149.700000px;}
.xcb_c00408{left:168.900000px;}
.x12b_c00408{left:173.700000px;}
.x124_c00408{left:175.500000px;}
.xde_c00408{left:176.550000px;}
.xfd_c00408{left:178.350000px;}
.x11_c00408{left:179.400000px;}
.x100_c00408{left:180.450000px;}
.xad_c00408{left:181.950000px;}
.x83_c00408{left:184.350000px;}
.x134_c00408{left:186.000000px;}
.x4a_c00408{left:190.650000px;}
.xe5_c00408{left:192.000000px;}
.x3_c00408{left:194.100000px;}
.xf7_c00408{left:195.150000px;}
.x23_c00408{left:197.100000px;}
.xc2_c00408{left:201.750000px;}
.x66_c00408{left:203.250000px;}
.x95_c00408{left:207.450000px;}
.x6d_c00408{left:208.500000px;}
.x18_c00408{left:210.300000px;}
.x56_c00408{left:214.050000px;}
.x24_c00408{left:216.600000px;}
.x30_c00408{left:217.800000px;}
.x125_c00408{left:219.450000px;}
.xe6_c00408{left:221.100000px;}
.xc3_c00408{left:222.300000px;}
.x11d_c00408{left:223.350000px;}
.x96_c00408{left:224.400000px;}
.x8c_c00408{left:225.600000px;}
.x12c_c00408{left:226.650000px;}
.x12_c00408{left:228.300000px;}
.xcc_c00408{left:229.800000px;}
.x25_c00408{left:232.050000px;}
.xb3_c00408{left:233.700000px;}
.x4b_c00408{left:234.900000px;}
.x79_c00408{left:237.000000px;}
.x10f_c00408{left:239.250000px;}
.x3d_c00408{left:240.450000px;}
.xd2_c00408{left:242.400000px;}
.xda_c00408{left:244.050000px;}
.x31_c00408{left:245.850000px;}
.x13_c00408{left:248.850000px;}
.x4_c00408{left:251.400000px;}
.x108_c00408{left:252.750000px;}
.x67_c00408{left:253.950000px;}
.xc4_c00408{left:255.750000px;}
.x84_c00408{left:257.100000px;}
.x19_c00408{left:261.450000px;}
.x26_c00408{left:263.400000px;}
.x8d_c00408{left:265.950000px;}
.x7a_c00408{left:267.600000px;}
.xe7_c00408{left:269.700000px;}
.x5_c00408{left:273.750000px;}
.x14_c00408{left:274.800000px;}
.x57_c00408{left:276.300000px;}
.xf8_c00408{left:278.700000px;}
.x85_c00408{left:279.750000px;}
.x68_c00408{left:280.950000px;}
.x126_c00408{left:282.750000px;}
.x12f_c00408{left:284.400000px;}
.x8e_c00408{left:286.050000px;}
.xfe_c00408{left:287.250000px;}
.x120_c00408{left:288.300000px;}
.x13b_c00408{left:289.350000px;}
.x6e_c00408{left:290.550000px;}
.x113_c00408{left:291.900000px;}
.xa5_c00408{left:293.400000px;}
.xcd_c00408{left:294.600000px;}
.x3e_c00408{left:297.300000px;}
.x6_c00408{left:300.750000px;}
.xae_c00408{left:302.550000px;}
.x4c_c00408{left:304.050000px;}
.x119_c00408{left:306.600000px;}
.x8f_c00408{left:308.700000px;}
.xc5_c00408{left:309.750000px;}
.x27_c00408{left:312.300000px;}
.x58_c00408{left:313.350000px;}
.x15_c00408{left:315.150000px;}
.xc6_c00408{left:318.300000px;}
.x110_c00408{left:320.850000px;}
.x32_c00408{left:324.000000px;}
.x7b_c00408{left:325.200000px;}
.x90_c00408{left:329.550000px;}
.x86_c00408{left:331.200000px;}
.x1a_c00408{left:332.700000px;}
.xd3_c00408{left:336.000000px;}
.x16_c00408{left:337.500000px;}
.x4d_c00408{left:342.150000px;}
.x6f_c00408{left:346.050000px;}
.x97_c00408{left:347.100000px;}
.xc7_c00408{left:348.150000px;}
.x114_c00408{left:349.200000px;}
.xdf_c00408{left:350.700000px;}
.x33_c00408{left:352.500000px;}
.x3f_c00408{left:353.550000px;}
.xa0_c00408{left:355.350000px;}
.xba_c00408{left:356.850000px;}
.xb4_c00408{left:360.750000px;}
.x121_c00408{left:362.100000px;}
.xe8_c00408{left:364.500000px;}
.x70_c00408{left:367.350000px;}
.x115_c00408{left:368.700000px;}
.xef_c00408{left:369.750000px;}
.xbb_c00408{left:371.250000px;}
.x59_c00408{left:372.450000px;}
.x98_c00408{left:373.800000px;}
.x4e_c00408{left:376.050000px;}
.x127_c00408{left:378.600000px;}
.xd4_c00408{left:381.300000px;}
.xf9_c00408{left:383.850000px;}
.x7_c00408{left:385.050000px;}
.x101_c00408{left:387.000000px;}
.xe9_c00408{left:389.400000px;}
.x71_c00408{left:390.450000px;}
.x135_c00408{left:393.000000px;}
.x5a_c00408{left:394.050000px;}
.x17_c00408{left:395.850000px;}
.xe0_c00408{left:398.250000px;}
.x87_c00408{left:399.600000px;}
.xa6_c00408{left:401.100000px;}
.x1b_c00408{left:402.900000px;}
.x34_c00408{left:407.250000px;}
.xb5_c00408{left:409.050000px;}
.x13c_c00408{left:412.500000px;}
.x8_c00408{left:415.350000px;}
.x7c_c00408{left:416.850000px;}
.x72_c00408{left:418.500000px;}
.x40_c00408{left:420.900000px;}
.x109_c00408{left:422.250000px;}
.xa7_c00408{left:423.750000px;}
.x12d_c00408{left:427.500000px;}
.x35_c00408{left:428.550000px;}
.xd5_c00408{left:431.100000px;}
.xf0_c00408{left:432.300000px;}
.x11a_c00408{left:433.650000px;}
.x5b_c00408{left:436.200000px;}
.x122_c00408{left:437.700000px;}
.xea_c00408{left:439.800000px;}
.x28_c00408{left:441.150000px;}
.xb6_c00408{left:442.200000px;}
.xa8_c00408{left:444.600000px;}
.x2_c00408{left:446.700000px;}
.xdb_c00408{left:449.100000px;}
.xaf_c00408{left:450.900000px;}
.x136_c00408{left:453.450000px;}
.xf1_c00408{left:454.950000px;}
.x5c_c00408{left:456.300000px;}
.x88_c00408{left:460.050000px;}
.x1c_c00408{left:462.000000px;}
.xa9_c00408{left:464.100000px;}
.xc8_c00408{left:466.350000px;}
.x29_c00408{left:467.850000px;}
.xbc_c00408{left:471.750000px;}
.x111_c00408{left:474.150000px;}
.xa1_c00408{left:475.200000px;}
.x91_c00408{left:477.900000px;}
.x9_c00408{left:480.150000px;}
.xf2_c00408{left:481.650000px;}
.xdc_c00408{left:485.850000px;}
.x99_c00408{left:487.200000px;}
.x137_c00408{left:489.150000px;}
.x41_c00408{left:491.400000px;}
.x36_c00408{left:492.600000px;}
.xbd_c00408{left:494.850000px;}
.x11b_c00408{left:496.650000px;}
.x69_c00408{left:497.850000px;}
.x5d_c00408{left:499.500000px;}
.x10a_c00408{left:503.700000px;}
.x123_c00408{left:505.650000px;}
.xc9_c00408{left:507.000000px;}
.xd6_c00408{left:508.500000px;}
.x102_c00408{left:510.450000px;}
.xfa_c00408{left:511.950000px;}
.x42_c00408{left:513.300000px;}
.x2a_c00408{left:519.750000px;}
.x9a_c00408{left:521.400000px;}
.x1d_c00408{left:522.900000px;}
.x116_c00408{left:525.000000px;}
.x37_c00408{left:526.050000px;}
.x5e_c00408{left:529.050000px;}
.x4f_c00408{left:530.550000px;}
.x92_c00408{left:532.950000px;}
.xa_c00408{left:534.900000px;}
.x43_c00408{left:535.950000px;}
.xb0_c00408{left:538.500000px;}
.x130_c00408{left:539.700000px;}
.x73_c00408{left:540.900000px;}
.xf3_c00408{left:544.050000px;}
.x5f_c00408{left:548.850000px;}
.x9b_c00408{left:550.200000px;}
.x50_c00408{left:551.850000px;}
.x7d_c00408{left:554.400000px;}
.xfb_c00408{left:555.450000px;}
.xe1_c00408{left:556.650000px;}
.x106_c00408{left:557.700000px;}
.xd7_c00408{left:559.950000px;}
.x2b_c00408{left:561.750000px;}
.x38_c00408{left:562.800000px;}
.x9c_c00408{left:568.950000px;}
.x138_c00408{left:571.500000px;}
.x44_c00408{left:573.750000px;}
.x89_c00408{left:575.700000px;}
.xce_c00408{left:576.750000px;}
.xd8_c00408{left:580.800000px;}
.x60_c00408{left:582.300000px;}
.x6a_c00408{left:585.750000px;}
.x11e_c00408{left:589.050000px;}
.x1e_c00408{left:590.550000px;}
.xaa_c00408{left:591.900000px;}
.xb_c00408{left:595.050000px;}
.x7e_c00408{left:597.600000px;}
.xb7_c00408{left:599.850000px;}
.xeb_c00408{left:601.050000px;}
.xa2_c00408{left:602.400000px;}
.xbe_c00408{left:603.600000px;}
.x10b_c00408{left:604.950000px;}
.x45_c00408{left:606.150000px;}
.x51_c00408{left:607.350000px;}
.x61_c00408{left:610.350000px;}
.x9d_c00408{left:612.450000px;}
.x11c_c00408{left:614.700000px;}
.x1f_c00408{left:615.750000px;}
.x74_c00408{left:616.800000px;}
.x8a_c00408{left:617.850000px;}
.xec_c00408{left:619.050000px;}
.xcf_c00408{left:621.750000px;}
.x7f_c00408{left:622.800000px;}
.xf4_c00408{left:624.750000px;}
.x2c_c00408{left:626.850000px;}
.x39_c00408{left:628.350000px;}
.x11f_c00408{left:630.150000px;}
.xab_c00408{left:631.500000px;}
.x52_c00408{left:637.650000px;}
.x93_c00408{left:639.450000px;}
.xfc_c00408{left:640.800000px;}
.xe2_c00408{left:642.000000px;}
.xb8_c00408{left:643.500000px;}
.x75_c00408{left:645.300000px;}
.x9e_c00408{left:646.950000px;}
.xc_c00408{left:650.550000px;}
.xbf_c00408{left:652.200000px;}
.x80_c00408{left:653.700000px;}
.x62_c00408{left:655.050000px;}
.x131_c00408{left:657.000000px;}
.x46_c00408{left:658.050000px;}
.x20_c00408{left:660.000000px;}
.x8b_c00408{left:669.000000px;}
.xe3_c00408{left:672.600000px;}
.xd0_c00408{left:673.950000px;}
.x9f_c00408{left:675.450000px;}
.x76_c00408{left:677.700000px;}
.x21_c00408{left:679.800000px;}
.xd_c00408{left:682.200000px;}
.x107_c00408{left:684.450000px;}
.x63_c00408{left:686.400000px;}
.xdd_c00408{left:688.650000px;}
.xc0_c00408{left:690.300000px;}
.x94_c00408{left:691.350000px;}
.x6b_c00408{left:692.400000px;}
.xff_c00408{left:694.200000px;}
.xa3_c00408{left:696.300000px;}
.x10c_c00408{left:698.550000px;}
.x3a_c00408{left:699.600000px;}
.x128_c00408{left:700.650000px;}
.x2d_c00408{left:701.700000px;}
.x53_c00408{left:708.900000px;}
.xe_c00408{left:711.000000px;}
.xca_c00408{left:712.500000px;}
.x81_c00408{left:714.150000px;}
.xb9_c00408{left:717.000000px;}
.x77_c00408{left:718.800000px;}
.xed_c00408{left:722.250000px;}
.x2e_c00408{left:723.300000px;}
.x47_c00408{left:726.450000px;}
.xe4_c00408{left:732.000000px;}
.xf5_c00408{left:733.050000px;}
.x129_c00408{left:734.550000px;}
.x103_c00408{left:735.750000px;}
.x78_c00408{left:737.100000px;}
.x117_c00408{left:740.850000px;}
.xb1_c00408{left:741.900000px;}
.xd1_c00408{left:743.100000px;}
.x132_c00408{left:746.700000px;}
.xa4_c00408{left:747.750000px;}
.x82_c00408{left:750.150000px;}
.x54_c00408{left:754.200000px;}
.x3b_c00408{left:755.700000px;}
.x104_c00408{left:757.350000px;}
.xf_c00408{left:759.300000px;}
.x2f_c00408{left:762.150000px;}
.x12a_c00408{left:764.400000px;}
.x64_c00408{left:767.400000px;}
.x10d_c00408{left:768.750000px;}
.x48_c00408{left:769.950000px;}
.x118_c00408{left:771.450000px;}
.xc1_c00408{left:774.150000px;}
.x6c_c00408{left:775.200000px;}
.xf6_c00408{left:776.550000px;}
.x133_c00408{left:777.600000px;}
.x12e_c00408{left:780.150000px;}
.xb2_c00408{left:781.200000px;}
.x3c_c00408{left:785.250000px;}
.x112_c00408{left:786.900000px;}
.x65_c00408{left:788.250000px;}
.xac_c00408{left:789.600000px;}
.x10_c00408{left:790.650000px;}
.xee_c00408{left:791.700000px;}
.x49_c00408{left:794.100000px;}
.x139_c00408{left:797.400000px;}
.x10e_c00408{left:801.150000px;}
.xd9_c00408{left:802.500000px;}
.x55_c00408{left:807.450000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws2_c00408{word-spacing:-7.250146pt;}
.ws6_c00408{word-spacing:-4.827904pt;}
.ws1_c00408{word-spacing:-1.674165pt;}
.ws8_c00408{word-spacing:0.000000pt;}
.ws5_c00408{word-spacing:0.222222pt;}
.ws7_c00408{word-spacing:3.201621pt;}
.ws3_c00408{word-spacing:6.555556pt;}
.ws0_c00408{word-spacing:6.811245pt;}
.ws4_c00408{word-spacing:8.946630pt;}
.fs0_c00408{font-size:48.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y2c_c00408{bottom:138.933333pt;}
.y2b_c00408{bottom:152.666667pt;}
.y2a_c00408{bottom:192.266667pt;}
.y29_c00408{bottom:209.600000pt;}
.y28_c00408{bottom:227.466667pt;}
.y27_c00408{bottom:245.066667pt;}
.y26_c00408{bottom:262.800000pt;}
.y25_c00408{bottom:280.666667pt;}
.y24_c00408{bottom:298.533333pt;}
.y23_c00408{bottom:316.000000pt;}
.y22_c00408{bottom:334.266667pt;}
.y21_c00408{bottom:351.866667pt;}
.y20_c00408{bottom:369.733333pt;}
.y1f_c00408{bottom:387.333333pt;}
.y1e_c00408{bottom:405.200000pt;}
.y1d_c00408{bottom:422.800000pt;}
.y1c_c00408{bottom:440.400000pt;}
.y1b_c00408{bottom:458.000000pt;}
.y1a_c00408{bottom:475.333333pt;}
.y19_c00408{bottom:492.933333pt;}
.y18_c00408{bottom:510.800000pt;}
.y17_c00408{bottom:528.400000pt;}
.y16_c00408{bottom:546.266667pt;}
.y15_c00408{bottom:564.133333pt;}
.y14_c00408{bottom:582.000000pt;}
.y13_c00408{bottom:599.600000pt;}
.y12_c00408{bottom:617.200000pt;}
.y11_c00408{bottom:634.800000pt;}
.y10_c00408{bottom:652.400000pt;}
.yf_c00408{bottom:670.266667pt;}
.ye_c00408{bottom:687.866667pt;}
.yd_c00408{bottom:705.466667pt;}
.yc_c00408{bottom:723.333333pt;}
.yb_c00408{bottom:740.933333pt;}
.ya_c00408{bottom:758.533333pt;}
.y9_c00408{bottom:776.400000pt;}
.y8_c00408{bottom:794.000000pt;}
.y7_c00408{bottom:811.600000pt;}
.y6_c00408{bottom:829.466667pt;}
.y5_c00408{bottom:847.066667pt;}
.y4_c00408{bottom:864.933333pt;}
.y3_c00408{bottom:881.866667pt;}
.y2_c00408{bottom:900.133333pt;}
.y1_c00408{bottom:933.733333pt;}
.h2_c00408{height:48.000000pt;}
.h1_c00408{height:1036.666667pt;}
.h0_c00408{height:1036.800049pt;}
.w0_c00408{width:818.559977pt;}
.w1_c00408{width:818.666667pt;}
.x0_c00408{left:0.000000pt;}
.x13a_c00408{left:129.866667pt;}
.x105_c00408{left:131.066667pt;}
.x22_c00408{left:132.000000pt;}
.x1_c00408{left:133.066667pt;}
.xcb_c00408{left:150.133333pt;}
.x12b_c00408{left:154.400000pt;}
.x124_c00408{left:156.000000pt;}
.xde_c00408{left:156.933333pt;}
.xfd_c00408{left:158.533333pt;}
.x11_c00408{left:159.466667pt;}
.x100_c00408{left:160.400000pt;}
.xad_c00408{left:161.733333pt;}
.x83_c00408{left:163.866667pt;}
.x134_c00408{left:165.333333pt;}
.x4a_c00408{left:169.466667pt;}
.xe5_c00408{left:170.666667pt;}
.x3_c00408{left:172.533333pt;}
.xf7_c00408{left:173.466667pt;}
.x23_c00408{left:175.200000pt;}
.xc2_c00408{left:179.333333pt;}
.x66_c00408{left:180.666667pt;}
.x95_c00408{left:184.400000pt;}
.x6d_c00408{left:185.333333pt;}
.x18_c00408{left:186.933333pt;}
.x56_c00408{left:190.266667pt;}
.x24_c00408{left:192.533333pt;}
.x30_c00408{left:193.600000pt;}
.x125_c00408{left:195.066667pt;}
.xe6_c00408{left:196.533333pt;}
.xc3_c00408{left:197.600000pt;}
.x11d_c00408{left:198.533333pt;}
.x96_c00408{left:199.466667pt;}
.x8c_c00408{left:200.533333pt;}
.x12c_c00408{left:201.466667pt;}
.x12_c00408{left:202.933333pt;}
.xcc_c00408{left:204.266667pt;}
.x25_c00408{left:206.266667pt;}
.xb3_c00408{left:207.733333pt;}
.x4b_c00408{left:208.800000pt;}
.x79_c00408{left:210.666667pt;}
.x10f_c00408{left:212.666667pt;}
.x3d_c00408{left:213.733333pt;}
.xd2_c00408{left:215.466667pt;}
.xda_c00408{left:216.933333pt;}
.x31_c00408{left:218.533333pt;}
.x13_c00408{left:221.200000pt;}
.x4_c00408{left:223.466667pt;}
.x108_c00408{left:224.666667pt;}
.x67_c00408{left:225.733333pt;}
.xc4_c00408{left:227.333333pt;}
.x84_c00408{left:228.533333pt;}
.x19_c00408{left:232.400000pt;}
.x26_c00408{left:234.133333pt;}
.x8d_c00408{left:236.400000pt;}
.x7a_c00408{left:237.866667pt;}
.xe7_c00408{left:239.733333pt;}
.x5_c00408{left:243.333333pt;}
.x14_c00408{left:244.266667pt;}
.x57_c00408{left:245.600000pt;}
.xf8_c00408{left:247.733333pt;}
.x85_c00408{left:248.666667pt;}
.x68_c00408{left:249.733333pt;}
.x126_c00408{left:251.333333pt;}
.x12f_c00408{left:252.800000pt;}
.x8e_c00408{left:254.266667pt;}
.xfe_c00408{left:255.333333pt;}
.x120_c00408{left:256.266667pt;}
.x13b_c00408{left:257.200000pt;}
.x6e_c00408{left:258.266667pt;}
.x113_c00408{left:259.466667pt;}
.xa5_c00408{left:260.800000pt;}
.xcd_c00408{left:261.866667pt;}
.x3e_c00408{left:264.266667pt;}
.x6_c00408{left:267.333333pt;}
.xae_c00408{left:268.933333pt;}
.x4c_c00408{left:270.266667pt;}
.x119_c00408{left:272.533333pt;}
.x8f_c00408{left:274.400000pt;}
.xc5_c00408{left:275.333333pt;}
.x27_c00408{left:277.600000pt;}
.x58_c00408{left:278.533333pt;}
.x15_c00408{left:280.133333pt;}
.xc6_c00408{left:282.933333pt;}
.x110_c00408{left:285.200000pt;}
.x32_c00408{left:288.000000pt;}
.x7b_c00408{left:289.066667pt;}
.x90_c00408{left:292.933333pt;}
.x86_c00408{left:294.400000pt;}
.x1a_c00408{left:295.733333pt;}
.xd3_c00408{left:298.666667pt;}
.x16_c00408{left:300.000000pt;}
.x4d_c00408{left:304.133333pt;}
.x6f_c00408{left:307.600000pt;}
.x97_c00408{left:308.533333pt;}
.xc7_c00408{left:309.466667pt;}
.x114_c00408{left:310.400000pt;}
.xdf_c00408{left:311.733333pt;}
.x33_c00408{left:313.333333pt;}
.x3f_c00408{left:314.266667pt;}
.xa0_c00408{left:315.866667pt;}
.xba_c00408{left:317.200000pt;}
.xb4_c00408{left:320.666667pt;}
.x121_c00408{left:321.866667pt;}
.xe8_c00408{left:324.000000pt;}
.x70_c00408{left:326.533333pt;}
.x115_c00408{left:327.733333pt;}
.xef_c00408{left:328.666667pt;}
.xbb_c00408{left:330.000000pt;}
.x59_c00408{left:331.066667pt;}
.x98_c00408{left:332.266667pt;}
.x4e_c00408{left:334.266667pt;}
.x127_c00408{left:336.533333pt;}
.xd4_c00408{left:338.933333pt;}
.xf9_c00408{left:341.200000pt;}
.x7_c00408{left:342.266667pt;}
.x101_c00408{left:344.000000pt;}
.xe9_c00408{left:346.133333pt;}
.x71_c00408{left:347.066667pt;}
.x135_c00408{left:349.333333pt;}
.x5a_c00408{left:350.266667pt;}
.x17_c00408{left:351.866667pt;}
.xe0_c00408{left:354.000000pt;}
.x87_c00408{left:355.200000pt;}
.xa6_c00408{left:356.533333pt;}
.x1b_c00408{left:358.133333pt;}
.x34_c00408{left:362.000000pt;}
.xb5_c00408{left:363.600000pt;}
.x13c_c00408{left:366.666667pt;}
.x8_c00408{left:369.200000pt;}
.x7c_c00408{left:370.533333pt;}
.x72_c00408{left:372.000000pt;}
.x40_c00408{left:374.133333pt;}
.x109_c00408{left:375.333333pt;}
.xa7_c00408{left:376.666667pt;}
.x12d_c00408{left:380.000000pt;}
.x35_c00408{left:380.933333pt;}
.xd5_c00408{left:383.200000pt;}
.xf0_c00408{left:384.266667pt;}
.x11a_c00408{left:385.466667pt;}
.x5b_c00408{left:387.733333pt;}
.x122_c00408{left:389.066667pt;}
.xea_c00408{left:390.933333pt;}
.x28_c00408{left:392.133333pt;}
.xb6_c00408{left:393.066667pt;}
.xa8_c00408{left:395.200000pt;}
.x2_c00408{left:397.066667pt;}
.xdb_c00408{left:399.200000pt;}
.xaf_c00408{left:400.800000pt;}
.x136_c00408{left:403.066667pt;}
.xf1_c00408{left:404.400000pt;}
.x5c_c00408{left:405.600000pt;}
.x88_c00408{left:408.933333pt;}
.x1c_c00408{left:410.666667pt;}
.xa9_c00408{left:412.533333pt;}
.xc8_c00408{left:414.533333pt;}
.x29_c00408{left:415.866667pt;}
.xbc_c00408{left:419.333333pt;}
.x111_c00408{left:421.466667pt;}
.xa1_c00408{left:422.400000pt;}
.x91_c00408{left:424.800000pt;}
.x9_c00408{left:426.800000pt;}
.xf2_c00408{left:428.133333pt;}
.xdc_c00408{left:431.866667pt;}
.x99_c00408{left:433.066667pt;}
.x137_c00408{left:434.800000pt;}
.x41_c00408{left:436.800000pt;}
.x36_c00408{left:437.866667pt;}
.xbd_c00408{left:439.866667pt;}
.x11b_c00408{left:441.466667pt;}
.x69_c00408{left:442.533333pt;}
.x5d_c00408{left:444.000000pt;}
.x10a_c00408{left:447.733333pt;}
.x123_c00408{left:449.466667pt;}
.xc9_c00408{left:450.666667pt;}
.xd6_c00408{left:452.000000pt;}
.x102_c00408{left:453.733333pt;}
.xfa_c00408{left:455.066667pt;}
.x42_c00408{left:456.266667pt;}
.x2a_c00408{left:462.000000pt;}
.x9a_c00408{left:463.466667pt;}
.x1d_c00408{left:464.800000pt;}
.x116_c00408{left:466.666667pt;}
.x37_c00408{left:467.600000pt;}
.x5e_c00408{left:470.266667pt;}
.x4f_c00408{left:471.600000pt;}
.x92_c00408{left:473.733333pt;}
.xa_c00408{left:475.466667pt;}
.x43_c00408{left:476.400000pt;}
.xb0_c00408{left:478.666667pt;}
.x130_c00408{left:479.733333pt;}
.x73_c00408{left:480.800000pt;}
.xf3_c00408{left:483.600000pt;}
.x5f_c00408{left:487.866667pt;}
.x9b_c00408{left:489.066667pt;}
.x50_c00408{left:490.533333pt;}
.x7d_c00408{left:492.800000pt;}
.xfb_c00408{left:493.733333pt;}
.xe1_c00408{left:494.800000pt;}
.x106_c00408{left:495.733333pt;}
.xd7_c00408{left:497.733333pt;}
.x2b_c00408{left:499.333333pt;}
.x38_c00408{left:500.266667pt;}
.x9c_c00408{left:505.733333pt;}
.x138_c00408{left:508.000000pt;}
.x44_c00408{left:510.000000pt;}
.x89_c00408{left:511.733333pt;}
.xce_c00408{left:512.666667pt;}
.xd8_c00408{left:516.266667pt;}
.x60_c00408{left:517.600000pt;}
.x6a_c00408{left:520.666667pt;}
.x11e_c00408{left:523.600000pt;}
.x1e_c00408{left:524.933333pt;}
.xaa_c00408{left:526.133333pt;}
.xb_c00408{left:528.933333pt;}
.x7e_c00408{left:531.200000pt;}
.xb7_c00408{left:533.200000pt;}
.xeb_c00408{left:534.266667pt;}
.xa2_c00408{left:535.466667pt;}
.xbe_c00408{left:536.533333pt;}
.x10b_c00408{left:537.733333pt;}
.x45_c00408{left:538.800000pt;}
.x51_c00408{left:539.866667pt;}
.x61_c00408{left:542.533333pt;}
.x9d_c00408{left:544.400000pt;}
.x11c_c00408{left:546.400000pt;}
.x1f_c00408{left:547.333333pt;}
.x74_c00408{left:548.266667pt;}
.x8a_c00408{left:549.200000pt;}
.xec_c00408{left:550.266667pt;}
.xcf_c00408{left:552.666667pt;}
.x7f_c00408{left:553.600000pt;}
.xf4_c00408{left:555.333333pt;}
.x2c_c00408{left:557.200000pt;}
.x39_c00408{left:558.533333pt;}
.x11f_c00408{left:560.133333pt;}
.xab_c00408{left:561.333333pt;}
.x52_c00408{left:566.800000pt;}
.x93_c00408{left:568.400000pt;}
.xfc_c00408{left:569.600000pt;}
.xe2_c00408{left:570.666667pt;}
.xb8_c00408{left:572.000000pt;}
.x75_c00408{left:573.600000pt;}
.x9e_c00408{left:575.066667pt;}
.xc_c00408{left:578.266667pt;}
.xbf_c00408{left:579.733333pt;}
.x80_c00408{left:581.066667pt;}
.x62_c00408{left:582.266667pt;}
.x131_c00408{left:584.000000pt;}
.x46_c00408{left:584.933333pt;}
.x20_c00408{left:586.666667pt;}
.x8b_c00408{left:594.666667pt;}
.xe3_c00408{left:597.866667pt;}
.xd0_c00408{left:599.066667pt;}
.x9f_c00408{left:600.400000pt;}
.x76_c00408{left:602.400000pt;}
.x21_c00408{left:604.266667pt;}
.xd_c00408{left:606.400000pt;}
.x107_c00408{left:608.400000pt;}
.x63_c00408{left:610.133333pt;}
.xdd_c00408{left:612.133333pt;}
.xc0_c00408{left:613.600000pt;}
.x94_c00408{left:614.533333pt;}
.x6b_c00408{left:615.466667pt;}
.xff_c00408{left:617.066667pt;}
.xa3_c00408{left:618.933333pt;}
.x10c_c00408{left:620.933333pt;}
.x3a_c00408{left:621.866667pt;}
.x128_c00408{left:622.800000pt;}
.x2d_c00408{left:623.733333pt;}
.x53_c00408{left:630.133333pt;}
.xe_c00408{left:632.000000pt;}
.xca_c00408{left:633.333333pt;}
.x81_c00408{left:634.800000pt;}
.xb9_c00408{left:637.333333pt;}
.x77_c00408{left:638.933333pt;}
.xed_c00408{left:642.000000pt;}
.x2e_c00408{left:642.933333pt;}
.x47_c00408{left:645.733333pt;}
.xe4_c00408{left:650.666667pt;}
.xf5_c00408{left:651.600000pt;}
.x129_c00408{left:652.933333pt;}
.x103_c00408{left:654.000000pt;}
.x78_c00408{left:655.200000pt;}
.x117_c00408{left:658.533333pt;}
.xb1_c00408{left:659.466667pt;}
.xd1_c00408{left:660.533333pt;}
.x132_c00408{left:663.733333pt;}
.xa4_c00408{left:664.666667pt;}
.x82_c00408{left:666.800000pt;}
.x54_c00408{left:670.400000pt;}
.x3b_c00408{left:671.733333pt;}
.x104_c00408{left:673.200000pt;}
.xf_c00408{left:674.933333pt;}
.x2f_c00408{left:677.466667pt;}
.x12a_c00408{left:679.466667pt;}
.x64_c00408{left:682.133333pt;}
.x10d_c00408{left:683.333333pt;}
.x48_c00408{left:684.400000pt;}
.x118_c00408{left:685.733333pt;}
.xc1_c00408{left:688.133333pt;}
.x6c_c00408{left:689.066667pt;}
.xf6_c00408{left:690.266667pt;}
.x133_c00408{left:691.200000pt;}
.x12e_c00408{left:693.466667pt;}
.xb2_c00408{left:694.400000pt;}
.x3c_c00408{left:698.000000pt;}
.x112_c00408{left:699.466667pt;}
.x65_c00408{left:700.666667pt;}
.xac_c00408{left:701.866667pt;}
.x10_c00408{left:702.800000pt;}
.xee_c00408{left:703.733333pt;}
.x49_c00408{left:705.866667pt;}
.x139_c00408{left:708.800000pt;}
.x10e_c00408{left:712.133333pt;}
.xd9_c00408{left:713.333333pt;}
.x55_c00408{left:717.733333pt;}
}





/* 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_c00409 {
    display:none;
  }
  .loading-indicator_c00409.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00409 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_c00409 { 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_c00409" -> "#page-container .classname_c00409")
 */
.pf_c00409 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00409 { /* 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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00409 { /* 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_c00409 { /* 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_c00409 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00409 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00409 {overflow:visible;}
  }
}
.c_c00409 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00409 { /* 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_c00409:after { /* webkit #35443 */
  content: '';
}
.t_c00409:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00409 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 */
}
.__c00409 { /* 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_c00409 { /* info for Javascript */
  display:none;
}
.l_c00409 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00409 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00409 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00409: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_c00409 {
    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_c00409.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00409.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_c00409 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00409{font-family:sans-serif;visibility:hidden;}
.sc__c00409{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
}
.y0_c00409{bottom:0.000000px;}
.h1_c00409{height:1166.250000px;}
.h0_c00409{height:1166.400056px;}
.w0_c00409{width:920.879975px;}
.w1_c00409{width:921.000000px;}
.x0_c00409{left:0.000000px;}
@media print{
.y0_c00409{bottom:0.000000pt;}
.h1_c00409{height:1036.666667pt;}
.h0_c00409{height:1036.800049pt;}
.w0_c00409{width:818.559977pt;}
.w1_c00409{width:818.666667pt;}
.x0_c00409{left:0.000000pt;}
}





/* 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_c00410 {
    display:none;
  }
  .loading-indicator_c00410.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00410 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_c00410 { 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_c00410" -> "#page-container .classname_c00410")
 */
.pf_c00410 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00410 { /* 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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00410 { /* 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_c00410 { /* 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_c00410 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00410 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00410 {overflow:visible;}
  }
}
.c_c00410 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00410 { /* 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_c00410:after { /* webkit #35443 */
  content: '';
}
.t_c00410:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00410 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 */
}
.__c00410 { /* 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_c00410 { /* info for Javascript */
  display:none;
}
.l_c00410 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00410 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00410 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00410: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_c00410 {
    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_c00410.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00410.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_c00410 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00410{font-family:sans-serif;visibility:hidden;}
.sc__c00410{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00410{-webkit-text-stroke:0px transparent;}
}
.y0_c00410{bottom:0.000000px;}
.h1_c00410{height:1166.250000px;}
.h0_c00410{height:1166.400056px;}
.w0_c00410{width:920.879975px;}
.w1_c00410{width:921.000000px;}
.x0_c00410{left:0.000000px;}
@media print{
.y0_c00410{bottom:0.000000pt;}
.h1_c00410{height:1036.666667pt;}
.h0_c00410{height:1036.800049pt;}
.w0_c00410{width:818.559977pt;}
.w1_c00410{width:818.666667pt;}
.x0_c00410{left:0.000000pt;}
}





/* 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_c00411 {
    display:none;
  }
  .loading-indicator_c00411.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00411 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_c00411 { 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_c00411" -> "#page-container .classname_c00411")
 */
.pf_c00411 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00411 { /* 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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00411 { /* 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_c00411 { /* 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_c00411 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00411 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00411 {overflow:visible;}
  }
}
.c_c00411 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00411 { /* 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_c00411:after { /* webkit #35443 */
  content: '';
}
.t_c00411:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00411 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 */
}
.__c00411 { /* 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_c00411 { /* info for Javascript */
  display:none;
}
.l_c00411 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00411 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00411 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00411: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_c00411 {
    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_c00411.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00411.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_c00411 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00411{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00411;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.000000;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;}
.m90_c00411{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m36_c00411{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00411{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m15_c00411{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00411{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00411{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m34_c00411{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.me_c00411{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00411{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00411{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m21_c00411{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00411{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00411{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00411{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00411{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m87_c00411{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00411{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m54_c00411{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00411{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00411{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m45_c00411{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00411{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m97_c00411{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00411{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m9_c00411{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m84_c00411{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m65_c00411{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m38_c00411{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00411{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m44_c00411{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m31_c00411{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m33_c00411{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00411{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00411{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m49_c00411{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mf_c00411{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00411{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m41_c00411{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m63_c00411{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00411{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc_c00411{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00411{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00411{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m57_c00411{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00411{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m95_c00411{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00411{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m60_c00411{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m80_c00411{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m50_c00411{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m24_c00411{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m61_c00411{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00411{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00411{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m32_c00411{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00411{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m26_c00411{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m13_c00411{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m71_c00411{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m18_c00411{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00411{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m58_c00411{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3_c00411{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m92_c00411{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00411{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00411{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00411{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m56_c00411{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00411{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00411{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m20_c00411{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00411{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m28_c00411{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m51_c00411{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8_c00411{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma_c00411{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m66_c00411{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00411{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00411{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);}
.m98_c00411{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m39_c00411{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00411{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m72_c00411{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m46_c00411{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m12_c00411{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00411{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m53_c00411{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00411{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00411{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m55_c00411{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m19_c00411{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00411{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m11_c00411{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md_c00411{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m10_c00411{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00411{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00411{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m48_c00411{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00411{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m86_c00411{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00411{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m79_c00411{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00411{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m59_c00411{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00411{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m85_c00411{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m74_c00411{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m77_c00411{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m40_c00411{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00411{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m30_c00411{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m88_c00411{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00411{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m82_c00411{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m23_c00411{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m75_c00411{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m89_c00411{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00411{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m76_c00411{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m25_c00411{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m94_c00411{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00411{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m14_c00411{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m22_c00411{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m68_c00411{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mb_c00411{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00411{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m5_c00411{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00411{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m69_c00411{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m29_c00411{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00411{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m42_c00411{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00411{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m64_c00411{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m73_c00411{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m37_c00411{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m93_c00411{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m96_c00411{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m17_c00411{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00411{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m6_c00411{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00411{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00411{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m43_c00411{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00411{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m91_c00411{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m62_c00411{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00411{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m67_c00411{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m16_c00411{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00411{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m78_c00411{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m47_c00411{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00411{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m81_c00411{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m70_c00411{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00411{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m27_c00411{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00411{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m99_c00411{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00411{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00411{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00411{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m52_c00411{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m83_c00411{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls0_c00411{letter-spacing:0.000000px;}
.sc__c00411{text-shadow:none;}
.sc0_c00411{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__c00411{-webkit-text-stroke:0px transparent;}
.sc0_c00411{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00411{word-spacing:-9.125000px;}
.wsc_c00411{word-spacing:-8.156415px;}
.ws6_c00411{word-spacing:-5.875000px;}
.ws0_c00411{word-spacing:-4.625000px;}
.wsd_c00411{word-spacing:0.000000px;}
.ws7_c00411{word-spacing:2.750000px;}
.ws2_c00411{word-spacing:6.056225px;}
.ws3_c00411{word-spacing:6.250000px;}
.ws5_c00411{word-spacing:7.500000px;}
.ws4_c00411{word-spacing:10.110236px;}
.ws8_c00411{word-spacing:10.951488px;}
.wsb_c00411{word-spacing:17.750000px;}
.wsa_c00411{word-spacing:20.666667px;}
.ws1_c00411{word-spacing:37.369625px;}
._0_c00411{width:23.875000px;}
.fc0_c00411{color:transparent;}
.fs1_c00411{font-size:42.000000px;}
.fs0_c00411{font-size:54.000000px;}
.y0_c00411{bottom:0.000000px;}
.y2c_c00411{bottom:128.100000px;}
.y2b_c00411{bottom:147.600000px;}
.y2a_c00411{bottom:163.500000px;}
.y29_c00411{bottom:195.450000px;}
.y28_c00411{bottom:215.250000px;}
.y27_c00411{bottom:235.050000px;}
.y26_c00411{bottom:255.150000px;}
.y25_c00411{bottom:274.950000px;}
.y24_c00411{bottom:295.050000px;}
.y23_c00411{bottom:314.850000px;}
.y22_c00411{bottom:334.650000px;}
.y21_c00411{bottom:354.450000px;}
.y20_c00411{bottom:374.550000px;}
.y1f_c00411{bottom:394.350000px;}
.y1e_c00411{bottom:414.150000px;}
.y1d_c00411{bottom:434.250000px;}
.y1c_c00411{bottom:454.050000px;}
.y1b_c00411{bottom:474.150000px;}
.y1a_c00411{bottom:493.950000px;}
.y19_c00411{bottom:531.750000px;}
.y18_c00411{bottom:551.850000px;}
.y17_c00411{bottom:571.650000px;}
.y16_c00411{bottom:591.750000px;}
.y15_c00411{bottom:612.300000px;}
.y14_c00411{bottom:632.100000px;}
.y13_c00411{bottom:652.200000px;}
.y12_c00411{bottom:672.000000px;}
.y11_c00411{bottom:692.100000px;}
.y10_c00411{bottom:711.900000px;}
.yf_c00411{bottom:732.000000px;}
.ye_c00411{bottom:752.100000px;}
.yd_c00411{bottom:771.900000px;}
.yc_c00411{bottom:791.700000px;}
.yb_c00411{bottom:811.800000px;}
.ya_c00411{bottom:831.600000px;}
.y9_c00411{bottom:851.400000px;}
.y8_c00411{bottom:871.500000px;}
.y7_c00411{bottom:896.100000px;}
.y6_c00411{bottom:915.900000px;}
.y5_c00411{bottom:936.000000px;}
.y4_c00411{bottom:965.550000px;}
.y3_c00411{bottom:985.650000px;}
.y2_c00411{bottom:1005.450000px;}
.y1_c00411{bottom:1044.300000px;}
.h3_c00411{height:42.000000px;}
.h2_c00411{height:54.000000px;}
.h1_c00411{height:1166.250000px;}
.h0_c00411{height:1166.400056px;}
.w0_c00411{width:920.879975px;}
.w1_c00411{width:921.000000px;}
.x0_c00411{left:0.000000px;}
.x3_c00411{left:96.450000px;}
.x6c_c00411{left:97.800000px;}
.x96_c00411{left:99.450000px;}
.xa6_c00411{left:100.500000px;}
.x6d_c00411{left:115.500000px;}
.x82_c00411{left:117.450000px;}
.xfe_c00411{left:119.400000px;}
.x55_c00411{left:122.550000px;}
.x4_c00411{left:124.200000px;}
.x8d_c00411{left:127.650000px;}
.x2b_c00411{left:128.850000px;}
.xc6_c00411{left:131.100000px;}
.x25_c00411{left:133.050000px;}
.x44_c00411{left:136.500000px;}
.x11e_c00411{left:137.850000px;}
.xe8_c00411{left:139.350000px;}
.x6e_c00411{left:141.000000px;}
.x63_c00411{left:143.250000px;}
.x83_c00411{left:145.200000px;}
.x3c_c00411{left:147.150000px;}
.xc7_c00411{left:148.800000px;}
.xcd_c00411{left:150.300000px;}
.xf2_c00411{left:151.650000px;}
.x45_c00411{left:152.700000px;}
.x17_c00411{left:158.400000px;}
.x56_c00411{left:160.050000px;}
.xaa_c00411{left:163.200000px;}
.x3d_c00411{left:164.400000px;}
.x9e_c00411{left:167.550000px;}
.xe9_c00411{left:170.250000px;}
.xb5_c00411{left:171.600000px;}
.x3e_c00411{left:173.250000px;}
.x26_c00411{left:175.500000px;}
.xce_c00411{left:177.300000px;}
.x97_c00411{left:178.650000px;}
.x57_c00411{left:180.900000px;}
.x102_c00411{left:185.250000px;}
.x18_c00411{left:186.900000px;}
.x5_c00411{left:188.250000px;}
.x27_c00411{left:190.200000px;}
.xcf_c00411{left:192.000000px;}
.xdb_c00411{left:194.100000px;}
.x84_c00411{left:195.300000px;}
.x107_c00411{left:196.950000px;}
.x10b_c00411{left:198.300000px;}
.x46_c00411{left:200.250000px;}
.x58_c00411{left:201.450000px;}
.xb6_c00411{left:203.250000px;}
.x119_c00411{left:207.450000px;}
.x64_c00411{left:209.850000px;}
.x8e_c00411{left:211.200000px;}
.x6_c00411{left:216.000000px;}
.x6f_c00411{left:217.800000px;}
.x19_c00411{left:220.050000px;}
.xab_c00411{left:221.550000px;}
.x98_c00411{left:222.600000px;}
.x28_c00411{left:225.150000px;}
.x2d_c00411{left:226.800000px;}
.xec_c00411{left:228.600000px;}
.x2c_c00411{left:229.950000px;}
.xc8_c00411{left:231.600000px;}
.xdc_c00411{left:232.950000px;}
.x47_c00411{left:234.150000px;}
.x9f_c00411{left:237.750000px;}
.xe3_c00411{left:240.900000px;}
.x10f_c00411{left:242.400000px;}
.xa7_c00411{left:245.250000px;}
.x99_c00411{left:247.500000px;}
.xd0_c00411{left:248.550000px;}
.xed_c00411{left:250.950000px;}
.x59_c00411{left:252.900000px;}
.x48_c00411{left:254.700000px;}
.x7_c00411{left:259.200000px;}
.x65_c00411{left:263.100000px;}
.xac_c00411{left:264.450000px;}
.xf7_c00411{left:265.950000px;}
.x1a_c00411{left:268.950000px;}
.x2e_c00411{left:270.300000px;}
.x29_c00411{left:271.650000px;}
.xdf_c00411{left:273.450000px;}
.x85_c00411{left:274.500000px;}
.x8_c00411{left:279.300000px;}
.x70_c00411{left:281.100000px;}
.x49_c00411{left:282.450000px;}
.xd6_c00411{left:284.100000px;}
.x79_c00411{left:285.300000px;}
.xad_c00411{left:286.800000px;}
.xf8_c00411{left:288.300000px;}
.x2f_c00411{left:290.100000px;}
.x108_c00411{left:292.350000px;}
.xb7_c00411{left:294.000000px;}
.xf3_c00411{left:295.350000px;}
.x9a_c00411{left:296.850000px;}
.x110_c00411{left:299.250000px;}
.x124_c00411{left:301.950000px;}
.x86_c00411{left:303.600000px;}
.x7a_c00411{left:305.400000px;}
.xbe_c00411{left:306.750000px;}
.x1b_c00411{left:308.850000px;}
.x9_c00411{left:309.900000px;}
.xd7_c00411{left:312.600000px;}
.x8f_c00411{left:315.900000px;}
.x9b_c00411{left:316.950000px;}
.x5a_c00411{left:318.150000px;}
.xd1_c00411{left:319.500000px;}
.x30_c00411{left:322.500000px;}
.xb8_c00411{left:325.350000px;}
.x5b_c00411{left:330.450000px;}
.x10c_c00411{left:332.250000px;}
.x87_c00411{left:333.450000px;}
.x7b_c00411{left:334.500000px;}
.x121_c00411{left:335.550000px;}
.x2a_c00411{left:336.900000px;}
.x111_c00411{left:339.150000px;}
.x9c_c00411{left:340.350000px;}
.x1c_c00411{left:342.000000px;}
.x31_c00411{left:343.050000px;}
.xa_c00411{left:349.800000px;}
.x4a_c00411{left:352.200000px;}
.xee_c00411{left:354.150000px;}
.xd8_c00411{left:356.100000px;}
.x11f_c00411{left:358.500000px;}
.xf4_c00411{left:359.550000px;}
.x1d_c00411{left:361.800000px;}
.x3f_c00411{left:362.850000px;}
.xbf_c00411{left:364.050000px;}
.x112_c00411{left:368.700000px;}
.xb9_c00411{left:370.050000px;}
.x5c_c00411{left:377.250000px;}
.x7c_c00411{left:378.450000px;}
.x71_c00411{left:379.500000px;}
.x66_c00411{left:380.550000px;}
.x90_c00411{left:382.500000px;}
.xb_c00411{left:384.000000px;}
.x32_c00411{left:385.950000px;}
.x1e_c00411{left:389.550000px;}
.xe4_c00411{left:391.950000px;}
.xef_c00411{left:395.550000px;}
.xc9_c00411{left:396.750000px;}
.x4b_c00411{left:398.700000px;}
.x40_c00411{left:401.400000px;}
.xea_c00411{left:402.600000px;}
.x72_c00411{left:404.700000px;}
.x1_c00411{left:406.500000px;}
.xd9_c00411{left:410.400000px;}
.x11a_c00411{left:411.900000px;}
.x109_c00411{left:414.300000px;}
.xff_c00411{left:415.950000px;}
.x115_c00411{left:417.150000px;}
.x10d_c00411{left:420.750000px;}
.x5d_c00411{left:422.250000px;}
.xc_c00411{left:425.400000px;}
.x88_c00411{left:427.500000px;}
.xa0_c00411{left:429.300000px;}
.x7d_c00411{left:431.400000px;}
.xba_c00411{left:433.350000px;}
.x33_c00411{left:437.400000px;}
.x103_c00411{left:438.600000px;}
.x1f_c00411{left:442.500000px;}
.xeb_c00411{left:445.500000px;}
.xae_c00411{left:447.000000px;}
.xdd_c00411{left:448.950000px;}
.xd_c00411{left:453.450000px;}
.x4c_c00411{left:454.800000px;}
.x67_c00411{left:456.600000px;}
.x34_c00411{left:458.250000px;}
.x20_c00411{left:459.450000px;}
.x5e_c00411{left:465.750000px;}
.xca_c00411{left:466.950000px;}
.xe5_c00411{left:469.650000px;}
.xc0_c00411{left:472.350000px;}
.x4d_c00411{left:473.850000px;}
.xf9_c00411{left:475.200000px;}
.xa8_c00411{left:476.400000px;}
.x104_c00411{left:478.200000px;}
.x91_c00411{left:480.900000px;}
.xe_c00411{left:481.950000px;}
.x7e_c00411{left:484.350000px;}
.xa1_c00411{left:486.900000px;}
.xe0_c00411{left:488.550000px;}
.x4e_c00411{left:490.800000px;}
.xd2_c00411{left:492.600000px;}
.x21_c00411{left:495.150000px;}
.x35_c00411{left:497.850000px;}
.xc1_c00411{left:499.350000px;}
.xf_c00411{left:501.750000px;}
.x9d_c00411{left:503.250000px;}
.x92_c00411{left:504.300000px;}
.xe6_c00411{left:505.950000px;}
.x100_c00411{left:507.300000px;}
.x41_c00411{left:509.400000px;}
.x10a_c00411{left:510.450000px;}
.xaf_c00411{left:512.550000px;}
.x89_c00411{left:514.200000px;}
.x73_c00411{left:515.250000px;}
.x4f_c00411{left:516.750000px;}
.xda_c00411{left:518.400000px;}
.xfa_c00411{left:522.000000px;}
.x68_c00411{left:524.700000px;}
.x10_c00411{left:527.250000px;}
.xe1_c00411{left:529.650000px;}
.x74_c00411{left:534.750000px;}
.x101_c00411{left:535.800000px;}
.x113_c00411{left:536.850000px;}
.x5f_c00411{left:538.500000px;}
.x11b_c00411{left:540.900000px;}
.x69_c00411{left:541.950000px;}
.x10e_c00411{left:545.550000px;}
.x22_c00411{left:546.600000px;}
.xf0_c00411{left:548.850000px;}
.xbb_c00411{left:550.950000px;}
.xd3_c00411{left:552.300000px;}
.xf5_c00411{left:556.800000px;}
.xe2_c00411{left:560.550000px;}
.xde_c00411{left:562.500000px;}
.x120_c00411{left:564.300000px;}
.xcb_c00411{left:565.650000px;}
.x36_c00411{left:568.350000px;}
.x60_c00411{left:571.650000px;}
.x122_c00411{left:573.300000px;}
.x11_c00411{left:578.700000px;}
.x75_c00411{left:580.500000px;}
.xb0_c00411{left:583.500000px;}
.x50_c00411{left:585.450000px;}
.xd4_c00411{left:587.550000px;}
.x105_c00411{left:588.600000px;}
.x116_c00411{left:590.250000px;}
.x123_c00411{left:591.300000px;}
.xfb_c00411{left:592.950000px;}
.xcc_c00411{left:594.750000px;}
.x7f_c00411{left:595.950000px;}
.x8a_c00411{left:597.000000px;}
.x93_c00411{left:601.200000px;}
.x11c_c00411{left:604.350000px;}
.x37_c00411{left:606.150000px;}
.xa2_c00411{left:607.800000px;}
.x12_c00411{left:611.100000px;}
.x51_c00411{left:612.450000px;}
.xa9_c00411{left:615.000000px;}
.xb1_c00411{left:618.450000px;}
.xc2_c00411{left:623.850000px;}
.x61_c00411{left:624.900000px;}
.x117_c00411{left:626.550000px;}
.x94_c00411{left:630.300000px;}
.xf1_c00411{left:632.700000px;}
.x42_c00411{left:638.700000px;}
.x38_c00411{left:641.100000px;}
.xfc_c00411{left:642.300000px;}
.xc3_c00411{left:648.000000px;}
.x6a_c00411{left:651.450000px;}
.xa3_c00411{left:653.850000px;}
.x43_c00411{left:655.650000px;}
.x52_c00411{left:657.900000px;}
.x13_c00411{left:661.200000px;}
.x114_c00411{left:662.850000px;}
.x95_c00411{left:664.200000px;}
.xb2_c00411{left:665.550000px;}
.x11d_c00411{left:668.100000px;}
.x76_c00411{left:672.600000px;}
.x62_c00411{left:676.050000px;}
.xc4_c00411{left:679.350000px;}
.x14_c00411{left:680.700000px;}
.x80_c00411{left:682.350000px;}
.x39_c00411{left:685.050000px;}
.x6b_c00411{left:686.700000px;}
.x77_c00411{left:688.050000px;}
.xbc_c00411{left:691.350000px;}
.xfd_c00411{left:693.750000px;}
.x23_c00411{left:695.250000px;}
.x125_c00411{left:697.200000px;}
.xb3_c00411{left:698.700000px;}
.x118_c00411{left:700.050000px;}
.x15_c00411{left:701.550000px;}
.xa4_c00411{left:704.250000px;}
.x3a_c00411{left:705.900000px;}
.x53_c00411{left:711.600000px;}
.x106_c00411{left:715.650000px;}
.xf6_c00411{left:717.750000px;}
.xd5_c00411{left:718.800000px;}
.xa5_c00411{left:721.500000px;}
.x54_c00411{left:726.300000px;}
.x8b_c00411{left:727.350000px;}
.x81_c00411{left:730.500000px;}
.x3b_c00411{left:733.950000px;}
.x2_c00411{left:736.200000px;}
.xc5_c00411{left:737.250000px;}
.x24_c00411{left:739.950000px;}
.xe7_c00411{left:741.300000px;}
.x16_c00411{left:744.750000px;}
.xb4_c00411{left:747.600000px;}
.x8c_c00411{left:750.750000px;}
.x78_c00411{left:752.850000px;}
.xbd_c00411{left:755.400000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws9_c00411{word-spacing:-8.111111pt;}
.wsc_c00411{word-spacing:-7.250146pt;}
.ws6_c00411{word-spacing:-5.222222pt;}
.ws0_c00411{word-spacing:-4.111111pt;}
.wsd_c00411{word-spacing:0.000000pt;}
.ws7_c00411{word-spacing:2.444444pt;}
.ws2_c00411{word-spacing:5.383311pt;}
.ws3_c00411{word-spacing:5.555556pt;}
.ws5_c00411{word-spacing:6.666667pt;}
.ws4_c00411{word-spacing:8.986877pt;}
.ws8_c00411{word-spacing:9.734656pt;}
.wsb_c00411{word-spacing:15.777778pt;}
.wsa_c00411{word-spacing:18.370370pt;}
.ws1_c00411{word-spacing:33.217444pt;}
._0_c00411{width:21.222222pt;}
.fs1_c00411{font-size:37.333333pt;}
.fs0_c00411{font-size:48.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y2c_c00411{bottom:113.866667pt;}
.y2b_c00411{bottom:131.200000pt;}
.y2a_c00411{bottom:145.333333pt;}
.y29_c00411{bottom:173.733333pt;}
.y28_c00411{bottom:191.333333pt;}
.y27_c00411{bottom:208.933333pt;}
.y26_c00411{bottom:226.800000pt;}
.y25_c00411{bottom:244.400000pt;}
.y24_c00411{bottom:262.266667pt;}
.y23_c00411{bottom:279.866667pt;}
.y22_c00411{bottom:297.466667pt;}
.y21_c00411{bottom:315.066667pt;}
.y20_c00411{bottom:332.933333pt;}
.y1f_c00411{bottom:350.533333pt;}
.y1e_c00411{bottom:368.133333pt;}
.y1d_c00411{bottom:386.000000pt;}
.y1c_c00411{bottom:403.600000pt;}
.y1b_c00411{bottom:421.466667pt;}
.y1a_c00411{bottom:439.066667pt;}
.y19_c00411{bottom:472.666667pt;}
.y18_c00411{bottom:490.533333pt;}
.y17_c00411{bottom:508.133333pt;}
.y16_c00411{bottom:526.000000pt;}
.y15_c00411{bottom:544.266667pt;}
.y14_c00411{bottom:561.866667pt;}
.y13_c00411{bottom:579.733333pt;}
.y12_c00411{bottom:597.333333pt;}
.y11_c00411{bottom:615.200000pt;}
.y10_c00411{bottom:632.800000pt;}
.yf_c00411{bottom:650.666667pt;}
.ye_c00411{bottom:668.533333pt;}
.yd_c00411{bottom:686.133333pt;}
.yc_c00411{bottom:703.733333pt;}
.yb_c00411{bottom:721.600000pt;}
.ya_c00411{bottom:739.200000pt;}
.y9_c00411{bottom:756.800000pt;}
.y8_c00411{bottom:774.666667pt;}
.y7_c00411{bottom:796.533333pt;}
.y6_c00411{bottom:814.133333pt;}
.y5_c00411{bottom:832.000000pt;}
.y4_c00411{bottom:858.266667pt;}
.y3_c00411{bottom:876.133333pt;}
.y2_c00411{bottom:893.733333pt;}
.y1_c00411{bottom:928.266667pt;}
.h3_c00411{height:37.333333pt;}
.h2_c00411{height:48.000000pt;}
.h1_c00411{height:1036.666667pt;}
.h0_c00411{height:1036.800049pt;}
.w0_c00411{width:818.559977pt;}
.w1_c00411{width:818.666667pt;}
.x0_c00411{left:0.000000pt;}
.x3_c00411{left:85.733333pt;}
.x6c_c00411{left:86.933333pt;}
.x96_c00411{left:88.400000pt;}
.xa6_c00411{left:89.333333pt;}
.x6d_c00411{left:102.666667pt;}
.x82_c00411{left:104.400000pt;}
.xfe_c00411{left:106.133333pt;}
.x55_c00411{left:108.933333pt;}
.x4_c00411{left:110.400000pt;}
.x8d_c00411{left:113.466667pt;}
.x2b_c00411{left:114.533333pt;}
.xc6_c00411{left:116.533333pt;}
.x25_c00411{left:118.266667pt;}
.x44_c00411{left:121.333333pt;}
.x11e_c00411{left:122.533333pt;}
.xe8_c00411{left:123.866667pt;}
.x6e_c00411{left:125.333333pt;}
.x63_c00411{left:127.333333pt;}
.x83_c00411{left:129.066667pt;}
.x3c_c00411{left:130.800000pt;}
.xc7_c00411{left:132.266667pt;}
.xcd_c00411{left:133.600000pt;}
.xf2_c00411{left:134.800000pt;}
.x45_c00411{left:135.733333pt;}
.x17_c00411{left:140.800000pt;}
.x56_c00411{left:142.266667pt;}
.xaa_c00411{left:145.066667pt;}
.x3d_c00411{left:146.133333pt;}
.x9e_c00411{left:148.933333pt;}
.xe9_c00411{left:151.333333pt;}
.xb5_c00411{left:152.533333pt;}
.x3e_c00411{left:154.000000pt;}
.x26_c00411{left:156.000000pt;}
.xce_c00411{left:157.600000pt;}
.x97_c00411{left:158.800000pt;}
.x57_c00411{left:160.800000pt;}
.x102_c00411{left:164.666667pt;}
.x18_c00411{left:166.133333pt;}
.x5_c00411{left:167.333333pt;}
.x27_c00411{left:169.066667pt;}
.xcf_c00411{left:170.666667pt;}
.xdb_c00411{left:172.533333pt;}
.x84_c00411{left:173.600000pt;}
.x107_c00411{left:175.066667pt;}
.x10b_c00411{left:176.266667pt;}
.x46_c00411{left:178.000000pt;}
.x58_c00411{left:179.066667pt;}
.xb6_c00411{left:180.666667pt;}
.x119_c00411{left:184.400000pt;}
.x64_c00411{left:186.533333pt;}
.x8e_c00411{left:187.733333pt;}
.x6_c00411{left:192.000000pt;}
.x6f_c00411{left:193.600000pt;}
.x19_c00411{left:195.600000pt;}
.xab_c00411{left:196.933333pt;}
.x98_c00411{left:197.866667pt;}
.x28_c00411{left:200.133333pt;}
.x2d_c00411{left:201.600000pt;}
.xec_c00411{left:203.200000pt;}
.x2c_c00411{left:204.400000pt;}
.xc8_c00411{left:205.866667pt;}
.xdc_c00411{left:207.066667pt;}
.x47_c00411{left:208.133333pt;}
.x9f_c00411{left:211.333333pt;}
.xe3_c00411{left:214.133333pt;}
.x10f_c00411{left:215.466667pt;}
.xa7_c00411{left:218.000000pt;}
.x99_c00411{left:220.000000pt;}
.xd0_c00411{left:220.933333pt;}
.xed_c00411{left:223.066667pt;}
.x59_c00411{left:224.800000pt;}
.x48_c00411{left:226.400000pt;}
.x7_c00411{left:230.400000pt;}
.x65_c00411{left:233.866667pt;}
.xac_c00411{left:235.066667pt;}
.xf7_c00411{left:236.400000pt;}
.x1a_c00411{left:239.066667pt;}
.x2e_c00411{left:240.266667pt;}
.x29_c00411{left:241.466667pt;}
.xdf_c00411{left:243.066667pt;}
.x85_c00411{left:244.000000pt;}
.x8_c00411{left:248.266667pt;}
.x70_c00411{left:249.866667pt;}
.x49_c00411{left:251.066667pt;}
.xd6_c00411{left:252.533333pt;}
.x79_c00411{left:253.600000pt;}
.xad_c00411{left:254.933333pt;}
.xf8_c00411{left:256.266667pt;}
.x2f_c00411{left:257.866667pt;}
.x108_c00411{left:259.866667pt;}
.xb7_c00411{left:261.333333pt;}
.xf3_c00411{left:262.533333pt;}
.x9a_c00411{left:263.866667pt;}
.x110_c00411{left:266.000000pt;}
.x124_c00411{left:268.400000pt;}
.x86_c00411{left:269.866667pt;}
.x7a_c00411{left:271.466667pt;}
.xbe_c00411{left:272.666667pt;}
.x1b_c00411{left:274.533333pt;}
.x9_c00411{left:275.466667pt;}
.xd7_c00411{left:277.866667pt;}
.x8f_c00411{left:280.800000pt;}
.x9b_c00411{left:281.733333pt;}
.x5a_c00411{left:282.800000pt;}
.xd1_c00411{left:284.000000pt;}
.x30_c00411{left:286.666667pt;}
.xb8_c00411{left:289.200000pt;}
.x5b_c00411{left:293.733333pt;}
.x10c_c00411{left:295.333333pt;}
.x87_c00411{left:296.400000pt;}
.x7b_c00411{left:297.333333pt;}
.x121_c00411{left:298.266667pt;}
.x2a_c00411{left:299.466667pt;}
.x111_c00411{left:301.466667pt;}
.x9c_c00411{left:302.533333pt;}
.x1c_c00411{left:304.000000pt;}
.x31_c00411{left:304.933333pt;}
.xa_c00411{left:310.933333pt;}
.x4a_c00411{left:313.066667pt;}
.xee_c00411{left:314.800000pt;}
.xd8_c00411{left:316.533333pt;}
.x11f_c00411{left:318.666667pt;}
.xf4_c00411{left:319.600000pt;}
.x1d_c00411{left:321.600000pt;}
.x3f_c00411{left:322.533333pt;}
.xbf_c00411{left:323.600000pt;}
.x112_c00411{left:327.733333pt;}
.xb9_c00411{left:328.933333pt;}
.x5c_c00411{left:335.333333pt;}
.x7c_c00411{left:336.400000pt;}
.x71_c00411{left:337.333333pt;}
.x66_c00411{left:338.266667pt;}
.x90_c00411{left:340.000000pt;}
.xb_c00411{left:341.333333pt;}
.x32_c00411{left:343.066667pt;}
.x1e_c00411{left:346.266667pt;}
.xe4_c00411{left:348.400000pt;}
.xef_c00411{left:351.600000pt;}
.xc9_c00411{left:352.666667pt;}
.x4b_c00411{left:354.400000pt;}
.x40_c00411{left:356.800000pt;}
.xea_c00411{left:357.866667pt;}
.x72_c00411{left:359.733333pt;}
.x1_c00411{left:361.333333pt;}
.xd9_c00411{left:364.800000pt;}
.x11a_c00411{left:366.133333pt;}
.x109_c00411{left:368.266667pt;}
.xff_c00411{left:369.733333pt;}
.x115_c00411{left:370.800000pt;}
.x10d_c00411{left:374.000000pt;}
.x5d_c00411{left:375.333333pt;}
.xc_c00411{left:378.133333pt;}
.x88_c00411{left:380.000000pt;}
.xa0_c00411{left:381.600000pt;}
.x7d_c00411{left:383.466667pt;}
.xba_c00411{left:385.200000pt;}
.x33_c00411{left:388.800000pt;}
.x103_c00411{left:389.866667pt;}
.x1f_c00411{left:393.333333pt;}
.xeb_c00411{left:396.000000pt;}
.xae_c00411{left:397.333333pt;}
.xdd_c00411{left:399.066667pt;}
.xd_c00411{left:403.066667pt;}
.x4c_c00411{left:404.266667pt;}
.x67_c00411{left:405.866667pt;}
.x34_c00411{left:407.333333pt;}
.x20_c00411{left:408.400000pt;}
.x5e_c00411{left:414.000000pt;}
.xca_c00411{left:415.066667pt;}
.xe5_c00411{left:417.466667pt;}
.xc0_c00411{left:419.866667pt;}
.x4d_c00411{left:421.200000pt;}
.xf9_c00411{left:422.400000pt;}
.xa8_c00411{left:423.466667pt;}
.x104_c00411{left:425.066667pt;}
.x91_c00411{left:427.466667pt;}
.xe_c00411{left:428.400000pt;}
.x7e_c00411{left:430.533333pt;}
.xa1_c00411{left:432.800000pt;}
.xe0_c00411{left:434.266667pt;}
.x4e_c00411{left:436.266667pt;}
.xd2_c00411{left:437.866667pt;}
.x21_c00411{left:440.133333pt;}
.x35_c00411{left:442.533333pt;}
.xc1_c00411{left:443.866667pt;}
.xf_c00411{left:446.000000pt;}
.x9d_c00411{left:447.333333pt;}
.x92_c00411{left:448.266667pt;}
.xe6_c00411{left:449.733333pt;}
.x100_c00411{left:450.933333pt;}
.x41_c00411{left:452.800000pt;}
.x10a_c00411{left:453.733333pt;}
.xaf_c00411{left:455.600000pt;}
.x89_c00411{left:457.066667pt;}
.x73_c00411{left:458.000000pt;}
.x4f_c00411{left:459.333333pt;}
.xda_c00411{left:460.800000pt;}
.xfa_c00411{left:464.000000pt;}
.x68_c00411{left:466.400000pt;}
.x10_c00411{left:468.666667pt;}
.xe1_c00411{left:470.800000pt;}
.x74_c00411{left:475.333333pt;}
.x101_c00411{left:476.266667pt;}
.x113_c00411{left:477.200000pt;}
.x5f_c00411{left:478.666667pt;}
.x11b_c00411{left:480.800000pt;}
.x69_c00411{left:481.733333pt;}
.x10e_c00411{left:484.933333pt;}
.x22_c00411{left:485.866667pt;}
.xf0_c00411{left:487.866667pt;}
.xbb_c00411{left:489.733333pt;}
.xd3_c00411{left:490.933333pt;}
.xf5_c00411{left:494.933333pt;}
.xe2_c00411{left:498.266667pt;}
.xde_c00411{left:500.000000pt;}
.x120_c00411{left:501.600000pt;}
.xcb_c00411{left:502.800000pt;}
.x36_c00411{left:505.200000pt;}
.x60_c00411{left:508.133333pt;}
.x122_c00411{left:509.600000pt;}
.x11_c00411{left:514.400000pt;}
.x75_c00411{left:516.000000pt;}
.xb0_c00411{left:518.666667pt;}
.x50_c00411{left:520.400000pt;}
.xd4_c00411{left:522.266667pt;}
.x105_c00411{left:523.200000pt;}
.x116_c00411{left:524.666667pt;}
.x123_c00411{left:525.600000pt;}
.xfb_c00411{left:527.066667pt;}
.xcc_c00411{left:528.666667pt;}
.x7f_c00411{left:529.733333pt;}
.x8a_c00411{left:530.666667pt;}
.x93_c00411{left:534.400000pt;}
.x11c_c00411{left:537.200000pt;}
.x37_c00411{left:538.800000pt;}
.xa2_c00411{left:540.266667pt;}
.x12_c00411{left:543.200000pt;}
.x51_c00411{left:544.400000pt;}
.xa9_c00411{left:546.666667pt;}
.xb1_c00411{left:549.733333pt;}
.xc2_c00411{left:554.533333pt;}
.x61_c00411{left:555.466667pt;}
.x117_c00411{left:556.933333pt;}
.x94_c00411{left:560.266667pt;}
.xf1_c00411{left:562.400000pt;}
.x42_c00411{left:567.733333pt;}
.x38_c00411{left:569.866667pt;}
.xfc_c00411{left:570.933333pt;}
.xc3_c00411{left:576.000000pt;}
.x6a_c00411{left:579.066667pt;}
.xa3_c00411{left:581.200000pt;}
.x43_c00411{left:582.800000pt;}
.x52_c00411{left:584.800000pt;}
.x13_c00411{left:587.733333pt;}
.x114_c00411{left:589.200000pt;}
.x95_c00411{left:590.400000pt;}
.xb2_c00411{left:591.600000pt;}
.x11d_c00411{left:593.866667pt;}
.x76_c00411{left:597.866667pt;}
.x62_c00411{left:600.933333pt;}
.xc4_c00411{left:603.866667pt;}
.x14_c00411{left:605.066667pt;}
.x80_c00411{left:606.533333pt;}
.x39_c00411{left:608.933333pt;}
.x6b_c00411{left:610.400000pt;}
.x77_c00411{left:611.600000pt;}
.xbc_c00411{left:614.533333pt;}
.xfd_c00411{left:616.666667pt;}
.x23_c00411{left:618.000000pt;}
.x125_c00411{left:619.733333pt;}
.xb3_c00411{left:621.066667pt;}
.x118_c00411{left:622.266667pt;}
.x15_c00411{left:623.600000pt;}
.xa4_c00411{left:626.000000pt;}
.x3a_c00411{left:627.466667pt;}
.x53_c00411{left:632.533333pt;}
.x106_c00411{left:636.133333pt;}
.xf6_c00411{left:638.000000pt;}
.xd5_c00411{left:638.933333pt;}
.xa5_c00411{left:641.333333pt;}
.x54_c00411{left:645.600000pt;}
.x8b_c00411{left:646.533333pt;}
.x81_c00411{left:649.333333pt;}
.x3b_c00411{left:652.400000pt;}
.x2_c00411{left:654.400000pt;}
.xc5_c00411{left:655.333333pt;}
.x24_c00411{left:657.733333pt;}
.xe7_c00411{left:658.933333pt;}
.x16_c00411{left:662.000000pt;}
.xb4_c00411{left:664.533333pt;}
.x8c_c00411{left:667.333333pt;}
.x78_c00411{left:669.200000pt;}
.xbd_c00411{left:671.466667pt;}
}





/* 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_c00412 {
    display:none;
  }
  .loading-indicator_c00412.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00412 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_c00412 { 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_c00412" -> "#page-container .classname_c00412")
 */
.pf_c00412 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00412 { /* 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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00412 { /* 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_c00412 { /* 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_c00412 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00412 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00412 {overflow:visible;}
  }
}
.c_c00412 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00412 { /* 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_c00412:after { /* webkit #35443 */
  content: '';
}
.t_c00412:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00412 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 */
}
.__c00412 { /* 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_c00412 { /* info for Javascript */
  display:none;
}
.l_c00412 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00412 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00412 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00412: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_c00412 {
    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_c00412.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00412.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_c00412 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00412{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00412;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.000000;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;}
.ma3_c00412{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00412{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00412{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mae_c00412{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m4_c00412{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00412{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00412{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m92_c00412{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00412{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m72_c00412{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.maa_c00412{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m49_c00412{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m76_c00412{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m97_c00412{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m61_c00412{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.maf_c00412{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m80_c00412{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00412{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00412{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00412{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m74_c00412{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m71_c00412{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00412{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00412{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mad_c00412{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mc_c00412{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m41_c00412{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00412{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m29_c00412{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00412{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00412{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m26_c00412{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00412{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m62_c00412{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m90_c00412{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m21_c00412{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m23_c00412{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m91_c00412{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00412{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m54_c00412{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00412{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00412{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m82_c00412{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m64_c00412{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00412{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m85_c00412{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m9_c00412{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m22_c00412{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m20_c00412{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m99_c00412{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00412{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00412{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m81_c00412{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m31_c00412{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00412{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m17_c00412{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m86_c00412{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mf_c00412{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m18_c00412{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00412{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00412{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m60_c00412{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m47_c00412{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00412{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00412{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00412{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mab_c00412{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m95_c00412{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00412{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m77_c00412{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m70_c00412{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00412{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m13_c00412{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00412{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00412{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m30_c00412{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00412{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m34_c00412{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00412{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00412{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7_c00412{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00412{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m24_c00412{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00412{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00412{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00412{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.mb_c00412{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m98_c00412{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.mac_c00412{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m12_c00412{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6_c00412{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00412{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m51_c00412{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m96_c00412{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00412{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00412{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m58_c00412{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m10_c00412{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00412{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m42_c00412{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m25_c00412{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m78_c00412{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md_c00412{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m73_c00412{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m84_c00412{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m45_c00412{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m88_c00412{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00412{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m28_c00412{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00412{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m46_c00412{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00412{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m53_c00412{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m89_c00412{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00412{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00412{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.me_c00412{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00412{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m44_c00412{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m15_c00412{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00412{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m11_c00412{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m87_c00412{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00412{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m93_c00412{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m32_c00412{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m16_c00412{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00412{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m3_c00412{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00412{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m79_c00412{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00412{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m14_c00412{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5_c00412{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00412{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m94_c00412{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00412{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00412{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m35_c00412{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00412{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m75_c00412{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);}
.m7e_c00412{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m57_c00412{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00412{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00412{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m27_c00412{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m36_c00412{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m83_c00412{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00412{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m52_c00412{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m40_c00412{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m33_c00412{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m50_c00412{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m59_c00412{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c00412{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m48_c00412{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m37_c00412{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00412{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m38_c00412{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m63_c00412{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00412{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m67_c00412{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m43_c00412{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00412{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00412{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00412{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00412{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m0_c00412{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00412{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00412{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00412{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00412{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00412{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m68_c00412{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00412{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m66_c00412{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m69_c00412{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m65_c00412{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00412{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls0_c00412{letter-spacing:0.000000px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{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__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00412{word-spacing:-9.545455px;}
.ws7_c00412{word-spacing:-7.500000px;}
.ws1_c00412{word-spacing:-2.575758px;}
.ws9_c00412{word-spacing:0.000000px;}
.ws3_c00412{word-spacing:3.883929px;}
.ws4_c00412{word-spacing:5.588235px;}
.ws8_c00412{word-spacing:6.447368px;}
.ws2_c00412{word-spacing:8.529412px;}
.ws0_c00412{word-spacing:9.910714px;}
.ws5_c00412{word-spacing:10.735294px;}
._0_c00412{width:40.441176px;}
.fc0_c00412{color:transparent;}
.fs1_c00412{font-size:48.000000px;}
.fs0_c00412{font-size:60.000000px;}
.y0_c00412{bottom:0.000000px;}
.y2d_c00412{bottom:159.900000px;}
.y2c_c00412{bottom:175.950000px;}
.y2b_c00412{bottom:191.100000px;}
.y2a_c00412{bottom:207.300000px;}
.y29_c00412{bottom:243.450000px;}
.y28_c00412{bottom:263.250000px;}
.y27_c00412{bottom:283.350000px;}
.y26_c00412{bottom:302.700000px;}
.y25_c00412{bottom:323.250000px;}
.y24_c00412{bottom:343.050000px;}
.y23_c00412{bottom:363.600000px;}
.y22_c00412{bottom:382.950000px;}
.y21_c00412{bottom:403.500000px;}
.y20_c00412{bottom:424.050000px;}
.y1f_c00412{bottom:447.150000px;}
.y1e_c00412{bottom:462.600000px;}
.y1d_c00412{bottom:481.350000px;}
.y1c_c00412{bottom:501.900000px;}
.y1b_c00412{bottom:522.000000px;}
.y1a_c00412{bottom:541.800000px;}
.y19_c00412{bottom:561.450000px;}
.y18_c00412{bottom:582.000000px;}
.y17_c00412{bottom:601.500000px;}
.y16_c00412{bottom:621.600000px;}
.y15_c00412{bottom:641.400000px;}
.y14_c00412{bottom:661.500000px;}
.y13_c00412{bottom:681.600000px;}
.y12_c00412{bottom:701.700000px;}
.y11_c00412{bottom:721.800000px;}
.y10_c00412{bottom:741.750000px;}
.yf_c00412{bottom:761.850000px;}
.ye_c00412{bottom:781.650000px;}
.yd_c00412{bottom:801.750000px;}
.yc_c00412{bottom:821.850000px;}
.yb_c00412{bottom:841.650000px;}
.ya_c00412{bottom:861.450000px;}
.y9_c00412{bottom:881.550000px;}
.y8_c00412{bottom:901.350000px;}
.y7_c00412{bottom:921.900000px;}
.y6_c00412{bottom:941.700000px;}
.y5_c00412{bottom:961.500000px;}
.y4_c00412{bottom:981.300000px;}
.y3_c00412{bottom:1001.100000px;}
.y2_c00412{bottom:1020.900000px;}
.y1_c00412{bottom:1059.900000px;}
.h3_c00412{height:48.000000px;}
.h2_c00412{height:60.000000px;}
.h1_c00412{height:1166.250000px;}
.h0_c00412{height:1166.400056px;}
.w0_c00412{width:920.879975px;}
.w1_c00412{width:921.000000px;}
.x0_c00412{left:0.000000px;}
.x12d_c00412{left:163.500000px;}
.x107_c00412{left:165.450000px;}
.xf7_c00412{left:167.100000px;}
.xe2_c00412{left:168.300000px;}
.x72_c00412{left:170.250000px;}
.x40_c00412{left:171.450000px;}
.x3_c00412{left:173.100000px;}
.x1_c00412{left:174.300000px;}
.x11b_c00412{left:176.550000px;}
.xf0_c00412{left:180.900000px;}
.x127_c00412{left:183.600000px;}
.xc4_c00412{left:187.200000px;}
.x58_c00412{left:190.650000px;}
.x73_c00412{left:193.950000px;}
.x114_c00412{left:196.200000px;}
.x4_c00412{left:197.550000px;}
.xdc_c00412{left:199.800000px;}
.x95_c00412{left:201.600000px;}
.x64_c00412{left:202.650000px;}
.x1d_c00412{left:204.150000px;}
.x12e_c00412{left:209.550000px;}
.x11c_c00412{left:211.500000px;}
.xea_c00412{left:215.700000px;}
.xf1_c00412{left:216.900000px;}
.x59_c00412{left:218.700000px;}
.xb2_c00412{left:220.050000px;}
.x36_c00412{left:221.100000px;}
.x80_c00412{left:222.450000px;}
.xe3_c00412{left:223.800000px;}
.x96_c00412{left:226.050000px;}
.xfd_c00412{left:228.300000px;}
.x63_c00412{left:229.350000px;}
.x65_c00412{left:232.500000px;}
.x74_c00412{left:233.550000px;}
.xca_c00412{left:236.850000px;}
.x41_c00412{left:238.350000px;}
.x1e_c00412{left:239.400000px;}
.xb3_c00412{left:240.600000px;}
.x28_c00412{left:242.550000px;}
.x8a_c00412{left:246.450000px;}
.x81_c00412{left:249.150000px;}
.xd2_c00412{left:250.650000px;}
.x37_c00412{left:251.700000px;}
.x75_c00412{left:253.650000px;}
.xe4_c00412{left:254.700000px;}
.x5_c00412{left:256.950000px;}
.x4e_c00412{left:258.750000px;}
.x108_c00412{left:260.550000px;}
.x9f_c00412{left:264.450000px;}
.xad_c00412{left:265.650000px;}
.x29_c00412{left:268.050000px;}
.x42_c00412{left:271.050000px;}
.x8b_c00412{left:274.500000px;}
.x128_c00412{left:275.850000px;}
.xc5_c00412{left:277.500000px;}
.x4f_c00412{left:279.600000px;}
.xcb_c00412{left:281.100000px;}
.x109_c00412{left:282.150000px;}
.x38_c00412{left:284.400000px;}
.x6_c00412{left:288.300000px;}
.xe5_c00412{left:289.650000px;}
.xb4_c00412{left:291.000000px;}
.x66_c00412{left:292.650000px;}
.xf2_c00412{left:293.700000px;}
.x76_c00412{left:295.350000px;}
.x12_c00412{left:296.550000px;}
.xcc_c00412{left:299.400000px;}
.x115_c00412{left:302.700000px;}
.x82_c00412{left:304.950000px;}
.xa0_c00412{left:306.150000px;}
.xd3_c00412{left:308.250000px;}
.x7_c00412{left:310.950000px;}
.x101_c00412{left:315.750000px;}
.x97_c00412{left:317.250000px;}
.x1f_c00412{left:318.600000px;}
.xa1_c00412{left:321.600000px;}
.x10d_c00412{left:324.750000px;}
.x2a_c00412{left:326.700000px;}
.xcd_c00412{left:327.900000px;}
.x39_c00412{left:330.150000px;}
.xae_c00412{left:331.200000px;}
.x11d_c00412{left:332.850000px;}
.x77_c00412{left:334.500000px;}
.xf8_c00412{left:338.550000px;}
.xd8_c00412{left:343.650000px;}
.x20_c00412{left:348.150000px;}
.x10a_c00412{left:349.500000px;}
.x129_c00412{left:351.150000px;}
.xc6_c00412{left:353.550000px;}
.x10e_c00412{left:355.050000px;}
.x50_c00412{left:356.700000px;}
.x67_c00412{left:358.500000px;}
.x5a_c00412{left:362.250000px;}
.x2b_c00412{left:367.050000px;}
.x78_c00412{left:368.700000px;}
.x8c_c00412{left:369.900000px;}
.x13_c00412{left:373.650000px;}
.xb5_c00412{left:375.900000px;}
.x68_c00412{left:378.300000px;}
.x43_c00412{left:379.350000px;}
.x12a_c00412{left:381.000000px;}
.x2c_c00412{left:384.000000px;}
.xeb_c00412{left:385.050000px;}
.x51_c00412{left:387.000000px;}
.xf3_c00412{left:388.350000px;}
.x8d_c00412{left:390.450000px;}
.x98_c00412{left:392.550000px;}
.x10f_c00412{left:394.650000px;}
.x14_c00412{left:396.300000px;}
.x103_c00412{left:397.800000px;}
.xb6_c00412{left:401.400000px;}
.x69_c00412{left:403.800000px;}
.x124_c00412{left:405.150000px;}
.x5b_c00412{left:409.050000px;}
.xdd_c00412{left:414.000000px;}
.x8e_c00412{left:415.950000px;}
.xa8_c00412{left:417.450000px;}
.xbc_c00412{left:420.000000px;}
.xd9_c00412{left:421.050000px;}
.x15_c00412{left:422.250000px;}
.x11e_c00412{left:423.600000px;}
.xc7_c00412{left:425.550000px;}
.x21_c00412{left:426.600000px;}
.x8_c00412{left:428.550000px;}
.x104_c00412{left:430.500000px;}
.x44_c00412{left:435.150000px;}
.x2d_c00412{left:436.500000px;}
.xf9_c00412{left:438.300000px;}
.x102_c00412{left:440.250000px;}
.x99_c00412{left:442.650000px;}
.xce_c00412{left:443.850000px;}
.xbd_c00412{left:445.500000px;}
.x5c_c00412{left:446.550000px;}
.xa2_c00412{left:449.850000px;}
.x125_c00412{left:452.700000px;}
.x2e_c00412{left:453.750000px;}
.x45_c00412{left:456.450000px;}
.xe6_c00412{left:457.500000px;}
.x79_c00412{left:460.200000px;}
.xec_c00412{left:462.150000px;}
.x16_c00412{left:463.650000px;}
.xfe_c00412{left:465.900000px;}
.xa9_c00412{left:467.100000px;}
.x83_c00412{left:468.750000px;}
.x2_c00412{left:471.000000px;}
.xa3_c00412{left:472.950000px;}
.x3a_c00412{left:474.600000px;}
.x52_c00412{left:477.300000px;}
.xde_c00412{left:478.800000px;}
.x5d_c00412{left:480.000000px;}
.x7a_c00412{left:481.500000px;}
.x9_c00412{left:482.550000px;}
.x17_c00412{left:484.950000px;}
.xd4_c00412{left:486.900000px;}
.xfa_c00412{left:488.700000px;}
.xcf_c00412{left:490.350000px;}
.x116_c00412{left:492.300000px;}
.xb7_c00412{left:495.000000px;}
.x6a_c00412{left:496.050000px;}
.x2f_c00412{left:497.700000px;}
.xa4_c00412{left:498.900000px;}
.x53_c00412{left:500.700000px;}
.x7b_c00412{left:506.700000px;}
.x8f_c00412{left:516.450000px;}
.xb8_c00412{left:520.200000px;}
.xbe_c00412{left:521.850000px;}
.x6b_c00412{left:524.550000px;}
.x12b_c00412{left:526.350000px;}
.x18_c00412{left:527.400000px;}
.x46_c00412{left:529.950000px;}
.x30_c00412{left:531.150000px;}
.x5e_c00412{left:533.550000px;}
.x22_c00412{left:536.400000px;}
.x12f_c00412{left:537.600000px;}
.x3b_c00412{left:539.100000px;}
.xa_c00412{left:542.250000px;}
.xff_c00412{left:545.100000px;}
.xb9_c00412{left:547.950000px;}
.x47_c00412{left:550.800000px;}
.xd0_c00412{left:553.350000px;}
.x31_c00412{left:556.350000px;}
.xe7_c00412{left:558.300000px;}
.x84_c00412{left:560.250000px;}
.xf5_c00412{left:562.050000px;}
.xda_c00412{left:566.100000px;}
.x7c_c00412{left:567.150000px;}
.xed_c00412{left:568.350000px;}
.xb_c00412{left:570.750000px;}
.xa5_c00412{left:572.250000px;}
.x9a_c00412{left:575.100000px;}
.x11f_c00412{left:576.450000px;}
.x48_c00412{left:578.100000px;}
.xaf_c00412{left:579.750000px;}
.xd5_c00412{left:582.750000px;}
.x3c_c00412{left:584.100000px;}
.xaa_c00412{left:588.150000px;}
.x10b_c00412{left:589.800000px;}
.xbf_c00412{left:591.300000px;}
.x19_c00412{left:593.700000px;}
.x105_c00412{left:596.100000px;}
.x126_c00412{left:598.500000px;}
.xf6_c00412{left:601.650000px;}
.x23_c00412{left:603.000000px;}
.x120_c00412{left:604.500000px;}
.x6c_c00412{left:606.300000px;}
.x85_c00412{left:608.100000px;}
.x7d_c00412{left:610.650000px;}
.x32_c00412{left:613.950000px;}
.x6d_c00412{left:617.400000px;}
.xf4_c00412{left:619.950000px;}
.xc_c00412{left:621.900000px;}
.xc8_c00412{left:622.950000px;}
.x49_c00412{left:625.650000px;}
.xdb_c00412{left:628.800000px;}
.x5f_c00412{left:630.450000px;}
.x90_c00412{left:631.950000px;}
.xe8_c00412{left:634.350000px;}
.xc0_c00412{left:636.750000px;}
.x1a_c00412{left:638.700000px;}
.x24_c00412{left:641.100000px;}
.x3d_c00412{left:644.550000px;}
.x6e_c00412{left:646.500000px;}
.x54_c00412{left:648.300000px;}
.x10c_c00412{left:649.950000px;}
.xd_c00412{left:652.500000px;}
.x110_c00412{left:653.700000px;}
.xba_c00412{left:657.450000px;}
.x60_c00412{left:658.500000px;}
.x86_c00412{left:660.000000px;}
.x9b_c00412{left:663.300000px;}
.xfb_c00412{left:664.650000px;}
.xe9_c00412{left:666.000000px;}
.x117_c00412{left:668.250000px;}
.xd6_c00412{left:672.000000px;}
.x91_c00412{left:673.050000px;}
.x121_c00412{left:676.200000px;}
.x55_c00412{left:678.150000px;}
.xe_c00412{left:679.800000px;}
.x6f_c00412{left:681.000000px;}
.xab_c00412{left:683.850000px;}
.x100_c00412{left:684.900000px;}
.x25_c00412{left:687.150000px;}
.x92_c00412{left:688.200000px;}
.x111_c00412{left:690.000000px;}
.x1b_c00412{left:691.650000px;}
.xdf_c00412{left:693.150000px;}
.x9c_c00412{left:696.000000px;}
.x118_c00412{left:697.050000px;}
.x56_c00412{left:698.250000px;}
.xd1_c00412{left:700.650000px;}
.x33_c00412{left:701.850000px;}
.x3e_c00412{left:703.200000px;}
.x7e_c00412{left:706.350000px;}
.x4a_c00412{left:707.700000px;}
.x130_c00412{left:709.350000px;}
.xac_c00412{left:711.150000px;}
.x1c_c00412{left:712.200000px;}
.x87_c00412{left:715.800000px;}
.x70_c00412{left:717.300000px;}
.x122_c00412{left:719.100000px;}
.x57_c00412{left:721.650000px;}
.x9d_c00412{left:723.000000px;}
.xf_c00412{left:726.300000px;}
.xee_c00412{left:727.650000px;}
.xfc_c00412{left:730.500000px;}
.x119_c00412{left:732.300000px;}
.xc1_c00412{left:734.250000px;}
.x4b_c00412{left:740.100000px;}
.xbb_c00412{left:746.100000px;}
.x26_c00412{left:748.650000px;}
.xc9_c00412{left:749.850000px;}
.x123_c00412{left:752.550000px;}
.xc2_c00412{left:755.100000px;}
.xb0_c00412{left:756.150000px;}
.x4c_c00412{left:760.200000px;}
.x93_c00412{left:761.250000px;}
.xa6_c00412{left:763.800000px;}
.xe0_c00412{left:765.450000px;}
.x71_c00412{left:768.000000px;}
.x10_c00412{left:769.500000px;}
.xb1_c00412{left:771.300000px;}
.x112_c00412{left:773.400000px;}
.x34_c00412{left:774.600000px;}
.x61_c00412{left:776.550000px;}
.x3f_c00412{left:778.050000px;}
.xd7_c00412{left:780.600000px;}
.xc3_c00412{left:781.800000px;}
.x7f_c00412{left:783.750000px;}
.xa7_c00412{left:785.100000px;}
.x106_c00412{left:789.300000px;}
.x88_c00412{left:792.150000px;}
.x12c_c00412{left:797.100000px;}
.x62_c00412{left:798.150000px;}
.x35_c00412{left:800.100000px;}
.x27_c00412{left:804.150000px;}
.x113_c00412{left:805.500000px;}
.x11_c00412{left:806.550000px;}
.x4d_c00412{left:810.600000px;}
.x89_c00412{left:815.250000px;}
.xe1_c00412{left:816.600000px;}
.xef_c00412{left:818.400000px;}
.x9e_c00412{left:822.750000px;}
.x94_c00412{left:824.700000px;}
.x11a_c00412{left:828.150000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws6_c00412{word-spacing:-8.484848pt;}
.ws7_c00412{word-spacing:-6.666667pt;}
.ws1_c00412{word-spacing:-2.289562pt;}
.ws9_c00412{word-spacing:0.000000pt;}
.ws3_c00412{word-spacing:3.452381pt;}
.ws4_c00412{word-spacing:4.967320pt;}
.ws8_c00412{word-spacing:5.730994pt;}
.ws2_c00412{word-spacing:7.581699pt;}
.ws0_c00412{word-spacing:8.809524pt;}
.ws5_c00412{word-spacing:9.542484pt;}
._0_c00412{width:35.947712pt;}
.fs1_c00412{font-size:42.666667pt;}
.fs0_c00412{font-size:53.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y2d_c00412{bottom:142.133333pt;}
.y2c_c00412{bottom:156.400000pt;}
.y2b_c00412{bottom:169.866667pt;}
.y2a_c00412{bottom:184.266667pt;}
.y29_c00412{bottom:216.400000pt;}
.y28_c00412{bottom:234.000000pt;}
.y27_c00412{bottom:251.866667pt;}
.y26_c00412{bottom:269.066667pt;}
.y25_c00412{bottom:287.333333pt;}
.y24_c00412{bottom:304.933333pt;}
.y23_c00412{bottom:323.200000pt;}
.y22_c00412{bottom:340.400000pt;}
.y21_c00412{bottom:358.666667pt;}
.y20_c00412{bottom:376.933333pt;}
.y1f_c00412{bottom:397.466667pt;}
.y1e_c00412{bottom:411.200000pt;}
.y1d_c00412{bottom:427.866667pt;}
.y1c_c00412{bottom:446.133333pt;}
.y1b_c00412{bottom:464.000000pt;}
.y1a_c00412{bottom:481.600000pt;}
.y19_c00412{bottom:499.066667pt;}
.y18_c00412{bottom:517.333333pt;}
.y17_c00412{bottom:534.666667pt;}
.y16_c00412{bottom:552.533333pt;}
.y15_c00412{bottom:570.133333pt;}
.y14_c00412{bottom:588.000000pt;}
.y13_c00412{bottom:605.866667pt;}
.y12_c00412{bottom:623.733333pt;}
.y11_c00412{bottom:641.600000pt;}
.y10_c00412{bottom:659.333333pt;}
.yf_c00412{bottom:677.200000pt;}
.ye_c00412{bottom:694.800000pt;}
.yd_c00412{bottom:712.666667pt;}
.yc_c00412{bottom:730.533333pt;}
.yb_c00412{bottom:748.133333pt;}
.ya_c00412{bottom:765.733333pt;}
.y9_c00412{bottom:783.600000pt;}
.y8_c00412{bottom:801.200000pt;}
.y7_c00412{bottom:819.466667pt;}
.y6_c00412{bottom:837.066667pt;}
.y5_c00412{bottom:854.666667pt;}
.y4_c00412{bottom:872.266667pt;}
.y3_c00412{bottom:889.866667pt;}
.y2_c00412{bottom:907.466667pt;}
.y1_c00412{bottom:942.133333pt;}
.h3_c00412{height:42.666667pt;}
.h2_c00412{height:53.333333pt;}
.h1_c00412{height:1036.666667pt;}
.h0_c00412{height:1036.800049pt;}
.w0_c00412{width:818.559977pt;}
.w1_c00412{width:818.666667pt;}
.x0_c00412{left:0.000000pt;}
.x12d_c00412{left:145.333333pt;}
.x107_c00412{left:147.066667pt;}
.xf7_c00412{left:148.533333pt;}
.xe2_c00412{left:149.600000pt;}
.x72_c00412{left:151.333333pt;}
.x40_c00412{left:152.400000pt;}
.x3_c00412{left:153.866667pt;}
.x1_c00412{left:154.933333pt;}
.x11b_c00412{left:156.933333pt;}
.xf0_c00412{left:160.800000pt;}
.x127_c00412{left:163.200000pt;}
.xc4_c00412{left:166.400000pt;}
.x58_c00412{left:169.466667pt;}
.x73_c00412{left:172.400000pt;}
.x114_c00412{left:174.400000pt;}
.x4_c00412{left:175.600000pt;}
.xdc_c00412{left:177.600000pt;}
.x95_c00412{left:179.200000pt;}
.x64_c00412{left:180.133333pt;}
.x1d_c00412{left:181.466667pt;}
.x12e_c00412{left:186.266667pt;}
.x11c_c00412{left:188.000000pt;}
.xea_c00412{left:191.733333pt;}
.xf1_c00412{left:192.800000pt;}
.x59_c00412{left:194.400000pt;}
.xb2_c00412{left:195.600000pt;}
.x36_c00412{left:196.533333pt;}
.x80_c00412{left:197.733333pt;}
.xe3_c00412{left:198.933333pt;}
.x96_c00412{left:200.933333pt;}
.xfd_c00412{left:202.933333pt;}
.x63_c00412{left:203.866667pt;}
.x65_c00412{left:206.666667pt;}
.x74_c00412{left:207.600000pt;}
.xca_c00412{left:210.533333pt;}
.x41_c00412{left:211.866667pt;}
.x1e_c00412{left:212.800000pt;}
.xb3_c00412{left:213.866667pt;}
.x28_c00412{left:215.600000pt;}
.x8a_c00412{left:219.066667pt;}
.x81_c00412{left:221.466667pt;}
.xd2_c00412{left:222.800000pt;}
.x37_c00412{left:223.733333pt;}
.x75_c00412{left:225.466667pt;}
.xe4_c00412{left:226.400000pt;}
.x5_c00412{left:228.400000pt;}
.x4e_c00412{left:230.000000pt;}
.x108_c00412{left:231.600000pt;}
.x9f_c00412{left:235.066667pt;}
.xad_c00412{left:236.133333pt;}
.x29_c00412{left:238.266667pt;}
.x42_c00412{left:240.933333pt;}
.x8b_c00412{left:244.000000pt;}
.x128_c00412{left:245.200000pt;}
.xc5_c00412{left:246.666667pt;}
.x4f_c00412{left:248.533333pt;}
.xcb_c00412{left:249.866667pt;}
.x109_c00412{left:250.800000pt;}
.x38_c00412{left:252.800000pt;}
.x6_c00412{left:256.266667pt;}
.xe5_c00412{left:257.466667pt;}
.xb4_c00412{left:258.666667pt;}
.x66_c00412{left:260.133333pt;}
.xf2_c00412{left:261.066667pt;}
.x76_c00412{left:262.533333pt;}
.x12_c00412{left:263.600000pt;}
.xcc_c00412{left:266.133333pt;}
.x115_c00412{left:269.066667pt;}
.x82_c00412{left:271.066667pt;}
.xa0_c00412{left:272.133333pt;}
.xd3_c00412{left:274.000000pt;}
.x7_c00412{left:276.400000pt;}
.x101_c00412{left:280.666667pt;}
.x97_c00412{left:282.000000pt;}
.x1f_c00412{left:283.200000pt;}
.xa1_c00412{left:285.866667pt;}
.x10d_c00412{left:288.666667pt;}
.x2a_c00412{left:290.400000pt;}
.xcd_c00412{left:291.466667pt;}
.x39_c00412{left:293.466667pt;}
.xae_c00412{left:294.400000pt;}
.x11d_c00412{left:295.866667pt;}
.x77_c00412{left:297.333333pt;}
.xf8_c00412{left:300.933333pt;}
.xd8_c00412{left:305.466667pt;}
.x20_c00412{left:309.466667pt;}
.x10a_c00412{left:310.666667pt;}
.x129_c00412{left:312.133333pt;}
.xc6_c00412{left:314.266667pt;}
.x10e_c00412{left:315.600000pt;}
.x50_c00412{left:317.066667pt;}
.x67_c00412{left:318.666667pt;}
.x5a_c00412{left:322.000000pt;}
.x2b_c00412{left:326.266667pt;}
.x78_c00412{left:327.733333pt;}
.x8c_c00412{left:328.800000pt;}
.x13_c00412{left:332.133333pt;}
.xb5_c00412{left:334.133333pt;}
.x68_c00412{left:336.266667pt;}
.x43_c00412{left:337.200000pt;}
.x12a_c00412{left:338.666667pt;}
.x2c_c00412{left:341.333333pt;}
.xeb_c00412{left:342.266667pt;}
.x51_c00412{left:344.000000pt;}
.xf3_c00412{left:345.200000pt;}
.x8d_c00412{left:347.066667pt;}
.x98_c00412{left:348.933333pt;}
.x10f_c00412{left:350.800000pt;}
.x14_c00412{left:352.266667pt;}
.x103_c00412{left:353.600000pt;}
.xb6_c00412{left:356.800000pt;}
.x69_c00412{left:358.933333pt;}
.x124_c00412{left:360.133333pt;}
.x5b_c00412{left:363.600000pt;}
.xdd_c00412{left:368.000000pt;}
.x8e_c00412{left:369.733333pt;}
.xa8_c00412{left:371.066667pt;}
.xbc_c00412{left:373.333333pt;}
.xd9_c00412{left:374.266667pt;}
.x15_c00412{left:375.333333pt;}
.x11e_c00412{left:376.533333pt;}
.xc7_c00412{left:378.266667pt;}
.x21_c00412{left:379.200000pt;}
.x8_c00412{left:380.933333pt;}
.x104_c00412{left:382.666667pt;}
.x44_c00412{left:386.800000pt;}
.x2d_c00412{left:388.000000pt;}
.xf9_c00412{left:389.600000pt;}
.x102_c00412{left:391.333333pt;}
.x99_c00412{left:393.466667pt;}
.xce_c00412{left:394.533333pt;}
.xbd_c00412{left:396.000000pt;}
.x5c_c00412{left:396.933333pt;}
.xa2_c00412{left:399.866667pt;}
.x125_c00412{left:402.400000pt;}
.x2e_c00412{left:403.333333pt;}
.x45_c00412{left:405.733333pt;}
.xe6_c00412{left:406.666667pt;}
.x79_c00412{left:409.066667pt;}
.xec_c00412{left:410.800000pt;}
.x16_c00412{left:412.133333pt;}
.xfe_c00412{left:414.133333pt;}
.xa9_c00412{left:415.200000pt;}
.x83_c00412{left:416.666667pt;}
.x2_c00412{left:418.666667pt;}
.xa3_c00412{left:420.400000pt;}
.x3a_c00412{left:421.866667pt;}
.x52_c00412{left:424.266667pt;}
.xde_c00412{left:425.600000pt;}
.x5d_c00412{left:426.666667pt;}
.x7a_c00412{left:428.000000pt;}
.x9_c00412{left:428.933333pt;}
.x17_c00412{left:431.066667pt;}
.xd4_c00412{left:432.800000pt;}
.xfa_c00412{left:434.400000pt;}
.xcf_c00412{left:435.866667pt;}
.x116_c00412{left:437.600000pt;}
.xb7_c00412{left:440.000000pt;}
.x6a_c00412{left:440.933333pt;}
.x2f_c00412{left:442.400000pt;}
.xa4_c00412{left:443.466667pt;}
.x53_c00412{left:445.066667pt;}
.x7b_c00412{left:450.400000pt;}
.x8f_c00412{left:459.066667pt;}
.xb8_c00412{left:462.400000pt;}
.xbe_c00412{left:463.866667pt;}
.x6b_c00412{left:466.266667pt;}
.x12b_c00412{left:467.866667pt;}
.x18_c00412{left:468.800000pt;}
.x46_c00412{left:471.066667pt;}
.x30_c00412{left:472.133333pt;}
.x5e_c00412{left:474.266667pt;}
.x22_c00412{left:476.800000pt;}
.x12f_c00412{left:477.866667pt;}
.x3b_c00412{left:479.200000pt;}
.xa_c00412{left:482.000000pt;}
.xff_c00412{left:484.533333pt;}
.xb9_c00412{left:487.066667pt;}
.x47_c00412{left:489.600000pt;}
.xd0_c00412{left:491.866667pt;}
.x31_c00412{left:494.533333pt;}
.xe7_c00412{left:496.266667pt;}
.x84_c00412{left:498.000000pt;}
.xf5_c00412{left:499.600000pt;}
.xda_c00412{left:503.200000pt;}
.x7c_c00412{left:504.133333pt;}
.xed_c00412{left:505.200000pt;}
.xb_c00412{left:507.333333pt;}
.xa5_c00412{left:508.666667pt;}
.x9a_c00412{left:511.200000pt;}
.x11f_c00412{left:512.400000pt;}
.x48_c00412{left:513.866667pt;}
.xaf_c00412{left:515.333333pt;}
.xd5_c00412{left:518.000000pt;}
.x3c_c00412{left:519.200000pt;}
.xaa_c00412{left:522.800000pt;}
.x10b_c00412{left:524.266667pt;}
.xbf_c00412{left:525.600000pt;}
.x19_c00412{left:527.733333pt;}
.x105_c00412{left:529.866667pt;}
.x126_c00412{left:532.000000pt;}
.xf6_c00412{left:534.800000pt;}
.x23_c00412{left:536.000000pt;}
.x120_c00412{left:537.333333pt;}
.x6c_c00412{left:538.933333pt;}
.x85_c00412{left:540.533333pt;}
.x7d_c00412{left:542.800000pt;}
.x32_c00412{left:545.733333pt;}
.x6d_c00412{left:548.800000pt;}
.xf4_c00412{left:551.066667pt;}
.xc_c00412{left:552.800000pt;}
.xc8_c00412{left:553.733333pt;}
.x49_c00412{left:556.133333pt;}
.xdb_c00412{left:558.933333pt;}
.x5f_c00412{left:560.400000pt;}
.x90_c00412{left:561.733333pt;}
.xe8_c00412{left:563.866667pt;}
.xc0_c00412{left:566.000000pt;}
.x1a_c00412{left:567.733333pt;}
.x24_c00412{left:569.866667pt;}
.x3d_c00412{left:572.933333pt;}
.x6e_c00412{left:574.666667pt;}
.x54_c00412{left:576.266667pt;}
.x10c_c00412{left:577.733333pt;}
.xd_c00412{left:580.000000pt;}
.x110_c00412{left:581.066667pt;}
.xba_c00412{left:584.400000pt;}
.x60_c00412{left:585.333333pt;}
.x86_c00412{left:586.666667pt;}
.x9b_c00412{left:589.600000pt;}
.xfb_c00412{left:590.800000pt;}
.xe9_c00412{left:592.000000pt;}
.x117_c00412{left:594.000000pt;}
.xd6_c00412{left:597.333333pt;}
.x91_c00412{left:598.266667pt;}
.x121_c00412{left:601.066667pt;}
.x55_c00412{left:602.800000pt;}
.xe_c00412{left:604.266667pt;}
.x6f_c00412{left:605.333333pt;}
.xab_c00412{left:607.866667pt;}
.x100_c00412{left:608.800000pt;}
.x25_c00412{left:610.800000pt;}
.x92_c00412{left:611.733333pt;}
.x111_c00412{left:613.333333pt;}
.x1b_c00412{left:614.800000pt;}
.xdf_c00412{left:616.133333pt;}
.x9c_c00412{left:618.666667pt;}
.x118_c00412{left:619.600000pt;}
.x56_c00412{left:620.666667pt;}
.xd1_c00412{left:622.800000pt;}
.x33_c00412{left:623.866667pt;}
.x3e_c00412{left:625.066667pt;}
.x7e_c00412{left:627.866667pt;}
.x4a_c00412{left:629.066667pt;}
.x130_c00412{left:630.533333pt;}
.xac_c00412{left:632.133333pt;}
.x1c_c00412{left:633.066667pt;}
.x87_c00412{left:636.266667pt;}
.x70_c00412{left:637.600000pt;}
.x122_c00412{left:639.200000pt;}
.x57_c00412{left:641.466667pt;}
.x9d_c00412{left:642.666667pt;}
.xf_c00412{left:645.600000pt;}
.xee_c00412{left:646.800000pt;}
.xfc_c00412{left:649.333333pt;}
.x119_c00412{left:650.933333pt;}
.xc1_c00412{left:652.666667pt;}
.x4b_c00412{left:657.866667pt;}
.xbb_c00412{left:663.200000pt;}
.x26_c00412{left:665.466667pt;}
.xc9_c00412{left:666.533333pt;}
.x123_c00412{left:668.933333pt;}
.xc2_c00412{left:671.200000pt;}
.xb0_c00412{left:672.133333pt;}
.x4c_c00412{left:675.733333pt;}
.x93_c00412{left:676.666667pt;}
.xa6_c00412{left:678.933333pt;}
.xe0_c00412{left:680.400000pt;}
.x71_c00412{left:682.666667pt;}
.x10_c00412{left:684.000000pt;}
.xb1_c00412{left:685.600000pt;}
.x112_c00412{left:687.466667pt;}
.x34_c00412{left:688.533333pt;}
.x61_c00412{left:690.266667pt;}
.x3f_c00412{left:691.600000pt;}
.xd7_c00412{left:693.866667pt;}
.xc3_c00412{left:694.933333pt;}
.x7f_c00412{left:696.666667pt;}
.xa7_c00412{left:697.866667pt;}
.x106_c00412{left:701.600000pt;}
.x88_c00412{left:704.133333pt;}
.x12c_c00412{left:708.533333pt;}
.x62_c00412{left:709.466667pt;}
.x35_c00412{left:711.200000pt;}
.x27_c00412{left:714.800000pt;}
.x113_c00412{left:716.000000pt;}
.x11_c00412{left:716.933333pt;}
.x4d_c00412{left:720.533333pt;}
.x89_c00412{left:724.666667pt;}
.xe1_c00412{left:725.866667pt;}
.xef_c00412{left:727.466667pt;}
.x9e_c00412{left:731.333333pt;}
.x94_c00412{left:733.066667pt;}
.x11a_c00412{left:736.133333pt;}
}





/* 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_c00413 {
    display:none;
  }
  .loading-indicator_c00413.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00413 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_c00413 { 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_c00413" -> "#page-container .classname_c00413")
 */
.pf_c00413 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00413 { /* 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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00413 { /* 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_c00413 { /* 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_c00413 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00413 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00413 {overflow:visible;}
  }
}
.c_c00413 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00413 { /* 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_c00413:after { /* webkit #35443 */
  content: '';
}
.t_c00413:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00413 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 */
}
.__c00413 { /* 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_c00413 { /* info for Javascript */
  display:none;
}
.l_c00413 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00413 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00413 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00413: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_c00413 {
    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_c00413.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00413.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_c00413 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00413{font-family:sans-serif;visibility:hidden;}
.sc__c00413{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00413{-webkit-text-stroke:0px transparent;}
}
.y0_c00413{bottom:0.000000px;}
.h1_c00413{height:1166.250000px;}
.h0_c00413{height:1166.400056px;}
.w0_c00413{width:920.879975px;}
.w1_c00413{width:921.000000px;}
.x0_c00413{left:0.000000px;}
@media print{
.y0_c00413{bottom:0.000000pt;}
.h1_c00413{height:1036.666667pt;}
.h0_c00413{height:1036.800049pt;}
.w0_c00413{width:818.559977pt;}
.w1_c00413{width:818.666667pt;}
.x0_c00413{left:0.000000pt;}
}





/* 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_c00414 {
    display:none;
  }
  .loading-indicator_c00414.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00414 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_c00414 { 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_c00414" -> "#page-container .classname_c00414")
 */
.pf_c00414 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00414 { /* 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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00414 { /* 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_c00414 { /* 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_c00414 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00414 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00414 {overflow:visible;}
  }
}
.c_c00414 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00414 { /* 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_c00414:after { /* webkit #35443 */
  content: '';
}
.t_c00414:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00414 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 */
}
.__c00414 { /* 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_c00414 { /* info for Javascript */
  display:none;
}
.l_c00414 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00414 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00414 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00414: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_c00414 {
    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_c00414.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00414.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_c00414 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00414{font-family:sans-serif;visibility:hidden;}
.sc__c00414{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00414{-webkit-text-stroke:0px transparent;}
}
.y0_c00414{bottom:0.000000px;}
.h1_c00414{height:1166.250000px;}
.h0_c00414{height:1166.400056px;}
.w0_c00414{width:920.879975px;}
.w1_c00414{width:921.000000px;}
.x0_c00414{left:0.000000px;}
@media print{
.y0_c00414{bottom:0.000000pt;}
.h1_c00414{height:1036.666667pt;}
.h0_c00414{height:1036.800049pt;}
.w0_c00414{width:818.559977pt;}
.w1_c00414{width:818.666667pt;}
.x0_c00414{left:0.000000pt;}
}





/* 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_c00415 {
    display:none;
  }
  .loading-indicator_c00415.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00415 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_c00415 { 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_c00415" -> "#page-container .classname_c00415")
 */
.pf_c00415 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00415 { /* 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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00415 { /* 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_c00415 { /* 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_c00415 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00415 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00415 {overflow:visible;}
  }
}
.c_c00415 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00415 { /* 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_c00415:after { /* webkit #35443 */
  content: '';
}
.t_c00415:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00415 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 */
}
.__c00415 { /* 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_c00415 { /* info for Javascript */
  display:none;
}
.l_c00415 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00415 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00415 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00415: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_c00415 {
    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_c00415.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00415.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_c00415 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00415{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00415;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.000000;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;}
.m99_c00415{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m19_c00415{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00415{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mab_c00415{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00415{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.maa_c00415{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00415{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m15_c00415{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00415{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m66_c00415{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10_c00415{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00415{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m83_c00415{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m49_c00415{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00415{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00415{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m32_c00415{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mac_c00415{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00415{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.maf_c00415{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00415{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00415{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00415{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00415{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00415{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00415{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00415{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00415{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00415{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m28_c00415{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mad_c00415{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00415{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m65_c00415{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00415{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00415{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m73_c00415{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m64_c00415{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m87_c00415{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m79_c00415{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m78_c00415{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m71_c00415{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17_c00415{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00415{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m40_c00415{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m90_c00415{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00415{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00415{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m30_c00415{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00415{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.md_c00415{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00415{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m98_c00415{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m84_c00415{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00415{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00415{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m51_c00415{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00415{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00415{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m24_c00415{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m77_c00415{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00415{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m88_c00415{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m54_c00415{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m58_c00415{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00415{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m69_c00415{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00415{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m35_c00415{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00415{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m95_c00415{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m39_c00415{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00415{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00415{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00415{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00415{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m45_c00415{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m53_c00415{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m57_c00415{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m93_c00415{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00415{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00415{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m38_c00415{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);}
.m34_c00415{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m56_c00415{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m67_c00415{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m80_c00415{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m92_c00415{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m72_c00415{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00415{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m82_c00415{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00415{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m16_c00415{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00415{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00415{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00415{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m13_c00415{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00415{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m50_c00415{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m26_c00415{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m48_c00415{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00415{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00415{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00415{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00415{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m76_c00415{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00415{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00415{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m37_c00415{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m46_c00415{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m85_c00415{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7_c00415{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00415{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00415{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m47_c00415{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00415{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00415{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m23_c00415{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m33_c00415{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m96_c00415{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00415{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00415{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m74_c00415{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c00415{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m86_c00415{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00415{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m31_c00415{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m81_c00415{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00415{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00415{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m94_c00415{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m21_c00415{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m43_c00415{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m61_c00415{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m18_c00415{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00415{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m36_c00415{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m60_c00415{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m97_c00415{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m63_c00415{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00415{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m44_c00415{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00415{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m68_c00415{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00415{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m20_c00415{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00415{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m27_c00415{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m52_c00415{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m59_c00415{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m62_c00415{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m8_c00415{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00415{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m42_c00415{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m29_c00415{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m91_c00415{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m70_c00415{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m41_c00415{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m25_c00415{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00415{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00415{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00415{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m75_c00415{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m89_c00415{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00415{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00415{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00415{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00415{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.ls0_c00415{letter-spacing:0.000000px;}
.sc__c00415{text-shadow:none;}
.sc0_c00415{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__c00415{-webkit-text-stroke:0px transparent;}
.sc0_c00415{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd_c00415{word-spacing:-7.250000px;}
.ws1_c00415{word-spacing:-7.095151px;}
.wse_c00415{word-spacing:-6.714443px;}
.ws0_c00415{word-spacing:-5.590361px;}
.ws3_c00415{word-spacing:-4.625000px;}
.ws4_c00415{word-spacing:-1.285291px;}
.wsb_c00415{word-spacing:-0.570401px;}
.wsf_c00415{word-spacing:0.000000px;}
.ws8_c00415{word-spacing:6.111111px;}
.ws9_c00415{word-spacing:6.457831px;}
.wsa_c00415{word-spacing:7.500000px;}
.ws7_c00415{word-spacing:8.828233px;}
.ws5_c00415{word-spacing:10.674699px;}
.wsc_c00415{word-spacing:13.375000px;}
.ws2_c00415{word-spacing:21.164502px;}
.ws6_c00415{word-spacing:23.166667px;}
.fc0_c00415{color:transparent;}
.fs0_c00415{font-size:54.000000px;}
.y0_c00415{bottom:0.000000px;}
.y2d_c00415{bottom:140.700000px;}
.y2c_c00415{bottom:156.600000px;}
.y2b_c00415{bottom:172.500000px;}
.y2a_c00415{bottom:204.300000px;}
.y29_c00415{bottom:224.400000px;}
.y28_c00415{bottom:244.500000px;}
.y27_c00415{bottom:264.300000px;}
.y26_c00415{bottom:284.100000px;}
.y25_c00415{bottom:304.200000px;}
.y24_c00415{bottom:324.150000px;}
.y23_c00415{bottom:343.950000px;}
.y22_c00415{bottom:364.500000px;}
.y21_c00415{bottom:384.300000px;}
.y20_c00415{bottom:404.400000px;}
.y1f_c00415{bottom:424.200000px;}
.y1e_c00415{bottom:444.300000px;}
.y1d_c00415{bottom:464.400000px;}
.y1c_c00415{bottom:484.200000px;}
.y1b_c00415{bottom:504.150000px;}
.y1a_c00415{bottom:523.950000px;}
.y19_c00415{bottom:544.050000px;}
.y18_c00415{bottom:564.150000px;}
.y17_c00415{bottom:584.250000px;}
.y16_c00415{bottom:604.350000px;}
.y15_c00415{bottom:624.450000px;}
.y14_c00415{bottom:644.550000px;}
.y13_c00415{bottom:664.650000px;}
.y12_c00415{bottom:684.750000px;}
.y11_c00415{bottom:704.550000px;}
.y10_c00415{bottom:724.650000px;}
.yf_c00415{bottom:744.450000px;}
.ye_c00415{bottom:764.250000px;}
.yd_c00415{bottom:784.050000px;}
.yc_c00415{bottom:804.150000px;}
.yb_c00415{bottom:824.250000px;}
.ya_c00415{bottom:844.350000px;}
.y9_c00415{bottom:864.450000px;}
.y8_c00415{bottom:884.550000px;}
.y7_c00415{bottom:904.350000px;}
.y6_c00415{bottom:924.150000px;}
.y5_c00415{bottom:944.250000px;}
.y4_c00415{bottom:964.350000px;}
.y3_c00415{bottom:984.150000px;}
.y2_c00415{bottom:1004.700000px;}
.y1_c00415{bottom:1042.500000px;}
.h2_c00415{height:54.000000px;}
.h1_c00415{height:1166.250000px;}
.h0_c00415{height:1166.400056px;}
.w0_c00415{width:920.879975px;}
.w1_c00415{width:921.000000px;}
.x0_c00415{left:0.000000px;}
.x3_c00415{left:96.900000px;}
.x87_c00415{left:97.950000px;}
.x102_c00415{left:99.000000px;}
.x11c_c00415{left:100.050000px;}
.x123_c00415{left:116.700000px;}
.x37_c00415{left:117.750000px;}
.x137_c00415{left:119.100000px;}
.x69_c00415{left:122.100000px;}
.x88_c00415{left:123.900000px;}
.x126_c00415{left:125.700000px;}
.x23_c00415{left:127.950000px;}
.xea_c00415{left:129.300000px;}
.x4a_c00415{left:130.350000px;}
.x138_c00415{left:131.700000px;}
.x14_c00415{left:134.400000px;}
.x42_c00415{left:136.050000px;}
.xba_c00415{left:139.500000px;}
.x92_c00415{left:141.900000px;}
.xdf_c00415{left:144.000000px;}
.xbe_c00415{left:146.250000px;}
.x54_c00415{left:149.400000px;}
.x6a_c00415{left:150.900000px;}
.xa4_c00415{left:155.700000px;}
.x38_c00415{left:157.350000px;}
.xc8_c00415{left:159.600000px;}
.x114_c00415{left:160.950000px;}
.x43_c00415{left:162.000000px;}
.x4b_c00415{left:163.500000px;}
.x61_c00415{left:166.050000px;}
.xf7_c00415{left:167.100000px;}
.x9b_c00415{left:168.300000px;}
.xfd_c00415{left:170.550000px;}
.xd0_c00415{left:171.900000px;}
.x7f_c00415{left:175.200000px;}
.x55_c00415{left:176.400000px;}
.xc9_c00415{left:177.600000px;}
.x4_c00415{left:178.950000px;}
.xeb_c00415{left:181.500000px;}
.x6b_c00415{left:183.300000px;}
.x24_c00415{left:185.550000px;}
.xd7_c00415{left:186.900000px;}
.x75_c00415{left:188.550000px;}
.x39_c00415{left:189.750000px;}
.x12f_c00415{left:191.250000px;}
.xac_c00415{left:194.400000px;}
.x9c_c00415{left:196.050000px;}
.x2d_c00415{left:197.250000px;}
.x89_c00415{left:199.800000px;}
.xef_c00415{left:202.950000px;}
.x13a_c00415{left:204.150000px;}
.x124_c00415{left:206.700000px;}
.x5_c00415{left:207.750000px;}
.xd1_c00415{left:210.000000px;}
.x25_c00415{left:211.050000px;}
.xf8_c00415{left:212.850000px;}
.x4c_c00415{left:214.200000px;}
.xbf_c00415{left:216.450000px;}
.x115_c00415{left:218.250000px;}
.x44_c00415{left:220.350000px;}
.xb4_c00415{left:223.200000px;}
.x62_c00415{left:225.450000px;}
.xe8_c00415{left:226.800000px;}
.xca_c00415{left:228.300000px;}
.xf9_c00415{left:229.800000px;}
.x93_c00415{left:231.600000px;}
.x10c_c00415{left:232.650000px;}
.x4d_c00415{left:236.100000px;}
.x45_c00415{left:237.600000px;}
.xf0_c00415{left:239.250000px;}
.x3a_c00415{left:240.900000px;}
.x56_c00415{left:242.250000px;}
.x11d_c00415{left:243.450000px;}
.xc0_c00415{left:244.500000px;}
.x9d_c00415{left:245.700000px;}
.x15_c00415{left:248.550000px;}
.x103_c00415{left:253.500000px;}
.x76_c00415{left:256.950000px;}
.xa5_c00415{left:258.750000px;}
.x57_c00415{left:260.250000px;}
.x4e_c00415{left:261.300000px;}
.xbb_c00415{left:263.850000px;}
.xfe_c00415{left:266.400000px;}
.x8a_c00415{left:268.200000px;}
.x2e_c00415{left:270.750000px;}
.x16_c00415{left:271.950000px;}
.x104_c00415{left:273.000000px;}
.x6_c00415{left:276.900000px;}
.x58_c00415{left:278.250000px;}
.x63_c00415{left:279.450000px;}
.x3b_c00415{left:280.500000px;}
.x77_c00415{left:282.450000px;}
.x26_c00415{left:283.800000px;}
.xb5_c00415{left:285.450000px;}
.xa6_c00415{left:287.250000px;}
.x10d_c00415{left:290.250000px;}
.xff_c00415{left:296.250000px;}
.x94_c00415{left:297.750000px;}
.x105_c00415{left:299.700000px;}
.x4f_c00415{left:300.900000px;}
.xad_c00415{left:302.850000px;}
.xe0_c00415{left:307.050000px;}
.x2f_c00415{left:309.300000px;}
.x127_c00415{left:310.800000px;}
.x6c_c00415{left:313.200000px;}
.x17_c00415{left:316.200000px;}
.x50_c00415{left:317.850000px;}
.x7_c00415{left:320.100000px;}
.x3c_c00415{left:322.950000px;}
.xe1_c00415{left:325.050000px;}
.xf4_c00415{left:326.700000px;}
.x95_c00415{left:331.650000px;}
.xc1_c00415{left:333.750000px;}
.x100_c00415{left:334.800000px;}
.x80_c00415{left:337.200000px;}
.x113_c00415{left:338.700000px;}
.x6d_c00415{left:339.900000px;}
.x78_c00415{left:342.150000px;}
.x59_c00415{left:344.400000px;}
.xcb_c00415{left:345.600000px;}
.x30_c00415{left:349.950000px;}
.x13c_c00415{left:351.300000px;}
.x96_c00415{left:352.500000px;}
.x3d_c00415{left:354.600000px;}
.x18_c00415{left:356.850000px;}
.xe2_c00415{left:358.950000px;}
.xa7_c00415{left:360.750000px;}
.x46_c00415{left:362.400000px;}
.xc2_c00415{left:365.850000px;}
.x130_c00415{left:367.350000px;}
.x10b_c00415{left:369.000000px;}
.x27_c00415{left:370.500000px;}
.x8b_c00415{left:371.550000px;}
.x64_c00415{left:373.500000px;}
.x19_c00415{left:374.850000px;}
.xcd_c00415{left:377.100000px;}
.x31_c00415{left:379.800000px;}
.xd8_c00415{left:381.150000px;}
.x8_c00415{left:382.350000px;}
.xe9_c00415{left:384.900000px;}
.xe3_c00415{left:388.800000px;}
.x1_c00415{left:391.650000px;}
.x65_c00415{left:394.800000px;}
.xbc_c00415{left:396.300000px;}
.x28_c00415{left:398.550000px;}
.x10e_c00415{left:399.600000px;}
.x6e_c00415{left:400.800000px;}
.x9_c00415{left:402.900000px;}
.x11e_c00415{left:405.000000px;}
.x79_c00415{left:407.250000px;}
.x47_c00415{left:408.900000px;}
.x1a_c00415{left:410.850000px;}
.x106_c00415{left:412.050000px;}
.xbd_c00415{left:414.000000px;}
.xd2_c00415{left:416.400000px;}
.x8c_c00415{left:418.050000px;}
.xc3_c00415{left:419.850000px;}
.x66_c00415{left:421.800000px;}
.x5a_c00415{left:423.600000px;}
.x81_c00415{left:427.650000px;}
.x3e_c00415{left:429.900000px;}
.xf5_c00415{left:431.550000px;}
.x101_c00415{left:432.750000px;}
.x116_c00415{left:433.950000px;}
.x8d_c00415{left:435.300000px;}
.x1b_c00415{left:438.150000px;}
.x139_c00415{left:443.100000px;}
.xa_c00415{left:444.600000px;}
.x128_c00415{left:445.950000px;}
.x82_c00415{left:448.200000px;}
.x11f_c00415{left:450.000000px;}
.x117_c00415{left:451.950000px;}
.x32_c00415{left:453.300000px;}
.x12c_c00415{left:454.800000px;}
.xfa_c00415{left:456.750000px;}
.x5b_c00415{left:457.800000px;}
.x131_c00415{left:459.900000px;}
.xa8_c00415{left:462.300000px;}
.xc4_c00415{left:464.100000px;}
.x107_c00415{left:466.350000px;}
.xb_c00415{left:467.700000px;}
.xe4_c00415{left:470.850000px;}
.x29_c00415{left:472.050000px;}
.x132_c00415{left:474.300000px;}
.x6f_c00415{left:476.100000px;}
.x33_c00415{left:480.300000px;}
.xce_c00415{left:482.550000px;}
.xd9_c00415{left:483.750000px;}
.x108_c00415{left:486.900000px;}
.x1c_c00415{left:489.300000px;}
.x97_c00415{left:491.700000px;}
.xc_c00415{left:493.650000px;}
.xc5_c00415{left:494.700000px;}
.xf1_c00415{left:497.400000px;}
.x9e_c00415{left:498.450000px;}
.x2a_c00415{left:500.850000px;}
.x67_c00415{left:502.800000px;}
.xae_c00415{left:506.250000px;}
.x1d_c00415{left:507.300000px;}
.x8e_c00415{left:508.350000px;}
.xb6_c00415{left:513.150000px;}
.x5c_c00415{left:516.150000px;}
.xcc_c00415{left:520.650000px;}
.x34_c00415{left:521.700000px;}
.x51_c00415{left:524.850000px;}
.x2b_c00415{left:526.350000px;}
.x13b_c00415{left:528.150000px;}
.x7a_c00415{left:531.150000px;}
.x118_c00415{left:532.950000px;}
.x5d_c00415{left:534.150000px;}
.xfb_c00415{left:535.500000px;}
.xaf_c00415{left:537.150000px;}
.xa9_c00415{left:539.400000px;}
.xd_c00415{left:542.250000px;}
.x8f_c00415{left:544.050000px;}
.x9f_c00415{left:545.250000px;}
.x109_c00415{left:547.800000px;}
.xd3_c00415{left:549.600000px;}
.x98_c00415{left:550.650000px;}
.x119_c00415{left:551.700000px;}
.x83_c00415{left:553.650000px;}
.x12d_c00415{left:554.850000px;}
.xe_c00415{left:559.500000px;}
.x10f_c00415{left:562.950000px;}
.x70_c00415{left:565.350000px;}
.x1e_c00415{left:566.400000px;}
.xda_c00415{left:567.600000px;}
.x52_c00415{left:569.100000px;}
.xe5_c00415{left:571.050000px;}
.x120_c00415{left:572.700000px;}
.x71_c00415{left:575.850000px;}
.x133_c00415{left:577.500000px;}
.x1f_c00415{left:579.000000px;}
.x5e_c00415{left:580.950000px;}
.x110_c00415{left:582.450000px;}
.x84_c00415{left:583.950000px;}
.x99_c00415{left:585.900000px;}
.xb0_c00415{left:588.300000px;}
.xec_c00415{left:590.400000px;}
.x20_c00415{left:595.200000px;}
.x2c_c00415{left:597.600000px;}
.x11a_c00415{left:605.700000px;}
.xd4_c00415{left:607.800000px;}
.x7b_c00415{left:610.650000px;}
.x134_c00415{left:614.550000px;}
.x129_c00415{left:617.250000px;}
.xc6_c00415{left:619.650000px;}
.x11b_c00415{left:620.850000px;}
.x72_c00415{left:622.350000px;}
.xe6_c00415{left:624.300000px;}
.x3f_c00415{left:628.200000px;}
.xb7_c00415{left:630.150000px;}
.x7c_c00415{left:631.500000px;}
.x35_c00415{left:632.550000px;}
.x48_c00415{left:635.850000px;}
.x12a_c00415{left:638.100000px;}
.xf_c00415{left:639.450000px;}
.xdb_c00415{left:641.400000px;}
.x135_c00415{left:642.600000px;}
.x68_c00415{left:645.000000px;}
.xa0_c00415{left:646.050000px;}
.xf6_c00415{left:648.750000px;}
.x121_c00415{left:649.800000px;}
.x85_c00415{left:651.600000px;}
.x111_c00415{left:654.750000px;}
.xaa_c00415{left:655.950000px;}
.x10_c00415{left:657.150000px;}
.xdc_c00415{left:658.350000px;}
.x12e_c00415{left:660.000000px;}
.xb1_c00415{left:661.050000px;}
.xb8_c00415{left:663.300000px;}
.xe7_c00415{left:664.950000px;}
.x12b_c00415{left:667.200000px;}
.x21_c00415{left:668.700000px;}
.x7d_c00415{left:670.800000px;}
.xed_c00415{left:672.450000px;}
.xa1_c00415{left:674.850000px;}
.xdd_c00415{left:676.650000px;}
.x53_c00415{left:678.600000px;}
.xd5_c00415{left:680.550000px;}
.x90_c00415{left:684.150000px;}
.x40_c00415{left:686.850000px;}
.x136_c00415{left:688.650000px;}
.x10a_c00415{left:691.050000px;}
.x22_c00415{left:694.200000px;}
.x36_c00415{left:695.550000px;}
.xf2_c00415{left:697.500000px;}
.xb2_c00415{left:699.900000px;}
.xd6_c00415{left:701.400000px;}
.xde_c00415{left:702.600000px;}
.x11_c00415{left:703.950000px;}
.xa2_c00415{left:706.200000px;}
.x122_c00415{left:707.400000px;}
.xab_c00415{left:708.900000px;}
.x41_c00415{left:710.250000px;}
.x5f_c00415{left:711.300000px;}
.x125_c00415{left:713.550000px;}
.xee_c00415{left:716.400000px;}
.x73_c00415{left:722.400000px;}
.x7e_c00415{left:724.500000px;}
.xfc_c00415{left:727.800000px;}
.xcf_c00415{left:729.900000px;}
.xa3_c00415{left:731.700000px;}
.x9a_c00415{left:734.550000px;}
.xf3_c00415{left:736.800000px;}
.x2_c00415{left:738.000000px;}
.x60_c00415{left:739.800000px;}
.x112_c00415{left:740.850000px;}
.x12_c00415{left:742.050000px;}
.xb3_c00415{left:743.400000px;}
.xb9_c00415{left:745.050000px;}
.x86_c00415{left:746.250000px;}
.xc7_c00415{left:747.450000px;}
.x74_c00415{left:750.900000px;}
.x91_c00415{left:753.600000px;}
.x49_c00415{left:755.400000px;}
.x13_c00415{left:757.950000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.ls0_c00415{letter-spacing:0.000000pt;}
.wsd_c00415{word-spacing:-6.444444pt;}
.ws1_c00415{word-spacing:-6.306801pt;}
.wse_c00415{word-spacing:-5.968394pt;}
.ws0_c00415{word-spacing:-4.969210pt;}
.ws3_c00415{word-spacing:-4.111111pt;}
.ws4_c00415{word-spacing:-1.142481pt;}
.wsb_c00415{word-spacing:-0.507023pt;}
.wsf_c00415{word-spacing:0.000000pt;}
.ws8_c00415{word-spacing:5.432099pt;}
.ws9_c00415{word-spacing:5.740295pt;}
.wsa_c00415{word-spacing:6.666667pt;}
.ws7_c00415{word-spacing:7.847318pt;}
.ws5_c00415{word-spacing:9.488621pt;}
.wsc_c00415{word-spacing:11.888889pt;}
.ws2_c00415{word-spacing:18.812891pt;}
.ws6_c00415{word-spacing:20.592593pt;}
.fs0_c00415{font-size:48.000000pt;}
.y0_c00415{bottom:0.000000pt;}
.y2d_c00415{bottom:125.066667pt;}
.y2c_c00415{bottom:139.200000pt;}
.y2b_c00415{bottom:153.333333pt;}
.y2a_c00415{bottom:181.600000pt;}
.y29_c00415{bottom:199.466667pt;}
.y28_c00415{bottom:217.333333pt;}
.y27_c00415{bottom:234.933333pt;}
.y26_c00415{bottom:252.533333pt;}
.y25_c00415{bottom:270.400000pt;}
.y24_c00415{bottom:288.133333pt;}
.y23_c00415{bottom:305.733333pt;}
.y22_c00415{bottom:324.000000pt;}
.y21_c00415{bottom:341.600000pt;}
.y20_c00415{bottom:359.466667pt;}
.y1f_c00415{bottom:377.066667pt;}
.y1e_c00415{bottom:394.933333pt;}
.y1d_c00415{bottom:412.800000pt;}
.y1c_c00415{bottom:430.400000pt;}
.y1b_c00415{bottom:448.133333pt;}
.y1a_c00415{bottom:465.733333pt;}
.y19_c00415{bottom:483.600000pt;}
.y18_c00415{bottom:501.466667pt;}
.y17_c00415{bottom:519.333333pt;}
.y16_c00415{bottom:537.200000pt;}
.y15_c00415{bottom:555.066667pt;}
.y14_c00415{bottom:572.933333pt;}
.y13_c00415{bottom:590.800000pt;}
.y12_c00415{bottom:608.666667pt;}
.y11_c00415{bottom:626.266667pt;}
.y10_c00415{bottom:644.133333pt;}
.yf_c00415{bottom:661.733333pt;}
.ye_c00415{bottom:679.333333pt;}
.yd_c00415{bottom:696.933333pt;}
.yc_c00415{bottom:714.800000pt;}
.yb_c00415{bottom:732.666667pt;}
.ya_c00415{bottom:750.533333pt;}
.y9_c00415{bottom:768.400000pt;}
.y8_c00415{bottom:786.266667pt;}
.y7_c00415{bottom:803.866667pt;}
.y6_c00415{bottom:821.466667pt;}
.y5_c00415{bottom:839.333333pt;}
.y4_c00415{bottom:857.200000pt;}
.y3_c00415{bottom:874.800000pt;}
.y2_c00415{bottom:893.066667pt;}
.y1_c00415{bottom:926.666667pt;}
.h2_c00415{height:48.000000pt;}
.h1_c00415{height:1036.666667pt;}
.h0_c00415{height:1036.800049pt;}
.w0_c00415{width:818.559977pt;}
.w1_c00415{width:818.666667pt;}
.x0_c00415{left:0.000000pt;}
.x3_c00415{left:86.133333pt;}
.x87_c00415{left:87.066667pt;}
.x102_c00415{left:88.000000pt;}
.x11c_c00415{left:88.933333pt;}
.x123_c00415{left:103.733333pt;}
.x37_c00415{left:104.666667pt;}
.x137_c00415{left:105.866667pt;}
.x69_c00415{left:108.533333pt;}
.x88_c00415{left:110.133333pt;}
.x126_c00415{left:111.733333pt;}
.x23_c00415{left:113.733333pt;}
.xea_c00415{left:114.933333pt;}
.x4a_c00415{left:115.866667pt;}
.x138_c00415{left:117.066667pt;}
.x14_c00415{left:119.466667pt;}
.x42_c00415{left:120.933333pt;}
.xba_c00415{left:124.000000pt;}
.x92_c00415{left:126.133333pt;}
.xdf_c00415{left:128.000000pt;}
.xbe_c00415{left:130.000000pt;}
.x54_c00415{left:132.800000pt;}
.x6a_c00415{left:134.133333pt;}
.xa4_c00415{left:138.400000pt;}
.x38_c00415{left:139.866667pt;}
.xc8_c00415{left:141.866667pt;}
.x114_c00415{left:143.066667pt;}
.x43_c00415{left:144.000000pt;}
.x4b_c00415{left:145.333333pt;}
.x61_c00415{left:147.600000pt;}
.xf7_c00415{left:148.533333pt;}
.x9b_c00415{left:149.600000pt;}
.xfd_c00415{left:151.600000pt;}
.xd0_c00415{left:152.800000pt;}
.x7f_c00415{left:155.733333pt;}
.x55_c00415{left:156.800000pt;}
.xc9_c00415{left:157.866667pt;}
.x4_c00415{left:159.066667pt;}
.xeb_c00415{left:161.333333pt;}
.x6b_c00415{left:162.933333pt;}
.x24_c00415{left:164.933333pt;}
.xd7_c00415{left:166.133333pt;}
.x75_c00415{left:167.600000pt;}
.x39_c00415{left:168.666667pt;}
.x12f_c00415{left:170.000000pt;}
.xac_c00415{left:172.800000pt;}
.x9c_c00415{left:174.266667pt;}
.x2d_c00415{left:175.333333pt;}
.x89_c00415{left:177.600000pt;}
.xef_c00415{left:180.400000pt;}
.x13a_c00415{left:181.466667pt;}
.x124_c00415{left:183.733333pt;}
.x5_c00415{left:184.666667pt;}
.xd1_c00415{left:186.666667pt;}
.x25_c00415{left:187.600000pt;}
.xf8_c00415{left:189.200000pt;}
.x4c_c00415{left:190.400000pt;}
.xbf_c00415{left:192.400000pt;}
.x115_c00415{left:194.000000pt;}
.x44_c00415{left:195.866667pt;}
.xb4_c00415{left:198.400000pt;}
.x62_c00415{left:200.400000pt;}
.xe8_c00415{left:201.600000pt;}
.xca_c00415{left:202.933333pt;}
.xf9_c00415{left:204.266667pt;}
.x93_c00415{left:205.866667pt;}
.x10c_c00415{left:206.800000pt;}
.x4d_c00415{left:209.866667pt;}
.x45_c00415{left:211.200000pt;}
.xf0_c00415{left:212.666667pt;}
.x3a_c00415{left:214.133333pt;}
.x56_c00415{left:215.333333pt;}
.x11d_c00415{left:216.400000pt;}
.xc0_c00415{left:217.333333pt;}
.x9d_c00415{left:218.400000pt;}
.x15_c00415{left:220.933333pt;}
.x103_c00415{left:225.333333pt;}
.x76_c00415{left:228.400000pt;}
.xa5_c00415{left:230.000000pt;}
.x57_c00415{left:231.333333pt;}
.x4e_c00415{left:232.266667pt;}
.xbb_c00415{left:234.533333pt;}
.xfe_c00415{left:236.800000pt;}
.x8a_c00415{left:238.400000pt;}
.x2e_c00415{left:240.666667pt;}
.x16_c00415{left:241.733333pt;}
.x104_c00415{left:242.666667pt;}
.x6_c00415{left:246.133333pt;}
.x58_c00415{left:247.333333pt;}
.x63_c00415{left:248.400000pt;}
.x3b_c00415{left:249.333333pt;}
.x77_c00415{left:251.066667pt;}
.x26_c00415{left:252.266667pt;}
.xb5_c00415{left:253.733333pt;}
.xa6_c00415{left:255.333333pt;}
.x10d_c00415{left:258.000000pt;}
.xff_c00415{left:263.333333pt;}
.x94_c00415{left:264.666667pt;}
.x105_c00415{left:266.400000pt;}
.x4f_c00415{left:267.466667pt;}
.xad_c00415{left:269.200000pt;}
.xe0_c00415{left:272.933333pt;}
.x2f_c00415{left:274.933333pt;}
.x127_c00415{left:276.266667pt;}
.x6c_c00415{left:278.400000pt;}
.x17_c00415{left:281.066667pt;}
.x50_c00415{left:282.533333pt;}
.x7_c00415{left:284.533333pt;}
.x3c_c00415{left:287.066667pt;}
.xe1_c00415{left:288.933333pt;}
.xf4_c00415{left:290.400000pt;}
.x95_c00415{left:294.800000pt;}
.xc1_c00415{left:296.666667pt;}
.x100_c00415{left:297.600000pt;}
.x80_c00415{left:299.733333pt;}
.x113_c00415{left:301.066667pt;}
.x6d_c00415{left:302.133333pt;}
.x78_c00415{left:304.133333pt;}
.x59_c00415{left:306.133333pt;}
.xcb_c00415{left:307.200000pt;}
.x30_c00415{left:311.066667pt;}
.x13c_c00415{left:312.266667pt;}
.x96_c00415{left:313.333333pt;}
.x3d_c00415{left:315.200000pt;}
.x18_c00415{left:317.200000pt;}
.xe2_c00415{left:319.066667pt;}
.xa7_c00415{left:320.666667pt;}
.x46_c00415{left:322.133333pt;}
.xc2_c00415{left:325.200000pt;}
.x130_c00415{left:326.533333pt;}
.x10b_c00415{left:328.000000pt;}
.x27_c00415{left:329.333333pt;}
.x8b_c00415{left:330.266667pt;}
.x64_c00415{left:332.000000pt;}
.x19_c00415{left:333.200000pt;}
.xcd_c00415{left:335.200000pt;}
.x31_c00415{left:337.600000pt;}
.xd8_c00415{left:338.800000pt;}
.x8_c00415{left:339.866667pt;}
.xe9_c00415{left:342.133333pt;}
.xe3_c00415{left:345.600000pt;}
.x1_c00415{left:348.133333pt;}
.x65_c00415{left:350.933333pt;}
.xbc_c00415{left:352.266667pt;}
.x28_c00415{left:354.266667pt;}
.x10e_c00415{left:355.200000pt;}
.x6e_c00415{left:356.266667pt;}
.x9_c00415{left:358.133333pt;}
.x11e_c00415{left:360.000000pt;}
.x79_c00415{left:362.000000pt;}
.x47_c00415{left:363.466667pt;}
.x1a_c00415{left:365.200000pt;}
.x106_c00415{left:366.266667pt;}
.xbd_c00415{left:368.000000pt;}
.xd2_c00415{left:370.133333pt;}
.x8c_c00415{left:371.600000pt;}
.xc3_c00415{left:373.200000pt;}
.x66_c00415{left:374.933333pt;}
.x5a_c00415{left:376.533333pt;}
.x81_c00415{left:380.133333pt;}
.x3e_c00415{left:382.133333pt;}
.xf5_c00415{left:383.600000pt;}
.x101_c00415{left:384.666667pt;}
.x116_c00415{left:385.733333pt;}
.x8d_c00415{left:386.933333pt;}
.x1b_c00415{left:389.466667pt;}
.x139_c00415{left:393.866667pt;}
.xa_c00415{left:395.200000pt;}
.x128_c00415{left:396.400000pt;}
.x82_c00415{left:398.400000pt;}
.x11f_c00415{left:400.000000pt;}
.x117_c00415{left:401.733333pt;}
.x32_c00415{left:402.933333pt;}
.x12c_c00415{left:404.266667pt;}
.xfa_c00415{left:406.000000pt;}
.x5b_c00415{left:406.933333pt;}
.x131_c00415{left:408.800000pt;}
.xa8_c00415{left:410.933333pt;}
.xc4_c00415{left:412.533333pt;}
.x107_c00415{left:414.533333pt;}
.xb_c00415{left:415.733333pt;}
.xe4_c00415{left:418.533333pt;}
.x29_c00415{left:419.600000pt;}
.x132_c00415{left:421.600000pt;}
.x6f_c00415{left:423.200000pt;}
.x33_c00415{left:426.933333pt;}
.xce_c00415{left:428.933333pt;}
.xd9_c00415{left:430.000000pt;}
.x108_c00415{left:432.800000pt;}
.x1c_c00415{left:434.933333pt;}
.x97_c00415{left:437.066667pt;}
.xc_c00415{left:438.800000pt;}
.xc5_c00415{left:439.733333pt;}
.xf1_c00415{left:442.133333pt;}
.x9e_c00415{left:443.066667pt;}
.x2a_c00415{left:445.200000pt;}
.x67_c00415{left:446.933333pt;}
.xae_c00415{left:450.000000pt;}
.x1d_c00415{left:450.933333pt;}
.x8e_c00415{left:451.866667pt;}
.xb6_c00415{left:456.133333pt;}
.x5c_c00415{left:458.800000pt;}
.xcc_c00415{left:462.800000pt;}
.x34_c00415{left:463.733333pt;}
.x51_c00415{left:466.533333pt;}
.x2b_c00415{left:467.866667pt;}
.x13b_c00415{left:469.466667pt;}
.x7a_c00415{left:472.133333pt;}
.x118_c00415{left:473.733333pt;}
.x5d_c00415{left:474.800000pt;}
.xfb_c00415{left:476.000000pt;}
.xaf_c00415{left:477.466667pt;}
.xa9_c00415{left:479.466667pt;}
.xd_c00415{left:482.000000pt;}
.x8f_c00415{left:483.600000pt;}
.x9f_c00415{left:484.666667pt;}
.x109_c00415{left:486.933333pt;}
.xd3_c00415{left:488.533333pt;}
.x98_c00415{left:489.466667pt;}
.x119_c00415{left:490.400000pt;}
.x83_c00415{left:492.133333pt;}
.x12d_c00415{left:493.200000pt;}
.xe_c00415{left:497.333333pt;}
.x10f_c00415{left:500.400000pt;}
.x70_c00415{left:502.533333pt;}
.x1e_c00415{left:503.466667pt;}
.xda_c00415{left:504.533333pt;}
.x52_c00415{left:505.866667pt;}
.xe5_c00415{left:507.600000pt;}
.x120_c00415{left:509.066667pt;}
.x71_c00415{left:511.866667pt;}
.x133_c00415{left:513.333333pt;}
.x1f_c00415{left:514.666667pt;}
.x5e_c00415{left:516.400000pt;}
.x110_c00415{left:517.733333pt;}
.x84_c00415{left:519.066667pt;}
.x99_c00415{left:520.800000pt;}
.xb0_c00415{left:522.933333pt;}
.xec_c00415{left:524.800000pt;}
.x20_c00415{left:529.066667pt;}
.x2c_c00415{left:531.200000pt;}
.x11a_c00415{left:538.400000pt;}
.xd4_c00415{left:540.266667pt;}
.x7b_c00415{left:542.800000pt;}
.x134_c00415{left:546.266667pt;}
.x129_c00415{left:548.666667pt;}
.xc6_c00415{left:550.800000pt;}
.x11b_c00415{left:551.866667pt;}
.x72_c00415{left:553.200000pt;}
.xe6_c00415{left:554.933333pt;}
.x3f_c00415{left:558.400000pt;}
.xb7_c00415{left:560.133333pt;}
.x7c_c00415{left:561.333333pt;}
.x35_c00415{left:562.266667pt;}
.x48_c00415{left:565.200000pt;}
.x12a_c00415{left:567.200000pt;}
.xf_c00415{left:568.400000pt;}
.xdb_c00415{left:570.133333pt;}
.x135_c00415{left:571.200000pt;}
.x68_c00415{left:573.333333pt;}
.xa0_c00415{left:574.266667pt;}
.xf6_c00415{left:576.666667pt;}
.x121_c00415{left:577.600000pt;}
.x85_c00415{left:579.200000pt;}
.x111_c00415{left:582.000000pt;}
.xaa_c00415{left:583.066667pt;}
.x10_c00415{left:584.133333pt;}
.xdc_c00415{left:585.200000pt;}
.x12e_c00415{left:586.666667pt;}
.xb1_c00415{left:587.600000pt;}
.xb8_c00415{left:589.600000pt;}
.xe7_c00415{left:591.066667pt;}
.x12b_c00415{left:593.066667pt;}
.x21_c00415{left:594.400000pt;}
.x7d_c00415{left:596.266667pt;}
.xed_c00415{left:597.733333pt;}
.xa1_c00415{left:599.866667pt;}
.xdd_c00415{left:601.466667pt;}
.x53_c00415{left:603.200000pt;}
.xd5_c00415{left:604.933333pt;}
.x90_c00415{left:608.133333pt;}
.x40_c00415{left:610.533333pt;}
.x136_c00415{left:612.133333pt;}
.x10a_c00415{left:614.266667pt;}
.x22_c00415{left:617.066667pt;}
.x36_c00415{left:618.266667pt;}
.xf2_c00415{left:620.000000pt;}
.xb2_c00415{left:622.133333pt;}
.xd6_c00415{left:623.466667pt;}
.xde_c00415{left:624.533333pt;}
.x11_c00415{left:625.733333pt;}
.xa2_c00415{left:627.733333pt;}
.x122_c00415{left:628.800000pt;}
.xab_c00415{left:630.133333pt;}
.x41_c00415{left:631.333333pt;}
.x5f_c00415{left:632.266667pt;}
.x125_c00415{left:634.266667pt;}
.xee_c00415{left:636.800000pt;}
.x73_c00415{left:642.133333pt;}
.x7e_c00415{left:644.000000pt;}
.xfc_c00415{left:646.933333pt;}
.xcf_c00415{left:648.800000pt;}
.xa3_c00415{left:650.400000pt;}
.x9a_c00415{left:652.933333pt;}
.xf3_c00415{left:654.933333pt;}
.x2_c00415{left:656.000000pt;}
.x60_c00415{left:657.600000pt;}
.x112_c00415{left:658.533333pt;}
.x12_c00415{left:659.600000pt;}
.xb3_c00415{left:660.800000pt;}
.xb9_c00415{left:662.266667pt;}
.x86_c00415{left:663.333333pt;}
.xc7_c00415{left:664.400000pt;}
.x74_c00415{left:667.466667pt;}
.x91_c00415{left:669.866667pt;}
.x49_c00415{left:671.466667pt;}
.x13_c00415{left:673.733333pt;}
}





/* 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_c00416 {
    display:none;
  }
  .loading-indicator_c00416.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00416 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_c00416 { 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_c00416" -> "#page-container .classname_c00416")
 */
.pf_c00416 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00416 { /* 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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00416 { /* 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_c00416 { /* 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_c00416 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00416 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00416 {overflow:visible;}
  }
}
.c_c00416 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00416 { /* 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_c00416:after { /* webkit #35443 */
  content: '';
}
.t_c00416:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00416 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 */
}
.__c00416 { /* 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_c00416 { /* info for Javascript */
  display:none;
}
.l_c00416 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00416 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00416 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00416: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_c00416 {
    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_c00416.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00416.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_c00416 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00416{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00416;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.000000;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;}
.m9e_c00416{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00416{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00416{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00416{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m41_c00416{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00416{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00416{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00416{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m43_c00416{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mba_c00416{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00416{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m13_c00416{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m90_c00416{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m67_c00416{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00416{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00416{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00416{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.maf_c00416{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m42_c00416{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m66_c00416{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m4_c00416{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m26_c00416{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00416{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00416{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m22_c00416{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00416{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m47_c00416{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.maa_c00416{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m18_c00416{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00416{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.mac_c00416{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00416{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00416{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.mad_c00416{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00416{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m71_c00416{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m12_c00416{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m60_c00416{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00416{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m89_c00416{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m77_c00416{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00416{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00416{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00416{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mf_c00416{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m95_c00416{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00416{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m28_c00416{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m63_c00416{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m55_c00416{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m99_c00416{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m23_c00416{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m52_c00416{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m48_c00416{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00416{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00416{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00416{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mae_c00416{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00416{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mc_c00416{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m86_c00416{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mb_c00416{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m74_c00416{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m88_c00416{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00416{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m54_c00416{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m24_c00416{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m68_c00416{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00416{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m62_c00416{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m69_c00416{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00416{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00416{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m49_c00416{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m64_c00416{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00416{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00416{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m73_c00416{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00416{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m98_c00416{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m15_c00416{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00416{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m11_c00416{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m94_c00416{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00416{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00416{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00416{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00416{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m10_c00416{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00416{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m70_c00416{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00416{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m36_c00416{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m27_c00416{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m81_c00416{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00416{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00416{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00416{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m92_c00416{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00416{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m40_c00416{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7_c00416{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m51_c00416{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00416{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m91_c00416{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m38_c00416{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.me_c00416{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00416{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m33_c00416{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00416{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mab_c00416{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00416{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00416{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m72_c00416{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00416{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00416{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m25_c00416{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00416{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m21_c00416{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m50_c00416{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m61_c00416{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00416{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00416{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m56_c00416{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00416{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m37_c00416{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00416{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00416{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m76_c00416{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00416{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m82_c00416{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00416{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00416{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6_c00416{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m30_c00416{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00416{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00416{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m83_c00416{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00416{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00416{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00416{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00416{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m79_c00416{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00416{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m65_c00416{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00416{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m31_c00416{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m57_c00416{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma_c00416{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m29_c00416{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m58_c00416{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m14_c00416{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00416{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00416{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m44_c00416{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00416{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00416{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00416{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m5_c00416{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m78_c00416{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00416{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m32_c00416{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m39_c00416{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00416{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m35_c00416{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00416{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m97_c00416{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00416{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00416{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00416{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m17_c00416{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md_c00416{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00416{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m20_c00416{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m2_c00416{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m53_c00416{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00416{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00416{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m46_c00416{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m85_c00416{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m34_c00416{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m75_c00416{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00416{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00416{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m80_c00416{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m87_c00416{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00416{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00416{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m96_c00416{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m93_c00416{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00416{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m59_c00416{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00416{vertical-align:0.000000px;}
.ls0_c00416{letter-spacing:0.000000px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{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__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00416{word-spacing:-10.138889px;}
.ws6_c00416{word-spacing:-6.184211px;}
.ws2_c00416{word-spacing:-4.285714px;}
.ws4_c00416{word-spacing:-3.333333px;}
.ws3_c00416{word-spacing:-1.666667px;}
.wsc_c00416{word-spacing:0.000000px;}
.ws0_c00416{word-spacing:0.576923px;}
.wsb_c00416{word-spacing:1.666667px;}
.ws9_c00416{word-spacing:5.138889px;}
.ws5_c00416{word-spacing:8.194444px;}
.ws1_c00416{word-spacing:8.333333px;}
.ws8_c00416{word-spacing:8.888889px;}
.wsa_c00416{word-spacing:15.277778px;}
._0_c00416{width:39.722222px;}
.fc0_c00416{color:transparent;}
.fs0_c00416{font-size:60.000000px;}
.y0_c00416{bottom:0.000000px;}
.y2e_c00416{bottom:120.900000px;}
.y2d_c00416{bottom:136.800000px;}
.y2c_c00416{bottom:153.750000px;}
.y2b_c00416{bottom:184.950000px;}
.y2a_c00416{bottom:205.800000px;}
.y29_c00416{bottom:225.900000px;}
.y28_c00416{bottom:245.400000px;}
.y27_c00416{bottom:265.500000px;}
.y26_c00416{bottom:285.300000px;}
.y25_c00416{bottom:305.100000px;}
.y24_c00416{bottom:324.900000px;}
.y23_c00416{bottom:345.000000px;}
.y22_c00416{bottom:364.800000px;}
.y21_c00416{bottom:384.900000px;}
.y20_c00416{bottom:404.700000px;}
.y1f_c00416{bottom:424.500000px;}
.y1e_c00416{bottom:444.300000px;}
.y1d_c00416{bottom:464.100000px;}
.y1c_c00416{bottom:484.200000px;}
.y1b_c00416{bottom:504.000000px;}
.y1a_c00416{bottom:524.550000px;}
.y19_c00416{bottom:544.650000px;}
.y18_c00416{bottom:564.150000px;}
.y17_c00416{bottom:584.100000px;}
.y16_c00416{bottom:604.200000px;}
.y15_c00416{bottom:624.000000px;}
.y14_c00416{bottom:644.100000px;}
.y13_c00416{bottom:663.900000px;}
.y12_c00416{bottom:684.000000px;}
.y11_c00416{bottom:703.800000px;}
.y10_c00416{bottom:724.200000px;}
.yf_c00416{bottom:744.300000px;}
.ye_c00416{bottom:764.100000px;}
.yd_c00416{bottom:783.900000px;}
.yc_c00416{bottom:804.000000px;}
.yb_c00416{bottom:824.100000px;}
.ya_c00416{bottom:843.900000px;}
.y9_c00416{bottom:864.000000px;}
.y8_c00416{bottom:883.800000px;}
.y7_c00416{bottom:903.450000px;}
.y6_c00416{bottom:923.550000px;}
.y5_c00416{bottom:943.650000px;}
.y4_c00416{bottom:963.750000px;}
.y3_c00416{bottom:983.550000px;}
.y2_c00416{bottom:1004.100000px;}
.y1_c00416{bottom:1042.950000px;}
.h2_c00416{height:60.000000px;}
.h1_c00416{height:1166.250000px;}
.h0_c00416{height:1166.400056px;}
.w0_c00416{width:920.879975px;}
.w1_c00416{width:921.000000px;}
.x0_c00416{left:0.000000px;}
.x11f_c00416{left:136.200000px;}
.x12a_c00416{left:139.650000px;}
.x112_c00416{left:141.900000px;}
.x3_c00416{left:142.950000px;}
.x50_c00416{left:144.000000px;}
.x1_c00416{left:145.050000px;}
.x140_c00416{left:156.000000px;}
.x13c_c00416{left:161.250000px;}
.xe3_c00416{left:162.600000px;}
.xc8_c00416{left:164.100000px;}
.x36_c00416{left:170.850000px;}
.x67_c00416{left:172.650000px;}
.x51_c00416{left:174.600000px;}
.x115_c00416{left:175.650000px;}
.x15_c00416{left:177.600000px;}
.x43_c00416{left:180.000000px;}
.x4_c00416{left:181.500000px;}
.x121_c00416{left:183.150000px;}
.x84_c00416{left:184.350000px;}
.x9f_c00416{left:186.150000px;}
.xe4_c00416{left:190.650000px;}
.x105_c00416{left:192.450000px;}
.x12b_c00416{left:193.650000px;}
.x16_c00416{left:195.600000px;}
.x138_c00416{left:196.800000px;}
.x37_c00416{left:199.350000px;}
.x85_c00416{left:201.300000px;}
.xdf_c00416{left:203.100000px;}
.x28_c00416{left:204.600000px;}
.x5_c00416{left:207.000000px;}
.xd6_c00416{left:209.700000px;}
.x10a_c00416{left:211.050000px;}
.x134_c00416{left:212.550000px;}
.xb3_c00416{left:214.050000px;}
.x95_c00416{left:218.400000px;}
.x5c_c00416{left:222.600000px;}
.xd7_c00416{left:224.400000px;}
.x86_c00416{left:226.800000px;}
.x12c_c00416{left:228.600000px;}
.x72_c00416{left:230.400000px;}
.xf9_c00416{left:231.600000px;}
.x17_c00416{left:233.700000px;}
.x12f_c00416{left:235.200000px;}
.x52_c00416{left:237.300000px;}
.x7a_c00416{left:238.500000px;}
.x29_c00416{left:240.600000px;}
.x106_c00416{left:241.800000px;}
.x116_c00416{left:243.000000px;}
.x6_c00416{left:245.100000px;}
.x135_c00416{left:246.750000px;}
.xb4_c00416{left:249.000000px;}
.x38_c00416{left:250.500000px;}
.x44_c00416{left:252.000000px;}
.xc2_c00416{left:253.350000px;}
.xa0_c00416{left:254.550000px;}
.x8e_c00416{left:255.600000px;}
.xac_c00416{left:257.400000px;}
.x73_c00416{left:259.200000px;}
.x5d_c00416{left:260.700000px;}
.xeb_c00416{left:262.050000px;}
.x7b_c00416{left:263.400000px;}
.xb5_c00416{left:265.500000px;}
.x18_c00416{left:267.150000px;}
.xfa_c00416{left:270.150000px;}
.x68_c00416{left:271.200000px;}
.x143_c00416{left:272.550000px;}
.x96_c00416{left:273.900000px;}
.x2a_c00416{left:275.550000px;}
.x53_c00416{left:277.950000px;}
.xc9_c00416{left:279.300000px;}
.xd0_c00416{left:280.950000px;}
.xc3_c00416{left:282.450000px;}
.xe5_c00416{left:283.950000px;}
.x111_c00416{left:285.000000px;}
.x124_c00416{left:286.050000px;}
.x19_c00416{left:287.250000px;}
.xa1_c00416{left:289.050000px;}
.xbd_c00416{left:290.250000px;}
.x7_c00416{left:291.600000px;}
.xb6_c00416{left:292.800000px;}
.x139_c00416{left:296.250000px;}
.xec_c00416{left:298.050000px;}
.x74_c00416{left:299.550000px;}
.x87_c00416{left:301.350000px;}
.x54_c00416{left:303.150000px;}
.xff_c00416{left:304.350000px;}
.x2b_c00416{left:307.650000px;}
.xad_c00416{left:311.400000px;}
.xd1_c00416{left:313.050000px;}
.x107_c00416{left:317.400000px;}
.x1a_c00416{left:319.350000px;}
.x69_c00416{left:321.600000px;}
.x39_c00416{left:324.000000px;}
.xa2_c00416{left:325.050000px;}
.x8_c00416{left:327.600000px;}
.xe6_c00416{left:329.700000px;}
.x130_c00416{left:331.050000px;}
.x8f_c00416{left:332.700000px;}
.x45_c00416{left:334.800000px;}
.x55_c00416{left:336.300000px;}
.x5e_c00416{left:338.400000px;}
.xf5_c00416{left:340.350000px;}
.x97_c00416{left:342.750000px;}
.xc4_c00416{left:343.950000px;}
.x2c_c00416{left:346.950000px;}
.xae_c00416{left:349.200000px;}
.x1b_c00416{left:350.700000px;}
.xed_c00416{left:352.050000px;}
.x119_c00416{left:355.350000px;}
.x5f_c00416{left:356.700000px;}
.xca_c00416{left:358.500000px;}
.xa3_c00416{left:361.800000px;}
.x9_c00416{left:363.300000px;}
.xbe_c00416{left:365.550000px;}
.x88_c00416{left:367.650000px;}
.x131_c00416{left:371.700000px;}
.xee_c00416{left:373.950000px;}
.xc5_c00416{left:375.300000px;}
.x7c_c00416{left:377.550000px;}
.x46_c00416{left:379.500000px;}
.x2d_c00416{left:385.800000px;}
.x1c_c00416{left:387.000000px;}
.x98_c00416{left:388.050000px;}
.xa4_c00416{left:390.600000px;}
.xfb_c00416{left:393.600000px;}
.xd2_c00416{left:397.650000px;}
.xa_c00416{left:400.350000px;}
.x75_c00416{left:401.400000px;}
.x125_c00416{left:402.750000px;}
.xb7_c00416{left:403.950000px;}
.x6a_c00416{left:405.750000px;}
.x1d_c00416{left:406.800000px;}
.x10b_c00416{left:408.900000px;}
.x56_c00416{left:410.400000px;}
.x2e_c00416{left:413.850000px;}
.xcb_c00416{left:417.150000px;}
.x144_c00416{left:419.250000px;}
.x117_c00416{left:420.750000px;}
.x3a_c00416{left:423.000000px;}
.x76_c00416{left:426.300000px;}
.xef_c00416{left:428.700000px;}
.xd3_c00416{left:431.550000px;}
.x47_c00416{left:434.550000px;}
.xe7_c00416{left:435.900000px;}
.xf6_c00416{left:436.950000px;}
.x126_c00416{left:439.050000px;}
.x2_c00416{left:441.300000px;}
.xb_c00416{left:443.250000px;}
.x57_c00416{left:444.600000px;}
.x12d_c00416{left:445.800000px;}
.x1e_c00416{left:447.150000px;}
.x100_c00416{left:452.400000px;}
.xa5_c00416{left:453.600000px;}
.xd8_c00416{left:456.600000px;}
.x6b_c00416{left:458.250000px;}
.xf7_c00416{left:460.350000px;}
.x3b_c00416{left:461.550000px;}
.xe8_c00416{left:463.200000px;}
.x58_c00416{left:465.450000px;}
.xc_c00416{left:466.950000px;}
.xcc_c00416{left:468.300000px;}
.x10c_c00416{left:471.450000px;}
.x99_c00416{left:475.200000px;}
.x2f_c00416{left:476.550000px;}
.x122_c00416{left:478.500000px;}
.x6c_c00416{left:480.150000px;}
.x60_c00416{left:481.650000px;}
.x141_c00416{left:485.100000px;}
.xd9_c00416{left:486.450000px;}
.xbf_c00416{left:489.000000px;}
.x89_c00416{left:491.100000px;}
.xaf_c00416{left:493.200000px;}
.x1f_c00416{left:494.700000px;}
.x59_c00416{left:495.750000px;}
.x113_c00416{left:496.800000px;}
.x77_c00416{left:498.600000px;}
.xfc_c00416{left:500.550000px;}
.x3c_c00416{left:502.200000px;}
.xda_c00416{left:503.700000px;}
.xd_c00416{left:506.250000px;}
.x118_c00416{left:507.450000px;}
.xa6_c00416{left:510.450000px;}
.x61_c00416{left:511.950000px;}
.x6d_c00416{left:513.600000px;}
.x20_c00416{left:515.250000px;}
.x9a_c00416{left:516.600000px;}
.x30_c00416{left:517.650000px;}
.xb8_c00416{left:519.600000px;}
.x7d_c00416{left:521.550000px;}
.xa7_c00416{left:522.750000px;}
.xdb_c00416{left:529.200000px;}
.x48_c00416{left:531.450000px;}
.x6e_c00416{left:533.400000px;}
.x101_c00416{left:535.950000px;}
.x3d_c00416{left:538.200000px;}
.xe0_c00416{left:540.300000px;}
.xf0_c00416{left:541.650000px;}
.xa8_c00416{left:542.850000px;}
.x10d_c00416{left:545.100000px;}
.x78_c00416{left:546.150000px;}
.x142_c00416{left:547.350000px;}
.x90_c00416{left:549.000000px;}
.x11a_c00416{left:550.950000px;}
.xc0_c00416{left:554.100000px;}
.x31_c00416{left:555.150000px;}
.x62_c00416{left:558.450000px;}
.x13a_c00416{left:565.650000px;}
.xe_c00416{left:567.150000px;}
.xfd_c00416{left:568.200000px;}
.x49_c00416{left:569.250000px;}
.x11d_c00416{left:571.350000px;}
.x8a_c00416{left:572.400000px;}
.x7e_c00416{left:575.250000px;}
.xe9_c00416{left:576.900000px;}
.x3e_c00416{left:578.100000px;}
.x9b_c00416{left:580.650000px;}
.xb9_c00416{left:581.700000px;}
.x6f_c00416{left:582.750000px;}
.x13b_c00416{left:584.400000px;}
.x21_c00416{left:587.550000px;}
.xa9_c00416{left:588.900000px;}
.x91_c00416{left:590.100000px;}
.x8b_c00416{left:591.900000px;}
.xcd_c00416{left:594.000000px;}
.x10e_c00416{left:595.500000px;}
.x114_c00416{left:598.350000px;}
.xf_c00416{left:599.850000px;}
.xb0_c00416{left:600.900000px;}
.x92_c00416{left:602.700000px;}
.x136_c00416{left:603.900000px;}
.xdc_c00416{left:605.550000px;}
.xc6_c00416{left:608.100000px;}
.x108_c00416{left:609.600000px;}
.xf1_c00416{left:611.550000px;}
.xe1_c00416{left:613.050000px;}
.x3f_c00416{left:614.400000px;}
.xea_c00416{left:616.800000px;}
.x22_c00416{left:617.850000px;}
.x32_c00416{left:625.650000px;}
.x127_c00416{left:626.700000px;}
.x4a_c00416{left:627.900000px;}
.x5a_c00416{left:629.700000px;}
.x137_c00416{left:631.200000px;}
.x11b_c00416{left:635.550000px;}
.x70_c00416{left:637.500000px;}
.x23_c00416{left:639.450000px;}
.x7f_c00416{left:640.800000px;}
.x10f_c00416{left:642.000000px;}
.x63_c00416{left:644.850000px;}
.x40_c00416{left:646.050000px;}
.x4b_c00416{left:647.700000px;}
.x33_c00416{left:649.350000px;}
.xba_c00416{left:652.650000px;}
.xf2_c00416{left:655.050000px;}
.x10_c00416{left:657.150000px;}
.x24_c00416{left:658.950000px;}
.x93_c00416{left:661.050000px;}
.xaa_c00416{left:662.100000px;}
.xf8_c00416{left:663.300000px;}
.x80_c00416{left:664.500000px;}
.xdd_c00416{left:666.000000px;}
.x120_c00416{left:668.400000px;}
.x4c_c00416{left:669.600000px;}
.x71_c00416{left:671.400000px;}
.x64_c00416{left:673.350000px;}
.x123_c00416{left:675.300000px;}
.xd4_c00416{left:677.400000px;}
.x11e_c00416{left:679.350000px;}
.x102_c00416{left:680.700000px;}
.xfe_c00416{left:682.050000px;}
.x9c_c00416{left:683.250000px;}
.xc1_c00416{left:685.200000px;}
.x25_c00416{left:692.100000px;}
.x4d_c00416{left:693.300000px;}
.xde_c00416{left:697.650000px;}
.xc7_c00416{left:698.700000px;}
.x9d_c00416{left:700.200000px;}
.xf3_c00416{left:702.600000px;}
.x81_c00416{left:704.850000px;}
.x79_c00416{left:707.250000px;}
.xe2_c00416{left:708.750000px;}
.x13d_c00416{left:710.850000px;}
.xce_c00416{left:713.550000px;}
.x103_c00416{left:715.200000px;}
.x11_c00416{left:716.550000px;}
.x34_c00416{left:717.750000px;}
.x128_c00416{left:718.950000px;}
.x5b_c00416{left:720.150000px;}
.x41_c00416{left:723.150000px;}
.x8c_c00416{left:724.800000px;}
.x13e_c00416{left:727.050000px;}
.xd5_c00416{left:728.100000px;}
.xab_c00416{left:730.200000px;}
.xb1_c00416{left:732.000000px;}
.x12_c00416{left:734.250000px;}
.x132_c00416{left:736.200000px;}
.x13f_c00416{left:737.550000px;}
.xbb_c00416{left:742.350000px;}
.x42_c00416{left:744.750000px;}
.x94_c00416{left:746.100000px;}
.x26_c00416{left:747.150000px;}
.x4e_c00416{left:748.800000px;}
.x9e_c00416{left:749.850000px;}
.xcf_c00416{left:752.100000px;}
.x82_c00416{left:753.450000px;}
.x12e_c00416{left:755.250000px;}
.x133_c00416{left:756.300000px;}
.xf4_c00416{left:759.150000px;}
.x35_c00416{left:760.200000px;}
.x13_c00416{left:761.550000px;}
.x8d_c00416{left:762.900000px;}
.x110_c00416{left:765.900000px;}
.x4f_c00416{left:769.650000px;}
.x104_c00416{left:771.300000px;}
.x109_c00416{left:772.650000px;}
.x65_c00416{left:775.650000px;}
.x11c_c00416{left:777.450000px;}
.x14_c00416{left:778.500000px;}
.xbc_c00416{left:780.900000px;}
.x27_c00416{left:782.400000px;}
.x129_c00416{left:785.100000px;}
.x66_c00416{left:788.550000px;}
.x83_c00416{left:790.200000px;}
.xb2_c00416{left:798.300000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws7_c00416{word-spacing:-9.012346pt;}
.ws6_c00416{word-spacing:-5.497076pt;}
.ws2_c00416{word-spacing:-3.809524pt;}
.ws4_c00416{word-spacing:-2.962963pt;}
.ws3_c00416{word-spacing:-1.481481pt;}
.wsc_c00416{word-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.512821pt;}
.wsb_c00416{word-spacing:1.481481pt;}
.ws9_c00416{word-spacing:4.567901pt;}
.ws5_c00416{word-spacing:7.283951pt;}
.ws1_c00416{word-spacing:7.407407pt;}
.ws8_c00416{word-spacing:7.901235pt;}
.wsa_c00416{word-spacing:13.580247pt;}
._0_c00416{width:35.308642pt;}
.fs0_c00416{font-size:53.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y2e_c00416{bottom:107.466667pt;}
.y2d_c00416{bottom:121.600000pt;}
.y2c_c00416{bottom:136.666667pt;}
.y2b_c00416{bottom:164.400000pt;}
.y2a_c00416{bottom:182.933333pt;}
.y29_c00416{bottom:200.800000pt;}
.y28_c00416{bottom:218.133333pt;}
.y27_c00416{bottom:236.000000pt;}
.y26_c00416{bottom:253.600000pt;}
.y25_c00416{bottom:271.200000pt;}
.y24_c00416{bottom:288.800000pt;}
.y23_c00416{bottom:306.666667pt;}
.y22_c00416{bottom:324.266667pt;}
.y21_c00416{bottom:342.133333pt;}
.y20_c00416{bottom:359.733333pt;}
.y1f_c00416{bottom:377.333333pt;}
.y1e_c00416{bottom:394.933333pt;}
.y1d_c00416{bottom:412.533333pt;}
.y1c_c00416{bottom:430.400000pt;}
.y1b_c00416{bottom:448.000000pt;}
.y1a_c00416{bottom:466.266667pt;}
.y19_c00416{bottom:484.133333pt;}
.y18_c00416{bottom:501.466667pt;}
.y17_c00416{bottom:519.200000pt;}
.y16_c00416{bottom:537.066667pt;}
.y15_c00416{bottom:554.666667pt;}
.y14_c00416{bottom:572.533333pt;}
.y13_c00416{bottom:590.133333pt;}
.y12_c00416{bottom:608.000000pt;}
.y11_c00416{bottom:625.600000pt;}
.y10_c00416{bottom:643.733333pt;}
.yf_c00416{bottom:661.600000pt;}
.ye_c00416{bottom:679.200000pt;}
.yd_c00416{bottom:696.800000pt;}
.yc_c00416{bottom:714.666667pt;}
.yb_c00416{bottom:732.533333pt;}
.ya_c00416{bottom:750.133333pt;}
.y9_c00416{bottom:768.000000pt;}
.y8_c00416{bottom:785.600000pt;}
.y7_c00416{bottom:803.066667pt;}
.y6_c00416{bottom:820.933333pt;}
.y5_c00416{bottom:838.800000pt;}
.y4_c00416{bottom:856.666667pt;}
.y3_c00416{bottom:874.266667pt;}
.y2_c00416{bottom:892.533333pt;}
.y1_c00416{bottom:927.066667pt;}
.h2_c00416{height:53.333333pt;}
.h1_c00416{height:1036.666667pt;}
.h0_c00416{height:1036.800049pt;}
.w0_c00416{width:818.559977pt;}
.w1_c00416{width:818.666667pt;}
.x0_c00416{left:0.000000pt;}
.x11f_c00416{left:121.066667pt;}
.x12a_c00416{left:124.133333pt;}
.x112_c00416{left:126.133333pt;}
.x3_c00416{left:127.066667pt;}
.x50_c00416{left:128.000000pt;}
.x1_c00416{left:128.933333pt;}
.x140_c00416{left:138.666667pt;}
.x13c_c00416{left:143.333333pt;}
.xe3_c00416{left:144.533333pt;}
.xc8_c00416{left:145.866667pt;}
.x36_c00416{left:151.866667pt;}
.x67_c00416{left:153.466667pt;}
.x51_c00416{left:155.200000pt;}
.x115_c00416{left:156.133333pt;}
.x15_c00416{left:157.866667pt;}
.x43_c00416{left:160.000000pt;}
.x4_c00416{left:161.333333pt;}
.x121_c00416{left:162.800000pt;}
.x84_c00416{left:163.866667pt;}
.x9f_c00416{left:165.466667pt;}
.xe4_c00416{left:169.466667pt;}
.x105_c00416{left:171.066667pt;}
.x12b_c00416{left:172.133333pt;}
.x16_c00416{left:173.866667pt;}
.x138_c00416{left:174.933333pt;}
.x37_c00416{left:177.200000pt;}
.x85_c00416{left:178.933333pt;}
.xdf_c00416{left:180.533333pt;}
.x28_c00416{left:181.866667pt;}
.x5_c00416{left:184.000000pt;}
.xd6_c00416{left:186.400000pt;}
.x10a_c00416{left:187.600000pt;}
.x134_c00416{left:188.933333pt;}
.xb3_c00416{left:190.266667pt;}
.x95_c00416{left:194.133333pt;}
.x5c_c00416{left:197.866667pt;}
.xd7_c00416{left:199.466667pt;}
.x86_c00416{left:201.600000pt;}
.x12c_c00416{left:203.200000pt;}
.x72_c00416{left:204.800000pt;}
.xf9_c00416{left:205.866667pt;}
.x17_c00416{left:207.733333pt;}
.x12f_c00416{left:209.066667pt;}
.x52_c00416{left:210.933333pt;}
.x7a_c00416{left:212.000000pt;}
.x29_c00416{left:213.866667pt;}
.x106_c00416{left:214.933333pt;}
.x116_c00416{left:216.000000pt;}
.x6_c00416{left:217.866667pt;}
.x135_c00416{left:219.333333pt;}
.xb4_c00416{left:221.333333pt;}
.x38_c00416{left:222.666667pt;}
.x44_c00416{left:224.000000pt;}
.xc2_c00416{left:225.200000pt;}
.xa0_c00416{left:226.266667pt;}
.x8e_c00416{left:227.200000pt;}
.xac_c00416{left:228.800000pt;}
.x73_c00416{left:230.400000pt;}
.x5d_c00416{left:231.733333pt;}
.xeb_c00416{left:232.933333pt;}
.x7b_c00416{left:234.133333pt;}
.xb5_c00416{left:236.000000pt;}
.x18_c00416{left:237.466667pt;}
.xfa_c00416{left:240.133333pt;}
.x68_c00416{left:241.066667pt;}
.x143_c00416{left:242.266667pt;}
.x96_c00416{left:243.466667pt;}
.x2a_c00416{left:244.933333pt;}
.x53_c00416{left:247.066667pt;}
.xc9_c00416{left:248.266667pt;}
.xd0_c00416{left:249.733333pt;}
.xc3_c00416{left:251.066667pt;}
.xe5_c00416{left:252.400000pt;}
.x111_c00416{left:253.333333pt;}
.x124_c00416{left:254.266667pt;}
.x19_c00416{left:255.333333pt;}
.xa1_c00416{left:256.933333pt;}
.xbd_c00416{left:258.000000pt;}
.x7_c00416{left:259.200000pt;}
.xb6_c00416{left:260.266667pt;}
.x139_c00416{left:263.333333pt;}
.xec_c00416{left:264.933333pt;}
.x74_c00416{left:266.266667pt;}
.x87_c00416{left:267.866667pt;}
.x54_c00416{left:269.466667pt;}
.xff_c00416{left:270.533333pt;}
.x2b_c00416{left:273.466667pt;}
.xad_c00416{left:276.800000pt;}
.xd1_c00416{left:278.266667pt;}
.x107_c00416{left:282.133333pt;}
.x1a_c00416{left:283.866667pt;}
.x69_c00416{left:285.866667pt;}
.x39_c00416{left:288.000000pt;}
.xa2_c00416{left:288.933333pt;}
.x8_c00416{left:291.200000pt;}
.xe6_c00416{left:293.066667pt;}
.x130_c00416{left:294.266667pt;}
.x8f_c00416{left:295.733333pt;}
.x45_c00416{left:297.600000pt;}
.x55_c00416{left:298.933333pt;}
.x5e_c00416{left:300.800000pt;}
.xf5_c00416{left:302.533333pt;}
.x97_c00416{left:304.666667pt;}
.xc4_c00416{left:305.733333pt;}
.x2c_c00416{left:308.400000pt;}
.xae_c00416{left:310.400000pt;}
.x1b_c00416{left:311.733333pt;}
.xed_c00416{left:312.933333pt;}
.x119_c00416{left:315.866667pt;}
.x5f_c00416{left:317.066667pt;}
.xca_c00416{left:318.666667pt;}
.xa3_c00416{left:321.600000pt;}
.x9_c00416{left:322.933333pt;}
.xbe_c00416{left:324.933333pt;}
.x88_c00416{left:326.800000pt;}
.x131_c00416{left:330.400000pt;}
.xee_c00416{left:332.400000pt;}
.xc5_c00416{left:333.600000pt;}
.x7c_c00416{left:335.600000pt;}
.x46_c00416{left:337.333333pt;}
.x2d_c00416{left:342.933333pt;}
.x1c_c00416{left:344.000000pt;}
.x98_c00416{left:344.933333pt;}
.xa4_c00416{left:347.200000pt;}
.xfb_c00416{left:349.866667pt;}
.xd2_c00416{left:353.466667pt;}
.xa_c00416{left:355.866667pt;}
.x75_c00416{left:356.800000pt;}
.x125_c00416{left:358.000000pt;}
.xb7_c00416{left:359.066667pt;}
.x6a_c00416{left:360.666667pt;}
.x1d_c00416{left:361.600000pt;}
.x10b_c00416{left:363.466667pt;}
.x56_c00416{left:364.800000pt;}
.x2e_c00416{left:367.866667pt;}
.xcb_c00416{left:370.800000pt;}
.x144_c00416{left:372.666667pt;}
.x117_c00416{left:374.000000pt;}
.x3a_c00416{left:376.000000pt;}
.x76_c00416{left:378.933333pt;}
.xef_c00416{left:381.066667pt;}
.xd3_c00416{left:383.600000pt;}
.x47_c00416{left:386.266667pt;}
.xe7_c00416{left:387.466667pt;}
.xf6_c00416{left:388.400000pt;}
.x126_c00416{left:390.266667pt;}
.x2_c00416{left:392.266667pt;}
.xb_c00416{left:394.000000pt;}
.x57_c00416{left:395.200000pt;}
.x12d_c00416{left:396.266667pt;}
.x1e_c00416{left:397.466667pt;}
.x100_c00416{left:402.133333pt;}
.xa5_c00416{left:403.200000pt;}
.xd8_c00416{left:405.866667pt;}
.x6b_c00416{left:407.333333pt;}
.xf7_c00416{left:409.200000pt;}
.x3b_c00416{left:410.266667pt;}
.xe8_c00416{left:411.733333pt;}
.x58_c00416{left:413.733333pt;}
.xc_c00416{left:415.066667pt;}
.xcc_c00416{left:416.266667pt;}
.x10c_c00416{left:419.066667pt;}
.x99_c00416{left:422.400000pt;}
.x2f_c00416{left:423.600000pt;}
.x122_c00416{left:425.333333pt;}
.x6c_c00416{left:426.800000pt;}
.x60_c00416{left:428.133333pt;}
.x141_c00416{left:431.200000pt;}
.xd9_c00416{left:432.400000pt;}
.xbf_c00416{left:434.666667pt;}
.x89_c00416{left:436.533333pt;}
.xaf_c00416{left:438.400000pt;}
.x1f_c00416{left:439.733333pt;}
.x59_c00416{left:440.666667pt;}
.x113_c00416{left:441.600000pt;}
.x77_c00416{left:443.200000pt;}
.xfc_c00416{left:444.933333pt;}
.x3c_c00416{left:446.400000pt;}
.xda_c00416{left:447.733333pt;}
.xd_c00416{left:450.000000pt;}
.x118_c00416{left:451.066667pt;}
.xa6_c00416{left:453.733333pt;}
.x61_c00416{left:455.066667pt;}
.x6d_c00416{left:456.533333pt;}
.x20_c00416{left:458.000000pt;}
.x9a_c00416{left:459.200000pt;}
.x30_c00416{left:460.133333pt;}
.xb8_c00416{left:461.866667pt;}
.x7d_c00416{left:463.600000pt;}
.xa7_c00416{left:464.666667pt;}
.xdb_c00416{left:470.400000pt;}
.x48_c00416{left:472.400000pt;}
.x6e_c00416{left:474.133333pt;}
.x101_c00416{left:476.400000pt;}
.x3d_c00416{left:478.400000pt;}
.xe0_c00416{left:480.266667pt;}
.xf0_c00416{left:481.466667pt;}
.xa8_c00416{left:482.533333pt;}
.x10d_c00416{left:484.533333pt;}
.x78_c00416{left:485.466667pt;}
.x142_c00416{left:486.533333pt;}
.x90_c00416{left:488.000000pt;}
.x11a_c00416{left:489.733333pt;}
.xc0_c00416{left:492.533333pt;}
.x31_c00416{left:493.466667pt;}
.x62_c00416{left:496.400000pt;}
.x13a_c00416{left:502.800000pt;}
.xe_c00416{left:504.133333pt;}
.xfd_c00416{left:505.066667pt;}
.x49_c00416{left:506.000000pt;}
.x11d_c00416{left:507.866667pt;}
.x8a_c00416{left:508.800000pt;}
.x7e_c00416{left:511.333333pt;}
.xe9_c00416{left:512.800000pt;}
.x3e_c00416{left:513.866667pt;}
.x9b_c00416{left:516.133333pt;}
.xb9_c00416{left:517.066667pt;}
.x6f_c00416{left:518.000000pt;}
.x13b_c00416{left:519.466667pt;}
.x21_c00416{left:522.266667pt;}
.xa9_c00416{left:523.466667pt;}
.x91_c00416{left:524.533333pt;}
.x8b_c00416{left:526.133333pt;}
.xcd_c00416{left:528.000000pt;}
.x10e_c00416{left:529.333333pt;}
.x114_c00416{left:531.866667pt;}
.xf_c00416{left:533.200000pt;}
.xb0_c00416{left:534.133333pt;}
.x92_c00416{left:535.733333pt;}
.x136_c00416{left:536.800000pt;}
.xdc_c00416{left:538.266667pt;}
.xc6_c00416{left:540.533333pt;}
.x108_c00416{left:541.866667pt;}
.xf1_c00416{left:543.600000pt;}
.xe1_c00416{left:544.933333pt;}
.x3f_c00416{left:546.133333pt;}
.xea_c00416{left:548.266667pt;}
.x22_c00416{left:549.200000pt;}
.x32_c00416{left:556.133333pt;}
.x127_c00416{left:557.066667pt;}
.x4a_c00416{left:558.133333pt;}
.x5a_c00416{left:559.733333pt;}
.x137_c00416{left:561.066667pt;}
.x11b_c00416{left:564.933333pt;}
.x70_c00416{left:566.666667pt;}
.x23_c00416{left:568.400000pt;}
.x7f_c00416{left:569.600000pt;}
.x10f_c00416{left:570.666667pt;}
.x63_c00416{left:573.200000pt;}
.x40_c00416{left:574.266667pt;}
.x4b_c00416{left:575.733333pt;}
.x33_c00416{left:577.200000pt;}
.xba_c00416{left:580.133333pt;}
.xf2_c00416{left:582.266667pt;}
.x10_c00416{left:584.133333pt;}
.x24_c00416{left:585.733333pt;}
.x93_c00416{left:587.600000pt;}
.xaa_c00416{left:588.533333pt;}
.xf8_c00416{left:589.600000pt;}
.x80_c00416{left:590.666667pt;}
.xdd_c00416{left:592.000000pt;}
.x120_c00416{left:594.133333pt;}
.x4c_c00416{left:595.200000pt;}
.x71_c00416{left:596.800000pt;}
.x64_c00416{left:598.533333pt;}
.x123_c00416{left:600.266667pt;}
.xd4_c00416{left:602.133333pt;}
.x11e_c00416{left:603.866667pt;}
.x102_c00416{left:605.066667pt;}
.xfe_c00416{left:606.266667pt;}
.x9c_c00416{left:607.333333pt;}
.xc1_c00416{left:609.066667pt;}
.x25_c00416{left:615.200000pt;}
.x4d_c00416{left:616.266667pt;}
.xde_c00416{left:620.133333pt;}
.xc7_c00416{left:621.066667pt;}
.x9d_c00416{left:622.400000pt;}
.xf3_c00416{left:624.533333pt;}
.x81_c00416{left:626.533333pt;}
.x79_c00416{left:628.666667pt;}
.xe2_c00416{left:630.000000pt;}
.x13d_c00416{left:631.866667pt;}
.xce_c00416{left:634.266667pt;}
.x103_c00416{left:635.733333pt;}
.x11_c00416{left:636.933333pt;}
.x34_c00416{left:638.000000pt;}
.x128_c00416{left:639.066667pt;}
.x5b_c00416{left:640.133333pt;}
.x41_c00416{left:642.800000pt;}
.x8c_c00416{left:644.266667pt;}
.x13e_c00416{left:646.266667pt;}
.xd5_c00416{left:647.200000pt;}
.xab_c00416{left:649.066667pt;}
.xb1_c00416{left:650.666667pt;}
.x12_c00416{left:652.666667pt;}
.x132_c00416{left:654.400000pt;}
.x13f_c00416{left:655.600000pt;}
.xbb_c00416{left:659.866667pt;}
.x42_c00416{left:662.000000pt;}
.x94_c00416{left:663.200000pt;}
.x26_c00416{left:664.133333pt;}
.x4e_c00416{left:665.600000pt;}
.x9e_c00416{left:666.533333pt;}
.xcf_c00416{left:668.533333pt;}
.x82_c00416{left:669.733333pt;}
.x12e_c00416{left:671.333333pt;}
.x133_c00416{left:672.266667pt;}
.xf4_c00416{left:674.800000pt;}
.x35_c00416{left:675.733333pt;}
.x13_c00416{left:676.933333pt;}
.x8d_c00416{left:678.133333pt;}
.x110_c00416{left:680.800000pt;}
.x4f_c00416{left:684.133333pt;}
.x104_c00416{left:685.600000pt;}
.x109_c00416{left:686.800000pt;}
.x65_c00416{left:689.466667pt;}
.x11c_c00416{left:691.066667pt;}
.x14_c00416{left:692.000000pt;}
.xbc_c00416{left:694.133333pt;}
.x27_c00416{left:695.466667pt;}
.x129_c00416{left:697.866667pt;}
.x66_c00416{left:700.933333pt;}
.x83_c00416{left:702.400000pt;}
.xb2_c00416{left:709.600000pt;}
}





/* 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_c00417 {
    display:none;
  }
  .loading-indicator_c00417.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00417 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_c00417 { 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_c00417" -> "#page-container .classname_c00417")
 */
.pf_c00417 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00417 { /* 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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00417 { /* 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_c00417 { /* 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_c00417 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00417 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00417 {overflow:visible;}
  }
}
.c_c00417 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00417 { /* 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_c00417:after { /* webkit #35443 */
  content: '';
}
.t_c00417:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00417 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 */
}
.__c00417 { /* 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_c00417 { /* info for Javascript */
  display:none;
}
.l_c00417 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00417 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00417 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00417: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_c00417 {
    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_c00417.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00417.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_c00417 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00417{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00417;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.000000;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;}
.m50_c00417{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.mc_c00417{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m21_c00417{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m69_c00417{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00417{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m35_c00417{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m74_c00417{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m27_c00417{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m78_c00417{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m63_c00417{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00417{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00417{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m58_c00417{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me_c00417{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00417{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m20_c00417{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m80_c00417{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m60_c00417{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m56_c00417{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00417{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00417{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00417{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m37_c00417{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00417{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m94_c00417{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m19_c00417{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3_c00417{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00417{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m84_c00417{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m55_c00417{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m44_c00417{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m89_c00417{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7_c00417{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m62_c00417{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m91_c00417{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m64_c00417{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m12_c00417{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00417{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00417{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m22_c00417{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00417{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m23_c00417{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m46_c00417{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00417{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m57_c00417{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00417{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m72_c00417{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00417{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00417{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00417{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m81_c00417{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00417{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m90_c00417{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00417{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m47_c00417{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00417{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m10_c00417{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m88_c00417{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00417{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m32_c00417{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m18_c00417{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16_c00417{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m71_c00417{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00417{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00417{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m99_c00417{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m61_c00417{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00417{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8_c00417{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00417{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m68_c00417{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00417{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);}
.m95_c00417{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00417{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m66_c00417{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m13_c00417{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m49_c00417{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m14_c00417{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00417{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00417{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m77_c00417{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00417{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m28_c00417{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m73_c00417{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m42_c00417{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00417{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m52_c00417{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00417{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m25_c00417{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00417{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00417{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m54_c00417{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m40_c00417{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m24_c00417{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00417{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf_c00417{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m26_c00417{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00417{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m36_c00417{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00417{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00417{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m76_c00417{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00417{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m15_c00417{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m98_c00417{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m96_c00417{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m0_c00417{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00417{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m93_c00417{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00417{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00417{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m45_c00417{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m59_c00417{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00417{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m85_c00417{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m17_c00417{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m83_c00417{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00417{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m79_c00417{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m29_c00417{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m48_c00417{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00417{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m11_c00417{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m65_c00417{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1_c00417{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.md_c00417{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m30_c00417{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00417{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00417{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m70_c00417{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m41_c00417{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m92_c00417{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00417{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m6_c00417{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00417{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00417{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m33_c00417{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m31_c00417{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m4_c00417{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m38_c00417{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m34_c00417{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m82_c00417{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00417{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m39_c00417{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m86_c00417{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00417{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00417{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00417{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00417{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00417{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00417{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00417{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m53_c00417{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00417{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m87_c00417{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m67_c00417{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00417{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00417{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m97_c00417{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m2_c00417{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00417{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.mb_c00417{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m75_c00417{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00417{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m51_c00417{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls0_c00417{letter-spacing:0.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{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__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00417{word-spacing:-6.159509px;}
.ws4_c00417{word-spacing:-4.500000px;}
.ws8_c00417{word-spacing:-1.486673px;}
.wsc_c00417{word-spacing:0.000000px;}
.ws9_c00417{word-spacing:1.500000px;}
.ws0_c00417{word-spacing:1.812569px;}
.ws2_c00417{word-spacing:3.166667px;}
.wsb_c00417{word-spacing:3.442882px;}
.ws1_c00417{word-spacing:12.125000px;}
.ws5_c00417{word-spacing:12.312090px;}
.wsa_c00417{word-spacing:20.666667px;}
.ws7_c00417{word-spacing:25.504961px;}
.ws6_c00417{word-spacing:39.000000px;}
._0_c00417{width:31.250000px;}
.fc0_c00417{color:transparent;}
.fs1_c00417{font-size:54.000000px;}
.fs0_c00417{font-size:60.000000px;}
.y0_c00417{bottom:0.000000px;}
.y2c_c00417{bottom:143.700000px;}
.y2b_c00417{bottom:163.500000px;}
.y2a_c00417{bottom:183.600000px;}
.y29_c00417{bottom:223.950000px;}
.y28_c00417{bottom:244.500000px;}
.y27_c00417{bottom:264.000000px;}
.y26_c00417{bottom:284.100000px;}
.y25_c00417{bottom:303.900000px;}
.y24_c00417{bottom:324.000000px;}
.y23_c00417{bottom:343.800000px;}
.y22_c00417{bottom:363.600000px;}
.y21_c00417{bottom:383.550000px;}
.y20_c00417{bottom:403.650000px;}
.y1f_c00417{bottom:423.450000px;}
.y1e_c00417{bottom:443.550000px;}
.y1d_c00417{bottom:463.500000px;}
.y1c_c00417{bottom:483.600000px;}
.y1b_c00417{bottom:503.700000px;}
.y1a_c00417{bottom:523.800000px;}
.y19_c00417{bottom:543.900000px;}
.y18_c00417{bottom:563.700000px;}
.y17_c00417{bottom:583.500000px;}
.y16_c00417{bottom:603.600000px;}
.y15_c00417{bottom:623.400000px;}
.y14_c00417{bottom:643.500000px;}
.y13_c00417{bottom:663.300000px;}
.y12_c00417{bottom:683.100000px;}
.y11_c00417{bottom:703.200000px;}
.y10_c00417{bottom:723.300000px;}
.yf_c00417{bottom:743.250000px;}
.ye_c00417{bottom:763.050000px;}
.yd_c00417{bottom:783.150000px;}
.yc_c00417{bottom:802.950000px;}
.yb_c00417{bottom:823.050000px;}
.ya_c00417{bottom:843.150000px;}
.y9_c00417{bottom:862.950000px;}
.y8_c00417{bottom:883.500000px;}
.y7_c00417{bottom:903.600000px;}
.y6_c00417{bottom:923.700000px;}
.y5_c00417{bottom:943.500000px;}
.y4_c00417{bottom:963.750000px;}
.y3_c00417{bottom:983.550000px;}
.y2_c00417{bottom:1003.350000px;}
.y1_c00417{bottom:1041.150000px;}
.h3_c00417{height:54.000000px;}
.h2_c00417{height:60.000000px;}
.h1_c00417{height:1166.250000px;}
.h0_c00417{height:1166.400056px;}
.w0_c00417{width:920.879975px;}
.w1_c00417{width:921.000000px;}
.x0_c00417{left:0.000000px;}
.x16_c00417{left:111.450000px;}
.x120_c00417{left:112.800000px;}
.x79_c00417{left:122.850000px;}
.x5b_c00417{left:129.150000px;}
.x9c_c00417{left:130.350000px;}
.xa7_c00417{left:131.850000px;}
.xd4_c00417{left:133.050000px;}
.x65_c00417{left:137.250000px;}
.xc7_c00417{left:140.250000px;}
.x3_c00417{left:142.950000px;}
.x5c_c00417{left:144.300000px;}
.x26_c00417{left:146.100000px;}
.xea_c00417{left:148.200000px;}
.x88_c00417{left:149.550000px;}
.x7a_c00417{left:151.950000px;}
.xf0_c00417{left:155.100000px;}
.xfc_c00417{left:158.400000px;}
.x7b_c00417{left:159.900000px;}
.xad_c00417{left:165.150000px;}
.x66_c00417{left:166.800000px;}
.xb7_c00417{left:168.450000px;}
.x6e_c00417{left:171.000000px;}
.x39_c00417{left:172.650000px;}
.xe7_c00417{left:173.700000px;}
.x4_c00417{left:177.900000px;}
.x17_c00417{left:179.550000px;}
.x27_c00417{left:181.050000px;}
.x11c_c00417{left:182.550000px;}
.x7c_c00417{left:183.900000px;}
.x117_c00417{left:185.550000px;}
.x48_c00417{left:187.500000px;}
.x5_c00417{left:193.050000px;}
.x7d_c00417{left:195.450000px;}
.xe0_c00417{left:196.800000px;}
.x29_c00417{left:199.050000px;}
.xc8_c00417{left:200.700000px;}
.x93_c00417{left:201.900000px;}
.x67_c00417{left:204.300000px;}
.x5d_c00417{left:205.800000px;}
.x89_c00417{left:206.850000px;}
.xae_c00417{left:209.100000px;}
.x100_c00417{left:210.900000px;}
.x4f_c00417{left:212.700000px;}
.x6_c00417{left:214.650000px;}
.x18_c00417{left:218.100000px;}
.x10b_c00417{left:221.700000px;}
.x28_c00417{left:222.750000px;}
.x107_c00417{left:226.050000px;}
.x50_c00417{left:228.150000px;}
.x49_c00417{left:230.700000px;}
.x68_c00417{left:233.100000px;}
.x7_c00417{left:234.750000px;}
.x3a_c00417{left:237.150000px;}
.x19_c00417{left:239.700000px;}
.xa2_c00417{left:247.350000px;}
.x4a_c00417{left:249.000000px;}
.xc9_c00417{left:252.900000px;}
.x11d_c00417{left:254.250000px;}
.x10c_c00417{left:256.950000px;}
.xaf_c00417{left:259.200000px;}
.xf1_c00417{left:260.850000px;}
.x6f_c00417{left:262.050000px;}
.x9d_c00417{left:263.250000px;}
.xdd_c00417{left:264.600000px;}
.x2a_c00417{left:265.950000px;}
.xe1_c00417{left:268.500000px;}
.x94_c00417{left:270.300000px;}
.xa8_c00417{left:271.500000px;}
.x4b_c00417{left:274.500000px;}
.xd5_c00417{left:278.850000px;}
.x7e_c00417{left:280.050000px;}
.x3b_c00417{left:282.150000px;}
.x8_c00417{left:283.650000px;}
.x121_c00417{left:284.850000px;}
.x108_c00417{left:286.950000px;}
.xe2_c00417{left:288.000000px;}
.xbe_c00417{left:290.400000px;}
.x1a_c00417{left:291.900000px;}
.x10d_c00417{left:292.950000px;}
.x3c_c00417{left:297.300000px;}
.x95_c00417{left:301.650000px;}
.xb0_c00417{left:303.150000px;}
.x1b_c00417{left:304.800000px;}
.xa9_c00417{left:310.350000px;}
.x69_c00417{left:311.550000px;}
.x2b_c00417{left:315.300000px;}
.xb8_c00417{left:319.200000px;}
.xa3_c00417{left:321.150000px;}
.x3d_c00417{left:323.250000px;}
.xde_c00417{left:325.050000px;}
.xf2_c00417{left:327.150000px;}
.x4c_c00417{left:328.200000px;}
.x111_c00417{left:329.700000px;}
.x51_c00417{left:331.200000px;}
.x96_c00417{left:333.300000px;}
.xca_c00417{left:336.450000px;}
.x9e_c00417{left:338.850000px;}
.x1c_c00417{left:340.050000px;}
.x8a_c00417{left:342.600000px;}
.xeb_c00417{left:343.650000px;}
.xf3_c00417{left:344.850000px;}
.xd6_c00417{left:348.600000px;}
.x3e_c00417{left:350.550000px;}
.x97_c00417{left:351.600000px;}
.x2c_c00417{left:353.850000px;}
.xe3_c00417{left:358.500000px;}
.xdf_c00417{left:359.550000px;}
.x9_c00417{left:361.050000px;}
.x114_c00417{left:362.850000px;}
.x52_c00417{left:363.900000px;}
.x8b_c00417{left:364.950000px;}
.xcb_c00417{left:367.800000px;}
.xf4_c00417{left:370.350000px;}
.xd9_c00417{left:371.550000px;}
.xa4_c00417{left:373.350000px;}
.x2d_c00417{left:375.150000px;}
.x53_c00417{left:378.000000px;}
.xa_c00417{left:382.950000px;}
.xbf_c00417{left:384.750000px;}
.x3f_c00417{left:386.550000px;}
.x98_c00417{left:390.150000px;}
.x4d_c00417{left:392.700000px;}
.x1d_c00417{left:395.550000px;}
.xc0_c00417{left:396.600000px;}
.x6a_c00417{left:397.650000px;}
.x8c_c00417{left:399.900000px;}
.xf5_c00417{left:401.700000px;}
.x9f_c00417{left:402.900000px;}
.x115_c00417{left:403.950000px;}
.x1_c00417{left:406.050000px;}
.x7f_c00417{left:408.600000px;}
.xb_c00417{left:411.450000px;}
.x10e_c00417{left:412.500000px;}
.x4e_c00417{left:414.300000px;}
.xe8_c00417{left:415.350000px;}
.x1e_c00417{left:418.200000px;}
.xd7_c00417{left:421.200000px;}
.x2e_c00417{left:428.100000px;}
.x54_c00417{left:429.450000px;}
.xc1_c00417{left:432.600000px;}
.xcd_c00417{left:437.100000px;}
.x5e_c00417{left:438.450000px;}
.x8d_c00417{left:440.550000px;}
.x99_c00417{left:442.050000px;}
.xa0_c00417{left:444.000000px;}
.x40_c00417{left:446.250000px;}
.x2f_c00417{left:447.600000px;}
.xe9_c00417{left:451.050000px;}
.x122_c00417{left:452.250000px;}
.x1f_c00417{left:453.450000px;}
.xce_c00417{left:454.800000px;}
.x116_c00417{left:455.850000px;}
.x101_c00417{left:457.050000px;}
.xec_c00417{left:458.400000px;}
.x30_c00417{left:459.900000px;}
.xa1_c00417{left:462.000000px;}
.x55_c00417{left:463.350000px;}
.xda_c00417{left:465.150000px;}
.xc_c00417{left:470.550000px;}
.x41_c00417{left:473.550000px;}
.x80_c00417{left:475.200000px;}
.xfd_c00417{left:481.050000px;}
.x8e_c00417{left:482.250000px;}
.x103_c00417{left:483.300000px;}
.x6b_c00417{left:484.350000px;}
.xb1_c00417{left:486.000000px;}
.x9a_c00417{left:487.050000px;}
.xd_c00417{left:490.650000px;}
.x70_c00417{left:495.900000px;}
.xf6_c00417{left:498.450000px;}
.x5f_c00417{left:501.150000px;}
.x31_c00417{left:504.600000px;}
.xe4_c00417{left:505.800000px;}
.x42_c00417{left:507.000000px;}
.xb9_c00417{left:511.800000px;}
.xdb_c00417{left:513.450000px;}
.xe_c00417{left:514.800000px;}
.xed_c00417{left:516.000000px;}
.x81_c00417{left:518.400000px;}
.xb2_c00417{left:520.950000px;}
.x8f_c00417{left:523.650000px;}
.x20_c00417{left:526.200000px;}
.xc2_c00417{left:528.000000px;}
.x71_c00417{left:530.400000px;}
.x123_c00417{left:532.200000px;}
.x10f_c00417{left:535.200000px;}
.x56_c00417{left:536.400000px;}
.x109_c00417{left:538.200000px;}
.xba_c00417{left:540.600000px;}
.x118_c00417{left:541.650000px;}
.xf_c00417{left:544.650000px;}
.xa5_c00417{left:546.900000px;}
.x82_c00417{left:548.250000px;}
.x72_c00417{left:550.200000px;}
.xfe_c00417{left:551.250000px;}
.xc3_c00417{left:553.950000px;}
.xcf_c00417{left:555.600000px;}
.x60_c00417{left:557.700000px;}
.x102_c00417{left:558.900000px;}
.x10a_c00417{left:560.100000px;}
.xbb_c00417{left:561.150000px;}
.xf7_c00417{left:562.200000px;}
.x21_c00417{left:565.800000px;}
.x112_c00417{left:567.300000px;}
.xb3_c00417{left:569.550000px;}
.x90_c00417{left:571.500000px;}
.x6c_c00417{left:574.350000px;}
.x73_c00417{left:577.200000px;}
.x32_c00417{left:579.450000px;}
.x61_c00417{left:580.800000px;}
.x57_c00417{left:583.950000px;}
.x83_c00417{left:586.050000px;}
.xc4_c00417{left:588.450000px;}
.x119_c00417{left:590.100000px;}
.x33_c00417{left:591.750000px;}
.x43_c00417{left:593.700000px;}
.x22_c00417{left:595.350000px;}
.x10_c00417{left:597.150000px;}
.xdc_c00417{left:598.500000px;}
.xb4_c00417{left:602.700000px;}
.x104_c00417{left:604.650000px;}
.xf8_c00417{left:608.250000px;}
.x11_c00417{left:609.750000px;}
.x84_c00417{left:611.550000px;}
.x74_c00417{left:616.500000px;}
.x58_c00417{left:619.200000px;}
.x34_c00417{left:622.650000px;}
.xf9_c00417{left:625.200000px;}
.x11a_c00417{left:626.400000px;}
.xaa_c00417{left:627.600000px;}
.xd0_c00417{left:628.650000px;}
.xb5_c00417{left:632.250000px;}
.xe5_c00417{left:634.350000px;}
.x44_c00417{left:636.150000px;}
.x75_c00417{left:637.350000px;}
.x12_c00417{left:640.650000px;}
.xa6_c00417{left:643.050000px;}
.x11b_c00417{left:644.400000px;}
.x85_c00417{left:646.800000px;}
.x35_c00417{left:648.150000px;}
.x45_c00417{left:651.300000px;}
.x13_c00417{left:652.950000px;}
.x11e_c00417{left:655.950000px;}
.x59_c00417{left:658.050000px;}
.x23_c00417{left:659.400000px;}
.xee_c00417{left:661.200000px;}
.xd1_c00417{left:663.150000px;}
.x76_c00417{left:664.650000px;}
.xc5_c00417{left:666.900000px;}
.x62_c00417{left:669.750000px;}
.x46_c00417{left:672.150000px;}
.x113_c00417{left:674.550000px;}
.xd2_c00417{left:675.750000px;}
.xcc_c00417{left:676.950000px;}
.xfa_c00417{left:678.900000px;}
.x14_c00417{left:681.000000px;}
.xe6_c00417{left:685.800000px;}
.xd8_c00417{left:688.350000px;}
.xbc_c00417{left:691.500000px;}
.x91_c00417{left:696.450000px;}
.xab_c00417{left:697.500000px;}
.x6d_c00417{left:698.850000px;}
.x105_c00417{left:700.800000px;}
.x86_c00417{left:701.850000px;}
.x36_c00417{left:702.900000px;}
.x11f_c00417{left:705.300000px;}
.xc6_c00417{left:707.550000px;}
.xff_c00417{left:708.900000px;}
.x24_c00417{left:713.400000px;}
.x15_c00417{left:718.800000px;}
.x124_c00417{left:720.450000px;}
.xbd_c00417{left:722.100000px;}
.x5a_c00417{left:723.150000px;}
.xb6_c00417{left:725.100000px;}
.x9b_c00417{left:726.900000px;}
.x110_c00417{left:732.600000px;}
.xd3_c00417{left:733.650000px;}
.x63_c00417{left:734.850000px;}
.x77_c00417{left:737.700000px;}
.x47_c00417{left:739.500000px;}
.x37_c00417{left:744.000000px;}
.xac_c00417{left:745.050000px;}
.x87_c00417{left:748.650000px;}
.x64_c00417{left:750.000000px;}
.x2_c00417{left:753.150000px;}
.x92_c00417{left:755.550000px;}
.x25_c00417{left:757.350000px;}
.x78_c00417{left:759.000000px;}
.xef_c00417{left:762.000000px;}
.x38_c00417{left:763.800000px;}
.x106_c00417{left:767.100000px;}
.x125_c00417{left:770.100000px;}
.xfb_c00417{left:775.050000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws3_c00417{word-spacing:-5.475119pt;}
.ws4_c00417{word-spacing:-4.000000pt;}
.ws8_c00417{word-spacing:-1.321487pt;}
.wsc_c00417{word-spacing:0.000000pt;}
.ws9_c00417{word-spacing:1.333333pt;}
.ws0_c00417{word-spacing:1.611172pt;}
.ws2_c00417{word-spacing:2.814815pt;}
.wsb_c00417{word-spacing:3.060340pt;}
.ws1_c00417{word-spacing:10.777778pt;}
.ws5_c00417{word-spacing:10.944080pt;}
.wsa_c00417{word-spacing:18.370370pt;}
.ws7_c00417{word-spacing:22.671077pt;}
.ws6_c00417{word-spacing:34.666667pt;}
._0_c00417{width:27.777778pt;}
.fs1_c00417{font-size:48.000000pt;}
.fs0_c00417{font-size:53.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y2c_c00417{bottom:127.733333pt;}
.y2b_c00417{bottom:145.333333pt;}
.y2a_c00417{bottom:163.200000pt;}
.y29_c00417{bottom:199.066667pt;}
.y28_c00417{bottom:217.333333pt;}
.y27_c00417{bottom:234.666667pt;}
.y26_c00417{bottom:252.533333pt;}
.y25_c00417{bottom:270.133333pt;}
.y24_c00417{bottom:288.000000pt;}
.y23_c00417{bottom:305.600000pt;}
.y22_c00417{bottom:323.200000pt;}
.y21_c00417{bottom:340.933333pt;}
.y20_c00417{bottom:358.800000pt;}
.y1f_c00417{bottom:376.400000pt;}
.y1e_c00417{bottom:394.266667pt;}
.y1d_c00417{bottom:412.000000pt;}
.y1c_c00417{bottom:429.866667pt;}
.y1b_c00417{bottom:447.733333pt;}
.y1a_c00417{bottom:465.600000pt;}
.y19_c00417{bottom:483.466667pt;}
.y18_c00417{bottom:501.066667pt;}
.y17_c00417{bottom:518.666667pt;}
.y16_c00417{bottom:536.533333pt;}
.y15_c00417{bottom:554.133333pt;}
.y14_c00417{bottom:572.000000pt;}
.y13_c00417{bottom:589.600000pt;}
.y12_c00417{bottom:607.200000pt;}
.y11_c00417{bottom:625.066667pt;}
.y10_c00417{bottom:642.933333pt;}
.yf_c00417{bottom:660.666667pt;}
.ye_c00417{bottom:678.266667pt;}
.yd_c00417{bottom:696.133333pt;}
.yc_c00417{bottom:713.733333pt;}
.yb_c00417{bottom:731.600000pt;}
.ya_c00417{bottom:749.466667pt;}
.y9_c00417{bottom:767.066667pt;}
.y8_c00417{bottom:785.333333pt;}
.y7_c00417{bottom:803.200000pt;}
.y6_c00417{bottom:821.066667pt;}
.y5_c00417{bottom:838.666667pt;}
.y4_c00417{bottom:856.666667pt;}
.y3_c00417{bottom:874.266667pt;}
.y2_c00417{bottom:891.866667pt;}
.y1_c00417{bottom:925.466667pt;}
.h3_c00417{height:48.000000pt;}
.h2_c00417{height:53.333333pt;}
.h1_c00417{height:1036.666667pt;}
.h0_c00417{height:1036.800049pt;}
.w0_c00417{width:818.559977pt;}
.w1_c00417{width:818.666667pt;}
.x0_c00417{left:0.000000pt;}
.x16_c00417{left:99.066667pt;}
.x120_c00417{left:100.266667pt;}
.x79_c00417{left:109.200000pt;}
.x5b_c00417{left:114.800000pt;}
.x9c_c00417{left:115.866667pt;}
.xa7_c00417{left:117.200000pt;}
.xd4_c00417{left:118.266667pt;}
.x65_c00417{left:122.000000pt;}
.xc7_c00417{left:124.666667pt;}
.x3_c00417{left:127.066667pt;}
.x5c_c00417{left:128.266667pt;}
.x26_c00417{left:129.866667pt;}
.xea_c00417{left:131.733333pt;}
.x88_c00417{left:132.933333pt;}
.x7a_c00417{left:135.066667pt;}
.xf0_c00417{left:137.866667pt;}
.xfc_c00417{left:140.800000pt;}
.x7b_c00417{left:142.133333pt;}
.xad_c00417{left:146.800000pt;}
.x66_c00417{left:148.266667pt;}
.xb7_c00417{left:149.733333pt;}
.x6e_c00417{left:152.000000pt;}
.x39_c00417{left:153.466667pt;}
.xe7_c00417{left:154.400000pt;}
.x4_c00417{left:158.133333pt;}
.x17_c00417{left:159.600000pt;}
.x27_c00417{left:160.933333pt;}
.x11c_c00417{left:162.266667pt;}
.x7c_c00417{left:163.466667pt;}
.x117_c00417{left:164.933333pt;}
.x48_c00417{left:166.666667pt;}
.x5_c00417{left:171.600000pt;}
.x7d_c00417{left:173.733333pt;}
.xe0_c00417{left:174.933333pt;}
.x29_c00417{left:176.933333pt;}
.xc8_c00417{left:178.400000pt;}
.x93_c00417{left:179.466667pt;}
.x67_c00417{left:181.600000pt;}
.x5d_c00417{left:182.933333pt;}
.x89_c00417{left:183.866667pt;}
.xae_c00417{left:185.866667pt;}
.x100_c00417{left:187.466667pt;}
.x4f_c00417{left:189.066667pt;}
.x6_c00417{left:190.800000pt;}
.x18_c00417{left:193.866667pt;}
.x10b_c00417{left:197.066667pt;}
.x28_c00417{left:198.000000pt;}
.x107_c00417{left:200.933333pt;}
.x50_c00417{left:202.800000pt;}
.x49_c00417{left:205.066667pt;}
.x68_c00417{left:207.200000pt;}
.x7_c00417{left:208.666667pt;}
.x3a_c00417{left:210.800000pt;}
.x19_c00417{left:213.066667pt;}
.xa2_c00417{left:219.866667pt;}
.x4a_c00417{left:221.333333pt;}
.xc9_c00417{left:224.800000pt;}
.x11d_c00417{left:226.000000pt;}
.x10c_c00417{left:228.400000pt;}
.xaf_c00417{left:230.400000pt;}
.xf1_c00417{left:231.866667pt;}
.x6f_c00417{left:232.933333pt;}
.x9d_c00417{left:234.000000pt;}
.xdd_c00417{left:235.200000pt;}
.x2a_c00417{left:236.400000pt;}
.xe1_c00417{left:238.666667pt;}
.x94_c00417{left:240.266667pt;}
.xa8_c00417{left:241.333333pt;}
.x4b_c00417{left:244.000000pt;}
.xd5_c00417{left:247.866667pt;}
.x7e_c00417{left:248.933333pt;}
.x3b_c00417{left:250.800000pt;}
.x8_c00417{left:252.133333pt;}
.x121_c00417{left:253.200000pt;}
.x108_c00417{left:255.066667pt;}
.xe2_c00417{left:256.000000pt;}
.xbe_c00417{left:258.133333pt;}
.x1a_c00417{left:259.466667pt;}
.x10d_c00417{left:260.400000pt;}
.x3c_c00417{left:264.266667pt;}
.x95_c00417{left:268.133333pt;}
.xb0_c00417{left:269.466667pt;}
.x1b_c00417{left:270.933333pt;}
.xa9_c00417{left:275.866667pt;}
.x69_c00417{left:276.933333pt;}
.x2b_c00417{left:280.266667pt;}
.xb8_c00417{left:283.733333pt;}
.xa3_c00417{left:285.466667pt;}
.x3d_c00417{left:287.333333pt;}
.xde_c00417{left:288.933333pt;}
.xf2_c00417{left:290.800000pt;}
.x4c_c00417{left:291.733333pt;}
.x111_c00417{left:293.066667pt;}
.x51_c00417{left:294.400000pt;}
.x96_c00417{left:296.266667pt;}
.xca_c00417{left:299.066667pt;}
.x9e_c00417{left:301.200000pt;}
.x1c_c00417{left:302.266667pt;}
.x8a_c00417{left:304.533333pt;}
.xeb_c00417{left:305.466667pt;}
.xf3_c00417{left:306.533333pt;}
.xd6_c00417{left:309.866667pt;}
.x3e_c00417{left:311.600000pt;}
.x97_c00417{left:312.533333pt;}
.x2c_c00417{left:314.533333pt;}
.xe3_c00417{left:318.666667pt;}
.xdf_c00417{left:319.600000pt;}
.x9_c00417{left:320.933333pt;}
.x114_c00417{left:322.533333pt;}
.x52_c00417{left:323.466667pt;}
.x8b_c00417{left:324.400000pt;}
.xcb_c00417{left:326.933333pt;}
.xf4_c00417{left:329.200000pt;}
.xd9_c00417{left:330.266667pt;}
.xa4_c00417{left:331.866667pt;}
.x2d_c00417{left:333.466667pt;}
.x53_c00417{left:336.000000pt;}
.xa_c00417{left:340.400000pt;}
.xbf_c00417{left:342.000000pt;}
.x3f_c00417{left:343.600000pt;}
.x98_c00417{left:346.800000pt;}
.x4d_c00417{left:349.066667pt;}
.x1d_c00417{left:351.600000pt;}
.xc0_c00417{left:352.533333pt;}
.x6a_c00417{left:353.466667pt;}
.x8c_c00417{left:355.466667pt;}
.xf5_c00417{left:357.066667pt;}
.x9f_c00417{left:358.133333pt;}
.x115_c00417{left:359.066667pt;}
.x1_c00417{left:360.933333pt;}
.x7f_c00417{left:363.200000pt;}
.xb_c00417{left:365.733333pt;}
.x10e_c00417{left:366.666667pt;}
.x4e_c00417{left:368.266667pt;}
.xe8_c00417{left:369.200000pt;}
.x1e_c00417{left:371.733333pt;}
.xd7_c00417{left:374.400000pt;}
.x2e_c00417{left:380.533333pt;}
.x54_c00417{left:381.733333pt;}
.xc1_c00417{left:384.533333pt;}
.xcd_c00417{left:388.533333pt;}
.x5e_c00417{left:389.733333pt;}
.x8d_c00417{left:391.600000pt;}
.x99_c00417{left:392.933333pt;}
.xa0_c00417{left:394.666667pt;}
.x40_c00417{left:396.666667pt;}
.x2f_c00417{left:397.866667pt;}
.xe9_c00417{left:400.933333pt;}
.x122_c00417{left:402.000000pt;}
.x1f_c00417{left:403.066667pt;}
.xce_c00417{left:404.266667pt;}
.x116_c00417{left:405.200000pt;}
.x101_c00417{left:406.266667pt;}
.xec_c00417{left:407.466667pt;}
.x30_c00417{left:408.800000pt;}
.xa1_c00417{left:410.666667pt;}
.x55_c00417{left:411.866667pt;}
.xda_c00417{left:413.466667pt;}
.xc_c00417{left:418.266667pt;}
.x41_c00417{left:420.933333pt;}
.x80_c00417{left:422.400000pt;}
.xfd_c00417{left:427.600000pt;}
.x8e_c00417{left:428.666667pt;}
.x103_c00417{left:429.600000pt;}
.x6b_c00417{left:430.533333pt;}
.xb1_c00417{left:432.000000pt;}
.x9a_c00417{left:432.933333pt;}
.xd_c00417{left:436.133333pt;}
.x70_c00417{left:440.800000pt;}
.xf6_c00417{left:443.066667pt;}
.x5f_c00417{left:445.466667pt;}
.x31_c00417{left:448.533333pt;}
.xe4_c00417{left:449.600000pt;}
.x42_c00417{left:450.666667pt;}
.xb9_c00417{left:454.933333pt;}
.xdb_c00417{left:456.400000pt;}
.xe_c00417{left:457.600000pt;}
.xed_c00417{left:458.666667pt;}
.x81_c00417{left:460.800000pt;}
.xb2_c00417{left:463.066667pt;}
.x8f_c00417{left:465.466667pt;}
.x20_c00417{left:467.733333pt;}
.xc2_c00417{left:469.333333pt;}
.x71_c00417{left:471.466667pt;}
.x123_c00417{left:473.066667pt;}
.x10f_c00417{left:475.733333pt;}
.x56_c00417{left:476.800000pt;}
.x109_c00417{left:478.400000pt;}
.xba_c00417{left:480.533333pt;}
.x118_c00417{left:481.466667pt;}
.xf_c00417{left:484.133333pt;}
.xa5_c00417{left:486.133333pt;}
.x82_c00417{left:487.333333pt;}
.x72_c00417{left:489.066667pt;}
.xfe_c00417{left:490.000000pt;}
.xc3_c00417{left:492.400000pt;}
.xcf_c00417{left:493.866667pt;}
.x60_c00417{left:495.733333pt;}
.x102_c00417{left:496.800000pt;}
.x10a_c00417{left:497.866667pt;}
.xbb_c00417{left:498.800000pt;}
.xf7_c00417{left:499.733333pt;}
.x21_c00417{left:502.933333pt;}
.x112_c00417{left:504.266667pt;}
.xb3_c00417{left:506.266667pt;}
.x90_c00417{left:508.000000pt;}
.x6c_c00417{left:510.533333pt;}
.x73_c00417{left:513.066667pt;}
.x32_c00417{left:515.066667pt;}
.x61_c00417{left:516.266667pt;}
.x57_c00417{left:519.066667pt;}
.x83_c00417{left:520.933333pt;}
.xc4_c00417{left:523.066667pt;}
.x119_c00417{left:524.533333pt;}
.x33_c00417{left:526.000000pt;}
.x43_c00417{left:527.733333pt;}
.x22_c00417{left:529.200000pt;}
.x10_c00417{left:530.800000pt;}
.xdc_c00417{left:532.000000pt;}
.xb4_c00417{left:535.733333pt;}
.x104_c00417{left:537.466667pt;}
.xf8_c00417{left:540.666667pt;}
.x11_c00417{left:542.000000pt;}
.x84_c00417{left:543.600000pt;}
.x74_c00417{left:548.000000pt;}
.x58_c00417{left:550.400000pt;}
.x34_c00417{left:553.466667pt;}
.xf9_c00417{left:555.733333pt;}
.x11a_c00417{left:556.800000pt;}
.xaa_c00417{left:557.866667pt;}
.xd0_c00417{left:558.800000pt;}
.xb5_c00417{left:562.000000pt;}
.xe5_c00417{left:563.866667pt;}
.x44_c00417{left:565.466667pt;}
.x75_c00417{left:566.533333pt;}
.x12_c00417{left:569.466667pt;}
.xa6_c00417{left:571.600000pt;}
.x11b_c00417{left:572.800000pt;}
.x85_c00417{left:574.933333pt;}
.x35_c00417{left:576.133333pt;}
.x45_c00417{left:578.933333pt;}
.x13_c00417{left:580.400000pt;}
.x11e_c00417{left:583.066667pt;}
.x59_c00417{left:584.933333pt;}
.x23_c00417{left:586.133333pt;}
.xee_c00417{left:587.733333pt;}
.xd1_c00417{left:589.466667pt;}
.x76_c00417{left:590.800000pt;}
.xc5_c00417{left:592.800000pt;}
.x62_c00417{left:595.333333pt;}
.x46_c00417{left:597.466667pt;}
.x113_c00417{left:599.600000pt;}
.xd2_c00417{left:600.666667pt;}
.xcc_c00417{left:601.733333pt;}
.xfa_c00417{left:603.466667pt;}
.x14_c00417{left:605.333333pt;}
.xe6_c00417{left:609.600000pt;}
.xd8_c00417{left:611.866667pt;}
.xbc_c00417{left:614.666667pt;}
.x91_c00417{left:619.066667pt;}
.xab_c00417{left:620.000000pt;}
.x6d_c00417{left:621.200000pt;}
.x105_c00417{left:622.933333pt;}
.x86_c00417{left:623.866667pt;}
.x36_c00417{left:624.800000pt;}
.x11f_c00417{left:626.933333pt;}
.xc6_c00417{left:628.933333pt;}
.xff_c00417{left:630.133333pt;}
.x24_c00417{left:634.133333pt;}
.x15_c00417{left:638.933333pt;}
.x124_c00417{left:640.400000pt;}
.xbd_c00417{left:641.866667pt;}
.x5a_c00417{left:642.800000pt;}
.xb6_c00417{left:644.533333pt;}
.x9b_c00417{left:646.133333pt;}
.x110_c00417{left:651.200000pt;}
.xd3_c00417{left:652.133333pt;}
.x63_c00417{left:653.200000pt;}
.x77_c00417{left:655.733333pt;}
.x47_c00417{left:657.333333pt;}
.x37_c00417{left:661.333333pt;}
.xac_c00417{left:662.266667pt;}
.x87_c00417{left:665.466667pt;}
.x64_c00417{left:666.666667pt;}
.x2_c00417{left:669.466667pt;}
.x92_c00417{left:671.600000pt;}
.x25_c00417{left:673.200000pt;}
.x78_c00417{left:674.666667pt;}
.xef_c00417{left:677.333333pt;}
.x38_c00417{left:678.933333pt;}
.x106_c00417{left:681.866667pt;}
.x125_c00417{left:684.533333pt;}
.xfb_c00417{left:688.933333pt;}
}





/* 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_c00418 {
    display:none;
  }
  .loading-indicator_c00418.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00418 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_c00418 { 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_c00418" -> "#page-container .classname_c00418")
 */
.pf_c00418 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00418 { /* 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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00418 { /* 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_c00418 { /* 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_c00418 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00418 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00418 {overflow:visible;}
  }
}
.c_c00418 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00418 { /* 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_c00418:after { /* webkit #35443 */
  content: '';
}
.t_c00418:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00418 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 */
}
.__c00418 { /* 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_c00418 { /* info for Javascript */
  display:none;
}
.l_c00418 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00418 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00418 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00418: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_c00418 {
    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_c00418.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00418.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_c00418 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00418{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00418;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.000000;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;}
.m33_c00418{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00418{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mac_c00418{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.maa_c00418{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m84_c00418{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m75_c00418{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00418{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m88_c00418{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m43_c00418{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00418{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m54_c00418{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m90_c00418{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m89_c00418{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00418{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m66_c00418{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00418{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00418{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00418{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00418{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m46_c00418{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00418{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mad_c00418{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00418{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m93_c00418{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma_c00418{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m35_c00418{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00418{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00418{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m85_c00418{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m94_c00418{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m71_c00418{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mab_c00418{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m39_c00418{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m56_c00418{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m42_c00418{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m41_c00418{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00418{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10_c00418{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00418{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m21_c00418{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m36_c00418{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m60_c00418{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m70_c00418{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m48_c00418{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m55_c00418{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m5_c00418{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m53_c00418{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00418{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00418{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00418{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m22_c00418{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m91_c00418{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00418{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m67_c00418{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m92_c00418{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00418{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.me_c00418{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00418{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00418{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00418{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m31_c00418{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00418{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m50_c00418{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.md_c00418{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00418{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00418{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7_c00418{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m49_c00418{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00418{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m40_c00418{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m19_c00418{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00418{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m57_c00418{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m4_c00418{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00418{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m18_c00418{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m15_c00418{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00418{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m62_c00418{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8_c00418{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00418{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00418{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m37_c00418{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m82_c00418{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11_c00418{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00418{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00418{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m74_c00418{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);}
.m9c_c00418{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m25_c00418{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m64_c00418{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m79_c00418{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m96_c00418{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m34_c00418{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00418{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00418{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m27_c00418{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m72_c00418{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m97_c00418{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00418{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m44_c00418{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00418{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2_c00418{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00418{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00418{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m47_c00418{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00418{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00418{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00418{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00418{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00418{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m80_c00418{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00418{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m32_c00418{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m23_c00418{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00418{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00418{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00418{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00418{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m38_c00418{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m77_c00418{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c00418{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m78_c00418{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m73_c00418{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m17_c00418{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m30_c00418{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00418{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00418{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m59_c00418{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m81_c00418{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00418{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00418{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m98_c00418{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20_c00418{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00418{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m14_c00418{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00418{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00418{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m99_c00418{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00418{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mf_c00418{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m63_c00418{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m51_c00418{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m12_c00418{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.mc_c00418{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00418{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00418{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00418{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m58_c00418{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m76_c00418{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m16_c00418{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m87_c00418{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m65_c00418{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m83_c00418{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00418{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00418{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m6_c00418{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m86_c00418{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00418{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m29_c00418{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00418{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m13_c00418{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m28_c00418{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00418{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00418{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00418{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m69_c00418{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00418{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m1_c00418{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m95_c00418{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m61_c00418{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mb_c00418{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m68_c00418{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00418{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.ls0_c00418{letter-spacing:0.000000px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{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__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb_c00418{word-spacing:0.000000px;}
.ws0_c00418{word-spacing:1.500000px;}
.ws5_c00418{word-spacing:2.760118px;}
.wsa_c00418{word-spacing:3.557721px;}
.ws3_c00418{word-spacing:4.265911px;}
.ws1_c00418{word-spacing:5.750000px;}
.ws9_c00418{word-spacing:7.375000px;}
.ws7_c00418{word-spacing:7.750000px;}
.ws2_c00418{word-spacing:12.519294px;}
.ws4_c00418{word-spacing:15.935834px;}
.ws6_c00418{word-spacing:19.000000px;}
.ws8_c00418{word-spacing:80.939759px;}
.fc0_c00418{color:transparent;}
.fs0_c00418{font-size:54.000000px;}
.y0_c00418{bottom:0.000000px;}
.y2c_c00418{bottom:148.650000px;}
.y2b_c00418{bottom:164.100000px;}
.y2a_c00418{bottom:191.550000px;}
.y29_c00418{bottom:211.650000px;}
.y28_c00418{bottom:231.450000px;}
.y27_c00418{bottom:251.250000px;}
.y26_c00418{bottom:274.350000px;}
.y25_c00418{bottom:291.300000px;}
.y24_c00418{bottom:311.100000px;}
.y23_c00418{bottom:330.900000px;}
.y22_c00418{bottom:351.000000px;}
.y21_c00418{bottom:371.100000px;}
.y20_c00418{bottom:391.200000px;}
.y1f_c00418{bottom:411.000000px;}
.y1e_c00418{bottom:430.800000px;}
.y1d_c00418{bottom:450.900000px;}
.y1c_c00418{bottom:470.700000px;}
.y1b_c00418{bottom:490.500000px;}
.y1a_c00418{bottom:510.300000px;}
.y19_c00418{bottom:530.400000px;}
.y18_c00418{bottom:550.200000px;}
.y17_c00418{bottom:570.300000px;}
.y16_c00418{bottom:590.400000px;}
.y15_c00418{bottom:611.100000px;}
.y14_c00418{bottom:630.900000px;}
.y13_c00418{bottom:651.000000px;}
.y12_c00418{bottom:671.100000px;}
.y11_c00418{bottom:691.200000px;}
.y10_c00418{bottom:711.300000px;}
.yf_c00418{bottom:731.100000px;}
.ye_c00418{bottom:751.200000px;}
.yd_c00418{bottom:771.000000px;}
.yc_c00418{bottom:791.100000px;}
.yb_c00418{bottom:811.200000px;}
.ya_c00418{bottom:831.000000px;}
.y9_c00418{bottom:850.800000px;}
.y8_c00418{bottom:870.900000px;}
.y7_c00418{bottom:890.700000px;}
.y6_c00418{bottom:909.000000px;}
.y5_c00418{bottom:942.750000px;}
.y4_c00418{bottom:964.350000px;}
.y3_c00418{bottom:984.900000px;}
.y2_c00418{bottom:1004.700000px;}
.y1_c00418{bottom:1041.900000px;}
.h2_c00418{height:54.000000px;}
.h1_c00418{height:1166.250000px;}
.h0_c00418{height:1166.400056px;}
.w0_c00418{width:920.879975px;}
.w1_c00418{width:921.000000px;}
.x0_c00418{left:0.000000px;}
.x12b_c00418{left:141.150000px;}
.x3_c00418{left:142.950000px;}
.x1_c00418{left:144.000000px;}
.x11d_c00418{left:145.200000px;}
.xc1_c00418{left:163.050000px;}
.x52_c00418{left:164.250000px;}
.x10c_c00418{left:166.500000px;}
.x65_c00418{left:169.650000px;}
.x49_c00418{left:171.750000px;}
.x4_c00418{left:173.250000px;}
.x34_c00418{left:175.650000px;}
.x3d_c00418{left:177.750000px;}
.x20_c00418{left:179.400000px;}
.x117_c00418{left:180.750000px;}
.x30_c00418{left:181.950000px;}
.x9c_c00418{left:185.100000px;}
.xf6_c00418{left:186.600000px;}
.x5_c00418{left:187.950000px;}
.xa6_c00418{left:189.150000px;}
.x15_c00418{left:191.400000px;}
.x53_c00418{left:194.100000px;}
.xaf_c00418{left:197.550000px;}
.x66_c00418{left:198.750000px;}
.x128_c00418{left:200.700000px;}
.x71_c00418{left:202.050000px;}
.xc2_c00418{left:203.400000px;}
.x83_c00418{left:204.750000px;}
.x31_c00418{left:206.850000px;}
.xba_c00418{left:209.850000px;}
.x16_c00418{left:211.200000px;}
.xa7_c00418{left:214.350000px;}
.xce_c00418{left:215.400000px;}
.x21_c00418{left:217.950000px;}
.x137_c00418{left:220.350000px;}
.x10d_c00418{left:221.850000px;}
.xb0_c00418{left:223.500000px;}
.x111_c00418{left:224.550000px;}
.xbb_c00418{left:227.550000px;}
.x11e_c00418{left:229.500000px;}
.x67_c00418{left:230.850000px;}
.xd9_c00418{left:232.200000px;}
.xc3_c00418{left:236.100000px;}
.x22_c00418{left:238.050000px;}
.x6_c00418{left:242.250000px;}
.x35_c00418{left:245.100000px;}
.x8e_c00418{left:246.750000px;}
.xc4_c00418{left:250.950000px;}
.x68_c00418{left:252.150000px;}
.x3e_c00418{left:253.650000px;}
.x118_c00418{left:257.550000px;}
.x105_c00418{left:258.600000px;}
.x23_c00418{left:260.400000px;}
.xa8_c00418{left:262.650000px;}
.xec_c00418{left:263.850000px;}
.x54_c00418{left:266.100000px;}
.x9d_c00418{left:270.150000px;}
.xc5_c00418{left:271.500000px;}
.x12f_c00418{left:272.550000px;}
.xf7_c00418{left:274.200000px;}
.xe4_c00418{left:275.550000px;}
.x8f_c00418{left:278.850000px;}
.x3f_c00418{left:280.350000px;}
.x106_c00418{left:282.300000px;}
.x7_c00418{left:283.650000px;}
.x32_c00418{left:285.300000px;}
.x17_c00418{left:286.500000px;}
.xed_c00418{left:289.350000px;}
.xb1_c00418{left:292.950000px;}
.x112_c00418{left:295.800000px;}
.x123_c00418{left:297.750000px;}
.x36_c00418{left:299.400000px;}
.x133_c00418{left:301.200000px;}
.x72_c00418{left:302.550000px;}
.xb2_c00418{left:304.050000px;}
.x24_c00418{left:305.700000px;}
.xda_c00418{left:309.300000px;}
.x11f_c00418{left:310.500000px;}
.x5d_c00418{left:312.900000px;}
.x18_c00418{left:315.300000px;}
.x90_c00418{left:316.350000px;}
.x40_c00418{left:318.450000px;}
.x139_c00418{left:319.950000px;}
.x10e_c00418{left:322.350000px;}
.x8_c00418{left:324.300000px;}
.x130_c00418{left:325.500000px;}
.x25_c00418{left:327.300000px;}
.x9e_c00418{left:328.500000px;}
.x4a_c00418{left:332.250000px;}
.xb3_c00418{left:335.400000px;}
.x84_c00418{left:336.450000px;}
.xbc_c00418{left:337.950000px;}
.x73_c00418{left:340.050000px;}
.x120_c00418{left:341.850000px;}
.x13a_c00418{left:343.350000px;}
.x119_c00418{left:344.700000px;}
.x37_c00418{left:345.900000px;}
.x26_c00418{left:347.400000px;}
.xfe_c00418{left:348.600000px;}
.x7b_c00418{left:349.800000px;}
.x9_c00418{left:351.600000px;}
.x69_c00418{left:353.250000px;}
.x33_c00418{left:355.200000px;}
.x41_c00418{left:357.300000px;}
.xa9_c00418{left:358.800000px;}
.x4b_c00418{left:360.300000px;}
.x124_c00418{left:361.500000px;}
.x91_c00418{left:364.200000px;}
.xff_c00418{left:366.600000px;}
.xe5_c00418{left:368.850000px;}
.x113_c00418{left:371.850000px;}
.x107_c00418{left:373.050000px;}
.x138_c00418{left:376.350000px;}
.x19_c00418{left:378.600000px;}
.xdb_c00418{left:381.600000px;}
.x85_c00418{left:383.250000px;}
.x27_c00418{left:384.450000px;}
.xcf_c00418{left:388.050000px;}
.x38_c00418{left:390.900000px;}
.xc6_c00418{left:393.150000px;}
.xd2_c00418{left:395.100000px;}
.xdc_c00418{left:396.300000px;}
.x11a_c00418{left:397.950000px;}
.xa_c00418{left:399.450000px;}
.x125_c00418{left:402.150000px;}
.xaa_c00418{left:404.100000px;}
.x74_c00418{left:405.600000px;}
.x100_c00418{left:407.250000px;}
.x92_c00418{left:408.450000px;}
.x6a_c00418{left:410.100000px;}
.x86_c00418{left:411.300000px;}
.xf8_c00418{left:413.850000px;}
.x28_c00418{left:416.550000px;}
.x42_c00418{left:418.500000px;}
.xe6_c00418{left:419.550000px;}
.xc7_c00418{left:421.200000px;}
.xee_c00418{left:422.550000px;}
.x114_c00418{left:424.800000px;}
.x11b_c00418{left:426.450000px;}
.x131_c00418{left:428.850000px;}
.x7c_c00418{left:430.800000px;}
.x5e_c00418{left:433.500000px;}
.x101_c00418{left:436.350000px;}
.xef_c00418{left:439.500000px;}
.x2_c00418{left:441.750000px;}
.x9f_c00418{left:445.500000px;}
.xd3_c00418{left:446.550000px;}
.x4c_c00418{left:448.500000px;}
.x108_c00418{left:450.150000px;}
.xdd_c00418{left:451.350000px;}
.x1a_c00418{left:454.200000px;}
.x55_c00418{left:457.200000px;}
.x134_c00418{left:459.600000px;}
.x11c_c00418{left:460.650000px;}
.x6b_c00418{left:462.300000px;}
.x87_c00418{left:464.250000px;}
.x93_c00418{left:467.100000px;}
.xde_c00418{left:468.300000px;}
.xb4_c00418{left:469.350000px;}
.xb_c00418{left:471.450000px;}
.x29_c00418{left:472.650000px;}
.x39_c00418{left:475.950000px;}
.xd4_c00418{left:477.450000px;}
.x7d_c00418{left:479.400000px;}
.x129_c00418{left:480.450000px;}
.xf9_c00418{left:481.950000px;}
.xab_c00418{left:483.000000px;}
.x6c_c00418{left:484.200000px;}
.x75_c00418{left:485.850000px;}
.x13b_c00418{left:488.400000px;}
.x121_c00418{left:490.200000px;}
.xdf_c00418{left:494.250000px;}
.xf0_c00418{left:495.600000px;}
.x1b_c00418{left:498.450000px;}
.xe0_c00418{left:500.700000px;}
.x88_c00418{left:502.350000px;}
.x56_c00418{left:504.300000px;}
.xe7_c00418{left:506.400000px;}
.xc_c00418{left:507.450000px;}
.x94_c00418{left:509.250000px;}
.xb5_c00418{left:511.500000px;}
.x3a_c00418{left:512.700000px;}
.x43_c00418{left:514.650000px;}
.xc8_c00418{left:518.400000px;}
.x4d_c00418{left:522.000000px;}
.x57_c00418{left:524.100000px;}
.x12c_c00418{left:528.150000px;}
.xe1_c00418{left:529.800000px;}
.x44_c00418{left:531.150000px;}
.xd5_c00418{left:533.250000px;}
.xc9_c00418{left:535.350000px;}
.x95_c00418{left:537.000000px;}
.xd_c00418{left:538.800000px;}
.xd0_c00418{left:540.300000px;}
.x7e_c00418{left:543.450000px;}
.xfa_c00418{left:544.650000px;}
.xca_c00418{left:547.200000px;}
.xe8_c00418{left:550.650000px;}
.x4e_c00418{left:551.850000px;}
.x96_c00418{left:553.200000px;}
.x126_c00418{left:556.950000px;}
.xf1_c00418{left:558.300000px;}
.x10f_c00418{left:561.750000px;}
.x2a_c00418{left:562.950000px;}
.x45_c00418{left:564.600000px;}
.xac_c00418{left:567.300000px;}
.x76_c00418{left:568.350000px;}
.x12d_c00418{left:569.550000px;}
.xa0_c00418{left:570.750000px;}
.xe_c00418{left:572.700000px;}
.xd6_c00418{left:574.350000px;}
.xbd_c00418{left:575.850000px;}
.x5f_c00418{left:579.300000px;}
.x135_c00418{left:583.050000px;}
.x97_c00418{left:584.100000px;}
.x89_c00418{left:585.450000px;}
.x3b_c00418{left:587.550000px;}
.xe9_c00418{left:589.500000px;}
.x13c_c00418{left:591.300000px;}
.xa1_c00418{left:592.350000px;}
.xf_c00418{left:593.550000px;}
.xbe_c00418{left:595.350000px;}
.x60_c00418{left:597.000000px;}
.x7f_c00418{left:599.250000px;}
.x8a_c00418{left:603.450000px;}
.x98_c00418{left:604.950000px;}
.x1c_c00418{left:606.750000px;}
.x132_c00418{left:607.800000px;}
.x6d_c00418{left:609.450000px;}
.xf2_c00418{left:610.800000px;}
.xd7_c00418{left:613.650000px;}
.x115_c00418{left:615.300000px;}
.x102_c00418{left:617.700000px;}
.x61_c00418{left:618.900000px;}
.x2b_c00418{left:621.300000px;}
.x77_c00418{left:622.650000px;}
.xb6_c00418{left:624.150000px;}
.x3c_c00418{left:630.450000px;}
.xa2_c00418{left:631.950000px;}
.x99_c00418{left:633.000000px;}
.x1d_c00418{left:634.800000px;}
.xb7_c00418{left:636.000000px;}
.xfb_c00418{left:640.800000px;}
.x58_c00418{left:642.150000px;}
.xd1_c00418{left:646.500000px;}
.xea_c00418{left:648.900000px;}
.x80_c00418{left:649.950000px;}
.x8b_c00418{left:651.750000px;}
.x2c_c00418{left:653.700000px;}
.x116_c00418{left:655.350000px;}
.x46_c00418{left:661.500000px;}
.x4f_c00418{left:662.850000px;}
.xa3_c00418{left:664.650000px;}
.xb8_c00418{left:666.900000px;}
.x136_c00418{left:668.700000px;}
.x10_c00418{left:670.950000px;}
.x1e_c00418{left:675.900000px;}
.x78_c00418{left:677.700000px;}
.x6e_c00418{left:679.350000px;}
.xad_c00418{left:680.400000px;}
.x109_c00418{left:681.600000px;}
.x62_c00418{left:683.700000px;}
.xeb_c00418{left:685.650000px;}
.x47_c00418{left:687.450000px;}
.x11_c00418{left:690.750000px;}
.xbf_c00418{left:692.850000px;}
.xcb_c00418{left:694.500000px;}
.x59_c00418{left:695.850000px;}
.xe2_c00418{left:700.500000px;}
.x8c_c00418{left:702.150000px;}
.xf3_c00418{left:703.350000px;}
.xa4_c00418{left:706.050000px;}
.x6f_c00418{left:707.850000px;}
.x81_c00418{left:708.900000px;}
.x9a_c00418{left:710.400000px;}
.x2d_c00418{left:712.050000px;}
.x63_c00418{left:713.250000px;}
.x50_c00418{left:716.100000px;}
.xfc_c00418{left:717.900000px;}
.x12_c00418{left:719.250000px;}
.xe3_c00418{left:720.600000px;}
.x5a_c00418{left:722.850000px;}
.xf4_c00418{left:725.250000px;}
.xa5_c00418{left:726.600000px;}
.x8d_c00418{left:729.900000px;}
.x48_c00418{left:730.950000px;}
.x82_c00418{left:732.600000px;}
.x103_c00418{left:734.100000px;}
.x122_c00418{left:736.800000px;}
.xcc_c00418{left:738.450000px;}
.xfd_c00418{left:741.300000px;}
.x5b_c00418{left:742.650000px;}
.x127_c00418{left:744.450000px;}
.x70_c00418{left:745.650000px;}
.xc0_c00418{left:751.950000px;}
.x79_c00418{left:753.600000px;}
.x51_c00418{left:756.750000px;}
.x13_c00418{left:758.100000px;}
.x12e_c00418{left:759.300000px;}
.x9b_c00418{left:761.100000px;}
.xd8_c00418{left:765.600000px;}
.x10a_c00418{left:766.950000px;}
.x5c_c00418{left:768.150000px;}
.x2e_c00418{left:769.350000px;}
.x1f_c00418{left:773.400000px;}
.x64_c00418{left:776.550000px;}
.x14_c00418{left:777.900000px;}
.xb9_c00418{left:779.700000px;}
.x7a_c00418{left:782.100000px;}
.xae_c00418{left:783.300000px;}
.xcd_c00418{left:785.250000px;}
.x12a_c00418{left:786.300000px;}
.x2f_c00418{left:788.100000px;}
.xf5_c00418{left:792.150000px;}
.x110_c00418{left:796.800000px;}
.x104_c00418{left:798.600000px;}
.x10b_c00418{left:806.550000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.wsb_c00418{word-spacing:0.000000pt;}
.ws0_c00418{word-spacing:1.333333pt;}
.ws5_c00418{word-spacing:2.453439pt;}
.wsa_c00418{word-spacing:3.162419pt;}
.ws3_c00418{word-spacing:3.791921pt;}
.ws1_c00418{word-spacing:5.111111pt;}
.ws9_c00418{word-spacing:6.555556pt;}
.ws7_c00418{word-spacing:6.888889pt;}
.ws2_c00418{word-spacing:11.128262pt;}
.ws4_c00418{word-spacing:14.165186pt;}
.ws6_c00418{word-spacing:16.888889pt;}
.ws8_c00418{word-spacing:71.946452pt;}
.fs0_c00418{font-size:48.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y2c_c00418{bottom:132.133333pt;}
.y2b_c00418{bottom:145.866667pt;}
.y2a_c00418{bottom:170.266667pt;}
.y29_c00418{bottom:188.133333pt;}
.y28_c00418{bottom:205.733333pt;}
.y27_c00418{bottom:223.333333pt;}
.y26_c00418{bottom:243.866667pt;}
.y25_c00418{bottom:258.933333pt;}
.y24_c00418{bottom:276.533333pt;}
.y23_c00418{bottom:294.133333pt;}
.y22_c00418{bottom:312.000000pt;}
.y21_c00418{bottom:329.866667pt;}
.y20_c00418{bottom:347.733333pt;}
.y1f_c00418{bottom:365.333333pt;}
.y1e_c00418{bottom:382.933333pt;}
.y1d_c00418{bottom:400.800000pt;}
.y1c_c00418{bottom:418.400000pt;}
.y1b_c00418{bottom:436.000000pt;}
.y1a_c00418{bottom:453.600000pt;}
.y19_c00418{bottom:471.466667pt;}
.y18_c00418{bottom:489.066667pt;}
.y17_c00418{bottom:506.933333pt;}
.y16_c00418{bottom:524.800000pt;}
.y15_c00418{bottom:543.200000pt;}
.y14_c00418{bottom:560.800000pt;}
.y13_c00418{bottom:578.666667pt;}
.y12_c00418{bottom:596.533333pt;}
.y11_c00418{bottom:614.400000pt;}
.y10_c00418{bottom:632.266667pt;}
.yf_c00418{bottom:649.866667pt;}
.ye_c00418{bottom:667.733333pt;}
.yd_c00418{bottom:685.333333pt;}
.yc_c00418{bottom:703.200000pt;}
.yb_c00418{bottom:721.066667pt;}
.ya_c00418{bottom:738.666667pt;}
.y9_c00418{bottom:756.266667pt;}
.y8_c00418{bottom:774.133333pt;}
.y7_c00418{bottom:791.733333pt;}
.y6_c00418{bottom:808.000000pt;}
.y5_c00418{bottom:838.000000pt;}
.y4_c00418{bottom:857.200000pt;}
.y3_c00418{bottom:875.466667pt;}
.y2_c00418{bottom:893.066667pt;}
.y1_c00418{bottom:926.133333pt;}
.h2_c00418{height:48.000000pt;}
.h1_c00418{height:1036.666667pt;}
.h0_c00418{height:1036.800049pt;}
.w0_c00418{width:818.559977pt;}
.w1_c00418{width:818.666667pt;}
.x0_c00418{left:0.000000pt;}
.x12b_c00418{left:125.466667pt;}
.x3_c00418{left:127.066667pt;}
.x1_c00418{left:128.000000pt;}
.x11d_c00418{left:129.066667pt;}
.xc1_c00418{left:144.933333pt;}
.x52_c00418{left:146.000000pt;}
.x10c_c00418{left:148.000000pt;}
.x65_c00418{left:150.800000pt;}
.x49_c00418{left:152.666667pt;}
.x4_c00418{left:154.000000pt;}
.x34_c00418{left:156.133333pt;}
.x3d_c00418{left:158.000000pt;}
.x20_c00418{left:159.466667pt;}
.x117_c00418{left:160.666667pt;}
.x30_c00418{left:161.733333pt;}
.x9c_c00418{left:164.533333pt;}
.xf6_c00418{left:165.866667pt;}
.x5_c00418{left:167.066667pt;}
.xa6_c00418{left:168.133333pt;}
.x15_c00418{left:170.133333pt;}
.x53_c00418{left:172.533333pt;}
.xaf_c00418{left:175.600000pt;}
.x66_c00418{left:176.666667pt;}
.x128_c00418{left:178.400000pt;}
.x71_c00418{left:179.600000pt;}
.xc2_c00418{left:180.800000pt;}
.x83_c00418{left:182.000000pt;}
.x31_c00418{left:183.866667pt;}
.xba_c00418{left:186.533333pt;}
.x16_c00418{left:187.733333pt;}
.xa7_c00418{left:190.533333pt;}
.xce_c00418{left:191.466667pt;}
.x21_c00418{left:193.733333pt;}
.x137_c00418{left:195.866667pt;}
.x10d_c00418{left:197.200000pt;}
.xb0_c00418{left:198.666667pt;}
.x111_c00418{left:199.600000pt;}
.xbb_c00418{left:202.266667pt;}
.x11e_c00418{left:204.000000pt;}
.x67_c00418{left:205.200000pt;}
.xd9_c00418{left:206.400000pt;}
.xc3_c00418{left:209.866667pt;}
.x22_c00418{left:211.600000pt;}
.x6_c00418{left:215.333333pt;}
.x35_c00418{left:217.866667pt;}
.x8e_c00418{left:219.333333pt;}
.xc4_c00418{left:223.066667pt;}
.x68_c00418{left:224.133333pt;}
.x3e_c00418{left:225.466667pt;}
.x118_c00418{left:228.933333pt;}
.x105_c00418{left:229.866667pt;}
.x23_c00418{left:231.466667pt;}
.xa8_c00418{left:233.466667pt;}
.xec_c00418{left:234.533333pt;}
.x54_c00418{left:236.533333pt;}
.x9d_c00418{left:240.133333pt;}
.xc5_c00418{left:241.333333pt;}
.x12f_c00418{left:242.266667pt;}
.xf7_c00418{left:243.733333pt;}
.xe4_c00418{left:244.933333pt;}
.x8f_c00418{left:247.866667pt;}
.x3f_c00418{left:249.200000pt;}
.x106_c00418{left:250.933333pt;}
.x7_c00418{left:252.133333pt;}
.x32_c00418{left:253.600000pt;}
.x17_c00418{left:254.666667pt;}
.xed_c00418{left:257.200000pt;}
.xb1_c00418{left:260.400000pt;}
.x112_c00418{left:262.933333pt;}
.x123_c00418{left:264.666667pt;}
.x36_c00418{left:266.133333pt;}
.x133_c00418{left:267.733333pt;}
.x72_c00418{left:268.933333pt;}
.xb2_c00418{left:270.266667pt;}
.x24_c00418{left:271.733333pt;}
.xda_c00418{left:274.933333pt;}
.x11f_c00418{left:276.000000pt;}
.x5d_c00418{left:278.133333pt;}
.x18_c00418{left:280.266667pt;}
.x90_c00418{left:281.200000pt;}
.x40_c00418{left:283.066667pt;}
.x139_c00418{left:284.400000pt;}
.x10e_c00418{left:286.533333pt;}
.x8_c00418{left:288.266667pt;}
.x130_c00418{left:289.333333pt;}
.x25_c00418{left:290.933333pt;}
.x9e_c00418{left:292.000000pt;}
.x4a_c00418{left:295.333333pt;}
.xb3_c00418{left:298.133333pt;}
.x84_c00418{left:299.066667pt;}
.xbc_c00418{left:300.400000pt;}
.x73_c00418{left:302.266667pt;}
.x120_c00418{left:303.866667pt;}
.x13a_c00418{left:305.200000pt;}
.x119_c00418{left:306.400000pt;}
.x37_c00418{left:307.466667pt;}
.x26_c00418{left:308.800000pt;}
.xfe_c00418{left:309.866667pt;}
.x7b_c00418{left:310.933333pt;}
.x9_c00418{left:312.533333pt;}
.x69_c00418{left:314.000000pt;}
.x33_c00418{left:315.733333pt;}
.x41_c00418{left:317.600000pt;}
.xa9_c00418{left:318.933333pt;}
.x4b_c00418{left:320.266667pt;}
.x124_c00418{left:321.333333pt;}
.x91_c00418{left:323.733333pt;}
.xff_c00418{left:325.866667pt;}
.xe5_c00418{left:327.866667pt;}
.x113_c00418{left:330.533333pt;}
.x107_c00418{left:331.600000pt;}
.x138_c00418{left:334.533333pt;}
.x19_c00418{left:336.533333pt;}
.xdb_c00418{left:339.200000pt;}
.x85_c00418{left:340.666667pt;}
.x27_c00418{left:341.733333pt;}
.xcf_c00418{left:344.933333pt;}
.x38_c00418{left:347.466667pt;}
.xc6_c00418{left:349.466667pt;}
.xd2_c00418{left:351.200000pt;}
.xdc_c00418{left:352.266667pt;}
.x11a_c00418{left:353.733333pt;}
.xa_c00418{left:355.066667pt;}
.x125_c00418{left:357.466667pt;}
.xaa_c00418{left:359.200000pt;}
.x74_c00418{left:360.533333pt;}
.x100_c00418{left:362.000000pt;}
.x92_c00418{left:363.066667pt;}
.x6a_c00418{left:364.533333pt;}
.x86_c00418{left:365.600000pt;}
.xf8_c00418{left:367.866667pt;}
.x28_c00418{left:370.266667pt;}
.x42_c00418{left:372.000000pt;}
.xe6_c00418{left:372.933333pt;}
.xc7_c00418{left:374.400000pt;}
.xee_c00418{left:375.600000pt;}
.x114_c00418{left:377.600000pt;}
.x11b_c00418{left:379.066667pt;}
.x131_c00418{left:381.200000pt;}
.x7c_c00418{left:382.933333pt;}
.x5e_c00418{left:385.333333pt;}
.x101_c00418{left:387.866667pt;}
.xef_c00418{left:390.666667pt;}
.x2_c00418{left:392.666667pt;}
.x9f_c00418{left:396.000000pt;}
.xd3_c00418{left:396.933333pt;}
.x4c_c00418{left:398.666667pt;}
.x108_c00418{left:400.133333pt;}
.xdd_c00418{left:401.200000pt;}
.x1a_c00418{left:403.733333pt;}
.x55_c00418{left:406.400000pt;}
.x134_c00418{left:408.533333pt;}
.x11c_c00418{left:409.466667pt;}
.x6b_c00418{left:410.933333pt;}
.x87_c00418{left:412.666667pt;}
.x93_c00418{left:415.200000pt;}
.xde_c00418{left:416.266667pt;}
.xb4_c00418{left:417.200000pt;}
.xb_c00418{left:419.066667pt;}
.x29_c00418{left:420.133333pt;}
.x39_c00418{left:423.066667pt;}
.xd4_c00418{left:424.400000pt;}
.x7d_c00418{left:426.133333pt;}
.x129_c00418{left:427.066667pt;}
.xf9_c00418{left:428.400000pt;}
.xab_c00418{left:429.333333pt;}
.x6c_c00418{left:430.400000pt;}
.x75_c00418{left:431.866667pt;}
.x13b_c00418{left:434.133333pt;}
.x121_c00418{left:435.733333pt;}
.xdf_c00418{left:439.333333pt;}
.xf0_c00418{left:440.533333pt;}
.x1b_c00418{left:443.066667pt;}
.xe0_c00418{left:445.066667pt;}
.x88_c00418{left:446.533333pt;}
.x56_c00418{left:448.266667pt;}
.xe7_c00418{left:450.133333pt;}
.xc_c00418{left:451.066667pt;}
.x94_c00418{left:452.666667pt;}
.xb5_c00418{left:454.666667pt;}
.x3a_c00418{left:455.733333pt;}
.x43_c00418{left:457.466667pt;}
.xc8_c00418{left:460.800000pt;}
.x4d_c00418{left:464.000000pt;}
.x57_c00418{left:465.866667pt;}
.x12c_c00418{left:469.466667pt;}
.xe1_c00418{left:470.933333pt;}
.x44_c00418{left:472.133333pt;}
.xd5_c00418{left:474.000000pt;}
.xc9_c00418{left:475.866667pt;}
.x95_c00418{left:477.333333pt;}
.xd_c00418{left:478.933333pt;}
.xd0_c00418{left:480.266667pt;}
.x7e_c00418{left:483.066667pt;}
.xfa_c00418{left:484.133333pt;}
.xca_c00418{left:486.400000pt;}
.xe8_c00418{left:489.466667pt;}
.x4e_c00418{left:490.533333pt;}
.x96_c00418{left:491.733333pt;}
.x126_c00418{left:495.066667pt;}
.xf1_c00418{left:496.266667pt;}
.x10f_c00418{left:499.333333pt;}
.x2a_c00418{left:500.400000pt;}
.x45_c00418{left:501.866667pt;}
.xac_c00418{left:504.266667pt;}
.x76_c00418{left:505.200000pt;}
.x12d_c00418{left:506.266667pt;}
.xa0_c00418{left:507.333333pt;}
.xe_c00418{left:509.066667pt;}
.xd6_c00418{left:510.533333pt;}
.xbd_c00418{left:511.866667pt;}
.x5f_c00418{left:514.933333pt;}
.x135_c00418{left:518.266667pt;}
.x97_c00418{left:519.200000pt;}
.x89_c00418{left:520.400000pt;}
.x3b_c00418{left:522.266667pt;}
.xe9_c00418{left:524.000000pt;}
.x13c_c00418{left:525.600000pt;}
.xa1_c00418{left:526.533333pt;}
.xf_c00418{left:527.600000pt;}
.xbe_c00418{left:529.200000pt;}
.x60_c00418{left:530.666667pt;}
.x7f_c00418{left:532.666667pt;}
.x8a_c00418{left:536.400000pt;}
.x98_c00418{left:537.733333pt;}
.x1c_c00418{left:539.333333pt;}
.x132_c00418{left:540.266667pt;}
.x6d_c00418{left:541.733333pt;}
.xf2_c00418{left:542.933333pt;}
.xd7_c00418{left:545.466667pt;}
.x115_c00418{left:546.933333pt;}
.x102_c00418{left:549.066667pt;}
.x61_c00418{left:550.133333pt;}
.x2b_c00418{left:552.266667pt;}
.x77_c00418{left:553.466667pt;}
.xb6_c00418{left:554.800000pt;}
.x3c_c00418{left:560.400000pt;}
.xa2_c00418{left:561.733333pt;}
.x99_c00418{left:562.666667pt;}
.x1d_c00418{left:564.266667pt;}
.xb7_c00418{left:565.333333pt;}
.xfb_c00418{left:569.600000pt;}
.x58_c00418{left:570.800000pt;}
.xd1_c00418{left:574.666667pt;}
.xea_c00418{left:576.800000pt;}
.x80_c00418{left:577.733333pt;}
.x8b_c00418{left:579.333333pt;}
.x2c_c00418{left:581.066667pt;}
.x116_c00418{left:582.533333pt;}
.x46_c00418{left:588.000000pt;}
.x4f_c00418{left:589.200000pt;}
.xa3_c00418{left:590.800000pt;}
.xb8_c00418{left:592.800000pt;}
.x136_c00418{left:594.400000pt;}
.x10_c00418{left:596.400000pt;}
.x1e_c00418{left:600.800000pt;}
.x78_c00418{left:602.400000pt;}
.x6e_c00418{left:603.866667pt;}
.xad_c00418{left:604.800000pt;}
.x109_c00418{left:605.866667pt;}
.x62_c00418{left:607.733333pt;}
.xeb_c00418{left:609.466667pt;}
.x47_c00418{left:611.066667pt;}
.x11_c00418{left:614.000000pt;}
.xbf_c00418{left:615.866667pt;}
.xcb_c00418{left:617.333333pt;}
.x59_c00418{left:618.533333pt;}
.xe2_c00418{left:622.666667pt;}
.x8c_c00418{left:624.133333pt;}
.xf3_c00418{left:625.200000pt;}
.xa4_c00418{left:627.600000pt;}
.x6f_c00418{left:629.200000pt;}
.x81_c00418{left:630.133333pt;}
.x9a_c00418{left:631.466667pt;}
.x2d_c00418{left:632.933333pt;}
.x63_c00418{left:634.000000pt;}
.x50_c00418{left:636.533333pt;}
.xfc_c00418{left:638.133333pt;}
.x12_c00418{left:639.333333pt;}
.xe3_c00418{left:640.533333pt;}
.x5a_c00418{left:642.533333pt;}
.xf4_c00418{left:644.666667pt;}
.xa5_c00418{left:645.866667pt;}
.x8d_c00418{left:648.800000pt;}
.x48_c00418{left:649.733333pt;}
.x82_c00418{left:651.200000pt;}
.x103_c00418{left:652.533333pt;}
.x122_c00418{left:654.933333pt;}
.xcc_c00418{left:656.400000pt;}
.xfd_c00418{left:658.933333pt;}
.x5b_c00418{left:660.133333pt;}
.x127_c00418{left:661.733333pt;}
.x70_c00418{left:662.800000pt;}
.xc0_c00418{left:668.400000pt;}
.x79_c00418{left:669.866667pt;}
.x51_c00418{left:672.666667pt;}
.x13_c00418{left:673.866667pt;}
.x12e_c00418{left:674.933333pt;}
.x9b_c00418{left:676.533333pt;}
.xd8_c00418{left:680.533333pt;}
.x10a_c00418{left:681.733333pt;}
.x5c_c00418{left:682.800000pt;}
.x2e_c00418{left:683.866667pt;}
.x1f_c00418{left:687.466667pt;}
.x64_c00418{left:690.266667pt;}
.x14_c00418{left:691.466667pt;}
.xb9_c00418{left:693.066667pt;}
.x7a_c00418{left:695.200000pt;}
.xae_c00418{left:696.266667pt;}
.xcd_c00418{left:698.000000pt;}
.x12a_c00418{left:698.933333pt;}
.x2f_c00418{left:700.533333pt;}
.xf5_c00418{left:704.133333pt;}
.x110_c00418{left:708.266667pt;}
.x104_c00418{left:709.866667pt;}
.x10b_c00418{left:716.933333pt;}
}





/* 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_c00419 {
    display:none;
  }
  .loading-indicator_c00419.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00419 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_c00419 { 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_c00419" -> "#page-container .classname_c00419")
 */
.pf_c00419 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00419 { /* 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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00419 { /* 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_c00419 { /* 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_c00419 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00419 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00419 {overflow:visible;}
  }
}
.c_c00419 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00419 { /* 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_c00419:after { /* webkit #35443 */
  content: '';
}
.t_c00419:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00419 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 */
}
.__c00419 { /* 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_c00419 { /* info for Javascript */
  display:none;
}
.l_c00419 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00419 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00419 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00419: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_c00419 {
    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_c00419.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00419.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_c00419 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00419{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00419;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.000000;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;}
.m1_c00419{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8_c00419{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m4_c00419{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00419{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{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__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-3.333333px;}
.ws1_c00419{word-spacing:0.000000px;}
.fc0_c00419{color:transparent;}
.fs0_c00419{font-size:24.000000px;}
.fs1_c00419{font-size:30.000000px;}
.y0_c00419{bottom:0.000000px;}
.y2_c00419{bottom:34.200000px;}
.y1_c00419{bottom:606.300000px;}
.h2_c00419{height:24.000000px;}
.h3_c00419{height:30.000000px;}
.h1_c00419{height:1166.250000px;}
.h0_c00419{height:1166.400056px;}
.w0_c00419{width:920.879975px;}
.w1_c00419{width:921.000000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:802.500000px;}
.x5_c00419{left:810.300000px;}
.x2_c00419{left:815.850000px;}
.x3_c00419{left:821.250000px;}
.x6_c00419{left:822.900000px;}
.x7_c00419{left:833.700000px;}
.x4_c00419{left:856.950000px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:-2.962963pt;}
.ws1_c00419{word-spacing:0.000000pt;}
.fs0_c00419{font-size:21.333333pt;}
.fs1_c00419{font-size:26.666667pt;}
.y0_c00419{bottom:0.000000pt;}
.y2_c00419{bottom:30.400000pt;}
.y1_c00419{bottom:538.933333pt;}
.h2_c00419{height:21.333333pt;}
.h3_c00419{height:26.666667pt;}
.h1_c00419{height:1036.666667pt;}
.h0_c00419{height:1036.800049pt;}
.w0_c00419{width:818.559977pt;}
.w1_c00419{width:818.666667pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:713.333333pt;}
.x5_c00419{left:720.266667pt;}
.x2_c00419{left:725.200000pt;}
.x3_c00419{left:730.000000pt;}
.x6_c00419{left:731.466667pt;}
.x7_c00419{left:741.066667pt;}
.x4_c00419{left:761.733333pt;}
}





/* 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_c00420 {
    display:none;
  }
  .loading-indicator_c00420.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00420 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_c00420 { 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_c00420" -> "#page-container .classname_c00420")
 */
.pf_c00420 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00420 { /* 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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00420 { /* 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_c00420 { /* 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_c00420 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00420 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00420 {overflow:visible;}
  }
}
.c_c00420 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00420 { /* 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_c00420:after { /* webkit #35443 */
  content: '';
}
.t_c00420:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00420 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 */
}
.__c00420 { /* 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_c00420 { /* info for Javascript */
  display:none;
}
.l_c00420 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00420 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00420 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00420: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_c00420 {
    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_c00420.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00420.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_c00420 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00420{font-family:sans-serif;visibility:hidden;}
.sc__c00420{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
}
.y0_c00420{bottom:0.000000px;}
.h1_c00420{height:1166.250000px;}
.h0_c00420{height:1166.400056px;}
.w0_c00420{width:920.879975px;}
.w1_c00420{width:921.000000px;}
.x0_c00420{left:0.000000px;}
@media print{
.y0_c00420{bottom:0.000000pt;}
.h1_c00420{height:1036.666667pt;}
.h0_c00420{height:1036.800049pt;}
.w0_c00420{width:818.559977pt;}
.w1_c00420{width:818.666667pt;}
.x0_c00420{left:0.000000pt;}
}





/* 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_c00421 {
    display:none;
  }
  .loading-indicator_c00421.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00421 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_c00421 { 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_c00421" -> "#page-container .classname_c00421")
 */
.pf_c00421 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00421 { /* 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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00421 { /* 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_c00421 { /* 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_c00421 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00421 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00421 {overflow:visible;}
  }
}
.c_c00421 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00421 { /* 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_c00421:after { /* webkit #35443 */
  content: '';
}
.t_c00421:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00421 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 */
}
.__c00421 { /* 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_c00421 { /* info for Javascript */
  display:none;
}
.l_c00421 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00421 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00421 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00421: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_c00421 {
    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_c00421.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00421.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_c00421 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00421{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00421;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.000000;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;}
.m47_c00421{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m70_c00421{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m30_c00421{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m94_c00421{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00421{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m91_c00421{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00421{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00421{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m18_c00421{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00421{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m72_c00421{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m57_c00421{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m87_c00421{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00421{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m92_c00421{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00421{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00421{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m60_c00421{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m55_c00421{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m62_c00421{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00421{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m73_c00421{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00421{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00421{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00421{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00421{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m42_c00421{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00421{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m6_c00421{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m88_c00421{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00421{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m13_c00421{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m69_c00421{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m66_c00421{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00421{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m51_c00421{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m74_c00421{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00421{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m58_c00421{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8_c00421{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00421{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00421{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m76_c00421{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00421{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m19_c00421{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m16_c00421{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m9_c00421{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m14_c00421{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m93_c00421{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00421{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m49_c00421{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m85_c00421{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m12_c00421{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00421{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00421{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00421{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma_c00421{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m84_c00421{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m78_c00421{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m46_c00421{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.md_c00421{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00421{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m32_c00421{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00421{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7_c00421{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m48_c00421{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00421{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00421{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m77_c00421{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m15_c00421{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00421{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00421{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m31_c00421{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m36_c00421{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00421{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00421{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb_c00421{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m41_c00421{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17_c00421{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);}
.m3a_c00421{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00421{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00421{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22_c00421{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m59_c00421{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m34_c00421{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00421{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m67_c00421{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m81_c00421{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00421{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.mc_c00421{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m86_c00421{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00421{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00421{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m29_c00421{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m28_c00421{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m79_c00421{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m20_c00421{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mf_c00421{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00421{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m65_c00421{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00421{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00421{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.me_c00421{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00421{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m23_c00421{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00421{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m54_c00421{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00421{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m80_c00421{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m37_c00421{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m45_c00421{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m11_c00421{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00421{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m52_c00421{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00421{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00421{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m83_c00421{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m39_c00421{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m4_c00421{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m50_c00421{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m25_c00421{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m27_c00421{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m40_c00421{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m38_c00421{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00421{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00421{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00421{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m33_c00421{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m64_c00421{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m82_c00421{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m71_c00421{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m63_c00421{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00421{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00421{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m10_c00421{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m26_c00421{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m21_c00421{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m35_c00421{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m56_c00421{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00421{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m75_c00421{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m24_c00421{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372750,0.000000,0.000000,0.250000,0,0);}
.m61_c00421{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m68_c00421{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.v0_c00421{vertical-align:0.000000px;}
.ls0_c00421{letter-spacing:0.000000px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{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__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00421{word-spacing:-4.500000px;}
.ws1_c00421{word-spacing:-0.817490px;}
.ws8_c00421{word-spacing:0.000000px;}
.ws0_c00421{word-spacing:2.193322px;}
.ws6_c00421{word-spacing:7.160772px;}
.ws2_c00421{word-spacing:8.582428px;}
.ws4_c00421{word-spacing:18.000000px;}
.ws5_c00421{word-spacing:20.666667px;}
.ws3_c00421{word-spacing:24.833333px;}
.fc0_c00421{color:transparent;}
.fs2_c00421{font-size:42.000000px;}
.fs0_c00421{font-size:48.000000px;}
.fs1_c00421{font-size:54.000000px;}
.y0_c00421{bottom:0.000000px;}
.y23_c00421{bottom:152.700000px;}
.y22_c00421{bottom:153.300000px;}
.y21_c00421{bottom:190.050000px;}
.y20_c00421{bottom:209.850000px;}
.y1f_c00421{bottom:229.950000px;}
.y1e_c00421{bottom:249.750000px;}
.y1d_c00421{bottom:270.300000px;}
.y1c_c00421{bottom:290.400000px;}
.y1b_c00421{bottom:309.900000px;}
.y1a_c00421{bottom:330.000000px;}
.y19_c00421{bottom:349.800000px;}
.y18_c00421{bottom:369.900000px;}
.y17_c00421{bottom:389.700000px;}
.y16_c00421{bottom:409.800000px;}
.y15_c00421{bottom:429.900000px;}
.y11_c00421{bottom:464.400000px;}
.y14_c00421{bottom:465.900000px;}
.y10_c00421{bottom:473.700000px;}
.y12_c00421{bottom:474.150000px;}
.y13_c00421{bottom:475.200000px;}
.yf_c00421{bottom:772.950000px;}
.ye_c00421{bottom:792.600000px;}
.yd_c00421{bottom:813.150000px;}
.yc_c00421{bottom:833.250000px;}
.yb_c00421{bottom:853.050000px;}
.ya_c00421{bottom:872.850000px;}
.y9_c00421{bottom:892.950000px;}
.y8_c00421{bottom:912.750000px;}
.y7_c00421{bottom:933.300000px;}
.y6_c00421{bottom:952.800000px;}
.y5_c00421{bottom:972.900000px;}
.y4_c00421{bottom:993.000000px;}
.y3_c00421{bottom:1013.100000px;}
.y2_c00421{bottom:1050.750000px;}
.y1_c00421{bottom:1051.500000px;}
.h4_c00421{height:42.000000px;}
.h2_c00421{height:48.000000px;}
.h3_c00421{height:54.000000px;}
.h1_c00421{height:1166.250000px;}
.h0_c00421{height:1166.400056px;}
.w0_c00421{width:920.879975px;}
.w1_c00421{width:921.000000px;}
.x0_c00421{left:0.000000px;}
.x102_c00421{left:99.300000px;}
.xd9_c00421{left:100.650000px;}
.xaa_c00421{left:101.850000px;}
.x2f_c00421{left:105.750000px;}
.x4_c00421{left:106.950000px;}
.xee_c00421{left:119.400000px;}
.x9e_c00421{left:120.600000px;}
.x77_c00421{left:122.100000px;}
.xab_c00421{left:123.150000px;}
.x69_c00421{left:124.950000px;}
.x1f_c00421{left:126.150000px;}
.x90_c00421{left:127.800000px;}
.xca_c00421{left:129.000000px;}
.x3b_c00421{left:134.700000px;}
.xbf_c00421{left:136.350000px;}
.x84_c00421{left:139.650000px;}
.x9f_c00421{left:141.150000px;}
.x5d_c00421{left:143.400000px;}
.xde_c00421{left:144.450000px;}
.x6a_c00421{left:145.800000px;}
.x78_c00421{left:149.850000px;}
.xe5_c00421{left:152.100000px;}
.x20_c00421{left:155.250000px;}
.x50_c00421{left:158.100000px;}
.x106_c00421{left:159.600000px;}
.x12_c00421{left:161.250000px;}
.xa0_c00421{left:163.500000px;}
.x30_c00421{left:167.250000px;}
.x85_c00421{left:169.200000px;}
.xb9_c00421{left:170.550000px;}
.x91_c00421{left:171.600000px;}
.x46_c00421{left:174.450000px;}
.xac_c00421{left:176.850000px;}
.x51_c00421{left:178.200000px;}
.x13_c00421{left:181.800000px;}
.x5e_c00421{left:186.900000px;}
.x5_c00421{left:188.700000px;}
.xa1_c00421{left:190.200000px;}
.x31_c00421{left:191.700000px;}
.x21_c00421{left:192.750000px;}
.xcb_c00421{left:194.400000px;}
.xda_c00421{left:197.550000px;}
.x109_c00421{left:201.150000px;}
.xad_c00421{left:202.350000px;}
.x47_c00421{left:203.550000px;}
.x6b_c00421{left:206.250000px;}
.x79_c00421{left:208.500000px;}
.x22_c00421{left:209.700000px;}
.x86_c00421{left:211.350000px;}
.x32_c00421{left:212.550000px;}
.x92_c00421{left:214.500000px;}
.x52_c00421{left:217.800000px;}
.x6_c00421{left:220.800000px;}
.xdf_c00421{left:222.150000px;}
.x6c_c00421{left:224.550000px;}
.x103_c00421{left:225.900000px;}
.xcc_c00421{left:231.450000px;}
.x14_c00421{left:232.500000px;}
.x87_c00421{left:233.700000px;}
.x23_c00421{left:238.200000px;}
.x93_c00421{left:240.000000px;}
.x53_c00421{left:244.500000px;}
.x3c_c00421{left:246.300000px;}
.xae_c00421{left:248.100000px;}
.x33_c00421{left:250.350000px;}
.x6d_c00421{left:251.550000px;}
.x7a_c00421{left:253.200000px;}
.x15_c00421{left:256.200000px;}
.x7_c00421{left:258.900000px;}
.x88_c00421{left:261.750000px;}
.x5f_c00421{left:264.750000px;}
.xba_c00421{left:266.400000px;}
.x54_c00421{left:269.700000px;}
.x3d_c00421{left:280.200000px;}
.x8_c00421{left:281.550000px;}
.xe6_c00421{left:283.200000px;}
.x34_c00421{left:284.250000px;}
.xf4_c00421{left:285.300000px;}
.xef_c00421{left:286.800000px;}
.xc0_c00421{left:292.650000px;}
.x24_c00421{left:294.000000px;}
.x16_c00421{left:296.850000px;}
.x3e_c00421{left:298.500000px;}
.xd3_c00421{left:301.650000px;}
.xaf_c00421{left:303.150000px;}
.x94_c00421{left:304.800000px;}
.x6e_c00421{left:308.400000px;}
.xdb_c00421{left:312.450000px;}
.xe0_c00421{left:315.450000px;}
.x7b_c00421{left:316.950000px;}
.x95_c00421{left:322.500000px;}
.xcd_c00421{left:324.000000px;}
.x25_c00421{left:326.100000px;}
.x17_c00421{left:328.500000px;}
.xe7_c00421{left:333.150000px;}
.x9_c00421{left:337.350000px;}
.x18_c00421{left:339.600000px;}
.x48_c00421{left:340.950000px;}
.x89_c00421{left:343.500000px;}
.x7c_c00421{left:345.450000px;}
.x96_c00421{left:347.700000px;}
.x60_c00421{left:349.650000px;}
.xf5_c00421{left:350.850000px;}
.x55_c00421{left:353.550000px;}
.xc1_c00421{left:354.600000px;}
.x3f_c00421{left:357.600000px;}
.x49_c00421{left:362.550000px;}
.x26_c00421{left:363.900000px;}
.xa_c00421{left:366.450000px;}
.x35_c00421{left:368.850000px;}
.xce_c00421{left:370.050000px;}
.xb0_c00421{left:372.300000px;}
.x56_c00421{left:374.400000px;}
.xd4_c00421{left:375.750000px;}
.x4a_c00421{left:377.700000px;}
.xa2_c00421{left:380.850000px;}
.x6f_c00421{left:382.950000px;}
.x1_c00421{left:386.700000px;}
.x27_c00421{left:389.400000px;}
.xdc_c00421{left:391.650000px;}
.x8a_c00421{left:392.850000px;}
.x97_c00421{left:394.200000px;}
.xe1_c00421{left:395.700000px;}
.xf6_c00421{left:399.750000px;}
.xa3_c00421{left:403.200000px;}
.x70_c00421{left:404.550000px;}
.x7d_c00421{left:406.350000px;}
.xe8_c00421{left:409.050000px;}
.x98_c00421{left:411.150000px;}
.x19_c00421{left:412.650000px;}
.xfb_c00421{left:414.150000px;}
.xe2_c00421{left:415.200000px;}
.xbb_c00421{left:418.950000px;}
.x28_c00421{left:420.300000px;}
.xb1_c00421{left:421.350000px;}
.xd5_c00421{left:422.850000px;}
.x104_c00421{left:424.950000px;}
.xb_c00421{left:427.350000px;}
.xcf_c00421{left:429.450000px;}
.x1a_c00421{left:431.400000px;}
.x71_c00421{left:433.350000px;}
.x99_c00421{left:436.650000px;}
.x36_c00421{left:439.350000px;}
.x61_c00421{left:441.750000px;}
.xe9_c00421{left:443.250000px;}
.x7e_c00421{left:444.450000px;}
.xa4_c00421{left:446.400000px;}
.xf0_c00421{left:448.050000px;}
.xf7_c00421{left:453.000000px;}
.x8b_c00421{left:454.350000px;}
.x2_c00421{left:456.600000px;}
.xfc_c00421{left:457.650000px;}
.x57_c00421{left:459.000000px;}
.x4b_c00421{left:462.300000px;}
.xea_c00421{left:464.100000px;}
.xc2_c00421{left:468.000000px;}
.xf8_c00421{left:469.950000px;}
.x37_c00421{left:473.850000px;}
.x7f_c00421{left:475.350000px;}
.xfd_c00421{left:477.450000px;}
.x62_c00421{left:482.850000px;}
.xa5_c00421{left:487.500000px;}
.xbc_c00421{left:490.950000px;}
.x40_c00421{left:492.600000px;}
.x29_c00421{left:496.950000px;}
.x105_c00421{left:498.000000px;}
.x38_c00421{left:501.150000px;}
.xfe_c00421{left:505.500000px;}
.x4c_c00421{left:507.300000px;}
.x58_c00421{left:509.100000px;}
.x63_c00421{left:511.950000px;}
.x2a_c00421{left:513.900000px;}
.x1b_c00421{left:515.700000px;}
.xc_c00421{left:518.100000px;}
.x72_c00421{left:519.750000px;}
.xc3_c00421{left:524.100000px;}
.xb2_c00421{left:525.300000px;}
.x9a_c00421{left:527.700000px;}
.xbd_c00421{left:528.750000px;}
.xf1_c00421{left:530.550000px;}
.xe3_c00421{left:532.650000px;}
.x2b_c00421{left:534.450000px;}
.x4d_c00421{left:536.850000px;}
.xd_c00421{left:542.550000px;}
.xff_c00421{left:544.350000px;}
.x73_c00421{left:546.450000px;}
.x10a_c00421{left:551.100000px;}
.xeb_c00421{left:553.650000px;}
.xc4_c00421{left:555.000000px;}
.xd6_c00421{left:557.550000px;}
.xf2_c00421{left:560.100000px;}
.x80_c00421{left:561.150000px;}
.x9b_c00421{left:562.950000px;}
.xd0_c00421{left:565.500000px;}
.xb3_c00421{left:566.700000px;}
.x41_c00421{left:569.700000px;}
.xe_c00421{left:572.100000px;}
.x74_c00421{left:574.200000px;}
.x4e_c00421{left:580.050000px;}
.xe4_c00421{left:581.250000px;}
.xb4_c00421{left:583.650000px;}
.x64_c00421{left:585.450000px;}
.x107_c00421{left:586.800000px;}
.xd7_c00421{left:588.150000px;}
.x59_c00421{left:590.250000px;}
.xc5_c00421{left:593.100000px;}
.x39_c00421{left:598.350000px;}
.x100_c00421{left:600.900000px;}
.x1c_c00421{left:602.100000px;}
.x42_c00421{left:603.900000px;}
.x9c_c00421{left:608.400000px;}
.xa6_c00421{left:610.500000px;}
.xc6_c00421{left:615.000000px;}
.x1d_c00421{left:617.550000px;}
.x75_c00421{left:620.700000px;}
.x8c_c00421{left:622.050000px;}
.x81_c00421{left:624.600000px;}
.x5a_c00421{left:627.000000px;}
.xb5_c00421{left:628.350000px;}
.xf_c00421{left:629.400000px;}
.xd8_c00421{left:631.650000px;}
.x2c_c00421{left:634.500000px;}
.xec_c00421{left:636.750000px;}
.xa8_c00421{left:637.800000px;}
.x65_c00421{left:639.150000px;}
.x43_c00421{left:642.000000px;}
.xc7_c00421{left:644.100000px;}
.xd1_c00421{left:647.550000px;}
.x10_c00421{left:649.950000px;}
.x8d_c00421{left:651.900000px;}
.xbe_c00421{left:658.050000px;}
.xdd_c00421{left:661.350000px;}
.x76_c00421{left:666.150000px;}
.x5b_c00421{left:668.700000px;}
.xb6_c00421{left:671.550000px;}
.xc8_c00421{left:674.400000px;}
.x2d_c00421{left:677.400000px;}
.xa9_c00421{left:679.200000px;}
.x1e_c00421{left:681.750000px;}
.x66_c00421{left:685.650000px;}
.xb7_c00421{left:688.500000px;}
.x4f_c00421{left:689.550000px;}
.x8e_c00421{left:700.200000px;}
.xf9_c00421{left:701.400000px;}
.x67_c00421{left:703.350000px;}
.x3a_c00421{left:706.350000px;}
.x82_c00421{left:707.400000px;}
.x11_c00421{left:709.650000px;}
.xa7_c00421{left:711.300000px;}
.xed_c00421{left:712.950000px;}
.x68_c00421{left:721.350000px;}
.x5c_c00421{left:723.750000px;}
.x44_c00421{left:725.550000px;}
.xd2_c00421{left:727.500000px;}
.x83_c00421{left:733.650000px;}
.x8f_c00421{left:735.900000px;}
.xc9_c00421{left:737.400000px;}
.x101_c00421{left:741.600000px;}
.xf3_c00421{left:742.950000px;}
.x2e_c00421{left:744.000000px;}
.xb8_c00421{left:745.050000px;}
.x3_c00421{left:747.150000px;}
.x9d_c00421{left:748.500000px;}
.x108_c00421{left:755.550000px;}
.x45_c00421{left:757.950000px;}
.xfa_c00421{left:765.150000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws7_c00421{word-spacing:-4.000000pt;}
.ws1_c00421{word-spacing:-0.726658pt;}
.ws8_c00421{word-spacing:0.000000pt;}
.ws0_c00421{word-spacing:1.949619pt;}
.ws6_c00421{word-spacing:6.365130pt;}
.ws2_c00421{word-spacing:7.628825pt;}
.ws4_c00421{word-spacing:16.000000pt;}
.ws5_c00421{word-spacing:18.370370pt;}
.ws3_c00421{word-spacing:22.074074pt;}
.fs2_c00421{font-size:37.333333pt;}
.fs0_c00421{font-size:42.666667pt;}
.fs1_c00421{font-size:48.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y23_c00421{bottom:135.733333pt;}
.y22_c00421{bottom:136.266667pt;}
.y21_c00421{bottom:168.933333pt;}
.y20_c00421{bottom:186.533333pt;}
.y1f_c00421{bottom:204.400000pt;}
.y1e_c00421{bottom:222.000000pt;}
.y1d_c00421{bottom:240.266667pt;}
.y1c_c00421{bottom:258.133333pt;}
.y1b_c00421{bottom:275.466667pt;}
.y1a_c00421{bottom:293.333333pt;}
.y19_c00421{bottom:310.933333pt;}
.y18_c00421{bottom:328.800000pt;}
.y17_c00421{bottom:346.400000pt;}
.y16_c00421{bottom:364.266667pt;}
.y15_c00421{bottom:382.133333pt;}
.y11_c00421{bottom:412.800000pt;}
.y14_c00421{bottom:414.133333pt;}
.y10_c00421{bottom:421.066667pt;}
.y12_c00421{bottom:421.466667pt;}
.y13_c00421{bottom:422.400000pt;}
.yf_c00421{bottom:687.066667pt;}
.ye_c00421{bottom:704.533333pt;}
.yd_c00421{bottom:722.800000pt;}
.yc_c00421{bottom:740.666667pt;}
.yb_c00421{bottom:758.266667pt;}
.ya_c00421{bottom:775.866667pt;}
.y9_c00421{bottom:793.733333pt;}
.y8_c00421{bottom:811.333333pt;}
.y7_c00421{bottom:829.600000pt;}
.y6_c00421{bottom:846.933333pt;}
.y5_c00421{bottom:864.800000pt;}
.y4_c00421{bottom:882.666667pt;}
.y3_c00421{bottom:900.533333pt;}
.y2_c00421{bottom:934.000000pt;}
.y1_c00421{bottom:934.666667pt;}
.h4_c00421{height:37.333333pt;}
.h2_c00421{height:42.666667pt;}
.h3_c00421{height:48.000000pt;}
.h1_c00421{height:1036.666667pt;}
.h0_c00421{height:1036.800049pt;}
.w0_c00421{width:818.559977pt;}
.w1_c00421{width:818.666667pt;}
.x0_c00421{left:0.000000pt;}
.x102_c00421{left:88.266667pt;}
.xd9_c00421{left:89.466667pt;}
.xaa_c00421{left:90.533333pt;}
.x2f_c00421{left:94.000000pt;}
.x4_c00421{left:95.066667pt;}
.xee_c00421{left:106.133333pt;}
.x9e_c00421{left:107.200000pt;}
.x77_c00421{left:108.533333pt;}
.xab_c00421{left:109.466667pt;}
.x69_c00421{left:111.066667pt;}
.x1f_c00421{left:112.133333pt;}
.x90_c00421{left:113.600000pt;}
.xca_c00421{left:114.666667pt;}
.x3b_c00421{left:119.733333pt;}
.xbf_c00421{left:121.200000pt;}
.x84_c00421{left:124.133333pt;}
.x9f_c00421{left:125.466667pt;}
.x5d_c00421{left:127.466667pt;}
.xde_c00421{left:128.400000pt;}
.x6a_c00421{left:129.600000pt;}
.x78_c00421{left:133.200000pt;}
.xe5_c00421{left:135.200000pt;}
.x20_c00421{left:138.000000pt;}
.x50_c00421{left:140.533333pt;}
.x106_c00421{left:141.866667pt;}
.x12_c00421{left:143.333333pt;}
.xa0_c00421{left:145.333333pt;}
.x30_c00421{left:148.666667pt;}
.x85_c00421{left:150.400000pt;}
.xb9_c00421{left:151.600000pt;}
.x91_c00421{left:152.533333pt;}
.x46_c00421{left:155.066667pt;}
.xac_c00421{left:157.200000pt;}
.x51_c00421{left:158.400000pt;}
.x13_c00421{left:161.600000pt;}
.x5e_c00421{left:166.133333pt;}
.x5_c00421{left:167.733333pt;}
.xa1_c00421{left:169.066667pt;}
.x31_c00421{left:170.400000pt;}
.x21_c00421{left:171.333333pt;}
.xcb_c00421{left:172.800000pt;}
.xda_c00421{left:175.600000pt;}
.x109_c00421{left:178.800000pt;}
.xad_c00421{left:179.866667pt;}
.x47_c00421{left:180.933333pt;}
.x6b_c00421{left:183.333333pt;}
.x79_c00421{left:185.333333pt;}
.x22_c00421{left:186.400000pt;}
.x86_c00421{left:187.866667pt;}
.x32_c00421{left:188.933333pt;}
.x92_c00421{left:190.666667pt;}
.x52_c00421{left:193.600000pt;}
.x6_c00421{left:196.266667pt;}
.xdf_c00421{left:197.466667pt;}
.x6c_c00421{left:199.600000pt;}
.x103_c00421{left:200.800000pt;}
.xcc_c00421{left:205.733333pt;}
.x14_c00421{left:206.666667pt;}
.x87_c00421{left:207.733333pt;}
.x23_c00421{left:211.733333pt;}
.x93_c00421{left:213.333333pt;}
.x53_c00421{left:217.333333pt;}
.x3c_c00421{left:218.933333pt;}
.xae_c00421{left:220.533333pt;}
.x33_c00421{left:222.533333pt;}
.x6d_c00421{left:223.600000pt;}
.x7a_c00421{left:225.066667pt;}
.x15_c00421{left:227.733333pt;}
.x7_c00421{left:230.133333pt;}
.x88_c00421{left:232.666667pt;}
.x5f_c00421{left:235.333333pt;}
.xba_c00421{left:236.800000pt;}
.x54_c00421{left:239.733333pt;}
.x3d_c00421{left:249.066667pt;}
.x8_c00421{left:250.266667pt;}
.xe6_c00421{left:251.733333pt;}
.x34_c00421{left:252.666667pt;}
.xf4_c00421{left:253.600000pt;}
.xef_c00421{left:254.933333pt;}
.xc0_c00421{left:260.133333pt;}
.x24_c00421{left:261.333333pt;}
.x16_c00421{left:263.866667pt;}
.x3e_c00421{left:265.333333pt;}
.xd3_c00421{left:268.133333pt;}
.xaf_c00421{left:269.466667pt;}
.x94_c00421{left:270.933333pt;}
.x6e_c00421{left:274.133333pt;}
.xdb_c00421{left:277.733333pt;}
.xe0_c00421{left:280.400000pt;}
.x7b_c00421{left:281.733333pt;}
.x95_c00421{left:286.666667pt;}
.xcd_c00421{left:288.000000pt;}
.x25_c00421{left:289.866667pt;}
.x17_c00421{left:292.000000pt;}
.xe7_c00421{left:296.133333pt;}
.x9_c00421{left:299.866667pt;}
.x18_c00421{left:301.866667pt;}
.x48_c00421{left:303.066667pt;}
.x89_c00421{left:305.333333pt;}
.x7c_c00421{left:307.066667pt;}
.x96_c00421{left:309.066667pt;}
.x60_c00421{left:310.800000pt;}
.xf5_c00421{left:311.866667pt;}
.x55_c00421{left:314.266667pt;}
.xc1_c00421{left:315.200000pt;}
.x3f_c00421{left:317.866667pt;}
.x49_c00421{left:322.266667pt;}
.x26_c00421{left:323.466667pt;}
.xa_c00421{left:325.733333pt;}
.x35_c00421{left:327.866667pt;}
.xce_c00421{left:328.933333pt;}
.xb0_c00421{left:330.933333pt;}
.x56_c00421{left:332.800000pt;}
.xd4_c00421{left:334.000000pt;}
.x4a_c00421{left:335.733333pt;}
.xa2_c00421{left:338.533333pt;}
.x6f_c00421{left:340.400000pt;}
.x1_c00421{left:343.733333pt;}
.x27_c00421{left:346.133333pt;}
.xdc_c00421{left:348.133333pt;}
.x8a_c00421{left:349.200000pt;}
.x97_c00421{left:350.400000pt;}
.xe1_c00421{left:351.733333pt;}
.xf6_c00421{left:355.333333pt;}
.xa3_c00421{left:358.400000pt;}
.x70_c00421{left:359.600000pt;}
.x7d_c00421{left:361.200000pt;}
.xe8_c00421{left:363.600000pt;}
.x98_c00421{left:365.466667pt;}
.x19_c00421{left:366.800000pt;}
.xfb_c00421{left:368.133333pt;}
.xe2_c00421{left:369.066667pt;}
.xbb_c00421{left:372.400000pt;}
.x28_c00421{left:373.600000pt;}
.xb1_c00421{left:374.533333pt;}
.xd5_c00421{left:375.866667pt;}
.x104_c00421{left:377.733333pt;}
.xb_c00421{left:379.866667pt;}
.xcf_c00421{left:381.733333pt;}
.x1a_c00421{left:383.466667pt;}
.x71_c00421{left:385.200000pt;}
.x99_c00421{left:388.133333pt;}
.x36_c00421{left:390.533333pt;}
.x61_c00421{left:392.666667pt;}
.xe9_c00421{left:394.000000pt;}
.x7e_c00421{left:395.066667pt;}
.xa4_c00421{left:396.800000pt;}
.xf0_c00421{left:398.266667pt;}
.xf7_c00421{left:402.666667pt;}
.x8b_c00421{left:403.866667pt;}
.x2_c00421{left:405.866667pt;}
.xfc_c00421{left:406.800000pt;}
.x57_c00421{left:408.000000pt;}
.x4b_c00421{left:410.933333pt;}
.xea_c00421{left:412.533333pt;}
.xc2_c00421{left:416.000000pt;}
.xf8_c00421{left:417.733333pt;}
.x37_c00421{left:421.200000pt;}
.x7f_c00421{left:422.533333pt;}
.xfd_c00421{left:424.400000pt;}
.x62_c00421{left:429.200000pt;}
.xa5_c00421{left:433.333333pt;}
.xbc_c00421{left:436.400000pt;}
.x40_c00421{left:437.866667pt;}
.x29_c00421{left:441.733333pt;}
.x105_c00421{left:442.666667pt;}
.x38_c00421{left:445.466667pt;}
.xfe_c00421{left:449.333333pt;}
.x4c_c00421{left:450.933333pt;}
.x58_c00421{left:452.533333pt;}
.x63_c00421{left:455.066667pt;}
.x2a_c00421{left:456.800000pt;}
.x1b_c00421{left:458.400000pt;}
.xc_c00421{left:460.533333pt;}
.x72_c00421{left:462.000000pt;}
.xc3_c00421{left:465.866667pt;}
.xb2_c00421{left:466.933333pt;}
.x9a_c00421{left:469.066667pt;}
.xbd_c00421{left:470.000000pt;}
.xf1_c00421{left:471.600000pt;}
.xe3_c00421{left:473.466667pt;}
.x2b_c00421{left:475.066667pt;}
.x4d_c00421{left:477.200000pt;}
.xd_c00421{left:482.266667pt;}
.xff_c00421{left:483.866667pt;}
.x73_c00421{left:485.733333pt;}
.x10a_c00421{left:489.866667pt;}
.xeb_c00421{left:492.133333pt;}
.xc4_c00421{left:493.333333pt;}
.xd6_c00421{left:495.600000pt;}
.xf2_c00421{left:497.866667pt;}
.x80_c00421{left:498.800000pt;}
.x9b_c00421{left:500.400000pt;}
.xd0_c00421{left:502.666667pt;}
.xb3_c00421{left:503.733333pt;}
.x41_c00421{left:506.400000pt;}
.xe_c00421{left:508.533333pt;}
.x74_c00421{left:510.400000pt;}
.x4e_c00421{left:515.600000pt;}
.xe4_c00421{left:516.666667pt;}
.xb4_c00421{left:518.800000pt;}
.x64_c00421{left:520.400000pt;}
.x107_c00421{left:521.600000pt;}
.xd7_c00421{left:522.800000pt;}
.x59_c00421{left:524.666667pt;}
.xc5_c00421{left:527.200000pt;}
.x39_c00421{left:531.866667pt;}
.x100_c00421{left:534.133333pt;}
.x1c_c00421{left:535.200000pt;}
.x42_c00421{left:536.800000pt;}
.x9c_c00421{left:540.800000pt;}
.xa6_c00421{left:542.666667pt;}
.xc6_c00421{left:546.666667pt;}
.x1d_c00421{left:548.933333pt;}
.x75_c00421{left:551.733333pt;}
.x8c_c00421{left:552.933333pt;}
.x81_c00421{left:555.200000pt;}
.x5a_c00421{left:557.333333pt;}
.xb5_c00421{left:558.533333pt;}
.xf_c00421{left:559.466667pt;}
.xd8_c00421{left:561.466667pt;}
.x2c_c00421{left:564.000000pt;}
.xec_c00421{left:566.000000pt;}
.xa8_c00421{left:566.933333pt;}
.x65_c00421{left:568.133333pt;}
.x43_c00421{left:570.666667pt;}
.xc7_c00421{left:572.533333pt;}
.xd1_c00421{left:575.600000pt;}
.x10_c00421{left:577.733333pt;}
.x8d_c00421{left:579.466667pt;}
.xbe_c00421{left:584.933333pt;}
.xdd_c00421{left:587.866667pt;}
.x76_c00421{left:592.133333pt;}
.x5b_c00421{left:594.400000pt;}
.xb6_c00421{left:596.933333pt;}
.xc8_c00421{left:599.466667pt;}
.x2d_c00421{left:602.133333pt;}
.xa9_c00421{left:603.733333pt;}
.x1e_c00421{left:606.000000pt;}
.x66_c00421{left:609.466667pt;}
.xb7_c00421{left:612.000000pt;}
.x4f_c00421{left:612.933333pt;}
.x8e_c00421{left:622.400000pt;}
.xf9_c00421{left:623.466667pt;}
.x67_c00421{left:625.200000pt;}
.x3a_c00421{left:627.866667pt;}
.x82_c00421{left:628.800000pt;}
.x11_c00421{left:630.800000pt;}
.xa7_c00421{left:632.266667pt;}
.xed_c00421{left:633.733333pt;}
.x68_c00421{left:641.200000pt;}
.x5c_c00421{left:643.333333pt;}
.x44_c00421{left:644.933333pt;}
.xd2_c00421{left:646.666667pt;}
.x83_c00421{left:652.133333pt;}
.x8f_c00421{left:654.133333pt;}
.xc9_c00421{left:655.466667pt;}
.x101_c00421{left:659.200000pt;}
.xf3_c00421{left:660.400000pt;}
.x2e_c00421{left:661.333333pt;}
.xb8_c00421{left:662.266667pt;}
.x3_c00421{left:664.133333pt;}
.x9d_c00421{left:665.333333pt;}
.x108_c00421{left:671.600000pt;}
.x45_c00421{left:673.733333pt;}
.xfa_c00421{left:680.133333pt;}
}





/* 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_c00422 {
    display:none;
  }
  .loading-indicator_c00422.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00422 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_c00422 { 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_c00422" -> "#page-container .classname_c00422")
 */
.pf_c00422 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00422 { /* 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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00422 { /* 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_c00422 { /* 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_c00422 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00422 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00422 {overflow:visible;}
  }
}
.c_c00422 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00422 { /* 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_c00422:after { /* webkit #35443 */
  content: '';
}
.t_c00422:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00422 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 */
}
.__c00422 { /* 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_c00422 { /* info for Javascript */
  display:none;
}
.l_c00422 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00422 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00422 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00422: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_c00422 {
    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_c00422.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00422.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_c00422 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00422{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00422;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.000000;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;}
.m38_c00422{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m24_c00422{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mac_c00422{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00422{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m98_c00422{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m10_c00422{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m94_c00422{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m55_c00422{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m96_c00422{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00422{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00422{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.maa_c00422{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.maf_c00422{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4_c00422{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m12_c00422{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00422{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00422{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00422{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m86_c00422{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m61_c00422{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m88_c00422{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mae_c00422{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mad_c00422{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m63_c00422{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00422{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m50_c00422{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00422{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m44_c00422{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00422{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m54_c00422{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00422{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00422{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m75_c00422{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m84_c00422{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00422{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m48_c00422{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mc_c00422{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00422{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00422{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m36_c00422{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m14_c00422{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00422{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma_c00422{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m72_c00422{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m58_c00422{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00422{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m91_c00422{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m60_c00422{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m17_c00422{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.mf_c00422{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00422{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00422{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00422{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m70_c00422{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m52_c00422{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m69_c00422{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00422{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m82_c00422{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m40_c00422{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00422{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00422{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m97_c00422{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m59_c00422{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m8_c00422{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00422{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00422{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m66_c00422{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00422{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00422{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00422{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m11_c00422{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m18_c00422{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m30_c00422{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me_c00422{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9_c00422{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m62_c00422{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00422{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m53_c00422{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m77_c00422{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m90_c00422{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m45_c00422{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m21_c00422{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m56_c00422{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m76_c00422{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mab_c00422{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00422{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2_c00422{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m15_c00422{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5_c00422{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m32_c00422{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m26_c00422{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00422{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);}
.m2f_c00422{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00422{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m81_c00422{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00422{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mb_c00422{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m99_c00422{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m92_c00422{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00422{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.md_c00422{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m16_c00422{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00422{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m57_c00422{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00422{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m65_c00422{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m19_c00422{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00422{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00422{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00422{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m33_c00422{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m73_c00422{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00422{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m83_c00422{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00422{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00422{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m80_c00422{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m51_c00422{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m78_c00422{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m93_c00422{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m20_c00422{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m37_c00422{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m42_c00422{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m31_c00422{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m67_c00422{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m41_c00422{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00422{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m7_c00422{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00422{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00422{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00422{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m25_c00422{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00422{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m87_c00422{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00422{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00422{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00422{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00422{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m49_c00422{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00422{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00422{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m35_c00422{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00422{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m28_c00422{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00422{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m71_c00422{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m27_c00422{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00422{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m43_c00422{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m6_c00422{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00422{transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287750,0.000000,0.000000,0.250000,0,0);}
.m47_c00422{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00422{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00422{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00422{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00422{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00422{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m79_c00422{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m46_c00422{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m34_c00422{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00422{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m29_c00422{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m0_c00422{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00422{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m23_c00422{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00422{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m39_c00422{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m68_c00422{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m1_c00422{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00422{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m95_c00422{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m85_c00422{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00422{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00422{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m64_c00422{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m22_c00422{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m89_c00422{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m74_c00422{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.ls0_c00422{letter-spacing:0.000000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{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__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa_c00422{word-spacing:-7.250000px;}
.ws4_c00422{word-spacing:-1.625000px;}
.ws2_c00422{word-spacing:-1.071429px;}
.wsb_c00422{word-spacing:0.000000px;}
.ws9_c00422{word-spacing:0.250000px;}
.ws6_c00422{word-spacing:3.461538px;}
.ws7_c00422{word-spacing:3.725806px;}
.ws8_c00422{word-spacing:7.500000px;}
.ws0_c00422{word-spacing:7.594267px;}
.ws5_c00422{word-spacing:13.500000px;}
.ws3_c00422{word-spacing:14.259096px;}
.ws1_c00422{word-spacing:23.806565px;}
.fc0_c00422{color:transparent;}
.fs0_c00422{font-size:54.000000px;}
.y0_c00422{bottom:0.000000px;}
.y2c_c00422{bottom:148.800000px;}
.y2b_c00422{bottom:167.100000px;}
.y2a_c00422{bottom:211.650000px;}
.y29_c00422{bottom:231.450000px;}
.y28_c00422{bottom:251.250000px;}
.y27_c00422{bottom:270.600000px;}
.y26_c00422{bottom:291.900000px;}
.y25_c00422{bottom:312.000000px;}
.y24_c00422{bottom:332.100000px;}
.y23_c00422{bottom:352.200000px;}
.y22_c00422{bottom:372.300000px;}
.y21_c00422{bottom:392.100000px;}
.y20_c00422{bottom:411.450000px;}
.y1f_c00422{bottom:432.000000px;}
.y1e_c00422{bottom:451.800000px;}
.y1d_c00422{bottom:471.900000px;}
.y1c_c00422{bottom:491.700000px;}
.y1b_c00422{bottom:511.800000px;}
.y1a_c00422{bottom:531.900000px;}
.y19_c00422{bottom:551.400000px;}
.y18_c00422{bottom:571.500000px;}
.y17_c00422{bottom:591.300000px;}
.y16_c00422{bottom:611.400000px;}
.y15_c00422{bottom:631.200000px;}
.y14_c00422{bottom:651.300000px;}
.y13_c00422{bottom:671.400000px;}
.y12_c00422{bottom:691.950000px;}
.y11_c00422{bottom:711.750000px;}
.y10_c00422{bottom:731.850000px;}
.yf_c00422{bottom:751.350000px;}
.ye_c00422{bottom:771.450000px;}
.yd_c00422{bottom:791.250000px;}
.yc_c00422{bottom:811.800000px;}
.yb_c00422{bottom:831.600000px;}
.ya_c00422{bottom:851.700000px;}
.y9_c00422{bottom:871.500000px;}
.y8_c00422{bottom:891.600000px;}
.y7_c00422{bottom:911.700000px;}
.y6_c00422{bottom:931.500000px;}
.y5_c00422{bottom:951.600000px;}
.y4_c00422{bottom:971.700000px;}
.y3_c00422{bottom:991.500000px;}
.y2_c00422{bottom:1011.600000px;}
.y1_c00422{bottom:1049.400000px;}
.h2_c00422{height:54.000000px;}
.h1_c00422{height:1166.250000px;}
.h0_c00422{height:1166.400056px;}
.w0_c00422{width:920.879975px;}
.w1_c00422{width:921.000000px;}
.x0_c00422{left:0.000000px;}
.x3_c00422{left:142.500000px;}
.x1_c00422{left:144.000000px;}
.x83_c00422{left:145.200000px;}
.xb1_c00422{left:146.550000px;}
.xda_c00422{left:147.600000px;}
.x111_c00422{left:148.800000px;}
.x128_c00422{left:149.850000px;}
.x12c_c00422{left:150.900000px;}
.x12_c00422{left:160.800000px;}
.x119_c00422{left:166.050000px;}
.x52_c00422{left:167.850000px;}
.x10c_c00422{left:169.350000px;}
.x2f_c00422{left:171.450000px;}
.xc0_c00422{left:172.650000px;}
.x22_c00422{left:174.300000px;}
.x13_c00422{left:175.500000px;}
.xdb_c00422{left:177.150000px;}
.xd1_c00422{left:179.400000px;}
.x122_c00422{left:181.050000px;}
.x112_c00422{left:183.300000px;}
.xfc_c00422{left:190.950000px;}
.x11d_c00422{left:192.600000px;}
.x6a_c00422{left:194.400000px;}
.x4_c00422{left:195.450000px;}
.x3a_c00422{left:197.250000px;}
.x10d_c00422{left:198.450000px;}
.x23_c00422{left:199.800000px;}
.xc1_c00422{left:202.200000px;}
.x30_c00422{left:206.400000px;}
.x94_c00422{left:208.800000px;}
.x44_c00422{left:210.150000px;}
.x5c_c00422{left:211.950000px;}
.x14_c00422{left:213.000000px;}
.xcb_c00422{left:214.050000px;}
.xfd_c00422{left:215.100000px;}
.xc2_c00422{left:219.450000px;}
.x24_c00422{left:220.650000px;}
.x84_c00422{left:222.300000px;}
.x109_c00422{left:224.400000px;}
.xdc_c00422{left:226.050000px;}
.x5_c00422{left:228.150000px;}
.x6b_c00422{left:232.650000px;}
.x8b_c00422{left:234.000000px;}
.xcc_c00422{left:235.650000px;}
.xe4_c00422{left:236.700000px;}
.xee_c00422{left:239.250000px;}
.x133_c00422{left:241.350000px;}
.x113_c00422{left:242.700000px;}
.x45_c00422{left:245.850000px;}
.x78_c00422{left:247.650000px;}
.x3b_c00422{left:251.250000px;}
.x31_c00422{left:253.200000px;}
.xa6_c00422{left:254.850000px;}
.x15_c00422{left:256.500000px;}
.x63_c00422{left:258.750000px;}
.x25_c00422{left:259.950000px;}
.x11e_c00422{left:261.450000px;}
.x8c_c00422{left:263.550000px;}
.x32_c00422{left:266.100000px;}
.xf9_c00422{left:268.500000px;}
.x53_c00422{left:269.850000px;}
.xef_c00422{left:272.700000px;}
.x10e_c00422{left:274.350000px;}
.x6c_c00422{left:277.950000px;}
.x5d_c00422{left:280.050000px;}
.x74_c00422{left:282.000000px;}
.xcd_c00422{left:283.950000px;}
.x6_c00422{left:285.450000px;}
.xfe_c00422{left:287.100000px;}
.x114_c00422{left:289.200000px;}
.x95_c00422{left:291.900000px;}
.x33_c00422{left:293.850000px;}
.x16_c00422{left:297.900000px;}
.x8d_c00422{left:300.600000px;}
.x46_c00422{left:301.650000px;}
.x79_c00422{left:303.150000px;}
.xa7_c00422{left:306.600000px;}
.x7_c00422{left:309.150000px;}
.x17_c00422{left:312.600000px;}
.x75_c00422{left:314.400000px;}
.xff_c00422{left:315.900000px;}
.xc3_c00422{left:317.400000px;}
.x129_c00422{left:320.100000px;}
.x8e_c00422{left:321.450000px;}
.xd2_c00422{left:323.700000px;}
.x54_c00422{left:327.150000px;}
.xeb_c00422{left:330.300000px;}
.x47_c00422{left:331.950000px;}
.x115_c00422{left:333.900000px;}
.x8_c00422{left:335.100000px;}
.xb5_c00422{left:336.750000px;}
.x18_c00422{left:338.550000px;}
.xa8_c00422{left:339.750000px;}
.x5e_c00422{left:343.050000px;}
.xf3_c00422{left:344.850000px;}
.x55_c00422{left:346.200000px;}
.xc4_c00422{left:348.300000px;}
.x26_c00422{left:351.000000px;}
.x123_c00422{left:352.350000px;}
.x6d_c00422{left:356.100000px;}
.xec_c00422{left:357.600000px;}
.x34_c00422{left:358.950000px;}
.x12d_c00422{left:360.000000px;}
.x19_c00422{left:361.650000px;}
.x7a_c00422{left:362.850000px;}
.x11f_c00422{left:364.650000px;}
.x96_c00422{left:367.200000px;}
.xa9_c00422{left:370.050000px;}
.x3c_c00422{left:372.900000px;}
.x8f_c00422{left:375.150000px;}
.x97_c00422{left:378.300000px;}
.xe5_c00422{left:380.250000px;}
.x7b_c00422{left:382.350000px;}
.xdd_c00422{left:383.400000px;}
.x1a_c00422{left:387.150000px;}
.xf4_c00422{left:389.550000px;}
.x90_c00422{left:395.250000px;}
.x120_c00422{left:396.300000px;}
.x9_c00422{left:397.350000px;}
.x5f_c00422{left:400.350000px;}
.x100_c00422{left:401.700000px;}
.xc5_c00422{left:403.350000px;}
.xce_c00422{left:404.850000px;}
.x7c_c00422{left:409.350000px;}
.x12a_c00422{left:410.400000px;}
.xa1_c00422{left:411.750000px;}
.x56_c00422{left:414.900000px;}
.xd3_c00422{left:416.550000px;}
.x91_c00422{left:419.400000px;}
.x121_c00422{left:420.750000px;}
.x76_c00422{left:422.100000px;}
.x85_c00422{left:424.650000px;}
.x1b_c00422{left:425.700000px;}
.xb2_c00422{left:427.500000px;}
.xba_c00422{left:429.300000px;}
.xaa_c00422{left:430.800000px;}
.xa_c00422{left:433.050000px;}
.x3d_c00422{left:434.850000px;}
.x101_c00422{left:435.900000px;}
.xf5_c00422{left:437.400000px;}
.x27_c00422{left:438.450000px;}
.xa2_c00422{left:439.500000px;}
.x2_c00422{left:441.000000px;}
.x77_c00422{left:443.400000px;}
.x48_c00422{left:447.450000px;}
.xe6_c00422{left:452.850000px;}
.xf0_c00422{left:454.500000px;}
.xab_c00422{left:456.000000px;}
.xbb_c00422{left:465.300000px;}
.x28_c00422{left:467.250000px;}
.x10a_c00422{left:468.750000px;}
.xb3_c00422{left:470.400000px;}
.x3e_c00422{left:472.350000px;}
.xc6_c00422{left:476.100000px;}
.x86_c00422{left:482.250000px;}
.x102_c00422{left:483.750000px;}
.xa3_c00422{left:485.550000px;}
.x6e_c00422{left:489.300000px;}
.x7d_c00422{left:492.150000px;}
.x49_c00422{left:494.550000px;}
.xb_c00422{left:496.350000px;}
.x92_c00422{left:498.150000px;}
.x1c_c00422{left:500.250000px;}
.xde_c00422{left:502.500000px;}
.x107_c00422{left:504.900000px;}
.x4a_c00422{left:506.850000px;}
.x64_c00422{left:509.400000px;}
.xf1_c00422{left:511.500000px;}
.x29_c00422{left:513.750000px;}
.x35_c00422{left:515.850000px;}
.x7e_c00422{left:518.850000px;}
.x10b_c00422{left:521.250000px;}
.xd4_c00422{left:524.100000px;}
.x9b_c00422{left:525.750000px;}
.x4b_c00422{left:527.400000px;}
.xc_c00422{left:529.050000px;}
.x131_c00422{left:530.100000px;}
.x6f_c00422{left:532.200000px;}
.x2a_c00422{left:533.850000px;}
.x60_c00422{left:536.100000px;}
.xe7_c00422{left:541.350000px;}
.x10f_c00422{left:543.000000px;}
.xdf_c00422{left:544.650000px;}
.x11a_c00422{left:546.000000px;}
.xd5_c00422{left:547.500000px;}
.xac_c00422{left:549.300000px;}
.xf6_c00422{left:550.500000px;}
.x103_c00422{left:553.950000px;}
.xbc_c00422{left:555.000000px;}
.xb6_c00422{left:556.500000px;}
.x9c_c00422{left:558.150000px;}
.xe0_c00422{left:559.350000px;}
.x2b_c00422{left:562.350000px;}
.x93_c00422{left:567.000000px;}
.x3f_c00422{left:569.100000px;}
.x4c_c00422{left:570.300000px;}
.x1d_c00422{left:573.000000px;}
.x57_c00422{left:574.050000px;}
.xd6_c00422{left:575.250000px;}
.xf7_c00422{left:577.800000px;}
.xb4_c00422{left:580.800000px;}
.x12e_c00422{left:582.450000px;}
.x65_c00422{left:583.500000px;}
.x1e_c00422{left:585.600000px;}
.x36_c00422{left:587.100000px;}
.x7f_c00422{left:588.300000px;}
.x87_c00422{left:590.250000px;}
.x70_c00422{left:591.300000px;}
.xd_c00422{left:595.350000px;}
.xb7_c00422{left:597.900000px;}
.x12b_c00422{left:599.400000px;}
.xc7_c00422{left:600.450000px;}
.xcf_c00422{left:602.100000px;}
.xe8_c00422{left:605.700000px;}
.x104_c00422{left:607.650000px;}
.x40_c00422{left:610.800000px;}
.x9d_c00422{left:611.850000px;}
.xe1_c00422{left:613.350000px;}
.x37_c00422{left:614.400000px;}
.x58_c00422{left:618.300000px;}
.xd7_c00422{left:620.250000px;}
.xe_c00422{left:621.600000px;}
.xf2_c00422{left:623.100000px;}
.x9e_c00422{left:627.000000px;}
.x4d_c00422{left:629.700000px;}
.x1f_c00422{left:632.400000px;}
.x88_c00422{left:635.250000px;}
.xb8_c00422{left:637.800000px;}
.xf_c00422{left:638.850000px;}
.xf8_c00422{left:641.250000px;}
.x38_c00422{left:642.900000px;}
.x66_c00422{left:644.700000px;}
.x11b_c00422{left:648.150000px;}
.x41_c00422{left:649.350000px;}
.xc8_c00422{left:652.350000px;}
.x71_c00422{left:653.550000px;}
.xbd_c00422{left:656.100000px;}
.xed_c00422{left:657.750000px;}
.x4e_c00422{left:659.550000px;}
.x67_c00422{left:661.200000px;}
.x89_c00422{left:664.050000px;}
.x61_c00422{left:666.750000px;}
.xfa_c00422{left:671.850000px;}
.x124_c00422{left:673.650000px;}
.x80_c00422{left:675.450000px;}
.x20_c00422{left:676.650000px;}
.xc9_c00422{left:677.850000px;}
.x4f_c00422{left:679.350000px;}
.xd8_c00422{left:683.550000px;}
.xe2_c00422{left:687.450000px;}
.x9f_c00422{left:690.300000px;}
.x98_c00422{left:691.500000px;}
.x2c_c00422{left:694.800000px;}
.x62_c00422{left:697.650000px;}
.x21_c00422{left:700.350000px;}
.xe9_c00422{left:701.400000px;}
.xad_c00422{left:704.100000px;}
.x42_c00422{left:705.450000px;}
.x50_c00422{left:707.850000px;}
.x39_c00422{left:709.200000px;}
.xbe_c00422{left:713.700000px;}
.x105_c00422{left:715.200000px;}
.x72_c00422{left:716.850000px;}
.x8a_c00422{left:718.800000px;}
.xd0_c00422{left:722.250000px;}
.xae_c00422{left:724.950000px;}
.x10_c00422{left:727.050000px;}
.x116_c00422{left:729.750000px;}
.x108_c00422{left:731.250000px;}
.x68_c00422{left:732.600000px;}
.xa4_c00422{left:734.700000px;}
.x59_c00422{left:736.500000px;}
.x11_c00422{left:739.350000px;}
.xbf_c00422{left:741.000000px;}
.x81_c00422{left:743.100000px;}
.x110_c00422{left:744.300000px;}
.x2d_c00422{left:746.700000px;}
.x125_c00422{left:749.250000px;}
.x69_c00422{left:750.300000px;}
.xb9_c00422{left:752.550000px;}
.x99_c00422{left:754.200000px;}
.xe3_c00422{left:755.850000px;}
.x12f_c00422{left:757.800000px;}
.xea_c00422{left:759.300000px;}
.x126_c00422{left:761.100000px;}
.xaf_c00422{left:762.450000px;}
.x5a_c00422{left:763.800000px;}
.xfb_c00422{left:765.750000px;}
.x132_c00422{left:767.100000px;}
.x117_c00422{left:768.300000px;}
.x9a_c00422{left:774.000000px;}
.x51_c00422{left:776.250000px;}
.x43_c00422{left:778.200000px;}
.x73_c00422{left:783.750000px;}
.x130_c00422{left:785.550000px;}
.x118_c00422{left:788.400000px;}
.xa5_c00422{left:790.200000px;}
.x82_c00422{left:791.400000px;}
.xa0_c00422{left:792.600000px;}
.x106_c00422{left:794.700000px;}
.xd9_c00422{left:795.900000px;}
.x11c_c00422{left:797.100000px;}
.x2e_c00422{left:798.600000px;}
.x5b_c00422{left:800.100000px;}
.xb0_c00422{left:802.050000px;}
.xca_c00422{left:808.650000px;}
.x127_c00422{left:814.350000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.wsa_c00422{word-spacing:-6.444444pt;}
.ws4_c00422{word-spacing:-1.444444pt;}
.ws2_c00422{word-spacing:-0.952381pt;}
.wsb_c00422{word-spacing:0.000000pt;}
.ws9_c00422{word-spacing:0.222222pt;}
.ws6_c00422{word-spacing:3.076923pt;}
.ws7_c00422{word-spacing:3.311828pt;}
.ws8_c00422{word-spacing:6.666667pt;}
.ws0_c00422{word-spacing:6.750459pt;}
.ws5_c00422{word-spacing:12.000000pt;}
.ws3_c00422{word-spacing:12.674752pt;}
.ws1_c00422{word-spacing:21.161391pt;}
.fs0_c00422{font-size:48.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y2c_c00422{bottom:132.266667pt;}
.y2b_c00422{bottom:148.533333pt;}
.y2a_c00422{bottom:188.133333pt;}
.y29_c00422{bottom:205.733333pt;}
.y28_c00422{bottom:223.333333pt;}
.y27_c00422{bottom:240.533333pt;}
.y26_c00422{bottom:259.466667pt;}
.y25_c00422{bottom:277.333333pt;}
.y24_c00422{bottom:295.200000pt;}
.y23_c00422{bottom:313.066667pt;}
.y22_c00422{bottom:330.933333pt;}
.y21_c00422{bottom:348.533333pt;}
.y20_c00422{bottom:365.733333pt;}
.y1f_c00422{bottom:384.000000pt;}
.y1e_c00422{bottom:401.600000pt;}
.y1d_c00422{bottom:419.466667pt;}
.y1c_c00422{bottom:437.066667pt;}
.y1b_c00422{bottom:454.933333pt;}
.y1a_c00422{bottom:472.800000pt;}
.y19_c00422{bottom:490.133333pt;}
.y18_c00422{bottom:508.000000pt;}
.y17_c00422{bottom:525.600000pt;}
.y16_c00422{bottom:543.466667pt;}
.y15_c00422{bottom:561.066667pt;}
.y14_c00422{bottom:578.933333pt;}
.y13_c00422{bottom:596.800000pt;}
.y12_c00422{bottom:615.066667pt;}
.y11_c00422{bottom:632.666667pt;}
.y10_c00422{bottom:650.533333pt;}
.yf_c00422{bottom:667.866667pt;}
.ye_c00422{bottom:685.733333pt;}
.yd_c00422{bottom:703.333333pt;}
.yc_c00422{bottom:721.600000pt;}
.yb_c00422{bottom:739.200000pt;}
.ya_c00422{bottom:757.066667pt;}
.y9_c00422{bottom:774.666667pt;}
.y8_c00422{bottom:792.533333pt;}
.y7_c00422{bottom:810.400000pt;}
.y6_c00422{bottom:828.000000pt;}
.y5_c00422{bottom:845.866667pt;}
.y4_c00422{bottom:863.733333pt;}
.y3_c00422{bottom:881.333333pt;}
.y2_c00422{bottom:899.200000pt;}
.y1_c00422{bottom:932.800000pt;}
.h2_c00422{height:48.000000pt;}
.h1_c00422{height:1036.666667pt;}
.h0_c00422{height:1036.800049pt;}
.w0_c00422{width:818.559977pt;}
.w1_c00422{width:818.666667pt;}
.x0_c00422{left:0.000000pt;}
.x3_c00422{left:126.666667pt;}
.x1_c00422{left:128.000000pt;}
.x83_c00422{left:129.066667pt;}
.xb1_c00422{left:130.266667pt;}
.xda_c00422{left:131.200000pt;}
.x111_c00422{left:132.266667pt;}
.x128_c00422{left:133.200000pt;}
.x12c_c00422{left:134.133333pt;}
.x12_c00422{left:142.933333pt;}
.x119_c00422{left:147.600000pt;}
.x52_c00422{left:149.200000pt;}
.x10c_c00422{left:150.533333pt;}
.x2f_c00422{left:152.400000pt;}
.xc0_c00422{left:153.466667pt;}
.x22_c00422{left:154.933333pt;}
.x13_c00422{left:156.000000pt;}
.xdb_c00422{left:157.466667pt;}
.xd1_c00422{left:159.466667pt;}
.x122_c00422{left:160.933333pt;}
.x112_c00422{left:162.933333pt;}
.xfc_c00422{left:169.733333pt;}
.x11d_c00422{left:171.200000pt;}
.x6a_c00422{left:172.800000pt;}
.x4_c00422{left:173.733333pt;}
.x3a_c00422{left:175.333333pt;}
.x10d_c00422{left:176.400000pt;}
.x23_c00422{left:177.600000pt;}
.xc1_c00422{left:179.733333pt;}
.x30_c00422{left:183.466667pt;}
.x94_c00422{left:185.600000pt;}
.x44_c00422{left:186.800000pt;}
.x5c_c00422{left:188.400000pt;}
.x14_c00422{left:189.333333pt;}
.xcb_c00422{left:190.266667pt;}
.xfd_c00422{left:191.200000pt;}
.xc2_c00422{left:195.066667pt;}
.x24_c00422{left:196.133333pt;}
.x84_c00422{left:197.600000pt;}
.x109_c00422{left:199.466667pt;}
.xdc_c00422{left:200.933333pt;}
.x5_c00422{left:202.800000pt;}
.x6b_c00422{left:206.800000pt;}
.x8b_c00422{left:208.000000pt;}
.xcc_c00422{left:209.466667pt;}
.xe4_c00422{left:210.400000pt;}
.xee_c00422{left:212.666667pt;}
.x133_c00422{left:214.533333pt;}
.x113_c00422{left:215.733333pt;}
.x45_c00422{left:218.533333pt;}
.x78_c00422{left:220.133333pt;}
.x3b_c00422{left:223.333333pt;}
.x31_c00422{left:225.066667pt;}
.xa6_c00422{left:226.533333pt;}
.x15_c00422{left:228.000000pt;}
.x63_c00422{left:230.000000pt;}
.x25_c00422{left:231.066667pt;}
.x11e_c00422{left:232.400000pt;}
.x8c_c00422{left:234.266667pt;}
.x32_c00422{left:236.533333pt;}
.xf9_c00422{left:238.666667pt;}
.x53_c00422{left:239.866667pt;}
.xef_c00422{left:242.400000pt;}
.x10e_c00422{left:243.866667pt;}
.x6c_c00422{left:247.066667pt;}
.x5d_c00422{left:248.933333pt;}
.x74_c00422{left:250.666667pt;}
.xcd_c00422{left:252.400000pt;}
.x6_c00422{left:253.733333pt;}
.xfe_c00422{left:255.200000pt;}
.x114_c00422{left:257.066667pt;}
.x95_c00422{left:259.466667pt;}
.x33_c00422{left:261.200000pt;}
.x16_c00422{left:264.800000pt;}
.x8d_c00422{left:267.200000pt;}
.x46_c00422{left:268.133333pt;}
.x79_c00422{left:269.466667pt;}
.xa7_c00422{left:272.533333pt;}
.x7_c00422{left:274.800000pt;}
.x17_c00422{left:277.866667pt;}
.x75_c00422{left:279.466667pt;}
.xff_c00422{left:280.800000pt;}
.xc3_c00422{left:282.133333pt;}
.x129_c00422{left:284.533333pt;}
.x8e_c00422{left:285.733333pt;}
.xd2_c00422{left:287.733333pt;}
.x54_c00422{left:290.800000pt;}
.xeb_c00422{left:293.600000pt;}
.x47_c00422{left:295.066667pt;}
.x115_c00422{left:296.800000pt;}
.x8_c00422{left:297.866667pt;}
.xb5_c00422{left:299.333333pt;}
.x18_c00422{left:300.933333pt;}
.xa8_c00422{left:302.000000pt;}
.x5e_c00422{left:304.933333pt;}
.xf3_c00422{left:306.533333pt;}
.x55_c00422{left:307.733333pt;}
.xc4_c00422{left:309.600000pt;}
.x26_c00422{left:312.000000pt;}
.x123_c00422{left:313.200000pt;}
.x6d_c00422{left:316.533333pt;}
.xec_c00422{left:317.866667pt;}
.x34_c00422{left:319.066667pt;}
.x12d_c00422{left:320.000000pt;}
.x19_c00422{left:321.466667pt;}
.x7a_c00422{left:322.533333pt;}
.x11f_c00422{left:324.133333pt;}
.x96_c00422{left:326.400000pt;}
.xa9_c00422{left:328.933333pt;}
.x3c_c00422{left:331.466667pt;}
.x8f_c00422{left:333.466667pt;}
.x97_c00422{left:336.266667pt;}
.xe5_c00422{left:338.000000pt;}
.x7b_c00422{left:339.866667pt;}
.xdd_c00422{left:340.800000pt;}
.x1a_c00422{left:344.133333pt;}
.xf4_c00422{left:346.266667pt;}
.x90_c00422{left:351.333333pt;}
.x120_c00422{left:352.266667pt;}
.x9_c00422{left:353.200000pt;}
.x5f_c00422{left:355.866667pt;}
.x100_c00422{left:357.066667pt;}
.xc5_c00422{left:358.533333pt;}
.xce_c00422{left:359.866667pt;}
.x7c_c00422{left:363.866667pt;}
.x12a_c00422{left:364.800000pt;}
.xa1_c00422{left:366.000000pt;}
.x56_c00422{left:368.800000pt;}
.xd3_c00422{left:370.266667pt;}
.x91_c00422{left:372.800000pt;}
.x121_c00422{left:374.000000pt;}
.x76_c00422{left:375.200000pt;}
.x85_c00422{left:377.466667pt;}
.x1b_c00422{left:378.400000pt;}
.xb2_c00422{left:380.000000pt;}
.xba_c00422{left:381.600000pt;}
.xaa_c00422{left:382.933333pt;}
.xa_c00422{left:384.933333pt;}
.x3d_c00422{left:386.533333pt;}
.x101_c00422{left:387.466667pt;}
.xf5_c00422{left:388.800000pt;}
.x27_c00422{left:389.733333pt;}
.xa2_c00422{left:390.666667pt;}
.x2_c00422{left:392.000000pt;}
.x77_c00422{left:394.133333pt;}
.x48_c00422{left:397.733333pt;}
.xe6_c00422{left:402.533333pt;}
.xf0_c00422{left:404.000000pt;}
.xab_c00422{left:405.333333pt;}
.xbb_c00422{left:413.600000pt;}
.x28_c00422{left:415.333333pt;}
.x10a_c00422{left:416.666667pt;}
.xb3_c00422{left:418.133333pt;}
.x3e_c00422{left:419.866667pt;}
.xc6_c00422{left:423.200000pt;}
.x86_c00422{left:428.666667pt;}
.x102_c00422{left:430.000000pt;}
.xa3_c00422{left:431.600000pt;}
.x6e_c00422{left:434.933333pt;}
.x7d_c00422{left:437.466667pt;}
.x49_c00422{left:439.600000pt;}
.xb_c00422{left:441.200000pt;}
.x92_c00422{left:442.800000pt;}
.x1c_c00422{left:444.666667pt;}
.xde_c00422{left:446.666667pt;}
.x107_c00422{left:448.800000pt;}
.x4a_c00422{left:450.533333pt;}
.x64_c00422{left:452.800000pt;}
.xf1_c00422{left:454.666667pt;}
.x29_c00422{left:456.666667pt;}
.x35_c00422{left:458.533333pt;}
.x7e_c00422{left:461.200000pt;}
.x10b_c00422{left:463.333333pt;}
.xd4_c00422{left:465.866667pt;}
.x9b_c00422{left:467.333333pt;}
.x4b_c00422{left:468.800000pt;}
.xc_c00422{left:470.266667pt;}
.x131_c00422{left:471.200000pt;}
.x6f_c00422{left:473.066667pt;}
.x2a_c00422{left:474.533333pt;}
.x60_c00422{left:476.533333pt;}
.xe7_c00422{left:481.200000pt;}
.x10f_c00422{left:482.666667pt;}
.xdf_c00422{left:484.133333pt;}
.x11a_c00422{left:485.333333pt;}
.xd5_c00422{left:486.666667pt;}
.xac_c00422{left:488.266667pt;}
.xf6_c00422{left:489.333333pt;}
.x103_c00422{left:492.400000pt;}
.xbc_c00422{left:493.333333pt;}
.xb6_c00422{left:494.666667pt;}
.x9c_c00422{left:496.133333pt;}
.xe0_c00422{left:497.200000pt;}
.x2b_c00422{left:499.866667pt;}
.x93_c00422{left:504.000000pt;}
.x3f_c00422{left:505.866667pt;}
.x4c_c00422{left:506.933333pt;}
.x1d_c00422{left:509.333333pt;}
.x57_c00422{left:510.266667pt;}
.xd6_c00422{left:511.333333pt;}
.xf7_c00422{left:513.600000pt;}
.xb4_c00422{left:516.266667pt;}
.x12e_c00422{left:517.733333pt;}
.x65_c00422{left:518.666667pt;}
.x1e_c00422{left:520.533333pt;}
.x36_c00422{left:521.866667pt;}
.x7f_c00422{left:522.933333pt;}
.x87_c00422{left:524.666667pt;}
.x70_c00422{left:525.600000pt;}
.xd_c00422{left:529.200000pt;}
.xb7_c00422{left:531.466667pt;}
.x12b_c00422{left:532.800000pt;}
.xc7_c00422{left:533.733333pt;}
.xcf_c00422{left:535.200000pt;}
.xe8_c00422{left:538.400000pt;}
.x104_c00422{left:540.133333pt;}
.x40_c00422{left:542.933333pt;}
.x9d_c00422{left:543.866667pt;}
.xe1_c00422{left:545.200000pt;}
.x37_c00422{left:546.133333pt;}
.x58_c00422{left:549.600000pt;}
.xd7_c00422{left:551.333333pt;}
.xe_c00422{left:552.533333pt;}
.xf2_c00422{left:553.866667pt;}
.x9e_c00422{left:557.333333pt;}
.x4d_c00422{left:559.733333pt;}
.x1f_c00422{left:562.133333pt;}
.x88_c00422{left:564.666667pt;}
.xb8_c00422{left:566.933333pt;}
.xf_c00422{left:567.866667pt;}
.xf8_c00422{left:570.000000pt;}
.x38_c00422{left:571.466667pt;}
.x66_c00422{left:573.066667pt;}
.x11b_c00422{left:576.133333pt;}
.x41_c00422{left:577.200000pt;}
.xc8_c00422{left:579.866667pt;}
.x71_c00422{left:580.933333pt;}
.xbd_c00422{left:583.200000pt;}
.xed_c00422{left:584.666667pt;}
.x4e_c00422{left:586.266667pt;}
.x67_c00422{left:587.733333pt;}
.x89_c00422{left:590.266667pt;}
.x61_c00422{left:592.666667pt;}
.xfa_c00422{left:597.200000pt;}
.x124_c00422{left:598.800000pt;}
.x80_c00422{left:600.400000pt;}
.x20_c00422{left:601.466667pt;}
.xc9_c00422{left:602.533333pt;}
.x4f_c00422{left:603.866667pt;}
.xd8_c00422{left:607.600000pt;}
.xe2_c00422{left:611.066667pt;}
.x9f_c00422{left:613.600000pt;}
.x98_c00422{left:614.666667pt;}
.x2c_c00422{left:617.600000pt;}
.x62_c00422{left:620.133333pt;}
.x21_c00422{left:622.533333pt;}
.xe9_c00422{left:623.466667pt;}
.xad_c00422{left:625.866667pt;}
.x42_c00422{left:627.066667pt;}
.x50_c00422{left:629.200000pt;}
.x39_c00422{left:630.400000pt;}
.xbe_c00422{left:634.400000pt;}
.x105_c00422{left:635.733333pt;}
.x72_c00422{left:637.200000pt;}
.x8a_c00422{left:638.933333pt;}
.xd0_c00422{left:642.000000pt;}
.xae_c00422{left:644.400000pt;}
.x10_c00422{left:646.266667pt;}
.x116_c00422{left:648.666667pt;}
.x108_c00422{left:650.000000pt;}
.x68_c00422{left:651.200000pt;}
.xa4_c00422{left:653.066667pt;}
.x59_c00422{left:654.666667pt;}
.x11_c00422{left:657.200000pt;}
.xbf_c00422{left:658.666667pt;}
.x81_c00422{left:660.533333pt;}
.x110_c00422{left:661.600000pt;}
.x2d_c00422{left:663.733333pt;}
.x125_c00422{left:666.000000pt;}
.x69_c00422{left:666.933333pt;}
.xb9_c00422{left:668.933333pt;}
.x99_c00422{left:670.400000pt;}
.xe3_c00422{left:671.866667pt;}
.x12f_c00422{left:673.600000pt;}
.xea_c00422{left:674.933333pt;}
.x126_c00422{left:676.533333pt;}
.xaf_c00422{left:677.733333pt;}
.x5a_c00422{left:678.933333pt;}
.xfb_c00422{left:680.666667pt;}
.x132_c00422{left:681.866667pt;}
.x117_c00422{left:682.933333pt;}
.x9a_c00422{left:688.000000pt;}
.x51_c00422{left:690.000000pt;}
.x43_c00422{left:691.733333pt;}
.x73_c00422{left:696.666667pt;}
.x130_c00422{left:698.266667pt;}
.x118_c00422{left:700.800000pt;}
.xa5_c00422{left:702.400000pt;}
.x82_c00422{left:703.466667pt;}
.xa0_c00422{left:704.533333pt;}
.x106_c00422{left:706.400000pt;}
.xd9_c00422{left:707.466667pt;}
.x11c_c00422{left:708.533333pt;}
.x2e_c00422{left:709.866667pt;}
.x5b_c00422{left:711.200000pt;}
.xb0_c00422{left:712.933333pt;}
.xca_c00422{left:718.800000pt;}
.x127_c00422{left:723.866667pt;}
}





/* 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_c00423 {
    display:none;
  }
  .loading-indicator_c00423.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00423 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_c00423 { 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_c00423" -> "#page-container .classname_c00423")
 */
.pf_c00423 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00423 { /* 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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00423 { /* 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_c00423 { /* 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_c00423 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00423 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00423 {overflow:visible;}
  }
}
.c_c00423 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00423 { /* 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_c00423:after { /* webkit #35443 */
  content: '';
}
.t_c00423:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00423 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 */
}
.__c00423 { /* 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_c00423 { /* info for Javascript */
  display:none;
}
.l_c00423 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00423 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00423 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00423: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_c00423 {
    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_c00423.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00423.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_c00423 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00423{font-family:sans-serif;visibility:hidden;}
.sc__c00423{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
}
.y0_c00423{bottom:0.000000px;}
.h1_c00423{height:1166.250000px;}
.h0_c00423{height:1166.400056px;}
.w0_c00423{width:920.879975px;}
.w1_c00423{width:921.000000px;}
.x0_c00423{left:0.000000px;}
@media print{
.y0_c00423{bottom:0.000000pt;}
.h1_c00423{height:1036.666667pt;}
.h0_c00423{height:1036.800049pt;}
.w0_c00423{width:818.559977pt;}
.w1_c00423{width:818.666667pt;}
.x0_c00423{left:0.000000pt;}
}





/* 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_c00424 {
    display:none;
  }
  .loading-indicator_c00424.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00424 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_c00424 { 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_c00424" -> "#page-container .classname_c00424")
 */
.pf_c00424 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00424 { /* 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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00424 { /* 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_c00424 { /* 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_c00424 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00424 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00424 {overflow:visible;}
  }
}
.c_c00424 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00424 { /* 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_c00424:after { /* webkit #35443 */
  content: '';
}
.t_c00424:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00424 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 */
}
.__c00424 { /* 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_c00424 { /* info for Javascript */
  display:none;
}
.l_c00424 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00424 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00424 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00424: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_c00424 {
    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_c00424.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00424.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_c00424 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00424{font-family:sans-serif;visibility:hidden;}
.sc__c00424{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
}
.y0_c00424{bottom:0.000000px;}
.h1_c00424{height:1166.250000px;}
.h0_c00424{height:1166.400056px;}
.w0_c00424{width:920.879975px;}
.w1_c00424{width:921.000000px;}
.x0_c00424{left:0.000000px;}
@media print{
.y0_c00424{bottom:0.000000pt;}
.h1_c00424{height:1036.666667pt;}
.h0_c00424{height:1036.800049pt;}
.w0_c00424{width:818.559977pt;}
.w1_c00424{width:818.666667pt;}
.x0_c00424{left:0.000000pt;}
}





/* 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_c00425 {
    display:none;
  }
  .loading-indicator_c00425.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00425 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_c00425 { 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_c00425" -> "#page-container .classname_c00425")
 */
.pf_c00425 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00425 { /* 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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00425 { /* 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_c00425 { /* 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_c00425 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00425 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00425 {overflow:visible;}
  }
}
.c_c00425 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00425 { /* 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_c00425:after { /* webkit #35443 */
  content: '';
}
.t_c00425:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00425 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 */
}
.__c00425 { /* 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_c00425 { /* info for Javascript */
  display:none;
}
.l_c00425 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00425 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00425 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00425: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_c00425 {
    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_c00425.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00425.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_c00425 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00425{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00425;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.000000;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;}
.m53_c00425{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m48_c00425{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00425{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00425{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m4_c00425{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00425{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00425{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00425{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m90_c00425{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00425{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m45_c00425{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m24_c00425{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m86_c00425{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00425{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00425{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m59_c00425{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m74_c00425{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m81_c00425{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m23_c00425{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m88_c00425{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m56_c00425{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m39_c00425{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m99_c00425{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m63_c00425{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00425{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00425{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m17_c00425{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00425{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m96_c00425{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00425{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m28_c00425{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00425{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m15_c00425{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00425{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.mb_c00425{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m57_c00425{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00425{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00425{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00425{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m76_c00425{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m35_c00425{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5_c00425{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m98_c00425{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m52_c00425{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m80_c00425{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m36_c00425{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m85_c00425{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m25_c00425{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m32_c00425{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m26_c00425{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00425{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00425{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00425{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00425{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m62_c00425{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7_c00425{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00425{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m27_c00425{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2_c00425{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m33_c00425{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m43_c00425{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m22_c00425{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m18_c00425{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m21_c00425{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m91_c00425{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m87_c00425{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m12_c00425{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00425{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m94_c00425{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00425{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m10_c00425{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m73_c00425{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);}
.m8e_c00425{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m50_c00425{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.me_c00425{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m16_c00425{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m37_c00425{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m95_c00425{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00425{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00425{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00425{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m29_c00425{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00425{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m38_c00425{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00425{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00425{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00425{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m31_c00425{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m19_c00425{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m46_c00425{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m42_c00425{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00425{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m71_c00425{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m40_c00425{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.ma_c00425{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00425{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m64_c00425{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m82_c00425{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00425{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m34_c00425{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m55_c00425{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00425{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00425{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00425{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00425{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m14_c00425{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00425{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m67_c00425{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m93_c00425{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m70_c00425{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m84_c00425{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.mf_c00425{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00425{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00425{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.md_c00425{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m11_c00425{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00425{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.mc_c00425{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00425{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m92_c00425{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m65_c00425{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00425{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00425{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m68_c00425{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m6_c00425{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m0_c00425{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00425{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m41_c00425{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00425{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3_c00425{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00425{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m30_c00425{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m58_c00425{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00425{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00425{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m13_c00425{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00425{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00425{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m49_c00425{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00425{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00425{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m69_c00425{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00425{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00425{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m97_c00425{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m72_c00425{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00425{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m77_c00425{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m44_c00425{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00425{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00425{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m20_c00425{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00425{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00425{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1_c00425{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m79_c00425{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m83_c00425{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m47_c00425{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m75_c00425{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m61_c00425{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00425{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m54_c00425{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m66_c00425{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00425{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m78_c00425{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m89_c00425{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m60_c00425{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00425{vertical-align:0.000000px;}
.ls0_c00425{letter-spacing:0.000000px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{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__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00425{word-spacing:-5.272727px;}
.ws6_c00425{word-spacing:0.000000px;}
.ws2_c00425{word-spacing:3.894096px;}
.ws1_c00425{word-spacing:6.000000px;}
.ws3_c00425{word-spacing:6.115385px;}
.ws0_c00425{word-spacing:12.396913px;}
.ws4_c00425{word-spacing:14.404738px;}
.fc0_c00425{color:transparent;}
.fs2_c00425{font-size:48.000000px;}
.fs1_c00425{font-size:54.000000px;}
.fs0_c00425{font-size:60.000000px;}
.y0_c00425{bottom:0.000000px;}
.y2b_c00425{bottom:135.750000px;}
.y2a_c00425{bottom:155.550000px;}
.y29_c00425{bottom:175.350000px;}
.y28_c00425{bottom:195.150000px;}
.y27_c00425{bottom:214.950000px;}
.y26_c00425{bottom:234.450000px;}
.y25_c00425{bottom:254.550000px;}
.y24_c00425{bottom:274.350000px;}
.y23_c00425{bottom:293.850000px;}
.y22_c00425{bottom:313.950000px;}
.y21_c00425{bottom:333.750000px;}
.y20_c00425{bottom:353.550000px;}
.y1f_c00425{bottom:373.350000px;}
.y1e_c00425{bottom:392.850000px;}
.y1d_c00425{bottom:412.950000px;}
.y1c_c00425{bottom:452.700000px;}
.y1b_c00425{bottom:472.500000px;}
.y1a_c00425{bottom:492.600000px;}
.y19_c00425{bottom:512.700000px;}
.y18_c00425{bottom:532.500000px;}
.y17_c00425{bottom:552.300000px;}
.y16_c00425{bottom:572.100000px;}
.y15_c00425{bottom:591.900000px;}
.y14_c00425{bottom:612.000000px;}
.y13_c00425{bottom:631.500000px;}
.y12_c00425{bottom:651.600000px;}
.y11_c00425{bottom:671.400000px;}
.y10_c00425{bottom:691.200000px;}
.yf_c00425{bottom:731.250000px;}
.ye_c00425{bottom:751.350000px;}
.yd_c00425{bottom:771.150000px;}
.yc_c00425{bottom:790.950000px;}
.yb_c00425{bottom:810.750000px;}
.ya_c00425{bottom:830.850000px;}
.y9_c00425{bottom:850.650000px;}
.y8_c00425{bottom:890.700000px;}
.y7_c00425{bottom:910.800000px;}
.y6_c00425{bottom:930.600000px;}
.y5_c00425{bottom:950.100000px;}
.y4_c00425{bottom:970.200000px;}
.y3_c00425{bottom:990.300000px;}
.y2_c00425{bottom:1010.100000px;}
.y1_c00425{bottom:1047.900000px;}
.h4_c00425{height:48.000000px;}
.h3_c00425{height:54.000000px;}
.h2_c00425{height:60.000000px;}
.h1_c00425{height:1166.250000px;}
.h0_c00425{height:1166.400056px;}
.w0_c00425{width:920.879975px;}
.w1_c00425{width:921.000000px;}
.x0_c00425{left:0.000000px;}
.x11e_c00425{left:93.150000px;}
.xe1_c00425{left:94.350000px;}
.x63_c00425{left:95.400000px;}
.x50_c00425{left:96.450000px;}
.x5_c00425{left:97.500000px;}
.x6_c00425{left:111.600000px;}
.x51_c00425{left:114.150000px;}
.xa8_c00425{left:118.200000px;}
.xd9_c00425{left:121.350000px;}
.xd0_c00425{left:123.450000px;}
.x25_c00425{left:125.100000px;}
.x59_c00425{left:127.050000px;}
.x29_c00425{left:128.550000px;}
.xfd_c00425{left:132.150000px;}
.xf9_c00425{left:133.200000px;}
.x6e_c00425{left:136.950000px;}
.xbb_c00425{left:139.050000px;}
.x77_c00425{left:142.350000px;}
.xe6_c00425{left:143.550000px;}
.x52_c00425{left:147.600000px;}
.x64_c00425{left:149.400000px;}
.xda_c00425{left:156.600000px;}
.x2a_c00425{left:158.400000px;}
.x42_c00425{left:159.600000px;}
.xfa_c00425{left:162.300000px;}
.x16_c00425{left:163.650000px;}
.x89_c00425{left:164.850000px;}
.xe7_c00425{left:165.900000px;}
.x7_c00425{left:167.400000px;}
.x26_c00425{left:168.600000px;}
.xc6_c00425{left:169.650000px;}
.xf4_c00425{left:171.150000px;}
.x9c_c00425{left:176.400000px;}
.xa4_c00425{left:178.350000px;}
.xe2_c00425{left:179.400000px;}
.x7f_c00425{left:180.900000px;}
.x38_c00425{left:182.700000px;}
.x116_c00425{left:184.200000px;}
.x8_c00425{left:189.750000px;}
.x78_c00425{left:190.950000px;}
.x109_c00425{left:195.600000px;}
.x2b_c00425{left:196.950000px;}
.x11f_c00425{left:199.350000px;}
.x27_c00425{left:201.000000px;}
.x8a_c00425{left:202.650000px;}
.xf5_c00425{left:205.350000px;}
.x39_c00425{left:206.850000px;}
.xd1_c00425{left:210.900000px;}
.x17_c00425{left:215.550000px;}
.x6f_c00425{left:217.200000px;}
.x80_c00425{left:219.000000px;}
.x28_c00425{left:220.800000px;}
.x43_c00425{left:224.400000px;}
.xfe_c00425{left:226.500000px;}
.x93_c00425{left:227.700000px;}
.x105_c00425{left:229.200000px;}
.xd2_c00425{left:230.400000px;}
.x8b_c00425{left:232.200000px;}
.xbc_c00425{left:233.700000px;}
.x70_c00425{left:234.900000px;}
.xe3_c00425{left:237.000000px;}
.x3a_c00425{left:238.200000px;}
.x44_c00425{left:241.350000px;}
.x8d_c00425{left:244.500000px;}
.x5a_c00425{left:245.850000px;}
.x9_c00425{left:247.350000px;}
.x9d_c00425{left:248.400000px;}
.x106_c00425{left:249.750000px;}
.xe8_c00425{left:254.850000px;}
.x18_c00425{left:256.650000px;}
.xa9_c00425{left:259.050000px;}
.xbd_c00425{left:260.700000px;}
.xff_c00425{left:261.750000px;}
.xb2_c00425{left:262.950000px;}
.xa_c00425{left:265.650000px;}
.xe4_c00425{left:268.350000px;}
.x81_c00425{left:273.750000px;}
.x2c_c00425{left:275.100000px;}
.xc7_c00425{left:276.150000px;}
.x10f_c00425{left:277.500000px;}
.xb_c00425{left:279.300000px;}
.x45_c00425{left:282.000000px;}
.x117_c00425{left:283.950000px;}
.x107_c00425{left:285.750000px;}
.xc9_c00425{left:289.350000px;}
.x5b_c00425{left:292.350000px;}
.xd7_c00425{left:295.350000px;}
.x65_c00425{left:297.000000px;}
.x94_c00425{left:298.650000px;}
.xef_c00425{left:299.700000px;}
.x53_c00425{left:300.900000px;}
.x19_c00425{left:305.550000px;}
.x110_c00425{left:314.550000px;}
.xe5_c00425{left:316.950000px;}
.x2d_c00425{left:319.800000px;}
.x95_c00425{left:322.050000px;}
.xca_c00425{left:323.250000px;}
.xdb_c00425{left:324.300000px;}
.x46_c00425{left:325.500000px;}
.xbe_c00425{left:327.000000px;}
.x1a_c00425{left:328.200000px;}
.xaa_c00425{left:329.550000px;}
.x66_c00425{left:333.000000px;}
.x79_c00425{left:334.650000px;}
.x2e_c00425{left:336.750000px;}
.xc_c00425{left:341.250000px;}
.xe9_c00425{left:342.300000px;}
.xc8_c00425{left:344.550000px;}
.xcb_c00425{left:345.900000px;}
.xbf_c00425{left:347.550000px;}
.x82_c00425{left:349.350000px;}
.x8c_c00425{left:352.050000px;}
.x3b_c00425{left:353.100000px;}
.x71_c00425{left:355.200000px;}
.x122_c00425{left:357.000000px;}
.x96_c00425{left:358.800000px;}
.x1b_c00425{left:360.300000px;}
.x2f_c00425{left:364.500000px;}
.xab_c00425{left:365.850000px;}
.xea_c00425{left:368.250000px;}
.x67_c00425{left:370.050000px;}
.x72_c00425{left:372.900000px;}
.x1_c00425{left:375.150000px;}
.x47_c00425{left:376.950000px;}
.x118_c00425{left:379.050000px;}
.x58_c00425{left:380.850000px;}
.xb3_c00425{left:382.500000px;}
.x68_c00425{left:386.250000px;}
.xcc_c00425{left:388.050000px;}
.x100_c00425{left:389.850000px;}
.xd_c00425{left:392.700000px;}
.x30_c00425{left:395.400000px;}
.x7a_c00425{left:397.350000px;}
.xb4_c00425{left:402.000000px;}
.xfb_c00425{left:404.550000px;}
.x1c_c00425{left:406.350000px;}
.x123_c00425{left:408.150000px;}
.x73_c00425{left:409.950000px;}
.x54_c00425{left:412.050000px;}
.x3c_c00425{left:413.250000px;}
.x2_c00425{left:415.800000px;}
.x7b_c00425{left:418.950000px;}
.xf0_c00425{left:420.900000px;}
.x101_c00425{left:422.550000px;}
.xf6_c00425{left:425.400000px;}
.x1d_c00425{left:427.200000px;}
.x55_c00425{left:430.050000px;}
.x7c_c00425{left:431.250000px;}
.xd3_c00425{left:432.750000px;}
.x9e_c00425{left:434.850000px;}
.x10a_c00425{left:437.550000px;}
.xeb_c00425{left:439.200000px;}
.x48_c00425{left:440.250000px;}
.xcd_c00425{left:442.050000px;}
.xe_c00425{left:443.100000px;}
.x97_c00425{left:444.150000px;}
.xac_c00425{left:447.150000px;}
.x1e_c00425{left:448.800000px;}
.x3_c00425{left:450.300000px;}
.x111_c00425{left:451.350000px;}
.x5c_c00425{left:453.150000px;}
.xd4_c00425{left:454.350000px;}
.x9f_c00425{left:455.400000px;}
.x8e_c00425{left:457.200000px;}
.x83_c00425{left:459.150000px;}
.xdc_c00425{left:460.950000px;}
.x31_c00425{left:464.550000px;}
.x56_c00425{left:466.050000px;}
.xf1_c00425{left:467.400000px;}
.x3d_c00425{left:469.800000px;}
.x49_c00425{left:471.600000px;}
.xc0_c00425{left:473.850000px;}
.x120_c00425{left:475.050000px;}
.xec_c00425{left:477.300000px;}
.xf_c00425{left:478.350000px;}
.x1f_c00425{left:480.150000px;}
.x98_c00425{left:484.500000px;}
.xb5_c00425{left:486.300000px;}
.x74_c00425{left:487.650000px;}
.x4a_c00425{left:492.450000px;}
.x114_c00425{left:493.500000px;}
.x3e_c00425{left:495.300000px;}
.x8f_c00425{left:497.550000px;}
.xed_c00425{left:499.200000px;}
.xa5_c00425{left:501.000000px;}
.x5d_c00425{left:502.050000px;}
.x108_c00425{left:503.550000px;}
.x11c_c00425{left:506.700000px;}
.x69_c00425{left:508.950000px;}
.xdd_c00425{left:512.400000px;}
.xb6_c00425{left:518.700000px;}
.xa0_c00425{left:523.500000px;}
.x57_c00425{left:524.700000px;}
.x10_c00425{left:529.050000px;}
.xee_c00425{left:530.850000px;}
.x84_c00425{left:532.950000px;}
.x99_c00425{left:534.900000px;}
.x90_c00425{left:537.900000px;}
.x124_c00425{left:540.150000px;}
.xad_c00425{left:541.800000px;}
.x10b_c00425{left:543.750000px;}
.x20_c00425{left:544.950000px;}
.x4b_c00425{left:548.250000px;}
.x32_c00425{left:550.200000px;}
.xc1_c00425{left:551.550000px;}
.xd8_c00425{left:553.650000px;}
.xa1_c00425{left:558.750000px;}
.x5e_c00425{left:561.750000px;}
.xae_c00425{left:563.100000px;}
.x6a_c00425{left:565.050000px;}
.x85_c00425{left:567.150000px;}
.x33_c00425{left:568.500000px;}
.x11_c00425{left:570.150000px;}
.xa6_c00425{left:572.250000px;}
.x3f_c00425{left:574.800000px;}
.xfc_c00425{left:576.300000px;}
.x5f_c00425{left:578.250000px;}
.xc2_c00425{left:580.050000px;}
.x21_c00425{left:583.050000px;}
.x7d_c00425{left:584.250000px;}
.x9a_c00425{left:586.050000px;}
.xf2_c00425{left:587.250000px;}
.x102_c00425{left:588.900000px;}
.x75_c00425{left:591.000000px;}
.x34_c00425{left:593.700000px;}
.x4c_c00425{left:595.500000px;}
.xde_c00425{left:598.050000px;}
.x119_c00425{left:599.250000px;}
.xb7_c00425{left:600.900000px;}
.x91_c00425{left:601.950000px;}
.xd5_c00425{left:603.300000px;}
.x12_c00425{left:607.200000px;}
.xce_c00425{left:609.750000px;}
.x60_c00425{left:613.500000px;}
.x103_c00425{left:616.950000px;}
.x10c_c00425{left:619.350000px;}
.xc3_c00425{left:628.050000px;}
.xb8_c00425{left:631.200000px;}
.x13_c00425{left:633.450000px;}
.x11a_c00425{left:634.500000px;}
.x35_c00425{left:635.850000px;}
.x86_c00425{left:640.950000px;}
.x11d_c00425{left:644.700000px;}
.x40_c00425{left:647.100000px;}
.x115_c00425{left:648.300000px;}
.x36_c00425{left:652.350000px;}
.x22_c00425{left:654.300000px;}
.xf3_c00425{left:658.200000px;}
.x6b_c00425{left:659.700000px;}
.x112_c00425{left:661.500000px;}
.x7e_c00425{left:665.550000px;}
.x4d_c00425{left:667.500000px;}
.xaf_c00425{left:669.000000px;}
.x61_c00425{left:670.350000px;}
.xdf_c00425{left:673.950000px;}
.x9b_c00425{left:675.000000px;}
.x10d_c00425{left:677.400000px;}
.x121_c00425{left:678.750000px;}
.x37_c00425{left:680.850000px;}
.x76_c00425{left:684.300000px;}
.xb9_c00425{left:685.500000px;}
.x87_c00425{left:687.450000px;}
.xf7_c00425{left:689.700000px;}
.x14_c00425{left:690.750000px;}
.x23_c00425{left:692.100000px;}
.xa7_c00425{left:694.050000px;}
.xc4_c00425{left:695.400000px;}
.x10e_c00425{left:697.200000px;}
.xb0_c00425{left:698.550000px;}
.x4e_c00425{left:700.950000px;}
.x41_c00425{left:703.950000px;}
.x6c_c00425{left:706.200000px;}
.x15_c00425{left:708.000000px;}
.xa2_c00425{left:709.650000px;}
.xc5_c00425{left:712.350000px;}
.xd6_c00425{left:713.700000px;}
.xe0_c00425{left:718.950000px;}
.x6d_c00425{left:726.300000px;}
.x4f_c00425{left:728.250000px;}
.xf8_c00425{left:730.800000px;}
.x88_c00425{left:732.150000px;}
.xcf_c00425{left:733.950000px;}
.x113_c00425{left:735.300000px;}
.x104_c00425{left:736.950000px;}
.x4_c00425{left:738.000000px;}
.xa3_c00425{left:739.500000px;}
.x92_c00425{left:741.000000px;}
.x11b_c00425{left:743.550000px;}
.x62_c00425{left:746.250000px;}
.x24_c00425{left:748.200000px;}
.xba_c00425{left:750.300000px;}
.xb1_c00425{left:751.800000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws5_c00425{word-spacing:-4.686869pt;}
.ws6_c00425{word-spacing:0.000000pt;}
.ws2_c00425{word-spacing:3.461418pt;}
.ws1_c00425{word-spacing:5.333333pt;}
.ws3_c00425{word-spacing:5.435897pt;}
.ws0_c00425{word-spacing:11.019478pt;}
.ws4_c00425{word-spacing:12.804212pt;}
.fs2_c00425{font-size:42.666667pt;}
.fs1_c00425{font-size:48.000000pt;}
.fs0_c00425{font-size:53.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y2b_c00425{bottom:120.666667pt;}
.y2a_c00425{bottom:138.266667pt;}
.y29_c00425{bottom:155.866667pt;}
.y28_c00425{bottom:173.466667pt;}
.y27_c00425{bottom:191.066667pt;}
.y26_c00425{bottom:208.400000pt;}
.y25_c00425{bottom:226.266667pt;}
.y24_c00425{bottom:243.866667pt;}
.y23_c00425{bottom:261.200000pt;}
.y22_c00425{bottom:279.066667pt;}
.y21_c00425{bottom:296.666667pt;}
.y20_c00425{bottom:314.266667pt;}
.y1f_c00425{bottom:331.866667pt;}
.y1e_c00425{bottom:349.200000pt;}
.y1d_c00425{bottom:367.066667pt;}
.y1c_c00425{bottom:402.400000pt;}
.y1b_c00425{bottom:420.000000pt;}
.y1a_c00425{bottom:437.866667pt;}
.y19_c00425{bottom:455.733333pt;}
.y18_c00425{bottom:473.333333pt;}
.y17_c00425{bottom:490.933333pt;}
.y16_c00425{bottom:508.533333pt;}
.y15_c00425{bottom:526.133333pt;}
.y14_c00425{bottom:544.000000pt;}
.y13_c00425{bottom:561.333333pt;}
.y12_c00425{bottom:579.200000pt;}
.y11_c00425{bottom:596.800000pt;}
.y10_c00425{bottom:614.400000pt;}
.yf_c00425{bottom:650.000000pt;}
.ye_c00425{bottom:667.866667pt;}
.yd_c00425{bottom:685.466667pt;}
.yc_c00425{bottom:703.066667pt;}
.yb_c00425{bottom:720.666667pt;}
.ya_c00425{bottom:738.533333pt;}
.y9_c00425{bottom:756.133333pt;}
.y8_c00425{bottom:791.733333pt;}
.y7_c00425{bottom:809.600000pt;}
.y6_c00425{bottom:827.200000pt;}
.y5_c00425{bottom:844.533333pt;}
.y4_c00425{bottom:862.400000pt;}
.y3_c00425{bottom:880.266667pt;}
.y2_c00425{bottom:897.866667pt;}
.y1_c00425{bottom:931.466667pt;}
.h4_c00425{height:42.666667pt;}
.h3_c00425{height:48.000000pt;}
.h2_c00425{height:53.333333pt;}
.h1_c00425{height:1036.666667pt;}
.h0_c00425{height:1036.800049pt;}
.w0_c00425{width:818.559977pt;}
.w1_c00425{width:818.666667pt;}
.x0_c00425{left:0.000000pt;}
.x11e_c00425{left:82.800000pt;}
.xe1_c00425{left:83.866667pt;}
.x63_c00425{left:84.800000pt;}
.x50_c00425{left:85.733333pt;}
.x5_c00425{left:86.666667pt;}
.x6_c00425{left:99.200000pt;}
.x51_c00425{left:101.466667pt;}
.xa8_c00425{left:105.066667pt;}
.xd9_c00425{left:107.866667pt;}
.xd0_c00425{left:109.733333pt;}
.x25_c00425{left:111.200000pt;}
.x59_c00425{left:112.933333pt;}
.x29_c00425{left:114.266667pt;}
.xfd_c00425{left:117.466667pt;}
.xf9_c00425{left:118.400000pt;}
.x6e_c00425{left:121.733333pt;}
.xbb_c00425{left:123.600000pt;}
.x77_c00425{left:126.533333pt;}
.xe6_c00425{left:127.600000pt;}
.x52_c00425{left:131.200000pt;}
.x64_c00425{left:132.800000pt;}
.xda_c00425{left:139.200000pt;}
.x2a_c00425{left:140.800000pt;}
.x42_c00425{left:141.866667pt;}
.xfa_c00425{left:144.266667pt;}
.x16_c00425{left:145.466667pt;}
.x89_c00425{left:146.533333pt;}
.xe7_c00425{left:147.466667pt;}
.x7_c00425{left:148.800000pt;}
.x26_c00425{left:149.866667pt;}
.xc6_c00425{left:150.800000pt;}
.xf4_c00425{left:152.133333pt;}
.x9c_c00425{left:156.800000pt;}
.xa4_c00425{left:158.533333pt;}
.xe2_c00425{left:159.466667pt;}
.x7f_c00425{left:160.800000pt;}
.x38_c00425{left:162.400000pt;}
.x116_c00425{left:163.733333pt;}
.x8_c00425{left:168.666667pt;}
.x78_c00425{left:169.733333pt;}
.x109_c00425{left:173.866667pt;}
.x2b_c00425{left:175.066667pt;}
.x11f_c00425{left:177.200000pt;}
.x27_c00425{left:178.666667pt;}
.x8a_c00425{left:180.133333pt;}
.xf5_c00425{left:182.533333pt;}
.x39_c00425{left:183.866667pt;}
.xd1_c00425{left:187.466667pt;}
.x17_c00425{left:191.600000pt;}
.x6f_c00425{left:193.066667pt;}
.x80_c00425{left:194.666667pt;}
.x28_c00425{left:196.266667pt;}
.x43_c00425{left:199.466667pt;}
.xfe_c00425{left:201.333333pt;}
.x93_c00425{left:202.400000pt;}
.x105_c00425{left:203.733333pt;}
.xd2_c00425{left:204.800000pt;}
.x8b_c00425{left:206.400000pt;}
.xbc_c00425{left:207.733333pt;}
.x70_c00425{left:208.800000pt;}
.xe3_c00425{left:210.666667pt;}
.x3a_c00425{left:211.733333pt;}
.x44_c00425{left:214.533333pt;}
.x8d_c00425{left:217.333333pt;}
.x5a_c00425{left:218.533333pt;}
.x9_c00425{left:219.866667pt;}
.x9d_c00425{left:220.800000pt;}
.x106_c00425{left:222.000000pt;}
.xe8_c00425{left:226.533333pt;}
.x18_c00425{left:228.133333pt;}
.xa9_c00425{left:230.266667pt;}
.xbd_c00425{left:231.733333pt;}
.xff_c00425{left:232.666667pt;}
.xb2_c00425{left:233.733333pt;}
.xa_c00425{left:236.133333pt;}
.xe4_c00425{left:238.533333pt;}
.x81_c00425{left:243.333333pt;}
.x2c_c00425{left:244.533333pt;}
.xc7_c00425{left:245.466667pt;}
.x10f_c00425{left:246.666667pt;}
.xb_c00425{left:248.266667pt;}
.x45_c00425{left:250.666667pt;}
.x117_c00425{left:252.400000pt;}
.x107_c00425{left:254.000000pt;}
.xc9_c00425{left:257.200000pt;}
.x5b_c00425{left:259.866667pt;}
.xd7_c00425{left:262.533333pt;}
.x65_c00425{left:264.000000pt;}
.x94_c00425{left:265.466667pt;}
.xef_c00425{left:266.400000pt;}
.x53_c00425{left:267.466667pt;}
.x19_c00425{left:271.600000pt;}
.x110_c00425{left:279.600000pt;}
.xe5_c00425{left:281.733333pt;}
.x2d_c00425{left:284.266667pt;}
.x95_c00425{left:286.266667pt;}
.xca_c00425{left:287.333333pt;}
.xdb_c00425{left:288.266667pt;}
.x46_c00425{left:289.333333pt;}
.xbe_c00425{left:290.666667pt;}
.x1a_c00425{left:291.733333pt;}
.xaa_c00425{left:292.933333pt;}
.x66_c00425{left:296.000000pt;}
.x79_c00425{left:297.466667pt;}
.x2e_c00425{left:299.333333pt;}
.xc_c00425{left:303.333333pt;}
.xe9_c00425{left:304.266667pt;}
.xc8_c00425{left:306.266667pt;}
.xcb_c00425{left:307.466667pt;}
.xbf_c00425{left:308.933333pt;}
.x82_c00425{left:310.533333pt;}
.x8c_c00425{left:312.933333pt;}
.x3b_c00425{left:313.866667pt;}
.x71_c00425{left:315.733333pt;}
.x122_c00425{left:317.333333pt;}
.x96_c00425{left:318.933333pt;}
.x1b_c00425{left:320.266667pt;}
.x2f_c00425{left:324.000000pt;}
.xab_c00425{left:325.200000pt;}
.xea_c00425{left:327.333333pt;}
.x67_c00425{left:328.933333pt;}
.x72_c00425{left:331.466667pt;}
.x1_c00425{left:333.466667pt;}
.x47_c00425{left:335.066667pt;}
.x118_c00425{left:336.933333pt;}
.x58_c00425{left:338.533333pt;}
.xb3_c00425{left:340.000000pt;}
.x68_c00425{left:343.333333pt;}
.xcc_c00425{left:344.933333pt;}
.x100_c00425{left:346.533333pt;}
.xd_c00425{left:349.066667pt;}
.x30_c00425{left:351.466667pt;}
.x7a_c00425{left:353.200000pt;}
.xb4_c00425{left:357.333333pt;}
.xfb_c00425{left:359.600000pt;}
.x1c_c00425{left:361.200000pt;}
.x123_c00425{left:362.800000pt;}
.x73_c00425{left:364.400000pt;}
.x54_c00425{left:366.266667pt;}
.x3c_c00425{left:367.333333pt;}
.x2_c00425{left:369.600000pt;}
.x7b_c00425{left:372.400000pt;}
.xf0_c00425{left:374.133333pt;}
.x101_c00425{left:375.600000pt;}
.xf6_c00425{left:378.133333pt;}
.x1d_c00425{left:379.733333pt;}
.x55_c00425{left:382.266667pt;}
.x7c_c00425{left:383.333333pt;}
.xd3_c00425{left:384.666667pt;}
.x9e_c00425{left:386.533333pt;}
.x10a_c00425{left:388.933333pt;}
.xeb_c00425{left:390.400000pt;}
.x48_c00425{left:391.333333pt;}
.xcd_c00425{left:392.933333pt;}
.xe_c00425{left:393.866667pt;}
.x97_c00425{left:394.800000pt;}
.xac_c00425{left:397.466667pt;}
.x1e_c00425{left:398.933333pt;}
.x3_c00425{left:400.266667pt;}
.x111_c00425{left:401.200000pt;}
.x5c_c00425{left:402.800000pt;}
.xd4_c00425{left:403.866667pt;}
.x9f_c00425{left:404.800000pt;}
.x8e_c00425{left:406.400000pt;}
.x83_c00425{left:408.133333pt;}
.xdc_c00425{left:409.733333pt;}
.x31_c00425{left:412.933333pt;}
.x56_c00425{left:414.266667pt;}
.xf1_c00425{left:415.466667pt;}
.x3d_c00425{left:417.600000pt;}
.x49_c00425{left:419.200000pt;}
.xc0_c00425{left:421.200000pt;}
.x120_c00425{left:422.266667pt;}
.xec_c00425{left:424.266667pt;}
.xf_c00425{left:425.200000pt;}
.x1f_c00425{left:426.800000pt;}
.x98_c00425{left:430.666667pt;}
.xb5_c00425{left:432.266667pt;}
.x74_c00425{left:433.466667pt;}
.x4a_c00425{left:437.733333pt;}
.x114_c00425{left:438.666667pt;}
.x3e_c00425{left:440.266667pt;}
.x8f_c00425{left:442.266667pt;}
.xed_c00425{left:443.733333pt;}
.xa5_c00425{left:445.333333pt;}
.x5d_c00425{left:446.266667pt;}
.x108_c00425{left:447.600000pt;}
.x11c_c00425{left:450.400000pt;}
.x69_c00425{left:452.400000pt;}
.xdd_c00425{left:455.466667pt;}
.xb6_c00425{left:461.066667pt;}
.xa0_c00425{left:465.333333pt;}
.x57_c00425{left:466.400000pt;}
.x10_c00425{left:470.266667pt;}
.xee_c00425{left:471.866667pt;}
.x84_c00425{left:473.733333pt;}
.x99_c00425{left:475.466667pt;}
.x90_c00425{left:478.133333pt;}
.x124_c00425{left:480.133333pt;}
.xad_c00425{left:481.600000pt;}
.x10b_c00425{left:483.333333pt;}
.x20_c00425{left:484.400000pt;}
.x4b_c00425{left:487.333333pt;}
.x32_c00425{left:489.066667pt;}
.xc1_c00425{left:490.266667pt;}
.xd8_c00425{left:492.133333pt;}
.xa1_c00425{left:496.666667pt;}
.x5e_c00425{left:499.333333pt;}
.xae_c00425{left:500.533333pt;}
.x6a_c00425{left:502.266667pt;}
.x85_c00425{left:504.133333pt;}
.x33_c00425{left:505.333333pt;}
.x11_c00425{left:506.800000pt;}
.xa6_c00425{left:508.666667pt;}
.x3f_c00425{left:510.933333pt;}
.xfc_c00425{left:512.266667pt;}
.x5f_c00425{left:514.000000pt;}
.xc2_c00425{left:515.600000pt;}
.x21_c00425{left:518.266667pt;}
.x7d_c00425{left:519.333333pt;}
.x9a_c00425{left:520.933333pt;}
.xf2_c00425{left:522.000000pt;}
.x102_c00425{left:523.466667pt;}
.x75_c00425{left:525.333333pt;}
.x34_c00425{left:527.733333pt;}
.x4c_c00425{left:529.333333pt;}
.xde_c00425{left:531.600000pt;}
.x119_c00425{left:532.666667pt;}
.xb7_c00425{left:534.133333pt;}
.x91_c00425{left:535.066667pt;}
.xd5_c00425{left:536.266667pt;}
.x12_c00425{left:539.733333pt;}
.xce_c00425{left:542.000000pt;}
.x60_c00425{left:545.333333pt;}
.x103_c00425{left:548.400000pt;}
.x10c_c00425{left:550.533333pt;}
.xc3_c00425{left:558.266667pt;}
.xb8_c00425{left:561.066667pt;}
.x13_c00425{left:563.066667pt;}
.x11a_c00425{left:564.000000pt;}
.x35_c00425{left:565.200000pt;}
.x86_c00425{left:569.733333pt;}
.x11d_c00425{left:573.066667pt;}
.x40_c00425{left:575.200000pt;}
.x115_c00425{left:576.266667pt;}
.x36_c00425{left:579.866667pt;}
.x22_c00425{left:581.600000pt;}
.xf3_c00425{left:585.066667pt;}
.x6b_c00425{left:586.400000pt;}
.x112_c00425{left:588.000000pt;}
.x7e_c00425{left:591.600000pt;}
.x4d_c00425{left:593.333333pt;}
.xaf_c00425{left:594.666667pt;}
.x61_c00425{left:595.866667pt;}
.xdf_c00425{left:599.066667pt;}
.x9b_c00425{left:600.000000pt;}
.x10d_c00425{left:602.133333pt;}
.x121_c00425{left:603.333333pt;}
.x37_c00425{left:605.200000pt;}
.x76_c00425{left:608.266667pt;}
.xb9_c00425{left:609.333333pt;}
.x87_c00425{left:611.066667pt;}
.xf7_c00425{left:613.066667pt;}
.x14_c00425{left:614.000000pt;}
.x23_c00425{left:615.200000pt;}
.xa7_c00425{left:616.933333pt;}
.xc4_c00425{left:618.133333pt;}
.x10e_c00425{left:619.733333pt;}
.xb0_c00425{left:620.933333pt;}
.x4e_c00425{left:623.066667pt;}
.x41_c00425{left:625.733333pt;}
.x6c_c00425{left:627.733333pt;}
.x15_c00425{left:629.333333pt;}
.xa2_c00425{left:630.800000pt;}
.xc5_c00425{left:633.200000pt;}
.xd6_c00425{left:634.400000pt;}
.xe0_c00425{left:639.066667pt;}
.x6d_c00425{left:645.600000pt;}
.x4f_c00425{left:647.333333pt;}
.xf8_c00425{left:649.600000pt;}
.x88_c00425{left:650.800000pt;}
.xcf_c00425{left:652.400000pt;}
.x113_c00425{left:653.600000pt;}
.x104_c00425{left:655.066667pt;}
.x4_c00425{left:656.000000pt;}
.xa3_c00425{left:657.333333pt;}
.x92_c00425{left:658.666667pt;}
.x11b_c00425{left:660.933333pt;}
.x62_c00425{left:663.333333pt;}
.x24_c00425{left:665.066667pt;}
.xba_c00425{left:666.933333pt;}
.xb1_c00425{left:668.266667pt;}
}





/* 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_c00426 {
    display:none;
  }
  .loading-indicator_c00426.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00426 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_c00426 { 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_c00426" -> "#page-container .classname_c00426")
 */
.pf_c00426 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00426 { /* 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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00426 { /* 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_c00426 { /* 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_c00426 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00426 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00426 {overflow:visible;}
  }
}
.c_c00426 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00426 { /* 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_c00426:after { /* webkit #35443 */
  content: '';
}
.t_c00426:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00426 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 */
}
.__c00426 { /* 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_c00426 { /* info for Javascript */
  display:none;
}
.l_c00426 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00426 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00426 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00426: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_c00426 {
    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_c00426.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00426.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_c00426 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00426{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00426;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.000000;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;}
.m12_c00426{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00426{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00426{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00426{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00426{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00426{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m78_c00426{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00426{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00426{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m99_c00426{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00426{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m89_c00426{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mac_c00426{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00426{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m82_c00426{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m74_c00426{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00426{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m77_c00426{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m92_c00426{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m91_c00426{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m54_c00426{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00426{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00426{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00426{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m42_c00426{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m23_c00426{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00426{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m58_c00426{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00426{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00426{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m61_c00426{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m13_c00426{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00426{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m43_c00426{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00426{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00426{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m95_c00426{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m93_c00426{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m14_c00426{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m79_c00426{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m19_c00426{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00426{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00426{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m57_c00426{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m76_c00426{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00426{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m24_c00426{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m33_c00426{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m88_c00426{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6_c00426{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m28_c00426{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00426{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m73_c00426{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m56_c00426{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m39_c00426{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m47_c00426{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.maa_c00426{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m26_c00426{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00426{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00426{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00426{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00426{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m63_c00426{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00426{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m41_c00426{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m38_c00426{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m48_c00426{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m96_c00426{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00426{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m5_c00426{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m97_c00426{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.me_c00426{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m69_c00426{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mf_c00426{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00426{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m84_c00426{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m53_c00426{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00426{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00426{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m67_c00426{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);}
.m5e_c00426{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m64_c00426{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m81_c00426{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m80_c00426{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m51_c00426{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00426{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m29_c00426{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m85_c00426{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m25_c00426{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m65_c00426{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m37_c00426{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m46_c00426{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m98_c00426{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00426{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00426{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00426{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m31_c00426{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00426{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m40_c00426{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m20_c00426{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00426{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m83_c00426{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m72_c00426{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00426{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00426{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00426{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00426{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00426{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00426{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m4_c00426{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m90_c00426{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00426{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m17_c00426{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m34_c00426{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00426{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m44_c00426{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00426{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mab_c00426{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m55_c00426{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m94_c00426{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00426{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m16_c00426{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00426{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00426{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m68_c00426{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m11_c00426{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00426{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m75_c00426{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m30_c00426{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00426{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m70_c00426{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m71_c00426{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m62_c00426{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m15_c00426{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00426{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m35_c00426{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m60_c00426{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m59_c00426{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m22_c00426{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00426{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00426{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m18_c00426{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00426{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m52_c00426{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m66_c00426{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00426{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m50_c00426{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00426{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m21_c00426{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00426{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00426{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00426{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m87_c00426{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49_c00426{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00426{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00426{transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336750,0.000000,0.000000,0.250000,0,0);}
.m27_c00426{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m10_c00426{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00426{transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00426{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00426{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m36_c00426{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m86_c00426{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00426{vertical-align:0.000000px;}
.ls0_c00426{letter-spacing:0.000000px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{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__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-4.923077px;}
.ws2_c00426{word-spacing:-1.178571px;}
.ws4_c00426{word-spacing:0.000000px;}
.ws3_c00426{word-spacing:3.000000px;}
.ws1_c00426{word-spacing:17.333333px;}
.fc0_c00426{color:transparent;}
.fs0_c00426{font-size:54.000000px;}
.y0_c00426{bottom:0.000000px;}
.y2c_c00426{bottom:154.800000px;}
.y2b_c00426{bottom:174.900000px;}
.y2a_c00426{bottom:194.700000px;}
.y29_c00426{bottom:214.800000px;}
.y28_c00426{bottom:234.600000px;}
.y27_c00426{bottom:254.400000px;}
.y26_c00426{bottom:274.200000px;}
.y25_c00426{bottom:294.300000px;}
.y24_c00426{bottom:314.100000px;}
.y23_c00426{bottom:334.200000px;}
.y22_c00426{bottom:354.000000px;}
.y21_c00426{bottom:373.800000px;}
.y20_c00426{bottom:393.600000px;}
.y1f_c00426{bottom:413.400000px;}
.y1e_c00426{bottom:433.500000px;}
.y1d_c00426{bottom:453.300000px;}
.y1c_c00426{bottom:473.100000px;}
.y1b_c00426{bottom:492.900000px;}
.y1a_c00426{bottom:512.700000px;}
.y19_c00426{bottom:532.800000px;}
.y18_c00426{bottom:552.300000px;}
.y17_c00426{bottom:572.100000px;}
.y16_c00426{bottom:592.200000px;}
.y15_c00426{bottom:612.000000px;}
.y14_c00426{bottom:631.800000px;}
.y13_c00426{bottom:651.600000px;}
.y12_c00426{bottom:671.400000px;}
.y11_c00426{bottom:691.500000px;}
.y10_c00426{bottom:711.750000px;}
.yf_c00426{bottom:731.850000px;}
.ye_c00426{bottom:751.650000px;}
.yd_c00426{bottom:771.150000px;}
.yc_c00426{bottom:811.350000px;}
.yb_c00426{bottom:831.150000px;}
.ya_c00426{bottom:850.950000px;}
.y9_c00426{bottom:870.750000px;}
.y8_c00426{bottom:890.250000px;}
.y7_c00426{bottom:910.500000px;}
.y6_c00426{bottom:930.300000px;}
.y5_c00426{bottom:950.100000px;}
.y4_c00426{bottom:969.600000px;}
.y3_c00426{bottom:989.700000px;}
.y2_c00426{bottom:1009.500000px;}
.y1_c00426{bottom:1046.850000px;}
.h2_c00426{height:54.000000px;}
.h1_c00426{height:1166.250000px;}
.h0_c00426{height:1166.400056px;}
.w0_c00426{width:920.879975px;}
.w1_c00426{width:921.000000px;}
.x0_c00426{left:0.000000px;}
.x11f_c00426{left:140.850000px;}
.xed_c00426{left:142.350000px;}
.xcd_c00426{left:143.550000px;}
.xc4_c00426{left:144.750000px;}
.x9d_c00426{left:145.950000px;}
.x60_c00426{left:147.000000px;}
.x3_c00426{left:148.350000px;}
.x1_c00426{left:149.400000px;}
.xd8_c00426{left:161.100000px;}
.x4d_c00426{left:163.800000px;}
.xfc_c00426{left:167.400000px;}
.xf6_c00426{left:168.750000px;}
.xc1_c00426{left:173.850000px;}
.xae_c00426{left:176.100000px;}
.x7a_c00426{left:177.300000px;}
.x54_c00426{left:178.500000px;}
.x61_c00426{left:181.500000px;}
.x4_c00426{left:183.600000px;}
.x34_c00426{left:186.000000px;}
.xc5_c00426{left:189.450000px;}
.xb7_c00426{left:193.050000px;}
.xbd_c00426{left:195.150000px;}
.x125_c00426{left:196.200000px;}
.x4e_c00426{left:197.250000px;}
.x55_c00426{left:198.300000px;}
.x9e_c00426{left:199.650000px;}
.x62_c00426{left:201.000000px;}
.x44_c00426{left:206.250000px;}
.xfd_c00426{left:208.500000px;}
.x6f_c00426{left:210.900000px;}
.xf7_c00426{left:212.250000px;}
.xdd_c00426{left:213.300000px;}
.x8b_c00426{left:214.650000px;}
.x7b_c00426{left:215.850000px;}
.x35_c00426{left:217.350000px;}
.x16_c00426{left:218.400000px;}
.x5_c00426{left:221.100000px;}
.x112_c00426{left:222.450000px;}
.x4f_c00426{left:223.950000px;}
.x27_c00426{left:226.350000px;}
.x63_c00426{left:228.000000px;}
.xaf_c00426{left:230.850000px;}
.xa5_c00426{left:233.100000px;}
.x83_c00426{left:241.800000px;}
.xd9_c00426{left:243.900000px;}
.x56_c00426{left:247.950000px;}
.xce_c00426{left:250.050000px;}
.x17_c00426{left:252.300000px;}
.xd2_c00426{left:254.250000px;}
.x6_c00426{left:255.600000px;}
.x70_c00426{left:257.700000px;}
.x113_c00426{left:259.950000px;}
.xa6_c00426{left:261.600000px;}
.x18_c00426{left:263.400000px;}
.x45_c00426{left:266.400000px;}
.x64_c00426{left:269.400000px;}
.x8c_c00426{left:270.450000px;}
.xe8_c00426{left:272.850000px;}
.x36_c00426{left:274.500000px;}
.x84_c00426{left:278.100000px;}
.x7c_c00426{left:279.150000px;}
.x94_c00426{left:281.550000px;}
.x50_c00426{left:285.150000px;}
.x57_c00426{left:286.800000px;}
.x19_c00426{left:289.650000px;}
.xda_c00426{left:291.000000px;}
.x9f_c00426{left:292.500000px;}
.xb8_c00426{left:294.450000px;}
.x46_c00426{left:297.300000px;}
.x103_c00426{left:298.350000px;}
.x28_c00426{left:301.650000px;}
.x10c_c00426{left:302.850000px;}
.x65_c00426{left:304.350000px;}
.x37_c00426{left:308.700000px;}
.x8d_c00426{left:310.350000px;}
.x12a_c00426{left:312.450000px;}
.x85_c00426{left:313.800000px;}
.x71_c00426{left:315.900000px;}
.xfe_c00426{left:317.250000px;}
.x7d_c00426{left:319.050000px;}
.x7_c00426{left:321.150000px;}
.x38_c00426{left:322.800000px;}
.xb9_c00426{left:325.050000px;}
.x51_c00426{left:327.600000px;}
.x11c_c00426{left:328.650000px;}
.x66_c00426{left:329.850000px;}
.xa7_c00426{left:331.800000px;}
.x110_c00426{left:334.350000px;}
.xcf_c00426{left:335.550000px;}
.xbe_c00426{left:337.350000px;}
.x7e_c00426{left:338.550000px;}
.x114_c00426{left:340.650000px;}
.x8_c00426{left:341.700000px;}
.x8e_c00426{left:343.500000px;}
.x72_c00426{left:345.000000px;}
.xee_c00426{left:349.050000px;}
.x1a_c00426{left:350.850000px;}
.x108_c00426{left:352.350000px;}
.x95_c00426{left:354.150000px;}
.x52_c00426{left:356.700000px;}
.x58_c00426{left:358.500000px;}
.x39_c00426{left:359.550000px;}
.x12b_c00426{left:361.050000px;}
.xd3_c00426{left:362.250000px;}
.x1b_c00426{left:364.950000px;}
.x7f_c00426{left:366.600000px;}
.x104_c00426{left:368.550000px;}
.x120_c00426{left:370.350000px;}
.x29_c00426{left:372.150000px;}
.xc6_c00426{left:374.550000px;}
.x9_c00426{left:376.950000px;}
.x47_c00426{left:378.600000px;}
.xef_c00426{left:380.400000px;}
.x10d_c00426{left:381.750000px;}
.x8f_c00426{left:385.200000px;}
.x2a_c00426{left:389.400000px;}
.xba_c00426{left:391.200000px;}
.x1c_c00426{left:396.300000px;}
.xf8_c00426{left:398.400000px;}
.x121_c00426{left:401.700000px;}
.xa0_c00426{left:404.100000px;}
.x96_c00426{left:405.600000px;}
.xa8_c00426{left:409.200000px;}
.xc7_c00426{left:410.550000px;}
.xff_c00426{left:411.600000px;}
.x3a_c00426{left:412.800000px;}
.x53_c00426{left:414.300000px;}
.x105_c00426{left:416.400000px;}
.x2b_c00426{left:420.750000px;}
.xbf_c00426{left:425.550000px;}
.xa_c00426{left:427.350000px;}
.x86_c00426{left:430.800000px;}
.x3b_c00426{left:432.600000px;}
.x1d_c00426{left:434.400000px;}
.x73_c00426{left:435.450000px;}
.xdb_c00426{left:436.500000px;}
.x111_c00426{left:438.900000px;}
.x2c_c00426{left:440.550000px;}
.xde_c00426{left:443.400000px;}
.x2_c00426{left:445.650000px;}
.xa9_c00426{left:449.250000px;}
.x126_c00426{left:452.700000px;}
.xf0_c00426{left:454.200000px;}
.xb_c00426{left:455.400000px;}
.xe9_c00426{left:458.550000px;}
.x3c_c00426{left:460.350000px;}
.x74_c00426{left:461.400000px;}
.x2d_c00426{left:463.650000px;}
.x59_c00426{left:464.700000px;}
.xc8_c00426{left:466.650000px;}
.xd4_c00426{left:468.300000px;}
.x48_c00426{left:469.800000px;}
.x115_c00426{left:471.750000px;}
.x127_c00426{left:472.800000px;}
.xa1_c00426{left:475.050000px;}
.xc_c00426{left:476.700000px;}
.xe4_c00426{left:478.200000px;}
.xf3_c00426{left:480.000000px;}
.xc0_c00426{left:486.750000px;}
.x97_c00426{left:488.400000px;}
.x100_c00426{left:491.100000px;}
.x5a_c00426{left:494.550000px;}
.x90_c00426{left:495.750000px;}
.xd_c00426{left:497.250000px;}
.xc9_c00426{left:500.850000px;}
.xf9_c00426{left:502.050000px;}
.x2e_c00426{left:504.300000px;}
.xf1_c00426{left:505.350000px;}
.x67_c00426{left:506.850000px;}
.xea_c00426{left:510.000000px;}
.x3d_c00426{left:511.800000px;}
.x1e_c00426{left:513.600000px;}
.xaa_c00426{left:517.650000px;}
.x12d_c00426{left:520.350000px;}
.x122_c00426{left:521.550000px;}
.x87_c00426{left:526.500000px;}
.x91_c00426{left:528.450000px;}
.x106_c00426{left:529.500000px;}
.x5b_c00426{left:532.350000px;}
.x11d_c00426{left:533.850000px;}
.xf2_c00426{left:534.900000px;}
.xe_c00426{left:536.850000px;}
.x75_c00426{left:539.100000px;}
.x98_c00426{left:541.950000px;}
.xbb_c00426{left:545.250000px;}
.xb0_c00426{left:546.750000px;}
.xd5_c00426{left:548.550000px;}
.x1f_c00426{left:549.900000px;}
.xdf_c00426{left:551.400000px;}
.x12c_c00426{left:554.400000px;}
.x92_c00426{left:555.450000px;}
.x3e_c00426{left:558.300000px;}
.x12e_c00426{left:561.000000px;}
.xab_c00426{left:562.200000px;}
.xb1_c00426{left:566.550000px;}
.x107_c00426{left:568.800000px;}
.x2f_c00426{left:571.650000px;}
.xeb_c00426{left:572.700000px;}
.x68_c00426{left:576.300000px;}
.x20_c00426{left:577.650000px;}
.x88_c00426{left:579.000000px;}
.xe0_c00426{left:580.200000px;}
.xd0_c00426{left:582.900000px;}
.xfa_c00426{left:584.100000px;}
.x123_c00426{left:586.050000px;}
.xac_c00426{left:587.400000px;}
.x116_c00426{left:589.800000px;}
.x49_c00426{left:591.750000px;}
.x109_c00426{left:592.800000px;}
.x3f_c00426{left:594.000000px;}
.x89_c00426{left:596.700000px;}
.xf_c00426{left:598.350000px;}
.x30_c00426{left:601.950000px;}
.xa2_c00426{left:606.150000px;}
.x5c_c00426{left:611.100000px;}
.x76_c00426{left:613.950000px;}
.x69_c00426{left:615.150000px;}
.x10_c00426{left:618.150000px;}
.xca_c00426{left:619.500000px;}
.xd1_c00426{left:620.700000px;}
.x99_c00426{left:622.650000px;}
.x128_c00426{left:625.050000px;}
.x21_c00426{left:626.250000px;}
.x117_c00426{left:627.900000px;}
.x101_c00426{left:631.800000px;}
.x8a_c00426{left:633.750000px;}
.x93_c00426{left:638.250000px;}
.x77_c00426{left:642.000000px;}
.xe1_c00426{left:643.500000px;}
.x22_c00426{left:645.750000px;}
.x11_c00426{left:647.700000px;}
.x4a_c00426{left:649.650000px;}
.x31_c00426{left:652.350000px;}
.xb2_c00426{left:654.000000px;}
.x102_c00426{left:655.500000px;}
.x40_c00426{left:658.800000px;}
.xe5_c00426{left:661.350000px;}
.x5d_c00426{left:663.000000px;}
.xe2_c00426{left:664.350000px;}
.x80_c00426{left:666.450000px;}
.x12_c00426{left:669.000000px;}
.xad_c00426{left:670.950000px;}
.x12f_c00426{left:672.150000px;}
.x23_c00426{left:673.800000px;}
.x4b_c00426{left:676.350000px;}
.x11a_c00426{left:677.400000px;}
.x5e_c00426{left:683.100000px;}
.xa3_c00426{left:684.900000px;}
.x6a_c00426{left:686.550000px;}
.xc2_c00426{left:688.650000px;}
.x32_c00426{left:689.850000px;}
.xf4_c00426{left:691.950000px;}
.xb3_c00426{left:693.300000px;}
.x81_c00426{left:695.550000px;}
.x41_c00426{left:696.900000px;}
.x24_c00426{left:699.000000px;}
.x124_c00426{left:700.950000px;}
.xdc_c00426{left:703.500000px;}
.x6b_c00426{left:704.550000px;}
.xe6_c00426{left:706.650000px;}
.x10e_c00426{left:708.450000px;}
.x13_c00426{left:710.100000px;}
.x11e_c00426{left:711.150000px;}
.x10a_c00426{left:712.800000px;}
.xbc_c00426{left:717.000000px;}
.xcb_c00426{left:719.250000px;}
.xb4_c00426{left:720.300000px;}
.x11b_c00426{left:722.700000px;}
.x42_c00426{left:725.400000px;}
.xfb_c00426{left:727.050000px;}
.x9a_c00426{left:728.400000px;}
.x14_c00426{left:729.900000px;}
.x118_c00426{left:731.700000px;}
.x78_c00426{left:736.050000px;}
.x10b_c00426{left:739.800000px;}
.xd6_c00426{left:741.000000px;}
.xf5_c00426{left:742.650000px;}
.x25_c00426{left:744.750000px;}
.x9b_c00426{left:748.200000px;}
.x129_c00426{left:751.050000px;}
.x33_c00426{left:753.600000px;}
.x6c_c00426{left:754.950000px;}
.xe7_c00426{left:757.050000px;}
.x15_c00426{left:758.400000px;}
.xb5_c00426{left:760.650000px;}
.xcc_c00426{left:762.150000px;}
.x6d_c00426{left:766.050000px;}
.x4c_c00426{left:769.650000px;}
.x10f_c00426{left:770.700000px;}
.xa4_c00426{left:772.650000px;}
.xd7_c00426{left:773.700000px;}
.xec_c00426{left:779.250000px;}
.xe3_c00426{left:780.300000px;}
.x119_c00426{left:782.850000px;}
.x5f_c00426{left:783.900000px;}
.x9c_c00426{left:787.050000px;}
.xb6_c00426{left:788.400000px;}
.x79_c00426{left:789.750000px;}
.x26_c00426{left:791.250000px;}
.x6e_c00426{left:792.750000px;}
.x82_c00426{left:796.500000px;}
.xc3_c00426{left:799.200000px;}
.x43_c00426{left:804.600000px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls0_c00426{letter-spacing:0.000000pt;}
.ws0_c00426{word-spacing:-4.376068pt;}
.ws2_c00426{word-spacing:-1.047619pt;}
.ws4_c00426{word-spacing:0.000000pt;}
.ws3_c00426{word-spacing:2.666667pt;}
.ws1_c00426{word-spacing:15.407407pt;}
.fs0_c00426{font-size:48.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y2c_c00426{bottom:137.600000pt;}
.y2b_c00426{bottom:155.466667pt;}
.y2a_c00426{bottom:173.066667pt;}
.y29_c00426{bottom:190.933333pt;}
.y28_c00426{bottom:208.533333pt;}
.y27_c00426{bottom:226.133333pt;}
.y26_c00426{bottom:243.733333pt;}
.y25_c00426{bottom:261.600000pt;}
.y24_c00426{bottom:279.200000pt;}
.y23_c00426{bottom:297.066667pt;}
.y22_c00426{bottom:314.666667pt;}
.y21_c00426{bottom:332.266667pt;}
.y20_c00426{bottom:349.866667pt;}
.y1f_c00426{bottom:367.466667pt;}
.y1e_c00426{bottom:385.333333pt;}
.y1d_c00426{bottom:402.933333pt;}
.y1c_c00426{bottom:420.533333pt;}
.y1b_c00426{bottom:438.133333pt;}
.y1a_c00426{bottom:455.733333pt;}
.y19_c00426{bottom:473.600000pt;}
.y18_c00426{bottom:490.933333pt;}
.y17_c00426{bottom:508.533333pt;}
.y16_c00426{bottom:526.400000pt;}
.y15_c00426{bottom:544.000000pt;}
.y14_c00426{bottom:561.600000pt;}
.y13_c00426{bottom:579.200000pt;}
.y12_c00426{bottom:596.800000pt;}
.y11_c00426{bottom:614.666667pt;}
.y10_c00426{bottom:632.666667pt;}
.yf_c00426{bottom:650.533333pt;}
.ye_c00426{bottom:668.133333pt;}
.yd_c00426{bottom:685.466667pt;}
.yc_c00426{bottom:721.200000pt;}
.yb_c00426{bottom:738.800000pt;}
.ya_c00426{bottom:756.400000pt;}
.y9_c00426{bottom:774.000000pt;}
.y8_c00426{bottom:791.333333pt;}
.y7_c00426{bottom:809.333333pt;}
.y6_c00426{bottom:826.933333pt;}
.y5_c00426{bottom:844.533333pt;}
.y4_c00426{bottom:861.866667pt;}
.y3_c00426{bottom:879.733333pt;}
.y2_c00426{bottom:897.333333pt;}
.y1_c00426{bottom:930.533333pt;}
.h2_c00426{height:48.000000pt;}
.h1_c00426{height:1036.666667pt;}
.h0_c00426{height:1036.800049pt;}
.w0_c00426{width:818.559977pt;}
.w1_c00426{width:818.666667pt;}
.x0_c00426{left:0.000000pt;}
.x11f_c00426{left:125.200000pt;}
.xed_c00426{left:126.533333pt;}
.xcd_c00426{left:127.600000pt;}
.xc4_c00426{left:128.666667pt;}
.x9d_c00426{left:129.733333pt;}
.x60_c00426{left:130.666667pt;}
.x3_c00426{left:131.866667pt;}
.x1_c00426{left:132.800000pt;}
.xd8_c00426{left:143.200000pt;}
.x4d_c00426{left:145.600000pt;}
.xfc_c00426{left:148.800000pt;}
.xf6_c00426{left:150.000000pt;}
.xc1_c00426{left:154.533333pt;}
.xae_c00426{left:156.533333pt;}
.x7a_c00426{left:157.600000pt;}
.x54_c00426{left:158.666667pt;}
.x61_c00426{left:161.333333pt;}
.x4_c00426{left:163.200000pt;}
.x34_c00426{left:165.333333pt;}
.xc5_c00426{left:168.400000pt;}
.xb7_c00426{left:171.600000pt;}
.xbd_c00426{left:173.466667pt;}
.x125_c00426{left:174.400000pt;}
.x4e_c00426{left:175.333333pt;}
.x55_c00426{left:176.266667pt;}
.x9e_c00426{left:177.466667pt;}
.x62_c00426{left:178.666667pt;}
.x44_c00426{left:183.333333pt;}
.xfd_c00426{left:185.333333pt;}
.x6f_c00426{left:187.466667pt;}
.xf7_c00426{left:188.666667pt;}
.xdd_c00426{left:189.600000pt;}
.x8b_c00426{left:190.800000pt;}
.x7b_c00426{left:191.866667pt;}
.x35_c00426{left:193.200000pt;}
.x16_c00426{left:194.133333pt;}
.x5_c00426{left:196.533333pt;}
.x112_c00426{left:197.733333pt;}
.x4f_c00426{left:199.066667pt;}
.x27_c00426{left:201.200000pt;}
.x63_c00426{left:202.666667pt;}
.xaf_c00426{left:205.200000pt;}
.xa5_c00426{left:207.200000pt;}
.x83_c00426{left:214.933333pt;}
.xd9_c00426{left:216.800000pt;}
.x56_c00426{left:220.400000pt;}
.xce_c00426{left:222.266667pt;}
.x17_c00426{left:224.266667pt;}
.xd2_c00426{left:226.000000pt;}
.x6_c00426{left:227.200000pt;}
.x70_c00426{left:229.066667pt;}
.x113_c00426{left:231.066667pt;}
.xa6_c00426{left:232.533333pt;}
.x18_c00426{left:234.133333pt;}
.x45_c00426{left:236.800000pt;}
.x64_c00426{left:239.466667pt;}
.x8c_c00426{left:240.400000pt;}
.xe8_c00426{left:242.533333pt;}
.x36_c00426{left:244.000000pt;}
.x84_c00426{left:247.200000pt;}
.x7c_c00426{left:248.133333pt;}
.x94_c00426{left:250.266667pt;}
.x50_c00426{left:253.466667pt;}
.x57_c00426{left:254.933333pt;}
.x19_c00426{left:257.466667pt;}
.xda_c00426{left:258.666667pt;}
.x9f_c00426{left:260.000000pt;}
.xb8_c00426{left:261.733333pt;}
.x46_c00426{left:264.266667pt;}
.x103_c00426{left:265.200000pt;}
.x28_c00426{left:268.133333pt;}
.x10c_c00426{left:269.200000pt;}
.x65_c00426{left:270.533333pt;}
.x37_c00426{left:274.400000pt;}
.x8d_c00426{left:275.866667pt;}
.x12a_c00426{left:277.733333pt;}
.x85_c00426{left:278.933333pt;}
.x71_c00426{left:280.800000pt;}
.xfe_c00426{left:282.000000pt;}
.x7d_c00426{left:283.600000pt;}
.x7_c00426{left:285.466667pt;}
.x38_c00426{left:286.933333pt;}
.xb9_c00426{left:288.933333pt;}
.x51_c00426{left:291.200000pt;}
.x11c_c00426{left:292.133333pt;}
.x66_c00426{left:293.200000pt;}
.xa7_c00426{left:294.933333pt;}
.x110_c00426{left:297.200000pt;}
.xcf_c00426{left:298.266667pt;}
.xbe_c00426{left:299.866667pt;}
.x7e_c00426{left:300.933333pt;}
.x114_c00426{left:302.800000pt;}
.x8_c00426{left:303.733333pt;}
.x8e_c00426{left:305.333333pt;}
.x72_c00426{left:306.666667pt;}
.xee_c00426{left:310.266667pt;}
.x1a_c00426{left:311.866667pt;}
.x108_c00426{left:313.200000pt;}
.x95_c00426{left:314.800000pt;}
.x52_c00426{left:317.066667pt;}
.x58_c00426{left:318.666667pt;}
.x39_c00426{left:319.600000pt;}
.x12b_c00426{left:320.933333pt;}
.xd3_c00426{left:322.000000pt;}
.x1b_c00426{left:324.400000pt;}
.x7f_c00426{left:325.866667pt;}
.x104_c00426{left:327.600000pt;}
.x120_c00426{left:329.200000pt;}
.x29_c00426{left:330.800000pt;}
.xc6_c00426{left:332.933333pt;}
.x9_c00426{left:335.066667pt;}
.x47_c00426{left:336.533333pt;}
.xef_c00426{left:338.133333pt;}
.x10d_c00426{left:339.333333pt;}
.x8f_c00426{left:342.400000pt;}
.x2a_c00426{left:346.133333pt;}
.xba_c00426{left:347.733333pt;}
.x1c_c00426{left:352.266667pt;}
.xf8_c00426{left:354.133333pt;}
.x121_c00426{left:357.066667pt;}
.xa0_c00426{left:359.200000pt;}
.x96_c00426{left:360.533333pt;}
.xa8_c00426{left:363.733333pt;}
.xc7_c00426{left:364.933333pt;}
.xff_c00426{left:365.866667pt;}
.x3a_c00426{left:366.933333pt;}
.x53_c00426{left:368.266667pt;}
.x105_c00426{left:370.133333pt;}
.x2b_c00426{left:374.000000pt;}
.xbf_c00426{left:378.266667pt;}
.xa_c00426{left:379.866667pt;}
.x86_c00426{left:382.933333pt;}
.x3b_c00426{left:384.533333pt;}
.x1d_c00426{left:386.133333pt;}
.x73_c00426{left:387.066667pt;}
.xdb_c00426{left:388.000000pt;}
.x111_c00426{left:390.133333pt;}
.x2c_c00426{left:391.600000pt;}
.xde_c00426{left:394.133333pt;}
.x2_c00426{left:396.133333pt;}
.xa9_c00426{left:399.333333pt;}
.x126_c00426{left:402.400000pt;}
.xf0_c00426{left:403.733333pt;}
.xb_c00426{left:404.800000pt;}
.xe9_c00426{left:407.600000pt;}
.x3c_c00426{left:409.200000pt;}
.x74_c00426{left:410.133333pt;}
.x2d_c00426{left:412.133333pt;}
.x59_c00426{left:413.066667pt;}
.xc8_c00426{left:414.800000pt;}
.xd4_c00426{left:416.266667pt;}
.x48_c00426{left:417.600000pt;}
.x115_c00426{left:419.333333pt;}
.x127_c00426{left:420.266667pt;}
.xa1_c00426{left:422.266667pt;}
.xc_c00426{left:423.733333pt;}
.xe4_c00426{left:425.066667pt;}
.xf3_c00426{left:426.666667pt;}
.xc0_c00426{left:432.666667pt;}
.x97_c00426{left:434.133333pt;}
.x100_c00426{left:436.533333pt;}
.x5a_c00426{left:439.600000pt;}
.x90_c00426{left:440.666667pt;}
.xd_c00426{left:442.000000pt;}
.xc9_c00426{left:445.200000pt;}
.xf9_c00426{left:446.266667pt;}
.x2e_c00426{left:448.266667pt;}
.xf1_c00426{left:449.200000pt;}
.x67_c00426{left:450.533333pt;}
.xea_c00426{left:453.333333pt;}
.x3d_c00426{left:454.933333pt;}
.x1e_c00426{left:456.533333pt;}
.xaa_c00426{left:460.133333pt;}
.x12d_c00426{left:462.533333pt;}
.x122_c00426{left:463.600000pt;}
.x87_c00426{left:468.000000pt;}
.x91_c00426{left:469.733333pt;}
.x106_c00426{left:470.666667pt;}
.x5b_c00426{left:473.200000pt;}
.x11d_c00426{left:474.533333pt;}
.xf2_c00426{left:475.466667pt;}
.xe_c00426{left:477.200000pt;}
.x75_c00426{left:479.200000pt;}
.x98_c00426{left:481.733333pt;}
.xbb_c00426{left:484.666667pt;}
.xb0_c00426{left:486.000000pt;}
.xd5_c00426{left:487.600000pt;}
.x1f_c00426{left:488.800000pt;}
.xdf_c00426{left:490.133333pt;}
.x12c_c00426{left:492.800000pt;}
.x92_c00426{left:493.733333pt;}
.x3e_c00426{left:496.266667pt;}
.x12e_c00426{left:498.666667pt;}
.xab_c00426{left:499.733333pt;}
.xb1_c00426{left:503.600000pt;}
.x107_c00426{left:505.600000pt;}
.x2f_c00426{left:508.133333pt;}
.xeb_c00426{left:509.066667pt;}
.x68_c00426{left:512.266667pt;}
.x20_c00426{left:513.466667pt;}
.x88_c00426{left:514.666667pt;}
.xe0_c00426{left:515.733333pt;}
.xd0_c00426{left:518.133333pt;}
.xfa_c00426{left:519.200000pt;}
.x123_c00426{left:520.933333pt;}
.xac_c00426{left:522.133333pt;}
.x116_c00426{left:524.266667pt;}
.x49_c00426{left:526.000000pt;}
.x109_c00426{left:526.933333pt;}
.x3f_c00426{left:528.000000pt;}
.x89_c00426{left:530.400000pt;}
.xf_c00426{left:531.866667pt;}
.x30_c00426{left:535.066667pt;}
.xa2_c00426{left:538.800000pt;}
.x5c_c00426{left:543.200000pt;}
.x76_c00426{left:545.733333pt;}
.x69_c00426{left:546.800000pt;}
.x10_c00426{left:549.466667pt;}
.xca_c00426{left:550.666667pt;}
.xd1_c00426{left:551.733333pt;}
.x99_c00426{left:553.466667pt;}
.x128_c00426{left:555.600000pt;}
.x21_c00426{left:556.666667pt;}
.x117_c00426{left:558.133333pt;}
.x101_c00426{left:561.600000pt;}
.x8a_c00426{left:563.333333pt;}
.x93_c00426{left:567.333333pt;}
.x77_c00426{left:570.666667pt;}
.xe1_c00426{left:572.000000pt;}
.x22_c00426{left:574.000000pt;}
.x11_c00426{left:575.733333pt;}
.x4a_c00426{left:577.466667pt;}
.x31_c00426{left:579.866667pt;}
.xb2_c00426{left:581.333333pt;}
.x102_c00426{left:582.666667pt;}
.x40_c00426{left:585.600000pt;}
.xe5_c00426{left:587.866667pt;}
.x5d_c00426{left:589.333333pt;}
.xe2_c00426{left:590.533333pt;}
.x80_c00426{left:592.400000pt;}
.x12_c00426{left:594.666667pt;}
.xad_c00426{left:596.400000pt;}
.x12f_c00426{left:597.466667pt;}
.x23_c00426{left:598.933333pt;}
.x4b_c00426{left:601.200000pt;}
.x11a_c00426{left:602.133333pt;}
.x5e_c00426{left:607.200000pt;}
.xa3_c00426{left:608.800000pt;}
.x6a_c00426{left:610.266667pt;}
.xc2_c00426{left:612.133333pt;}
.x32_c00426{left:613.200000pt;}
.xf4_c00426{left:615.066667pt;}
.xb3_c00426{left:616.266667pt;}
.x81_c00426{left:618.266667pt;}
.x41_c00426{left:619.466667pt;}
.x24_c00426{left:621.333333pt;}
.x124_c00426{left:623.066667pt;}
.xdc_c00426{left:625.333333pt;}
.x6b_c00426{left:626.266667pt;}
.xe6_c00426{left:628.133333pt;}
.x10e_c00426{left:629.733333pt;}
.x13_c00426{left:631.200000pt;}
.x11e_c00426{left:632.133333pt;}
.x10a_c00426{left:633.600000pt;}
.xbc_c00426{left:637.333333pt;}
.xcb_c00426{left:639.333333pt;}
.xb4_c00426{left:640.266667pt;}
.x11b_c00426{left:642.400000pt;}
.x42_c00426{left:644.800000pt;}
.xfb_c00426{left:646.266667pt;}
.x9a_c00426{left:647.466667pt;}
.x14_c00426{left:648.800000pt;}
.x118_c00426{left:650.400000pt;}
.x78_c00426{left:654.266667pt;}
.x10b_c00426{left:657.600000pt;}
.xd6_c00426{left:658.666667pt;}
.xf5_c00426{left:660.133333pt;}
.x25_c00426{left:662.000000pt;}
.x9b_c00426{left:665.066667pt;}
.x129_c00426{left:667.600000pt;}
.x33_c00426{left:669.866667pt;}
.x6c_c00426{left:671.066667pt;}
.xe7_c00426{left:672.933333pt;}
.x15_c00426{left:674.133333pt;}
.xb5_c00426{left:676.133333pt;}
.xcc_c00426{left:677.466667pt;}
.x6d_c00426{left:680.933333pt;}
.x4c_c00426{left:684.133333pt;}
.x10f_c00426{left:685.066667pt;}
.xa4_c00426{left:686.800000pt;}
.xd7_c00426{left:687.733333pt;}
.xec_c00426{left:692.666667pt;}
.xe3_c00426{left:693.600000pt;}
.x119_c00426{left:695.866667pt;}
.x5f_c00426{left:696.800000pt;}
.x9c_c00426{left:699.600000pt;}
.xb6_c00426{left:700.800000pt;}
.x79_c00426{left:702.000000pt;}
.x26_c00426{left:703.333333pt;}
.x6e_c00426{left:704.666667pt;}
.x82_c00426{left:708.000000pt;}
.xc3_c00426{left:710.400000pt;}
.x43_c00426{left:715.200000pt;}
}





/* 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_c00427 {
    display:none;
  }
  .loading-indicator_c00427.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00427 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_c00427 { 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_c00427" -> "#page-container .classname_c00427")
 */
.pf_c00427 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00427 { /* 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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00427 { /* 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_c00427 { /* 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_c00427 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00427 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00427 {overflow:visible;}
  }
}
.c_c00427 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00427 { /* 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_c00427:after { /* webkit #35443 */
  content: '';
}
.t_c00427:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00427 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 */
}
.__c00427 { /* 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_c00427 { /* info for Javascript */
  display:none;
}
.l_c00427 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00427 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00427 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00427: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_c00427 {
    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_c00427.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00427.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_c00427 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00427{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00427;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.000000;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;}
.m74_c00427{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00427{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.mac_c00427{transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156750,0.000000,0.000000,0.250000,0,0);}
.m79_c00427{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00427{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00427{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m81_c00427{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00427{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m26_c00427{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00427{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00427{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mab_c00427{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mae_c00427{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00427{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m60_c00427{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00427{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m89_c00427{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m43_c00427{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00427{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m82_c00427{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m68_c00427{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mad_c00427{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m99_c00427{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.maf_c00427{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00427{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00427{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m90_c00427{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00427{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m66_c00427{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m80_c00427{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m40_c00427{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m78_c00427{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m18_c00427{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m94_c00427{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m63_c00427{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m98_c00427{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00427{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00427{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m72_c00427{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00427{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.maa_c00427{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00427{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m49_c00427{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00427{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00427{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00427{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m56_c00427{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m25_c00427{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m45_c00427{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00427{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m58_c00427{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m17_c00427{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m13_c00427{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m69_c00427{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m50_c00427{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m11_c00427{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00427{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m33_c00427{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m84_c00427{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m61_c00427{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m88_c00427{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00427{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00427{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00427{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00427{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m23_c00427{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m21_c00427{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00427{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00427{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00427{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m71_c00427{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00427{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb_c00427{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m15_c00427{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00427{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m52_c00427{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00427{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27_c00427{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m86_c00427{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m41_c00427{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00427{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m46_c00427{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m12_c00427{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m37_c00427{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00427{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00427{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);}
.m53_c00427{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00427{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00427{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22_c00427{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md_c00427{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m93_c00427{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00427{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m64_c00427{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m77_c00427{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00427{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00427{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m32_c00427{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m70_c00427{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m55_c00427{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m42_c00427{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00427{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m87_c00427{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00427{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00427{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m92_c00427{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m57_c00427{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m44_c00427{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m62_c00427{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m34_c00427{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00427{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00427{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00427{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me_c00427{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00427{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m75_c00427{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00427{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00427{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m85_c00427{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m38_c00427{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m14_c00427{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00427{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00427{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00427{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m59_c00427{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m36_c00427{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m24_c00427{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.mf_c00427{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m16_c00427{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00427{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m97_c00427{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m3_c00427{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00427{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.mc_c00427{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00427{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00427{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m39_c00427{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m29_c00427{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00427{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00427{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00427{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00427{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00427{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m73_c00427{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m83_c00427{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma_c00427{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00427{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m65_c00427{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00427{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00427{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00427{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m48_c00427{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m31_c00427{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00427{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m35_c00427{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00427{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m47_c00427{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m67_c00427{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00427{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m95_c00427{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00427{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00427{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m51_c00427{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00427{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m28_c00427{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m96_c00427{transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325250,0.000000,0.000000,0.250000,0,0);}
.m91_c00427{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m54_c00427{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00427{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00427{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00427{transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.433250,0.000000,0.000000,0.250000,0,0);}
.v0_c00427{vertical-align:0.000000px;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{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__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00427{word-spacing:-10.375000px;}
.ws5_c00427{word-spacing:-8.741995px;}
.ws2_c00427{word-spacing:-2.477204px;}
.wsa_c00427{word-spacing:-1.385982px;}
.wsd_c00427{word-spacing:0.000000px;}
.ws4_c00427{word-spacing:0.250000px;}
.ws1_c00427{word-spacing:2.750000px;}
.wsb_c00427{word-spacing:2.890849px;}
.ws8_c00427{word-spacing:3.166667px;}
.ws0_c00427{word-spacing:3.445783px;}
.wsc_c00427{word-spacing:4.875413px;}
.ws7_c00427{word-spacing:5.750000px;}
.ws3_c00427{word-spacing:6.271224px;}
.ws9_c00427{word-spacing:8.408360px;}
.fc0_c00427{color:transparent;}
.fs1_c00427{font-size:54.000000px;}
.fs0_c00427{font-size:60.000000px;}
.y0_c00427{bottom:0.000000px;}
.y2d_c00427{bottom:147.900000px;}
.y2c_c00427{bottom:163.800000px;}
.y2b_c00427{bottom:191.100000px;}
.y2a_c00427{bottom:210.900000px;}
.y29_c00427{bottom:231.000000px;}
.y28_c00427{bottom:250.500000px;}
.y27_c00427{bottom:270.300000px;}
.y26_c00427{bottom:290.250000px;}
.y25_c00427{bottom:310.050000px;}
.y24_c00427{bottom:330.150000px;}
.y23_c00427{bottom:349.650000px;}
.y22_c00427{bottom:369.750000px;}
.y21_c00427{bottom:389.550000px;}
.y20_c00427{bottom:409.350000px;}
.y1f_c00427{bottom:429.150000px;}
.y1e_c00427{bottom:449.550000px;}
.y1d_c00427{bottom:469.650000px;}
.y1c_c00427{bottom:489.750000px;}
.y1b_c00427{bottom:509.850000px;}
.y1a_c00427{bottom:529.950000px;}
.y19_c00427{bottom:550.050000px;}
.y18_c00427{bottom:569.850000px;}
.y17_c00427{bottom:589.950000px;}
.y16_c00427{bottom:609.750000px;}
.y15_c00427{bottom:629.850000px;}
.y14_c00427{bottom:649.950000px;}
.y13_c00427{bottom:669.750000px;}
.y12_c00427{bottom:689.850000px;}
.y11_c00427{bottom:709.650000px;}
.y10_c00427{bottom:729.750000px;}
.yf_c00427{bottom:749.550000px;}
.ye_c00427{bottom:770.100000px;}
.yd_c00427{bottom:789.900000px;}
.yc_c00427{bottom:810.000000px;}
.yb_c00427{bottom:829.800000px;}
.ya_c00427{bottom:849.600000px;}
.y9_c00427{bottom:869.400000px;}
.y8_c00427{bottom:889.200000px;}
.y7_c00427{bottom:909.000000px;}
.y6_c00427{bottom:929.100000px;}
.y5_c00427{bottom:948.900000px;}
.y4_c00427{bottom:968.850000px;}
.y3_c00427{bottom:988.650000px;}
.y2_c00427{bottom:1008.750000px;}
.y1_c00427{bottom:1043.700000px;}
.h3_c00427{height:54.000000px;}
.h2_c00427{height:60.000000px;}
.h1_c00427{height:1166.250000px;}
.h0_c00427{height:1166.400056px;}
.w0_c00427{width:920.879975px;}
.w1_c00427{width:921.000000px;}
.x0_c00427{left:0.000000px;}
.x5_c00427{left:111.300000px;}
.xb1_c00427{left:112.350000px;}
.xf1_c00427{left:113.400000px;}
.x10c_c00427{left:114.450000px;}
.x122_c00427{left:115.650000px;}
.x24_c00427{left:130.950000px;}
.x11b_c00427{left:135.000000px;}
.x6f_c00427{left:138.750000px;}
.x8c_c00427{left:140.400000px;}
.x108_c00427{left:141.450000px;}
.x2d_c00427{left:142.500000px;}
.xc3_c00427{left:144.600000px;}
.xe0_c00427{left:145.800000px;}
.xdb_c00427{left:147.900000px;}
.xf2_c00427{left:152.250000px;}
.x81_c00427{left:153.450000px;}
.x3a_c00427{left:155.400000px;}
.x46_c00427{left:157.200000px;}
.x25_c00427{left:159.750000px;}
.x9a_c00427{left:160.800000px;}
.x6_c00427{left:163.500000px;}
.xe1_c00427{left:165.600000px;}
.x65_c00427{left:166.800000px;}
.xa7_c00427{left:169.500000px;}
.x82_c00427{left:173.250000px;}
.x2e_c00427{left:174.900000px;}
.x9b_c00427{left:177.750000px;}
.x16_c00427{left:179.700000px;}
.x7_c00427{left:184.350000px;}
.x66_c00427{left:185.850000px;}
.xc9_c00427{left:187.050000px;}
.x126_c00427{left:192.600000px;}
.x26_c00427{left:193.650000px;}
.xb8_c00427{left:199.200000px;}
.xa8_c00427{left:200.400000px;}
.x50_c00427{left:202.650000px;}
.x5c_c00427{left:205.800000px;}
.xb2_c00427{left:207.750000px;}
.x111_c00427{left:211.050000px;}
.xd2_c00427{left:212.850000px;}
.x11c_c00427{left:214.200000px;}
.xbc_c00427{left:215.850000px;}
.x83_c00427{left:217.500000px;}
.xe7_c00427{left:218.550000px;}
.x70_c00427{left:220.050000px;}
.x8_c00427{left:222.900000px;}
.xf3_c00427{left:226.050000px;}
.xdc_c00427{left:227.100000px;}
.x47_c00427{left:229.200000px;}
.x105_c00427{left:234.000000px;}
.x2f_c00427{left:235.350000px;}
.xbd_c00427{left:236.400000px;}
.x67_c00427{left:237.750000px;}
.x7a_c00427{left:241.500000px;}
.x71_c00427{left:244.500000px;}
.x10e_c00427{left:246.450000px;}
.x9_c00427{left:248.850000px;}
.xd3_c00427{left:251.700000px;}
.x8d_c00427{left:253.200000px;}
.xdd_c00427{left:254.400000px;}
.x17_c00427{left:257.100000px;}
.xb3_c00427{left:258.450000px;}
.x3b_c00427{left:260.550000px;}
.xf6_c00427{left:261.750000px;}
.x7b_c00427{left:263.100000px;}
.x30_c00427{left:264.450000px;}
.xa9_c00427{left:266.250000px;}
.x10f_c00427{left:267.300000px;}
.x9c_c00427{left:268.500000px;}
.x27_c00427{left:272.100000px;}
.x51_c00427{left:274.650000px;}
.x92_c00427{left:277.950000px;}
.xa_c00427{left:281.250000px;}
.xe2_c00427{left:283.050000px;}
.x72_c00427{left:284.850000px;}
.x31_c00427{left:286.800000px;}
.x3c_c00427{left:289.050000px;}
.x84_c00427{left:291.000000px;}
.x18_c00427{left:292.350000px;}
.x52_c00427{left:294.750000px;}
.x8e_c00427{left:297.900000px;}
.x109_c00427{left:299.100000px;}
.x28_c00427{left:301.200000px;}
.xf4_c00427{left:302.250000px;}
.xfa_c00427{left:303.450000px;}
.x112_c00427{left:305.850000px;}
.x48_c00427{left:306.900000px;}
.x123_c00427{left:307.950000px;}
.x68_c00427{left:309.750000px;}
.xed_c00427{left:311.250000px;}
.x5d_c00427{left:312.750000px;}
.x29_c00427{left:315.900000px;}
.x19_c00427{left:317.850000px;}
.xff_c00427{left:321.150000px;}
.x73_c00427{left:322.350000px;}
.xc4_c00427{left:323.850000px;}
.x10a_c00427{left:325.350000px;}
.x85_c00427{left:327.000000px;}
.xb_c00427{left:328.050000px;}
.xe3_c00427{left:330.150000px;}
.x11d_c00427{left:331.950000px;}
.xb9_c00427{left:333.450000px;}
.xce_c00427{left:336.150000px;}
.x3d_c00427{left:337.350000px;}
.xfb_c00427{left:339.450000px;}
.xd4_c00427{left:340.950000px;}
.x53_c00427{left:346.950000px;}
.xf7_c00427{left:348.450000px;}
.xe8_c00427{left:350.850000px;}
.x32_c00427{left:355.950000px;}
.x8f_c00427{left:357.600000px;}
.x5e_c00427{left:359.850000px;}
.x74_c00427{left:360.900000px;}
.x1a_c00427{left:362.550000px;}
.x125_c00427{left:363.750000px;}
.x11e_c00427{left:366.150000px;}
.x2a_c00427{left:369.150000px;}
.xb4_c00427{left:370.800000px;}
.xc5_c00427{left:373.200000px;}
.x3e_c00427{left:374.850000px;}
.xa3_c00427{left:376.950000px;}
.x1_c00427{left:378.750000px;}
.xee_c00427{left:381.150000px;}
.x5f_c00427{left:383.250000px;}
.x69_c00427{left:387.150000px;}
.x9d_c00427{left:388.350000px;}
.x75_c00427{left:392.250000px;}
.x33_c00427{left:393.750000px;}
.xba_c00427{left:395.250000px;}
.xc6_c00427{left:396.300000px;}
.xc_c00427{left:399.300000px;}
.xaa_c00427{left:401.250000px;}
.x100_c00427{left:403.950000px;}
.xcf_c00427{left:407.100000px;}
.x90_c00427{left:408.300000px;}
.x60_c00427{left:409.500000px;}
.x93_c00427{left:411.600000px;}
.xbe_c00427{left:414.900000px;}
.xf8_c00427{left:416.850000px;}
.x2_c00427{left:419.100000px;}
.x54_c00427{left:421.500000px;}
.x6a_c00427{left:422.850000px;}
.x1b_c00427{left:424.050000px;}
.x9e_c00427{left:426.900000px;}
.xfc_c00427{left:429.750000px;}
.xab_c00427{left:437.550000px;}
.x91_c00427{left:439.650000px;}
.x55_c00427{left:441.600000px;}
.x94_c00427{left:442.950000px;}
.x2b_c00427{left:445.500000px;}
.xd5_c00427{left:447.600000px;}
.x3f_c00427{left:449.700000px;}
.xd_c00427{left:450.750000px;}
.xbf_c00427{left:452.700000px;}
.x3_c00427{left:454.050000px;}
.xa4_c00427{left:455.850000px;}
.x61_c00427{left:457.350000px;}
.x116_c00427{left:459.300000px;}
.x1c_c00427{left:461.850000px;}
.x127_c00427{left:467.250000px;}
.x49_c00427{left:468.750000px;}
.xc0_c00427{left:469.950000px;}
.x34_c00427{left:471.150000px;}
.x86_c00427{left:474.150000px;}
.xd6_c00427{left:475.650000px;}
.xd0_c00427{left:477.000000px;}
.xe_c00427{left:479.550000px;}
.xe4_c00427{left:480.600000px;}
.x2c_c00427{left:482.250000px;}
.xc7_c00427{left:484.800000px;}
.xf5_c00427{left:486.750000px;}
.xac_c00427{left:488.250000px;}
.x124_c00427{left:490.800000px;}
.x6b_c00427{left:493.350000px;}
.x76_c00427{left:496.350000px;}
.xe9_c00427{left:497.850000px;}
.x9f_c00427{left:498.900000px;}
.x87_c00427{left:501.150000px;}
.x7c_c00427{left:508.050000px;}
.x62_c00427{left:509.250000px;}
.x40_c00427{left:513.000000px;}
.x56_c00427{left:515.700000px;}
.x101_c00427{left:517.350000px;}
.xfd_c00427{left:519.300000px;}
.x4a_c00427{left:522.750000px;}
.x95_c00427{left:525.000000px;}
.xca_c00427{left:527.250000px;}
.xbb_c00427{left:528.750000px;}
.x106_c00427{left:530.250000px;}
.x35_c00427{left:533.100000px;}
.x128_c00427{left:534.900000px;}
.xad_c00427{left:536.850000px;}
.x1d_c00427{left:538.500000px;}
.xd7_c00427{left:540.450000px;}
.x4b_c00427{left:542.550000px;}
.xea_c00427{left:543.600000px;}
.xf_c00427{left:545.100000px;}
.xcb_c00427{left:546.300000px;}
.xfe_c00427{left:549.150000px;}
.x117_c00427{left:551.700000px;}
.x57_c00427{left:553.200000px;}
.xc8_c00427{left:554.550000px;}
.x96_c00427{left:556.350000px;}
.x102_c00427{left:558.000000px;}
.x63_c00427{left:562.500000px;}
.x10_c00427{left:564.600000px;}
.xd8_c00427{left:568.200000px;}
.x41_c00427{left:569.850000px;}
.x4c_c00427{left:571.350000px;}
.x88_c00427{left:573.450000px;}
.x36_c00427{left:574.500000px;}
.xa0_c00427{left:575.700000px;}
.x11_c00427{left:579.300000px;}
.xeb_c00427{left:580.650000px;}
.x58_c00427{left:582.000000px;}
.x1e_c00427{left:584.250000px;}
.x77_c00427{left:585.300000px;}
.x10d_c00427{left:589.050000px;}
.xc1_c00427{left:592.350000px;}
.x7d_c00427{left:595.050000px;}
.xae_c00427{left:596.550000px;}
.x103_c00427{left:599.100000px;}
.x11f_c00427{left:600.300000px;}
.x59_c00427{left:601.500000px;}
.x119_c00427{left:602.550000px;}
.x1f_c00427{left:604.800000px;}
.xd9_c00427{left:606.300000px;}
.x78_c00427{left:609.000000px;}
.x110_c00427{left:610.050000px;}
.x89_c00427{left:611.250000px;}
.x42_c00427{left:614.100000px;}
.xa5_c00427{left:616.800000px;}
.x4d_c00427{left:618.150000px;}
.x120_c00427{left:620.850000px;}
.x12_c00427{left:623.550000px;}
.x104_c00427{left:625.350000px;}
.x37_c00427{left:627.000000px;}
.x5a_c00427{left:628.800000px;}
.x113_c00427{left:630.150000px;}
.x7e_c00427{left:632.550000px;}
.x43_c00427{left:634.950000px;}
.xcc_c00427{left:639.600000px;}
.xaf_c00427{left:640.800000px;}
.x6c_c00427{left:643.050000px;}
.x13_c00427{left:644.400000px;}
.x97_c00427{left:646.050000px;}
.x38_c00427{left:647.100000px;}
.xde_c00427{left:649.500000px;}
.x129_c00427{left:653.400000px;}
.xb5_c00427{left:655.350000px;}
.x118_c00427{left:657.150000px;}
.x10b_c00427{left:658.350000px;}
.xa1_c00427{left:659.850000px;}
.x20_c00427{left:662.700000px;}
.xda_c00427{left:664.500000px;}
.x98_c00427{left:669.150000px;}
.x5b_c00427{left:670.500000px;}
.x107_c00427{left:672.750000px;}
.xb6_c00427{left:676.200000px;}
.x44_c00427{left:678.900000px;}
.x12a_c00427{left:680.100000px;}
.xa6_c00427{left:681.600000px;}
.x114_c00427{left:682.650000px;}
.x7f_c00427{left:684.000000px;}
.xa2_c00427{left:687.600000px;}
.x8a_c00427{left:690.150000px;}
.x21_c00427{left:693.300000px;}
.xe5_c00427{left:695.250000px;}
.x11a_c00427{left:699.150000px;}
.x79_c00427{left:701.850000px;}
.x80_c00427{left:703.500000px;}
.xc2_c00427{left:704.700000px;}
.x99_c00427{left:705.900000px;}
.x22_c00427{left:710.550000px;}
.x4e_c00427{left:712.050000px;}
.x115_c00427{left:714.000000px;}
.x6d_c00427{left:715.050000px;}
.x14_c00427{left:716.100000px;}
.xef_c00427{left:718.950000px;}
.xb7_c00427{left:720.450000px;}
.x8b_c00427{left:726.450000px;}
.x23_c00427{left:728.250000px;}
.xcd_c00427{left:730.350000px;}
.x64_c00427{left:731.700000px;}
.xd1_c00427{left:733.050000px;}
.x39_c00427{left:736.800000px;}
.x4f_c00427{left:741.900000px;}
.xe6_c00427{left:744.600000px;}
.x6e_c00427{left:746.400000px;}
.xb0_c00427{left:748.500000px;}
.x4_c00427{left:751.350000px;}
.x45_c00427{left:753.000000px;}
.xf9_c00427{left:755.700000px;}
.xf0_c00427{left:756.750000px;}
.x15_c00427{left:757.800000px;}
.xdf_c00427{left:759.600000px;}
.x121_c00427{left:761.550000px;}
.xec_c00427{left:766.650000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws6_c00427{word-spacing:-9.222222pt;}
.ws5_c00427{word-spacing:-7.770662pt;}
.ws2_c00427{word-spacing:-2.201959pt;}
.wsa_c00427{word-spacing:-1.231984pt;}
.wsd_c00427{word-spacing:0.000000pt;}
.ws4_c00427{word-spacing:0.222222pt;}
.ws1_c00427{word-spacing:2.444444pt;}
.wsb_c00427{word-spacing:2.569644pt;}
.ws8_c00427{word-spacing:2.814815pt;}
.ws0_c00427{word-spacing:3.062918pt;}
.wsc_c00427{word-spacing:4.333701pt;}
.ws7_c00427{word-spacing:5.111111pt;}
.ws3_c00427{word-spacing:5.574421pt;}
.ws9_c00427{word-spacing:7.474098pt;}
.fs1_c00427{font-size:48.000000pt;}
.fs0_c00427{font-size:53.333333pt;}
.y0_c00427{bottom:0.000000pt;}
.y2d_c00427{bottom:131.466667pt;}
.y2c_c00427{bottom:145.600000pt;}
.y2b_c00427{bottom:169.866667pt;}
.y2a_c00427{bottom:187.466667pt;}
.y29_c00427{bottom:205.333333pt;}
.y28_c00427{bottom:222.666667pt;}
.y27_c00427{bottom:240.266667pt;}
.y26_c00427{bottom:258.000000pt;}
.y25_c00427{bottom:275.600000pt;}
.y24_c00427{bottom:293.466667pt;}
.y23_c00427{bottom:310.800000pt;}
.y22_c00427{bottom:328.666667pt;}
.y21_c00427{bottom:346.266667pt;}
.y20_c00427{bottom:363.866667pt;}
.y1f_c00427{bottom:381.466667pt;}
.y1e_c00427{bottom:399.600000pt;}
.y1d_c00427{bottom:417.466667pt;}
.y1c_c00427{bottom:435.333333pt;}
.y1b_c00427{bottom:453.200000pt;}
.y1a_c00427{bottom:471.066667pt;}
.y19_c00427{bottom:488.933333pt;}
.y18_c00427{bottom:506.533333pt;}
.y17_c00427{bottom:524.400000pt;}
.y16_c00427{bottom:542.000000pt;}
.y15_c00427{bottom:559.866667pt;}
.y14_c00427{bottom:577.733333pt;}
.y13_c00427{bottom:595.333333pt;}
.y12_c00427{bottom:613.200000pt;}
.y11_c00427{bottom:630.800000pt;}
.y10_c00427{bottom:648.666667pt;}
.yf_c00427{bottom:666.266667pt;}
.ye_c00427{bottom:684.533333pt;}
.yd_c00427{bottom:702.133333pt;}
.yc_c00427{bottom:720.000000pt;}
.yb_c00427{bottom:737.600000pt;}
.ya_c00427{bottom:755.200000pt;}
.y9_c00427{bottom:772.800000pt;}
.y8_c00427{bottom:790.400000pt;}
.y7_c00427{bottom:808.000000pt;}
.y6_c00427{bottom:825.866667pt;}
.y5_c00427{bottom:843.466667pt;}
.y4_c00427{bottom:861.200000pt;}
.y3_c00427{bottom:878.800000pt;}
.y2_c00427{bottom:896.666667pt;}
.y1_c00427{bottom:927.733333pt;}
.h3_c00427{height:48.000000pt;}
.h2_c00427{height:53.333333pt;}
.h1_c00427{height:1036.666667pt;}
.h0_c00427{height:1036.800049pt;}
.w0_c00427{width:818.559977pt;}
.w1_c00427{width:818.666667pt;}
.x0_c00427{left:0.000000pt;}
.x5_c00427{left:98.933333pt;}
.xb1_c00427{left:99.866667pt;}
.xf1_c00427{left:100.800000pt;}
.x10c_c00427{left:101.733333pt;}
.x122_c00427{left:102.800000pt;}
.x24_c00427{left:116.400000pt;}
.x11b_c00427{left:120.000000pt;}
.x6f_c00427{left:123.333333pt;}
.x8c_c00427{left:124.800000pt;}
.x108_c00427{left:125.733333pt;}
.x2d_c00427{left:126.666667pt;}
.xc3_c00427{left:128.533333pt;}
.xe0_c00427{left:129.600000pt;}
.xdb_c00427{left:131.466667pt;}
.xf2_c00427{left:135.333333pt;}
.x81_c00427{left:136.400000pt;}
.x3a_c00427{left:138.133333pt;}
.x46_c00427{left:139.733333pt;}
.x25_c00427{left:142.000000pt;}
.x9a_c00427{left:142.933333pt;}
.x6_c00427{left:145.333333pt;}
.xe1_c00427{left:147.200000pt;}
.x65_c00427{left:148.266667pt;}
.xa7_c00427{left:150.666667pt;}
.x82_c00427{left:154.000000pt;}
.x2e_c00427{left:155.466667pt;}
.x9b_c00427{left:158.000000pt;}
.x16_c00427{left:159.733333pt;}
.x7_c00427{left:163.866667pt;}
.x66_c00427{left:165.200000pt;}
.xc9_c00427{left:166.266667pt;}
.x126_c00427{left:171.200000pt;}
.x26_c00427{left:172.133333pt;}
.xb8_c00427{left:177.066667pt;}
.xa8_c00427{left:178.133333pt;}
.x50_c00427{left:180.133333pt;}
.x5c_c00427{left:182.933333pt;}
.xb2_c00427{left:184.666667pt;}
.x111_c00427{left:187.600000pt;}
.xd2_c00427{left:189.200000pt;}
.x11c_c00427{left:190.400000pt;}
.xbc_c00427{left:191.866667pt;}
.x83_c00427{left:193.333333pt;}
.xe7_c00427{left:194.266667pt;}
.x70_c00427{left:195.600000pt;}
.x8_c00427{left:198.133333pt;}
.xf3_c00427{left:200.933333pt;}
.xdc_c00427{left:201.866667pt;}
.x47_c00427{left:203.733333pt;}
.x105_c00427{left:208.000000pt;}
.x2f_c00427{left:209.200000pt;}
.xbd_c00427{left:210.133333pt;}
.x67_c00427{left:211.333333pt;}
.x7a_c00427{left:214.666667pt;}
.x71_c00427{left:217.333333pt;}
.x10e_c00427{left:219.066667pt;}
.x9_c00427{left:221.200000pt;}
.xd3_c00427{left:223.733333pt;}
.x8d_c00427{left:225.066667pt;}
.xdd_c00427{left:226.133333pt;}
.x17_c00427{left:228.533333pt;}
.xb3_c00427{left:229.733333pt;}
.x3b_c00427{left:231.600000pt;}
.xf6_c00427{left:232.666667pt;}
.x7b_c00427{left:233.866667pt;}
.x30_c00427{left:235.066667pt;}
.xa9_c00427{left:236.666667pt;}
.x10f_c00427{left:237.600000pt;}
.x9c_c00427{left:238.666667pt;}
.x27_c00427{left:241.866667pt;}
.x51_c00427{left:244.133333pt;}
.x92_c00427{left:247.066667pt;}
.xa_c00427{left:250.000000pt;}
.xe2_c00427{left:251.600000pt;}
.x72_c00427{left:253.200000pt;}
.x31_c00427{left:254.933333pt;}
.x3c_c00427{left:256.933333pt;}
.x84_c00427{left:258.666667pt;}
.x18_c00427{left:259.866667pt;}
.x52_c00427{left:262.000000pt;}
.x8e_c00427{left:264.800000pt;}
.x109_c00427{left:265.866667pt;}
.x28_c00427{left:267.733333pt;}
.xf4_c00427{left:268.666667pt;}
.xfa_c00427{left:269.733333pt;}
.x112_c00427{left:271.866667pt;}
.x48_c00427{left:272.800000pt;}
.x123_c00427{left:273.733333pt;}
.x68_c00427{left:275.333333pt;}
.xed_c00427{left:276.666667pt;}
.x5d_c00427{left:278.000000pt;}
.x29_c00427{left:280.800000pt;}
.x19_c00427{left:282.533333pt;}
.xff_c00427{left:285.466667pt;}
.x73_c00427{left:286.533333pt;}
.xc4_c00427{left:287.866667pt;}
.x10a_c00427{left:289.200000pt;}
.x85_c00427{left:290.666667pt;}
.xb_c00427{left:291.600000pt;}
.xe3_c00427{left:293.466667pt;}
.x11d_c00427{left:295.066667pt;}
.xb9_c00427{left:296.400000pt;}
.xce_c00427{left:298.800000pt;}
.x3d_c00427{left:299.866667pt;}
.xfb_c00427{left:301.733333pt;}
.xd4_c00427{left:303.066667pt;}
.x53_c00427{left:308.400000pt;}
.xf7_c00427{left:309.733333pt;}
.xe8_c00427{left:311.866667pt;}
.x32_c00427{left:316.400000pt;}
.x8f_c00427{left:317.866667pt;}
.x5e_c00427{left:319.866667pt;}
.x74_c00427{left:320.800000pt;}
.x1a_c00427{left:322.266667pt;}
.x125_c00427{left:323.333333pt;}
.x11e_c00427{left:325.466667pt;}
.x2a_c00427{left:328.133333pt;}
.xb4_c00427{left:329.600000pt;}
.xc5_c00427{left:331.733333pt;}
.x3e_c00427{left:333.200000pt;}
.xa3_c00427{left:335.066667pt;}
.x1_c00427{left:336.666667pt;}
.xee_c00427{left:338.800000pt;}
.x5f_c00427{left:340.666667pt;}
.x69_c00427{left:344.133333pt;}
.x9d_c00427{left:345.200000pt;}
.x75_c00427{left:348.666667pt;}
.x33_c00427{left:350.000000pt;}
.xba_c00427{left:351.333333pt;}
.xc6_c00427{left:352.266667pt;}
.xc_c00427{left:354.933333pt;}
.xaa_c00427{left:356.666667pt;}
.x100_c00427{left:359.066667pt;}
.xcf_c00427{left:361.866667pt;}
.x90_c00427{left:362.933333pt;}
.x60_c00427{left:364.000000pt;}
.x93_c00427{left:365.866667pt;}
.xbe_c00427{left:368.800000pt;}
.xf8_c00427{left:370.533333pt;}
.x2_c00427{left:372.533333pt;}
.x54_c00427{left:374.666667pt;}
.x6a_c00427{left:375.866667pt;}
.x1b_c00427{left:376.933333pt;}
.x9e_c00427{left:379.466667pt;}
.xfc_c00427{left:382.000000pt;}
.xab_c00427{left:388.933333pt;}
.x91_c00427{left:390.800000pt;}
.x55_c00427{left:392.533333pt;}
.x94_c00427{left:393.733333pt;}
.x2b_c00427{left:396.000000pt;}
.xd5_c00427{left:397.866667pt;}
.x3f_c00427{left:399.733333pt;}
.xd_c00427{left:400.666667pt;}
.xbf_c00427{left:402.400000pt;}
.x3_c00427{left:403.600000pt;}
.xa4_c00427{left:405.200000pt;}
.x61_c00427{left:406.533333pt;}
.x116_c00427{left:408.266667pt;}
.x1c_c00427{left:410.533333pt;}
.x127_c00427{left:415.333333pt;}
.x49_c00427{left:416.666667pt;}
.xc0_c00427{left:417.733333pt;}
.x34_c00427{left:418.800000pt;}
.x86_c00427{left:421.466667pt;}
.xd6_c00427{left:422.800000pt;}
.xd0_c00427{left:424.000000pt;}
.xe_c00427{left:426.266667pt;}
.xe4_c00427{left:427.200000pt;}
.x2c_c00427{left:428.666667pt;}
.xc7_c00427{left:430.933333pt;}
.xf5_c00427{left:432.666667pt;}
.xac_c00427{left:434.000000pt;}
.x124_c00427{left:436.266667pt;}
.x6b_c00427{left:438.533333pt;}
.x76_c00427{left:441.200000pt;}
.xe9_c00427{left:442.533333pt;}
.x9f_c00427{left:443.466667pt;}
.x87_c00427{left:445.466667pt;}
.x7c_c00427{left:451.600000pt;}
.x62_c00427{left:452.666667pt;}
.x40_c00427{left:456.000000pt;}
.x56_c00427{left:458.400000pt;}
.x101_c00427{left:459.866667pt;}
.xfd_c00427{left:461.600000pt;}
.x4a_c00427{left:464.666667pt;}
.x95_c00427{left:466.666667pt;}
.xca_c00427{left:468.666667pt;}
.xbb_c00427{left:470.000000pt;}
.x106_c00427{left:471.333333pt;}
.x35_c00427{left:473.866667pt;}
.x128_c00427{left:475.466667pt;}
.xad_c00427{left:477.200000pt;}
.x1d_c00427{left:478.666667pt;}
.xd7_c00427{left:480.400000pt;}
.x4b_c00427{left:482.266667pt;}
.xea_c00427{left:483.200000pt;}
.xf_c00427{left:484.533333pt;}
.xcb_c00427{left:485.600000pt;}
.xfe_c00427{left:488.133333pt;}
.x117_c00427{left:490.400000pt;}
.x57_c00427{left:491.733333pt;}
.xc8_c00427{left:492.933333pt;}
.x96_c00427{left:494.533333pt;}
.x102_c00427{left:496.000000pt;}
.x63_c00427{left:500.000000pt;}
.x10_c00427{left:501.866667pt;}
.xd8_c00427{left:505.066667pt;}
.x41_c00427{left:506.533333pt;}
.x4c_c00427{left:507.866667pt;}
.x88_c00427{left:509.733333pt;}
.x36_c00427{left:510.666667pt;}
.xa0_c00427{left:511.733333pt;}
.x11_c00427{left:514.933333pt;}
.xeb_c00427{left:516.133333pt;}
.x58_c00427{left:517.333333pt;}
.x1e_c00427{left:519.333333pt;}
.x77_c00427{left:520.266667pt;}
.x10d_c00427{left:523.600000pt;}
.xc1_c00427{left:526.533333pt;}
.x7d_c00427{left:528.933333pt;}
.xae_c00427{left:530.266667pt;}
.x103_c00427{left:532.533333pt;}
.x11f_c00427{left:533.600000pt;}
.x59_c00427{left:534.666667pt;}
.x119_c00427{left:535.600000pt;}
.x1f_c00427{left:537.600000pt;}
.xd9_c00427{left:538.933333pt;}
.x78_c00427{left:541.333333pt;}
.x110_c00427{left:542.266667pt;}
.x89_c00427{left:543.333333pt;}
.x42_c00427{left:545.866667pt;}
.xa5_c00427{left:548.266667pt;}
.x4d_c00427{left:549.466667pt;}
.x120_c00427{left:551.866667pt;}
.x12_c00427{left:554.266667pt;}
.x104_c00427{left:555.866667pt;}
.x37_c00427{left:557.333333pt;}
.x5a_c00427{left:558.933333pt;}
.x113_c00427{left:560.133333pt;}
.x7e_c00427{left:562.266667pt;}
.x43_c00427{left:564.400000pt;}
.xcc_c00427{left:568.533333pt;}
.xaf_c00427{left:569.600000pt;}
.x6c_c00427{left:571.600000pt;}
.x13_c00427{left:572.800000pt;}
.x97_c00427{left:574.266667pt;}
.x38_c00427{left:575.200000pt;}
.xde_c00427{left:577.333333pt;}
.x129_c00427{left:580.800000pt;}
.xb5_c00427{left:582.533333pt;}
.x118_c00427{left:584.133333pt;}
.x10b_c00427{left:585.200000pt;}
.xa1_c00427{left:586.533333pt;}
.x20_c00427{left:589.066667pt;}
.xda_c00427{left:590.666667pt;}
.x98_c00427{left:594.800000pt;}
.x5b_c00427{left:596.000000pt;}
.x107_c00427{left:598.000000pt;}
.xb6_c00427{left:601.066667pt;}
.x44_c00427{left:603.466667pt;}
.x12a_c00427{left:604.533333pt;}
.xa6_c00427{left:605.866667pt;}
.x114_c00427{left:606.800000pt;}
.x7f_c00427{left:608.000000pt;}
.xa2_c00427{left:611.200000pt;}
.x8a_c00427{left:613.466667pt;}
.x21_c00427{left:616.266667pt;}
.xe5_c00427{left:618.000000pt;}
.x11a_c00427{left:621.466667pt;}
.x79_c00427{left:623.866667pt;}
.x80_c00427{left:625.333333pt;}
.xc2_c00427{left:626.400000pt;}
.x99_c00427{left:627.466667pt;}
.x22_c00427{left:631.600000pt;}
.x4e_c00427{left:632.933333pt;}
.x115_c00427{left:634.666667pt;}
.x6d_c00427{left:635.600000pt;}
.x14_c00427{left:636.533333pt;}
.xef_c00427{left:639.066667pt;}
.xb7_c00427{left:640.400000pt;}
.x8b_c00427{left:645.733333pt;}
.x23_c00427{left:647.333333pt;}
.xcd_c00427{left:649.200000pt;}
.x64_c00427{left:650.400000pt;}
.xd1_c00427{left:651.600000pt;}
.x39_c00427{left:654.933333pt;}
.x4f_c00427{left:659.466667pt;}
.xe6_c00427{left:661.866667pt;}
.x6e_c00427{left:663.466667pt;}
.xb0_c00427{left:665.333333pt;}
.x4_c00427{left:667.866667pt;}
.x45_c00427{left:669.333333pt;}
.xf9_c00427{left:671.733333pt;}
.xf0_c00427{left:672.666667pt;}
.x15_c00427{left:673.600000pt;}
.xdf_c00427{left:675.200000pt;}
.x121_c00427{left:676.933333pt;}
.xec_c00427{left:681.466667pt;}
}





/* 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_c00428 {
    display:none;
  }
  .loading-indicator_c00428.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00428 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_c00428 { 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_c00428" -> "#page-container .classname_c00428")
 */
.pf_c00428 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00428 { /* 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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00428 { /* 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_c00428 { /* 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_c00428 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00428 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00428 {overflow:visible;}
  }
}
.c_c00428 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00428 { /* 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_c00428:after { /* webkit #35443 */
  content: '';
}
.t_c00428:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00428 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 */
}
.__c00428 { /* 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_c00428 { /* info for Javascript */
  display:none;
}
.l_c00428 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00428 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00428 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00428: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_c00428 {
    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_c00428.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00428.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_c00428 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00428{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00428;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.000000;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;}
.me_c00428{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m12_c00428{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00428{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00428{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00428{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00428{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m77_c00428{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00428{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m65_c00428{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m34_c00428{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m31_c00428{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00428{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00428{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m89_c00428{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00428{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00428{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00428{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00428{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00428{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mba_c00428{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mae_c00428{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m76_c00428{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m74_c00428{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00428{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00428{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00428{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00428{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00428{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.maa_c00428{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00428{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m43_c00428{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m45_c00428{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m82_c00428{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19_c00428{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00428{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m81_c00428{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m97_c00428{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00428{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00428{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m10_c00428{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00428{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m87_c00428{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m68_c00428{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m92_c00428{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m93_c00428{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00428{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00428{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00428{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00428{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00428{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.md_c00428{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m75_c00428{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00428{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m38_c00428{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00428{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m28_c00428{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m85_c00428{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00428{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m18_c00428{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m15_c00428{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m79_c00428{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m39_c00428{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00428{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00428{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00428{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00428{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m64_c00428{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m88_c00428{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mac_c00428{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3_c00428{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80_c00428{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00428{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00428{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m33_c00428{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m42_c00428{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m61_c00428{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m69_c00428{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00428{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00428{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m37_c00428{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m35_c00428{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00428{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m70_c00428{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9_c00428{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00428{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00428{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m52_c00428{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m98_c00428{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m86_c00428{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23_c00428{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m51_c00428{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m73_c00428{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);}
.m63_c00428{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m83_c00428{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m78_c00428{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m48_c00428{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m46_c00428{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mb_c00428{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00428{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00428{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m96_c00428{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m99_c00428{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m91_c00428{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m40_c00428{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00428{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.mad_c00428{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00428{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m50_c00428{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mab_c00428{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m32_c00428{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m66_c00428{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00428{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m30_c00428{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m2_c00428{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m62_c00428{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00428{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m49_c00428{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00428{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m36_c00428{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m67_c00428{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m8_c00428{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m54_c00428{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m16_c00428{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m58_c00428{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m27_c00428{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m60_c00428{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00428{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00428{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m17_c00428{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00428{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00428{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf_c00428{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m56_c00428{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m90_c00428{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00428{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00428{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m95_c00428{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00428{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.maf_c00428{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m72_c00428{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m29_c00428{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00428{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m41_c00428{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00428{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m44_c00428{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00428{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00428{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m13_c00428{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5_c00428{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m11_c00428{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.mc_c00428{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6_c00428{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m47_c00428{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00428{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00428{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00428{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00428{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00428{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m21_c00428{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00428{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00428{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00428{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.ma_c00428{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00428{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m20_c00428{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00428{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m26_c00428{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00428{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c00428{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00428{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00428{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00428{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00428{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00428{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m55_c00428{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m14_c00428{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m71_c00428{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00428{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c00428{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m59_c00428{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m57_c00428{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00428{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00428{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m53_c00428{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m24_c00428{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m84_c00428{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00428{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m94_c00428{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00428{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00428{vertical-align:0.000000px;}
.ls0_c00428{letter-spacing:0.000000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{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__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00428{word-spacing:-5.875000px;}
.ws4_c00428{word-spacing:-4.500000px;}
.wsa_c00428{word-spacing:-3.017769px;}
.ws5_c00428{word-spacing:-1.961411px;}
.wsb_c00428{word-spacing:0.000000px;}
.ws6_c00428{word-spacing:3.910965px;}
.ws0_c00428{word-spacing:4.625000px;}
.ws1_c00428{word-spacing:5.875000px;}
.ws3_c00428{word-spacing:9.578831px;}
.ws2_c00428{word-spacing:10.901874px;}
.ws7_c00428{word-spacing:13.166667px;}
.ws8_c00428{word-spacing:13.460457px;}
._0_c00428{width:34.375000px;}
.fc0_c00428{color:transparent;}
.fs0_c00428{font-size:54.000000px;}
.y0_c00428{bottom:0.000000px;}
.y2d_c00428{bottom:146.100000px;}
.y2c_c00428{bottom:162.750000px;}
.y2b_c00428{bottom:177.900000px;}
.y2a_c00428{bottom:208.800000px;}
.y29_c00428{bottom:228.600000px;}
.y28_c00428{bottom:248.400000px;}
.y27_c00428{bottom:267.900000px;}
.y26_c00428{bottom:287.700000px;}
.y25_c00428{bottom:307.500000px;}
.y24_c00428{bottom:327.600000px;}
.y23_c00428{bottom:347.400000px;}
.y22_c00428{bottom:367.200000px;}
.y21_c00428{bottom:387.000000px;}
.y20_c00428{bottom:406.800000px;}
.y1f_c00428{bottom:426.600000px;}
.y1e_c00428{bottom:446.400000px;}
.y1d_c00428{bottom:466.200000px;}
.y1c_c00428{bottom:486.000000px;}
.y1b_c00428{bottom:505.500000px;}
.y1a_c00428{bottom:525.600000px;}
.y19_c00428{bottom:545.400000px;}
.y18_c00428{bottom:565.200000px;}
.y17_c00428{bottom:584.700000px;}
.y16_c00428{bottom:604.500000px;}
.y15_c00428{bottom:624.300000px;}
.y14_c00428{bottom:644.400000px;}
.y13_c00428{bottom:664.200000px;}
.y12_c00428{bottom:684.000000px;}
.y11_c00428{bottom:703.800000px;}
.y10_c00428{bottom:723.600000px;}
.yf_c00428{bottom:743.400000px;}
.ye_c00428{bottom:763.500000px;}
.yd_c00428{bottom:783.300000px;}
.yc_c00428{bottom:803.100000px;}
.yb_c00428{bottom:823.050000px;}
.ya_c00428{bottom:843.150000px;}
.y9_c00428{bottom:862.950000px;}
.y8_c00428{bottom:882.750000px;}
.y7_c00428{bottom:902.550000px;}
.y6_c00428{bottom:922.650000px;}
.y5_c00428{bottom:942.450000px;}
.y4_c00428{bottom:966.900000px;}
.y3_c00428{bottom:986.700000px;}
.y2_c00428{bottom:1006.200000px;}
.y1_c00428{bottom:1045.050000px;}
.h2_c00428{height:54.000000px;}
.h1_c00428{height:1166.250000px;}
.h0_c00428{height:1166.400056px;}
.w0_c00428{width:920.879975px;}
.w1_c00428{width:921.000000px;}
.x0_c00428{left:0.000000px;}
.x130_c00428{left:144.900000px;}
.x100_c00428{left:146.400000px;}
.xd9_c00428{left:147.750000px;}
.xb2_c00428{left:149.250000px;}
.x56_c00428{left:150.300000px;}
.x1_c00428{left:151.500000px;}
.xf2_c00428{left:158.700000px;}
.x119_c00428{left:161.250000px;}
.x34_c00428{left:163.200000px;}
.x138_c00428{left:166.350000px;}
.x42_c00428{left:167.850000px;}
.xb3_c00428{left:170.550000px;}
.xdf_c00428{left:173.100000px;}
.xcf_c00428{left:174.450000px;}
.x109_c00428{left:179.250000px;}
.x12_c00428{left:181.350000px;}
.xed_c00428{left:184.500000px;}
.x137_c00428{left:185.700000px;}
.x8d_c00428{left:188.400000px;}
.xc8_c00428{left:189.600000px;}
.x121_c00428{left:191.250000px;}
.x9d_c00428{left:192.600000px;}
.x131_c00428{left:197.850000px;}
.x43_c00428{left:200.250000px;}
.x69_c00428{left:202.350000px;}
.xc0_c00428{left:204.000000px;}
.x105_c00428{left:205.200000px;}
.x57_c00428{left:209.400000px;}
.x35_c00428{left:211.500000px;}
.x21_c00428{left:213.300000px;}
.xab_c00428{left:214.650000px;}
.x12c_c00428{left:219.000000px;}
.x5e_c00428{left:220.200000px;}
.xe0_c00428{left:221.700000px;}
.x44_c00428{left:222.900000px;}
.x101_c00428{left:224.250000px;}
.x13_c00428{left:225.300000px;}
.x96_c00428{left:226.500000px;}
.x11a_c00428{left:228.900000px;}
.x83_c00428{left:229.950000px;}
.x6f_c00428{left:232.950000px;}
.xba_c00428{left:234.300000px;}
.x3_c00428{left:237.300000px;}
.xc1_c00428{left:239.250000px;}
.x9e_c00428{left:241.950000px;}
.x77_c00428{left:243.150000px;}
.x4c_c00428{left:245.400000px;}
.x13a_c00428{left:247.650000px;}
.xe1_c00428{left:250.500000px;}
.x10e_c00428{left:252.750000px;}
.xf9_c00428{left:254.850000px;}
.x4_c00428{left:257.400000px;}
.xd0_c00428{left:260.400000px;}
.xee_c00428{left:262.500000px;}
.x29_c00428{left:263.850000px;}
.x36_c00428{left:267.000000px;}
.xa6_c00428{left:268.500000px;}
.x10a_c00428{left:271.050000px;}
.x58_c00428{left:273.150000px;}
.x90_c00428{left:274.200000px;}
.x102_c00428{left:275.700000px;}
.x106_c00428{left:276.750000px;}
.xe2_c00428{left:279.600000px;}
.x84_c00428{left:281.400000px;}
.x78_c00428{left:282.750000px;}
.x5_c00428{left:285.450000px;}
.x37_c00428{left:286.500000px;}
.x14_c00428{left:291.600000px;}
.x45_c00428{left:292.650000px;}
.xc9_c00428{left:293.700000px;}
.x126_c00428{left:294.900000px;}
.x10f_c00428{left:296.700000px;}
.x132_c00428{left:299.700000px;}
.x113_c00428{left:300.900000px;}
.x15_c00428{left:303.150000px;}
.x70_c00428{left:304.950000px;}
.x22_c00428{left:307.200000px;}
.xac_c00428{left:308.700000px;}
.x107_c00428{left:311.700000px;}
.x79_c00428{left:313.050000px;}
.x97_c00428{left:314.250000px;}
.x85_c00428{left:316.350000px;}
.xc2_c00428{left:319.500000px;}
.xca_c00428{left:322.800000px;}
.x38_c00428{left:324.300000px;}
.x122_c00428{left:325.800000px;}
.x23_c00428{left:327.000000px;}
.x5f_c00428{left:329.550000px;}
.x6_c00428{left:330.750000px;}
.x16_c00428{left:334.050000px;}
.x4d_c00428{left:335.100000px;}
.x2a_c00428{left:336.900000px;}
.x39_c00428{left:339.450000px;}
.x59_c00428{left:341.850000px;}
.xb4_c00428{left:342.900000px;}
.x7a_c00428{left:343.950000px;}
.xfa_c00428{left:345.300000px;}
.x8e_c00428{left:346.950000px;}
.x17_c00428{left:348.150000px;}
.x11b_c00428{left:349.650000px;}
.x6a_c00428{left:351.000000px;}
.xd1_c00428{left:353.400000px;}
.xcb_c00428{left:355.500000px;}
.x91_c00428{left:357.000000px;}
.x9f_c00428{left:358.950000px;}
.x46_c00428{left:362.100000px;}
.x4e_c00428{left:364.950000px;}
.xb5_c00428{left:367.800000px;}
.x6b_c00428{left:370.050000px;}
.x103_c00428{left:371.700000px;}
.x127_c00428{left:377.400000px;}
.x2b_c00428{left:379.350000px;}
.x18_c00428{left:382.050000px;}
.xad_c00428{left:383.250000px;}
.x60_c00428{left:384.600000px;}
.x114_c00428{left:385.800000px;}
.xef_c00428{left:387.450000px;}
.xa7_c00428{left:388.950000px;}
.x86_c00428{left:390.150000px;}
.xc3_c00428{left:391.200000px;}
.x104_c00428{left:392.250000px;}
.x24_c00428{left:394.350000px;}
.x7b_c00428{left:398.250000px;}
.x7_c00428{left:400.650000px;}
.x5a_c00428{left:402.750000px;}
.x115_c00428{left:407.400000px;}
.x8f_c00428{left:409.200000px;}
.x11c_c00428{left:411.900000px;}
.x10b_c00428{left:413.250000px;}
.x92_c00428{left:414.900000px;}
.x61_c00428{left:415.950000px;}
.x4f_c00428{left:417.900000px;}
.xf3_c00428{left:419.100000px;}
.x25_c00428{left:420.300000px;}
.x5b_c00428{left:421.800000px;}
.x6c_c00428{left:424.800000px;}
.xf4_c00428{left:426.300000px;}
.x87_c00428{left:427.950000px;}
.x12d_c00428{left:429.150000px;}
.x71_c00428{left:430.200000px;}
.xc4_c00428{left:431.550000px;}
.x19_c00428{left:433.200000px;}
.x11d_c00428{left:435.000000px;}
.x2c_c00428{left:436.950000px;}
.x116_c00428{left:438.000000px;}
.x8_c00428{left:441.300000px;}
.x3a_c00428{left:443.550000px;}
.x2_c00428{left:447.450000px;}
.xbb_c00428{left:448.500000px;}
.xe3_c00428{left:449.850000px;}
.x1a_c00428{left:452.700000px;}
.xa0_c00428{left:454.350000px;}
.x6d_c00428{left:456.150000px;}
.x26_c00428{left:458.100000px;}
.x88_c00428{left:459.300000px;}
.x2d_c00428{left:465.000000px;}
.x3b_c00428{left:466.200000px;}
.x50_c00428{left:469.500000px;}
.x9_c00428{left:470.850000px;}
.x7c_c00428{left:472.050000px;}
.xb6_c00428{left:473.700000px;}
.xda_c00428{left:476.100000px;}
.xd2_c00428{left:477.450000px;}
.xbc_c00428{left:479.100000px;}
.x1b_c00428{left:480.750000px;}
.x47_c00428{left:482.700000px;}
.x123_c00428{left:483.900000px;}
.x93_c00428{left:486.150000px;}
.x89_c00428{left:487.350000px;}
.x27_c00428{left:490.200000px;}
.xa_c00428{left:491.700000px;}
.xb7_c00428{left:496.800000px;}
.x62_c00428{left:499.800000px;}
.xdb_c00428{left:503.400000px;}
.x11e_c00428{left:504.900000px;}
.xf5_c00428{left:506.550000px;}
.xf0_c00428{left:508.350000px;}
.x51_c00428{left:509.400000px;}
.x5c_c00428{left:512.250000px;}
.x72_c00428{left:515.250000px;}
.xd3_c00428{left:517.050000px;}
.x63_c00428{left:519.900000px;}
.x28_c00428{left:522.300000px;}
.xe8_c00428{left:524.700000px;}
.x1c_c00428{left:527.250000px;}
.x2e_c00428{left:529.800000px;}
.xb_c00428{left:532.350000px;}
.x48_c00428{left:534.600000px;}
.x128_c00428{left:538.200000px;}
.xbd_c00428{left:539.250000px;}
.xe4_c00428{left:542.400000px;}
.x3c_c00428{left:545.100000px;}
.xc_c00428{left:548.550000px;}
.xa1_c00428{left:550.350000px;}
.x6e_c00428{left:552.600000px;}
.x13b_c00428{left:558.300000px;}
.xf6_c00428{left:559.800000px;}
.x73_c00428{left:561.750000px;}
.x129_c00428{left:563.400000px;}
.xae_c00428{left:565.350000px;}
.x64_c00428{left:566.700000px;}
.x3d_c00428{left:570.600000px;}
.x7d_c00428{left:572.100000px;}
.xa2_c00428{left:573.750000px;}
.xe5_c00428{left:575.100000px;}
.xdc_c00428{left:577.500000px;}
.x133_c00428{left:580.050000px;}
.x52_c00428{left:583.200000px;}
.xcc_c00428{left:585.600000px;}
.x2f_c00428{left:587.100000px;}
.x74_c00428{left:589.050000px;}
.x12e_c00428{left:591.150000px;}
.x124_c00428{left:592.200000px;}
.xd_c00428{left:593.250000px;}
.x1d_c00428{left:597.150000px;}
.xd4_c00428{left:599.550000px;}
.x49_c00428{left:601.200000px;}
.xc5_c00428{left:602.850000px;}
.xbe_c00428{left:604.350000px;}
.xdd_c00428{left:608.100000px;}
.xaf_c00428{left:612.150000px;}
.x98_c00428{left:613.350000px;}
.x3e_c00428{left:614.550000px;}
.x8a_c00428{left:616.500000px;}
.x65_c00428{left:618.900000px;}
.x110_c00428{left:620.100000px;}
.xfb_c00428{left:624.600000px;}
.x3f_c00428{left:626.100000px;}
.x12a_c00428{left:628.500000px;}
.x7e_c00428{left:630.000000px;}
.xf7_c00428{left:632.100000px;}
.x53_c00428{left:633.300000px;}
.xd5_c00428{left:634.500000px;}
.xa3_c00428{left:635.700000px;}
.x117_c00428{left:637.500000px;}
.x75_c00428{left:638.700000px;}
.x1e_c00428{left:640.350000px;}
.x13c_c00428{left:642.600000px;}
.x4a_c00428{left:643.650000px;}
.xd6_c00428{left:646.800000px;}
.x30_c00428{left:648.600000px;}
.xe9_c00428{left:649.650000px;}
.x7f_c00428{left:650.850000px;}
.x12b_c00428{left:654.000000px;}
.xbf_c00428{left:655.050000px;}
.x118_c00428{left:657.300000px;}
.x11f_c00428{left:658.950000px;}
.xe_c00428{left:661.350000px;}
.x40_c00428{left:662.850000px;}
.xfc_c00428{left:666.000000px;}
.x54_c00428{left:669.000000px;}
.x99_c00428{left:670.650000px;}
.x94_c00428{left:671.850000px;}
.xa8_c00428{left:675.150000px;}
.x139_c00428{left:676.350000px;}
.xa4_c00428{left:677.400000px;}
.xd7_c00428{left:678.900000px;}
.x80_c00428{left:680.700000px;}
.x8b_c00428{left:683.850000px;}
.x31_c00428{left:685.650000px;}
.xcd_c00428{left:687.000000px;}
.x12f_c00428{left:688.050000px;}
.x95_c00428{left:690.150000px;}
.xc6_c00428{left:693.150000px;}
.xa9_c00428{left:695.700000px;}
.x66_c00428{left:697.800000px;}
.xfd_c00428{left:699.450000px;}
.x1f_c00428{left:702.600000px;}
.x41_c00428{left:705.300000px;}
.xea_c00428{left:707.250000px;}
.xf_c00428{left:708.450000px;}
.x134_c00428{left:709.500000px;}
.x111_c00428{left:712.650000px;}
.xfe_c00428{left:713.850000px;}
.xb0_c00428{left:718.050000px;}
.x10_c00428{left:720.000000px;}
.x32_c00428{left:723.750000px;}
.x125_c00428{left:725.100000px;}
.x8c_c00428{left:727.050000px;}
.x9a_c00428{left:728.250000px;}
.x81_c00428{left:731.850000px;}
.xb8_c00428{left:732.900000px;}
.x67_c00428{left:734.100000px;}
.x10c_c00428{left:738.750000px;}
.xe6_c00428{left:741.150000px;}
.xde_c00428{left:743.400000px;}
.xf1_c00428{left:744.900000px;}
.x76_c00428{left:746.400000px;}
.x135_c00428{left:748.800000px;}
.x11_c00428{left:750.900000px;}
.xd8_c00428{left:752.250000px;}
.x55_c00428{left:754.350000px;}
.xb9_c00428{left:756.300000px;}
.x68_c00428{left:759.300000px;}
.x82_c00428{left:760.950000px;}
.xa5_c00428{left:762.750000px;}
.xe7_c00428{left:766.350000px;}
.x9b_c00428{left:767.550000px;}
.xf8_c00428{left:771.450000px;}
.x5d_c00428{left:772.500000px;}
.xeb_c00428{left:774.150000px;}
.xc7_c00428{left:777.000000px;}
.xb1_c00428{left:778.200000px;}
.xaa_c00428{left:780.300000px;}
.x20_c00428{left:781.800000px;}
.x112_c00428{left:784.350000px;}
.x9c_c00428{left:786.600000px;}
.x4b_c00428{left:788.700000px;}
.xff_c00428{left:789.750000px;}
.x10d_c00428{left:791.250000px;}
.x108_c00428{left:792.600000px;}
.xec_c00428{left:793.950000px;}
.x33_c00428{left:795.000000px;}
.x136_c00428{left:798.900000px;}
.x120_c00428{left:800.100000px;}
.xce_c00428{left:802.950000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws9_c00428{word-spacing:-5.222222pt;}
.ws4_c00428{word-spacing:-4.000000pt;}
.wsa_c00428{word-spacing:-2.682461pt;}
.ws5_c00428{word-spacing:-1.743477pt;}
.wsb_c00428{word-spacing:0.000000pt;}
.ws6_c00428{word-spacing:3.476414pt;}
.ws0_c00428{word-spacing:4.111111pt;}
.ws1_c00428{word-spacing:5.222222pt;}
.ws3_c00428{word-spacing:8.514517pt;}
.ws2_c00428{word-spacing:9.690555pt;}
.ws7_c00428{word-spacing:11.703704pt;}
.ws8_c00428{word-spacing:11.964851pt;}
._0_c00428{width:30.555556pt;}
.fs0_c00428{font-size:48.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y2d_c00428{bottom:129.866667pt;}
.y2c_c00428{bottom:144.666667pt;}
.y2b_c00428{bottom:158.133333pt;}
.y2a_c00428{bottom:185.600000pt;}
.y29_c00428{bottom:203.200000pt;}
.y28_c00428{bottom:220.800000pt;}
.y27_c00428{bottom:238.133333pt;}
.y26_c00428{bottom:255.733333pt;}
.y25_c00428{bottom:273.333333pt;}
.y24_c00428{bottom:291.200000pt;}
.y23_c00428{bottom:308.800000pt;}
.y22_c00428{bottom:326.400000pt;}
.y21_c00428{bottom:344.000000pt;}
.y20_c00428{bottom:361.600000pt;}
.y1f_c00428{bottom:379.200000pt;}
.y1e_c00428{bottom:396.800000pt;}
.y1d_c00428{bottom:414.400000pt;}
.y1c_c00428{bottom:432.000000pt;}
.y1b_c00428{bottom:449.333333pt;}
.y1a_c00428{bottom:467.200000pt;}
.y19_c00428{bottom:484.800000pt;}
.y18_c00428{bottom:502.400000pt;}
.y17_c00428{bottom:519.733333pt;}
.y16_c00428{bottom:537.333333pt;}
.y15_c00428{bottom:554.933333pt;}
.y14_c00428{bottom:572.800000pt;}
.y13_c00428{bottom:590.400000pt;}
.y12_c00428{bottom:608.000000pt;}
.y11_c00428{bottom:625.600000pt;}
.y10_c00428{bottom:643.200000pt;}
.yf_c00428{bottom:660.800000pt;}
.ye_c00428{bottom:678.666667pt;}
.yd_c00428{bottom:696.266667pt;}
.yc_c00428{bottom:713.866667pt;}
.yb_c00428{bottom:731.600000pt;}
.ya_c00428{bottom:749.466667pt;}
.y9_c00428{bottom:767.066667pt;}
.y8_c00428{bottom:784.666667pt;}
.y7_c00428{bottom:802.266667pt;}
.y6_c00428{bottom:820.133333pt;}
.y5_c00428{bottom:837.733333pt;}
.y4_c00428{bottom:859.466667pt;}
.y3_c00428{bottom:877.066667pt;}
.y2_c00428{bottom:894.400000pt;}
.y1_c00428{bottom:928.933333pt;}
.h2_c00428{height:48.000000pt;}
.h1_c00428{height:1036.666667pt;}
.h0_c00428{height:1036.800049pt;}
.w0_c00428{width:818.559977pt;}
.w1_c00428{width:818.666667pt;}
.x0_c00428{left:0.000000pt;}
.x130_c00428{left:128.800000pt;}
.x100_c00428{left:130.133333pt;}
.xd9_c00428{left:131.333333pt;}
.xb2_c00428{left:132.666667pt;}
.x56_c00428{left:133.600000pt;}
.x1_c00428{left:134.666667pt;}
.xf2_c00428{left:141.066667pt;}
.x119_c00428{left:143.333333pt;}
.x34_c00428{left:145.066667pt;}
.x138_c00428{left:147.866667pt;}
.x42_c00428{left:149.200000pt;}
.xb3_c00428{left:151.600000pt;}
.xdf_c00428{left:153.866667pt;}
.xcf_c00428{left:155.066667pt;}
.x109_c00428{left:159.333333pt;}
.x12_c00428{left:161.200000pt;}
.xed_c00428{left:164.000000pt;}
.x137_c00428{left:165.066667pt;}
.x8d_c00428{left:167.466667pt;}
.xc8_c00428{left:168.533333pt;}
.x121_c00428{left:170.000000pt;}
.x9d_c00428{left:171.200000pt;}
.x131_c00428{left:175.866667pt;}
.x43_c00428{left:178.000000pt;}
.x69_c00428{left:179.866667pt;}
.xc0_c00428{left:181.333333pt;}
.x105_c00428{left:182.400000pt;}
.x57_c00428{left:186.133333pt;}
.x35_c00428{left:188.000000pt;}
.x21_c00428{left:189.600000pt;}
.xab_c00428{left:190.800000pt;}
.x12c_c00428{left:194.666667pt;}
.x5e_c00428{left:195.733333pt;}
.xe0_c00428{left:197.066667pt;}
.x44_c00428{left:198.133333pt;}
.x101_c00428{left:199.333333pt;}
.x13_c00428{left:200.266667pt;}
.x96_c00428{left:201.333333pt;}
.x11a_c00428{left:203.466667pt;}
.x83_c00428{left:204.400000pt;}
.x6f_c00428{left:207.066667pt;}
.xba_c00428{left:208.266667pt;}
.x3_c00428{left:210.933333pt;}
.xc1_c00428{left:212.666667pt;}
.x9e_c00428{left:215.066667pt;}
.x77_c00428{left:216.133333pt;}
.x4c_c00428{left:218.133333pt;}
.x13a_c00428{left:220.133333pt;}
.xe1_c00428{left:222.666667pt;}
.x10e_c00428{left:224.666667pt;}
.xf9_c00428{left:226.533333pt;}
.x4_c00428{left:228.800000pt;}
.xd0_c00428{left:231.466667pt;}
.xee_c00428{left:233.333333pt;}
.x29_c00428{left:234.533333pt;}
.x36_c00428{left:237.333333pt;}
.xa6_c00428{left:238.666667pt;}
.x10a_c00428{left:240.933333pt;}
.x58_c00428{left:242.800000pt;}
.x90_c00428{left:243.733333pt;}
.x102_c00428{left:245.066667pt;}
.x106_c00428{left:246.000000pt;}
.xe2_c00428{left:248.533333pt;}
.x84_c00428{left:250.133333pt;}
.x78_c00428{left:251.333333pt;}
.x5_c00428{left:253.733333pt;}
.x37_c00428{left:254.666667pt;}
.x14_c00428{left:259.200000pt;}
.x45_c00428{left:260.133333pt;}
.xc9_c00428{left:261.066667pt;}
.x126_c00428{left:262.133333pt;}
.x10f_c00428{left:263.733333pt;}
.x132_c00428{left:266.400000pt;}
.x113_c00428{left:267.466667pt;}
.x15_c00428{left:269.466667pt;}
.x70_c00428{left:271.066667pt;}
.x22_c00428{left:273.066667pt;}
.xac_c00428{left:274.400000pt;}
.x107_c00428{left:277.066667pt;}
.x79_c00428{left:278.266667pt;}
.x97_c00428{left:279.333333pt;}
.x85_c00428{left:281.200000pt;}
.xc2_c00428{left:284.000000pt;}
.xca_c00428{left:286.933333pt;}
.x38_c00428{left:288.266667pt;}
.x122_c00428{left:289.600000pt;}
.x23_c00428{left:290.666667pt;}
.x5f_c00428{left:292.933333pt;}
.x6_c00428{left:294.000000pt;}
.x16_c00428{left:296.933333pt;}
.x4d_c00428{left:297.866667pt;}
.x2a_c00428{left:299.466667pt;}
.x39_c00428{left:301.733333pt;}
.x59_c00428{left:303.866667pt;}
.xb4_c00428{left:304.800000pt;}
.x7a_c00428{left:305.733333pt;}
.xfa_c00428{left:306.933333pt;}
.x8e_c00428{left:308.400000pt;}
.x17_c00428{left:309.466667pt;}
.x11b_c00428{left:310.800000pt;}
.x6a_c00428{left:312.000000pt;}
.xd1_c00428{left:314.133333pt;}
.xcb_c00428{left:316.000000pt;}
.x91_c00428{left:317.333333pt;}
.x9f_c00428{left:319.066667pt;}
.x46_c00428{left:321.866667pt;}
.x4e_c00428{left:324.400000pt;}
.xb5_c00428{left:326.933333pt;}
.x6b_c00428{left:328.933333pt;}
.x103_c00428{left:330.400000pt;}
.x127_c00428{left:335.466667pt;}
.x2b_c00428{left:337.200000pt;}
.x18_c00428{left:339.600000pt;}
.xad_c00428{left:340.666667pt;}
.x60_c00428{left:341.866667pt;}
.x114_c00428{left:342.933333pt;}
.xef_c00428{left:344.400000pt;}
.xa7_c00428{left:345.733333pt;}
.x86_c00428{left:346.800000pt;}
.xc3_c00428{left:347.733333pt;}
.x104_c00428{left:348.666667pt;}
.x24_c00428{left:350.533333pt;}
.x7b_c00428{left:354.000000pt;}
.x7_c00428{left:356.133333pt;}
.x5a_c00428{left:358.000000pt;}
.x115_c00428{left:362.133333pt;}
.x8f_c00428{left:363.733333pt;}
.x11c_c00428{left:366.133333pt;}
.x10b_c00428{left:367.333333pt;}
.x92_c00428{left:368.800000pt;}
.x61_c00428{left:369.733333pt;}
.x4f_c00428{left:371.466667pt;}
.xf3_c00428{left:372.533333pt;}
.x25_c00428{left:373.600000pt;}
.x5b_c00428{left:374.933333pt;}
.x6c_c00428{left:377.600000pt;}
.xf4_c00428{left:378.933333pt;}
.x87_c00428{left:380.400000pt;}
.x12d_c00428{left:381.466667pt;}
.x71_c00428{left:382.400000pt;}
.xc4_c00428{left:383.600000pt;}
.x19_c00428{left:385.066667pt;}
.x11d_c00428{left:386.666667pt;}
.x2c_c00428{left:388.400000pt;}
.x116_c00428{left:389.333333pt;}
.x8_c00428{left:392.266667pt;}
.x3a_c00428{left:394.266667pt;}
.x2_c00428{left:397.733333pt;}
.xbb_c00428{left:398.666667pt;}
.xe3_c00428{left:399.866667pt;}
.x1a_c00428{left:402.400000pt;}
.xa0_c00428{left:403.866667pt;}
.x6d_c00428{left:405.466667pt;}
.x26_c00428{left:407.200000pt;}
.x88_c00428{left:408.266667pt;}
.x2d_c00428{left:413.333333pt;}
.x3b_c00428{left:414.400000pt;}
.x50_c00428{left:417.333333pt;}
.x9_c00428{left:418.533333pt;}
.x7c_c00428{left:419.600000pt;}
.xb6_c00428{left:421.066667pt;}
.xda_c00428{left:423.200000pt;}
.xd2_c00428{left:424.400000pt;}
.xbc_c00428{left:425.866667pt;}
.x1b_c00428{left:427.333333pt;}
.x47_c00428{left:429.066667pt;}
.x123_c00428{left:430.133333pt;}
.x93_c00428{left:432.133333pt;}
.x89_c00428{left:433.200000pt;}
.x27_c00428{left:435.733333pt;}
.xa_c00428{left:437.066667pt;}
.xb7_c00428{left:441.600000pt;}
.x62_c00428{left:444.266667pt;}
.xdb_c00428{left:447.466667pt;}
.x11e_c00428{left:448.800000pt;}
.xf5_c00428{left:450.266667pt;}
.xf0_c00428{left:451.866667pt;}
.x51_c00428{left:452.800000pt;}
.x5c_c00428{left:455.333333pt;}
.x72_c00428{left:458.000000pt;}
.xd3_c00428{left:459.600000pt;}
.x63_c00428{left:462.133333pt;}
.x28_c00428{left:464.266667pt;}
.xe8_c00428{left:466.400000pt;}
.x1c_c00428{left:468.666667pt;}
.x2e_c00428{left:470.933333pt;}
.xb_c00428{left:473.200000pt;}
.x48_c00428{left:475.200000pt;}
.x128_c00428{left:478.400000pt;}
.xbd_c00428{left:479.333333pt;}
.xe4_c00428{left:482.133333pt;}
.x3c_c00428{left:484.533333pt;}
.xc_c00428{left:487.600000pt;}
.xa1_c00428{left:489.200000pt;}
.x6e_c00428{left:491.200000pt;}
.x13b_c00428{left:496.266667pt;}
.xf6_c00428{left:497.600000pt;}
.x73_c00428{left:499.333333pt;}
.x129_c00428{left:500.800000pt;}
.xae_c00428{left:502.533333pt;}
.x64_c00428{left:503.733333pt;}
.x3d_c00428{left:507.200000pt;}
.x7d_c00428{left:508.533333pt;}
.xa2_c00428{left:510.000000pt;}
.xe5_c00428{left:511.200000pt;}
.xdc_c00428{left:513.333333pt;}
.x133_c00428{left:515.600000pt;}
.x52_c00428{left:518.400000pt;}
.xcc_c00428{left:520.533333pt;}
.x2f_c00428{left:521.866667pt;}
.x74_c00428{left:523.600000pt;}
.x12e_c00428{left:525.466667pt;}
.x124_c00428{left:526.400000pt;}
.xd_c00428{left:527.333333pt;}
.x1d_c00428{left:530.800000pt;}
.xd4_c00428{left:532.933333pt;}
.x49_c00428{left:534.400000pt;}
.xc5_c00428{left:535.866667pt;}
.xbe_c00428{left:537.200000pt;}
.xdd_c00428{left:540.533333pt;}
.xaf_c00428{left:544.133333pt;}
.x98_c00428{left:545.200000pt;}
.x3e_c00428{left:546.266667pt;}
.x8a_c00428{left:548.000000pt;}
.x65_c00428{left:550.133333pt;}
.x110_c00428{left:551.200000pt;}
.xfb_c00428{left:555.200000pt;}
.x3f_c00428{left:556.533333pt;}
.x12a_c00428{left:558.666667pt;}
.x7e_c00428{left:560.000000pt;}
.xf7_c00428{left:561.866667pt;}
.x53_c00428{left:562.933333pt;}
.xd5_c00428{left:564.000000pt;}
.xa3_c00428{left:565.066667pt;}
.x117_c00428{left:566.666667pt;}
.x75_c00428{left:567.733333pt;}
.x1e_c00428{left:569.200000pt;}
.x13c_c00428{left:571.200000pt;}
.x4a_c00428{left:572.133333pt;}
.xd6_c00428{left:574.933333pt;}
.x30_c00428{left:576.533333pt;}
.xe9_c00428{left:577.466667pt;}
.x7f_c00428{left:578.533333pt;}
.x12b_c00428{left:581.333333pt;}
.xbf_c00428{left:582.266667pt;}
.x118_c00428{left:584.266667pt;}
.x11f_c00428{left:585.733333pt;}
.xe_c00428{left:587.866667pt;}
.x40_c00428{left:589.200000pt;}
.xfc_c00428{left:592.000000pt;}
.x54_c00428{left:594.666667pt;}
.x99_c00428{left:596.133333pt;}
.x94_c00428{left:597.200000pt;}
.xa8_c00428{left:600.133333pt;}
.x139_c00428{left:601.200000pt;}
.xa4_c00428{left:602.133333pt;}
.xd7_c00428{left:603.466667pt;}
.x80_c00428{left:605.066667pt;}
.x8b_c00428{left:607.866667pt;}
.x31_c00428{left:609.466667pt;}
.xcd_c00428{left:610.666667pt;}
.x12f_c00428{left:611.600000pt;}
.x95_c00428{left:613.466667pt;}
.xc6_c00428{left:616.133333pt;}
.xa9_c00428{left:618.400000pt;}
.x66_c00428{left:620.266667pt;}
.xfd_c00428{left:621.733333pt;}
.x1f_c00428{left:624.533333pt;}
.x41_c00428{left:626.933333pt;}
.xea_c00428{left:628.666667pt;}
.xf_c00428{left:629.733333pt;}
.x134_c00428{left:630.666667pt;}
.x111_c00428{left:633.466667pt;}
.xfe_c00428{left:634.533333pt;}
.xb0_c00428{left:638.266667pt;}
.x10_c00428{left:640.000000pt;}
.x32_c00428{left:643.333333pt;}
.x125_c00428{left:644.533333pt;}
.x8c_c00428{left:646.266667pt;}
.x9a_c00428{left:647.333333pt;}
.x81_c00428{left:650.533333pt;}
.xb8_c00428{left:651.466667pt;}
.x67_c00428{left:652.533333pt;}
.x10c_c00428{left:656.666667pt;}
.xe6_c00428{left:658.800000pt;}
.xde_c00428{left:660.800000pt;}
.xf1_c00428{left:662.133333pt;}
.x76_c00428{left:663.466667pt;}
.x135_c00428{left:665.600000pt;}
.x11_c00428{left:667.466667pt;}
.xd8_c00428{left:668.666667pt;}
.x55_c00428{left:670.533333pt;}
.xb9_c00428{left:672.266667pt;}
.x68_c00428{left:674.933333pt;}
.x82_c00428{left:676.400000pt;}
.xa5_c00428{left:678.000000pt;}
.xe7_c00428{left:681.200000pt;}
.x9b_c00428{left:682.266667pt;}
.xf8_c00428{left:685.733333pt;}
.x5d_c00428{left:686.666667pt;}
.xeb_c00428{left:688.133333pt;}
.xc7_c00428{left:690.666667pt;}
.xb1_c00428{left:691.733333pt;}
.xaa_c00428{left:693.600000pt;}
.x20_c00428{left:694.933333pt;}
.x112_c00428{left:697.200000pt;}
.x9c_c00428{left:699.200000pt;}
.x4b_c00428{left:701.066667pt;}
.xff_c00428{left:702.000000pt;}
.x10d_c00428{left:703.333333pt;}
.x108_c00428{left:704.533333pt;}
.xec_c00428{left:705.733333pt;}
.x33_c00428{left:706.666667pt;}
.x136_c00428{left:710.133333pt;}
.x120_c00428{left:711.200000pt;}
.xce_c00428{left:713.733333pt;}
}





/* 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_c00429 {
    display:none;
  }
  .loading-indicator_c00429.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00429 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_c00429 { 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_c00429" -> "#page-container .classname_c00429")
 */
.pf_c00429 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00429 { /* 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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00429 { /* 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_c00429 { /* 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_c00429 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00429 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00429 {overflow:visible;}
  }
}
.c_c00429 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00429 { /* 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_c00429:after { /* webkit #35443 */
  content: '';
}
.t_c00429:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00429 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 */
}
.__c00429 { /* 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_c00429 { /* info for Javascript */
  display:none;
}
.l_c00429 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00429 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00429 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00429: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_c00429 {
    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_c00429.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00429.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_c00429 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00429{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00429;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.000000;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;}
.m2a_c00429{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00429{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m24_c00429{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00429{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00429{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.maa_c00429{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00429{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf_c00429{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m55_c00429{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00429{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m49_c00429{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m34_c00429{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00429{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m99_c00429{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00429{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m46_c00429{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00429{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m71_c00429{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00429{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mab_c00429{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m76_c00429{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00429{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m87_c00429{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m52_c00429{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00429{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00429{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m78_c00429{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00429{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m94_c00429{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m30_c00429{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00429{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.me_c00429{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00429{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m13_c00429{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00429{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00429{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33_c00429{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00429{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mac_c00429{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m40_c00429{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00429{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00429{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00429{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m70_c00429{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mae_c00429{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00429{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00429{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m51_c00429{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00429{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m41_c00429{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m98_c00429{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m63_c00429{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00429{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m81_c00429{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m26_c00429{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00429{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m56_c00429{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m38_c00429{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00429{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m59_c00429{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00429{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00429{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m84_c00429{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m92_c00429{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00429{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m48_c00429{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00429{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m60_c00429{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00429{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8_c00429{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m72_c00429{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00429{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00429{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00429{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00429{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00429{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00429{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00429{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00429{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m29_c00429{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00429{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m90_c00429{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m45_c00429{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00429{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00429{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00429{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00429{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m50_c00429{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00429{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00429{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m79_c00429{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m19_c00429{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m54_c00429{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m58_c00429{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00429{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m96_c00429{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9_c00429{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb_c00429{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00429{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m68_c00429{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m32_c00429{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00429{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m21_c00429{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m37_c00429{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m80_c00429{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m17_c00429{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m93_c00429{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m23_c00429{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00429{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00429{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m47_c00429{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m77_c00429{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m15_c00429{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m62_c00429{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m28_c00429{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m82_c00429{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m20_c00429{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m27_c00429{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m95_c00429{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m91_c00429{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00429{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00429{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m36_c00429{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00429{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m69_c00429{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.maf_c00429{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00429{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00429{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00429{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m0_c00429{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00429{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m86_c00429{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m67_c00429{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m61_c00429{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);}
.mb6_c00429{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m89_c00429{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00429{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m14_c00429{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m16_c00429{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00429{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md_c00429{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00429{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m64_c00429{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m39_c00429{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mad_c00429{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma_c00429{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m57_c00429{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00429{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00429{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m83_c00429{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m74_c00429{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m97_c00429{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00429{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00429{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00429{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m42_c00429{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m31_c00429{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m73_c00429{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00429{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m65_c00429{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00429{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m25_c00429{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m44_c00429{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00429{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m22_c00429{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00429{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00429{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m43_c00429{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00429{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00429{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m75_c00429{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00429{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m88_c00429{transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00429{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00429{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00429{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00429{vertical-align:0.000000px;}
.ls0_c00429{letter-spacing:0.000000px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{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__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00429{word-spacing:-6.184211px;}
.ws2_c00429{word-spacing:-3.194444px;}
.ws1_c00429{word-spacing:-1.521739px;}
.ws6_c00429{word-spacing:0.000000px;}
.ws0_c00429{word-spacing:6.666667px;}
.ws3_c00429{word-spacing:6.794872px;}
.ws4_c00429{word-spacing:10.000000px;}
.fc0_c00429{color:transparent;}
.fs0_c00429{font-size:60.000000px;}
.y0_c00429{bottom:0.000000px;}
.y2d_c00429{bottom:159.000000px;}
.y2c_c00429{bottom:178.800000px;}
.y2b_c00429{bottom:198.900000px;}
.y2a_c00429{bottom:218.700000px;}
.y29_c00429{bottom:238.500000px;}
.y28_c00429{bottom:258.300000px;}
.y27_c00429{bottom:278.100000px;}
.y26_c00429{bottom:298.200000px;}
.y25_c00429{bottom:318.000000px;}
.y24_c00429{bottom:338.100000px;}
.y23_c00429{bottom:357.900000px;}
.y22_c00429{bottom:377.700000px;}
.y21_c00429{bottom:397.500000px;}
.y20_c00429{bottom:417.600000px;}
.y1f_c00429{bottom:437.400000px;}
.y1e_c00429{bottom:457.200000px;}
.y1d_c00429{bottom:477.000000px;}
.y1c_c00429{bottom:496.800000px;}
.y1b_c00429{bottom:516.900000px;}
.y1a_c00429{bottom:536.700000px;}
.y19_c00429{bottom:556.500000px;}
.y18_c00429{bottom:577.050000px;}
.y17_c00429{bottom:597.150000px;}
.y16_c00429{bottom:616.950000px;}
.y15_c00429{bottom:637.050000px;}
.y14_c00429{bottom:656.850000px;}
.y13_c00429{bottom:676.950000px;}
.y12_c00429{bottom:696.750000px;}
.y11_c00429{bottom:716.850000px;}
.y10_c00429{bottom:736.950000px;}
.yf_c00429{bottom:756.750000px;}
.ye_c00429{bottom:777.300000px;}
.yd_c00429{bottom:797.100000px;}
.yc_c00429{bottom:817.200000px;}
.yb_c00429{bottom:837.000000px;}
.ya_c00429{bottom:856.800000px;}
.y9_c00429{bottom:877.350000px;}
.y8_c00429{bottom:897.150000px;}
.y7_c00429{bottom:917.250000px;}
.y6_c00429{bottom:937.050000px;}
.y5_c00429{bottom:957.600000px;}
.y4_c00429{bottom:977.400000px;}
.y3_c00429{bottom:997.500000px;}
.y2_c00429{bottom:1017.300000px;}
.y1_c00429{bottom:1053.300000px;}
.h2_c00429{height:60.000000px;}
.h1_c00429{height:1166.250000px;}
.h0_c00429{height:1166.400056px;}
.w0_c00429{width:920.879975px;}
.w1_c00429{width:921.000000px;}
.x0_c00429{left:0.000000px;}
.x13c_c00429{left:112.950000px;}
.x12c_c00429{left:114.450000px;}
.xf1_c00429{left:115.950000px;}
.xc0_c00429{left:117.600000px;}
.xca_c00429{left:118.800000px;}
.x55_c00429{left:120.150000px;}
.x3_c00429{left:121.350000px;}
.x81_c00429{left:137.850000px;}
.xde_c00429{left:140.100000px;}
.x3e_c00429{left:142.650000px;}
.x14_c00429{left:145.500000px;}
.xf9_c00429{left:146.700000px;}
.xc1_c00429{left:148.200000px;}
.x4_c00429{left:149.850000px;}
.x56_c00429{left:151.500000px;}
.xaf_c00429{left:152.850000px;}
.x82_c00429{left:156.600000px;}
.x9a_c00429{left:158.850000px;}
.xa2_c00429{left:161.850000px;}
.x66_c00429{left:164.550000px;}
.xf2_c00429{left:166.350000px;}
.x8e_c00429{left:168.000000px;}
.xd4_c00429{left:169.500000px;}
.x32_c00429{left:171.300000px;}
.x5_c00429{left:176.100000px;}
.x9b_c00429{left:178.650000px;}
.xec_c00429{left:180.600000px;}
.xa3_c00429{left:181.950000px;}
.x15_c00429{left:184.050000px;}
.x4a_c00429{left:186.450000px;}
.x67_c00429{left:187.650000px;}
.xcb_c00429{left:189.000000px;}
.xb0_c00429{left:190.350000px;}
.x137_c00429{left:191.700000px;}
.xfd_c00429{left:195.000000px;}
.xb6_c00429{left:196.200000px;}
.x113_c00429{left:199.650000px;}
.x16_c00429{left:203.850000px;}
.x13d_c00429{left:205.500000px;}
.xcc_c00429{left:206.700000px;}
.x105_c00429{left:207.900000px;}
.xdf_c00429{left:209.250000px;}
.x11e_c00429{left:210.450000px;}
.x138_c00429{left:211.500000px;}
.x123_c00429{left:213.750000px;}
.x57_c00429{left:216.000000px;}
.xa4_c00429{left:217.650000px;}
.x83_c00429{left:221.700000px;}
.xc2_c00429{left:223.050000px;}
.x3f_c00429{left:224.100000px;}
.x10a_c00429{left:225.900000px;}
.xb1_c00429{left:227.850000px;}
.x147_c00429{left:228.900000px;}
.x116_c00429{left:230.250000px;}
.xe6_c00429{left:232.050000px;}
.x69_c00429{left:233.700000px;}
.xd5_c00429{left:235.050000px;}
.x17_c00429{left:236.250000px;}
.x134_c00429{left:237.750000px;}
.x142_c00429{left:238.950000px;}
.xfe_c00429{left:240.300000px;}
.xcd_c00429{left:241.650000px;}
.x24_c00429{left:243.000000px;}
.x10d_c00429{left:244.350000px;}
.xf3_c00429{left:245.550000px;}
.xa5_c00429{left:247.500000px;}
.x33_c00429{left:248.700000px;}
.x8f_c00429{left:250.200000px;}
.x40_c00429{left:251.850000px;}
.x84_c00429{left:253.050000px;}
.x58_c00429{left:256.350000px;}
.x77_c00429{left:257.700000px;}
.x6_c00429{left:258.900000px;}
.xe0_c00429{left:260.700000px;}
.xc3_c00429{left:261.900000px;}
.xf4_c00429{left:263.550000px;}
.x68_c00429{left:266.400000px;}
.x6a_c00429{left:267.900000px;}
.x34_c00429{left:270.300000px;}
.x4b_c00429{left:271.350000px;}
.x135_c00429{left:274.500000px;}
.x18_c00429{left:276.900000px;}
.x25_c00429{left:280.050000px;}
.xce_c00429{left:282.000000px;}
.x124_c00429{left:283.650000px;}
.x6b_c00429{left:285.150000px;}
.xd6_c00429{left:288.000000px;}
.xa6_c00429{left:290.400000px;}
.x26_c00429{left:291.600000px;}
.x19_c00429{left:294.150000px;}
.x13e_c00429{left:295.500000px;}
.x59_c00429{left:297.000000px;}
.x6c_c00429{left:298.500000px;}
.x85_c00429{left:299.550000px;}
.x143_c00429{left:300.600000px;}
.x7_c00429{left:301.800000px;}
.x9c_c00429{left:306.150000px;}
.xd7_c00429{left:308.550000px;}
.x27_c00429{left:312.900000px;}
.x5a_c00429{left:315.750000px;}
.x149_c00429{left:317.250000px;}
.x106_c00429{left:318.750000px;}
.xb7_c00429{left:321.150000px;}
.xc4_c00429{left:322.800000px;}
.xd8_c00429{left:326.550000px;}
.x41_c00429{left:328.200000px;}
.xcf_c00429{left:329.550000px;}
.xf5_c00429{left:331.200000px;}
.xff_c00429{left:333.150000px;}
.x130_c00429{left:334.950000px;}
.x1a_c00429{left:338.100000px;}
.x78_c00429{left:339.900000px;}
.x13f_c00429{left:341.550000px;}
.x5b_c00429{left:343.800000px;}
.x90_c00429{left:345.600000px;}
.x42_c00429{left:347.250000px;}
.x6d_c00429{left:348.600000px;}
.x35_c00429{left:351.300000px;}
.xa7_c00429{left:355.200000px;}
.xd0_c00429{left:357.600000px;}
.x91_c00429{left:360.300000px;}
.xfa_c00429{left:361.950000px;}
.xe7_c00429{left:363.000000px;}
.x139_c00429{left:364.200000px;}
.x8_c00429{left:365.550000px;}
.x148_c00429{left:367.500000px;}
.xb8_c00429{left:369.000000px;}
.x4c_c00429{left:372.150000px;}
.xa8_c00429{left:373.200000px;}
.x43_c00429{left:378.600000px;}
.x28_c00429{left:380.550000px;}
.xfb_c00429{left:382.500000px;}
.xed_c00429{left:384.750000px;}
.x86_c00429{left:387.000000px;}
.x100_c00429{left:388.650000px;}
.xe8_c00429{left:390.300000px;}
.xa9_c00429{left:391.500000px;}
.x4d_c00429{left:395.850000px;}
.x11f_c00429{left:397.350000px;}
.x6e_c00429{left:399.750000px;}
.x1b_c00429{left:401.100000px;}
.xb9_c00429{left:403.200000px;}
.x131_c00429{left:408.000000px;}
.x92_c00429{left:410.400000px;}
.xc5_c00429{left:412.350000px;}
.x87_c00429{left:415.500000px;}
.x29_c00429{left:417.300000px;}
.xd9_c00429{left:418.650000px;}
.xb2_c00429{left:421.800000px;}
.x128_c00429{left:423.900000px;}
.x10e_c00429{left:424.950000px;}
.x9_c00429{left:426.000000px;}
.x101_c00429{left:427.200000px;}
.xe1_c00429{left:429.150000px;}
.x93_c00429{left:430.200000px;}
.x5c_c00429{left:434.100000px;}
.x1_c00429{left:435.600000px;}
.x1c_c00429{left:437.100000px;}
.x114_c00429{left:440.700000px;}
.x79_c00429{left:443.250000px;}
.x136_c00429{left:445.800000px;}
.x44_c00429{left:447.300000px;}
.xaa_c00429{left:448.800000px;}
.x129_c00429{left:450.150000px;}
.x6f_c00429{left:452.250000px;}
.xfc_c00429{left:453.450000px;}
.x117_c00429{left:455.700000px;}
.x4e_c00429{left:456.750000px;}
.x36_c00429{left:458.550000px;}
.x140_c00429{left:461.550000px;}
.x9d_c00429{left:463.800000px;}
.x107_c00429{left:465.600000px;}
.x88_c00429{left:466.950000px;}
.xab_c00429{left:469.350000px;}
.xa_c00429{left:470.700000px;}
.x7a_c00429{left:473.100000px;}
.xf6_c00429{left:476.400000px;}
.x12a_c00429{left:478.200000px;}
.x102_c00429{left:479.700000px;}
.x125_c00429{left:483.000000px;}
.xee_c00429{left:484.800000px;}
.x70_c00429{left:486.150000px;}
.x11b_c00429{left:488.250000px;}
.xd1_c00429{left:489.750000px;}
.x4f_c00429{left:494.250000px;}
.x2a_c00429{left:495.750000px;}
.xba_c00429{left:497.850000px;}
.x120_c00429{left:499.200000px;}
.x5d_c00429{left:500.700000px;}
.x9e_c00429{left:502.350000px;}
.x37_c00429{left:503.850000px;}
.xe2_c00429{left:506.550000px;}
.x7b_c00429{left:510.150000px;}
.x10f_c00429{left:512.100000px;}
.x12d_c00429{left:513.300000px;}
.x50_c00429{left:514.350000px;}
.x94_c00429{left:516.150000px;}
.xc6_c00429{left:517.500000px;}
.x2b_c00429{left:519.450000px;}
.xbb_c00429{left:520.500000px;}
.x45_c00429{left:522.150000px;}
.x38_c00429{left:524.700000px;}
.x118_c00429{left:525.900000px;}
.xb_c00429{left:529.050000px;}
.x141_c00429{left:530.700000px;}
.x5e_c00429{left:532.050000px;}
.xda_c00429{left:533.100000px;}
.x89_c00429{left:534.300000px;}
.x110_c00429{left:535.500000px;}
.x71_c00429{left:536.850000px;}
.x46_c00429{left:539.400000px;}
.x2c_c00429{left:541.050000px;}
.x119_c00429{left:545.700000px;}
.xb3_c00429{left:547.800000px;}
.x1d_c00429{left:549.450000px;}
.x7c_c00429{left:551.550000px;}
.x8a_c00429{left:553.800000px;}
.xc_c00429{left:560.400000px;}
.xef_c00429{left:562.800000px;}
.x72_c00429{left:565.350000px;}
.x1e_c00429{left:566.700000px;}
.xf7_c00429{left:567.900000px;}
.x39_c00429{left:569.400000px;}
.x11c_c00429{left:571.050000px;}
.x2d_c00429{left:572.400000px;}
.x8b_c00429{left:574.350000px;}
.xac_c00429{left:576.300000px;}
.xdb_c00429{left:577.350000px;}
.x111_c00429{left:579.000000px;}
.xd2_c00429{left:581.250000px;}
.x3a_c00429{left:582.750000px;}
.x10b_c00429{left:583.800000px;}
.x51_c00429{left:585.600000px;}
.x108_c00429{left:586.950000px;}
.x95_c00429{left:588.450000px;}
.xbc_c00429{left:589.650000px;}
.x73_c00429{left:590.850000px;}
.x1f_c00429{left:592.200000px;}
.xe9_c00429{left:595.050000px;}
.x7d_c00429{left:596.550000px;}
.x144_c00429{left:597.600000px;}
.x2e_c00429{left:598.650000px;}
.xc7_c00429{left:602.850000px;}
.x5f_c00429{left:604.050000px;}
.x52_c00429{left:606.150000px;}
.xb4_c00429{left:607.950000px;}
.xd_c00429{left:609.000000px;}
.xf0_c00429{left:612.000000px;}
.x74_c00429{left:615.000000px;}
.x3b_c00429{left:616.650000px;}
.xdc_c00429{left:618.000000px;}
.x7e_c00429{left:619.200000px;}
.x60_c00429{left:622.800000px;}
.xd3_c00429{left:627.000000px;}
.xea_c00429{left:629.250000px;}
.xad_c00429{left:630.300000px;}
.x13a_c00429{left:631.350000px;}
.x2f_c00429{left:632.850000px;}
.x20_c00429{left:635.100000px;}
.x126_c00429{left:636.300000px;}
.x10c_c00429{left:640.200000px;}
.xbd_c00429{left:642.900000px;}
.x47_c00429{left:646.050000px;}
.x12b_c00429{left:648.750000px;}
.x11a_c00429{left:650.400000px;}
.x12e_c00429{left:651.600000px;}
.xf8_c00429{left:653.550000px;}
.x7f_c00429{left:654.600000px;}
.xe_c00429{left:656.850000px;}
.x48_c00429{left:658.350000px;}
.x121_c00429{left:659.700000px;}
.x75_c00429{left:661.500000px;}
.x61_c00429{left:664.950000px;}
.x96_c00429{left:666.600000px;}
.x21_c00429{left:667.800000px;}
.x103_c00429{left:670.800000px;}
.xf_c00429{left:674.550000px;}
.x53_c00429{left:676.050000px;}
.x76_c00429{left:677.700000px;}
.xe3_c00429{left:678.900000px;}
.x127_c00429{left:679.950000px;}
.x30_c00429{left:681.450000px;}
.x80_c00429{left:683.700000px;}
.x11d_c00429{left:685.950000px;}
.x97_c00429{left:687.450000px;}
.xbe_c00429{left:688.950000px;}
.x145_c00429{left:691.200000px;}
.xe4_c00429{left:693.600000px;}
.xdd_c00429{left:699.300000px;}
.x3c_c00429{left:700.800000px;}
.x10_c00429{left:703.050000px;}
.x115_c00429{left:704.700000px;}
.xae_c00429{left:706.200000px;}
.x9f_c00429{left:707.250000px;}
.x62_c00429{left:708.900000px;}
.x22_c00429{left:711.750000px;}
.xc8_c00429{left:712.950000px;}
.x8c_c00429{left:716.250000px;}
.x98_c00429{left:720.150000px;}
.xa0_c00429{left:721.950000px;}
.x132_c00429{left:724.800000px;}
.x11_c00429{left:726.150000px;}
.x63_c00429{left:728.400000px;}
.xeb_c00429{left:731.850000px;}
.x49_c00429{left:733.200000px;}
.x3d_c00429{left:734.250000px;}
.x8d_c00429{left:735.750000px;}
.x104_c00429{left:737.100000px;}
.x146_c00429{left:738.300000px;}
.x23_c00429{left:740.250000px;}
.x13b_c00429{left:742.950000px;}
.xe5_c00429{left:744.000000px;}
.x64_c00429{left:745.650000px;}
.x112_c00429{left:746.700000px;}
.x12f_c00429{left:747.750000px;}
.x12_c00429{left:750.300000px;}
.xa1_c00429{left:751.800000px;}
.x133_c00429{left:754.050000px;}
.x109_c00429{left:756.150000px;}
.xb5_c00429{left:757.350000px;}
.x122_c00429{left:760.500000px;}
.x2_c00429{left:761.700000px;}
.x65_c00429{left:765.750000px;}
.x13_c00429{left:768.000000px;}
.xc9_c00429{left:769.350000px;}
.xbf_c00429{left:770.700000px;}
.x99_c00429{left:772.650000px;}
.x31_c00429{left:774.000000px;}
.x54_c00429{left:776.850000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws5_c00429{word-spacing:-5.497076pt;}
.ws2_c00429{word-spacing:-2.839506pt;}
.ws1_c00429{word-spacing:-1.352657pt;}
.ws6_c00429{word-spacing:0.000000pt;}
.ws0_c00429{word-spacing:5.925926pt;}
.ws3_c00429{word-spacing:6.039886pt;}
.ws4_c00429{word-spacing:8.888889pt;}
.fs0_c00429{font-size:53.333333pt;}
.y0_c00429{bottom:0.000000pt;}
.y2d_c00429{bottom:141.333333pt;}
.y2c_c00429{bottom:158.933333pt;}
.y2b_c00429{bottom:176.800000pt;}
.y2a_c00429{bottom:194.400000pt;}
.y29_c00429{bottom:212.000000pt;}
.y28_c00429{bottom:229.600000pt;}
.y27_c00429{bottom:247.200000pt;}
.y26_c00429{bottom:265.066667pt;}
.y25_c00429{bottom:282.666667pt;}
.y24_c00429{bottom:300.533333pt;}
.y23_c00429{bottom:318.133333pt;}
.y22_c00429{bottom:335.733333pt;}
.y21_c00429{bottom:353.333333pt;}
.y20_c00429{bottom:371.200000pt;}
.y1f_c00429{bottom:388.800000pt;}
.y1e_c00429{bottom:406.400000pt;}
.y1d_c00429{bottom:424.000000pt;}
.y1c_c00429{bottom:441.600000pt;}
.y1b_c00429{bottom:459.466667pt;}
.y1a_c00429{bottom:477.066667pt;}
.y19_c00429{bottom:494.666667pt;}
.y18_c00429{bottom:512.933333pt;}
.y17_c00429{bottom:530.800000pt;}
.y16_c00429{bottom:548.400000pt;}
.y15_c00429{bottom:566.266667pt;}
.y14_c00429{bottom:583.866667pt;}
.y13_c00429{bottom:601.733333pt;}
.y12_c00429{bottom:619.333333pt;}
.y11_c00429{bottom:637.200000pt;}
.y10_c00429{bottom:655.066667pt;}
.yf_c00429{bottom:672.666667pt;}
.ye_c00429{bottom:690.933333pt;}
.yd_c00429{bottom:708.533333pt;}
.yc_c00429{bottom:726.400000pt;}
.yb_c00429{bottom:744.000000pt;}
.ya_c00429{bottom:761.600000pt;}
.y9_c00429{bottom:779.866667pt;}
.y8_c00429{bottom:797.466667pt;}
.y7_c00429{bottom:815.333333pt;}
.y6_c00429{bottom:832.933333pt;}
.y5_c00429{bottom:851.200000pt;}
.y4_c00429{bottom:868.800000pt;}
.y3_c00429{bottom:886.666667pt;}
.y2_c00429{bottom:904.266667pt;}
.y1_c00429{bottom:936.266667pt;}
.h2_c00429{height:53.333333pt;}
.h1_c00429{height:1036.666667pt;}
.h0_c00429{height:1036.800049pt;}
.w0_c00429{width:818.559977pt;}
.w1_c00429{width:818.666667pt;}
.x0_c00429{left:0.000000pt;}
.x13c_c00429{left:100.400000pt;}
.x12c_c00429{left:101.733333pt;}
.xf1_c00429{left:103.066667pt;}
.xc0_c00429{left:104.533333pt;}
.xca_c00429{left:105.600000pt;}
.x55_c00429{left:106.800000pt;}
.x3_c00429{left:107.866667pt;}
.x81_c00429{left:122.533333pt;}
.xde_c00429{left:124.533333pt;}
.x3e_c00429{left:126.800000pt;}
.x14_c00429{left:129.333333pt;}
.xf9_c00429{left:130.400000pt;}
.xc1_c00429{left:131.733333pt;}
.x4_c00429{left:133.200000pt;}
.x56_c00429{left:134.666667pt;}
.xaf_c00429{left:135.866667pt;}
.x82_c00429{left:139.200000pt;}
.x9a_c00429{left:141.200000pt;}
.xa2_c00429{left:143.866667pt;}
.x66_c00429{left:146.266667pt;}
.xf2_c00429{left:147.866667pt;}
.x8e_c00429{left:149.333333pt;}
.xd4_c00429{left:150.666667pt;}
.x32_c00429{left:152.266667pt;}
.x5_c00429{left:156.533333pt;}
.x9b_c00429{left:158.800000pt;}
.xec_c00429{left:160.533333pt;}
.xa3_c00429{left:161.733333pt;}
.x15_c00429{left:163.600000pt;}
.x4a_c00429{left:165.733333pt;}
.x67_c00429{left:166.800000pt;}
.xcb_c00429{left:168.000000pt;}
.xb0_c00429{left:169.200000pt;}
.x137_c00429{left:170.400000pt;}
.xfd_c00429{left:173.333333pt;}
.xb6_c00429{left:174.400000pt;}
.x113_c00429{left:177.466667pt;}
.x16_c00429{left:181.200000pt;}
.x13d_c00429{left:182.666667pt;}
.xcc_c00429{left:183.733333pt;}
.x105_c00429{left:184.800000pt;}
.xdf_c00429{left:186.000000pt;}
.x11e_c00429{left:187.066667pt;}
.x138_c00429{left:188.000000pt;}
.x123_c00429{left:190.000000pt;}
.x57_c00429{left:192.000000pt;}
.xa4_c00429{left:193.466667pt;}
.x83_c00429{left:197.066667pt;}
.xc2_c00429{left:198.266667pt;}
.x3f_c00429{left:199.200000pt;}
.x10a_c00429{left:200.800000pt;}
.xb1_c00429{left:202.533333pt;}
.x147_c00429{left:203.466667pt;}
.x116_c00429{left:204.666667pt;}
.xe6_c00429{left:206.266667pt;}
.x69_c00429{left:207.733333pt;}
.xd5_c00429{left:208.933333pt;}
.x17_c00429{left:210.000000pt;}
.x134_c00429{left:211.333333pt;}
.x142_c00429{left:212.400000pt;}
.xfe_c00429{left:213.600000pt;}
.xcd_c00429{left:214.800000pt;}
.x24_c00429{left:216.000000pt;}
.x10d_c00429{left:217.200000pt;}
.xf3_c00429{left:218.266667pt;}
.xa5_c00429{left:220.000000pt;}
.x33_c00429{left:221.066667pt;}
.x8f_c00429{left:222.400000pt;}
.x40_c00429{left:223.866667pt;}
.x84_c00429{left:224.933333pt;}
.x58_c00429{left:227.866667pt;}
.x77_c00429{left:229.066667pt;}
.x6_c00429{left:230.133333pt;}
.xe0_c00429{left:231.733333pt;}
.xc3_c00429{left:232.800000pt;}
.xf4_c00429{left:234.266667pt;}
.x68_c00429{left:236.800000pt;}
.x6a_c00429{left:238.133333pt;}
.x34_c00429{left:240.266667pt;}
.x4b_c00429{left:241.200000pt;}
.x135_c00429{left:244.000000pt;}
.x18_c00429{left:246.133333pt;}
.x25_c00429{left:248.933333pt;}
.xce_c00429{left:250.666667pt;}
.x124_c00429{left:252.133333pt;}
.x6b_c00429{left:253.466667pt;}
.xd6_c00429{left:256.000000pt;}
.xa6_c00429{left:258.133333pt;}
.x26_c00429{left:259.200000pt;}
.x19_c00429{left:261.466667pt;}
.x13e_c00429{left:262.666667pt;}
.x59_c00429{left:264.000000pt;}
.x6c_c00429{left:265.333333pt;}
.x85_c00429{left:266.266667pt;}
.x143_c00429{left:267.200000pt;}
.x7_c00429{left:268.266667pt;}
.x9c_c00429{left:272.133333pt;}
.xd7_c00429{left:274.266667pt;}
.x27_c00429{left:278.133333pt;}
.x5a_c00429{left:280.666667pt;}
.x149_c00429{left:282.000000pt;}
.x106_c00429{left:283.333333pt;}
.xb7_c00429{left:285.466667pt;}
.xc4_c00429{left:286.933333pt;}
.xd8_c00429{left:290.266667pt;}
.x41_c00429{left:291.733333pt;}
.xcf_c00429{left:292.933333pt;}
.xf5_c00429{left:294.400000pt;}
.xff_c00429{left:296.133333pt;}
.x130_c00429{left:297.733333pt;}
.x1a_c00429{left:300.533333pt;}
.x78_c00429{left:302.133333pt;}
.x13f_c00429{left:303.600000pt;}
.x5b_c00429{left:305.600000pt;}
.x90_c00429{left:307.200000pt;}
.x42_c00429{left:308.666667pt;}
.x6d_c00429{left:309.866667pt;}
.x35_c00429{left:312.266667pt;}
.xa7_c00429{left:315.733333pt;}
.xd0_c00429{left:317.866667pt;}
.x91_c00429{left:320.266667pt;}
.xfa_c00429{left:321.733333pt;}
.xe7_c00429{left:322.666667pt;}
.x139_c00429{left:323.733333pt;}
.x8_c00429{left:324.933333pt;}
.x148_c00429{left:326.666667pt;}
.xb8_c00429{left:328.000000pt;}
.x4c_c00429{left:330.800000pt;}
.xa8_c00429{left:331.733333pt;}
.x43_c00429{left:336.533333pt;}
.x28_c00429{left:338.266667pt;}
.xfb_c00429{left:340.000000pt;}
.xed_c00429{left:342.000000pt;}
.x86_c00429{left:344.000000pt;}
.x100_c00429{left:345.466667pt;}
.xe8_c00429{left:346.933333pt;}
.xa9_c00429{left:348.000000pt;}
.x4d_c00429{left:351.866667pt;}
.x11f_c00429{left:353.200000pt;}
.x6e_c00429{left:355.333333pt;}
.x1b_c00429{left:356.533333pt;}
.xb9_c00429{left:358.400000pt;}
.x131_c00429{left:362.666667pt;}
.x92_c00429{left:364.800000pt;}
.xc5_c00429{left:366.533333pt;}
.x87_c00429{left:369.333333pt;}
.x29_c00429{left:370.933333pt;}
.xd9_c00429{left:372.133333pt;}
.xb2_c00429{left:374.933333pt;}
.x128_c00429{left:376.800000pt;}
.x10e_c00429{left:377.733333pt;}
.x9_c00429{left:378.666667pt;}
.x101_c00429{left:379.733333pt;}
.xe1_c00429{left:381.466667pt;}
.x93_c00429{left:382.400000pt;}
.x5c_c00429{left:385.866667pt;}
.x1_c00429{left:387.200000pt;}
.x1c_c00429{left:388.533333pt;}
.x114_c00429{left:391.733333pt;}
.x79_c00429{left:394.000000pt;}
.x136_c00429{left:396.266667pt;}
.x44_c00429{left:397.600000pt;}
.xaa_c00429{left:398.933333pt;}
.x129_c00429{left:400.133333pt;}
.x6f_c00429{left:402.000000pt;}
.xfc_c00429{left:403.066667pt;}
.x117_c00429{left:405.066667pt;}
.x4e_c00429{left:406.000000pt;}
.x36_c00429{left:407.600000pt;}
.x140_c00429{left:410.266667pt;}
.x9d_c00429{left:412.266667pt;}
.x107_c00429{left:413.866667pt;}
.x88_c00429{left:415.066667pt;}
.xab_c00429{left:417.200000pt;}
.xa_c00429{left:418.400000pt;}
.x7a_c00429{left:420.533333pt;}
.xf6_c00429{left:423.466667pt;}
.x12a_c00429{left:425.066667pt;}
.x102_c00429{left:426.400000pt;}
.x125_c00429{left:429.333333pt;}
.xee_c00429{left:430.933333pt;}
.x70_c00429{left:432.133333pt;}
.x11b_c00429{left:434.000000pt;}
.xd1_c00429{left:435.333333pt;}
.x4f_c00429{left:439.333333pt;}
.x2a_c00429{left:440.666667pt;}
.xba_c00429{left:442.533333pt;}
.x120_c00429{left:443.733333pt;}
.x5d_c00429{left:445.066667pt;}
.x9e_c00429{left:446.533333pt;}
.x37_c00429{left:447.866667pt;}
.xe2_c00429{left:450.266667pt;}
.x7b_c00429{left:453.466667pt;}
.x10f_c00429{left:455.200000pt;}
.x12d_c00429{left:456.266667pt;}
.x50_c00429{left:457.200000pt;}
.x94_c00429{left:458.800000pt;}
.xc6_c00429{left:460.000000pt;}
.x2b_c00429{left:461.733333pt;}
.xbb_c00429{left:462.666667pt;}
.x45_c00429{left:464.133333pt;}
.x38_c00429{left:466.400000pt;}
.x118_c00429{left:467.466667pt;}
.xb_c00429{left:470.266667pt;}
.x141_c00429{left:471.733333pt;}
.x5e_c00429{left:472.933333pt;}
.xda_c00429{left:473.866667pt;}
.x89_c00429{left:474.933333pt;}
.x110_c00429{left:476.000000pt;}
.x71_c00429{left:477.200000pt;}
.x46_c00429{left:479.466667pt;}
.x2c_c00429{left:480.933333pt;}
.x119_c00429{left:485.066667pt;}
.xb3_c00429{left:486.933333pt;}
.x1d_c00429{left:488.400000pt;}
.x7c_c00429{left:490.266667pt;}
.x8a_c00429{left:492.266667pt;}
.xc_c00429{left:498.133333pt;}
.xef_c00429{left:500.266667pt;}
.x72_c00429{left:502.533333pt;}
.x1e_c00429{left:503.733333pt;}
.xf7_c00429{left:504.800000pt;}
.x39_c00429{left:506.133333pt;}
.x11c_c00429{left:507.600000pt;}
.x2d_c00429{left:508.800000pt;}
.x8b_c00429{left:510.533333pt;}
.xac_c00429{left:512.266667pt;}
.xdb_c00429{left:513.200000pt;}
.x111_c00429{left:514.666667pt;}
.xd2_c00429{left:516.666667pt;}
.x3a_c00429{left:518.000000pt;}
.x10b_c00429{left:518.933333pt;}
.x51_c00429{left:520.533333pt;}
.x108_c00429{left:521.733333pt;}
.x95_c00429{left:523.066667pt;}
.xbc_c00429{left:524.133333pt;}
.x73_c00429{left:525.200000pt;}
.x1f_c00429{left:526.400000pt;}
.xe9_c00429{left:528.933333pt;}
.x7d_c00429{left:530.266667pt;}
.x144_c00429{left:531.200000pt;}
.x2e_c00429{left:532.133333pt;}
.xc7_c00429{left:535.866667pt;}
.x5f_c00429{left:536.933333pt;}
.x52_c00429{left:538.800000pt;}
.xb4_c00429{left:540.400000pt;}
.xd_c00429{left:541.333333pt;}
.xf0_c00429{left:544.000000pt;}
.x74_c00429{left:546.666667pt;}
.x3b_c00429{left:548.133333pt;}
.xdc_c00429{left:549.333333pt;}
.x7e_c00429{left:550.400000pt;}
.x60_c00429{left:553.600000pt;}
.xd3_c00429{left:557.333333pt;}
.xea_c00429{left:559.333333pt;}
.xad_c00429{left:560.266667pt;}
.x13a_c00429{left:561.200000pt;}
.x2f_c00429{left:562.533333pt;}
.x20_c00429{left:564.533333pt;}
.x126_c00429{left:565.600000pt;}
.x10c_c00429{left:569.066667pt;}
.xbd_c00429{left:571.466667pt;}
.x47_c00429{left:574.266667pt;}
.x12b_c00429{left:576.666667pt;}
.x11a_c00429{left:578.133333pt;}
.x12e_c00429{left:579.200000pt;}
.xf8_c00429{left:580.933333pt;}
.x7f_c00429{left:581.866667pt;}
.xe_c00429{left:583.866667pt;}
.x48_c00429{left:585.200000pt;}
.x121_c00429{left:586.400000pt;}
.x75_c00429{left:588.000000pt;}
.x61_c00429{left:591.066667pt;}
.x96_c00429{left:592.533333pt;}
.x21_c00429{left:593.600000pt;}
.x103_c00429{left:596.266667pt;}
.xf_c00429{left:599.600000pt;}
.x53_c00429{left:600.933333pt;}
.x76_c00429{left:602.400000pt;}
.xe3_c00429{left:603.466667pt;}
.x127_c00429{left:604.400000pt;}
.x30_c00429{left:605.733333pt;}
.x80_c00429{left:607.733333pt;}
.x11d_c00429{left:609.733333pt;}
.x97_c00429{left:611.066667pt;}
.xbe_c00429{left:612.400000pt;}
.x145_c00429{left:614.400000pt;}
.xe4_c00429{left:616.533333pt;}
.xdd_c00429{left:621.600000pt;}
.x3c_c00429{left:622.933333pt;}
.x10_c00429{left:624.933333pt;}
.x115_c00429{left:626.400000pt;}
.xae_c00429{left:627.733333pt;}
.x9f_c00429{left:628.666667pt;}
.x62_c00429{left:630.133333pt;}
.x22_c00429{left:632.666667pt;}
.xc8_c00429{left:633.733333pt;}
.x8c_c00429{left:636.666667pt;}
.x98_c00429{left:640.133333pt;}
.xa0_c00429{left:641.733333pt;}
.x132_c00429{left:644.266667pt;}
.x11_c00429{left:645.466667pt;}
.x63_c00429{left:647.466667pt;}
.xeb_c00429{left:650.533333pt;}
.x49_c00429{left:651.733333pt;}
.x3d_c00429{left:652.666667pt;}
.x8d_c00429{left:654.000000pt;}
.x104_c00429{left:655.200000pt;}
.x146_c00429{left:656.266667pt;}
.x23_c00429{left:658.000000pt;}
.x13b_c00429{left:660.400000pt;}
.xe5_c00429{left:661.333333pt;}
.x64_c00429{left:662.800000pt;}
.x112_c00429{left:663.733333pt;}
.x12f_c00429{left:664.666667pt;}
.x12_c00429{left:666.933333pt;}
.xa1_c00429{left:668.266667pt;}
.x133_c00429{left:670.266667pt;}
.x109_c00429{left:672.133333pt;}
.xb5_c00429{left:673.200000pt;}
.x122_c00429{left:676.000000pt;}
.x2_c00429{left:677.066667pt;}
.x65_c00429{left:680.666667pt;}
.x13_c00429{left:682.666667pt;}
.xc9_c00429{left:683.866667pt;}
.xbf_c00429{left:685.066667pt;}
.x99_c00429{left:686.800000pt;}
.x31_c00429{left:688.000000pt;}
.x54_c00429{left:690.533333pt;}
}





/* 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_c00430 {
    display:none;
  }
  .loading-indicator_c00430.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00430 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_c00430 { 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_c00430" -> "#page-container .classname_c00430")
 */
.pf_c00430 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00430 { /* 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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00430 { /* 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_c00430 { /* 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_c00430 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00430 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00430 {overflow:visible;}
  }
}
.c_c00430 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00430 { /* 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_c00430:after { /* webkit #35443 */
  content: '';
}
.t_c00430:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00430 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 */
}
.__c00430 { /* 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_c00430 { /* info for Javascript */
  display:none;
}
.l_c00430 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00430 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00430 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00430: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_c00430 {
    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_c00430.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00430.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_c00430 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00430{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00430;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.000000;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;}
.m80_c00430{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m40_c00430{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00430{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00430{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00430{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00430{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00430{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00430{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m19_c00430{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00430{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00430{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m22_c00430{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00430{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00430{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m41_c00430{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m79_c00430{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00430{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00430{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00430{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m77_c00430{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m54_c00430{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m43_c00430{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m53_c00430{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m90_c00430{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m91_c00430{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00430{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m89_c00430{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m81_c00430{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mab_c00430{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m88_c00430{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m51_c00430{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m96_c00430{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00430{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13_c00430{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m12_c00430{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00430{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00430{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00430{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m93_c00430{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00430{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m70_c00430{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m71_c00430{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.md_c00430{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m20_c00430{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m76_c00430{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf_c00430{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m82_c00430{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00430{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m17_c00430{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m60_c00430{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00430{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00430{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00430{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00430{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00430{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb_c00430{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m26_c00430{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00430{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00430{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00430{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.maa_c00430{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m5_c00430{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00430{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m16_c00430{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00430{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m52_c00430{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00430{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m64_c00430{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00430{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m23_c00430{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3_c00430{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m18_c00430{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m63_c00430{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m95_c00430{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m21_c00430{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00430{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m78_c00430{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00430{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m59_c00430{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00430{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma_c00430{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m45_c00430{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00430{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m42_c00430{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m33_c00430{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00430{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m10_c00430{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00430{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00430{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00430{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m62_c00430{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m84_c00430{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00430{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00430{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m11_c00430{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7_c00430{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m57_c00430{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m48_c00430{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00430{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m66_c00430{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00430{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00430{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00430{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00430{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00430{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m58_c00430{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m68_c00430{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m24_c00430{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m37_c00430{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00430{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00430{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m72_c00430{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00430{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00430{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00430{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00430{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.me_c00430{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00430{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2_c00430{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00430{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00430{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m32_c00430{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00430{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00430{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m35_c00430{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m92_c00430{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00430{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00430{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m14_c00430{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m99_c00430{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9_c00430{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m87_c00430{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00430{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00430{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m65_c00430{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);}
.maf_c00430{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00430{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m47_c00430{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28_c00430{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00430{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m30_c00430{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m75_c00430{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m94_c00430{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m85_c00430{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m6_c00430{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m56_c00430{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00430{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m46_c00430{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00430{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00430{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m15_c00430{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m50_c00430{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00430{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00430{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00430{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00430{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m29_c00430{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00430{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mc_c00430{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m98_c00430{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m27_c00430{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m61_c00430{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m36_c00430{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mad_c00430{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m74_c00430{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mac_c00430{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m0_c00430{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m44_c00430{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00430{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m34_c00430{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m38_c00430{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m67_c00430{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m73_c00430{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m97_c00430{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00430{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m49_c00430{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m39_c00430{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m31_c00430{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00430{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.mae_c00430{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m83_c00430{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m69_c00430{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00430{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m86_c00430{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m55_c00430{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00430{vertical-align:0.000000px;}
.ls0_c00430{letter-spacing:0.000000px;}
.sc__c00430{text-shadow:none;}
.sc0_c00430{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__c00430{-webkit-text-stroke:0px transparent;}
.sc0_c00430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00430{word-spacing:-8.671875px;}
.ws3_c00430{word-spacing:-8.157895px;}
.ws4_c00430{word-spacing:-5.277778px;}
.ws0_c00430{word-spacing:-2.540323px;}
.ws8_c00430{word-spacing:0.000000px;}
.ws7_c00430{word-spacing:5.405405px;}
.ws1_c00430{word-spacing:8.529412px;}
.ws2_c00430{word-spacing:45.945946px;}
.ws5_c00430{word-spacing:67.352941px;}
.fc0_c00430{color:transparent;}
.fs0_c00430{font-size:60.000000px;}
.y0_c00430{bottom:0.000000px;}
.y2d_c00430{bottom:157.350000px;}
.y2c_c00430{bottom:173.550000px;}
.y2b_c00430{bottom:201.150000px;}
.y2a_c00430{bottom:220.950000px;}
.y29_c00430{bottom:241.050000px;}
.y28_c00430{bottom:261.150000px;}
.y27_c00430{bottom:281.250000px;}
.y26_c00430{bottom:301.050000px;}
.y25_c00430{bottom:320.850000px;}
.y24_c00430{bottom:340.950000px;}
.y23_c00430{bottom:361.050000px;}
.y22_c00430{bottom:380.550000px;}
.y21_c00430{bottom:400.350000px;}
.y20_c00430{bottom:420.150000px;}
.y1f_c00430{bottom:439.800000px;}
.y1e_c00430{bottom:459.600000px;}
.y1d_c00430{bottom:479.100000px;}
.y1c_c00430{bottom:498.900000px;}
.y1b_c00430{bottom:518.700000px;}
.y1a_c00430{bottom:538.500000px;}
.y19_c00430{bottom:558.900000px;}
.y18_c00430{bottom:579.000000px;}
.y17_c00430{bottom:598.500000px;}
.y16_c00430{bottom:618.600000px;}
.y15_c00430{bottom:638.100000px;}
.y14_c00430{bottom:657.900000px;}
.y13_c00430{bottom:678.000000px;}
.y12_c00430{bottom:697.800000px;}
.y11_c00430{bottom:717.900000px;}
.y10_c00430{bottom:737.700000px;}
.yf_c00430{bottom:757.800000px;}
.ye_c00430{bottom:777.900000px;}
.yd_c00430{bottom:797.700000px;}
.yc_c00430{bottom:817.200000px;}
.yb_c00430{bottom:837.300000px;}
.ya_c00430{bottom:857.100000px;}
.y9_c00430{bottom:877.650000px;}
.y8_c00430{bottom:897.450000px;}
.y7_c00430{bottom:917.250000px;}
.y6_c00430{bottom:937.050000px;}
.y5_c00430{bottom:957.000000px;}
.y4_c00430{bottom:976.800000px;}
.y3_c00430{bottom:996.900000px;}
.y2_c00430{bottom:1016.700000px;}
.y1_c00430{bottom:1054.800000px;}
.h2_c00430{height:60.000000px;}
.h1_c00430{height:1166.250000px;}
.h0_c00430{height:1166.400056px;}
.w0_c00430{width:920.879975px;}
.w1_c00430{width:921.000000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:137.100000px;}
.x99_c00430{left:138.150000px;}
.xce_c00430{left:139.350000px;}
.xf8_c00430{left:140.850000px;}
.x8d_c00430{left:150.150000px;}
.xf9_c00430{left:153.150000px;}
.xdf_c00430{left:156.600000px;}
.x33_c00430{left:167.700000px;}
.x2d_c00430{left:170.550000px;}
.x107_c00430{left:172.500000px;}
.xa4_c00430{left:176.250000px;}
.x110_c00430{left:178.500000px;}
.x63_c00430{left:180.300000px;}
.x7e_c00430{left:181.950000px;}
.x114_c00430{left:183.900000px;}
.x8e_c00430{left:187.200000px;}
.xa5_c00430{left:188.550000px;}
.x56_c00430{left:190.050000px;}
.x1f_c00430{left:192.150000px;}
.x71_c00430{left:193.500000px;}
.xfa_c00430{left:195.600000px;}
.x34_c00430{left:197.550000px;}
.xfd_c00430{left:201.000000px;}
.x3_c00430{left:203.700000px;}
.xd7_c00430{left:204.900000px;}
.x108_c00430{left:205.950000px;}
.x7f_c00430{left:207.450000px;}
.x40_c00430{left:208.650000px;}
.x9a_c00430{left:210.450000px;}
.x10e_c00430{left:212.250000px;}
.x64_c00430{left:213.450000px;}
.x4d_c00430{left:216.000000px;}
.x10_c00430{left:221.400000px;}
.xa6_c00430{left:225.600000px;}
.x20_c00430{left:227.850000px;}
.x8f_c00430{left:229.650000px;}
.x41_c00430{left:232.800000px;}
.x72_c00430{left:233.850000px;}
.x81_c00430{left:236.400000px;}
.xb5_c00430{left:239.100000px;}
.x4_c00430{left:241.500000px;}
.xac_c00430{left:244.950000px;}
.x130_c00430{left:246.600000px;}
.xe7_c00430{left:248.400000px;}
.x104_c00430{left:249.900000px;}
.xc9_c00430{left:250.950000px;}
.x11_c00430{left:253.050000px;}
.x21_c00430{left:255.900000px;}
.x4e_c00430{left:257.100000px;}
.xb6_c00430{left:258.600000px;}
.xbd_c00430{left:260.700000px;}
.x35_c00430{left:264.150000px;}
.xf2_c00430{left:267.150000px;}
.x9b_c00430{left:268.800000px;}
.x5_c00430{left:270.600000px;}
.x2e_c00430{left:272.100000px;}
.xca_c00430{left:275.400000px;}
.xe8_c00430{left:276.450000px;}
.x90_c00430{left:278.250000px;}
.x65_c00430{left:279.750000px;}
.x131_c00430{left:280.800000px;}
.x80_c00430{left:285.150000px;}
.xb7_c00430{left:286.650000px;}
.x42_c00430{left:289.350000px;}
.xc3_c00430{left:291.000000px;}
.xad_c00430{left:292.800000px;}
.x36_c00430{left:294.000000px;}
.x82_c00430{left:295.050000px;}
.x9c_c00430{left:297.300000px;}
.x73_c00430{left:301.200000px;}
.x57_c00430{left:302.250000px;}
.x4f_c00430{left:303.900000px;}
.xfe_c00430{left:309.000000px;}
.x91_c00430{left:311.400000px;}
.x2f_c00430{left:312.750000px;}
.x22_c00430{left:314.250000px;}
.x12_c00430{left:318.600000px;}
.x6_c00430{left:320.250000px;}
.xb8_c00430{left:321.600000px;}
.x115_c00430{left:325.050000px;}
.xe9_c00430{left:327.150000px;}
.x83_c00430{left:328.950000px;}
.x37_c00430{left:330.000000px;}
.x43_c00430{left:331.050000px;}
.x66_c00430{left:332.400000px;}
.xcb_c00430{left:334.500000px;}
.x12c_c00430{left:335.550000px;}
.x9d_c00430{left:336.600000px;}
.x74_c00430{left:339.750000px;}
.xe0_c00430{left:341.850000px;}
.x135_c00430{left:343.050000px;}
.xdb_c00430{left:346.650000px;}
.xea_c00430{left:347.700000px;}
.x44_c00430{left:349.350000px;}
.x30_c00430{left:350.550000px;}
.x7_c00430{left:352.650000px;}
.x12d_c00430{left:355.050000px;}
.x137_c00430{left:357.900000px;}
.x13_c00430{left:358.950000px;}
.x50_c00430{left:360.150000px;}
.xae_c00430{left:365.100000px;}
.x58_c00430{left:367.350000px;}
.x31_c00430{left:368.850000px;}
.x23_c00430{left:370.050000px;}
.x105_c00430{left:373.800000px;}
.x11a_c00430{left:375.450000px;}
.x67_c00430{left:376.650000px;}
.xa7_c00430{left:378.300000px;}
.xb9_c00430{left:379.500000px;}
.x116_c00430{left:380.850000px;}
.x24_c00430{left:382.350000px;}
.xbe_c00430{left:383.850000px;}
.x59_c00430{left:385.050000px;}
.x14_c00430{left:387.000000px;}
.xcf_c00430{left:388.350000px;}
.x92_c00430{left:390.300000px;}
.xff_c00430{left:391.500000px;}
.xe1_c00430{left:394.050000px;}
.x106_c00430{left:395.400000px;}
.x51_c00430{left:397.200000px;}
.x32_c00430{left:398.400000px;}
.x132_c00430{left:399.600000px;}
.x38_c00430{left:400.950000px;}
.x68_c00430{left:402.600000px;}
.x128_c00430{left:405.000000px;}
.x11b_c00430{left:407.100000px;}
.x75_c00430{left:408.450000px;}
.x100_c00430{left:409.500000px;}
.x5a_c00430{left:410.550000px;}
.x84_c00430{left:412.800000px;}
.xd0_c00430{left:414.300000px;}
.x25_c00430{left:416.250000px;}
.x39_c00430{left:417.450000px;}
.xaf_c00430{left:420.900000px;}
.x93_c00430{left:422.700000px;}
.x11c_c00430{left:424.050000px;}
.x15_c00430{left:425.550000px;}
.x121_c00430{left:426.600000px;}
.x69_c00430{left:429.300000px;}
.xed_c00430{left:430.650000px;}
.xa8_c00430{left:432.000000px;}
.x2_c00430{left:433.800000px;}
.x26_c00430{left:436.800000px;}
.x85_c00430{left:438.000000px;}
.x13a_c00430{left:439.350000px;}
.x76_c00430{left:443.700000px;}
.x111_c00430{left:444.900000px;}
.x45_c00430{left:446.250000px;}
.x94_c00430{left:448.200000px;}
.x3a_c00430{left:450.150000px;}
.xf3_c00430{left:452.550000px;}
.x109_c00430{left:453.600000px;}
.xeb_c00430{left:455.700000px;}
.x16_c00430{left:456.900000px;}
.x133_c00430{left:459.000000px;}
.xa9_c00430{left:460.050000px;}
.xb0_c00430{left:461.550000px;}
.x5b_c00430{left:462.750000px;}
.x138_c00430{left:465.300000px;}
.xe2_c00430{left:466.500000px;}
.x46_c00430{left:471.750000px;}
.x9e_c00430{left:473.850000px;}
.x86_c00430{left:475.500000px;}
.x8_c00430{left:477.900000px;}
.x17_c00430{left:479.550000px;}
.x12e_c00430{left:483.000000px;}
.x77_c00430{left:484.350000px;}
.xaa_c00430{left:486.300000px;}
.x10a_c00430{left:488.850000px;}
.xe3_c00430{left:491.400000px;}
.x117_c00430{left:492.750000px;}
.xd1_c00430{left:494.250000px;}
.xbf_c00430{left:495.450000px;}
.x87_c00430{left:496.800000px;}
.x27_c00430{left:498.300000px;}
.xdc_c00430{left:499.650000px;}
.x6a_c00430{left:502.050000px;}
.x78_c00430{left:504.450000px;}
.xee_c00430{left:507.750000px;}
.x10b_c00430{left:509.400000px;}
.x9_c00430{left:511.350000px;}
.x123_c00430{left:512.550000px;}
.x52_c00430{left:514.500000px;}
.x9f_c00430{left:516.000000px;}
.x136_c00430{left:518.850000px;}
.x47_c00430{left:520.050000px;}
.x18_c00430{left:523.050000px;}
.xc4_c00430{left:525.600000px;}
.x6b_c00430{left:527.250000px;}
.xf4_c00430{left:532.050000px;}
.x5c_c00430{left:533.700000px;}
.xd2_c00430{left:535.650000px;}
.x101_c00430{left:536.700000px;}
.x95_c00430{left:542.550000px;}
.x118_c00430{left:547.800000px;}
.x48_c00430{left:548.850000px;}
.x5d_c00430{left:551.400000px;}
.x19_c00430{left:553.350000px;}
.xa_c00430{left:557.100000px;}
.x3b_c00430{left:558.150000px;}
.xc5_c00430{left:560.550000px;}
.x6c_c00430{left:562.500000px;}
.x139_c00430{left:564.300000px;}
.xd3_c00430{left:566.250000px;}
.x1a_c00430{left:568.050000px;}
.xf5_c00430{left:569.550000px;}
.x3c_c00430{left:573.300000px;}
.xa0_c00430{left:574.650000px;}
.x124_c00430{left:576.600000px;}
.x79_c00430{left:577.650000px;}
.x102_c00430{left:579.900000px;}
.xd8_c00430{left:582.300000px;}
.x96_c00430{left:583.950000px;}
.x49_c00430{left:586.650000px;}
.xcc_c00430{left:587.850000px;}
.x6d_c00430{left:591.000000px;}
.x88_c00430{left:592.500000px;}
.x5e_c00430{left:594.600000px;}
.x122_c00430{left:595.800000px;}
.xab_c00430{left:599.250000px;}
.xb_c00430{left:601.350000px;}
.xd4_c00430{left:604.050000px;}
.x11e_c00430{left:606.450000px;}
.xb1_c00430{left:608.400000px;}
.x112_c00430{left:610.200000px;}
.x28_c00430{left:611.700000px;}
.x97_c00430{left:614.250000px;}
.xc6_c00430{left:616.650000px;}
.x129_c00430{left:620.250000px;}
.xec_c00430{left:621.300000px;}
.x125_c00430{left:622.650000px;}
.x53_c00430{left:626.100000px;}
.x1b_c00430{left:627.450000px;}
.xc_c00430{left:629.100000px;}
.x89_c00430{left:630.300000px;}
.xba_c00430{left:633.300000px;}
.xc0_c00430{left:636.000000px;}
.xc7_c00430{left:639.750000px;}
.x5f_c00430{left:641.400000px;}
.xa1_c00430{left:643.350000px;}
.xd5_c00430{left:645.450000px;}
.xfb_c00430{left:647.400000px;}
.x7a_c00430{left:648.900000px;}
.x29_c00430{left:651.600000px;}
.x113_c00430{left:653.400000px;}
.xbb_c00430{left:654.600000px;}
.x8a_c00430{left:656.250000px;}
.xc1_c00430{left:658.350000px;}
.x119_c00430{left:661.200000px;}
.x54_c00430{left:662.400000px;}
.xf6_c00430{left:664.500000px;}
.xdd_c00430{left:665.850000px;}
.x60_c00430{left:666.900000px;}
.x2a_c00430{left:669.900000px;}
.xb2_c00430{left:674.250000px;}
.x3d_c00430{left:676.650000px;}
.x7b_c00430{left:678.450000px;}
.x126_c00430{left:680.550000px;}
.xd_c00430{left:683.100000px;}
.x1c_c00430{left:684.750000px;}
.xe4_c00430{left:687.600000px;}
.x6e_c00430{left:691.050000px;}
.x134_c00430{left:692.250000px;}
.xa2_c00430{left:694.050000px;}
.xe5_c00430{left:699.900000px;}
.xc2_c00430{left:701.850000px;}
.xc8_c00430{left:703.500000px;}
.xd9_c00430{left:704.700000px;}
.xef_c00430{left:706.200000px;}
.xbc_c00430{left:709.650000px;}
.x2b_c00430{left:712.350000px;}
.x4a_c00430{left:714.150000px;}
.x61_c00430{left:716.250000px;}
.x7c_c00430{left:718.350000px;}
.x3e_c00430{left:720.150000px;}
.xa3_c00430{left:721.350000px;}
.xb3_c00430{left:724.650000px;}
.xf0_c00430{left:726.000000px;}
.xe6_c00430{left:727.650000px;}
.x11d_c00430{left:729.000000px;}
.x6f_c00430{left:735.000000px;}
.xcd_c00430{left:737.250000px;}
.xf7_c00430{left:738.750000px;}
.xda_c00430{left:739.950000px;}
.x12a_c00430{left:741.150000px;}
.xde_c00430{left:742.200000px;}
.x8b_c00430{left:743.700000px;}
.x10c_c00430{left:744.750000px;}
.x1d_c00430{left:746.250000px;}
.x11f_c00430{left:747.300000px;}
.x62_c00430{left:748.350000px;}
.x55_c00430{left:749.550000px;}
.x3f_c00430{left:751.500000px;}
.x103_c00430{left:752.850000px;}
.xf1_c00430{left:755.550000px;}
.xd6_c00430{left:757.050000px;}
.xe_c00430{left:759.000000px;}
.x70_c00430{left:760.500000px;}
.x4b_c00430{left:762.000000px;}
.x10f_c00430{left:766.800000px;}
.x8c_c00430{left:767.850000px;}
.x127_c00430{left:773.400000px;}
.x10d_c00430{left:775.650000px;}
.x4c_c00430{left:777.150000px;}
.x1e_c00430{left:779.700000px;}
.x12b_c00430{left:780.750000px;}
.xf_c00430{left:782.400000px;}
.xb4_c00430{left:784.800000px;}
.xfc_c00430{left:786.750000px;}
.x7d_c00430{left:788.850000px;}
.x2c_c00430{left:791.250000px;}
.x120_c00430{left:794.400000px;}
.x12f_c00430{left:795.600000px;}
.x98_c00430{left:800.850000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws6_c00430{word-spacing:-7.708333pt;}
.ws3_c00430{word-spacing:-7.251462pt;}
.ws4_c00430{word-spacing:-4.691358pt;}
.ws0_c00430{word-spacing:-2.258065pt;}
.ws8_c00430{word-spacing:0.000000pt;}
.ws7_c00430{word-spacing:4.804805pt;}
.ws1_c00430{word-spacing:7.581699pt;}
.ws2_c00430{word-spacing:40.840841pt;}
.ws5_c00430{word-spacing:59.869281pt;}
.fs0_c00430{font-size:53.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y2d_c00430{bottom:139.866667pt;}
.y2c_c00430{bottom:154.266667pt;}
.y2b_c00430{bottom:178.800000pt;}
.y2a_c00430{bottom:196.400000pt;}
.y29_c00430{bottom:214.266667pt;}
.y28_c00430{bottom:232.133333pt;}
.y27_c00430{bottom:250.000000pt;}
.y26_c00430{bottom:267.600000pt;}
.y25_c00430{bottom:285.200000pt;}
.y24_c00430{bottom:303.066667pt;}
.y23_c00430{bottom:320.933333pt;}
.y22_c00430{bottom:338.266667pt;}
.y21_c00430{bottom:355.866667pt;}
.y20_c00430{bottom:373.466667pt;}
.y1f_c00430{bottom:390.933333pt;}
.y1e_c00430{bottom:408.533333pt;}
.y1d_c00430{bottom:425.866667pt;}
.y1c_c00430{bottom:443.466667pt;}
.y1b_c00430{bottom:461.066667pt;}
.y1a_c00430{bottom:478.666667pt;}
.y19_c00430{bottom:496.800000pt;}
.y18_c00430{bottom:514.666667pt;}
.y17_c00430{bottom:532.000000pt;}
.y16_c00430{bottom:549.866667pt;}
.y15_c00430{bottom:567.200000pt;}
.y14_c00430{bottom:584.800000pt;}
.y13_c00430{bottom:602.666667pt;}
.y12_c00430{bottom:620.266667pt;}
.y11_c00430{bottom:638.133333pt;}
.y10_c00430{bottom:655.733333pt;}
.yf_c00430{bottom:673.600000pt;}
.ye_c00430{bottom:691.466667pt;}
.yd_c00430{bottom:709.066667pt;}
.yc_c00430{bottom:726.400000pt;}
.yb_c00430{bottom:744.266667pt;}
.ya_c00430{bottom:761.866667pt;}
.y9_c00430{bottom:780.133333pt;}
.y8_c00430{bottom:797.733333pt;}
.y7_c00430{bottom:815.333333pt;}
.y6_c00430{bottom:832.933333pt;}
.y5_c00430{bottom:850.666667pt;}
.y4_c00430{bottom:868.266667pt;}
.y3_c00430{bottom:886.133333pt;}
.y2_c00430{bottom:903.733333pt;}
.y1_c00430{bottom:937.600000pt;}
.h2_c00430{height:53.333333pt;}
.h1_c00430{height:1036.666667pt;}
.h0_c00430{height:1036.800049pt;}
.w0_c00430{width:818.559977pt;}
.w1_c00430{width:818.666667pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:121.866667pt;}
.x99_c00430{left:122.800000pt;}
.xce_c00430{left:123.866667pt;}
.xf8_c00430{left:125.200000pt;}
.x8d_c00430{left:133.466667pt;}
.xf9_c00430{left:136.133333pt;}
.xdf_c00430{left:139.200000pt;}
.x33_c00430{left:149.066667pt;}
.x2d_c00430{left:151.600000pt;}
.x107_c00430{left:153.333333pt;}
.xa4_c00430{left:156.666667pt;}
.x110_c00430{left:158.666667pt;}
.x63_c00430{left:160.266667pt;}
.x7e_c00430{left:161.733333pt;}
.x114_c00430{left:163.466667pt;}
.x8e_c00430{left:166.400000pt;}
.xa5_c00430{left:167.600000pt;}
.x56_c00430{left:168.933333pt;}
.x1f_c00430{left:170.800000pt;}
.x71_c00430{left:172.000000pt;}
.xfa_c00430{left:173.866667pt;}
.x34_c00430{left:175.600000pt;}
.xfd_c00430{left:178.666667pt;}
.x3_c00430{left:181.066667pt;}
.xd7_c00430{left:182.133333pt;}
.x108_c00430{left:183.066667pt;}
.x7f_c00430{left:184.400000pt;}
.x40_c00430{left:185.466667pt;}
.x9a_c00430{left:187.066667pt;}
.x10e_c00430{left:188.666667pt;}
.x64_c00430{left:189.733333pt;}
.x4d_c00430{left:192.000000pt;}
.x10_c00430{left:196.800000pt;}
.xa6_c00430{left:200.533333pt;}
.x20_c00430{left:202.533333pt;}
.x8f_c00430{left:204.133333pt;}
.x41_c00430{left:206.933333pt;}
.x72_c00430{left:207.866667pt;}
.x81_c00430{left:210.133333pt;}
.xb5_c00430{left:212.533333pt;}
.x4_c00430{left:214.666667pt;}
.xac_c00430{left:217.733333pt;}
.x130_c00430{left:219.200000pt;}
.xe7_c00430{left:220.800000pt;}
.x104_c00430{left:222.133333pt;}
.xc9_c00430{left:223.066667pt;}
.x11_c00430{left:224.933333pt;}
.x21_c00430{left:227.466667pt;}
.x4e_c00430{left:228.533333pt;}
.xb6_c00430{left:229.866667pt;}
.xbd_c00430{left:231.733333pt;}
.x35_c00430{left:234.800000pt;}
.xf2_c00430{left:237.466667pt;}
.x9b_c00430{left:238.933333pt;}
.x5_c00430{left:240.533333pt;}
.x2e_c00430{left:241.866667pt;}
.xca_c00430{left:244.800000pt;}
.xe8_c00430{left:245.733333pt;}
.x90_c00430{left:247.333333pt;}
.x65_c00430{left:248.666667pt;}
.x131_c00430{left:249.600000pt;}
.x80_c00430{left:253.466667pt;}
.xb7_c00430{left:254.800000pt;}
.x42_c00430{left:257.200000pt;}
.xc3_c00430{left:258.666667pt;}
.xad_c00430{left:260.266667pt;}
.x36_c00430{left:261.333333pt;}
.x82_c00430{left:262.266667pt;}
.x9c_c00430{left:264.266667pt;}
.x73_c00430{left:267.733333pt;}
.x57_c00430{left:268.666667pt;}
.x4f_c00430{left:270.133333pt;}
.xfe_c00430{left:274.666667pt;}
.x91_c00430{left:276.800000pt;}
.x2f_c00430{left:278.000000pt;}
.x22_c00430{left:279.333333pt;}
.x12_c00430{left:283.200000pt;}
.x6_c00430{left:284.666667pt;}
.xb8_c00430{left:285.866667pt;}
.x115_c00430{left:288.933333pt;}
.xe9_c00430{left:290.800000pt;}
.x83_c00430{left:292.400000pt;}
.x37_c00430{left:293.333333pt;}
.x43_c00430{left:294.266667pt;}
.x66_c00430{left:295.466667pt;}
.xcb_c00430{left:297.333333pt;}
.x12c_c00430{left:298.266667pt;}
.x9d_c00430{left:299.200000pt;}
.x74_c00430{left:302.000000pt;}
.xe0_c00430{left:303.866667pt;}
.x135_c00430{left:304.933333pt;}
.xdb_c00430{left:308.133333pt;}
.xea_c00430{left:309.066667pt;}
.x44_c00430{left:310.533333pt;}
.x30_c00430{left:311.600000pt;}
.x7_c00430{left:313.466667pt;}
.x12d_c00430{left:315.600000pt;}
.x137_c00430{left:318.133333pt;}
.x13_c00430{left:319.066667pt;}
.x50_c00430{left:320.133333pt;}
.xae_c00430{left:324.533333pt;}
.x58_c00430{left:326.533333pt;}
.x31_c00430{left:327.866667pt;}
.x23_c00430{left:328.933333pt;}
.x105_c00430{left:332.266667pt;}
.x11a_c00430{left:333.733333pt;}
.x67_c00430{left:334.800000pt;}
.xa7_c00430{left:336.266667pt;}
.xb9_c00430{left:337.333333pt;}
.x116_c00430{left:338.533333pt;}
.x24_c00430{left:339.866667pt;}
.xbe_c00430{left:341.200000pt;}
.x59_c00430{left:342.266667pt;}
.x14_c00430{left:344.000000pt;}
.xcf_c00430{left:345.200000pt;}
.x92_c00430{left:346.933333pt;}
.xff_c00430{left:348.000000pt;}
.xe1_c00430{left:350.266667pt;}
.x106_c00430{left:351.466667pt;}
.x51_c00430{left:353.066667pt;}
.x32_c00430{left:354.133333pt;}
.x132_c00430{left:355.200000pt;}
.x38_c00430{left:356.400000pt;}
.x68_c00430{left:357.866667pt;}
.x128_c00430{left:360.000000pt;}
.x11b_c00430{left:361.866667pt;}
.x75_c00430{left:363.066667pt;}
.x100_c00430{left:364.000000pt;}
.x5a_c00430{left:364.933333pt;}
.x84_c00430{left:366.933333pt;}
.xd0_c00430{left:368.266667pt;}
.x25_c00430{left:370.000000pt;}
.x39_c00430{left:371.066667pt;}
.xaf_c00430{left:374.133333pt;}
.x93_c00430{left:375.733333pt;}
.x11c_c00430{left:376.933333pt;}
.x15_c00430{left:378.266667pt;}
.x121_c00430{left:379.200000pt;}
.x69_c00430{left:381.600000pt;}
.xed_c00430{left:382.800000pt;}
.xa8_c00430{left:384.000000pt;}
.x2_c00430{left:385.600000pt;}
.x26_c00430{left:388.266667pt;}
.x85_c00430{left:389.333333pt;}
.x13a_c00430{left:390.533333pt;}
.x76_c00430{left:394.400000pt;}
.x111_c00430{left:395.466667pt;}
.x45_c00430{left:396.666667pt;}
.x94_c00430{left:398.400000pt;}
.x3a_c00430{left:400.133333pt;}
.xf3_c00430{left:402.266667pt;}
.x109_c00430{left:403.200000pt;}
.xeb_c00430{left:405.066667pt;}
.x16_c00430{left:406.133333pt;}
.x133_c00430{left:408.000000pt;}
.xa9_c00430{left:408.933333pt;}
.xb0_c00430{left:410.266667pt;}
.x5b_c00430{left:411.333333pt;}
.x138_c00430{left:413.600000pt;}
.xe2_c00430{left:414.666667pt;}
.x46_c00430{left:419.333333pt;}
.x9e_c00430{left:421.200000pt;}
.x86_c00430{left:422.666667pt;}
.x8_c00430{left:424.800000pt;}
.x17_c00430{left:426.266667pt;}
.x12e_c00430{left:429.333333pt;}
.x77_c00430{left:430.533333pt;}
.xaa_c00430{left:432.266667pt;}
.x10a_c00430{left:434.533333pt;}
.xe3_c00430{left:436.800000pt;}
.x117_c00430{left:438.000000pt;}
.xd1_c00430{left:439.333333pt;}
.xbf_c00430{left:440.400000pt;}
.x87_c00430{left:441.600000pt;}
.x27_c00430{left:442.933333pt;}
.xdc_c00430{left:444.133333pt;}
.x6a_c00430{left:446.266667pt;}
.x78_c00430{left:448.400000pt;}
.xee_c00430{left:451.333333pt;}
.x10b_c00430{left:452.800000pt;}
.x9_c00430{left:454.533333pt;}
.x123_c00430{left:455.600000pt;}
.x52_c00430{left:457.333333pt;}
.x9f_c00430{left:458.666667pt;}
.x136_c00430{left:461.200000pt;}
.x47_c00430{left:462.266667pt;}
.x18_c00430{left:464.933333pt;}
.xc4_c00430{left:467.200000pt;}
.x6b_c00430{left:468.666667pt;}
.xf4_c00430{left:472.933333pt;}
.x5c_c00430{left:474.400000pt;}
.xd2_c00430{left:476.133333pt;}
.x101_c00430{left:477.066667pt;}
.x95_c00430{left:482.266667pt;}
.x118_c00430{left:486.933333pt;}
.x48_c00430{left:487.866667pt;}
.x5d_c00430{left:490.133333pt;}
.x19_c00430{left:491.866667pt;}
.xa_c00430{left:495.200000pt;}
.x3b_c00430{left:496.133333pt;}
.xc5_c00430{left:498.266667pt;}
.x6c_c00430{left:500.000000pt;}
.x139_c00430{left:501.600000pt;}
.xd3_c00430{left:503.333333pt;}
.x1a_c00430{left:504.933333pt;}
.xf5_c00430{left:506.266667pt;}
.x3c_c00430{left:509.600000pt;}
.xa0_c00430{left:510.800000pt;}
.x124_c00430{left:512.533333pt;}
.x79_c00430{left:513.466667pt;}
.x102_c00430{left:515.466667pt;}
.xd8_c00430{left:517.600000pt;}
.x96_c00430{left:519.066667pt;}
.x49_c00430{left:521.466667pt;}
.xcc_c00430{left:522.533333pt;}
.x6d_c00430{left:525.333333pt;}
.x88_c00430{left:526.666667pt;}
.x5e_c00430{left:528.533333pt;}
.x122_c00430{left:529.600000pt;}
.xab_c00430{left:532.666667pt;}
.xb_c00430{left:534.533333pt;}
.xd4_c00430{left:536.933333pt;}
.x11e_c00430{left:539.066667pt;}
.xb1_c00430{left:540.800000pt;}
.x112_c00430{left:542.400000pt;}
.x28_c00430{left:543.733333pt;}
.x97_c00430{left:546.000000pt;}
.xc6_c00430{left:548.133333pt;}
.x129_c00430{left:551.333333pt;}
.xec_c00430{left:552.266667pt;}
.x125_c00430{left:553.466667pt;}
.x53_c00430{left:556.533333pt;}
.x1b_c00430{left:557.733333pt;}
.xc_c00430{left:559.200000pt;}
.x89_c00430{left:560.266667pt;}
.xba_c00430{left:562.933333pt;}
.xc0_c00430{left:565.333333pt;}
.xc7_c00430{left:568.666667pt;}
.x5f_c00430{left:570.133333pt;}
.xa1_c00430{left:571.866667pt;}
.xd5_c00430{left:573.733333pt;}
.xfb_c00430{left:575.466667pt;}
.x7a_c00430{left:576.800000pt;}
.x29_c00430{left:579.200000pt;}
.x113_c00430{left:580.800000pt;}
.xbb_c00430{left:581.866667pt;}
.x8a_c00430{left:583.333333pt;}
.xc1_c00430{left:585.200000pt;}
.x119_c00430{left:587.733333pt;}
.x54_c00430{left:588.800000pt;}
.xf6_c00430{left:590.666667pt;}
.xdd_c00430{left:591.866667pt;}
.x60_c00430{left:592.800000pt;}
.x2a_c00430{left:595.466667pt;}
.xb2_c00430{left:599.333333pt;}
.x3d_c00430{left:601.466667pt;}
.x7b_c00430{left:603.066667pt;}
.x126_c00430{left:604.933333pt;}
.xd_c00430{left:607.200000pt;}
.x1c_c00430{left:608.666667pt;}
.xe4_c00430{left:611.200000pt;}
.x6e_c00430{left:614.266667pt;}
.x134_c00430{left:615.333333pt;}
.xa2_c00430{left:616.933333pt;}
.xe5_c00430{left:622.133333pt;}
.xc2_c00430{left:623.866667pt;}
.xc8_c00430{left:625.333333pt;}
.xd9_c00430{left:626.400000pt;}
.xef_c00430{left:627.733333pt;}
.xbc_c00430{left:630.800000pt;}
.x2b_c00430{left:633.200000pt;}
.x4a_c00430{left:634.800000pt;}
.x61_c00430{left:636.666667pt;}
.x7c_c00430{left:638.533333pt;}
.x3e_c00430{left:640.133333pt;}
.xa3_c00430{left:641.200000pt;}
.xb3_c00430{left:644.133333pt;}
.xf0_c00430{left:645.333333pt;}
.xe6_c00430{left:646.800000pt;}
.x11d_c00430{left:648.000000pt;}
.x6f_c00430{left:653.333333pt;}
.xcd_c00430{left:655.333333pt;}
.xf7_c00430{left:656.666667pt;}
.xda_c00430{left:657.733333pt;}
.x12a_c00430{left:658.800000pt;}
.xde_c00430{left:659.733333pt;}
.x8b_c00430{left:661.066667pt;}
.x10c_c00430{left:662.000000pt;}
.x1d_c00430{left:663.333333pt;}
.x11f_c00430{left:664.266667pt;}
.x62_c00430{left:665.200000pt;}
.x55_c00430{left:666.266667pt;}
.x3f_c00430{left:668.000000pt;}
.x103_c00430{left:669.200000pt;}
.xf1_c00430{left:671.600000pt;}
.xd6_c00430{left:672.933333pt;}
.xe_c00430{left:674.666667pt;}
.x70_c00430{left:676.000000pt;}
.x4b_c00430{left:677.333333pt;}
.x10f_c00430{left:681.600000pt;}
.x8c_c00430{left:682.533333pt;}
.x127_c00430{left:687.466667pt;}
.x10d_c00430{left:689.466667pt;}
.x4c_c00430{left:690.800000pt;}
.x1e_c00430{left:693.066667pt;}
.x12b_c00430{left:694.000000pt;}
.xf_c00430{left:695.466667pt;}
.xb4_c00430{left:697.600000pt;}
.xfc_c00430{left:699.333333pt;}
.x7d_c00430{left:701.200000pt;}
.x2c_c00430{left:703.333333pt;}
.x120_c00430{left:706.133333pt;}
.x12f_c00430{left:707.200000pt;}
.x98_c00430{left:711.866667pt;}
}





/* 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_c00431 {
    display:none;
  }
  .loading-indicator_c00431.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00431 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_c00431 { 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_c00431" -> "#page-container .classname_c00431")
 */
.pf_c00431 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00431 { /* 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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00431 { /* 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_c00431 { /* 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_c00431 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00431 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00431 {overflow:visible;}
  }
}
.c_c00431 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00431 { /* 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_c00431:after { /* webkit #35443 */
  content: '';
}
.t_c00431:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00431 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 */
}
.__c00431 { /* 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_c00431 { /* info for Javascript */
  display:none;
}
.l_c00431 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00431 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00431 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00431: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_c00431 {
    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_c00431.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00431.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_c00431 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00431{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00431;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.000000;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;}
.ma4_c00431{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00431{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m37_c00431{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00431{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m58_c00431{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m75_c00431{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m28_c00431{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m36_c00431{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m29_c00431{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m60_c00431{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00431{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m85_c00431{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m76_c00431{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00431{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m87_c00431{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m55_c00431{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m59_c00431{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m21_c00431{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m45_c00431{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m24_c00431{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m89_c00431{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00431{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00431{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00431{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m92_c00431{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m82_c00431{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00431{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m51_c00431{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m66_c00431{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m33_c00431{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m71_c00431{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00431{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m16_c00431{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m74_c00431{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00431{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m79_c00431{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00431{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00431{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m53_c00431{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00431{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00431{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m41_c00431{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m96_c00431{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mc_c00431{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00431{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m61_c00431{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00431{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m42_c00431{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m25_c00431{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mf_c00431{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m64_c00431{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00431{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00431{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m11_c00431{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00431{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m30_c00431{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00431{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m32_c00431{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma_c00431{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00431{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00431{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m9_c00431{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m84_c00431{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m94_c00431{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00431{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00431{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00431{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00431{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m38_c00431{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m99_c00431{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m26_c00431{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00431{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m46_c00431{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m39_c00431{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00431{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00431{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m88_c00431{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00431{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m67_c00431{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00431{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m47_c00431{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m78_c00431{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00431{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00431{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m93_c00431{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00431{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00431{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00431{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00431{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m19_c00431{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00431{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00431{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m10_c00431{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m22_c00431{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m65_c00431{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00431{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00431{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m62_c00431{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m95_c00431{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00431{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m40_c00431{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m70_c00431{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00431{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m31_c00431{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m52_c00431{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m50_c00431{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00431{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00431{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00431{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m17_c00431{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00431{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m48_c00431{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m98_c00431{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m12_c00431{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00431{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m80_c00431{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7_c00431{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m90_c00431{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m57_c00431{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m23_c00431{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00431{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00431{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m18_c00431{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00431{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m77_c00431{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00431{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);}
.m14_c00431{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00431{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m0_c00431{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15_c00431{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00431{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m73_c00431{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m13_c00431{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00431{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m49_c00431{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m35_c00431{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00431{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m34_c00431{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m27_c00431{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00431{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.md_c00431{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00431{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m54_c00431{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m81_c00431{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m97_c00431{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00431{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m20_c00431{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m86_c00431{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m83_c00431{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m63_c00431{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00431{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00431{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1_c00431{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00431{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m44_c00431{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00431{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m69_c00431{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00431{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m43_c00431{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00431{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m72_c00431{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00431{vertical-align:0.000000px;}
.ls0_c00431{letter-spacing:0.000000px;}
.sc__c00431{text-shadow:none;}
.sc0_c00431{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__c00431{-webkit-text-stroke:0px transparent;}
.sc0_c00431{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00431{word-spacing:-7.500000px;}
.ws9_c00431{word-spacing:-6.184211px;}
.ws8_c00431{word-spacing:-4.861111px;}
.wsb_c00431{word-spacing:0.000000px;}
.ws6_c00431{word-spacing:0.277778px;}
.ws3_c00431{word-spacing:2.073171px;}
.ws7_c00431{word-spacing:2.439024px;}
.wsa_c00431{word-spacing:3.076923px;}
.ws2_c00431{word-spacing:6.212121px;}
.ws4_c00431{word-spacing:7.051282px;}
.ws0_c00431{word-spacing:7.216981px;}
.ws5_c00431{word-spacing:10.000000px;}
.fc0_c00431{color:transparent;}
.fs0_c00431{font-size:60.000000px;}
.y0_c00431{bottom:0.000000px;}
.y2c_c00431{bottom:148.650000px;}
.y2b_c00431{bottom:184.800000px;}
.y2a_c00431{bottom:204.900000px;}
.y29_c00431{bottom:224.700000px;}
.y28_c00431{bottom:244.500000px;}
.y27_c00431{bottom:264.600000px;}
.y26_c00431{bottom:284.400000px;}
.y25_c00431{bottom:303.750000px;}
.y24_c00431{bottom:324.300000px;}
.y23_c00431{bottom:344.100000px;}
.y22_c00431{bottom:363.900000px;}
.y21_c00431{bottom:383.700000px;}
.y20_c00431{bottom:403.500000px;}
.y1f_c00431{bottom:423.450000px;}
.y1e_c00431{bottom:443.250000px;}
.y1d_c00431{bottom:463.350000px;}
.y1c_c00431{bottom:483.450000px;}
.y1b_c00431{bottom:503.250000px;}
.y1a_c00431{bottom:523.350000px;}
.y19_c00431{bottom:542.850000px;}
.y18_c00431{bottom:563.400000px;}
.y17_c00431{bottom:583.500000px;}
.y16_c00431{bottom:603.300000px;}
.y15_c00431{bottom:623.100000px;}
.y14_c00431{bottom:643.200000px;}
.y13_c00431{bottom:663.000000px;}
.y12_c00431{bottom:683.100000px;}
.y11_c00431{bottom:702.900000px;}
.y10_c00431{bottom:723.000000px;}
.yf_c00431{bottom:742.800000px;}
.ye_c00431{bottom:762.600000px;}
.yd_c00431{bottom:782.400000px;}
.yc_c00431{bottom:802.500000px;}
.yb_c00431{bottom:822.600000px;}
.ya_c00431{bottom:842.400000px;}
.y9_c00431{bottom:862.200000px;}
.y8_c00431{bottom:882.750000px;}
.y7_c00431{bottom:902.550000px;}
.y6_c00431{bottom:922.350000px;}
.y5_c00431{bottom:941.850000px;}
.y4_c00431{bottom:961.950000px;}
.y3_c00431{bottom:981.750000px;}
.y2_c00431{bottom:1001.850000px;}
.y1_c00431{bottom:1040.100000px;}
.h2_c00431{height:60.000000px;}
.h1_c00431{height:1166.250000px;}
.h0_c00431{height:1166.400056px;}
.w0_c00431{width:920.879975px;}
.w1_c00431{width:921.000000px;}
.x0_c00431{left:0.000000px;}
.x3_c00431{left:111.900000px;}
.xb7_c00431{left:113.700000px;}
.x119_c00431{left:127.950000px;}
.xff_c00431{left:133.500000px;}
.xe8_c00431{left:135.900000px;}
.x86_c00431{left:138.000000px;}
.x3d_c00431{left:139.950000px;}
.x8f_c00431{left:141.600000px;}
.x2d_c00431{left:143.250000px;}
.xd9_c00431{left:144.300000px;}
.xa5_c00431{left:145.950000px;}
.xb8_c00431{left:148.200000px;}
.x2c_c00431{left:150.300000px;}
.x4_c00431{left:154.800000px;}
.xc9_c00431{left:156.300000px;}
.x13_c00431{left:159.600000px;}
.x3e_c00431{left:165.150000px;}
.xb9_c00431{left:167.250000px;}
.x20_c00431{left:170.100000px;}
.x115_c00431{left:171.450000px;}
.xf5_c00431{left:173.400000px;}
.x129_c00431{left:174.600000px;}
.x2e_c00431{left:175.650000px;}
.xa6_c00431{left:176.850000px;}
.xda_c00431{left:178.500000px;}
.x14_c00431{left:180.450000px;}
.xbc_c00431{left:182.400000px;}
.x79_c00431{left:184.500000px;}
.xe3_c00431{left:185.700000px;}
.x56_c00431{left:187.050000px;}
.x132_c00431{left:189.000000px;}
.xad_c00431{left:193.200000px;}
.xfa_c00431{left:194.700000px;}
.x5_c00431{left:196.200000px;}
.x62_c00431{left:197.250000px;}
.xdb_c00431{left:198.600000px;}
.x90_c00431{left:203.100000px;}
.x107_c00431{left:204.150000px;}
.xf6_c00431{left:206.100000px;}
.x11e_c00431{left:208.050000px;}
.xbd_c00431{left:209.100000px;}
.xba_c00431{left:212.250000px;}
.x10f_c00431{left:213.750000px;}
.x2f_c00431{left:216.000000px;}
.x133_c00431{left:218.850000px;}
.x57_c00431{left:221.550000px;}
.x4e_c00431{left:222.750000px;}
.x7a_c00431{left:225.150000px;}
.xd3_c00431{left:226.500000px;}
.x6d_c00431{left:228.300000px;}
.x6_c00431{left:229.350000px;}
.x82_c00431{left:231.450000px;}
.xa7_c00431{left:233.400000px;}
.x87_c00431{left:235.950000px;}
.x11f_c00431{left:237.900000px;}
.xbe_c00431{left:243.000000px;}
.x91_c00431{left:246.600000px;}
.x15_c00431{left:247.800000px;}
.x21_c00431{left:249.000000px;}
.xfb_c00431{left:250.500000px;}
.xf1_c00431{left:252.750000px;}
.x9b_c00431{left:254.850000px;}
.x12a_c00431{left:255.900000px;}
.x6e_c00431{left:257.100000px;}
.x104_c00431{left:260.250000px;}
.x3f_c00431{left:261.300000px;}
.x58_c00431{left:262.650000px;}
.x63_c00431{left:264.150000px;}
.xdc_c00431{left:265.200000px;}
.x22_c00431{left:266.700000px;}
.xd4_c00431{left:268.200000px;}
.x9c_c00431{left:272.100000px;}
.xc2_c00431{left:274.050000px;}
.x120_c00431{left:275.100000px;}
.x4f_c00431{left:276.750000px;}
.x30_c00431{left:277.950000px;}
.x23_c00431{left:279.000000px;}
.x92_c00431{left:282.600000px;}
.x88_c00431{left:284.550000px;}
.xa8_c00431{left:285.900000px;}
.x7_c00431{left:289.050000px;}
.x6f_c00431{left:291.600000px;}
.x40_c00431{left:292.650000px;}
.x108_c00431{left:293.850000px;}
.xf2_c00431{left:294.900000px;}
.x7b_c00431{left:296.850000px;}
.x16_c00431{left:298.950000px;}
.x116_c00431{left:300.300000px;}
.x50_c00431{left:304.050000px;}
.xae_c00431{left:305.100000px;}
.x59_c00431{left:306.150000px;}
.xc3_c00431{left:309.000000px;}
.xe4_c00431{left:310.050000px;}
.x83_c00431{left:315.750000px;}
.x8_c00431{left:317.850000px;}
.xca_c00431{left:319.650000px;}
.x64_c00431{left:321.450000px;}
.x11a_c00431{left:322.950000px;}
.x31_c00431{left:324.000000px;}
.x17_c00431{left:325.650000px;}
.x100_c00431{left:328.350000px;}
.x24_c00431{left:331.950000px;}
.x125_c00431{left:333.000000px;}
.x93_c00431{left:334.800000px;}
.x41_c00431{left:335.850000px;}
.x12f_c00431{left:341.250000px;}
.xdd_c00431{left:342.600000px;}
.x5a_c00431{left:343.650000px;}
.xe9_c00431{left:345.750000px;}
.x101_c00431{left:347.400000px;}
.x109_c00431{left:350.400000px;}
.xaf_c00431{left:353.700000px;}
.x12b_c00431{left:357.450000px;}
.x32_c00431{left:360.000000px;}
.x70_c00431{left:361.050000px;}
.x9d_c00431{left:362.100000px;}
.x65_c00431{left:363.450000px;}
.x42_c00431{left:364.650000px;}
.xcb_c00431{left:368.550000px;}
.x89_c00431{left:370.650000px;}
.x10a_c00431{left:373.500000px;}
.x130_c00431{left:375.150000px;}
.xea_c00431{left:378.450000px;}
.x9_c00431{left:379.800000px;}
.x25_c00431{left:382.050000px;}
.x9e_c00431{left:383.700000px;}
.x51_c00431{left:385.800000px;}
.xe5_c00431{left:388.200000px;}
.x43_c00431{left:389.850000px;}
.x66_c00431{left:391.950000px;}
.x126_c00431{left:394.500000px;}
.xb0_c00431{left:396.150000px;}
.x110_c00431{left:398.100000px;}
.x18_c00431{left:399.150000px;}
.x102_c00431{left:401.400000px;}
.x84_c00431{left:404.250000px;}
.x94_c00431{left:406.050000px;}
.xfc_c00431{left:408.900000px;}
.x5b_c00431{left:410.550000px;}
.xcc_c00431{left:412.050000px;}
.x71_c00431{left:413.250000px;}
.xa9_c00431{left:414.450000px;}
.x7c_c00431{left:416.400000px;}
.x134_c00431{left:418.200000px;}
.xc4_c00431{left:421.050000px;}
.x95_c00431{left:423.750000px;}
.x1_c00431{left:425.850000px;}
.x33_c00431{left:428.100000px;}
.xcd_c00431{left:429.750000px;}
.xa_c00431{left:431.700000px;}
.x121_c00431{left:433.050000px;}
.x9f_c00431{left:434.850000px;}
.x7d_c00431{left:435.900000px;}
.x19_c00431{left:438.000000px;}
.xf7_c00431{left:440.250000px;}
.x72_c00431{left:442.050000px;}
.x34_c00431{left:445.050000px;}
.x117_c00431{left:447.150000px;}
.x67_c00431{left:450.000000px;}
.xa0_c00431{left:451.800000px;}
.xd5_c00431{left:452.850000px;}
.xb_c00431{left:454.800000px;}
.x127_c00431{left:456.000000px;}
.x5c_c00431{left:457.650000px;}
.x44_c00431{left:459.300000px;}
.xde_c00431{left:461.400000px;}
.xc5_c00431{left:462.750000px;}
.x26_c00431{left:464.100000px;}
.xb1_c00431{left:466.350000px;}
.x8a_c00431{left:469.350000px;}
.x35_c00431{left:470.550000px;}
.xc_c00431{left:471.750000px;}
.x135_c00431{left:472.950000px;}
.x1a_c00431{left:476.550000px;}
.xfd_c00431{left:478.500000px;}
.x68_c00431{left:479.550000px;}
.xeb_c00431{left:482.550000px;}
.xd6_c00431{left:484.950000px;}
.xb2_c00431{left:486.150000px;}
.x45_c00431{left:488.100000px;}
.xbf_c00431{left:489.300000px;}
.x85_c00431{left:492.150000px;}
.xaa_c00431{left:493.800000px;}
.xce_c00431{left:495.300000px;}
.xdf_c00431{left:498.150000px;}
.x103_c00431{left:499.950000px;}
.x27_c00431{left:501.600000px;}
.x73_c00431{left:503.250000px;}
.xf3_c00431{left:504.300000px;}
.x1b_c00431{left:507.150000px;}
.x96_c00431{left:509.100000px;}
.x131_c00431{left:511.950000px;}
.x69_c00431{left:514.050000px;}
.xd_c00431{left:517.800000px;}
.x8b_c00431{left:519.000000px;}
.x46_c00431{left:520.800000px;}
.x36_c00431{left:522.000000px;}
.x7e_c00431{left:523.050000px;}
.xd7_c00431{left:524.550000px;}
.xe0_c00431{left:525.900000px;}
.x97_c00431{left:527.850000px;}
.x111_c00431{left:529.950000px;}
.x10b_c00431{left:531.600000px;}
.xfe_c00431{left:534.000000px;}
.xe6_c00431{left:536.250000px;}
.xa1_c00431{left:537.900000px;}
.xf8_c00431{left:538.950000px;}
.xb3_c00431{left:540.150000px;}
.x28_c00431{left:542.250000px;}
.x1c_c00431{left:543.900000px;}
.x52_c00431{left:545.250000px;}
.xec_c00431{left:546.600000px;}
.xcf_c00431{left:550.350000px;}
.x5d_c00431{left:551.700000px;}
.x122_c00431{left:554.700000px;}
.x74_c00431{left:555.750000px;}
.x8c_c00431{left:557.100000px;}
.xc6_c00431{left:559.950000px;}
.xe_c00431{left:562.800000px;}
.x98_c00431{left:564.900000px;}
.x37_c00431{left:567.000000px;}
.x7f_c00431{left:568.800000px;}
.xed_c00431{left:574.650000px;}
.x5e_c00431{left:580.200000px;}
.x6a_c00431{left:581.400000px;}
.x47_c00431{left:583.500000px;}
.x29_c00431{left:590.550000px;}
.x75_c00431{left:591.750000px;}
.xe7_c00431{left:592.800000px;}
.xa2_c00431{left:594.450000px;}
.x12c_c00431{left:597.150000px;}
.xf_c00431{left:599.100000px;}
.x10c_c00431{left:601.050000px;}
.x53_c00431{left:602.100000px;}
.x99_c00431{left:603.450000px;}
.xe1_c00431{left:608.700000px;}
.x105_c00431{left:610.050000px;}
.x48_c00431{left:612.000000px;}
.x1d_c00431{left:614.400000px;}
.x12d_c00431{left:615.450000px;}
.xc7_c00431{left:618.600000px;}
.x10_c00431{left:620.400000px;}
.xbb_c00431{left:622.650000px;}
.x112_c00431{left:625.350000px;}
.x123_c00431{left:627.450000px;}
.xd0_c00431{left:628.500000px;}
.x38_c00431{left:630.750000px;}
.xee_c00431{left:631.950000px;}
.x5f_c00431{left:633.450000px;}
.x1e_c00431{left:636.750000px;}
.xa3_c00431{left:638.400000px;}
.xb4_c00431{left:640.350000px;}
.x54_c00431{left:641.700000px;}
.x11b_c00431{left:644.400000px;}
.x11_c00431{left:647.400000px;}
.x39_c00431{left:648.750000px;}
.xef_c00431{left:650.700000px;}
.x49_c00431{left:651.900000px;}
.x6b_c00431{left:653.100000px;}
.xab_c00431{left:655.050000px;}
.x11c_c00431{left:658.800000px;}
.xc0_c00431{left:660.000000px;}
.x76_c00431{left:662.700000px;}
.x10d_c00431{left:663.750000px;}
.x55_c00431{left:665.100000px;}
.xe2_c00431{left:666.300000px;}
.x136_c00431{left:670.500000px;}
.x2a_c00431{left:673.050000px;}
.xf9_c00431{left:676.800000px;}
.xd1_c00431{left:677.850000px;}
.x124_c00431{left:679.950000px;}
.x60_c00431{left:682.500000px;}
.xf4_c00431{left:683.550000px;}
.x4a_c00431{left:685.050000px;}
.x3a_c00431{left:686.550000px;}
.x1f_c00431{left:689.250000px;}
.x10e_c00431{left:690.450000px;}
.x128_c00431{left:691.500000px;}
.x8d_c00431{left:692.850000px;}
.x12e_c00431{left:694.650000px;}
.x118_c00431{left:697.800000px;}
.xb5_c00431{left:699.450000px;}
.x11d_c00431{left:702.300000px;}
.x113_c00431{left:703.800000px;}
.x4b_c00431{left:704.850000px;}
.x77_c00431{left:706.950000px;}
.xac_c00431{left:709.050000px;}
.xa4_c00431{left:710.400000px;}
.xc1_c00431{left:711.450000px;}
.xd8_c00431{left:713.250000px;}
.xc8_c00431{left:714.750000px;}
.xf0_c00431{left:718.050000px;}
.x80_c00431{left:719.700000px;}
.xd2_c00431{left:721.800000px;}
.x61_c00431{left:724.650000px;}
.x137_c00431{left:728.100000px;}
.x8e_c00431{left:729.600000px;}
.x4c_c00431{left:733.650000px;}
.x78_c00431{left:736.050000px;}
.x106_c00431{left:738.900000px;}
.x6c_c00431{left:740.550000px;}
.x114_c00431{left:743.400000px;}
.x138_c00431{left:746.100000px;}
.x2b_c00431{left:747.900000px;}
.x81_c00431{left:750.000000px;}
.x2_c00431{left:751.950000px;}
.x3b_c00431{left:753.900000px;}
.x12_c00431{left:755.400000px;}
.x9a_c00431{left:759.000000px;}
.x4d_c00431{left:767.100000px;}
.x3c_c00431{left:768.600000px;}
.xb6_c00431{left:769.650000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws1_c00431{word-spacing:-6.666667pt;}
.ws9_c00431{word-spacing:-5.497076pt;}
.ws8_c00431{word-spacing:-4.320988pt;}
.wsb_c00431{word-spacing:0.000000pt;}
.ws6_c00431{word-spacing:0.246914pt;}
.ws3_c00431{word-spacing:1.842818pt;}
.ws7_c00431{word-spacing:2.168022pt;}
.wsa_c00431{word-spacing:2.735043pt;}
.ws2_c00431{word-spacing:5.521886pt;}
.ws4_c00431{word-spacing:6.267806pt;}
.ws0_c00431{word-spacing:6.415094pt;}
.ws5_c00431{word-spacing:8.888889pt;}
.fs0_c00431{font-size:53.333333pt;}
.y0_c00431{bottom:0.000000pt;}
.y2c_c00431{bottom:132.133333pt;}
.y2b_c00431{bottom:164.266667pt;}
.y2a_c00431{bottom:182.133333pt;}
.y29_c00431{bottom:199.733333pt;}
.y28_c00431{bottom:217.333333pt;}
.y27_c00431{bottom:235.200000pt;}
.y26_c00431{bottom:252.800000pt;}
.y25_c00431{bottom:270.000000pt;}
.y24_c00431{bottom:288.266667pt;}
.y23_c00431{bottom:305.866667pt;}
.y22_c00431{bottom:323.466667pt;}
.y21_c00431{bottom:341.066667pt;}
.y20_c00431{bottom:358.666667pt;}
.y1f_c00431{bottom:376.400000pt;}
.y1e_c00431{bottom:394.000000pt;}
.y1d_c00431{bottom:411.866667pt;}
.y1c_c00431{bottom:429.733333pt;}
.y1b_c00431{bottom:447.333333pt;}
.y1a_c00431{bottom:465.200000pt;}
.y19_c00431{bottom:482.533333pt;}
.y18_c00431{bottom:500.800000pt;}
.y17_c00431{bottom:518.666667pt;}
.y16_c00431{bottom:536.266667pt;}
.y15_c00431{bottom:553.866667pt;}
.y14_c00431{bottom:571.733333pt;}
.y13_c00431{bottom:589.333333pt;}
.y12_c00431{bottom:607.200000pt;}
.y11_c00431{bottom:624.800000pt;}
.y10_c00431{bottom:642.666667pt;}
.yf_c00431{bottom:660.266667pt;}
.ye_c00431{bottom:677.866667pt;}
.yd_c00431{bottom:695.466667pt;}
.yc_c00431{bottom:713.333333pt;}
.yb_c00431{bottom:731.200000pt;}
.ya_c00431{bottom:748.800000pt;}
.y9_c00431{bottom:766.400000pt;}
.y8_c00431{bottom:784.666667pt;}
.y7_c00431{bottom:802.266667pt;}
.y6_c00431{bottom:819.866667pt;}
.y5_c00431{bottom:837.200000pt;}
.y4_c00431{bottom:855.066667pt;}
.y3_c00431{bottom:872.666667pt;}
.y2_c00431{bottom:890.533333pt;}
.y1_c00431{bottom:924.533333pt;}
.h2_c00431{height:53.333333pt;}
.h1_c00431{height:1036.666667pt;}
.h0_c00431{height:1036.800049pt;}
.w0_c00431{width:818.559977pt;}
.w1_c00431{width:818.666667pt;}
.x0_c00431{left:0.000000pt;}
.x3_c00431{left:99.466667pt;}
.xb7_c00431{left:101.066667pt;}
.x119_c00431{left:113.733333pt;}
.xff_c00431{left:118.666667pt;}
.xe8_c00431{left:120.800000pt;}
.x86_c00431{left:122.666667pt;}
.x3d_c00431{left:124.400000pt;}
.x8f_c00431{left:125.866667pt;}
.x2d_c00431{left:127.333333pt;}
.xd9_c00431{left:128.266667pt;}
.xa5_c00431{left:129.733333pt;}
.xb8_c00431{left:131.733333pt;}
.x2c_c00431{left:133.600000pt;}
.x4_c00431{left:137.600000pt;}
.xc9_c00431{left:138.933333pt;}
.x13_c00431{left:141.866667pt;}
.x3e_c00431{left:146.800000pt;}
.xb9_c00431{left:148.666667pt;}
.x20_c00431{left:151.200000pt;}
.x115_c00431{left:152.400000pt;}
.xf5_c00431{left:154.133333pt;}
.x129_c00431{left:155.200000pt;}
.x2e_c00431{left:156.133333pt;}
.xa6_c00431{left:157.200000pt;}
.xda_c00431{left:158.666667pt;}
.x14_c00431{left:160.400000pt;}
.xbc_c00431{left:162.133333pt;}
.x79_c00431{left:164.000000pt;}
.xe3_c00431{left:165.066667pt;}
.x56_c00431{left:166.266667pt;}
.x132_c00431{left:168.000000pt;}
.xad_c00431{left:171.733333pt;}
.xfa_c00431{left:173.066667pt;}
.x5_c00431{left:174.400000pt;}
.x62_c00431{left:175.333333pt;}
.xdb_c00431{left:176.533333pt;}
.x90_c00431{left:180.533333pt;}
.x107_c00431{left:181.466667pt;}
.xf6_c00431{left:183.200000pt;}
.x11e_c00431{left:184.933333pt;}
.xbd_c00431{left:185.866667pt;}
.xba_c00431{left:188.666667pt;}
.x10f_c00431{left:190.000000pt;}
.x2f_c00431{left:192.000000pt;}
.x133_c00431{left:194.533333pt;}
.x57_c00431{left:196.933333pt;}
.x4e_c00431{left:198.000000pt;}
.x7a_c00431{left:200.133333pt;}
.xd3_c00431{left:201.333333pt;}
.x6d_c00431{left:202.933333pt;}
.x6_c00431{left:203.866667pt;}
.x82_c00431{left:205.733333pt;}
.xa7_c00431{left:207.466667pt;}
.x87_c00431{left:209.733333pt;}
.x11f_c00431{left:211.466667pt;}
.xbe_c00431{left:216.000000pt;}
.x91_c00431{left:219.200000pt;}
.x15_c00431{left:220.266667pt;}
.x21_c00431{left:221.333333pt;}
.xfb_c00431{left:222.666667pt;}
.xf1_c00431{left:224.666667pt;}
.x9b_c00431{left:226.533333pt;}
.x12a_c00431{left:227.466667pt;}
.x6e_c00431{left:228.533333pt;}
.x104_c00431{left:231.333333pt;}
.x3f_c00431{left:232.266667pt;}
.x58_c00431{left:233.466667pt;}
.x63_c00431{left:234.800000pt;}
.xdc_c00431{left:235.733333pt;}
.x22_c00431{left:237.066667pt;}
.xd4_c00431{left:238.400000pt;}
.x9c_c00431{left:241.866667pt;}
.xc2_c00431{left:243.600000pt;}
.x120_c00431{left:244.533333pt;}
.x4f_c00431{left:246.000000pt;}
.x30_c00431{left:247.066667pt;}
.x23_c00431{left:248.000000pt;}
.x92_c00431{left:251.200000pt;}
.x88_c00431{left:252.933333pt;}
.xa8_c00431{left:254.133333pt;}
.x7_c00431{left:256.933333pt;}
.x6f_c00431{left:259.200000pt;}
.x40_c00431{left:260.133333pt;}
.x108_c00431{left:261.200000pt;}
.xf2_c00431{left:262.133333pt;}
.x7b_c00431{left:263.866667pt;}
.x16_c00431{left:265.733333pt;}
.x116_c00431{left:266.933333pt;}
.x50_c00431{left:270.266667pt;}
.xae_c00431{left:271.200000pt;}
.x59_c00431{left:272.133333pt;}
.xc3_c00431{left:274.666667pt;}
.xe4_c00431{left:275.600000pt;}
.x83_c00431{left:280.666667pt;}
.x8_c00431{left:282.533333pt;}
.xca_c00431{left:284.133333pt;}
.x64_c00431{left:285.733333pt;}
.x11a_c00431{left:287.066667pt;}
.x31_c00431{left:288.000000pt;}
.x17_c00431{left:289.466667pt;}
.x100_c00431{left:291.866667pt;}
.x24_c00431{left:295.066667pt;}
.x125_c00431{left:296.000000pt;}
.x93_c00431{left:297.600000pt;}
.x41_c00431{left:298.533333pt;}
.x12f_c00431{left:303.333333pt;}
.xdd_c00431{left:304.533333pt;}
.x5a_c00431{left:305.466667pt;}
.xe9_c00431{left:307.333333pt;}
.x101_c00431{left:308.800000pt;}
.x109_c00431{left:311.466667pt;}
.xaf_c00431{left:314.400000pt;}
.x12b_c00431{left:317.733333pt;}
.x32_c00431{left:320.000000pt;}
.x70_c00431{left:320.933333pt;}
.x9d_c00431{left:321.866667pt;}
.x65_c00431{left:323.066667pt;}
.x42_c00431{left:324.133333pt;}
.xcb_c00431{left:327.600000pt;}
.x89_c00431{left:329.466667pt;}
.x10a_c00431{left:332.000000pt;}
.x130_c00431{left:333.466667pt;}
.xea_c00431{left:336.400000pt;}
.x9_c00431{left:337.600000pt;}
.x25_c00431{left:339.600000pt;}
.x9e_c00431{left:341.066667pt;}
.x51_c00431{left:342.933333pt;}
.xe5_c00431{left:345.066667pt;}
.x43_c00431{left:346.533333pt;}
.x66_c00431{left:348.400000pt;}
.x126_c00431{left:350.666667pt;}
.xb0_c00431{left:352.133333pt;}
.x110_c00431{left:353.866667pt;}
.x18_c00431{left:354.800000pt;}
.x102_c00431{left:356.800000pt;}
.x84_c00431{left:359.333333pt;}
.x94_c00431{left:360.933333pt;}
.xfc_c00431{left:363.466667pt;}
.x5b_c00431{left:364.933333pt;}
.xcc_c00431{left:366.266667pt;}
.x71_c00431{left:367.333333pt;}
.xa9_c00431{left:368.400000pt;}
.x7c_c00431{left:370.133333pt;}
.x134_c00431{left:371.733333pt;}
.xc4_c00431{left:374.266667pt;}
.x95_c00431{left:376.666667pt;}
.x1_c00431{left:378.533333pt;}
.x33_c00431{left:380.533333pt;}
.xcd_c00431{left:382.000000pt;}
.xa_c00431{left:383.733333pt;}
.x121_c00431{left:384.933333pt;}
.x9f_c00431{left:386.533333pt;}
.x7d_c00431{left:387.466667pt;}
.x19_c00431{left:389.333333pt;}
.xf7_c00431{left:391.333333pt;}
.x72_c00431{left:392.933333pt;}
.x34_c00431{left:395.600000pt;}
.x117_c00431{left:397.466667pt;}
.x67_c00431{left:400.000000pt;}
.xa0_c00431{left:401.600000pt;}
.xd5_c00431{left:402.533333pt;}
.xb_c00431{left:404.266667pt;}
.x127_c00431{left:405.333333pt;}
.x5c_c00431{left:406.800000pt;}
.x44_c00431{left:408.266667pt;}
.xde_c00431{left:410.133333pt;}
.xc5_c00431{left:411.333333pt;}
.x26_c00431{left:412.533333pt;}
.xb1_c00431{left:414.533333pt;}
.x8a_c00431{left:417.200000pt;}
.x35_c00431{left:418.266667pt;}
.xc_c00431{left:419.333333pt;}
.x135_c00431{left:420.400000pt;}
.x1a_c00431{left:423.600000pt;}
.xfd_c00431{left:425.333333pt;}
.x68_c00431{left:426.266667pt;}
.xeb_c00431{left:428.933333pt;}
.xd6_c00431{left:431.066667pt;}
.xb2_c00431{left:432.133333pt;}
.x45_c00431{left:433.866667pt;}
.xbf_c00431{left:434.933333pt;}
.x85_c00431{left:437.466667pt;}
.xaa_c00431{left:438.933333pt;}
.xce_c00431{left:440.266667pt;}
.xdf_c00431{left:442.800000pt;}
.x103_c00431{left:444.400000pt;}
.x27_c00431{left:445.866667pt;}
.x73_c00431{left:447.333333pt;}
.xf3_c00431{left:448.266667pt;}
.x1b_c00431{left:450.800000pt;}
.x96_c00431{left:452.533333pt;}
.x131_c00431{left:455.066667pt;}
.x69_c00431{left:456.933333pt;}
.xd_c00431{left:460.266667pt;}
.x8b_c00431{left:461.333333pt;}
.x46_c00431{left:462.933333pt;}
.x36_c00431{left:464.000000pt;}
.x7e_c00431{left:464.933333pt;}
.xd7_c00431{left:466.266667pt;}
.xe0_c00431{left:467.466667pt;}
.x97_c00431{left:469.200000pt;}
.x111_c00431{left:471.066667pt;}
.x10b_c00431{left:472.533333pt;}
.xfe_c00431{left:474.666667pt;}
.xe6_c00431{left:476.666667pt;}
.xa1_c00431{left:478.133333pt;}
.xf8_c00431{left:479.066667pt;}
.xb3_c00431{left:480.133333pt;}
.x28_c00431{left:482.000000pt;}
.x1c_c00431{left:483.466667pt;}
.x52_c00431{left:484.666667pt;}
.xec_c00431{left:485.866667pt;}
.xcf_c00431{left:489.200000pt;}
.x5d_c00431{left:490.400000pt;}
.x122_c00431{left:493.066667pt;}
.x74_c00431{left:494.000000pt;}
.x8c_c00431{left:495.200000pt;}
.xc6_c00431{left:497.733333pt;}
.xe_c00431{left:500.266667pt;}
.x98_c00431{left:502.133333pt;}
.x37_c00431{left:504.000000pt;}
.x7f_c00431{left:505.600000pt;}
.xed_c00431{left:510.800000pt;}
.x5e_c00431{left:515.733333pt;}
.x6a_c00431{left:516.800000pt;}
.x47_c00431{left:518.666667pt;}
.x29_c00431{left:524.933333pt;}
.x75_c00431{left:526.000000pt;}
.xe7_c00431{left:526.933333pt;}
.xa2_c00431{left:528.400000pt;}
.x12c_c00431{left:530.800000pt;}
.xf_c00431{left:532.533333pt;}
.x10c_c00431{left:534.266667pt;}
.x53_c00431{left:535.200000pt;}
.x99_c00431{left:536.400000pt;}
.xe1_c00431{left:541.066667pt;}
.x105_c00431{left:542.266667pt;}
.x48_c00431{left:544.000000pt;}
.x1d_c00431{left:546.133333pt;}
.x12d_c00431{left:547.066667pt;}
.xc7_c00431{left:549.866667pt;}
.x10_c00431{left:551.466667pt;}
.xbb_c00431{left:553.466667pt;}
.x112_c00431{left:555.866667pt;}
.x123_c00431{left:557.733333pt;}
.xd0_c00431{left:558.666667pt;}
.x38_c00431{left:560.666667pt;}
.xee_c00431{left:561.733333pt;}
.x5f_c00431{left:563.066667pt;}
.x1e_c00431{left:566.000000pt;}
.xa3_c00431{left:567.466667pt;}
.xb4_c00431{left:569.200000pt;}
.x54_c00431{left:570.400000pt;}
.x11b_c00431{left:572.800000pt;}
.x11_c00431{left:575.466667pt;}
.x39_c00431{left:576.666667pt;}
.xef_c00431{left:578.400000pt;}
.x49_c00431{left:579.466667pt;}
.x6b_c00431{left:580.533333pt;}
.xab_c00431{left:582.266667pt;}
.x11c_c00431{left:585.600000pt;}
.xc0_c00431{left:586.666667pt;}
.x76_c00431{left:589.066667pt;}
.x10d_c00431{left:590.000000pt;}
.x55_c00431{left:591.200000pt;}
.xe2_c00431{left:592.266667pt;}
.x136_c00431{left:596.000000pt;}
.x2a_c00431{left:598.266667pt;}
.xf9_c00431{left:601.600000pt;}
.xd1_c00431{left:602.533333pt;}
.x124_c00431{left:604.400000pt;}
.x60_c00431{left:606.666667pt;}
.xf4_c00431{left:607.600000pt;}
.x4a_c00431{left:608.933333pt;}
.x3a_c00431{left:610.266667pt;}
.x1f_c00431{left:612.666667pt;}
.x10e_c00431{left:613.733333pt;}
.x128_c00431{left:614.666667pt;}
.x8d_c00431{left:615.866667pt;}
.x12e_c00431{left:617.466667pt;}
.x118_c00431{left:620.266667pt;}
.xb5_c00431{left:621.733333pt;}
.x11d_c00431{left:624.266667pt;}
.x113_c00431{left:625.600000pt;}
.x4b_c00431{left:626.533333pt;}
.x77_c00431{left:628.400000pt;}
.xac_c00431{left:630.266667pt;}
.xa4_c00431{left:631.466667pt;}
.xc1_c00431{left:632.400000pt;}
.xd8_c00431{left:634.000000pt;}
.xc8_c00431{left:635.333333pt;}
.xf0_c00431{left:638.266667pt;}
.x80_c00431{left:639.733333pt;}
.xd2_c00431{left:641.600000pt;}
.x61_c00431{left:644.133333pt;}
.x137_c00431{left:647.200000pt;}
.x8e_c00431{left:648.533333pt;}
.x4c_c00431{left:652.133333pt;}
.x78_c00431{left:654.266667pt;}
.x106_c00431{left:656.800000pt;}
.x6c_c00431{left:658.266667pt;}
.x114_c00431{left:660.800000pt;}
.x138_c00431{left:663.200000pt;}
.x2b_c00431{left:664.800000pt;}
.x81_c00431{left:666.666667pt;}
.x2_c00431{left:668.400000pt;}
.x3b_c00431{left:670.133333pt;}
.x12_c00431{left:671.466667pt;}
.x9a_c00431{left:674.666667pt;}
.x4d_c00431{left:681.866667pt;}
.x3c_c00431{left:683.200000pt;}
.xb6_c00431{left:684.133333pt;}
}





/* 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_c00432 {
    display:none;
  }
  .loading-indicator_c00432.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00432 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_c00432 { 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_c00432" -> "#page-container .classname_c00432")
 */
.pf_c00432 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00432 { /* 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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00432 { /* 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_c00432 { /* 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_c00432 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00432 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00432 {overflow:visible;}
  }
}
.c_c00432 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00432 { /* 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_c00432:after { /* webkit #35443 */
  content: '';
}
.t_c00432:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00432 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 */
}
.__c00432 { /* 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_c00432 { /* info for Javascript */
  display:none;
}
.l_c00432 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00432 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00432 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00432: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_c00432 {
    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_c00432.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00432.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_c00432 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00432{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00432;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.000000;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;}
.m3c_c00432{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m70_c00432{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00432{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m29_c00432{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00432{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mae_c00432{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00432{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00432{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00432{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m16_c00432{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m28_c00432{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m25_c00432{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00432{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00432{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m98_c00432{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m86_c00432{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.maa_c00432{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00432{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00432{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00432{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00432{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mad_c00432{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00432{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00432{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m81_c00432{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00432{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00432{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00432{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00432{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m60_c00432{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m99_c00432{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m72_c00432{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m54_c00432{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00432{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m69_c00432{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00432{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mab_c00432{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2_c00432{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00432{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00432{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m43_c00432{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m89_c00432{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00432{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mac_c00432{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m30_c00432{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m38_c00432{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma_c00432{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00432{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m74_c00432{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m76_c00432{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00432{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00432{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb_c00432{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00432{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m91_c00432{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m92_c00432{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m94_c00432{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00432{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00432{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m97_c00432{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00432{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m51_c00432{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00432{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m17_c00432{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00432{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m66_c00432{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00432{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00432{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m88_c00432{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00432{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00432{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m55_c00432{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m93_c00432{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m83_c00432{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m50_c00432{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m73_c00432{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00432{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m61_c00432{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m68_c00432{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m53_c00432{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00432{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00432{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m27_c00432{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me_c00432{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m85_c00432{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m45_c00432{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m58_c00432{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m39_c00432{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m48_c00432{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00432{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00432{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m59_c00432{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m67_c00432{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00432{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m62_c00432{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m24_c00432{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m80_c00432{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00432{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m95_c00432{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m96_c00432{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m65_c00432{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m56_c00432{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);}
.m22_c00432{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00432{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00432{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m31_c00432{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m82_c00432{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00432{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00432{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m35_c00432{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00432{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m77_c00432{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00432{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00432{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00432{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m26_c00432{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m79_c00432{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m71_c00432{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m84_c00432{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m57_c00432{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00432{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m14_c00432{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m90_c00432{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m87_c00432{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m75_c00432{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m52_c00432{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.m64_c00432{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls0_c00432{letter-spacing:0.000000px;}
.sc__c00432{text-shadow:none;}
.sc0_c00432{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__c00432{-webkit-text-stroke:0px transparent;}
.sc0_c00432{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00432{word-spacing:-8.671875px;}
.ws2_c00432{word-spacing:-7.441860px;}
.ws0_c00432{word-spacing:-6.250000px;}
.ws5_c00432{word-spacing:-5.277778px;}
.wsa_c00432{word-spacing:0.000000px;}
.ws9_c00432{word-spacing:1.477273px;}
.ws6_c00432{word-spacing:5.405405px;}
.ws4_c00432{word-spacing:7.567568px;}
.ws7_c00432{word-spacing:8.611111px;}
.ws3_c00432{word-spacing:10.735294px;}
.ws1_c00432{word-spacing:13.194444px;}
.fc0_c00432{color:transparent;}
.fs0_c00432{font-size:60.000000px;}
.fs1_c00432{font-size:66.000000px;}
.y0_c00432{bottom:0.000000px;}
.y2c_c00432{bottom:155.850000px;}
.y2b_c00432{bottom:171.750000px;}
.y2a_c00432{bottom:186.900000px;}
.y29_c00432{bottom:202.650000px;}
.y28_c00432{bottom:252.000000px;}
.y27_c00432{bottom:272.100000px;}
.y26_c00432{bottom:291.900000px;}
.y25_c00432{bottom:312.000000px;}
.y24_c00432{bottom:331.500000px;}
.y23_c00432{bottom:351.300000px;}
.y22_c00432{bottom:371.250000px;}
.y21_c00432{bottom:391.800000px;}
.y20_c00432{bottom:411.900000px;}
.y1f_c00432{bottom:431.700000px;}
.y1e_c00432{bottom:451.800000px;}
.y1d_c00432{bottom:471.600000px;}
.y1c_c00432{bottom:491.100000px;}
.y1b_c00432{bottom:511.200000px;}
.y1a_c00432{bottom:529.950000px;}
.y19_c00432{bottom:551.250000px;}
.y18_c00432{bottom:571.050000px;}
.y17_c00432{bottom:590.550000px;}
.y16_c00432{bottom:610.650000px;}
.y15_c00432{bottom:630.450000px;}
.y14_c00432{bottom:650.250000px;}
.y13_c00432{bottom:670.050000px;}
.y12_c00432{bottom:690.150000px;}
.y11_c00432{bottom:709.950000px;}
.y10_c00432{bottom:730.050000px;}
.yf_c00432{bottom:750.150000px;}
.ye_c00432{bottom:769.950000px;}
.yd_c00432{bottom:789.750000px;}
.yc_c00432{bottom:809.550000px;}
.yb_c00432{bottom:829.650000px;}
.ya_c00432{bottom:849.750000px;}
.y9_c00432{bottom:869.550000px;}
.y8_c00432{bottom:889.650000px;}
.y7_c00432{bottom:909.750000px;}
.y6_c00432{bottom:929.550000px;}
.y5_c00432{bottom:949.350000px;}
.y4_c00432{bottom:969.150000px;}
.y3_c00432{bottom:988.500000px;}
.y2_c00432{bottom:1009.050000px;}
.y1_c00432{bottom:1047.300000px;}
.h2_c00432{height:60.000000px;}
.h3_c00432{height:66.000000px;}
.h1_c00432{height:1166.250000px;}
.h0_c00432{height:1166.400056px;}
.w0_c00432{width:920.879975px;}
.w1_c00432{width:921.000000px;}
.x0_c00432{left:0.000000px;}
.x129_c00432{left:140.700000px;}
.x78_c00432{left:142.350000px;}
.x3_c00432{left:144.000000px;}
.x1_c00432{left:145.500000px;}
.x28_c00432{left:147.000000px;}
.x8b_c00432{left:160.500000px;}
.x53_c00432{left:164.850000px;}
.xdd_c00432{left:166.650000px;}
.x6d_c00432{left:168.000000px;}
.xbf_c00432{left:170.700000px;}
.xa8_c00432{left:172.050000px;}
.xe3_c00432{left:173.100000px;}
.xaa_c00432{left:174.300000px;}
.x19_c00432{left:177.150000px;}
.x95_c00432{left:178.650000px;}
.x29_c00432{left:179.700000px;}
.x15_c00432{left:180.900000px;}
.x61_c00432{left:182.400000px;}
.x8c_c00432{left:185.700000px;}
.x9e_c00432{left:188.250000px;}
.xf9_c00432{left:191.400000px;}
.x4_c00432{left:192.600000px;}
.x108_c00432{left:193.650000px;}
.xde_c00432{left:195.750000px;}
.x79_c00432{left:197.400000px;}
.xc0_c00432{left:199.200000px;}
.x2a_c00432{left:201.000000px;}
.x46_c00432{left:203.550000px;}
.x62_c00432{left:206.850000px;}
.xff_c00432{left:208.200000px;}
.x5_c00432{left:209.550000px;}
.x1a_c00432{left:211.650000px;}
.xd7_c00432{left:213.000000px;}
.x8d_c00432{left:214.800000px;}
.x9f_c00432{left:216.000000px;}
.x7a_c00432{left:217.500000px;}
.x6_c00432{left:221.850000px;}
.xb3_c00432{left:226.200000px;}
.xa0_c00432{left:228.300000px;}
.xef_c00432{left:230.250000px;}
.x2b_c00432{left:232.350000px;}
.xa9_c00432{left:235.500000px;}
.x63_c00432{left:237.150000px;}
.x126_c00432{left:238.950000px;}
.x54_c00432{left:241.500000px;}
.x11c_c00432{left:243.150000px;}
.xd2_c00432{left:245.400000px;}
.x10d_c00432{left:247.950000px;}
.xc1_c00432{left:249.600000px;}
.x117_c00432{left:251.700000px;}
.x39_c00432{left:253.350000px;}
.xf0_c00432{left:256.200000px;}
.x16_c00432{left:258.300000px;}
.x112_c00432{left:260.400000px;}
.x96_c00432{left:262.200000px;}
.x1b_c00432{left:267.150000px;}
.x7_c00432{left:269.400000px;}
.xb4_c00432{left:270.900000px;}
.x55_c00432{left:273.900000px;}
.x2c_c00432{left:275.550000px;}
.xd3_c00432{left:278.850000px;}
.x6e_c00432{left:281.400000px;}
.x1c_c00432{left:282.600000px;}
.x17_c00432{left:284.250000px;}
.xc2_c00432{left:286.350000px;}
.x3a_c00432{left:288.300000px;}
.x2d_c00432{left:290.700000px;}
.xfa_c00432{left:291.900000px;}
.x7b_c00432{left:293.400000px;}
.x56_c00432{left:294.750000px;}
.xba_c00432{left:296.100000px;}
.x8_c00432{left:298.200000px;}
.xe8_c00432{left:301.950000px;}
.x97_c00432{left:303.900000px;}
.x100_c00432{left:305.400000px;}
.x1d_c00432{left:309.600000px;}
.xf1_c00432{left:312.300000px;}
.xc3_c00432{left:313.350000px;}
.xa1_c00432{left:315.750000px;}
.xd8_c00432{left:317.400000px;}
.x8e_c00432{left:319.950000px;}
.x18_c00432{left:322.800000px;}
.xdf_c00432{left:324.900000px;}
.x1e_c00432{left:326.850000px;}
.x6f_c00432{left:329.250000px;}
.x2e_c00432{left:333.150000px;}
.xd9_c00432{left:335.100000px;}
.x101_c00432{left:337.800000px;}
.xcc_c00432{left:338.850000px;}
.xab_c00432{left:342.750000px;}
.xe9_c00432{left:344.400000px;}
.x57_c00432{left:345.900000px;}
.xc4_c00432{left:347.550000px;}
.xa2_c00432{left:348.900000px;}
.xda_c00432{left:350.250000px;}
.x1f_c00432{left:352.800000px;}
.x113_c00432{left:354.000000px;}
.x9_c00432{left:355.050000px;}
.x47_c00432{left:359.400000px;}
.xb5_c00432{left:362.700000px;}
.xe0_c00432{left:364.500000px;}
.x70_c00432{left:367.050000px;}
.x11d_c00432{left:368.100000px;}
.x3b_c00432{left:369.300000px;}
.x7c_c00432{left:370.500000px;}
.x87_c00432{left:372.450000px;}
.x118_c00432{left:375.600000px;}
.x71_c00432{left:378.150000px;}
.x20_c00432{left:379.800000px;}
.xa_c00432{left:381.750000px;}
.x11e_c00432{left:384.000000px;}
.x7d_c00432{left:385.200000px;}
.x48_c00432{left:387.150000px;}
.xcd_c00432{left:388.650000px;}
.x2f_c00432{left:392.250000px;}
.x3c_c00432{left:393.750000px;}
.xbb_c00432{left:396.900000px;}
.x114_c00432{left:397.950000px;}
.xfb_c00432{left:399.900000px;}
.x72_c00432{left:401.550000px;}
.x98_c00432{left:403.200000px;}
.xb_c00432{left:410.550000px;}
.x8f_c00432{left:412.500000px;}
.xcb_c00432{left:414.300000px;}
.x3d_c00432{left:415.350000px;}
.x122_c00432{left:418.050000px;}
.x21_c00432{left:419.100000px;}
.x10e_c00432{left:420.150000px;}
.x30_c00432{left:423.150000px;}
.xe1_c00432{left:424.200000px;}
.xe4_c00432{left:425.250000px;}
.xa3_c00432{left:428.850000px;}
.x99_c00432{left:430.500000px;}
.x115_c00432{left:433.650000px;}
.xc_c00432{left:435.450000px;}
.x31_c00432{left:437.850000px;}
.x49_c00432{left:439.050000px;}
.xf6_c00432{left:440.250000px;}
.x2_c00432{left:441.750000px;}
.xbc_c00432{left:443.700000px;}
.xfc_c00432{left:444.900000px;}
.xce_c00432{left:447.000000px;}
.x58_c00432{left:448.500000px;}
.x90_c00432{left:453.600000px;}
.xd4_c00432{left:454.950000px;}
.x10f_c00432{left:456.450000px;}
.xa4_c00432{left:458.700000px;}
.x64_c00432{left:460.350000px;}
.x73_c00432{left:462.000000px;}
.x22_c00432{left:463.050000px;}
.xac_c00432{left:464.100000px;}
.x123_c00432{left:465.150000px;}
.xc5_c00432{left:466.650000px;}
.xea_c00432{left:471.900000px;}
.xf5_c00432{left:474.600000px;}
.x116_c00432{left:475.800000px;}
.x3e_c00432{left:476.850000px;}
.x7e_c00432{left:478.500000px;}
.xd_c00432{left:479.700000px;}
.xad_c00432{left:482.400000px;}
.x12a_c00432{left:483.750000px;}
.x88_c00432{left:485.550000px;}
.x23_c00432{left:487.950000px;}
.x4a_c00432{left:489.750000px;}
.xfd_c00432{left:491.400000px;}
.xae_c00432{left:495.000000px;}
.x3f_c00432{left:496.650000px;}
.xe_c00432{left:498.000000px;}
.x7f_c00432{left:499.050000px;}
.x65_c00432{left:500.700000px;}
.xe5_c00432{left:502.650000px;}
.x4b_c00432{left:504.900000px;}
.xb6_c00432{left:507.150000px;}
.x80_c00432{left:510.600000px;}
.x89_c00432{left:512.850000px;}
.x74_c00432{left:516.000000px;}
.xf7_c00432{left:518.250000px;}
.x124_c00432{left:519.900000px;}
.x32_c00432{left:525.000000px;}
.x12d_c00432{left:527.100000px;}
.x81_c00432{left:528.300000px;}
.x59_c00432{left:531.300000px;}
.xb7_c00432{left:532.650000px;}
.x109_c00432{left:534.150000px;}
.x4c_c00432{left:535.800000px;}
.x91_c00432{left:537.900000px;}
.x11f_c00432{left:539.550000px;}
.x82_c00432{left:540.600000px;}
.x5a_c00432{left:542.850000px;}
.xa5_c00432{left:544.350000px;}
.x24_c00432{left:547.050000px;}
.x102_c00432{left:551.250000px;}
.x110_c00432{left:552.900000px;}
.xd5_c00432{left:553.950000px;}
.x9a_c00432{left:556.950000px;}
.x8a_c00432{left:558.900000px;}
.xc6_c00432{left:562.800000px;}
.x33_c00432{left:564.300000px;}
.xf_c00432{left:567.450000px;}
.x12e_c00432{left:568.500000px;}
.x40_c00432{left:570.900000px;}
.x66_c00432{left:571.950000px;}
.xbd_c00432{left:573.750000px;}
.x4d_c00432{left:576.900000px;}
.xeb_c00432{left:579.600000px;}
.x10a_c00432{left:582.000000px;}
.x103_c00432{left:583.350000px;}
.x34_c00432{left:584.400000px;}
.xe6_c00432{left:586.800000px;}
.xaf_c00432{left:589.350000px;}
.xf2_c00432{left:590.550000px;}
.xc7_c00432{left:591.900000px;}
.x92_c00432{left:594.300000px;}
.x10_c00432{left:595.950000px;}
.x119_c00432{left:597.150000px;}
.x41_c00432{left:600.750000px;}
.xfe_c00432{left:601.800000px;}
.x83_c00432{left:602.850000px;}
.xec_c00432{left:604.050000px;}
.x67_c00432{left:606.150000px;}
.x11_c00432{left:608.250000px;}
.x9b_c00432{left:609.900000px;}
.x5b_c00432{left:611.550000px;}
.x25_c00432{left:613.050000px;}
.xb0_c00432{left:615.600000px;}
.x4e_c00432{left:618.600000px;}
.x9c_c00432{left:621.000000px;}
.xdb_c00432{left:622.350000px;}
.x68_c00432{left:623.400000px;}
.xc8_c00432{left:626.100000px;}
.x5c_c00432{left:629.550000px;}
.x12b_c00432{left:630.600000px;}
.x42_c00432{left:633.900000px;}
.xed_c00432{left:639.750000px;}
.x10b_c00432{left:642.150000px;}
.xdc_c00432{left:645.750000px;}
.x84_c00432{left:650.700000px;}
.x35_c00432{left:655.350000px;}
.x104_c00432{left:656.550000px;}
.x69_c00432{left:657.600000px;}
.xcf_c00432{left:659.700000px;}
.x5d_c00432{left:661.200000px;}
.x4f_c00432{left:662.550000px;}
.x12_c00432{left:665.550000px;}
.xf8_c00432{left:667.650000px;}
.xb8_c00432{left:669.000000px;}
.x26_c00432{left:672.150000px;}
.x43_c00432{left:673.500000px;}
.x105_c00432{left:674.550000px;}
.x9d_c00432{left:676.800000px;}
.x75_c00432{left:678.750000px;}
.x5e_c00432{left:681.000000px;}
.x36_c00432{left:682.650000px;}
.x11a_c00432{left:691.050000px;}
.x6a_c00432{left:692.550000px;}
.xe2_c00432{left:694.650000px;}
.x106_c00432{left:696.150000px;}
.xd0_c00432{left:697.200000px;}
.xc9_c00432{left:700.500000px;}
.x127_c00432{left:703.350000px;}
.xe7_c00432{left:705.150000px;}
.x37_c00432{left:707.850000px;}
.x44_c00432{left:709.800000px;}
.x13_c00432{left:711.300000px;}
.x50_c00432{left:712.500000px;}
.x5f_c00432{left:713.700000px;}
.xb1_c00432{left:716.400000px;}
.x11b_c00432{left:718.800000px;}
.xee_c00432{left:720.750000px;}
.x93_c00432{left:722.550000px;}
.x10c_c00432{left:724.200000px;}
.x107_c00432{left:726.000000px;}
.xd6_c00432{left:727.500000px;}
.x76_c00432{left:729.150000px;}
.x120_c00432{left:732.450000px;}
.xb2_c00432{left:733.650000px;}
.x38_c00432{left:735.150000px;}
.x85_c00432{left:739.350000px;}
.x27_c00432{left:743.100000px;}
.xf3_c00432{left:745.500000px;}
.x45_c00432{left:746.850000px;}
.xb9_c00432{left:749.700000px;}
.x60_c00432{left:751.200000px;}
.xa6_c00432{left:753.450000px;}
.x6b_c00432{left:755.250000px;}
.x86_c00432{left:757.650000px;}
.x51_c00432{left:761.400000px;}
.x77_c00432{left:764.100000px;}
.x125_c00432{left:770.850000px;}
.x94_c00432{left:773.700000px;}
.xbe_c00432{left:775.200000px;}
.x12c_c00432{left:776.400000px;}
.xd1_c00432{left:777.450000px;}
.xf4_c00432{left:780.000000px;}
.x121_c00432{left:783.600000px;}
.x52_c00432{left:785.100000px;}
.x111_c00432{left:786.750000px;}
.x14_c00432{left:787.950000px;}
.xa7_c00432{left:793.350000px;}
.xca_c00432{left:794.400000px;}
.x6c_c00432{left:795.900000px;}
.x128_c00432{left:798.000000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws8_c00432{word-spacing:-7.708333pt;}
.ws2_c00432{word-spacing:-6.614987pt;}
.ws0_c00432{word-spacing:-5.555556pt;}
.ws5_c00432{word-spacing:-4.691358pt;}
.wsa_c00432{word-spacing:0.000000pt;}
.ws9_c00432{word-spacing:1.313131pt;}
.ws6_c00432{word-spacing:4.804805pt;}
.ws4_c00432{word-spacing:6.726727pt;}
.ws7_c00432{word-spacing:7.654321pt;}
.ws3_c00432{word-spacing:9.542484pt;}
.ws1_c00432{word-spacing:11.728395pt;}
.fs0_c00432{font-size:53.333333pt;}
.fs1_c00432{font-size:58.666667pt;}
.y0_c00432{bottom:0.000000pt;}
.y2c_c00432{bottom:138.533333pt;}
.y2b_c00432{bottom:152.666667pt;}
.y2a_c00432{bottom:166.133333pt;}
.y29_c00432{bottom:180.133333pt;}
.y28_c00432{bottom:224.000000pt;}
.y27_c00432{bottom:241.866667pt;}
.y26_c00432{bottom:259.466667pt;}
.y25_c00432{bottom:277.333333pt;}
.y24_c00432{bottom:294.666667pt;}
.y23_c00432{bottom:312.266667pt;}
.y22_c00432{bottom:330.000000pt;}
.y21_c00432{bottom:348.266667pt;}
.y20_c00432{bottom:366.133333pt;}
.y1f_c00432{bottom:383.733333pt;}
.y1e_c00432{bottom:401.600000pt;}
.y1d_c00432{bottom:419.200000pt;}
.y1c_c00432{bottom:436.533333pt;}
.y1b_c00432{bottom:454.400000pt;}
.y1a_c00432{bottom:471.066667pt;}
.y19_c00432{bottom:490.000000pt;}
.y18_c00432{bottom:507.600000pt;}
.y17_c00432{bottom:524.933333pt;}
.y16_c00432{bottom:542.800000pt;}
.y15_c00432{bottom:560.400000pt;}
.y14_c00432{bottom:578.000000pt;}
.y13_c00432{bottom:595.600000pt;}
.y12_c00432{bottom:613.466667pt;}
.y11_c00432{bottom:631.066667pt;}
.y10_c00432{bottom:648.933333pt;}
.yf_c00432{bottom:666.800000pt;}
.ye_c00432{bottom:684.400000pt;}
.yd_c00432{bottom:702.000000pt;}
.yc_c00432{bottom:719.600000pt;}
.yb_c00432{bottom:737.466667pt;}
.ya_c00432{bottom:755.333333pt;}
.y9_c00432{bottom:772.933333pt;}
.y8_c00432{bottom:790.800000pt;}
.y7_c00432{bottom:808.666667pt;}
.y6_c00432{bottom:826.266667pt;}
.y5_c00432{bottom:843.866667pt;}
.y4_c00432{bottom:861.466667pt;}
.y3_c00432{bottom:878.666667pt;}
.y2_c00432{bottom:896.933333pt;}
.y1_c00432{bottom:930.933333pt;}
.h2_c00432{height:53.333333pt;}
.h3_c00432{height:58.666667pt;}
.h1_c00432{height:1036.666667pt;}
.h0_c00432{height:1036.800049pt;}
.w0_c00432{width:818.559977pt;}
.w1_c00432{width:818.666667pt;}
.x0_c00432{left:0.000000pt;}
.x129_c00432{left:125.066667pt;}
.x78_c00432{left:126.533333pt;}
.x3_c00432{left:128.000000pt;}
.x1_c00432{left:129.333333pt;}
.x28_c00432{left:130.666667pt;}
.x8b_c00432{left:142.666667pt;}
.x53_c00432{left:146.533333pt;}
.xdd_c00432{left:148.133333pt;}
.x6d_c00432{left:149.333333pt;}
.xbf_c00432{left:151.733333pt;}
.xa8_c00432{left:152.933333pt;}
.xe3_c00432{left:153.866667pt;}
.xaa_c00432{left:154.933333pt;}
.x19_c00432{left:157.466667pt;}
.x95_c00432{left:158.800000pt;}
.x29_c00432{left:159.733333pt;}
.x15_c00432{left:160.800000pt;}
.x61_c00432{left:162.133333pt;}
.x8c_c00432{left:165.066667pt;}
.x9e_c00432{left:167.333333pt;}
.xf9_c00432{left:170.133333pt;}
.x4_c00432{left:171.200000pt;}
.x108_c00432{left:172.133333pt;}
.xde_c00432{left:174.000000pt;}
.x79_c00432{left:175.466667pt;}
.xc0_c00432{left:177.066667pt;}
.x2a_c00432{left:178.666667pt;}
.x46_c00432{left:180.933333pt;}
.x62_c00432{left:183.866667pt;}
.xff_c00432{left:185.066667pt;}
.x5_c00432{left:186.266667pt;}
.x1a_c00432{left:188.133333pt;}
.xd7_c00432{left:189.333333pt;}
.x8d_c00432{left:190.933333pt;}
.x9f_c00432{left:192.000000pt;}
.x7a_c00432{left:193.333333pt;}
.x6_c00432{left:197.200000pt;}
.xb3_c00432{left:201.066667pt;}
.xa0_c00432{left:202.933333pt;}
.xef_c00432{left:204.666667pt;}
.x2b_c00432{left:206.533333pt;}
.xa9_c00432{left:209.333333pt;}
.x63_c00432{left:210.800000pt;}
.x126_c00432{left:212.400000pt;}
.x54_c00432{left:214.666667pt;}
.x11c_c00432{left:216.133333pt;}
.xd2_c00432{left:218.133333pt;}
.x10d_c00432{left:220.400000pt;}
.xc1_c00432{left:221.866667pt;}
.x117_c00432{left:223.733333pt;}
.x39_c00432{left:225.200000pt;}
.xf0_c00432{left:227.733333pt;}
.x16_c00432{left:229.600000pt;}
.x112_c00432{left:231.466667pt;}
.x96_c00432{left:233.066667pt;}
.x1b_c00432{left:237.466667pt;}
.x7_c00432{left:239.466667pt;}
.xb4_c00432{left:240.800000pt;}
.x55_c00432{left:243.466667pt;}
.x2c_c00432{left:244.933333pt;}
.xd3_c00432{left:247.866667pt;}
.x6e_c00432{left:250.133333pt;}
.x1c_c00432{left:251.200000pt;}
.x17_c00432{left:252.666667pt;}
.xc2_c00432{left:254.533333pt;}
.x3a_c00432{left:256.266667pt;}
.x2d_c00432{left:258.400000pt;}
.xfa_c00432{left:259.466667pt;}
.x7b_c00432{left:260.800000pt;}
.x56_c00432{left:262.000000pt;}
.xba_c00432{left:263.200000pt;}
.x8_c00432{left:265.066667pt;}
.xe8_c00432{left:268.400000pt;}
.x97_c00432{left:270.133333pt;}
.x100_c00432{left:271.466667pt;}
.x1d_c00432{left:275.200000pt;}
.xf1_c00432{left:277.600000pt;}
.xc3_c00432{left:278.533333pt;}
.xa1_c00432{left:280.666667pt;}
.xd8_c00432{left:282.133333pt;}
.x8e_c00432{left:284.400000pt;}
.x18_c00432{left:286.933333pt;}
.xdf_c00432{left:288.800000pt;}
.x1e_c00432{left:290.533333pt;}
.x6f_c00432{left:292.666667pt;}
.x2e_c00432{left:296.133333pt;}
.xd9_c00432{left:297.866667pt;}
.x101_c00432{left:300.266667pt;}
.xcc_c00432{left:301.200000pt;}
.xab_c00432{left:304.666667pt;}
.xe9_c00432{left:306.133333pt;}
.x57_c00432{left:307.466667pt;}
.xc4_c00432{left:308.933333pt;}
.xa2_c00432{left:310.133333pt;}
.xda_c00432{left:311.333333pt;}
.x1f_c00432{left:313.600000pt;}
.x113_c00432{left:314.666667pt;}
.x9_c00432{left:315.600000pt;}
.x47_c00432{left:319.466667pt;}
.xb5_c00432{left:322.400000pt;}
.xe0_c00432{left:324.000000pt;}
.x70_c00432{left:326.266667pt;}
.x11d_c00432{left:327.200000pt;}
.x3b_c00432{left:328.266667pt;}
.x7c_c00432{left:329.333333pt;}
.x87_c00432{left:331.066667pt;}
.x118_c00432{left:333.866667pt;}
.x71_c00432{left:336.133333pt;}
.x20_c00432{left:337.600000pt;}
.xa_c00432{left:339.333333pt;}
.x11e_c00432{left:341.333333pt;}
.x7d_c00432{left:342.400000pt;}
.x48_c00432{left:344.133333pt;}
.xcd_c00432{left:345.466667pt;}
.x2f_c00432{left:348.666667pt;}
.x3c_c00432{left:350.000000pt;}
.xbb_c00432{left:352.800000pt;}
.x114_c00432{left:353.733333pt;}
.xfb_c00432{left:355.466667pt;}
.x72_c00432{left:356.933333pt;}
.x98_c00432{left:358.400000pt;}
.xb_c00432{left:364.933333pt;}
.x8f_c00432{left:366.666667pt;}
.xcb_c00432{left:368.266667pt;}
.x3d_c00432{left:369.200000pt;}
.x122_c00432{left:371.600000pt;}
.x21_c00432{left:372.533333pt;}
.x10e_c00432{left:373.466667pt;}
.x30_c00432{left:376.133333pt;}
.xe1_c00432{left:377.066667pt;}
.xe4_c00432{left:378.000000pt;}
.xa3_c00432{left:381.200000pt;}
.x99_c00432{left:382.666667pt;}
.x115_c00432{left:385.466667pt;}
.xc_c00432{left:387.066667pt;}
.x31_c00432{left:389.200000pt;}
.x49_c00432{left:390.266667pt;}
.xf6_c00432{left:391.333333pt;}
.x2_c00432{left:392.666667pt;}
.xbc_c00432{left:394.400000pt;}
.xfc_c00432{left:395.466667pt;}
.xce_c00432{left:397.333333pt;}
.x58_c00432{left:398.666667pt;}
.x90_c00432{left:403.200000pt;}
.xd4_c00432{left:404.400000pt;}
.x10f_c00432{left:405.733333pt;}
.xa4_c00432{left:407.733333pt;}
.x64_c00432{left:409.200000pt;}
.x73_c00432{left:410.666667pt;}
.x22_c00432{left:411.600000pt;}
.xac_c00432{left:412.533333pt;}
.x123_c00432{left:413.466667pt;}
.xc5_c00432{left:414.800000pt;}
.xea_c00432{left:419.466667pt;}
.xf5_c00432{left:421.866667pt;}
.x116_c00432{left:422.933333pt;}
.x3e_c00432{left:423.866667pt;}
.x7e_c00432{left:425.333333pt;}
.xd_c00432{left:426.400000pt;}
.xad_c00432{left:428.800000pt;}
.x12a_c00432{left:430.000000pt;}
.x88_c00432{left:431.600000pt;}
.x23_c00432{left:433.733333pt;}
.x4a_c00432{left:435.333333pt;}
.xfd_c00432{left:436.800000pt;}
.xae_c00432{left:440.000000pt;}
.x3f_c00432{left:441.466667pt;}
.xe_c00432{left:442.666667pt;}
.x7f_c00432{left:443.600000pt;}
.x65_c00432{left:445.066667pt;}
.xe5_c00432{left:446.800000pt;}
.x4b_c00432{left:448.800000pt;}
.xb6_c00432{left:450.800000pt;}
.x80_c00432{left:453.866667pt;}
.x89_c00432{left:455.866667pt;}
.x74_c00432{left:458.666667pt;}
.xf7_c00432{left:460.666667pt;}
.x124_c00432{left:462.133333pt;}
.x32_c00432{left:466.666667pt;}
.x12d_c00432{left:468.533333pt;}
.x81_c00432{left:469.600000pt;}
.x59_c00432{left:472.266667pt;}
.xb7_c00432{left:473.466667pt;}
.x109_c00432{left:474.800000pt;}
.x4c_c00432{left:476.266667pt;}
.x91_c00432{left:478.133333pt;}
.x11f_c00432{left:479.600000pt;}
.x82_c00432{left:480.533333pt;}
.x5a_c00432{left:482.533333pt;}
.xa5_c00432{left:483.866667pt;}
.x24_c00432{left:486.266667pt;}
.x102_c00432{left:490.000000pt;}
.x110_c00432{left:491.466667pt;}
.xd5_c00432{left:492.400000pt;}
.x9a_c00432{left:495.066667pt;}
.x8a_c00432{left:496.800000pt;}
.xc6_c00432{left:500.266667pt;}
.x33_c00432{left:501.600000pt;}
.xf_c00432{left:504.400000pt;}
.x12e_c00432{left:505.333333pt;}
.x40_c00432{left:507.466667pt;}
.x66_c00432{left:508.400000pt;}
.xbd_c00432{left:510.000000pt;}
.x4d_c00432{left:512.800000pt;}
.xeb_c00432{left:515.200000pt;}
.x10a_c00432{left:517.333333pt;}
.x103_c00432{left:518.533333pt;}
.x34_c00432{left:519.466667pt;}
.xe6_c00432{left:521.600000pt;}
.xaf_c00432{left:523.866667pt;}
.xf2_c00432{left:524.933333pt;}
.xc7_c00432{left:526.133333pt;}
.x92_c00432{left:528.266667pt;}
.x10_c00432{left:529.733333pt;}
.x119_c00432{left:530.800000pt;}
.x41_c00432{left:534.000000pt;}
.xfe_c00432{left:534.933333pt;}
.x83_c00432{left:535.866667pt;}
.xec_c00432{left:536.933333pt;}
.x67_c00432{left:538.800000pt;}
.x11_c00432{left:540.666667pt;}
.x9b_c00432{left:542.133333pt;}
.x5b_c00432{left:543.600000pt;}
.x25_c00432{left:544.933333pt;}
.xb0_c00432{left:547.200000pt;}
.x4e_c00432{left:549.866667pt;}
.x9c_c00432{left:552.000000pt;}
.xdb_c00432{left:553.200000pt;}
.x68_c00432{left:554.133333pt;}
.xc8_c00432{left:556.533333pt;}
.x5c_c00432{left:559.600000pt;}
.x12b_c00432{left:560.533333pt;}
.x42_c00432{left:563.466667pt;}
.xed_c00432{left:568.666667pt;}
.x10b_c00432{left:570.800000pt;}
.xdc_c00432{left:574.000000pt;}
.x84_c00432{left:578.400000pt;}
.x35_c00432{left:582.533333pt;}
.x104_c00432{left:583.600000pt;}
.x69_c00432{left:584.533333pt;}
.xcf_c00432{left:586.400000pt;}
.x5d_c00432{left:587.733333pt;}
.x4f_c00432{left:588.933333pt;}
.x12_c00432{left:591.600000pt;}
.xf8_c00432{left:593.466667pt;}
.xb8_c00432{left:594.666667pt;}
.x26_c00432{left:597.466667pt;}
.x43_c00432{left:598.666667pt;}
.x105_c00432{left:599.600000pt;}
.x9d_c00432{left:601.600000pt;}
.x75_c00432{left:603.333333pt;}
.x5e_c00432{left:605.333333pt;}
.x36_c00432{left:606.800000pt;}
.x11a_c00432{left:614.266667pt;}
.x6a_c00432{left:615.600000pt;}
.xe2_c00432{left:617.466667pt;}
.x106_c00432{left:618.800000pt;}
.xd0_c00432{left:619.733333pt;}
.xc9_c00432{left:622.666667pt;}
.x127_c00432{left:625.200000pt;}
.xe7_c00432{left:626.800000pt;}
.x37_c00432{left:629.200000pt;}
.x44_c00432{left:630.933333pt;}
.x13_c00432{left:632.266667pt;}
.x50_c00432{left:633.333333pt;}
.x5f_c00432{left:634.400000pt;}
.xb1_c00432{left:636.800000pt;}
.x11b_c00432{left:638.933333pt;}
.xee_c00432{left:640.666667pt;}
.x93_c00432{left:642.266667pt;}
.x10c_c00432{left:643.733333pt;}
.x107_c00432{left:645.333333pt;}
.xd6_c00432{left:646.666667pt;}
.x76_c00432{left:648.133333pt;}
.x120_c00432{left:651.066667pt;}
.xb2_c00432{left:652.133333pt;}
.x38_c00432{left:653.466667pt;}
.x85_c00432{left:657.200000pt;}
.x27_c00432{left:660.533333pt;}
.xf3_c00432{left:662.666667pt;}
.x45_c00432{left:663.866667pt;}
.xb9_c00432{left:666.400000pt;}
.x60_c00432{left:667.733333pt;}
.xa6_c00432{left:669.733333pt;}
.x6b_c00432{left:671.333333pt;}
.x86_c00432{left:673.466667pt;}
.x51_c00432{left:676.800000pt;}
.x77_c00432{left:679.200000pt;}
.x125_c00432{left:685.200000pt;}
.x94_c00432{left:687.733333pt;}
.xbe_c00432{left:689.066667pt;}
.x12c_c00432{left:690.133333pt;}
.xd1_c00432{left:691.066667pt;}
.xf4_c00432{left:693.333333pt;}
.x121_c00432{left:696.533333pt;}
.x52_c00432{left:697.866667pt;}
.x111_c00432{left:699.333333pt;}
.x14_c00432{left:700.400000pt;}
.xa7_c00432{left:705.200000pt;}
.xca_c00432{left:706.133333pt;}
.x6c_c00432{left:707.466667pt;}
.x128_c00432{left:709.333333pt;}
}





/* 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_c00433 {
    display:none;
  }
  .loading-indicator_c00433.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00433 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_c00433 { 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_c00433" -> "#page-container .classname_c00433")
 */
.pf_c00433 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00433 { /* 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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00433 { /* 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_c00433 { /* 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_c00433 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00433 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00433 {overflow:visible;}
  }
}
.c_c00433 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00433 { /* 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_c00433:after { /* webkit #35443 */
  content: '';
}
.t_c00433:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00433 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 */
}
.__c00433 { /* 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_c00433 { /* info for Javascript */
  display:none;
}
.l_c00433 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00433 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00433 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00433: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_c00433 {
    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_c00433.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00433.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_c00433 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00433{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.000000;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;}
.m18_c00433{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00433{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m40_c00433{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m75_c00433{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00433{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m69_c00433{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00433{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m80_c00433{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m39_c00433{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m65_c00433{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mae_c00433{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00433{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00433{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m60_c00433{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m83_c00433{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00433{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m97_c00433{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m62_c00433{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00433{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m51_c00433{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00433{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00433{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00433{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00433{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00433{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m84_c00433{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m23_c00433{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m92_c00433{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00433{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00433{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m20_c00433{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00433{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00433{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00433{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00433{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00433{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mab_c00433{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m2_c00433{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00433{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00433{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00433{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.md_c00433{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m86_c00433{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m73_c00433{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m70_c00433{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m38_c00433{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mac_c00433{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00433{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00433{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m16_c00433{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00433{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.maa_c00433{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m33_c00433{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m79_c00433{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00433{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.ma_c00433{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00433{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m59_c00433{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00433{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m94_c00433{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m64_c00433{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m72_c00433{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m82_c00433{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m85_c00433{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m96_c00433{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m91_c00433{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m89_c00433{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00433{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m21_c00433{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00433{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m90_c00433{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00433{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00433{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m32_c00433{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00433{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00433{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m81_c00433{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m61_c00433{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m14_c00433{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.mad_c00433{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00433{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m56_c00433{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m28_c00433{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00433{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m49_c00433{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m63_c00433{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m10_c00433{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m15_c00433{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m87_c00433{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m27_c00433{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00433{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m76_c00433{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me_c00433{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m52_c00433{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00433{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m44_c00433{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m45_c00433{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00433{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m13_c00433{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00433{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m74_c00433{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11_c00433{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m43_c00433{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m48_c00433{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00433{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m41_c00433{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m47_c00433{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00433{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3_c00433{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00433{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m12_c00433{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m17_c00433{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00433{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00433{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m9_c00433{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m31_c00433{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00433{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m71_c00433{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m53_c00433{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m93_c00433{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00433{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m58_c00433{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m55_c00433{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00433{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00433{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m67_c00433{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m35_c00433{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m37_c00433{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00433{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m50_c00433{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00433{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m66_c00433{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m95_c00433{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00433{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m36_c00433{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m6_c00433{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m0_c00433{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00433{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);}
.m77_c00433{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mc_c00433{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00433{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m46_c00433{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00433{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00433{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m25_c00433{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00433{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m88_c00433{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8_c00433{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00433{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m19_c00433{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00433{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m30_c00433{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m22_c00433{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00433{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00433{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m98_c00433{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m42_c00433{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m26_c00433{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00433{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00433{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00433{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m54_c00433{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00433{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1_c00433{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00433{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4_c00433{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m34_c00433{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00433{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m68_c00433{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m5_c00433{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00433{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.maf_c00433{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m29_c00433{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00433{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m57_c00433{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m99_c00433{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00433{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{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__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00433{word-spacing:-10.138889px;}
.ws1_c00433{word-spacing:-8.750000px;}
.ws7_c00433{word-spacing:-7.500000px;}
.ws8_c00433{word-spacing:-4.736842px;}
.ws5_c00433{word-spacing:-2.410714px;}
.ws9_c00433{word-spacing:0.000000px;}
.ws6_c00433{word-spacing:4.861111px;}
.ws4_c00433{word-spacing:7.500000px;}
.ws0_c00433{word-spacing:8.571429px;}
.ws2_c00433{word-spacing:22.962963px;}
.fc0_c00433{color:transparent;}
.fs1_c00433{font-size:54.000000px;}
.fs0_c00433{font-size:60.000000px;}
.y0_c00433{bottom:0.000000px;}
.y2d_c00433{bottom:130.350000px;}
.y2c_c00433{bottom:149.100000px;}
.y2b_c00433{bottom:164.550000px;}
.y2a_c00433{bottom:180.750000px;}
.y29_c00433{bottom:210.150000px;}
.y28_c00433{bottom:230.700000px;}
.y27_c00433{bottom:250.500000px;}
.y26_c00433{bottom:270.300000px;}
.y25_c00433{bottom:299.100000px;}
.y24_c00433{bottom:318.600000px;}
.y23_c00433{bottom:338.400000px;}
.y22_c00433{bottom:358.500000px;}
.y21_c00433{bottom:378.000000px;}
.y20_c00433{bottom:397.800000px;}
.y1f_c00433{bottom:417.600000px;}
.y1e_c00433{bottom:437.700000px;}
.y1d_c00433{bottom:466.350000px;}
.y1c_c00433{bottom:486.450000px;}
.y1b_c00433{bottom:506.250000px;}
.y1a_c00433{bottom:526.050000px;}
.y19_c00433{bottom:545.850000px;}
.y18_c00433{bottom:565.650000px;}
.y17_c00433{bottom:585.750000px;}
.y16_c00433{bottom:605.700000px;}
.y15_c00433{bottom:625.800000px;}
.y14_c00433{bottom:645.900000px;}
.y13_c00433{bottom:665.700000px;}
.y12_c00433{bottom:685.800000px;}
.y11_c00433{bottom:705.600000px;}
.y10_c00433{bottom:725.400000px;}
.yf_c00433{bottom:745.500000px;}
.ye_c00433{bottom:765.600000px;}
.yd_c00433{bottom:785.400000px;}
.yc_c00433{bottom:805.200000px;}
.yb_c00433{bottom:825.000000px;}
.ya_c00433{bottom:845.100000px;}
.y9_c00433{bottom:864.900000px;}
.y8_c00433{bottom:884.700000px;}
.y7_c00433{bottom:904.800000px;}
.y6_c00433{bottom:924.600000px;}
.y5_c00433{bottom:944.700000px;}
.y4_c00433{bottom:964.500000px;}
.y3_c00433{bottom:984.600000px;}
.y2_c00433{bottom:1004.400000px;}
.y1_c00433{bottom:1041.900000px;}
.h3_c00433{height:54.000000px;}
.h2_c00433{height:60.000000px;}
.h1_c00433{height:1166.250000px;}
.h0_c00433{height:1166.400056px;}
.w0_c00433{width:920.879975px;}
.w1_c00433{width:921.000000px;}
.x0_c00433{left:0.000000px;}
.x3_c00433{left:102.900000px;}
.x88_c00433{left:103.950000px;}
.xa5_c00433{left:105.300000px;}
.x104_c00433{left:107.400000px;}
.x51_c00433{left:121.050000px;}
.xb9_c00433{left:124.650000px;}
.x13_c00433{left:126.750000px;}
.xb1_c00433{left:129.450000px;}
.x35_c00433{left:132.600000px;}
.x117_c00433{left:134.550000px;}
.x92_c00433{left:135.900000px;}
.x25_c00433{left:137.850000px;}
.x6e_c00433{left:140.400000px;}
.x14_c00433{left:142.950000px;}
.x132_c00433{left:144.300000px;}
.x4_c00433{left:146.850000px;}
.xcd_c00433{left:147.900000px;}
.x5e_c00433{left:149.250000px;}
.x112_c00433{left:151.200000px;}
.xdc_c00433{left:152.700000px;}
.xbf_c00433{left:153.900000px;}
.x9d_c00433{left:155.100000px;}
.x80_c00433{left:156.900000px;}
.x136_c00433{left:159.000000px;}
.xa6_c00433{left:160.050000px;}
.x36_c00433{left:161.100000px;}
.xb2_c00433{left:162.900000px;}
.xcf_c00433{left:165.900000px;}
.x26_c00433{left:167.400000px;}
.x52_c00433{left:169.350000px;}
.xf6_c00433{left:175.200000px;}
.x12d_c00433{left:178.200000px;}
.x93_c00433{left:184.800000px;}
.x5f_c00433{left:186.750000px;}
.x47_c00433{left:188.250000px;}
.x53_c00433{left:189.450000px;}
.x5_c00433{left:192.150000px;}
.x15_c00433{left:194.100000px;}
.xa7_c00433{left:195.750000px;}
.x81_c00433{left:197.550000px;}
.x124_c00433{left:199.050000px;}
.x89_c00433{left:200.850000px;}
.xdd_c00433{left:204.150000px;}
.x37_c00433{left:206.850000px;}
.x125_c00433{left:210.150000px;}
.x9e_c00433{left:211.200000px;}
.x82_c00433{left:213.000000px;}
.xc7_c00433{left:215.400000px;}
.x6_c00433{left:217.350000px;}
.xed_c00433{left:220.050000px;}
.x12c_c00433{left:222.000000px;}
.xab_c00433{left:223.050000px;}
.x38_c00433{left:225.600000px;}
.x94_c00433{left:228.000000px;}
.x16_c00433{left:229.800000px;}
.x27_c00433{left:233.250000px;}
.xc8_c00433{left:234.450000px;}
.x60_c00433{left:236.400000px;}
.xee_c00433{left:238.350000px;}
.x75_c00433{left:241.050000px;}
.xc0_c00433{left:242.100000px;}
.xd0_c00433{left:246.150000px;}
.x95_c00433{left:248.100000px;}
.x118_c00433{left:249.450000px;}
.xde_c00433{left:251.400000px;}
.x7_c00433{left:253.050000px;}
.xc9_c00433{left:255.000000px;}
.x76_c00433{left:256.500000px;}
.x48_c00433{left:260.250000px;}
.x126_c00433{left:263.850000px;}
.x39_c00433{left:264.900000px;}
.x54_c00433{left:266.850000px;}
.xd5_c00433{left:268.650000px;}
.xef_c00433{left:270.750000px;}
.xce_c00433{left:272.550000px;}
.x83_c00433{left:275.250000px;}
.xa8_c00433{left:277.350000px;}
.x11c_c00433{left:278.700000px;}
.x28_c00433{left:280.050000px;}
.x77_c00433{left:282.450000px;}
.x55_c00433{left:284.850000px;}
.x96_c00433{left:286.650000px;}
.x49_c00433{left:288.750000px;}
.x8_c00433{left:291.900000px;}
.x17_c00433{left:294.600000px;}
.x12e_c00433{left:299.400000px;}
.x127_c00433{left:301.950000px;}
.x113_c00433{left:303.450000px;}
.x61_c00433{left:304.500000px;}
.x78_c00433{left:307.950000px;}
.xd6_c00433{left:309.300000px;}
.x29_c00433{left:312.150000px;}
.xd1_c00433{left:314.850000px;}
.x97_c00433{left:316.950000px;}
.xdf_c00433{left:318.750000px;}
.xf7_c00433{left:320.250000px;}
.x6f_c00433{left:321.450000px;}
.x62_c00433{left:325.050000px;}
.x9_c00433{left:326.400000px;}
.x18_c00433{left:328.800000px;}
.xd2_c00433{left:330.000000px;}
.x102_c00433{left:331.650000px;}
.x84_c00433{left:333.900000px;}
.x3a_c00433{left:335.850000px;}
.x120_c00433{left:337.200000px;}
.xe0_c00433{left:338.250000px;}
.x4a_c00433{left:339.900000px;}
.x63_c00433{left:342.750000px;}
.xc1_c00433{left:344.700000px;}
.xf8_c00433{left:345.750000px;}
.x70_c00433{left:346.950000px;}
.xd3_c00433{left:348.750000px;}
.xac_c00433{left:351.300000px;}
.x3b_c00433{left:353.100000px;}
.xb3_c00433{left:354.300000px;}
.x133_c00433{left:355.350000px;}
.x19_c00433{left:357.600000px;}
.x101_c00433{left:358.650000px;}
.x4b_c00433{left:359.700000px;}
.xf0_c00433{left:361.350000px;}
.x64_c00433{left:362.850000px;}
.x79_c00433{left:364.800000px;}
.xa_c00433{left:366.300000px;}
.xba_c00433{left:367.350000px;}
.x56_c00433{left:369.450000px;}
.xb4_c00433{left:371.550000px;}
.x2a_c00433{left:373.650000px;}
.x9f_c00433{left:376.800000px;}
.x3c_c00433{left:379.050000px;}
.x12f_c00433{left:381.150000px;}
.x71_c00433{left:382.650000px;}
.x128_c00433{left:384.000000px;}
.x8a_c00433{left:389.550000px;}
.x134_c00433{left:391.350000px;}
.x10d_c00433{left:394.200000px;}
.x11a_c00433{left:396.300000px;}
.x2b_c00433{left:397.350000px;}
.xf9_c00433{left:400.050000px;}
.x57_c00433{left:402.900000px;}
.x114_c00433{left:404.250000px;}
.x105_c00433{left:406.050000px;}
.xf1_c00433{left:408.450000px;}
.x1a_c00433{left:410.850000px;}
.x65_c00433{left:412.200000px;}
.x1_c00433{left:415.500000px;}
.x58_c00433{left:417.300000px;}
.xe8_c00433{left:418.350000px;}
.xe1_c00433{left:423.150000px;}
.xfa_c00433{left:425.250000px;}
.x7a_c00433{left:426.750000px;}
.xa0_c00433{left:429.000000px;}
.x11e_c00433{left:430.800000px;}
.x2c_c00433{left:432.600000px;}
.x66_c00433{left:433.800000px;}
.xc2_c00433{left:435.750000px;}
.xb_c00433{left:438.600000px;}
.x3d_c00433{left:440.250000px;}
.x121_c00433{left:442.350000px;}
.xa9_c00433{left:445.500000px;}
.x130_c00433{left:446.700000px;}
.x4c_c00433{left:450.150000px;}
.xe9_c00433{left:451.800000px;}
.x1b_c00433{left:455.550000px;}
.xc_c00433{left:458.400000px;}
.x106_c00433{left:459.750000px;}
.xd7_c00433{left:461.400000px;}
.xca_c00433{left:462.450000px;}
.x7b_c00433{left:463.500000px;}
.x67_c00433{left:465.450000px;}
.x8b_c00433{left:468.150000px;}
.x85_c00433{left:471.150000px;}
.xc3_c00433{left:473.550000px;}
.xfb_c00433{left:474.900000px;}
.x11f_c00433{left:477.300000px;}
.x7c_c00433{left:478.950000px;}
.x8c_c00433{left:480.000000px;}
.x135_c00433{left:481.050000px;}
.x2d_c00433{left:482.700000px;}
.xe2_c00433{left:488.400000px;}
.xd_c00433{left:491.100000px;}
.xb5_c00433{left:492.600000px;}
.x1c_c00433{left:494.100000px;}
.xd4_c00433{left:496.050000px;}
.x7d_c00433{left:499.500000px;}
.x72_c00433{left:501.000000px;}
.x10e_c00433{left:503.250000px;}
.x2e_c00433{left:504.300000px;}
.xfc_c00433{left:505.800000px;}
.x98_c00433{left:507.000000px;}
.xe3_c00433{left:508.500000px;}
.x3e_c00433{left:510.450000px;}
.x1d_c00433{left:513.150000px;}
.x122_c00433{left:515.550000px;}
.xad_c00433{left:518.550000px;}
.x11d_c00433{left:520.950000px;}
.x3f_c00433{left:522.000000px;}
.xf2_c00433{left:525.900000px;}
.x86_c00433{left:530.550000px;}
.x115_c00433{left:531.750000px;}
.x4d_c00433{left:534.000000px;}
.x68_c00433{left:535.350000px;}
.x59_c00433{left:536.400000px;}
.xd8_c00433{left:537.450000px;}
.x1e_c00433{left:539.100000px;}
.x40_c00433{left:540.300000px;}
.x10b_c00433{left:542.550000px;}
.x8d_c00433{left:543.750000px;}
.x10f_c00433{left:545.700000px;}
.xa1_c00433{left:548.550000px;}
.xe_c00433{left:549.750000px;}
.xaa_c00433{left:551.700000px;}
.xc4_c00433{left:553.350000px;}
.x41_c00433{left:555.000000px;}
.xae_c00433{left:556.650000px;}
.xbb_c00433{left:557.700000px;}
.x69_c00433{left:560.850000px;}
.x5a_c00433{left:562.350000px;}
.x4e_c00433{left:564.300000px;}
.x87_c00433{left:567.600000px;}
.x2f_c00433{left:569.400000px;}
.x8e_c00433{left:571.500000px;}
.x107_c00433{left:573.600000px;}
.xc5_c00433{left:581.100000px;}
.x10c_c00433{left:583.200000px;}
.x1f_c00433{left:584.400000px;}
.xf3_c00433{left:585.600000px;}
.x42_c00433{left:587.700000px;}
.x11b_c00433{left:588.900000px;}
.x8f_c00433{left:590.550000px;}
.x99_c00433{left:591.600000px;}
.x108_c00433{left:593.400000px;}
.x119_c00433{left:595.050000px;}
.xd9_c00433{left:597.300000px;}
.x30_c00433{left:598.950000px;}
.x4f_c00433{left:600.000000px;}
.x6a_c00433{left:603.750000px;}
.xbc_c00433{left:605.250000px;}
.xb6_c00433{left:606.300000px;}
.x43_c00433{left:607.500000px;}
.xaf_c00433{left:608.850000px;}
.xfd_c00433{left:610.200000px;}
.x110_c00433{left:613.350000px;}
.xa2_c00433{left:615.450000px;}
.xf_c00433{left:617.400000px;}
.x90_c00433{left:619.650000px;}
.x109_c00433{left:621.150000px;}
.x73_c00433{left:623.400000px;}
.xcb_c00433{left:624.900000px;}
.xb0_c00433{left:628.650000px;}
.x129_c00433{left:630.450000px;}
.x5b_c00433{left:632.250000px;}
.x6b_c00433{left:634.350000px;}
.xfe_c00433{left:635.700000px;}
.x9a_c00433{left:637.650000px;}
.xf4_c00433{left:639.900000px;}
.x20_c00433{left:642.000000px;}
.x7e_c00433{left:646.500000px;}
.x116_c00433{left:649.800000px;}
.xea_c00433{left:651.300000px;}
.x31_c00433{left:652.650000px;}
.xe4_c00433{left:654.600000px;}
.x74_c00433{left:657.300000px;}
.x21_c00433{left:658.950000px;}
.xff_c00433{left:663.750000px;}
.x111_c00433{left:667.050000px;}
.x50_c00433{left:668.400000px;}
.xeb_c00433{left:672.150000px;}
.x32_c00433{left:673.200000px;}
.x44_c00433{left:678.450000px;}
.x5c_c00433{left:679.800000px;}
.x100_c00433{left:682.500000px;}
.x103_c00433{left:685.200000px;}
.x22_c00433{left:687.000000px;}
.xc6_c00433{left:689.100000px;}
.xa3_c00433{left:691.050000px;}
.xe5_c00433{left:692.400000px;}
.x10_c00433{left:694.050000px;}
.x45_c00433{left:697.950000px;}
.xb7_c00433{left:699.450000px;}
.xda_c00433{left:702.450000px;}
.x12a_c00433{left:703.500000px;}
.x6c_c00433{left:704.550000px;}
.x10a_c00433{left:707.550000px;}
.xbd_c00433{left:708.600000px;}
.x5d_c00433{left:710.100000px;}
.xe6_c00433{left:712.500000px;}
.x33_c00433{left:713.550000px;}
.xa4_c00433{left:718.800000px;}
.x91_c00433{left:720.450000px;}
.xf5_c00433{left:721.650000px;}
.x46_c00433{left:724.650000px;}
.x11_c00433{left:726.150000px;}
.x9b_c00433{left:729.150000px;}
.x23_c00433{left:734.850000px;}
.xb8_c00433{left:735.900000px;}
.x34_c00433{left:737.700000px;}
.x7f_c00433{left:741.150000px;}
.x2_c00433{left:742.350000px;}
.x131_c00433{left:744.000000px;}
.x24_c00433{left:745.950000px;}
.xdb_c00433{left:747.750000px;}
.x6d_c00433{left:748.800000px;}
.x9c_c00433{left:750.450000px;}
.xec_c00433{left:752.400000px;}
.x12_c00433{left:753.900000px;}
.xbe_c00433{left:756.150000px;}
.xe7_c00433{left:758.550000px;}
.x12b_c00433{left:759.600000px;}
.x123_c00433{left:765.300000px;}
.xcc_c00433{left:768.150000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws3_c00433{word-spacing:-9.012346pt;}
.ws1_c00433{word-spacing:-7.777778pt;}
.ws7_c00433{word-spacing:-6.666667pt;}
.ws8_c00433{word-spacing:-4.210526pt;}
.ws5_c00433{word-spacing:-2.142857pt;}
.ws9_c00433{word-spacing:0.000000pt;}
.ws6_c00433{word-spacing:4.320988pt;}
.ws4_c00433{word-spacing:6.666667pt;}
.ws0_c00433{word-spacing:7.619048pt;}
.ws2_c00433{word-spacing:20.411523pt;}
.fs1_c00433{font-size:48.000000pt;}
.fs0_c00433{font-size:53.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y2d_c00433{bottom:115.866667pt;}
.y2c_c00433{bottom:132.533333pt;}
.y2b_c00433{bottom:146.266667pt;}
.y2a_c00433{bottom:160.666667pt;}
.y29_c00433{bottom:186.800000pt;}
.y28_c00433{bottom:205.066667pt;}
.y27_c00433{bottom:222.666667pt;}
.y26_c00433{bottom:240.266667pt;}
.y25_c00433{bottom:265.866667pt;}
.y24_c00433{bottom:283.200000pt;}
.y23_c00433{bottom:300.800000pt;}
.y22_c00433{bottom:318.666667pt;}
.y21_c00433{bottom:336.000000pt;}
.y20_c00433{bottom:353.600000pt;}
.y1f_c00433{bottom:371.200000pt;}
.y1e_c00433{bottom:389.066667pt;}
.y1d_c00433{bottom:414.533333pt;}
.y1c_c00433{bottom:432.400000pt;}
.y1b_c00433{bottom:450.000000pt;}
.y1a_c00433{bottom:467.600000pt;}
.y19_c00433{bottom:485.200000pt;}
.y18_c00433{bottom:502.800000pt;}
.y17_c00433{bottom:520.666667pt;}
.y16_c00433{bottom:538.400000pt;}
.y15_c00433{bottom:556.266667pt;}
.y14_c00433{bottom:574.133333pt;}
.y13_c00433{bottom:591.733333pt;}
.y12_c00433{bottom:609.600000pt;}
.y11_c00433{bottom:627.200000pt;}
.y10_c00433{bottom:644.800000pt;}
.yf_c00433{bottom:662.666667pt;}
.ye_c00433{bottom:680.533333pt;}
.yd_c00433{bottom:698.133333pt;}
.yc_c00433{bottom:715.733333pt;}
.yb_c00433{bottom:733.333333pt;}
.ya_c00433{bottom:751.200000pt;}
.y9_c00433{bottom:768.800000pt;}
.y8_c00433{bottom:786.400000pt;}
.y7_c00433{bottom:804.266667pt;}
.y6_c00433{bottom:821.866667pt;}
.y5_c00433{bottom:839.733333pt;}
.y4_c00433{bottom:857.333333pt;}
.y3_c00433{bottom:875.200000pt;}
.y2_c00433{bottom:892.800000pt;}
.y1_c00433{bottom:926.133333pt;}
.h3_c00433{height:48.000000pt;}
.h2_c00433{height:53.333333pt;}
.h1_c00433{height:1036.666667pt;}
.h0_c00433{height:1036.800049pt;}
.w0_c00433{width:818.559977pt;}
.w1_c00433{width:818.666667pt;}
.x0_c00433{left:0.000000pt;}
.x3_c00433{left:91.466667pt;}
.x88_c00433{left:92.400000pt;}
.xa5_c00433{left:93.600000pt;}
.x104_c00433{left:95.466667pt;}
.x51_c00433{left:107.600000pt;}
.xb9_c00433{left:110.800000pt;}
.x13_c00433{left:112.666667pt;}
.xb1_c00433{left:115.066667pt;}
.x35_c00433{left:117.866667pt;}
.x117_c00433{left:119.600000pt;}
.x92_c00433{left:120.800000pt;}
.x25_c00433{left:122.533333pt;}
.x6e_c00433{left:124.800000pt;}
.x14_c00433{left:127.066667pt;}
.x132_c00433{left:128.266667pt;}
.x4_c00433{left:130.533333pt;}
.xcd_c00433{left:131.466667pt;}
.x5e_c00433{left:132.666667pt;}
.x112_c00433{left:134.400000pt;}
.xdc_c00433{left:135.733333pt;}
.xbf_c00433{left:136.800000pt;}
.x9d_c00433{left:137.866667pt;}
.x80_c00433{left:139.466667pt;}
.x136_c00433{left:141.333333pt;}
.xa6_c00433{left:142.266667pt;}
.x36_c00433{left:143.200000pt;}
.xb2_c00433{left:144.800000pt;}
.xcf_c00433{left:147.466667pt;}
.x26_c00433{left:148.800000pt;}
.x52_c00433{left:150.533333pt;}
.xf6_c00433{left:155.733333pt;}
.x12d_c00433{left:158.400000pt;}
.x93_c00433{left:164.266667pt;}
.x5f_c00433{left:166.000000pt;}
.x47_c00433{left:167.333333pt;}
.x53_c00433{left:168.400000pt;}
.x5_c00433{left:170.800000pt;}
.x15_c00433{left:172.533333pt;}
.xa7_c00433{left:174.000000pt;}
.x81_c00433{left:175.600000pt;}
.x124_c00433{left:176.933333pt;}
.x89_c00433{left:178.533333pt;}
.xdd_c00433{left:181.466667pt;}
.x37_c00433{left:183.866667pt;}
.x125_c00433{left:186.800000pt;}
.x9e_c00433{left:187.733333pt;}
.x82_c00433{left:189.333333pt;}
.xc7_c00433{left:191.466667pt;}
.x6_c00433{left:193.200000pt;}
.xed_c00433{left:195.600000pt;}
.x12c_c00433{left:197.333333pt;}
.xab_c00433{left:198.266667pt;}
.x38_c00433{left:200.533333pt;}
.x94_c00433{left:202.666667pt;}
.x16_c00433{left:204.266667pt;}
.x27_c00433{left:207.333333pt;}
.xc8_c00433{left:208.400000pt;}
.x60_c00433{left:210.133333pt;}
.xee_c00433{left:211.866667pt;}
.x75_c00433{left:214.266667pt;}
.xc0_c00433{left:215.200000pt;}
.xd0_c00433{left:218.800000pt;}
.x95_c00433{left:220.533333pt;}
.x118_c00433{left:221.733333pt;}
.xde_c00433{left:223.466667pt;}
.x7_c00433{left:224.933333pt;}
.xc9_c00433{left:226.666667pt;}
.x76_c00433{left:228.000000pt;}
.x48_c00433{left:231.333333pt;}
.x126_c00433{left:234.533333pt;}
.x39_c00433{left:235.466667pt;}
.x54_c00433{left:237.200000pt;}
.xd5_c00433{left:238.800000pt;}
.xef_c00433{left:240.666667pt;}
.xce_c00433{left:242.266667pt;}
.x83_c00433{left:244.666667pt;}
.xa8_c00433{left:246.533333pt;}
.x11c_c00433{left:247.733333pt;}
.x28_c00433{left:248.933333pt;}
.x77_c00433{left:251.066667pt;}
.x55_c00433{left:253.200000pt;}
.x96_c00433{left:254.800000pt;}
.x49_c00433{left:256.666667pt;}
.x8_c00433{left:259.466667pt;}
.x17_c00433{left:261.866667pt;}
.x12e_c00433{left:266.133333pt;}
.x127_c00433{left:268.400000pt;}
.x113_c00433{left:269.733333pt;}
.x61_c00433{left:270.666667pt;}
.x78_c00433{left:273.733333pt;}
.xd6_c00433{left:274.933333pt;}
.x29_c00433{left:277.466667pt;}
.xd1_c00433{left:279.866667pt;}
.x97_c00433{left:281.733333pt;}
.xdf_c00433{left:283.333333pt;}
.xf7_c00433{left:284.666667pt;}
.x6f_c00433{left:285.733333pt;}
.x62_c00433{left:288.933333pt;}
.x9_c00433{left:290.133333pt;}
.x18_c00433{left:292.266667pt;}
.xd2_c00433{left:293.333333pt;}
.x102_c00433{left:294.800000pt;}
.x84_c00433{left:296.800000pt;}
.x3a_c00433{left:298.533333pt;}
.x120_c00433{left:299.733333pt;}
.xe0_c00433{left:300.666667pt;}
.x4a_c00433{left:302.133333pt;}
.x63_c00433{left:304.666667pt;}
.xc1_c00433{left:306.400000pt;}
.xf8_c00433{left:307.333333pt;}
.x70_c00433{left:308.400000pt;}
.xd3_c00433{left:310.000000pt;}
.xac_c00433{left:312.266667pt;}
.x3b_c00433{left:313.866667pt;}
.xb3_c00433{left:314.933333pt;}
.x133_c00433{left:315.866667pt;}
.x19_c00433{left:317.866667pt;}
.x101_c00433{left:318.800000pt;}
.x4b_c00433{left:319.733333pt;}
.xf0_c00433{left:321.200000pt;}
.x64_c00433{left:322.533333pt;}
.x79_c00433{left:324.266667pt;}
.xa_c00433{left:325.600000pt;}
.xba_c00433{left:326.533333pt;}
.x56_c00433{left:328.400000pt;}
.xb4_c00433{left:330.266667pt;}
.x2a_c00433{left:332.133333pt;}
.x9f_c00433{left:334.933333pt;}
.x3c_c00433{left:336.933333pt;}
.x12f_c00433{left:338.800000pt;}
.x71_c00433{left:340.133333pt;}
.x128_c00433{left:341.333333pt;}
.x8a_c00433{left:346.266667pt;}
.x134_c00433{left:347.866667pt;}
.x10d_c00433{left:350.400000pt;}
.x11a_c00433{left:352.266667pt;}
.x2b_c00433{left:353.200000pt;}
.xf9_c00433{left:355.600000pt;}
.x57_c00433{left:358.133333pt;}
.x114_c00433{left:359.333333pt;}
.x105_c00433{left:360.933333pt;}
.xf1_c00433{left:363.066667pt;}
.x1a_c00433{left:365.200000pt;}
.x65_c00433{left:366.400000pt;}
.x1_c00433{left:369.333333pt;}
.x58_c00433{left:370.933333pt;}
.xe8_c00433{left:371.866667pt;}
.xe1_c00433{left:376.133333pt;}
.xfa_c00433{left:378.000000pt;}
.x7a_c00433{left:379.333333pt;}
.xa0_c00433{left:381.333333pt;}
.x11e_c00433{left:382.933333pt;}
.x2c_c00433{left:384.533333pt;}
.x66_c00433{left:385.600000pt;}
.xc2_c00433{left:387.333333pt;}
.xb_c00433{left:389.866667pt;}
.x3d_c00433{left:391.333333pt;}
.x121_c00433{left:393.200000pt;}
.xa9_c00433{left:396.000000pt;}
.x130_c00433{left:397.066667pt;}
.x4c_c00433{left:400.133333pt;}
.xe9_c00433{left:401.600000pt;}
.x1b_c00433{left:404.933333pt;}
.xc_c00433{left:407.466667pt;}
.x106_c00433{left:408.666667pt;}
.xd7_c00433{left:410.133333pt;}
.xca_c00433{left:411.066667pt;}
.x7b_c00433{left:412.000000pt;}
.x67_c00433{left:413.733333pt;}
.x8b_c00433{left:416.133333pt;}
.x85_c00433{left:418.800000pt;}
.xc3_c00433{left:420.933333pt;}
.xfb_c00433{left:422.133333pt;}
.x11f_c00433{left:424.266667pt;}
.x7c_c00433{left:425.733333pt;}
.x8c_c00433{left:426.666667pt;}
.x135_c00433{left:427.600000pt;}
.x2d_c00433{left:429.066667pt;}
.xe2_c00433{left:434.133333pt;}
.xd_c00433{left:436.533333pt;}
.xb5_c00433{left:437.866667pt;}
.x1c_c00433{left:439.200000pt;}
.xd4_c00433{left:440.933333pt;}
.x7d_c00433{left:444.000000pt;}
.x72_c00433{left:445.333333pt;}
.x10e_c00433{left:447.333333pt;}
.x2e_c00433{left:448.266667pt;}
.xfc_c00433{left:449.600000pt;}
.x98_c00433{left:450.666667pt;}
.xe3_c00433{left:452.000000pt;}
.x3e_c00433{left:453.733333pt;}
.x1d_c00433{left:456.133333pt;}
.x122_c00433{left:458.266667pt;}
.xad_c00433{left:460.933333pt;}
.x11d_c00433{left:463.066667pt;}
.x3f_c00433{left:464.000000pt;}
.xf2_c00433{left:467.466667pt;}
.x86_c00433{left:471.600000pt;}
.x115_c00433{left:472.666667pt;}
.x4d_c00433{left:474.666667pt;}
.x68_c00433{left:475.866667pt;}
.x59_c00433{left:476.800000pt;}
.xd8_c00433{left:477.733333pt;}
.x1e_c00433{left:479.200000pt;}
.x40_c00433{left:480.266667pt;}
.x10b_c00433{left:482.266667pt;}
.x8d_c00433{left:483.333333pt;}
.x10f_c00433{left:485.066667pt;}
.xa1_c00433{left:487.600000pt;}
.xe_c00433{left:488.666667pt;}
.xaa_c00433{left:490.400000pt;}
.xc4_c00433{left:491.866667pt;}
.x41_c00433{left:493.333333pt;}
.xae_c00433{left:494.800000pt;}
.xbb_c00433{left:495.733333pt;}
.x69_c00433{left:498.533333pt;}
.x5a_c00433{left:499.866667pt;}
.x4e_c00433{left:501.600000pt;}
.x87_c00433{left:504.533333pt;}
.x2f_c00433{left:506.133333pt;}
.x8e_c00433{left:508.000000pt;}
.x107_c00433{left:509.866667pt;}
.xc5_c00433{left:516.533333pt;}
.x10c_c00433{left:518.400000pt;}
.x1f_c00433{left:519.466667pt;}
.xf3_c00433{left:520.533333pt;}
.x42_c00433{left:522.400000pt;}
.x11b_c00433{left:523.466667pt;}
.x8f_c00433{left:524.933333pt;}
.x99_c00433{left:525.866667pt;}
.x108_c00433{left:527.466667pt;}
.x119_c00433{left:528.933333pt;}
.xd9_c00433{left:530.933333pt;}
.x30_c00433{left:532.400000pt;}
.x4f_c00433{left:533.333333pt;}
.x6a_c00433{left:536.666667pt;}
.xbc_c00433{left:538.000000pt;}
.xb6_c00433{left:538.933333pt;}
.x43_c00433{left:540.000000pt;}
.xaf_c00433{left:541.200000pt;}
.xfd_c00433{left:542.400000pt;}
.x110_c00433{left:545.200000pt;}
.xa2_c00433{left:547.066667pt;}
.xf_c00433{left:548.800000pt;}
.x90_c00433{left:550.800000pt;}
.x109_c00433{left:552.133333pt;}
.x73_c00433{left:554.133333pt;}
.xcb_c00433{left:555.466667pt;}
.xb0_c00433{left:558.800000pt;}
.x129_c00433{left:560.400000pt;}
.x5b_c00433{left:562.000000pt;}
.x6b_c00433{left:563.866667pt;}
.xfe_c00433{left:565.066667pt;}
.x9a_c00433{left:566.800000pt;}
.xf4_c00433{left:568.800000pt;}
.x20_c00433{left:570.666667pt;}
.x7e_c00433{left:574.666667pt;}
.x116_c00433{left:577.600000pt;}
.xea_c00433{left:578.933333pt;}
.x31_c00433{left:580.133333pt;}
.xe4_c00433{left:581.866667pt;}
.x74_c00433{left:584.266667pt;}
.x21_c00433{left:585.733333pt;}
.xff_c00433{left:590.000000pt;}
.x111_c00433{left:592.933333pt;}
.x50_c00433{left:594.133333pt;}
.xeb_c00433{left:597.466667pt;}
.x32_c00433{left:598.400000pt;}
.x44_c00433{left:603.066667pt;}
.x5c_c00433{left:604.266667pt;}
.x100_c00433{left:606.666667pt;}
.x103_c00433{left:609.066667pt;}
.x22_c00433{left:610.666667pt;}
.xc6_c00433{left:612.533333pt;}
.xa3_c00433{left:614.266667pt;}
.xe5_c00433{left:615.466667pt;}
.x10_c00433{left:616.933333pt;}
.x45_c00433{left:620.400000pt;}
.xb7_c00433{left:621.733333pt;}
.xda_c00433{left:624.400000pt;}
.x12a_c00433{left:625.333333pt;}
.x6c_c00433{left:626.266667pt;}
.x10a_c00433{left:628.933333pt;}
.xbd_c00433{left:629.866667pt;}
.x5d_c00433{left:631.200000pt;}
.xe6_c00433{left:633.333333pt;}
.x33_c00433{left:634.266667pt;}
.xa4_c00433{left:638.933333pt;}
.x91_c00433{left:640.400000pt;}
.xf5_c00433{left:641.466667pt;}
.x46_c00433{left:644.133333pt;}
.x11_c00433{left:645.466667pt;}
.x9b_c00433{left:648.133333pt;}
.x23_c00433{left:653.200000pt;}
.xb8_c00433{left:654.133333pt;}
.x34_c00433{left:655.733333pt;}
.x7f_c00433{left:658.800000pt;}
.x2_c00433{left:659.866667pt;}
.x131_c00433{left:661.333333pt;}
.x24_c00433{left:663.066667pt;}
.xdb_c00433{left:664.666667pt;}
.x6d_c00433{left:665.600000pt;}
.x9c_c00433{left:667.066667pt;}
.xec_c00433{left:668.800000pt;}
.x12_c00433{left:670.133333pt;}
.xbe_c00433{left:672.133333pt;}
.xe7_c00433{left:674.266667pt;}
.x12b_c00433{left:675.200000pt;}
.x123_c00433{left:680.266667pt;}
.xcc_c00433{left:682.800000pt;}
}





/* 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_c00434 {
    display:none;
  }
  .loading-indicator_c00434.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00434 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_c00434 { 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_c00434" -> "#page-container .classname_c00434")
 */
.pf_c00434 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00434 { /* 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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00434 { /* 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_c00434 { /* 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_c00434 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00434 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00434 {overflow:visible;}
  }
}
.c_c00434 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00434 { /* 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_c00434:after { /* webkit #35443 */
  content: '';
}
.t_c00434:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00434 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 */
}
.__c00434 { /* 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_c00434 { /* info for Javascript */
  display:none;
}
.l_c00434 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00434 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00434 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00434: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_c00434 {
    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_c00434.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00434.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_c00434 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00434{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00434;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.000000;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;}
.m42_c00434{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m32_c00434{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m19_c00434{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00434{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m41_c00434{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m36_c00434{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m20_c00434{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00434{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m34_c00434{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m35_c00434{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00434{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00434{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m50_c00434{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00434{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m40_c00434{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m27_c00434{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m39_c00434{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mb_c00434{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00434{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m30_c00434{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m29_c00434{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.me_c00434{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m49_c00434{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00434{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00434{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00434{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m10_c00434{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m14_c00434{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00434{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m53_c00434{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m17_c00434{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m44_c00434{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00434{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m31_c00434{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m22_c00434{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m15_c00434{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m54_c00434{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00434{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00434{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00434{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13_c00434{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m47_c00434{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00434{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00434{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m18_c00434{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8_c00434{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mf_c00434{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00434{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m24_c00434{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m38_c00434{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00434{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00434{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m26_c00434{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m43_c00434{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m21_c00434{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m51_c00434{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.md_c00434{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m23_c00434{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00434{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc_c00434{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00434{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00434{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m12_c00434{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00434{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m48_c00434{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m25_c00434{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m46_c00434{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m45_c00434{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m52_c00434{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.ma_c00434{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00434{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m11_c00434{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00434{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m37_c00434{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m33_c00434{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00434{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1_c00434{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m3_c00434{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.v0_c00434{vertical-align:0.000000px;}
.ls0_c00434{letter-spacing:0.000000px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{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__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:-3.026316px;}
.ws5_c00434{word-spacing:0.000000px;}
.ws3_c00434{word-spacing:1.666667px;}
.ws4_c00434{word-spacing:4.074074px;}
.ws2_c00434{word-spacing:4.565217px;}
.ws1_c00434{word-spacing:19.259259px;}
.fc0_c00434{color:transparent;}
.fs0_c00434{font-size:60.000000px;}
.y0_c00434{bottom:0.000000px;}
.yc_c00434{bottom:801.600000px;}
.yb_c00434{bottom:821.700000px;}
.ya_c00434{bottom:841.800000px;}
.y9_c00434{bottom:861.600000px;}
.y8_c00434{bottom:881.700000px;}
.y7_c00434{bottom:901.200000px;}
.y6_c00434{bottom:921.000000px;}
.y5_c00434{bottom:941.100000px;}
.y4_c00434{bottom:960.900000px;}
.y3_c00434{bottom:980.700000px;}
.y2_c00434{bottom:1009.800000px;}
.y1_c00434{bottom:1048.650000px;}
.h2_c00434{height:60.000000px;}
.h1_c00434{height:1166.250000px;}
.h0_c00434{height:1166.400056px;}
.w0_c00434{width:920.879975px;}
.w1_c00434{width:921.000000px;}
.x0_c00434{left:0.000000px;}
.x46_c00434{left:153.450000px;}
.x1_c00434{left:154.500000px;}
.x3_c00434{left:185.400000px;}
.x6a_c00434{left:188.850000px;}
.x20_c00434{left:193.350000px;}
.x4_c00434{left:197.700000px;}
.x47_c00434{left:199.950000px;}
.x61_c00434{left:202.050000px;}
.x76_c00434{left:206.100000px;}
.x21_c00434{left:211.050000px;}
.x6b_c00434{left:216.600000px;}
.x5_c00434{left:221.850000px;}
.x57_c00434{left:223.350000px;}
.x48_c00434{left:228.450000px;}
.x62_c00434{left:233.400000px;}
.x77_c00434{left:237.000000px;}
.x3a_c00434{left:241.650000px;}
.x80_c00434{left:242.700000px;}
.x49_c00434{left:244.950000px;}
.x6_c00434{left:247.800000px;}
.x13_c00434{left:249.150000px;}
.x2d_c00434{left:251.400000px;}
.x63_c00434{left:253.500000px;}
.x58_c00434{left:255.000000px;}
.x6c_c00434{left:261.900000px;}
.x22_c00434{left:264.750000px;}
.x4a_c00434{left:271.200000px;}
.x3b_c00434{left:276.150000px;}
.x2e_c00434{left:277.350000px;}
.x23_c00434{left:282.000000px;}
.x7_c00434{left:290.250000px;}
.x78_c00434{left:297.450000px;}
.x3c_c00434{left:301.650000px;}
.x24_c00434{left:305.100000px;}
.x59_c00434{left:307.500000px;}
.x6d_c00434{left:315.150000px;}
.x4b_c00434{left:318.750000px;}
.x8_c00434{left:321.600000px;}
.x81_c00434{left:322.950000px;}
.x5a_c00434{left:328.050000px;}
.x64_c00434{left:331.950000px;}
.x2f_c00434{left:336.750000px;}
.x82_c00434{left:338.100000px;}
.x14_c00434{left:339.900000px;}
.x9_c00434{left:358.650000px;}
.x79_c00434{left:366.600000px;}
.x25_c00434{left:368.100000px;}
.x15_c00434{left:375.900000px;}
.x30_c00434{left:380.250000px;}
.x3d_c00434{left:384.900000px;}
.x4c_c00434{left:393.600000px;}
.x83_c00434{left:394.950000px;}
.x16_c00434{left:409.050000px;}
.x4d_c00434{left:411.300000px;}
.xa_c00434{left:413.400000px;}
.x31_c00434{left:417.750000px;}
.x6e_c00434{left:420.300000px;}
.x3e_c00434{left:427.050000px;}
.x7a_c00434{left:429.300000px;}
.xb_c00434{left:430.350000px;}
.x84_c00434{left:437.850000px;}
.x6f_c00434{left:445.500000px;}
.x5b_c00434{left:449.400000px;}
.x2_c00434{left:451.200000px;}
.xc_c00434{left:459.450000px;}
.x7b_c00434{left:462.750000px;}
.x5c_c00434{left:473.850000px;}
.x4e_c00434{left:481.200000px;}
.x7c_c00434{left:482.550000px;}
.x32_c00434{left:483.600000px;}
.x26_c00434{left:493.350000px;}
.x4f_c00434{left:498.900000px;}
.x5d_c00434{left:501.600000px;}
.x70_c00434{left:504.150000px;}
.xd_c00434{left:507.750000px;}
.x7d_c00434{left:511.050000px;}
.x17_c00434{left:515.700000px;}
.x3f_c00434{left:519.450000px;}
.x33_c00434{left:520.650000px;}
.xe_c00434{left:525.000000px;}
.x50_c00434{left:527.700000px;}
.x85_c00434{left:530.700000px;}
.x5e_c00434{left:542.700000px;}
.x71_c00434{left:549.450000px;}
.xf_c00434{left:553.800000px;}
.x7e_c00434{left:564.750000px;}
.x34_c00434{left:568.500000px;}
.x18_c00434{left:574.800000px;}
.x65_c00434{left:578.850000px;}
.x51_c00434{left:585.000000px;}
.x5f_c00434{left:586.950000px;}
.x35_c00434{left:592.950000px;}
.x27_c00434{left:596.700000px;}
.x66_c00434{left:598.650000px;}
.x10_c00434{left:599.850000px;}
.x52_c00434{left:602.700000px;}
.x72_c00434{left:612.150000px;}
.x40_c00434{left:620.700000px;}
.x28_c00434{left:622.200000px;}
.x19_c00434{left:626.700000px;}
.x36_c00434{left:628.200000px;}
.x60_c00434{left:633.450000px;}
.x11_c00434{left:634.800000px;}
.x73_c00434{left:644.250000px;}
.x41_c00434{left:649.200000px;}
.x1a_c00434{left:652.200000px;}
.x29_c00434{left:661.050000px;}
.x37_c00434{left:663.900000px;}
.x53_c00434{left:668.250000px;}
.x12_c00434{left:669.750000px;}
.x7f_c00434{left:682.050000px;}
.x54_c00434{left:688.350000px;}
.x1b_c00434{left:692.550000px;}
.x1c_c00434{left:707.700000px;}
.x74_c00434{left:709.350000px;}
.x42_c00434{left:713.700000px;}
.x2a_c00434{left:718.350000px;}
.x67_c00434{left:722.100000px;}
.x43_c00434{left:725.250000px;}
.x1d_c00434{left:732.900000px;}
.x55_c00434{left:742.350000px;}
.x2b_c00434{left:743.850000px;}
.x68_c00434{left:753.450000px;}
.x44_c00434{left:756.150000px;}
.x38_c00434{left:763.950000px;}
.x69_c00434{left:771.750000px;}
.x75_c00434{left:775.200000px;}
.x1e_c00434{left:780.450000px;}
.x56_c00434{left:783.450000px;}
.x45_c00434{left:789.600000px;}
.x1f_c00434{left:795.600000px;}
.x2c_c00434{left:798.900000px;}
.x39_c00434{left:800.250000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:-2.690058pt;}
.ws5_c00434{word-spacing:0.000000pt;}
.ws3_c00434{word-spacing:1.481481pt;}
.ws4_c00434{word-spacing:3.621399pt;}
.ws2_c00434{word-spacing:4.057971pt;}
.ws1_c00434{word-spacing:17.119342pt;}
.fs0_c00434{font-size:53.333333pt;}
.y0_c00434{bottom:0.000000pt;}
.yc_c00434{bottom:712.533333pt;}
.yb_c00434{bottom:730.400000pt;}
.ya_c00434{bottom:748.266667pt;}
.y9_c00434{bottom:765.866667pt;}
.y8_c00434{bottom:783.733333pt;}
.y7_c00434{bottom:801.066667pt;}
.y6_c00434{bottom:818.666667pt;}
.y5_c00434{bottom:836.533333pt;}
.y4_c00434{bottom:854.133333pt;}
.y3_c00434{bottom:871.733333pt;}
.y2_c00434{bottom:897.600000pt;}
.y1_c00434{bottom:932.133333pt;}
.h2_c00434{height:53.333333pt;}
.h1_c00434{height:1036.666667pt;}
.h0_c00434{height:1036.800049pt;}
.w0_c00434{width:818.559977pt;}
.w1_c00434{width:818.666667pt;}
.x0_c00434{left:0.000000pt;}
.x46_c00434{left:136.400000pt;}
.x1_c00434{left:137.333333pt;}
.x3_c00434{left:164.800000pt;}
.x6a_c00434{left:167.866667pt;}
.x20_c00434{left:171.866667pt;}
.x4_c00434{left:175.733333pt;}
.x47_c00434{left:177.733333pt;}
.x61_c00434{left:179.600000pt;}
.x76_c00434{left:183.200000pt;}
.x21_c00434{left:187.600000pt;}
.x6b_c00434{left:192.533333pt;}
.x5_c00434{left:197.200000pt;}
.x57_c00434{left:198.533333pt;}
.x48_c00434{left:203.066667pt;}
.x62_c00434{left:207.466667pt;}
.x77_c00434{left:210.666667pt;}
.x3a_c00434{left:214.800000pt;}
.x80_c00434{left:215.733333pt;}
.x49_c00434{left:217.733333pt;}
.x6_c00434{left:220.266667pt;}
.x13_c00434{left:221.466667pt;}
.x2d_c00434{left:223.466667pt;}
.x63_c00434{left:225.333333pt;}
.x58_c00434{left:226.666667pt;}
.x6c_c00434{left:232.800000pt;}
.x22_c00434{left:235.333333pt;}
.x4a_c00434{left:241.066667pt;}
.x3b_c00434{left:245.466667pt;}
.x2e_c00434{left:246.533333pt;}
.x23_c00434{left:250.666667pt;}
.x7_c00434{left:258.000000pt;}
.x78_c00434{left:264.400000pt;}
.x3c_c00434{left:268.133333pt;}
.x24_c00434{left:271.200000pt;}
.x59_c00434{left:273.333333pt;}
.x6d_c00434{left:280.133333pt;}
.x4b_c00434{left:283.333333pt;}
.x8_c00434{left:285.866667pt;}
.x81_c00434{left:287.066667pt;}
.x5a_c00434{left:291.600000pt;}
.x64_c00434{left:295.066667pt;}
.x2f_c00434{left:299.333333pt;}
.x82_c00434{left:300.533333pt;}
.x14_c00434{left:302.133333pt;}
.x9_c00434{left:318.800000pt;}
.x79_c00434{left:325.866667pt;}
.x25_c00434{left:327.200000pt;}
.x15_c00434{left:334.133333pt;}
.x30_c00434{left:338.000000pt;}
.x3d_c00434{left:342.133333pt;}
.x4c_c00434{left:349.866667pt;}
.x83_c00434{left:351.066667pt;}
.x16_c00434{left:363.600000pt;}
.x4d_c00434{left:365.600000pt;}
.xa_c00434{left:367.466667pt;}
.x31_c00434{left:371.333333pt;}
.x6e_c00434{left:373.600000pt;}
.x3e_c00434{left:379.600000pt;}
.x7a_c00434{left:381.600000pt;}
.xb_c00434{left:382.533333pt;}
.x84_c00434{left:389.200000pt;}
.x6f_c00434{left:396.000000pt;}
.x5b_c00434{left:399.466667pt;}
.x2_c00434{left:401.066667pt;}
.xc_c00434{left:408.400000pt;}
.x7b_c00434{left:411.333333pt;}
.x5c_c00434{left:421.200000pt;}
.x4e_c00434{left:427.733333pt;}
.x7c_c00434{left:428.933333pt;}
.x32_c00434{left:429.866667pt;}
.x26_c00434{left:438.533333pt;}
.x4f_c00434{left:443.466667pt;}
.x5d_c00434{left:445.866667pt;}
.x70_c00434{left:448.133333pt;}
.xd_c00434{left:451.333333pt;}
.x7d_c00434{left:454.266667pt;}
.x17_c00434{left:458.400000pt;}
.x3f_c00434{left:461.733333pt;}
.x33_c00434{left:462.800000pt;}
.xe_c00434{left:466.666667pt;}
.x50_c00434{left:469.066667pt;}
.x85_c00434{left:471.733333pt;}
.x5e_c00434{left:482.400000pt;}
.x71_c00434{left:488.400000pt;}
.xf_c00434{left:492.266667pt;}
.x7e_c00434{left:502.000000pt;}
.x34_c00434{left:505.333333pt;}
.x18_c00434{left:510.933333pt;}
.x65_c00434{left:514.533333pt;}
.x51_c00434{left:520.000000pt;}
.x5f_c00434{left:521.733333pt;}
.x35_c00434{left:527.066667pt;}
.x27_c00434{left:530.400000pt;}
.x66_c00434{left:532.133333pt;}
.x10_c00434{left:533.200000pt;}
.x52_c00434{left:535.733333pt;}
.x72_c00434{left:544.133333pt;}
.x40_c00434{left:551.733333pt;}
.x28_c00434{left:553.066667pt;}
.x19_c00434{left:557.066667pt;}
.x36_c00434{left:558.400000pt;}
.x60_c00434{left:563.066667pt;}
.x11_c00434{left:564.266667pt;}
.x73_c00434{left:572.666667pt;}
.x41_c00434{left:577.066667pt;}
.x1a_c00434{left:579.733333pt;}
.x29_c00434{left:587.600000pt;}
.x37_c00434{left:590.133333pt;}
.x53_c00434{left:594.000000pt;}
.x12_c00434{left:595.333333pt;}
.x7f_c00434{left:606.266667pt;}
.x54_c00434{left:611.866667pt;}
.x1b_c00434{left:615.600000pt;}
.x1c_c00434{left:629.066667pt;}
.x74_c00434{left:630.533333pt;}
.x42_c00434{left:634.400000pt;}
.x2a_c00434{left:638.533333pt;}
.x67_c00434{left:641.866667pt;}
.x43_c00434{left:644.666667pt;}
.x1d_c00434{left:651.466667pt;}
.x55_c00434{left:659.866667pt;}
.x2b_c00434{left:661.200000pt;}
.x68_c00434{left:669.733333pt;}
.x44_c00434{left:672.133333pt;}
.x38_c00434{left:679.066667pt;}
.x69_c00434{left:686.000000pt;}
.x75_c00434{left:689.066667pt;}
.x1e_c00434{left:693.733333pt;}
.x56_c00434{left:696.400000pt;}
.x45_c00434{left:701.866667pt;}
.x1f_c00434{left:707.200000pt;}
.x2c_c00434{left:710.133333pt;}
.x39_c00434{left:711.333333pt;}
}





/* 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_c00435 {
    display:none;
  }
  .loading-indicator_c00435.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00435 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_c00435 { 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_c00435" -> "#page-container .classname_c00435")
 */
.pf_c00435 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00435 { /* 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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00435 { /* 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_c00435 { /* 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_c00435 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00435 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00435 {overflow:visible;}
  }
}
.c_c00435 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00435 { /* 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_c00435:after { /* webkit #35443 */
  content: '';
}
.t_c00435:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00435 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 */
}
.__c00435 { /* 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_c00435 { /* info for Javascript */
  display:none;
}
.l_c00435 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00435 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00435 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00435: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_c00435 {
    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_c00435.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00435.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_c00435 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00435{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00435;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.000000;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;}
.m3_c00435{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m0_c00435{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1_c00435{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m2_c00435{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00435{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5_c00435{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4_c00435{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls0_c00435{letter-spacing:0.000000px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{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__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:0.000000px;}
.fc0_c00435{color:transparent;}
.fs0_c00435{font-size:24.000000px;}
.fs2_c00435{font-size:36.000000px;}
.fs1_c00435{font-size:48.000000px;}
.y0_c00435{bottom:0.000000px;}
.y3_c00435{bottom:74.850000px;}
.y2_c00435{bottom:100.050000px;}
.y1_c00435{bottom:615.600000px;}
.h2_c00435{height:24.000000px;}
.h4_c00435{height:36.000000px;}
.h3_c00435{height:48.000000px;}
.h1_c00435{height:1166.250000px;}
.h0_c00435{height:1166.400056px;}
.w0_c00435{width:920.879975px;}
.w1_c00435{width:921.000000px;}
.x0_c00435{left:0.000000px;}
.x4_c00435{left:77.100000px;}
.x5_c00435{left:91.800000px;}
.x3_c00435{left:115.200000px;}
.x6_c00435{left:144.750000px;}
.x7_c00435{left:211.650000px;}
.x1_c00435{left:813.600000px;}
.x2_c00435{left:831.900000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.fs0_c00435{font-size:21.333333pt;}
.fs2_c00435{font-size:32.000000pt;}
.fs1_c00435{font-size:42.666667pt;}
.y0_c00435{bottom:0.000000pt;}
.y3_c00435{bottom:66.533333pt;}
.y2_c00435{bottom:88.933333pt;}
.y1_c00435{bottom:547.200000pt;}
.h2_c00435{height:21.333333pt;}
.h4_c00435{height:32.000000pt;}
.h3_c00435{height:42.666667pt;}
.h1_c00435{height:1036.666667pt;}
.h0_c00435{height:1036.800049pt;}
.w0_c00435{width:818.559977pt;}
.w1_c00435{width:818.666667pt;}
.x0_c00435{left:0.000000pt;}
.x4_c00435{left:68.533333pt;}
.x5_c00435{left:81.600000pt;}
.x3_c00435{left:102.400000pt;}
.x6_c00435{left:128.666667pt;}
.x7_c00435{left:188.133333pt;}
.x1_c00435{left:723.200000pt;}
.x2_c00435{left:739.466667pt;}
}





/* 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_c00436 {
    display:none;
  }
  .loading-indicator_c00436.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00436 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_c00436 { 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_c00436" -> "#page-container .classname_c00436")
 */
.pf_c00436 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00436 { /* 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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00436 { /* 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_c00436 { /* 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_c00436 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00436 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00436 {overflow:visible;}
  }
}
.c_c00436 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00436 { /* 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_c00436:after { /* webkit #35443 */
  content: '';
}
.t_c00436:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00436 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 */
}
.__c00436 { /* 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_c00436 { /* info for Javascript */
  display:none;
}
.l_c00436 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00436 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00436 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00436: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_c00436 {
    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_c00436.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00436.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_c00436 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00436{font-family:sans-serif;visibility:hidden;}
.sc__c00436{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
}
.y0_c00436{bottom:0.000000px;}
.h1_c00436{height:1166.250000px;}
.h0_c00436{height:1166.400056px;}
.w0_c00436{width:920.879975px;}
.w1_c00436{width:921.000000px;}
.x0_c00436{left:0.000000px;}
@media print{
.y0_c00436{bottom:0.000000pt;}
.h1_c00436{height:1036.666667pt;}
.h0_c00436{height:1036.800049pt;}
.w0_c00436{width:818.559977pt;}
.w1_c00436{width:818.666667pt;}
.x0_c00436{left:0.000000pt;}
}





/* 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_c00437 {
    display:none;
  }
  .loading-indicator_c00437.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00437 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_c00437 { 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_c00437" -> "#page-container .classname_c00437")
 */
.pf_c00437 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00437 { /* 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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00437 { /* 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_c00437 { /* 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_c00437 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00437 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00437 {overflow:visible;}
  }
}
.c_c00437 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00437 { /* 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_c00437:after { /* webkit #35443 */
  content: '';
}
.t_c00437:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00437 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 */
}
.__c00437 { /* 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_c00437 { /* info for Javascript */
  display:none;
}
.l_c00437 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00437 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00437 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00437: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_c00437 {
    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_c00437.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00437.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_c00437 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00437{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00437;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.000000;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;}
.m22_c00437{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m34_c00437{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00437{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00437{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00437{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m76_c00437{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m94_c00437{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00437{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00437{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m24_c00437{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00437{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00437{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00437{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m80_c00437{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m72_c00437{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m75_c00437{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00437{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00437{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m35_c00437{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00437{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m32_c00437{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m87_c00437{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m90_c00437{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m70_c00437{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m48_c00437{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m58_c00437{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00437{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m98_c00437{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m97_c00437{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00437{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m42_c00437{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00437{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m57_c00437{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m91_c00437{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m77_c00437{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00437{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00437{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m25_c00437{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m19_c00437{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00437{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m99_c00437{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m96_c00437{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00437{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m52_c00437{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m63_c00437{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00437{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00437{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00437{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m68_c00437{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00437{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m23_c00437{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m74_c00437{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m44_c00437{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mc_c00437{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00437{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m67_c00437{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m83_c00437{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m71_c00437{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m59_c00437{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00437{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m84_c00437{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m18_c00437{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m16_c00437{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m30_c00437{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m28_c00437{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m78_c00437{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00437{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00437{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma_c00437{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m20_c00437{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m66_c00437{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00437{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m82_c00437{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m50_c00437{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m43_c00437{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00437{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.me_c00437{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m69_c00437{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m56_c00437{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00437{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m29_c00437{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m54_c00437{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00437{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m15_c00437{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00437{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m40_c00437{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m27_c00437{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m49_c00437{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m46_c00437{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m45_c00437{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m95_c00437{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m37_c00437{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00437{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m53_c00437{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m51_c00437{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00437{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00437{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m33_c00437{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m38_c00437{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m93_c00437{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00437{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00437{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00437{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00437{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m9_c00437{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00437{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00437{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m36_c00437{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m65_c00437{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m31_c00437{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m73_c00437{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m88_c00437{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m62_c00437{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m26_c00437{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m39_c00437{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00437{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m41_c00437{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00437{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m47_c00437{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00437{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m21_c00437{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00437{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m61_c00437{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00437{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m17_c00437{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m60_c00437{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00437{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00437{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m64_c00437{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m85_c00437{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m81_c00437{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00437{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00437{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m86_c00437{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m3_c00437{transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333500,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.361750,0.000000,0.000000,0.250000,0,0);}
.m79_c00437{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m92_c00437{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00437{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00437{vertical-align:0.000000px;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{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__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00437{word-spacing:-6.962025px;}
.ws4_c00437{word-spacing:0.000000px;}
.ws0_c00437{word-spacing:2.844828px;}
.ws2_c00437{word-spacing:6.944444px;}
.ws3_c00437{word-spacing:9.285714px;}
.fc0_c00437{color:transparent;}
.fs1_c00437{font-size:42.000000px;}
.fs2_c00437{font-size:54.000000px;}
.fs0_c00437{font-size:60.000000px;}
.y0_c00437{bottom:0.000000px;}
.y22_c00437{bottom:147.900000px;}
.y21_c00437{bottom:163.800000px;}
.y20_c00437{bottom:204.150000px;}
.y1f_c00437{bottom:223.950000px;}
.y1e_c00437{bottom:243.450000px;}
.y1d_c00437{bottom:264.000000px;}
.y1c_c00437{bottom:283.800000px;}
.y1b_c00437{bottom:303.900000px;}
.y1a_c00437{bottom:323.700000px;}
.y19_c00437{bottom:344.100000px;}
.y18_c00437{bottom:364.200000px;}
.y17_c00437{bottom:384.300000px;}
.y16_c00437{bottom:403.800000px;}
.y15_c00437{bottom:423.900000px;}
.y14_c00437{bottom:443.700000px;}
.y13_c00437{bottom:463.800000px;}
.y12_c00437{bottom:483.600000px;}
.y11_c00437{bottom:503.700000px;}
.y10_c00437{bottom:523.500000px;}
.yf_c00437{bottom:543.300000px;}
.ye_c00437{bottom:563.400000px;}
.yd_c00437{bottom:583.200000px;}
.yc_c00437{bottom:603.300000px;}
.yb_c00437{bottom:623.100000px;}
.ya_c00437{bottom:643.200000px;}
.y9_c00437{bottom:663.000000px;}
.y8_c00437{bottom:683.100000px;}
.y7_c00437{bottom:703.200000px;}
.y6_c00437{bottom:722.700000px;}
.y5_c00437{bottom:742.800000px;}
.y4_c00437{bottom:762.900000px;}
.y3_c00437{bottom:795.300000px;}
.y2_c00437{bottom:828.300000px;}
.y1_c00437{bottom:1043.700000px;}
.h3_c00437{height:42.000000px;}
.h4_c00437{height:54.000000px;}
.h2_c00437{height:60.000000px;}
.h1_c00437{height:1166.250000px;}
.h0_c00437{height:1166.400056px;}
.w0_c00437{width:920.879975px;}
.w1_c00437{width:921.000000px;}
.x0_c00437{left:0.000000px;}
.x73_c00437{left:94.350000px;}
.x50_c00437{left:95.550000px;}
.x5_c00437{left:96.900000px;}
.x107_c00437{left:112.350000px;}
.x5c_c00437{left:115.350000px;}
.xd8_c00437{left:117.000000px;}
.x21_c00437{left:124.350000px;}
.x15_c00437{left:125.400000px;}
.x30_c00437{left:127.350000px;}
.x108_c00437{left:132.900000px;}
.xa2_c00437{left:134.100000px;}
.xb2_c00437{left:136.350000px;}
.xab_c00437{left:141.300000px;}
.x5d_c00437{left:142.350000px;}
.x51_c00437{left:143.400000px;}
.x99_c00437{left:146.550000px;}
.x39_c00437{left:152.850000px;}
.xa3_c00437{left:153.900000px;}
.x22_c00437{left:156.450000px;}
.xac_c00437{left:159.300000px;}
.xeb_c00437{left:160.500000px;}
.xf1_c00437{left:161.550000px;}
.x7e_c00437{left:162.600000px;}
.x31_c00437{left:164.850000px;}
.x9a_c00437{left:166.050000px;}
.xd0_c00437{left:167.250000px;}
.xba_c00437{left:168.300000px;}
.xe2_c00437{left:169.350000px;}
.xd9_c00437{left:170.700000px;}
.xec_c00437{left:172.350000px;}
.x52_c00437{left:174.750000px;}
.x5e_c00437{left:178.650000px;}
.x6b_c00437{left:180.150000px;}
.x46_c00437{left:181.650000px;}
.xc0_c00437{left:182.700000px;}
.xc7_c00437{left:185.250000px;}
.xda_c00437{left:188.700000px;}
.x92_c00437{left:190.950000px;}
.x23_c00437{left:192.750000px;}
.x6_c00437{left:195.600000px;}
.xf2_c00437{left:199.050000px;}
.x88_c00437{left:200.550000px;}
.xbb_c00437{left:203.250000px;}
.x9b_c00437{left:206.400000px;}
.x93_c00437{left:207.900000px;}
.x32_c00437{left:209.100000px;}
.x53_c00437{left:211.050000px;}
.x3a_c00437{left:213.300000px;}
.xdb_c00437{left:215.700000px;}
.xc8_c00437{left:219.150000px;}
.x89_c00437{left:220.350000px;}
.x9c_c00437{left:221.550000px;}
.x5f_c00437{left:222.600000px;}
.xad_c00437{left:225.150000px;}
.x24_c00437{left:230.550000px;}
.x101_c00437{left:231.900000px;}
.x7_c00437{left:234.150000px;}
.xf9_c00437{left:235.200000px;}
.x3b_c00437{left:236.400000px;}
.x109_c00437{left:237.600000px;}
.xc9_c00437{left:239.700000px;}
.x74_c00437{left:240.900000px;}
.x6c_c00437{left:242.850000px;}
.x8a_c00437{left:245.850000px;}
.x9d_c00437{left:247.500000px;}
.x54_c00437{left:250.650000px;}
.xfc_c00437{left:252.000000px;}
.xae_c00437{left:253.950000px;}
.xfa_c00437{left:256.800000px;}
.xc1_c00437{left:258.000000px;}
.x16_c00437{left:259.050000px;}
.x94_c00437{left:260.100000px;}
.x33_c00437{left:262.350000px;}
.x47_c00437{left:265.200000px;}
.x3c_c00437{left:267.000000px;}
.x25_c00437{left:268.050000px;}
.xd1_c00437{left:271.050000px;}
.xa4_c00437{left:272.250000px;}
.x8_c00437{left:274.800000px;}
.x17_c00437{left:278.550000px;}
.x10a_c00437{left:281.100000px;}
.x48_c00437{left:282.900000px;}
.xdc_c00437{left:286.950000px;}
.x9_c00437{left:289.500000px;}
.xfd_c00437{left:290.850000px;}
.x60_c00437{left:292.500000px;}
.x8b_c00437{left:294.450000px;}
.xaf_c00437{left:296.400000px;}
.xd2_c00437{left:297.750000px;}
.x75_c00437{left:303.150000px;}
.x110_c00437{left:304.500000px;}
.xca_c00437{left:306.000000px;}
.x18_c00437{left:309.150000px;}
.x3d_c00437{left:310.200000px;}
.x26_c00437{left:313.350000px;}
.xed_c00437{left:318.450000px;}
.x34_c00437{left:321.000000px;}
.xc2_c00437{left:323.550000px;}
.xa_c00437{left:325.800000px;}
.xb3_c00437{left:329.400000px;}
.xe3_c00437{left:333.600000px;}
.x27_c00437{left:335.250000px;}
.x6d_c00437{left:337.350000px;}
.x10b_c00437{left:338.400000px;}
.x3e_c00437{left:341.550000px;}
.xbc_c00437{left:342.600000px;}
.x102_c00437{left:347.400000px;}
.xee_c00437{left:350.100000px;}
.x61_c00437{left:351.600000px;}
.x55_c00437{left:353.700000px;}
.x7f_c00437{left:355.650000px;}
.xf3_c00437{left:356.700000px;}
.x3f_c00437{left:358.800000px;}
.x9e_c00437{left:360.900000px;}
.xb_c00437{left:363.300000px;}
.x28_c00437{left:365.100000px;}
.xe4_c00437{left:368.100000px;}
.x56_c00437{left:374.250000px;}
.x2_c00437{left:377.700000px;}
.xb4_c00437{left:379.500000px;}
.x62_c00437{left:382.500000px;}
.x103_c00437{left:384.900000px;}
.x8c_c00437{left:386.700000px;}
.x80_c00437{left:388.050000px;}
.x4_c00437{left:390.600000px;}
.xfb_c00437{left:392.100000px;}
.x76_c00437{left:393.900000px;}
.xd3_c00437{left:395.400000px;}
.x19_c00437{left:398.400000px;}
.xfe_c00437{left:403.650000px;}
.xf4_c00437{left:405.300000px;}
.xe5_c00437{left:408.000000px;}
.x49_c00437{left:411.300000px;}
.x1_c00437{left:417.300000px;}
.xc3_c00437{left:420.750000px;}
.xb5_c00437{left:422.700000px;}
.x63_c00437{left:424.950000px;}
.xdd_c00437{left:426.600000px;}
.x81_c00437{left:429.150000px;}
.x1a_c00437{left:432.600000px;}
.xf5_c00437{left:435.150000px;}
.x10c_c00437{left:436.950000px;}
.xc_c00437{left:438.150000px;}
.x29_c00437{left:439.650000px;}
.x57_c00437{left:440.850000px;}
.x9f_c00437{left:443.400000px;}
.x6e_c00437{left:445.050000px;}
.x77_c00437{left:446.400000px;}
.xf6_c00437{left:454.950000px;}
.x95_c00437{left:458.400000px;}
.x40_c00437{left:463.200000px;}
.x3_c00437{left:464.400000px;}
.x64_c00437{left:466.350000px;}
.xb0_c00437{left:468.450000px;}
.xcb_c00437{left:469.950000px;}
.xde_c00437{left:471.900000px;}
.xbd_c00437{left:474.000000px;}
.x82_c00437{left:475.950000px;}
.xe6_c00437{left:478.950000px;}
.x1b_c00437{left:480.450000px;}
.x4a_c00437{left:481.800000px;}
.x96_c00437{left:483.900000px;}
.x2a_c00437{left:485.400000px;}
.x104_c00437{left:486.750000px;}
.x10d_c00437{left:489.450000px;}
.xd4_c00437{left:490.500000px;}
.xef_c00437{left:494.400000px;}
.x35_c00437{left:495.450000px;}
.xdf_c00437{left:496.800000px;}
.x83_c00437{left:498.600000px;}
.x65_c00437{left:500.850000px;}
.x8d_c00437{left:501.900000px;}
.x2b_c00437{left:504.900000px;}
.xc4_c00437{left:506.100000px;}
.xd_c00437{left:509.850000px;}
.xb6_c00437{left:510.900000px;}
.x6f_c00437{left:513.750000px;}
.xf7_c00437{left:515.100000px;}
.x111_c00437{left:516.450000px;}
.x36_c00437{left:520.350000px;}
.xff_c00437{left:521.400000px;}
.x78_c00437{left:526.800000px;}
.x1c_c00437{left:528.750000px;}
.xf8_c00437{left:531.000000px;}
.x41_c00437{left:533.400000px;}
.xc5_c00437{left:535.200000px;}
.x4b_c00437{left:540.900000px;}
.x100_c00437{left:542.700000px;}
.xcc_c00437{left:543.750000px;}
.x37_c00437{left:545.250000px;}
.xe_c00437{left:548.400000px;}
.xe7_c00437{left:550.950000px;}
.x105_c00437{left:557.400000px;}
.xa0_c00437{left:559.650000px;}
.x66_c00437{left:561.000000px;}
.x1d_c00437{left:562.950000px;}
.x2c_c00437{left:564.600000px;}
.xa5_c00437{left:565.650000px;}
.xe0_c00437{left:566.700000px;}
.xf_c00437{left:567.900000px;}
.x8e_c00437{left:570.300000px;}
.x84_c00437{left:571.350000px;}
.x70_c00437{left:573.150000px;}
.xcd_c00437{left:575.850000px;}
.x42_c00437{left:578.100000px;}
.xf0_c00437{left:579.150000px;}
.x2d_c00437{left:581.100000px;}
.x97_c00437{left:584.700000px;}
.x1e_c00437{left:588.450000px;}
.x8f_c00437{left:590.850000px;}
.x79_c00437{left:592.350000px;}
.xb7_c00437{left:594.150000px;}
.x43_c00437{left:595.800000px;}
.x58_c00437{left:597.150000px;}
.xa6_c00437{left:599.850000px;}
.xe8_c00437{left:602.700000px;}
.xb1_c00437{left:604.950000px;}
.x10_c00437{left:606.750000px;}
.x7a_c00437{left:608.850000px;}
.xce_c00437{left:612.150000px;}
.x4c_c00437{left:615.450000px;}
.x90_c00437{left:616.800000px;}
.x10e_c00437{left:619.350000px;}
.x11_c00437{left:620.850000px;}
.xa7_c00437{left:622.950000px;}
.x67_c00437{left:624.750000px;}
.xd5_c00437{left:628.050000px;}
.x85_c00437{left:630.750000px;}
.x1f_c00437{left:633.450000px;}
.x59_c00437{left:635.250000px;}
.x91_c00437{left:636.900000px;}
.x71_c00437{left:642.600000px;}
.x7b_c00437{left:643.800000px;}
.xd6_c00437{left:645.750000px;}
.x2e_c00437{left:649.800000px;}
.x68_c00437{left:651.750000px;}
.x12_c00437{left:653.550000px;}
.xc6_c00437{left:655.500000px;}
.x4d_c00437{left:658.950000px;}
.xbe_c00437{left:660.450000px;}
.x44_c00437{left:662.400000px;}
.xe9_c00437{left:665.250000px;}
.x38_c00437{left:666.900000px;}
.x7c_c00437{left:668.700000px;}
.x98_c00437{left:670.350000px;}
.x5a_c00437{left:672.300000px;}
.x13_c00437{left:674.850000px;}
.x2f_c00437{left:676.800000px;}
.x4e_c00437{left:680.850000px;}
.xa8_c00437{left:682.350000px;}
.x10f_c00437{left:684.150000px;}
.x69_c00437{left:687.000000px;}
.xea_c00437{left:692.550000px;}
.xb8_c00437{left:693.900000px;}
.x7d_c00437{left:694.950000px;}
.x106_c00437{left:697.500000px;}
.x6a_c00437{left:698.850000px;}
.x14_c00437{left:700.800000px;}
.xa9_c00437{left:702.150000px;}
.x86_c00437{left:704.850000px;}
.x45_c00437{left:705.900000px;}
.x4f_c00437{left:709.350000px;}
.xd7_c00437{left:712.050000px;}
.x20_c00437{left:713.700000px;}
.x72_c00437{left:727.950000px;}
.xaa_c00437{left:730.200000px;}
.xa1_c00437{left:735.300000px;}
.xe1_c00437{left:739.950000px;}
.xbf_c00437{left:741.150000px;}
.x87_c00437{left:743.400000px;}
.x5b_c00437{left:747.150000px;}
.xb9_c00437{left:751.200000px;}
.xcf_c00437{left:752.550000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws1_c00437{word-spacing:-6.188467pt;}
.ws4_c00437{word-spacing:0.000000pt;}
.ws0_c00437{word-spacing:2.528736pt;}
.ws2_c00437{word-spacing:6.172840pt;}
.ws3_c00437{word-spacing:8.253968pt;}
.fs1_c00437{font-size:37.333333pt;}
.fs2_c00437{font-size:48.000000pt;}
.fs0_c00437{font-size:53.333333pt;}
.y0_c00437{bottom:0.000000pt;}
.y22_c00437{bottom:131.466667pt;}
.y21_c00437{bottom:145.600000pt;}
.y20_c00437{bottom:181.466667pt;}
.y1f_c00437{bottom:199.066667pt;}
.y1e_c00437{bottom:216.400000pt;}
.y1d_c00437{bottom:234.666667pt;}
.y1c_c00437{bottom:252.266667pt;}
.y1b_c00437{bottom:270.133333pt;}
.y1a_c00437{bottom:287.733333pt;}
.y19_c00437{bottom:305.866667pt;}
.y18_c00437{bottom:323.733333pt;}
.y17_c00437{bottom:341.600000pt;}
.y16_c00437{bottom:358.933333pt;}
.y15_c00437{bottom:376.800000pt;}
.y14_c00437{bottom:394.400000pt;}
.y13_c00437{bottom:412.266667pt;}
.y12_c00437{bottom:429.866667pt;}
.y11_c00437{bottom:447.733333pt;}
.y10_c00437{bottom:465.333333pt;}
.yf_c00437{bottom:482.933333pt;}
.ye_c00437{bottom:500.800000pt;}
.yd_c00437{bottom:518.400000pt;}
.yc_c00437{bottom:536.266667pt;}
.yb_c00437{bottom:553.866667pt;}
.ya_c00437{bottom:571.733333pt;}
.y9_c00437{bottom:589.333333pt;}
.y8_c00437{bottom:607.200000pt;}
.y7_c00437{bottom:625.066667pt;}
.y6_c00437{bottom:642.400000pt;}
.y5_c00437{bottom:660.266667pt;}
.y4_c00437{bottom:678.133333pt;}
.y3_c00437{bottom:706.933333pt;}
.y2_c00437{bottom:736.266667pt;}
.y1_c00437{bottom:927.733333pt;}
.h3_c00437{height:37.333333pt;}
.h4_c00437{height:48.000000pt;}
.h2_c00437{height:53.333333pt;}
.h1_c00437{height:1036.666667pt;}
.h0_c00437{height:1036.800049pt;}
.w0_c00437{width:818.559977pt;}
.w1_c00437{width:818.666667pt;}
.x0_c00437{left:0.000000pt;}
.x73_c00437{left:83.866667pt;}
.x50_c00437{left:84.933333pt;}
.x5_c00437{left:86.133333pt;}
.x107_c00437{left:99.866667pt;}
.x5c_c00437{left:102.533333pt;}
.xd8_c00437{left:104.000000pt;}
.x21_c00437{left:110.533333pt;}
.x15_c00437{left:111.466667pt;}
.x30_c00437{left:113.200000pt;}
.x108_c00437{left:118.133333pt;}
.xa2_c00437{left:119.200000pt;}
.xb2_c00437{left:121.200000pt;}
.xab_c00437{left:125.600000pt;}
.x5d_c00437{left:126.533333pt;}
.x51_c00437{left:127.466667pt;}
.x99_c00437{left:130.266667pt;}
.x39_c00437{left:135.866667pt;}
.xa3_c00437{left:136.800000pt;}
.x22_c00437{left:139.066667pt;}
.xac_c00437{left:141.600000pt;}
.xeb_c00437{left:142.666667pt;}
.xf1_c00437{left:143.600000pt;}
.x7e_c00437{left:144.533333pt;}
.x31_c00437{left:146.533333pt;}
.x9a_c00437{left:147.600000pt;}
.xd0_c00437{left:148.666667pt;}
.xba_c00437{left:149.600000pt;}
.xe2_c00437{left:150.533333pt;}
.xd9_c00437{left:151.733333pt;}
.xec_c00437{left:153.200000pt;}
.x52_c00437{left:155.333333pt;}
.x5e_c00437{left:158.800000pt;}
.x6b_c00437{left:160.133333pt;}
.x46_c00437{left:161.466667pt;}
.xc0_c00437{left:162.400000pt;}
.xc7_c00437{left:164.666667pt;}
.xda_c00437{left:167.733333pt;}
.x92_c00437{left:169.733333pt;}
.x23_c00437{left:171.333333pt;}
.x6_c00437{left:173.866667pt;}
.xf2_c00437{left:176.933333pt;}
.x88_c00437{left:178.266667pt;}
.xbb_c00437{left:180.666667pt;}
.x9b_c00437{left:183.466667pt;}
.x93_c00437{left:184.800000pt;}
.x32_c00437{left:185.866667pt;}
.x53_c00437{left:187.600000pt;}
.x3a_c00437{left:189.600000pt;}
.xdb_c00437{left:191.733333pt;}
.xc8_c00437{left:194.800000pt;}
.x89_c00437{left:195.866667pt;}
.x9c_c00437{left:196.933333pt;}
.x5f_c00437{left:197.866667pt;}
.xad_c00437{left:200.133333pt;}
.x24_c00437{left:204.933333pt;}
.x101_c00437{left:206.133333pt;}
.x7_c00437{left:208.133333pt;}
.xf9_c00437{left:209.066667pt;}
.x3b_c00437{left:210.133333pt;}
.x109_c00437{left:211.200000pt;}
.xc9_c00437{left:213.066667pt;}
.x74_c00437{left:214.133333pt;}
.x6c_c00437{left:215.866667pt;}
.x8a_c00437{left:218.533333pt;}
.x9d_c00437{left:220.000000pt;}
.x54_c00437{left:222.800000pt;}
.xfc_c00437{left:224.000000pt;}
.xae_c00437{left:225.733333pt;}
.xfa_c00437{left:228.266667pt;}
.xc1_c00437{left:229.333333pt;}
.x16_c00437{left:230.266667pt;}
.x94_c00437{left:231.200000pt;}
.x33_c00437{left:233.200000pt;}
.x47_c00437{left:235.733333pt;}
.x3c_c00437{left:237.333333pt;}
.x25_c00437{left:238.266667pt;}
.xd1_c00437{left:240.933333pt;}
.xa4_c00437{left:242.000000pt;}
.x8_c00437{left:244.266667pt;}
.x17_c00437{left:247.600000pt;}
.x10a_c00437{left:249.866667pt;}
.x48_c00437{left:251.466667pt;}
.xdc_c00437{left:255.066667pt;}
.x9_c00437{left:257.333333pt;}
.xfd_c00437{left:258.533333pt;}
.x60_c00437{left:260.000000pt;}
.x8b_c00437{left:261.733333pt;}
.xaf_c00437{left:263.466667pt;}
.xd2_c00437{left:264.666667pt;}
.x75_c00437{left:269.466667pt;}
.x110_c00437{left:270.666667pt;}
.xca_c00437{left:272.000000pt;}
.x18_c00437{left:274.800000pt;}
.x3d_c00437{left:275.733333pt;}
.x26_c00437{left:278.533333pt;}
.xed_c00437{left:283.066667pt;}
.x34_c00437{left:285.333333pt;}
.xc2_c00437{left:287.600000pt;}
.xa_c00437{left:289.600000pt;}
.xb3_c00437{left:292.800000pt;}
.xe3_c00437{left:296.533333pt;}
.x27_c00437{left:298.000000pt;}
.x6d_c00437{left:299.866667pt;}
.x10b_c00437{left:300.800000pt;}
.x3e_c00437{left:303.600000pt;}
.xbc_c00437{left:304.533333pt;}
.x102_c00437{left:308.800000pt;}
.xee_c00437{left:311.200000pt;}
.x61_c00437{left:312.533333pt;}
.x55_c00437{left:314.400000pt;}
.x7f_c00437{left:316.133333pt;}
.xf3_c00437{left:317.066667pt;}
.x3f_c00437{left:318.933333pt;}
.x9e_c00437{left:320.800000pt;}
.xb_c00437{left:322.933333pt;}
.x28_c00437{left:324.533333pt;}
.xe4_c00437{left:327.200000pt;}
.x56_c00437{left:332.666667pt;}
.x2_c00437{left:335.733333pt;}
.xb4_c00437{left:337.333333pt;}
.x62_c00437{left:340.000000pt;}
.x103_c00437{left:342.133333pt;}
.x8c_c00437{left:343.733333pt;}
.x80_c00437{left:344.933333pt;}
.x4_c00437{left:347.200000pt;}
.xfb_c00437{left:348.533333pt;}
.x76_c00437{left:350.133333pt;}
.xd3_c00437{left:351.466667pt;}
.x19_c00437{left:354.133333pt;}
.xfe_c00437{left:358.800000pt;}
.xf4_c00437{left:360.266667pt;}
.xe5_c00437{left:362.666667pt;}
.x49_c00437{left:365.600000pt;}
.x1_c00437{left:370.933333pt;}
.xc3_c00437{left:374.000000pt;}
.xb5_c00437{left:375.733333pt;}
.x63_c00437{left:377.733333pt;}
.xdd_c00437{left:379.200000pt;}
.x81_c00437{left:381.466667pt;}
.x1a_c00437{left:384.533333pt;}
.xf5_c00437{left:386.800000pt;}
.x10c_c00437{left:388.400000pt;}
.xc_c00437{left:389.466667pt;}
.x29_c00437{left:390.800000pt;}
.x57_c00437{left:391.866667pt;}
.x9f_c00437{left:394.133333pt;}
.x6e_c00437{left:395.600000pt;}
.x77_c00437{left:396.800000pt;}
.xf6_c00437{left:404.400000pt;}
.x95_c00437{left:407.466667pt;}
.x40_c00437{left:411.733333pt;}
.x3_c00437{left:412.800000pt;}
.x64_c00437{left:414.533333pt;}
.xb0_c00437{left:416.400000pt;}
.xcb_c00437{left:417.733333pt;}
.xde_c00437{left:419.466667pt;}
.xbd_c00437{left:421.333333pt;}
.x82_c00437{left:423.066667pt;}
.xe6_c00437{left:425.733333pt;}
.x1b_c00437{left:427.066667pt;}
.x4a_c00437{left:428.266667pt;}
.x96_c00437{left:430.133333pt;}
.x2a_c00437{left:431.466667pt;}
.x104_c00437{left:432.666667pt;}
.x10d_c00437{left:435.066667pt;}
.xd4_c00437{left:436.000000pt;}
.xef_c00437{left:439.466667pt;}
.x35_c00437{left:440.400000pt;}
.xdf_c00437{left:441.600000pt;}
.x83_c00437{left:443.200000pt;}
.x65_c00437{left:445.200000pt;}
.x8d_c00437{left:446.133333pt;}
.x2b_c00437{left:448.800000pt;}
.xc4_c00437{left:449.866667pt;}
.xd_c00437{left:453.200000pt;}
.xb6_c00437{left:454.133333pt;}
.x6f_c00437{left:456.666667pt;}
.xf7_c00437{left:457.866667pt;}
.x111_c00437{left:459.066667pt;}
.x36_c00437{left:462.533333pt;}
.xff_c00437{left:463.466667pt;}
.x78_c00437{left:468.266667pt;}
.x1c_c00437{left:470.000000pt;}
.xf8_c00437{left:472.000000pt;}
.x41_c00437{left:474.133333pt;}
.xc5_c00437{left:475.733333pt;}
.x4b_c00437{left:480.800000pt;}
.x100_c00437{left:482.400000pt;}
.xcc_c00437{left:483.333333pt;}
.x37_c00437{left:484.666667pt;}
.xe_c00437{left:487.466667pt;}
.xe7_c00437{left:489.733333pt;}
.x105_c00437{left:495.466667pt;}
.xa0_c00437{left:497.466667pt;}
.x66_c00437{left:498.666667pt;}
.x1d_c00437{left:500.400000pt;}
.x2c_c00437{left:501.866667pt;}
.xa5_c00437{left:502.800000pt;}
.xe0_c00437{left:503.733333pt;}
.xf_c00437{left:504.800000pt;}
.x8e_c00437{left:506.933333pt;}
.x84_c00437{left:507.866667pt;}
.x70_c00437{left:509.466667pt;}
.xcd_c00437{left:511.866667pt;}
.x42_c00437{left:513.866667pt;}
.xf0_c00437{left:514.800000pt;}
.x2d_c00437{left:516.533333pt;}
.x97_c00437{left:519.733333pt;}
.x1e_c00437{left:523.066667pt;}
.x8f_c00437{left:525.200000pt;}
.x79_c00437{left:526.533333pt;}
.xb7_c00437{left:528.133333pt;}
.x43_c00437{left:529.600000pt;}
.x58_c00437{left:530.800000pt;}
.xa6_c00437{left:533.200000pt;}
.xe8_c00437{left:535.733333pt;}
.xb1_c00437{left:537.733333pt;}
.x10_c00437{left:539.333333pt;}
.x7a_c00437{left:541.200000pt;}
.xce_c00437{left:544.133333pt;}
.x4c_c00437{left:547.066667pt;}
.x90_c00437{left:548.266667pt;}
.x10e_c00437{left:550.533333pt;}
.x11_c00437{left:551.866667pt;}
.xa7_c00437{left:553.733333pt;}
.x67_c00437{left:555.333333pt;}
.xd5_c00437{left:558.266667pt;}
.x85_c00437{left:560.666667pt;}
.x1f_c00437{left:563.066667pt;}
.x59_c00437{left:564.666667pt;}
.x91_c00437{left:566.133333pt;}
.x71_c00437{left:571.200000pt;}
.x7b_c00437{left:572.266667pt;}
.xd6_c00437{left:574.000000pt;}
.x2e_c00437{left:577.600000pt;}
.x68_c00437{left:579.333333pt;}
.x12_c00437{left:580.933333pt;}
.xc6_c00437{left:582.666667pt;}
.x4d_c00437{left:585.733333pt;}
.xbe_c00437{left:587.066667pt;}
.x44_c00437{left:588.800000pt;}
.xe9_c00437{left:591.333333pt;}
.x38_c00437{left:592.800000pt;}
.x7c_c00437{left:594.400000pt;}
.x98_c00437{left:595.866667pt;}
.x5a_c00437{left:597.600000pt;}
.x13_c00437{left:599.866667pt;}
.x2f_c00437{left:601.600000pt;}
.x4e_c00437{left:605.200000pt;}
.xa8_c00437{left:606.533333pt;}
.x10f_c00437{left:608.133333pt;}
.x69_c00437{left:610.666667pt;}
.xea_c00437{left:615.600000pt;}
.xb8_c00437{left:616.800000pt;}
.x7d_c00437{left:617.733333pt;}
.x106_c00437{left:620.000000pt;}
.x6a_c00437{left:621.200000pt;}
.x14_c00437{left:622.933333pt;}
.xa9_c00437{left:624.133333pt;}
.x86_c00437{left:626.533333pt;}
.x45_c00437{left:627.466667pt;}
.x4f_c00437{left:630.533333pt;}
.xd7_c00437{left:632.933333pt;}
.x20_c00437{left:634.400000pt;}
.x72_c00437{left:647.066667pt;}
.xaa_c00437{left:649.066667pt;}
.xa1_c00437{left:653.600000pt;}
.xe1_c00437{left:657.733333pt;}
.xbf_c00437{left:658.800000pt;}
.x87_c00437{left:660.800000pt;}
.x5b_c00437{left:664.133333pt;}
.xb9_c00437{left:667.733333pt;}
.xcf_c00437{left:668.933333pt;}
}





/* 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_c00438 {
    display:none;
  }
  .loading-indicator_c00438.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00438 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_c00438 { 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_c00438" -> "#page-container .classname_c00438")
 */
.pf_c00438 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00438 { /* 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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00438 { /* 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_c00438 { /* 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_c00438 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00438 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00438 {overflow:visible;}
  }
}
.c_c00438 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00438 { /* 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_c00438:after { /* webkit #35443 */
  content: '';
}
.t_c00438:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00438 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 */
}
.__c00438 { /* 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_c00438 { /* info for Javascript */
  display:none;
}
.l_c00438 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00438 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00438 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00438: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_c00438 {
    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_c00438.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00438.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_c00438 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00438{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00438;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.000000;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;}
.m82_c00438{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00438{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.me_c00438{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.maa_c00438{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m75_c00438{transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183500,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00438{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m30_c00438{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m50_c00438{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m85_c00438{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m27_c00438{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m24_c00438{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10_c00438{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m89_c00438{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00438{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m49_c00438{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00438{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00438{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00438{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00438{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m25_c00438{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m54_c00438{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00438{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m51_c00438{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m66_c00438{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m92_c00438{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m53_c00438{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m43_c00438{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00438{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00438{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00438{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m65_c00438{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m31_c00438{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m61_c00438{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00438{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00438{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00438{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00438{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m87_c00438{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00438{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m58_c00438{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00438{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m23_c00438{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00438{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m47_c00438{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m57_c00438{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m12_c00438{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m98_c00438{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00438{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m59_c00438{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{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);}
.m7a_c00438{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m45_c00438{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00438{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m56_c00438{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00438{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00438{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m91_c00438{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m72_c00438{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m78_c00438{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00438{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m88_c00438{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m71_c00438{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00438{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m42_c00438{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls0_c00438{letter-spacing:0.000000px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{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__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00438{word-spacing:-10.138889px;}
.ws5_c00438{word-spacing:-6.904762px;}
.ws7_c00438{word-spacing:0.000000px;}
.ws4_c00438{word-spacing:3.055556px;}
.ws0_c00438{word-spacing:7.058824px;}
.ws3_c00438{word-spacing:13.055556px;}
.ws2_c00438{word-spacing:17.469880px;}
.ws6_c00438{word-spacing:20.000000px;}
.fc0_c00438{color:transparent;}
.fs0_c00438{font-size:60.000000px;}
.y0_c00438{bottom:0.000000px;}
.y2c_c00438{bottom:164.100000px;}
.y2b_c00438{bottom:180.000000px;}
.y2a_c00438{bottom:216.900000px;}
.y29_c00438{bottom:237.000000px;}
.y28_c00438{bottom:256.500000px;}
.y27_c00438{bottom:276.600000px;}
.y26_c00438{bottom:296.400000px;}
.y25_c00438{bottom:316.200000px;}
.y24_c00438{bottom:336.300000px;}
.y23_c00438{bottom:356.100000px;}
.y22_c00438{bottom:375.900000px;}
.y21_c00438{bottom:396.150000px;}
.y20_c00438{bottom:415.950000px;}
.y1f_c00438{bottom:436.050000px;}
.y1e_c00438{bottom:455.850000px;}
.y1d_c00438{bottom:475.650000px;}
.y1c_c00438{bottom:495.750000px;}
.y1b_c00438{bottom:515.250000px;}
.y1a_c00438{bottom:535.050000px;}
.y19_c00438{bottom:554.850000px;}
.y18_c00438{bottom:574.950000px;}
.y17_c00438{bottom:594.750000px;}
.y16_c00438{bottom:614.850000px;}
.y15_c00438{bottom:634.650000px;}
.y14_c00438{bottom:654.750000px;}
.y13_c00438{bottom:674.850000px;}
.y12_c00438{bottom:694.950000px;}
.y11_c00438{bottom:714.750000px;}
.y10_c00438{bottom:734.550000px;}
.yf_c00438{bottom:754.650000px;}
.ye_c00438{bottom:774.450000px;}
.yd_c00438{bottom:794.550000px;}
.yc_c00438{bottom:814.650000px;}
.yb_c00438{bottom:834.150000px;}
.ya_c00438{bottom:854.250000px;}
.y9_c00438{bottom:874.200000px;}
.y8_c00438{bottom:894.000000px;}
.y7_c00438{bottom:914.100000px;}
.y6_c00438{bottom:933.900000px;}
.y5_c00438{bottom:954.000000px;}
.y4_c00438{bottom:973.800000px;}
.y3_c00438{bottom:993.600000px;}
.y2_c00438{bottom:1013.400000px;}
.y1_c00438{bottom:1051.950000px;}
.h2_c00438{height:60.000000px;}
.h1_c00438{height:1166.250000px;}
.h0_c00438{height:1166.400056px;}
.w0_c00438{width:920.879975px;}
.w1_c00438{width:921.000000px;}
.x0_c00438{left:0.000000px;}
.x105_c00438{left:146.700000px;}
.xd6_c00438{left:147.900000px;}
.x83_c00438{left:150.150000px;}
.x3_c00438{left:151.200000px;}
.x1_c00438{left:153.000000px;}
.xec_c00438{left:165.750000px;}
.x59_c00438{left:168.300000px;}
.x13_c00438{left:169.950000px;}
.x97_c00438{left:174.900000px;}
.x33_c00438{left:177.300000px;}
.xca_c00438{left:179.700000px;}
.x70_c00438{left:181.500000px;}
.x123_c00438{left:185.850000px;}
.x8d_c00438{left:188.850000px;}
.x14_c00438{left:191.250000px;}
.x27_c00438{left:192.900000px;}
.x67_c00438{left:196.800000px;}
.xf5_c00438{left:199.200000px;}
.x98_c00438{left:203.400000px;}
.x10e_c00438{left:205.200000px;}
.xcb_c00438{left:207.000000px;}
.x120_c00438{left:208.350000px;}
.x41_c00438{left:210.150000px;}
.x4_c00438{left:211.650000px;}
.xb0_c00438{left:213.900000px;}
.x15_c00438{left:216.450000px;}
.x84_c00438{left:218.250000px;}
.x102_c00438{left:223.800000px;}
.x28_c00438{left:225.600000px;}
.x8e_c00438{left:227.400000px;}
.x42_c00438{left:230.250000px;}
.x5_c00438{left:231.750000px;}
.xe8_c00438{left:234.450000px;}
.x99_c00438{left:236.850000px;}
.x68_c00438{left:238.950000px;}
.xb9_c00438{left:240.300000px;}
.x114_c00438{left:241.950000px;}
.x7a_c00438{left:243.300000px;}
.x16_c00438{left:245.550000px;}
.x71_c00438{left:246.600000px;}
.xcc_c00438{left:248.100000px;}
.xfc_c00438{left:250.200000px;}
.xd7_c00438{left:252.000000px;}
.xd1_c00438{left:253.050000px;}
.x121_c00438{left:254.100000px;}
.x9a_c00438{left:255.600000px;}
.xa9_c00438{left:258.450000px;}
.x34_c00438{left:260.100000px;}
.x17_c00438{left:265.050000px;}
.x5a_c00438{left:270.900000px;}
.xc7_c00438{left:272.700000px;}
.xb1_c00438{left:277.650000px;}
.xed_c00438{left:279.750000px;}
.x9b_c00438{left:280.800000px;}
.xa3_c00438{left:282.900000px;}
.xf6_c00438{left:284.850000px;}
.x35_c00438{left:287.100000px;}
.x18_c00438{left:290.550000px;}
.xc8_c00438{left:291.750000px;}
.x10c_c00438{left:294.450000px;}
.x85_c00438{left:296.250000px;}
.xb2_c00438{left:298.200000px;}
.xee_c00438{left:301.050000px;}
.x10f_c00438{left:303.150000px;}
.x6_c00438{left:305.250000px;}
.xfd_c00438{left:306.750000px;}
.x7b_c00438{left:308.100000px;}
.xd8_c00438{left:310.350000px;}
.x36_c00438{left:312.600000px;}
.x43_c00438{left:313.800000px;}
.x7_c00438{left:317.550000px;}
.x5b_c00438{left:319.050000px;}
.x29_c00438{left:321.000000px;}
.xfe_c00438{left:322.950000px;}
.x12c_c00438{left:325.800000px;}
.x37_c00438{left:327.000000px;}
.x72_c00438{left:328.050000px;}
.x11b_c00438{left:331.050000px;}
.xef_c00438{left:332.400000px;}
.x19_c00438{left:333.750000px;}
.x118_c00438{left:336.600000px;}
.x86_c00438{left:339.450000px;}
.x44_c00438{left:342.600000px;}
.x50_c00438{left:343.650000px;}
.x9c_c00438{left:345.300000px;}
.x2a_c00438{left:346.500000px;}
.xf0_c00438{left:352.500000px;}
.xe9_c00438{left:355.050000px;}
.xcd_c00438{left:356.100000px;}
.x87_c00438{left:357.450000px;}
.x69_c00438{left:358.800000px;}
.xd2_c00438{left:361.800000px;}
.x115_c00438{left:364.350000px;}
.x1a_c00438{left:368.250000px;}
.xf1_c00438{left:370.800000px;}
.x38_c00438{left:372.750000px;}
.x8f_c00438{left:375.300000px;}
.x10d_c00438{left:377.250000px;}
.xaa_c00438{left:378.300000px;}
.xd3_c00438{left:380.100000px;}
.x2b_c00438{left:383.250000px;}
.xba_c00438{left:384.750000px;}
.x45_c00438{left:387.300000px;}
.x7c_c00438{left:388.800000px;}
.x5c_c00438{left:391.800000px;}
.x1b_c00438{left:393.450000px;}
.xea_c00438{left:395.400000px;}
.x51_c00438{left:396.900000px;}
.x8_c00438{left:398.850000px;}
.x12d_c00438{left:402.450000px;}
.xbb_c00438{left:403.500000px;}
.xe4_c00438{left:405.300000px;}
.xdf_c00438{left:407.100000px;}
.x73_c00438{left:408.300000px;}
.xff_c00438{left:411.150000px;}
.x6a_c00438{left:414.900000px;}
.x9_c00438{left:416.550000px;}
.x90_c00438{left:419.250000px;}
.xab_c00438{left:423.000000px;}
.x88_c00438{left:424.050000px;}
.x46_c00438{left:425.400000px;}
.x7d_c00438{left:426.600000px;}
.x1c_c00438{left:429.450000px;}
.xa4_c00438{left:430.500000px;}
.x52_c00438{left:432.150000px;}
.xe5_c00438{left:433.350000px;}
.x6b_c00438{left:434.700000px;}
.x2c_c00438{left:436.950000px;}
.xc2_c00438{left:438.600000px;}
.x74_c00438{left:441.750000px;}
.x124_c00438{left:442.800000px;}
.xa_c00438{left:444.300000px;}
.x12e_c00438{left:445.350000px;}
.x1d_c00438{left:446.400000px;}
.x9d_c00438{left:448.650000px;}
.x2_c00438{left:449.700000px;}
.xc9_c00438{left:451.200000px;}
.xf7_c00438{left:453.000000px;}
.x53_c00438{left:457.650000px;}
.x110_c00438{left:459.000000px;}
.xb3_c00438{left:460.500000px;}
.x5d_c00438{left:461.700000px;}
.xa5_c00438{left:465.450000px;}
.x130_c00438{left:466.500000px;}
.x47_c00438{left:469.350000px;}
.x1e_c00438{left:471.600000px;}
.xc3_c00438{left:473.100000px;}
.x7e_c00438{left:474.900000px;}
.xbc_c00438{left:477.600000px;}
.x9e_c00438{left:482.550000px;}
.x11c_c00438{left:485.100000px;}
.x6c_c00438{left:487.200000px;}
.x39_c00438{left:489.750000px;}
.xd9_c00438{left:491.100000px;}
.x2d_c00438{left:493.050000px;}
.x127_c00438{left:494.850000px;}
.xb_c00438{left:496.500000px;}
.x54_c00438{left:498.750000px;}
.x75_c00438{left:500.850000px;}
.x116_c00438{left:502.500000px;}
.xd4_c00438{left:503.850000px;}
.x7f_c00438{left:507.000000px;}
.x12a_c00438{left:508.950000px;}
.xe0_c00438{left:511.050000px;}
.x6d_c00438{left:513.150000px;}
.x100_c00438{left:514.650000px;}
.x91_c00438{left:516.450000px;}
.x5e_c00438{left:519.000000px;}
.x3a_c00438{left:520.650000px;}
.x89_c00438{left:522.000000px;}
.x76_c00438{left:523.950000px;}
.xac_c00438{left:525.600000px;}
.xc_c00438{left:527.100000px;}
.xb4_c00438{left:528.150000px;}
.x5f_c00438{left:530.100000px;}
.x6e_c00438{left:531.150000px;}
.x1f_c00438{left:532.800000px;}
.x3b_c00438{left:540.150000px;}
.x9f_c00438{left:541.200000px;}
.x11d_c00438{left:543.000000px;}
.xd_c00438{left:545.100000px;}
.x48_c00438{left:548.250000px;}
.xbd_c00438{left:550.650000px;}
.xad_c00438{left:552.300000px;}
.xce_c00438{left:556.650000px;}
.x55_c00438{left:558.450000px;}
.x6f_c00438{left:560.250000px;}
.x12f_c00438{left:562.350000px;}
.x49_c00438{left:563.700000px;}
.x92_c00438{left:565.800000px;}
.xc4_c00438{left:566.850000px;}
.xe6_c00438{left:568.050000px;}
.xe1_c00438{left:570.150000px;}
.xf8_c00438{left:572.850000px;}
.x8a_c00438{left:576.300000px;}
.x20_c00438{left:577.800000px;}
.x106_c00438{left:579.900000px;}
.x2e_c00438{left:581.250000px;}
.xcf_c00438{left:583.350000px;}
.x3c_c00438{left:584.850000px;}
.x80_c00438{left:587.250000px;}
.x21_c00438{left:588.900000px;}
.x4a_c00438{left:591.000000px;}
.x77_c00438{left:592.350000px;}
.x93_c00438{left:593.850000px;}
.x60_c00438{left:596.250000px;}
.x111_c00438{left:599.700000px;}
.x11e_c00438{left:603.900000px;}
.xda_c00438{left:606.300000px;}
.x3d_c00438{left:609.300000px;}
.xe_c00438{left:610.650000px;}
.x12b_c00438{left:612.000000px;}
.x119_c00438{left:613.500000px;}
.xa0_c00438{left:615.000000px;}
.x128_c00438{left:616.500000px;}
.xa6_c00438{left:618.150000px;}
.x107_c00438{left:619.200000px;}
.x22_c00438{left:620.550000px;}
.xe2_c00438{left:622.050000px;}
.xdb_c00438{left:624.600000px;}
.xf_c00438{left:630.450000px;}
.x2f_c00438{left:633.750000px;}
.x3e_c00438{left:636.000000px;}
.xd5_c00438{left:638.100000px;}
.xbe_c00438{left:639.150000px;}
.x81_c00438{left:640.500000px;}
.xa1_c00438{left:643.500000px;}
.x4b_c00438{left:647.850000px;}
.xf2_c00438{left:649.950000px;}
.x108_c00438{left:651.000000px;}
.x23_c00438{left:652.650000px;}
.xae_c00438{left:653.850000px;}
.x10_c00438{left:655.950000px;}
.xf9_c00438{left:658.050000px;}
.xb5_c00438{left:659.550000px;}
.x112_c00438{left:660.600000px;}
.xd0_c00438{left:661.800000px;}
.xbf_c00438{left:665.400000px;}
.xaf_c00438{left:666.450000px;}
.x4c_c00438{left:668.400000px;}
.xf3_c00438{left:670.050000px;}
.x61_c00438{left:673.950000px;}
.x125_c00438{left:675.000000px;}
.x78_c00438{left:676.950000px;}
.xc5_c00438{left:678.150000px;}
.x56_c00438{left:679.500000px;}
.x94_c00438{left:684.600000px;}
.x103_c00438{left:686.250000px;}
.x122_c00438{left:687.300000px;}
.xfa_c00438{left:688.350000px;}
.x82_c00438{left:689.850000px;}
.xdc_c00438{left:691.200000px;}
.xa7_c00438{left:692.250000px;}
.xb6_c00438{left:694.050000px;}
.x11_c00438{left:696.300000px;}
.x30_c00438{left:698.850000px;}
.x62_c00438{left:702.750000px;}
.x95_c00438{left:704.100000px;}
.x4d_c00438{left:706.200000px;}
.xe7_c00438{left:708.900000px;}
.xc0_c00438{left:711.450000px;}
.x57_c00438{left:714.450000px;}
.x31_c00438{left:717.600000px;}
.xb7_c00438{left:719.550000px;}
.x11f_c00438{left:721.650000px;}
.x8b_c00438{left:724.800000px;}
.xa2_c00438{left:726.000000px;}
.x3f_c00438{left:728.850000px;}
.x109_c00438{left:730.200000px;}
.x96_c00438{left:732.600000px;}
.xa8_c00438{left:735.450000px;}
.x63_c00438{left:737.700000px;}
.x79_c00438{left:739.200000px;}
.x113_c00438{left:741.300000px;}
.x12_c00438{left:742.350000px;}
.x24_c00438{left:745.650000px;}
.x64_c00438{left:750.000000px;}
.x126_c00438{left:752.400000px;}
.x58_c00438{left:755.850000px;}
.xb8_c00438{left:757.050000px;}
.x104_c00438{left:759.000000px;}
.x10a_c00438{left:760.800000px;}
.xf4_c00438{left:761.850000px;}
.xeb_c00438{left:763.350000px;}
.x11a_c00438{left:764.850000px;}
.xdd_c00438{left:766.500000px;}
.x101_c00438{left:767.850000px;}
.xe3_c00438{left:769.500000px;}
.x8c_c00438{left:774.900000px;}
.x65_c00438{left:776.700000px;}
.x25_c00438{left:779.550000px;}
.x32_c00438{left:781.800000px;}
.x4e_c00438{left:783.600000px;}
.xfb_c00438{left:787.050000px;}
.xc1_c00438{left:788.100000px;}
.x10b_c00438{left:790.350000px;}
.x129_c00438{left:791.850000px;}
.x40_c00438{left:793.650000px;}
.xc6_c00438{left:796.200000px;}
.x26_c00438{left:797.250000px;}
.xde_c00438{left:799.200000px;}
.x117_c00438{left:800.250000px;}
.x4f_c00438{left:801.900000px;}
.x66_c00438{left:810.150000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws1_c00438{word-spacing:-9.012346pt;}
.ws5_c00438{word-spacing:-6.137566pt;}
.ws7_c00438{word-spacing:0.000000pt;}
.ws4_c00438{word-spacing:2.716049pt;}
.ws0_c00438{word-spacing:6.274510pt;}
.ws3_c00438{word-spacing:11.604938pt;}
.ws2_c00438{word-spacing:15.528782pt;}
.ws6_c00438{word-spacing:17.777778pt;}
.fs0_c00438{font-size:53.333333pt;}
.y0_c00438{bottom:0.000000pt;}
.y2c_c00438{bottom:145.866667pt;}
.y2b_c00438{bottom:160.000000pt;}
.y2a_c00438{bottom:192.800000pt;}
.y29_c00438{bottom:210.666667pt;}
.y28_c00438{bottom:228.000000pt;}
.y27_c00438{bottom:245.866667pt;}
.y26_c00438{bottom:263.466667pt;}
.y25_c00438{bottom:281.066667pt;}
.y24_c00438{bottom:298.933333pt;}
.y23_c00438{bottom:316.533333pt;}
.y22_c00438{bottom:334.133333pt;}
.y21_c00438{bottom:352.133333pt;}
.y20_c00438{bottom:369.733333pt;}
.y1f_c00438{bottom:387.600000pt;}
.y1e_c00438{bottom:405.200000pt;}
.y1d_c00438{bottom:422.800000pt;}
.y1c_c00438{bottom:440.666667pt;}
.y1b_c00438{bottom:458.000000pt;}
.y1a_c00438{bottom:475.600000pt;}
.y19_c00438{bottom:493.200000pt;}
.y18_c00438{bottom:511.066667pt;}
.y17_c00438{bottom:528.666667pt;}
.y16_c00438{bottom:546.533333pt;}
.y15_c00438{bottom:564.133333pt;}
.y14_c00438{bottom:582.000000pt;}
.y13_c00438{bottom:599.866667pt;}
.y12_c00438{bottom:617.733333pt;}
.y11_c00438{bottom:635.333333pt;}
.y10_c00438{bottom:652.933333pt;}
.yf_c00438{bottom:670.800000pt;}
.ye_c00438{bottom:688.400000pt;}
.yd_c00438{bottom:706.266667pt;}
.yc_c00438{bottom:724.133333pt;}
.yb_c00438{bottom:741.466667pt;}
.ya_c00438{bottom:759.333333pt;}
.y9_c00438{bottom:777.066667pt;}
.y8_c00438{bottom:794.666667pt;}
.y7_c00438{bottom:812.533333pt;}
.y6_c00438{bottom:830.133333pt;}
.y5_c00438{bottom:848.000000pt;}
.y4_c00438{bottom:865.600000pt;}
.y3_c00438{bottom:883.200000pt;}
.y2_c00438{bottom:900.800000pt;}
.y1_c00438{bottom:935.066667pt;}
.h2_c00438{height:53.333333pt;}
.h1_c00438{height:1036.666667pt;}
.h0_c00438{height:1036.800049pt;}
.w0_c00438{width:818.559977pt;}
.w1_c00438{width:818.666667pt;}
.x0_c00438{left:0.000000pt;}
.x105_c00438{left:130.400000pt;}
.xd6_c00438{left:131.466667pt;}
.x83_c00438{left:133.466667pt;}
.x3_c00438{left:134.400000pt;}
.x1_c00438{left:136.000000pt;}
.xec_c00438{left:147.333333pt;}
.x59_c00438{left:149.600000pt;}
.x13_c00438{left:151.066667pt;}
.x97_c00438{left:155.466667pt;}
.x33_c00438{left:157.600000pt;}
.xca_c00438{left:159.733333pt;}
.x70_c00438{left:161.333333pt;}
.x123_c00438{left:165.200000pt;}
.x8d_c00438{left:167.866667pt;}
.x14_c00438{left:170.000000pt;}
.x27_c00438{left:171.466667pt;}
.x67_c00438{left:174.933333pt;}
.xf5_c00438{left:177.066667pt;}
.x98_c00438{left:180.800000pt;}
.x10e_c00438{left:182.400000pt;}
.xcb_c00438{left:184.000000pt;}
.x120_c00438{left:185.200000pt;}
.x41_c00438{left:186.800000pt;}
.x4_c00438{left:188.133333pt;}
.xb0_c00438{left:190.133333pt;}
.x15_c00438{left:192.400000pt;}
.x84_c00438{left:194.000000pt;}
.x102_c00438{left:198.933333pt;}
.x28_c00438{left:200.533333pt;}
.x8e_c00438{left:202.133333pt;}
.x42_c00438{left:204.666667pt;}
.x5_c00438{left:206.000000pt;}
.xe8_c00438{left:208.400000pt;}
.x99_c00438{left:210.533333pt;}
.x68_c00438{left:212.400000pt;}
.xb9_c00438{left:213.600000pt;}
.x114_c00438{left:215.066667pt;}
.x7a_c00438{left:216.266667pt;}
.x16_c00438{left:218.266667pt;}
.x71_c00438{left:219.200000pt;}
.xcc_c00438{left:220.533333pt;}
.xfc_c00438{left:222.400000pt;}
.xd7_c00438{left:224.000000pt;}
.xd1_c00438{left:224.933333pt;}
.x121_c00438{left:225.866667pt;}
.x9a_c00438{left:227.200000pt;}
.xa9_c00438{left:229.733333pt;}
.x34_c00438{left:231.200000pt;}
.x17_c00438{left:235.600000pt;}
.x5a_c00438{left:240.800000pt;}
.xc7_c00438{left:242.400000pt;}
.xb1_c00438{left:246.800000pt;}
.xed_c00438{left:248.666667pt;}
.x9b_c00438{left:249.600000pt;}
.xa3_c00438{left:251.466667pt;}
.xf6_c00438{left:253.200000pt;}
.x35_c00438{left:255.200000pt;}
.x18_c00438{left:258.266667pt;}
.xc8_c00438{left:259.333333pt;}
.x10c_c00438{left:261.733333pt;}
.x85_c00438{left:263.333333pt;}
.xb2_c00438{left:265.066667pt;}
.xee_c00438{left:267.600000pt;}
.x10f_c00438{left:269.466667pt;}
.x6_c00438{left:271.333333pt;}
.xfd_c00438{left:272.666667pt;}
.x7b_c00438{left:273.866667pt;}
.xd8_c00438{left:275.866667pt;}
.x36_c00438{left:277.866667pt;}
.x43_c00438{left:278.933333pt;}
.x7_c00438{left:282.266667pt;}
.x5b_c00438{left:283.600000pt;}
.x29_c00438{left:285.333333pt;}
.xfe_c00438{left:287.066667pt;}
.x12c_c00438{left:289.600000pt;}
.x37_c00438{left:290.666667pt;}
.x72_c00438{left:291.600000pt;}
.x11b_c00438{left:294.266667pt;}
.xef_c00438{left:295.466667pt;}
.x19_c00438{left:296.666667pt;}
.x118_c00438{left:299.200000pt;}
.x86_c00438{left:301.733333pt;}
.x44_c00438{left:304.533333pt;}
.x50_c00438{left:305.466667pt;}
.x9c_c00438{left:306.933333pt;}
.x2a_c00438{left:308.000000pt;}
.xf0_c00438{left:313.333333pt;}
.xe9_c00438{left:315.600000pt;}
.xcd_c00438{left:316.533333pt;}
.x87_c00438{left:317.733333pt;}
.x69_c00438{left:318.933333pt;}
.xd2_c00438{left:321.600000pt;}
.x115_c00438{left:323.866667pt;}
.x1a_c00438{left:327.333333pt;}
.xf1_c00438{left:329.600000pt;}
.x38_c00438{left:331.333333pt;}
.x8f_c00438{left:333.600000pt;}
.x10d_c00438{left:335.333333pt;}
.xaa_c00438{left:336.266667pt;}
.xd3_c00438{left:337.866667pt;}
.x2b_c00438{left:340.666667pt;}
.xba_c00438{left:342.000000pt;}
.x45_c00438{left:344.266667pt;}
.x7c_c00438{left:345.600000pt;}
.x5c_c00438{left:348.266667pt;}
.x1b_c00438{left:349.733333pt;}
.xea_c00438{left:351.466667pt;}
.x51_c00438{left:352.800000pt;}
.x8_c00438{left:354.533333pt;}
.x12d_c00438{left:357.733333pt;}
.xbb_c00438{left:358.666667pt;}
.xe4_c00438{left:360.266667pt;}
.xdf_c00438{left:361.866667pt;}
.x73_c00438{left:362.933333pt;}
.xff_c00438{left:365.466667pt;}
.x6a_c00438{left:368.800000pt;}
.x9_c00438{left:370.266667pt;}
.x90_c00438{left:372.666667pt;}
.xab_c00438{left:376.000000pt;}
.x88_c00438{left:376.933333pt;}
.x46_c00438{left:378.133333pt;}
.x7d_c00438{left:379.200000pt;}
.x1c_c00438{left:381.733333pt;}
.xa4_c00438{left:382.666667pt;}
.x52_c00438{left:384.133333pt;}
.xe5_c00438{left:385.200000pt;}
.x6b_c00438{left:386.400000pt;}
.x2c_c00438{left:388.400000pt;}
.xc2_c00438{left:389.866667pt;}
.x74_c00438{left:392.666667pt;}
.x124_c00438{left:393.600000pt;}
.xa_c00438{left:394.933333pt;}
.x12e_c00438{left:395.866667pt;}
.x1d_c00438{left:396.800000pt;}
.x9d_c00438{left:398.800000pt;}
.x2_c00438{left:399.733333pt;}
.xc9_c00438{left:401.066667pt;}
.xf7_c00438{left:402.666667pt;}
.x53_c00438{left:406.800000pt;}
.x110_c00438{left:408.000000pt;}
.xb3_c00438{left:409.333333pt;}
.x5d_c00438{left:410.400000pt;}
.xa5_c00438{left:413.733333pt;}
.x130_c00438{left:414.666667pt;}
.x47_c00438{left:417.200000pt;}
.x1e_c00438{left:419.200000pt;}
.xc3_c00438{left:420.533333pt;}
.x7e_c00438{left:422.133333pt;}
.xbc_c00438{left:424.533333pt;}
.x9e_c00438{left:428.933333pt;}
.x11c_c00438{left:431.200000pt;}
.x6c_c00438{left:433.066667pt;}
.x39_c00438{left:435.333333pt;}
.xd9_c00438{left:436.533333pt;}
.x2d_c00438{left:438.266667pt;}
.x127_c00438{left:439.866667pt;}
.xb_c00438{left:441.333333pt;}
.x54_c00438{left:443.333333pt;}
.x75_c00438{left:445.200000pt;}
.x116_c00438{left:446.666667pt;}
.xd4_c00438{left:447.866667pt;}
.x7f_c00438{left:450.666667pt;}
.x12a_c00438{left:452.400000pt;}
.xe0_c00438{left:454.266667pt;}
.x6d_c00438{left:456.133333pt;}
.x100_c00438{left:457.466667pt;}
.x91_c00438{left:459.066667pt;}
.x5e_c00438{left:461.333333pt;}
.x3a_c00438{left:462.800000pt;}
.x89_c00438{left:464.000000pt;}
.x76_c00438{left:465.733333pt;}
.xac_c00438{left:467.200000pt;}
.xc_c00438{left:468.533333pt;}
.xb4_c00438{left:469.466667pt;}
.x5f_c00438{left:471.200000pt;}
.x6e_c00438{left:472.133333pt;}
.x1f_c00438{left:473.600000pt;}
.x3b_c00438{left:480.133333pt;}
.x9f_c00438{left:481.066667pt;}
.x11d_c00438{left:482.666667pt;}
.xd_c00438{left:484.533333pt;}
.x48_c00438{left:487.333333pt;}
.xbd_c00438{left:489.466667pt;}
.xad_c00438{left:490.933333pt;}
.xce_c00438{left:494.800000pt;}
.x55_c00438{left:496.400000pt;}
.x6f_c00438{left:498.000000pt;}
.x12f_c00438{left:499.866667pt;}
.x49_c00438{left:501.066667pt;}
.x92_c00438{left:502.933333pt;}
.xc4_c00438{left:503.866667pt;}
.xe6_c00438{left:504.933333pt;}
.xe1_c00438{left:506.800000pt;}
.xf8_c00438{left:509.200000pt;}
.x8a_c00438{left:512.266667pt;}
.x20_c00438{left:513.600000pt;}
.x106_c00438{left:515.466667pt;}
.x2e_c00438{left:516.666667pt;}
.xcf_c00438{left:518.533333pt;}
.x3c_c00438{left:519.866667pt;}
.x80_c00438{left:522.000000pt;}
.x21_c00438{left:523.466667pt;}
.x4a_c00438{left:525.333333pt;}
.x77_c00438{left:526.533333pt;}
.x93_c00438{left:527.866667pt;}
.x60_c00438{left:530.000000pt;}
.x111_c00438{left:533.066667pt;}
.x11e_c00438{left:536.800000pt;}
.xda_c00438{left:538.933333pt;}
.x3d_c00438{left:541.600000pt;}
.xe_c00438{left:542.800000pt;}
.x12b_c00438{left:544.000000pt;}
.x119_c00438{left:545.333333pt;}
.xa0_c00438{left:546.666667pt;}
.x128_c00438{left:548.000000pt;}
.xa6_c00438{left:549.466667pt;}
.x107_c00438{left:550.400000pt;}
.x22_c00438{left:551.600000pt;}
.xe2_c00438{left:552.933333pt;}
.xdb_c00438{left:555.200000pt;}
.xf_c00438{left:560.400000pt;}
.x2f_c00438{left:563.333333pt;}
.x3e_c00438{left:565.333333pt;}
.xd5_c00438{left:567.200000pt;}
.xbe_c00438{left:568.133333pt;}
.x81_c00438{left:569.333333pt;}
.xa1_c00438{left:572.000000pt;}
.x4b_c00438{left:575.866667pt;}
.xf2_c00438{left:577.733333pt;}
.x108_c00438{left:578.666667pt;}
.x23_c00438{left:580.133333pt;}
.xae_c00438{left:581.200000pt;}
.x10_c00438{left:583.066667pt;}
.xf9_c00438{left:584.933333pt;}
.xb5_c00438{left:586.266667pt;}
.x112_c00438{left:587.200000pt;}
.xd0_c00438{left:588.266667pt;}
.xbf_c00438{left:591.466667pt;}
.xaf_c00438{left:592.400000pt;}
.x4c_c00438{left:594.133333pt;}
.xf3_c00438{left:595.600000pt;}
.x61_c00438{left:599.066667pt;}
.x125_c00438{left:600.000000pt;}
.x78_c00438{left:601.733333pt;}
.xc5_c00438{left:602.800000pt;}
.x56_c00438{left:604.000000pt;}
.x94_c00438{left:608.533333pt;}
.x103_c00438{left:610.000000pt;}
.x122_c00438{left:610.933333pt;}
.xfa_c00438{left:611.866667pt;}
.x82_c00438{left:613.200000pt;}
.xdc_c00438{left:614.400000pt;}
.xa7_c00438{left:615.333333pt;}
.xb6_c00438{left:616.933333pt;}
.x11_c00438{left:618.933333pt;}
.x30_c00438{left:621.200000pt;}
.x62_c00438{left:624.666667pt;}
.x95_c00438{left:625.866667pt;}
.x4d_c00438{left:627.733333pt;}
.xe7_c00438{left:630.133333pt;}
.xc0_c00438{left:632.400000pt;}
.x57_c00438{left:635.066667pt;}
.x31_c00438{left:637.866667pt;}
.xb7_c00438{left:639.600000pt;}
.x11f_c00438{left:641.466667pt;}
.x8b_c00438{left:644.266667pt;}
.xa2_c00438{left:645.333333pt;}
.x3f_c00438{left:647.866667pt;}
.x109_c00438{left:649.066667pt;}
.x96_c00438{left:651.200000pt;}
.xa8_c00438{left:653.733333pt;}
.x63_c00438{left:655.733333pt;}
.x79_c00438{left:657.066667pt;}
.x113_c00438{left:658.933333pt;}
.x12_c00438{left:659.866667pt;}
.x24_c00438{left:662.800000pt;}
.x64_c00438{left:666.666667pt;}
.x126_c00438{left:668.800000pt;}
.x58_c00438{left:671.866667pt;}
.xb8_c00438{left:672.933333pt;}
.x104_c00438{left:674.666667pt;}
.x10a_c00438{left:676.266667pt;}
.xf4_c00438{left:677.200000pt;}
.xeb_c00438{left:678.533333pt;}
.x11a_c00438{left:679.866667pt;}
.xdd_c00438{left:681.333333pt;}
.x101_c00438{left:682.533333pt;}
.xe3_c00438{left:684.000000pt;}
.x8c_c00438{left:688.800000pt;}
.x65_c00438{left:690.400000pt;}
.x25_c00438{left:692.933333pt;}
.x32_c00438{left:694.933333pt;}
.x4e_c00438{left:696.533333pt;}
.xfb_c00438{left:699.600000pt;}
.xc1_c00438{left:700.533333pt;}
.x10b_c00438{left:702.533333pt;}
.x129_c00438{left:703.866667pt;}
.x40_c00438{left:705.466667pt;}
.xc6_c00438{left:707.733333pt;}
.x26_c00438{left:708.666667pt;}
.xde_c00438{left:710.400000pt;}
.x117_c00438{left:711.333333pt;}
.x4f_c00438{left:712.800000pt;}
.x66_c00438{left:720.133333pt;}
}





/* 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_c00439 {
    display:none;
  }
  .loading-indicator_c00439.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00439 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_c00439 { 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_c00439" -> "#page-container .classname_c00439")
 */
.pf_c00439 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00439 { /* 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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00439 { /* 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_c00439 { /* 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_c00439 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00439 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00439 {overflow:visible;}
  }
}
.c_c00439 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00439 { /* 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_c00439:after { /* webkit #35443 */
  content: '';
}
.t_c00439:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00439 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 */
}
.__c00439 { /* 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_c00439 { /* info for Javascript */
  display:none;
}
.l_c00439 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00439 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00439 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00439: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_c00439 {
    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_c00439.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00439.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_c00439 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00439{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00439;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.000000;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;}
.m54_c00439{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00439{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00439{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00439{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mac_c00439{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00439{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00439{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m89_c00439{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m22_c00439{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00439{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m44_c00439{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00439{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m98_c00439{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m42_c00439{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00439{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00439{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00439{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00439{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m73_c00439{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m64_c00439{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00439{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00439{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m28_c00439{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m79_c00439{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00439{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00439{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m63_c00439{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00439{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00439{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.maa_c00439{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00439{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00439{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00439{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00439{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00439{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00439{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m59_c00439{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.maf_c00439{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m27_c00439{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m87_c00439{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m20_c00439{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mab_c00439{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00439{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m47_c00439{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00439{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00439{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m56_c00439{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00439{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mad_c00439{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m75_c00439{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00439{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me_c00439{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m66_c00439{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00439{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m92_c00439{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00439{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m35_c00439{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mae_c00439{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m50_c00439{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m83_c00439{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00439{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00439{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m46_c00439{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00439{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m39_c00439{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00439{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00439{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m70_c00439{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00439{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m81_c00439{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m69_c00439{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m13_c00439{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00439{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00439{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00439{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m82_c00439{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m32_c00439{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m4_c00439{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00439{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m38_c00439{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m23_c00439{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m88_c00439{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m72_c00439{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00439{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00439{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00439{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m80_c00439{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m29_c00439{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m24_c00439{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m71_c00439{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00439{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mba_c00439{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00439{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00439{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00439{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m78_c00439{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00439{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00439{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m67_c00439{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00439{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m74_c00439{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m25_c00439{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00439{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m95_c00439{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00439{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00439{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00439{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00439{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m36_c00439{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m37_c00439{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00439{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00439{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00439{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00439{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00439{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m51_c00439{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00439{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m17_c00439{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m52_c00439{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m76_c00439{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m55_c00439{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00439{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00439{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00439{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma_c00439{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m99_c00439{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m58_c00439{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00439{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m91_c00439{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m26_c00439{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m21_c00439{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m30_c00439{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m86_c00439{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m31_c00439{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00439{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m49_c00439{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m18_c00439{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m15_c00439{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m33_c00439{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m57_c00439{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m41_c00439{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00439{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00439{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m19_c00439{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00439{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m65_c00439{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m48_c00439{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m68_c00439{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00439{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00439{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m97_c00439{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m94_c00439{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00439{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00439{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c00439{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m85_c00439{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m43_c00439{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m34_c00439{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m61_c00439{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00439{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00439{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m60_c00439{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m90_c00439{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m96_c00439{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m45_c00439{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m53_c00439{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m93_c00439{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00439{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m84_c00439{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00439{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m77_c00439{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m7_c00439{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00439{vertical-align:0.000000px;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{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__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws11_c00439{word-spacing:-4.166667px;}
.ws5_c00439{word-spacing:-1.315789px;}
.ws3_c00439{word-spacing:0.000000px;}
.ws7_c00439{word-spacing:0.943026px;}
.ws2_c00439{word-spacing:1.666667px;}
.ws10_c00439{word-spacing:1.805556px;}
.ws1_c00439{word-spacing:1.944444px;}
.ws4_c00439{word-spacing:3.883929px;}
.wsf_c00439{word-spacing:5.277778px;}
.wsa_c00439{word-spacing:5.466238px;}
.ws0_c00439{word-spacing:6.885246px;}
.wsd_c00439{word-spacing:7.857143px;}
.ws8_c00439{word-spacing:8.529412px;}
.wsb_c00439{word-spacing:14.285714px;}
.wse_c00439{word-spacing:19.259259px;}
.ws9_c00439{word-spacing:24.705882px;}
.wsc_c00439{word-spacing:25.138889px;}
.ws6_c00439{word-spacing:26.944444px;}
._0_c00439{width:36.250000px;}
.fc0_c00439{color:transparent;}
.fs0_c00439{font-size:54.000000px;}
.fs1_c00439{font-size:60.000000px;}
.y0_c00439{bottom:0.000000px;}
.y2d_c00439{bottom:150.150000px;}
.y2c_c00439{bottom:165.900000px;}
.y2b_c00439{bottom:182.100000px;}
.y2a_c00439{bottom:197.700000px;}
.y29_c00439{bottom:231.900000px;}
.y28_c00439{bottom:252.000000px;}
.y27_c00439{bottom:271.800000px;}
.y26_c00439{bottom:291.600000px;}
.y25_c00439{bottom:311.400000px;}
.y24_c00439{bottom:330.900000px;}
.y23_c00439{bottom:351.000000px;}
.y22_c00439{bottom:370.800000px;}
.y21_c00439{bottom:390.600000px;}
.y20_c00439{bottom:410.700000px;}
.y1f_c00439{bottom:430.950000px;}
.y1e_c00439{bottom:450.450000px;}
.y1d_c00439{bottom:470.550000px;}
.y1c_c00439{bottom:490.650000px;}
.y1b_c00439{bottom:510.450000px;}
.y1a_c00439{bottom:530.250000px;}
.y19_c00439{bottom:550.050000px;}
.y18_c00439{bottom:570.150000px;}
.y17_c00439{bottom:589.950000px;}
.y16_c00439{bottom:609.750000px;}
.y15_c00439{bottom:629.850000px;}
.y14_c00439{bottom:649.650000px;}
.y13_c00439{bottom:669.750000px;}
.y12_c00439{bottom:689.550000px;}
.y11_c00439{bottom:709.650000px;}
.y10_c00439{bottom:729.450000px;}
.yf_c00439{bottom:749.550000px;}
.ye_c00439{bottom:769.650000px;}
.yd_c00439{bottom:789.750000px;}
.yc_c00439{bottom:809.550000px;}
.yb_c00439{bottom:829.650000px;}
.ya_c00439{bottom:849.750000px;}
.y9_c00439{bottom:869.850000px;}
.y8_c00439{bottom:889.650000px;}
.y7_c00439{bottom:909.450000px;}
.y6_c00439{bottom:929.550000px;}
.y5_c00439{bottom:949.350000px;}
.y4_c00439{bottom:969.150000px;}
.y3_c00439{bottom:988.950000px;}
.y2_c00439{bottom:1009.050000px;}
.y1_c00439{bottom:1046.550000px;}
.h2_c00439{height:54.000000px;}
.h3_c00439{height:60.000000px;}
.h1_c00439{height:1166.250000px;}
.h0_c00439{height:1166.400056px;}
.w0_c00439{width:920.879975px;}
.w1_c00439{width:921.000000px;}
.x0_c00439{left:0.000000px;}
.x12e_c00439{left:117.000000px;}
.xa1_c00439{left:118.200000px;}
.x63_c00439{left:119.250000px;}
.x16_c00439{left:120.300000px;}
.x3_c00439{left:121.350000px;}
.x122_c00439{left:130.350000px;}
.x82_c00439{left:136.800000px;}
.x90_c00439{left:138.150000px;}
.x17_c00439{left:140.100000px;}
.x4_c00439{left:141.150000px;}
.xcb_c00439{left:147.750000px;}
.xf6_c00439{left:149.100000px;}
.x3b_c00439{left:150.300000px;}
.x119_c00439{left:152.250000px;}
.x24_c00439{left:154.050000px;}
.xe3_c00439{left:155.100000px;}
.x108_c00439{left:159.450000px;}
.xb5_c00439{left:161.550000px;}
.x6b_c00439{left:163.800000px;}
.x2f_c00439{left:166.350000px;}
.x18_c00439{left:168.150000px;}
.x11d_c00439{left:171.450000px;}
.x3c_c00439{left:174.450000px;}
.xc5_c00439{left:177.000000px;}
.x79_c00439{left:179.400000px;}
.xf7_c00439{left:181.800000px;}
.x25_c00439{left:184.950000px;}
.x111_c00439{left:186.300000px;}
.x125_c00439{left:188.250000px;}
.x50_c00439{left:190.500000px;}
.xd8_c00439{left:191.850000px;}
.x5_c00439{left:193.350000px;}
.x83_c00439{left:195.150000px;}
.x64_c00439{left:196.950000px;}
.xa2_c00439{left:198.600000px;}
.xb6_c00439{left:200.100000px;}
.x30_c00439{left:204.450000px;}
.x101_c00439{left:209.250000px;}
.x6_c00439{left:213.150000px;}
.x126_c00439{left:215.250000px;}
.x88_c00439{left:217.800000px;}
.x31_c00439{left:219.600000px;}
.x6c_c00439{left:222.450000px;}
.x84_c00439{left:224.250000px;}
.x65_c00439{left:226.500000px;}
.x5c_c00439{left:228.900000px;}
.xb7_c00439{left:230.400000px;}
.x123_c00439{left:232.800000px;}
.x9a_c00439{left:234.300000px;}
.x91_c00439{left:236.100000px;}
.x7_c00439{left:238.650000px;}
.x51_c00439{left:240.150000px;}
.xb8_c00439{left:241.500000px;}
.x6d_c00439{left:243.300000px;}
.x3d_c00439{left:244.950000px;}
.xac_c00439{left:246.300000px;}
.xdd_c00439{left:248.250000px;}
.x46_c00439{left:250.350000px;}
.x32_c00439{left:252.000000px;}
.x92_c00439{left:255.900000px;}
.x5d_c00439{left:256.950000px;}
.x66_c00439{left:258.900000px;}
.xcc_c00439{left:260.400000px;}
.x89_c00439{left:261.750000px;}
.xbf_c00439{left:264.300000px;}
.x3e_c00439{left:267.300000px;}
.x7a_c00439{left:269.850000px;}
.x6e_c00439{left:271.800000px;}
.xd9_c00439{left:273.600000px;}
.x52_c00439{left:275.100000px;}
.x127_c00439{left:276.150000px;}
.xb9_c00439{left:277.500000px;}
.x47_c00439{left:279.150000px;}
.x11e_c00439{left:282.300000px;}
.x93_c00439{left:285.150000px;}
.x12f_c00439{left:286.500000px;}
.xd1_c00439{left:287.850000px;}
.x7b_c00439{left:289.350000px;}
.x8a_c00439{left:290.850000px;}
.x19_c00439{left:295.650000px;}
.x8_c00439{left:298.350000px;}
.x130_c00439{left:304.500000px;}
.x26_c00439{left:308.100000px;}
.x128_c00439{left:309.600000px;}
.x53_c00439{left:312.600000px;}
.x9_c00439{left:313.800000px;}
.xba_c00439{left:315.000000px;}
.x7c_c00439{left:317.850000px;}
.xc0_c00439{left:319.800000px;}
.x85_c00439{left:322.500000px;}
.xe8_c00439{left:325.200000px;}
.x94_c00439{left:326.250000px;}
.xd2_c00439{left:329.550000px;}
.x48_c00439{left:330.600000px;}
.x112_c00439{left:332.550000px;}
.x115_c00439{left:336.000000px;}
.xc1_c00439{left:338.550000px;}
.xa_c00439{left:339.750000px;}
.x1a_c00439{left:344.250000px;}
.xf8_c00439{left:345.300000px;}
.x67_c00439{left:346.800000px;}
.x102_c00439{left:347.850000px;}
.x11a_c00439{left:349.800000px;}
.x6f_c00439{left:351.300000px;}
.x49_c00439{left:352.950000px;}
.xa7_c00439{left:354.450000px;}
.x113_c00439{left:356.250000px;}
.x27_c00439{left:359.250000px;}
.x8b_c00439{left:361.350000px;}
.xd3_c00439{left:363.450000px;}
.x86_c00439{left:366.000000px;}
.xad_c00439{left:367.200000px;}
.x1b_c00439{left:372.300000px;}
.xde_c00439{left:373.950000px;}
.x5e_c00439{left:375.600000px;}
.xf9_c00439{left:377.400000px;}
.x3f_c00439{left:379.200000px;}
.x95_c00439{left:381.300000px;}
.x4a_c00439{left:383.250000px;}
.x12c_c00439{left:384.450000px;}
.xb_c00439{left:385.500000px;}
.x70_c00439{left:387.600000px;}
.x33_c00439{left:391.650000px;}
.x87_c00439{left:393.000000px;}
.xed_c00439{left:394.800000px;}
.xae_c00439{left:396.750000px;}
.xfd_c00439{left:398.400000px;}
.xe4_c00439{left:399.900000px;}
.xc_c00439{left:403.800000px;}
.x7d_c00439{left:406.050000px;}
.x5f_c00439{left:407.250000px;}
.x109_c00439{left:408.450000px;}
.x1_c00439{left:409.650000px;}
.xa3_c00439{left:411.900000px;}
.x129_c00439{left:413.250000px;}
.x103_c00439{left:415.200000px;}
.xaf_c00439{left:416.250000px;}
.x116_c00439{left:417.300000px;}
.x28_c00439{left:424.050000px;}
.x124_c00439{left:427.500000px;}
.xa8_c00439{left:429.750000px;}
.x34_c00439{left:431.250000px;}
.x71_c00439{left:433.650000px;}
.x11f_c00439{left:435.000000px;}
.x1c_c00439{left:437.850000px;}
.x40_c00439{left:439.650000px;}
.xfa_c00439{left:441.150000px;}
.xb0_c00439{left:442.500000px;}
.xc6_c00439{left:445.200000px;}
.x9b_c00439{left:447.750000px;}
.xa9_c00439{left:449.550000px;}
.xd_c00439{left:452.400000px;}
.x8c_c00439{left:456.000000px;}
.x1d_c00439{left:457.650000px;}
.xf2_c00439{left:458.700000px;}
.x54_c00439{left:463.200000px;}
.xdf_c00439{left:465.450000px;}
.x41_c00439{left:467.400000px;}
.xfe_c00439{left:468.600000px;}
.xe9_c00439{left:470.250000px;}
.x131_c00439{left:471.300000px;}
.xcd_c00439{left:474.900000px;}
.xb1_c00439{left:478.500000px;}
.x29_c00439{left:481.350000px;}
.x55_c00439{left:483.000000px;}
.xbb_c00439{left:484.650000px;}
.x1e_c00439{left:485.700000px;}
.x9c_c00439{left:488.850000px;}
.x35_c00439{left:490.050000px;}
.x96_c00439{left:492.450000px;}
.xc7_c00439{left:494.550000px;}
.x2a_c00439{left:495.750000px;}
.x7e_c00439{left:497.100000px;}
.xe_c00439{left:501.300000px;}
.xaa_c00439{left:502.500000px;}
.xf3_c00439{left:507.000000px;}
.x106_c00439{left:509.400000px;}
.xe0_c00439{left:511.200000px;}
.x10a_c00439{left:512.250000px;}
.xc8_c00439{left:514.050000px;}
.x36_c00439{left:517.800000px;}
.xf_c00439{left:519.600000px;}
.xda_c00439{left:520.950000px;}
.x72_c00439{left:522.900000px;}
.x4b_c00439{left:524.400000px;}
.x60_c00439{left:526.800000px;}
.xe5_c00439{left:528.150000px;}
.x68_c00439{left:529.350000px;}
.xe1_c00439{left:531.300000px;}
.x56_c00439{left:534.450000px;}
.xee_c00439{left:535.500000px;}
.x12d_c00439{left:537.900000px;}
.x117_c00439{left:540.000000px;}
.xc2_c00439{left:541.950000px;}
.x10_c00439{left:545.550000px;}
.xf4_c00439{left:546.900000px;}
.x61_c00439{left:549.150000px;}
.x73_c00439{left:550.950000px;}
.xea_c00439{left:552.000000px;}
.x7f_c00439{left:554.400000px;}
.xd4_c00439{left:558.300000px;}
.x42_c00439{left:559.800000px;}
.x57_c00439{left:561.450000px;}
.x97_c00439{left:564.000000px;}
.xfb_c00439{left:565.050000px;}
.xf5_c00439{left:566.400000px;}
.xe2_c00439{left:567.600000px;}
.xa4_c00439{left:569.700000px;}
.x4c_c00439{left:570.900000px;}
.x37_c00439{left:573.600000px;}
.x1f_c00439{left:577.050000px;}
.x43_c00439{left:579.900000px;}
.xe6_c00439{left:580.950000px;}
.x12a_c00439{left:583.950000px;}
.x2b_c00439{left:585.000000px;}
.x9d_c00439{left:587.250000px;}
.xbc_c00439{left:588.750000px;}
.x58_c00439{left:590.550000px;}
.xce_c00439{left:592.350000px;}
.x114_c00439{left:594.000000px;}
.xff_c00439{left:596.400000px;}
.x4d_c00439{left:598.950000px;}
.xfc_c00439{left:600.750000px;}
.x12b_c00439{left:604.050000px;}
.x11_c00439{left:607.050000px;}
.x38_c00439{left:608.100000px;}
.x9e_c00439{left:610.650000px;}
.xd5_c00439{left:616.950000px;}
.xeb_c00439{left:620.100000px;}
.x12_c00439{left:622.500000px;}
.x8d_c00439{left:624.150000px;}
.x74_c00439{left:626.850000px;}
.xb2_c00439{left:628.200000px;}
.x80_c00439{left:629.250000px;}
.xcf_c00439{left:632.250000px;}
.x100_c00439{left:635.700000px;}
.xc3_c00439{left:637.050000px;}
.xe7_c00439{left:638.250000px;}
.x10b_c00439{left:640.050000px;}
.x20_c00439{left:642.900000px;}
.x104_c00439{left:645.450000px;}
.x13_c00439{left:649.200000px;}
.x8e_c00439{left:651.450000px;}
.xc9_c00439{left:652.650000px;}
.x75_c00439{left:654.150000px;}
.x59_c00439{left:657.450000px;}
.xbd_c00439{left:659.250000px;}
.x10f_c00439{left:661.050000px;}
.x4e_c00439{left:662.700000px;}
.x11b_c00439{left:664.500000px;}
.x105_c00439{left:666.300000px;}
.x44_c00439{left:669.150000px;}
.xdb_c00439{left:670.350000px;}
.x2c_c00439{left:671.400000px;}
.x120_c00439{left:673.350000px;}
.xef_c00439{left:675.600000px;}
.x10c_c00439{left:677.100000px;}
.x5a_c00439{left:678.750000px;}
.xa5_c00439{left:680.100000px;}
.x21_c00439{left:682.200000px;}
.x9f_c00439{left:684.450000px;}
.xab_c00439{left:687.150000px;}
.xb3_c00439{left:688.950000px;}
.x2d_c00439{left:691.500000px;}
.xd6_c00439{left:694.050000px;}
.xf0_c00439{left:695.700000px;}
.x10d_c00439{left:696.900000px;}
.xbe_c00439{left:698.550000px;}
.x11c_c00439{left:702.300000px;}
.x118_c00439{left:704.100000px;}
.x22_c00439{left:705.600000px;}
.xa6_c00439{left:708.600000px;}
.x39_c00439{left:710.400000px;}
.x98_c00439{left:711.600000px;}
.x110_c00439{left:713.250000px;}
.x76_c00439{left:715.050000px;}
.x5b_c00439{left:718.050000px;}
.x4f_c00439{left:719.250000px;}
.x107_c00439{left:721.050000px;}
.xdc_c00439{left:722.100000px;}
.xa0_c00439{left:723.300000px;}
.xb4_c00439{left:724.650000px;}
.xd0_c00439{left:725.850000px;}
.x69_c00439{left:727.950000px;}
.x8f_c00439{left:729.150000px;}
.xf1_c00439{left:730.950000px;}
.x77_c00439{left:732.000000px;}
.x23_c00439{left:733.650000px;}
.x14_c00439{left:737.700000px;}
.x62_c00439{left:740.250000px;}
.x78_c00439{left:743.850000px;}
.x81_c00439{left:748.050000px;}
.x10e_c00439{left:750.900000px;}
.xca_c00439{left:752.550000px;}
.x15_c00439{left:755.400000px;}
.x3a_c00439{left:757.950000px;}
.x2_c00439{left:760.950000px;}
.xd7_c00439{left:762.750000px;}
.x45_c00439{left:763.800000px;}
.x99_c00439{left:765.600000px;}
.xec_c00439{left:769.500000px;}
.x121_c00439{left:770.850000px;}
.x6a_c00439{left:773.250000px;}
.x2e_c00439{left:774.300000px;}
.xc4_c00439{left:780.000000px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws11_c00439{word-spacing:-3.703704pt;}
.ws5_c00439{word-spacing:-1.169591pt;}
.ws3_c00439{word-spacing:0.000000pt;}
.ws7_c00439{word-spacing:0.838245pt;}
.ws2_c00439{word-spacing:1.481481pt;}
.ws10_c00439{word-spacing:1.604938pt;}
.ws1_c00439{word-spacing:1.728395pt;}
.ws4_c00439{word-spacing:3.452381pt;}
.wsf_c00439{word-spacing:4.691358pt;}
.wsa_c00439{word-spacing:4.858878pt;}
.ws0_c00439{word-spacing:6.120219pt;}
.wsd_c00439{word-spacing:6.984127pt;}
.ws8_c00439{word-spacing:7.581699pt;}
.wsb_c00439{word-spacing:12.698413pt;}
.wse_c00439{word-spacing:17.119342pt;}
.ws9_c00439{word-spacing:21.960784pt;}
.wsc_c00439{word-spacing:22.345679pt;}
.ws6_c00439{word-spacing:23.950617pt;}
._0_c00439{width:32.222222pt;}
.fs0_c00439{font-size:48.000000pt;}
.fs1_c00439{font-size:53.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y2d_c00439{bottom:133.466667pt;}
.y2c_c00439{bottom:147.466667pt;}
.y2b_c00439{bottom:161.866667pt;}
.y2a_c00439{bottom:175.733333pt;}
.y29_c00439{bottom:206.133333pt;}
.y28_c00439{bottom:224.000000pt;}
.y27_c00439{bottom:241.600000pt;}
.y26_c00439{bottom:259.200000pt;}
.y25_c00439{bottom:276.800000pt;}
.y24_c00439{bottom:294.133333pt;}
.y23_c00439{bottom:312.000000pt;}
.y22_c00439{bottom:329.600000pt;}
.y21_c00439{bottom:347.200000pt;}
.y20_c00439{bottom:365.066667pt;}
.y1f_c00439{bottom:383.066667pt;}
.y1e_c00439{bottom:400.400000pt;}
.y1d_c00439{bottom:418.266667pt;}
.y1c_c00439{bottom:436.133333pt;}
.y1b_c00439{bottom:453.733333pt;}
.y1a_c00439{bottom:471.333333pt;}
.y19_c00439{bottom:488.933333pt;}
.y18_c00439{bottom:506.800000pt;}
.y17_c00439{bottom:524.400000pt;}
.y16_c00439{bottom:542.000000pt;}
.y15_c00439{bottom:559.866667pt;}
.y14_c00439{bottom:577.466667pt;}
.y13_c00439{bottom:595.333333pt;}
.y12_c00439{bottom:612.933333pt;}
.y11_c00439{bottom:630.800000pt;}
.y10_c00439{bottom:648.400000pt;}
.yf_c00439{bottom:666.266667pt;}
.ye_c00439{bottom:684.133333pt;}
.yd_c00439{bottom:702.000000pt;}
.yc_c00439{bottom:719.600000pt;}
.yb_c00439{bottom:737.466667pt;}
.ya_c00439{bottom:755.333333pt;}
.y9_c00439{bottom:773.200000pt;}
.y8_c00439{bottom:790.800000pt;}
.y7_c00439{bottom:808.400000pt;}
.y6_c00439{bottom:826.266667pt;}
.y5_c00439{bottom:843.866667pt;}
.y4_c00439{bottom:861.466667pt;}
.y3_c00439{bottom:879.066667pt;}
.y2_c00439{bottom:896.933333pt;}
.y1_c00439{bottom:930.266667pt;}
.h2_c00439{height:48.000000pt;}
.h3_c00439{height:53.333333pt;}
.h1_c00439{height:1036.666667pt;}
.h0_c00439{height:1036.800049pt;}
.w0_c00439{width:818.559977pt;}
.w1_c00439{width:818.666667pt;}
.x0_c00439{left:0.000000pt;}
.x12e_c00439{left:104.000000pt;}
.xa1_c00439{left:105.066667pt;}
.x63_c00439{left:106.000000pt;}
.x16_c00439{left:106.933333pt;}
.x3_c00439{left:107.866667pt;}
.x122_c00439{left:115.866667pt;}
.x82_c00439{left:121.600000pt;}
.x90_c00439{left:122.800000pt;}
.x17_c00439{left:124.533333pt;}
.x4_c00439{left:125.466667pt;}
.xcb_c00439{left:131.333333pt;}
.xf6_c00439{left:132.533333pt;}
.x3b_c00439{left:133.600000pt;}
.x119_c00439{left:135.333333pt;}
.x24_c00439{left:136.933333pt;}
.xe3_c00439{left:137.866667pt;}
.x108_c00439{left:141.733333pt;}
.xb5_c00439{left:143.600000pt;}
.x6b_c00439{left:145.600000pt;}
.x2f_c00439{left:147.866667pt;}
.x18_c00439{left:149.466667pt;}
.x11d_c00439{left:152.400000pt;}
.x3c_c00439{left:155.066667pt;}
.xc5_c00439{left:157.333333pt;}
.x79_c00439{left:159.466667pt;}
.xf7_c00439{left:161.600000pt;}
.x25_c00439{left:164.400000pt;}
.x111_c00439{left:165.600000pt;}
.x125_c00439{left:167.333333pt;}
.x50_c00439{left:169.333333pt;}
.xd8_c00439{left:170.533333pt;}
.x5_c00439{left:171.866667pt;}
.x83_c00439{left:173.466667pt;}
.x64_c00439{left:175.066667pt;}
.xa2_c00439{left:176.533333pt;}
.xb6_c00439{left:177.866667pt;}
.x30_c00439{left:181.733333pt;}
.x101_c00439{left:186.000000pt;}
.x6_c00439{left:189.466667pt;}
.x126_c00439{left:191.333333pt;}
.x88_c00439{left:193.600000pt;}
.x31_c00439{left:195.200000pt;}
.x6c_c00439{left:197.733333pt;}
.x84_c00439{left:199.333333pt;}
.x65_c00439{left:201.333333pt;}
.x5c_c00439{left:203.466667pt;}
.xb7_c00439{left:204.800000pt;}
.x123_c00439{left:206.933333pt;}
.x9a_c00439{left:208.266667pt;}
.x91_c00439{left:209.866667pt;}
.x7_c00439{left:212.133333pt;}
.x51_c00439{left:213.466667pt;}
.xb8_c00439{left:214.666667pt;}
.x6d_c00439{left:216.266667pt;}
.x3d_c00439{left:217.733333pt;}
.xac_c00439{left:218.933333pt;}
.xdd_c00439{left:220.666667pt;}
.x46_c00439{left:222.533333pt;}
.x32_c00439{left:224.000000pt;}
.x92_c00439{left:227.466667pt;}
.x5d_c00439{left:228.400000pt;}
.x66_c00439{left:230.133333pt;}
.xcc_c00439{left:231.466667pt;}
.x89_c00439{left:232.666667pt;}
.xbf_c00439{left:234.933333pt;}
.x3e_c00439{left:237.600000pt;}
.x7a_c00439{left:239.866667pt;}
.x6e_c00439{left:241.600000pt;}
.xd9_c00439{left:243.200000pt;}
.x52_c00439{left:244.533333pt;}
.x127_c00439{left:245.466667pt;}
.xb9_c00439{left:246.666667pt;}
.x47_c00439{left:248.133333pt;}
.x11e_c00439{left:250.933333pt;}
.x93_c00439{left:253.466667pt;}
.x12f_c00439{left:254.666667pt;}
.xd1_c00439{left:255.866667pt;}
.x7b_c00439{left:257.200000pt;}
.x8a_c00439{left:258.533333pt;}
.x19_c00439{left:262.800000pt;}
.x8_c00439{left:265.200000pt;}
.x130_c00439{left:270.666667pt;}
.x26_c00439{left:273.866667pt;}
.x128_c00439{left:275.200000pt;}
.x53_c00439{left:277.866667pt;}
.x9_c00439{left:278.933333pt;}
.xba_c00439{left:280.000000pt;}
.x7c_c00439{left:282.533333pt;}
.xc0_c00439{left:284.266667pt;}
.x85_c00439{left:286.666667pt;}
.xe8_c00439{left:289.066667pt;}
.x94_c00439{left:290.000000pt;}
.xd2_c00439{left:292.933333pt;}
.x48_c00439{left:293.866667pt;}
.x112_c00439{left:295.600000pt;}
.x115_c00439{left:298.666667pt;}
.xc1_c00439{left:300.933333pt;}
.xa_c00439{left:302.000000pt;}
.x1a_c00439{left:306.000000pt;}
.xf8_c00439{left:306.933333pt;}
.x67_c00439{left:308.266667pt;}
.x102_c00439{left:309.200000pt;}
.x11a_c00439{left:310.933333pt;}
.x6f_c00439{left:312.266667pt;}
.x49_c00439{left:313.733333pt;}
.xa7_c00439{left:315.066667pt;}
.x113_c00439{left:316.666667pt;}
.x27_c00439{left:319.333333pt;}
.x8b_c00439{left:321.200000pt;}
.xd3_c00439{left:323.066667pt;}
.x86_c00439{left:325.333333pt;}
.xad_c00439{left:326.400000pt;}
.x1b_c00439{left:330.933333pt;}
.xde_c00439{left:332.400000pt;}
.x5e_c00439{left:333.866667pt;}
.xf9_c00439{left:335.466667pt;}
.x3f_c00439{left:337.066667pt;}
.x95_c00439{left:338.933333pt;}
.x4a_c00439{left:340.666667pt;}
.x12c_c00439{left:341.733333pt;}
.xb_c00439{left:342.666667pt;}
.x70_c00439{left:344.533333pt;}
.x33_c00439{left:348.133333pt;}
.x87_c00439{left:349.333333pt;}
.xed_c00439{left:350.933333pt;}
.xae_c00439{left:352.666667pt;}
.xfd_c00439{left:354.133333pt;}
.xe4_c00439{left:355.466667pt;}
.xc_c00439{left:358.933333pt;}
.x7d_c00439{left:360.933333pt;}
.x5f_c00439{left:362.000000pt;}
.x109_c00439{left:363.066667pt;}
.x1_c00439{left:364.133333pt;}
.xa3_c00439{left:366.133333pt;}
.x129_c00439{left:367.333333pt;}
.x103_c00439{left:369.066667pt;}
.xaf_c00439{left:370.000000pt;}
.x116_c00439{left:370.933333pt;}
.x28_c00439{left:376.933333pt;}
.x124_c00439{left:380.000000pt;}
.xa8_c00439{left:382.000000pt;}
.x34_c00439{left:383.333333pt;}
.x71_c00439{left:385.466667pt;}
.x11f_c00439{left:386.666667pt;}
.x1c_c00439{left:389.200000pt;}
.x40_c00439{left:390.800000pt;}
.xfa_c00439{left:392.133333pt;}
.xb0_c00439{left:393.333333pt;}
.xc6_c00439{left:395.733333pt;}
.x9b_c00439{left:398.000000pt;}
.xa9_c00439{left:399.600000pt;}
.xd_c00439{left:402.133333pt;}
.x8c_c00439{left:405.333333pt;}
.x1d_c00439{left:406.800000pt;}
.xf2_c00439{left:407.733333pt;}
.x54_c00439{left:411.733333pt;}
.xdf_c00439{left:413.733333pt;}
.x41_c00439{left:415.466667pt;}
.xfe_c00439{left:416.533333pt;}
.xe9_c00439{left:418.000000pt;}
.x131_c00439{left:418.933333pt;}
.xcd_c00439{left:422.133333pt;}
.xb1_c00439{left:425.333333pt;}
.x29_c00439{left:427.866667pt;}
.x55_c00439{left:429.333333pt;}
.xbb_c00439{left:430.800000pt;}
.x1e_c00439{left:431.733333pt;}
.x9c_c00439{left:434.533333pt;}
.x35_c00439{left:435.600000pt;}
.x96_c00439{left:437.733333pt;}
.xc7_c00439{left:439.600000pt;}
.x2a_c00439{left:440.666667pt;}
.x7e_c00439{left:441.866667pt;}
.xe_c00439{left:445.600000pt;}
.xaa_c00439{left:446.666667pt;}
.xf3_c00439{left:450.666667pt;}
.x106_c00439{left:452.800000pt;}
.xe0_c00439{left:454.400000pt;}
.x10a_c00439{left:455.333333pt;}
.xc8_c00439{left:456.933333pt;}
.x36_c00439{left:460.266667pt;}
.xf_c00439{left:461.866667pt;}
.xda_c00439{left:463.066667pt;}
.x72_c00439{left:464.800000pt;}
.x4b_c00439{left:466.133333pt;}
.x60_c00439{left:468.266667pt;}
.xe5_c00439{left:469.466667pt;}
.x68_c00439{left:470.533333pt;}
.xe1_c00439{left:472.266667pt;}
.x56_c00439{left:475.066667pt;}
.xee_c00439{left:476.000000pt;}
.x12d_c00439{left:478.133333pt;}
.x117_c00439{left:480.000000pt;}
.xc2_c00439{left:481.733333pt;}
.x10_c00439{left:484.933333pt;}
.xf4_c00439{left:486.133333pt;}
.x61_c00439{left:488.133333pt;}
.x73_c00439{left:489.733333pt;}
.xea_c00439{left:490.666667pt;}
.x7f_c00439{left:492.800000pt;}
.xd4_c00439{left:496.266667pt;}
.x42_c00439{left:497.600000pt;}
.x57_c00439{left:499.066667pt;}
.x97_c00439{left:501.333333pt;}
.xfb_c00439{left:502.266667pt;}
.xf5_c00439{left:503.466667pt;}
.xe2_c00439{left:504.533333pt;}
.xa4_c00439{left:506.400000pt;}
.x4c_c00439{left:507.466667pt;}
.x37_c00439{left:509.866667pt;}
.x1f_c00439{left:512.933333pt;}
.x43_c00439{left:515.466667pt;}
.xe6_c00439{left:516.400000pt;}
.x12a_c00439{left:519.066667pt;}
.x2b_c00439{left:520.000000pt;}
.x9d_c00439{left:522.000000pt;}
.xbc_c00439{left:523.333333pt;}
.x58_c00439{left:524.933333pt;}
.xce_c00439{left:526.533333pt;}
.x114_c00439{left:528.000000pt;}
.xff_c00439{left:530.133333pt;}
.x4d_c00439{left:532.400000pt;}
.xfc_c00439{left:534.000000pt;}
.x12b_c00439{left:536.933333pt;}
.x11_c00439{left:539.600000pt;}
.x38_c00439{left:540.533333pt;}
.x9e_c00439{left:542.800000pt;}
.xd5_c00439{left:548.400000pt;}
.xeb_c00439{left:551.200000pt;}
.x12_c00439{left:553.333333pt;}
.x8d_c00439{left:554.800000pt;}
.x74_c00439{left:557.200000pt;}
.xb2_c00439{left:558.400000pt;}
.x80_c00439{left:559.333333pt;}
.xcf_c00439{left:562.000000pt;}
.x100_c00439{left:565.066667pt;}
.xc3_c00439{left:566.266667pt;}
.xe7_c00439{left:567.333333pt;}
.x10b_c00439{left:568.933333pt;}
.x20_c00439{left:571.466667pt;}
.x104_c00439{left:573.733333pt;}
.x13_c00439{left:577.066667pt;}
.x8e_c00439{left:579.066667pt;}
.xc9_c00439{left:580.133333pt;}
.x75_c00439{left:581.466667pt;}
.x59_c00439{left:584.400000pt;}
.xbd_c00439{left:586.000000pt;}
.x10f_c00439{left:587.600000pt;}
.x4e_c00439{left:589.066667pt;}
.x11b_c00439{left:590.666667pt;}
.x105_c00439{left:592.266667pt;}
.x44_c00439{left:594.800000pt;}
.xdb_c00439{left:595.866667pt;}
.x2c_c00439{left:596.800000pt;}
.x120_c00439{left:598.533333pt;}
.xef_c00439{left:600.533333pt;}
.x10c_c00439{left:601.866667pt;}
.x5a_c00439{left:603.333333pt;}
.xa5_c00439{left:604.533333pt;}
.x21_c00439{left:606.400000pt;}
.x9f_c00439{left:608.400000pt;}
.xab_c00439{left:610.800000pt;}
.xb3_c00439{left:612.400000pt;}
.x2d_c00439{left:614.666667pt;}
.xd6_c00439{left:616.933333pt;}
.xf0_c00439{left:618.400000pt;}
.x10d_c00439{left:619.466667pt;}
.xbe_c00439{left:620.933333pt;}
.x11c_c00439{left:624.266667pt;}
.x118_c00439{left:625.866667pt;}
.x22_c00439{left:627.200000pt;}
.xa6_c00439{left:629.866667pt;}
.x39_c00439{left:631.466667pt;}
.x98_c00439{left:632.533333pt;}
.x110_c00439{left:634.000000pt;}
.x76_c00439{left:635.600000pt;}
.x5b_c00439{left:638.266667pt;}
.x4f_c00439{left:639.333333pt;}
.x107_c00439{left:640.933333pt;}
.xdc_c00439{left:641.866667pt;}
.xa0_c00439{left:642.933333pt;}
.xb4_c00439{left:644.133333pt;}
.xd0_c00439{left:645.200000pt;}
.x69_c00439{left:647.066667pt;}
.x8f_c00439{left:648.133333pt;}
.xf1_c00439{left:649.733333pt;}
.x77_c00439{left:650.666667pt;}
.x23_c00439{left:652.133333pt;}
.x14_c00439{left:655.733333pt;}
.x62_c00439{left:658.000000pt;}
.x78_c00439{left:661.200000pt;}
.x81_c00439{left:664.933333pt;}
.x10e_c00439{left:667.466667pt;}
.xca_c00439{left:668.933333pt;}
.x15_c00439{left:671.466667pt;}
.x3a_c00439{left:673.733333pt;}
.x2_c00439{left:676.400000pt;}
.xd7_c00439{left:678.000000pt;}
.x45_c00439{left:678.933333pt;}
.x99_c00439{left:680.533333pt;}
.xec_c00439{left:684.000000pt;}
.x121_c00439{left:685.200000pt;}
.x6a_c00439{left:687.333333pt;}
.x2e_c00439{left:688.266667pt;}
.xc4_c00439{left:693.333333pt;}
}





/* 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_c00440 {
    display:none;
  }
  .loading-indicator_c00440.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00440 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_c00440 { 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_c00440" -> "#page-container .classname_c00440")
 */
.pf_c00440 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00440 { /* 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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00440 { /* 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_c00440 { /* 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_c00440 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00440 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00440 {overflow:visible;}
  }
}
.c_c00440 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00440 { /* 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_c00440:after { /* webkit #35443 */
  content: '';
}
.t_c00440:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00440 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 */
}
.__c00440 { /* 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_c00440 { /* info for Javascript */
  display:none;
}
.l_c00440 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00440 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00440 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00440: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_c00440 {
    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_c00440.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00440.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_c00440 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00440{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00440;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.000000;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;}
.m35_c00440{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m58_c00440{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m45_c00440{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m81_c00440{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m86_c00440{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m13_c00440{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m34_c00440{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m37_c00440{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m2_c00440{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m36_c00440{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00440{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00440{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00440{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m66_c00440{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m68_c00440{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m52_c00440{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m83_c00440{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m70_c00440{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00440{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9_c00440{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00440{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00440{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m42_c00440{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m28_c00440{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00440{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m16_c00440{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m99_c00440{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00440{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m56_c00440{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m18_c00440{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00440{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00440{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00440{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m93_c00440{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00440{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m72_c00440{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m30_c00440{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m43_c00440{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m32_c00440{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m63_c00440{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m49_c00440{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m20_c00440{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00440{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m84_c00440{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m94_c00440{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m71_c00440{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00440{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m89_c00440{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00440{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00440{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m15_c00440{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m80_c00440{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5_c00440{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m6_c00440{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00440{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m62_c00440{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00440{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00440{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m53_c00440{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00440{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m64_c00440{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00440{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m60_c00440{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m87_c00440{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00440{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00440{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m47_c00440{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00440{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m41_c00440{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m50_c00440{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb_c00440{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00440{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00440{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00440{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00440{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00440{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m79_c00440{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00440{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m12_c00440{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00440{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m97_c00440{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m25_c00440{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00440{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m19_c00440{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00440{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00440{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00440{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00440{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m38_c00440{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00440{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m74_c00440{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m76_c00440{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m51_c00440{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m98_c00440{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m24_c00440{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m85_c00440{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00440{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00440{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m96_c00440{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m44_c00440{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m23_c00440{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00440{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00440{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m40_c00440{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17_c00440{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m55_c00440{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m27_c00440{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00440{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m46_c00440{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m92_c00440{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00440{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);}
.m9b_c00440{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00440{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m67_c00440{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14_c00440{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21_c00440{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m61_c00440{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m82_c00440{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m31_c00440{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m22_c00440{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00440{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m90_c00440{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00440{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00440{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m57_c00440{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00440{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00440{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m78_c00440{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m75_c00440{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m88_c00440{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m48_c00440{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00440{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00440{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00440{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00440{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m39_c00440{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00440{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00440{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m26_c00440{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m95_c00440{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m91_c00440{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m29_c00440{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m33_c00440{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00440{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00440{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00440{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m73_c00440{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00440{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m69_c00440{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma_c00440{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m77_c00440{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{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__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00440{word-spacing:-7.500000px;}
.ws6_c00440{word-spacing:0.000000px;}
.ws1_c00440{word-spacing:3.125000px;}
.ws2_c00440{word-spacing:3.157895px;}
.ws0_c00440{word-spacing:14.722222px;}
.ws5_c00440{word-spacing:15.000000px;}
.ws4_c00440{word-spacing:24.242424px;}
.fc0_c00440{color:transparent;}
.fs1_c00440{font-size:54.000000px;}
.fs0_c00440{font-size:60.000000px;}
.y0_c00440{bottom:0.000000px;}
.y2b_c00440{bottom:160.650000px;}
.y2a_c00440{bottom:180.450000px;}
.y29_c00440{bottom:200.250000px;}
.y28_c00440{bottom:220.050000px;}
.y27_c00440{bottom:240.900000px;}
.y26_c00440{bottom:260.700000px;}
.y25_c00440{bottom:280.800000px;}
.y24_c00440{bottom:300.600000px;}
.y23_c00440{bottom:320.400000px;}
.y22_c00440{bottom:340.500000px;}
.y21_c00440{bottom:360.300000px;}
.y20_c00440{bottom:380.100000px;}
.y1f_c00440{bottom:399.900000px;}
.y1e_c00440{bottom:435.000000px;}
.y1d_c00440{bottom:455.850000px;}
.y1c_c00440{bottom:475.950000px;}
.y1b_c00440{bottom:495.750000px;}
.y1a_c00440{bottom:515.550000px;}
.y19_c00440{bottom:535.350000px;}
.y18_c00440{bottom:566.100000px;}
.y17_c00440{bottom:586.200000px;}
.y16_c00440{bottom:606.000000px;}
.y15_c00440{bottom:625.800000px;}
.y14_c00440{bottom:645.600000px;}
.y13_c00440{bottom:665.700000px;}
.y12_c00440{bottom:685.800000px;}
.y11_c00440{bottom:721.200000px;}
.y10_c00440{bottom:741.300000px;}
.yf_c00440{bottom:761.100000px;}
.ye_c00440{bottom:780.900000px;}
.yd_c00440{bottom:801.000000px;}
.yc_c00440{bottom:821.100000px;}
.yb_c00440{bottom:847.050000px;}
.ya_c00440{bottom:856.200000px;}
.y9_c00440{bottom:876.000000px;}
.y8_c00440{bottom:895.800000px;}
.y7_c00440{bottom:915.900000px;}
.y6_c00440{bottom:936.000000px;}
.y5_c00440{bottom:955.800000px;}
.y4_c00440{bottom:975.900000px;}
.y3_c00440{bottom:995.400000px;}
.y2_c00440{bottom:1015.500000px;}
.y1_c00440{bottom:1054.050000px;}
.h3_c00440{height:54.000000px;}
.h2_c00440{height:60.000000px;}
.h1_c00440{height:1166.250000px;}
.h0_c00440{height:1166.400056px;}
.w0_c00440{width:920.879975px;}
.w1_c00440{width:921.000000px;}
.x0_c00440{left:0.000000px;}
.x100_c00440{left:135.300000px;}
.xae_c00440{left:136.500000px;}
.x49_c00440{left:137.850000px;}
.x3_c00440{left:138.900000px;}
.x1_c00440{left:140.100000px;}
.xb9_c00440{left:154.800000px;}
.x125_c00440{left:155.850000px;}
.x20_c00440{left:158.100000px;}
.xc8_c00440{left:159.750000px;}
.x10c_c00440{left:160.950000px;}
.x4_c00440{left:162.300000px;}
.x84_c00440{left:165.000000px;}
.x4a_c00440{left:166.950000px;}
.xa9_c00440{left:168.150000px;}
.x3a_c00440{left:169.950000px;}
.x101_c00440{left:171.600000px;}
.xd5_c00440{left:173.700000px;}
.xfb_c00440{left:175.950000px;}
.x10d_c00440{left:178.200000px;}
.x2f_c00440{left:180.750000px;}
.xce_c00440{left:181.800000px;}
.x70_c00440{left:185.850000px;}
.xc0_c00440{left:190.950000px;}
.x13_c00440{left:192.750000px;}
.x21_c00440{left:193.800000px;}
.x99_c00440{left:195.900000px;}
.x3b_c00440{left:199.800000px;}
.xaf_c00440{left:203.100000px;}
.xe6_c00440{left:207.600000px;}
.x85_c00440{left:209.250000px;}
.xc1_c00440{left:211.050000px;}
.x59_c00440{left:213.600000px;}
.xed_c00440{left:215.400000px;}
.x71_c00440{left:216.450000px;}
.x4b_c00440{left:218.850000px;}
.x108_c00440{left:221.400000px;}
.x5a_c00440{left:224.700000px;}
.x79_c00440{left:225.900000px;}
.xc2_c00440{left:228.000000px;}
.x86_c00440{left:229.350000px;}
.x14_c00440{left:230.550000px;}
.xf4_c00440{left:232.350000px;}
.x3c_c00440{left:236.100000px;}
.x4c_c00440{left:237.900000px;}
.x63_c00440{left:242.100000px;}
.x5b_c00440{left:244.200000px;}
.x9a_c00440{left:246.000000px;}
.x5_c00440{left:248.400000px;}
.x15_c00440{left:249.600000px;}
.x22_c00440{left:252.150000px;}
.xe7_c00440{left:253.350000px;}
.x87_c00440{left:254.850000px;}
.x121_c00440{left:258.900000px;}
.x30_c00440{left:260.250000px;}
.x102_c00440{left:261.900000px;}
.xba_c00440{left:263.100000px;}
.x10e_c00440{left:264.600000px;}
.x64_c00440{left:266.550000px;}
.x123_c00440{left:268.200000px;}
.xc9_c00440{left:269.550000px;}
.xd6_c00440{left:271.200000px;}
.x4d_c00440{left:273.150000px;}
.xa4_c00440{left:275.400000px;}
.x109_c00440{left:277.200000px;}
.x16_c00440{left:278.400000px;}
.x5c_c00440{left:279.900000px;}
.x23_c00440{left:281.700000px;}
.x3d_c00440{left:285.000000px;}
.x9b_c00440{left:286.350000px;}
.x31_c00440{left:290.550000px;}
.xbb_c00440{left:294.000000px;}
.x7a_c00440{left:297.900000px;}
.xdc_c00440{left:300.000000px;}
.x65_c00440{left:301.500000px;}
.x10f_c00440{left:303.450000px;}
.x3e_c00440{left:305.550000px;}
.x129_c00440{left:306.750000px;}
.x88_c00440{left:308.100000px;}
.x32_c00440{left:312.450000px;}
.xf5_c00440{left:314.850000px;}
.x6_c00440{left:316.500000px;}
.xcf_c00440{left:319.650000px;}
.xee_c00440{left:322.050000px;}
.xb0_c00440{left:324.450000px;}
.xbc_c00440{left:326.400000px;}
.x110_c00440{left:327.900000px;}
.x7b_c00440{left:329.550000px;}
.x103_c00440{left:330.600000px;}
.x91_c00440{left:334.800000px;}
.x9c_c00440{left:337.050000px;}
.x33_c00440{left:338.400000px;}
.x4e_c00440{left:341.850000px;}
.x7c_c00440{left:345.000000px;}
.x17_c00440{left:346.050000px;}
.xa5_c00440{left:348.150000px;}
.xd8_c00440{left:349.650000px;}
.x92_c00440{left:352.800000px;}
.x3f_c00440{left:353.850000px;}
.x9d_c00440{left:355.050000px;}
.x4f_c00440{left:356.550000px;}
.xf6_c00440{left:360.300000px;}
.x24_c00440{left:361.950000px;}
.x89_c00440{left:363.150000px;}
.xb1_c00440{left:365.100000px;}
.x7d_c00440{left:368.400000px;}
.x34_c00440{left:373.650000px;}
.xef_c00440{left:375.000000px;}
.x50_c00440{left:376.350000px;}
.x5d_c00440{left:378.150000px;}
.x66_c00440{left:380.700000px;}
.x7_c00440{left:382.350000px;}
.x25_c00440{left:384.600000px;}
.x18_c00440{left:387.150000px;}
.xe8_c00440{left:388.800000px;}
.x126_c00440{left:390.000000px;}
.x67_c00440{left:395.400000px;}
.xfc_c00440{left:396.600000px;}
.x9e_c00440{left:399.300000px;}
.x35_c00440{left:402.450000px;}
.x8_c00440{left:405.450000px;}
.xe0_c00440{left:407.400000px;}
.x51_c00440{left:409.500000px;}
.x73_c00440{left:411.150000px;}
.x8a_c00440{left:412.800000px;}
.x11d_c00440{left:415.350000px;}
.x19_c00440{left:418.050000px;}
.x93_c00440{left:420.900000px;}
.x9f_c00440{left:421.950000px;}
.x119_c00440{left:423.150000px;}
.x68_c00440{left:424.950000px;}
.xbd_c00440{left:426.900000px;}
.x40_c00440{left:428.400000px;}
.xe9_c00440{left:429.450000px;}
.xa6_c00440{left:430.650000px;}
.x12a_c00440{left:432.450000px;}
.x5e_c00440{left:433.650000px;}
.xe1_c00440{left:435.900000px;}
.x2_c00440{left:437.100000px;}
.x94_c00440{left:440.700000px;}
.x26_c00440{left:441.900000px;}
.xd9_c00440{left:442.950000px;}
.xf0_c00440{left:446.700000px;}
.xa0_c00440{left:448.650000px;}
.x9_c00440{left:449.700000px;}
.x11a_c00440{left:451.650000px;}
.x41_c00440{left:453.900000px;}
.x104_c00440{left:455.550000px;}
.x12b_c00440{left:457.350000px;}
.xdd_c00440{left:459.150000px;}
.xd7_c00440{left:460.200000px;}
.x7e_c00440{left:463.800000px;}
.xaa_c00440{left:464.850000px;}
.xb2_c00440{left:465.900000px;}
.xc3_c00440{left:468.000000px;}
.xf7_c00440{left:470.400000px;}
.x8b_c00440{left:471.600000px;}
.x36_c00440{left:473.400000px;}
.xa7_c00440{left:475.650000px;}
.x74_c00440{left:478.500000px;}
.xd0_c00440{left:485.250000px;}
.xa1_c00440{left:487.500000px;}
.xf8_c00440{left:490.500000px;}
.x1a_c00440{left:492.600000px;}
.xa_c00440{left:493.650000px;}
.xa8_c00440{left:496.200000px;}
.x69_c00440{left:498.450000px;}
.x27_c00440{left:500.550000px;}
.x7f_c00440{left:502.650000px;}
.x52_c00440{left:504.150000px;}
.x37_c00440{left:508.350000px;}
.x5f_c00440{left:510.000000px;}
.xca_c00440{left:514.350000px;}
.x8c_c00440{left:516.900000px;}
.xde_c00440{left:519.600000px;}
.xa2_c00440{left:520.950000px;}
.xd1_c00440{left:522.300000px;}
.x53_c00440{left:523.650000px;}
.x72_c00440{left:526.350000px;}
.x75_c00440{left:527.400000px;}
.x42_c00440{left:528.750000px;}
.xf9_c00440{left:530.100000px;}
.x80_c00440{left:531.150000px;}
.x6a_c00440{left:532.950000px;}
.x10a_c00440{left:535.050000px;}
.xdf_c00440{left:537.900000px;}
.xc4_c00440{left:540.000000px;}
.xb_c00440{left:541.200000px;}
.x11e_c00440{left:542.850000px;}
.x1b_c00440{left:544.800000px;}
.x28_c00440{left:546.600000px;}
.xab_c00440{left:549.750000px;}
.xb3_c00440{left:552.300000px;}
.xf1_c00440{left:553.500000px;}
.xe2_c00440{left:555.000000px;}
.xc_c00440{left:556.650000px;}
.x54_c00440{left:558.900000px;}
.x6b_c00440{left:562.800000px;}
.x95_c00440{left:564.900000px;}
.x29_c00440{left:566.400000px;}
.xfa_c00440{left:567.900000px;}
.x8d_c00440{left:569.100000px;}
.xc5_c00440{left:570.900000px;}
.x105_c00440{left:572.100000px;}
.xb4_c00440{left:573.900000px;}
.xe3_c00440{left:575.100000px;}
.x60_c00440{left:576.300000px;}
.x76_c00440{left:579.900000px;}
.x111_c00440{left:581.550000px;}
.xcb_c00440{left:584.550000px;}
.x38_c00440{left:586.500000px;}
.xd_c00440{left:588.300000px;}
.x1c_c00440{left:591.900000px;}
.xea_c00440{left:593.250000px;}
.x81_c00440{left:597.450000px;}
.xd2_c00440{left:598.500000px;}
.x8e_c00440{left:601.500000px;}
.xb5_c00440{left:603.450000px;}
.x2a_c00440{left:613.200000px;}
.x43_c00440{left:615.900000px;}
.xc6_c00440{left:621.600000px;}
.x39_c00440{left:623.550000px;}
.xeb_c00440{left:624.900000px;}
.x82_c00440{left:625.950000px;}
.x55_c00440{left:627.600000px;}
.x114_c00440{left:629.250000px;}
.x127_c00440{left:631.050000px;}
.xe_c00440{left:635.850000px;}
.x112_c00440{left:638.100000px;}
.x77_c00440{left:640.050000px;}
.xb6_c00440{left:642.300000px;}
.x56_c00440{left:647.100000px;}
.xfd_c00440{left:648.600000px;}
.x44_c00440{left:650.100000px;}
.x2b_c00440{left:652.050000px;}
.xc7_c00440{left:655.800000px;}
.x8f_c00440{left:657.300000px;}
.x1d_c00440{left:661.650000px;}
.x6c_c00440{left:664.350000px;}
.xf_c00440{left:665.700000px;}
.xfe_c00440{left:668.100000px;}
.x61_c00440{left:670.200000px;}
.x45_c00440{left:671.400000px;}
.x113_c00440{left:673.050000px;}
.xb7_c00440{left:674.700000px;}
.x96_c00440{left:676.800000px;}
.xf2_c00440{left:678.000000px;}
.x11f_c00440{left:679.950000px;}
.xcc_c00440{left:681.450000px;}
.x57_c00440{left:683.100000px;}
.x124_c00440{left:685.050000px;}
.xe4_c00440{left:688.200000px;}
.x2c_c00440{left:689.550000px;}
.x90_c00440{left:693.300000px;}
.xbe_c00440{left:696.000000px;}
.x117_c00440{left:697.800000px;}
.x11b_c00440{left:699.900000px;}
.xa3_c00440{left:701.250000px;}
.x10_c00440{left:703.200000px;}
.x1e_c00440{left:705.150000px;}
.x10b_c00440{left:707.100000px;}
.x115_c00440{left:708.450000px;}
.x46_c00440{left:714.600000px;}
.xf3_c00440{left:716.100000px;}
.x128_c00440{left:717.450000px;}
.x106_c00440{left:720.750000px;}
.x6d_c00440{left:722.250000px;}
.xac_c00440{left:724.350000px;}
.x2d_c00440{left:726.600000px;}
.xff_c00440{left:728.250000px;}
.xd3_c00440{left:729.900000px;}
.x11c_c00440{left:732.000000px;}
.x47_c00440{left:734.100000px;}
.x11_c00440{left:736.350000px;}
.x97_c00440{left:738.300000px;}
.x120_c00440{left:740.100000px;}
.x6e_c00440{left:745.650000px;}
.x122_c00440{left:749.250000px;}
.x83_c00440{left:751.200000px;}
.xda_c00440{left:754.500000px;}
.x118_c00440{left:757.950000px;}
.xe5_c00440{left:760.200000px;}
.x48_c00440{left:761.400000px;}
.x107_c00440{left:762.900000px;}
.x1f_c00440{left:764.250000px;}
.x12_c00440{left:766.950000px;}
.xec_c00440{left:769.200000px;}
.x2e_c00440{left:771.900000px;}
.x78_c00440{left:773.700000px;}
.x6f_c00440{left:777.300000px;}
.xcd_c00440{left:779.700000px;}
.xb8_c00440{left:780.900000px;}
.x58_c00440{left:782.100000px;}
.x62_c00440{left:783.300000px;}
.xad_c00440{left:784.500000px;}
.x116_c00440{left:789.150000px;}
.xd4_c00440{left:792.150000px;}
.xdb_c00440{left:793.350000px;}
.xbf_c00440{left:798.150000px;}
.x98_c00440{left:801.600000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws3_c00440{word-spacing:-6.666667pt;}
.ws6_c00440{word-spacing:0.000000pt;}
.ws1_c00440{word-spacing:2.777778pt;}
.ws2_c00440{word-spacing:2.807018pt;}
.ws0_c00440{word-spacing:13.086420pt;}
.ws5_c00440{word-spacing:13.333333pt;}
.ws4_c00440{word-spacing:21.548822pt;}
.fs1_c00440{font-size:48.000000pt;}
.fs0_c00440{font-size:53.333333pt;}
.y0_c00440{bottom:0.000000pt;}
.y2b_c00440{bottom:142.800000pt;}
.y2a_c00440{bottom:160.400000pt;}
.y29_c00440{bottom:178.000000pt;}
.y28_c00440{bottom:195.600000pt;}
.y27_c00440{bottom:214.133333pt;}
.y26_c00440{bottom:231.733333pt;}
.y25_c00440{bottom:249.600000pt;}
.y24_c00440{bottom:267.200000pt;}
.y23_c00440{bottom:284.800000pt;}
.y22_c00440{bottom:302.666667pt;}
.y21_c00440{bottom:320.266667pt;}
.y20_c00440{bottom:337.866667pt;}
.y1f_c00440{bottom:355.466667pt;}
.y1e_c00440{bottom:386.666667pt;}
.y1d_c00440{bottom:405.200000pt;}
.y1c_c00440{bottom:423.066667pt;}
.y1b_c00440{bottom:440.666667pt;}
.y1a_c00440{bottom:458.266667pt;}
.y19_c00440{bottom:475.866667pt;}
.y18_c00440{bottom:503.200000pt;}
.y17_c00440{bottom:521.066667pt;}
.y16_c00440{bottom:538.666667pt;}
.y15_c00440{bottom:556.266667pt;}
.y14_c00440{bottom:573.866667pt;}
.y13_c00440{bottom:591.733333pt;}
.y12_c00440{bottom:609.600000pt;}
.y11_c00440{bottom:641.066667pt;}
.y10_c00440{bottom:658.933333pt;}
.yf_c00440{bottom:676.533333pt;}
.ye_c00440{bottom:694.133333pt;}
.yd_c00440{bottom:712.000000pt;}
.yc_c00440{bottom:729.866667pt;}
.yb_c00440{bottom:752.933333pt;}
.ya_c00440{bottom:761.066667pt;}
.y9_c00440{bottom:778.666667pt;}
.y8_c00440{bottom:796.266667pt;}
.y7_c00440{bottom:814.133333pt;}
.y6_c00440{bottom:832.000000pt;}
.y5_c00440{bottom:849.600000pt;}
.y4_c00440{bottom:867.466667pt;}
.y3_c00440{bottom:884.800000pt;}
.y2_c00440{bottom:902.666667pt;}
.y1_c00440{bottom:936.933333pt;}
.h3_c00440{height:48.000000pt;}
.h2_c00440{height:53.333333pt;}
.h1_c00440{height:1036.666667pt;}
.h0_c00440{height:1036.800049pt;}
.w0_c00440{width:818.559977pt;}
.w1_c00440{width:818.666667pt;}
.x0_c00440{left:0.000000pt;}
.x100_c00440{left:120.266667pt;}
.xae_c00440{left:121.333333pt;}
.x49_c00440{left:122.533333pt;}
.x3_c00440{left:123.466667pt;}
.x1_c00440{left:124.533333pt;}
.xb9_c00440{left:137.600000pt;}
.x125_c00440{left:138.533333pt;}
.x20_c00440{left:140.533333pt;}
.xc8_c00440{left:142.000000pt;}
.x10c_c00440{left:143.066667pt;}
.x4_c00440{left:144.266667pt;}
.x84_c00440{left:146.666667pt;}
.x4a_c00440{left:148.400000pt;}
.xa9_c00440{left:149.466667pt;}
.x3a_c00440{left:151.066667pt;}
.x101_c00440{left:152.533333pt;}
.xd5_c00440{left:154.400000pt;}
.xfb_c00440{left:156.400000pt;}
.x10d_c00440{left:158.400000pt;}
.x2f_c00440{left:160.666667pt;}
.xce_c00440{left:161.600000pt;}
.x70_c00440{left:165.200000pt;}
.xc0_c00440{left:169.733333pt;}
.x13_c00440{left:171.333333pt;}
.x21_c00440{left:172.266667pt;}
.x99_c00440{left:174.133333pt;}
.x3b_c00440{left:177.600000pt;}
.xaf_c00440{left:180.533333pt;}
.xe6_c00440{left:184.533333pt;}
.x85_c00440{left:186.000000pt;}
.xc1_c00440{left:187.600000pt;}
.x59_c00440{left:189.866667pt;}
.xed_c00440{left:191.466667pt;}
.x71_c00440{left:192.400000pt;}
.x4b_c00440{left:194.533333pt;}
.x108_c00440{left:196.800000pt;}
.x5a_c00440{left:199.733333pt;}
.x79_c00440{left:200.800000pt;}
.xc2_c00440{left:202.666667pt;}
.x86_c00440{left:203.866667pt;}
.x14_c00440{left:204.933333pt;}
.xf4_c00440{left:206.533333pt;}
.x3c_c00440{left:209.866667pt;}
.x4c_c00440{left:211.466667pt;}
.x63_c00440{left:215.200000pt;}
.x5b_c00440{left:217.066667pt;}
.x9a_c00440{left:218.666667pt;}
.x5_c00440{left:220.800000pt;}
.x15_c00440{left:221.866667pt;}
.x22_c00440{left:224.133333pt;}
.xe7_c00440{left:225.200000pt;}
.x87_c00440{left:226.533333pt;}
.x121_c00440{left:230.133333pt;}
.x30_c00440{left:231.333333pt;}
.x102_c00440{left:232.800000pt;}
.xba_c00440{left:233.866667pt;}
.x10e_c00440{left:235.200000pt;}
.x64_c00440{left:236.933333pt;}
.x123_c00440{left:238.400000pt;}
.xc9_c00440{left:239.600000pt;}
.xd6_c00440{left:241.066667pt;}
.x4d_c00440{left:242.800000pt;}
.xa4_c00440{left:244.800000pt;}
.x109_c00440{left:246.400000pt;}
.x16_c00440{left:247.466667pt;}
.x5c_c00440{left:248.800000pt;}
.x23_c00440{left:250.400000pt;}
.x3d_c00440{left:253.333333pt;}
.x9b_c00440{left:254.533333pt;}
.x31_c00440{left:258.266667pt;}
.xbb_c00440{left:261.333333pt;}
.x7a_c00440{left:264.800000pt;}
.xdc_c00440{left:266.666667pt;}
.x65_c00440{left:268.000000pt;}
.x10f_c00440{left:269.733333pt;}
.x3e_c00440{left:271.600000pt;}
.x129_c00440{left:272.666667pt;}
.x88_c00440{left:273.866667pt;}
.x32_c00440{left:277.733333pt;}
.xf5_c00440{left:279.866667pt;}
.x6_c00440{left:281.333333pt;}
.xcf_c00440{left:284.133333pt;}
.xee_c00440{left:286.266667pt;}
.xb0_c00440{left:288.400000pt;}
.xbc_c00440{left:290.133333pt;}
.x110_c00440{left:291.466667pt;}
.x7b_c00440{left:292.933333pt;}
.x103_c00440{left:293.866667pt;}
.x91_c00440{left:297.600000pt;}
.x9c_c00440{left:299.600000pt;}
.x33_c00440{left:300.800000pt;}
.x4e_c00440{left:303.866667pt;}
.x7c_c00440{left:306.666667pt;}
.x17_c00440{left:307.600000pt;}
.xa5_c00440{left:309.466667pt;}
.xd8_c00440{left:310.800000pt;}
.x92_c00440{left:313.600000pt;}
.x3f_c00440{left:314.533333pt;}
.x9d_c00440{left:315.600000pt;}
.x4f_c00440{left:316.933333pt;}
.xf6_c00440{left:320.266667pt;}
.x24_c00440{left:321.733333pt;}
.x89_c00440{left:322.800000pt;}
.xb1_c00440{left:324.533333pt;}
.x7d_c00440{left:327.466667pt;}
.x34_c00440{left:332.133333pt;}
.xef_c00440{left:333.333333pt;}
.x50_c00440{left:334.533333pt;}
.x5d_c00440{left:336.133333pt;}
.x66_c00440{left:338.400000pt;}
.x7_c00440{left:339.866667pt;}
.x25_c00440{left:341.866667pt;}
.x18_c00440{left:344.133333pt;}
.xe8_c00440{left:345.600000pt;}
.x126_c00440{left:346.666667pt;}
.x67_c00440{left:351.466667pt;}
.xfc_c00440{left:352.533333pt;}
.x9e_c00440{left:354.933333pt;}
.x35_c00440{left:357.733333pt;}
.x8_c00440{left:360.400000pt;}
.xe0_c00440{left:362.133333pt;}
.x51_c00440{left:364.000000pt;}
.x73_c00440{left:365.466667pt;}
.x8a_c00440{left:366.933333pt;}
.x11d_c00440{left:369.200000pt;}
.x19_c00440{left:371.600000pt;}
.x93_c00440{left:374.133333pt;}
.x9f_c00440{left:375.066667pt;}
.x119_c00440{left:376.133333pt;}
.x68_c00440{left:377.733333pt;}
.xbd_c00440{left:379.466667pt;}
.x40_c00440{left:380.800000pt;}
.xe9_c00440{left:381.733333pt;}
.xa6_c00440{left:382.800000pt;}
.x12a_c00440{left:384.400000pt;}
.x5e_c00440{left:385.466667pt;}
.xe1_c00440{left:387.466667pt;}
.x2_c00440{left:388.533333pt;}
.x94_c00440{left:391.733333pt;}
.x26_c00440{left:392.800000pt;}
.xd9_c00440{left:393.733333pt;}
.xf0_c00440{left:397.066667pt;}
.xa0_c00440{left:398.800000pt;}
.x9_c00440{left:399.733333pt;}
.x11a_c00440{left:401.466667pt;}
.x41_c00440{left:403.466667pt;}
.x104_c00440{left:404.933333pt;}
.x12b_c00440{left:406.533333pt;}
.xdd_c00440{left:408.133333pt;}
.xd7_c00440{left:409.066667pt;}
.x7e_c00440{left:412.266667pt;}
.xaa_c00440{left:413.200000pt;}
.xb2_c00440{left:414.133333pt;}
.xc3_c00440{left:416.000000pt;}
.xf7_c00440{left:418.133333pt;}
.x8b_c00440{left:419.200000pt;}
.x36_c00440{left:420.800000pt;}
.xa7_c00440{left:422.800000pt;}
.x74_c00440{left:425.333333pt;}
.xd0_c00440{left:431.333333pt;}
.xa1_c00440{left:433.333333pt;}
.xf8_c00440{left:436.000000pt;}
.x1a_c00440{left:437.866667pt;}
.xa_c00440{left:438.800000pt;}
.xa8_c00440{left:441.066667pt;}
.x69_c00440{left:443.066667pt;}
.x27_c00440{left:444.933333pt;}
.x7f_c00440{left:446.800000pt;}
.x52_c00440{left:448.133333pt;}
.x37_c00440{left:451.866667pt;}
.x5f_c00440{left:453.333333pt;}
.xca_c00440{left:457.200000pt;}
.x8c_c00440{left:459.466667pt;}
.xde_c00440{left:461.866667pt;}
.xa2_c00440{left:463.066667pt;}
.xd1_c00440{left:464.266667pt;}
.x53_c00440{left:465.466667pt;}
.x72_c00440{left:467.866667pt;}
.x75_c00440{left:468.800000pt;}
.x42_c00440{left:470.000000pt;}
.xf9_c00440{left:471.200000pt;}
.x80_c00440{left:472.133333pt;}
.x6a_c00440{left:473.733333pt;}
.x10a_c00440{left:475.600000pt;}
.xdf_c00440{left:478.133333pt;}
.xc4_c00440{left:480.000000pt;}
.xb_c00440{left:481.066667pt;}
.x11e_c00440{left:482.533333pt;}
.x1b_c00440{left:484.266667pt;}
.x28_c00440{left:485.866667pt;}
.xab_c00440{left:488.666667pt;}
.xb3_c00440{left:490.933333pt;}
.xf1_c00440{left:492.000000pt;}
.xe2_c00440{left:493.333333pt;}
.xc_c00440{left:494.800000pt;}
.x54_c00440{left:496.800000pt;}
.x6b_c00440{left:500.266667pt;}
.x95_c00440{left:502.133333pt;}
.x29_c00440{left:503.466667pt;}
.xfa_c00440{left:504.800000pt;}
.x8d_c00440{left:505.866667pt;}
.xc5_c00440{left:507.466667pt;}
.x105_c00440{left:508.533333pt;}
.xb4_c00440{left:510.133333pt;}
.xe3_c00440{left:511.200000pt;}
.x60_c00440{left:512.266667pt;}
.x76_c00440{left:515.466667pt;}
.x111_c00440{left:516.933333pt;}
.xcb_c00440{left:519.600000pt;}
.x38_c00440{left:521.333333pt;}
.xd_c00440{left:522.933333pt;}
.x1c_c00440{left:526.133333pt;}
.xea_c00440{left:527.333333pt;}
.x81_c00440{left:531.066667pt;}
.xd2_c00440{left:532.000000pt;}
.x8e_c00440{left:534.666667pt;}
.xb5_c00440{left:536.400000pt;}
.x2a_c00440{left:545.066667pt;}
.x43_c00440{left:547.466667pt;}
.xc6_c00440{left:552.533333pt;}
.x39_c00440{left:554.266667pt;}
.xeb_c00440{left:555.466667pt;}
.x82_c00440{left:556.400000pt;}
.x55_c00440{left:557.866667pt;}
.x114_c00440{left:559.333333pt;}
.x127_c00440{left:560.933333pt;}
.xe_c00440{left:565.200000pt;}
.x112_c00440{left:567.200000pt;}
.x77_c00440{left:568.933333pt;}
.xb6_c00440{left:570.933333pt;}
.x56_c00440{left:575.200000pt;}
.xfd_c00440{left:576.533333pt;}
.x44_c00440{left:577.866667pt;}
.x2b_c00440{left:579.600000pt;}
.xc7_c00440{left:582.933333pt;}
.x8f_c00440{left:584.266667pt;}
.x1d_c00440{left:588.133333pt;}
.x6c_c00440{left:590.533333pt;}
.xf_c00440{left:591.733333pt;}
.xfe_c00440{left:593.866667pt;}
.x61_c00440{left:595.733333pt;}
.x45_c00440{left:596.800000pt;}
.x113_c00440{left:598.266667pt;}
.xb7_c00440{left:599.733333pt;}
.x96_c00440{left:601.600000pt;}
.xf2_c00440{left:602.666667pt;}
.x11f_c00440{left:604.400000pt;}
.xcc_c00440{left:605.733333pt;}
.x57_c00440{left:607.200000pt;}
.x124_c00440{left:608.933333pt;}
.xe4_c00440{left:611.733333pt;}
.x2c_c00440{left:612.933333pt;}
.x90_c00440{left:616.266667pt;}
.xbe_c00440{left:618.666667pt;}
.x117_c00440{left:620.266667pt;}
.x11b_c00440{left:622.133333pt;}
.xa3_c00440{left:623.333333pt;}
.x10_c00440{left:625.066667pt;}
.x1e_c00440{left:626.800000pt;}
.x10b_c00440{left:628.533333pt;}
.x115_c00440{left:629.733333pt;}
.x46_c00440{left:635.200000pt;}
.xf3_c00440{left:636.533333pt;}
.x128_c00440{left:637.733333pt;}
.x106_c00440{left:640.666667pt;}
.x6d_c00440{left:642.000000pt;}
.xac_c00440{left:643.866667pt;}
.x2d_c00440{left:645.866667pt;}
.xff_c00440{left:647.333333pt;}
.xd3_c00440{left:648.800000pt;}
.x11c_c00440{left:650.666667pt;}
.x47_c00440{left:652.533333pt;}
.x11_c00440{left:654.533333pt;}
.x97_c00440{left:656.266667pt;}
.x120_c00440{left:657.866667pt;}
.x6e_c00440{left:662.800000pt;}
.x122_c00440{left:666.000000pt;}
.x83_c00440{left:667.733333pt;}
.xda_c00440{left:670.666667pt;}
.x118_c00440{left:673.733333pt;}
.xe5_c00440{left:675.733333pt;}
.x48_c00440{left:676.800000pt;}
.x107_c00440{left:678.133333pt;}
.x1f_c00440{left:679.333333pt;}
.x12_c00440{left:681.733333pt;}
.xec_c00440{left:683.733333pt;}
.x2e_c00440{left:686.133333pt;}
.x78_c00440{left:687.733333pt;}
.x6f_c00440{left:690.933333pt;}
.xcd_c00440{left:693.066667pt;}
.xb8_c00440{left:694.133333pt;}
.x58_c00440{left:695.200000pt;}
.x62_c00440{left:696.266667pt;}
.xad_c00440{left:697.333333pt;}
.x116_c00440{left:701.466667pt;}
.xd4_c00440{left:704.133333pt;}
.xdb_c00440{left:705.200000pt;}
.xbf_c00440{left:709.466667pt;}
.x98_c00440{left:712.533333pt;}
}





/* 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_c00441 {
    display:none;
  }
  .loading-indicator_c00441.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00441 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_c00441 { 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_c00441" -> "#page-container .classname_c00441")
 */
.pf_c00441 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00441 { /* 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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00441 { /* 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_c00441 { /* 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_c00441 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00441 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00441 {overflow:visible;}
  }
}
.c_c00441 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00441 { /* 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_c00441:after { /* webkit #35443 */
  content: '';
}
.t_c00441:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00441 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 */
}
.__c00441 { /* 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_c00441 { /* info for Javascript */
  display:none;
}
.l_c00441 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00441 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00441 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00441: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_c00441 {
    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_c00441.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00441.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_c00441 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00441{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00441;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.000000;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;}
.m3_c00441{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00441{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m9_c00441{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2_c00441{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m0_c00441{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00441{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00441{transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309750,0.000000,0.000000,0.250000,0,0);}
.m13_c00441{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m19_c00441{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m17_c00441{transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408000,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.416500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.888000,0.000000,0.000000,0.250000,0,0);}
.v0_c00441{vertical-align:0.000000px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{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__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00441{word-spacing:0.000000px;}
.ws0_c00441{word-spacing:30.000000px;}
.fc0_c00441{color:transparent;}
.fs4_c00441{font-size:24.000000px;}
.fs2_c00441{font-size:30.000000px;}
.fs0_c00441{font-size:36.000000px;}
.fs1_c00441{font-size:48.000000px;}
.fs3_c00441{font-size:102.000000px;}
.y0_c00441{bottom:0.000000px;}
.ya_c00441{bottom:606.600000px;}
.y8_c00441{bottom:615.300000px;}
.y9_c00441{bottom:615.600000px;}
.y4_c00441{bottom:631.050000px;}
.y3_c00441{bottom:639.750000px;}
.y2_c00441{bottom:650.550000px;}
.y1_c00441{bottom:663.450000px;}
.y6_c00441{bottom:668.100000px;}
.y7_c00441{bottom:669.900000px;}
.y5_c00441{bottom:744.150000px;}
.h6_c00441{height:24.000000px;}
.h4_c00441{height:30.000000px;}
.h2_c00441{height:36.000000px;}
.h3_c00441{height:48.000000px;}
.h5_c00441{height:102.000000px;}
.h1_c00441{height:1166.250000px;}
.h0_c00441{height:1166.400056px;}
.w0_c00441{width:920.879975px;}
.w1_c00441{width:921.000000px;}
.x0_c00441{left:0.000000px;}
.x8_c00441{left:61.200000px;}
.x3_c00441{left:79.200000px;}
.x9_c00441{left:81.000000px;}
.xa_c00441{left:83.850000px;}
.xb_c00441{left:94.650000px;}
.x1_c00441{left:97.950000px;}
.x7_c00441{left:102.150000px;}
.xc_c00441{left:106.500000px;}
.x1a_c00441{left:114.150000px;}
.xd_c00441{left:115.500000px;}
.xe_c00441{left:124.500000px;}
.x2_c00441{left:132.450000px;}
.x4_c00441{left:152.250000px;}
.x5_c00441{left:162.300000px;}
.x6_c00441{left:169.800000px;}
.x1b_c00441{left:174.600000px;}
.x1c_c00441{left:180.300000px;}
.xf_c00441{left:186.750000px;}
.x10_c00441{left:200.400000px;}
.x11_c00441{left:253.650000px;}
.x13_c00441{left:563.400000px;}
.x14_c00441{left:585.750000px;}
.x15_c00441{left:607.350000px;}
.x16_c00441{left:629.250000px;}
.x17_c00441{left:673.950000px;}
.x18_c00441{left:695.550000px;}
.x12_c00441{left:702.300000px;}
.x1d_c00441{left:709.950000px;}
.x19_c00441{left:741.300000px;}
.x1e_c00441{left:776.250000px;}
.x1f_c00441{left:795.900000px;}
.x20_c00441{left:807.000000px;}
.x21_c00441{left:843.000000px;}
.x22_c00441{left:846.600000px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws1_c00441{word-spacing:0.000000pt;}
.ws0_c00441{word-spacing:26.666667pt;}
.fs4_c00441{font-size:21.333333pt;}
.fs2_c00441{font-size:26.666667pt;}
.fs0_c00441{font-size:32.000000pt;}
.fs1_c00441{font-size:42.666667pt;}
.fs3_c00441{font-size:90.666667pt;}
.y0_c00441{bottom:0.000000pt;}
.ya_c00441{bottom:539.200000pt;}
.y8_c00441{bottom:546.933333pt;}
.y9_c00441{bottom:547.200000pt;}
.y4_c00441{bottom:560.933333pt;}
.y3_c00441{bottom:568.666667pt;}
.y2_c00441{bottom:578.266667pt;}
.y1_c00441{bottom:589.733333pt;}
.y6_c00441{bottom:593.866667pt;}
.y7_c00441{bottom:595.466667pt;}
.y5_c00441{bottom:661.466667pt;}
.h6_c00441{height:21.333333pt;}
.h4_c00441{height:26.666667pt;}
.h2_c00441{height:32.000000pt;}
.h3_c00441{height:42.666667pt;}
.h5_c00441{height:90.666667pt;}
.h1_c00441{height:1036.666667pt;}
.h0_c00441{height:1036.800049pt;}
.w0_c00441{width:818.559977pt;}
.w1_c00441{width:818.666667pt;}
.x0_c00441{left:0.000000pt;}
.x8_c00441{left:54.400000pt;}
.x3_c00441{left:70.400000pt;}
.x9_c00441{left:72.000000pt;}
.xa_c00441{left:74.533333pt;}
.xb_c00441{left:84.133333pt;}
.x1_c00441{left:87.066667pt;}
.x7_c00441{left:90.800000pt;}
.xc_c00441{left:94.666667pt;}
.x1a_c00441{left:101.466667pt;}
.xd_c00441{left:102.666667pt;}
.xe_c00441{left:110.666667pt;}
.x2_c00441{left:117.733333pt;}
.x4_c00441{left:135.333333pt;}
.x5_c00441{left:144.266667pt;}
.x6_c00441{left:150.933333pt;}
.x1b_c00441{left:155.200000pt;}
.x1c_c00441{left:160.266667pt;}
.xf_c00441{left:166.000000pt;}
.x10_c00441{left:178.133333pt;}
.x11_c00441{left:225.466667pt;}
.x13_c00441{left:500.800000pt;}
.x14_c00441{left:520.666667pt;}
.x15_c00441{left:539.866667pt;}
.x16_c00441{left:559.333333pt;}
.x17_c00441{left:599.066667pt;}
.x18_c00441{left:618.266667pt;}
.x12_c00441{left:624.266667pt;}
.x1d_c00441{left:631.066667pt;}
.x19_c00441{left:658.933333pt;}
.x1e_c00441{left:690.000000pt;}
.x1f_c00441{left:707.466667pt;}
.x20_c00441{left:717.333333pt;}
.x21_c00441{left:749.333333pt;}
.x22_c00441{left:752.533333pt;}
}





/* 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_c00442 {
    display:none;
  }
  .loading-indicator_c00442.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00442 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_c00442 { 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_c00442" -> "#page-container .classname_c00442")
 */
.pf_c00442 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00442 { /* 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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00442 { /* 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_c00442 { /* 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_c00442 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00442 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00442 {overflow:visible;}
  }
}
.c_c00442 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00442 { /* 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_c00442:after { /* webkit #35443 */
  content: '';
}
.t_c00442:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00442 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 */
}
.__c00442 { /* 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_c00442 { /* info for Javascript */
  display:none;
}
.l_c00442 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00442 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00442 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00442: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_c00442 {
    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_c00442.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00442.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_c00442 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00442{font-family:sans-serif;visibility:hidden;}
.sc__c00442{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
}
.y0_c00442{bottom:0.000000px;}
.h1_c00442{height:1166.250000px;}
.h0_c00442{height:1166.400056px;}
.w0_c00442{width:920.879975px;}
.w1_c00442{width:921.000000px;}
.x0_c00442{left:0.000000px;}
@media print{
.y0_c00442{bottom:0.000000pt;}
.h1_c00442{height:1036.666667pt;}
.h0_c00442{height:1036.800049pt;}
.w0_c00442{width:818.559977pt;}
.w1_c00442{width:818.666667pt;}
.x0_c00442{left:0.000000pt;}
}





/* 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_c00443 {
    display:none;
  }
  .loading-indicator_c00443.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00443 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_c00443 { 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_c00443" -> "#page-container .classname_c00443")
 */
.pf_c00443 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00443 { /* 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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00443 { /* 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_c00443 { /* 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_c00443 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00443 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00443 {overflow:visible;}
  }
}
.c_c00443 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00443 { /* 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_c00443:after { /* webkit #35443 */
  content: '';
}
.t_c00443:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00443 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 */
}
.__c00443 { /* 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_c00443 { /* info for Javascript */
  display:none;
}
.l_c00443 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00443 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00443 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00443: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_c00443 {
    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_c00443.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00443.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_c00443 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00443{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00443;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.000000;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;}
.m94_c00443{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00443{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00443{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00443{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m47_c00443{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m78_c00443{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m85_c00443{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00443{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m14_c00443{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m9_c00443{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m48_c00443{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00443{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00443{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m64_c00443{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m72_c00443{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m95_c00443{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00443{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00443{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m93_c00443{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00443{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m68_c00443{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m84_c00443{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00443{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m97_c00443{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m32_c00443{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m54_c00443{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m89_c00443{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m98_c00443{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m25_c00443{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m99_c00443{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m11_c00443{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m15_c00443{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m65_c00443{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m20_c00443{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00443{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00443{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00443{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m52_c00443{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00443{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m74_c00443{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00443{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m10_c00443{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00443{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.me_c00443{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00443{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m27_c00443{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m58_c00443{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m61_c00443{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m75_c00443{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m49_c00443{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00443{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m88_c00443{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.md_c00443{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m92_c00443{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m55_c00443{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);}
.m3f_c00443{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m77_c00443{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00443{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m51_c00443{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00443{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00443{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00443{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00443{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m90_c00443{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m70_c00443{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m81_c00443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m69_c00443{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m80_c00443{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00443{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m57_c00443{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m91_c00443{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00443{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m73_c00443{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00443{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00443{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m83_c00443{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00443{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00443{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m79_c00443{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m67_c00443{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m96_c00443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00443{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m87_c00443{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.ls0_c00443{letter-spacing:0.000000px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{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__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00443{word-spacing:-7.500000px;}
.ws5_c00443{word-spacing:0.000000px;}
.ws2_c00443{word-spacing:1.110029px;}
.ws4_c00443{word-spacing:3.918919px;}
.ws0_c00443{word-spacing:9.722222px;}
.ws3_c00443{word-spacing:14.629630px;}
.fc0_c00443{color:transparent;}
.fs1_c00443{font-size:54.000000px;}
.fs0_c00443{font-size:60.000000px;}
.y0_c00443{bottom:0.000000px;}
.y2b_c00443{bottom:154.800000px;}
.y2a_c00443{bottom:190.650000px;}
.y29_c00443{bottom:210.750000px;}
.y28_c00443{bottom:230.850000px;}
.y27_c00443{bottom:250.650000px;}
.y26_c00443{bottom:270.450000px;}
.y25_c00443{bottom:290.250000px;}
.y24_c00443{bottom:310.050000px;}
.y23_c00443{bottom:330.150000px;}
.y22_c00443{bottom:349.650000px;}
.y21_c00443{bottom:369.750000px;}
.y20_c00443{bottom:389.850000px;}
.y1f_c00443{bottom:409.650000px;}
.y1e_c00443{bottom:429.450000px;}
.y1d_c00443{bottom:468.900000px;}
.y1c_c00443{bottom:489.750000px;}
.y1b_c00443{bottom:509.850000px;}
.y1a_c00443{bottom:529.350000px;}
.y19_c00443{bottom:549.450000px;}
.y18_c00443{bottom:569.550000px;}
.y17_c00443{bottom:589.350000px;}
.y16_c00443{bottom:609.450000px;}
.y15_c00443{bottom:628.950000px;}
.y14_c00443{bottom:648.450000px;}
.y13_c00443{bottom:668.550000px;}
.y12_c00443{bottom:688.350000px;}
.y11_c00443{bottom:708.150000px;}
.y10_c00443{bottom:728.250000px;}
.yf_c00443{bottom:748.050000px;}
.ye_c00443{bottom:768.300000px;}
.yd_c00443{bottom:788.850000px;}
.yc_c00443{bottom:808.950000px;}
.yb_c00443{bottom:828.450000px;}
.ya_c00443{bottom:848.550000px;}
.y9_c00443{bottom:868.650000px;}
.y8_c00443{bottom:888.450000px;}
.y7_c00443{bottom:907.950000px;}
.y6_c00443{bottom:928.200000px;}
.y5_c00443{bottom:948.000000px;}
.y4_c00443{bottom:968.100000px;}
.y3_c00443{bottom:987.900000px;}
.y2_c00443{bottom:1007.700000px;}
.y1_c00443{bottom:1045.050000px;}
.h3_c00443{height:54.000000px;}
.h2_c00443{height:60.000000px;}
.h1_c00443{height:1166.250000px;}
.h0_c00443{height:1166.400056px;}
.w0_c00443{width:920.879975px;}
.w1_c00443{width:921.000000px;}
.x0_c00443{left:0.000000px;}
.x3_c00443{left:109.050000px;}
.x11f_c00443{left:110.100000px;}
.xbb_c00443{left:125.850000px;}
.x56_c00443{left:128.850000px;}
.xd2_c00443{left:133.050000px;}
.x7a_c00443{left:134.850000px;}
.x12_c00443{left:137.550000px;}
.x112_c00443{left:138.600000px;}
.x3c_c00443{left:140.100000px;}
.x10f_c00443{left:141.600000px;}
.x129_c00443{left:144.450000px;}
.xb0_c00443{left:145.500000px;}
.x22_c00443{left:146.550000px;}
.x73_c00443{left:147.750000px;}
.x9c_c00443{left:150.150000px;}
.xeb_c00443{left:153.450000px;}
.xbc_c00443{left:157.200000px;}
.x57_c00443{left:158.400000px;}
.xc1_c00443{left:160.200000px;}
.x4a_c00443{left:162.600000px;}
.x90_c00443{left:163.650000px;}
.x85_c00443{left:166.200000px;}
.x9d_c00443{left:168.450000px;}
.x4_c00443{left:169.950000px;}
.xc3_c00443{left:171.000000px;}
.x95_c00443{left:173.400000px;}
.x4b_c00443{left:174.450000px;}
.x74_c00443{left:175.800000px;}
.x32_c00443{left:176.850000px;}
.x13_c00443{left:179.250000px;}
.xd5_c00443{left:181.500000px;}
.xf5_c00443{left:184.050000px;}
.x110_c00443{left:185.550000px;}
.x108_c00443{left:186.900000px;}
.x14_c00443{left:191.550000px;}
.x86_c00443{left:192.900000px;}
.x9e_c00443{left:194.400000px;}
.xd6_c00443{left:196.200000px;}
.x58_c00443{left:197.700000px;}
.x7b_c00443{left:198.900000px;}
.x63_c00443{left:200.250000px;}
.x23_c00443{left:202.050000px;}
.x11c_c00443{left:203.850000px;}
.x118_c00443{left:204.900000px;}
.x3d_c00443{left:206.700000px;}
.xb1_c00443{left:211.050000px;}
.xc4_c00443{left:212.100000px;}
.x91_c00443{left:214.050000px;}
.xec_c00443{left:215.400000px;}
.xa5_c00443{left:217.950000px;}
.x5_c00443{left:220.650000px;}
.x64_c00443{left:222.600000px;}
.x75_c00443{left:224.700000px;}
.xf6_c00443{left:226.800000px;}
.xb2_c00443{left:231.150000px;}
.x124_c00443{left:233.250000px;}
.x33_c00443{left:234.900000px;}
.xed_c00443{left:237.750000px;}
.xbd_c00443{left:240.450000px;}
.xf7_c00443{left:242.250000px;}
.xa6_c00443{left:244.200000px;}
.xe5_c00443{left:245.400000px;}
.x6_c00443{left:246.900000px;}
.x65_c00443{left:248.550000px;}
.x24_c00443{left:249.900000px;}
.x7c_c00443{left:251.850000px;}
.x3e_c00443{left:253.200000px;}
.x87_c00443{left:261.300000px;}
.xd7_c00443{left:263.550000px;}
.xfa_c00443{left:266.250000px;}
.x15_c00443{left:267.450000px;}
.xc2_c00443{left:268.800000px;}
.x92_c00443{left:271.350000px;}
.x3f_c00443{left:272.700000px;}
.x59_c00443{left:276.900000px;}
.x109_c00443{left:278.250000px;}
.xde_c00443{left:281.100000px;}
.xb3_c00443{left:282.300000px;}
.x9f_c00443{left:285.150000px;}
.x66_c00443{left:287.400000px;}
.x10a_c00443{left:289.050000px;}
.x34_c00443{left:292.200000px;}
.xd8_c00443{left:293.850000px;}
.x76_c00443{left:297.300000px;}
.x7_c00443{left:301.950000px;}
.x25_c00443{left:304.950000px;}
.x120_c00443{left:307.650000px;}
.xee_c00443{left:308.700000px;}
.xbe_c00443{left:309.900000px;}
.xd9_c00443{left:311.100000px;}
.xa7_c00443{left:312.150000px;}
.x113_c00443{left:313.950000px;}
.xc5_c00443{left:315.000000px;}
.x96_c00443{left:317.700000px;}
.xf1_c00443{left:319.950000px;}
.x16_c00443{left:321.150000px;}
.x4c_c00443{left:322.650000px;}
.x26_c00443{left:325.050000px;}
.x11d_c00443{left:326.550000px;}
.xfe_c00443{left:328.050000px;}
.xb4_c00443{left:329.100000px;}
.xd3_c00443{left:331.650000px;}
.x4d_c00443{left:335.550000px;}
.xa0_c00443{left:337.050000px;}
.x8_c00443{left:338.250000px;}
.x5a_c00443{left:340.200000px;}
.x12a_c00443{left:341.850000px;}
.x125_c00443{left:343.800000px;}
.xda_c00443{left:346.350000px;}
.x67_c00443{left:347.550000px;}
.xfb_c00443{left:349.050000px;}
.x35_c00443{left:354.450000px;}
.xb5_c00443{left:356.100000px;}
.x27_c00443{left:358.200000px;}
.x7d_c00443{left:361.350000px;}
.x103_c00443{left:363.000000px;}
.xf2_c00443{left:364.200000px;}
.x40_c00443{left:365.700000px;}
.x4e_c00443{left:366.900000px;}
.x17_c00443{left:370.050000px;}
.x68_c00443{left:372.450000px;}
.x93_c00443{left:374.250000px;}
.x28_c00443{left:376.500000px;}
.x88_c00443{left:379.350000px;}
.x10b_c00443{left:381.600000px;}
.xd4_c00443{left:382.800000px;}
.xb6_c00443{left:384.600000px;}
.x9_c00443{left:388.950000px;}
.x12b_c00443{left:390.000000px;}
.x4f_c00443{left:391.050000px;}
.x69_c00443{left:393.750000px;}
.x7e_c00443{left:394.800000px;}
.x1_c00443{left:397.050000px;}
.xe6_c00443{left:399.450000px;}
.x12c_c00443{left:400.650000px;}
.x97_c00443{left:401.700000px;}
.xa_c00443{left:403.650000px;}
.xf8_c00443{left:405.000000px;}
.x94_c00443{left:408.750000px;}
.x18_c00443{left:410.400000px;}
.xc6_c00443{left:411.750000px;}
.x6a_c00443{left:413.850000px;}
.xdf_c00443{left:416.100000px;}
.x89_c00443{left:417.450000px;}
.x36_c00443{left:420.300000px;}
.x98_c00443{left:421.800000px;}
.x41_c00443{left:423.000000px;}
.x10c_c00443{left:426.300000px;}
.x5b_c00443{left:428.400000px;}
.xa8_c00443{left:429.750000px;}
.x29_c00443{left:430.800000px;}
.xc7_c00443{left:431.850000px;}
.x19_c00443{left:435.900000px;}
.xff_c00443{left:438.300000px;}
.xe0_c00443{left:441.600000px;}
.xcc_c00443{left:443.400000px;}
.x42_c00443{left:444.600000px;}
.x12d_c00443{left:446.700000px;}
.x5c_c00443{left:448.200000px;}
.xb_c00443{left:449.700000px;}
.x2a_c00443{left:452.700000px;}
.x8a_c00443{left:454.500000px;}
.xb7_c00443{left:455.850000px;}
.x6b_c00443{left:459.150000px;}
.xc8_c00443{left:461.400000px;}
.x1a_c00443{left:464.400000px;}
.x100_c00443{left:466.050000px;}
.x7f_c00443{left:469.650000px;}
.x43_c00443{left:473.100000px;}
.xf3_c00443{left:474.300000px;}
.x5d_c00443{left:476.250000px;}
.xa1_c00443{left:477.900000px;}
.x50_c00443{left:481.350000px;}
.x1b_c00443{left:484.950000px;}
.xcd_c00443{left:486.150000px;}
.xe1_c00443{left:488.100000px;}
.x126_c00443{left:490.050000px;}
.x6c_c00443{left:491.550000px;}
.xb8_c00443{left:493.950000px;}
.x1c_c00443{left:496.800000px;}
.x114_c00443{left:502.650000px;}
.xc_c00443{left:504.750000px;}
.xa2_c00443{left:506.400000px;}
.xa9_c00443{left:508.200000px;}
.x99_c00443{left:509.250000px;}
.x44_c00443{left:511.950000px;}
.x6d_c00443{left:513.150000px;}
.x80_c00443{left:515.700000px;}
.xe7_c00443{left:516.750000px;}
.x2b_c00443{left:519.600000px;}
.x121_c00443{left:521.250000px;}
.xe2_c00443{left:523.350000px;}
.xce_c00443{left:524.700000px;}
.xaa_c00443{left:527.700000px;}
.xc9_c00443{left:529.500000px;}
.x6e_c00443{left:530.850000px;}
.xd_c00443{left:532.800000px;}
.x1d_c00443{left:534.600000px;}
.x12e_c00443{left:535.950000px;}
.x2c_c00443{left:537.300000px;}
.xef_c00443{left:539.400000px;}
.x51_c00443{left:540.750000px;}
.x8b_c00443{left:542.400000px;}
.x5e_c00443{left:543.600000px;}
.xfc_c00443{left:546.000000px;}
.x104_c00443{left:547.200000px;}
.x10d_c00443{left:548.700000px;}
.xca_c00443{left:550.350000px;}
.x11a_c00443{left:556.200000px;}
.x81_c00443{left:557.850000px;}
.x6f_c00443{left:559.650000px;}
.x45_c00443{left:560.850000px;}
.xe_c00443{left:562.650000px;}
.xcf_c00443{left:567.600000px;}
.x115_c00443{left:569.700000px;}
.xf4_c00443{left:571.500000px;}
.x5f_c00443{left:573.150000px;}
.x37_c00443{left:574.800000px;}
.x52_c00443{left:576.000000px;}
.x70_c00443{left:577.650000px;}
.x1e_c00443{left:579.900000px;}
.x46_c00443{left:582.450000px;}
.xf0_c00443{left:587.250000px;}
.xe8_c00443{left:590.550000px;}
.xdb_c00443{left:592.500000px;}
.x101_c00443{left:594.900000px;}
.xb9_c00443{left:596.550000px;}
.xd0_c00443{left:598.500000px;}
.xbf_c00443{left:601.200000px;}
.x71_c00443{left:603.150000px;}
.x1f_c00443{left:607.650000px;}
.xfd_c00443{left:609.300000px;}
.x127_c00443{left:610.950000px;}
.x105_c00443{left:613.050000px;}
.x60_c00443{left:614.550000px;}
.xe3_c00443{left:615.900000px;}
.xab_c00443{left:617.700000px;}
.x82_c00443{left:621.600000px;}
.x122_c00443{left:624.300000px;}
.x8c_c00443{left:626.700000px;}
.x77_c00443{left:628.200000px;}
.x72_c00443{left:631.650000px;}
.xa3_c00443{left:633.600000px;}
.x53_c00443{left:634.650000px;}
.x47_c00443{left:637.050000px;}
.x9a_c00443{left:638.400000px;}
.xe9_c00443{left:639.900000px;}
.x38_c00443{left:642.450000px;}
.x123_c00443{left:644.400000px;}
.xd1_c00443{left:645.600000px;}
.x8d_c00443{left:646.800000px;}
.x61_c00443{left:648.000000px;}
.xf_c00443{left:649.800000px;}
.xac_c00443{left:651.150000px;}
.x83_c00443{left:654.300000px;}
.x9b_c00443{left:657.450000px;}
.x48_c00443{left:662.550000px;}
.x128_c00443{left:663.900000px;}
.xa4_c00443{left:666.750000px;}
.x119_c00443{left:668.400000px;}
.xcb_c00443{left:669.900000px;}
.x39_c00443{left:671.250000px;}
.xdc_c00443{left:673.050000px;}
.x2d_c00443{left:675.150000px;}
.x106_c00443{left:676.500000px;}
.xad_c00443{left:681.450000px;}
.x8e_c00443{left:683.100000px;}
.x111_c00443{left:684.300000px;}
.xf9_c00443{left:685.650000px;}
.x2e_c00443{left:686.700000px;}
.x10_c00443{left:687.900000px;}
.x11e_c00443{left:691.200000px;}
.x84_c00443{left:693.600000px;}
.x102_c00443{left:695.400000px;}
.x20_c00443{left:697.650000px;}
.xae_c00443{left:699.150000px;}
.x49_c00443{left:701.400000px;}
.x2f_c00443{left:705.750000px;}
.x78_c00443{left:707.700000px;}
.x107_c00443{left:708.900000px;}
.x54_c00443{left:709.950000px;}
.xc0_c00443{left:711.750000px;}
.x11b_c00443{left:713.700000px;}
.xba_c00443{left:717.000000px;}
.xea_c00443{left:718.350000px;}
.x62_c00443{left:721.800000px;}
.x8f_c00443{left:724.500000px;}
.x21_c00443{left:727.950000px;}
.x116_c00443{left:730.500000px;}
.x3a_c00443{left:735.750000px;}
.x55_c00443{left:738.750000px;}
.x10e_c00443{left:739.950000px;}
.x30_c00443{left:744.300000px;}
.x79_c00443{left:746.550000px;}
.x2_c00443{left:749.100000px;}
.xaf_c00443{left:750.600000px;}
.x11_c00443{left:752.400000px;}
.x3b_c00443{left:756.600000px;}
.x31_c00443{left:762.600000px;}
.xdd_c00443{left:764.100000px;}
.x117_c00443{left:765.750000px;}
.xe4_c00443{left:773.100000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws1_c00443{word-spacing:-6.666667pt;}
.ws5_c00443{word-spacing:0.000000pt;}
.ws2_c00443{word-spacing:0.986693pt;}
.ws4_c00443{word-spacing:3.483483pt;}
.ws0_c00443{word-spacing:8.641975pt;}
.ws3_c00443{word-spacing:13.004115pt;}
.fs1_c00443{font-size:48.000000pt;}
.fs0_c00443{font-size:53.333333pt;}
.y0_c00443{bottom:0.000000pt;}
.y2b_c00443{bottom:137.600000pt;}
.y2a_c00443{bottom:169.466667pt;}
.y29_c00443{bottom:187.333333pt;}
.y28_c00443{bottom:205.200000pt;}
.y27_c00443{bottom:222.800000pt;}
.y26_c00443{bottom:240.400000pt;}
.y25_c00443{bottom:258.000000pt;}
.y24_c00443{bottom:275.600000pt;}
.y23_c00443{bottom:293.466667pt;}
.y22_c00443{bottom:310.800000pt;}
.y21_c00443{bottom:328.666667pt;}
.y20_c00443{bottom:346.533333pt;}
.y1f_c00443{bottom:364.133333pt;}
.y1e_c00443{bottom:381.733333pt;}
.y1d_c00443{bottom:416.800000pt;}
.y1c_c00443{bottom:435.333333pt;}
.y1b_c00443{bottom:453.200000pt;}
.y1a_c00443{bottom:470.533333pt;}
.y19_c00443{bottom:488.400000pt;}
.y18_c00443{bottom:506.266667pt;}
.y17_c00443{bottom:523.866667pt;}
.y16_c00443{bottom:541.733333pt;}
.y15_c00443{bottom:559.066667pt;}
.y14_c00443{bottom:576.400000pt;}
.y13_c00443{bottom:594.266667pt;}
.y12_c00443{bottom:611.866667pt;}
.y11_c00443{bottom:629.466667pt;}
.y10_c00443{bottom:647.333333pt;}
.yf_c00443{bottom:664.933333pt;}
.ye_c00443{bottom:682.933333pt;}
.yd_c00443{bottom:701.200000pt;}
.yc_c00443{bottom:719.066667pt;}
.yb_c00443{bottom:736.400000pt;}
.ya_c00443{bottom:754.266667pt;}
.y9_c00443{bottom:772.133333pt;}
.y8_c00443{bottom:789.733333pt;}
.y7_c00443{bottom:807.066667pt;}
.y6_c00443{bottom:825.066667pt;}
.y5_c00443{bottom:842.666667pt;}
.y4_c00443{bottom:860.533333pt;}
.y3_c00443{bottom:878.133333pt;}
.y2_c00443{bottom:895.733333pt;}
.y1_c00443{bottom:928.933333pt;}
.h3_c00443{height:48.000000pt;}
.h2_c00443{height:53.333333pt;}
.h1_c00443{height:1036.666667pt;}
.h0_c00443{height:1036.800049pt;}
.w0_c00443{width:818.559977pt;}
.w1_c00443{width:818.666667pt;}
.x0_c00443{left:0.000000pt;}
.x3_c00443{left:96.933333pt;}
.x11f_c00443{left:97.866667pt;}
.xbb_c00443{left:111.866667pt;}
.x56_c00443{left:114.533333pt;}
.xd2_c00443{left:118.266667pt;}
.x7a_c00443{left:119.866667pt;}
.x12_c00443{left:122.266667pt;}
.x112_c00443{left:123.200000pt;}
.x3c_c00443{left:124.533333pt;}
.x10f_c00443{left:125.866667pt;}
.x129_c00443{left:128.400000pt;}
.xb0_c00443{left:129.333333pt;}
.x22_c00443{left:130.266667pt;}
.x73_c00443{left:131.333333pt;}
.x9c_c00443{left:133.466667pt;}
.xeb_c00443{left:136.400000pt;}
.xbc_c00443{left:139.733333pt;}
.x57_c00443{left:140.800000pt;}
.xc1_c00443{left:142.400000pt;}
.x4a_c00443{left:144.533333pt;}
.x90_c00443{left:145.466667pt;}
.x85_c00443{left:147.733333pt;}
.x9d_c00443{left:149.733333pt;}
.x4_c00443{left:151.066667pt;}
.xc3_c00443{left:152.000000pt;}
.x95_c00443{left:154.133333pt;}
.x4b_c00443{left:155.066667pt;}
.x74_c00443{left:156.266667pt;}
.x32_c00443{left:157.200000pt;}
.x13_c00443{left:159.333333pt;}
.xd5_c00443{left:161.333333pt;}
.xf5_c00443{left:163.600000pt;}
.x110_c00443{left:164.933333pt;}
.x108_c00443{left:166.133333pt;}
.x14_c00443{left:170.266667pt;}
.x86_c00443{left:171.466667pt;}
.x9e_c00443{left:172.800000pt;}
.xd6_c00443{left:174.400000pt;}
.x58_c00443{left:175.733333pt;}
.x7b_c00443{left:176.800000pt;}
.x63_c00443{left:178.000000pt;}
.x23_c00443{left:179.600000pt;}
.x11c_c00443{left:181.200000pt;}
.x118_c00443{left:182.133333pt;}
.x3d_c00443{left:183.733333pt;}
.xb1_c00443{left:187.600000pt;}
.xc4_c00443{left:188.533333pt;}
.x91_c00443{left:190.266667pt;}
.xec_c00443{left:191.466667pt;}
.xa5_c00443{left:193.733333pt;}
.x5_c00443{left:196.133333pt;}
.x64_c00443{left:197.866667pt;}
.x75_c00443{left:199.733333pt;}
.xf6_c00443{left:201.600000pt;}
.xb2_c00443{left:205.466667pt;}
.x124_c00443{left:207.333333pt;}
.x33_c00443{left:208.800000pt;}
.xed_c00443{left:211.333333pt;}
.xbd_c00443{left:213.733333pt;}
.xf7_c00443{left:215.333333pt;}
.xa6_c00443{left:217.066667pt;}
.xe5_c00443{left:218.133333pt;}
.x6_c00443{left:219.466667pt;}
.x65_c00443{left:220.933333pt;}
.x24_c00443{left:222.133333pt;}
.x7c_c00443{left:223.866667pt;}
.x3e_c00443{left:225.066667pt;}
.x87_c00443{left:232.266667pt;}
.xd7_c00443{left:234.266667pt;}
.xfa_c00443{left:236.666667pt;}
.x15_c00443{left:237.733333pt;}
.xc2_c00443{left:238.933333pt;}
.x92_c00443{left:241.200000pt;}
.x3f_c00443{left:242.400000pt;}
.x59_c00443{left:246.133333pt;}
.x109_c00443{left:247.333333pt;}
.xde_c00443{left:249.866667pt;}
.xb3_c00443{left:250.933333pt;}
.x9f_c00443{left:253.466667pt;}
.x66_c00443{left:255.466667pt;}
.x10a_c00443{left:256.933333pt;}
.x34_c00443{left:259.733333pt;}
.xd8_c00443{left:261.200000pt;}
.x76_c00443{left:264.266667pt;}
.x7_c00443{left:268.400000pt;}
.x25_c00443{left:271.066667pt;}
.x120_c00443{left:273.466667pt;}
.xee_c00443{left:274.400000pt;}
.xbe_c00443{left:275.466667pt;}
.xd9_c00443{left:276.533333pt;}
.xa7_c00443{left:277.466667pt;}
.x113_c00443{left:279.066667pt;}
.xc5_c00443{left:280.000000pt;}
.x96_c00443{left:282.400000pt;}
.xf1_c00443{left:284.400000pt;}
.x16_c00443{left:285.466667pt;}
.x4c_c00443{left:286.800000pt;}
.x26_c00443{left:288.933333pt;}
.x11d_c00443{left:290.266667pt;}
.xfe_c00443{left:291.600000pt;}
.xb4_c00443{left:292.533333pt;}
.xd3_c00443{left:294.800000pt;}
.x4d_c00443{left:298.266667pt;}
.xa0_c00443{left:299.600000pt;}
.x8_c00443{left:300.666667pt;}
.x5a_c00443{left:302.400000pt;}
.x12a_c00443{left:303.866667pt;}
.x125_c00443{left:305.600000pt;}
.xda_c00443{left:307.866667pt;}
.x67_c00443{left:308.933333pt;}
.xfb_c00443{left:310.266667pt;}
.x35_c00443{left:315.066667pt;}
.xb5_c00443{left:316.533333pt;}
.x27_c00443{left:318.400000pt;}
.x7d_c00443{left:321.200000pt;}
.x103_c00443{left:322.666667pt;}
.xf2_c00443{left:323.733333pt;}
.x40_c00443{left:325.066667pt;}
.x4e_c00443{left:326.133333pt;}
.x17_c00443{left:328.933333pt;}
.x68_c00443{left:331.066667pt;}
.x93_c00443{left:332.666667pt;}
.x28_c00443{left:334.666667pt;}
.x88_c00443{left:337.200000pt;}
.x10b_c00443{left:339.200000pt;}
.xd4_c00443{left:340.266667pt;}
.xb6_c00443{left:341.866667pt;}
.x9_c00443{left:345.733333pt;}
.x12b_c00443{left:346.666667pt;}
.x4f_c00443{left:347.600000pt;}
.x69_c00443{left:350.000000pt;}
.x7e_c00443{left:350.933333pt;}
.x1_c00443{left:352.933333pt;}
.xe6_c00443{left:355.066667pt;}
.x12c_c00443{left:356.133333pt;}
.x97_c00443{left:357.066667pt;}
.xa_c00443{left:358.800000pt;}
.xf8_c00443{left:360.000000pt;}
.x94_c00443{left:363.333333pt;}
.x18_c00443{left:364.800000pt;}
.xc6_c00443{left:366.000000pt;}
.x6a_c00443{left:367.866667pt;}
.xdf_c00443{left:369.866667pt;}
.x89_c00443{left:371.066667pt;}
.x36_c00443{left:373.600000pt;}
.x98_c00443{left:374.933333pt;}
.x41_c00443{left:376.000000pt;}
.x10c_c00443{left:378.933333pt;}
.x5b_c00443{left:380.800000pt;}
.xa8_c00443{left:382.000000pt;}
.x29_c00443{left:382.933333pt;}
.xc7_c00443{left:383.866667pt;}
.x19_c00443{left:387.466667pt;}
.xff_c00443{left:389.600000pt;}
.xe0_c00443{left:392.533333pt;}
.xcc_c00443{left:394.133333pt;}
.x42_c00443{left:395.200000pt;}
.x12d_c00443{left:397.066667pt;}
.x5c_c00443{left:398.400000pt;}
.xb_c00443{left:399.733333pt;}
.x2a_c00443{left:402.400000pt;}
.x8a_c00443{left:404.000000pt;}
.xb7_c00443{left:405.200000pt;}
.x6b_c00443{left:408.133333pt;}
.xc8_c00443{left:410.133333pt;}
.x1a_c00443{left:412.800000pt;}
.x100_c00443{left:414.266667pt;}
.x7f_c00443{left:417.466667pt;}
.x43_c00443{left:420.533333pt;}
.xf3_c00443{left:421.600000pt;}
.x5d_c00443{left:423.333333pt;}
.xa1_c00443{left:424.800000pt;}
.x50_c00443{left:427.866667pt;}
.x1b_c00443{left:431.066667pt;}
.xcd_c00443{left:432.133333pt;}
.xe1_c00443{left:433.866667pt;}
.x126_c00443{left:435.600000pt;}
.x6c_c00443{left:436.933333pt;}
.xb8_c00443{left:439.066667pt;}
.x1c_c00443{left:441.600000pt;}
.x114_c00443{left:446.800000pt;}
.xc_c00443{left:448.666667pt;}
.xa2_c00443{left:450.133333pt;}
.xa9_c00443{left:451.733333pt;}
.x99_c00443{left:452.666667pt;}
.x44_c00443{left:455.066667pt;}
.x6d_c00443{left:456.133333pt;}
.x80_c00443{left:458.400000pt;}
.xe7_c00443{left:459.333333pt;}
.x2b_c00443{left:461.866667pt;}
.x121_c00443{left:463.333333pt;}
.xe2_c00443{left:465.200000pt;}
.xce_c00443{left:466.400000pt;}
.xaa_c00443{left:469.066667pt;}
.xc9_c00443{left:470.666667pt;}
.x6e_c00443{left:471.866667pt;}
.xd_c00443{left:473.600000pt;}
.x1d_c00443{left:475.200000pt;}
.x12e_c00443{left:476.400000pt;}
.x2c_c00443{left:477.600000pt;}
.xef_c00443{left:479.466667pt;}
.x51_c00443{left:480.666667pt;}
.x8b_c00443{left:482.133333pt;}
.x5e_c00443{left:483.200000pt;}
.xfc_c00443{left:485.333333pt;}
.x104_c00443{left:486.400000pt;}
.x10d_c00443{left:487.733333pt;}
.xca_c00443{left:489.200000pt;}
.x11a_c00443{left:494.400000pt;}
.x81_c00443{left:495.866667pt;}
.x6f_c00443{left:497.466667pt;}
.x45_c00443{left:498.533333pt;}
.xe_c00443{left:500.133333pt;}
.xcf_c00443{left:504.533333pt;}
.x115_c00443{left:506.400000pt;}
.xf4_c00443{left:508.000000pt;}
.x5f_c00443{left:509.466667pt;}
.x37_c00443{left:510.933333pt;}
.x52_c00443{left:512.000000pt;}
.x70_c00443{left:513.466667pt;}
.x1e_c00443{left:515.466667pt;}
.x46_c00443{left:517.733333pt;}
.xf0_c00443{left:522.000000pt;}
.xe8_c00443{left:524.933333pt;}
.xdb_c00443{left:526.666667pt;}
.x101_c00443{left:528.800000pt;}
.xb9_c00443{left:530.266667pt;}
.xd0_c00443{left:532.000000pt;}
.xbf_c00443{left:534.400000pt;}
.x71_c00443{left:536.133333pt;}
.x1f_c00443{left:540.133333pt;}
.xfd_c00443{left:541.600000pt;}
.x127_c00443{left:543.066667pt;}
.x105_c00443{left:544.933333pt;}
.x60_c00443{left:546.266667pt;}
.xe3_c00443{left:547.466667pt;}
.xab_c00443{left:549.066667pt;}
.x82_c00443{left:552.533333pt;}
.x122_c00443{left:554.933333pt;}
.x8c_c00443{left:557.066667pt;}
.x77_c00443{left:558.400000pt;}
.x72_c00443{left:561.466667pt;}
.xa3_c00443{left:563.200000pt;}
.x53_c00443{left:564.133333pt;}
.x47_c00443{left:566.266667pt;}
.x9a_c00443{left:567.466667pt;}
.xe9_c00443{left:568.800000pt;}
.x38_c00443{left:571.066667pt;}
.x123_c00443{left:572.800000pt;}
.xd1_c00443{left:573.866667pt;}
.x8d_c00443{left:574.933333pt;}
.x61_c00443{left:576.000000pt;}
.xf_c00443{left:577.600000pt;}
.xac_c00443{left:578.800000pt;}
.x83_c00443{left:581.600000pt;}
.x9b_c00443{left:584.400000pt;}
.x48_c00443{left:588.933333pt;}
.x128_c00443{left:590.133333pt;}
.xa4_c00443{left:592.666667pt;}
.x119_c00443{left:594.133333pt;}
.xcb_c00443{left:595.466667pt;}
.x39_c00443{left:596.666667pt;}
.xdc_c00443{left:598.266667pt;}
.x2d_c00443{left:600.133333pt;}
.x106_c00443{left:601.333333pt;}
.xad_c00443{left:605.733333pt;}
.x8e_c00443{left:607.200000pt;}
.x111_c00443{left:608.266667pt;}
.xf9_c00443{left:609.466667pt;}
.x2e_c00443{left:610.400000pt;}
.x10_c00443{left:611.466667pt;}
.x11e_c00443{left:614.400000pt;}
.x84_c00443{left:616.533333pt;}
.x102_c00443{left:618.133333pt;}
.x20_c00443{left:620.133333pt;}
.xae_c00443{left:621.466667pt;}
.x49_c00443{left:623.466667pt;}
.x2f_c00443{left:627.333333pt;}
.x78_c00443{left:629.066667pt;}
.x107_c00443{left:630.133333pt;}
.x54_c00443{left:631.066667pt;}
.xc0_c00443{left:632.666667pt;}
.x11b_c00443{left:634.400000pt;}
.xba_c00443{left:637.333333pt;}
.xea_c00443{left:638.533333pt;}
.x62_c00443{left:641.600000pt;}
.x8f_c00443{left:644.000000pt;}
.x21_c00443{left:647.066667pt;}
.x116_c00443{left:649.333333pt;}
.x3a_c00443{left:654.000000pt;}
.x55_c00443{left:656.666667pt;}
.x10e_c00443{left:657.733333pt;}
.x30_c00443{left:661.600000pt;}
.x79_c00443{left:663.600000pt;}
.x2_c00443{left:665.866667pt;}
.xaf_c00443{left:667.200000pt;}
.x11_c00443{left:668.800000pt;}
.x3b_c00443{left:672.533333pt;}
.x31_c00443{left:677.866667pt;}
.xdd_c00443{left:679.200000pt;}
.x117_c00443{left:680.666667pt;}
.xe4_c00443{left:687.200000pt;}
}





/* 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_c00444 {
    display:none;
  }
  .loading-indicator_c00444.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00444 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_c00444 { 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_c00444" -> "#page-container .classname_c00444")
 */
.pf_c00444 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00444 { /* 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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00444 { /* 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_c00444 { /* 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_c00444 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00444 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00444 {overflow:visible;}
  }
}
.c_c00444 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00444 { /* 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_c00444:after { /* webkit #35443 */
  content: '';
}
.t_c00444:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00444 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 */
}
.__c00444 { /* 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_c00444 { /* info for Javascript */
  display:none;
}
.l_c00444 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00444 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00444 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00444: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_c00444 {
    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_c00444.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00444.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_c00444 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00444{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00444;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.000000;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;}
.m13_c00444{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00444{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00444{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00444{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00444{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m97_c00444{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00444{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00444{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00444{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00444{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00444{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00444{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m95_c00444{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m93_c00444{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00444{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m68_c00444{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m55_c00444{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m53_c00444{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00444{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m49_c00444{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m37_c00444{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00444{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m57_c00444{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00444{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf_c00444{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00444{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00444{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m17_c00444{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00444{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6_c00444{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m39_c00444{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m79_c00444{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8_c00444{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00444{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m80_c00444{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);}
.m42_c00444{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m65_c00444{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m94_c00444{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m73_c00444{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m33_c00444{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m48_c00444{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m83_c00444{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m58_c00444{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00444{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m43_c00444{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00444{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb_c00444{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00444{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m40_c00444{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m84_c00444{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00444{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m92_c00444{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00444{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00444{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00444{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m88_c00444{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00444{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m54_c00444{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00444{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m63_c00444{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.me_c00444{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m4_c00444{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m15_c00444{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m20_c00444{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00444{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m98_c00444{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m59_c00444{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00444{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00444{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00444{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00444{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00444{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m96_c00444{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m51_c00444{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m52_c00444{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00444{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m99_c00444{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00444{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00444{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.506750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{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__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00444{word-spacing:-4.500000px;}
.ws4_c00444{word-spacing:-2.524116px;}
.wsa_c00444{word-spacing:0.000000px;}
.ws7_c00444{word-spacing:1.500000px;}
.ws2_c00444{word-spacing:5.173633px;}
.ws9_c00444{word-spacing:5.875000px;}
.ws3_c00444{word-spacing:6.457831px;}
.ws0_c00444{word-spacing:7.662651px;}
.ws6_c00444{word-spacing:11.681672px;}
.ws1_c00444{word-spacing:12.125000px;}
.ws5_c00444{word-spacing:14.877814px;}
.fc0_c00444{color:transparent;}
.fs1_c00444{font-size:54.000000px;}
.fs0_c00444{font-size:60.000000px;}
.y0_c00444{bottom:0.000000px;}
.y2a_c00444{bottom:156.900000px;}
.y29_c00444{bottom:196.950000px;}
.y28_c00444{bottom:216.750000px;}
.y27_c00444{bottom:236.100000px;}
.y26_c00444{bottom:255.900000px;}
.y25_c00444{bottom:275.400000px;}
.y24_c00444{bottom:295.950000px;}
.y23_c00444{bottom:315.750000px;}
.y22_c00444{bottom:335.550000px;}
.y21_c00444{bottom:355.350000px;}
.y20_c00444{bottom:375.150000px;}
.y1f_c00444{bottom:395.250000px;}
.y1e_c00444{bottom:415.050000px;}
.y1d_c00444{bottom:434.850000px;}
.y1c_c00444{bottom:454.650000px;}
.y1b_c00444{bottom:494.400000px;}
.y1a_c00444{bottom:514.200000px;}
.y19_c00444{bottom:534.000000px;}
.y18_c00444{bottom:554.100000px;}
.y17_c00444{bottom:573.600000px;}
.y16_c00444{bottom:593.400000px;}
.y15_c00444{bottom:613.200000px;}
.y14_c00444{bottom:633.300000px;}
.y13_c00444{bottom:653.100000px;}
.y12_c00444{bottom:673.200000px;}
.y11_c00444{bottom:693.000000px;}
.y10_c00444{bottom:713.100000px;}
.yf_c00444{bottom:732.900000px;}
.ye_c00444{bottom:752.700000px;}
.yd_c00444{bottom:772.500000px;}
.yc_c00444{bottom:792.300000px;}
.yb_c00444{bottom:832.500000px;}
.ya_c00444{bottom:852.300000px;}
.y9_c00444{bottom:872.400000px;}
.y8_c00444{bottom:892.200000px;}
.y7_c00444{bottom:912.000000px;}
.y6_c00444{bottom:932.100000px;}
.y5_c00444{bottom:951.900000px;}
.y4_c00444{bottom:971.700000px;}
.y3_c00444{bottom:991.500000px;}
.y2_c00444{bottom:1011.300000px;}
.y1_c00444{bottom:1049.700000px;}
.h3_c00444{height:54.000000px;}
.h2_c00444{height:60.000000px;}
.h1_c00444{height:1166.250000px;}
.h0_c00444{height:1166.400056px;}
.w0_c00444{width:920.879975px;}
.w1_c00444{width:921.000000px;}
.x0_c00444{left:0.000000px;}
.x51_c00444{left:142.200000px;}
.x3_c00444{left:143.250000px;}
.x1_c00444{left:144.300000px;}
.x35_c00444{left:160.500000px;}
.x52_c00444{left:163.050000px;}
.xa8_c00444{left:168.450000px;}
.x9a_c00444{left:170.550000px;}
.x80_c00444{left:172.050000px;}
.x89_c00444{left:173.850000px;}
.x24_c00444{left:177.600000px;}
.xa3_c00444{left:178.650000px;}
.x44_c00444{left:181.050000px;}
.x13_c00444{left:183.450000px;}
.x11d_c00444{left:184.500000px;}
.x4_c00444{left:186.450000px;}
.x53_c00444{left:187.950000px;}
.x36_c00444{left:189.300000px;}
.xf1_c00444{left:190.650000px;}
.xa9_c00444{left:192.900000px;}
.xe0_c00444{left:195.600000px;}
.x6b_c00444{left:198.300000px;}
.xc4_c00444{left:200.400000px;}
.x108_c00444{left:201.450000px;}
.x10c_c00444{left:207.900000px;}
.x120_c00444{left:209.100000px;}
.x8a_c00444{left:210.150000px;}
.x104_c00444{left:211.650000px;}
.x14_c00444{left:214.350000px;}
.x25_c00444{left:216.150000px;}
.x5f_c00444{left:217.800000px;}
.x81_c00444{left:219.900000px;}
.xb3_c00444{left:222.600000px;}
.xbc_c00444{left:225.600000px;}
.x126_c00444{left:227.100000px;}
.xe9_c00444{left:230.550000px;}
.x9b_c00444{left:233.250000px;}
.x45_c00444{left:235.050000px;}
.xcd_c00444{left:238.500000px;}
.xc5_c00444{left:239.700000px;}
.xb4_c00444{left:245.700000px;}
.x5_c00444{left:246.900000px;}
.x15_c00444{left:249.300000px;}
.xe1_c00444{left:250.350000px;}
.x93_c00444{left:253.650000px;}
.x60_c00444{left:255.300000px;}
.x16_c00444{left:260.100000px;}
.xd3_c00444{left:263.100000px;}
.x6c_c00444{left:264.150000px;}
.x46_c00444{left:266.700000px;}
.x8b_c00444{left:268.800000px;}
.x6_c00444{left:270.600000px;}
.xf2_c00444{left:272.700000px;}
.x37_c00444{left:273.900000px;}
.x26_c00444{left:275.850000px;}
.xa4_c00444{left:279.150000px;}
.xe2_c00444{left:280.200000px;}
.x76_c00444{left:282.600000px;}
.xf8_c00444{left:284.250000px;}
.xaa_c00444{left:285.450000px;}
.x17_c00444{left:287.100000px;}
.xea_c00444{left:288.150000px;}
.x118_c00444{left:290.250000px;}
.x94_c00444{left:292.500000px;}
.x82_c00444{left:294.750000px;}
.xc6_c00444{left:297.300000px;}
.x107_c00444{left:300.900000px;}
.x121_c00444{left:302.100000px;}
.xf3_c00444{left:303.600000px;}
.x38_c00444{left:304.800000px;}
.x47_c00444{left:306.300000px;}
.x61_c00444{left:307.500000px;}
.x9c_c00444{left:310.350000px;}
.x95_c00444{left:312.000000px;}
.x54_c00444{left:313.950000px;}
.x6d_c00444{left:316.050000px;}
.x7_c00444{left:317.400000px;}
.x77_c00444{left:320.100000px;}
.xeb_c00444{left:322.050000px;}
.xe3_c00444{left:323.700000px;}
.xd4_c00444{left:325.350000px;}
.x48_c00444{left:326.400000px;}
.xce_c00444{left:327.900000px;}
.x39_c00444{left:328.950000px;}
.x18_c00444{left:331.350000px;}
.x109_c00444{left:335.550000px;}
.x8_c00444{left:337.950000px;}
.xd9_c00444{left:343.050000px;}
.xbd_c00444{left:344.850000px;}
.xff_c00444{left:346.800000px;}
.x27_c00444{left:349.350000px;}
.xc7_c00444{left:351.000000px;}
.x116_c00444{left:356.250000px;}
.x55_c00444{left:357.900000px;}
.x83_c00444{left:360.300000px;}
.x8c_c00444{left:362.400000px;}
.x11e_c00444{left:363.900000px;}
.x19_c00444{left:365.250000px;}
.xa5_c00444{left:367.650000px;}
.x62_c00444{left:370.200000px;}
.x3a_c00444{left:373.200000px;}
.x6e_c00444{left:374.850000px;}
.x28_c00444{left:378.450000px;}
.x96_c00444{left:380.100000px;}
.xec_c00444{left:383.250000px;}
.x12c_c00444{left:384.450000px;}
.x8d_c00444{left:385.800000px;}
.x29_c00444{left:390.000000px;}
.xe4_c00444{left:391.350000px;}
.xc8_c00444{left:392.400000px;}
.x127_c00444{left:393.750000px;}
.x1a_c00444{left:395.850000px;}
.x63_c00444{left:398.250000px;}
.x2a_c00444{left:401.850000px;}
.x56_c00444{left:402.900000px;}
.xf4_c00444{left:405.150000px;}
.x9_c00444{left:407.400000px;}
.xed_c00444{left:408.450000px;}
.xcf_c00444{left:411.750000px;}
.xc9_c00444{left:412.950000px;}
.x1b_c00444{left:416.400000px;}
.xb5_c00444{left:417.750000px;}
.xd5_c00444{left:421.800000px;}
.x3b_c00444{left:422.850000px;}
.x49_c00444{left:423.900000px;}
.x110_c00444{left:424.950000px;}
.xe5_c00444{left:427.350000px;}
.xa_c00444{left:429.750000px;}
.xda_c00444{left:432.000000px;}
.xf5_c00444{left:433.200000px;}
.xa6_c00444{left:435.300000px;}
.x6f_c00444{left:437.100000px;}
.x64_c00444{left:438.150000px;}
.xbe_c00444{left:439.200000px;}
.x2_c00444{left:441.000000px;}
.x2b_c00444{left:442.950000px;}
.x10d_c00444{left:444.600000px;}
.xd0_c00444{left:447.750000px;}
.x12d_c00444{left:450.000000px;}
.x78_c00444{left:451.500000px;}
.x128_c00444{left:453.900000px;}
.x84_c00444{left:455.400000px;}
.xb_c00444{left:458.250000px;}
.x57_c00444{left:461.550000px;}
.xbf_c00444{left:464.100000px;}
.x8e_c00444{left:467.100000px;}
.xd1_c00444{left:468.300000px;}
.x79_c00444{left:469.500000px;}
.x3c_c00444{left:471.450000px;}
.x70_c00444{left:474.600000px;}
.x1c_c00444{left:476.850000px;}
.x122_c00444{left:478.050000px;}
.xab_c00444{left:479.850000px;}
.x97_c00444{left:480.900000px;}
.x65_c00444{left:482.100000px;}
.x2c_c00444{left:484.050000px;}
.x4a_c00444{left:487.650000px;}
.x119_c00444{left:491.100000px;}
.xf9_c00444{left:493.650000px;}
.xc_c00444{left:495.300000px;}
.x9d_c00444{left:496.500000px;}
.xc0_c00444{left:498.000000px;}
.xac_c00444{left:499.350000px;}
.xfd_c00444{left:500.700000px;}
.x2d_c00444{left:501.750000px;}
.x7a_c00444{left:504.450000px;}
.x58_c00444{left:507.300000px;}
.x1d_c00444{left:510.750000px;}
.x11a_c00444{left:512.400000px;}
.xd2_c00444{left:517.950000px;}
.xc1_c00444{left:519.900000px;}
.x129_c00444{left:522.300000px;}
.xb6_c00444{left:523.350000px;}
.x2e_c00444{left:525.450000px;}
.xf6_c00444{left:526.800000px;}
.x71_c00444{left:529.350000px;}
.xdb_c00444{left:530.400000px;}
.x85_c00444{left:532.800000px;}
.x100_c00444{left:534.000000px;}
.xc2_c00444{left:535.800000px;}
.xe6_c00444{left:538.500000px;}
.xa7_c00444{left:540.300000px;}
.x12a_c00444{left:544.200000px;}
.x59_c00444{left:546.600000px;}
.xd6_c00444{left:548.400000px;}
.x111_c00444{left:549.750000px;}
.x8f_c00444{left:555.300000px;}
.x4b_c00444{left:557.100000px;}
.xb7_c00444{left:558.300000px;}
.x3d_c00444{left:559.350000px;}
.x7b_c00444{left:561.300000px;}
.x72_c00444{left:563.250000px;}
.x101_c00444{left:564.300000px;}
.x2f_c00444{left:566.550000px;}
.x9e_c00444{left:568.200000px;}
.x112_c00444{left:570.300000px;}
.x105_c00444{left:571.650000px;}
.xad_c00444{left:572.850000px;}
.x12b_c00444{left:574.050000px;}
.x5a_c00444{left:576.450000px;}
.xfa_c00444{left:577.500000px;}
.x1e_c00444{left:579.150000px;}
.xd_c00444{left:580.950000px;}
.x30_c00444{left:584.250000px;}
.x3e_c00444{left:586.050000px;}
.x113_c00444{left:588.000000px;}
.x7c_c00444{left:589.050000px;}
.x90_c00444{left:591.300000px;}
.x4c_c00444{left:593.400000px;}
.xca_c00444{left:596.100000px;}
.xb8_c00444{left:598.650000px;}
.x11f_c00444{left:600.300000px;}
.x31_c00444{left:601.500000px;}
.xee_c00444{left:604.200000px;}
.x98_c00444{left:606.750000px;}
.x66_c00444{left:608.100000px;}
.x10a_c00444{left:610.200000px;}
.xcb_c00444{left:612.600000px;}
.x106_c00444{left:615.600000px;}
.x1f_c00444{left:616.950000px;}
.xf7_c00444{left:620.400000px;}
.x5b_c00444{left:622.500000px;}
.xd7_c00444{left:625.050000px;}
.x4d_c00444{left:627.600000px;}
.xdc_c00444{left:629.100000px;}
.x3f_c00444{left:631.050000px;}
.xb9_c00444{left:633.600000px;}
.x32_c00444{left:637.500000px;}
.xae_c00444{left:639.750000px;}
.x9f_c00444{left:641.250000px;}
.x20_c00444{left:642.450000px;}
.xef_c00444{left:643.500000px;}
.x4e_c00444{left:645.900000px;}
.xe_c00444{left:647.250000px;}
.x10e_c00444{left:648.600000px;}
.xba_c00444{left:652.650000px;}
.xaf_c00444{left:654.150000px;}
.x73_c00444{left:655.350000px;}
.xfb_c00444{left:659.100000px;}
.x86_c00444{left:661.350000px;}
.x91_c00444{left:663.300000px;}
.x7d_c00444{left:664.350000px;}
.x114_c00444{left:666.150000px;}
.xa0_c00444{left:669.300000px;}
.xf_c00444{left:670.950000px;}
.x5c_c00444{left:672.150000px;}
.xe7_c00444{left:673.800000px;}
.x67_c00444{left:675.000000px;}
.x4f_c00444{left:678.300000px;}
.x87_c00444{left:679.350000px;}
.x40_c00444{left:681.450000px;}
.x123_c00444{left:684.750000px;}
.x74_c00444{left:686.250000px;}
.xdd_c00444{left:687.450000px;}
.x68_c00444{left:695.100000px;}
.x10_c00444{left:698.250000px;}
.x117_c00444{left:700.200000px;}
.xb0_c00444{left:701.700000px;}
.x7e_c00444{left:702.900000px;}
.xcc_c00444{left:704.400000px;}
.x21_c00444{left:706.500000px;}
.xde_c00444{left:708.000000px;}
.xfe_c00444{left:711.750000px;}
.x88_c00444{left:715.350000px;}
.x5d_c00444{left:717.150000px;}
.x7f_c00444{left:719.850000px;}
.x11c_c00444{left:720.900000px;}
.x33_c00444{left:723.600000px;}
.x103_c00444{left:724.650000px;}
.x41_c00444{left:726.750000px;}
.x11_c00444{left:729.900000px;}
.x115_c00444{left:731.550000px;}
.xe8_c00444{left:732.900000px;}
.x99_c00444{left:734.250000px;}
.x69_c00444{left:736.500000px;}
.xb1_c00444{left:740.250000px;}
.x22_c00444{left:742.800000px;}
.xa1_c00444{left:743.850000px;}
.x50_c00444{left:745.200000px;}
.x11b_c00444{left:751.200000px;}
.xdf_c00444{left:752.250000px;}
.x42_c00444{left:753.450000px;}
.x124_c00444{left:755.250000px;}
.x92_c00444{left:760.050000px;}
.x10b_c00444{left:763.050000px;}
.x75_c00444{left:765.450000px;}
.xa2_c00444{left:767.550000px;}
.x23_c00444{left:769.800000px;}
.x6a_c00444{left:772.800000px;}
.x34_c00444{left:774.300000px;}
.xf0_c00444{left:775.950000px;}
.x12_c00444{left:777.450000px;}
.xfc_c00444{left:779.700000px;}
.x5e_c00444{left:780.900000px;}
.x10f_c00444{left:782.550000px;}
.xc3_c00444{left:786.900000px;}
.xb2_c00444{left:788.550000px;}
.xd8_c00444{left:790.800000px;}
.x43_c00444{left:796.650000px;}
.x125_c00444{left:797.700000px;}
.x102_c00444{left:799.950000px;}
.xbb_c00444{left:802.950000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws8_c00444{word-spacing:-4.000000pt;}
.ws4_c00444{word-spacing:-2.243658pt;}
.wsa_c00444{word-spacing:0.000000pt;}
.ws7_c00444{word-spacing:1.333333pt;}
.ws2_c00444{word-spacing:4.598785pt;}
.ws9_c00444{word-spacing:5.222222pt;}
.ws3_c00444{word-spacing:5.740295pt;}
.ws0_c00444{word-spacing:6.811245pt;}
.ws6_c00444{word-spacing:10.383708pt;}
.ws1_c00444{word-spacing:10.777778pt;}
.ws5_c00444{word-spacing:13.224723pt;}
.fs1_c00444{font-size:48.000000pt;}
.fs0_c00444{font-size:53.333333pt;}
.y0_c00444{bottom:0.000000pt;}
.y2a_c00444{bottom:139.466667pt;}
.y29_c00444{bottom:175.066667pt;}
.y28_c00444{bottom:192.666667pt;}
.y27_c00444{bottom:209.866667pt;}
.y26_c00444{bottom:227.466667pt;}
.y25_c00444{bottom:244.800000pt;}
.y24_c00444{bottom:263.066667pt;}
.y23_c00444{bottom:280.666667pt;}
.y22_c00444{bottom:298.266667pt;}
.y21_c00444{bottom:315.866667pt;}
.y20_c00444{bottom:333.466667pt;}
.y1f_c00444{bottom:351.333333pt;}
.y1e_c00444{bottom:368.933333pt;}
.y1d_c00444{bottom:386.533333pt;}
.y1c_c00444{bottom:404.133333pt;}
.y1b_c00444{bottom:439.466667pt;}
.y1a_c00444{bottom:457.066667pt;}
.y19_c00444{bottom:474.666667pt;}
.y18_c00444{bottom:492.533333pt;}
.y17_c00444{bottom:509.866667pt;}
.y16_c00444{bottom:527.466667pt;}
.y15_c00444{bottom:545.066667pt;}
.y14_c00444{bottom:562.933333pt;}
.y13_c00444{bottom:580.533333pt;}
.y12_c00444{bottom:598.400000pt;}
.y11_c00444{bottom:616.000000pt;}
.y10_c00444{bottom:633.866667pt;}
.yf_c00444{bottom:651.466667pt;}
.ye_c00444{bottom:669.066667pt;}
.yd_c00444{bottom:686.666667pt;}
.yc_c00444{bottom:704.266667pt;}
.yb_c00444{bottom:740.000000pt;}
.ya_c00444{bottom:757.600000pt;}
.y9_c00444{bottom:775.466667pt;}
.y8_c00444{bottom:793.066667pt;}
.y7_c00444{bottom:810.666667pt;}
.y6_c00444{bottom:828.533333pt;}
.y5_c00444{bottom:846.133333pt;}
.y4_c00444{bottom:863.733333pt;}
.y3_c00444{bottom:881.333333pt;}
.y2_c00444{bottom:898.933333pt;}
.y1_c00444{bottom:933.066667pt;}
.h3_c00444{height:48.000000pt;}
.h2_c00444{height:53.333333pt;}
.h1_c00444{height:1036.666667pt;}
.h0_c00444{height:1036.800049pt;}
.w0_c00444{width:818.559977pt;}
.w1_c00444{width:818.666667pt;}
.x0_c00444{left:0.000000pt;}
.x51_c00444{left:126.400000pt;}
.x3_c00444{left:127.333333pt;}
.x1_c00444{left:128.266667pt;}
.x35_c00444{left:142.666667pt;}
.x52_c00444{left:144.933333pt;}
.xa8_c00444{left:149.733333pt;}
.x9a_c00444{left:151.600000pt;}
.x80_c00444{left:152.933333pt;}
.x89_c00444{left:154.533333pt;}
.x24_c00444{left:157.866667pt;}
.xa3_c00444{left:158.800000pt;}
.x44_c00444{left:160.933333pt;}
.x13_c00444{left:163.066667pt;}
.x11d_c00444{left:164.000000pt;}
.x4_c00444{left:165.733333pt;}
.x53_c00444{left:167.066667pt;}
.x36_c00444{left:168.266667pt;}
.xf1_c00444{left:169.466667pt;}
.xa9_c00444{left:171.466667pt;}
.xe0_c00444{left:173.866667pt;}
.x6b_c00444{left:176.266667pt;}
.xc4_c00444{left:178.133333pt;}
.x108_c00444{left:179.066667pt;}
.x10c_c00444{left:184.800000pt;}
.x120_c00444{left:185.866667pt;}
.x8a_c00444{left:186.800000pt;}
.x104_c00444{left:188.133333pt;}
.x14_c00444{left:190.533333pt;}
.x25_c00444{left:192.133333pt;}
.x5f_c00444{left:193.600000pt;}
.x81_c00444{left:195.466667pt;}
.xb3_c00444{left:197.866667pt;}
.xbc_c00444{left:200.533333pt;}
.x126_c00444{left:201.866667pt;}
.xe9_c00444{left:204.933333pt;}
.x9b_c00444{left:207.333333pt;}
.x45_c00444{left:208.933333pt;}
.xcd_c00444{left:212.000000pt;}
.xc5_c00444{left:213.066667pt;}
.xb4_c00444{left:218.400000pt;}
.x5_c00444{left:219.466667pt;}
.x15_c00444{left:221.600000pt;}
.xe1_c00444{left:222.533333pt;}
.x93_c00444{left:225.466667pt;}
.x60_c00444{left:226.933333pt;}
.x16_c00444{left:231.200000pt;}
.xd3_c00444{left:233.866667pt;}
.x6c_c00444{left:234.800000pt;}
.x46_c00444{left:237.066667pt;}
.x8b_c00444{left:238.933333pt;}
.x6_c00444{left:240.533333pt;}
.xf2_c00444{left:242.400000pt;}
.x37_c00444{left:243.466667pt;}
.x26_c00444{left:245.200000pt;}
.xa4_c00444{left:248.133333pt;}
.xe2_c00444{left:249.066667pt;}
.x76_c00444{left:251.200000pt;}
.xf8_c00444{left:252.666667pt;}
.xaa_c00444{left:253.733333pt;}
.x17_c00444{left:255.200000pt;}
.xea_c00444{left:256.133333pt;}
.x118_c00444{left:258.000000pt;}
.x94_c00444{left:260.000000pt;}
.x82_c00444{left:262.000000pt;}
.xc6_c00444{left:264.266667pt;}
.x107_c00444{left:267.466667pt;}
.x121_c00444{left:268.533333pt;}
.xf3_c00444{left:269.866667pt;}
.x38_c00444{left:270.933333pt;}
.x47_c00444{left:272.266667pt;}
.x61_c00444{left:273.333333pt;}
.x9c_c00444{left:275.866667pt;}
.x95_c00444{left:277.333333pt;}
.x54_c00444{left:279.066667pt;}
.x6d_c00444{left:280.933333pt;}
.x7_c00444{left:282.133333pt;}
.x77_c00444{left:284.533333pt;}
.xeb_c00444{left:286.266667pt;}
.xe3_c00444{left:287.733333pt;}
.xd4_c00444{left:289.200000pt;}
.x48_c00444{left:290.133333pt;}
.xce_c00444{left:291.466667pt;}
.x39_c00444{left:292.400000pt;}
.x18_c00444{left:294.533333pt;}
.x109_c00444{left:298.266667pt;}
.x8_c00444{left:300.400000pt;}
.xd9_c00444{left:304.933333pt;}
.xbd_c00444{left:306.533333pt;}
.xff_c00444{left:308.266667pt;}
.x27_c00444{left:310.533333pt;}
.xc7_c00444{left:312.000000pt;}
.x116_c00444{left:316.666667pt;}
.x55_c00444{left:318.133333pt;}
.x83_c00444{left:320.266667pt;}
.x8c_c00444{left:322.133333pt;}
.x11e_c00444{left:323.466667pt;}
.x19_c00444{left:324.666667pt;}
.xa5_c00444{left:326.800000pt;}
.x62_c00444{left:329.066667pt;}
.x3a_c00444{left:331.733333pt;}
.x6e_c00444{left:333.200000pt;}
.x28_c00444{left:336.400000pt;}
.x96_c00444{left:337.866667pt;}
.xec_c00444{left:340.666667pt;}
.x12c_c00444{left:341.733333pt;}
.x8d_c00444{left:342.933333pt;}
.x29_c00444{left:346.666667pt;}
.xe4_c00444{left:347.866667pt;}
.xc8_c00444{left:348.800000pt;}
.x127_c00444{left:350.000000pt;}
.x1a_c00444{left:351.866667pt;}
.x63_c00444{left:354.000000pt;}
.x2a_c00444{left:357.200000pt;}
.x56_c00444{left:358.133333pt;}
.xf4_c00444{left:360.133333pt;}
.x9_c00444{left:362.133333pt;}
.xed_c00444{left:363.066667pt;}
.xcf_c00444{left:366.000000pt;}
.xc9_c00444{left:367.066667pt;}
.x1b_c00444{left:370.133333pt;}
.xb5_c00444{left:371.333333pt;}
.xd5_c00444{left:374.933333pt;}
.x3b_c00444{left:375.866667pt;}
.x49_c00444{left:376.800000pt;}
.x110_c00444{left:377.733333pt;}
.xe5_c00444{left:379.866667pt;}
.xa_c00444{left:382.000000pt;}
.xda_c00444{left:384.000000pt;}
.xf5_c00444{left:385.066667pt;}
.xa6_c00444{left:386.933333pt;}
.x6f_c00444{left:388.533333pt;}
.x64_c00444{left:389.466667pt;}
.xbe_c00444{left:390.400000pt;}
.x2_c00444{left:392.000000pt;}
.x2b_c00444{left:393.733333pt;}
.x10d_c00444{left:395.200000pt;}
.xd0_c00444{left:398.000000pt;}
.x12d_c00444{left:400.000000pt;}
.x78_c00444{left:401.333333pt;}
.x128_c00444{left:403.466667pt;}
.x84_c00444{left:404.800000pt;}
.xb_c00444{left:407.333333pt;}
.x57_c00444{left:410.266667pt;}
.xbf_c00444{left:412.533333pt;}
.x8e_c00444{left:415.200000pt;}
.xd1_c00444{left:416.266667pt;}
.x79_c00444{left:417.333333pt;}
.x3c_c00444{left:419.066667pt;}
.x70_c00444{left:421.866667pt;}
.x1c_c00444{left:423.866667pt;}
.x122_c00444{left:424.933333pt;}
.xab_c00444{left:426.533333pt;}
.x97_c00444{left:427.466667pt;}
.x65_c00444{left:428.533333pt;}
.x2c_c00444{left:430.266667pt;}
.x4a_c00444{left:433.466667pt;}
.x119_c00444{left:436.533333pt;}
.xf9_c00444{left:438.800000pt;}
.xc_c00444{left:440.266667pt;}
.x9d_c00444{left:441.333333pt;}
.xc0_c00444{left:442.666667pt;}
.xac_c00444{left:443.866667pt;}
.xfd_c00444{left:445.066667pt;}
.x2d_c00444{left:446.000000pt;}
.x7a_c00444{left:448.400000pt;}
.x58_c00444{left:450.933333pt;}
.x1d_c00444{left:454.000000pt;}
.x11a_c00444{left:455.466667pt;}
.xd2_c00444{left:460.400000pt;}
.xc1_c00444{left:462.133333pt;}
.x129_c00444{left:464.266667pt;}
.xb6_c00444{left:465.200000pt;}
.x2e_c00444{left:467.066667pt;}
.xf6_c00444{left:468.266667pt;}
.x71_c00444{left:470.533333pt;}
.xdb_c00444{left:471.466667pt;}
.x85_c00444{left:473.600000pt;}
.x100_c00444{left:474.666667pt;}
.xc2_c00444{left:476.266667pt;}
.xe6_c00444{left:478.666667pt;}
.xa7_c00444{left:480.266667pt;}
.x12a_c00444{left:483.733333pt;}
.x59_c00444{left:485.866667pt;}
.xd6_c00444{left:487.466667pt;}
.x111_c00444{left:488.666667pt;}
.x8f_c00444{left:493.600000pt;}
.x4b_c00444{left:495.200000pt;}
.xb7_c00444{left:496.266667pt;}
.x3d_c00444{left:497.200000pt;}
.x7b_c00444{left:498.933333pt;}
.x72_c00444{left:500.666667pt;}
.x101_c00444{left:501.600000pt;}
.x2f_c00444{left:503.600000pt;}
.x9e_c00444{left:505.066667pt;}
.x112_c00444{left:506.933333pt;}
.x105_c00444{left:508.133333pt;}
.xad_c00444{left:509.200000pt;}
.x12b_c00444{left:510.266667pt;}
.x5a_c00444{left:512.400000pt;}
.xfa_c00444{left:513.333333pt;}
.x1e_c00444{left:514.800000pt;}
.xd_c00444{left:516.400000pt;}
.x30_c00444{left:519.333333pt;}
.x3e_c00444{left:520.933333pt;}
.x113_c00444{left:522.666667pt;}
.x7c_c00444{left:523.600000pt;}
.x90_c00444{left:525.600000pt;}
.x4c_c00444{left:527.466667pt;}
.xca_c00444{left:529.866667pt;}
.xb8_c00444{left:532.133333pt;}
.x11f_c00444{left:533.600000pt;}
.x31_c00444{left:534.666667pt;}
.xee_c00444{left:537.066667pt;}
.x98_c00444{left:539.333333pt;}
.x66_c00444{left:540.533333pt;}
.x10a_c00444{left:542.400000pt;}
.xcb_c00444{left:544.533333pt;}
.x106_c00444{left:547.200000pt;}
.x1f_c00444{left:548.400000pt;}
.xf7_c00444{left:551.466667pt;}
.x5b_c00444{left:553.333333pt;}
.xd7_c00444{left:555.600000pt;}
.x4d_c00444{left:557.866667pt;}
.xdc_c00444{left:559.200000pt;}
.x3f_c00444{left:560.933333pt;}
.xb9_c00444{left:563.200000pt;}
.x32_c00444{left:566.666667pt;}
.xae_c00444{left:568.666667pt;}
.x9f_c00444{left:570.000000pt;}
.x20_c00444{left:571.066667pt;}
.xef_c00444{left:572.000000pt;}
.x4e_c00444{left:574.133333pt;}
.xe_c00444{left:575.333333pt;}
.x10e_c00444{left:576.533333pt;}
.xba_c00444{left:580.133333pt;}
.xaf_c00444{left:581.466667pt;}
.x73_c00444{left:582.533333pt;}
.xfb_c00444{left:585.866667pt;}
.x86_c00444{left:587.866667pt;}
.x91_c00444{left:589.600000pt;}
.x7d_c00444{left:590.533333pt;}
.x114_c00444{left:592.133333pt;}
.xa0_c00444{left:594.933333pt;}
.xf_c00444{left:596.400000pt;}
.x5c_c00444{left:597.466667pt;}
.xe7_c00444{left:598.933333pt;}
.x67_c00444{left:600.000000pt;}
.x4f_c00444{left:602.933333pt;}
.x87_c00444{left:603.866667pt;}
.x40_c00444{left:605.733333pt;}
.x123_c00444{left:608.666667pt;}
.x74_c00444{left:610.000000pt;}
.xdd_c00444{left:611.066667pt;}
.x68_c00444{left:617.866667pt;}
.x10_c00444{left:620.666667pt;}
.x117_c00444{left:622.400000pt;}
.xb0_c00444{left:623.733333pt;}
.x7e_c00444{left:624.800000pt;}
.xcc_c00444{left:626.133333pt;}
.x21_c00444{left:628.000000pt;}
.xde_c00444{left:629.333333pt;}
.xfe_c00444{left:632.666667pt;}
.x88_c00444{left:635.866667pt;}
.x5d_c00444{left:637.466667pt;}
.x7f_c00444{left:639.866667pt;}
.x11c_c00444{left:640.800000pt;}
.x33_c00444{left:643.200000pt;}
.x103_c00444{left:644.133333pt;}
.x41_c00444{left:646.000000pt;}
.x11_c00444{left:648.800000pt;}
.x115_c00444{left:650.266667pt;}
.xe8_c00444{left:651.466667pt;}
.x99_c00444{left:652.666667pt;}
.x69_c00444{left:654.666667pt;}
.xb1_c00444{left:658.000000pt;}
.x22_c00444{left:660.266667pt;}
.xa1_c00444{left:661.200000pt;}
.x50_c00444{left:662.400000pt;}
.x11b_c00444{left:667.733333pt;}
.xdf_c00444{left:668.666667pt;}
.x42_c00444{left:669.733333pt;}
.x124_c00444{left:671.333333pt;}
.x92_c00444{left:675.600000pt;}
.x10b_c00444{left:678.266667pt;}
.x75_c00444{left:680.400000pt;}
.xa2_c00444{left:682.266667pt;}
.x23_c00444{left:684.266667pt;}
.x6a_c00444{left:686.933333pt;}
.x34_c00444{left:688.266667pt;}
.xf0_c00444{left:689.733333pt;}
.x12_c00444{left:691.066667pt;}
.xfc_c00444{left:693.066667pt;}
.x5e_c00444{left:694.133333pt;}
.x10f_c00444{left:695.600000pt;}
.xc3_c00444{left:699.466667pt;}
.xb2_c00444{left:700.933333pt;}
.xd8_c00444{left:702.933333pt;}
.x43_c00444{left:708.133333pt;}
.x125_c00444{left:709.066667pt;}
.x102_c00444{left:711.066667pt;}
.xbb_c00444{left:713.733333pt;}
}





/* 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_c00445 {
    display:none;
  }
  .loading-indicator_c00445.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00445 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_c00445 { 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_c00445" -> "#page-container .classname_c00445")
 */
.pf_c00445 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00445 { /* 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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00445 { /* 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_c00445 { /* 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_c00445 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00445 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00445 {overflow:visible;}
  }
}
.c_c00445 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00445 { /* 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_c00445:after { /* webkit #35443 */
  content: '';
}
.t_c00445:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00445 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 */
}
.__c00445 { /* 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_c00445 { /* info for Javascript */
  display:none;
}
.l_c00445 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00445 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00445 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00445: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_c00445 {
    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_c00445.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00445.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_c00445 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00445{font-family:sans-serif;visibility:hidden;}
.sc__c00445{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
}
.y0_c00445{bottom:0.000000px;}
.h1_c00445{height:1166.250000px;}
.h0_c00445{height:1166.400056px;}
.w0_c00445{width:920.879975px;}
.w1_c00445{width:921.000000px;}
.x0_c00445{left:0.000000px;}
@media print{
.y0_c00445{bottom:0.000000pt;}
.h1_c00445{height:1036.666667pt;}
.h0_c00445{height:1036.800049pt;}
.w0_c00445{width:818.559977pt;}
.w1_c00445{width:818.666667pt;}
.x0_c00445{left:0.000000pt;}
}





/* 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_c00446 {
    display:none;
  }
  .loading-indicator_c00446.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00446 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_c00446 { 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_c00446" -> "#page-container .classname_c00446")
 */
.pf_c00446 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00446 { /* 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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00446 { /* 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_c00446 { /* 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_c00446 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00446 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00446 {overflow:visible;}
  }
}
.c_c00446 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00446 { /* 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_c00446:after { /* webkit #35443 */
  content: '';
}
.t_c00446:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00446 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 */
}
.__c00446 { /* 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_c00446 { /* info for Javascript */
  display:none;
}
.l_c00446 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00446 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00446 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00446: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_c00446 {
    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_c00446.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00446.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_c00446 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00446{font-family:sans-serif;visibility:hidden;}
.sc__c00446{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
}
.y0_c00446{bottom:0.000000px;}
.h1_c00446{height:1166.250000px;}
.h0_c00446{height:1166.400056px;}
.w0_c00446{width:920.879975px;}
.w1_c00446{width:921.000000px;}
.x0_c00446{left:0.000000px;}
@media print{
.y0_c00446{bottom:0.000000pt;}
.h1_c00446{height:1036.666667pt;}
.h0_c00446{height:1036.800049pt;}
.w0_c00446{width:818.559977pt;}
.w1_c00446{width:818.666667pt;}
.x0_c00446{left:0.000000pt;}
}





/* 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_c00447 {
    display:none;
  }
  .loading-indicator_c00447.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00447 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_c00447 { 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_c00447" -> "#page-container .classname_c00447")
 */
.pf_c00447 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00447 { /* 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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00447 { /* 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_c00447 { /* 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_c00447 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00447 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00447 {overflow:visible;}
  }
}
.c_c00447 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00447 { /* 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_c00447:after { /* webkit #35443 */
  content: '';
}
.t_c00447:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00447 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 */
}
.__c00447 { /* 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_c00447 { /* info for Javascript */
  display:none;
}
.l_c00447 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00447 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00447 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00447: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_c00447 {
    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_c00447.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00447.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_c00447 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00447{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00447;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.000000;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;}
.m94_c00447{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mab_c00447{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00447{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00447{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.maf_c00447{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00447{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.mad_c00447{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00447{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m87_c00447{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00447{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m66_c00447{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00447{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mae_c00447{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m86_c00447{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00447{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00447{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00447{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m80_c00447{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mac_c00447{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00447{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00447{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00447{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00447{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maa_c00447{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00447{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00447{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00447{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00447{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m18_c00447{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00447{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00447{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00447{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m93_c00447{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00447{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00447{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00447{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00447{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00447{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mba_c00447{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m82_c00447{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00447{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m81_c00447{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00447{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m36_c00447{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00447{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m55_c00447{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m40_c00447{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m89_c00447{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00447{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00447{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00447{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m19_c00447{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00447{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3_c00447{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m42_c00447{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m91_c00447{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00447{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m24_c00447{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m97_c00447{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00447{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m48_c00447{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);}
.m88_c00447{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00447{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00447{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00447{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m65_c00447{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4_c00447{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me_c00447{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00447{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m85_c00447{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m15_c00447{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m68_c00447{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00447{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00447{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m83_c00447{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00447{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00447{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00447{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.m17_c00447{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00447{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m59_c00447{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m56_c00447{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m43_c00447{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00447{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m98_c00447{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m90_c00447{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00447{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m45_c00447{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00447{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00447{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00447{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m21_c00447{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m1_c00447{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m74_c00447{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00447{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m30_c00447{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m84_c00447{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00447{transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.ls0_c00447{letter-spacing:0.000000px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{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__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00447{word-spacing:-13.375000px;}
.ws8_c00447{word-spacing:-12.066823px;}
.ws5_c00447{word-spacing:-9.125000px;}
.ws1_c00447{word-spacing:-7.222222px;}
.ws4_c00447{word-spacing:-6.790066px;}
.ws3_c00447{word-spacing:-5.590361px;}
.ws6_c00447{word-spacing:-1.500000px;}
.ws9_c00447{word-spacing:0.000000px;}
.ws2_c00447{word-spacing:7.160772px;}
.ws0_c00447{word-spacing:8.875000px;}
.fc0_c00447{color:transparent;}
.fs1_c00447{font-size:48.000000px;}
.fs0_c00447{font-size:54.000000px;}
.y0_c00447{bottom:0.000000px;}
.y2e_c00447{bottom:136.800000px;}
.y2d_c00447{bottom:155.850000px;}
.y2c_c00447{bottom:172.050000px;}
.y2b_c00447{bottom:187.200000px;}
.y2a_c00447{bottom:203.100000px;}
.y29_c00447{bottom:218.850000px;}
.y28_c00447{bottom:234.300000px;}
.y27_c00447{bottom:249.900000px;}
.y26_c00447{bottom:264.600000px;}
.y25_c00447{bottom:291.900000px;}
.y24_c00447{bottom:311.700000px;}
.y23_c00447{bottom:331.800000px;}
.y22_c00447{bottom:351.900000px;}
.y21_c00447{bottom:371.700000px;}
.y20_c00447{bottom:391.500000px;}
.y1f_c00447{bottom:411.600000px;}
.y1e_c00447{bottom:432.900000px;}
.y1d_c00447{bottom:451.650000px;}
.y1c_c00447{bottom:471.750000px;}
.y1b_c00447{bottom:491.850000px;}
.y1a_c00447{bottom:511.650000px;}
.y19_c00447{bottom:531.450000px;}
.y18_c00447{bottom:551.250000px;}
.y17_c00447{bottom:571.350000px;}
.y16_c00447{bottom:591.150000px;}
.y15_c00447{bottom:610.950000px;}
.y14_c00447{bottom:650.850000px;}
.y13_c00447{bottom:671.400000px;}
.y12_c00447{bottom:690.900000px;}
.y11_c00447{bottom:711.000000px;}
.y10_c00447{bottom:730.650000px;}
.yf_c00447{bottom:751.200000px;}
.ye_c00447{bottom:771.000000px;}
.yd_c00447{bottom:791.100000px;}
.yc_c00447{bottom:811.200000px;}
.yb_c00447{bottom:831.000000px;}
.ya_c00447{bottom:851.100000px;}
.y9_c00447{bottom:870.600000px;}
.y8_c00447{bottom:890.700000px;}
.y7_c00447{bottom:910.500000px;}
.y6_c00447{bottom:930.600000px;}
.y5_c00447{bottom:950.700000px;}
.y4_c00447{bottom:970.800000px;}
.y3_c00447{bottom:990.600000px;}
.y2_c00447{bottom:1010.100000px;}
.y1_c00447{bottom:1048.650000px;}
.h3_c00447{height:48.000000px;}
.h2_c00447{height:54.000000px;}
.h1_c00447{height:1166.250000px;}
.h0_c00447{height:1166.400056px;}
.w0_c00447{width:920.879975px;}
.w1_c00447{width:921.000000px;}
.x0_c00447{left:0.000000px;}
.x3_c00447{left:96.150000px;}
.xa6_c00447{left:97.950000px;}
.xdc_c00447{left:99.150000px;}
.x101_c00447{left:100.200000px;}
.x11f_c00447{left:101.250000px;}
.x3b_c00447{left:116.400000px;}
.x74_c00447{left:117.600000px;}
.x143_c00447{left:118.800000px;}
.x8e_c00447{left:120.450000px;}
.xdd_c00447{left:124.350000px;}
.x1f_c00447{left:125.400000px;}
.x10c_c00447{left:126.450000px;}
.xb6_c00447{left:127.500000px;}
.x9e_c00447{left:128.850000px;}
.xf9_c00447{left:129.900000px;}
.x139_c00447{left:132.900000px;}
.x2e_c00447{left:134.400000px;}
.x12_c00447{left:137.400000px;}
.x7e_c00447{left:139.200000px;}
.x144_c00447{left:141.150000px;}
.x52_c00447{left:143.400000px;}
.x3c_c00447{left:144.900000px;}
.x9c_c00447{left:148.200000px;}
.x4_c00447{left:151.950000px;}
.x85_c00447{left:153.900000px;}
.xfa_c00447{left:155.400000px;}
.x10d_c00447{left:157.800000px;}
.x116_c00447{left:159.750000px;}
.xc8_c00447{left:160.800000px;}
.x20_c00447{left:162.150000px;}
.x47_c00447{left:163.200000px;}
.x9d_c00447{left:165.450000px;}
.x7f_c00447{left:168.000000px;}
.x86_c00447{left:169.050000px;}
.x5_c00447{left:172.050000px;}
.xde_c00447{left:175.200000px;}
.x2f_c00447{left:176.550000px;}
.xee_c00447{left:178.650000px;}
.x126_c00447{left:180.450000px;}
.x148_c00447{left:182.100000px;}
.x102_c00447{left:183.600000px;}
.x53_c00447{left:184.800000px;}
.x21_c00447{left:185.850000px;}
.x8f_c00447{left:188.550000px;}
.x11c_c00447{left:190.950000px;}
.x48_c00447{left:192.000000px;}
.xce_c00447{left:194.250000px;}
.xe2_c00447{left:196.050000px;}
.x3d_c00447{left:197.100000px;}
.x75_c00447{left:198.300000px;}
.x67_c00447{left:199.650000px;}
.xb7_c00447{left:200.850000px;}
.x120_c00447{left:202.500000px;}
.x94_c00447{left:204.450000px;}
.x11b_c00447{left:207.150000px;}
.xc2_c00447{left:208.500000px;}
.x9f_c00447{left:211.350000px;}
.xfb_c00447{left:214.500000px;}
.x54_c00447{left:216.150000px;}
.x13_c00447{left:217.350000px;}
.x76_c00447{left:219.150000px;}
.x30_c00447{left:220.500000px;}
.x12e_c00447{left:221.550000px;}
.xef_c00447{left:222.600000px;}
.x127_c00447{left:227.250000px;}
.x68_c00447{left:231.000000px;}
.xe3_c00447{left:233.550000px;}
.xfc_c00447{left:235.050000px;}
.xdf_c00447{left:236.100000px;}
.x77_c00447{left:239.250000px;}
.x95_c00447{left:240.450000px;}
.xab_c00447{left:242.400000px;}
.x11d_c00447{left:244.950000px;}
.x22_c00447{left:246.750000px;}
.xa7_c00447{left:249.150000px;}
.x69_c00447{left:251.550000px;}
.x103_c00447{left:253.350000px;}
.xb8_c00447{left:255.600000px;}
.x6_c00447{left:257.700000px;}
.x96_c00447{left:260.550000px;}
.x5d_c00447{left:262.650000px;}
.x117_c00447{left:264.900000px;}
.x31_c00447{left:267.300000px;}
.x10e_c00447{left:270.150000px;}
.x49_c00447{left:272.700000px;}
.x78_c00447{left:275.250000px;}
.x149_c00447{left:276.300000px;}
.x135_c00447{left:278.400000px;}
.x6a_c00447{left:280.050000px;}
.x7_c00447{left:282.600000px;}
.x104_c00447{left:284.250000px;}
.xb9_c00447{left:285.600000px;}
.x3e_c00447{left:287.850000px;}
.x97_c00447{left:289.350000px;}
.xe0_c00447{left:291.150000px;}
.x14_c00447{left:292.650000px;}
.xe8_c00447{left:294.900000px;}
.x140_c00447{left:296.100000px;}
.x55_c00447{left:297.150000px;}
.x145_c00447{left:298.500000px;}
.x5e_c00447{left:300.750000px;}
.xcf_c00447{left:303.000000px;}
.x32_c00447{left:304.350000px;}
.xa8_c00447{left:306.750000px;}
.x10f_c00447{left:307.950000px;}
.xe4_c00447{left:309.900000px;}
.xc3_c00447{left:311.850000px;}
.x6b_c00447{left:313.200000px;}
.xa0_c00447{left:314.250000px;}
.x8_c00447{left:315.750000px;}
.x11e_c00447{left:317.400000px;}
.xc9_c00447{left:319.500000px;}
.x87_c00447{left:322.200000px;}
.x121_c00447{left:324.750000px;}
.xba_c00447{left:325.950000px;}
.x15_c00447{left:328.650000px;}
.x23_c00447{left:330.300000px;}
.x33_c00447{left:332.100000px;}
.x13a_c00447{left:333.300000px;}
.xd5_c00447{left:334.500000px;}
.x146_c00447{left:336.600000px;}
.xe5_c00447{left:337.950000px;}
.x90_c00447{left:340.800000px;}
.x110_c00447{left:341.850000px;}
.x5f_c00447{left:342.900000px;}
.x14a_c00447{left:345.150000px;}
.x122_c00447{left:346.350000px;}
.xa1_c00447{left:347.400000px;}
.xc4_c00447{left:348.600000px;}
.xac_c00447{left:349.800000px;}
.x128_c00447{left:350.850000px;}
.x9_c00447{left:352.050000px;}
.x80_c00447{left:353.550000px;}
.x3f_c00447{left:355.950000px;}
.xa9_c00447{left:358.200000px;}
.x16_c00447{left:359.550000px;}
.x111_c00447{left:362.400000px;}
.x4a_c00447{left:363.450000px;}
.x79_c00447{left:365.700000px;}
.x24_c00447{left:367.050000px;}
.x98_c00447{left:368.550000px;}
.xf0_c00447{left:375.600000px;}
.x34_c00447{left:377.400000px;}
.x129_c00447{left:378.900000px;}
.xca_c00447{left:381.000000px;}
.x81_c00447{left:382.650000px;}
.x1_c00447{left:385.200000px;}
.x14b_c00447{left:388.350000px;}
.xa_c00447{left:389.850000px;}
.x7a_c00447{left:391.200000px;}
.x60_c00447{left:392.550000px;}
.x25_c00447{left:394.800000px;}
.xbb_c00447{left:395.850000px;}
.xe9_c00447{left:397.800000px;}
.x40_c00447{left:399.900000px;}
.x112_c00447{left:401.250000px;}
.x91_c00447{left:403.800000px;}
.xe6_c00447{left:405.300000px;}
.x4b_c00447{left:406.650000px;}
.x13b_c00447{left:408.150000px;}
.x56_c00447{left:410.100000px;}
.xa2_c00447{left:412.500000px;}
.xbc_c00447{left:413.550000px;}
.xf6_c00447{left:415.800000px;}
.x35_c00447{left:417.000000px;}
.xd6_c00447{left:419.100000px;}
.x88_c00447{left:423.750000px;}
.xd0_c00447{left:425.550000px;}
.xad_c00447{left:427.650000px;}
.xcb_c00447{left:429.300000px;}
.x17_c00447{left:430.800000px;}
.x105_c00447{left:432.450000px;}
.x57_c00447{left:433.500000px;}
.x36_c00447{left:436.500000px;}
.xbd_c00447{left:438.750000px;}
.xa3_c00447{left:441.000000px;}
.x12c_c00447{left:443.250000px;}
.xae_c00447{left:444.600000px;}
.x141_c00447{left:445.650000px;}
.x41_c00447{left:447.300000px;}
.x7b_c00447{left:448.800000px;}
.x6c_c00447{left:453.000000px;}
.xb_c00447{left:454.950000px;}
.xd7_c00447{left:459.000000px;}
.x89_c00447{left:461.550000px;}
.x37_c00447{left:465.300000px;}
.xd1_c00447{left:466.950000px;}
.x82_c00447{left:468.000000px;}
.x13c_c00447{left:469.050000px;}
.x4c_c00447{left:471.150000px;}
.x132_c00447{left:472.650000px;}
.xc_c00447{left:474.750000px;}
.x26_c00447{left:477.600000px;}
.xaf_c00447{left:479.100000px;}
.x6d_c00447{left:480.750000px;}
.x106_c00447{left:484.350000px;}
.x42_c00447{left:485.400000px;}
.x14c_c00447{left:486.600000px;}
.x58_c00447{left:487.800000px;}
.x113_c00447{left:491.250000px;}
.x8a_c00447{left:496.050000px;}
.x18_c00447{left:499.200000px;}
.xf1_c00447{left:501.600000px;}
.x99_c00447{left:504.300000px;}
.xe1_c00447{left:505.650000px;}
.xd8_c00447{left:507.150000px;}
.x61_c00447{left:509.250000px;}
.xea_c00447{left:511.200000px;}
.xd_c00447{left:512.250000px;}
.x6e_c00447{left:514.200000px;}
.x114_c00447{left:515.400000px;}
.x118_c00447{left:517.050000px;}
.x123_c00447{left:519.450000px;}
.x59_c00447{left:520.950000px;}
.xbe_c00447{left:524.400000px;}
.xd2_c00447{left:525.600000px;}
.x19_c00447{left:529.800000px;}
.xb0_c00447{left:531.000000px;}
.x13d_c00447{left:532.350000px;}
.x38_c00447{left:533.400000px;}
.x119_c00447{left:534.750000px;}
.x12f_c00447{left:536.100000px;}
.x133_c00447{left:538.650000px;}
.x8b_c00447{left:540.300000px;}
.x62_c00447{left:541.650000px;}
.x6f_c00447{left:542.700000px;}
.x124_c00447{left:544.650000px;}
.x4d_c00447{left:546.300000px;}
.x12a_c00447{left:547.950000px;}
.xe_c00447{left:549.300000px;}
.x27_c00447{left:552.450000px;}
.xd9_c00447{left:553.650000px;}
.x7c_c00447{left:554.700000px;}
.xb1_c00447{left:556.500000px;}
.x5a_c00447{left:558.000000px;}
.xaa_c00447{left:560.850000px;}
.x115_c00447{left:562.500000px;}
.x1a_c00447{left:565.800000px;}
.xeb_c00447{left:568.500000px;}
.x8c_c00447{left:570.150000px;}
.x83_c00447{left:571.650000px;}
.x7d_c00447{left:572.700000px;}
.xd3_c00447{left:574.500000px;}
.x63_c00447{left:575.850000px;}
.x147_c00447{left:577.050000px;}
.xf7_c00447{left:582.000000px;}
.xb2_c00447{left:584.550000px;}
.x70_c00447{left:587.400000px;}
.x12b_c00447{left:589.050000px;}
.x28_c00447{left:590.550000px;}
.x134_c00447{left:592.650000px;}
.xbf_c00447{left:594.000000px;}
.xcc_c00447{left:595.650000px;}
.x130_c00447{left:598.050000px;}
.x1b_c00447{left:599.250000px;}
.xf_c00447{left:601.800000px;}
.x107_c00447{left:603.150000px;}
.x4e_c00447{left:604.200000px;}
.x43_c00447{left:606.750000px;}
.xfd_c00447{left:609.000000px;}
.x64_c00447{left:612.900000px;}
.xb3_c00447{left:614.100000px;}
.x131_c00447{left:615.300000px;}
.xf2_c00447{left:617.850000px;}
.x4f_c00447{left:621.150000px;}
.x71_c00447{left:623.700000px;}
.x136_c00447{left:626.100000px;}
.xec_c00447{left:627.150000px;}
.x29_c00447{left:628.350000px;}
.x9a_c00447{left:631.950000px;}
.x142_c00447{left:634.500000px;}
.x39_c00447{left:636.000000px;}
.xc0_c00447{left:637.800000px;}
.x8d_c00447{left:640.350000px;}
.xcd_c00447{left:642.000000px;}
.x50_c00447{left:643.500000px;}
.x108_c00447{left:644.550000px;}
.x2a_c00447{left:645.600000px;}
.x84_c00447{left:648.600000px;}
.x1c_c00447{left:650.400000px;}
.x92_c00447{left:651.900000px;}
.x3a_c00447{left:656.850000px;}
.xc5_c00447{left:661.200000px;}
.x137_c00447{left:662.850000px;}
.x44_c00447{left:666.150000px;}
.x1d_c00447{left:667.650000px;}
.x9b_c00447{left:669.450000px;}
.x5b_c00447{left:672.450000px;}
.xc1_c00447{left:673.800000px;}
.x138_c00447{left:679.050000px;}
.xf3_c00447{left:680.100000px;}
.xfe_c00447{left:681.450000px;}
.xda_c00447{left:683.400000px;}
.x109_c00447{left:685.950000px;}
.x93_c00447{left:687.150000px;}
.x14d_c00447{left:688.350000px;}
.x51_c00447{left:689.550000px;}
.x10_c00447{left:693.300000px;}
.x1e_c00447{left:694.950000px;}
.xed_c00447{left:696.300000px;}
.xf8_c00447{left:698.700000px;}
.xb4_c00447{left:699.750000px;}
.x72_c00447{left:700.800000px;}
.xc6_c00447{left:702.300000px;}
.x2b_c00447{left:703.500000px;}
.x45_c00447{left:704.700000px;}
.x13e_c00447{left:706.200000px;}
.xf4_c00447{left:708.600000px;}
.xd4_c00447{left:709.800000px;}
.x125_c00447{left:714.300000px;}
.x65_c00447{left:715.500000px;}
.xe7_c00447{left:718.200000px;}
.x13f_c00447{left:720.900000px;}
.x11_c00447{left:722.400000px;}
.xa4_c00447{left:723.600000px;}
.x46_c00447{left:725.550000px;}
.x10a_c00447{left:726.600000px;}
.x73_c00447{left:728.550000px;}
.x2c_c00447{left:730.500000px;}
.xc7_c00447{left:732.150000px;}
.xf5_c00447{left:733.500000px;}
.x2_c00447{left:735.900000px;}
.x12d_c00447{left:738.300000px;}
.x5c_c00447{left:739.350000px;}
.xb5_c00447{left:740.850000px;}
.x2d_c00447{left:742.050000px;}
.xa5_c00447{left:744.150000px;}
.x11a_c00447{left:748.350000px;}
.x66_c00447{left:750.450000px;}
.xdb_c00447{left:754.050000px;}
.xff_c00447{left:757.950000px;}
.x10b_c00447{left:764.700000px;}
.x100_c00447{left:774.150000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ws7_c00447{word-spacing:-11.888889pt;}
.ws8_c00447{word-spacing:-10.726065pt;}
.ws5_c00447{word-spacing:-8.111111pt;}
.ws1_c00447{word-spacing:-6.419753pt;}
.ws4_c00447{word-spacing:-6.035614pt;}
.ws3_c00447{word-spacing:-4.969210pt;}
.ws6_c00447{word-spacing:-1.333333pt;}
.ws9_c00447{word-spacing:0.000000pt;}
.ws2_c00447{word-spacing:6.365130pt;}
.ws0_c00447{word-spacing:7.888889pt;}
.fs1_c00447{font-size:42.666667pt;}
.fs0_c00447{font-size:48.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y2e_c00447{bottom:121.600000pt;}
.y2d_c00447{bottom:138.533333pt;}
.y2c_c00447{bottom:152.933333pt;}
.y2b_c00447{bottom:166.400000pt;}
.y2a_c00447{bottom:180.533333pt;}
.y29_c00447{bottom:194.533333pt;}
.y28_c00447{bottom:208.266667pt;}
.y27_c00447{bottom:222.133333pt;}
.y26_c00447{bottom:235.200000pt;}
.y25_c00447{bottom:259.466667pt;}
.y24_c00447{bottom:277.066667pt;}
.y23_c00447{bottom:294.933333pt;}
.y22_c00447{bottom:312.800000pt;}
.y21_c00447{bottom:330.400000pt;}
.y20_c00447{bottom:348.000000pt;}
.y1f_c00447{bottom:365.866667pt;}
.y1e_c00447{bottom:384.800000pt;}
.y1d_c00447{bottom:401.466667pt;}
.y1c_c00447{bottom:419.333333pt;}
.y1b_c00447{bottom:437.200000pt;}
.y1a_c00447{bottom:454.800000pt;}
.y19_c00447{bottom:472.400000pt;}
.y18_c00447{bottom:490.000000pt;}
.y17_c00447{bottom:507.866667pt;}
.y16_c00447{bottom:525.466667pt;}
.y15_c00447{bottom:543.066667pt;}
.y14_c00447{bottom:578.533333pt;}
.y13_c00447{bottom:596.800000pt;}
.y12_c00447{bottom:614.133333pt;}
.y11_c00447{bottom:632.000000pt;}
.y10_c00447{bottom:649.466667pt;}
.yf_c00447{bottom:667.733333pt;}
.ye_c00447{bottom:685.333333pt;}
.yd_c00447{bottom:703.200000pt;}
.yc_c00447{bottom:721.066667pt;}
.yb_c00447{bottom:738.666667pt;}
.ya_c00447{bottom:756.533333pt;}
.y9_c00447{bottom:773.866667pt;}
.y8_c00447{bottom:791.733333pt;}
.y7_c00447{bottom:809.333333pt;}
.y6_c00447{bottom:827.200000pt;}
.y5_c00447{bottom:845.066667pt;}
.y4_c00447{bottom:862.933333pt;}
.y3_c00447{bottom:880.533333pt;}
.y2_c00447{bottom:897.866667pt;}
.y1_c00447{bottom:932.133333pt;}
.h3_c00447{height:42.666667pt;}
.h2_c00447{height:48.000000pt;}
.h1_c00447{height:1036.666667pt;}
.h0_c00447{height:1036.800049pt;}
.w0_c00447{width:818.559977pt;}
.w1_c00447{width:818.666667pt;}
.x0_c00447{left:0.000000pt;}
.x3_c00447{left:85.466667pt;}
.xa6_c00447{left:87.066667pt;}
.xdc_c00447{left:88.133333pt;}
.x101_c00447{left:89.066667pt;}
.x11f_c00447{left:90.000000pt;}
.x3b_c00447{left:103.466667pt;}
.x74_c00447{left:104.533333pt;}
.x143_c00447{left:105.600000pt;}
.x8e_c00447{left:107.066667pt;}
.xdd_c00447{left:110.533333pt;}
.x1f_c00447{left:111.466667pt;}
.x10c_c00447{left:112.400000pt;}
.xb6_c00447{left:113.333333pt;}
.x9e_c00447{left:114.533333pt;}
.xf9_c00447{left:115.466667pt;}
.x139_c00447{left:118.133333pt;}
.x2e_c00447{left:119.466667pt;}
.x12_c00447{left:122.133333pt;}
.x7e_c00447{left:123.733333pt;}
.x144_c00447{left:125.466667pt;}
.x52_c00447{left:127.466667pt;}
.x3c_c00447{left:128.800000pt;}
.x9c_c00447{left:131.733333pt;}
.x4_c00447{left:135.066667pt;}
.x85_c00447{left:136.800000pt;}
.xfa_c00447{left:138.133333pt;}
.x10d_c00447{left:140.266667pt;}
.x116_c00447{left:142.000000pt;}
.xc8_c00447{left:142.933333pt;}
.x20_c00447{left:144.133333pt;}
.x47_c00447{left:145.066667pt;}
.x9d_c00447{left:147.066667pt;}
.x7f_c00447{left:149.333333pt;}
.x86_c00447{left:150.266667pt;}
.x5_c00447{left:152.933333pt;}
.xde_c00447{left:155.733333pt;}
.x2f_c00447{left:156.933333pt;}
.xee_c00447{left:158.800000pt;}
.x126_c00447{left:160.400000pt;}
.x148_c00447{left:161.866667pt;}
.x102_c00447{left:163.200000pt;}
.x53_c00447{left:164.266667pt;}
.x21_c00447{left:165.200000pt;}
.x8f_c00447{left:167.600000pt;}
.x11c_c00447{left:169.733333pt;}
.x48_c00447{left:170.666667pt;}
.xce_c00447{left:172.666667pt;}
.xe2_c00447{left:174.266667pt;}
.x3d_c00447{left:175.200000pt;}
.x75_c00447{left:176.266667pt;}
.x67_c00447{left:177.466667pt;}
.xb7_c00447{left:178.533333pt;}
.x120_c00447{left:180.000000pt;}
.x94_c00447{left:181.733333pt;}
.x11b_c00447{left:184.133333pt;}
.xc2_c00447{left:185.333333pt;}
.x9f_c00447{left:187.866667pt;}
.xfb_c00447{left:190.666667pt;}
.x54_c00447{left:192.133333pt;}
.x13_c00447{left:193.200000pt;}
.x76_c00447{left:194.800000pt;}
.x30_c00447{left:196.000000pt;}
.x12e_c00447{left:196.933333pt;}
.xef_c00447{left:197.866667pt;}
.x127_c00447{left:202.000000pt;}
.x68_c00447{left:205.333333pt;}
.xe3_c00447{left:207.600000pt;}
.xfc_c00447{left:208.933333pt;}
.xdf_c00447{left:209.866667pt;}
.x77_c00447{left:212.666667pt;}
.x95_c00447{left:213.733333pt;}
.xab_c00447{left:215.466667pt;}
.x11d_c00447{left:217.733333pt;}
.x22_c00447{left:219.333333pt;}
.xa7_c00447{left:221.466667pt;}
.x69_c00447{left:223.600000pt;}
.x103_c00447{left:225.200000pt;}
.xb8_c00447{left:227.200000pt;}
.x6_c00447{left:229.066667pt;}
.x96_c00447{left:231.600000pt;}
.x5d_c00447{left:233.466667pt;}
.x117_c00447{left:235.466667pt;}
.x31_c00447{left:237.600000pt;}
.x10e_c00447{left:240.133333pt;}
.x49_c00447{left:242.400000pt;}
.x78_c00447{left:244.666667pt;}
.x149_c00447{left:245.600000pt;}
.x135_c00447{left:247.466667pt;}
.x6a_c00447{left:248.933333pt;}
.x7_c00447{left:251.200000pt;}
.x104_c00447{left:252.666667pt;}
.xb9_c00447{left:253.866667pt;}
.x3e_c00447{left:255.866667pt;}
.x97_c00447{left:257.200000pt;}
.xe0_c00447{left:258.800000pt;}
.x14_c00447{left:260.133333pt;}
.xe8_c00447{left:262.133333pt;}
.x140_c00447{left:263.200000pt;}
.x55_c00447{left:264.133333pt;}
.x145_c00447{left:265.333333pt;}
.x5e_c00447{left:267.333333pt;}
.xcf_c00447{left:269.333333pt;}
.x32_c00447{left:270.533333pt;}
.xa8_c00447{left:272.666667pt;}
.x10f_c00447{left:273.733333pt;}
.xe4_c00447{left:275.466667pt;}
.xc3_c00447{left:277.200000pt;}
.x6b_c00447{left:278.400000pt;}
.xa0_c00447{left:279.333333pt;}
.x8_c00447{left:280.666667pt;}
.x11e_c00447{left:282.133333pt;}
.xc9_c00447{left:284.000000pt;}
.x87_c00447{left:286.400000pt;}
.x121_c00447{left:288.666667pt;}
.xba_c00447{left:289.733333pt;}
.x15_c00447{left:292.133333pt;}
.x23_c00447{left:293.600000pt;}
.x33_c00447{left:295.200000pt;}
.x13a_c00447{left:296.266667pt;}
.xd5_c00447{left:297.333333pt;}
.x146_c00447{left:299.200000pt;}
.xe5_c00447{left:300.400000pt;}
.x90_c00447{left:302.933333pt;}
.x110_c00447{left:303.866667pt;}
.x5f_c00447{left:304.800000pt;}
.x14a_c00447{left:306.800000pt;}
.x122_c00447{left:307.866667pt;}
.xa1_c00447{left:308.800000pt;}
.xc4_c00447{left:309.866667pt;}
.xac_c00447{left:310.933333pt;}
.x128_c00447{left:311.866667pt;}
.x9_c00447{left:312.933333pt;}
.x80_c00447{left:314.266667pt;}
.x3f_c00447{left:316.400000pt;}
.xa9_c00447{left:318.400000pt;}
.x16_c00447{left:319.600000pt;}
.x111_c00447{left:322.133333pt;}
.x4a_c00447{left:323.066667pt;}
.x79_c00447{left:325.066667pt;}
.x24_c00447{left:326.266667pt;}
.x98_c00447{left:327.600000pt;}
.xf0_c00447{left:333.866667pt;}
.x34_c00447{left:335.466667pt;}
.x129_c00447{left:336.800000pt;}
.xca_c00447{left:338.666667pt;}
.x81_c00447{left:340.133333pt;}
.x1_c00447{left:342.400000pt;}
.x14b_c00447{left:345.200000pt;}
.xa_c00447{left:346.533333pt;}
.x7a_c00447{left:347.733333pt;}
.x60_c00447{left:348.933333pt;}
.x25_c00447{left:350.933333pt;}
.xbb_c00447{left:351.866667pt;}
.xe9_c00447{left:353.600000pt;}
.x40_c00447{left:355.466667pt;}
.x112_c00447{left:356.666667pt;}
.x91_c00447{left:358.933333pt;}
.xe6_c00447{left:360.266667pt;}
.x4b_c00447{left:361.466667pt;}
.x13b_c00447{left:362.800000pt;}
.x56_c00447{left:364.533333pt;}
.xa2_c00447{left:366.666667pt;}
.xbc_c00447{left:367.600000pt;}
.xf6_c00447{left:369.600000pt;}
.x35_c00447{left:370.666667pt;}
.xd6_c00447{left:372.533333pt;}
.x88_c00447{left:376.666667pt;}
.xd0_c00447{left:378.266667pt;}
.xad_c00447{left:380.133333pt;}
.xcb_c00447{left:381.600000pt;}
.x17_c00447{left:382.933333pt;}
.x105_c00447{left:384.400000pt;}
.x57_c00447{left:385.333333pt;}
.x36_c00447{left:388.000000pt;}
.xbd_c00447{left:390.000000pt;}
.xa3_c00447{left:392.000000pt;}
.x12c_c00447{left:394.000000pt;}
.xae_c00447{left:395.200000pt;}
.x141_c00447{left:396.133333pt;}
.x41_c00447{left:397.600000pt;}
.x7b_c00447{left:398.933333pt;}
.x6c_c00447{left:402.666667pt;}
.xb_c00447{left:404.400000pt;}
.xd7_c00447{left:408.000000pt;}
.x89_c00447{left:410.266667pt;}
.x37_c00447{left:413.600000pt;}
.xd1_c00447{left:415.066667pt;}
.x82_c00447{left:416.000000pt;}
.x13c_c00447{left:416.933333pt;}
.x4c_c00447{left:418.800000pt;}
.x132_c00447{left:420.133333pt;}
.xc_c00447{left:422.000000pt;}
.x26_c00447{left:424.533333pt;}
.xaf_c00447{left:425.866667pt;}
.x6d_c00447{left:427.333333pt;}
.x106_c00447{left:430.533333pt;}
.x42_c00447{left:431.466667pt;}
.x14c_c00447{left:432.533333pt;}
.x58_c00447{left:433.600000pt;}
.x113_c00447{left:436.666667pt;}
.x8a_c00447{left:440.933333pt;}
.x18_c00447{left:443.733333pt;}
.xf1_c00447{left:445.866667pt;}
.x99_c00447{left:448.266667pt;}
.xe1_c00447{left:449.466667pt;}
.xd8_c00447{left:450.800000pt;}
.x61_c00447{left:452.666667pt;}
.xea_c00447{left:454.400000pt;}
.xd_c00447{left:455.333333pt;}
.x6e_c00447{left:457.066667pt;}
.x114_c00447{left:458.133333pt;}
.x118_c00447{left:459.600000pt;}
.x123_c00447{left:461.733333pt;}
.x59_c00447{left:463.066667pt;}
.xbe_c00447{left:466.133333pt;}
.xd2_c00447{left:467.200000pt;}
.x19_c00447{left:470.933333pt;}
.xb0_c00447{left:472.000000pt;}
.x13d_c00447{left:473.200000pt;}
.x38_c00447{left:474.133333pt;}
.x119_c00447{left:475.333333pt;}
.x12f_c00447{left:476.533333pt;}
.x133_c00447{left:478.800000pt;}
.x8b_c00447{left:480.266667pt;}
.x62_c00447{left:481.466667pt;}
.x6f_c00447{left:482.400000pt;}
.x124_c00447{left:484.133333pt;}
.x4d_c00447{left:485.600000pt;}
.x12a_c00447{left:487.066667pt;}
.xe_c00447{left:488.266667pt;}
.x27_c00447{left:491.066667pt;}
.xd9_c00447{left:492.133333pt;}
.x7c_c00447{left:493.066667pt;}
.xb1_c00447{left:494.666667pt;}
.x5a_c00447{left:496.000000pt;}
.xaa_c00447{left:498.533333pt;}
.x115_c00447{left:500.000000pt;}
.x1a_c00447{left:502.933333pt;}
.xeb_c00447{left:505.333333pt;}
.x8c_c00447{left:506.800000pt;}
.x83_c00447{left:508.133333pt;}
.x7d_c00447{left:509.066667pt;}
.xd3_c00447{left:510.666667pt;}
.x63_c00447{left:511.866667pt;}
.x147_c00447{left:512.933333pt;}
.xf7_c00447{left:517.333333pt;}
.xb2_c00447{left:519.600000pt;}
.x70_c00447{left:522.133333pt;}
.x12b_c00447{left:523.600000pt;}
.x28_c00447{left:524.933333pt;}
.x134_c00447{left:526.800000pt;}
.xbf_c00447{left:528.000000pt;}
.xcc_c00447{left:529.466667pt;}
.x130_c00447{left:531.600000pt;}
.x1b_c00447{left:532.666667pt;}
.xf_c00447{left:534.933333pt;}
.x107_c00447{left:536.133333pt;}
.x4e_c00447{left:537.066667pt;}
.x43_c00447{left:539.333333pt;}
.xfd_c00447{left:541.333333pt;}
.x64_c00447{left:544.800000pt;}
.xb3_c00447{left:545.866667pt;}
.x131_c00447{left:546.933333pt;}
.xf2_c00447{left:549.200000pt;}
.x4f_c00447{left:552.133333pt;}
.x71_c00447{left:554.400000pt;}
.x136_c00447{left:556.533333pt;}
.xec_c00447{left:557.466667pt;}
.x29_c00447{left:558.533333pt;}
.x9a_c00447{left:561.733333pt;}
.x142_c00447{left:564.000000pt;}
.x39_c00447{left:565.333333pt;}
.xc0_c00447{left:566.933333pt;}
.x8d_c00447{left:569.200000pt;}
.xcd_c00447{left:570.666667pt;}
.x50_c00447{left:572.000000pt;}
.x108_c00447{left:572.933333pt;}
.x2a_c00447{left:573.866667pt;}
.x84_c00447{left:576.533333pt;}
.x1c_c00447{left:578.133333pt;}
.x92_c00447{left:579.466667pt;}
.x3a_c00447{left:583.866667pt;}
.xc5_c00447{left:587.733333pt;}
.x137_c00447{left:589.200000pt;}
.x44_c00447{left:592.133333pt;}
.x1d_c00447{left:593.466667pt;}
.x9b_c00447{left:595.066667pt;}
.x5b_c00447{left:597.733333pt;}
.xc1_c00447{left:598.933333pt;}
.x138_c00447{left:603.600000pt;}
.xf3_c00447{left:604.533333pt;}
.xfe_c00447{left:605.733333pt;}
.xda_c00447{left:607.466667pt;}
.x109_c00447{left:609.733333pt;}
.x93_c00447{left:610.800000pt;}
.x14d_c00447{left:611.866667pt;}
.x51_c00447{left:612.933333pt;}
.x10_c00447{left:616.266667pt;}
.x1e_c00447{left:617.733333pt;}
.xed_c00447{left:618.933333pt;}
.xf8_c00447{left:621.066667pt;}
.xb4_c00447{left:622.000000pt;}
.x72_c00447{left:622.933333pt;}
.xc6_c00447{left:624.266667pt;}
.x2b_c00447{left:625.333333pt;}
.x45_c00447{left:626.400000pt;}
.x13e_c00447{left:627.733333pt;}
.xf4_c00447{left:629.866667pt;}
.xd4_c00447{left:630.933333pt;}
.x125_c00447{left:634.933333pt;}
.x65_c00447{left:636.000000pt;}
.xe7_c00447{left:638.400000pt;}
.x13f_c00447{left:640.800000pt;}
.x11_c00447{left:642.133333pt;}
.xa4_c00447{left:643.200000pt;}
.x46_c00447{left:644.933333pt;}
.x10a_c00447{left:645.866667pt;}
.x73_c00447{left:647.600000pt;}
.x2c_c00447{left:649.333333pt;}
.xc7_c00447{left:650.800000pt;}
.xf5_c00447{left:652.000000pt;}
.x2_c00447{left:654.133333pt;}
.x12d_c00447{left:656.266667pt;}
.x5c_c00447{left:657.200000pt;}
.xb5_c00447{left:658.533333pt;}
.x2d_c00447{left:659.600000pt;}
.xa5_c00447{left:661.466667pt;}
.x11a_c00447{left:665.200000pt;}
.x66_c00447{left:667.066667pt;}
.xdb_c00447{left:670.266667pt;}
.xff_c00447{left:673.733333pt;}
.x10b_c00447{left:679.733333pt;}
.x100_c00447{left:688.133333pt;}
}





/* 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_c00448 {
    display:none;
  }
  .loading-indicator_c00448.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00448 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_c00448 { 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_c00448" -> "#page-container .classname_c00448")
 */
.pf_c00448 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00448 { /* 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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00448 { /* 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_c00448 { /* 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_c00448 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00448 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00448 {overflow:visible;}
  }
}
.c_c00448 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00448 { /* 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_c00448:after { /* webkit #35443 */
  content: '';
}
.t_c00448:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00448 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 */
}
.__c00448 { /* 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_c00448 { /* info for Javascript */
  display:none;
}
.l_c00448 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00448 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00448 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00448: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_c00448 {
    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_c00448.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00448.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_c00448 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00448{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00448;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.000000;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;}
.m9e_c00448{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00448{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m96_c00448{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00448{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m33_c00448{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m35_c00448{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m89_c00448{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m24_c00448{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m93_c00448{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m78_c00448{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00448{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00448{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00448{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00448{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00448{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mb_c00448{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00448{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00448{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.ma_c00448{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00448{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00448{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m23_c00448{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m80_c00448{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00448{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{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);}
.me_c00448{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00448{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m91_c00448{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00448{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00448{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m52_c00448{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00448{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m68_c00448{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00448{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m72_c00448{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m83_c00448{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m32_c00448{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00448{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00448{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m2_c00448{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m86_c00448{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00448{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m5_c00448{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00448{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292250,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295500,0.000000,0.000000,0.250000,0,0);}
.m90_c00448{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m49_c00448{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m28_c00448{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m29_c00448{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m50_c00448{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m1_c00448{transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321750,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m57_c00448{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m84_c00448{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00448{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.md_c00448{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00448{vertical-align:0.000000px;}
.ls0_c00448{letter-spacing:0.000000px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{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__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7_c00448{word-spacing:-4.202369px;}
.ws1_c00448{word-spacing:-0.442882px;}
.ws9_c00448{word-spacing:0.000000px;}
.ws5_c00448{word-spacing:0.590119px;}
.ws8_c00448{word-spacing:4.537019px;}
.ws4_c00448{word-spacing:6.125000px;}
.ws0_c00448{word-spacing:7.960486px;}
.ws6_c00448{word-spacing:8.381046px;}
.ws3_c00448{word-spacing:9.125000px;}
.ws2_c00448{word-spacing:10.625000px;}
._0_c00448{width:34.625000px;}
.fc0_c00448{color:transparent;}
.fs0_c00448{font-size:54.000000px;}
.y0_c00448{bottom:0.000000px;}
.y2c_c00448{bottom:156.900000px;}
.y2b_c00448{bottom:182.250000px;}
.y2a_c00448{bottom:202.050000px;}
.y29_c00448{bottom:221.550000px;}
.y28_c00448{bottom:241.350000px;}
.y27_c00448{bottom:261.450000px;}
.y26_c00448{bottom:281.250000px;}
.y25_c00448{bottom:301.350000px;}
.y24_c00448{bottom:321.450000px;}
.y23_c00448{bottom:340.950000px;}
.y22_c00448{bottom:361.050000px;}
.y21_c00448{bottom:380.850000px;}
.y20_c00448{bottom:400.650000px;}
.y1f_c00448{bottom:420.450000px;}
.y1e_c00448{bottom:440.700000px;}
.y1d_c00448{bottom:460.500000px;}
.y1c_c00448{bottom:480.300000px;}
.y1b_c00448{bottom:500.100000px;}
.y1a_c00448{bottom:520.200000px;}
.y19_c00448{bottom:540.300000px;}
.y18_c00448{bottom:572.850000px;}
.y17_c00448{bottom:592.950000px;}
.y16_c00448{bottom:612.750000px;}
.y15_c00448{bottom:632.550000px;}
.y14_c00448{bottom:652.650000px;}
.y13_c00448{bottom:672.450000px;}
.y12_c00448{bottom:693.000000px;}
.y11_c00448{bottom:712.800000px;}
.y10_c00448{bottom:732.900000px;}
.yf_c00448{bottom:752.700000px;}
.ye_c00448{bottom:772.800000px;}
.yd_c00448{bottom:792.600000px;}
.yc_c00448{bottom:812.400000px;}
.yb_c00448{bottom:832.200000px;}
.ya_c00448{bottom:852.300000px;}
.y9_c00448{bottom:872.100000px;}
.y8_c00448{bottom:892.200000px;}
.y7_c00448{bottom:912.000000px;}
.y6_c00448{bottom:932.100000px;}
.y5_c00448{bottom:951.900000px;}
.y4_c00448{bottom:972.000000px;}
.y3_c00448{bottom:991.800000px;}
.y2_c00448{bottom:1011.900000px;}
.y1_c00448{bottom:1050.450000px;}
.h2_c00448{height:54.000000px;}
.h1_c00448{height:1166.250000px;}
.h0_c00448{height:1166.400056px;}
.w0_c00448{width:920.879975px;}
.w1_c00448{width:921.000000px;}
.x0_c00448{left:0.000000px;}
.x3_c00448{left:154.050000px;}
.x1_c00448{left:155.100000px;}
.x99_c00448{left:168.600000px;}
.x13_c00448{left:174.300000px;}
.x23_c00448{left:176.400000px;}
.x10a_c00448{left:178.350000px;}
.x91_c00448{left:179.850000px;}
.xda_c00448{left:183.450000px;}
.x4_c00448{left:185.400000px;}
.xd2_c00448{left:187.050000px;}
.x85_c00448{left:189.600000px;}
.x3f_c00448{left:191.550000px;}
.x61_c00448{left:193.050000px;}
.xb7_c00448{left:194.850000px;}
.xc9_c00448{left:198.750000px;}
.xaa_c00448{left:200.100000px;}
.x70_c00448{left:204.150000px;}
.x118_c00448{left:205.500000px;}
.x55_c00448{left:207.150000px;}
.xd3_c00448{left:208.650000px;}
.x110_c00448{left:210.450000px;}
.xb0_c00448{left:211.500000px;}
.x14_c00448{left:212.850000px;}
.x24_c00448{left:215.700000px;}
.x11f_c00448{left:219.600000px;}
.x9a_c00448{left:221.100000px;}
.xf3_c00448{left:222.300000px;}
.xb8_c00448{left:223.350000px;}
.x103_c00448{left:226.350000px;}
.x5_c00448{left:230.400000px;}
.x4b_c00448{left:231.600000px;}
.xf0_c00448{left:232.800000px;}
.x86_c00448{left:234.900000px;}
.x71_c00448{left:238.650000px;}
.xe2_c00448{left:240.000000px;}
.x4c_c00448{left:242.400000px;}
.xfc_c00448{left:245.850000px;}
.x62_c00448{left:248.100000px;}
.xd4_c00448{left:249.750000px;}
.xba_c00448{left:251.700000px;}
.x15_c00448{left:254.550000px;}
.xca_c00448{left:256.050000px;}
.x87_c00448{left:258.000000px;}
.x92_c00448{left:260.250000px;}
.x11d_c00448{left:267.750000px;}
.x63_c00448{left:270.450000px;}
.x9b_c00448{left:272.250000px;}
.x25_c00448{left:275.850000px;}
.xfd_c00448{left:277.200000px;}
.xdb_c00448{left:279.600000px;}
.x32_c00448{left:281.100000px;}
.x104_c00448{left:282.600000px;}
.xa1_c00448{left:284.550000px;}
.x56_c00448{left:286.350000px;}
.x116_c00448{left:287.550000px;}
.x88_c00448{left:288.900000px;}
.x16_c00448{left:290.250000px;}
.x111_c00448{left:292.200000px;}
.x10b_c00448{left:293.250000px;}
.x119_c00448{left:294.750000px;}
.x40_c00448{left:295.950000px;}
.x64_c00448{left:298.950000px;}
.x72_c00448{left:300.900000px;}
.xf4_c00448{left:302.550000px;}
.x4d_c00448{left:305.400000px;}
.x6_c00448{left:308.850000px;}
.xab_c00448{left:310.200000px;}
.xa2_c00448{left:311.850000px;}
.x17_c00448{left:312.900000px;}
.x11e_c00448{left:316.350000px;}
.x9c_c00448{left:317.550000px;}
.x89_c00448{left:319.200000px;}
.xc0_c00448{left:320.850000px;}
.xcb_c00448{left:322.050000px;}
.x7b_c00448{left:323.550000px;}
.x10c_c00448{left:326.250000px;}
.xdc_c00448{left:328.200000px;}
.x93_c00448{left:329.700000px;}
.xbb_c00448{left:330.900000px;}
.x120_c00448{left:332.250000px;}
.x57_c00448{left:333.450000px;}
.xfe_c00448{left:334.800000px;}
.x26_c00448{left:336.000000px;}
.xf9_c00448{left:337.050000px;}
.x41_c00448{left:338.400000px;}
.x7_c00448{left:343.050000px;}
.x112_c00448{left:344.700000px;}
.x7c_c00448{left:348.750000px;}
.x65_c00448{left:351.150000px;}
.xe8_c00448{left:352.350000px;}
.xf5_c00448{left:354.000000px;}
.xa3_c00448{left:355.800000px;}
.x58_c00448{left:357.150000px;}
.x33_c00448{left:359.250000px;}
.x27_c00448{left:361.950000px;}
.xb9_c00448{left:364.800000px;}
.x42_c00448{left:368.250000px;}
.xac_c00448{left:369.600000px;}
.x121_c00448{left:371.400000px;}
.x8_c00448{left:372.900000px;}
.xfa_c00448{left:375.600000px;}
.x113_c00448{left:376.800000px;}
.x106_c00448{left:378.750000px;}
.x18_c00448{left:381.300000px;}
.x10d_c00448{left:382.350000px;}
.x9d_c00448{left:384.900000px;}
.xf6_c00448{left:386.100000px;}
.x66_c00448{left:387.450000px;}
.xff_c00448{left:389.100000px;}
.x7d_c00448{left:390.450000px;}
.x8a_c00448{left:393.300000px;}
.xb1_c00448{left:394.500000px;}
.x28_c00448{left:396.150000px;}
.xc3_c00448{left:398.250000px;}
.xe3_c00448{left:400.050000px;}
.x73_c00448{left:401.700000px;}
.x43_c00448{left:403.500000px;}
.xc1_c00448{left:405.150000px;}
.xf1_c00448{left:406.800000px;}
.x34_c00448{left:410.400000px;}
.x10e_c00448{left:411.900000px;}
.x59_c00448{left:414.000000px;}
.x107_c00448{left:415.500000px;}
.x29_c00448{left:418.800000px;}
.xa4_c00448{left:420.000000px;}
.x44_c00448{left:424.350000px;}
.x4e_c00448{left:426.300000px;}
.x19_c00448{left:427.800000px;}
.x35_c00448{left:430.950000px;}
.x5a_c00448{left:434.850000px;}
.x114_c00448{left:438.750000px;}
.x67_c00448{left:440.700000px;}
.x45_c00448{left:442.050000px;}
.x74_c00448{left:443.400000px;}
.x4f_c00448{left:446.850000px;}
.x2a_c00448{left:449.400000px;}
.x2_c00448{left:453.150000px;}
.x8b_c00448{left:454.800000px;}
.x1a_c00448{left:456.300000px;}
.xe9_c00448{left:461.700000px;}
.x94_c00448{left:463.200000px;}
.xd5_c00448{left:467.250000px;}
.x5b_c00448{left:468.600000px;}
.x7e_c00448{left:470.400000px;}
.x9_c00448{left:474.450000px;}
.x75_c00448{left:476.550000px;}
.xa5_c00448{left:479.700000px;}
.x36_c00448{left:481.350000px;}
.x2b_c00448{left:483.600000px;}
.x1b_c00448{left:485.850000px;}
.x46_c00448{left:487.800000px;}
.x100_c00448{left:489.150000px;}
.x68_c00448{left:491.400000px;}
.xcc_c00448{left:493.350000px;}
.xa6_c00448{left:494.400000px;}
.xc4_c00448{left:499.350000px;}
.xa_c00448{left:500.700000px;}
.x7f_c00448{left:502.050000px;}
.x37_c00448{left:503.250000px;}
.x2c_c00448{left:505.500000px;}
.x1c_c00448{left:509.250000px;}
.x76_c00448{left:510.450000px;}
.x69_c00448{left:513.750000px;}
.xb_c00448{left:516.150000px;}
.x10f_c00448{left:517.350000px;}
.xb2_c00448{left:521.550000px;}
.xe4_c00448{left:523.950000px;}
.x8c_c00448{left:525.750000px;}
.xa7_c00448{left:527.850000px;}
.xad_c00448{left:530.100000px;}
.x5c_c00448{left:531.600000px;}
.x38_c00448{left:532.800000px;}
.x50_c00448{left:538.950000px;}
.x77_c00448{left:540.000000px;}
.xea_c00448{left:541.500000px;}
.xe5_c00448{left:542.700000px;}
.xc2_c00448{left:543.750000px;}
.x2d_c00448{left:547.200000px;}
.x47_c00448{left:548.550000px;}
.xbc_c00448{left:549.750000px;}
.xb3_c00448{left:552.900000px;}
.xae_c00448{left:554.550000px;}
.x1d_c00448{left:556.050000px;}
.xa8_c00448{left:558.450000px;}
.xd6_c00448{left:560.400000px;}
.xcd_c00448{left:565.350000px;}
.xaf_c00448{left:568.950000px;}
.xeb_c00448{left:572.850000px;}
.x78_c00448{left:576.000000px;}
.xc5_c00448{left:578.850000px;}
.xb4_c00448{left:581.700000px;}
.xc_c00448{left:583.800000px;}
.x6a_c00448{left:586.500000px;}
.x8d_c00448{left:588.450000px;}
.x80_c00448{left:590.250000px;}
.x1e_c00448{left:592.350000px;}
.x2e_c00448{left:594.000000px;}
.xdd_c00448{left:596.250000px;}
.x5d_c00448{left:598.950000px;}
.xde_c00448{left:601.200000px;}
.x39_c00448{left:602.250000px;}
.xd_c00448{left:605.100000px;}
.xc6_c00448{left:607.350000px;}
.x105_c00448{left:609.450000px;}
.x95_c00448{left:611.550000px;}
.x11c_c00448{left:613.800000px;}
.x6b_c00448{left:618.150000px;}
.xce_c00448{left:619.350000px;}
.x5e_c00448{left:621.600000px;}
.x3a_c00448{left:622.800000px;}
.x9e_c00448{left:624.750000px;}
.xe6_c00448{left:628.800000px;}
.x101_c00448{left:630.150000px;}
.xec_c00448{left:634.500000px;}
.x1f_c00448{left:636.300000px;}
.x51_c00448{left:638.700000px;}
.x96_c00448{left:640.650000px;}
.x11a_c00448{left:642.450000px;}
.x6c_c00448{left:646.650000px;}
.x8e_c00448{left:648.150000px;}
.x79_c00448{left:649.500000px;}
.xfb_c00448{left:650.700000px;}
.xbd_c00448{left:652.350000px;}
.xf2_c00448{left:654.450000px;}
.xe_c00448{left:655.500000px;}
.x2f_c00448{left:658.050000px;}
.xcf_c00448{left:663.600000px;}
.x117_c00448{left:665.700000px;}
.x20_c00448{left:668.400000px;}
.x3b_c00448{left:669.600000px;}
.x81_c00448{left:672.300000px;}
.xd7_c00448{left:676.950000px;}
.x11b_c00448{left:681.000000px;}
.xd0_c00448{left:683.100000px;}
.xf_c00448{left:684.600000px;}
.x6d_c00448{left:686.550000px;}
.x82_c00448{left:691.800000px;}
.x3c_c00448{left:693.000000px;}
.x48_c00448{left:694.950000px;}
.x21_c00448{left:696.900000px;}
.xed_c00448{left:698.550000px;}
.x8f_c00448{left:699.600000px;}
.xf7_c00448{left:701.850000px;}
.x102_c00448{left:705.450000px;}
.x9f_c00448{left:707.550000px;}
.x122_c00448{left:708.600000px;}
.x6e_c00448{left:709.950000px;}
.x83_c00448{left:712.350000px;}
.xe7_c00448{left:714.150000px;}
.x97_c00448{left:716.550000px;}
.xee_c00448{left:719.100000px;}
.x108_c00448{left:720.600000px;}
.x3d_c00448{left:722.850000px;}
.xbe_c00448{left:724.350000px;}
.xc7_c00448{left:725.400000px;}
.x123_c00448{left:729.150000px;}
.x52_c00448{left:731.550000px;}
.x30_c00448{left:734.700000px;}
.xf8_c00448{left:735.750000px;}
.xa9_c00448{left:739.800000px;}
.xdf_c00448{left:743.700000px;}
.x5f_c00448{left:745.200000px;}
.x49_c00448{left:746.850000px;}
.xb5_c00448{left:748.650000px;}
.x7a_c00448{left:750.300000px;}
.xa0_c00448{left:751.500000px;}
.xbf_c00448{left:753.900000px;}
.x6f_c00448{left:755.250000px;}
.x10_c00448{left:761.250000px;}
.x60_c00448{left:764.700000px;}
.x31_c00448{left:766.050000px;}
.x90_c00448{left:767.700000px;}
.x115_c00448{left:769.950000px;}
.xef_c00448{left:772.650000px;}
.xc8_c00448{left:774.750000px;}
.x53_c00448{left:777.300000px;}
.xd8_c00448{left:778.800000px;}
.x109_c00448{left:780.300000px;}
.xe0_c00448{left:781.500000px;}
.x84_c00448{left:784.350000px;}
.xb6_c00448{left:785.700000px;}
.x11_c00448{left:786.750000px;}
.x22_c00448{left:790.500000px;}
.x3e_c00448{left:792.000000px;}
.x54_c00448{left:795.000000px;}
.xe1_c00448{left:796.200000px;}
.x98_c00448{left:799.050000px;}
.x12_c00448{left:801.150000px;}
.xd1_c00448{left:804.000000px;}
.x4a_c00448{left:809.100000px;}
.xd9_c00448{left:811.950000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws7_c00448{word-spacing:-3.735439pt;}
.ws1_c00448{word-spacing:-0.393673pt;}
.ws9_c00448{word-spacing:0.000000pt;}
.ws5_c00448{word-spacing:0.524550pt;}
.ws8_c00448{word-spacing:4.032906pt;}
.ws4_c00448{word-spacing:5.444444pt;}
.ws0_c00448{word-spacing:7.075988pt;}
.ws6_c00448{word-spacing:7.449819pt;}
.ws3_c00448{word-spacing:8.111111pt;}
.ws2_c00448{word-spacing:9.444444pt;}
._0_c00448{width:30.777778pt;}
.fs0_c00448{font-size:48.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y2c_c00448{bottom:139.466667pt;}
.y2b_c00448{bottom:162.000000pt;}
.y2a_c00448{bottom:179.600000pt;}
.y29_c00448{bottom:196.933333pt;}
.y28_c00448{bottom:214.533333pt;}
.y27_c00448{bottom:232.400000pt;}
.y26_c00448{bottom:250.000000pt;}
.y25_c00448{bottom:267.866667pt;}
.y24_c00448{bottom:285.733333pt;}
.y23_c00448{bottom:303.066667pt;}
.y22_c00448{bottom:320.933333pt;}
.y21_c00448{bottom:338.533333pt;}
.y20_c00448{bottom:356.133333pt;}
.y1f_c00448{bottom:373.733333pt;}
.y1e_c00448{bottom:391.733333pt;}
.y1d_c00448{bottom:409.333333pt;}
.y1c_c00448{bottom:426.933333pt;}
.y1b_c00448{bottom:444.533333pt;}
.y1a_c00448{bottom:462.400000pt;}
.y19_c00448{bottom:480.266667pt;}
.y18_c00448{bottom:509.200000pt;}
.y17_c00448{bottom:527.066667pt;}
.y16_c00448{bottom:544.666667pt;}
.y15_c00448{bottom:562.266667pt;}
.y14_c00448{bottom:580.133333pt;}
.y13_c00448{bottom:597.733333pt;}
.y12_c00448{bottom:616.000000pt;}
.y11_c00448{bottom:633.600000pt;}
.y10_c00448{bottom:651.466667pt;}
.yf_c00448{bottom:669.066667pt;}
.ye_c00448{bottom:686.933333pt;}
.yd_c00448{bottom:704.533333pt;}
.yc_c00448{bottom:722.133333pt;}
.yb_c00448{bottom:739.733333pt;}
.ya_c00448{bottom:757.600000pt;}
.y9_c00448{bottom:775.200000pt;}
.y8_c00448{bottom:793.066667pt;}
.y7_c00448{bottom:810.666667pt;}
.y6_c00448{bottom:828.533333pt;}
.y5_c00448{bottom:846.133333pt;}
.y4_c00448{bottom:864.000000pt;}
.y3_c00448{bottom:881.600000pt;}
.y2_c00448{bottom:899.466667pt;}
.y1_c00448{bottom:933.733333pt;}
.h2_c00448{height:48.000000pt;}
.h1_c00448{height:1036.666667pt;}
.h0_c00448{height:1036.800049pt;}
.w0_c00448{width:818.559977pt;}
.w1_c00448{width:818.666667pt;}
.x0_c00448{left:0.000000pt;}
.x3_c00448{left:136.933333pt;}
.x1_c00448{left:137.866667pt;}
.x99_c00448{left:149.866667pt;}
.x13_c00448{left:154.933333pt;}
.x23_c00448{left:156.800000pt;}
.x10a_c00448{left:158.533333pt;}
.x91_c00448{left:159.866667pt;}
.xda_c00448{left:163.066667pt;}
.x4_c00448{left:164.800000pt;}
.xd2_c00448{left:166.266667pt;}
.x85_c00448{left:168.533333pt;}
.x3f_c00448{left:170.266667pt;}
.x61_c00448{left:171.600000pt;}
.xb7_c00448{left:173.200000pt;}
.xc9_c00448{left:176.666667pt;}
.xaa_c00448{left:177.866667pt;}
.x70_c00448{left:181.466667pt;}
.x118_c00448{left:182.666667pt;}
.x55_c00448{left:184.133333pt;}
.xd3_c00448{left:185.466667pt;}
.x110_c00448{left:187.066667pt;}
.xb0_c00448{left:188.000000pt;}
.x14_c00448{left:189.200000pt;}
.x24_c00448{left:191.733333pt;}
.x11f_c00448{left:195.200000pt;}
.x9a_c00448{left:196.533333pt;}
.xf3_c00448{left:197.600000pt;}
.xb8_c00448{left:198.533333pt;}
.x103_c00448{left:201.200000pt;}
.x5_c00448{left:204.800000pt;}
.x4b_c00448{left:205.866667pt;}
.xf0_c00448{left:206.933333pt;}
.x86_c00448{left:208.800000pt;}
.x71_c00448{left:212.133333pt;}
.xe2_c00448{left:213.333333pt;}
.x4c_c00448{left:215.466667pt;}
.xfc_c00448{left:218.533333pt;}
.x62_c00448{left:220.533333pt;}
.xd4_c00448{left:222.000000pt;}
.xba_c00448{left:223.733333pt;}
.x15_c00448{left:226.266667pt;}
.xca_c00448{left:227.600000pt;}
.x87_c00448{left:229.333333pt;}
.x92_c00448{left:231.333333pt;}
.x11d_c00448{left:238.000000pt;}
.x63_c00448{left:240.400000pt;}
.x9b_c00448{left:242.000000pt;}
.x25_c00448{left:245.200000pt;}
.xfd_c00448{left:246.400000pt;}
.xdb_c00448{left:248.533333pt;}
.x32_c00448{left:249.866667pt;}
.x104_c00448{left:251.200000pt;}
.xa1_c00448{left:252.933333pt;}
.x56_c00448{left:254.533333pt;}
.x116_c00448{left:255.600000pt;}
.x88_c00448{left:256.800000pt;}
.x16_c00448{left:258.000000pt;}
.x111_c00448{left:259.733333pt;}
.x10b_c00448{left:260.666667pt;}
.x119_c00448{left:262.000000pt;}
.x40_c00448{left:263.066667pt;}
.x64_c00448{left:265.733333pt;}
.x72_c00448{left:267.466667pt;}
.xf4_c00448{left:268.933333pt;}
.x4d_c00448{left:271.466667pt;}
.x6_c00448{left:274.533333pt;}
.xab_c00448{left:275.733333pt;}
.xa2_c00448{left:277.200000pt;}
.x17_c00448{left:278.133333pt;}
.x11e_c00448{left:281.200000pt;}
.x9c_c00448{left:282.266667pt;}
.x89_c00448{left:283.733333pt;}
.xc0_c00448{left:285.200000pt;}
.xcb_c00448{left:286.266667pt;}
.x7b_c00448{left:287.600000pt;}
.x10c_c00448{left:290.000000pt;}
.xdc_c00448{left:291.733333pt;}
.x93_c00448{left:293.066667pt;}
.xbb_c00448{left:294.133333pt;}
.x120_c00448{left:295.333333pt;}
.x57_c00448{left:296.400000pt;}
.xfe_c00448{left:297.600000pt;}
.x26_c00448{left:298.666667pt;}
.xf9_c00448{left:299.600000pt;}
.x41_c00448{left:300.800000pt;}
.x7_c00448{left:304.933333pt;}
.x112_c00448{left:306.400000pt;}
.x7c_c00448{left:310.000000pt;}
.x65_c00448{left:312.133333pt;}
.xe8_c00448{left:313.200000pt;}
.xf5_c00448{left:314.666667pt;}
.xa3_c00448{left:316.266667pt;}
.x58_c00448{left:317.466667pt;}
.x33_c00448{left:319.333333pt;}
.x27_c00448{left:321.733333pt;}
.xb9_c00448{left:324.266667pt;}
.x42_c00448{left:327.333333pt;}
.xac_c00448{left:328.533333pt;}
.x121_c00448{left:330.133333pt;}
.x8_c00448{left:331.466667pt;}
.xfa_c00448{left:333.866667pt;}
.x113_c00448{left:334.933333pt;}
.x106_c00448{left:336.666667pt;}
.x18_c00448{left:338.933333pt;}
.x10d_c00448{left:339.866667pt;}
.x9d_c00448{left:342.133333pt;}
.xf6_c00448{left:343.200000pt;}
.x66_c00448{left:344.400000pt;}
.xff_c00448{left:345.866667pt;}
.x7d_c00448{left:347.066667pt;}
.x8a_c00448{left:349.600000pt;}
.xb1_c00448{left:350.666667pt;}
.x28_c00448{left:352.133333pt;}
.xc3_c00448{left:354.000000pt;}
.xe3_c00448{left:355.600000pt;}
.x73_c00448{left:357.066667pt;}
.x43_c00448{left:358.666667pt;}
.xc1_c00448{left:360.133333pt;}
.xf1_c00448{left:361.600000pt;}
.x34_c00448{left:364.800000pt;}
.x10e_c00448{left:366.133333pt;}
.x59_c00448{left:368.000000pt;}
.x107_c00448{left:369.333333pt;}
.x29_c00448{left:372.266667pt;}
.xa4_c00448{left:373.333333pt;}
.x44_c00448{left:377.200000pt;}
.x4e_c00448{left:378.933333pt;}
.x19_c00448{left:380.266667pt;}
.x35_c00448{left:383.066667pt;}
.x5a_c00448{left:386.533333pt;}
.x114_c00448{left:390.000000pt;}
.x67_c00448{left:391.733333pt;}
.x45_c00448{left:392.933333pt;}
.x74_c00448{left:394.133333pt;}
.x4f_c00448{left:397.200000pt;}
.x2a_c00448{left:399.466667pt;}
.x2_c00448{left:402.800000pt;}
.x8b_c00448{left:404.266667pt;}
.x1a_c00448{left:405.600000pt;}
.xe9_c00448{left:410.400000pt;}
.x94_c00448{left:411.733333pt;}
.xd5_c00448{left:415.333333pt;}
.x5b_c00448{left:416.533333pt;}
.x7e_c00448{left:418.133333pt;}
.x9_c00448{left:421.733333pt;}
.x75_c00448{left:423.600000pt;}
.xa5_c00448{left:426.400000pt;}
.x36_c00448{left:427.866667pt;}
.x2b_c00448{left:429.866667pt;}
.x1b_c00448{left:431.866667pt;}
.x46_c00448{left:433.600000pt;}
.x100_c00448{left:434.800000pt;}
.x68_c00448{left:436.800000pt;}
.xcc_c00448{left:438.533333pt;}
.xa6_c00448{left:439.466667pt;}
.xc4_c00448{left:443.866667pt;}
.xa_c00448{left:445.066667pt;}
.x7f_c00448{left:446.266667pt;}
.x37_c00448{left:447.333333pt;}
.x2c_c00448{left:449.333333pt;}
.x1c_c00448{left:452.666667pt;}
.x76_c00448{left:453.733333pt;}
.x69_c00448{left:456.666667pt;}
.xb_c00448{left:458.800000pt;}
.x10f_c00448{left:459.866667pt;}
.xb2_c00448{left:463.600000pt;}
.xe4_c00448{left:465.733333pt;}
.x8c_c00448{left:467.333333pt;}
.xa7_c00448{left:469.200000pt;}
.xad_c00448{left:471.200000pt;}
.x5c_c00448{left:472.533333pt;}
.x38_c00448{left:473.600000pt;}
.x50_c00448{left:479.066667pt;}
.x77_c00448{left:480.000000pt;}
.xea_c00448{left:481.333333pt;}
.xe5_c00448{left:482.400000pt;}
.xc2_c00448{left:483.333333pt;}
.x2d_c00448{left:486.400000pt;}
.x47_c00448{left:487.600000pt;}
.xbc_c00448{left:488.666667pt;}
.xb3_c00448{left:491.466667pt;}
.xae_c00448{left:492.933333pt;}
.x1d_c00448{left:494.266667pt;}
.xa8_c00448{left:496.400000pt;}
.xd6_c00448{left:498.133333pt;}
.xcd_c00448{left:502.533333pt;}
.xaf_c00448{left:505.733333pt;}
.xeb_c00448{left:509.200000pt;}
.x78_c00448{left:512.000000pt;}
.xc5_c00448{left:514.533333pt;}
.xb4_c00448{left:517.066667pt;}
.xc_c00448{left:518.933333pt;}
.x6a_c00448{left:521.333333pt;}
.x8d_c00448{left:523.066667pt;}
.x80_c00448{left:524.666667pt;}
.x1e_c00448{left:526.533333pt;}
.x2e_c00448{left:528.000000pt;}
.xdd_c00448{left:530.000000pt;}
.x5d_c00448{left:532.400000pt;}
.xde_c00448{left:534.400000pt;}
.x39_c00448{left:535.333333pt;}
.xd_c00448{left:537.866667pt;}
.xc6_c00448{left:539.866667pt;}
.x105_c00448{left:541.733333pt;}
.x95_c00448{left:543.600000pt;}
.x11c_c00448{left:545.600000pt;}
.x6b_c00448{left:549.466667pt;}
.xce_c00448{left:550.533333pt;}
.x5e_c00448{left:552.533333pt;}
.x3a_c00448{left:553.600000pt;}
.x9e_c00448{left:555.333333pt;}
.xe6_c00448{left:558.933333pt;}
.x101_c00448{left:560.133333pt;}
.xec_c00448{left:564.000000pt;}
.x1f_c00448{left:565.600000pt;}
.x51_c00448{left:567.733333pt;}
.x96_c00448{left:569.466667pt;}
.x11a_c00448{left:571.066667pt;}
.x6c_c00448{left:574.800000pt;}
.x8e_c00448{left:576.133333pt;}
.x79_c00448{left:577.333333pt;}
.xfb_c00448{left:578.400000pt;}
.xbd_c00448{left:579.866667pt;}
.xf2_c00448{left:581.733333pt;}
.xe_c00448{left:582.666667pt;}
.x2f_c00448{left:584.933333pt;}
.xcf_c00448{left:589.866667pt;}
.x117_c00448{left:591.733333pt;}
.x20_c00448{left:594.133333pt;}
.x3b_c00448{left:595.200000pt;}
.x81_c00448{left:597.600000pt;}
.xd7_c00448{left:601.733333pt;}
.x11b_c00448{left:605.333333pt;}
.xd0_c00448{left:607.200000pt;}
.xf_c00448{left:608.533333pt;}
.x6d_c00448{left:610.266667pt;}
.x82_c00448{left:614.933333pt;}
.x3c_c00448{left:616.000000pt;}
.x48_c00448{left:617.733333pt;}
.x21_c00448{left:619.466667pt;}
.xed_c00448{left:620.933333pt;}
.x8f_c00448{left:621.866667pt;}
.xf7_c00448{left:623.866667pt;}
.x102_c00448{left:627.066667pt;}
.x9f_c00448{left:628.933333pt;}
.x122_c00448{left:629.866667pt;}
.x6e_c00448{left:631.066667pt;}
.x83_c00448{left:633.200000pt;}
.xe7_c00448{left:634.800000pt;}
.x97_c00448{left:636.933333pt;}
.xee_c00448{left:639.200000pt;}
.x108_c00448{left:640.533333pt;}
.x3d_c00448{left:642.533333pt;}
.xbe_c00448{left:643.866667pt;}
.xc7_c00448{left:644.800000pt;}
.x123_c00448{left:648.133333pt;}
.x52_c00448{left:650.266667pt;}
.x30_c00448{left:653.066667pt;}
.xf8_c00448{left:654.000000pt;}
.xa9_c00448{left:657.600000pt;}
.xdf_c00448{left:661.066667pt;}
.x5f_c00448{left:662.400000pt;}
.x49_c00448{left:663.866667pt;}
.xb5_c00448{left:665.466667pt;}
.x7a_c00448{left:666.933333pt;}
.xa0_c00448{left:668.000000pt;}
.xbf_c00448{left:670.133333pt;}
.x6f_c00448{left:671.333333pt;}
.x10_c00448{left:676.666667pt;}
.x60_c00448{left:679.733333pt;}
.x31_c00448{left:680.933333pt;}
.x90_c00448{left:682.400000pt;}
.x115_c00448{left:684.400000pt;}
.xef_c00448{left:686.800000pt;}
.xc8_c00448{left:688.666667pt;}
.x53_c00448{left:690.933333pt;}
.xd8_c00448{left:692.266667pt;}
.x109_c00448{left:693.600000pt;}
.xe0_c00448{left:694.666667pt;}
.x84_c00448{left:697.200000pt;}
.xb6_c00448{left:698.400000pt;}
.x11_c00448{left:699.333333pt;}
.x22_c00448{left:702.666667pt;}
.x3e_c00448{left:704.000000pt;}
.x54_c00448{left:706.666667pt;}
.xe1_c00448{left:707.733333pt;}
.x98_c00448{left:710.266667pt;}
.x12_c00448{left:712.133333pt;}
.xd1_c00448{left:714.666667pt;}
.x4a_c00448{left:719.200000pt;}
.xd9_c00448{left:721.733333pt;}
}





/* 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_c00449 {
    display:none;
  }
  .loading-indicator_c00449.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00449 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_c00449 { 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_c00449" -> "#page-container .classname_c00449")
 */
.pf_c00449 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00449 { /* 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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00449 { /* 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_c00449 { /* 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_c00449 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00449 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00449 {overflow:visible;}
  }
}
.c_c00449 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00449 { /* 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_c00449:after { /* webkit #35443 */
  content: '';
}
.t_c00449:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00449 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 */
}
.__c00449 { /* 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_c00449 { /* info for Javascript */
  display:none;
}
.l_c00449 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00449 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00449 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00449: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_c00449 {
    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_c00449.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00449.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_c00449 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00449{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00449;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.000000;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;}
.ma3_c00449{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00449{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m93_c00449{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00449{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00449{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m69_c00449{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00449{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00449{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m60_c00449{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m88_c00449{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00449{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m95_c00449{transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166250,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m48_c00449{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00449{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00449{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m66_c00449{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00449{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00449{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00449{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m72_c00449{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m83_c00449{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m99_c00449{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00449{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m94_c00449{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m75_c00449{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00449{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m84_c00449{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00449{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m70_c00449{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m13_c00449{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00449{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m77_c00449{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m82_c00449{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m54_c00449{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00449{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m31_c00449{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m81_c00449{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00449{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m67_c00449{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00449{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00449{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m63_c00449{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m47_c00449{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m74_c00449{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m57_c00449{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00449{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00449{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00449{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00449{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00449{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00449{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00449{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00449{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m87_c00449{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00449{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00449{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m50_c00449{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00449{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00449{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00449{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m56_c00449{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00449{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m49_c00449{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m34_c00449{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m73_c00449{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c00449{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m89_c00449{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m9_c00449{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00449{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00449{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00449{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m80_c00449{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m65_c00449{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00449{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00449{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m62_c00449{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m16_c00449{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m97_c00449{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m18_c00449{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00449{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00449{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m58_c00449{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00449{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m64_c00449{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m91_c00449{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m40_c00449{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00449{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m76_c00449{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00449{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m52_c00449{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m59_c00449{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m78_c00449{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m55_c00449{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m68_c00449{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00449{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m86_c00449{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00449{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m51_c00449{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.me_c00449{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.maa_c00449{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);}
.ma1_c00449{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m90_c00449{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00449{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m96_c00449{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00449{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m98_c00449{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00449{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m0_c00449{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m85_c00449{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00449{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m92_c00449{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00449{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m71_c00449{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3_c00449{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00449{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m61_c00449{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00449{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m79_c00449{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.v0_c00449{vertical-align:0.000000px;}
.ls0_c00449{letter-spacing:0.000000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{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__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8_c00449{word-spacing:-5.384615px;}
.ws6_c00449{word-spacing:-3.194444px;}
.wsa_c00449{word-spacing:0.000000px;}
.ws3_c00449{word-spacing:0.277778px;}
.ws5_c00449{word-spacing:1.666667px;}
.ws2_c00449{word-spacing:1.842105px;}
.ws1_c00449{word-spacing:2.738095px;}
.ws4_c00449{word-spacing:4.909671px;}
.ws7_c00449{word-spacing:8.611111px;}
.ws9_c00449{word-spacing:14.411765px;}
.ws0_c00449{word-spacing:17.946429px;}
.fc0_c00449{color:transparent;}
.fs0_c00449{font-size:60.000000px;}
.y0_c00449{bottom:0.000000px;}
.y2d_c00449{bottom:145.500000px;}
.y2c_c00449{bottom:165.300000px;}
.y2b_c00449{bottom:185.400000px;}
.y2a_c00449{bottom:205.500000px;}
.y29_c00449{bottom:225.300000px;}
.y28_c00449{bottom:245.100000px;}
.y27_c00449{bottom:265.200000px;}
.y26_c00449{bottom:285.300000px;}
.y25_c00449{bottom:305.100000px;}
.y24_c00449{bottom:324.900000px;}
.y23_c00449{bottom:345.000000px;}
.y22_c00449{bottom:365.100000px;}
.y21_c00449{bottom:384.900000px;}
.y20_c00449{bottom:404.700000px;}
.y1f_c00449{bottom:424.800000px;}
.y1e_c00449{bottom:444.600000px;}
.y1d_c00449{bottom:464.700000px;}
.y1c_c00449{bottom:484.500000px;}
.y1b_c00449{bottom:505.200000px;}
.y1a_c00449{bottom:525.300000px;}
.y19_c00449{bottom:545.100000px;}
.y18_c00449{bottom:564.900000px;}
.y17_c00449{bottom:584.700000px;}
.y16_c00449{bottom:604.800000px;}
.y15_c00449{bottom:624.900000px;}
.y14_c00449{bottom:644.700000px;}
.y13_c00449{bottom:664.500000px;}
.y12_c00449{bottom:684.600000px;}
.y11_c00449{bottom:704.700000px;}
.y10_c00449{bottom:724.500000px;}
.yf_c00449{bottom:744.300000px;}
.ye_c00449{bottom:764.400000px;}
.yd_c00449{bottom:784.500000px;}
.yc_c00449{bottom:804.300000px;}
.yb_c00449{bottom:824.400000px;}
.ya_c00449{bottom:844.050000px;}
.y9_c00449{bottom:864.150000px;}
.y8_c00449{bottom:883.950000px;}
.y7_c00449{bottom:904.050000px;}
.y6_c00449{bottom:923.850000px;}
.y5_c00449{bottom:943.650000px;}
.y4_c00449{bottom:963.750000px;}
.y3_c00449{bottom:983.550000px;}
.y2_c00449{bottom:1003.350000px;}
.y1_c00449{bottom:1041.900000px;}
.h2_c00449{height:60.000000px;}
.h1_c00449{height:1166.250000px;}
.h0_c00449{height:1166.400056px;}
.w0_c00449{width:920.879975px;}
.w1_c00449{width:921.000000px;}
.x0_c00449{left:0.000000px;}
.xb3_c00449{left:100.500000px;}
.x59_c00449{left:101.550000px;}
.x13_c00449{left:102.750000px;}
.xff_c00449{left:118.800000px;}
.x30_c00449{left:122.400000px;}
.xaa_c00449{left:123.450000px;}
.x134_c00449{left:124.800000px;}
.xce_c00449{left:129.300000px;}
.xe7_c00449{left:131.700000px;}
.x71_c00449{left:133.200000px;}
.x3_c00449{left:134.250000px;}
.x98_c00449{left:135.450000px;}
.xd4_c00449{left:137.550000px;}
.x8e_c00449{left:140.100000px;}
.x81_c00449{left:141.750000px;}
.x22_c00449{left:143.100000px;}
.xbc_c00449{left:145.800000px;}
.x6f_c00449{left:147.450000px;}
.x105_c00449{left:150.750000px;}
.x4a_c00449{left:152.550000px;}
.x4_c00449{left:153.750000px;}
.x14_c00449{left:156.750000px;}
.x23_c00449{left:159.000000px;}
.x3c_c00449{left:162.150000px;}
.x111_c00449{left:163.200000px;}
.xdc_c00449{left:165.750000px;}
.xbd_c00449{left:167.100000px;}
.xf1_c00449{left:168.750000px;}
.xc4_c00449{left:171.450000px;}
.x10d_c00449{left:173.100000px;}
.xb4_c00449{left:175.350000px;}
.x8f_c00449{left:177.150000px;}
.x5_c00449{left:178.950000px;}
.xe2_c00449{left:180.000000px;}
.x15_c00449{left:181.650000px;}
.xcf_c00449{left:184.350000px;}
.x99_c00449{left:185.850000px;}
.xbe_c00449{left:190.800000px;}
.xa0_c00449{left:193.050000px;}
.x4b_c00449{left:194.250000px;}
.x70_c00449{left:196.800000px;}
.xd5_c00449{left:199.800000px;}
.x64_c00449{left:201.750000px;}
.x106_c00449{left:203.250000px;}
.x12c_c00449{left:204.600000px;}
.x82_c00449{left:206.550000px;}
.xab_c00449{left:208.500000px;}
.xc5_c00449{left:210.000000px;}
.x4c_c00449{left:213.750000px;}
.xf2_c00449{left:215.550000px;}
.x31_c00449{left:217.500000px;}
.x16_c00449{left:219.750000px;}
.xa1_c00449{left:220.800000px;}
.x3d_c00449{left:227.250000px;}
.x135_c00449{left:229.500000px;}
.x100_c00449{left:230.850000px;}
.xc6_c00449{left:232.650000px;}
.x24_c00449{left:235.350000px;}
.x11f_c00449{left:236.550000px;}
.x65_c00449{left:237.750000px;}
.x125_c00449{left:238.800000px;}
.xa2_c00449{left:240.600000px;}
.x9a_c00449{left:241.650000px;}
.xee_c00449{left:243.900000px;}
.x3e_c00449{left:245.550000px;}
.xf8_c00449{left:247.350000px;}
.x116_c00449{left:249.450000px;}
.x17_c00449{left:252.150000px;}
.x72_c00449{left:253.200000px;}
.x6_c00449{left:255.300000px;}
.x4d_c00449{left:258.450000px;}
.x5a_c00449{left:260.550000px;}
.xf3_c00449{left:263.400000px;}
.xb5_c00449{left:266.100000px;}
.xc7_c00449{left:267.150000px;}
.x66_c00449{left:268.650000px;}
.xe8_c00449{left:269.700000px;}
.xd0_c00449{left:271.050000px;}
.xef_c00449{left:272.400000px;}
.x12d_c00449{left:273.450000px;}
.x101_c00449{left:276.600000px;}
.x4e_c00449{left:277.950000px;}
.x83_c00449{left:280.050000px;}
.xd6_c00449{left:281.100000px;}
.x7_c00449{left:283.800000px;}
.x18_c00449{left:286.050000px;}
.xac_c00449{left:288.300000px;}
.x9b_c00449{left:289.650000px;}
.x25_c00449{left:293.250000px;}
.x3f_c00449{left:297.450000px;}
.x90_c00449{left:299.250000px;}
.xe9_c00449{left:300.600000px;}
.xf9_c00449{left:302.400000px;}
.x117_c00449{left:304.800000px;}
.x4f_c00449{left:306.750000px;}
.x136_c00449{left:308.250000px;}
.xe3_c00449{left:309.300000px;}
.xf4_c00449{left:310.500000px;}
.x5b_c00449{left:313.800000px;}
.xd1_c00449{left:315.750000px;}
.xad_c00449{left:318.900000px;}
.xa3_c00449{left:320.850000px;}
.x8_c00449{left:321.900000px;}
.x84_c00449{left:322.950000px;}
.x118_c00449{left:325.350000px;}
.x73_c00449{left:327.300000px;}
.x109_c00449{left:328.350000px;}
.x32_c00449{left:330.600000px;}
.x120_c00449{left:331.650000px;}
.xb6_c00449{left:332.700000px;}
.xf0_c00449{left:333.900000px;}
.x102_c00449{left:341.700000px;}
.x11b_c00449{left:343.050000px;}
.x130_c00449{left:344.100000px;}
.x67_c00449{left:346.800000px;}
.x91_c00449{left:349.950000px;}
.xd7_c00449{left:351.300000px;}
.xb7_c00449{left:352.800000px;}
.x50_c00449{left:356.400000px;}
.xa4_c00449{left:358.950000px;}
.x7a_c00449{left:360.000000px;}
.xae_c00449{left:361.800000px;}
.xbf_c00449{left:363.900000px;}
.x33_c00449{left:366.900000px;}
.x51_c00449{left:369.300000px;}
.x126_c00449{left:370.500000px;}
.x10e_c00449{left:373.350000px;}
.x26_c00449{left:375.000000px;}
.x9_c00449{left:380.550000px;}
.x40_c00449{left:382.350000px;}
.x85_c00449{left:383.400000px;}
.x19_c00449{left:385.050000px;}
.xe4_c00449{left:388.500000px;}
.x1_c00449{left:392.100000px;}
.x132_c00449{left:394.650000px;}
.x12e_c00449{left:395.850000px;}
.xa_c00449{left:400.350000px;}
.xb8_c00449{left:401.400000px;}
.x11c_c00449{left:402.450000px;}
.x68_c00449{left:403.650000px;}
.x34_c00449{left:405.450000px;}
.x41_c00449{left:407.250000px;}
.x27_c00449{left:410.250000px;}
.x127_c00449{left:411.600000px;}
.x103_c00449{left:413.700000px;}
.xe5_c00449{left:415.800000px;}
.x5c_c00449{left:418.500000px;}
.xa5_c00449{left:423.750000px;}
.xd8_c00449{left:425.100000px;}
.xb_c00449{left:428.850000px;}
.x74_c00449{left:431.700000px;}
.x86_c00449{left:434.100000px;}
.x28_c00449{left:435.750000px;}
.x52_c00449{left:438.000000px;}
.xb9_c00449{left:439.200000px;}
.xc9_c00449{left:441.600000px;}
.xfb_c00449{left:444.000000px;}
.x121_c00449{left:445.050000px;}
.x7b_c00449{left:447.150000px;}
.xd2_c00449{left:449.250000px;}
.x112_c00449{left:451.500000px;}
.xdd_c00449{left:454.200000px;}
.x53_c00449{left:457.500000px;}
.x10a_c00449{left:458.700000px;}
.x1a_c00449{left:459.900000px;}
.x9c_c00449{left:461.400000px;}
.x35_c00449{left:462.750000px;}
.x29_c00449{left:464.550000px;}
.x122_c00449{left:468.150000px;}
.x128_c00449{left:469.200000px;}
.x87_c00449{left:471.150000px;}
.xd9_c00449{left:472.200000px;}
.x133_c00449{left:473.550000px;}
.x42_c00449{left:474.600000px;}
.x5d_c00449{left:478.950000px;}
.x2a_c00449{left:482.550000px;}
.x75_c00449{left:484.200000px;}
.x12f_c00449{left:486.600000px;}
.x69_c00449{left:487.950000px;}
.x10b_c00449{left:489.000000px;}
.x54_c00449{left:492.000000px;}
.xe6_c00449{left:493.200000px;}
.x7c_c00449{left:494.250000px;}
.xca_c00449{left:496.350000px;}
.x1b_c00449{left:497.700000px;}
.x88_c00449{left:499.200000px;}
.xc0_c00449{left:500.400000px;}
.xfc_c00449{left:503.850000px;}
.x36_c00449{left:506.250000px;}
.x2b_c00449{left:508.050000px;}
.x137_c00449{left:509.100000px;}
.xc_c00449{left:512.400000px;}
.x43_c00449{left:514.500000px;}
.x11d_c00449{left:517.650000px;}
.x76_c00449{left:519.150000px;}
.xa6_c00449{left:521.250000px;}
.x1c_c00449{left:522.600000px;}
.x5e_c00449{left:523.950000px;}
.x7d_c00449{left:525.600000px;}
.x10f_c00449{left:526.650000px;}
.xf5_c00449{left:527.850000px;}
.x92_c00449{left:531.000000px;}
.xd_c00449{left:532.200000px;}
.x129_c00449{left:536.550000px;}
.xc1_c00449{left:540.000000px;}
.x55_c00449{left:543.150000px;}
.x89_c00449{left:546.300000px;}
.xcb_c00449{left:547.500000px;}
.x10c_c00449{left:550.500000px;}
.x77_c00449{left:553.050000px;}
.x113_c00449{left:554.100000px;}
.x9d_c00449{left:555.600000px;}
.xda_c00449{left:557.400000px;}
.x123_c00449{left:559.200000px;}
.xde_c00449{left:560.250000px;}
.x56_c00449{left:562.950000px;}
.x44_c00449{left:564.150000px;}
.x37_c00449{left:567.450000px;}
.xaf_c00449{left:569.550000px;}
.x7e_c00449{left:570.900000px;}
.x1d_c00449{left:573.300000px;}
.x8a_c00449{left:575.100000px;}
.x6a_c00449{left:576.450000px;}
.x5f_c00449{left:579.450000px;}
.xa7_c00449{left:580.650000px;}
.xcc_c00449{left:583.500000px;}
.x2c_c00449{left:588.000000px;}
.x93_c00449{left:589.350000px;}
.xc2_c00449{left:590.400000px;}
.x45_c00449{left:591.900000px;}
.xfd_c00449{left:596.700000px;}
.xdf_c00449{left:597.750000px;}
.x60_c00449{left:600.000000px;}
.x131_c00449{left:602.400000px;}
.xea_c00449{left:603.450000px;}
.x78_c00449{left:607.800000px;}
.xe_c00449{left:609.900000px;}
.x9e_c00449{left:611.700000px;}
.x1e_c00449{left:613.950000px;}
.x8b_c00449{left:615.000000px;}
.x114_c00449{left:616.800000px;}
.x94_c00449{left:618.150000px;}
.x61_c00449{left:620.100000px;}
.x12a_c00449{left:623.700000px;}
.xe0_c00449{left:626.250000px;}
.xba_c00449{left:627.450000px;}
.x2d_c00449{left:628.650000px;}
.xb0_c00449{left:630.000000px;}
.x8c_c00449{left:634.800000px;}
.x79_c00449{left:635.850000px;}
.x7f_c00449{left:639.900000px;}
.x38_c00449{left:641.550000px;}
.x95_c00449{left:646.200000px;}
.xc8_c00449{left:648.150000px;}
.xeb_c00449{left:650.250000px;}
.xa8_c00449{left:651.600000px;}
.x2e_c00449{left:654.150000px;}
.x6b_c00449{left:655.350000px;}
.xf_c00449{left:656.400000px;}
.x80_c00449{left:657.600000px;}
.xbb_c00449{left:659.100000px;}
.x9f_c00449{left:660.600000px;}
.x115_c00449{left:661.800000px;}
.xdb_c00449{left:663.600000px;}
.x107_c00449{left:664.800000px;}
.x1f_c00449{left:666.450000px;}
.x39_c00449{left:669.300000px;}
.xd3_c00449{left:672.900000px;}
.x46_c00449{left:675.000000px;}
.xec_c00449{left:676.200000px;}
.xf6_c00449{left:677.550000px;}
.x62_c00449{left:678.750000px;}
.x10_c00449{left:680.550000px;}
.x3a_c00449{left:682.650000px;}
.x8d_c00449{left:685.200000px;}
.x110_c00449{left:687.150000px;}
.x124_c00449{left:688.800000px;}
.x6c_c00449{left:690.600000px;}
.x47_c00449{left:692.700000px;}
.x104_c00449{left:693.900000px;}
.x12b_c00449{left:695.700000px;}
.xc3_c00449{left:697.050000px;}
.x11e_c00449{left:700.200000px;}
.x57_c00449{left:704.100000px;}
.x119_c00449{left:706.650000px;}
.xb1_c00449{left:707.850000px;}
.x2f_c00449{left:709.200000px;}
.x6d_c00449{left:711.450000px;}
.x20_c00449{left:713.250000px;}
.xfe_c00449{left:714.300000px;}
.xa9_c00449{left:715.650000px;}
.x11_c00449{left:718.650000px;}
.xf7_c00449{left:719.700000px;}
.x48_c00449{left:721.800000px;}
.x96_c00449{left:724.800000px;}
.x3b_c00449{left:727.350000px;}
.x63_c00449{left:729.150000px;}
.xb2_c00449{left:732.000000px;}
.x11a_c00449{left:734.700000px;}
.xed_c00449{left:735.900000px;}
.x6e_c00449{left:739.950000px;}
.xfa_c00449{left:741.150000px;}
.x2_c00449{left:743.400000px;}
.x97_c00449{left:745.650000px;}
.x49_c00449{left:747.750000px;}
.x21_c00449{left:750.000000px;}
.x12_c00449{left:751.800000px;}
.x108_c00449{left:754.200000px;}
.xcd_c00449{left:755.700000px;}
.x58_c00449{left:757.050000px;}
.xe1_c00449{left:765.300000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws8_c00449{word-spacing:-4.786325pt;}
.ws6_c00449{word-spacing:-2.839506pt;}
.wsa_c00449{word-spacing:0.000000pt;}
.ws3_c00449{word-spacing:0.246914pt;}
.ws5_c00449{word-spacing:1.481481pt;}
.ws2_c00449{word-spacing:1.637427pt;}
.ws1_c00449{word-spacing:2.433862pt;}
.ws4_c00449{word-spacing:4.364152pt;}
.ws7_c00449{word-spacing:7.654321pt;}
.ws9_c00449{word-spacing:12.810458pt;}
.ws0_c00449{word-spacing:15.952381pt;}
.fs0_c00449{font-size:53.333333pt;}
.y0_c00449{bottom:0.000000pt;}
.y2d_c00449{bottom:129.333333pt;}
.y2c_c00449{bottom:146.933333pt;}
.y2b_c00449{bottom:164.800000pt;}
.y2a_c00449{bottom:182.666667pt;}
.y29_c00449{bottom:200.266667pt;}
.y28_c00449{bottom:217.866667pt;}
.y27_c00449{bottom:235.733333pt;}
.y26_c00449{bottom:253.600000pt;}
.y25_c00449{bottom:271.200000pt;}
.y24_c00449{bottom:288.800000pt;}
.y23_c00449{bottom:306.666667pt;}
.y22_c00449{bottom:324.533333pt;}
.y21_c00449{bottom:342.133333pt;}
.y20_c00449{bottom:359.733333pt;}
.y1f_c00449{bottom:377.600000pt;}
.y1e_c00449{bottom:395.200000pt;}
.y1d_c00449{bottom:413.066667pt;}
.y1c_c00449{bottom:430.666667pt;}
.y1b_c00449{bottom:449.066667pt;}
.y1a_c00449{bottom:466.933333pt;}
.y19_c00449{bottom:484.533333pt;}
.y18_c00449{bottom:502.133333pt;}
.y17_c00449{bottom:519.733333pt;}
.y16_c00449{bottom:537.600000pt;}
.y15_c00449{bottom:555.466667pt;}
.y14_c00449{bottom:573.066667pt;}
.y13_c00449{bottom:590.666667pt;}
.y12_c00449{bottom:608.533333pt;}
.y11_c00449{bottom:626.400000pt;}
.y10_c00449{bottom:644.000000pt;}
.yf_c00449{bottom:661.600000pt;}
.ye_c00449{bottom:679.466667pt;}
.yd_c00449{bottom:697.333333pt;}
.yc_c00449{bottom:714.933333pt;}
.yb_c00449{bottom:732.800000pt;}
.ya_c00449{bottom:750.266667pt;}
.y9_c00449{bottom:768.133333pt;}
.y8_c00449{bottom:785.733333pt;}
.y7_c00449{bottom:803.600000pt;}
.y6_c00449{bottom:821.200000pt;}
.y5_c00449{bottom:838.800000pt;}
.y4_c00449{bottom:856.666667pt;}
.y3_c00449{bottom:874.266667pt;}
.y2_c00449{bottom:891.866667pt;}
.y1_c00449{bottom:926.133333pt;}
.h2_c00449{height:53.333333pt;}
.h1_c00449{height:1036.666667pt;}
.h0_c00449{height:1036.800049pt;}
.w0_c00449{width:818.559977pt;}
.w1_c00449{width:818.666667pt;}
.x0_c00449{left:0.000000pt;}
.xb3_c00449{left:89.333333pt;}
.x59_c00449{left:90.266667pt;}
.x13_c00449{left:91.333333pt;}
.xff_c00449{left:105.600000pt;}
.x30_c00449{left:108.800000pt;}
.xaa_c00449{left:109.733333pt;}
.x134_c00449{left:110.933333pt;}
.xce_c00449{left:114.933333pt;}
.xe7_c00449{left:117.066667pt;}
.x71_c00449{left:118.400000pt;}
.x3_c00449{left:119.333333pt;}
.x98_c00449{left:120.400000pt;}
.xd4_c00449{left:122.266667pt;}
.x8e_c00449{left:124.533333pt;}
.x81_c00449{left:126.000000pt;}
.x22_c00449{left:127.200000pt;}
.xbc_c00449{left:129.600000pt;}
.x6f_c00449{left:131.066667pt;}
.x105_c00449{left:134.000000pt;}
.x4a_c00449{left:135.600000pt;}
.x4_c00449{left:136.666667pt;}
.x14_c00449{left:139.333333pt;}
.x23_c00449{left:141.333333pt;}
.x3c_c00449{left:144.133333pt;}
.x111_c00449{left:145.066667pt;}
.xdc_c00449{left:147.333333pt;}
.xbd_c00449{left:148.533333pt;}
.xf1_c00449{left:150.000000pt;}
.xc4_c00449{left:152.400000pt;}
.x10d_c00449{left:153.866667pt;}
.xb4_c00449{left:155.866667pt;}
.x8f_c00449{left:157.466667pt;}
.x5_c00449{left:159.066667pt;}
.xe2_c00449{left:160.000000pt;}
.x15_c00449{left:161.466667pt;}
.xcf_c00449{left:163.866667pt;}
.x99_c00449{left:165.200000pt;}
.xbe_c00449{left:169.600000pt;}
.xa0_c00449{left:171.600000pt;}
.x4b_c00449{left:172.666667pt;}
.x70_c00449{left:174.933333pt;}
.xd5_c00449{left:177.600000pt;}
.x64_c00449{left:179.333333pt;}
.x106_c00449{left:180.666667pt;}
.x12c_c00449{left:181.866667pt;}
.x82_c00449{left:183.600000pt;}
.xab_c00449{left:185.333333pt;}
.xc5_c00449{left:186.666667pt;}
.x4c_c00449{left:190.000000pt;}
.xf2_c00449{left:191.600000pt;}
.x31_c00449{left:193.333333pt;}
.x16_c00449{left:195.333333pt;}
.xa1_c00449{left:196.266667pt;}
.x3d_c00449{left:202.000000pt;}
.x135_c00449{left:204.000000pt;}
.x100_c00449{left:205.200000pt;}
.xc6_c00449{left:206.800000pt;}
.x24_c00449{left:209.200000pt;}
.x11f_c00449{left:210.266667pt;}
.x65_c00449{left:211.333333pt;}
.x125_c00449{left:212.266667pt;}
.xa2_c00449{left:213.866667pt;}
.x9a_c00449{left:214.800000pt;}
.xee_c00449{left:216.800000pt;}
.x3e_c00449{left:218.266667pt;}
.xf8_c00449{left:219.866667pt;}
.x116_c00449{left:221.733333pt;}
.x17_c00449{left:224.133333pt;}
.x72_c00449{left:225.066667pt;}
.x6_c00449{left:226.933333pt;}
.x4d_c00449{left:229.733333pt;}
.x5a_c00449{left:231.600000pt;}
.xf3_c00449{left:234.133333pt;}
.xb5_c00449{left:236.533333pt;}
.xc7_c00449{left:237.466667pt;}
.x66_c00449{left:238.800000pt;}
.xe8_c00449{left:239.733333pt;}
.xd0_c00449{left:240.933333pt;}
.xef_c00449{left:242.133333pt;}
.x12d_c00449{left:243.066667pt;}
.x101_c00449{left:245.866667pt;}
.x4e_c00449{left:247.066667pt;}
.x83_c00449{left:248.933333pt;}
.xd6_c00449{left:249.866667pt;}
.x7_c00449{left:252.266667pt;}
.x18_c00449{left:254.266667pt;}
.xac_c00449{left:256.266667pt;}
.x9b_c00449{left:257.466667pt;}
.x25_c00449{left:260.666667pt;}
.x3f_c00449{left:264.400000pt;}
.x90_c00449{left:266.000000pt;}
.xe9_c00449{left:267.200000pt;}
.xf9_c00449{left:268.800000pt;}
.x117_c00449{left:270.933333pt;}
.x4f_c00449{left:272.666667pt;}
.x136_c00449{left:274.000000pt;}
.xe3_c00449{left:274.933333pt;}
.xf4_c00449{left:276.000000pt;}
.x5b_c00449{left:278.933333pt;}
.xd1_c00449{left:280.666667pt;}
.xad_c00449{left:283.466667pt;}
.xa3_c00449{left:285.200000pt;}
.x8_c00449{left:286.133333pt;}
.x84_c00449{left:287.066667pt;}
.x118_c00449{left:289.200000pt;}
.x73_c00449{left:290.933333pt;}
.x109_c00449{left:291.866667pt;}
.x32_c00449{left:293.866667pt;}
.x120_c00449{left:294.800000pt;}
.xb6_c00449{left:295.733333pt;}
.xf0_c00449{left:296.800000pt;}
.x102_c00449{left:303.733333pt;}
.x11b_c00449{left:304.933333pt;}
.x130_c00449{left:305.866667pt;}
.x67_c00449{left:308.266667pt;}
.x91_c00449{left:311.066667pt;}
.xd7_c00449{left:312.266667pt;}
.xb7_c00449{left:313.600000pt;}
.x50_c00449{left:316.800000pt;}
.xa4_c00449{left:319.066667pt;}
.x7a_c00449{left:320.000000pt;}
.xae_c00449{left:321.600000pt;}
.xbf_c00449{left:323.466667pt;}
.x33_c00449{left:326.133333pt;}
.x51_c00449{left:328.266667pt;}
.x126_c00449{left:329.333333pt;}
.x10e_c00449{left:331.866667pt;}
.x26_c00449{left:333.333333pt;}
.x9_c00449{left:338.266667pt;}
.x40_c00449{left:339.866667pt;}
.x85_c00449{left:340.800000pt;}
.x19_c00449{left:342.266667pt;}
.xe4_c00449{left:345.333333pt;}
.x1_c00449{left:348.533333pt;}
.x132_c00449{left:350.800000pt;}
.x12e_c00449{left:351.866667pt;}
.xa_c00449{left:355.866667pt;}
.xb8_c00449{left:356.800000pt;}
.x11c_c00449{left:357.733333pt;}
.x68_c00449{left:358.800000pt;}
.x34_c00449{left:360.400000pt;}
.x41_c00449{left:362.000000pt;}
.x27_c00449{left:364.666667pt;}
.x127_c00449{left:365.866667pt;}
.x103_c00449{left:367.733333pt;}
.xe5_c00449{left:369.600000pt;}
.x5c_c00449{left:372.000000pt;}
.xa5_c00449{left:376.666667pt;}
.xd8_c00449{left:377.866667pt;}
.xb_c00449{left:381.200000pt;}
.x74_c00449{left:383.733333pt;}
.x86_c00449{left:385.866667pt;}
.x28_c00449{left:387.333333pt;}
.x52_c00449{left:389.333333pt;}
.xb9_c00449{left:390.400000pt;}
.xc9_c00449{left:392.533333pt;}
.xfb_c00449{left:394.666667pt;}
.x121_c00449{left:395.600000pt;}
.x7b_c00449{left:397.466667pt;}
.xd2_c00449{left:399.333333pt;}
.x112_c00449{left:401.333333pt;}
.xdd_c00449{left:403.733333pt;}
.x53_c00449{left:406.666667pt;}
.x10a_c00449{left:407.733333pt;}
.x1a_c00449{left:408.800000pt;}
.x9c_c00449{left:410.133333pt;}
.x35_c00449{left:411.333333pt;}
.x29_c00449{left:412.933333pt;}
.x122_c00449{left:416.133333pt;}
.x128_c00449{left:417.066667pt;}
.x87_c00449{left:418.800000pt;}
.xd9_c00449{left:419.733333pt;}
.x133_c00449{left:420.933333pt;}
.x42_c00449{left:421.866667pt;}
.x5d_c00449{left:425.733333pt;}
.x2a_c00449{left:428.933333pt;}
.x75_c00449{left:430.400000pt;}
.x12f_c00449{left:432.533333pt;}
.x69_c00449{left:433.733333pt;}
.x10b_c00449{left:434.666667pt;}
.x54_c00449{left:437.333333pt;}
.xe6_c00449{left:438.400000pt;}
.x7c_c00449{left:439.333333pt;}
.xca_c00449{left:441.200000pt;}
.x1b_c00449{left:442.400000pt;}
.x88_c00449{left:443.733333pt;}
.xc0_c00449{left:444.800000pt;}
.xfc_c00449{left:447.866667pt;}
.x36_c00449{left:450.000000pt;}
.x2b_c00449{left:451.600000pt;}
.x137_c00449{left:452.533333pt;}
.xc_c00449{left:455.466667pt;}
.x43_c00449{left:457.333333pt;}
.x11d_c00449{left:460.133333pt;}
.x76_c00449{left:461.466667pt;}
.xa6_c00449{left:463.333333pt;}
.x1c_c00449{left:464.533333pt;}
.x5e_c00449{left:465.733333pt;}
.x7d_c00449{left:467.200000pt;}
.x10f_c00449{left:468.133333pt;}
.xf5_c00449{left:469.200000pt;}
.x92_c00449{left:472.000000pt;}
.xd_c00449{left:473.066667pt;}
.x129_c00449{left:476.933333pt;}
.xc1_c00449{left:480.000000pt;}
.x55_c00449{left:482.800000pt;}
.x89_c00449{left:485.600000pt;}
.xcb_c00449{left:486.666667pt;}
.x10c_c00449{left:489.333333pt;}
.x77_c00449{left:491.600000pt;}
.x113_c00449{left:492.533333pt;}
.x9d_c00449{left:493.866667pt;}
.xda_c00449{left:495.466667pt;}
.x123_c00449{left:497.066667pt;}
.xde_c00449{left:498.000000pt;}
.x56_c00449{left:500.400000pt;}
.x44_c00449{left:501.466667pt;}
.x37_c00449{left:504.400000pt;}
.xaf_c00449{left:506.266667pt;}
.x7e_c00449{left:507.466667pt;}
.x1d_c00449{left:509.600000pt;}
.x8a_c00449{left:511.200000pt;}
.x6a_c00449{left:512.400000pt;}
.x5f_c00449{left:515.066667pt;}
.xa7_c00449{left:516.133333pt;}
.xcc_c00449{left:518.666667pt;}
.x2c_c00449{left:522.666667pt;}
.x93_c00449{left:523.866667pt;}
.xc2_c00449{left:524.800000pt;}
.x45_c00449{left:526.133333pt;}
.xfd_c00449{left:530.400000pt;}
.xdf_c00449{left:531.333333pt;}
.x60_c00449{left:533.333333pt;}
.x131_c00449{left:535.466667pt;}
.xea_c00449{left:536.400000pt;}
.x78_c00449{left:540.266667pt;}
.xe_c00449{left:542.133333pt;}
.x9e_c00449{left:543.733333pt;}
.x1e_c00449{left:545.733333pt;}
.x8b_c00449{left:546.666667pt;}
.x114_c00449{left:548.266667pt;}
.x94_c00449{left:549.466667pt;}
.x61_c00449{left:551.200000pt;}
.x12a_c00449{left:554.400000pt;}
.xe0_c00449{left:556.666667pt;}
.xba_c00449{left:557.733333pt;}
.x2d_c00449{left:558.800000pt;}
.xb0_c00449{left:560.000000pt;}
.x8c_c00449{left:564.266667pt;}
.x79_c00449{left:565.200000pt;}
.x7f_c00449{left:568.800000pt;}
.x38_c00449{left:570.266667pt;}
.x95_c00449{left:574.400000pt;}
.xc8_c00449{left:576.133333pt;}
.xeb_c00449{left:578.000000pt;}
.xa8_c00449{left:579.200000pt;}
.x2e_c00449{left:581.466667pt;}
.x6b_c00449{left:582.533333pt;}
.xf_c00449{left:583.466667pt;}
.x80_c00449{left:584.533333pt;}
.xbb_c00449{left:585.866667pt;}
.x9f_c00449{left:587.200000pt;}
.x115_c00449{left:588.266667pt;}
.xdb_c00449{left:589.866667pt;}
.x107_c00449{left:590.933333pt;}
.x1f_c00449{left:592.400000pt;}
.x39_c00449{left:594.933333pt;}
.xd3_c00449{left:598.133333pt;}
.x46_c00449{left:600.000000pt;}
.xec_c00449{left:601.066667pt;}
.xf6_c00449{left:602.266667pt;}
.x62_c00449{left:603.333333pt;}
.x10_c00449{left:604.933333pt;}
.x3a_c00449{left:606.800000pt;}
.x8d_c00449{left:609.066667pt;}
.x110_c00449{left:610.800000pt;}
.x124_c00449{left:612.266667pt;}
.x6c_c00449{left:613.866667pt;}
.x47_c00449{left:615.733333pt;}
.x104_c00449{left:616.800000pt;}
.x12b_c00449{left:618.400000pt;}
.xc3_c00449{left:619.600000pt;}
.x11e_c00449{left:622.400000pt;}
.x57_c00449{left:625.866667pt;}
.x119_c00449{left:628.133333pt;}
.xb1_c00449{left:629.200000pt;}
.x2f_c00449{left:630.400000pt;}
.x6d_c00449{left:632.400000pt;}
.x20_c00449{left:634.000000pt;}
.xfe_c00449{left:634.933333pt;}
.xa9_c00449{left:636.133333pt;}
.x11_c00449{left:638.800000pt;}
.xf7_c00449{left:639.733333pt;}
.x48_c00449{left:641.600000pt;}
.x96_c00449{left:644.266667pt;}
.x3b_c00449{left:646.533333pt;}
.x63_c00449{left:648.133333pt;}
.xb2_c00449{left:650.666667pt;}
.x11a_c00449{left:653.066667pt;}
.xed_c00449{left:654.133333pt;}
.x6e_c00449{left:657.733333pt;}
.xfa_c00449{left:658.800000pt;}
.x2_c00449{left:660.800000pt;}
.x97_c00449{left:662.800000pt;}
.x49_c00449{left:664.666667pt;}
.x21_c00449{left:666.666667pt;}
.x12_c00449{left:668.266667pt;}
.x108_c00449{left:670.400000pt;}
.xcd_c00449{left:671.733333pt;}
.x58_c00449{left:672.933333pt;}
.xe1_c00449{left:680.266667pt;}
}





/* 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_c00450 {
    display:none;
  }
  .loading-indicator_c00450.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00450 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_c00450 { 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_c00450" -> "#page-container .classname_c00450")
 */
.pf_c00450 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00450 { /* 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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00450 { /* 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_c00450 { /* 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_c00450 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00450 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00450 {overflow:visible;}
  }
}
.c_c00450 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00450 { /* 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_c00450:after { /* webkit #35443 */
  content: '';
}
.t_c00450:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00450 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 */
}
.__c00450 { /* 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_c00450 { /* info for Javascript */
  display:none;
}
.l_c00450 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00450 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00450 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00450: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_c00450 {
    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_c00450.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00450.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_c00450 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00450{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00450;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.000000;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;}
.m2b_c00450{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m37_c00450{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m33_c00450{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m26_c00450{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00450{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m38_c00450{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00450{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m10_c00450{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00450{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m34_c00450{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00450{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00450{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m41_c00450{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m23_c00450{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m29_c00450{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00450{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00450{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00450{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00450{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m35_c00450{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m17_c00450{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00450{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m25_c00450{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m28_c00450{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21_c00450{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00450{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m22_c00450{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m24_c00450{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00450{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m36_c00450{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00450{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m32_c00450{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m27_c00450{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m15_c00450{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m40_c00450{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m30_c00450{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00450{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m43_c00450{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m20_c00450{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m16_c00450{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00450{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00450{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m39_c00450{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00450{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m19_c00450{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00450{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m42_c00450{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m11_c00450{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m13_c00450{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c00450{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.v0_c00450{vertical-align:0.000000px;}
.ls0_c00450{letter-spacing:0.000000px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{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__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00450{word-spacing:-9.722222px;}
.ws0_c00450{word-spacing:-4.913793px;}
.ws4_c00450{word-spacing:0.000000px;}
.ws2_c00450{word-spacing:0.277778px;}
.ws3_c00450{word-spacing:19.259259px;}
.fc0_c00450{color:transparent;}
.fs0_c00450{font-size:60.000000px;}
.y0_c00450{bottom:0.000000px;}
.ya_c00450{bottom:848.550000px;}
.y9_c00450{bottom:868.350000px;}
.y8_c00450{bottom:888.150000px;}
.y7_c00450{bottom:908.700000px;}
.y6_c00450{bottom:928.500000px;}
.y5_c00450{bottom:948.600000px;}
.y4_c00450{bottom:968.400000px;}
.y3_c00450{bottom:988.500000px;}
.y2_c00450{bottom:1008.300000px;}
.y1_c00450{bottom:1046.100000px;}
.h2_c00450{height:60.000000px;}
.h1_c00450{height:1166.250000px;}
.h0_c00450{height:1166.400056px;}
.w0_c00450{width:920.879975px;}
.w1_c00450{width:921.000000px;}
.x0_c00450{left:0.000000px;}
.xf_c00450{left:150.750000px;}
.x1_c00450{left:151.950000px;}
.x48_c00450{left:174.450000px;}
.x2c_c00450{left:178.800000px;}
.x3_c00450{left:182.100000px;}
.x5d_c00450{left:202.350000px;}
.x20_c00450{left:205.350000px;}
.x52_c00450{left:215.850000px;}
.x6a_c00450{left:223.500000px;}
.x10_c00450{left:226.350000px;}
.x3a_c00450{left:229.050000px;}
.x49_c00450{left:230.550000px;}
.x4_c00450{left:232.800000px;}
.x2d_c00450{left:240.000000px;}
.x53_c00450{left:242.850000px;}
.x11_c00450{left:246.150000px;}
.x3b_c00450{left:249.600000px;}
.x5e_c00450{left:254.550000px;}
.x6b_c00450{left:256.200000px;}
.x2e_c00450{left:260.100000px;}
.x21_c00450{left:266.250000px;}
.x54_c00450{left:268.050000px;}
.x3c_c00450{left:270.150000px;}
.x5_c00450{left:274.950000px;}
.x12_c00450{left:282.900000px;}
.x6c_c00450{left:287.100000px;}
.x2f_c00450{left:289.200000px;}
.x3d_c00450{left:298.200000px;}
.x5f_c00450{left:301.350000px;}
.x13_c00450{left:307.800000px;}
.x60_c00450{left:322.200000px;}
.x6d_c00450{left:324.900000px;}
.x3e_c00450{left:337.500000px;}
.x6_c00450{left:339.750000px;}
.x22_c00450{left:346.800000px;}
.x55_c00450{left:348.750000px;}
.x61_c00450{left:358.950000px;}
.x4a_c00450{left:362.550000px;}
.x30_c00450{left:365.550000px;}
.x56_c00450{left:369.300000px;}
.x14_c00450{left:379.500000px;}
.x4b_c00450{left:397.800000px;}
.x15_c00450{left:399.600000px;}
.x3f_c00450{left:402.000000px;}
.x6e_c00450{left:407.700000px;}
.x23_c00450{left:419.100000px;}
.x31_c00450{left:426.450000px;}
.x16_c00450{left:428.400000px;}
.x6f_c00450{left:441.150000px;}
.x32_c00450{left:445.950000px;}
.x24_c00450{left:447.600000px;}
.x2_c00450{left:449.700000px;}
.x62_c00450{left:455.850000px;}
.x7_c00450{left:457.950000px;}
.x40_c00450{left:462.150000px;}
.x57_c00450{left:464.400000px;}
.x33_c00450{left:474.000000px;}
.x70_c00450{left:478.650000px;}
.x63_c00450{left:481.350000px;}
.x17_c00450{left:487.800000px;}
.x41_c00450{left:490.650000px;}
.x18_c00450{left:505.800000px;}
.x25_c00450{left:507.450000px;}
.x8_c00450{left:510.900000px;}
.x4c_c00450{left:520.650000px;}
.x42_c00450{left:522.750000px;}
.x64_c00450{left:524.250000px;}
.x9_c00450{left:527.850000px;}
.x58_c00450{left:535.350000px;}
.x34_c00450{left:542.700000px;}
.x26_c00450{left:548.100000px;}
.x43_c00450{left:553.350000px;}
.x65_c00450{left:558.450000px;}
.x19_c00450{left:566.250000px;}
.x4d_c00450{left:570.000000px;}
.xa_c00450{left:571.800000px;}
.x27_c00450{left:573.000000px;}
.x35_c00450{left:581.550000px;}
.x44_c00450{left:583.200000px;}
.x1a_c00450{left:600.750000px;}
.x4e_c00450{left:603.450000px;}
.xb_c00450{left:605.250000px;}
.x36_c00450{left:623.250000px;}
.x66_c00450{left:626.400000px;}
.x1b_c00450{left:634.950000px;}
.x71_c00450{left:641.400000px;}
.x37_c00450{left:643.350000px;}
.xc_c00450{left:654.300000px;}
.x45_c00450{left:660.900000px;}
.x28_c00450{left:661.950000px;}
.x38_c00450{left:665.700000px;}
.x59_c00450{left:673.950000px;}
.x72_c00450{left:678.450000px;}
.x1c_c00450{left:680.250000px;}
.x4f_c00450{left:685.200000px;}
.x46_c00450{left:694.800000px;}
.x67_c00450{left:696.600000px;}
.x29_c00450{left:703.350000px;}
.x5a_c00450{left:717.450000px;}
.x68_c00450{left:718.950000px;}
.x73_c00450{left:723.150000px;}
.x1d_c00450{left:732.750000px;}
.xd_c00450{left:737.100000px;}
.x39_c00450{left:741.000000px;}
.x5b_c00450{left:750.150000px;}
.x50_c00450{left:755.100000px;}
.x2a_c00450{left:756.300000px;}
.x47_c00450{left:758.100000px;}
.x1e_c00450{left:761.550000px;}
.xe_c00450{left:767.400000px;}
.x51_c00450{left:775.950000px;}
.x1f_c00450{left:787.050000px;}
.x2b_c00450{left:795.900000px;}
.x69_c00450{left:799.200000px;}
.x5c_c00450{left:806.700000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws1_c00450{word-spacing:-8.641975pt;}
.ws0_c00450{word-spacing:-4.367816pt;}
.ws4_c00450{word-spacing:0.000000pt;}
.ws2_c00450{word-spacing:0.246914pt;}
.ws3_c00450{word-spacing:17.119342pt;}
.fs0_c00450{font-size:53.333333pt;}
.y0_c00450{bottom:0.000000pt;}
.ya_c00450{bottom:754.266667pt;}
.y9_c00450{bottom:771.866667pt;}
.y8_c00450{bottom:789.466667pt;}
.y7_c00450{bottom:807.733333pt;}
.y6_c00450{bottom:825.333333pt;}
.y5_c00450{bottom:843.200000pt;}
.y4_c00450{bottom:860.800000pt;}
.y3_c00450{bottom:878.666667pt;}
.y2_c00450{bottom:896.266667pt;}
.y1_c00450{bottom:929.866667pt;}
.h2_c00450{height:53.333333pt;}
.h1_c00450{height:1036.666667pt;}
.h0_c00450{height:1036.800049pt;}
.w0_c00450{width:818.559977pt;}
.w1_c00450{width:818.666667pt;}
.x0_c00450{left:0.000000pt;}
.xf_c00450{left:134.000000pt;}
.x1_c00450{left:135.066667pt;}
.x48_c00450{left:155.066667pt;}
.x2c_c00450{left:158.933333pt;}
.x3_c00450{left:161.866667pt;}
.x5d_c00450{left:179.866667pt;}
.x20_c00450{left:182.533333pt;}
.x52_c00450{left:191.866667pt;}
.x6a_c00450{left:198.666667pt;}
.x10_c00450{left:201.200000pt;}
.x3a_c00450{left:203.600000pt;}
.x49_c00450{left:204.933333pt;}
.x4_c00450{left:206.933333pt;}
.x2d_c00450{left:213.333333pt;}
.x53_c00450{left:215.866667pt;}
.x11_c00450{left:218.800000pt;}
.x3b_c00450{left:221.866667pt;}
.x5e_c00450{left:226.266667pt;}
.x6b_c00450{left:227.733333pt;}
.x2e_c00450{left:231.200000pt;}
.x21_c00450{left:236.666667pt;}
.x54_c00450{left:238.266667pt;}
.x3c_c00450{left:240.133333pt;}
.x5_c00450{left:244.400000pt;}
.x12_c00450{left:251.466667pt;}
.x6c_c00450{left:255.200000pt;}
.x2f_c00450{left:257.066667pt;}
.x3d_c00450{left:265.066667pt;}
.x5f_c00450{left:267.866667pt;}
.x13_c00450{left:273.600000pt;}
.x60_c00450{left:286.400000pt;}
.x6d_c00450{left:288.800000pt;}
.x3e_c00450{left:300.000000pt;}
.x6_c00450{left:302.000000pt;}
.x22_c00450{left:308.266667pt;}
.x55_c00450{left:310.000000pt;}
.x61_c00450{left:319.066667pt;}
.x4a_c00450{left:322.266667pt;}
.x30_c00450{left:324.933333pt;}
.x56_c00450{left:328.266667pt;}
.x14_c00450{left:337.333333pt;}
.x4b_c00450{left:353.600000pt;}
.x15_c00450{left:355.200000pt;}
.x3f_c00450{left:357.333333pt;}
.x6e_c00450{left:362.400000pt;}
.x23_c00450{left:372.533333pt;}
.x31_c00450{left:379.066667pt;}
.x16_c00450{left:380.800000pt;}
.x6f_c00450{left:392.133333pt;}
.x32_c00450{left:396.400000pt;}
.x24_c00450{left:397.866667pt;}
.x2_c00450{left:399.733333pt;}
.x62_c00450{left:405.200000pt;}
.x7_c00450{left:407.066667pt;}
.x40_c00450{left:410.800000pt;}
.x57_c00450{left:412.800000pt;}
.x33_c00450{left:421.333333pt;}
.x70_c00450{left:425.466667pt;}
.x63_c00450{left:427.866667pt;}
.x17_c00450{left:433.600000pt;}
.x41_c00450{left:436.133333pt;}
.x18_c00450{left:449.600000pt;}
.x25_c00450{left:451.066667pt;}
.x8_c00450{left:454.133333pt;}
.x4c_c00450{left:462.800000pt;}
.x42_c00450{left:464.666667pt;}
.x64_c00450{left:466.000000pt;}
.x9_c00450{left:469.200000pt;}
.x58_c00450{left:475.866667pt;}
.x34_c00450{left:482.400000pt;}
.x26_c00450{left:487.200000pt;}
.x43_c00450{left:491.866667pt;}
.x65_c00450{left:496.400000pt;}
.x19_c00450{left:503.333333pt;}
.x4d_c00450{left:506.666667pt;}
.xa_c00450{left:508.266667pt;}
.x27_c00450{left:509.333333pt;}
.x35_c00450{left:516.933333pt;}
.x44_c00450{left:518.400000pt;}
.x1a_c00450{left:534.000000pt;}
.x4e_c00450{left:536.400000pt;}
.xb_c00450{left:538.000000pt;}
.x36_c00450{left:554.000000pt;}
.x66_c00450{left:556.800000pt;}
.x1b_c00450{left:564.400000pt;}
.x71_c00450{left:570.133333pt;}
.x37_c00450{left:571.866667pt;}
.xc_c00450{left:581.600000pt;}
.x45_c00450{left:587.466667pt;}
.x28_c00450{left:588.400000pt;}
.x38_c00450{left:591.733333pt;}
.x59_c00450{left:599.066667pt;}
.x72_c00450{left:603.066667pt;}
.x1c_c00450{left:604.666667pt;}
.x4f_c00450{left:609.066667pt;}
.x46_c00450{left:617.600000pt;}
.x67_c00450{left:619.200000pt;}
.x29_c00450{left:625.200000pt;}
.x5a_c00450{left:637.733333pt;}
.x68_c00450{left:639.066667pt;}
.x73_c00450{left:642.800000pt;}
.x1d_c00450{left:651.333333pt;}
.xd_c00450{left:655.200000pt;}
.x39_c00450{left:658.666667pt;}
.x5b_c00450{left:666.800000pt;}
.x50_c00450{left:671.200000pt;}
.x2a_c00450{left:672.266667pt;}
.x47_c00450{left:673.866667pt;}
.x1e_c00450{left:676.933333pt;}
.xe_c00450{left:682.133333pt;}
.x51_c00450{left:689.733333pt;}
.x1f_c00450{left:699.600000pt;}
.x2b_c00450{left:707.466667pt;}
.x69_c00450{left:710.400000pt;}
.x5c_c00450{left:717.066667pt;}
}





/* 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_c00451 {
    display:none;
  }
  .loading-indicator_c00451.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00451 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_c00451 { 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_c00451" -> "#page-container .classname_c00451")
 */
.pf_c00451 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00451 { /* 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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00451 { /* 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_c00451 { /* 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_c00451 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00451 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00451 {overflow:visible;}
  }
}
.c_c00451 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00451 { /* 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_c00451:after { /* webkit #35443 */
  content: '';
}
.t_c00451:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00451 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 */
}
.__c00451 { /* 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_c00451 { /* info for Javascript */
  display:none;
}
.l_c00451 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00451 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00451 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00451: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_c00451 {
    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_c00451.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00451.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_c00451 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00451{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00451;src:url('chunks/assets/font_a388278df0416cddb4021386.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.000000;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_c00451{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls0_c00451{letter-spacing:0.000000px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{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__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
.fc0_c00451{color:transparent;}
.fs0_c00451{font-size:24.000000px;}
.y0_c00451{bottom:0.000000px;}
.y1_c00451{bottom:612.300000px;}
.h2_c00451{height:24.000000px;}
.h1_c00451{height:1166.250000px;}
.h0_c00451{height:1166.400056px;}
.w0_c00451{width:920.879975px;}
.w1_c00451{width:921.000000px;}
.x0_c00451{left:0.000000px;}
.x1_c00451{left:783.300000px;}
.x2_c00451{left:837.600000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs0_c00451{font-size:21.333333pt;}
.y0_c00451{bottom:0.000000pt;}
.y1_c00451{bottom:544.266667pt;}
.h2_c00451{height:21.333333pt;}
.h1_c00451{height:1036.666667pt;}
.h0_c00451{height:1036.800049pt;}
.w0_c00451{width:818.559977pt;}
.w1_c00451{width:818.666667pt;}
.x0_c00451{left:0.000000pt;}
.x1_c00451{left:696.266667pt;}
.x2_c00451{left:744.533333pt;}
}





/* 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_c00452 {
    display:none;
  }
  .loading-indicator_c00452.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00452 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_c00452 { 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_c00452" -> "#page-container .classname_c00452")
 */
.pf_c00452 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00452 { /* 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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00452 { /* 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_c00452 { /* 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_c00452 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00452 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00452 {overflow:visible;}
  }
}
.c_c00452 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00452 { /* 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_c00452:after { /* webkit #35443 */
  content: '';
}
.t_c00452:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00452 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 */
}
.__c00452 { /* 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_c00452 { /* info for Javascript */
  display:none;
}
.l_c00452 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00452 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00452 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00452: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_c00452 {
    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_c00452.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00452.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_c00452 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00452{font-family:sans-serif;visibility:hidden;}
.sc__c00452{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
}
.y0_c00452{bottom:0.000000px;}
.h1_c00452{height:1166.250000px;}
.h0_c00452{height:1166.400056px;}
.w0_c00452{width:920.879975px;}
.w1_c00452{width:921.000000px;}
.x0_c00452{left:0.000000px;}
@media print{
.y0_c00452{bottom:0.000000pt;}
.h1_c00452{height:1036.666667pt;}
.h0_c00452{height:1036.800049pt;}
.w0_c00452{width:818.559977pt;}
.w1_c00452{width:818.666667pt;}
.x0_c00452{left:0.000000pt;}
}





/* 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_c00453 {
    display:none;
  }
  .loading-indicator_c00453.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00453 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_c00453 { 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_c00453" -> "#page-container .classname_c00453")
 */
.pf_c00453 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00453 { /* 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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00453 { /* 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_c00453 { /* 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_c00453 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00453 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00453 {overflow:visible;}
  }
}
.c_c00453 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00453 { /* 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_c00453:after { /* webkit #35443 */
  content: '';
}
.t_c00453:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00453 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 */
}
.__c00453 { /* 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_c00453 { /* info for Javascript */
  display:none;
}
.l_c00453 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00453 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00453 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00453: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_c00453 {
    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_c00453.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00453.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_c00453 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00453{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00453;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.000000;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;}
.m45_c00453{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m90_c00453{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00453{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m96_c00453{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00453{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m70_c00453{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m43_c00453{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00453{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m98_c00453{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m85_c00453{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m99_c00453{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00453{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00453{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m74_c00453{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00453{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m69_c00453{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00453{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m80_c00453{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00453{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m29_c00453{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m91_c00453{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m10_c00453{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m88_c00453{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m81_c00453{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00453{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m67_c00453{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00453{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00453{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m72_c00453{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00453{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m68_c00453{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m77_c00453{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m13_c00453{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m59_c00453{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00453{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00453{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m78_c00453{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m87_c00453{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00453{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00453{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m49_c00453{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m38_c00453{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m18_c00453{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m17_c00453{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00453{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00453{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m86_c00453{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m22_c00453{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m39_c00453{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00453{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m26_c00453{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m60_c00453{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m35_c00453{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m57_c00453{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m66_c00453{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00453{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m73_c00453{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00453{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.me_c00453{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.mb_c00453{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00453{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00453{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00453{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m56_c00453{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m34_c00453{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m54_c00453{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00453{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00453{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.mf_c00453{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00453{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m16_c00453{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m47_c00453{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m20_c00453{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00453{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14_c00453{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m64_c00453{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m95_c00453{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);}
.mc_c00453{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m52_c00453{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9_c00453{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m58_c00453{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00453{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00453{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m40_c00453{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.ma_c00453{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m63_c00453{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m19_c00453{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m28_c00453{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00453{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m92_c00453{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m62_c00453{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m94_c00453{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00453{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m79_c00453{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m51_c00453{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00453{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m8_c00453{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00453{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m46_c00453{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m50_c00453{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m12_c00453{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m36_c00453{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00453{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m42_c00453{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c00453{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00453{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m84_c00453{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m24_c00453{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00453{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m83_c00453{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m41_c00453{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m30_c00453{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00453{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m97_c00453{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00453{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00453{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m71_c00453{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m31_c00453{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00453{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m89_c00453{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00453{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m65_c00453{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m33_c00453{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00453{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m11_c00453{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m75_c00453{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00453{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m32_c00453{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m55_c00453{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00453{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00453{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m76_c00453{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00453{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m37_c00453{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m27_c00453{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m15_c00453{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m25_c00453{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c00453{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m48_c00453{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m61_c00453{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m44_c00453{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m7_c00453{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00453{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m82_c00453{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.m93_c00453{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380500,0.000000,0.000000,0.250000,0,0);}
.m1_c00453{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.md_c00453{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00453{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00453{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m5_c00453{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.v0_c00453{vertical-align:0.000000px;}
.ls0_c00453{letter-spacing:0.000000px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{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__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00453{word-spacing:-1.625000px;}
.ws3_c00453{word-spacing:0.000000px;}
.ws0_c00453{word-spacing:1.500000px;}
.ws2_c00453{word-spacing:5.875000px;}
._0_c00453{width:36.125000px;}
.fc0_c00453{color:transparent;}
.fs1_c00453{font-size:42.000000px;}
.fs0_c00453{font-size:54.000000px;}
.y0_c00453{bottom:0.000000px;}
.y20_c00453{bottom:142.950000px;}
.y1f_c00453{bottom:165.750000px;}
.y1e_c00453{bottom:186.300000px;}
.y1d_c00453{bottom:206.100000px;}
.y1c_c00453{bottom:225.900000px;}
.y1b_c00453{bottom:246.000000px;}
.y1a_c00453{bottom:265.800000px;}
.y19_c00453{bottom:285.900000px;}
.y18_c00453{bottom:306.000000px;}
.y17_c00453{bottom:325.500000px;}
.y16_c00453{bottom:346.200000px;}
.y15_c00453{bottom:366.300000px;}
.y14_c00453{bottom:385.800000px;}
.y13_c00453{bottom:405.900000px;}
.y12_c00453{bottom:426.000000px;}
.y11_c00453{bottom:445.800000px;}
.y10_c00453{bottom:465.900000px;}
.yf_c00453{bottom:485.700000px;}
.ye_c00453{bottom:505.800000px;}
.yd_c00453{bottom:525.600000px;}
.yc_c00453{bottom:563.400000px;}
.yb_c00453{bottom:583.950000px;}
.ya_c00453{bottom:603.750000px;}
.y9_c00453{bottom:623.850000px;}
.y8_c00453{bottom:643.500000px;}
.y7_c00453{bottom:663.600000px;}
.y6_c00453{bottom:683.400000px;}
.y5_c00453{bottom:703.500000px;}
.y4_c00453{bottom:723.300000px;}
.y3_c00453{bottom:756.750000px;}
.y2_c00453{bottom:789.450000px;}
.y1_c00453{bottom:1038.900000px;}
.h3_c00453{height:42.000000px;}
.h2_c00453{height:54.000000px;}
.h1_c00453{height:1166.250000px;}
.h0_c00453{height:1166.400056px;}
.w0_c00453{width:920.879975px;}
.w1_c00453{width:921.000000px;}
.x0_c00453{left:0.000000px;}
.x8_c00453{left:111.900000px;}
.x66_c00453{left:112.950000px;}
.xcd_c00453{left:114.300000px;}
.xf3_c00453{left:115.350000px;}
.xc1_c00453{left:132.000000px;}
.xa4_c00453{left:135.300000px;}
.x18_c00453{left:138.000000px;}
.x4f_c00453{left:142.500000px;}
.x47_c00453{left:143.700000px;}
.x9_c00453{left:145.800000px;}
.xeb_c00453{left:149.700000px;}
.x9a_c00453{left:150.900000px;}
.x27_c00453{left:153.450000px;}
.x82_c00453{left:155.700000px;}
.xe4_c00453{left:157.800000px;}
.xf8_c00453{left:159.300000px;}
.xdc_c00453{left:164.250000px;}
.x19_c00453{left:165.750000px;}
.x8e_c00453{left:167.250000px;}
.xb9_c00453{left:168.900000px;}
.xf9_c00453{left:171.150000px;}
.x50_c00453{left:172.350000px;}
.xc2_c00453{left:176.700000px;}
.xc7_c00453{left:177.900000px;}
.x67_c00453{left:179.850000px;}
.xa_c00453{left:181.500000px;}
.x28_c00453{left:182.550000px;}
.x48_c00453{left:185.100000px;}
.x6f_c00453{left:186.750000px;}
.x8f_c00453{left:190.350000px;}
.xe5_c00453{left:193.050000px;}
.xba_c00453{left:194.100000px;}
.x37_c00453{left:195.750000px;}
.xce_c00453{left:197.100000px;}
.xb_c00453{left:199.200000px;}
.x70_c00453{left:201.900000px;}
.xdd_c00453{left:203.100000px;}
.xb1_c00453{left:206.700000px;}
.x51_c00453{left:210.900000px;}
.x72_c00453{left:213.900000px;}
.x5c_c00453{left:216.150000px;}
.xfa_c00453{left:217.200000px;}
.xd3_c00453{left:220.500000px;}
.x1a_c00453{left:221.550000px;}
.x9b_c00453{left:222.600000px;}
.x38_c00453{left:224.550000px;}
.x7c_c00453{left:230.100000px;}
.xc3_c00453{left:231.750000px;}
.xde_c00453{left:232.950000px;}
.xc_c00453{left:235.950000px;}
.xa5_c00453{left:238.200000px;}
.x39_c00453{left:239.250000px;}
.x1b_c00453{left:241.350000px;}
.x90_c00453{left:244.350000px;}
.x71_c00453{left:246.600000px;}
.xd4_c00453{left:249.000000px;}
.x73_c00453{left:250.950000px;}
.x83_c00453{left:253.200000px;}
.x3a_c00453{left:254.700000px;}
.x49_c00453{left:256.350000px;}
.xc8_c00453{left:257.550000px;}
.x52_c00453{left:259.500000px;}
.x7d_c00453{left:264.000000px;}
.x68_c00453{left:266.250000px;}
.xfb_c00453{left:269.100000px;}
.x29_c00453{left:270.450000px;}
.x91_c00453{left:272.100000px;}
.xcf_c00453{left:273.750000px;}
.xb2_c00453{left:275.100000px;}
.xc9_c00453{left:277.350000px;}
.x1c_c00453{left:278.850000px;}
.xdf_c00453{left:283.350000px;}
.x4a_c00453{left:284.400000px;}
.xac_c00453{left:288.600000px;}
.xd_c00453{left:291.000000px;}
.xa6_c00453{left:293.250000px;}
.x4_c00453{left:299.100000px;}
.x5d_c00453{left:300.450000px;}
.xe0_c00453{left:301.650000px;}
.xbb_c00453{left:303.600000px;}
.x84_c00453{left:307.200000px;}
.x2a_c00453{left:309.750000px;}
.x53_c00453{left:312.000000px;}
.x9c_c00453{left:313.350000px;}
.x3b_c00453{left:318.000000px;}
.x4b_c00453{left:323.250000px;}
.x92_c00453{left:324.600000px;}
.xec_c00453{left:330.450000px;}
.x54_c00453{left:331.500000px;}
.xe_c00453{left:333.150000px;}
.x3c_c00453{left:335.700000px;}
.xbc_c00453{left:336.750000px;}
.x69_c00453{left:337.950000px;}
.x74_c00453{left:341.700000px;}
.x93_c00453{left:345.450000px;}
.xf_c00453{left:347.850000px;}
.xff_c00453{left:349.950000px;}
.x2b_c00453{left:352.650000px;}
.xfc_c00453{left:354.000000px;}
.x85_c00453{left:355.800000px;}
.x1d_c00453{left:360.150000px;}
.x100_c00453{left:363.600000px;}
.x5e_c00453{left:366.750000px;}
.x2c_c00453{left:368.550000px;}
.x86_c00453{left:370.500000px;}
.xb3_c00453{left:371.850000px;}
.x94_c00453{left:375.000000px;}
.x55_c00453{left:377.250000px;}
.x6a_c00453{left:378.300000px;}
.x4c_c00453{left:380.100000px;}
.x75_c00453{left:384.150000px;}
.x2_c00453{left:387.300000px;}
.x1e_c00453{left:388.950000px;}
.xb4_c00453{left:391.350000px;}
.x5_c00453{left:396.300000px;}
.xbd_c00453{left:397.650000px;}
.x4d_c00453{left:399.900000px;}
.x3d_c00453{left:403.350000px;}
.x101_c00453{left:406.800000px;}
.xc4_c00453{left:407.850000px;}
.x2d_c00453{left:411.000000px;}
.x1f_c00453{left:415.650000px;}
.x76_c00453{left:416.850000px;}
.xf4_c00453{left:417.900000px;}
.xb5_c00453{left:419.400000px;}
.x10_c00453{left:420.600000px;}
.xd0_c00453{left:423.000000px;}
.x56_c00453{left:425.850000px;}
.xe6_c00453{left:427.650000px;}
.x1_c00453{left:432.300000px;}
.x87_c00453{left:436.350000px;}
.xf5_c00453{left:437.400000px;}
.xf0_c00453{left:438.750000px;}
.x5f_c00453{left:440.250000px;}
.x11_c00453{left:442.950000px;}
.x57_c00453{left:445.350000px;}
.x4e_c00453{left:451.050000px;}
.x2e_c00453{left:453.150000px;}
.x3e_c00453{left:454.800000px;}
.x88_c00453{left:456.150000px;}
.xd5_c00453{left:457.500000px;}
.xed_c00453{left:459.000000px;}
.x20_c00453{left:460.650000px;}
.x9d_c00453{left:464.250000px;}
.x3_c00453{left:471.900000px;}
.x6b_c00453{left:473.250000px;}
.x2f_c00453{left:475.050000px;}
.x21_c00453{left:476.850000px;}
.x12_c00453{left:480.000000px;}
.xbe_c00453{left:481.950000px;}
.xad_c00453{left:483.750000px;}
.xd6_c00453{left:488.400000px;}
.xe7_c00453{left:490.350000px;}
.xa7_c00453{left:491.550000px;}
.x3f_c00453{left:494.100000px;}
.x9e_c00453{left:497.400000px;}
.xc5_c00453{left:500.250000px;}
.x77_c00453{left:502.200000px;}
.x30_c00453{left:505.650000px;}
.x22_c00453{left:507.750000px;}
.x95_c00453{left:511.050000px;}
.x58_c00453{left:514.500000px;}
.x89_c00453{left:515.850000px;}
.x6_c00453{left:516.900000px;}
.x78_c00453{left:519.900000px;}
.x13_c00453{left:521.700000px;}
.xe1_c00453{left:523.950000px;}
.xbf_c00453{left:528.000000px;}
.xd1_c00453{left:529.650000px;}
.x40_c00453{left:530.850000px;}
.x7_c00453{left:534.600000px;}
.xca_c00453{left:538.950000px;}
.x59_c00453{left:545.850000px;}
.xe8_c00453{left:547.200000px;}
.x96_c00453{left:548.850000px;}
.x8a_c00453{left:550.350000px;}
.xe2_c00453{left:552.450000px;}
.x9f_c00453{left:554.250000px;}
.xd7_c00453{left:557.550000px;}
.x60_c00453{left:560.850000px;}
.x31_c00453{left:562.200000px;}
.x41_c00453{left:567.150000px;}
.xa8_c00453{left:571.050000px;}
.x5a_c00453{left:573.150000px;}
.x23_c00453{left:576.150000px;}
.x14_c00453{left:579.300000px;}
.x6c_c00453{left:580.500000px;}
.x7e_c00453{left:582.900000px;}
.xd8_c00453{left:584.250000px;}
.xc6_c00453{left:585.600000px;}
.x79_c00453{left:588.000000px;}
.xa0_c00453{left:590.250000px;}
.x42_c00453{left:592.650000px;}
.x24_c00453{left:596.250000px;}
.x61_c00453{left:598.350000px;}
.x6d_c00453{left:600.000000px;}
.x7f_c00453{left:602.400000px;}
.x32_c00453{left:605.400000px;}
.x15_c00453{left:610.950000px;}
.xae_c00453{left:612.150000px;}
.xb6_c00453{left:616.800000px;}
.xa9_c00453{left:621.750000px;}
.x43_c00453{left:624.300000px;}
.xfd_c00453{left:625.350000px;}
.x62_c00453{left:626.400000px;}
.xd9_c00453{left:630.000000px;}
.xaf_c00453{left:637.650000px;}
.xa1_c00453{left:639.300000px;}
.x8b_c00453{left:642.900000px;}
.x33_c00453{left:646.050000px;}
.xee_c00453{left:647.250000px;}
.xaa_c00453{left:650.250000px;}
.x16_c00453{left:652.050000px;}
.x97_c00453{left:657.150000px;}
.x63_c00453{left:659.550000px;}
.x80_c00453{left:661.800000px;}
.xe3_c00453{left:663.600000px;}
.xe9_c00453{left:665.700000px;}
.xf1_c00453{left:668.400000px;}
.xda_c00453{left:672.150000px;}
.x44_c00453{left:675.000000px;}
.x7a_c00453{left:676.200000px;}
.x98_c00453{left:678.000000px;}
.xf6_c00453{left:683.100000px;}
.xb7_c00453{left:685.200000px;}
.xa2_c00453{left:686.400000px;}
.xfe_c00453{left:687.600000px;}
.x34_c00453{left:691.800000px;}
.xea_c00453{left:693.000000px;}
.x45_c00453{left:694.800000px;}
.x25_c00453{left:700.950000px;}
.x64_c00453{left:702.000000px;}
.xc0_c00453{left:704.100000px;}
.x17_c00453{left:707.550000px;}
.xf7_c00453{left:711.600000px;}
.x6e_c00453{left:712.950000px;}
.xb8_c00453{left:714.750000px;}
.xb0_c00453{left:716.100000px;}
.x8c_c00453{left:719.550000px;}
.xdb_c00453{left:720.750000px;}
.x35_c00453{left:725.250000px;}
.xf2_c00453{left:728.550000px;}
.x81_c00453{left:733.500000px;}
.x26_c00453{left:735.150000px;}
.xd2_c00453{left:738.600000px;}
.xcb_c00453{left:739.950000px;}
.xa3_c00453{left:742.200000px;}
.xef_c00453{left:743.400000px;}
.x65_c00453{left:745.500000px;}
.x36_c00453{left:747.600000px;}
.x46_c00453{left:749.550000px;}
.xab_c00453{left:753.000000px;}
.x7b_c00453{left:759.000000px;}
.xcc_c00453{left:761.250000px;}
.x5b_c00453{left:766.500000px;}
.x99_c00453{left:768.600000px;}
.x8d_c00453{left:770.700000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws1_c00453{word-spacing:-1.444444pt;}
.ws3_c00453{word-spacing:0.000000pt;}
.ws0_c00453{word-spacing:1.333333pt;}
.ws2_c00453{word-spacing:5.222222pt;}
._0_c00453{width:32.111111pt;}
.fs1_c00453{font-size:37.333333pt;}
.fs0_c00453{font-size:48.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y20_c00453{bottom:127.066667pt;}
.y1f_c00453{bottom:147.333333pt;}
.y1e_c00453{bottom:165.600000pt;}
.y1d_c00453{bottom:183.200000pt;}
.y1c_c00453{bottom:200.800000pt;}
.y1b_c00453{bottom:218.666667pt;}
.y1a_c00453{bottom:236.266667pt;}
.y19_c00453{bottom:254.133333pt;}
.y18_c00453{bottom:272.000000pt;}
.y17_c00453{bottom:289.333333pt;}
.y16_c00453{bottom:307.733333pt;}
.y15_c00453{bottom:325.600000pt;}
.y14_c00453{bottom:342.933333pt;}
.y13_c00453{bottom:360.800000pt;}
.y12_c00453{bottom:378.666667pt;}
.y11_c00453{bottom:396.266667pt;}
.y10_c00453{bottom:414.133333pt;}
.yf_c00453{bottom:431.733333pt;}
.ye_c00453{bottom:449.600000pt;}
.yd_c00453{bottom:467.200000pt;}
.yc_c00453{bottom:500.800000pt;}
.yb_c00453{bottom:519.066667pt;}
.ya_c00453{bottom:536.666667pt;}
.y9_c00453{bottom:554.533333pt;}
.y8_c00453{bottom:572.000000pt;}
.y7_c00453{bottom:589.866667pt;}
.y6_c00453{bottom:607.466667pt;}
.y5_c00453{bottom:625.333333pt;}
.y4_c00453{bottom:642.933333pt;}
.y3_c00453{bottom:672.666667pt;}
.y2_c00453{bottom:701.733333pt;}
.y1_c00453{bottom:923.466667pt;}
.h3_c00453{height:37.333333pt;}
.h2_c00453{height:48.000000pt;}
.h1_c00453{height:1036.666667pt;}
.h0_c00453{height:1036.800049pt;}
.w0_c00453{width:818.559977pt;}
.w1_c00453{width:818.666667pt;}
.x0_c00453{left:0.000000pt;}
.x8_c00453{left:99.466667pt;}
.x66_c00453{left:100.400000pt;}
.xcd_c00453{left:101.600000pt;}
.xf3_c00453{left:102.533333pt;}
.xc1_c00453{left:117.333333pt;}
.xa4_c00453{left:120.266667pt;}
.x18_c00453{left:122.666667pt;}
.x4f_c00453{left:126.666667pt;}
.x47_c00453{left:127.733333pt;}
.x9_c00453{left:129.600000pt;}
.xeb_c00453{left:133.066667pt;}
.x9a_c00453{left:134.133333pt;}
.x27_c00453{left:136.400000pt;}
.x82_c00453{left:138.400000pt;}
.xe4_c00453{left:140.266667pt;}
.xf8_c00453{left:141.600000pt;}
.xdc_c00453{left:146.000000pt;}
.x19_c00453{left:147.333333pt;}
.x8e_c00453{left:148.666667pt;}
.xb9_c00453{left:150.133333pt;}
.xf9_c00453{left:152.133333pt;}
.x50_c00453{left:153.200000pt;}
.xc2_c00453{left:157.066667pt;}
.xc7_c00453{left:158.133333pt;}
.x67_c00453{left:159.866667pt;}
.xa_c00453{left:161.333333pt;}
.x28_c00453{left:162.266667pt;}
.x48_c00453{left:164.533333pt;}
.x6f_c00453{left:166.000000pt;}
.x8f_c00453{left:169.200000pt;}
.xe5_c00453{left:171.600000pt;}
.xba_c00453{left:172.533333pt;}
.x37_c00453{left:174.000000pt;}
.xce_c00453{left:175.200000pt;}
.xb_c00453{left:177.066667pt;}
.x70_c00453{left:179.466667pt;}
.xdd_c00453{left:180.533333pt;}
.xb1_c00453{left:183.733333pt;}
.x51_c00453{left:187.466667pt;}
.x72_c00453{left:190.133333pt;}
.x5c_c00453{left:192.133333pt;}
.xfa_c00453{left:193.066667pt;}
.xd3_c00453{left:196.000000pt;}
.x1a_c00453{left:196.933333pt;}
.x9b_c00453{left:197.866667pt;}
.x38_c00453{left:199.600000pt;}
.x7c_c00453{left:204.533333pt;}
.xc3_c00453{left:206.000000pt;}
.xde_c00453{left:207.066667pt;}
.xc_c00453{left:209.733333pt;}
.xa5_c00453{left:211.733333pt;}
.x39_c00453{left:212.666667pt;}
.x1b_c00453{left:214.533333pt;}
.x90_c00453{left:217.200000pt;}
.x71_c00453{left:219.200000pt;}
.xd4_c00453{left:221.333333pt;}
.x73_c00453{left:223.066667pt;}
.x83_c00453{left:225.066667pt;}
.x3a_c00453{left:226.400000pt;}
.x49_c00453{left:227.866667pt;}
.xc8_c00453{left:228.933333pt;}
.x52_c00453{left:230.666667pt;}
.x7d_c00453{left:234.666667pt;}
.x68_c00453{left:236.666667pt;}
.xfb_c00453{left:239.200000pt;}
.x29_c00453{left:240.400000pt;}
.x91_c00453{left:241.866667pt;}
.xcf_c00453{left:243.333333pt;}
.xb2_c00453{left:244.533333pt;}
.xc9_c00453{left:246.533333pt;}
.x1c_c00453{left:247.866667pt;}
.xdf_c00453{left:251.866667pt;}
.x4a_c00453{left:252.800000pt;}
.xac_c00453{left:256.533333pt;}
.xd_c00453{left:258.666667pt;}
.xa6_c00453{left:260.666667pt;}
.x4_c00453{left:265.866667pt;}
.x5d_c00453{left:267.066667pt;}
.xe0_c00453{left:268.133333pt;}
.xbb_c00453{left:269.866667pt;}
.x84_c00453{left:273.066667pt;}
.x2a_c00453{left:275.333333pt;}
.x53_c00453{left:277.333333pt;}
.x9c_c00453{left:278.533333pt;}
.x3b_c00453{left:282.666667pt;}
.x4b_c00453{left:287.333333pt;}
.x92_c00453{left:288.533333pt;}
.xec_c00453{left:293.733333pt;}
.x54_c00453{left:294.666667pt;}
.xe_c00453{left:296.133333pt;}
.x3c_c00453{left:298.400000pt;}
.xbc_c00453{left:299.333333pt;}
.x69_c00453{left:300.400000pt;}
.x74_c00453{left:303.733333pt;}
.x93_c00453{left:307.066667pt;}
.xf_c00453{left:309.200000pt;}
.xff_c00453{left:311.066667pt;}
.x2b_c00453{left:313.466667pt;}
.xfc_c00453{left:314.666667pt;}
.x85_c00453{left:316.266667pt;}
.x1d_c00453{left:320.133333pt;}
.x100_c00453{left:323.200000pt;}
.x5e_c00453{left:326.000000pt;}
.x2c_c00453{left:327.600000pt;}
.x86_c00453{left:329.333333pt;}
.xb3_c00453{left:330.533333pt;}
.x94_c00453{left:333.333333pt;}
.x55_c00453{left:335.333333pt;}
.x6a_c00453{left:336.266667pt;}
.x4c_c00453{left:337.866667pt;}
.x75_c00453{left:341.466667pt;}
.x2_c00453{left:344.266667pt;}
.x1e_c00453{left:345.733333pt;}
.xb4_c00453{left:347.866667pt;}
.x5_c00453{left:352.266667pt;}
.xbd_c00453{left:353.466667pt;}
.x4d_c00453{left:355.466667pt;}
.x3d_c00453{left:358.533333pt;}
.x101_c00453{left:361.600000pt;}
.xc4_c00453{left:362.533333pt;}
.x2d_c00453{left:365.333333pt;}
.x1f_c00453{left:369.466667pt;}
.x76_c00453{left:370.533333pt;}
.xf4_c00453{left:371.466667pt;}
.xb5_c00453{left:372.800000pt;}
.x10_c00453{left:373.866667pt;}
.xd0_c00453{left:376.000000pt;}
.x56_c00453{left:378.533333pt;}
.xe6_c00453{left:380.133333pt;}
.x1_c00453{left:384.266667pt;}
.x87_c00453{left:387.866667pt;}
.xf5_c00453{left:388.800000pt;}
.xf0_c00453{left:390.000000pt;}
.x5f_c00453{left:391.333333pt;}
.x11_c00453{left:393.733333pt;}
.x57_c00453{left:395.866667pt;}
.x4e_c00453{left:400.933333pt;}
.x2e_c00453{left:402.800000pt;}
.x3e_c00453{left:404.266667pt;}
.x88_c00453{left:405.466667pt;}
.xd5_c00453{left:406.666667pt;}
.xed_c00453{left:408.000000pt;}
.x20_c00453{left:409.466667pt;}
.x9d_c00453{left:412.666667pt;}
.x3_c00453{left:419.466667pt;}
.x6b_c00453{left:420.666667pt;}
.x2f_c00453{left:422.266667pt;}
.x21_c00453{left:423.866667pt;}
.x12_c00453{left:426.666667pt;}
.xbe_c00453{left:428.400000pt;}
.xad_c00453{left:430.000000pt;}
.xd6_c00453{left:434.133333pt;}
.xe7_c00453{left:435.866667pt;}
.xa7_c00453{left:436.933333pt;}
.x3f_c00453{left:439.200000pt;}
.x9e_c00453{left:442.133333pt;}
.xc5_c00453{left:444.666667pt;}
.x77_c00453{left:446.400000pt;}
.x30_c00453{left:449.466667pt;}
.x22_c00453{left:451.333333pt;}
.x95_c00453{left:454.266667pt;}
.x58_c00453{left:457.333333pt;}
.x89_c00453{left:458.533333pt;}
.x6_c00453{left:459.466667pt;}
.x78_c00453{left:462.133333pt;}
.x13_c00453{left:463.733333pt;}
.xe1_c00453{left:465.733333pt;}
.xbf_c00453{left:469.333333pt;}
.xd1_c00453{left:470.800000pt;}
.x40_c00453{left:471.866667pt;}
.x7_c00453{left:475.200000pt;}
.xca_c00453{left:479.066667pt;}
.x59_c00453{left:485.200000pt;}
.xe8_c00453{left:486.400000pt;}
.x96_c00453{left:487.866667pt;}
.x8a_c00453{left:489.200000pt;}
.xe2_c00453{left:491.066667pt;}
.x9f_c00453{left:492.666667pt;}
.xd7_c00453{left:495.600000pt;}
.x60_c00453{left:498.533333pt;}
.x31_c00453{left:499.733333pt;}
.x41_c00453{left:504.133333pt;}
.xa8_c00453{left:507.600000pt;}
.x5a_c00453{left:509.466667pt;}
.x23_c00453{left:512.133333pt;}
.x14_c00453{left:514.933333pt;}
.x6c_c00453{left:516.000000pt;}
.x7e_c00453{left:518.133333pt;}
.xd8_c00453{left:519.333333pt;}
.xc6_c00453{left:520.533333pt;}
.x79_c00453{left:522.666667pt;}
.xa0_c00453{left:524.666667pt;}
.x42_c00453{left:526.800000pt;}
.x24_c00453{left:530.000000pt;}
.x61_c00453{left:531.866667pt;}
.x6d_c00453{left:533.333333pt;}
.x7f_c00453{left:535.466667pt;}
.x32_c00453{left:538.133333pt;}
.x15_c00453{left:543.066667pt;}
.xae_c00453{left:544.133333pt;}
.xb6_c00453{left:548.266667pt;}
.xa9_c00453{left:552.666667pt;}
.x43_c00453{left:554.933333pt;}
.xfd_c00453{left:555.866667pt;}
.x62_c00453{left:556.800000pt;}
.xd9_c00453{left:560.000000pt;}
.xaf_c00453{left:566.800000pt;}
.xa1_c00453{left:568.266667pt;}
.x8b_c00453{left:571.466667pt;}
.x33_c00453{left:574.266667pt;}
.xee_c00453{left:575.333333pt;}
.xaa_c00453{left:578.000000pt;}
.x16_c00453{left:579.600000pt;}
.x97_c00453{left:584.133333pt;}
.x63_c00453{left:586.266667pt;}
.x80_c00453{left:588.266667pt;}
.xe3_c00453{left:589.866667pt;}
.xe9_c00453{left:591.733333pt;}
.xf1_c00453{left:594.133333pt;}
.xda_c00453{left:597.466667pt;}
.x44_c00453{left:600.000000pt;}
.x7a_c00453{left:601.066667pt;}
.x98_c00453{left:602.666667pt;}
.xf6_c00453{left:607.200000pt;}
.xb7_c00453{left:609.066667pt;}
.xa2_c00453{left:610.133333pt;}
.xfe_c00453{left:611.200000pt;}
.x34_c00453{left:614.933333pt;}
.xea_c00453{left:616.000000pt;}
.x45_c00453{left:617.600000pt;}
.x25_c00453{left:623.066667pt;}
.x64_c00453{left:624.000000pt;}
.xc0_c00453{left:625.866667pt;}
.x17_c00453{left:628.933333pt;}
.xf7_c00453{left:632.533333pt;}
.x6e_c00453{left:633.733333pt;}
.xb8_c00453{left:635.333333pt;}
.xb0_c00453{left:636.533333pt;}
.x8c_c00453{left:639.600000pt;}
.xdb_c00453{left:640.666667pt;}
.x35_c00453{left:644.666667pt;}
.xf2_c00453{left:647.600000pt;}
.x81_c00453{left:652.000000pt;}
.x26_c00453{left:653.466667pt;}
.xd2_c00453{left:656.533333pt;}
.xcb_c00453{left:657.733333pt;}
.xa3_c00453{left:659.733333pt;}
.xef_c00453{left:660.800000pt;}
.x65_c00453{left:662.666667pt;}
.x36_c00453{left:664.533333pt;}
.x46_c00453{left:666.266667pt;}
.xab_c00453{left:669.333333pt;}
.x7b_c00453{left:674.666667pt;}
.xcc_c00453{left:676.666667pt;}
.x5b_c00453{left:681.333333pt;}
.x99_c00453{left:683.200000pt;}
.x8d_c00453{left:685.066667pt;}
}





/* 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_c00454 {
    display:none;
  }
  .loading-indicator_c00454.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00454 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_c00454 { 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_c00454" -> "#page-container .classname_c00454")
 */
.pf_c00454 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00454 { /* 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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00454 { /* 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_c00454 { /* 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_c00454 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00454 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00454 {overflow:visible;}
  }
}
.c_c00454 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00454 { /* 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_c00454:after { /* webkit #35443 */
  content: '';
}
.t_c00454:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00454 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 */
}
.__c00454 { /* 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_c00454 { /* info for Javascript */
  display:none;
}
.l_c00454 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00454 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00454 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00454: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_c00454 {
    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_c00454.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00454.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_c00454 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00454{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00454;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.000000;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;}
.mb4_c00454{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m14_c00454{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00454{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00454{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m45_c00454{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00454{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m21_c00454{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mae_c00454{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m36_c00454{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m16_c00454{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m66_c00454{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m9_c00454{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00454{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m83_c00454{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00454{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00454{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00454{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00454{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m24_c00454{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00454{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00454{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m67_c00454{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00454{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m22_c00454{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00454{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m91_c00454{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00454{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m38_c00454{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00454{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m82_c00454{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00454{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00454{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m17_c00454{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mba_c00454{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m68_c00454{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m48_c00454{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m54_c00454{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m18_c00454{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00454{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00454{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00454{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00454{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00454{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00454{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00454{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mab_c00454{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00454{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00454{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m84_c00454{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m50_c00454{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m43_c00454{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m42_c00454{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00454{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00454{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m86_c00454{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00454{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00454{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00454{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m52_c00454{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00454{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00454{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m95_c00454{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m20_c00454{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00454{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00454{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m76_c00454{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m63_c00454{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00454{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00454{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m80_c00454{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m56_c00454{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00454{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m34_c00454{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m88_c00454{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00454{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m44_c00454{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m25_c00454{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m85_c00454{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.mc_c00454{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00454{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m61_c00454{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00454{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m64_c00454{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m65_c00454{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.maa_c00454{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m23_c00454{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);}
.m53_c00454{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m58_c00454{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mad_c00454{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m90_c00454{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m40_c00454{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2_c00454{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m72_c00454{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00454{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m87_c00454{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00454{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m70_c00454{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00454{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m15_c00454{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m46_c00454{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m98_c00454{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00454{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m26_c00454{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00454{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m71_c00454{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00454{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m60_c00454{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m99_c00454{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00454{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00454{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00454{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m93_c00454{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m74_c00454{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m41_c00454{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m49_c00454{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m69_c00454{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00454{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m12_c00454{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m19_c00454{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00454{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m39_c00454{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00454{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00454{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m27_c00454{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m81_c00454{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m73_c00454{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m77_c00454{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00454{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m55_c00454{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m33_c00454{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m35_c00454{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m89_c00454{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m28_c00454{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00454{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00454{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m62_c00454{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m59_c00454{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00454{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00454{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m29_c00454{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00454{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00454{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00454{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00454{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00454{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m75_c00454{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.m57_c00454{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00454{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m51_c00454{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00454{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00454{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m92_c00454{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m97_c00454{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m31_c00454{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00454{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.maf_c00454{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00454{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00454{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00454{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m78_c00454{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m79_c00454{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00454{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m0_c00454{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00454{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00454{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00454{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00454{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.mac_c00454{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00454{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m30_c00454{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m47_c00454{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m96_c00454{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00454{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m11_c00454{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00454{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00454{transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426750,0.000000,0.000000,0.250000,0,0);}
.m32_c00454{transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.546750,0.000000,0.000000,0.250000,0,0);}
.m94_c00454{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m37_c00454{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00454{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00454{vertical-align:0.000000px;}
.ls0_c00454{letter-spacing:0.000000px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{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__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00454{word-spacing:-9.125000px;}
.ws3_c00454{word-spacing:-3.125000px;}
.ws7_c00454{word-spacing:0.000000px;}
.ws6_c00454{word-spacing:6.906219px;}
.ws4_c00454{word-spacing:8.133407px;}
.ws1_c00454{word-spacing:9.628445px;}
.ws0_c00454{word-spacing:15.532525px;}
.ws2_c00454{word-spacing:19.049536px;}
.fc0_c00454{color:transparent;}
.fs0_c00454{font-size:54.000000px;}
.y0_c00454{bottom:0.000000px;}
.y2b_c00454{bottom:150.900000px;}
.y2a_c00454{bottom:167.100000px;}
.y29_c00454{bottom:212.100000px;}
.y28_c00454{bottom:232.200000px;}
.y27_c00454{bottom:251.700000px;}
.y26_c00454{bottom:271.800000px;}
.y25_c00454{bottom:291.600000px;}
.y24_c00454{bottom:311.700000px;}
.y23_c00454{bottom:332.250000px;}
.y22_c00454{bottom:352.350000px;}
.y21_c00454{bottom:372.150000px;}
.y20_c00454{bottom:392.700000px;}
.y1f_c00454{bottom:411.750000px;}
.y1e_c00454{bottom:431.850000px;}
.y1d_c00454{bottom:451.650000px;}
.y1c_c00454{bottom:471.450000px;}
.y1b_c00454{bottom:491.550000px;}
.y1a_c00454{bottom:511.350000px;}
.y19_c00454{bottom:531.450000px;}
.y18_c00454{bottom:550.950000px;}
.y17_c00454{bottom:571.050000px;}
.y16_c00454{bottom:590.850000px;}
.y15_c00454{bottom:610.950000px;}
.y14_c00454{bottom:630.750000px;}
.y13_c00454{bottom:650.550000px;}
.y12_c00454{bottom:670.350000px;}
.y11_c00454{bottom:690.600000px;}
.y10_c00454{bottom:710.400000px;}
.yf_c00454{bottom:730.500000px;}
.ye_c00454{bottom:750.300000px;}
.yd_c00454{bottom:788.250000px;}
.yc_c00454{bottom:808.350000px;}
.yb_c00454{bottom:828.450000px;}
.ya_c00454{bottom:848.250000px;}
.y9_c00454{bottom:867.750000px;}
.y8_c00454{bottom:887.850000px;}
.y7_c00454{bottom:907.950000px;}
.y6_c00454{bottom:927.750000px;}
.y5_c00454{bottom:947.850000px;}
.y4_c00454{bottom:967.650000px;}
.y3_c00454{bottom:987.600000px;}
.y2_c00454{bottom:1007.700000px;}
.y1_c00454{bottom:1045.800000px;}
.h2_c00454{height:54.000000px;}
.h1_c00454{height:1166.250000px;}
.h0_c00454{height:1166.400056px;}
.w0_c00454{width:920.879975px;}
.w1_c00454{width:921.000000px;}
.x0_c00454{left:0.000000px;}
.x10c_c00454{left:139.500000px;}
.x5e_c00454{left:141.000000px;}
.x3_c00454{left:142.200000px;}
.x1_c00454{left:144.000000px;}
.x69_c00454{left:156.750000px;}
.x102_c00454{left:158.700000px;}
.x13f_c00454{left:160.500000px;}
.x94_c00454{left:161.550000px;}
.xde_c00454{left:164.100000px;}
.x112_c00454{left:165.450000px;}
.x32_c00454{left:166.650000px;}
.x143_c00454{left:167.700000px;}
.x4e_c00454{left:170.250000px;}
.xf8_c00454{left:171.450000px;}
.x4_c00454{left:172.800000px;}
.x134_c00454{left:173.850000px;}
.x137_c00454{left:175.950000px;}
.x103_c00454{left:179.550000px;}
.x126_c00454{left:180.750000px;}
.x13c_c00454{left:181.950000px;}
.x14_c00454{left:185.100000px;}
.xbf_c00454{left:186.150000px;}
.x12a_c00454{left:187.950000px;}
.x11c_c00454{left:189.150000px;}
.x42_c00454{left:191.400000px;}
.x33_c00454{left:194.700000px;}
.xf9_c00454{left:196.950000px;}
.xdf_c00454{left:200.100000px;}
.xf2_c00454{left:201.600000px;}
.x104_c00454{left:203.250000px;}
.x113_c00454{left:204.300000px;}
.x24_c00454{left:205.950000px;}
.x4f_c00454{left:208.350000px;}
.xb7_c00454{left:210.300000px;}
.xc7_c00454{left:212.100000px;}
.x122_c00454{left:213.150000px;}
.x5_c00454{left:214.200000px;}
.xe0_c00454{left:221.400000px;}
.x77_c00454{left:223.050000px;}
.x50_c00454{left:228.150000px;}
.x15_c00454{left:230.100000px;}
.xf3_c00454{left:231.150000px;}
.xc0_c00454{left:232.200000px;}
.xa9_c00454{left:234.300000px;}
.xb0_c00454{left:236.700000px;}
.x6a_c00454{left:238.050000px;}
.x8a_c00454{left:239.100000px;}
.x16_c00454{left:241.200000px;}
.xc8_c00454{left:242.700000px;}
.x114_c00454{left:245.400000px;}
.x95_c00454{left:246.900000px;}
.x34_c00454{left:249.450000px;}
.x43_c00454{left:250.500000px;}
.x6b_c00454{left:252.450000px;}
.x140_c00454{left:257.400000px;}
.x5f_c00454{left:259.050000px;}
.x78_c00454{left:261.150000px;}
.xd6_c00454{left:262.650000px;}
.xaa_c00454{left:264.600000px;}
.x17_c00454{left:267.450000px;}
.xc1_c00454{left:268.500000px;}
.x35_c00454{left:270.300000px;}
.x115_c00454{left:273.900000px;}
.x51_c00454{left:275.700000px;}
.xa2_c00454{left:276.900000px;}
.xc9_c00454{left:279.000000px;}
.x25_c00454{left:280.500000px;}
.x105_c00454{left:282.450000px;}
.x18_c00454{left:283.950000px;}
.x60_c00454{left:285.000000px;}
.x6c_c00454{left:287.400000px;}
.x6_c00454{left:289.350000px;}
.x79_c00454{left:292.800000px;}
.xd0_c00454{left:295.500000px;}
.x52_c00454{left:297.000000px;}
.xd7_c00454{left:298.950000px;}
.xb8_c00454{left:303.450000px;}
.xfa_c00454{left:304.950000px;}
.x19_c00454{left:306.600000px;}
.x8b_c00454{left:309.000000px;}
.xc2_c00454{left:310.200000px;}
.x9b_c00454{left:311.700000px;}
.xed_c00454{left:313.200000px;}
.x36_c00454{left:315.600000px;}
.x7_c00454{left:316.650000px;}
.x53_c00454{left:318.300000px;}
.xe1_c00454{left:319.650000px;}
.xb9_c00454{left:321.150000px;}
.x106_c00454{left:323.100000px;}
.x1a_c00454{left:324.300000px;}
.x12b_c00454{left:325.500000px;}
.x135_c00454{left:327.450000px;}
.x82_c00454{left:331.500000px;}
.x37_c00454{left:332.550000px;}
.x127_c00454{left:336.900000px;}
.xba_c00454{left:338.850000px;}
.xf4_c00454{left:340.950000px;}
.x107_c00454{left:342.150000px;}
.x8c_c00454{left:343.200000px;}
.x44_c00454{left:345.600000px;}
.x26_c00454{left:347.400000px;}
.x6d_c00454{left:350.400000px;}
.x83_c00454{left:351.600000px;}
.xb1_c00454{left:353.100000px;}
.xd1_c00454{left:354.150000px;}
.x7a_c00454{left:357.600000px;}
.x1b_c00454{left:358.800000px;}
.x96_c00454{left:362.850000px;}
.x8d_c00454{left:364.800000px;}
.xe2_c00454{left:366.450000px;}
.xda_c00454{left:368.550000px;}
.x1c_c00454{left:371.100000px;}
.x8_c00454{left:373.950000px;}
.x45_c00454{left:375.150000px;}
.xd2_c00454{left:376.800000px;}
.x13d_c00454{left:378.300000px;}
.x38_c00454{left:379.350000px;}
.x84_c00454{left:380.700000px;}
.xb2_c00454{left:382.650000px;}
.x6e_c00454{left:384.600000px;}
.x128_c00454{left:385.800000px;}
.xe3_c00454{left:387.750000px;}
.x27_c00454{left:392.100000px;}
.xbb_c00454{left:394.650000px;}
.xc3_c00454{left:396.900000px;}
.x8e_c00454{left:399.750000px;}
.xe8_c00454{left:401.550000px;}
.x9_c00454{left:404.850000px;}
.xdb_c00454{left:406.050000px;}
.x54_c00454{left:407.850000px;}
.xca_c00454{left:409.350000px;}
.xb3_c00454{left:410.700000px;}
.x28_c00454{left:413.700000px;}
.x6f_c00454{left:415.200000px;}
.x39_c00454{left:416.400000px;}
.x11d_c00454{left:418.800000px;}
.x46_c00454{left:422.700000px;}
.x55_c00454{left:423.750000px;}
.x1d_c00454{left:425.100000px;}
.xa3_c00454{left:427.950000px;}
.x132_c00454{left:430.500000px;}
.xb4_c00454{left:431.550000px;}
.x123_c00454{left:434.400000px;}
.xdc_c00454{left:435.600000px;}
.x97_c00454{left:438.450000px;}
.x2_c00454{left:440.250000px;}
.xe9_c00454{left:441.450000px;}
.xa4_c00454{left:442.650000px;}
.x3a_c00454{left:444.150000px;}
.x9c_c00454{left:445.950000px;}
.xab_c00454{left:447.450000px;}
.x11e_c00454{left:450.150000px;}
.x1e_c00454{left:451.350000px;}
.xa_c00454{left:453.450000px;}
.x10d_c00454{left:455.550000px;}
.x136_c00454{left:458.550000px;}
.xc4_c00454{left:460.950000px;}
.x12c_c00454{left:462.150000px;}
.x29_c00454{left:464.100000px;}
.xbc_c00454{left:465.150000px;}
.xfb_c00454{left:466.500000px;}
.x7b_c00454{left:468.150000px;}
.xb_c00454{left:469.950000px;}
.x56_c00454{left:472.650000px;}
.x61_c00454{left:475.500000px;}
.x1f_c00454{left:480.450000px;}
.xcb_c00454{left:482.550000px;}
.x8f_c00454{left:483.900000px;}
.x47_c00454{left:484.950000px;}
.xfc_c00454{left:486.600000px;}
.x2a_c00454{left:489.000000px;}
.x7c_c00454{left:491.550000px;}
.x57_c00454{left:495.300000px;}
.x3b_c00454{left:497.100000px;}
.xb5_c00454{left:499.950000px;}
.x70_c00454{left:501.600000px;}
.x11f_c00454{left:504.600000px;}
.x12d_c00454{left:505.650000px;}
.x124_c00454{left:510.000000px;}
.x90_c00454{left:511.200000px;}
.x62_c00454{left:512.550000px;}
.xee_c00454{left:513.600000px;}
.x20_c00454{left:514.950000px;}
.x141_c00454{left:516.450000px;}
.xc_c00454{left:517.800000px;}
.x58_c00454{left:519.000000px;}
.xb6_c00454{left:520.800000px;}
.x108_c00454{left:522.750000px;}
.x71_c00454{left:527.550000px;}
.xac_c00454{left:532.350000px;}
.x48_c00454{left:533.850000px;}
.x3c_c00454{left:535.200000px;}
.xc5_c00454{left:537.600000px;}
.xef_c00454{left:539.100000px;}
.x85_c00454{left:540.150000px;}
.x63_c00454{left:541.650000px;}
.xea_c00454{left:545.100000px;}
.x59_c00454{left:548.100000px;}
.xbd_c00454{left:549.750000px;}
.xdd_c00454{left:551.250000px;}
.x109_c00454{left:552.600000px;}
.x21_c00454{left:555.600000px;}
.xe4_c00454{left:556.950000px;}
.x91_c00454{left:560.100000px;}
.x3d_c00454{left:562.200000px;}
.x9d_c00454{left:565.200000px;}
.xd3_c00454{left:567.600000px;}
.x2b_c00454{left:569.250000px;}
.x144_c00454{left:570.300000px;}
.x12e_c00454{left:571.500000px;}
.x22_c00454{left:573.300000px;}
.x86_c00454{left:575.400000px;}
.xd_c00454{left:577.200000px;}
.x13e_c00454{left:580.350000px;}
.xe5_c00454{left:581.850000px;}
.x9e_c00454{left:585.000000px;}
.x7d_c00454{left:587.400000px;}
.x116_c00454{left:589.800000px;}
.x98_c00454{left:591.450000px;}
.x3e_c00454{left:592.500000px;}
.x10a_c00454{left:594.000000px;}
.xa5_c00454{left:595.350000px;}
.x49_c00454{left:596.850000px;}
.xeb_c00454{left:598.800000px;}
.xfd_c00454{left:601.050000px;}
.x87_c00454{left:602.700000px;}
.x2c_c00454{left:604.500000px;}
.x13a_c00454{left:606.300000px;}
.xd4_c00454{left:607.950000px;}
.x5a_c00454{left:609.000000px;}
.x117_c00454{left:610.350000px;}
.x23_c00454{left:612.900000px;}
.xad_c00454{left:614.100000px;}
.xe6_c00454{left:617.100000px;}
.x3f_c00454{left:619.800000px;}
.x64_c00454{left:622.350000px;}
.x2d_c00454{left:624.000000px;}
.xcc_c00454{left:625.200000px;}
.x118_c00454{left:626.550000px;}
.x72_c00454{left:627.600000px;}
.x99_c00454{left:630.000000px;}
.x5b_c00454{left:632.400000px;}
.x7e_c00454{left:634.500000px;}
.x10e_c00454{left:638.400000px;}
.xe_c00454{left:639.450000px;}
.x2e_c00454{left:640.950000px;}
.x65_c00454{left:642.150000px;}
.xcd_c00454{left:643.200000px;}
.x125_c00454{left:644.250000px;}
.xf5_c00454{left:645.900000px;}
.xfe_c00454{left:647.850000px;}
.x73_c00454{left:650.250000px;}
.xa6_c00454{left:654.300000px;}
.xf_c00454{left:657.750000px;}
.x40_c00454{left:659.100000px;}
.x7f_c00454{left:665.850000px;}
.x119_c00454{left:666.900000px;}
.x9a_c00454{left:668.100000px;}
.x13b_c00454{left:669.750000px;}
.x66_c00454{left:670.950000px;}
.x9f_c00454{left:672.150000px;}
.x138_c00454{left:674.400000px;}
.x5c_c00454{left:677.700000px;}
.xe7_c00454{left:679.050000px;}
.x120_c00454{left:681.450000px;}
.x10_c00454{left:684.750000px;}
.x4a_c00454{left:687.150000px;}
.x10b_c00454{left:688.650000px;}
.xa0_c00454{left:690.150000px;}
.x92_c00454{left:691.500000px;}
.x74_c00454{left:692.700000px;}
.x10f_c00454{left:693.900000px;}
.x80_c00454{left:695.400000px;}
.xd8_c00454{left:696.450000px;}
.xa7_c00454{left:698.550000px;}
.x2f_c00454{left:700.050000px;}
.x4b_c00454{left:702.600000px;}
.xae_c00454{left:705.150000px;}
.x129_c00454{left:706.500000px;}
.xff_c00454{left:709.350000px;}
.xf0_c00454{left:712.500000px;}
.x142_c00454{left:713.550000px;}
.x5d_c00454{left:716.250000px;}
.x11_c00454{left:718.200000px;}
.x30_c00454{left:719.850000px;}
.xa8_c00454{left:720.900000px;}
.x67_c00454{left:722.400000px;}
.x75_c00454{left:723.600000px;}
.xec_c00454{left:725.400000px;}
.xf1_c00454{left:727.200000px;}
.x139_c00454{left:729.900000px;}
.x12f_c00454{left:731.250000px;}
.x11a_c00454{left:736.350000px;}
.x41_c00454{left:737.550000px;}
.xc6_c00454{left:739.200000px;}
.xf6_c00454{left:741.000000px;}
.xd5_c00454{left:744.300000px;}
.xce_c00454{left:745.500000px;}
.xd9_c00454{left:747.150000px;}
.x88_c00454{left:749.250000px;}
.x130_c00454{left:750.300000px;}
.x93_c00454{left:757.050000px;}
.x12_c00454{left:759.900000px;}
.x133_c00454{left:760.950000px;}
.x4c_c00454{left:762.000000px;}
.xcf_c00454{left:763.200000px;}
.x100_c00454{left:765.600000px;}
.xa1_c00454{left:768.000000px;}
.xf7_c00454{left:769.050000px;}
.xaf_c00454{left:772.050000px;}
.x131_c00454{left:775.200000px;}
.x4d_c00454{left:777.150000px;}
.x13_c00454{left:779.400000px;}
.x110_c00454{left:781.050000px;}
.x121_c00454{left:782.250000px;}
.x31_c00454{left:783.600000px;}
.x101_c00454{left:785.100000px;}
.x81_c00454{left:786.450000px;}
.x11b_c00454{left:787.800000px;}
.x89_c00454{left:788.850000px;}
.xbe_c00454{left:789.900000px;}
.x111_c00454{left:792.600000px;}
.x68_c00454{left:796.200000px;}
.x76_c00454{left:797.700000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws5_c00454{word-spacing:-8.111111pt;}
.ws3_c00454{word-spacing:-2.777778pt;}
.ws7_c00454{word-spacing:0.000000pt;}
.ws6_c00454{word-spacing:6.138861pt;}
.ws4_c00454{word-spacing:7.229695pt;}
.ws1_c00454{word-spacing:8.558618pt;}
.ws0_c00454{word-spacing:13.806689pt;}
.ws2_c00454{word-spacing:16.932921pt;}
.fs0_c00454{font-size:48.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y2b_c00454{bottom:134.133333pt;}
.y2a_c00454{bottom:148.533333pt;}
.y29_c00454{bottom:188.533333pt;}
.y28_c00454{bottom:206.400000pt;}
.y27_c00454{bottom:223.733333pt;}
.y26_c00454{bottom:241.600000pt;}
.y25_c00454{bottom:259.200000pt;}
.y24_c00454{bottom:277.066667pt;}
.y23_c00454{bottom:295.333333pt;}
.y22_c00454{bottom:313.200000pt;}
.y21_c00454{bottom:330.800000pt;}
.y20_c00454{bottom:349.066667pt;}
.y1f_c00454{bottom:366.000000pt;}
.y1e_c00454{bottom:383.866667pt;}
.y1d_c00454{bottom:401.466667pt;}
.y1c_c00454{bottom:419.066667pt;}
.y1b_c00454{bottom:436.933333pt;}
.y1a_c00454{bottom:454.533333pt;}
.y19_c00454{bottom:472.400000pt;}
.y18_c00454{bottom:489.733333pt;}
.y17_c00454{bottom:507.600000pt;}
.y16_c00454{bottom:525.200000pt;}
.y15_c00454{bottom:543.066667pt;}
.y14_c00454{bottom:560.666667pt;}
.y13_c00454{bottom:578.266667pt;}
.y12_c00454{bottom:595.866667pt;}
.y11_c00454{bottom:613.866667pt;}
.y10_c00454{bottom:631.466667pt;}
.yf_c00454{bottom:649.333333pt;}
.ye_c00454{bottom:666.933333pt;}
.yd_c00454{bottom:700.666667pt;}
.yc_c00454{bottom:718.533333pt;}
.yb_c00454{bottom:736.400000pt;}
.ya_c00454{bottom:754.000000pt;}
.y9_c00454{bottom:771.333333pt;}
.y8_c00454{bottom:789.200000pt;}
.y7_c00454{bottom:807.066667pt;}
.y6_c00454{bottom:824.666667pt;}
.y5_c00454{bottom:842.533333pt;}
.y4_c00454{bottom:860.133333pt;}
.y3_c00454{bottom:877.866667pt;}
.y2_c00454{bottom:895.733333pt;}
.y1_c00454{bottom:929.600000pt;}
.h2_c00454{height:48.000000pt;}
.h1_c00454{height:1036.666667pt;}
.h0_c00454{height:1036.800049pt;}
.w0_c00454{width:818.559977pt;}
.w1_c00454{width:818.666667pt;}
.x0_c00454{left:0.000000pt;}
.x10c_c00454{left:124.000000pt;}
.x5e_c00454{left:125.333333pt;}
.x3_c00454{left:126.400000pt;}
.x1_c00454{left:128.000000pt;}
.x69_c00454{left:139.333333pt;}
.x102_c00454{left:141.066667pt;}
.x13f_c00454{left:142.666667pt;}
.x94_c00454{left:143.600000pt;}
.xde_c00454{left:145.866667pt;}
.x112_c00454{left:147.066667pt;}
.x32_c00454{left:148.133333pt;}
.x143_c00454{left:149.066667pt;}
.x4e_c00454{left:151.333333pt;}
.xf8_c00454{left:152.400000pt;}
.x4_c00454{left:153.600000pt;}
.x134_c00454{left:154.533333pt;}
.x137_c00454{left:156.400000pt;}
.x103_c00454{left:159.600000pt;}
.x126_c00454{left:160.666667pt;}
.x13c_c00454{left:161.733333pt;}
.x14_c00454{left:164.533333pt;}
.xbf_c00454{left:165.466667pt;}
.x12a_c00454{left:167.066667pt;}
.x11c_c00454{left:168.133333pt;}
.x42_c00454{left:170.133333pt;}
.x33_c00454{left:173.066667pt;}
.xf9_c00454{left:175.066667pt;}
.xdf_c00454{left:177.866667pt;}
.xf2_c00454{left:179.200000pt;}
.x104_c00454{left:180.666667pt;}
.x113_c00454{left:181.600000pt;}
.x24_c00454{left:183.066667pt;}
.x4f_c00454{left:185.200000pt;}
.xb7_c00454{left:186.933333pt;}
.xc7_c00454{left:188.533333pt;}
.x122_c00454{left:189.466667pt;}
.x5_c00454{left:190.400000pt;}
.xe0_c00454{left:196.800000pt;}
.x77_c00454{left:198.266667pt;}
.x50_c00454{left:202.800000pt;}
.x15_c00454{left:204.533333pt;}
.xf3_c00454{left:205.466667pt;}
.xc0_c00454{left:206.400000pt;}
.xa9_c00454{left:208.266667pt;}
.xb0_c00454{left:210.400000pt;}
.x6a_c00454{left:211.600000pt;}
.x8a_c00454{left:212.533333pt;}
.x16_c00454{left:214.400000pt;}
.xc8_c00454{left:215.733333pt;}
.x114_c00454{left:218.133333pt;}
.x95_c00454{left:219.466667pt;}
.x34_c00454{left:221.733333pt;}
.x43_c00454{left:222.666667pt;}
.x6b_c00454{left:224.400000pt;}
.x140_c00454{left:228.800000pt;}
.x5f_c00454{left:230.266667pt;}
.x78_c00454{left:232.133333pt;}
.xd6_c00454{left:233.466667pt;}
.xaa_c00454{left:235.200000pt;}
.x17_c00454{left:237.733333pt;}
.xc1_c00454{left:238.666667pt;}
.x35_c00454{left:240.266667pt;}
.x115_c00454{left:243.466667pt;}
.x51_c00454{left:245.066667pt;}
.xa2_c00454{left:246.133333pt;}
.xc9_c00454{left:248.000000pt;}
.x25_c00454{left:249.333333pt;}
.x105_c00454{left:251.066667pt;}
.x18_c00454{left:252.400000pt;}
.x60_c00454{left:253.333333pt;}
.x6c_c00454{left:255.466667pt;}
.x6_c00454{left:257.200000pt;}
.x79_c00454{left:260.266667pt;}
.xd0_c00454{left:262.666667pt;}
.x52_c00454{left:264.000000pt;}
.xd7_c00454{left:265.733333pt;}
.xb8_c00454{left:269.733333pt;}
.xfa_c00454{left:271.066667pt;}
.x19_c00454{left:272.533333pt;}
.x8b_c00454{left:274.666667pt;}
.xc2_c00454{left:275.733333pt;}
.x9b_c00454{left:277.066667pt;}
.xed_c00454{left:278.400000pt;}
.x36_c00454{left:280.533333pt;}
.x7_c00454{left:281.466667pt;}
.x53_c00454{left:282.933333pt;}
.xe1_c00454{left:284.133333pt;}
.xb9_c00454{left:285.466667pt;}
.x106_c00454{left:287.200000pt;}
.x1a_c00454{left:288.266667pt;}
.x12b_c00454{left:289.333333pt;}
.x135_c00454{left:291.066667pt;}
.x82_c00454{left:294.666667pt;}
.x37_c00454{left:295.600000pt;}
.x127_c00454{left:299.466667pt;}
.xba_c00454{left:301.200000pt;}
.xf4_c00454{left:303.066667pt;}
.x107_c00454{left:304.133333pt;}
.x8c_c00454{left:305.066667pt;}
.x44_c00454{left:307.200000pt;}
.x26_c00454{left:308.800000pt;}
.x6d_c00454{left:311.466667pt;}
.x83_c00454{left:312.533333pt;}
.xb1_c00454{left:313.866667pt;}
.xd1_c00454{left:314.800000pt;}
.x7a_c00454{left:317.866667pt;}
.x1b_c00454{left:318.933333pt;}
.x96_c00454{left:322.533333pt;}
.x8d_c00454{left:324.266667pt;}
.xe2_c00454{left:325.733333pt;}
.xda_c00454{left:327.600000pt;}
.x1c_c00454{left:329.866667pt;}
.x8_c00454{left:332.400000pt;}
.x45_c00454{left:333.466667pt;}
.xd2_c00454{left:334.933333pt;}
.x13d_c00454{left:336.266667pt;}
.x38_c00454{left:337.200000pt;}
.x84_c00454{left:338.400000pt;}
.xb2_c00454{left:340.133333pt;}
.x6e_c00454{left:341.866667pt;}
.x128_c00454{left:342.933333pt;}
.xe3_c00454{left:344.666667pt;}
.x27_c00454{left:348.533333pt;}
.xbb_c00454{left:350.800000pt;}
.xc3_c00454{left:352.800000pt;}
.x8e_c00454{left:355.333333pt;}
.xe8_c00454{left:356.933333pt;}
.x9_c00454{left:359.866667pt;}
.xdb_c00454{left:360.933333pt;}
.x54_c00454{left:362.533333pt;}
.xca_c00454{left:363.866667pt;}
.xb3_c00454{left:365.066667pt;}
.x28_c00454{left:367.733333pt;}
.x6f_c00454{left:369.066667pt;}
.x39_c00454{left:370.133333pt;}
.x11d_c00454{left:372.266667pt;}
.x46_c00454{left:375.733333pt;}
.x55_c00454{left:376.666667pt;}
.x1d_c00454{left:377.866667pt;}
.xa3_c00454{left:380.400000pt;}
.x132_c00454{left:382.666667pt;}
.xb4_c00454{left:383.600000pt;}
.x123_c00454{left:386.133333pt;}
.xdc_c00454{left:387.200000pt;}
.x97_c00454{left:389.733333pt;}
.x2_c00454{left:391.333333pt;}
.xe9_c00454{left:392.400000pt;}
.xa4_c00454{left:393.466667pt;}
.x3a_c00454{left:394.800000pt;}
.x9c_c00454{left:396.400000pt;}
.xab_c00454{left:397.733333pt;}
.x11e_c00454{left:400.133333pt;}
.x1e_c00454{left:401.200000pt;}
.xa_c00454{left:403.066667pt;}
.x10d_c00454{left:404.933333pt;}
.x136_c00454{left:407.600000pt;}
.xc4_c00454{left:409.733333pt;}
.x12c_c00454{left:410.800000pt;}
.x29_c00454{left:412.533333pt;}
.xbc_c00454{left:413.466667pt;}
.xfb_c00454{left:414.666667pt;}
.x7b_c00454{left:416.133333pt;}
.xb_c00454{left:417.733333pt;}
.x56_c00454{left:420.133333pt;}
.x61_c00454{left:422.666667pt;}
.x1f_c00454{left:427.066667pt;}
.xcb_c00454{left:428.933333pt;}
.x8f_c00454{left:430.133333pt;}
.x47_c00454{left:431.066667pt;}
.xfc_c00454{left:432.533333pt;}
.x2a_c00454{left:434.666667pt;}
.x7c_c00454{left:436.933333pt;}
.x57_c00454{left:440.266667pt;}
.x3b_c00454{left:441.866667pt;}
.xb5_c00454{left:444.400000pt;}
.x70_c00454{left:445.866667pt;}
.x11f_c00454{left:448.533333pt;}
.x12d_c00454{left:449.466667pt;}
.x124_c00454{left:453.333333pt;}
.x90_c00454{left:454.400000pt;}
.x62_c00454{left:455.600000pt;}
.xee_c00454{left:456.533333pt;}
.x20_c00454{left:457.733333pt;}
.x141_c00454{left:459.066667pt;}
.xc_c00454{left:460.266667pt;}
.x58_c00454{left:461.333333pt;}
.xb6_c00454{left:462.933333pt;}
.x108_c00454{left:464.666667pt;}
.x71_c00454{left:468.933333pt;}
.xac_c00454{left:473.200000pt;}
.x48_c00454{left:474.533333pt;}
.x3c_c00454{left:475.733333pt;}
.xc5_c00454{left:477.866667pt;}
.xef_c00454{left:479.200000pt;}
.x85_c00454{left:480.133333pt;}
.x63_c00454{left:481.466667pt;}
.xea_c00454{left:484.533333pt;}
.x59_c00454{left:487.200000pt;}
.xbd_c00454{left:488.666667pt;}
.xdd_c00454{left:490.000000pt;}
.x109_c00454{left:491.200000pt;}
.x21_c00454{left:493.866667pt;}
.xe4_c00454{left:495.066667pt;}
.x91_c00454{left:497.866667pt;}
.x3d_c00454{left:499.733333pt;}
.x9d_c00454{left:502.400000pt;}
.xd3_c00454{left:504.533333pt;}
.x2b_c00454{left:506.000000pt;}
.x144_c00454{left:506.933333pt;}
.x12e_c00454{left:508.000000pt;}
.x22_c00454{left:509.600000pt;}
.x86_c00454{left:511.466667pt;}
.xd_c00454{left:513.066667pt;}
.x13e_c00454{left:515.866667pt;}
.xe5_c00454{left:517.200000pt;}
.x9e_c00454{left:520.000000pt;}
.x7d_c00454{left:522.133333pt;}
.x116_c00454{left:524.266667pt;}
.x98_c00454{left:525.733333pt;}
.x3e_c00454{left:526.666667pt;}
.x10a_c00454{left:528.000000pt;}
.xa5_c00454{left:529.200000pt;}
.x49_c00454{left:530.533333pt;}
.xeb_c00454{left:532.266667pt;}
.xfd_c00454{left:534.266667pt;}
.x87_c00454{left:535.733333pt;}
.x2c_c00454{left:537.333333pt;}
.x13a_c00454{left:538.933333pt;}
.xd4_c00454{left:540.400000pt;}
.x5a_c00454{left:541.333333pt;}
.x117_c00454{left:542.533333pt;}
.x23_c00454{left:544.800000pt;}
.xad_c00454{left:545.866667pt;}
.xe6_c00454{left:548.533333pt;}
.x3f_c00454{left:550.933333pt;}
.x64_c00454{left:553.200000pt;}
.x2d_c00454{left:554.666667pt;}
.xcc_c00454{left:555.733333pt;}
.x118_c00454{left:556.933333pt;}
.x72_c00454{left:557.866667pt;}
.x99_c00454{left:560.000000pt;}
.x5b_c00454{left:562.133333pt;}
.x7e_c00454{left:564.000000pt;}
.x10e_c00454{left:567.466667pt;}
.xe_c00454{left:568.400000pt;}
.x2e_c00454{left:569.733333pt;}
.x65_c00454{left:570.800000pt;}
.xcd_c00454{left:571.733333pt;}
.x125_c00454{left:572.666667pt;}
.xf5_c00454{left:574.133333pt;}
.xfe_c00454{left:575.866667pt;}
.x73_c00454{left:578.000000pt;}
.xa6_c00454{left:581.600000pt;}
.xf_c00454{left:584.666667pt;}
.x40_c00454{left:585.866667pt;}
.x7f_c00454{left:591.866667pt;}
.x119_c00454{left:592.800000pt;}
.x9a_c00454{left:593.866667pt;}
.x13b_c00454{left:595.333333pt;}
.x66_c00454{left:596.400000pt;}
.x9f_c00454{left:597.466667pt;}
.x138_c00454{left:599.466667pt;}
.x5c_c00454{left:602.400000pt;}
.xe7_c00454{left:603.600000pt;}
.x120_c00454{left:605.733333pt;}
.x10_c00454{left:608.666667pt;}
.x4a_c00454{left:610.800000pt;}
.x10b_c00454{left:612.133333pt;}
.xa0_c00454{left:613.466667pt;}
.x92_c00454{left:614.666667pt;}
.x74_c00454{left:615.733333pt;}
.x10f_c00454{left:616.800000pt;}
.x80_c00454{left:618.133333pt;}
.xd8_c00454{left:619.066667pt;}
.xa7_c00454{left:620.933333pt;}
.x2f_c00454{left:622.266667pt;}
.x4b_c00454{left:624.533333pt;}
.xae_c00454{left:626.800000pt;}
.x129_c00454{left:628.000000pt;}
.xff_c00454{left:630.533333pt;}
.xf0_c00454{left:633.333333pt;}
.x142_c00454{left:634.266667pt;}
.x5d_c00454{left:636.666667pt;}
.x11_c00454{left:638.400000pt;}
.x30_c00454{left:639.866667pt;}
.xa8_c00454{left:640.800000pt;}
.x67_c00454{left:642.133333pt;}
.x75_c00454{left:643.200000pt;}
.xec_c00454{left:644.800000pt;}
.xf1_c00454{left:646.400000pt;}
.x139_c00454{left:648.800000pt;}
.x12f_c00454{left:650.000000pt;}
.x11a_c00454{left:654.533333pt;}
.x41_c00454{left:655.600000pt;}
.xc6_c00454{left:657.066667pt;}
.xf6_c00454{left:658.666667pt;}
.xd5_c00454{left:661.600000pt;}
.xce_c00454{left:662.666667pt;}
.xd9_c00454{left:664.133333pt;}
.x88_c00454{left:666.000000pt;}
.x130_c00454{left:666.933333pt;}
.x93_c00454{left:672.933333pt;}
.x12_c00454{left:675.466667pt;}
.x133_c00454{left:676.400000pt;}
.x4c_c00454{left:677.333333pt;}
.xcf_c00454{left:678.400000pt;}
.x100_c00454{left:680.533333pt;}
.xa1_c00454{left:682.666667pt;}
.xf7_c00454{left:683.600000pt;}
.xaf_c00454{left:686.266667pt;}
.x131_c00454{left:689.066667pt;}
.x4d_c00454{left:690.800000pt;}
.x13_c00454{left:692.800000pt;}
.x110_c00454{left:694.266667pt;}
.x121_c00454{left:695.333333pt;}
.x31_c00454{left:696.533333pt;}
.x101_c00454{left:697.866667pt;}
.x81_c00454{left:699.066667pt;}
.x11b_c00454{left:700.266667pt;}
.x89_c00454{left:701.200000pt;}
.xbe_c00454{left:702.133333pt;}
.x111_c00454{left:704.533333pt;}
.x68_c00454{left:707.733333pt;}
.x76_c00454{left:709.066667pt;}
}





/* 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_c00455 {
    display:none;
  }
  .loading-indicator_c00455.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00455 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_c00455 { 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_c00455" -> "#page-container .classname_c00455")
 */
.pf_c00455 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00455 { /* 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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00455 { /* 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_c00455 { /* 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_c00455 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00455 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00455 {overflow:visible;}
  }
}
.c_c00455 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00455 { /* 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_c00455:after { /* webkit #35443 */
  content: '';
}
.t_c00455:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00455 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 */
}
.__c00455 { /* 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_c00455 { /* info for Javascript */
  display:none;
}
.l_c00455 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00455 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00455 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00455: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_c00455 {
    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_c00455.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00455.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_c00455 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00455{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00455;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.000000;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;}
.m6_c00455{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m49_c00455{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00455{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m38_c00455{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00455{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00455{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m15_c00455{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00455{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m20_c00455{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00455{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00455{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2_c00455{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00455{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00455{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m22_c00455{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m37_c00455{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00455{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m19_c00455{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36_c00455{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m33_c00455{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m24_c00455{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00455{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00455{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m41_c00455{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00455{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m11_c00455{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m47_c00455{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m16_c00455{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00455{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m17_c00455{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.me_c00455{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m34_c00455{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m28_c00455{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00455{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7_c00455{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m31_c00455{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m14_c00455{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m44_c00455{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00455{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00455{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m45_c00455{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00455{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00455{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00455{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m26_c00455{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m29_c00455{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m18_c00455{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m10_c00455{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m46_c00455{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00455{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00455{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m48_c00455{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb_c00455{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m25_c00455{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00455{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.mf_c00455{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00455{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m40_c00455{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m23_c00455{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00455{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m30_c00455{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m32_c00455{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00455{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m43_c00455{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m13_c00455{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00455{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c00455{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.v0_c00455{vertical-align:0.000000px;}
.ls0_c00455{letter-spacing:0.000000px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{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__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00455{word-spacing:0.000000px;}
.ws2_c00455{word-spacing:3.518519px;}
.ws0_c00455{word-spacing:6.447368px;}
.ws1_c00455{word-spacing:6.527778px;}
.fc0_c00455{color:transparent;}
.fs0_c00455{font-size:60.000000px;}
.y0_c00455{bottom:0.000000px;}
.ya_c00455{bottom:853.650000px;}
.y9_c00455{bottom:873.750000px;}
.y8_c00455{bottom:893.850000px;}
.y7_c00455{bottom:913.800000px;}
.y6_c00455{bottom:933.300000px;}
.y5_c00455{bottom:953.400000px;}
.y4_c00455{bottom:973.200000px;}
.y3_c00455{bottom:993.000000px;}
.y2_c00455{bottom:1013.100000px;}
.y1_c00455{bottom:1050.900000px;}
.h2_c00455{height:60.000000px;}
.h1_c00455{height:1166.250000px;}
.h0_c00455{height:1166.400056px;}
.w0_c00455{width:920.879975px;}
.w1_c00455{width:921.000000px;}
.x0_c00455{left:0.000000px;}
.x3_c00455{left:113.100000px;}
.x4_c00455{left:136.200000px;}
.x49_c00455{left:144.300000px;}
.x1d_c00455{left:151.050000px;}
.x42_c00455{left:154.800000px;}
.x2a_c00455{left:165.450000px;}
.x5_c00455{left:166.500000px;}
.x57_c00455{left:169.200000px;}
.x1e_c00455{left:172.350000px;}
.x4a_c00455{left:178.500000px;}
.x12_c00455{left:186.750000px;}
.x1f_c00455{left:200.850000px;}
.x36_c00455{left:213.150000px;}
.x4b_c00455{left:219.900000px;}
.x43_c00455{left:227.850000px;}
.x62_c00455{left:232.650000px;}
.x6_c00455{left:235.650000px;}
.x4c_c00455{left:240.750000px;}
.x13_c00455{left:242.850000px;}
.x2b_c00455{left:245.700000px;}
.x37_c00455{left:251.250000px;}
.x20_c00455{left:253.350000px;}
.x58_c00455{left:261.300000px;}
.x4d_c00455{left:271.350000px;}
.x14_c00455{left:273.750000px;}
.x7_c00455{left:276.300000px;}
.x44_c00455{left:282.900000px;}
.x8_c00455{left:291.450000px;}
.x59_c00455{left:292.650000px;}
.x21_c00455{left:298.650000px;}
.x22_c00455{left:318.450000px;}
.x9_c00455{left:322.050000px;}
.x5a_c00455{left:339.750000px;}
.x15_c00455{left:341.850000px;}
.x4e_c00455{left:343.650000px;}
.x2c_c00455{left:345.000000px;}
.x63_c00455{left:350.700000px;}
.x38_c00455{left:353.850000px;}
.x5b_c00455{left:365.250000px;}
.x45_c00455{left:370.650000px;}
.x4f_c00455{left:375.750000px;}
.xa_c00455{left:389.400000px;}
.x23_c00455{left:390.900000px;}
.x2d_c00455{left:394.650000px;}
.x5c_c00455{left:402.300000px;}
.x1_c00455{left:408.900000px;}
.x16_c00455{left:420.300000px;}
.x2e_c00455{left:427.800000px;}
.xb_c00455{left:429.750000px;}
.x46_c00455{left:435.150000px;}
.x50_c00455{left:439.800000px;}
.x39_c00455{left:453.300000px;}
.x24_c00455{left:456.000000px;}
.x17_c00455{left:457.800000px;}
.x51_c00455{left:461.100000px;}
.x25_c00455{left:470.700000px;}
.x47_c00455{left:476.850000px;}
.x64_c00455{left:483.300000px;}
.x5d_c00455{left:487.350000px;}
.xc_c00455{left:500.250000px;}
.x2f_c00455{left:503.100000px;}
.x52_c00455{left:508.650000px;}
.x65_c00455{left:511.800000px;}
.x3a_c00455{left:518.100000px;}
.x48_c00455{left:520.800000px;}
.x18_c00455{left:525.450000px;}
.x30_c00455{left:526.500000px;}
.x53_c00455{left:533.850000px;}
.x5e_c00455{left:540.600000px;}
.x26_c00455{left:542.700000px;}
.x31_c00455{left:555.000000px;}
.x3b_c00455{left:557.400000px;}
.xd_c00455{left:563.250000px;}
.x19_c00455{left:570.450000px;}
.x3c_c00455{left:576.450000px;}
.xe_c00455{left:580.200000px;}
.x66_c00455{left:581.400000px;}
.x67_c00455{left:602.700000px;}
.x5f_c00455{left:607.950000px;}
.x27_c00455{left:612.600000px;}
.x3d_c00455{left:616.800000px;}
.x32_c00455{left:621.600000px;}
.x1a_c00455{left:636.000000px;}
.x54_c00455{left:640.800000px;}
.x3e_c00455{left:644.100000px;}
.x68_c00455{left:650.250000px;}
.x33_c00455{left:655.050000px;}
.xf_c00455{left:661.950000px;}
.x1b_c00455{left:669.150000px;}
.x60_c00455{left:675.300000px;}
.x34_c00455{left:685.950000px;}
.x55_c00455{left:687.900000px;}
.x3f_c00455{left:693.000000px;}
.x61_c00455{left:700.200000px;}
.x28_c00455{left:705.150000px;}
.x40_c00455{left:716.400000px;}
.x56_c00455{left:725.400000px;}
.x29_c00455{left:726.450000px;}
.x10_c00455{left:737.850000px;}
.x1c_c00455{left:739.050000px;}
.x35_c00455{left:743.250000px;}
.x2_c00455{left:753.750000px;}
.x41_c00455{left:757.050000px;}
.x11_c00455{left:759.750000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws3_c00455{word-spacing:0.000000pt;}
.ws2_c00455{word-spacing:3.127572pt;}
.ws0_c00455{word-spacing:5.730994pt;}
.ws1_c00455{word-spacing:5.802469pt;}
.fs0_c00455{font-size:53.333333pt;}
.y0_c00455{bottom:0.000000pt;}
.ya_c00455{bottom:758.800000pt;}
.y9_c00455{bottom:776.666667pt;}
.y8_c00455{bottom:794.533333pt;}
.y7_c00455{bottom:812.266667pt;}
.y6_c00455{bottom:829.600000pt;}
.y5_c00455{bottom:847.466667pt;}
.y4_c00455{bottom:865.066667pt;}
.y3_c00455{bottom:882.666667pt;}
.y2_c00455{bottom:900.533333pt;}
.y1_c00455{bottom:934.133333pt;}
.h2_c00455{height:53.333333pt;}
.h1_c00455{height:1036.666667pt;}
.h0_c00455{height:1036.800049pt;}
.w0_c00455{width:818.559977pt;}
.w1_c00455{width:818.666667pt;}
.x0_c00455{left:0.000000pt;}
.x3_c00455{left:100.533333pt;}
.x4_c00455{left:121.066667pt;}
.x49_c00455{left:128.266667pt;}
.x1d_c00455{left:134.266667pt;}
.x42_c00455{left:137.600000pt;}
.x2a_c00455{left:147.066667pt;}
.x5_c00455{left:148.000000pt;}
.x57_c00455{left:150.400000pt;}
.x1e_c00455{left:153.200000pt;}
.x4a_c00455{left:158.666667pt;}
.x12_c00455{left:166.000000pt;}
.x1f_c00455{left:178.533333pt;}
.x36_c00455{left:189.466667pt;}
.x4b_c00455{left:195.466667pt;}
.x43_c00455{left:202.533333pt;}
.x62_c00455{left:206.800000pt;}
.x6_c00455{left:209.466667pt;}
.x4c_c00455{left:214.000000pt;}
.x13_c00455{left:215.866667pt;}
.x2b_c00455{left:218.400000pt;}
.x37_c00455{left:223.333333pt;}
.x20_c00455{left:225.200000pt;}
.x58_c00455{left:232.266667pt;}
.x4d_c00455{left:241.200000pt;}
.x14_c00455{left:243.333333pt;}
.x7_c00455{left:245.600000pt;}
.x44_c00455{left:251.466667pt;}
.x8_c00455{left:259.066667pt;}
.x59_c00455{left:260.133333pt;}
.x21_c00455{left:265.466667pt;}
.x22_c00455{left:283.066667pt;}
.x9_c00455{left:286.266667pt;}
.x5a_c00455{left:302.000000pt;}
.x15_c00455{left:303.866667pt;}
.x4e_c00455{left:305.466667pt;}
.x2c_c00455{left:306.666667pt;}
.x63_c00455{left:311.733333pt;}
.x38_c00455{left:314.533333pt;}
.x5b_c00455{left:324.666667pt;}
.x45_c00455{left:329.466667pt;}
.x4f_c00455{left:334.000000pt;}
.xa_c00455{left:346.133333pt;}
.x23_c00455{left:347.466667pt;}
.x2d_c00455{left:350.800000pt;}
.x5c_c00455{left:357.600000pt;}
.x1_c00455{left:363.466667pt;}
.x16_c00455{left:373.600000pt;}
.x2e_c00455{left:380.266667pt;}
.xb_c00455{left:382.000000pt;}
.x46_c00455{left:386.800000pt;}
.x50_c00455{left:390.933333pt;}
.x39_c00455{left:402.933333pt;}
.x24_c00455{left:405.333333pt;}
.x17_c00455{left:406.933333pt;}
.x51_c00455{left:409.866667pt;}
.x25_c00455{left:418.400000pt;}
.x47_c00455{left:423.866667pt;}
.x64_c00455{left:429.600000pt;}
.x5d_c00455{left:433.200000pt;}
.xc_c00455{left:444.666667pt;}
.x2f_c00455{left:447.200000pt;}
.x52_c00455{left:452.133333pt;}
.x65_c00455{left:454.933333pt;}
.x3a_c00455{left:460.533333pt;}
.x48_c00455{left:462.933333pt;}
.x18_c00455{left:467.066667pt;}
.x30_c00455{left:468.000000pt;}
.x53_c00455{left:474.533333pt;}
.x5e_c00455{left:480.533333pt;}
.x26_c00455{left:482.400000pt;}
.x31_c00455{left:493.333333pt;}
.x3b_c00455{left:495.466667pt;}
.xd_c00455{left:500.666667pt;}
.x19_c00455{left:507.066667pt;}
.x3c_c00455{left:512.400000pt;}
.xe_c00455{left:515.733333pt;}
.x66_c00455{left:516.800000pt;}
.x67_c00455{left:535.733333pt;}
.x5f_c00455{left:540.400000pt;}
.x27_c00455{left:544.533333pt;}
.x3d_c00455{left:548.266667pt;}
.x32_c00455{left:552.533333pt;}
.x1a_c00455{left:565.333333pt;}
.x54_c00455{left:569.600000pt;}
.x3e_c00455{left:572.533333pt;}
.x68_c00455{left:578.000000pt;}
.x33_c00455{left:582.266667pt;}
.xf_c00455{left:588.400000pt;}
.x1b_c00455{left:594.800000pt;}
.x60_c00455{left:600.266667pt;}
.x34_c00455{left:609.733333pt;}
.x55_c00455{left:611.466667pt;}
.x3f_c00455{left:616.000000pt;}
.x61_c00455{left:622.400000pt;}
.x28_c00455{left:626.800000pt;}
.x40_c00455{left:636.800000pt;}
.x56_c00455{left:644.800000pt;}
.x29_c00455{left:645.733333pt;}
.x10_c00455{left:655.866667pt;}
.x1c_c00455{left:656.933333pt;}
.x35_c00455{left:660.666667pt;}
.x2_c00455{left:670.000000pt;}
.x41_c00455{left:672.933333pt;}
.x11_c00455{left:675.333333pt;}
}





/* 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_c00456 {
    display:none;
  }
  .loading-indicator_c00456.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00456 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_c00456 { 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_c00456" -> "#page-container .classname_c00456")
 */
.pf_c00456 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00456 { /* 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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00456 { /* 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_c00456 { /* 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_c00456 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00456 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00456 {overflow:visible;}
  }
}
.c_c00456 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00456 { /* 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_c00456:after { /* webkit #35443 */
  content: '';
}
.t_c00456:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00456 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 */
}
.__c00456 { /* 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_c00456 { /* info for Javascript */
  display:none;
}
.l_c00456 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00456 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00456 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00456: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_c00456 {
    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_c00456.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00456.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_c00456 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00456{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00456;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.000000;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;}
.m23_c00456{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00456{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m52_c00456{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m28_c00456{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m30_c00456{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m78_c00456{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m29_c00456{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m75_c00456{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00456{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m33_c00456{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m60_c00456{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m31_c00456{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m61_c00456{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00456{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m17_c00456{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m81_c00456{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00456{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m69_c00456{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m38_c00456{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m58_c00456{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.mf_c00456{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00456{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m47_c00456{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00456{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00456{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00456{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m34_c00456{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m39_c00456{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00456{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m55_c00456{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m45_c00456{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m19_c00456{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m77_c00456{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m48_c00456{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00456{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00456{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m49_c00456{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00456{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m14_c00456{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00456{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m16_c00456{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00456{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m57_c00456{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m40_c00456{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m20_c00456{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m53_c00456{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m54_c00456{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m27_c00456{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00456{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00456{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m22_c00456{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb_c00456{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m65_c00456{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m74_c00456{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m36_c00456{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m37_c00456{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc_c00456{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00456{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.me_c00456{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m41_c00456{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00456{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00456{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m72_c00456{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m26_c00456{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00456{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00456{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00456{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m51_c00456{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m71_c00456{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00456{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m63_c00456{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00456{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00456{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m24_c00456{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m88_c00456{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00456{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00456{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00456{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00456{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m73_c00456{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m9_c00456{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00456{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m82_c00456{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m59_c00456{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma_c00456{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m42_c00456{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00456{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00456{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00456{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m79_c00456{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00456{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00456{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8_c00456{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m80_c00456{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.md_c00456{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m68_c00456{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00456{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m43_c00456{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m21_c00456{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m66_c00456{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00456{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00456{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00456{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m85_c00456{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m35_c00456{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m86_c00456{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18_c00456{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00456{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15_c00456{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00456{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m56_c00456{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m84_c00456{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00456{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m83_c00456{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m46_c00456{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m76_c00456{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m32_c00456{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m62_c00456{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m89_c00456{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2_c00456{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00456{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00456{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m11_c00456{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00456{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m70_c00456{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m44_c00456{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m7_c00456{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m0_c00456{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m25_c00456{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m87_c00456{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m13_c00456{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00456{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m64_c00456{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m50_c00456{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m4_c00456{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00456{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00456{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m5_c00456{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m3_c00456{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m6_c00456{transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00456{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00456{vertical-align:0.000000px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{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__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00456{word-spacing:0.000000px;}
.ws0_c00456{word-spacing:2.738095px;}
.ws1_c00456{word-spacing:9.876543px;}
.fc0_c00456{color:transparent;}
.fs1_c00456{font-size:42.000000px;}
.fs0_c00456{font-size:60.000000px;}
.y0_c00456{bottom:0.000000px;}
.y23_c00456{bottom:158.400000px;}
.y22_c00456{bottom:178.500000px;}
.y21_c00456{bottom:198.000000px;}
.y20_c00456{bottom:218.100000px;}
.y1f_c00456{bottom:237.900000px;}
.y1e_c00456{bottom:258.150000px;}
.y1d_c00456{bottom:277.950000px;}
.y1c_c00456{bottom:297.750000px;}
.y1b_c00456{bottom:317.850000px;}
.y1a_c00456{bottom:337.650000px;}
.y19_c00456{bottom:357.450000px;}
.y18_c00456{bottom:377.250000px;}
.y17_c00456{bottom:397.050000px;}
.y16_c00456{bottom:432.750000px;}
.y15_c00456{bottom:472.350000px;}
.y14_c00456{bottom:493.200000px;}
.y13_c00456{bottom:513.000000px;}
.y12_c00456{bottom:531.900000px;}
.y11_c00456{bottom:553.200000px;}
.y10_c00456{bottom:572.700000px;}
.yf_c00456{bottom:592.200000px;}
.ye_c00456{bottom:612.000000px;}
.yd_c00456{bottom:632.100000px;}
.yc_c00456{bottom:651.900000px;}
.yb_c00456{bottom:671.550000px;}
.ya_c00456{bottom:692.100000px;}
.y9_c00456{bottom:712.200000px;}
.y8_c00456{bottom:732.300000px;}
.y7_c00456{bottom:750.900000px;}
.y6_c00456{bottom:772.200000px;}
.y5_c00456{bottom:790.800000px;}
.y4_c00456{bottom:812.100000px;}
.y3_c00456{bottom:848.550000px;}
.y2_c00456{bottom:886.650000px;}
.y1_c00456{bottom:1053.300000px;}
.h3_c00456{height:42.000000px;}
.h2_c00456{height:60.000000px;}
.h1_c00456{height:1166.250000px;}
.h0_c00456{height:1166.400056px;}
.w0_c00456{width:920.879975px;}
.w1_c00456{width:921.000000px;}
.x0_c00456{left:0.000000px;}
.x8_c00456{left:140.700000px;}
.x90_c00456{left:161.100000px;}
.x40_c00456{left:168.450000px;}
.xad_c00456{left:170.100000px;}
.x20_c00456{left:171.750000px;}
.x9b_c00456{left:172.800000px;}
.xd4_c00456{left:174.300000px;}
.xd9_c00456{left:175.650000px;}
.x75_c00456{left:177.750000px;}
.x1a_c00456{left:180.150000px;}
.xb9_c00456{left:182.100000px;}
.x80_c00456{left:187.650000px;}
.x5c_c00456{left:192.600000px;}
.x4d_c00456{left:194.550000px;}
.x76_c00456{left:198.600000px;}
.x9_c00456{left:200.100000px;}
.xba_c00456{left:201.150000px;}
.xda_c00456{left:202.950000px;}
.x2f_c00456{left:205.650000px;}
.x21_c00456{left:213.150000px;}
.x4e_c00456{left:214.350000px;}
.x41_c00456{left:216.300000px;}
.x91_c00456{left:217.650000px;}
.x1b_c00456{left:220.050000px;}
.x35_c00456{left:221.100000px;}
.x30_c00456{left:223.350000px;}
.x69_c00456{left:227.850000px;}
.x5d_c00456{left:229.650000px;}
.x42_c00456{left:231.000000px;}
.x22_c00456{left:235.500000px;}
.x4f_c00456{left:238.050000px;}
.xa7_c00456{left:240.600000px;}
.xc6_c00456{left:243.750000px;}
.xc8_c00456{left:244.800000px;}
.x31_c00456{left:247.500000px;}
.x1c_c00456{left:248.850000px;}
.xdd_c00456{left:252.300000px;}
.x9a_c00456{left:254.700000px;}
.xc9_c00456{left:255.900000px;}
.x9c_c00456{left:260.700000px;}
.x81_c00456{left:263.250000px;}
.x23_c00456{left:264.600000px;}
.x92_c00456{left:267.000000px;}
.xa_c00456{left:272.400000px;}
.x77_c00456{left:276.300000px;}
.xce_c00456{left:280.200000px;}
.x32_c00456{left:281.400000px;}
.x89_c00456{left:283.950000px;}
.x1d_c00456{left:285.150000px;}
.x43_c00456{left:287.550000px;}
.x50_c00456{left:289.200000px;}
.xb2_c00456{left:292.350000px;}
.xdb_c00456{left:295.800000px;}
.xd5_c00456{left:298.200000px;}
.x36_c00456{left:299.850000px;}
.xb_c00456{left:301.200000px;}
.xca_c00456{left:302.400000px;}
.xa8_c00456{left:304.350000px;}
.x9d_c00456{left:306.750000px;}
.xbb_c00456{left:308.700000px;}
.x24_c00456{left:311.700000px;}
.x33_c00456{left:313.500000px;}
.xde_c00456{left:315.600000px;}
.x51_c00456{left:316.950000px;}
.xc7_c00456{left:318.600000px;}
.x93_c00456{left:321.300000px;}
.x5e_c00456{left:323.250000px;}
.x6a_c00456{left:327.900000px;}
.xbe_c00456{left:329.250000px;}
.x37_c00456{left:333.750000px;}
.x34_c00456{left:335.850000px;}
.x8a_c00456{left:337.950000px;}
.x25_c00456{left:339.450000px;}
.xdc_c00456{left:341.850000px;}
.xb3_c00456{left:345.150000px;}
.xc_c00456{left:348.750000px;}
.xc4_c00456{left:350.250000px;}
.x52_c00456{left:352.650000px;}
.x4_c00456{left:354.600000px;}
.xcf_c00456{left:358.200000px;}
.xd6_c00456{left:360.750000px;}
.xc5_c00456{left:361.800000px;}
.xcb_c00456{left:363.750000px;}
.xd_c00456{left:366.000000px;}
.x9e_c00456{left:367.950000px;}
.x6b_c00456{left:372.600000px;}
.x26_c00456{left:374.700000px;}
.x8b_c00456{left:376.050000px;}
.xb4_c00456{left:378.300000px;}
.xcc_c00456{left:380.700000px;}
.x9f_c00456{left:382.650000px;}
.xd0_c00456{left:383.700000px;}
.xd7_c00456{left:387.000000px;}
.xe_c00456{left:391.200000px;}
.x1e_c00456{left:393.900000px;}
.x8c_c00456{left:398.400000px;}
.xbc_c00456{left:399.450000px;}
.x82_c00456{left:401.400000px;}
.x6c_c00456{left:403.200000px;}
.x5f_c00456{left:408.600000px;}
.x94_c00456{left:409.800000px;}
.x2_c00456{left:413.250000px;}
.x38_c00456{left:416.250000px;}
.x5_c00456{left:420.900000px;}
.x83_c00456{left:421.950000px;}
.x53_c00456{left:424.350000px;}
.x78_c00456{left:427.050000px;}
.x60_c00456{left:428.400000px;}
.x27_c00456{left:429.450000px;}
.xf_c00456{left:432.600000px;}
.x44_c00456{left:435.450000px;}
.xbf_c00456{left:437.850000px;}
.x6d_c00456{left:441.000000px;}
.xae_c00456{left:442.950000px;}
.x10_c00456{left:449.850000px;}
.xa0_c00456{left:451.050000px;}
.x54_c00456{left:452.100000px;}
.x1f_c00456{left:454.350000px;}
.x1_c00456{left:459.750000px;}
.xaf_c00456{left:462.450000px;}
.xd1_c00456{left:464.700000px;}
.xcd_c00456{left:467.400000px;}
.x95_c00456{left:469.200000px;}
.x11_c00456{left:475.050000px;}
.x6e_c00456{left:477.300000px;}
.x39_c00456{left:478.950000px;}
.xa1_c00456{left:480.150000px;}
.x45_c00456{left:481.200000px;}
.x61_c00456{left:486.000000px;}
.xd2_c00456{left:493.200000px;}
.xbd_c00456{left:495.900000px;}
.x3_c00456{left:497.850000px;}
.xd8_c00456{left:498.900000px;}
.xb5_c00456{left:499.950000px;}
.xb0_c00456{left:501.000000px;}
.x28_c00456{left:506.100000px;}
.x6_c00456{left:510.600000px;}
.x62_c00456{left:514.050000px;}
.xa9_c00456{left:517.050000px;}
.xd3_c00456{left:518.700000px;}
.x8d_c00456{left:522.900000px;}
.x55_c00456{left:524.400000px;}
.x46_c00456{left:528.000000px;}
.x7_c00456{left:530.700000px;}
.x3a_c00456{left:532.350000px;}
.x12_c00456{left:534.450000px;}
.x79_c00456{left:543.600000px;}
.x6f_c00456{left:544.950000px;}
.x47_c00456{left:546.300000px;}
.xc2_c00456{left:548.700000px;}
.xa2_c00456{left:550.650000px;}
.x56_c00456{left:553.500000px;}
.x70_c00456{left:555.750000px;}
.xb1_c00456{left:563.250000px;}
.x7a_c00456{left:565.950000px;}
.x48_c00456{left:568.950000px;}
.x96_c00456{left:573.300000px;}
.xa3_c00456{left:575.850000px;}
.xb6_c00456{left:577.650000px;}
.x84_c00456{left:579.300000px;}
.x13_c00456{left:582.750000px;}
.x8e_c00456{left:584.100000px;}
.x57_c00456{left:585.150000px;}
.x63_c00456{left:589.350000px;}
.xc0_c00456{left:593.700000px;}
.x29_c00456{left:595.650000px;}
.x7b_c00456{left:598.650000px;}
.x14_c00456{left:600.000000px;}
.x3b_c00456{left:602.100000px;}
.x58_c00456{left:606.000000px;}
.x2a_c00456{left:610.350000px;}
.x97_c00456{left:614.700000px;}
.x85_c00456{left:616.050000px;}
.xc3_c00456{left:619.950000px;}
.xc1_c00456{left:622.500000px;}
.xaa_c00456{left:626.250000px;}
.x7c_c00456{left:629.250000px;}
.x59_c00456{left:634.050000px;}
.x49_c00456{left:636.600000px;}
.x64_c00456{left:641.550000px;}
.xb7_c00456{left:646.050000px;}
.x2b_c00456{left:648.450000px;}
.x86_c00456{left:651.000000px;}
.x71_c00456{left:653.700000px;}
.x4a_c00456{left:656.400000px;}
.x3c_c00456{left:657.600000px;}
.x7d_c00456{left:658.800000px;}
.x65_c00456{left:667.050000px;}
.x72_c00456{left:669.150000px;}
.x15_c00456{left:670.500000px;}
.x98_c00456{left:673.800000px;}
.x5a_c00456{left:675.150000px;}
.xab_c00456{left:677.700000px;}
.x3d_c00456{left:686.400000px;}
.x87_c00456{left:688.500000px;}
.x16_c00456{left:692.400000px;}
.xa4_c00456{left:694.350000px;}
.x4b_c00456{left:696.300000px;}
.x7e_c00456{left:698.400000px;}
.xb8_c00456{left:702.600000px;}
.x73_c00456{left:706.950000px;}
.x17_c00456{left:711.150000px;}
.x2c_c00456{left:716.100000px;}
.x66_c00456{left:722.100000px;}
.x88_c00456{left:728.850000px;}
.x74_c00456{left:735.750000px;}
.x2d_c00456{left:736.950000px;}
.x3e_c00456{left:739.350000px;}
.x18_c00456{left:742.050000px;}
.xa5_c00456{left:746.550000px;}
.x8f_c00456{left:748.650000px;}
.x67_c00456{left:750.600000px;}
.xac_c00456{left:752.550000px;}
.x99_c00456{left:757.650000px;}
.x5b_c00456{left:759.750000px;}
.x2e_c00456{left:765.750000px;}
.xa6_c00456{left:770.250000px;}
.x3f_c00456{left:776.850000px;}
.x4c_c00456{left:778.800000px;}
.x19_c00456{left:789.150000px;}
.x7f_c00456{left:796.050000px;}
.x68_c00456{left:797.100000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws2_c00456{word-spacing:0.000000pt;}
.ws0_c00456{word-spacing:2.433862pt;}
.ws1_c00456{word-spacing:8.779150pt;}
.fs1_c00456{font-size:37.333333pt;}
.fs0_c00456{font-size:53.333333pt;}
.y0_c00456{bottom:0.000000pt;}
.y23_c00456{bottom:140.800000pt;}
.y22_c00456{bottom:158.666667pt;}
.y21_c00456{bottom:176.000000pt;}
.y20_c00456{bottom:193.866667pt;}
.y1f_c00456{bottom:211.466667pt;}
.y1e_c00456{bottom:229.466667pt;}
.y1d_c00456{bottom:247.066667pt;}
.y1c_c00456{bottom:264.666667pt;}
.y1b_c00456{bottom:282.533333pt;}
.y1a_c00456{bottom:300.133333pt;}
.y19_c00456{bottom:317.733333pt;}
.y18_c00456{bottom:335.333333pt;}
.y17_c00456{bottom:352.933333pt;}
.y16_c00456{bottom:384.666667pt;}
.y15_c00456{bottom:419.866667pt;}
.y14_c00456{bottom:438.400000pt;}
.y13_c00456{bottom:456.000000pt;}
.y12_c00456{bottom:472.800000pt;}
.y11_c00456{bottom:491.733333pt;}
.y10_c00456{bottom:509.066667pt;}
.yf_c00456{bottom:526.400000pt;}
.ye_c00456{bottom:544.000000pt;}
.yd_c00456{bottom:561.866667pt;}
.yc_c00456{bottom:579.466667pt;}
.yb_c00456{bottom:596.933333pt;}
.ya_c00456{bottom:615.200000pt;}
.y9_c00456{bottom:633.066667pt;}
.y8_c00456{bottom:650.933333pt;}
.y7_c00456{bottom:667.466667pt;}
.y6_c00456{bottom:686.400000pt;}
.y5_c00456{bottom:702.933333pt;}
.y4_c00456{bottom:721.866667pt;}
.y3_c00456{bottom:754.266667pt;}
.y2_c00456{bottom:788.133333pt;}
.y1_c00456{bottom:936.266667pt;}
.h3_c00456{height:37.333333pt;}
.h2_c00456{height:53.333333pt;}
.h1_c00456{height:1036.666667pt;}
.h0_c00456{height:1036.800049pt;}
.w0_c00456{width:818.559977pt;}
.w1_c00456{width:818.666667pt;}
.x0_c00456{left:0.000000pt;}
.x8_c00456{left:125.066667pt;}
.x90_c00456{left:143.200000pt;}
.x40_c00456{left:149.733333pt;}
.xad_c00456{left:151.200000pt;}
.x20_c00456{left:152.666667pt;}
.x9b_c00456{left:153.600000pt;}
.xd4_c00456{left:154.933333pt;}
.xd9_c00456{left:156.133333pt;}
.x75_c00456{left:158.000000pt;}
.x1a_c00456{left:160.133333pt;}
.xb9_c00456{left:161.866667pt;}
.x80_c00456{left:166.800000pt;}
.x5c_c00456{left:171.200000pt;}
.x4d_c00456{left:172.933333pt;}
.x76_c00456{left:176.533333pt;}
.x9_c00456{left:177.866667pt;}
.xba_c00456{left:178.800000pt;}
.xda_c00456{left:180.400000pt;}
.x2f_c00456{left:182.800000pt;}
.x21_c00456{left:189.466667pt;}
.x4e_c00456{left:190.533333pt;}
.x41_c00456{left:192.266667pt;}
.x91_c00456{left:193.466667pt;}
.x1b_c00456{left:195.600000pt;}
.x35_c00456{left:196.533333pt;}
.x30_c00456{left:198.533333pt;}
.x69_c00456{left:202.533333pt;}
.x5d_c00456{left:204.133333pt;}
.x42_c00456{left:205.333333pt;}
.x22_c00456{left:209.333333pt;}
.x4f_c00456{left:211.600000pt;}
.xa7_c00456{left:213.866667pt;}
.xc6_c00456{left:216.666667pt;}
.xc8_c00456{left:217.600000pt;}
.x31_c00456{left:220.000000pt;}
.x1c_c00456{left:221.200000pt;}
.xdd_c00456{left:224.266667pt;}
.x9a_c00456{left:226.400000pt;}
.xc9_c00456{left:227.466667pt;}
.x9c_c00456{left:231.733333pt;}
.x81_c00456{left:234.000000pt;}
.x23_c00456{left:235.200000pt;}
.x92_c00456{left:237.333333pt;}
.xa_c00456{left:242.133333pt;}
.x77_c00456{left:245.600000pt;}
.xce_c00456{left:249.066667pt;}
.x32_c00456{left:250.133333pt;}
.x89_c00456{left:252.400000pt;}
.x1d_c00456{left:253.466667pt;}
.x43_c00456{left:255.600000pt;}
.x50_c00456{left:257.066667pt;}
.xb2_c00456{left:259.866667pt;}
.xdb_c00456{left:262.933333pt;}
.xd5_c00456{left:265.066667pt;}
.x36_c00456{left:266.533333pt;}
.xb_c00456{left:267.733333pt;}
.xca_c00456{left:268.800000pt;}
.xa8_c00456{left:270.533333pt;}
.x9d_c00456{left:272.666667pt;}
.xbb_c00456{left:274.400000pt;}
.x24_c00456{left:277.066667pt;}
.x33_c00456{left:278.666667pt;}
.xde_c00456{left:280.533333pt;}
.x51_c00456{left:281.733333pt;}
.xc7_c00456{left:283.200000pt;}
.x93_c00456{left:285.600000pt;}
.x5e_c00456{left:287.333333pt;}
.x6a_c00456{left:291.466667pt;}
.xbe_c00456{left:292.666667pt;}
.x37_c00456{left:296.666667pt;}
.x34_c00456{left:298.533333pt;}
.x8a_c00456{left:300.400000pt;}
.x25_c00456{left:301.733333pt;}
.xdc_c00456{left:303.866667pt;}
.xb3_c00456{left:306.800000pt;}
.xc_c00456{left:310.000000pt;}
.xc4_c00456{left:311.333333pt;}
.x52_c00456{left:313.466667pt;}
.x4_c00456{left:315.200000pt;}
.xcf_c00456{left:318.400000pt;}
.xd6_c00456{left:320.666667pt;}
.xc5_c00456{left:321.600000pt;}
.xcb_c00456{left:323.333333pt;}
.xd_c00456{left:325.333333pt;}
.x9e_c00456{left:327.066667pt;}
.x6b_c00456{left:331.200000pt;}
.x26_c00456{left:333.066667pt;}
.x8b_c00456{left:334.266667pt;}
.xb4_c00456{left:336.266667pt;}
.xcc_c00456{left:338.400000pt;}
.x9f_c00456{left:340.133333pt;}
.xd0_c00456{left:341.066667pt;}
.xd7_c00456{left:344.000000pt;}
.xe_c00456{left:347.733333pt;}
.x1e_c00456{left:350.133333pt;}
.x8c_c00456{left:354.133333pt;}
.xbc_c00456{left:355.066667pt;}
.x82_c00456{left:356.800000pt;}
.x6c_c00456{left:358.400000pt;}
.x5f_c00456{left:363.200000pt;}
.x94_c00456{left:364.266667pt;}
.x2_c00456{left:367.333333pt;}
.x38_c00456{left:370.000000pt;}
.x5_c00456{left:374.133333pt;}
.x83_c00456{left:375.066667pt;}
.x53_c00456{left:377.200000pt;}
.x78_c00456{left:379.600000pt;}
.x60_c00456{left:380.800000pt;}
.x27_c00456{left:381.733333pt;}
.xf_c00456{left:384.533333pt;}
.x44_c00456{left:387.066667pt;}
.xbf_c00456{left:389.200000pt;}
.x6d_c00456{left:392.000000pt;}
.xae_c00456{left:393.733333pt;}
.x10_c00456{left:399.866667pt;}
.xa0_c00456{left:400.933333pt;}
.x54_c00456{left:401.866667pt;}
.x1f_c00456{left:403.866667pt;}
.x1_c00456{left:408.666667pt;}
.xaf_c00456{left:411.066667pt;}
.xd1_c00456{left:413.066667pt;}
.xcd_c00456{left:415.466667pt;}
.x95_c00456{left:417.066667pt;}
.x11_c00456{left:422.266667pt;}
.x6e_c00456{left:424.266667pt;}
.x39_c00456{left:425.733333pt;}
.xa1_c00456{left:426.800000pt;}
.x45_c00456{left:427.733333pt;}
.x61_c00456{left:432.000000pt;}
.xd2_c00456{left:438.400000pt;}
.xbd_c00456{left:440.800000pt;}
.x3_c00456{left:442.533333pt;}
.xd8_c00456{left:443.466667pt;}
.xb5_c00456{left:444.400000pt;}
.xb0_c00456{left:445.333333pt;}
.x28_c00456{left:449.866667pt;}
.x6_c00456{left:453.866667pt;}
.x62_c00456{left:456.933333pt;}
.xa9_c00456{left:459.600000pt;}
.xd3_c00456{left:461.066667pt;}
.x8d_c00456{left:464.800000pt;}
.x55_c00456{left:466.133333pt;}
.x46_c00456{left:469.333333pt;}
.x7_c00456{left:471.733333pt;}
.x3a_c00456{left:473.200000pt;}
.x12_c00456{left:475.066667pt;}
.x79_c00456{left:483.200000pt;}
.x6f_c00456{left:484.400000pt;}
.x47_c00456{left:485.600000pt;}
.xc2_c00456{left:487.733333pt;}
.xa2_c00456{left:489.466667pt;}
.x56_c00456{left:492.000000pt;}
.x70_c00456{left:494.000000pt;}
.xb1_c00456{left:500.666667pt;}
.x7a_c00456{left:503.066667pt;}
.x48_c00456{left:505.733333pt;}
.x96_c00456{left:509.600000pt;}
.xa3_c00456{left:511.866667pt;}
.xb6_c00456{left:513.466667pt;}
.x84_c00456{left:514.933333pt;}
.x13_c00456{left:518.000000pt;}
.x8e_c00456{left:519.200000pt;}
.x57_c00456{left:520.133333pt;}
.x63_c00456{left:523.866667pt;}
.xc0_c00456{left:527.733333pt;}
.x29_c00456{left:529.466667pt;}
.x7b_c00456{left:532.133333pt;}
.x14_c00456{left:533.333333pt;}
.x3b_c00456{left:535.200000pt;}
.x58_c00456{left:538.666667pt;}
.x2a_c00456{left:542.533333pt;}
.x97_c00456{left:546.400000pt;}
.x85_c00456{left:547.600000pt;}
.xc3_c00456{left:551.066667pt;}
.xc1_c00456{left:553.333333pt;}
.xaa_c00456{left:556.666667pt;}
.x7c_c00456{left:559.333333pt;}
.x59_c00456{left:563.600000pt;}
.x49_c00456{left:565.866667pt;}
.x64_c00456{left:570.266667pt;}
.xb7_c00456{left:574.266667pt;}
.x2b_c00456{left:576.400000pt;}
.x86_c00456{left:578.666667pt;}
.x71_c00456{left:581.066667pt;}
.x4a_c00456{left:583.466667pt;}
.x3c_c00456{left:584.533333pt;}
.x7d_c00456{left:585.600000pt;}
.x65_c00456{left:592.933333pt;}
.x72_c00456{left:594.800000pt;}
.x15_c00456{left:596.000000pt;}
.x98_c00456{left:598.933333pt;}
.x5a_c00456{left:600.133333pt;}
.xab_c00456{left:602.400000pt;}
.x3d_c00456{left:610.133333pt;}
.x87_c00456{left:612.000000pt;}
.x16_c00456{left:615.466667pt;}
.xa4_c00456{left:617.200000pt;}
.x4b_c00456{left:618.933333pt;}
.x7e_c00456{left:620.800000pt;}
.xb8_c00456{left:624.533333pt;}
.x73_c00456{left:628.400000pt;}
.x17_c00456{left:632.133333pt;}
.x2c_c00456{left:636.533333pt;}
.x66_c00456{left:641.866667pt;}
.x88_c00456{left:647.866667pt;}
.x74_c00456{left:654.000000pt;}
.x2d_c00456{left:655.066667pt;}
.x3e_c00456{left:657.200000pt;}
.x18_c00456{left:659.600000pt;}
.xa5_c00456{left:663.600000pt;}
.x8f_c00456{left:665.466667pt;}
.x67_c00456{left:667.200000pt;}
.xac_c00456{left:668.933333pt;}
.x99_c00456{left:673.466667pt;}
.x5b_c00456{left:675.333333pt;}
.x2e_c00456{left:680.666667pt;}
.xa6_c00456{left:684.666667pt;}
.x3f_c00456{left:690.533333pt;}
.x4c_c00456{left:692.266667pt;}
.x19_c00456{left:701.466667pt;}
.x7f_c00456{left:707.600000pt;}
.x68_c00456{left:708.533333pt;}
}





/* 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_c00457 {
    display:none;
  }
  .loading-indicator_c00457.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00457 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_c00457 { 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_c00457" -> "#page-container .classname_c00457")
 */
.pf_c00457 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00457 { /* 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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00457 { /* 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_c00457 { /* 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_c00457 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00457 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00457 {overflow:visible;}
  }
}
.c_c00457 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00457 { /* 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_c00457:after { /* webkit #35443 */
  content: '';
}
.t_c00457:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00457 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 */
}
.__c00457 { /* 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_c00457 { /* info for Javascript */
  display:none;
}
.l_c00457 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00457 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00457 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00457: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_c00457 {
    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_c00457.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00457.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_c00457 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00457{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00457;src:url('chunks/assets/font_5e7ec34608391b2df63646c2.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.000000;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;}
.m51_c00457{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.me_c00457{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m6_c00457{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00457{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00457{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00457{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00457{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m31_c00457{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m40_c00457{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m89_c00457{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m35_c00457{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m85_c00457{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m84_c00457{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m82_c00457{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00457{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m5_c00457{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00457{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00457{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m86_c00457{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00457{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m67_c00457{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00457{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00457{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m63_c00457{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00457{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00457{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00457{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m42_c00457{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m87_c00457{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m81_c00457{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m27_c00457{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m80_c00457{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m77_c00457{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m57_c00457{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m55_c00457{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00457{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m88_c00457{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00457{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00457{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00457{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m60_c00457{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m50_c00457{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc_c00457{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m46_c00457{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m14_c00457{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m43_c00457{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m71_c00457{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00457{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00457{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.mf_c00457{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m48_c00457{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m47_c00457{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00457{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00457{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00457{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00457{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m10_c00457{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m11_c00457{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m49_c00457{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00457{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.md_c00457{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00457{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00457{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m15_c00457{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m53_c00457{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9_c00457{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m68_c00457{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m26_c00457{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m65_c00457{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00457{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7_c00457{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00457{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m36_c00457{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.ma_c00457{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00457{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m22_c00457{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m64_c00457{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2_c00457{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m17_c00457{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m44_c00457{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00457{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m19_c00457{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00457{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00457{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m59_c00457{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m20_c00457{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00457{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m25_c00457{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m54_c00457{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m45_c00457{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00457{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m56_c00457{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m58_c00457{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00457{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m66_c00457{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m78_c00457{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00457{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m28_c00457{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m32_c00457{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m18_c00457{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m83_c00457{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00457{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m39_c00457{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m61_c00457{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00457{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00457{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m37_c00457{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m73_c00457{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m12_c00457{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00457{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00457{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m79_c00457{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m41_c00457{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m23_c00457{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13_c00457{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m24_c00457{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00457{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00457{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00457{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.mb_c00457{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m34_c00457{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m69_c00457{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m74_c00457{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00457{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m72_c00457{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m29_c00457{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m62_c00457{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00457{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00457{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00457{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00457{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m21_c00457{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00457{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m70_c00457{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m75_c00457{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m76_c00457{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m38_c00457{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m33_c00457{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m90_c00457{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m30_c00457{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m52_c00457{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00457{vertical-align:0.000000px;}
.ls0_c00457{letter-spacing:0.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{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__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00457{word-spacing:-3.750000px;}
.ws5_c00457{word-spacing:0.000000px;}
.ws2_c00457{word-spacing:7.500000px;}
.ws3_c00457{word-spacing:10.892857px;}
.ws0_c00457{word-spacing:11.805556px;}
.ws1_c00457{word-spacing:12.205882px;}
.fc0_c00457{color:transparent;}
.fs2_c00457{font-size:36.000000px;}
.fs0_c00457{font-size:54.000000px;}
.fs1_c00457{font-size:60.000000px;}
.y0_c00457{bottom:0.000000px;}
.y2c_c00457{bottom:133.200000px;}
.y2b_c00457{bottom:151.500000px;}
.y2a_c00457{bottom:167.700000px;}
.y29_c00457{bottom:184.350000px;}
.y28_c00457{bottom:199.800000px;}
.y27_c00457{bottom:223.500000px;}
.y26_c00457{bottom:244.800000px;}
.y25_c00457{bottom:264.300000px;}
.y24_c00457{bottom:303.900000px;}
.y23_c00457{bottom:323.700000px;}
.y22_c00457{bottom:342.450000px;}
.y21_c00457{bottom:363.300000px;}
.y20_c00457{bottom:382.050000px;}
.y1f_c00457{bottom:402.900000px;}
.y1e_c00457{bottom:422.100000px;}
.y1d_c00457{bottom:442.200000px;}
.y1c_c00457{bottom:462.300000px;}
.y1b_c00457{bottom:481.800000px;}
.y1a_c00457{bottom:501.900000px;}
.y19_c00457{bottom:521.700000px;}
.y18_c00457{bottom:541.800000px;}
.y17_c00457{bottom:561.600000px;}
.y16_c00457{bottom:581.400000px;}
.y15_c00457{bottom:610.950000px;}
.y14_c00457{bottom:636.900000px;}
.y13_c00457{bottom:656.700000px;}
.y12_c00457{bottom:676.500000px;}
.y11_c00457{bottom:696.600000px;}
.y10_c00457{bottom:716.700000px;}
.yf_c00457{bottom:736.500000px;}
.ye_c00457{bottom:756.750000px;}
.yd_c00457{bottom:776.850000px;}
.yc_c00457{bottom:796.650000px;}
.yb_c00457{bottom:816.900000px;}
.ya_c00457{bottom:836.700000px;}
.y9_c00457{bottom:865.500000px;}
.y8_c00457{bottom:885.300000px;}
.y7_c00457{bottom:905.100000px;}
.y6_c00457{bottom:925.200000px;}
.y5_c00457{bottom:945.000000px;}
.y4_c00457{bottom:965.550000px;}
.y3_c00457{bottom:985.350000px;}
.y2_c00457{bottom:1005.150000px;}
.y1_c00457{bottom:1044.000000px;}
.h4_c00457{height:36.000000px;}
.h2_c00457{height:54.000000px;}
.h3_c00457{height:60.000000px;}
.h1_c00457{height:1166.250000px;}
.h0_c00457{height:1166.400056px;}
.w0_c00457{width:920.879975px;}
.w1_c00457{width:921.000000px;}
.x0_c00457{left:0.000000px;}
.x7b_c00457{left:113.700000px;}
.xa3_c00457{left:114.900000px;}
.xb3_c00457{left:115.950000px;}
.xce_c00457{left:117.150000px;}
.xe2_c00457{left:118.650000px;}
.xd0_c00457{left:135.750000px;}
.xcf_c00457{left:136.950000px;}
.x4_c00457{left:144.000000px;}
.x68_c00457{left:145.500000px;}
.xaa_c00457{left:146.550000px;}
.xbd_c00457{left:147.600000px;}
.xdf_c00457{left:149.100000px;}
.x3c_c00457{left:151.950000px;}
.xa9_c00457{left:162.300000px;}
.x72_c00457{left:164.850000px;}
.xab_c00457{left:166.050000px;}
.xba_c00457{left:169.050000px;}
.x5_c00457{left:170.700000px;}
.x18_c00457{left:171.750000px;}
.xbe_c00457{left:179.250000px;}
.x94_c00457{left:188.100000px;}
.xb4_c00457{left:191.850000px;}
.x26_c00457{left:200.550000px;}
.x8a_c00457{left:202.350000px;}
.xa4_c00457{left:207.750000px;}
.xb5_c00457{left:211.650000px;}
.xd1_c00457{left:213.150000px;}
.x6_c00457{left:215.400000px;}
.x9e_c00457{left:216.750000px;}
.xc7_c00457{left:218.100000px;}
.x5c_c00457{left:220.350000px;}
.x19_c00457{left:222.900000px;}
.x1e_c00457{left:225.750000px;}
.x53_c00457{left:229.050000px;}
.x60_c00457{left:230.850000px;}
.xac_c00457{left:232.650000px;}
.xe_c00457{left:235.050000px;}
.x69_c00457{left:236.250000px;}
.x37_c00457{left:237.900000px;}
.x2f_c00457{left:239.850000px;}
.x73_c00457{left:241.500000px;}
.xf_c00457{left:245.850000px;}
.x81_c00457{left:247.650000px;}
.x38_c00457{left:248.700000px;}
.x33_c00457{left:251.250000px;}
.xad_c00457{left:253.950000px;}
.x54_c00457{left:261.150000px;}
.x5d_c00457{left:263.250000px;}
.x27_c00457{left:264.600000px;}
.x7_c00457{left:265.800000px;}
.x65_c00457{left:267.150000px;}
.x82_c00457{left:269.250000px;}
.x1f_c00457{left:272.250000px;}
.x3b_c00457{left:274.500000px;}
.x8_c00457{left:276.900000px;}
.x61_c00457{left:279.450000px;}
.x1a_c00457{left:280.800000px;}
.x66_c00457{left:283.650000px;}
.x4b_c00457{left:284.700000px;}
.x3d_c00457{left:286.950000px;}
.x20_c00457{left:289.200000px;}
.xbf_c00457{left:290.850000px;}
.x10_c00457{left:291.900000px;}
.x28_c00457{left:293.400000px;}
.x39_c00457{left:295.200000px;}
.x34_c00457{left:297.750000px;}
.xae_c00457{left:302.250000px;}
.xbb_c00457{left:303.450000px;}
.x30_c00457{left:307.800000px;}
.x11_c00457{left:309.150000px;}
.x3a_c00457{left:312.150000px;}
.x21_c00457{left:314.400000px;}
.x45_c00457{left:318.150000px;}
.x5e_c00457{left:320.400000px;}
.x9_c00457{left:322.950000px;}
.xa5_c00457{left:326.850000px;}
.x83_c00457{left:327.900000px;}
.x46_c00457{left:328.950000px;}
.xc8_c00457{left:330.450000px;}
.x3e_c00457{left:333.450000px;}
.x12_c00457{left:334.650000px;}
.x1b_c00457{left:338.400000px;}
.xa_c00457{left:339.900000px;}
.x50_c00457{left:340.950000px;}
.x67_c00457{left:342.750000px;}
.x29_c00457{left:345.300000px;}
.x3f_c00457{left:350.400000px;}
.x6a_c00457{left:354.300000px;}
.x1c_c00457{left:355.350000px;}
.x1_c00457{left:359.250000px;}
.x5f_c00457{left:363.150000px;}
.xb_c00457{left:365.400000px;}
.x74_c00457{left:367.950000px;}
.x95_c00457{left:373.350000px;}
.x6b_c00457{left:374.400000px;}
.x47_c00457{left:375.450000px;}
.x22_c00457{left:377.700000px;}
.xd2_c00457{left:379.050000px;}
.x55_c00457{left:380.700000px;}
.x1d_c00457{left:382.050000px;}
.x4c_c00457{left:383.400000px;}
.xc0_c00457{left:385.200000px;}
.x51_c00457{left:387.000000px;}
.x42_c00457{left:388.800000px;}
.xe0_c00457{left:390.750000px;}
.x48_c00457{left:392.700000px;}
.x4d_c00457{left:394.200000px;}
.x2a_c00457{left:395.700000px;}
.x62_c00457{left:398.400000px;}
.x35_c00457{left:400.350000px;}
.x52_c00457{left:404.250000px;}
.x23_c00457{left:406.200000px;}
.x13_c00457{left:413.550000px;}
.x75_c00457{left:416.850000px;}
.x96_c00457{left:418.350000px;}
.xe1_c00457{left:420.300000px;}
.x49_c00457{left:421.800000px;}
.x31_c00457{left:423.750000px;}
.xc_c00457{left:425.850000px;}
.xc1_c00457{left:427.350000px;}
.x36_c00457{left:428.850000px;}
.x9f_c00457{left:430.200000px;}
.x24_c00457{left:432.150000px;}
.x2_c00457{left:433.350000px;}
.x8b_c00457{left:436.050000px;}
.x56_c00457{left:438.000000px;}
.x14_c00457{left:439.050000px;}
.x4e_c00457{left:440.250000px;}
.x63_c00457{left:443.400000px;}
.x4a_c00457{left:450.300000px;}
.x32_c00457{left:452.250000px;}
.xd_c00457{left:454.350000px;}
.x7c_c00457{left:455.400000px;}
.x4f_c00457{left:457.200000px;}
.x6c_c00457{left:458.700000px;}
.x2b_c00457{left:461.550000px;}
.x40_c00457{left:466.350000px;}
.xa6_c00457{left:468.600000px;}
.x84_c00457{left:469.650000px;}
.x64_c00457{left:471.900000px;}
.x2c_c00457{left:478.800000px;}
.x57_c00457{left:480.750000px;}
.x43_c00457{left:482.700000px;}
.x85_c00457{left:484.350000px;}
.xc9_c00457{left:488.850000px;}
.xd3_c00457{left:492.150000px;}
.xa0_c00457{left:493.200000px;}
.x41_c00457{left:495.150000px;}
.x7d_c00457{left:498.600000px;}
.x8c_c00457{left:501.150000px;}
.xaf_c00457{left:503.850000px;}
.x97_c00457{left:506.550000px;}
.x44_c00457{left:508.650000px;}
.x76_c00457{left:510.450000px;}
.x25_c00457{left:513.900000px;}
.xca_c00457{left:516.150000px;}
.x6d_c00457{left:519.150000px;}
.x2d_c00457{left:525.600000px;}
.xb6_c00457{left:530.400000px;}
.xd9_c00457{left:532.500000px;}
.x15_c00457{left:534.450000px;}
.x6e_c00457{left:538.650000px;}
.xa1_c00457{left:540.000000px;}
.x58_c00457{left:543.000000px;}
.xcb_c00457{left:547.500000px;}
.x98_c00457{left:551.550000px;}
.x8d_c00457{left:553.050000px;}
.x2e_c00457{left:554.400000px;}
.x77_c00457{left:557.250000px;}
.x6f_c00457{left:559.500000px;}
.x16_c00457{left:562.950000px;}
.x59_c00457{left:568.200000px;}
.xc2_c00457{left:569.550000px;}
.xd4_c00457{left:571.050000px;}
.xb7_c00457{left:572.550000px;}
.x8e_c00457{left:578.550000px;}
.x7e_c00457{left:582.450000px;}
.x99_c00457{left:585.000000px;}
.x8f_c00457{left:598.650000px;}
.xc3_c00457{left:600.450000px;}
.xa7_c00457{left:601.800000px;}
.x86_c00457{left:603.450000px;}
.x70_c00457{left:609.150000px;}
.xb0_c00457{left:611.250000px;}
.xb8_c00457{left:612.450000px;}
.x71_c00457{left:613.800000px;}
.xd5_c00457{left:618.600000px;}
.x9a_c00457{left:623.850000px;}
.x90_c00457{left:628.200000px;}
.xda_c00457{left:632.550000px;}
.xa8_c00457{left:633.900000px;}
.xdb_c00457{left:643.050000px;}
.xbc_c00457{left:645.750000px;}
.x87_c00457{left:646.950000px;}
.x78_c00457{left:651.150000px;}
.xb1_c00457{left:660.600000px;}
.x17_c00457{left:667.050000px;}
.xdc_c00457{left:669.750000px;}
.xd6_c00457{left:674.100000px;}
.x7f_c00457{left:675.750000px;}
.x5a_c00457{left:678.300000px;}
.xa2_c00457{left:682.200000px;}
.xc4_c00457{left:684.000000px;}
.x91_c00457{left:685.500000px;}
.x9b_c00457{left:694.350000px;}
.x88_c00457{left:696.600000px;}
.xdd_c00457{left:701.850000px;}
.x79_c00457{left:704.100000px;}
.xc5_c00457{left:705.900000px;}
.xcc_c00457{left:708.300000px;}
.x5b_c00457{left:710.400000px;}
.xd7_c00457{left:714.750000px;}
.x80_c00457{left:724.050000px;}
.x92_c00457{left:726.600000px;}
.xcd_c00457{left:729.150000px;}
.xb9_c00457{left:732.000000px;}
.xd8_c00457{left:734.250000px;}
.xde_c00457{left:736.800000px;}
.x9c_c00457{left:739.050000px;}
.x89_c00457{left:740.550000px;}
.xc6_c00457{left:746.250000px;}
.x3_c00457{left:752.250000px;}
.x7a_c00457{left:757.350000px;}
.x9d_c00457{left:761.700000px;}
.x93_c00457{left:769.500000px;}
.xb2_c00457{left:771.450000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws4_c00457{word-spacing:-3.333333pt;}
.ws5_c00457{word-spacing:0.000000pt;}
.ws2_c00457{word-spacing:6.666667pt;}
.ws3_c00457{word-spacing:9.682540pt;}
.ws0_c00457{word-spacing:10.493827pt;}
.ws1_c00457{word-spacing:10.849673pt;}
.fs2_c00457{font-size:32.000000pt;}
.fs0_c00457{font-size:48.000000pt;}
.fs1_c00457{font-size:53.333333pt;}
.y0_c00457{bottom:0.000000pt;}
.y2c_c00457{bottom:118.400000pt;}
.y2b_c00457{bottom:134.666667pt;}
.y2a_c00457{bottom:149.066667pt;}
.y29_c00457{bottom:163.866667pt;}
.y28_c00457{bottom:177.600000pt;}
.y27_c00457{bottom:198.666667pt;}
.y26_c00457{bottom:217.600000pt;}
.y25_c00457{bottom:234.933333pt;}
.y24_c00457{bottom:270.133333pt;}
.y23_c00457{bottom:287.733333pt;}
.y22_c00457{bottom:304.400000pt;}
.y21_c00457{bottom:322.933333pt;}
.y20_c00457{bottom:339.600000pt;}
.y1f_c00457{bottom:358.133333pt;}
.y1e_c00457{bottom:375.200000pt;}
.y1d_c00457{bottom:393.066667pt;}
.y1c_c00457{bottom:410.933333pt;}
.y1b_c00457{bottom:428.266667pt;}
.y1a_c00457{bottom:446.133333pt;}
.y19_c00457{bottom:463.733333pt;}
.y18_c00457{bottom:481.600000pt;}
.y17_c00457{bottom:499.200000pt;}
.y16_c00457{bottom:516.800000pt;}
.y15_c00457{bottom:543.066667pt;}
.y14_c00457{bottom:566.133333pt;}
.y13_c00457{bottom:583.733333pt;}
.y12_c00457{bottom:601.333333pt;}
.y11_c00457{bottom:619.200000pt;}
.y10_c00457{bottom:637.066667pt;}
.yf_c00457{bottom:654.666667pt;}
.ye_c00457{bottom:672.666667pt;}
.yd_c00457{bottom:690.533333pt;}
.yc_c00457{bottom:708.133333pt;}
.yb_c00457{bottom:726.133333pt;}
.ya_c00457{bottom:743.733333pt;}
.y9_c00457{bottom:769.333333pt;}
.y8_c00457{bottom:786.933333pt;}
.y7_c00457{bottom:804.533333pt;}
.y6_c00457{bottom:822.400000pt;}
.y5_c00457{bottom:840.000000pt;}
.y4_c00457{bottom:858.266667pt;}
.y3_c00457{bottom:875.866667pt;}
.y2_c00457{bottom:893.466667pt;}
.y1_c00457{bottom:928.000000pt;}
.h4_c00457{height:32.000000pt;}
.h2_c00457{height:48.000000pt;}
.h3_c00457{height:53.333333pt;}
.h1_c00457{height:1036.666667pt;}
.h0_c00457{height:1036.800049pt;}
.w0_c00457{width:818.559977pt;}
.w1_c00457{width:818.666667pt;}
.x0_c00457{left:0.000000pt;}
.x7b_c00457{left:101.066667pt;}
.xa3_c00457{left:102.133333pt;}
.xb3_c00457{left:103.066667pt;}
.xce_c00457{left:104.133333pt;}
.xe2_c00457{left:105.466667pt;}
.xd0_c00457{left:120.666667pt;}
.xcf_c00457{left:121.733333pt;}
.x4_c00457{left:128.000000pt;}
.x68_c00457{left:129.333333pt;}
.xaa_c00457{left:130.266667pt;}
.xbd_c00457{left:131.200000pt;}
.xdf_c00457{left:132.533333pt;}
.x3c_c00457{left:135.066667pt;}
.xa9_c00457{left:144.266667pt;}
.x72_c00457{left:146.533333pt;}
.xab_c00457{left:147.600000pt;}
.xba_c00457{left:150.266667pt;}
.x5_c00457{left:151.733333pt;}
.x18_c00457{left:152.666667pt;}
.xbe_c00457{left:159.333333pt;}
.x94_c00457{left:167.200000pt;}
.xb4_c00457{left:170.533333pt;}
.x26_c00457{left:178.266667pt;}
.x8a_c00457{left:179.866667pt;}
.xa4_c00457{left:184.666667pt;}
.xb5_c00457{left:188.133333pt;}
.xd1_c00457{left:189.466667pt;}
.x6_c00457{left:191.466667pt;}
.x9e_c00457{left:192.666667pt;}
.xc7_c00457{left:193.866667pt;}
.x5c_c00457{left:195.866667pt;}
.x19_c00457{left:198.133333pt;}
.x1e_c00457{left:200.666667pt;}
.x53_c00457{left:203.600000pt;}
.x60_c00457{left:205.200000pt;}
.xac_c00457{left:206.800000pt;}
.xe_c00457{left:208.933333pt;}
.x69_c00457{left:210.000000pt;}
.x37_c00457{left:211.466667pt;}
.x2f_c00457{left:213.200000pt;}
.x73_c00457{left:214.666667pt;}
.xf_c00457{left:218.533333pt;}
.x81_c00457{left:220.133333pt;}
.x38_c00457{left:221.066667pt;}
.x33_c00457{left:223.333333pt;}
.xad_c00457{left:225.733333pt;}
.x54_c00457{left:232.133333pt;}
.x5d_c00457{left:234.000000pt;}
.x27_c00457{left:235.200000pt;}
.x7_c00457{left:236.266667pt;}
.x65_c00457{left:237.466667pt;}
.x82_c00457{left:239.333333pt;}
.x1f_c00457{left:242.000000pt;}
.x3b_c00457{left:244.000000pt;}
.x8_c00457{left:246.133333pt;}
.x61_c00457{left:248.400000pt;}
.x1a_c00457{left:249.600000pt;}
.x66_c00457{left:252.133333pt;}
.x4b_c00457{left:253.066667pt;}
.x3d_c00457{left:255.066667pt;}
.x20_c00457{left:257.066667pt;}
.xbf_c00457{left:258.533333pt;}
.x10_c00457{left:259.466667pt;}
.x28_c00457{left:260.800000pt;}
.x39_c00457{left:262.400000pt;}
.x34_c00457{left:264.666667pt;}
.xae_c00457{left:268.666667pt;}
.xbb_c00457{left:269.733333pt;}
.x30_c00457{left:273.600000pt;}
.x11_c00457{left:274.800000pt;}
.x3a_c00457{left:277.466667pt;}
.x21_c00457{left:279.466667pt;}
.x45_c00457{left:282.800000pt;}
.x5e_c00457{left:284.800000pt;}
.x9_c00457{left:287.066667pt;}
.xa5_c00457{left:290.533333pt;}
.x83_c00457{left:291.466667pt;}
.x46_c00457{left:292.400000pt;}
.xc8_c00457{left:293.733333pt;}
.x3e_c00457{left:296.400000pt;}
.x12_c00457{left:297.466667pt;}
.x1b_c00457{left:300.800000pt;}
.xa_c00457{left:302.133333pt;}
.x50_c00457{left:303.066667pt;}
.x67_c00457{left:304.666667pt;}
.x29_c00457{left:306.933333pt;}
.x3f_c00457{left:311.466667pt;}
.x6a_c00457{left:314.933333pt;}
.x1c_c00457{left:315.866667pt;}
.x1_c00457{left:319.333333pt;}
.x5f_c00457{left:322.800000pt;}
.xb_c00457{left:324.800000pt;}
.x74_c00457{left:327.066667pt;}
.x95_c00457{left:331.866667pt;}
.x6b_c00457{left:332.800000pt;}
.x47_c00457{left:333.733333pt;}
.x22_c00457{left:335.733333pt;}
.xd2_c00457{left:336.933333pt;}
.x55_c00457{left:338.400000pt;}
.x1d_c00457{left:339.600000pt;}
.x4c_c00457{left:340.800000pt;}
.xc0_c00457{left:342.400000pt;}
.x51_c00457{left:344.000000pt;}
.x42_c00457{left:345.600000pt;}
.xe0_c00457{left:347.333333pt;}
.x48_c00457{left:349.066667pt;}
.x4d_c00457{left:350.400000pt;}
.x2a_c00457{left:351.733333pt;}
.x62_c00457{left:354.133333pt;}
.x35_c00457{left:355.866667pt;}
.x52_c00457{left:359.333333pt;}
.x23_c00457{left:361.066667pt;}
.x13_c00457{left:367.600000pt;}
.x75_c00457{left:370.533333pt;}
.x96_c00457{left:371.866667pt;}
.xe1_c00457{left:373.600000pt;}
.x49_c00457{left:374.933333pt;}
.x31_c00457{left:376.666667pt;}
.xc_c00457{left:378.533333pt;}
.xc1_c00457{left:379.866667pt;}
.x36_c00457{left:381.200000pt;}
.x9f_c00457{left:382.400000pt;}
.x24_c00457{left:384.133333pt;}
.x2_c00457{left:385.200000pt;}
.x8b_c00457{left:387.600000pt;}
.x56_c00457{left:389.333333pt;}
.x14_c00457{left:390.266667pt;}
.x4e_c00457{left:391.333333pt;}
.x63_c00457{left:394.133333pt;}
.x4a_c00457{left:400.266667pt;}
.x32_c00457{left:402.000000pt;}
.xd_c00457{left:403.866667pt;}
.x7c_c00457{left:404.800000pt;}
.x4f_c00457{left:406.400000pt;}
.x6c_c00457{left:407.733333pt;}
.x2b_c00457{left:410.266667pt;}
.x40_c00457{left:414.533333pt;}
.xa6_c00457{left:416.533333pt;}
.x84_c00457{left:417.466667pt;}
.x64_c00457{left:419.466667pt;}
.x2c_c00457{left:425.600000pt;}
.x57_c00457{left:427.333333pt;}
.x43_c00457{left:429.066667pt;}
.x85_c00457{left:430.533333pt;}
.xc9_c00457{left:434.533333pt;}
.xd3_c00457{left:437.466667pt;}
.xa0_c00457{left:438.400000pt;}
.x41_c00457{left:440.133333pt;}
.x7d_c00457{left:443.200000pt;}
.x8c_c00457{left:445.466667pt;}
.xaf_c00457{left:447.866667pt;}
.x97_c00457{left:450.266667pt;}
.x44_c00457{left:452.133333pt;}
.x76_c00457{left:453.733333pt;}
.x25_c00457{left:456.800000pt;}
.xca_c00457{left:458.800000pt;}
.x6d_c00457{left:461.466667pt;}
.x2d_c00457{left:467.200000pt;}
.xb6_c00457{left:471.466667pt;}
.xd9_c00457{left:473.333333pt;}
.x15_c00457{left:475.066667pt;}
.x6e_c00457{left:478.800000pt;}
.xa1_c00457{left:480.000000pt;}
.x58_c00457{left:482.666667pt;}
.xcb_c00457{left:486.666667pt;}
.x98_c00457{left:490.266667pt;}
.x8d_c00457{left:491.600000pt;}
.x2e_c00457{left:492.800000pt;}
.x77_c00457{left:495.333333pt;}
.x6f_c00457{left:497.333333pt;}
.x16_c00457{left:500.400000pt;}
.x59_c00457{left:505.066667pt;}
.xc2_c00457{left:506.266667pt;}
.xd4_c00457{left:507.600000pt;}
.xb7_c00457{left:508.933333pt;}
.x8e_c00457{left:514.266667pt;}
.x7e_c00457{left:517.733333pt;}
.x99_c00457{left:520.000000pt;}
.x8f_c00457{left:532.133333pt;}
.xc3_c00457{left:533.733333pt;}
.xa7_c00457{left:534.933333pt;}
.x86_c00457{left:536.400000pt;}
.x70_c00457{left:541.466667pt;}
.xb0_c00457{left:543.333333pt;}
.xb8_c00457{left:544.400000pt;}
.x71_c00457{left:545.600000pt;}
.xd5_c00457{left:549.866667pt;}
.x9a_c00457{left:554.533333pt;}
.x90_c00457{left:558.400000pt;}
.xda_c00457{left:562.266667pt;}
.xa8_c00457{left:563.466667pt;}
.xdb_c00457{left:571.600000pt;}
.xbc_c00457{left:574.000000pt;}
.x87_c00457{left:575.066667pt;}
.x78_c00457{left:578.800000pt;}
.xb1_c00457{left:587.200000pt;}
.x17_c00457{left:592.933333pt;}
.xdc_c00457{left:595.333333pt;}
.xd6_c00457{left:599.200000pt;}
.x7f_c00457{left:600.666667pt;}
.x5a_c00457{left:602.933333pt;}
.xa2_c00457{left:606.400000pt;}
.xc4_c00457{left:608.000000pt;}
.x91_c00457{left:609.333333pt;}
.x9b_c00457{left:617.200000pt;}
.x88_c00457{left:619.200000pt;}
.xdd_c00457{left:623.866667pt;}
.x79_c00457{left:625.866667pt;}
.xc5_c00457{left:627.466667pt;}
.xcc_c00457{left:629.600000pt;}
.x5b_c00457{left:631.466667pt;}
.xd7_c00457{left:635.333333pt;}
.x80_c00457{left:643.600000pt;}
.x92_c00457{left:645.866667pt;}
.xcd_c00457{left:648.133333pt;}
.xb9_c00457{left:650.666667pt;}
.xd8_c00457{left:652.666667pt;}
.xde_c00457{left:654.933333pt;}
.x9c_c00457{left:656.933333pt;}
.x89_c00457{left:658.266667pt;}
.xc6_c00457{left:663.333333pt;}
.x3_c00457{left:668.666667pt;}
.x7a_c00457{left:673.200000pt;}
.x9d_c00457{left:677.066667pt;}
.x93_c00457{left:684.000000pt;}
.xb2_c00457{left:685.733333pt;}
}





/* 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_c00458 {
    display:none;
  }
  .loading-indicator_c00458.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00458 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_c00458 { 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_c00458" -> "#page-container .classname_c00458")
 */
.pf_c00458 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00458 { /* 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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00458 { /* 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_c00458 { /* 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_c00458 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00458 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00458 {overflow:visible;}
  }
}
.c_c00458 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00458 { /* 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_c00458:after { /* webkit #35443 */
  content: '';
}
.t_c00458:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00458 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 */
}
.__c00458 { /* 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_c00458 { /* info for Javascript */
  display:none;
}
.l_c00458 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00458 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00458 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00458: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_c00458 {
    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_c00458.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00458.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_c00458 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00458{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00458;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.000000;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;}
.m41_c00458{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00458{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00458{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c00458{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00458{transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166500,0.000000,0.000000,0.250000,0,0);}
.m40_c00458{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m45_c00458{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m69_c00458{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m35_c00458{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m73_c00458{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00458{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m75_c00458{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m72_c00458{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m70_c00458{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m71_c00458{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00458{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00458{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m74_c00458{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00458{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m3_c00458{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00458{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m55_c00458{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m44_c00458{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00458{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m27_c00458{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m34_c00458{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m28_c00458{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00458{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00458{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m64_c00458{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m33_c00458{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m62_c00458{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00458{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m9_c00458{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00458{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m22_c00458{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m60_c00458{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m20_c00458{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00458{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00458{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.ma_c00458{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m52_c00458{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00458{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00458{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m39_c00458{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00458{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00458{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md_c00458{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00458{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6_c00458{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00458{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00458{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.me_c00458{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00458{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m13_c00458{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00458{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00458{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m26_c00458{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m11_c00458{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m48_c00458{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00458{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m54_c00458{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m25_c00458{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mb_c00458{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m66_c00458{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00458{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00458{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m46_c00458{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m38_c00458{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m47_c00458{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m36_c00458{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00458{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m59_c00458{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00458{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.mc_c00458{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m15_c00458{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m12_c00458{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m30_c00458{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m58_c00458{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m50_c00458{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.mf_c00458{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00458{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5_c00458{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m68_c00458{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m53_c00458{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m4_c00458{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m67_c00458{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18_c00458{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00458{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00458{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m37_c00458{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7_c00458{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m29_c00458{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m65_c00458{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00458{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m63_c00458{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m43_c00458{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00458{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m24_c00458{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m23_c00458{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m19_c00458{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m61_c00458{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m56_c00458{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m32_c00458{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m51_c00458{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00458{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00458{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m21_c00458{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00458{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00458{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00458{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m57_c00458{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00458{transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00458{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00458{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00458{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00458{vertical-align:0.000000px;}
.ls0_c00458{letter-spacing:0.000000px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{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__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00458{word-spacing:0.000000px;}
.ws1_c00458{word-spacing:10.909091px;}
.ws0_c00458{word-spacing:21.805556px;}
.fc0_c00458{color:transparent;}
.fs0_c00458{font-size:60.000000px;}
.y0_c00458{bottom:0.000000px;}
.y29_c00458{bottom:159.450000px;}
.y28_c00458{bottom:174.900000px;}
.y27_c00458{bottom:237.600000px;}
.y26_c00458{bottom:257.700000px;}
.y25_c00458{bottom:277.950000px;}
.y24_c00458{bottom:297.750000px;}
.y23_c00458{bottom:317.850000px;}
.y22_c00458{bottom:337.650000px;}
.y21_c00458{bottom:357.900000px;}
.y20_c00458{bottom:377.700000px;}
.y1f_c00458{bottom:397.800000px;}
.y1e_c00458{bottom:417.600000px;}
.y1d_c00458{bottom:437.100000px;}
.y1c_c00458{bottom:456.900000px;}
.y1b_c00458{bottom:476.700000px;}
.y1a_c00458{bottom:496.500000px;}
.y19_c00458{bottom:516.300000px;}
.y18_c00458{bottom:536.400000px;}
.y17_c00458{bottom:556.500000px;}
.y16_c00458{bottom:576.750000px;}
.y15_c00458{bottom:596.550000px;}
.y14_c00458{bottom:616.350000px;}
.y13_c00458{bottom:636.150000px;}
.y12_c00458{bottom:656.250000px;}
.y11_c00458{bottom:676.050000px;}
.y10_c00458{bottom:691.200000px;}
.yf_c00458{bottom:711.300000px;}
.ye_c00458{bottom:731.100000px;}
.yd_c00458{bottom:751.350000px;}
.yc_c00458{bottom:770.700000px;}
.yb_c00458{bottom:790.950000px;}
.ya_c00458{bottom:811.050000px;}
.y9_c00458{bottom:850.650000px;}
.y8_c00458{bottom:890.700000px;}
.y7_c00458{bottom:910.500000px;}
.y6_c00458{bottom:930.300000px;}
.y5_c00458{bottom:950.100000px;}
.y4_c00458{bottom:969.900000px;}
.y3_c00458{bottom:990.000000px;}
.y2_c00458{bottom:1009.800000px;}
.y1_c00458{bottom:1048.650000px;}
.h2_c00458{height:60.000000px;}
.h1_c00458{height:1166.250000px;}
.h0_c00458{height:1166.400056px;}
.w0_c00458{width:920.879975px;}
.w1_c00458{width:921.000000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:144.750000px;}
.xa8_c00458{left:149.850000px;}
.x9e_c00458{left:169.950000px;}
.xa9_c00458{left:171.450000px;}
.x3_c00458{left:175.650000px;}
.x64_c00458{left:176.700000px;}
.x87_c00458{left:179.400000px;}
.x99_c00458{left:180.750000px;}
.x9f_c00458{left:182.850000px;}
.x66_c00458{left:185.100000px;}
.x4d_c00458{left:186.150000px;}
.x65_c00458{left:195.450000px;}
.x67_c00458{left:204.600000px;}
.x84_c00458{left:205.650000px;}
.x11_c00458{left:206.700000px;}
.x30_c00458{left:207.900000px;}
.x4_c00458{left:210.600000px;}
.x3e_c00458{left:214.650000px;}
.x75_c00458{left:224.250000px;}
.x31_c00458{left:225.900000px;}
.x3f_c00458{left:234.150000px;}
.xaa_c00458{left:239.400000px;}
.x8a_c00458{left:240.450000px;}
.x5b_c00458{left:242.400000px;}
.x5_c00458{left:244.800000px;}
.x86_c00458{left:248.850000px;}
.x88_c00458{left:251.700000px;}
.x7b_c00458{left:253.950000px;}
.x82_c00458{left:255.300000px;}
.x21_c00458{left:257.400000px;}
.x40_c00458{left:260.100000px;}
.x12_c00458{left:265.350000px;}
.x7c_c00458{left:266.850000px;}
.x22_c00458{left:269.700000px;}
.x68_c00458{left:272.250000px;}
.x96_c00458{left:274.650000px;}
.x92_c00458{left:277.200000px;}
.x6_c00458{left:278.250000px;}
.x83_c00458{left:280.500000px;}
.x6d_c00458{left:282.300000px;}
.x5c_c00458{left:286.650000px;}
.x97_c00458{left:288.300000px;}
.xa0_c00458{left:292.650000px;}
.x13_c00458{left:294.150000px;}
.x32_c00458{left:298.950000px;}
.xab_c00458{left:301.650000px;}
.x4e_c00458{left:303.450000px;}
.x79_c00458{left:304.800000px;}
.x5d_c00458{left:307.500000px;}
.x85_c00458{left:311.250000px;}
.x23_c00458{left:313.950000px;}
.x89_c00458{left:315.000000px;}
.x69_c00458{left:317.550000px;}
.x76_c00458{left:320.700000px;}
.x33_c00458{left:324.450000px;}
.x8b_c00458{left:327.900000px;}
.x6a_c00458{left:329.850000px;}
.x93_c00458{left:332.250000px;}
.x5e_c00458{left:335.250000px;}
.x8c_c00458{left:336.900000px;}
.x6e_c00458{left:341.400000px;}
.x41_c00458{left:343.200000px;}
.x95_c00458{left:347.100000px;}
.xac_c00458{left:350.250000px;}
.xa1_c00458{left:351.750000px;}
.x7d_c00458{left:354.000000px;}
.x98_c00458{left:357.150000px;}
.x24_c00458{left:366.150000px;}
.x34_c00458{left:367.650000px;}
.x7_c00458{left:369.300000px;}
.x14_c00458{left:373.650000px;}
.x77_c00458{left:376.500000px;}
.x42_c00458{left:381.750000px;}
.x4f_c00458{left:382.950000px;}
.x25_c00458{left:384.150000px;}
.x6b_c00458{left:385.950000px;}
.x35_c00458{left:388.950000px;}
.x15_c00458{left:394.500000px;}
.x5f_c00458{left:401.550000px;}
.x50_c00458{left:403.050000px;}
.x8d_c00458{left:405.600000px;}
.x9a_c00458{left:407.250000px;}
.x43_c00458{left:409.050000px;}
.x8_c00458{left:412.800000px;}
.x6c_c00458{left:414.750000px;}
.x36_c00458{left:418.050000px;}
.x7a_c00458{left:420.450000px;}
.x16_c00458{left:422.250000px;}
.x78_c00458{left:428.400000px;}
.xa2_c00458{left:431.700000px;}
.x60_c00458{left:433.650000px;}
.x51_c00458{left:439.350000px;}
.x8e_c00458{left:440.550000px;}
.x2_c00458{left:442.050000px;}
.x6f_c00458{left:449.700000px;}
.x52_c00458{left:454.500000px;}
.x9b_c00458{left:456.900000px;}
.x26_c00458{left:461.250000px;}
.x44_c00458{left:462.750000px;}
.x7e_c00458{left:464.850000px;}
.x17_c00458{left:475.950000px;}
.x27_c00458{left:477.450000px;}
.x37_c00458{left:479.550000px;}
.x9c_c00458{left:485.700000px;}
.x9_c00458{left:491.700000px;}
.x18_c00458{left:496.050000px;}
.x53_c00458{left:498.450000px;}
.x61_c00458{left:500.550000px;}
.x28_c00458{left:504.450000px;}
.x8f_c00458{left:507.900000px;}
.x70_c00458{left:510.900000px;}
.xa_c00458{left:514.050000px;}
.x62_c00458{left:517.500000px;}
.x54_c00458{left:524.400000px;}
.x94_c00458{left:528.600000px;}
.x45_c00458{left:539.850000px;}
.x7f_c00458{left:541.950000px;}
.xb_c00458{left:543.150000px;}
.x29_c00458{left:544.800000px;}
.x9d_c00458{left:549.750000px;}
.x55_c00458{left:555.000000px;}
.x46_c00458{left:561.150000px;}
.xa3_c00458{left:562.350000px;}
.x38_c00458{left:565.200000px;}
.x71_c00458{left:575.400000px;}
.xa4_c00458{left:577.800000px;}
.x47_c00458{left:590.700000px;}
.x19_c00458{left:592.200000px;}
.xc_c00458{left:597.900000px;}
.xa5_c00458{left:605.850000px;}
.x39_c00458{left:611.700000px;}
.x80_c00458{left:613.950000px;}
.x56_c00458{left:615.150000px;}
.x1a_c00458{left:622.050000px;}
.x2a_c00458{left:625.800000px;}
.xd_c00458{left:629.550000px;}
.x48_c00458{left:631.350000px;}
.x1b_c00458{left:640.350000px;}
.x49_c00458{left:643.950000px;}
.x3a_c00458{left:652.050000px;}
.x2b_c00458{left:654.600000px;}
.x57_c00458{left:659.100000px;}
.x2c_c00458{left:668.700000px;}
.x90_c00458{left:669.900000px;}
.x1c_c00458{left:672.750000px;}
.x4a_c00458{left:674.250000px;}
.xe_c00458{left:676.050000px;}
.x3b_c00458{left:678.300000px;}
.xa6_c00458{left:683.250000px;}
.x1d_c00458{left:692.250000px;}
.x72_c00458{left:699.900000px;}
.x2d_c00458{left:705.450000px;}
.xf_c00458{left:717.450000px;}
.x2e_c00458{left:725.250000px;}
.x1e_c00458{left:730.350000px;}
.x91_c00458{left:734.400000px;}
.x63_c00458{left:737.400000px;}
.x4b_c00458{left:739.050000px;}
.x73_c00458{left:740.250000px;}
.x3c_c00458{left:744.900000px;}
.x1f_c00458{left:751.200000px;}
.x58_c00458{left:753.450000px;}
.x81_c00458{left:757.950000px;}
.x2f_c00458{left:760.500000px;}
.x74_c00458{left:763.350000px;}
.x4c_c00458{left:767.550000px;}
.x59_c00458{left:776.850000px;}
.x3d_c00458{left:778.050000px;}
.x20_c00458{left:779.700000px;}
.x10_c00458{left:783.750000px;}
.x5a_c00458{left:799.200000px;}
.xa7_c00458{left:805.350000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws2_c00458{word-spacing:0.000000pt;}
.ws1_c00458{word-spacing:9.696970pt;}
.ws0_c00458{word-spacing:19.382716pt;}
.fs0_c00458{font-size:53.333333pt;}
.y0_c00458{bottom:0.000000pt;}
.y29_c00458{bottom:141.733333pt;}
.y28_c00458{bottom:155.466667pt;}
.y27_c00458{bottom:211.200000pt;}
.y26_c00458{bottom:229.066667pt;}
.y25_c00458{bottom:247.066667pt;}
.y24_c00458{bottom:264.666667pt;}
.y23_c00458{bottom:282.533333pt;}
.y22_c00458{bottom:300.133333pt;}
.y21_c00458{bottom:318.133333pt;}
.y20_c00458{bottom:335.733333pt;}
.y1f_c00458{bottom:353.600000pt;}
.y1e_c00458{bottom:371.200000pt;}
.y1d_c00458{bottom:388.533333pt;}
.y1c_c00458{bottom:406.133333pt;}
.y1b_c00458{bottom:423.733333pt;}
.y1a_c00458{bottom:441.333333pt;}
.y19_c00458{bottom:458.933333pt;}
.y18_c00458{bottom:476.800000pt;}
.y17_c00458{bottom:494.666667pt;}
.y16_c00458{bottom:512.666667pt;}
.y15_c00458{bottom:530.266667pt;}
.y14_c00458{bottom:547.866667pt;}
.y13_c00458{bottom:565.466667pt;}
.y12_c00458{bottom:583.333333pt;}
.y11_c00458{bottom:600.933333pt;}
.y10_c00458{bottom:614.400000pt;}
.yf_c00458{bottom:632.266667pt;}
.ye_c00458{bottom:649.866667pt;}
.yd_c00458{bottom:667.866667pt;}
.yc_c00458{bottom:685.066667pt;}
.yb_c00458{bottom:703.066667pt;}
.ya_c00458{bottom:720.933333pt;}
.y9_c00458{bottom:756.133333pt;}
.y8_c00458{bottom:791.733333pt;}
.y7_c00458{bottom:809.333333pt;}
.y6_c00458{bottom:826.933333pt;}
.y5_c00458{bottom:844.533333pt;}
.y4_c00458{bottom:862.133333pt;}
.y3_c00458{bottom:880.000000pt;}
.y2_c00458{bottom:897.600000pt;}
.y1_c00458{bottom:932.133333pt;}
.h2_c00458{height:53.333333pt;}
.h1_c00458{height:1036.666667pt;}
.h0_c00458{height:1036.800049pt;}
.w0_c00458{width:818.559977pt;}
.w1_c00458{width:818.666667pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:128.666667pt;}
.xa8_c00458{left:133.200000pt;}
.x9e_c00458{left:151.066667pt;}
.xa9_c00458{left:152.400000pt;}
.x3_c00458{left:156.133333pt;}
.x64_c00458{left:157.066667pt;}
.x87_c00458{left:159.466667pt;}
.x99_c00458{left:160.666667pt;}
.x9f_c00458{left:162.533333pt;}
.x66_c00458{left:164.533333pt;}
.x4d_c00458{left:165.466667pt;}
.x65_c00458{left:173.733333pt;}
.x67_c00458{left:181.866667pt;}
.x84_c00458{left:182.800000pt;}
.x11_c00458{left:183.733333pt;}
.x30_c00458{left:184.800000pt;}
.x4_c00458{left:187.200000pt;}
.x3e_c00458{left:190.800000pt;}
.x75_c00458{left:199.333333pt;}
.x31_c00458{left:200.800000pt;}
.x3f_c00458{left:208.133333pt;}
.xaa_c00458{left:212.800000pt;}
.x8a_c00458{left:213.733333pt;}
.x5b_c00458{left:215.466667pt;}
.x5_c00458{left:217.600000pt;}
.x86_c00458{left:221.200000pt;}
.x88_c00458{left:223.733333pt;}
.x7b_c00458{left:225.733333pt;}
.x82_c00458{left:226.933333pt;}
.x21_c00458{left:228.800000pt;}
.x40_c00458{left:231.200000pt;}
.x12_c00458{left:235.866667pt;}
.x7c_c00458{left:237.200000pt;}
.x22_c00458{left:239.733333pt;}
.x68_c00458{left:242.000000pt;}
.x96_c00458{left:244.133333pt;}
.x92_c00458{left:246.400000pt;}
.x6_c00458{left:247.333333pt;}
.x83_c00458{left:249.333333pt;}
.x6d_c00458{left:250.933333pt;}
.x5c_c00458{left:254.800000pt;}
.x97_c00458{left:256.266667pt;}
.xa0_c00458{left:260.133333pt;}
.x13_c00458{left:261.466667pt;}
.x32_c00458{left:265.733333pt;}
.xab_c00458{left:268.133333pt;}
.x4e_c00458{left:269.733333pt;}
.x79_c00458{left:270.933333pt;}
.x5d_c00458{left:273.333333pt;}
.x85_c00458{left:276.666667pt;}
.x23_c00458{left:279.066667pt;}
.x89_c00458{left:280.000000pt;}
.x69_c00458{left:282.266667pt;}
.x76_c00458{left:285.066667pt;}
.x33_c00458{left:288.400000pt;}
.x8b_c00458{left:291.466667pt;}
.x6a_c00458{left:293.200000pt;}
.x93_c00458{left:295.333333pt;}
.x5e_c00458{left:298.000000pt;}
.x8c_c00458{left:299.466667pt;}
.x6e_c00458{left:303.466667pt;}
.x41_c00458{left:305.066667pt;}
.x95_c00458{left:308.533333pt;}
.xac_c00458{left:311.333333pt;}
.xa1_c00458{left:312.666667pt;}
.x7d_c00458{left:314.666667pt;}
.x98_c00458{left:317.466667pt;}
.x24_c00458{left:325.466667pt;}
.x34_c00458{left:326.800000pt;}
.x7_c00458{left:328.266667pt;}
.x14_c00458{left:332.133333pt;}
.x77_c00458{left:334.666667pt;}
.x42_c00458{left:339.333333pt;}
.x4f_c00458{left:340.400000pt;}
.x25_c00458{left:341.466667pt;}
.x6b_c00458{left:343.066667pt;}
.x35_c00458{left:345.733333pt;}
.x15_c00458{left:350.666667pt;}
.x5f_c00458{left:356.933333pt;}
.x50_c00458{left:358.266667pt;}
.x8d_c00458{left:360.533333pt;}
.x9a_c00458{left:362.000000pt;}
.x43_c00458{left:363.600000pt;}
.x8_c00458{left:366.933333pt;}
.x6c_c00458{left:368.666667pt;}
.x36_c00458{left:371.600000pt;}
.x7a_c00458{left:373.733333pt;}
.x16_c00458{left:375.333333pt;}
.x78_c00458{left:380.800000pt;}
.xa2_c00458{left:383.733333pt;}
.x60_c00458{left:385.466667pt;}
.x51_c00458{left:390.533333pt;}
.x8e_c00458{left:391.600000pt;}
.x2_c00458{left:392.933333pt;}
.x6f_c00458{left:399.733333pt;}
.x52_c00458{left:404.000000pt;}
.x9b_c00458{left:406.133333pt;}
.x26_c00458{left:410.000000pt;}
.x44_c00458{left:411.333333pt;}
.x7e_c00458{left:413.200000pt;}
.x17_c00458{left:423.066667pt;}
.x27_c00458{left:424.400000pt;}
.x37_c00458{left:426.266667pt;}
.x9c_c00458{left:431.733333pt;}
.x9_c00458{left:437.066667pt;}
.x18_c00458{left:440.933333pt;}
.x53_c00458{left:443.066667pt;}
.x61_c00458{left:444.933333pt;}
.x28_c00458{left:448.400000pt;}
.x8f_c00458{left:451.466667pt;}
.x70_c00458{left:454.133333pt;}
.xa_c00458{left:456.933333pt;}
.x62_c00458{left:460.000000pt;}
.x54_c00458{left:466.133333pt;}
.x94_c00458{left:469.866667pt;}
.x45_c00458{left:479.866667pt;}
.x7f_c00458{left:481.733333pt;}
.xb_c00458{left:482.800000pt;}
.x29_c00458{left:484.266667pt;}
.x9d_c00458{left:488.666667pt;}
.x55_c00458{left:493.333333pt;}
.x46_c00458{left:498.800000pt;}
.xa3_c00458{left:499.866667pt;}
.x38_c00458{left:502.400000pt;}
.x71_c00458{left:511.466667pt;}
.xa4_c00458{left:513.600000pt;}
.x47_c00458{left:525.066667pt;}
.x19_c00458{left:526.400000pt;}
.xc_c00458{left:531.466667pt;}
.xa5_c00458{left:538.533333pt;}
.x39_c00458{left:543.733333pt;}
.x80_c00458{left:545.733333pt;}
.x56_c00458{left:546.800000pt;}
.x1a_c00458{left:552.933333pt;}
.x2a_c00458{left:556.266667pt;}
.xd_c00458{left:559.600000pt;}
.x48_c00458{left:561.200000pt;}
.x1b_c00458{left:569.200000pt;}
.x49_c00458{left:572.400000pt;}
.x3a_c00458{left:579.600000pt;}
.x2b_c00458{left:581.866667pt;}
.x57_c00458{left:585.866667pt;}
.x2c_c00458{left:594.400000pt;}
.x90_c00458{left:595.466667pt;}
.x1c_c00458{left:598.000000pt;}
.x4a_c00458{left:599.333333pt;}
.xe_c00458{left:600.933333pt;}
.x3b_c00458{left:602.933333pt;}
.xa6_c00458{left:607.333333pt;}
.x1d_c00458{left:615.333333pt;}
.x72_c00458{left:622.133333pt;}
.x2d_c00458{left:627.066667pt;}
.xf_c00458{left:637.733333pt;}
.x2e_c00458{left:644.666667pt;}
.x1e_c00458{left:649.200000pt;}
.x91_c00458{left:652.800000pt;}
.x63_c00458{left:655.466667pt;}
.x4b_c00458{left:656.933333pt;}
.x73_c00458{left:658.000000pt;}
.x3c_c00458{left:662.133333pt;}
.x1f_c00458{left:667.733333pt;}
.x58_c00458{left:669.733333pt;}
.x81_c00458{left:673.733333pt;}
.x2f_c00458{left:676.000000pt;}
.x74_c00458{left:678.533333pt;}
.x4c_c00458{left:682.266667pt;}
.x59_c00458{left:690.533333pt;}
.x3d_c00458{left:691.600000pt;}
.x20_c00458{left:693.066667pt;}
.x10_c00458{left:696.666667pt;}
.x5a_c00458{left:710.400000pt;}
.xa7_c00458{left:715.866667pt;}
}





/* 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_c00459 {
    display:none;
  }
  .loading-indicator_c00459.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00459 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_c00459 { 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_c00459" -> "#page-container .classname_c00459")
 */
.pf_c00459 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00459 { /* 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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00459 { /* 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_c00459 { /* 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_c00459 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00459 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00459 {overflow:visible;}
  }
}
.c_c00459 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00459 { /* 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_c00459:after { /* webkit #35443 */
  content: '';
}
.t_c00459:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00459 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 */
}
.__c00459 { /* 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_c00459 { /* info for Javascript */
  display:none;
}
.l_c00459 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00459 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00459 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00459: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_c00459 {
    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_c00459.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00459.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_c00459 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00459{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00459;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.000000;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;}
.m56_c00459{transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048000,0.000000,0.000000,0.250000,0,0);}
.m15_c00459{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.mc_c00459{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00459{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00459{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m71_c00459{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00459{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m47_c00459{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m77_c00459{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00459{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m76_c00459{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m13_c00459{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m78_c00459{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m50_c00459{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00459{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9_c00459{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m3_c00459{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m79_c00459{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m63_c00459{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m68_c00459{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00459{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m72_c00459{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m67_c00459{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00459{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m10_c00459{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m25_c00459{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m36_c00459{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00459{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m75_c00459{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00459{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m64_c00459{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m73_c00459{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m11_c00459{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m40_c00459{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m57_c00459{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00459{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00459{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m26_c00459{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m70_c00459{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00459{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00459{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m21_c00459{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00459{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m22_c00459{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m31_c00459{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00459{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m39_c00459{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00459{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00459{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00459{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m27_c00459{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m16_c00459{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m59_c00459{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m18_c00459{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00459{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m44_c00459{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m7_c00459{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m60_c00459{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m49_c00459{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m66_c00459{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m14_c00459{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.mb_c00459{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m23_c00459{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m45_c00459{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m33_c00459{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m17_c00459{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00459{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m20_c00459{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00459{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00459{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m19_c00459{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma_c00459{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00459{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00459{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00459{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00459{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m58_c00459{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m38_c00459{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00459{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m51_c00459{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00459{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00459{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m54_c00459{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m29_c00459{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m69_c00459{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00459{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m35_c00459{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m37_c00459{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m48_c00459{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf_c00459{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00459{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00459{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00459{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00459{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00459{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00459{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00459{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m43_c00459{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m52_c00459{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.md_c00459{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00459{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m55_c00459{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00459{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00459{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m32_c00459{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m12_c00459{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m42_c00459{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00459{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00459{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m41_c00459{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m24_c00459{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m61_c00459{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00459{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00459{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m2_c00459{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.me_c00459{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c00459{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00459{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m46_c00459{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls0_c00459{letter-spacing:0.000000px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{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__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00459{word-spacing:-6.238938px;}
.ws2_c00459{word-spacing:-5.000000px;}
.ws4_c00459{word-spacing:0.000000px;}
.ws3_c00459{word-spacing:7.232143px;}
.ws0_c00459{word-spacing:14.117647px;}
.fc0_c00459{color:transparent;}
.fs0_c00459{font-size:54.000000px;}
.fs1_c00459{font-size:60.000000px;}
.y0_c00459{bottom:0.000000px;}
.y2b_c00459{bottom:147.600000px;}
.y2a_c00459{bottom:183.300000px;}
.y29_c00459{bottom:203.400000px;}
.y28_c00459{bottom:223.200000px;}
.y27_c00459{bottom:243.000000px;}
.y26_c00459{bottom:263.100000px;}
.y25_c00459{bottom:282.900000px;}
.y24_c00459{bottom:303.150000px;}
.y23_c00459{bottom:322.950000px;}
.y22_c00459{bottom:342.750000px;}
.y21_c00459{bottom:362.550000px;}
.y20_c00459{bottom:382.650000px;}
.y1f_c00459{bottom:402.450000px;}
.y1e_c00459{bottom:422.250000px;}
.y1d_c00459{bottom:442.050000px;}
.y1c_c00459{bottom:462.300000px;}
.y1b_c00459{bottom:482.700000px;}
.y1a_c00459{bottom:502.500000px;}
.y19_c00459{bottom:522.300000px;}
.y18_c00459{bottom:542.100000px;}
.y17_c00459{bottom:575.250000px;}
.y16_c00459{bottom:595.500000px;}
.y15_c00459{bottom:615.600000px;}
.y14_c00459{bottom:639.750000px;}
.y13_c00459{bottom:659.550000px;}
.y12_c00459{bottom:679.650000px;}
.y11_c00459{bottom:699.900000px;}
.y10_c00459{bottom:719.700000px;}
.yf_c00459{bottom:739.800000px;}
.ye_c00459{bottom:759.600000px;}
.yd_c00459{bottom:779.400000px;}
.yc_c00459{bottom:799.500000px;}
.yb_c00459{bottom:819.300000px;}
.ya_c00459{bottom:839.550000px;}
.y9_c00459{bottom:859.350000px;}
.y8_c00459{bottom:879.150000px;}
.y7_c00459{bottom:898.950000px;}
.y6_c00459{bottom:920.100000px;}
.y5_c00459{bottom:938.850000px;}
.y4_c00459{bottom:959.100000px;}
.y3_c00459{bottom:978.450000px;}
.y2_c00459{bottom:1003.350000px;}
.y1_c00459{bottom:1042.200000px;}
.h2_c00459{height:54.000000px;}
.h3_c00459{height:60.000000px;}
.h1_c00459{height:1166.250000px;}
.h0_c00459{height:1166.400056px;}
.w0_c00459{width:920.879975px;}
.w1_c00459{width:921.000000px;}
.x0_c00459{left:0.000000px;}
.x43_c00459{left:110.850000px;}
.x81_c00459{left:111.900000px;}
.x44_c00459{left:135.300000px;}
.x4_c00459{left:141.450000px;}
.x46_c00459{left:142.500000px;}
.x2c_c00459{left:143.700000px;}
.x88_c00459{left:144.750000px;}
.x92_c00459{left:145.800000px;}
.x96_c00459{left:146.850000px;}
.x9_c00459{left:148.650000px;}
.x7_c00459{left:150.150000px;}
.x4e_c00459{left:151.200000px;}
.x93_c00459{left:153.300000px;}
.x5a_c00459{left:161.100000px;}
.x6f_c00459{left:163.350000px;}
.x39_c00459{left:166.650000px;}
.x5_c00459{left:167.700000px;}
.xf_c00459{left:169.500000px;}
.x2e_c00459{left:170.700000px;}
.x89_c00459{left:172.050000px;}
.x47_c00459{left:173.100000px;}
.x97_c00459{left:174.150000px;}
.x5b_c00459{left:191.700000px;}
.x5f_c00459{left:201.600000px;}
.x70_c00459{left:204.900000px;}
.x1e_c00459{left:209.400000px;}
.x10_c00459{left:211.200000px;}
.x20_c00459{left:212.850000px;}
.x8_c00459{left:214.200000px;}
.xa_c00459{left:215.550000px;}
.x6_c00459{left:218.100000px;}
.x4f_c00459{left:219.300000px;}
.x2d_c00459{left:225.150000px;}
.x3a_c00459{left:226.350000px;}
.x94_c00459{left:228.750000px;}
.x2f_c00459{left:231.900000px;}
.x33_c00459{left:234.000000px;}
.x48_c00459{left:238.650000px;}
.x37_c00459{left:240.600000px;}
.x14_c00459{left:243.300000px;}
.x45_c00459{left:245.550000px;}
.x34_c00459{left:247.200000px;}
.x32_c00459{left:248.400000px;}
.x21_c00459{left:254.100000px;}
.x8a_c00459{left:256.950000px;}
.x60_c00459{left:258.150000px;}
.x38_c00459{left:261.000000px;}
.x1f_c00459{left:264.150000px;}
.x1d_c00459{left:266.400000px;}
.x98_c00459{left:268.500000px;}
.x11_c00459{left:270.300000px;}
.x5c_c00459{left:271.650000px;}
.x71_c00459{left:273.900000px;}
.xb_c00459{left:275.250000px;}
.x78_c00459{left:277.200000px;}
.x6d_c00459{left:278.550000px;}
.x99_c00459{left:280.350000px;}
.x12_c00459{left:281.400000px;}
.xc_c00459{left:286.800000px;}
.x25_c00459{left:288.000000px;}
.x30_c00459{left:291.300000px;}
.x79_c00459{left:296.250000px;}
.x15_c00459{left:303.000000px;}
.x35_c00459{left:306.600000px;}
.x82_c00459{left:307.800000px;}
.x3b_c00459{left:309.750000px;}
.x50_c00459{left:311.400000px;}
.x16_c00459{left:314.100000px;}
.x36_c00459{left:317.700000px;}
.x49_c00459{left:319.950000px;}
.x61_c00459{left:321.150000px;}
.x51_c00459{left:322.200000px;}
.x22_c00459{left:324.600000px;}
.x5d_c00459{left:327.750000px;}
.x13_c00459{left:339.000000px;}
.x8b_c00459{left:344.400000px;}
.xd_c00459{left:347.250000px;}
.x9a_c00459{left:350.850000px;}
.x6e_c00459{left:352.050000px;}
.x1_c00459{left:356.400000px;}
.x26_c00459{left:358.200000px;}
.x9b_c00459{left:359.550000px;}
.x62_c00459{left:362.550000px;}
.x31_c00459{left:363.600000px;}
.x4a_c00459{left:365.700000px;}
.x3c_c00459{left:370.950000px;}
.x86_c00459{left:378.450000px;}
.x17_c00459{left:380.400000px;}
.xe_c00459{left:381.750000px;}
.x95_c00459{left:383.250000px;}
.x23_c00459{left:386.850000px;}
.x7a_c00459{left:390.600000px;}
.x27_c00459{left:392.700000px;}
.x8c_c00459{left:396.600000px;}
.x83_c00459{left:398.100000px;}
.x3d_c00459{left:400.500000px;}
.x63_c00459{left:406.200000px;}
.x72_c00459{left:409.950000px;}
.x52_c00459{left:411.900000px;}
.x8d_c00459{left:414.600000px;}
.x67_c00459{left:426.300000px;}
.x2_c00459{left:430.500000px;}
.x7b_c00459{left:432.300000px;}
.x28_c00459{left:435.150000px;}
.x24_c00459{left:441.150000px;}
.x18_c00459{left:444.900000px;}
.x5e_c00459{left:450.450000px;}
.x4b_c00459{left:453.900000px;}
.x84_c00459{left:455.700000px;}
.x87_c00459{left:456.900000px;}
.x9c_c00459{left:463.200000px;}
.x64_c00459{left:474.900000px;}
.x8e_c00459{left:483.300000px;}
.x29_c00459{left:484.800000px;}
.x73_c00459{left:486.000000px;}
.x53_c00459{left:490.050000px;}
.x65_c00459{left:503.400000px;}
.x4c_c00459{left:504.600000px;}
.x19_c00459{left:506.400000px;}
.x3e_c00459{left:507.750000px;}
.x4d_c00459{left:509.250000px;}
.x68_c00459{left:519.600000px;}
.x54_c00459{left:522.450000px;}
.x7c_c00459{left:527.250000px;}
.x3f_c00459{left:530.400000px;}
.x74_c00459{left:532.500000px;}
.x66_c00459{left:548.700000px;}
.x9d_c00459{left:551.400000px;}
.x2a_c00459{left:555.300000px;}
.x1a_c00459{left:559.350000px;}
.x55_c00459{left:570.000000px;}
.x75_c00459{left:572.400000px;}
.x8f_c00459{left:575.850000px;}
.x9e_c00459{left:578.400000px;}
.x76_c00459{left:589.650000px;}
.x2b_c00459{left:591.600000px;}
.x9f_c00459{left:597.150000px;}
.x69_c00459{left:599.100000px;}
.x7d_c00459{left:608.550000px;}
.xa0_c00459{left:611.250000px;}
.x77_c00459{left:615.150000px;}
.x85_c00459{left:619.800000px;}
.x56_c00459{left:622.200000px;}
.x6a_c00459{left:624.600000px;}
.x57_c00459{left:642.000000px;}
.x7e_c00459{left:656.850000px;}
.x1b_c00459{left:663.750000px;}
.x90_c00459{left:667.950000px;}
.x58_c00459{left:670.500000px;}
.x40_c00459{left:676.800000px;}
.x6b_c00459{left:684.750000px;}
.x41_c00459{left:697.350000px;}
.x1c_c00459{left:706.200000px;}
.x91_c00459{left:709.050000px;}
.x6c_c00459{left:713.250000px;}
.x7f_c00459{left:717.000000px;}
.x59_c00459{left:738.900000px;}
.x42_c00459{left:744.450000px;}
.x80_c00459{left:745.800000px;}
.x3_c00459{left:750.150000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws1_c00459{word-spacing:-5.545723pt;}
.ws2_c00459{word-spacing:-4.444444pt;}
.ws4_c00459{word-spacing:0.000000pt;}
.ws3_c00459{word-spacing:6.428571pt;}
.ws0_c00459{word-spacing:12.549020pt;}
.fs0_c00459{font-size:48.000000pt;}
.fs1_c00459{font-size:53.333333pt;}
.y0_c00459{bottom:0.000000pt;}
.y2b_c00459{bottom:131.200000pt;}
.y2a_c00459{bottom:162.933333pt;}
.y29_c00459{bottom:180.800000pt;}
.y28_c00459{bottom:198.400000pt;}
.y27_c00459{bottom:216.000000pt;}
.y26_c00459{bottom:233.866667pt;}
.y25_c00459{bottom:251.466667pt;}
.y24_c00459{bottom:269.466667pt;}
.y23_c00459{bottom:287.066667pt;}
.y22_c00459{bottom:304.666667pt;}
.y21_c00459{bottom:322.266667pt;}
.y20_c00459{bottom:340.133333pt;}
.y1f_c00459{bottom:357.733333pt;}
.y1e_c00459{bottom:375.333333pt;}
.y1d_c00459{bottom:392.933333pt;}
.y1c_c00459{bottom:410.933333pt;}
.y1b_c00459{bottom:429.066667pt;}
.y1a_c00459{bottom:446.666667pt;}
.y19_c00459{bottom:464.266667pt;}
.y18_c00459{bottom:481.866667pt;}
.y17_c00459{bottom:511.333333pt;}
.y16_c00459{bottom:529.333333pt;}
.y15_c00459{bottom:547.200000pt;}
.y14_c00459{bottom:568.666667pt;}
.y13_c00459{bottom:586.266667pt;}
.y12_c00459{bottom:604.133333pt;}
.y11_c00459{bottom:622.133333pt;}
.y10_c00459{bottom:639.733333pt;}
.yf_c00459{bottom:657.600000pt;}
.ye_c00459{bottom:675.200000pt;}
.yd_c00459{bottom:692.800000pt;}
.yc_c00459{bottom:710.666667pt;}
.yb_c00459{bottom:728.266667pt;}
.ya_c00459{bottom:746.266667pt;}
.y9_c00459{bottom:763.866667pt;}
.y8_c00459{bottom:781.466667pt;}
.y7_c00459{bottom:799.066667pt;}
.y6_c00459{bottom:817.866667pt;}
.y5_c00459{bottom:834.533333pt;}
.y4_c00459{bottom:852.533333pt;}
.y3_c00459{bottom:869.733333pt;}
.y2_c00459{bottom:891.866667pt;}
.y1_c00459{bottom:926.400000pt;}
.h2_c00459{height:48.000000pt;}
.h3_c00459{height:53.333333pt;}
.h1_c00459{height:1036.666667pt;}
.h0_c00459{height:1036.800049pt;}
.w0_c00459{width:818.559977pt;}
.w1_c00459{width:818.666667pt;}
.x0_c00459{left:0.000000pt;}
.x43_c00459{left:98.533333pt;}
.x81_c00459{left:99.466667pt;}
.x44_c00459{left:120.266667pt;}
.x4_c00459{left:125.733333pt;}
.x46_c00459{left:126.666667pt;}
.x2c_c00459{left:127.733333pt;}
.x88_c00459{left:128.666667pt;}
.x92_c00459{left:129.600000pt;}
.x96_c00459{left:130.533333pt;}
.x9_c00459{left:132.133333pt;}
.x7_c00459{left:133.466667pt;}
.x4e_c00459{left:134.400000pt;}
.x93_c00459{left:136.266667pt;}
.x5a_c00459{left:143.200000pt;}
.x6f_c00459{left:145.200000pt;}
.x39_c00459{left:148.133333pt;}
.x5_c00459{left:149.066667pt;}
.xf_c00459{left:150.666667pt;}
.x2e_c00459{left:151.733333pt;}
.x89_c00459{left:152.933333pt;}
.x47_c00459{left:153.866667pt;}
.x97_c00459{left:154.800000pt;}
.x5b_c00459{left:170.400000pt;}
.x5f_c00459{left:179.200000pt;}
.x70_c00459{left:182.133333pt;}
.x1e_c00459{left:186.133333pt;}
.x10_c00459{left:187.733333pt;}
.x20_c00459{left:189.200000pt;}
.x8_c00459{left:190.400000pt;}
.xa_c00459{left:191.600000pt;}
.x6_c00459{left:193.866667pt;}
.x4f_c00459{left:194.933333pt;}
.x2d_c00459{left:200.133333pt;}
.x3a_c00459{left:201.200000pt;}
.x94_c00459{left:203.333333pt;}
.x2f_c00459{left:206.133333pt;}
.x33_c00459{left:208.000000pt;}
.x48_c00459{left:212.133333pt;}
.x37_c00459{left:213.866667pt;}
.x14_c00459{left:216.266667pt;}
.x45_c00459{left:218.266667pt;}
.x34_c00459{left:219.733333pt;}
.x32_c00459{left:220.800000pt;}
.x21_c00459{left:225.866667pt;}
.x8a_c00459{left:228.400000pt;}
.x60_c00459{left:229.466667pt;}
.x38_c00459{left:232.000000pt;}
.x1f_c00459{left:234.800000pt;}
.x1d_c00459{left:236.800000pt;}
.x98_c00459{left:238.666667pt;}
.x11_c00459{left:240.266667pt;}
.x5c_c00459{left:241.466667pt;}
.x71_c00459{left:243.466667pt;}
.xb_c00459{left:244.666667pt;}
.x78_c00459{left:246.400000pt;}
.x6d_c00459{left:247.600000pt;}
.x99_c00459{left:249.200000pt;}
.x12_c00459{left:250.133333pt;}
.xc_c00459{left:254.933333pt;}
.x25_c00459{left:256.000000pt;}
.x30_c00459{left:258.933333pt;}
.x79_c00459{left:263.333333pt;}
.x15_c00459{left:269.333333pt;}
.x35_c00459{left:272.533333pt;}
.x82_c00459{left:273.600000pt;}
.x3b_c00459{left:275.333333pt;}
.x50_c00459{left:276.800000pt;}
.x16_c00459{left:279.200000pt;}
.x36_c00459{left:282.400000pt;}
.x49_c00459{left:284.400000pt;}
.x61_c00459{left:285.466667pt;}
.x51_c00459{left:286.400000pt;}
.x22_c00459{left:288.533333pt;}
.x5d_c00459{left:291.333333pt;}
.x13_c00459{left:301.333333pt;}
.x8b_c00459{left:306.133333pt;}
.xd_c00459{left:308.666667pt;}
.x9a_c00459{left:311.866667pt;}
.x6e_c00459{left:312.933333pt;}
.x1_c00459{left:316.800000pt;}
.x26_c00459{left:318.400000pt;}
.x9b_c00459{left:319.600000pt;}
.x62_c00459{left:322.266667pt;}
.x31_c00459{left:323.200000pt;}
.x4a_c00459{left:325.066667pt;}
.x3c_c00459{left:329.733333pt;}
.x86_c00459{left:336.400000pt;}
.x17_c00459{left:338.133333pt;}
.xe_c00459{left:339.333333pt;}
.x95_c00459{left:340.666667pt;}
.x23_c00459{left:343.866667pt;}
.x7a_c00459{left:347.200000pt;}
.x27_c00459{left:349.066667pt;}
.x8c_c00459{left:352.533333pt;}
.x83_c00459{left:353.866667pt;}
.x3d_c00459{left:356.000000pt;}
.x63_c00459{left:361.066667pt;}
.x72_c00459{left:364.400000pt;}
.x52_c00459{left:366.133333pt;}
.x8d_c00459{left:368.533333pt;}
.x67_c00459{left:378.933333pt;}
.x2_c00459{left:382.666667pt;}
.x7b_c00459{left:384.266667pt;}
.x28_c00459{left:386.800000pt;}
.x24_c00459{left:392.133333pt;}
.x18_c00459{left:395.466667pt;}
.x5e_c00459{left:400.400000pt;}
.x4b_c00459{left:403.466667pt;}
.x84_c00459{left:405.066667pt;}
.x87_c00459{left:406.133333pt;}
.x9c_c00459{left:411.733333pt;}
.x64_c00459{left:422.133333pt;}
.x8e_c00459{left:429.600000pt;}
.x29_c00459{left:430.933333pt;}
.x73_c00459{left:432.000000pt;}
.x53_c00459{left:435.600000pt;}
.x65_c00459{left:447.466667pt;}
.x4c_c00459{left:448.533333pt;}
.x19_c00459{left:450.133333pt;}
.x3e_c00459{left:451.333333pt;}
.x4d_c00459{left:452.666667pt;}
.x68_c00459{left:461.866667pt;}
.x54_c00459{left:464.400000pt;}
.x7c_c00459{left:468.666667pt;}
.x3f_c00459{left:471.466667pt;}
.x74_c00459{left:473.333333pt;}
.x66_c00459{left:487.733333pt;}
.x9d_c00459{left:490.133333pt;}
.x2a_c00459{left:493.600000pt;}
.x1a_c00459{left:497.200000pt;}
.x55_c00459{left:506.666667pt;}
.x75_c00459{left:508.800000pt;}
.x8f_c00459{left:511.866667pt;}
.x9e_c00459{left:514.133333pt;}
.x76_c00459{left:524.133333pt;}
.x2b_c00459{left:525.866667pt;}
.x9f_c00459{left:530.800000pt;}
.x69_c00459{left:532.533333pt;}
.x7d_c00459{left:540.933333pt;}
.xa0_c00459{left:543.333333pt;}
.x77_c00459{left:546.800000pt;}
.x85_c00459{left:550.933333pt;}
.x56_c00459{left:553.066667pt;}
.x6a_c00459{left:555.200000pt;}
.x57_c00459{left:570.666667pt;}
.x7e_c00459{left:583.866667pt;}
.x1b_c00459{left:590.000000pt;}
.x90_c00459{left:593.733333pt;}
.x58_c00459{left:596.000000pt;}
.x40_c00459{left:601.600000pt;}
.x6b_c00459{left:608.666667pt;}
.x41_c00459{left:619.866667pt;}
.x1c_c00459{left:627.733333pt;}
.x91_c00459{left:630.266667pt;}
.x6c_c00459{left:634.000000pt;}
.x7f_c00459{left:637.333333pt;}
.x59_c00459{left:656.800000pt;}
.x42_c00459{left:661.733333pt;}
.x80_c00459{left:662.933333pt;}
.x3_c00459{left:666.800000pt;}
}





/* 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_c00460 {
    display:none;
  }
  .loading-indicator_c00460.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00460 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_c00460 { 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_c00460" -> "#page-container .classname_c00460")
 */
.pf_c00460 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00460 { /* 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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00460 { /* 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_c00460 { /* 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_c00460 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00460 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00460 {overflow:visible;}
  }
}
.c_c00460 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00460 { /* 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_c00460:after { /* webkit #35443 */
  content: '';
}
.t_c00460:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00460 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 */
}
.__c00460 { /* 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_c00460 { /* info for Javascript */
  display:none;
}
.l_c00460 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00460 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00460 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00460: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_c00460 {
    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_c00460.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00460.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_c00460 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00460{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00460;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.000000;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;}
.m7f_c00460{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m60_c00460{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00460{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m86_c00460{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m43_c00460{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m38_c00460{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m85_c00460{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00460{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m36_c00460{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00460{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m87_c00460{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00460{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m17_c00460{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m79_c00460{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md_c00460{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00460{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00460{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m65_c00460{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m73_c00460{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00460{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m42_c00460{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m50_c00460{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00460{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8_c00460{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00460{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00460{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m67_c00460{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m30_c00460{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m64_c00460{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m12_c00460{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m16_c00460{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m84_c00460{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00460{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m20_c00460{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00460{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m81_c00460{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m35_c00460{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m40_c00460{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m18_c00460{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00460{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00460{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00460{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m15_c00460{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m75_c00460{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m41_c00460{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m10_c00460{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00460{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00460{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m45_c00460{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m83_c00460{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m82_c00460{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00460{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m39_c00460{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11_c00460{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m48_c00460{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m49_c00460{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00460{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00460{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m52_c00460{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m32_c00460{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5_c00460{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00460{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m28_c00460{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00460{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m57_c00460{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m62_c00460{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00460{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mc_c00460{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m46_c00460{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00460{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00460{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00460{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00460{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m71_c00460{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m44_c00460{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m33_c00460{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00460{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m29_c00460{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00460{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m69_c00460{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m54_c00460{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m14_c00460{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m51_c00460{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb_c00460{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m63_c00460{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m80_c00460{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m61_c00460{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m72_c00460{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00460{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00460{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m74_c00460{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m34_c00460{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m23_c00460{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m47_c00460{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00460{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m77_c00460{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m78_c00460{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00460{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00460{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m21_c00460{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27_c00460{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00460{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00460{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m59_c00460{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m19_c00460{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00460{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m26_c00460{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00460{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m55_c00460{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.mf_c00460{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m58_c00460{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m70_c00460{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m56_c00460{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m13_c00460{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m22_c00460{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m53_c00460{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m66_c00460{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00460{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00460{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00460{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m76_c00460{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00460{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00460{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m31_c00460{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00460{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m37_c00460{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00460{vertical-align:0.000000px;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{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__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:-5.421687px;}
.ws5_c00460{word-spacing:0.000000px;}
.ws3_c00460{word-spacing:8.783784px;}
.ws1_c00460{word-spacing:17.341772px;}
.ws2_c00460{word-spacing:17.352941px;}
.ws4_c00460{word-spacing:19.041096px;}
.fc0_c00460{color:transparent;}
.fs0_c00460{font-size:60.000000px;}
.y0_c00460{bottom:0.000000px;}
.y2a_c00460{bottom:153.750000px;}
.y29_c00460{bottom:180.750000px;}
.y28_c00460{bottom:201.300000px;}
.y27_c00460{bottom:221.100000px;}
.y26_c00460{bottom:240.450000px;}
.y25_c00460{bottom:260.250000px;}
.y24_c00460{bottom:280.200000px;}
.y23_c00460{bottom:300.300000px;}
.y22_c00460{bottom:320.400000px;}
.y21_c00460{bottom:340.500000px;}
.y20_c00460{bottom:360.000000px;}
.y1f_c00460{bottom:379.800000px;}
.y1e_c00460{bottom:415.500000px;}
.y1d_c00460{bottom:435.600000px;}
.y1c_c00460{bottom:455.100000px;}
.y1b_c00460{bottom:474.900000px;}
.y1a_c00460{bottom:510.150000px;}
.y19_c00460{bottom:529.950000px;}
.y18_c00460{bottom:550.050000px;}
.y17_c00460{bottom:569.850000px;}
.y16_c00460{bottom:589.650000px;}
.y15_c00460{bottom:609.900000px;}
.y14_c00460{bottom:629.700000px;}
.y13_c00460{bottom:649.500000px;}
.y12_c00460{bottom:669.900000px;}
.y11_c00460{bottom:689.700000px;}
.y10_c00460{bottom:709.500000px;}
.yf_c00460{bottom:729.750000px;}
.ye_c00460{bottom:749.100000px;}
.yd_c00460{bottom:769.650000px;}
.yc_c00460{bottom:790.500000px;}
.yb_c00460{bottom:810.300000px;}
.ya_c00460{bottom:849.600000px;}
.y9_c00460{bottom:869.700000px;}
.y8_c00460{bottom:889.200000px;}
.y7_c00460{bottom:909.000000px;}
.y6_c00460{bottom:928.800000px;}
.y5_c00460{bottom:948.300000px;}
.y4_c00460{bottom:968.400000px;}
.y3_c00460{bottom:988.500000px;}
.y2_c00460{bottom:1009.050000px;}
.y1_c00460{bottom:1047.600000px;}
.h2_c00460{height:60.000000px;}
.h1_c00460{height:1166.250000px;}
.h0_c00460{height:1166.400056px;}
.w0_c00460{width:920.879975px;}
.w1_c00460{width:921.000000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:149.100000px;}
.xa9_c00460{left:150.750000px;}
.x52_c00460{left:170.250000px;}
.x8e_c00460{left:175.050000px;}
.x34_c00460{left:177.600000px;}
.x3_c00460{left:180.000000px;}
.x9f_c00460{left:181.800000px;}
.x76_c00460{left:183.900000px;}
.x44_c00460{left:188.700000px;}
.x9b_c00460{left:189.750000px;}
.x42_c00460{left:193.050000px;}
.x53_c00460{left:199.350000px;}
.x82_c00460{left:203.400000px;}
.x46_c00460{left:205.500000px;}
.x4_c00460{left:207.000000px;}
.x5a_c00460{left:208.950000px;}
.x8f_c00460{left:211.800000px;}
.x83_c00460{left:216.000000px;}
.x43_c00460{left:220.050000px;}
.xaa_c00460{left:222.450000px;}
.x77_c00460{left:226.800000px;}
.x35_c00460{left:228.000000px;}
.x17_c00460{left:230.100000px;}
.x27_c00460{left:232.800000px;}
.xb3_c00460{left:234.000000px;}
.x47_c00460{left:237.600000px;}
.x9d_c00460{left:239.100000px;}
.x26_c00460{left:242.550000px;}
.x9c_c00460{left:243.750000px;}
.x14_c00460{left:247.200000px;}
.x64_c00460{left:248.700000px;}
.x21_c00460{left:249.900000px;}
.x90_c00460{left:251.100000px;}
.x28_c00460{left:253.350000px;}
.xa0_c00460{left:255.300000px;}
.x36_c00460{left:256.500000px;}
.x5b_c00460{left:258.300000px;}
.xe_c00460{left:260.250000px;}
.x6e_c00460{left:262.800000px;}
.x45_c00460{left:267.150000px;}
.x16_c00460{left:272.250000px;}
.x1a_c00460{left:273.750000px;}
.x29_c00460{left:278.850000px;}
.x22_c00460{left:280.350000px;}
.x5_c00460{left:281.850000px;}
.x84_c00460{left:286.200000px;}
.x5c_c00460{left:290.400000px;}
.x15_c00460{left:295.050000px;}
.x78_c00460{left:297.300000px;}
.x6_c00460{left:299.550000px;}
.x18_c00460{left:301.500000px;}
.x54_c00460{left:303.150000px;}
.x91_c00460{left:309.750000px;}
.xf_c00460{left:310.950000px;}
.x6f_c00460{left:312.750000px;}
.xa1_c00460{left:314.250000px;}
.x2a_c00460{left:317.400000px;}
.xb4_c00460{left:321.150000px;}
.x7_c00460{left:324.750000px;}
.x97_c00460{left:325.800000px;}
.x65_c00460{left:331.500000px;}
.x98_c00460{left:333.300000px;}
.x37_c00460{left:334.650000px;}
.x23_c00460{left:345.150000px;}
.x5d_c00460{left:349.050000px;}
.x99_c00460{left:350.550000px;}
.x10_c00460{left:352.050000px;}
.x48_c00460{left:355.350000px;}
.x2b_c00460{left:359.100000px;}
.x79_c00460{left:363.900000px;}
.x19_c00460{left:367.350000px;}
.x38_c00460{left:368.550000px;}
.x66_c00460{left:370.800000px;}
.x8_c00460{left:374.400000px;}
.x9a_c00460{left:376.500000px;}
.xb5_c00460{left:380.850000px;}
.xab_c00460{left:383.400000px;}
.x70_c00460{left:386.250000px;}
.x11_c00460{left:388.800000px;}
.xbb_c00460{left:390.300000px;}
.x92_c00460{left:391.500000px;}
.x9e_c00460{left:392.850000px;}
.x49_c00460{left:396.000000px;}
.xa2_c00460{left:398.100000px;}
.x39_c00460{left:399.450000px;}
.x85_c00460{left:402.150000px;}
.x24_c00460{left:406.050000px;}
.x2c_c00460{left:409.200000px;}
.x4a_c00460{left:411.150000px;}
.x12_c00460{left:417.300000px;}
.x86_c00460{left:422.700000px;}
.x71_c00460{left:428.700000px;}
.x2d_c00460{left:433.350000px;}
.x13_c00460{left:434.550000px;}
.x3a_c00460{left:438.000000px;}
.xb6_c00460{left:439.200000px;}
.x1b_c00460{left:440.850000px;}
.x2_c00460{left:445.800000px;}
.x87_c00460{left:451.200000px;}
.x72_c00460{left:453.150000px;}
.x93_c00460{left:454.200000px;}
.x3b_c00460{left:457.500000px;}
.x7a_c00460{left:462.150000px;}
.x9_c00460{left:464.100000px;}
.xbc_c00460{left:465.600000px;}
.x25_c00460{left:471.150000px;}
.xa3_c00460{left:472.650000px;}
.x4b_c00460{left:475.200000px;}
.x1c_c00460{left:485.850000px;}
.x3c_c00460{left:490.950000px;}
.xa_c00460{left:500.850000px;}
.x67_c00460{left:505.650000px;}
.x2e_c00460{left:506.850000px;}
.x7b_c00460{left:508.650000px;}
.x1d_c00460{left:510.300000px;}
.x94_c00460{left:515.400000px;}
.xa4_c00460{left:517.950000px;}
.x88_c00460{left:520.650000px;}
.x5e_c00460{left:522.900000px;}
.xbd_c00460{left:526.500000px;}
.xb_c00460{left:529.650000px;}
.x89_c00460{left:531.150000px;}
.xb7_c00460{left:534.450000px;}
.xac_c00460{left:538.650000px;}
.x73_c00460{left:545.700000px;}
.x68_c00460{left:547.800000px;}
.xa5_c00460{left:551.100000px;}
.x95_c00460{left:552.450000px;}
.x1e_c00460{left:559.950000px;}
.x7c_c00460{left:561.450000px;}
.x3d_c00460{left:567.600000px;}
.x5f_c00460{left:569.400000px;}
.xc_c00460{left:570.750000px;}
.xad_c00460{left:572.850000px;}
.x55_c00460{left:573.900000px;}
.x96_c00460{left:576.150000px;}
.x69_c00460{left:578.100000px;}
.x2f_c00460{left:585.300000px;}
.x8a_c00460{left:590.250000px;}
.xbe_c00460{left:593.100000px;}
.xd_c00460{left:596.250000px;}
.xa6_c00460{left:598.950000px;}
.x60_c00460{left:600.000000px;}
.xb8_c00460{left:604.350000px;}
.x3e_c00460{left:605.700000px;}
.x74_c00460{left:614.100000px;}
.x7d_c00460{left:616.950000px;}
.x4c_c00460{left:618.750000px;}
.x1f_c00460{left:623.700000px;}
.x6a_c00460{left:625.200000px;}
.xb9_c00460{left:633.150000px;}
.x4d_c00460{left:634.650000px;}
.xae_c00460{left:637.350000px;}
.x7e_c00460{left:639.300000px;}
.x6b_c00460{left:647.550000px;}
.x30_c00460{left:648.600000px;}
.x61_c00460{left:649.650000px;}
.xaf_c00460{left:650.700000px;}
.x8b_c00460{left:660.750000px;}
.x20_c00460{left:662.250000px;}
.x4e_c00460{left:668.100000px;}
.xb0_c00460{left:670.800000px;}
.x62_c00460{left:672.000000px;}
.x6c_c00460{left:675.600000px;}
.x56_c00460{left:680.850000px;}
.x8c_c00460{left:683.850000px;}
.x31_c00460{left:687.150000px;}
.x3f_c00460{left:689.250000px;}
.x7f_c00460{left:694.800000px;}
.xba_c00460{left:696.900000px;}
.x4f_c00460{left:714.150000px;}
.x57_c00460{left:716.550000px;}
.xa7_c00460{left:717.750000px;}
.x63_c00460{left:719.100000px;}
.x40_c00460{left:725.250000px;}
.x50_c00460{left:733.650000px;}
.xa8_c00460{left:735.000000px;}
.x6d_c00460{left:741.150000px;}
.xb1_c00460{left:746.400000px;}
.x58_c00460{left:750.450000px;}
.x51_c00460{left:756.000000px;}
.x8d_c00460{left:757.950000px;}
.x32_c00460{left:760.650000px;}
.x41_c00460{left:768.750000px;}
.x80_c00460{left:770.700000px;}
.xb2_c00460{left:788.100000px;}
.x75_c00460{left:796.950000px;}
.x33_c00460{left:799.200000px;}
.x59_c00460{left:801.150000px;}
.x81_c00460{left:803.100000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:-4.819277pt;}
.ws5_c00460{word-spacing:0.000000pt;}
.ws3_c00460{word-spacing:7.807808pt;}
.ws1_c00460{word-spacing:15.414909pt;}
.ws2_c00460{word-spacing:15.424837pt;}
.ws4_c00460{word-spacing:16.925419pt;}
.fs0_c00460{font-size:53.333333pt;}
.y0_c00460{bottom:0.000000pt;}
.y2a_c00460{bottom:136.666667pt;}
.y29_c00460{bottom:160.666667pt;}
.y28_c00460{bottom:178.933333pt;}
.y27_c00460{bottom:196.533333pt;}
.y26_c00460{bottom:213.733333pt;}
.y25_c00460{bottom:231.333333pt;}
.y24_c00460{bottom:249.066667pt;}
.y23_c00460{bottom:266.933333pt;}
.y22_c00460{bottom:284.800000pt;}
.y21_c00460{bottom:302.666667pt;}
.y20_c00460{bottom:320.000000pt;}
.y1f_c00460{bottom:337.600000pt;}
.y1e_c00460{bottom:369.333333pt;}
.y1d_c00460{bottom:387.200000pt;}
.y1c_c00460{bottom:404.533333pt;}
.y1b_c00460{bottom:422.133333pt;}
.y1a_c00460{bottom:453.466667pt;}
.y19_c00460{bottom:471.066667pt;}
.y18_c00460{bottom:488.933333pt;}
.y17_c00460{bottom:506.533333pt;}
.y16_c00460{bottom:524.133333pt;}
.y15_c00460{bottom:542.133333pt;}
.y14_c00460{bottom:559.733333pt;}
.y13_c00460{bottom:577.333333pt;}
.y12_c00460{bottom:595.466667pt;}
.y11_c00460{bottom:613.066667pt;}
.y10_c00460{bottom:630.666667pt;}
.yf_c00460{bottom:648.666667pt;}
.ye_c00460{bottom:665.866667pt;}
.yd_c00460{bottom:684.133333pt;}
.yc_c00460{bottom:702.666667pt;}
.yb_c00460{bottom:720.266667pt;}
.ya_c00460{bottom:755.200000pt;}
.y9_c00460{bottom:773.066667pt;}
.y8_c00460{bottom:790.400000pt;}
.y7_c00460{bottom:808.000000pt;}
.y6_c00460{bottom:825.600000pt;}
.y5_c00460{bottom:842.933333pt;}
.y4_c00460{bottom:860.800000pt;}
.y3_c00460{bottom:878.666667pt;}
.y2_c00460{bottom:896.933333pt;}
.y1_c00460{bottom:931.200000pt;}
.h2_c00460{height:53.333333pt;}
.h1_c00460{height:1036.666667pt;}
.h0_c00460{height:1036.800049pt;}
.w0_c00460{width:818.559977pt;}
.w1_c00460{width:818.666667pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:132.533333pt;}
.xa9_c00460{left:134.000000pt;}
.x52_c00460{left:151.333333pt;}
.x8e_c00460{left:155.600000pt;}
.x34_c00460{left:157.866667pt;}
.x3_c00460{left:160.000000pt;}
.x9f_c00460{left:161.600000pt;}
.x76_c00460{left:163.466667pt;}
.x44_c00460{left:167.733333pt;}
.x9b_c00460{left:168.666667pt;}
.x42_c00460{left:171.600000pt;}
.x53_c00460{left:177.200000pt;}
.x82_c00460{left:180.800000pt;}
.x46_c00460{left:182.666667pt;}
.x4_c00460{left:184.000000pt;}
.x5a_c00460{left:185.733333pt;}
.x8f_c00460{left:188.266667pt;}
.x83_c00460{left:192.000000pt;}
.x43_c00460{left:195.600000pt;}
.xaa_c00460{left:197.733333pt;}
.x77_c00460{left:201.600000pt;}
.x35_c00460{left:202.666667pt;}
.x17_c00460{left:204.533333pt;}
.x27_c00460{left:206.933333pt;}
.xb3_c00460{left:208.000000pt;}
.x47_c00460{left:211.200000pt;}
.x9d_c00460{left:212.533333pt;}
.x26_c00460{left:215.600000pt;}
.x9c_c00460{left:216.666667pt;}
.x14_c00460{left:219.733333pt;}
.x64_c00460{left:221.066667pt;}
.x21_c00460{left:222.133333pt;}
.x90_c00460{left:223.200000pt;}
.x28_c00460{left:225.200000pt;}
.xa0_c00460{left:226.933333pt;}
.x36_c00460{left:228.000000pt;}
.x5b_c00460{left:229.600000pt;}
.xe_c00460{left:231.333333pt;}
.x6e_c00460{left:233.600000pt;}
.x45_c00460{left:237.466667pt;}
.x16_c00460{left:242.000000pt;}
.x1a_c00460{left:243.333333pt;}
.x29_c00460{left:247.866667pt;}
.x22_c00460{left:249.200000pt;}
.x5_c00460{left:250.533333pt;}
.x84_c00460{left:254.400000pt;}
.x5c_c00460{left:258.133333pt;}
.x15_c00460{left:262.266667pt;}
.x78_c00460{left:264.266667pt;}
.x6_c00460{left:266.266667pt;}
.x18_c00460{left:268.000000pt;}
.x54_c00460{left:269.466667pt;}
.x91_c00460{left:275.333333pt;}
.xf_c00460{left:276.400000pt;}
.x6f_c00460{left:278.000000pt;}
.xa1_c00460{left:279.333333pt;}
.x2a_c00460{left:282.133333pt;}
.xb4_c00460{left:285.466667pt;}
.x7_c00460{left:288.666667pt;}
.x97_c00460{left:289.600000pt;}
.x65_c00460{left:294.666667pt;}
.x98_c00460{left:296.266667pt;}
.x37_c00460{left:297.466667pt;}
.x23_c00460{left:306.800000pt;}
.x5d_c00460{left:310.266667pt;}
.x99_c00460{left:311.600000pt;}
.x10_c00460{left:312.933333pt;}
.x48_c00460{left:315.866667pt;}
.x2b_c00460{left:319.200000pt;}
.x79_c00460{left:323.466667pt;}
.x19_c00460{left:326.533333pt;}
.x38_c00460{left:327.600000pt;}
.x66_c00460{left:329.600000pt;}
.x8_c00460{left:332.800000pt;}
.x9a_c00460{left:334.666667pt;}
.xb5_c00460{left:338.533333pt;}
.xab_c00460{left:340.800000pt;}
.x70_c00460{left:343.333333pt;}
.x11_c00460{left:345.600000pt;}
.xbb_c00460{left:346.933333pt;}
.x92_c00460{left:348.000000pt;}
.x9e_c00460{left:349.200000pt;}
.x49_c00460{left:352.000000pt;}
.xa2_c00460{left:353.866667pt;}
.x39_c00460{left:355.066667pt;}
.x85_c00460{left:357.466667pt;}
.x24_c00460{left:360.933333pt;}
.x2c_c00460{left:363.733333pt;}
.x4a_c00460{left:365.466667pt;}
.x12_c00460{left:370.933333pt;}
.x86_c00460{left:375.733333pt;}
.x71_c00460{left:381.066667pt;}
.x2d_c00460{left:385.200000pt;}
.x13_c00460{left:386.266667pt;}
.x3a_c00460{left:389.333333pt;}
.xb6_c00460{left:390.400000pt;}
.x1b_c00460{left:391.866667pt;}
.x2_c00460{left:396.266667pt;}
.x87_c00460{left:401.066667pt;}
.x72_c00460{left:402.800000pt;}
.x93_c00460{left:403.733333pt;}
.x3b_c00460{left:406.666667pt;}
.x7a_c00460{left:410.800000pt;}
.x9_c00460{left:412.533333pt;}
.xbc_c00460{left:413.866667pt;}
.x25_c00460{left:418.800000pt;}
.xa3_c00460{left:420.133333pt;}
.x4b_c00460{left:422.400000pt;}
.x1c_c00460{left:431.866667pt;}
.x3c_c00460{left:436.400000pt;}
.xa_c00460{left:445.200000pt;}
.x67_c00460{left:449.466667pt;}
.x2e_c00460{left:450.533333pt;}
.x7b_c00460{left:452.133333pt;}
.x1d_c00460{left:453.600000pt;}
.x94_c00460{left:458.133333pt;}
.xa4_c00460{left:460.400000pt;}
.x88_c00460{left:462.800000pt;}
.x5e_c00460{left:464.800000pt;}
.xbd_c00460{left:468.000000pt;}
.xb_c00460{left:470.800000pt;}
.x89_c00460{left:472.133333pt;}
.xb7_c00460{left:475.066667pt;}
.xac_c00460{left:478.800000pt;}
.x73_c00460{left:485.066667pt;}
.x68_c00460{left:486.933333pt;}
.xa5_c00460{left:489.866667pt;}
.x95_c00460{left:491.066667pt;}
.x1e_c00460{left:497.733333pt;}
.x7c_c00460{left:499.066667pt;}
.x3d_c00460{left:504.533333pt;}
.x5f_c00460{left:506.133333pt;}
.xc_c00460{left:507.333333pt;}
.xad_c00460{left:509.200000pt;}
.x55_c00460{left:510.133333pt;}
.x96_c00460{left:512.133333pt;}
.x69_c00460{left:513.866667pt;}
.x2f_c00460{left:520.266667pt;}
.x8a_c00460{left:524.666667pt;}
.xbe_c00460{left:527.200000pt;}
.xd_c00460{left:530.000000pt;}
.xa6_c00460{left:532.400000pt;}
.x60_c00460{left:533.333333pt;}
.xb8_c00460{left:537.200000pt;}
.x3e_c00460{left:538.400000pt;}
.x74_c00460{left:545.866667pt;}
.x7d_c00460{left:548.400000pt;}
.x4c_c00460{left:550.000000pt;}
.x1f_c00460{left:554.400000pt;}
.x6a_c00460{left:555.733333pt;}
.xb9_c00460{left:562.800000pt;}
.x4d_c00460{left:564.133333pt;}
.xae_c00460{left:566.533333pt;}
.x7e_c00460{left:568.266667pt;}
.x6b_c00460{left:575.600000pt;}
.x30_c00460{left:576.533333pt;}
.x61_c00460{left:577.466667pt;}
.xaf_c00460{left:578.400000pt;}
.x8b_c00460{left:587.333333pt;}
.x20_c00460{left:588.666667pt;}
.x4e_c00460{left:593.866667pt;}
.xb0_c00460{left:596.266667pt;}
.x62_c00460{left:597.333333pt;}
.x6c_c00460{left:600.533333pt;}
.x56_c00460{left:605.200000pt;}
.x8c_c00460{left:607.866667pt;}
.x31_c00460{left:610.800000pt;}
.x3f_c00460{left:612.666667pt;}
.x7f_c00460{left:617.600000pt;}
.xba_c00460{left:619.466667pt;}
.x4f_c00460{left:634.800000pt;}
.x57_c00460{left:636.933333pt;}
.xa7_c00460{left:638.000000pt;}
.x63_c00460{left:639.200000pt;}
.x40_c00460{left:644.666667pt;}
.x50_c00460{left:652.133333pt;}
.xa8_c00460{left:653.333333pt;}
.x6d_c00460{left:658.800000pt;}
.xb1_c00460{left:663.466667pt;}
.x58_c00460{left:667.066667pt;}
.x51_c00460{left:672.000000pt;}
.x8d_c00460{left:673.733333pt;}
.x32_c00460{left:676.133333pt;}
.x41_c00460{left:683.333333pt;}
.x80_c00460{left:685.066667pt;}
.xb2_c00460{left:700.533333pt;}
.x75_c00460{left:708.400000pt;}
.x33_c00460{left:710.400000pt;}
.x59_c00460{left:712.133333pt;}
.x81_c00460{left:713.866667pt;}
}





/* 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_c00461 {
    display:none;
  }
  .loading-indicator_c00461.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00461 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_c00461 { 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_c00461" -> "#page-container .classname_c00461")
 */
.pf_c00461 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00461 { /* 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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00461 { /* 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_c00461 { /* 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_c00461 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00461 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00461 {overflow:visible;}
  }
}
.c_c00461 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00461 { /* 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_c00461:after { /* webkit #35443 */
  content: '';
}
.t_c00461:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00461 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 */
}
.__c00461 { /* 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_c00461 { /* info for Javascript */
  display:none;
}
.l_c00461 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00461 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00461 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00461: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_c00461 {
    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_c00461.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00461.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_c00461 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00461{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.000000;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;}
.m13_c00461{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00461{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10_c00461{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00461{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m34_c00461{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00461{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m19_c00461{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m57_c00461{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.mc_c00461{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m42_c00461{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.me_c00461{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00461{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m77_c00461{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m54_c00461{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m41_c00461{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m31_c00461{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00461{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m37_c00461{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00461{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m47_c00461{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00461{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00461{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m45_c00461{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m29_c00461{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00461{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m59_c00461{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00461{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m50_c00461{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00461{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00461{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md_c00461{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m43_c00461{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m71_c00461{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00461{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00461{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00461{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m58_c00461{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m49_c00461{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m53_c00461{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m21_c00461{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9_c00461{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00461{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m33_c00461{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m18_c00461{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m25_c00461{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m28_c00461{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m12_c00461{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m39_c00461{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00461{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00461{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m11_c00461{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m30_c00461{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m67_c00461{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00461{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m79_c00461{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00461{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m61_c00461{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m32_c00461{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m38_c00461{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m73_c00461{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m16_c00461{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00461{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m63_c00461{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m35_c00461{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m20_c00461{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m22_c00461{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00461{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00461{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m23_c00461{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m14_c00461{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m24_c00461{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00461{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00461{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00461{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m76_c00461{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00461{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00461{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m27_c00461{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m74_c00461{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m51_c00461{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m44_c00461{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m68_c00461{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00461{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m64_c00461{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00461{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00461{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m78_c00461{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00461{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3_c00461{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m15_c00461{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m55_c00461{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m56_c00461{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m40_c00461{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m52_c00461{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00461{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00461{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26_c00461{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m17_c00461{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m72_c00461{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00461{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m62_c00461{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m36_c00461{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m46_c00461{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00461{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m48_c00461{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00461{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00461{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m65_c00461{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m75_c00461{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00461{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00461{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00461{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m0_c00461{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m69_c00461{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00461{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.mf_c00461{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{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__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00461{word-spacing:-3.055556px;}
.ws2_c00461{word-spacing:-1.764706px;}
.ws3_c00461{word-spacing:0.000000px;}
.ws0_c00461{word-spacing:1.666667px;}
.fc0_c00461{color:transparent;}
.fs0_c00461{font-size:54.000000px;}
.fs1_c00461{font-size:60.000000px;}
.y0_c00461{bottom:0.000000px;}
.y2c_c00461{bottom:149.700000px;}
.y2b_c00461{bottom:169.950000px;}
.y2a_c00461{bottom:189.300000px;}
.y29_c00461{bottom:209.550000px;}
.y28_c00461{bottom:229.350000px;}
.y27_c00461{bottom:249.450000px;}
.y26_c00461{bottom:269.250000px;}
.y25_c00461{bottom:289.500000px;}
.y24_c00461{bottom:309.300000px;}
.y23_c00461{bottom:329.100000px;}
.y22_c00461{bottom:348.900000px;}
.y21_c00461{bottom:368.250000px;}
.y20_c00461{bottom:388.500000px;}
.y1f_c00461{bottom:408.300000px;}
.y1e_c00461{bottom:428.400000px;}
.y1d_c00461{bottom:448.200000px;}
.y1c_c00461{bottom:468.000000px;}
.y1b_c00461{bottom:487.800000px;}
.y1a_c00461{bottom:507.600000px;}
.y19_c00461{bottom:527.400000px;}
.y18_c00461{bottom:547.500000px;}
.y17_c00461{bottom:567.300000px;}
.y16_c00461{bottom:587.100000px;}
.y15_c00461{bottom:606.900000px;}
.y14_c00461{bottom:627.150000px;}
.y13_c00461{bottom:647.250000px;}
.y12_c00461{bottom:667.800000px;}
.y11_c00461{bottom:687.600000px;}
.y10_c00461{bottom:707.100000px;}
.yf_c00461{bottom:727.200000px;}
.ye_c00461{bottom:747.000000px;}
.yd_c00461{bottom:767.100000px;}
.yc_c00461{bottom:787.350000px;}
.yb_c00461{bottom:807.150000px;}
.ya_c00461{bottom:826.500000px;}
.y9_c00461{bottom:846.750000px;}
.y8_c00461{bottom:866.550000px;}
.y7_c00461{bottom:887.100000px;}
.y6_c00461{bottom:906.900000px;}
.y5_c00461{bottom:927.000000px;}
.y4_c00461{bottom:946.050000px;}
.y3_c00461{bottom:966.600000px;}
.y2_c00461{bottom:1004.400000px;}
.y1_c00461{bottom:1043.700000px;}
.h2_c00461{height:54.000000px;}
.h3_c00461{height:60.000000px;}
.h1_c00461{height:1166.250000px;}
.h0_c00461{height:1166.400056px;}
.w0_c00461{width:920.879975px;}
.w1_c00461{width:921.000000px;}
.x0_c00461{left:0.000000px;}
.x4_c00461{left:140.400000px;}
.x6c_c00461{left:141.450000px;}
.x9d_c00461{left:142.500000px;}
.xac_c00461{left:143.700000px;}
.x13_c00461{left:149.100000px;}
.x8a_c00461{left:164.550000px;}
.x5_c00461{left:168.150000px;}
.x82_c00461{left:169.200000px;}
.xa3_c00461{left:170.550000px;}
.x21_c00461{left:186.900000px;}
.x7e_c00461{left:187.950000px;}
.x96_c00461{left:189.300000px;}
.xa5_c00461{left:200.550000px;}
.x22_c00461{left:201.750000px;}
.x4f_c00461{left:204.450000px;}
.x6_c00461{left:211.650000px;}
.x6d_c00461{left:212.850000px;}
.x53_c00461{left:216.300000px;}
.x8f_c00461{left:217.950000px;}
.x14_c00461{left:219.300000px;}
.x52_c00461{left:220.350000px;}
.x37_c00461{left:221.400000px;}
.x77_c00461{left:222.450000px;}
.x45_c00461{left:223.950000px;}
.xa1_c00461{left:225.900000px;}
.xad_c00461{left:228.900000px;}
.x67_c00461{left:235.800000px;}
.x2c_c00461{left:236.850000px;}
.xa4_c00461{left:237.900000px;}
.x38_c00461{left:241.200000px;}
.x89_c00461{left:243.300000px;}
.x97_c00461{left:244.800000px;}
.x8e_c00461{left:249.000000px;}
.x58_c00461{left:253.500000px;}
.x43_c00461{left:254.550000px;}
.x4d_c00461{left:259.650000px;}
.x68_c00461{left:261.000000px;}
.x41_c00461{left:263.550000px;}
.x15_c00461{left:264.600000px;}
.x39_c00461{left:267.150000px;}
.x6e_c00461{left:270.000000px;}
.xae_c00461{left:271.350000px;}
.x7_c00461{left:272.850000px;}
.x42_c00461{left:275.100000px;}
.x8c_c00461{left:277.500000px;}
.x16_c00461{left:278.700000px;}
.x46_c00461{left:281.850000px;}
.x5e_c00461{left:283.650000px;}
.x6f_c00461{left:287.250000px;}
.x78_c00461{left:289.350000px;}
.x8_c00461{left:290.850000px;}
.x69_c00461{left:292.350000px;}
.x73_c00461{left:295.350000px;}
.x98_c00461{left:298.500000px;}
.xaf_c00461{left:300.150000px;}
.x2d_c00461{left:301.350000px;}
.x8d_c00461{left:305.550000px;}
.x47_c00461{left:307.800000px;}
.x44_c00461{left:310.350000px;}
.x70_c00461{left:312.750000px;}
.x85_c00461{left:314.100000px;}
.x90_c00461{left:315.450000px;}
.x7f_c00461{left:316.950000px;}
.x6a_c00461{left:320.400000px;}
.x59_c00461{left:325.200000px;}
.x23_c00461{left:327.750000px;}
.x9_c00461{left:336.600000px;}
.x54_c00461{left:337.650000px;}
.x4e_c00461{left:339.900000px;}
.x2e_c00461{left:340.950000px;}
.x80_c00461{left:342.450000px;}
.x50_c00461{left:344.850000px;}
.x24_c00461{left:347.550000px;}
.x5f_c00461{left:349.200000px;}
.x17_c00461{left:353.250000px;}
.xa2_c00461{left:356.550000px;}
.x74_c00461{left:359.400000px;}
.x1_c00461{left:362.550000px;}
.x99_c00461{left:363.600000px;}
.x2f_c00461{left:366.450000px;}
.x48_c00461{left:369.300000px;}
.xa_c00461{left:372.300000px;}
.xa9_c00461{left:381.150000px;}
.x91_c00461{left:382.350000px;}
.x71_c00461{left:384.000000px;}
.xb0_c00461{left:385.050000px;}
.x81_c00461{left:386.400000px;}
.x5a_c00461{left:390.000000px;}
.x86_c00461{left:392.550000px;}
.x3a_c00461{left:394.200000px;}
.x60_c00461{left:396.000000px;}
.xb_c00461{left:397.800000px;}
.x51_c00461{left:399.600000px;}
.x25_c00461{left:403.050000px;}
.x30_c00461{left:405.300000px;}
.x9a_c00461{left:406.500000px;}
.xb1_c00461{left:408.150000px;}
.x72_c00461{left:412.500000px;}
.x61_c00461{left:414.000000px;}
.x55_c00461{left:415.050000px;}
.x18_c00461{left:416.250000px;}
.x31_c00461{left:422.550000px;}
.x83_c00461{left:427.350000px;}
.x75_c00461{left:431.400000px;}
.x87_c00461{left:433.200000px;}
.xc_c00461{left:435.600000px;}
.x2_c00461{left:437.400000px;}
.x62_c00461{left:439.200000px;}
.x9b_c00461{left:441.000000px;}
.x3b_c00461{left:442.500000px;}
.x56_c00461{left:443.550000px;}
.x19_c00461{left:447.150000px;}
.x26_c00461{left:450.900000px;}
.x49_c00461{left:453.450000px;}
.x76_c00461{left:457.350000px;}
.x5b_c00461{left:464.850000px;}
.x57_c00461{left:466.650000px;}
.x9e_c00461{left:469.350000px;}
.x3c_c00461{left:471.000000px;}
.x4a_c00461{left:478.950000px;}
.x63_c00461{left:483.900000px;}
.x8b_c00461{left:485.850000px;}
.x88_c00461{left:489.000000px;}
.x1a_c00461{left:492.900000px;}
.x5c_c00461{left:493.950000px;}
.xd_c00461{left:495.300000px;}
.x92_c00461{left:496.500000px;}
.x9f_c00461{left:498.150000px;}
.xaa_c00461{left:499.500000px;}
.x64_c00461{left:501.150000px;}
.x27_c00461{left:503.100000px;}
.x79_c00461{left:509.100000px;}
.x32_c00461{left:510.750000px;}
.x6b_c00461{left:513.000000px;}
.xe_c00461{left:516.900000px;}
.x84_c00461{left:521.550000px;}
.x1b_c00461{left:524.550000px;}
.x65_c00461{left:527.100000px;}
.xa6_c00461{left:531.000000px;}
.x9c_c00461{left:535.350000px;}
.x93_c00461{left:538.650000px;}
.x4b_c00461{left:540.600000px;}
.x28_c00461{left:543.750000px;}
.xa0_c00461{left:544.950000px;}
.x5d_c00461{left:548.250000px;}
.x33_c00461{left:563.700000px;}
.x4c_c00461{left:566.850000px;}
.x3d_c00461{left:568.200000px;}
.xf_c00461{left:569.850000px;}
.x1c_c00461{left:575.700000px;}
.x7a_c00461{left:579.300000px;}
.xa7_c00461{left:587.550000px;}
.x10_c00461{left:595.050000px;}
.x29_c00461{left:607.050000px;}
.x11_c00461{left:612.750000px;}
.x3e_c00461{left:622.200000px;}
.x1d_c00461{left:626.100000px;}
.x34_c00461{left:634.650000px;}
.xa8_c00461{left:637.650000px;}
.x94_c00461{left:638.700000px;}
.x3f_c00461{left:647.400000px;}
.x1e_c00461{left:649.500000px;}
.x7b_c00461{left:651.300000px;}
.x12_c00461{left:661.350000px;}
.x35_c00461{left:663.150000px;}
.xab_c00461{left:671.850000px;}
.x2a_c00461{left:678.000000px;}
.x36_c00461{left:689.100000px;}
.x95_c00461{left:697.050000px;}
.x7c_c00461{left:698.100000px;}
.x40_c00461{left:702.150000px;}
.x1f_c00461{left:709.200000px;}
.x7d_c00461{left:718.200000px;}
.x2b_c00461{left:744.600000px;}
.x3_c00461{left:749.100000px;}
.x20_c00461{left:752.400000px;}
.x66_c00461{left:753.900000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws1_c00461{word-spacing:-2.716049pt;}
.ws2_c00461{word-spacing:-1.568627pt;}
.ws3_c00461{word-spacing:0.000000pt;}
.ws0_c00461{word-spacing:1.481481pt;}
.fs0_c00461{font-size:48.000000pt;}
.fs1_c00461{font-size:53.333333pt;}
.y0_c00461{bottom:0.000000pt;}
.y2c_c00461{bottom:133.066667pt;}
.y2b_c00461{bottom:151.066667pt;}
.y2a_c00461{bottom:168.266667pt;}
.y29_c00461{bottom:186.266667pt;}
.y28_c00461{bottom:203.866667pt;}
.y27_c00461{bottom:221.733333pt;}
.y26_c00461{bottom:239.333333pt;}
.y25_c00461{bottom:257.333333pt;}
.y24_c00461{bottom:274.933333pt;}
.y23_c00461{bottom:292.533333pt;}
.y22_c00461{bottom:310.133333pt;}
.y21_c00461{bottom:327.333333pt;}
.y20_c00461{bottom:345.333333pt;}
.y1f_c00461{bottom:362.933333pt;}
.y1e_c00461{bottom:380.800000pt;}
.y1d_c00461{bottom:398.400000pt;}
.y1c_c00461{bottom:416.000000pt;}
.y1b_c00461{bottom:433.600000pt;}
.y1a_c00461{bottom:451.200000pt;}
.y19_c00461{bottom:468.800000pt;}
.y18_c00461{bottom:486.666667pt;}
.y17_c00461{bottom:504.266667pt;}
.y16_c00461{bottom:521.866667pt;}
.y15_c00461{bottom:539.466667pt;}
.y14_c00461{bottom:557.466667pt;}
.y13_c00461{bottom:575.333333pt;}
.y12_c00461{bottom:593.600000pt;}
.y11_c00461{bottom:611.200000pt;}
.y10_c00461{bottom:628.533333pt;}
.yf_c00461{bottom:646.400000pt;}
.ye_c00461{bottom:664.000000pt;}
.yd_c00461{bottom:681.866667pt;}
.yc_c00461{bottom:699.866667pt;}
.yb_c00461{bottom:717.466667pt;}
.ya_c00461{bottom:734.666667pt;}
.y9_c00461{bottom:752.666667pt;}
.y8_c00461{bottom:770.266667pt;}
.y7_c00461{bottom:788.533333pt;}
.y6_c00461{bottom:806.133333pt;}
.y5_c00461{bottom:824.000000pt;}
.y4_c00461{bottom:840.933333pt;}
.y3_c00461{bottom:859.200000pt;}
.y2_c00461{bottom:892.800000pt;}
.y1_c00461{bottom:927.733333pt;}
.h2_c00461{height:48.000000pt;}
.h3_c00461{height:53.333333pt;}
.h1_c00461{height:1036.666667pt;}
.h0_c00461{height:1036.800049pt;}
.w0_c00461{width:818.559977pt;}
.w1_c00461{width:818.666667pt;}
.x0_c00461{left:0.000000pt;}
.x4_c00461{left:124.800000pt;}
.x6c_c00461{left:125.733333pt;}
.x9d_c00461{left:126.666667pt;}
.xac_c00461{left:127.733333pt;}
.x13_c00461{left:132.533333pt;}
.x8a_c00461{left:146.266667pt;}
.x5_c00461{left:149.466667pt;}
.x82_c00461{left:150.400000pt;}
.xa3_c00461{left:151.600000pt;}
.x21_c00461{left:166.133333pt;}
.x7e_c00461{left:167.066667pt;}
.x96_c00461{left:168.266667pt;}
.xa5_c00461{left:178.266667pt;}
.x22_c00461{left:179.333333pt;}
.x4f_c00461{left:181.733333pt;}
.x6_c00461{left:188.133333pt;}
.x6d_c00461{left:189.200000pt;}
.x53_c00461{left:192.266667pt;}
.x8f_c00461{left:193.733333pt;}
.x14_c00461{left:194.933333pt;}
.x52_c00461{left:195.866667pt;}
.x37_c00461{left:196.800000pt;}
.x77_c00461{left:197.733333pt;}
.x45_c00461{left:199.066667pt;}
.xa1_c00461{left:200.800000pt;}
.xad_c00461{left:203.466667pt;}
.x67_c00461{left:209.600000pt;}
.x2c_c00461{left:210.533333pt;}
.xa4_c00461{left:211.466667pt;}
.x38_c00461{left:214.400000pt;}
.x89_c00461{left:216.266667pt;}
.x97_c00461{left:217.600000pt;}
.x8e_c00461{left:221.333333pt;}
.x58_c00461{left:225.333333pt;}
.x43_c00461{left:226.266667pt;}
.x4d_c00461{left:230.800000pt;}
.x68_c00461{left:232.000000pt;}
.x41_c00461{left:234.266667pt;}
.x15_c00461{left:235.200000pt;}
.x39_c00461{left:237.466667pt;}
.x6e_c00461{left:240.000000pt;}
.xae_c00461{left:241.200000pt;}
.x7_c00461{left:242.533333pt;}
.x42_c00461{left:244.533333pt;}
.x8c_c00461{left:246.666667pt;}
.x16_c00461{left:247.733333pt;}
.x46_c00461{left:250.533333pt;}
.x5e_c00461{left:252.133333pt;}
.x6f_c00461{left:255.333333pt;}
.x78_c00461{left:257.200000pt;}
.x8_c00461{left:258.533333pt;}
.x69_c00461{left:259.866667pt;}
.x73_c00461{left:262.533333pt;}
.x98_c00461{left:265.333333pt;}
.xaf_c00461{left:266.800000pt;}
.x2d_c00461{left:267.866667pt;}
.x8d_c00461{left:271.600000pt;}
.x47_c00461{left:273.600000pt;}
.x44_c00461{left:275.866667pt;}
.x70_c00461{left:278.000000pt;}
.x85_c00461{left:279.200000pt;}
.x90_c00461{left:280.400000pt;}
.x7f_c00461{left:281.733333pt;}
.x6a_c00461{left:284.800000pt;}
.x59_c00461{left:289.066667pt;}
.x23_c00461{left:291.333333pt;}
.x9_c00461{left:299.200000pt;}
.x54_c00461{left:300.133333pt;}
.x4e_c00461{left:302.133333pt;}
.x2e_c00461{left:303.066667pt;}
.x80_c00461{left:304.400000pt;}
.x50_c00461{left:306.533333pt;}
.x24_c00461{left:308.933333pt;}
.x5f_c00461{left:310.400000pt;}
.x17_c00461{left:314.000000pt;}
.xa2_c00461{left:316.933333pt;}
.x74_c00461{left:319.466667pt;}
.x1_c00461{left:322.266667pt;}
.x99_c00461{left:323.200000pt;}
.x2f_c00461{left:325.733333pt;}
.x48_c00461{left:328.266667pt;}
.xa_c00461{left:330.933333pt;}
.xa9_c00461{left:338.800000pt;}
.x91_c00461{left:339.866667pt;}
.x71_c00461{left:341.333333pt;}
.xb0_c00461{left:342.266667pt;}
.x81_c00461{left:343.466667pt;}
.x5a_c00461{left:346.666667pt;}
.x86_c00461{left:348.933333pt;}
.x3a_c00461{left:350.400000pt;}
.x60_c00461{left:352.000000pt;}
.xb_c00461{left:353.600000pt;}
.x51_c00461{left:355.200000pt;}
.x25_c00461{left:358.266667pt;}
.x30_c00461{left:360.266667pt;}
.x9a_c00461{left:361.333333pt;}
.xb1_c00461{left:362.800000pt;}
.x72_c00461{left:366.666667pt;}
.x61_c00461{left:368.000000pt;}
.x55_c00461{left:368.933333pt;}
.x18_c00461{left:370.000000pt;}
.x31_c00461{left:375.600000pt;}
.x83_c00461{left:379.866667pt;}
.x75_c00461{left:383.466667pt;}
.x87_c00461{left:385.066667pt;}
.xc_c00461{left:387.200000pt;}
.x2_c00461{left:388.800000pt;}
.x62_c00461{left:390.400000pt;}
.x9b_c00461{left:392.000000pt;}
.x3b_c00461{left:393.333333pt;}
.x56_c00461{left:394.266667pt;}
.x19_c00461{left:397.466667pt;}
.x26_c00461{left:400.800000pt;}
.x49_c00461{left:403.066667pt;}
.x76_c00461{left:406.533333pt;}
.x5b_c00461{left:413.200000pt;}
.x57_c00461{left:414.800000pt;}
.x9e_c00461{left:417.200000pt;}
.x3c_c00461{left:418.666667pt;}
.x4a_c00461{left:425.733333pt;}
.x63_c00461{left:430.133333pt;}
.x8b_c00461{left:431.866667pt;}
.x88_c00461{left:434.666667pt;}
.x1a_c00461{left:438.133333pt;}
.x5c_c00461{left:439.066667pt;}
.xd_c00461{left:440.266667pt;}
.x92_c00461{left:441.333333pt;}
.x9f_c00461{left:442.800000pt;}
.xaa_c00461{left:444.000000pt;}
.x64_c00461{left:445.466667pt;}
.x27_c00461{left:447.200000pt;}
.x79_c00461{left:452.533333pt;}
.x32_c00461{left:454.000000pt;}
.x6b_c00461{left:456.000000pt;}
.xe_c00461{left:459.466667pt;}
.x84_c00461{left:463.600000pt;}
.x1b_c00461{left:466.266667pt;}
.x65_c00461{left:468.533333pt;}
.xa6_c00461{left:472.000000pt;}
.x9c_c00461{left:475.866667pt;}
.x93_c00461{left:478.800000pt;}
.x4b_c00461{left:480.533333pt;}
.x28_c00461{left:483.333333pt;}
.xa0_c00461{left:484.400000pt;}
.x5d_c00461{left:487.333333pt;}
.x33_c00461{left:501.066667pt;}
.x4c_c00461{left:503.866667pt;}
.x3d_c00461{left:505.066667pt;}
.xf_c00461{left:506.533333pt;}
.x1c_c00461{left:511.733333pt;}
.x7a_c00461{left:514.933333pt;}
.xa7_c00461{left:522.266667pt;}
.x10_c00461{left:528.933333pt;}
.x29_c00461{left:539.600000pt;}
.x11_c00461{left:544.666667pt;}
.x3e_c00461{left:553.066667pt;}
.x1d_c00461{left:556.533333pt;}
.x34_c00461{left:564.133333pt;}
.xa8_c00461{left:566.800000pt;}
.x94_c00461{left:567.733333pt;}
.x3f_c00461{left:575.466667pt;}
.x1e_c00461{left:577.333333pt;}
.x7b_c00461{left:578.933333pt;}
.x12_c00461{left:587.866667pt;}
.x35_c00461{left:589.466667pt;}
.xab_c00461{left:597.200000pt;}
.x2a_c00461{left:602.666667pt;}
.x36_c00461{left:612.533333pt;}
.x95_c00461{left:619.600000pt;}
.x7c_c00461{left:620.533333pt;}
.x40_c00461{left:624.133333pt;}
.x1f_c00461{left:630.400000pt;}
.x7d_c00461{left:638.400000pt;}
.x2b_c00461{left:661.866667pt;}
.x3_c00461{left:665.866667pt;}
.x20_c00461{left:668.800000pt;}
.x66_c00461{left:670.133333pt;}
}





/* 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_c00462 {
    display:none;
  }
  .loading-indicator_c00462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00462 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_c00462 { 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_c00462" -> "#page-container .classname_c00462")
 */
.pf_c00462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00462 { /* 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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00462 { /* 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_c00462 { /* 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_c00462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00462 {overflow:visible;}
  }
}
.c_c00462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00462 { /* 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_c00462:after { /* webkit #35443 */
  content: '';
}
.t_c00462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00462 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 */
}
.__c00462 { /* 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_c00462 { /* info for Javascript */
  display:none;
}
.l_c00462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00462: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_c00462 {
    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_c00462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00462.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_c00462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00462;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.000000;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;}
.m77_c00462{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m88_c00462{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00462{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m73_c00462{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00462{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00462{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m84_c00462{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00462{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m75_c00462{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00462{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m32_c00462{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m36_c00462{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00462{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00462{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m85_c00462{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m66_c00462{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m61_c00462{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m47_c00462{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m28_c00462{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m86_c00462{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m40_c00462{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00462{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m39_c00462{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00462{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m27_c00462{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00462{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9_c00462{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m87_c00462{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00462{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m70_c00462{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m51_c00462{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m57_c00462{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4_c00462{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00462{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m29_c00462{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m49_c00462{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00462{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m15_c00462{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m56_c00462{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m64_c00462{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m45_c00462{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb_c00462{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m52_c00462{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00462{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m53_c00462{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00462{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m67_c00462{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m81_c00462{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md_c00462{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00462{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00462{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00462{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00462{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m72_c00462{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m69_c00462{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.me_c00462{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m23_c00462{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00462{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00462{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m22_c00462{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m20_c00462{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m21_c00462{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m63_c00462{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00462{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00462{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m33_c00462{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m24_c00462{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m19_c00462{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m79_c00462{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m60_c00462{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00462{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m34_c00462{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7_c00462{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m14_c00462{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m46_c00462{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m41_c00462{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.ma_c00462{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m31_c00462{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m65_c00462{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00462{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m42_c00462{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.mc_c00462{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m18_c00462{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m11_c00462{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m76_c00462{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m30_c00462{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00462{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m59_c00462{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00462{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m17_c00462{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m80_c00462{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00462{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00462{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m12_c00462{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m8_c00462{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00462{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00462{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00462{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00462{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m74_c00462{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00462{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00462{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m78_c00462{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m71_c00462{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m26_c00462{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m35_c00462{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m25_c00462{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m62_c00462{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m54_c00462{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00462{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m10_c00462{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00462{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m50_c00462{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00462{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00462{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m13_c00462{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00462{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m43_c00462{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00462{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m44_c00462{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00462{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m83_c00462{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m82_c00462{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00462{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00462{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mf_c00462{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m38_c00462{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00462{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m58_c00462{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00462{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00462{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00462{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m37_c00462{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00462{vertical-align:0.000000px;}
.ls0_c00462{letter-spacing:0.000000px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{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__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00462{word-spacing:-7.380952px;}
.ws0_c00462{word-spacing:-1.276596px;}
.ws3_c00462{word-spacing:-0.606061px;}
.ws7_c00462{word-spacing:0.000000px;}
.ws4_c00462{word-spacing:0.277778px;}
.ws1_c00462{word-spacing:3.055556px;}
.ws6_c00462{word-spacing:6.136364px;}
.ws2_c00462{word-spacing:15.882353px;}
._0_c00462{width:40.138889px;}
.fc0_c00462{color:transparent;}
.fs1_c00462{font-size:48.000000px;}
.fs0_c00462{font-size:60.000000px;}
.y0_c00462{bottom:0.000000px;}
.y29_c00462{bottom:149.400000px;}
.y28_c00462{bottom:164.850000px;}
.y27_c00462{bottom:205.950000px;}
.y26_c00462{bottom:225.450000px;}
.y25_c00462{bottom:245.250000px;}
.y24_c00462{bottom:265.050000px;}
.y23_c00462{bottom:285.150000px;}
.y22_c00462{bottom:324.750000px;}
.y21_c00462{bottom:345.300000px;}
.y20_c00462{bottom:365.100000px;}
.y1f_c00462{bottom:385.200000px;}
.y1e_c00462{bottom:405.750000px;}
.y1d_c00462{bottom:426.300000px;}
.y1c_c00462{bottom:446.100000px;}
.y1b_c00462{bottom:465.150000px;}
.y1a_c00462{bottom:505.800000px;}
.y19_c00462{bottom:525.600000px;}
.y18_c00462{bottom:545.700000px;}
.y17_c00462{bottom:565.200000px;}
.y16_c00462{bottom:584.700000px;}
.y15_c00462{bottom:604.500000px;}
.y14_c00462{bottom:624.750000px;}
.y13_c00462{bottom:644.550000px;}
.y12_c00462{bottom:664.350000px;}
.y11_c00462{bottom:684.450000px;}
.y10_c00462{bottom:704.550000px;}
.yf_c00462{bottom:746.700000px;}
.ye_c00462{bottom:766.500000px;}
.yd_c00462{bottom:786.300000px;}
.yc_c00462{bottom:807.150000px;}
.yb_c00462{bottom:826.950000px;}
.ya_c00462{bottom:846.750000px;}
.y9_c00462{bottom:866.550000px;}
.y8_c00462{bottom:886.650000px;}
.y7_c00462{bottom:905.700000px;}
.y6_c00462{bottom:925.500000px;}
.y5_c00462{bottom:946.050000px;}
.y4_c00462{bottom:965.550000px;}
.y3_c00462{bottom:986.100000px;}
.y2_c00462{bottom:1005.900000px;}
.y1_c00462{bottom:1045.800000px;}
.h3_c00462{height:48.000000px;}
.h2_c00462{height:60.000000px;}
.h1_c00462{height:1166.250000px;}
.h0_c00462{height:1166.400056px;}
.w0_c00462{width:920.879975px;}
.w1_c00462{width:921.000000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:146.850000px;}
.x6d_c00462{left:148.050000px;}
.xc0_c00462{left:149.850000px;}
.xc9_c00462{left:151.200000px;}
.x80_c00462{left:168.450000px;}
.x9e_c00462{left:169.500000px;}
.xd1_c00462{left:172.950000px;}
.x93_c00462{left:176.100000px;}
.x3_c00462{left:177.450000px;}
.x6_c00462{left:178.950000px;}
.x4a_c00462{left:181.200000px;}
.x61_c00462{left:186.900000px;}
.xab_c00462{left:187.950000px;}
.xd8_c00462{left:189.300000px;}
.x58_c00462{left:193.050000px;}
.xa5_c00462{left:195.900000px;}
.x3f_c00462{left:199.500000px;}
.x87_c00462{left:200.700000px;}
.x4b_c00462{left:202.050000px;}
.x4_c00462{left:204.450000px;}
.x9_c00462{left:205.950000px;}
.x7_c00462{left:207.000000px;}
.xae_c00462{left:208.200000px;}
.xc1_c00462{left:210.300000px;}
.xb6_c00462{left:221.100000px;}
.x40_c00462{left:225.750000px;}
.x62_c00462{left:228.300000px;}
.x88_c00462{left:229.800000px;}
.x4c_c00462{left:231.600000px;}
.xb7_c00462{left:234.000000px;}
.x35_c00462{left:235.350000px;}
.xaa_c00462{left:236.550000px;}
.xac_c00462{left:238.350000px;}
.x5_c00462{left:239.400000px;}
.x2c_c00462{left:243.750000px;}
.x6e_c00462{left:245.700000px;}
.x41_c00462{left:250.950000px;}
.xa_c00462{left:253.950000px;}
.x59_c00462{left:261.450000px;}
.x63_c00462{left:262.500000px;}
.x19_c00462{left:266.700000px;}
.x75_c00462{left:268.200000px;}
.x25_c00462{left:269.700000px;}
.xb_c00462{left:271.200000px;}
.x2d_c00462{left:272.250000px;}
.x8_c00462{left:277.650000px;}
.x12_c00462{left:280.200000px;}
.xaf_c00462{left:281.700000px;}
.x94_c00462{left:289.500000px;}
.xd9_c00462{left:290.850000px;}
.x4d_c00462{left:293.550000px;}
.x1f_c00462{left:294.750000px;}
.xb2_c00462{left:296.400000px;}
.xc_c00462{left:297.900000px;}
.xad_c00462{left:299.250000px;}
.x36_c00462{left:301.950000px;}
.xb4_c00462{left:303.450000px;}
.xb3_c00462{left:304.950000px;}
.xb5_c00462{left:306.150000px;}
.x2e_c00462{left:309.300000px;}
.xb0_c00462{left:310.500000px;}
.x1a_c00462{left:312.000000px;}
.x6f_c00462{left:313.350000px;}
.x76_c00462{left:316.050000px;}
.x42_c00462{left:320.100000px;}
.x64_c00462{left:321.900000px;}
.xda_c00462{left:324.300000px;}
.x2f_c00462{left:325.650000px;}
.xc2_c00462{left:329.250000px;}
.x70_c00462{left:330.600000px;}
.x95_c00462{left:336.300000px;}
.x26_c00462{left:339.150000px;}
.x1b_c00462{left:341.100000px;}
.x13_c00462{left:343.650000px;}
.x43_c00462{left:348.150000px;}
.x30_c00462{left:350.550000px;}
.xb1_c00462{left:355.200000px;}
.x65_c00462{left:357.150000px;}
.xd_c00462{left:361.950000px;}
.x89_c00462{left:367.650000px;}
.x77_c00462{left:369.000000px;}
.xc3_c00462{left:370.950000px;}
.x4e_c00462{left:374.250000px;}
.x8a_c00462{left:379.950000px;}
.x66_c00462{left:384.450000px;}
.x37_c00462{left:386.250000px;}
.xe_c00462{left:390.450000px;}
.x96_c00462{left:392.850000px;}
.x20_c00462{left:394.200000px;}
.x71_c00462{left:397.950000px;}
.x31_c00462{left:400.650000px;}
.x38_c00462{left:405.300000px;}
.xb8_c00462{left:407.850000px;}
.x1c_c00462{left:410.250000px;}
.x81_c00462{left:415.050000px;}
.x97_c00462{left:417.300000px;}
.xe1_c00462{left:418.650000px;}
.xf_c00462{left:424.650000px;}
.x14_c00462{left:426.750000px;}
.x32_c00462{left:429.150000px;}
.x39_c00462{left:431.250000px;}
.x67_c00462{left:432.750000px;}
.x8b_c00462{left:435.750000px;}
.x4f_c00462{left:440.100000px;}
.xca_c00462{left:441.750000px;}
.x44_c00462{left:443.250000px;}
.x9f_c00462{left:444.300000px;}
.x2_c00462{left:446.400000px;}
.x5a_c00462{left:447.900000px;}
.x78_c00462{left:450.450000px;}
.x27_c00462{left:453.300000px;}
.x33_c00462{left:455.100000px;}
.x21_c00462{left:465.150000px;}
.x5b_c00462{left:469.200000px;}
.xc4_c00462{left:473.250000px;}
.x10_c00462{left:474.300000px;}
.x45_c00462{left:475.350000px;}
.x15_c00462{left:476.400000px;}
.xb9_c00462{left:479.550000px;}
.xe2_c00462{left:481.350000px;}
.xa6_c00462{left:483.900000px;}
.x79_c00462{left:485.400000px;}
.x8c_c00462{left:489.000000px;}
.xe3_c00462{left:490.050000px;}
.x98_c00462{left:491.850000px;}
.x3a_c00462{left:493.200000px;}
.xcb_c00462{left:495.450000px;}
.x68_c00462{left:497.250000px;}
.x72_c00462{left:499.950000px;}
.xa0_c00462{left:502.200000px;}
.x11_c00462{left:503.400000px;}
.x28_c00462{left:505.500000px;}
.xdf_c00462{left:514.350000px;}
.x46_c00462{left:517.800000px;}
.x34_c00462{left:519.600000px;}
.x7a_c00462{left:522.450000px;}
.x8d_c00462{left:525.750000px;}
.xa7_c00462{left:526.800000px;}
.xe4_c00462{left:529.950000px;}
.x16_c00462{left:532.500000px;}
.xba_c00462{left:533.550000px;}
.xe0_c00462{left:535.200000px;}
.xd2_c00462{left:537.150000px;}
.xa1_c00462{left:538.200000px;}
.x22_c00462{left:544.350000px;}
.x29_c00462{left:547.650000px;}
.x99_c00462{left:548.700000px;}
.x8e_c00462{left:554.250000px;}
.x7b_c00462{left:556.950000px;}
.xcc_c00462{left:559.950000px;}
.x1d_c00462{left:561.150000px;}
.x2a_c00462{left:565.650000px;}
.x5c_c00462{left:567.750000px;}
.x73_c00462{left:569.850000px;}
.xd3_c00462{left:571.350000px;}
.x9a_c00462{left:572.850000px;}
.x82_c00462{left:574.050000px;}
.x17_c00462{left:579.600000px;}
.xcd_c00462{left:582.600000px;}
.x50_c00462{left:584.100000px;}
.xc5_c00462{left:586.050000px;}
.x2b_c00462{left:589.350000px;}
.x3b_c00462{left:591.900000px;}
.x69_c00462{left:596.550000px;}
.xe5_c00462{left:598.050000px;}
.x51_c00462{left:600.300000px;}
.x18_c00462{left:608.400000px;}
.x47_c00462{left:610.050000px;}
.xd4_c00462{left:614.550000px;}
.x23_c00462{left:617.100000px;}
.xc6_c00462{left:618.750000px;}
.xa2_c00462{left:619.950000px;}
.x7c_c00462{left:622.500000px;}
.x52_c00462{left:627.600000px;}
.xbb_c00462{left:629.250000px;}
.x1e_c00462{left:633.150000px;}
.xa8_c00462{left:640.350000px;}
.xd5_c00462{left:643.650000px;}
.x74_c00462{left:645.900000px;}
.x48_c00462{left:648.900000px;}
.x9b_c00462{left:650.550000px;}
.xce_c00462{left:651.750000px;}
.x53_c00462{left:652.800000px;}
.x6a_c00462{left:654.150000px;}
.x24_c00462{left:655.950000px;}
.x8f_c00462{left:659.400000px;}
.xa3_c00462{left:662.850000px;}
.x5d_c00462{left:663.900000px;}
.x7d_c00462{left:664.950000px;}
.xdb_c00462{left:669.600000px;}
.x9c_c00462{left:671.400000px;}
.xbc_c00462{left:672.750000px;}
.x6b_c00462{left:673.950000px;}
.x54_c00462{left:676.950000px;}
.x3c_c00462{left:681.900000px;}
.xdc_c00462{left:684.300000px;}
.xc7_c00462{left:688.950000px;}
.x5e_c00462{left:697.050000px;}
.x83_c00462{left:701.850000px;}
.xc8_c00462{left:709.500000px;}
.xbd_c00462{left:716.250000px;}
.x84_c00462{left:717.750000px;}
.x90_c00462{left:719.100000px;}
.xa9_c00462{left:722.400000px;}
.x7e_c00462{left:724.350000px;}
.x55_c00462{left:725.850000px;}
.xdd_c00462{left:728.250000px;}
.xd6_c00462{left:730.500000px;}
.x5f_c00462{left:732.300000px;}
.x49_c00462{left:735.600000px;}
.x91_c00462{left:737.400000px;}
.x9d_c00462{left:743.700000px;}
.x85_c00462{left:745.050000px;}
.x7f_c00462{left:746.700000px;}
.x3d_c00462{left:748.800000px;}
.xde_c00462{left:753.750000px;}
.xd7_c00462{left:755.700000px;}
.x6c_c00462{left:760.050000px;}
.xcf_c00462{left:764.400000px;}
.x56_c00462{left:771.900000px;}
.x92_c00462{left:775.200000px;}
.x86_c00462{left:778.500000px;}
.xbe_c00462{left:783.900000px;}
.x3e_c00462{left:787.650000px;}
.xd0_c00462{left:791.100000px;}
.xbf_c00462{left:795.000000px;}
.xa4_c00462{left:800.700000px;}
.x60_c00462{left:802.500000px;}
.x57_c00462{left:809.700000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws5_c00462{word-spacing:-6.560847pt;}
.ws0_c00462{word-spacing:-1.134752pt;}
.ws3_c00462{word-spacing:-0.538721pt;}
.ws7_c00462{word-spacing:0.000000pt;}
.ws4_c00462{word-spacing:0.246914pt;}
.ws1_c00462{word-spacing:2.716049pt;}
.ws6_c00462{word-spacing:5.454545pt;}
.ws2_c00462{word-spacing:14.117647pt;}
._0_c00462{width:35.679012pt;}
.fs1_c00462{font-size:42.666667pt;}
.fs0_c00462{font-size:53.333333pt;}
.y0_c00462{bottom:0.000000pt;}
.y29_c00462{bottom:132.800000pt;}
.y28_c00462{bottom:146.533333pt;}
.y27_c00462{bottom:183.066667pt;}
.y26_c00462{bottom:200.400000pt;}
.y25_c00462{bottom:218.000000pt;}
.y24_c00462{bottom:235.600000pt;}
.y23_c00462{bottom:253.466667pt;}
.y22_c00462{bottom:288.666667pt;}
.y21_c00462{bottom:306.933333pt;}
.y20_c00462{bottom:324.533333pt;}
.y1f_c00462{bottom:342.400000pt;}
.y1e_c00462{bottom:360.666667pt;}
.y1d_c00462{bottom:378.933333pt;}
.y1c_c00462{bottom:396.533333pt;}
.y1b_c00462{bottom:413.466667pt;}
.y1a_c00462{bottom:449.600000pt;}
.y19_c00462{bottom:467.200000pt;}
.y18_c00462{bottom:485.066667pt;}
.y17_c00462{bottom:502.400000pt;}
.y16_c00462{bottom:519.733333pt;}
.y15_c00462{bottom:537.333333pt;}
.y14_c00462{bottom:555.333333pt;}
.y13_c00462{bottom:572.933333pt;}
.y12_c00462{bottom:590.533333pt;}
.y11_c00462{bottom:608.400000pt;}
.y10_c00462{bottom:626.266667pt;}
.yf_c00462{bottom:663.733333pt;}
.ye_c00462{bottom:681.333333pt;}
.yd_c00462{bottom:698.933333pt;}
.yc_c00462{bottom:717.466667pt;}
.yb_c00462{bottom:735.066667pt;}
.ya_c00462{bottom:752.666667pt;}
.y9_c00462{bottom:770.266667pt;}
.y8_c00462{bottom:788.133333pt;}
.y7_c00462{bottom:805.066667pt;}
.y6_c00462{bottom:822.666667pt;}
.y5_c00462{bottom:840.933333pt;}
.y4_c00462{bottom:858.266667pt;}
.y3_c00462{bottom:876.533333pt;}
.y2_c00462{bottom:894.133333pt;}
.y1_c00462{bottom:929.600000pt;}
.h3_c00462{height:42.666667pt;}
.h2_c00462{height:53.333333pt;}
.h1_c00462{height:1036.666667pt;}
.h0_c00462{height:1036.800049pt;}
.w0_c00462{width:818.559977pt;}
.w1_c00462{width:818.666667pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:130.533333pt;}
.x6d_c00462{left:131.600000pt;}
.xc0_c00462{left:133.200000pt;}
.xc9_c00462{left:134.400000pt;}
.x80_c00462{left:149.733333pt;}
.x9e_c00462{left:150.666667pt;}
.xd1_c00462{left:153.733333pt;}
.x93_c00462{left:156.533333pt;}
.x3_c00462{left:157.733333pt;}
.x6_c00462{left:159.066667pt;}
.x4a_c00462{left:161.066667pt;}
.x61_c00462{left:166.133333pt;}
.xab_c00462{left:167.066667pt;}
.xd8_c00462{left:168.266667pt;}
.x58_c00462{left:171.600000pt;}
.xa5_c00462{left:174.133333pt;}
.x3f_c00462{left:177.333333pt;}
.x87_c00462{left:178.400000pt;}
.x4b_c00462{left:179.600000pt;}
.x4_c00462{left:181.733333pt;}
.x9_c00462{left:183.066667pt;}
.x7_c00462{left:184.000000pt;}
.xae_c00462{left:185.066667pt;}
.xc1_c00462{left:186.933333pt;}
.xb6_c00462{left:196.533333pt;}
.x40_c00462{left:200.666667pt;}
.x62_c00462{left:202.933333pt;}
.x88_c00462{left:204.266667pt;}
.x4c_c00462{left:205.866667pt;}
.xb7_c00462{left:208.000000pt;}
.x35_c00462{left:209.200000pt;}
.xaa_c00462{left:210.266667pt;}
.xac_c00462{left:211.866667pt;}
.x5_c00462{left:212.800000pt;}
.x2c_c00462{left:216.666667pt;}
.x6e_c00462{left:218.400000pt;}
.x41_c00462{left:223.066667pt;}
.xa_c00462{left:225.733333pt;}
.x59_c00462{left:232.400000pt;}
.x63_c00462{left:233.333333pt;}
.x19_c00462{left:237.066667pt;}
.x75_c00462{left:238.400000pt;}
.x25_c00462{left:239.733333pt;}
.xb_c00462{left:241.066667pt;}
.x2d_c00462{left:242.000000pt;}
.x8_c00462{left:246.800000pt;}
.x12_c00462{left:249.066667pt;}
.xaf_c00462{left:250.400000pt;}
.x94_c00462{left:257.333333pt;}
.xd9_c00462{left:258.533333pt;}
.x4d_c00462{left:260.933333pt;}
.x1f_c00462{left:262.000000pt;}
.xb2_c00462{left:263.466667pt;}
.xc_c00462{left:264.800000pt;}
.xad_c00462{left:266.000000pt;}
.x36_c00462{left:268.400000pt;}
.xb4_c00462{left:269.733333pt;}
.xb3_c00462{left:271.066667pt;}
.xb5_c00462{left:272.133333pt;}
.x2e_c00462{left:274.933333pt;}
.xb0_c00462{left:276.000000pt;}
.x1a_c00462{left:277.333333pt;}
.x6f_c00462{left:278.533333pt;}
.x76_c00462{left:280.933333pt;}
.x42_c00462{left:284.533333pt;}
.x64_c00462{left:286.133333pt;}
.xda_c00462{left:288.266667pt;}
.x2f_c00462{left:289.466667pt;}
.xc2_c00462{left:292.666667pt;}
.x70_c00462{left:293.866667pt;}
.x95_c00462{left:298.933333pt;}
.x26_c00462{left:301.466667pt;}
.x1b_c00462{left:303.200000pt;}
.x13_c00462{left:305.466667pt;}
.x43_c00462{left:309.466667pt;}
.x30_c00462{left:311.600000pt;}
.xb1_c00462{left:315.733333pt;}
.x65_c00462{left:317.466667pt;}
.xd_c00462{left:321.733333pt;}
.x89_c00462{left:326.800000pt;}
.x77_c00462{left:328.000000pt;}
.xc3_c00462{left:329.733333pt;}
.x4e_c00462{left:332.666667pt;}
.x8a_c00462{left:337.733333pt;}
.x66_c00462{left:341.733333pt;}
.x37_c00462{left:343.333333pt;}
.xe_c00462{left:347.066667pt;}
.x96_c00462{left:349.200000pt;}
.x20_c00462{left:350.400000pt;}
.x71_c00462{left:353.733333pt;}
.x31_c00462{left:356.133333pt;}
.x38_c00462{left:360.266667pt;}
.xb8_c00462{left:362.533333pt;}
.x1c_c00462{left:364.666667pt;}
.x81_c00462{left:368.933333pt;}
.x97_c00462{left:370.933333pt;}
.xe1_c00462{left:372.133333pt;}
.xf_c00462{left:377.466667pt;}
.x14_c00462{left:379.333333pt;}
.x32_c00462{left:381.466667pt;}
.x39_c00462{left:383.333333pt;}
.x67_c00462{left:384.666667pt;}
.x8b_c00462{left:387.333333pt;}
.x4f_c00462{left:391.200000pt;}
.xca_c00462{left:392.666667pt;}
.x44_c00462{left:394.000000pt;}
.x9f_c00462{left:394.933333pt;}
.x2_c00462{left:396.800000pt;}
.x5a_c00462{left:398.133333pt;}
.x78_c00462{left:400.400000pt;}
.x27_c00462{left:402.933333pt;}
.x33_c00462{left:404.533333pt;}
.x21_c00462{left:413.466667pt;}
.x5b_c00462{left:417.066667pt;}
.xc4_c00462{left:420.666667pt;}
.x10_c00462{left:421.600000pt;}
.x45_c00462{left:422.533333pt;}
.x15_c00462{left:423.466667pt;}
.xb9_c00462{left:426.266667pt;}
.xe2_c00462{left:427.866667pt;}
.xa6_c00462{left:430.133333pt;}
.x79_c00462{left:431.466667pt;}
.x8c_c00462{left:434.666667pt;}
.xe3_c00462{left:435.600000pt;}
.x98_c00462{left:437.200000pt;}
.x3a_c00462{left:438.400000pt;}
.xcb_c00462{left:440.400000pt;}
.x68_c00462{left:442.000000pt;}
.x72_c00462{left:444.400000pt;}
.xa0_c00462{left:446.400000pt;}
.x11_c00462{left:447.466667pt;}
.x28_c00462{left:449.333333pt;}
.xdf_c00462{left:457.200000pt;}
.x46_c00462{left:460.266667pt;}
.x34_c00462{left:461.866667pt;}
.x7a_c00462{left:464.400000pt;}
.x8d_c00462{left:467.333333pt;}
.xa7_c00462{left:468.266667pt;}
.xe4_c00462{left:471.066667pt;}
.x16_c00462{left:473.333333pt;}
.xba_c00462{left:474.266667pt;}
.xe0_c00462{left:475.733333pt;}
.xd2_c00462{left:477.466667pt;}
.xa1_c00462{left:478.400000pt;}
.x22_c00462{left:483.866667pt;}
.x29_c00462{left:486.800000pt;}
.x99_c00462{left:487.733333pt;}
.x8e_c00462{left:492.666667pt;}
.x7b_c00462{left:495.066667pt;}
.xcc_c00462{left:497.733333pt;}
.x1d_c00462{left:498.800000pt;}
.x2a_c00462{left:502.800000pt;}
.x5c_c00462{left:504.666667pt;}
.x73_c00462{left:506.533333pt;}
.xd3_c00462{left:507.866667pt;}
.x9a_c00462{left:509.200000pt;}
.x82_c00462{left:510.266667pt;}
.x17_c00462{left:515.200000pt;}
.xcd_c00462{left:517.866667pt;}
.x50_c00462{left:519.200000pt;}
.xc5_c00462{left:520.933333pt;}
.x2b_c00462{left:523.866667pt;}
.x3b_c00462{left:526.133333pt;}
.x69_c00462{left:530.266667pt;}
.xe5_c00462{left:531.600000pt;}
.x51_c00462{left:533.600000pt;}
.x18_c00462{left:540.800000pt;}
.x47_c00462{left:542.266667pt;}
.xd4_c00462{left:546.266667pt;}
.x23_c00462{left:548.533333pt;}
.xc6_c00462{left:550.000000pt;}
.xa2_c00462{left:551.066667pt;}
.x7c_c00462{left:553.333333pt;}
.x52_c00462{left:557.866667pt;}
.xbb_c00462{left:559.333333pt;}
.x1e_c00462{left:562.800000pt;}
.xa8_c00462{left:569.200000pt;}
.xd5_c00462{left:572.133333pt;}
.x74_c00462{left:574.133333pt;}
.x48_c00462{left:576.800000pt;}
.x9b_c00462{left:578.266667pt;}
.xce_c00462{left:579.333333pt;}
.x53_c00462{left:580.266667pt;}
.x6a_c00462{left:581.466667pt;}
.x24_c00462{left:583.066667pt;}
.x8f_c00462{left:586.133333pt;}
.xa3_c00462{left:589.200000pt;}
.x5d_c00462{left:590.133333pt;}
.x7d_c00462{left:591.066667pt;}
.xdb_c00462{left:595.200000pt;}
.x9c_c00462{left:596.800000pt;}
.xbc_c00462{left:598.000000pt;}
.x6b_c00462{left:599.066667pt;}
.x54_c00462{left:601.733333pt;}
.x3c_c00462{left:606.133333pt;}
.xdc_c00462{left:608.266667pt;}
.xc7_c00462{left:612.400000pt;}
.x5e_c00462{left:619.600000pt;}
.x83_c00462{left:623.866667pt;}
.xc8_c00462{left:630.666667pt;}
.xbd_c00462{left:636.666667pt;}
.x84_c00462{left:638.000000pt;}
.x90_c00462{left:639.200000pt;}
.xa9_c00462{left:642.133333pt;}
.x7e_c00462{left:643.866667pt;}
.x55_c00462{left:645.200000pt;}
.xdd_c00462{left:647.333333pt;}
.xd6_c00462{left:649.333333pt;}
.x5f_c00462{left:650.933333pt;}
.x49_c00462{left:653.866667pt;}
.x91_c00462{left:655.466667pt;}
.x9d_c00462{left:661.066667pt;}
.x85_c00462{left:662.266667pt;}
.x7f_c00462{left:663.733333pt;}
.x3d_c00462{left:665.600000pt;}
.xde_c00462{left:670.000000pt;}
.xd7_c00462{left:671.733333pt;}
.x6c_c00462{left:675.600000pt;}
.xcf_c00462{left:679.466667pt;}
.x56_c00462{left:686.133333pt;}
.x92_c00462{left:689.066667pt;}
.x86_c00462{left:692.000000pt;}
.xbe_c00462{left:696.800000pt;}
.x3e_c00462{left:700.133333pt;}
.xd0_c00462{left:703.200000pt;}
.xbf_c00462{left:706.666667pt;}
.xa4_c00462{left:711.733333pt;}
.x60_c00462{left:713.333333pt;}
.x57_c00462{left:719.733333pt;}
}





/* 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_c00463 {
    display:none;
  }
  .loading-indicator_c00463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00463 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_c00463 { 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_c00463" -> "#page-container .classname_c00463")
 */
.pf_c00463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00463 { /* 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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00463 { /* 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_c00463 { /* 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_c00463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00463 {overflow:visible;}
  }
}
.c_c00463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00463 { /* 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_c00463:after { /* webkit #35443 */
  content: '';
}
.t_c00463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00463 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 */
}
.__c00463 { /* 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_c00463 { /* info for Javascript */
  display:none;
}
.l_c00463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00463: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_c00463 {
    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_c00463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00463.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_c00463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00463;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.000000;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;}
.m6_c00463{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m28_c00463{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00463{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m40_c00463{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00463{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00463{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m49_c00463{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m31_c00463{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c00463{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m45_c00463{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m12_c00463{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m22_c00463{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m11_c00463{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m18_c00463{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m8_c00463{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m26_c00463{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00463{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00463{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00463{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m19_c00463{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m25_c00463{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.ma_c00463{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5_c00463{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00463{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mb_c00463{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m27_c00463{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m56_c00463{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00463{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.me_c00463{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m55_c00463{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mc_c00463{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.md_c00463{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m48_c00463{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10_c00463{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m21_c00463{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00463{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00463{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00463{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m52_c00463{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m16_c00463{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00463{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m7_c00463{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m14_c00463{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00463{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m24_c00463{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m32_c00463{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m17_c00463{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m51_c00463{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00463{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00463{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m35_c00463{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m29_c00463{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m33_c00463{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00463{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m46_c00463{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m34_c00463{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00463{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00463{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m37_c00463{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m39_c00463{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00463{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m41_c00463{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00463{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m54_c00463{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m50_c00463{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m15_c00463{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m36_c00463{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m47_c00463{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m53_c00463{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m38_c00463{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m13_c00463{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m43_c00463{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00463{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00463{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00463{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m23_c00463{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m42_c00463{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1_c00463{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00463{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m57_c00463{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m9_c00463{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00463{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m44_c00463{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m20_c00463{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{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__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00463{word-spacing:0.000000px;}
.ws4_c00463{word-spacing:4.285714px;}
.ws1_c00463{word-spacing:5.277778px;}
.ws2_c00463{word-spacing:5.405405px;}
.ws3_c00463{word-spacing:8.055556px;}
.ws0_c00463{word-spacing:21.111111px;}
.fc0_c00463{color:transparent;}
.fs0_c00463{font-size:54.000000px;}
.fs1_c00463{font-size:60.000000px;}
.y0_c00463{bottom:0.000000px;}
.yf_c00463{bottom:751.050000px;}
.ye_c00463{bottom:771.150000px;}
.yd_c00463{bottom:790.950000px;}
.yc_c00463{bottom:811.050000px;}
.yb_c00463{bottom:830.850000px;}
.ya_c00463{bottom:850.650000px;}
.y9_c00463{bottom:870.600000px;}
.y8_c00463{bottom:890.700000px;}
.y7_c00463{bottom:910.800000px;}
.y6_c00463{bottom:930.900000px;}
.y5_c00463{bottom:950.850000px;}
.y4_c00463{bottom:970.950000px;}
.y3_c00463{bottom:990.750000px;}
.y2_c00463{bottom:1010.850000px;}
.y1_c00463{bottom:1049.100000px;}
.h2_c00463{height:54.000000px;}
.h3_c00463{height:60.000000px;}
.h1_c00463{height:1166.250000px;}
.h0_c00463{height:1166.400056px;}
.w0_c00463{width:920.879975px;}
.w1_c00463{width:921.000000px;}
.x0_c00463{left:0.000000px;}
.x4_c00463{left:105.450000px;}
.x58_c00463{left:125.850000px;}
.x31_c00463{left:133.350000px;}
.x3c_c00463{left:136.500000px;}
.x87_c00463{left:137.550000px;}
.x26_c00463{left:149.250000px;}
.x78_c00463{left:153.000000px;}
.x5_c00463{left:154.050000px;}
.x59_c00463{left:161.100000px;}
.x88_c00463{left:163.050000px;}
.x4b_c00463{left:167.400000px;}
.x17_c00463{left:170.100000px;}
.x63_c00463{left:179.400000px;}
.x32_c00463{left:181.950000px;}
.x6_c00463{left:192.600000px;}
.x71_c00463{left:196.950000px;}
.x5a_c00463{left:198.150000px;}
.x18_c00463{left:200.400000px;}
.x33_c00463{left:201.750000px;}
.x89_c00463{left:205.200000px;}
.x64_c00463{left:206.700000px;}
.x81_c00463{left:208.350000px;}
.x3d_c00463{left:211.350000px;}
.x62_c00463{left:217.950000px;}
.x19_c00463{left:221.250000px;}
.x7_c00463{left:233.250000px;}
.x27_c00463{left:235.050000px;}
.x4c_c00463{left:237.600000px;}
.x72_c00463{left:242.700000px;}
.x8a_c00463{left:246.300000px;}
.x1a_c00463{left:249.000000px;}
.x65_c00463{left:259.650000px;}
.x8_c00463{left:269.550000px;}
.x34_c00463{left:271.650000px;}
.x3e_c00463{left:284.850000px;}
.x8f_c00463{left:286.650000px;}
.x35_c00463{left:291.450000px;}
.x79_c00463{left:294.150000px;}
.x9_c00463{left:298.350000px;}
.x66_c00463{left:300.300000px;}
.x28_c00463{left:306.000000px;}
.x82_c00463{left:308.400000px;}
.x4d_c00463{left:311.400000px;}
.x36_c00463{left:313.800000px;}
.x67_c00463{left:315.000000px;}
.x73_c00463{left:317.250000px;}
.xa_c00463{left:318.900000px;}
.x1b_c00463{left:328.950000px;}
.x3f_c00463{left:330.150000px;}
.x90_c00463{left:332.400000px;}
.x4e_c00463{left:340.200000px;}
.x91_c00463{left:350.700000px;}
.x40_c00463{left:351.750000px;}
.x1_c00463{left:352.800000px;}
.x8b_c00463{left:353.850000px;}
.x5b_c00463{left:357.450000px;}
.x68_c00463{left:360.000000px;}
.xb_c00463{left:361.050000px;}
.x1c_c00463{left:362.400000px;}
.x74_c00463{left:379.200000px;}
.xc_c00463{left:381.600000px;}
.x29_c00463{left:386.250000px;}
.x8c_c00463{left:393.750000px;}
.x4f_c00463{left:395.250000px;}
.x75_c00463{left:399.750000px;}
.x37_c00463{left:405.600000px;}
.x1d_c00463{left:411.000000px;}
.x7a_c00463{left:415.800000px;}
.x41_c00463{left:417.600000px;}
.x2a_c00463{left:420.450000px;}
.x8d_c00463{left:426.450000px;}
.x2_c00463{left:427.650000px;}
.x76_c00463{left:429.600000px;}
.x1e_c00463{left:430.800000px;}
.x83_c00463{left:436.950000px;}
.x69_c00463{left:438.450000px;}
.x38_c00463{left:439.500000px;}
.x2b_c00463{left:445.350000px;}
.xd_c00463{left:448.200000px;}
.x50_c00463{left:449.250000px;}
.x1f_c00463{left:453.150000px;}
.x51_c00463{left:466.500000px;}
.xe_c00463{left:469.050000px;}
.x77_c00463{left:470.700000px;}
.x2c_c00463{left:475.650000px;}
.x39_c00463{left:478.800000px;}
.x42_c00463{left:481.200000px;}
.x84_c00463{left:487.050000px;}
.xf_c00463{left:490.350000px;}
.x7b_c00463{left:491.700000px;}
.x3a_c00463{left:496.800000px;}
.x92_c00463{left:499.800000px;}
.x6a_c00463{left:504.000000px;}
.x20_c00463{left:508.950000px;}
.x52_c00463{left:510.750000px;}
.x10_c00463{left:518.850000px;}
.x7c_c00463{left:520.200000px;}
.x43_c00463{left:528.300000px;}
.x5c_c00463{left:529.500000px;}
.x21_c00463{left:530.550000px;}
.x3b_c00463{left:533.550000px;}
.x2d_c00463{left:536.550000px;}
.x53_c00463{left:539.250000px;}
.x6b_c00463{left:540.750000px;}
.x85_c00463{left:547.500000px;}
.x44_c00463{left:549.150000px;}
.x7d_c00463{left:559.800000px;}
.x6c_c00463{left:568.050000px;}
.x45_c00463{left:570.450000px;}
.x86_c00463{left:573.000000px;}
.x22_c00463{left:578.400000px;}
.x11_c00463{left:580.350000px;}
.x54_c00463{left:584.550000px;}
.x5d_c00463{left:586.800000px;}
.x2e_c00463{left:594.900000px;}
.x93_c00463{left:599.400000px;}
.x12_c00463{left:600.450000px;}
.x7e_c00463{left:615.300000px;}
.x5e_c00463{left:620.250000px;}
.x6d_c00463{left:622.050000px;}
.x23_c00463{left:624.900000px;}
.x13_c00463{left:628.500000px;}
.x94_c00463{left:633.600000px;}
.x7f_c00463{left:635.400000px;}
.x46_c00463{left:642.450000px;}
.x55_c00463{left:646.050000px;}
.x5f_c00463{left:658.350000px;}
.x47_c00463{left:663.750000px;}
.x80_c00463{left:665.250000px;}
.x14_c00463{left:670.650000px;}
.x56_c00463{left:672.750000px;}
.x95_c00463{left:675.750000px;}
.x48_c00463{left:687.150000px;}
.x6e_c00463{left:688.200000px;}
.x15_c00463{left:690.750000px;}
.x57_c00463{left:694.350000px;}
.x96_c00463{left:698.400000px;}
.x2f_c00463{left:709.050000px;}
.x24_c00463{left:711.000000px;}
.x60_c00463{left:712.650000px;}
.x6f_c00463{left:714.150000px;}
.x16_c00463{left:718.500000px;}
.x8e_c00463{left:722.700000px;}
.x97_c00463{left:724.650000px;}
.x30_c00463{left:728.850000px;}
.x49_c00463{left:731.100000px;}
.x25_c00463{left:736.500000px;}
.x61_c00463{left:738.600000px;}
.x70_c00463{left:742.650000px;}
.x3_c00463{left:746.250000px;}
.x4a_c00463{left:752.400000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws5_c00463{word-spacing:0.000000pt;}
.ws4_c00463{word-spacing:3.809524pt;}
.ws1_c00463{word-spacing:4.691358pt;}
.ws2_c00463{word-spacing:4.804805pt;}
.ws3_c00463{word-spacing:7.160494pt;}
.ws0_c00463{word-spacing:18.765432pt;}
.fs0_c00463{font-size:48.000000pt;}
.fs1_c00463{font-size:53.333333pt;}
.y0_c00463{bottom:0.000000pt;}
.yf_c00463{bottom:667.600000pt;}
.ye_c00463{bottom:685.466667pt;}
.yd_c00463{bottom:703.066667pt;}
.yc_c00463{bottom:720.933333pt;}
.yb_c00463{bottom:738.533333pt;}
.ya_c00463{bottom:756.133333pt;}
.y9_c00463{bottom:773.866667pt;}
.y8_c00463{bottom:791.733333pt;}
.y7_c00463{bottom:809.600000pt;}
.y6_c00463{bottom:827.466667pt;}
.y5_c00463{bottom:845.200000pt;}
.y4_c00463{bottom:863.066667pt;}
.y3_c00463{bottom:880.666667pt;}
.y2_c00463{bottom:898.533333pt;}
.y1_c00463{bottom:932.533333pt;}
.h2_c00463{height:48.000000pt;}
.h3_c00463{height:53.333333pt;}
.h1_c00463{height:1036.666667pt;}
.h0_c00463{height:1036.800049pt;}
.w0_c00463{width:818.559977pt;}
.w1_c00463{width:818.666667pt;}
.x0_c00463{left:0.000000pt;}
.x4_c00463{left:93.733333pt;}
.x58_c00463{left:111.866667pt;}
.x31_c00463{left:118.533333pt;}
.x3c_c00463{left:121.333333pt;}
.x87_c00463{left:122.266667pt;}
.x26_c00463{left:132.666667pt;}
.x78_c00463{left:136.000000pt;}
.x5_c00463{left:136.933333pt;}
.x59_c00463{left:143.200000pt;}
.x88_c00463{left:144.933333pt;}
.x4b_c00463{left:148.800000pt;}
.x17_c00463{left:151.200000pt;}
.x63_c00463{left:159.466667pt;}
.x32_c00463{left:161.733333pt;}
.x6_c00463{left:171.200000pt;}
.x71_c00463{left:175.066667pt;}
.x5a_c00463{left:176.133333pt;}
.x18_c00463{left:178.133333pt;}
.x33_c00463{left:179.333333pt;}
.x89_c00463{left:182.400000pt;}
.x64_c00463{left:183.733333pt;}
.x81_c00463{left:185.200000pt;}
.x3d_c00463{left:187.866667pt;}
.x62_c00463{left:193.733333pt;}
.x19_c00463{left:196.666667pt;}
.x7_c00463{left:207.333333pt;}
.x27_c00463{left:208.933333pt;}
.x4c_c00463{left:211.200000pt;}
.x72_c00463{left:215.733333pt;}
.x8a_c00463{left:218.933333pt;}
.x1a_c00463{left:221.333333pt;}
.x65_c00463{left:230.800000pt;}
.x8_c00463{left:239.600000pt;}
.x34_c00463{left:241.466667pt;}
.x3e_c00463{left:253.200000pt;}
.x8f_c00463{left:254.800000pt;}
.x35_c00463{left:259.066667pt;}
.x79_c00463{left:261.466667pt;}
.x9_c00463{left:265.200000pt;}
.x66_c00463{left:266.933333pt;}
.x28_c00463{left:272.000000pt;}
.x82_c00463{left:274.133333pt;}
.x4d_c00463{left:276.800000pt;}
.x36_c00463{left:278.933333pt;}
.x67_c00463{left:280.000000pt;}
.x73_c00463{left:282.000000pt;}
.xa_c00463{left:283.466667pt;}
.x1b_c00463{left:292.400000pt;}
.x3f_c00463{left:293.466667pt;}
.x90_c00463{left:295.466667pt;}
.x4e_c00463{left:302.400000pt;}
.x91_c00463{left:311.733333pt;}
.x40_c00463{left:312.666667pt;}
.x1_c00463{left:313.600000pt;}
.x8b_c00463{left:314.533333pt;}
.x5b_c00463{left:317.733333pt;}
.x68_c00463{left:320.000000pt;}
.xb_c00463{left:320.933333pt;}
.x1c_c00463{left:322.133333pt;}
.x74_c00463{left:337.066667pt;}
.xc_c00463{left:339.200000pt;}
.x29_c00463{left:343.333333pt;}
.x8c_c00463{left:350.000000pt;}
.x4f_c00463{left:351.333333pt;}
.x75_c00463{left:355.333333pt;}
.x37_c00463{left:360.533333pt;}
.x1d_c00463{left:365.333333pt;}
.x7a_c00463{left:369.600000pt;}
.x41_c00463{left:371.200000pt;}
.x2a_c00463{left:373.733333pt;}
.x8d_c00463{left:379.066667pt;}
.x2_c00463{left:380.133333pt;}
.x76_c00463{left:381.866667pt;}
.x1e_c00463{left:382.933333pt;}
.x83_c00463{left:388.400000pt;}
.x69_c00463{left:389.733333pt;}
.x38_c00463{left:390.666667pt;}
.x2b_c00463{left:395.866667pt;}
.xd_c00463{left:398.400000pt;}
.x50_c00463{left:399.333333pt;}
.x1f_c00463{left:402.800000pt;}
.x51_c00463{left:414.666667pt;}
.xe_c00463{left:416.933333pt;}
.x77_c00463{left:418.400000pt;}
.x2c_c00463{left:422.800000pt;}
.x39_c00463{left:425.600000pt;}
.x42_c00463{left:427.733333pt;}
.x84_c00463{left:432.933333pt;}
.xf_c00463{left:435.866667pt;}
.x7b_c00463{left:437.066667pt;}
.x3a_c00463{left:441.600000pt;}
.x92_c00463{left:444.266667pt;}
.x6a_c00463{left:448.000000pt;}
.x20_c00463{left:452.400000pt;}
.x52_c00463{left:454.000000pt;}
.x10_c00463{left:461.200000pt;}
.x7c_c00463{left:462.400000pt;}
.x43_c00463{left:469.600000pt;}
.x5c_c00463{left:470.666667pt;}
.x21_c00463{left:471.600000pt;}
.x3b_c00463{left:474.266667pt;}
.x2d_c00463{left:476.933333pt;}
.x53_c00463{left:479.333333pt;}
.x6b_c00463{left:480.666667pt;}
.x85_c00463{left:486.666667pt;}
.x44_c00463{left:488.133333pt;}
.x7d_c00463{left:497.600000pt;}
.x6c_c00463{left:504.933333pt;}
.x45_c00463{left:507.066667pt;}
.x86_c00463{left:509.333333pt;}
.x22_c00463{left:514.133333pt;}
.x11_c00463{left:515.866667pt;}
.x54_c00463{left:519.600000pt;}
.x5d_c00463{left:521.600000pt;}
.x2e_c00463{left:528.800000pt;}
.x93_c00463{left:532.800000pt;}
.x12_c00463{left:533.733333pt;}
.x7e_c00463{left:546.933333pt;}
.x5e_c00463{left:551.333333pt;}
.x6d_c00463{left:552.933333pt;}
.x23_c00463{left:555.466667pt;}
.x13_c00463{left:558.666667pt;}
.x94_c00463{left:563.200000pt;}
.x7f_c00463{left:564.800000pt;}
.x46_c00463{left:571.066667pt;}
.x55_c00463{left:574.266667pt;}
.x5f_c00463{left:585.200000pt;}
.x47_c00463{left:590.000000pt;}
.x80_c00463{left:591.333333pt;}
.x14_c00463{left:596.133333pt;}
.x56_c00463{left:598.000000pt;}
.x95_c00463{left:600.666667pt;}
.x48_c00463{left:610.800000pt;}
.x6e_c00463{left:611.733333pt;}
.x15_c00463{left:614.000000pt;}
.x57_c00463{left:617.200000pt;}
.x96_c00463{left:620.800000pt;}
.x2f_c00463{left:630.266667pt;}
.x24_c00463{left:632.000000pt;}
.x60_c00463{left:633.466667pt;}
.x6f_c00463{left:634.800000pt;}
.x16_c00463{left:638.666667pt;}
.x8e_c00463{left:642.400000pt;}
.x97_c00463{left:644.133333pt;}
.x30_c00463{left:647.866667pt;}
.x49_c00463{left:649.866667pt;}
.x25_c00463{left:654.666667pt;}
.x61_c00463{left:656.533333pt;}
.x70_c00463{left:660.133333pt;}
.x3_c00463{left:663.333333pt;}
.x4a_c00463{left:668.800000pt;}
}





/* 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_c00464 {
    display:none;
  }
  .loading-indicator_c00464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00464 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_c00464 { 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_c00464" -> "#page-container .classname_c00464")
 */
.pf_c00464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00464 { /* 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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00464 { /* 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_c00464 { /* 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_c00464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00464 {overflow:visible;}
  }
}
.c_c00464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00464 { /* 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_c00464:after { /* webkit #35443 */
  content: '';
}
.t_c00464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00464 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 */
}
.__c00464 { /* 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_c00464 { /* info for Javascript */
  display:none;
}
.l_c00464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00464: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_c00464 {
    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_c00464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00464.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_c00464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00464;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.000000;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;}
.m24_c00464{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m86_c00464{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m91_c00464{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00464{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m90_c00464{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00464{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00464{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m72_c00464{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m26_c00464{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00464{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m30_c00464{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m54_c00464{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00464{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m17_c00464{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m33_c00464{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00464{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00464{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00464{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m92_c00464{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00464{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00464{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00464{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00464{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m22_c00464{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m78_c00464{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00464{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.ma_c00464{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m59_c00464{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m61_c00464{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00464{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m29_c00464{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m93_c00464{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00464{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00464{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m47_c00464{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00464{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00464{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m53_c00464{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m65_c00464{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m20_c00464{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00464{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m79_c00464{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m63_c00464{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m35_c00464{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m88_c00464{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m18_c00464{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m94_c00464{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m89_c00464{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m56_c00464{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m73_c00464{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m16_c00464{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m19_c00464{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m75_c00464{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m71_c00464{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00464{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mc_c00464{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00464{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00464{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m58_c00464{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m80_c00464{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m15_c00464{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m50_c00464{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m66_c00464{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m55_c00464{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.md_c00464{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m82_c00464{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00464{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00464{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00464{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00464{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00464{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13_c00464{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m34_c00464{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m51_c00464{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m67_c00464{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);}
.m14_c00464{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00464{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m28_c00464{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m95_c00464{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m36_c00464{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00464{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9_c00464{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m96_c00464{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m46_c00464{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m37_c00464{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m74_c00464{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m38_c00464{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m44_c00464{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10_c00464{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m52_c00464{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m48_c00464{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00464{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00464{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00464{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m77_c00464{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m41_c00464{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00464{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00464{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00464{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m43_c00464{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00464{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m83_c00464{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00464{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m23_c00464{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00464{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m60_c00464{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m40_c00464{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00464{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00464{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00464{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00464{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.me_c00464{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m12_c00464{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m32_c00464{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00464{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m81_c00464{transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283000,0.000000,0.000000,0.250000,0,0);}
.m68_c00464{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m69_c00464{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m76_c00464{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00464{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m49_c00464{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m85_c00464{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m39_c00464{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m21_c00464{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m87_c00464{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00464{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m31_c00464{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m70_c00464{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m27_c00464{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mf_c00464{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m57_c00464{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m64_c00464{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00464{transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314750,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m11_c00464{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00464{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m42_c00464{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.mb_c00464{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m62_c00464{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00464{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373750,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m1_c00464{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m45_c00464{transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.533250,0.000000,0.000000,0.250000,0,0);}
.m25_c00464{transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.573250,0.000000,0.000000,0.250000,0,0);}
.m84_c00464{transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.586750,0.000000,0.000000,0.250000,0,0);}
.v0_c00464{vertical-align:0.000000px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{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__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00464{word-spacing:0.000000px;}
.ws1_c00464{word-spacing:0.250000px;}
.ws0_c00464{word-spacing:20.086957px;}
.fc0_c00464{color:transparent;}
.fs2_c00464{font-size:42.000000px;}
.fs1_c00464{font-size:54.000000px;}
.fs0_c00464{font-size:66.000000px;}
.y0_c00464{bottom:0.000000px;}
.y20_c00464{bottom:164.100000px;}
.y1f_c00464{bottom:183.900000px;}
.y1e_c00464{bottom:204.000000px;}
.y1d_c00464{bottom:224.100000px;}
.y1c_c00464{bottom:243.900000px;}
.y1b_c00464{bottom:264.000000px;}
.y1a_c00464{bottom:283.500000px;}
.y19_c00464{bottom:303.300000px;}
.y18_c00464{bottom:323.100000px;}
.y17_c00464{bottom:343.650000px;}
.y16_c00464{bottom:363.450000px;}
.y15_c00464{bottom:383.250000px;}
.y14_c00464{bottom:403.350000px;}
.y13_c00464{bottom:423.150000px;}
.y12_c00464{bottom:443.250000px;}
.y11_c00464{bottom:463.050000px;}
.y10_c00464{bottom:482.100000px;}
.yf_c00464{bottom:502.200000px;}
.ye_c00464{bottom:522.000000px;}
.yd_c00464{bottom:541.800000px;}
.yc_c00464{bottom:582.150000px;}
.yb_c00464{bottom:601.950000px;}
.ya_c00464{bottom:622.050000px;}
.y9_c00464{bottom:641.850000px;}
.y8_c00464{bottom:662.100000px;}
.y7_c00464{bottom:681.900000px;}
.y6_c00464{bottom:701.700000px;}
.y5_c00464{bottom:721.800000px;}
.y4_c00464{bottom:741.900000px;}
.y3_c00464{bottom:778.650000px;}
.y2_c00464{bottom:817.500000px;}
.y1_c00464{bottom:1058.700000px;}
.h4_c00464{height:42.000000px;}
.h3_c00464{height:54.000000px;}
.h2_c00464{height:66.000000px;}
.h1_c00464{height:1166.250000px;}
.h0_c00464{height:1166.400056px;}
.w0_c00464{width:920.879975px;}
.w1_c00464{width:921.000000px;}
.x0_c00464{left:0.000000px;}
.x9c_c00464{left:151.650000px;}
.x19_c00464{left:152.700000px;}
.x9_c00464{left:154.500000px;}
.x27_c00464{left:173.250000px;}
.xa_c00464{left:177.600000px;}
.xb9_c00464{left:180.750000px;}
.xa9_c00464{left:182.550000px;}
.x2c_c00464{left:183.900000px;}
.x95_c00464{left:185.250000px;}
.x1a_c00464{left:186.600000px;}
.xe9_c00464{left:191.100000px;}
.x37_c00464{left:193.800000px;}
.x7f_c00464{left:195.600000px;}
.x9d_c00464{left:197.700000px;}
.x51_c00464{left:202.350000px;}
.x2d_c00464{left:203.700000px;}
.xc9_c00464{left:206.550000px;}
.xaa_c00464{left:207.750000px;}
.xd9_c00464{left:208.800000px;}
.x38_c00464{left:213.300000px;}
.x28_c00464{left:214.350000px;}
.x60_c00464{left:215.550000px;}
.xa4_c00464{left:218.250000px;}
.x1b_c00464{left:220.500000px;}
.xaf_c00464{left:223.200000px;}
.x71_c00464{left:224.250000px;}
.x6b_c00464{left:227.100000px;}
.x80_c00464{left:228.750000px;}
.x44_c00464{left:232.950000px;}
.xb_c00464{left:235.950000px;}
.xa5_c00464{left:238.050000px;}
.x3b_c00464{left:240.600000px;}
.x39_c00464{left:243.150000px;}
.xd1_c00464{left:247.200000px;}
.xb0_c00464{left:252.000000px;}
.x96_c00464{left:253.650000px;}
.xc_c00464{left:257.250000px;}
.xba_c00464{left:259.500000px;}
.x1c_c00464{left:261.900000px;}
.xc1_c00464{left:265.050000px;}
.xab_c00464{left:266.400000px;}
.x61_c00464{left:277.050000px;}
.xb1_c00464{left:278.700000px;}
.xac_c00464{left:281.850000px;}
.x29_c00464{left:283.050000px;}
.xd_c00464{left:284.550000px;}
.xe4_c00464{left:285.750000px;}
.xda_c00464{left:287.700000px;}
.x9e_c00464{left:289.200000px;}
.xbb_c00464{left:291.150000px;}
.x2e_c00464{left:299.100000px;}
.x52_c00464{left:303.750000px;}
.x4c_c00464{left:305.100000px;}
.x72_c00464{left:308.550000px;}
.x45_c00464{left:310.350000px;}
.x6c_c00464{left:312.300000px;}
.x8a_c00464{left:314.250000px;}
.x3a_c00464{left:316.950000px;}
.xe_c00464{left:319.500000px;}
.x1d_c00464{left:321.600000px;}
.x97_c00464{left:324.600000px;}
.xe5_c00464{left:326.100000px;}
.xea_c00464{left:327.150000px;}
.x2a_c00464{left:328.800000px;}
.xef_c00464{left:330.750000px;}
.x81_c00464{left:332.700000px;}
.xdb_c00464{left:333.750000px;}
.xb2_c00464{left:334.950000px;}
.xca_c00464{left:342.150000px;}
.xf_c00464{left:347.250000px;}
.xbc_c00464{left:349.800000px;}
.x2b_c00464{left:352.500000px;}
.xc2_c00464{left:355.050000px;}
.x2f_c00464{left:356.400000px;}
.x4_c00464{left:359.250000px;}
.x53_c00464{left:361.350000px;}
.x8b_c00464{left:362.550000px;}
.xcb_c00464{left:366.300000px;}
.xbd_c00464{left:371.400000px;}
.xeb_c00464{left:374.250000px;}
.x4d_c00464{left:375.600000px;}
.x46_c00464{left:377.700000px;}
.xdc_c00464{left:379.500000px;}
.x73_c00464{left:380.550000px;}
.xd2_c00464{left:382.650000px;}
.x62_c00464{left:385.200000px;}
.x9f_c00464{left:386.400000px;}
.xb3_c00464{left:389.250000px;}
.x1e_c00464{left:390.300000px;}
.x4e_c00464{left:394.650000px;}
.x10_c00464{left:395.850000px;}
.x47_c00464{left:397.200000px;}
.x5_c00464{left:404.250000px;}
.xc3_c00464{left:408.600000px;}
.x1f_c00464{left:410.100000px;}
.x8c_c00464{left:412.650000px;}
.x79_c00464{left:415.050000px;}
.x54_c00464{left:416.100000px;}
.xcc_c00464{left:418.500000px;}
.x2_c00464{left:420.450000px;}
.xdd_c00464{left:423.450000px;}
.xd3_c00464{left:425.550000px;}
.xc4_c00464{left:426.600000px;}
.xcd_c00464{left:430.050000px;}
.xad_c00464{left:432.000000px;}
.x55_c00464{left:433.050000px;}
.x6_c00464{left:434.550000px;}
.x98_c00464{left:437.400000px;}
.x4f_c00464{left:438.900000px;}
.x74_c00464{left:444.600000px;}
.xd4_c00464{left:445.650000px;}
.x63_c00464{left:447.150000px;}
.xb4_c00464{left:448.950000px;}
.x82_c00464{left:450.000000px;}
.xc5_c00464{left:452.550000px;}
.x30_c00464{left:454.050000px;}
.x8d_c00464{left:455.850000px;}
.x20_c00464{left:459.000000px;}
.xce_c00464{left:460.950000px;}
.x56_c00464{left:466.500000px;}
.x6d_c00464{left:467.850000px;}
.x1_c00464{left:472.650000px;}
.x48_c00464{left:474.900000px;}
.x64_c00464{left:477.750000px;}
.x7_c00464{left:479.850000px;}
.x11_c00464{left:481.950000px;}
.x8e_c00464{left:484.950000px;}
.xbe_c00464{left:486.900000px;}
.x31_c00464{left:487.950000px;}
.xf0_c00464{left:490.950000px;}
.xd5_c00464{left:493.500000px;}
.x49_c00464{left:494.700000px;}
.x83_c00464{left:496.800000px;}
.xb5_c00464{left:497.850000px;}
.xc6_c00464{left:501.900000px;}
.x3_c00464{left:505.050000px;}
.x6e_c00464{left:507.750000px;}
.xf1_c00464{left:508.950000px;}
.x3c_c00464{left:510.000000px;}
.xa6_c00464{left:511.650000px;}
.x84_c00464{left:514.800000px;}
.x57_c00464{left:520.800000px;}
.x75_c00464{left:524.100000px;}
.x6f_c00464{left:526.800000px;}
.x12_c00464{left:528.450000px;}
.x4a_c00464{left:529.950000px;}
.xde_c00464{left:534.300000px;}
.xb6_c00464{left:535.350000px;}
.xa0_c00464{left:536.850000px;}
.x58_c00464{left:538.800000px;}
.x7a_c00464{left:542.550000px;}
.x65_c00464{left:550.800000px;}
.x21_c00464{left:552.300000px;}
.x3d_c00464{left:555.000000px;}
.xd6_c00464{left:557.100000px;}
.x8_c00464{left:561.150000px;}
.x13_c00464{left:565.200000px;}
.x99_c00464{left:566.550000px;}
.x8f_c00464{left:571.050000px;}
.x50_c00464{left:572.850000px;}
.x3e_c00464{left:576.900000px;}
.x76_c00464{left:579.600000px;}
.x32_c00464{left:581.850000px;}
.x7b_c00464{left:588.300000px;}
.x22_c00464{left:589.350000px;}
.x14_c00464{left:591.900000px;}
.x4b_c00464{left:593.250000px;}
.x59_c00464{left:594.600000px;}
.x66_c00464{left:596.550000px;}
.x90_c00464{left:599.850000px;}
.xb7_c00464{left:601.200000px;}
.xa1_c00464{left:602.700000px;}
.xdf_c00464{left:605.550000px;}
.x3f_c00464{left:608.250000px;}
.x23_c00464{left:612.750000px;}
.x77_c00464{left:619.500000px;}
.x15_c00464{left:623.250000px;}
.xf2_c00464{left:625.650000px;}
.xcf_c00464{left:628.350000px;}
.x67_c00464{left:633.300000px;}
.x5a_c00464{left:639.300000px;}
.x33_c00464{left:642.000000px;}
.x7c_c00464{left:646.200000px;}
.x70_c00464{left:648.150000px;}
.x91_c00464{left:650.250000px;}
.xe0_c00464{left:653.850000px;}
.x9a_c00464{left:655.050000px;}
.x24_c00464{left:659.250000px;}
.x34_c00464{left:661.800000px;}
.x85_c00464{left:664.500000px;}
.xb8_c00464{left:666.600000px;}
.x16_c00464{left:668.250000px;}
.x40_c00464{left:670.950000px;}
.xa2_c00464{left:673.650000px;}
.xd7_c00464{left:677.550000px;}
.x86_c00464{left:679.200000px;}
.x25_c00464{left:680.550000px;}
.x68_c00464{left:684.750000px;}
.x9b_c00464{left:686.700000px;}
.x5b_c00464{left:689.400000px;}
.xec_c00464{left:691.050000px;}
.x41_c00464{left:692.550000px;}
.x35_c00464{left:695.700000px;}
.xbf_c00464{left:696.750000px;}
.x92_c00464{left:704.250000px;}
.xe6_c00464{left:706.200000px;}
.x5c_c00464{left:709.950000px;}
.xc7_c00464{left:711.150000px;}
.x87_c00464{left:714.150000px;}
.xa7_c00464{left:715.800000px;}
.xd0_c00464{left:721.650000px;}
.x7d_c00464{left:724.050000px;}
.x42_c00464{left:729.600000px;}
.xe7_c00464{left:732.150000px;}
.x5d_c00464{left:736.200000px;}
.x17_c00464{left:737.700000px;}
.x93_c00464{left:740.250000px;}
.xd8_c00464{left:741.300000px;}
.xe1_c00464{left:747.600000px;}
.x88_c00464{left:750.900000px;}
.xed_c00464{left:752.550000px;}
.x78_c00464{left:755.250000px;}
.xa3_c00464{left:757.200000px;}
.xe8_c00464{left:759.900000px;}
.x7e_c00464{left:761.100000px;}
.xae_c00464{left:762.150000px;}
.x43_c00464{left:765.900000px;}
.x69_c00464{left:767.850000px;}
.xa8_c00464{left:769.800000px;}
.x89_c00464{left:776.100000px;}
.xe2_c00464{left:777.450000px;}
.x5e_c00464{left:778.650000px;}
.xee_c00464{left:780.300000px;}
.x18_c00464{left:790.200000px;}
.x6a_c00464{left:791.550000px;}
.xc0_c00464{left:793.950000px;}
.x36_c00464{left:797.550000px;}
.x26_c00464{left:798.600000px;}
.x5f_c00464{left:800.250000px;}
.x94_c00464{left:804.450000px;}
.xc8_c00464{left:809.850000px;}
.xe3_c00464{left:816.750000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws2_c00464{word-spacing:0.000000pt;}
.ws1_c00464{word-spacing:0.222222pt;}
.ws0_c00464{word-spacing:17.855072pt;}
.fs2_c00464{font-size:37.333333pt;}
.fs1_c00464{font-size:48.000000pt;}
.fs0_c00464{font-size:58.666667pt;}
.y0_c00464{bottom:0.000000pt;}
.y20_c00464{bottom:145.866667pt;}
.y1f_c00464{bottom:163.466667pt;}
.y1e_c00464{bottom:181.333333pt;}
.y1d_c00464{bottom:199.200000pt;}
.y1c_c00464{bottom:216.800000pt;}
.y1b_c00464{bottom:234.666667pt;}
.y1a_c00464{bottom:252.000000pt;}
.y19_c00464{bottom:269.600000pt;}
.y18_c00464{bottom:287.200000pt;}
.y17_c00464{bottom:305.466667pt;}
.y16_c00464{bottom:323.066667pt;}
.y15_c00464{bottom:340.666667pt;}
.y14_c00464{bottom:358.533333pt;}
.y13_c00464{bottom:376.133333pt;}
.y12_c00464{bottom:394.000000pt;}
.y11_c00464{bottom:411.600000pt;}
.y10_c00464{bottom:428.533333pt;}
.yf_c00464{bottom:446.400000pt;}
.ye_c00464{bottom:464.000000pt;}
.yd_c00464{bottom:481.600000pt;}
.yc_c00464{bottom:517.466667pt;}
.yb_c00464{bottom:535.066667pt;}
.ya_c00464{bottom:552.933333pt;}
.y9_c00464{bottom:570.533333pt;}
.y8_c00464{bottom:588.533333pt;}
.y7_c00464{bottom:606.133333pt;}
.y6_c00464{bottom:623.733333pt;}
.y5_c00464{bottom:641.600000pt;}
.y4_c00464{bottom:659.466667pt;}
.y3_c00464{bottom:692.133333pt;}
.y2_c00464{bottom:726.666667pt;}
.y1_c00464{bottom:941.066667pt;}
.h4_c00464{height:37.333333pt;}
.h3_c00464{height:48.000000pt;}
.h2_c00464{height:58.666667pt;}
.h1_c00464{height:1036.666667pt;}
.h0_c00464{height:1036.800049pt;}
.w0_c00464{width:818.559977pt;}
.w1_c00464{width:818.666667pt;}
.x0_c00464{left:0.000000pt;}
.x9c_c00464{left:134.800000pt;}
.x19_c00464{left:135.733333pt;}
.x9_c00464{left:137.333333pt;}
.x27_c00464{left:154.000000pt;}
.xa_c00464{left:157.866667pt;}
.xb9_c00464{left:160.666667pt;}
.xa9_c00464{left:162.266667pt;}
.x2c_c00464{left:163.466667pt;}
.x95_c00464{left:164.666667pt;}
.x1a_c00464{left:165.866667pt;}
.xe9_c00464{left:169.866667pt;}
.x37_c00464{left:172.266667pt;}
.x7f_c00464{left:173.866667pt;}
.x9d_c00464{left:175.733333pt;}
.x51_c00464{left:179.866667pt;}
.x2d_c00464{left:181.066667pt;}
.xc9_c00464{left:183.600000pt;}
.xaa_c00464{left:184.666667pt;}
.xd9_c00464{left:185.600000pt;}
.x38_c00464{left:189.600000pt;}
.x28_c00464{left:190.533333pt;}
.x60_c00464{left:191.600000pt;}
.xa4_c00464{left:194.000000pt;}
.x1b_c00464{left:196.000000pt;}
.xaf_c00464{left:198.400000pt;}
.x71_c00464{left:199.333333pt;}
.x6b_c00464{left:201.866667pt;}
.x80_c00464{left:203.333333pt;}
.x44_c00464{left:207.066667pt;}
.xb_c00464{left:209.733333pt;}
.xa5_c00464{left:211.600000pt;}
.x3b_c00464{left:213.866667pt;}
.x39_c00464{left:216.133333pt;}
.xd1_c00464{left:219.733333pt;}
.xb0_c00464{left:224.000000pt;}
.x96_c00464{left:225.466667pt;}
.xc_c00464{left:228.666667pt;}
.xba_c00464{left:230.666667pt;}
.x1c_c00464{left:232.800000pt;}
.xc1_c00464{left:235.600000pt;}
.xab_c00464{left:236.800000pt;}
.x61_c00464{left:246.266667pt;}
.xb1_c00464{left:247.733333pt;}
.xac_c00464{left:250.533333pt;}
.x29_c00464{left:251.600000pt;}
.xd_c00464{left:252.933333pt;}
.xe4_c00464{left:254.000000pt;}
.xda_c00464{left:255.733333pt;}
.x9e_c00464{left:257.066667pt;}
.xbb_c00464{left:258.800000pt;}
.x2e_c00464{left:265.866667pt;}
.x52_c00464{left:270.000000pt;}
.x4c_c00464{left:271.200000pt;}
.x72_c00464{left:274.266667pt;}
.x45_c00464{left:275.866667pt;}
.x6c_c00464{left:277.600000pt;}
.x8a_c00464{left:279.333333pt;}
.x3a_c00464{left:281.733333pt;}
.xe_c00464{left:284.000000pt;}
.x1d_c00464{left:285.866667pt;}
.x97_c00464{left:288.533333pt;}
.xe5_c00464{left:289.866667pt;}
.xea_c00464{left:290.800000pt;}
.x2a_c00464{left:292.266667pt;}
.xef_c00464{left:294.000000pt;}
.x81_c00464{left:295.733333pt;}
.xdb_c00464{left:296.666667pt;}
.xb2_c00464{left:297.733333pt;}
.xca_c00464{left:304.133333pt;}
.xf_c00464{left:308.666667pt;}
.xbc_c00464{left:310.933333pt;}
.x2b_c00464{left:313.333333pt;}
.xc2_c00464{left:315.600000pt;}
.x2f_c00464{left:316.800000pt;}
.x4_c00464{left:319.333333pt;}
.x53_c00464{left:321.200000pt;}
.x8b_c00464{left:322.266667pt;}
.xcb_c00464{left:325.600000pt;}
.xbd_c00464{left:330.133333pt;}
.xeb_c00464{left:332.666667pt;}
.x4d_c00464{left:333.866667pt;}
.x46_c00464{left:335.733333pt;}
.xdc_c00464{left:337.333333pt;}
.x73_c00464{left:338.266667pt;}
.xd2_c00464{left:340.133333pt;}
.x62_c00464{left:342.400000pt;}
.x9f_c00464{left:343.466667pt;}
.xb3_c00464{left:346.000000pt;}
.x1e_c00464{left:346.933333pt;}
.x4e_c00464{left:350.800000pt;}
.x10_c00464{left:351.866667pt;}
.x47_c00464{left:353.066667pt;}
.x5_c00464{left:359.333333pt;}
.xc3_c00464{left:363.200000pt;}
.x1f_c00464{left:364.533333pt;}
.x8c_c00464{left:366.800000pt;}
.x79_c00464{left:368.933333pt;}
.x54_c00464{left:369.866667pt;}
.xcc_c00464{left:372.000000pt;}
.x2_c00464{left:373.733333pt;}
.xdd_c00464{left:376.400000pt;}
.xd3_c00464{left:378.266667pt;}
.xc4_c00464{left:379.200000pt;}
.xcd_c00464{left:382.266667pt;}
.xad_c00464{left:384.000000pt;}
.x55_c00464{left:384.933333pt;}
.x6_c00464{left:386.266667pt;}
.x98_c00464{left:388.800000pt;}
.x4f_c00464{left:390.133333pt;}
.x74_c00464{left:395.200000pt;}
.xd4_c00464{left:396.133333pt;}
.x63_c00464{left:397.466667pt;}
.xb4_c00464{left:399.066667pt;}
.x82_c00464{left:400.000000pt;}
.xc5_c00464{left:402.266667pt;}
.x30_c00464{left:403.600000pt;}
.x8d_c00464{left:405.200000pt;}
.x20_c00464{left:408.000000pt;}
.xce_c00464{left:409.733333pt;}
.x56_c00464{left:414.666667pt;}
.x6d_c00464{left:415.866667pt;}
.x1_c00464{left:420.133333pt;}
.x48_c00464{left:422.133333pt;}
.x64_c00464{left:424.666667pt;}
.x7_c00464{left:426.533333pt;}
.x11_c00464{left:428.400000pt;}
.x8e_c00464{left:431.066667pt;}
.xbe_c00464{left:432.800000pt;}
.x31_c00464{left:433.733333pt;}
.xf0_c00464{left:436.400000pt;}
.xd5_c00464{left:438.666667pt;}
.x49_c00464{left:439.733333pt;}
.x83_c00464{left:441.600000pt;}
.xb5_c00464{left:442.533333pt;}
.xc6_c00464{left:446.133333pt;}
.x3_c00464{left:448.933333pt;}
.x6e_c00464{left:451.333333pt;}
.xf1_c00464{left:452.400000pt;}
.x3c_c00464{left:453.333333pt;}
.xa6_c00464{left:454.800000pt;}
.x84_c00464{left:457.600000pt;}
.x57_c00464{left:462.933333pt;}
.x75_c00464{left:465.866667pt;}
.x6f_c00464{left:468.266667pt;}
.x12_c00464{left:469.733333pt;}
.x4a_c00464{left:471.066667pt;}
.xde_c00464{left:474.933333pt;}
.xb6_c00464{left:475.866667pt;}
.xa0_c00464{left:477.200000pt;}
.x58_c00464{left:478.933333pt;}
.x7a_c00464{left:482.266667pt;}
.x65_c00464{left:489.600000pt;}
.x21_c00464{left:490.933333pt;}
.x3d_c00464{left:493.333333pt;}
.xd6_c00464{left:495.200000pt;}
.x8_c00464{left:498.800000pt;}
.x13_c00464{left:502.400000pt;}
.x99_c00464{left:503.600000pt;}
.x8f_c00464{left:507.600000pt;}
.x50_c00464{left:509.200000pt;}
.x3e_c00464{left:512.800000pt;}
.x76_c00464{left:515.200000pt;}
.x32_c00464{left:517.200000pt;}
.x7b_c00464{left:522.933333pt;}
.x22_c00464{left:523.866667pt;}
.x14_c00464{left:526.133333pt;}
.x4b_c00464{left:527.333333pt;}
.x59_c00464{left:528.533333pt;}
.x66_c00464{left:530.266667pt;}
.x90_c00464{left:533.200000pt;}
.xb7_c00464{left:534.400000pt;}
.xa1_c00464{left:535.733333pt;}
.xdf_c00464{left:538.266667pt;}
.x3f_c00464{left:540.666667pt;}
.x23_c00464{left:544.666667pt;}
.x77_c00464{left:550.666667pt;}
.x15_c00464{left:554.000000pt;}
.xf2_c00464{left:556.133333pt;}
.xcf_c00464{left:558.533333pt;}
.x67_c00464{left:562.933333pt;}
.x5a_c00464{left:568.266667pt;}
.x33_c00464{left:570.666667pt;}
.x7c_c00464{left:574.400000pt;}
.x70_c00464{left:576.133333pt;}
.x91_c00464{left:578.000000pt;}
.xe0_c00464{left:581.200000pt;}
.x9a_c00464{left:582.266667pt;}
.x24_c00464{left:586.000000pt;}
.x34_c00464{left:588.266667pt;}
.x85_c00464{left:590.666667pt;}
.xb8_c00464{left:592.533333pt;}
.x16_c00464{left:594.000000pt;}
.x40_c00464{left:596.400000pt;}
.xa2_c00464{left:598.800000pt;}
.xd7_c00464{left:602.266667pt;}
.x86_c00464{left:603.733333pt;}
.x25_c00464{left:604.933333pt;}
.x68_c00464{left:608.666667pt;}
.x9b_c00464{left:610.400000pt;}
.x5b_c00464{left:612.800000pt;}
.xec_c00464{left:614.266667pt;}
.x41_c00464{left:615.600000pt;}
.x35_c00464{left:618.400000pt;}
.xbf_c00464{left:619.333333pt;}
.x92_c00464{left:626.000000pt;}
.xe6_c00464{left:627.733333pt;}
.x5c_c00464{left:631.066667pt;}
.xc7_c00464{left:632.133333pt;}
.x87_c00464{left:634.800000pt;}
.xa7_c00464{left:636.266667pt;}
.xd0_c00464{left:641.466667pt;}
.x7d_c00464{left:643.600000pt;}
.x42_c00464{left:648.533333pt;}
.xe7_c00464{left:650.800000pt;}
.x5d_c00464{left:654.400000pt;}
.x17_c00464{left:655.733333pt;}
.x93_c00464{left:658.000000pt;}
.xd8_c00464{left:658.933333pt;}
.xe1_c00464{left:664.533333pt;}
.x88_c00464{left:667.466667pt;}
.xed_c00464{left:668.933333pt;}
.x78_c00464{left:671.333333pt;}
.xa3_c00464{left:673.066667pt;}
.xe8_c00464{left:675.466667pt;}
.x7e_c00464{left:676.533333pt;}
.xae_c00464{left:677.466667pt;}
.x43_c00464{left:680.800000pt;}
.x69_c00464{left:682.533333pt;}
.xa8_c00464{left:684.266667pt;}
.x89_c00464{left:689.866667pt;}
.xe2_c00464{left:691.066667pt;}
.x5e_c00464{left:692.133333pt;}
.xee_c00464{left:693.600000pt;}
.x18_c00464{left:702.400000pt;}
.x6a_c00464{left:703.600000pt;}
.xc0_c00464{left:705.733333pt;}
.x36_c00464{left:708.933333pt;}
.x26_c00464{left:709.866667pt;}
.x5f_c00464{left:711.333333pt;}
.x94_c00464{left:715.066667pt;}
.xc8_c00464{left:719.866667pt;}
.xe3_c00464{left:726.000000pt;}
}





/* 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_c00465 {
    display:none;
  }
  .loading-indicator_c00465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00465 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_c00465 { 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_c00465" -> "#page-container .classname_c00465")
 */
.pf_c00465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00465 { /* 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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00465 { /* 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_c00465 { /* 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_c00465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00465 {overflow:visible;}
  }
}
.c_c00465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00465 { /* 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_c00465:after { /* webkit #35443 */
  content: '';
}
.t_c00465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00465 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 */
}
.__c00465 { /* 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_c00465 { /* info for Javascript */
  display:none;
}
.l_c00465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00465: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_c00465 {
    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_c00465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00465.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_c00465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00465{font-family:sans-serif;visibility:hidden;}
.sc__c00465{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
}
.y0_c00465{bottom:0.000000px;}
.h1_c00465{height:1166.250000px;}
.h0_c00465{height:1166.400056px;}
.w0_c00465{width:920.879975px;}
.w1_c00465{width:921.000000px;}
.x0_c00465{left:0.000000px;}
@media print{
.y0_c00465{bottom:0.000000pt;}
.h1_c00465{height:1036.666667pt;}
.h0_c00465{height:1036.800049pt;}
.w0_c00465{width:818.559977pt;}
.w1_c00465{width:818.666667pt;}
.x0_c00465{left:0.000000pt;}
}





/* 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_c00466 {
    display:none;
  }
  .loading-indicator_c00466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00466 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_c00466 { 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_c00466" -> "#page-container .classname_c00466")
 */
.pf_c00466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00466 { /* 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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00466 { /* 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_c00466 { /* 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_c00466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00466 {overflow:visible;}
  }
}
.c_c00466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00466 { /* 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_c00466:after { /* webkit #35443 */
  content: '';
}
.t_c00466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00466 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 */
}
.__c00466 { /* 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_c00466 { /* info for Javascript */
  display:none;
}
.l_c00466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00466: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_c00466 {
    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_c00466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00466.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_c00466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00466;src:url('chunks/assets/font_9025e0cf201d8d87d0af9a8f.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.000000;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;}
.m7_c00466{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00466{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m3_c00466{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{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);}
.m5_c00466{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00466{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.v0_c00466{vertical-align:0.000000px;}
.ls0_c00466{letter-spacing:0.000000px;}
.sc__c00466{text-shadow:none;}
.sc0_c00466{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__c00466{-webkit-text-stroke:0px transparent;}
.sc0_c00466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00466{word-spacing:0.000000px;}
.ws0_c00466{word-spacing:126.672359px;}
.ws1_c00466{word-spacing:138.324511px;}
.fc0_c00466{color:transparent;}
.fs1_c00466{font-size:36.000000px;}
.fs0_c00466{font-size:42.000000px;}
.y0_c00466{bottom:0.000000px;}
.y2_c00466{bottom:23.700000px;}
.y1_c00466{bottom:1118.550000px;}
.h3_c00466{height:36.000000px;}
.h2_c00466{height:42.000000px;}
.h1_c00466{height:1166.250000px;}
.h0_c00466{height:1166.400056px;}
.w0_c00466{width:920.879975px;}
.w1_c00466{width:921.000000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:57.600000px;}
.x2_c00466{left:152.700000px;}
.x3_c00466{left:249.300000px;}
.x4_c00466{left:297.150000px;}
.x5_c00466{left:345.000000px;}
.x6_c00466{left:391.050000px;}
.x7_c00466{left:439.350000px;}
.x8_c00466{left:485.850000px;}
.x9_c00466{left:826.500000px;}
.xa_c00466{left:834.000000px;}
.xb_c00466{left:845.550000px;}
.xc_c00466{left:854.550000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws2_c00466{word-spacing:0.000000pt;}
.ws0_c00466{word-spacing:112.597652pt;}
.ws1_c00466{word-spacing:122.955121pt;}
.fs1_c00466{font-size:32.000000pt;}
.fs0_c00466{font-size:37.333333pt;}
.y0_c00466{bottom:0.000000pt;}
.y2_c00466{bottom:21.066667pt;}
.y1_c00466{bottom:994.266667pt;}
.h3_c00466{height:32.000000pt;}
.h2_c00466{height:37.333333pt;}
.h1_c00466{height:1036.666667pt;}
.h0_c00466{height:1036.800049pt;}
.w0_c00466{width:818.559977pt;}
.w1_c00466{width:818.666667pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:51.200000pt;}
.x2_c00466{left:135.733333pt;}
.x3_c00466{left:221.600000pt;}
.x4_c00466{left:264.133333pt;}
.x5_c00466{left:306.666667pt;}
.x6_c00466{left:347.600000pt;}
.x7_c00466{left:390.533333pt;}
.x8_c00466{left:431.866667pt;}
.x9_c00466{left:734.666667pt;}
.xa_c00466{left:741.333333pt;}
.xb_c00466{left:751.600000pt;}
.xc_c00466{left:759.600000pt;}
}





/* 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_c00467 {
    display:none;
  }
  .loading-indicator_c00467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00467 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_c00467 { 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_c00467" -> "#page-container .classname_c00467")
 */
.pf_c00467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00467 { /* 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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00467 { /* 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_c00467 { /* 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_c00467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00467 {overflow:visible;}
  }
}
.c_c00467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00467 { /* 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_c00467:after { /* webkit #35443 */
  content: '';
}
.t_c00467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00467 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 */
}
.__c00467 { /* 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_c00467 { /* info for Javascript */
  display:none;
}
.l_c00467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00467: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_c00467 {
    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_c00467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00467.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_c00467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00467;src:url('chunks/assets/font_7c441598f6a99c85f606a5d4.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.000000;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_c00467{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls0_c00467{letter-spacing:0.000000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{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__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:0.000000px;}
.fc0_c00467{color:transparent;}
.fs0_c00467{font-size:42.000000px;}
.y0_c00467{bottom:0.000000px;}
.y1_c00467{bottom:14.400000px;}
.h2_c00467{height:42.000000px;}
.h1_c00467{height:1166.250000px;}
.h0_c00467{height:1166.400056px;}
.w0_c00467{width:920.879975px;}
.w1_c00467{width:921.000000px;}
.x0_c00467{left:0.000000px;}
.x1_c00467{left:9.750000px;}
.x2_c00467{left:54.450000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs0_c00467{font-size:37.333333pt;}
.y0_c00467{bottom:0.000000pt;}
.y1_c00467{bottom:12.800000pt;}
.h2_c00467{height:37.333333pt;}
.h1_c00467{height:1036.666667pt;}
.h0_c00467{height:1036.800049pt;}
.w0_c00467{width:818.559977pt;}
.w1_c00467{width:818.666667pt;}
.x0_c00467{left:0.000000pt;}
.x1_c00467{left:8.666667pt;}
.x2_c00467{left:48.400000pt;}
}





/* 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_c00468 {
    display:none;
  }
  .loading-indicator_c00468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00468 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_c00468 { 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_c00468" -> "#page-container .classname_c00468")
 */
.pf_c00468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00468 { /* 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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00468 { /* 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_c00468 { /* 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_c00468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00468 {overflow:visible;}
  }
}
.c_c00468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00468 { /* 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_c00468:after { /* webkit #35443 */
  content: '';
}
.t_c00468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00468 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 */
}
.__c00468 { /* 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_c00468 { /* info for Javascript */
  display:none;
}
.l_c00468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00468: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_c00468 {
    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_c00468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00468.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_c00468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00468{font-family:sans-serif;visibility:hidden;}
.sc__c00468{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
}
.y0_c00468{bottom:0.000000px;}
.h1_c00468{height:1166.250000px;}
.h0_c00468{height:1166.400056px;}
.w0_c00468{width:920.879975px;}
.w1_c00468{width:921.000000px;}
.x0_c00468{left:0.000000px;}
@media print{
.y0_c00468{bottom:0.000000pt;}
.h1_c00468{height:1036.666667pt;}
.h0_c00468{height:1036.800049pt;}
.w0_c00468{width:818.559977pt;}
.w1_c00468{width:818.666667pt;}
.x0_c00468{left:0.000000pt;}
}





/* 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_c00469 {
    display:none;
  }
  .loading-indicator_c00469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00469 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_c00469 { 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_c00469" -> "#page-container .classname_c00469")
 */
.pf_c00469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00469 { /* 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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00469 { /* 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_c00469 { /* 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_c00469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00469 {overflow:visible;}
  }
}
.c_c00469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00469 { /* 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_c00469:after { /* webkit #35443 */
  content: '';
}
.t_c00469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00469 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 */
}
.__c00469 { /* 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_c00469 { /* info for Javascript */
  display:none;
}
.l_c00469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00469: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_c00469 {
    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_c00469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00469.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_c00469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00469;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.000000;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;}
.m96_c00469{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m77_c00469{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00469{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00469{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m7_c00469{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00469{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00469{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00469{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m47_c00469{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m16_c00469{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m52_c00469{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m19_c00469{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m35_c00469{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00469{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00469{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m65_c00469{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m60_c00469{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00469{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m56_c00469{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m27_c00469{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m11_c00469{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00469{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m89_c00469{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00469{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m74_c00469{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m82_c00469{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00469{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00469{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00469{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m58_c00469{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m66_c00469{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m81_c00469{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m63_c00469{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m45_c00469{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m17_c00469{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m5_c00469{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00469{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00469{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m12_c00469{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m62_c00469{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m20_c00469{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m37_c00469{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00469{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00469{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m32_c00469{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00469{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m91_c00469{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00469{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m38_c00469{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00469{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00469{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00469{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00469{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m57_c00469{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m79_c00469{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m51_c00469{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00469{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00469{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00469{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m36_c00469{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00469{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m26_c00469{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00469{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00469{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m87_c00469{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00469{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m8_c00469{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m14_c00469{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m42_c00469{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m28_c00469{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m23_c00469{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00469{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m68_c00469{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3_c00469{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m72_c00469{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m94_c00469{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m6_c00469{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m53_c00469{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15_c00469{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m44_c00469{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mf_c00469{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00469{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m98_c00469{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m64_c00469{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m97_c00469{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00469{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m48_c00469{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m84_c00469{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m33_c00469{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m4_c00469{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m24_c00469{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00469{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m39_c00469{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m59_c00469{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m71_c00469{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m69_c00469{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00469{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00469{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00469{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55_c00469{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m90_c00469{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m76_c00469{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m22_c00469{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m10_c00469{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00469{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9_c00469{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00469{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m25_c00469{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00469{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m61_c00469{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00469{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00469{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00469{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m78_c00469{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00469{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00469{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00469{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00469{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00469{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma_c00469{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m21_c00469{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00469{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00469{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m31_c00469{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m92_c00469{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m67_c00469{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00469{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m73_c00469{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.md_c00469{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m54_c00469{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00469{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m29_c00469{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m83_c00469{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m75_c00469{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mb_c00469{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m50_c00469{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00469{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00469{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00469{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.me_c00469{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m18_c00469{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m30_c00469{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m41_c00469{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m88_c00469{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00469{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00469{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m80_c00469{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m49_c00469{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m93_c00469{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00469{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m86_c00469{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mc_c00469{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00469{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m99_c00469{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m40_c00469{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m46_c00469{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00469{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00469{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00469{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m43_c00469{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m95_c00469{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2_c00469{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m70_c00469{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00469{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00469{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m0_c00469{transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342250,0.000000,0.000000,0.250000,0,0);}
.m85_c00469{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00469{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.v0_c00469{vertical-align:0.000000px;}
.ls0_c00469{letter-spacing:0.000000px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{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__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00469{word-spacing:0.000000px;}
.ws1_c00469{word-spacing:5.227273px;}
.ws2_c00469{word-spacing:6.666667px;}
.ws3_c00469{word-spacing:12.894737px;}
.ws0_c00469{word-spacing:19.816514px;}
.fc0_c00469{color:transparent;}
.fs0_c00469{font-size:54.000000px;}
.fs1_c00469{font-size:60.000000px;}
.y0_c00469{bottom:0.000000px;}
.y2d_c00469{bottom:127.500000px;}
.y2c_c00469{bottom:146.550000px;}
.y2b_c00469{bottom:162.750000px;}
.y2a_c00469{bottom:203.250000px;}
.y29_c00469{bottom:223.350000px;}
.y28_c00469{bottom:243.150000px;}
.y27_c00469{bottom:263.250000px;}
.y26_c00469{bottom:283.350000px;}
.y25_c00469{bottom:303.150000px;}
.y24_c00469{bottom:323.250000px;}
.y23_c00469{bottom:343.350000px;}
.y22_c00469{bottom:363.450000px;}
.y21_c00469{bottom:383.550000px;}
.y20_c00469{bottom:403.650000px;}
.y1f_c00469{bottom:423.450000px;}
.y1e_c00469{bottom:443.550000px;}
.y1d_c00469{bottom:463.650000px;}
.y1c_c00469{bottom:483.450000px;}
.y1b_c00469{bottom:503.850000px;}
.y1a_c00469{bottom:531.900000px;}
.y19_c00469{bottom:544.200000px;}
.y18_c00469{bottom:564.300000px;}
.y17_c00469{bottom:584.850000px;}
.y16_c00469{bottom:604.950000px;}
.y15_c00469{bottom:624.750000px;}
.y14_c00469{bottom:644.550000px;}
.y13_c00469{bottom:664.650000px;}
.y12_c00469{bottom:684.750000px;}
.y11_c00469{bottom:704.550000px;}
.y10_c00469{bottom:724.350000px;}
.yf_c00469{bottom:744.900000px;}
.ye_c00469{bottom:764.700000px;}
.yd_c00469{bottom:784.800000px;}
.yc_c00469{bottom:805.350000px;}
.yb_c00469{bottom:825.600000px;}
.ya_c00469{bottom:845.700000px;}
.y9_c00469{bottom:865.500000px;}
.y8_c00469{bottom:886.200000px;}
.y7_c00469{bottom:906.300000px;}
.y6_c00469{bottom:926.400000px;}
.y5_c00469{bottom:946.500000px;}
.y4_c00469{bottom:966.300000px;}
.y3_c00469{bottom:986.100000px;}
.y2_c00469{bottom:1005.900000px;}
.y1_c00469{bottom:1042.950000px;}
.h2_c00469{height:54.000000px;}
.h3_c00469{height:60.000000px;}
.h1_c00469{height:1166.250000px;}
.h0_c00469{height:1166.400056px;}
.w0_c00469{width:920.879975px;}
.w1_c00469{width:921.000000px;}
.x0_c00469{left:0.000000px;}
.x111_c00469{left:96.450000px;}
.xb5_c00469{left:97.950000px;}
.x33_c00469{left:99.150000px;}
.x4_c00469{left:100.800000px;}
.x121_c00469{left:107.700000px;}
.x12b_c00469{left:112.350000px;}
.x54_c00469{left:121.200000px;}
.x11c_c00469{left:125.550000px;}
.xfc_c00469{left:126.750000px;}
.x116_c00469{left:127.800000px;}
.x5_c00469{left:128.850000px;}
.x59_c00469{left:129.900000px;}
.x15_c00469{left:130.950000px;}
.x47_c00469{left:133.200000px;}
.xdc_c00469{left:135.750000px;}
.xe8_c00469{left:137.700000px;}
.xe3_c00469{left:139.500000px;}
.x55_c00469{left:141.300000px;}
.x89_c00469{left:142.800000px;}
.x103_c00469{left:143.850000px;}
.xbb_c00469{left:145.200000px;}
.x107_c00469{left:147.600000px;}
.xfd_c00469{left:148.650000px;}
.xd7_c00469{left:153.750000px;}
.x74_c00469{left:157.050000px;}
.x128_c00469{left:158.250000px;}
.x34_c00469{left:159.600000px;}
.x24_c00469{left:161.550000px;}
.x67_c00469{left:162.600000px;}
.x75_c00469{left:163.800000px;}
.x97_c00469{left:164.850000px;}
.xef_c00469{left:166.800000px;}
.x7f_c00469{left:169.200000px;}
.x6_c00469{left:171.300000px;}
.x5a_c00469{left:173.850000px;}
.xbc_c00469{left:176.100000px;}
.xd8_c00469{left:177.450000px;}
.x35_c00469{left:179.400000px;}
.xe9_c00469{left:181.200000px;}
.x117_c00469{left:186.150000px;}
.x3e_c00469{left:187.500000px;}
.x68_c00469{left:189.600000px;}
.x7_c00469{left:191.400000px;}
.xa1_c00469{left:195.000000px;}
.x124_c00469{left:196.800000px;}
.x118_c00469{left:202.350000px;}
.x5b_c00469{left:203.400000px;}
.x16_c00469{left:205.500000px;}
.x3f_c00469{left:207.300000px;}
.x8a_c00469{left:208.350000px;}
.x104_c00469{left:209.400000px;}
.xeb_c00469{left:210.900000px;}
.x11d_c00469{left:213.000000px;}
.xd9_c00469{left:214.200000px;}
.xa2_c00469{left:215.550000px;}
.x69_c00469{left:217.650000px;}
.x80_c00469{left:219.300000px;}
.x25_c00469{left:221.250000px;}
.x98_c00469{left:224.250000px;}
.x17_c00469{left:226.800000px;}
.xec_c00469{left:229.650000px;}
.xa3_c00469{left:230.700000px;}
.x8_c00469{left:232.050000px;}
.xcc_c00469{left:234.750000px;}
.x12e_c00469{left:236.100000px;}
.x129_c00469{left:237.150000px;}
.x76_c00469{left:239.100000px;}
.x40_c00469{left:240.450000px;}
.xc5_c00469{left:241.950000px;}
.x26_c00469{left:243.900000px;}
.xb6_c00469{left:245.250000px;}
.xab_c00469{left:248.250000px;}
.xcd_c00469{left:249.450000px;}
.x9_c00469{left:253.950000px;}
.x18_c00469{left:256.650000px;}
.x81_c00469{left:258.600000px;}
.x77_c00469{left:260.400000px;}
.x6a_c00469{left:264.450000px;}
.x11e_c00469{left:265.500000px;}
.x48_c00469{left:266.700000px;}
.xc6_c00469{left:270.450000px;}
.x36_c00469{left:272.400000px;}
.x99_c00469{left:274.350000px;}
.x19_c00469{left:275.700000px;}
.x27_c00469{left:279.600000px;}
.xdd_c00469{left:282.900000px;}
.xa4_c00469{left:283.950000px;}
.x122_c00469{left:285.450000px;}
.x112_c00469{left:287.850000px;}
.xa_c00469{left:289.950000px;}
.xf0_c00469{left:291.000000px;}
.x125_c00469{left:292.200000px;}
.x6b_c00469{left:295.350000px;}
.xbd_c00469{left:296.700000px;}
.xac_c00469{left:298.650000px;}
.x108_c00469{left:301.650000px;}
.x12c_c00469{left:303.600000px;}
.x1a_c00469{left:304.800000px;}
.x11f_c00469{left:305.850000px;}
.x78_c00469{left:308.250000px;}
.xf1_c00469{left:310.500000px;}
.x37_c00469{left:312.000000px;}
.x8b_c00469{left:313.800000px;}
.xf3_c00469{left:315.150000px;}
.x49_c00469{left:317.100000px;}
.xbe_c00469{left:318.600000px;}
.xb_c00469{left:320.250000px;}
.x5c_c00469{left:323.400000px;}
.x119_c00469{left:324.450000px;}
.x56_c00469{left:325.650000px;}
.x41_c00469{left:327.600000px;}
.x94_c00469{left:330.000000px;}
.x28_c00469{left:332.100000px;}
.xe4_c00469{left:333.600000px;}
.x38_c00469{left:336.150000px;}
.xfe_c00469{left:338.100000px;}
.x4a_c00469{left:339.450000px;}
.x8c_c00469{left:341.850000px;}
.xa5_c00469{left:343.050000px;}
.x82_c00469{left:345.000000px;}
.x126_c00469{left:349.050000px;}
.xea_c00469{left:351.150000px;}
.x6c_c00469{left:352.950000px;}
.x29_c00469{left:354.000000px;}
.x1b_c00469{left:355.950000px;}
.x1_c00469{left:358.500000px;}
.xad_c00469{left:360.900000px;}
.xbf_c00469{left:362.550000px;}
.x39_c00469{left:364.650000px;}
.xff_c00469{left:367.200000px;}
.x5d_c00469{left:369.450000px;}
.x4b_c00469{left:371.850000px;}
.xc7_c00469{left:373.800000px;}
.x2a_c00469{left:378.450000px;}
.x113_c00469{left:381.000000px;}
.x6d_c00469{left:382.050000px;}
.x8d_c00469{left:384.750000px;}
.x1c_c00469{left:388.050000px;}
.xae_c00469{left:390.000000px;}
.x83_c00469{left:391.800000px;}
.x95_c00469{left:395.550000px;}
.x5e_c00469{left:397.200000px;}
.x114_c00469{left:398.700000px;}
.xd1_c00469{left:401.250000px;}
.x42_c00469{left:402.900000px;}
.xc_c00469{left:404.250000px;}
.x8e_c00469{left:406.650000px;}
.x1d_c00469{left:409.650000px;}
.xf7_c00469{left:410.700000px;}
.xf2_c00469{left:411.750000px;}
.x4c_c00469{left:412.950000px;}
.x11a_c00469{left:414.750000px;}
.x100_c00469{left:415.800000px;}
.xc0_c00469{left:416.850000px;}
.xda_c00469{left:419.850000px;}
.x79_c00469{left:420.900000px;}
.xa6_c00469{left:423.000000px;}
.x2b_c00469{left:426.750000px;}
.x43_c00469{left:430.200000px;}
.x109_c00469{left:432.750000px;}
.x12f_c00469{left:433.800000px;}
.x6e_c00469{left:435.300000px;}
.xd_c00469{left:436.950000px;}
.x1e_c00469{left:438.450000px;}
.x4d_c00469{left:439.950000px;}
.xde_c00469{left:441.300000px;}
.x7a_c00469{left:443.550000px;}
.x9a_c00469{left:444.600000px;}
.xa7_c00469{left:446.700000px;}
.x2_c00469{left:447.750000px;}
.x57_c00469{left:449.550000px;}
.xd2_c00469{left:450.900000px;}
.x5f_c00469{left:452.700000px;}
.x10a_c00469{left:456.150000px;}
.x84_c00469{left:458.100000px;}
.x130_c00469{left:459.750000px;}
.x8f_c00469{left:462.450000px;}
.x96_c00469{left:463.950000px;}
.xe_c00469{left:466.050000px;}
.x2c_c00469{left:467.400000px;}
.x4e_c00469{left:469.800000px;}
.x120_c00469{left:471.900000px;}
.xaf_c00469{left:473.850000px;}
.x9b_c00469{left:477.750000px;}
.x60_c00469{left:479.400000px;}
.x105_c00469{left:482.100000px;}
.x101_c00469{left:483.150000px;}
.x131_c00469{left:484.500000px;}
.x2d_c00469{left:486.900000px;}
.x90_c00469{left:490.950000px;}
.xb0_c00469{left:493.350000px;}
.xce_c00469{left:497.850000px;}
.xf4_c00469{left:498.900000px;}
.x10b_c00469{left:500.100000px;}
.x1f_c00469{left:501.150000px;}
.xc8_c00469{left:502.650000px;}
.x44_c00469{left:505.800000px;}
.x123_c00469{left:506.850000px;}
.x85_c00469{left:508.500000px;}
.xd3_c00469{left:511.350000px;}
.xe5_c00469{left:512.550000px;}
.xb7_c00469{left:518.550000px;}
.xf_c00469{left:519.750000px;}
.x61_c00469{left:521.850000px;}
.xa8_c00469{left:523.350000px;}
.xb1_c00469{left:526.050000px;}
.x20_c00469{left:527.400000px;}
.xd4_c00469{left:529.350000px;}
.x58_c00469{left:531.300000px;}
.xc9_c00469{left:533.550000px;}
.x4f_c00469{left:534.900000px;}
.xf8_c00469{left:536.250000px;}
.x6f_c00469{left:539.700000px;}
.x86_c00469{left:541.950000px;}
.x2e_c00469{left:547.350000px;}
.x10c_c00469{left:548.700000px;}
.x3a_c00469{left:551.400000px;}
.x7b_c00469{left:553.350000px;}
.x50_c00469{left:554.700000px;}
.x21_c00469{left:556.950000px;}
.xdf_c00469{left:563.550000px;}
.xf9_c00469{left:565.800000px;}
.xdb_c00469{left:567.600000px;}
.x62_c00469{left:570.000000px;}
.xe6_c00469{left:572.250000px;}
.x45_c00469{left:574.950000px;}
.x127_c00469{left:577.050000px;}
.xcf_c00469{left:578.550000px;}
.x10d_c00469{left:579.600000px;}
.x2f_c00469{left:581.550000px;}
.x10_c00469{left:582.750000px;}
.xf5_c00469{left:585.300000px;}
.x70_c00469{left:586.800000px;}
.xb2_c00469{left:589.800000px;}
.xfa_c00469{left:591.300000px;}
.x9c_c00469{left:593.400000px;}
.x7c_c00469{left:595.050000px;}
.x11b_c00469{left:598.950000px;}
.x51_c00469{left:600.000000px;}
.x22_c00469{left:602.700000px;}
.xa9_c00469{left:604.650000px;}
.x11_c00469{left:606.450000px;}
.xc1_c00469{left:608.100000px;}
.xe0_c00469{left:609.300000px;}
.x71_c00469{left:611.700000px;}
.x87_c00469{left:613.950000px;}
.xb8_c00469{left:615.000000px;}
.xd5_c00469{left:619.350000px;}
.x12a_c00469{left:620.700000px;}
.x63_c00469{left:622.200000px;}
.x23_c00469{left:625.350000px;}
.x7d_c00469{left:626.400000px;}
.x106_c00469{left:627.450000px;}
.x91_c00469{left:629.850000px;}
.xb3_c00469{left:633.300000px;}
.x3b_c00469{left:634.950000px;}
.x10e_c00469{left:636.900000px;}
.x30_c00469{left:638.100000px;}
.x72_c00469{left:639.450000px;}
.x88_c00469{left:643.500000px;}
.x12_c00469{left:647.550000px;}
.xed_c00469{left:651.750000px;}
.xe1_c00469{left:656.100000px;}
.x92_c00469{left:657.150000px;}
.x9d_c00469{left:659.700000px;}
.x115_c00469{left:661.500000px;}
.x52_c00469{left:663.600000px;}
.x7e_c00469{left:665.250000px;}
.x3c_c00469{left:667.350000px;}
.xd0_c00469{left:670.050000px;}
.xee_c00469{left:671.250000px;}
.xc2_c00469{left:672.900000px;}
.xaa_c00469{left:674.100000px;}
.x102_c00469{left:678.300000px;}
.x64_c00469{left:679.800000px;}
.xfb_c00469{left:684.150000px;}
.x9e_c00469{left:686.700000px;}
.x46_c00469{left:688.350000px;}
.xe7_c00469{left:691.050000px;}
.xca_c00469{left:694.500000px;}
.x65_c00469{left:697.500000px;}
.x12d_c00469{left:700.650000px;}
.xf6_c00469{left:702.750000px;}
.xb9_c00469{left:703.950000px;}
.x31_c00469{left:705.000000px;}
.x13_c00469{left:706.200000px;}
.x93_c00469{left:710.100000px;}
.xb4_c00469{left:713.850000px;}
.x10f_c00469{left:714.900000px;}
.x73_c00469{left:716.100000px;}
.x53_c00469{left:719.400000px;}
.xba_c00469{left:721.200000px;}
.xc3_c00469{left:723.600000px;}
.xd6_c00469{left:726.750000px;}
.xe2_c00469{left:728.100000px;}
.xcb_c00469{left:730.800000px;}
.x110_c00469{left:731.850000px;}
.x9f_c00469{left:733.800000px;}
.x3_c00469{left:739.350000px;}
.xc4_c00469{left:743.700000px;}
.x3d_c00469{left:745.050000px;}
.x14_c00469{left:747.600000px;}
.x32_c00469{left:749.700000px;}
.x66_c00469{left:752.250000px;}
.xa0_c00469{left:755.100000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws4_c00469{word-spacing:0.000000pt;}
.ws1_c00469{word-spacing:4.646465pt;}
.ws2_c00469{word-spacing:5.925926pt;}
.ws3_c00469{word-spacing:11.461988pt;}
.ws0_c00469{word-spacing:17.614679pt;}
.fs0_c00469{font-size:48.000000pt;}
.fs1_c00469{font-size:53.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y2d_c00469{bottom:113.333333pt;}
.y2c_c00469{bottom:130.266667pt;}
.y2b_c00469{bottom:144.666667pt;}
.y2a_c00469{bottom:180.666667pt;}
.y29_c00469{bottom:198.533333pt;}
.y28_c00469{bottom:216.133333pt;}
.y27_c00469{bottom:234.000000pt;}
.y26_c00469{bottom:251.866667pt;}
.y25_c00469{bottom:269.466667pt;}
.y24_c00469{bottom:287.333333pt;}
.y23_c00469{bottom:305.200000pt;}
.y22_c00469{bottom:323.066667pt;}
.y21_c00469{bottom:340.933333pt;}
.y20_c00469{bottom:358.800000pt;}
.y1f_c00469{bottom:376.400000pt;}
.y1e_c00469{bottom:394.266667pt;}
.y1d_c00469{bottom:412.133333pt;}
.y1c_c00469{bottom:429.733333pt;}
.y1b_c00469{bottom:447.866667pt;}
.y1a_c00469{bottom:472.800000pt;}
.y19_c00469{bottom:483.733333pt;}
.y18_c00469{bottom:501.600000pt;}
.y17_c00469{bottom:519.866667pt;}
.y16_c00469{bottom:537.733333pt;}
.y15_c00469{bottom:555.333333pt;}
.y14_c00469{bottom:572.933333pt;}
.y13_c00469{bottom:590.800000pt;}
.y12_c00469{bottom:608.666667pt;}
.y11_c00469{bottom:626.266667pt;}
.y10_c00469{bottom:643.866667pt;}
.yf_c00469{bottom:662.133333pt;}
.ye_c00469{bottom:679.733333pt;}
.yd_c00469{bottom:697.600000pt;}
.yc_c00469{bottom:715.866667pt;}
.yb_c00469{bottom:733.866667pt;}
.ya_c00469{bottom:751.733333pt;}
.y9_c00469{bottom:769.333333pt;}
.y8_c00469{bottom:787.733333pt;}
.y7_c00469{bottom:805.600000pt;}
.y6_c00469{bottom:823.466667pt;}
.y5_c00469{bottom:841.333333pt;}
.y4_c00469{bottom:858.933333pt;}
.y3_c00469{bottom:876.533333pt;}
.y2_c00469{bottom:894.133333pt;}
.y1_c00469{bottom:927.066667pt;}
.h2_c00469{height:48.000000pt;}
.h3_c00469{height:53.333333pt;}
.h1_c00469{height:1036.666667pt;}
.h0_c00469{height:1036.800049pt;}
.w0_c00469{width:818.559977pt;}
.w1_c00469{width:818.666667pt;}
.x0_c00469{left:0.000000pt;}
.x111_c00469{left:85.733333pt;}
.xb5_c00469{left:87.066667pt;}
.x33_c00469{left:88.133333pt;}
.x4_c00469{left:89.600000pt;}
.x121_c00469{left:95.733333pt;}
.x12b_c00469{left:99.866667pt;}
.x54_c00469{left:107.733333pt;}
.x11c_c00469{left:111.600000pt;}
.xfc_c00469{left:112.666667pt;}
.x116_c00469{left:113.600000pt;}
.x5_c00469{left:114.533333pt;}
.x59_c00469{left:115.466667pt;}
.x15_c00469{left:116.400000pt;}
.x47_c00469{left:118.400000pt;}
.xdc_c00469{left:120.666667pt;}
.xe8_c00469{left:122.400000pt;}
.xe3_c00469{left:124.000000pt;}
.x55_c00469{left:125.600000pt;}
.x89_c00469{left:126.933333pt;}
.x103_c00469{left:127.866667pt;}
.xbb_c00469{left:129.066667pt;}
.x107_c00469{left:131.200000pt;}
.xfd_c00469{left:132.133333pt;}
.xd7_c00469{left:136.666667pt;}
.x74_c00469{left:139.600000pt;}
.x128_c00469{left:140.666667pt;}
.x34_c00469{left:141.866667pt;}
.x24_c00469{left:143.600000pt;}
.x67_c00469{left:144.533333pt;}
.x75_c00469{left:145.600000pt;}
.x97_c00469{left:146.533333pt;}
.xef_c00469{left:148.266667pt;}
.x7f_c00469{left:150.400000pt;}
.x6_c00469{left:152.266667pt;}
.x5a_c00469{left:154.533333pt;}
.xbc_c00469{left:156.533333pt;}
.xd8_c00469{left:157.733333pt;}
.x35_c00469{left:159.466667pt;}
.xe9_c00469{left:161.066667pt;}
.x117_c00469{left:165.466667pt;}
.x3e_c00469{left:166.666667pt;}
.x68_c00469{left:168.533333pt;}
.x7_c00469{left:170.133333pt;}
.xa1_c00469{left:173.333333pt;}
.x124_c00469{left:174.933333pt;}
.x118_c00469{left:179.866667pt;}
.x5b_c00469{left:180.800000pt;}
.x16_c00469{left:182.666667pt;}
.x3f_c00469{left:184.266667pt;}
.x8a_c00469{left:185.200000pt;}
.x104_c00469{left:186.133333pt;}
.xeb_c00469{left:187.466667pt;}
.x11d_c00469{left:189.333333pt;}
.xd9_c00469{left:190.400000pt;}
.xa2_c00469{left:191.600000pt;}
.x69_c00469{left:193.466667pt;}
.x80_c00469{left:194.933333pt;}
.x25_c00469{left:196.666667pt;}
.x98_c00469{left:199.333333pt;}
.x17_c00469{left:201.600000pt;}
.xec_c00469{left:204.133333pt;}
.xa3_c00469{left:205.066667pt;}
.x8_c00469{left:206.266667pt;}
.xcc_c00469{left:208.666667pt;}
.x12e_c00469{left:209.866667pt;}
.x129_c00469{left:210.800000pt;}
.x76_c00469{left:212.533333pt;}
.x40_c00469{left:213.733333pt;}
.xc5_c00469{left:215.066667pt;}
.x26_c00469{left:216.800000pt;}
.xb6_c00469{left:218.000000pt;}
.xab_c00469{left:220.666667pt;}
.xcd_c00469{left:221.733333pt;}
.x9_c00469{left:225.733333pt;}
.x18_c00469{left:228.133333pt;}
.x81_c00469{left:229.866667pt;}
.x77_c00469{left:231.466667pt;}
.x6a_c00469{left:235.066667pt;}
.x11e_c00469{left:236.000000pt;}
.x48_c00469{left:237.066667pt;}
.xc6_c00469{left:240.400000pt;}
.x36_c00469{left:242.133333pt;}
.x99_c00469{left:243.866667pt;}
.x19_c00469{left:245.066667pt;}
.x27_c00469{left:248.533333pt;}
.xdd_c00469{left:251.466667pt;}
.xa4_c00469{left:252.400000pt;}
.x122_c00469{left:253.733333pt;}
.x112_c00469{left:255.866667pt;}
.xa_c00469{left:257.733333pt;}
.xf0_c00469{left:258.666667pt;}
.x125_c00469{left:259.733333pt;}
.x6b_c00469{left:262.533333pt;}
.xbd_c00469{left:263.733333pt;}
.xac_c00469{left:265.466667pt;}
.x108_c00469{left:268.133333pt;}
.x12c_c00469{left:269.866667pt;}
.x1a_c00469{left:270.933333pt;}
.x11f_c00469{left:271.866667pt;}
.x78_c00469{left:274.000000pt;}
.xf1_c00469{left:276.000000pt;}
.x37_c00469{left:277.333333pt;}
.x8b_c00469{left:278.933333pt;}
.xf3_c00469{left:280.133333pt;}
.x49_c00469{left:281.866667pt;}
.xbe_c00469{left:283.200000pt;}
.xb_c00469{left:284.666667pt;}
.x5c_c00469{left:287.466667pt;}
.x119_c00469{left:288.400000pt;}
.x56_c00469{left:289.466667pt;}
.x41_c00469{left:291.200000pt;}
.x94_c00469{left:293.333333pt;}
.x28_c00469{left:295.200000pt;}
.xe4_c00469{left:296.533333pt;}
.x38_c00469{left:298.800000pt;}
.xfe_c00469{left:300.533333pt;}
.x4a_c00469{left:301.733333pt;}
.x8c_c00469{left:303.866667pt;}
.xa5_c00469{left:304.933333pt;}
.x82_c00469{left:306.666667pt;}
.x126_c00469{left:310.266667pt;}
.xea_c00469{left:312.133333pt;}
.x6c_c00469{left:313.733333pt;}
.x29_c00469{left:314.666667pt;}
.x1b_c00469{left:316.400000pt;}
.x1_c00469{left:318.666667pt;}
.xad_c00469{left:320.800000pt;}
.xbf_c00469{left:322.266667pt;}
.x39_c00469{left:324.133333pt;}
.xff_c00469{left:326.400000pt;}
.x5d_c00469{left:328.400000pt;}
.x4b_c00469{left:330.533333pt;}
.xc7_c00469{left:332.266667pt;}
.x2a_c00469{left:336.400000pt;}
.x113_c00469{left:338.666667pt;}
.x6d_c00469{left:339.600000pt;}
.x8d_c00469{left:342.000000pt;}
.x1c_c00469{left:344.933333pt;}
.xae_c00469{left:346.666667pt;}
.x83_c00469{left:348.266667pt;}
.x95_c00469{left:351.600000pt;}
.x5e_c00469{left:353.066667pt;}
.x114_c00469{left:354.400000pt;}
.xd1_c00469{left:356.666667pt;}
.x42_c00469{left:358.133333pt;}
.xc_c00469{left:359.333333pt;}
.x8e_c00469{left:361.466667pt;}
.x1d_c00469{left:364.133333pt;}
.xf7_c00469{left:365.066667pt;}
.xf2_c00469{left:366.000000pt;}
.x4c_c00469{left:367.066667pt;}
.x11a_c00469{left:368.666667pt;}
.x100_c00469{left:369.600000pt;}
.xc0_c00469{left:370.533333pt;}
.xda_c00469{left:373.200000pt;}
.x79_c00469{left:374.133333pt;}
.xa6_c00469{left:376.000000pt;}
.x2b_c00469{left:379.333333pt;}
.x43_c00469{left:382.400000pt;}
.x109_c00469{left:384.666667pt;}
.x12f_c00469{left:385.600000pt;}
.x6e_c00469{left:386.933333pt;}
.xd_c00469{left:388.400000pt;}
.x1e_c00469{left:389.733333pt;}
.x4d_c00469{left:391.066667pt;}
.xde_c00469{left:392.266667pt;}
.x7a_c00469{left:394.266667pt;}
.x9a_c00469{left:395.200000pt;}
.xa7_c00469{left:397.066667pt;}
.x2_c00469{left:398.000000pt;}
.x57_c00469{left:399.600000pt;}
.xd2_c00469{left:400.800000pt;}
.x5f_c00469{left:402.400000pt;}
.x10a_c00469{left:405.466667pt;}
.x84_c00469{left:407.200000pt;}
.x130_c00469{left:408.666667pt;}
.x8f_c00469{left:411.066667pt;}
.x96_c00469{left:412.400000pt;}
.xe_c00469{left:414.266667pt;}
.x2c_c00469{left:415.466667pt;}
.x4e_c00469{left:417.600000pt;}
.x120_c00469{left:419.466667pt;}
.xaf_c00469{left:421.200000pt;}
.x9b_c00469{left:424.666667pt;}
.x60_c00469{left:426.133333pt;}
.x105_c00469{left:428.533333pt;}
.x101_c00469{left:429.466667pt;}
.x131_c00469{left:430.666667pt;}
.x2d_c00469{left:432.800000pt;}
.x90_c00469{left:436.400000pt;}
.xb0_c00469{left:438.533333pt;}
.xce_c00469{left:442.533333pt;}
.xf4_c00469{left:443.466667pt;}
.x10b_c00469{left:444.533333pt;}
.x1f_c00469{left:445.466667pt;}
.xc8_c00469{left:446.800000pt;}
.x44_c00469{left:449.600000pt;}
.x123_c00469{left:450.533333pt;}
.x85_c00469{left:452.000000pt;}
.xd3_c00469{left:454.533333pt;}
.xe5_c00469{left:455.600000pt;}
.xb7_c00469{left:460.933333pt;}
.xf_c00469{left:462.000000pt;}
.x61_c00469{left:463.866667pt;}
.xa8_c00469{left:465.200000pt;}
.xb1_c00469{left:467.600000pt;}
.x20_c00469{left:468.800000pt;}
.xd4_c00469{left:470.533333pt;}
.x58_c00469{left:472.266667pt;}
.xc9_c00469{left:474.266667pt;}
.x4f_c00469{left:475.466667pt;}
.xf8_c00469{left:476.666667pt;}
.x6f_c00469{left:479.733333pt;}
.x86_c00469{left:481.733333pt;}
.x2e_c00469{left:486.533333pt;}
.x10c_c00469{left:487.733333pt;}
.x3a_c00469{left:490.133333pt;}
.x7b_c00469{left:491.866667pt;}
.x50_c00469{left:493.066667pt;}
.x21_c00469{left:495.066667pt;}
.xdf_c00469{left:500.933333pt;}
.xf9_c00469{left:502.933333pt;}
.xdb_c00469{left:504.533333pt;}
.x62_c00469{left:506.666667pt;}
.xe6_c00469{left:508.666667pt;}
.x45_c00469{left:511.066667pt;}
.x127_c00469{left:512.933333pt;}
.xcf_c00469{left:514.266667pt;}
.x10d_c00469{left:515.200000pt;}
.x2f_c00469{left:516.933333pt;}
.x10_c00469{left:518.000000pt;}
.xf5_c00469{left:520.266667pt;}
.x70_c00469{left:521.600000pt;}
.xb2_c00469{left:524.266667pt;}
.xfa_c00469{left:525.600000pt;}
.x9c_c00469{left:527.466667pt;}
.x7c_c00469{left:528.933333pt;}
.x11b_c00469{left:532.400000pt;}
.x51_c00469{left:533.333333pt;}
.x22_c00469{left:535.733333pt;}
.xa9_c00469{left:537.466667pt;}
.x11_c00469{left:539.066667pt;}
.xc1_c00469{left:540.533333pt;}
.xe0_c00469{left:541.600000pt;}
.x71_c00469{left:543.733333pt;}
.x87_c00469{left:545.733333pt;}
.xb8_c00469{left:546.666667pt;}
.xd5_c00469{left:550.533333pt;}
.x12a_c00469{left:551.733333pt;}
.x63_c00469{left:553.066667pt;}
.x23_c00469{left:555.866667pt;}
.x7d_c00469{left:556.800000pt;}
.x106_c00469{left:557.733333pt;}
.x91_c00469{left:559.866667pt;}
.xb3_c00469{left:562.933333pt;}
.x3b_c00469{left:564.400000pt;}
.x10e_c00469{left:566.133333pt;}
.x30_c00469{left:567.200000pt;}
.x72_c00469{left:568.400000pt;}
.x88_c00469{left:572.000000pt;}
.x12_c00469{left:575.600000pt;}
.xed_c00469{left:579.333333pt;}
.xe1_c00469{left:583.200000pt;}
.x92_c00469{left:584.133333pt;}
.x9d_c00469{left:586.400000pt;}
.x115_c00469{left:588.000000pt;}
.x52_c00469{left:589.866667pt;}
.x7e_c00469{left:591.333333pt;}
.x3c_c00469{left:593.200000pt;}
.xd0_c00469{left:595.600000pt;}
.xee_c00469{left:596.666667pt;}
.xc2_c00469{left:598.133333pt;}
.xaa_c00469{left:599.200000pt;}
.x102_c00469{left:602.933333pt;}
.x64_c00469{left:604.266667pt;}
.xfb_c00469{left:608.133333pt;}
.x9e_c00469{left:610.400000pt;}
.x46_c00469{left:611.866667pt;}
.xe7_c00469{left:614.266667pt;}
.xca_c00469{left:617.333333pt;}
.x65_c00469{left:620.000000pt;}
.x12d_c00469{left:622.800000pt;}
.xf6_c00469{left:624.666667pt;}
.xb9_c00469{left:625.733333pt;}
.x31_c00469{left:626.666667pt;}
.x13_c00469{left:627.733333pt;}
.x93_c00469{left:631.200000pt;}
.xb4_c00469{left:634.533333pt;}
.x10f_c00469{left:635.466667pt;}
.x73_c00469{left:636.533333pt;}
.x53_c00469{left:639.466667pt;}
.xba_c00469{left:641.066667pt;}
.xc3_c00469{left:643.200000pt;}
.xd6_c00469{left:646.000000pt;}
.xe2_c00469{left:647.200000pt;}
.xcb_c00469{left:649.600000pt;}
.x110_c00469{left:650.533333pt;}
.x9f_c00469{left:652.266667pt;}
.x3_c00469{left:657.200000pt;}
.xc4_c00469{left:661.066667pt;}
.x3d_c00469{left:662.266667pt;}
.x14_c00469{left:664.533333pt;}
.x32_c00469{left:666.400000pt;}
.x66_c00469{left:668.666667pt;}
.xa0_c00469{left:671.200000pt;}
}





/* 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_c00470 {
    display:none;
  }
  .loading-indicator_c00470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00470 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_c00470 { 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_c00470" -> "#page-container .classname_c00470")
 */
.pf_c00470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00470 { /* 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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00470 { /* 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_c00470 { /* 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_c00470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00470 {overflow:visible;}
  }
}
.c_c00470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00470 { /* 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_c00470:after { /* webkit #35443 */
  content: '';
}
.t_c00470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00470 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 */
}
.__c00470 { /* 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_c00470 { /* info for Javascript */
  display:none;
}
.l_c00470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00470: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_c00470 {
    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_c00470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00470.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_c00470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.000000;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;}
.m59_c00470{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m89_c00470{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00470{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00470{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00470{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m63_c00470{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m68_c00470{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m32_c00470{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m95_c00470{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m85_c00470{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m94_c00470{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.maa_c00470{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m91_c00470{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m45_c00470{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m88_c00470{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00470{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00470{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m15_c00470{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m64_c00470{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mab_c00470{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00470{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m57_c00470{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m65_c00470{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00470{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m90_c00470{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00470{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00470{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m61_c00470{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00470{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00470{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00470{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00470{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00470{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00470{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00470{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m28_c00470{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00470{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m33_c00470{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m25_c00470{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00470{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00470{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00470{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m97_c00470{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00470{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m38_c00470{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m71_c00470{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m40_c00470{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00470{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00470{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00470{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m93_c00470{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00470{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m75_c00470{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m20_c00470{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m86_c00470{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m18_c00470{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m39_c00470{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00470{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m73_c00470{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.ma_c00470{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m78_c00470{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00470{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00470{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m67_c00470{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m50_c00470{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00470{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m58_c00470{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m79_c00470{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00470{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m83_c00470{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00470{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00470{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m96_c00470{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00470{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m37_c00470{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00470{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00470{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00470{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m47_c00470{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m52_c00470{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00470{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00470{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00470{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00470{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m72_c00470{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m49_c00470{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00470{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00470{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00470{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m76_c00470{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m24_c00470{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00470{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m77_c00470{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m62_c00470{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m74_c00470{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00470{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m42_c00470{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m92_c00470{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m81_c00470{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00470{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m48_c00470{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00470{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00470{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00470{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00470{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00470{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m55_c00470{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19_c00470{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m17_c00470{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m51_c00470{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m23_c00470{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m21_c00470{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m70_c00470{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m60_c00470{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m66_c00470{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00470{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m69_c00470{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m26_c00470{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00470{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m44_c00470{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m16_c00470{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);}
.m56_c00470{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc_c00470{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m99_c00470{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00470{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m27_c00470{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m36_c00470{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m22_c00470{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m35_c00470{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m53_c00470{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00470{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00470{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00470{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m29_c00470{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00470{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00470{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00470{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00470{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m34_c00470{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30_c00470{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m54_c00470{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m98_c00470{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m87_c00470{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m43_c00470{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00470{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00470{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00470{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m84_c00470{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00470{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m41_c00470{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m46_c00470{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m31_c00470{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m80_c00470{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00470{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00470{vertical-align:0.000000px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{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__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00470{word-spacing:-8.055556px;}
.ws6_c00470{word-spacing:0.000000px;}
.ws1_c00470{word-spacing:0.277778px;}
.ws0_c00470{word-spacing:1.666667px;}
.ws4_c00470{word-spacing:8.529412px;}
.ws3_c00470{word-spacing:10.294118px;}
.ws2_c00470{word-spacing:19.090909px;}
.fc0_c00470{color:transparent;}
.fs0_c00470{font-size:60.000000px;}
.y0_c00470{bottom:0.000000px;}
.y2c_c00470{bottom:160.200000px;}
.y2b_c00470{bottom:175.350000px;}
.y2a_c00470{bottom:191.550000px;}
.y29_c00470{bottom:236.250000px;}
.y28_c00470{bottom:256.350000px;}
.y27_c00470{bottom:276.450000px;}
.y26_c00470{bottom:296.250000px;}
.y25_c00470{bottom:316.350000px;}
.y24_c00470{bottom:336.450000px;}
.y23_c00470{bottom:356.250000px;}
.y22_c00470{bottom:376.050000px;}
.y21_c00470{bottom:396.150000px;}
.y20_c00470{bottom:415.950000px;}
.y1f_c00470{bottom:436.050000px;}
.y1e_c00470{bottom:455.850000px;}
.y1d_c00470{bottom:475.650000px;}
.y1c_c00470{bottom:495.450000px;}
.y1b_c00470{bottom:515.250000px;}
.y1a_c00470{bottom:535.050000px;}
.y19_c00470{bottom:555.150000px;}
.y18_c00470{bottom:575.400000px;}
.y17_c00470{bottom:595.200000px;}
.y16_c00470{bottom:615.300000px;}
.y15_c00470{bottom:635.250000px;}
.y14_c00470{bottom:655.350000px;}
.y13_c00470{bottom:675.450000px;}
.y12_c00470{bottom:695.550000px;}
.y11_c00470{bottom:715.650000px;}
.y10_c00470{bottom:735.300000px;}
.yf_c00470{bottom:755.400000px;}
.ye_c00470{bottom:775.500000px;}
.yd_c00470{bottom:795.300000px;}
.yc_c00470{bottom:815.550000px;}
.yb_c00470{bottom:835.650000px;}
.ya_c00470{bottom:855.750000px;}
.y9_c00470{bottom:875.550000px;}
.y8_c00470{bottom:895.650000px;}
.y7_c00470{bottom:915.450000px;}
.y6_c00470{bottom:935.700000px;}
.y5_c00470{bottom:955.500000px;}
.y4_c00470{bottom:975.300000px;}
.y3_c00470{bottom:995.400000px;}
.y2_c00470{bottom:1015.500000px;}
.y1_c00470{bottom:1053.750000px;}
.h2_c00470{height:60.000000px;}
.h1_c00470{height:1166.250000px;}
.h0_c00470{height:1166.400056px;}
.w0_c00470{width:920.879975px;}
.w1_c00470{width:921.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:146.850000px;}
.x6b_c00470{left:148.650000px;}
.xc0_c00470{left:150.150000px;}
.xf2_c00470{left:151.350000px;}
.x123_c00470{left:152.400000px;}
.x132_c00470{left:153.450000px;}
.xf7_c00470{left:168.000000px;}
.xaf_c00470{left:169.950000px;}
.x134_c00470{left:171.300000px;}
.x4e_c00470{left:173.550000px;}
.x3_c00470{left:175.200000px;}
.xc7_c00470{left:177.750000px;}
.x43_c00470{left:178.950000px;}
.x11_c00470{left:180.900000px;}
.xd5_c00470{left:182.100000px;}
.xec_c00470{left:184.200000px;}
.x11d_c00470{left:186.450000px;}
.x113_c00470{left:193.050000px;}
.x4f_c00470{left:194.100000px;}
.x6c_c00470{left:195.450000px;}
.x9b_c00470{left:197.700000px;}
.xc8_c00470{left:199.350000px;}
.xb9_c00470{left:201.000000px;}
.xe4_c00470{left:202.350000px;}
.x5b_c00470{left:205.050000px;}
.xd6_c00470{left:207.000000px;}
.xed_c00470{left:210.450000px;}
.x7a_c00470{left:212.850000px;}
.x2a_c00470{left:214.650000px;}
.x6d_c00470{left:216.000000px;}
.x92_c00470{left:217.050000px;}
.xe5_c00470{left:220.050000px;}
.xa7_c00470{left:221.700000px;}
.x44_c00470{left:222.900000px;}
.x88_c00470{left:224.250000px;}
.x12_c00470{left:226.650000px;}
.x39_c00470{left:228.000000px;}
.xc9_c00470{left:230.250000px;}
.x1e_c00470{left:231.450000px;}
.xd7_c00470{left:235.500000px;}
.x107_c00470{left:237.450000px;}
.x93_c00470{left:240.150000px;}
.x4_c00470{left:244.650000px;}
.x83_c00470{left:247.350000px;}
.x3a_c00470{left:248.550000px;}
.x5c_c00470{left:250.350000px;}
.x13_c00470{left:251.850000px;}
.x2b_c00470{left:253.500000px;}
.xf3_c00470{left:254.700000px;}
.xe6_c00470{left:255.750000px;}
.x11e_c00470{left:257.700000px;}
.xa8_c00470{left:259.200000px;}
.x13a_c00470{left:263.250000px;}
.x9c_c00470{left:264.900000px;}
.x89_c00470{left:267.150000px;}
.xd8_c00470{left:268.950000px;}
.x84_c00470{left:270.750000px;}
.x1f_c00470{left:271.800000px;}
.x5_c00470{left:273.150000px;}
.xe7_c00470{left:276.600000px;}
.x5d_c00470{left:278.400000px;}
.x14_c00470{left:281.400000px;}
.x45_c00470{left:285.600000px;}
.xd1_c00470{left:286.950000px;}
.xd9_c00470{left:289.500000px;}
.xb0_c00470{left:290.550000px;}
.xa3_c00470{left:291.900000px;}
.x9d_c00470{left:296.250000px;}
.x94_c00470{left:298.800000px;}
.x7b_c00470{left:300.750000px;}
.x50_c00470{left:302.700000px;}
.x124_c00470{left:304.500000px;}
.x3b_c00470{left:306.450000px;}
.x2c_c00470{left:311.850000px;}
.x46_c00470{left:314.400000px;}
.xe8_c00470{left:316.200000px;}
.x6e_c00470{left:317.850000px;}
.x5e_c00470{left:319.500000px;}
.xa9_c00470{left:321.900000px;}
.xee_c00470{left:325.350000px;}
.x6_c00470{left:327.150000px;}
.x8a_c00470{left:328.650000px;}
.x15_c00470{left:329.700000px;}
.x95_c00470{left:331.500000px;}
.x114_c00470{left:333.750000px;}
.x11b_c00470{left:335.550000px;}
.x85_c00470{left:337.050000px;}
.xaa_c00470{left:338.400000px;}
.x51_c00470{left:339.450000px;}
.x20_c00470{left:340.950000px;}
.xf8_c00470{left:342.900000px;}
.xca_c00470{left:344.850000px;}
.x8b_c00470{left:345.900000px;}
.x9e_c00470{left:347.400000px;}
.x13b_c00470{left:349.200000px;}
.xe9_c00470{left:350.400000px;}
.x128_c00470{left:351.450000px;}
.x52_c00470{left:357.150000px;}
.x2d_c00470{left:359.400000px;}
.xff_c00470{left:361.350000px;}
.x10d_c00470{left:362.400000px;}
.x7_c00470{left:364.950000px;}
.x5f_c00470{left:368.100000px;}
.xf9_c00470{left:369.150000px;}
.x7c_c00470{left:372.000000px;}
.xcb_c00470{left:373.350000px;}
.xc1_c00470{left:375.450000px;}
.x6f_c00470{left:377.550000px;}
.x8_c00470{left:379.650000px;}
.x100_c00470{left:381.450000px;}
.x11f_c00470{left:383.100000px;}
.x47_c00470{left:384.600000px;}
.xb1_c00470{left:387.000000px;}
.x60_c00470{left:388.650000px;}
.x16_c00470{left:389.850000px;}
.xba_c00470{left:393.150000px;}
.x21_c00470{left:394.200000px;}
.x53_c00470{left:395.700000px;}
.x86_c00470{left:398.250000px;}
.x12e_c00470{left:400.350000px;}
.x8c_c00470{left:403.200000px;}
.xf4_c00470{left:404.850000px;}
.x2e_c00470{left:407.250000px;}
.x135_c00470{left:409.200000px;}
.x115_c00470{left:410.850000px;}
.x3c_c00470{left:411.900000px;}
.xb2_c00470{left:414.300000px;}
.x129_c00470{left:415.950000px;}
.x17_c00470{left:418.650000px;}
.x9_c00470{left:420.300000px;}
.xbb_c00470{left:424.050000px;}
.x101_c00470{left:425.700000px;}
.x61_c00470{left:427.500000px;}
.xda_c00470{left:429.450000px;}
.x116_c00470{left:430.650000px;}
.x87_c00470{left:432.150000px;}
.x2f_c00470{left:434.550000px;}
.x70_c00470{left:436.650000px;}
.x96_c00470{left:439.800000px;}
.x54_c00470{left:441.000000px;}
.x2_c00470{left:444.150000px;}
.x48_c00470{left:446.850000px;}
.x22_c00470{left:450.000000px;}
.x7d_c00470{left:451.200000px;}
.xc2_c00470{left:453.600000px;}
.xf5_c00470{left:456.300000px;}
.x55_c00470{left:459.000000px;}
.x125_c00470{left:460.050000px;}
.xd2_c00470{left:461.100000px;}
.x12f_c00470{left:462.900000px;}
.x3d_c00470{left:465.150000px;}
.x71_c00470{left:468.000000px;}
.xab_c00470{left:469.350000px;}
.x62_c00470{left:471.450000px;}
.x18_c00470{left:473.700000px;}
.x30_c00470{left:475.200000px;}
.x133_c00470{left:477.450000px;}
.x108_c00470{left:478.500000px;}
.x23_c00470{left:480.600000px;}
.xb3_c00470{left:482.400000px;}
.x117_c00470{left:483.900000px;}
.x12a_c00470{left:485.100000px;}
.xcc_c00470{left:487.800000px;}
.x72_c00470{left:488.850000px;}
.x102_c00470{left:490.500000px;}
.x49_c00470{left:492.900000px;}
.xa_c00470{left:494.400000px;}
.xfa_c00470{left:495.900000px;}
.x31_c00470{left:497.850000px;}
.x11c_c00470{left:499.350000px;}
.x8d_c00470{left:501.000000px;}
.xac_c00470{left:503.250000px;}
.x63_c00470{left:505.650000px;}
.x97_c00470{left:508.200000px;}
.xd3_c00470{left:509.250000px;}
.x3e_c00470{left:510.900000px;}
.x120_c00470{left:513.450000px;}
.xef_c00470{left:515.550000px;}
.xdf_c00470{left:517.650000px;}
.x10e_c00470{left:519.150000px;}
.x73_c00470{left:520.200000px;}
.x130_c00470{left:521.250000px;}
.x13c_c00470{left:524.100000px;}
.x64_c00470{left:525.450000px;}
.x32_c00470{left:526.650000px;}
.x8e_c00470{left:528.750000px;}
.x24_c00470{left:529.950000px;}
.x56_c00470{left:531.000000px;}
.xf6_c00470{left:532.200000px;}
.xbc_c00470{left:535.500000px;}
.x3f_c00470{left:538.950000px;}
.x19_c00470{left:543.600000px;}
.x10f_c00470{left:545.400000px;}
.xc3_c00470{left:546.900000px;}
.xb_c00470{left:548.100000px;}
.x65_c00470{left:550.350000px;}
.x136_c00470{left:551.400000px;}
.x25_c00470{left:553.350000px;}
.x4a_c00470{left:556.200000px;}
.x109_c00470{left:557.700000px;}
.x57_c00470{left:559.500000px;}
.x126_c00470{left:561.900000px;}
.x74_c00470{left:563.700000px;}
.x33_c00470{left:565.950000px;}
.x131_c00470{left:567.750000px;}
.x98_c00470{left:569.100000px;}
.x40_c00470{left:572.400000px;}
.x8f_c00470{left:574.050000px;}
.xf0_c00470{left:576.450000px;}
.xc_c00470{left:582.000000px;}
.xd4_c00470{left:584.100000px;}
.x34_c00470{left:585.450000px;}
.xb4_c00470{left:586.800000px;}
.x118_c00470{left:588.000000px;}
.x41_c00470{left:590.400000px;}
.xe0_c00470{left:592.200000px;}
.x7e_c00470{left:593.550000px;}
.xfb_c00470{left:594.600000px;}
.x103_c00470{left:599.550000px;}
.x66_c00470{left:601.500000px;}
.x119_c00470{left:602.700000px;}
.x1a_c00470{left:603.750000px;}
.x12b_c00470{left:604.950000px;}
.x110_c00470{left:606.000000px;}
.xa4_c00470{left:609.000000px;}
.x58_c00470{left:611.400000px;}
.xb5_c00470{left:614.850000px;}
.x26_c00470{left:616.350000px;}
.xd_c00470{left:618.750000px;}
.x9f_c00470{left:621.300000px;}
.x12c_c00470{left:623.700000px;}
.x42_c00470{left:626.700000px;}
.x1b_c00470{left:628.950000px;}
.x75_c00470{left:630.000000px;}
.x111_c00470{left:633.300000px;}
.x104_c00470{left:634.500000px;}
.x4b_c00470{left:636.150000px;}
.xfc_c00470{left:637.500000px;}
.xdb_c00470{left:639.750000px;}
.x138_c00470{left:642.450000px;}
.x35_c00470{left:646.650000px;}
.x27_c00470{left:647.700000px;}
.xbd_c00470{left:651.450000px;}
.x10a_c00470{left:653.550000px;}
.xcd_c00470{left:655.950000px;}
.x90_c00470{left:657.900000px;}
.x121_c00470{left:660.000000px;}
.xc4_c00470{left:662.100000px;}
.xe1_c00470{left:664.200000px;}
.xe_c00470{left:665.550000px;}
.x59_c00470{left:669.000000px;}
.xce_c00470{left:671.100000px;}
.xad_c00470{left:672.900000px;}
.x67_c00470{left:674.700000px;}
.x11a_c00470{left:676.200000px;}
.xa0_c00470{left:680.700000px;}
.x76_c00470{left:682.950000px;}
.x7f_c00470{left:686.100000px;}
.x28_c00470{left:687.600000px;}
.x4c_c00470{left:689.400000px;}
.x105_c00470{left:690.600000px;}
.x12d_c00470{left:691.800000px;}
.x36_c00470{left:693.750000px;}
.xdc_c00470{left:696.600000px;}
.xe2_c00470{left:698.100000px;}
.xfd_c00470{left:699.450000px;}
.xc5_c00470{left:700.650000px;}
.x80_c00470{left:703.350000px;}
.xcf_c00470{left:705.750000px;}
.x68_c00470{left:708.600000px;}
.xa5_c00470{left:710.700000px;}
.x1c_c00470{left:712.050000px;}
.x81_c00470{left:715.650000px;}
.x77_c00470{left:718.650000px;}
.xf_c00470{left:719.850000px;}
.x10b_c00470{left:721.950000px;}
.x99_c00470{left:724.350000px;}
.x37_c00470{left:725.400000px;}
.xd0_c00470{left:727.350000px;}
.xea_c00470{left:729.600000px;}
.xb6_c00470{left:732.000000px;}
.x69_c00470{left:735.900000px;}
.xae_c00470{left:737.700000px;}
.x10c_c00470{left:738.900000px;}
.xfe_c00470{left:742.650000px;}
.xa1_c00470{left:744.750000px;}
.x10_c00470{left:746.550000px;}
.x112_c00470{left:747.750000px;}
.x4d_c00470{left:749.550000px;}
.xdd_c00470{left:752.700000px;}
.xa6_c00470{left:753.900000px;}
.x29_c00470{left:757.200000px;}
.x78_c00470{left:760.350000px;}
.x82_c00470{left:763.950000px;}
.x127_c00470{left:765.000000px;}
.x91_c00470{left:766.650000px;}
.x139_c00470{left:768.450000px;}
.xbe_c00470{left:769.800000px;}
.x5a_c00470{left:772.650000px;}
.xb7_c00470{left:773.700000px;}
.x106_c00470{left:775.500000px;}
.x6a_c00470{left:777.600000px;}
.x137_c00470{left:779.550000px;}
.x79_c00470{left:781.650000px;}
.x38_c00470{left:784.050000px;}
.xde_c00470{left:785.400000px;}
.xa2_c00470{left:791.850000px;}
.xb8_c00470{left:794.250000px;}
.xe3_c00470{left:795.600000px;}
.xeb_c00470{left:797.550000px;}
.x9a_c00470{left:799.200000px;}
.x1d_c00470{left:800.250000px;}
.xbf_c00470{left:802.500000px;}
.xc6_c00470{left:803.550000px;}
.xf1_c00470{left:804.750000px;}
.x122_c00470{left:808.350000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws5_c00470{word-spacing:-7.160494pt;}
.ws6_c00470{word-spacing:0.000000pt;}
.ws1_c00470{word-spacing:0.246914pt;}
.ws0_c00470{word-spacing:1.481481pt;}
.ws4_c00470{word-spacing:7.581699pt;}
.ws3_c00470{word-spacing:9.150327pt;}
.ws2_c00470{word-spacing:16.969697pt;}
.fs0_c00470{font-size:53.333333pt;}
.y0_c00470{bottom:0.000000pt;}
.y2c_c00470{bottom:142.400000pt;}
.y2b_c00470{bottom:155.866667pt;}
.y2a_c00470{bottom:170.266667pt;}
.y29_c00470{bottom:210.000000pt;}
.y28_c00470{bottom:227.866667pt;}
.y27_c00470{bottom:245.733333pt;}
.y26_c00470{bottom:263.333333pt;}
.y25_c00470{bottom:281.200000pt;}
.y24_c00470{bottom:299.066667pt;}
.y23_c00470{bottom:316.666667pt;}
.y22_c00470{bottom:334.266667pt;}
.y21_c00470{bottom:352.133333pt;}
.y20_c00470{bottom:369.733333pt;}
.y1f_c00470{bottom:387.600000pt;}
.y1e_c00470{bottom:405.200000pt;}
.y1d_c00470{bottom:422.800000pt;}
.y1c_c00470{bottom:440.400000pt;}
.y1b_c00470{bottom:458.000000pt;}
.y1a_c00470{bottom:475.600000pt;}
.y19_c00470{bottom:493.466667pt;}
.y18_c00470{bottom:511.466667pt;}
.y17_c00470{bottom:529.066667pt;}
.y16_c00470{bottom:546.933333pt;}
.y15_c00470{bottom:564.666667pt;}
.y14_c00470{bottom:582.533333pt;}
.y13_c00470{bottom:600.400000pt;}
.y12_c00470{bottom:618.266667pt;}
.y11_c00470{bottom:636.133333pt;}
.y10_c00470{bottom:653.600000pt;}
.yf_c00470{bottom:671.466667pt;}
.ye_c00470{bottom:689.333333pt;}
.yd_c00470{bottom:706.933333pt;}
.yc_c00470{bottom:724.933333pt;}
.yb_c00470{bottom:742.800000pt;}
.ya_c00470{bottom:760.666667pt;}
.y9_c00470{bottom:778.266667pt;}
.y8_c00470{bottom:796.133333pt;}
.y7_c00470{bottom:813.733333pt;}
.y6_c00470{bottom:831.733333pt;}
.y5_c00470{bottom:849.333333pt;}
.y4_c00470{bottom:866.933333pt;}
.y3_c00470{bottom:884.800000pt;}
.y2_c00470{bottom:902.666667pt;}
.y1_c00470{bottom:936.666667pt;}
.h2_c00470{height:53.333333pt;}
.h1_c00470{height:1036.666667pt;}
.h0_c00470{height:1036.800049pt;}
.w0_c00470{width:818.559977pt;}
.w1_c00470{width:818.666667pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:130.533333pt;}
.x6b_c00470{left:132.133333pt;}
.xc0_c00470{left:133.466667pt;}
.xf2_c00470{left:134.533333pt;}
.x123_c00470{left:135.466667pt;}
.x132_c00470{left:136.400000pt;}
.xf7_c00470{left:149.333333pt;}
.xaf_c00470{left:151.066667pt;}
.x134_c00470{left:152.266667pt;}
.x4e_c00470{left:154.266667pt;}
.x3_c00470{left:155.733333pt;}
.xc7_c00470{left:158.000000pt;}
.x43_c00470{left:159.066667pt;}
.x11_c00470{left:160.800000pt;}
.xd5_c00470{left:161.866667pt;}
.xec_c00470{left:163.733333pt;}
.x11d_c00470{left:165.733333pt;}
.x113_c00470{left:171.600000pt;}
.x4f_c00470{left:172.533333pt;}
.x6c_c00470{left:173.733333pt;}
.x9b_c00470{left:175.733333pt;}
.xc8_c00470{left:177.200000pt;}
.xb9_c00470{left:178.666667pt;}
.xe4_c00470{left:179.866667pt;}
.x5b_c00470{left:182.266667pt;}
.xd6_c00470{left:184.000000pt;}
.xed_c00470{left:187.066667pt;}
.x7a_c00470{left:189.200000pt;}
.x2a_c00470{left:190.800000pt;}
.x6d_c00470{left:192.000000pt;}
.x92_c00470{left:192.933333pt;}
.xe5_c00470{left:195.600000pt;}
.xa7_c00470{left:197.066667pt;}
.x44_c00470{left:198.133333pt;}
.x88_c00470{left:199.333333pt;}
.x12_c00470{left:201.466667pt;}
.x39_c00470{left:202.666667pt;}
.xc9_c00470{left:204.666667pt;}
.x1e_c00470{left:205.733333pt;}
.xd7_c00470{left:209.333333pt;}
.x107_c00470{left:211.066667pt;}
.x93_c00470{left:213.466667pt;}
.x4_c00470{left:217.466667pt;}
.x83_c00470{left:219.866667pt;}
.x3a_c00470{left:220.933333pt;}
.x5c_c00470{left:222.533333pt;}
.x13_c00470{left:223.866667pt;}
.x2b_c00470{left:225.333333pt;}
.xf3_c00470{left:226.400000pt;}
.xe6_c00470{left:227.333333pt;}
.x11e_c00470{left:229.066667pt;}
.xa8_c00470{left:230.400000pt;}
.x13a_c00470{left:234.000000pt;}
.x9c_c00470{left:235.466667pt;}
.x89_c00470{left:237.466667pt;}
.xd8_c00470{left:239.066667pt;}
.x84_c00470{left:240.666667pt;}
.x1f_c00470{left:241.600000pt;}
.x5_c00470{left:242.800000pt;}
.xe7_c00470{left:245.866667pt;}
.x5d_c00470{left:247.466667pt;}
.x14_c00470{left:250.133333pt;}
.x45_c00470{left:253.866667pt;}
.xd1_c00470{left:255.066667pt;}
.xd9_c00470{left:257.333333pt;}
.xb0_c00470{left:258.266667pt;}
.xa3_c00470{left:259.466667pt;}
.x9d_c00470{left:263.333333pt;}
.x94_c00470{left:265.600000pt;}
.x7b_c00470{left:267.333333pt;}
.x50_c00470{left:269.066667pt;}
.x124_c00470{left:270.666667pt;}
.x3b_c00470{left:272.400000pt;}
.x2c_c00470{left:277.200000pt;}
.x46_c00470{left:279.466667pt;}
.xe8_c00470{left:281.066667pt;}
.x6e_c00470{left:282.533333pt;}
.x5e_c00470{left:284.000000pt;}
.xa9_c00470{left:286.133333pt;}
.xee_c00470{left:289.200000pt;}
.x6_c00470{left:290.800000pt;}
.x8a_c00470{left:292.133333pt;}
.x15_c00470{left:293.066667pt;}
.x95_c00470{left:294.666667pt;}
.x114_c00470{left:296.666667pt;}
.x11b_c00470{left:298.266667pt;}
.x85_c00470{left:299.600000pt;}
.xaa_c00470{left:300.800000pt;}
.x51_c00470{left:301.733333pt;}
.x20_c00470{left:303.066667pt;}
.xf8_c00470{left:304.800000pt;}
.xca_c00470{left:306.533333pt;}
.x8b_c00470{left:307.466667pt;}
.x9e_c00470{left:308.800000pt;}
.x13b_c00470{left:310.400000pt;}
.xe9_c00470{left:311.466667pt;}
.x128_c00470{left:312.400000pt;}
.x52_c00470{left:317.466667pt;}
.x2d_c00470{left:319.466667pt;}
.xff_c00470{left:321.200000pt;}
.x10d_c00470{left:322.133333pt;}
.x7_c00470{left:324.400000pt;}
.x5f_c00470{left:327.200000pt;}
.xf9_c00470{left:328.133333pt;}
.x7c_c00470{left:330.666667pt;}
.xcb_c00470{left:331.866667pt;}
.xc1_c00470{left:333.733333pt;}
.x6f_c00470{left:335.600000pt;}
.x8_c00470{left:337.466667pt;}
.x100_c00470{left:339.066667pt;}
.x11f_c00470{left:340.533333pt;}
.x47_c00470{left:341.866667pt;}
.xb1_c00470{left:344.000000pt;}
.x60_c00470{left:345.466667pt;}
.x16_c00470{left:346.533333pt;}
.xba_c00470{left:349.466667pt;}
.x21_c00470{left:350.400000pt;}
.x53_c00470{left:351.733333pt;}
.x86_c00470{left:354.000000pt;}
.x12e_c00470{left:355.866667pt;}
.x8c_c00470{left:358.400000pt;}
.xf4_c00470{left:359.866667pt;}
.x2e_c00470{left:362.000000pt;}
.x135_c00470{left:363.733333pt;}
.x115_c00470{left:365.200000pt;}
.x3c_c00470{left:366.133333pt;}
.xb2_c00470{left:368.266667pt;}
.x129_c00470{left:369.733333pt;}
.x17_c00470{left:372.133333pt;}
.x9_c00470{left:373.600000pt;}
.xbb_c00470{left:376.933333pt;}
.x101_c00470{left:378.400000pt;}
.x61_c00470{left:380.000000pt;}
.xda_c00470{left:381.733333pt;}
.x116_c00470{left:382.800000pt;}
.x87_c00470{left:384.133333pt;}
.x2f_c00470{left:386.266667pt;}
.x70_c00470{left:388.133333pt;}
.x96_c00470{left:390.933333pt;}
.x54_c00470{left:392.000000pt;}
.x2_c00470{left:394.800000pt;}
.x48_c00470{left:397.200000pt;}
.x22_c00470{left:400.000000pt;}
.x7d_c00470{left:401.066667pt;}
.xc2_c00470{left:403.200000pt;}
.xf5_c00470{left:405.600000pt;}
.x55_c00470{left:408.000000pt;}
.x125_c00470{left:408.933333pt;}
.xd2_c00470{left:409.866667pt;}
.x12f_c00470{left:411.466667pt;}
.x3d_c00470{left:413.466667pt;}
.x71_c00470{left:416.000000pt;}
.xab_c00470{left:417.200000pt;}
.x62_c00470{left:419.066667pt;}
.x18_c00470{left:421.066667pt;}
.x30_c00470{left:422.400000pt;}
.x133_c00470{left:424.400000pt;}
.x108_c00470{left:425.333333pt;}
.x23_c00470{left:427.200000pt;}
.xb3_c00470{left:428.800000pt;}
.x117_c00470{left:430.133333pt;}
.x12a_c00470{left:431.200000pt;}
.xcc_c00470{left:433.600000pt;}
.x72_c00470{left:434.533333pt;}
.x102_c00470{left:436.000000pt;}
.x49_c00470{left:438.133333pt;}
.xa_c00470{left:439.466667pt;}
.xfa_c00470{left:440.800000pt;}
.x31_c00470{left:442.533333pt;}
.x11c_c00470{left:443.866667pt;}
.x8d_c00470{left:445.333333pt;}
.xac_c00470{left:447.333333pt;}
.x63_c00470{left:449.466667pt;}
.x97_c00470{left:451.733333pt;}
.xd3_c00470{left:452.666667pt;}
.x3e_c00470{left:454.133333pt;}
.x120_c00470{left:456.400000pt;}
.xef_c00470{left:458.266667pt;}
.xdf_c00470{left:460.133333pt;}
.x10e_c00470{left:461.466667pt;}
.x73_c00470{left:462.400000pt;}
.x130_c00470{left:463.333333pt;}
.x13c_c00470{left:465.866667pt;}
.x64_c00470{left:467.066667pt;}
.x32_c00470{left:468.133333pt;}
.x8e_c00470{left:470.000000pt;}
.x24_c00470{left:471.066667pt;}
.x56_c00470{left:472.000000pt;}
.xf6_c00470{left:473.066667pt;}
.xbc_c00470{left:476.000000pt;}
.x3f_c00470{left:479.066667pt;}
.x19_c00470{left:483.200000pt;}
.x10f_c00470{left:484.800000pt;}
.xc3_c00470{left:486.133333pt;}
.xb_c00470{left:487.200000pt;}
.x65_c00470{left:489.200000pt;}
.x136_c00470{left:490.133333pt;}
.x25_c00470{left:491.866667pt;}
.x4a_c00470{left:494.400000pt;}
.x109_c00470{left:495.733333pt;}
.x57_c00470{left:497.333333pt;}
.x126_c00470{left:499.466667pt;}
.x74_c00470{left:501.066667pt;}
.x33_c00470{left:503.066667pt;}
.x131_c00470{left:504.666667pt;}
.x98_c00470{left:505.866667pt;}
.x40_c00470{left:508.800000pt;}
.x8f_c00470{left:510.266667pt;}
.xf0_c00470{left:512.400000pt;}
.xc_c00470{left:517.333333pt;}
.xd4_c00470{left:519.200000pt;}
.x34_c00470{left:520.400000pt;}
.xb4_c00470{left:521.600000pt;}
.x118_c00470{left:522.666667pt;}
.x41_c00470{left:524.800000pt;}
.xe0_c00470{left:526.400000pt;}
.x7e_c00470{left:527.600000pt;}
.xfb_c00470{left:528.533333pt;}
.x103_c00470{left:532.933333pt;}
.x66_c00470{left:534.666667pt;}
.x119_c00470{left:535.733333pt;}
.x1a_c00470{left:536.666667pt;}
.x12b_c00470{left:537.733333pt;}
.x110_c00470{left:538.666667pt;}
.xa4_c00470{left:541.333333pt;}
.x58_c00470{left:543.466667pt;}
.xb5_c00470{left:546.533333pt;}
.x26_c00470{left:547.866667pt;}
.xd_c00470{left:550.000000pt;}
.x9f_c00470{left:552.266667pt;}
.x12c_c00470{left:554.400000pt;}
.x42_c00470{left:557.066667pt;}
.x1b_c00470{left:559.066667pt;}
.x75_c00470{left:560.000000pt;}
.x111_c00470{left:562.933333pt;}
.x104_c00470{left:564.000000pt;}
.x4b_c00470{left:565.466667pt;}
.xfc_c00470{left:566.666667pt;}
.xdb_c00470{left:568.666667pt;}
.x138_c00470{left:571.066667pt;}
.x35_c00470{left:574.800000pt;}
.x27_c00470{left:575.733333pt;}
.xbd_c00470{left:579.066667pt;}
.x10a_c00470{left:580.933333pt;}
.xcd_c00470{left:583.066667pt;}
.x90_c00470{left:584.800000pt;}
.x121_c00470{left:586.666667pt;}
.xc4_c00470{left:588.533333pt;}
.xe1_c00470{left:590.400000pt;}
.xe_c00470{left:591.600000pt;}
.x59_c00470{left:594.666667pt;}
.xce_c00470{left:596.533333pt;}
.xad_c00470{left:598.133333pt;}
.x67_c00470{left:599.733333pt;}
.x11a_c00470{left:601.066667pt;}
.xa0_c00470{left:605.066667pt;}
.x76_c00470{left:607.066667pt;}
.x7f_c00470{left:609.866667pt;}
.x28_c00470{left:611.200000pt;}
.x4c_c00470{left:612.800000pt;}
.x105_c00470{left:613.866667pt;}
.x12d_c00470{left:614.933333pt;}
.x36_c00470{left:616.666667pt;}
.xdc_c00470{left:619.200000pt;}
.xe2_c00470{left:620.533333pt;}
.xfd_c00470{left:621.733333pt;}
.xc5_c00470{left:622.800000pt;}
.x80_c00470{left:625.200000pt;}
.xcf_c00470{left:627.333333pt;}
.x68_c00470{left:629.866667pt;}
.xa5_c00470{left:631.733333pt;}
.x1c_c00470{left:632.933333pt;}
.x81_c00470{left:636.133333pt;}
.x77_c00470{left:638.800000pt;}
.xf_c00470{left:639.866667pt;}
.x10b_c00470{left:641.733333pt;}
.x99_c00470{left:643.866667pt;}
.x37_c00470{left:644.800000pt;}
.xd0_c00470{left:646.533333pt;}
.xea_c00470{left:648.533333pt;}
.xb6_c00470{left:650.666667pt;}
.x69_c00470{left:654.133333pt;}
.xae_c00470{left:655.733333pt;}
.x10c_c00470{left:656.800000pt;}
.xfe_c00470{left:660.133333pt;}
.xa1_c00470{left:662.000000pt;}
.x10_c00470{left:663.600000pt;}
.x112_c00470{left:664.666667pt;}
.x4d_c00470{left:666.266667pt;}
.xdd_c00470{left:669.066667pt;}
.xa6_c00470{left:670.133333pt;}
.x29_c00470{left:673.066667pt;}
.x78_c00470{left:675.866667pt;}
.x82_c00470{left:679.066667pt;}
.x127_c00470{left:680.000000pt;}
.x91_c00470{left:681.466667pt;}
.x139_c00470{left:683.066667pt;}
.xbe_c00470{left:684.266667pt;}
.x5a_c00470{left:686.800000pt;}
.xb7_c00470{left:687.733333pt;}
.x106_c00470{left:689.333333pt;}
.x6a_c00470{left:691.200000pt;}
.x137_c00470{left:692.933333pt;}
.x79_c00470{left:694.800000pt;}
.x38_c00470{left:696.933333pt;}
.xde_c00470{left:698.133333pt;}
.xa2_c00470{left:703.866667pt;}
.xb8_c00470{left:706.000000pt;}
.xe3_c00470{left:707.200000pt;}
.xeb_c00470{left:708.933333pt;}
.x9a_c00470{left:710.400000pt;}
.x1d_c00470{left:711.333333pt;}
.xbf_c00470{left:713.333333pt;}
.xc6_c00470{left:714.266667pt;}
.xf1_c00470{left:715.333333pt;}
.x122_c00470{left:718.533333pt;}
}





/* 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_c00471 {
    display:none;
  }
  .loading-indicator_c00471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00471 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_c00471 { 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_c00471" -> "#page-container .classname_c00471")
 */
.pf_c00471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00471 { /* 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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00471 { /* 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_c00471 { /* 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_c00471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00471 {overflow:visible;}
  }
}
.c_c00471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00471 { /* 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_c00471:after { /* webkit #35443 */
  content: '';
}
.t_c00471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00471 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 */
}
.__c00471 { /* 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_c00471 { /* info for Javascript */
  display:none;
}
.l_c00471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00471: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_c00471 {
    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_c00471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00471.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_c00471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00471;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.000000;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;}
.m80_c00471{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00471{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m25_c00471{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00471{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00471{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m78_c00471{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb_c00471{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m91_c00471{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m18_c00471{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00471{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00471{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m64_c00471{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m82_c00471{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m87_c00471{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m75_c00471{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m60_c00471{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m93_c00471{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00471{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00471{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m16_c00471{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00471{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m21_c00471{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m63_c00471{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m76_c00471{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.m28_c00471{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00471{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00471{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m29_c00471{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00471{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m50_c00471{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m65_c00471{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m24_c00471{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00471{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00471{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m54_c00471{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00471{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m86_c00471{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m71_c00471{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00471{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00471{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m10_c00471{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md_c00471{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m49_c00471{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m22_c00471{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00471{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m4_c00471{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m9_c00471{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00471{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m12_c00471{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00471{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m98_c00471{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m68_c00471{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00471{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf_c00471{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m13_c00471{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m61_c00471{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00471{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m31_c00471{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00471{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m46_c00471{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00471{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00471{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00471{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m95_c00471{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m59_c00471{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6_c00471{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00471{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m20_c00471{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m8_c00471{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m39_c00471{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c00471{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m34_c00471{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00471{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m3_c00471{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m26_c00471{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m33_c00471{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00471{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m52_c00471{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00471{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00471{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m15_c00471{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00471{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m23_c00471{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m36_c00471{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00471{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00471{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m44_c00471{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m84_c00471{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m19_c00471{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m53_c00471{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00471{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m30_c00471{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00471{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m41_c00471{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m7_c00471{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00471{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m85_c00471{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m69_c00471{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m73_c00471{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m57_c00471{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m88_c00471{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m35_c00471{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00471{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m74_c00471{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00471{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m79_c00471{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.me_c00471{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m70_c00471{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m89_c00471{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m96_c00471{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11_c00471{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00471{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m56_c00471{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m32_c00471{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00471{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m58_c00471{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00471{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m66_c00471{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00471{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00471{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m45_c00471{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m40_c00471{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00471{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m55_c00471{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);}
.m3c_c00471{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m37_c00471{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma_c00471{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00471{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00471{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m48_c00471{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m97_c00471{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00471{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m67_c00471{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00471{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m27_c00471{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m43_c00471{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m17_c00471{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.mc_c00471{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00471{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m47_c00471{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m38_c00471{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m83_c00471{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m81_c00471{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m94_c00471{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m72_c00471{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00471{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m62_c00471{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m77_c00471{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1_c00471{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00471{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00471{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00471{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m42_c00471{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m92_c00471{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m14_c00471{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00471{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m2_c00471{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m51_c00471{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00471{transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348250,0.000000,0.000000,0.250000,0,0);}
.m90_c00471{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.v0_c00471{vertical-align:0.000000px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{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__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00471{word-spacing:-12.297297px;}
.ws2_c00471{word-spacing:-5.277778px;}
.ws1_c00471{word-spacing:-0.638298px;}
.wsa_c00471{word-spacing:0.000000px;}
.ws7_c00471{word-spacing:3.632812px;}
.ws0_c00471{word-spacing:3.658537px;}
.ws8_c00471{word-spacing:5.370370px;}
.ws4_c00471{word-spacing:17.500000px;}
.ws6_c00471{word-spacing:17.575758px;}
.ws3_c00471{word-spacing:17.631579px;}
.ws5_c00471{word-spacing:25.357143px;}
.fc0_c00471{color:transparent;}
.fs0_c00471{font-size:54.000000px;}
.fs1_c00471{font-size:60.000000px;}
.y0_c00471{bottom:0.000000px;}
.y2d_c00471{bottom:147.000000px;}
.y2c_c00471{bottom:167.100000px;}
.y2b_c00471{bottom:186.900000px;}
.y2a_c00471{bottom:206.700000px;}
.y29_c00471{bottom:226.800000px;}
.y28_c00471{bottom:246.600000px;}
.y27_c00471{bottom:266.400000px;}
.y26_c00471{bottom:286.500000px;}
.y25_c00471{bottom:306.300000px;}
.y24_c00471{bottom:326.850000px;}
.y23_c00471{bottom:346.800000px;}
.y22_c00471{bottom:366.900000px;}
.y21_c00471{bottom:386.700000px;}
.y20_c00471{bottom:406.500000px;}
.y1f_c00471{bottom:426.750000px;}
.y1e_c00471{bottom:446.850000px;}
.y1d_c00471{bottom:466.650000px;}
.y1c_c00471{bottom:486.750000px;}
.y1b_c00471{bottom:506.550000px;}
.y1a_c00471{bottom:526.650000px;}
.y19_c00471{bottom:546.450000px;}
.y18_c00471{bottom:566.700000px;}
.y17_c00471{bottom:586.500000px;}
.y16_c00471{bottom:606.300000px;}
.y15_c00471{bottom:626.400000px;}
.y14_c00471{bottom:646.200000px;}
.y13_c00471{bottom:666.300000px;}
.y12_c00471{bottom:686.100000px;}
.y11_c00471{bottom:706.350000px;}
.y10_c00471{bottom:726.150000px;}
.yf_c00471{bottom:746.250000px;}
.ye_c00471{bottom:766.200000px;}
.yd_c00471{bottom:786.300000px;}
.yc_c00471{bottom:806.100000px;}
.yb_c00471{bottom:826.200000px;}
.ya_c00471{bottom:846.000000px;}
.y9_c00471{bottom:866.100000px;}
.y8_c00471{bottom:886.500000px;}
.y7_c00471{bottom:906.600000px;}
.y6_c00471{bottom:926.700000px;}
.y5_c00471{bottom:946.500000px;}
.y4_c00471{bottom:966.300000px;}
.y3_c00471{bottom:986.400000px;}
.y2_c00471{bottom:1006.500000px;}
.y1_c00471{bottom:1044.000000px;}
.h2_c00471{height:54.000000px;}
.h3_c00471{height:60.000000px;}
.h1_c00471{height:1166.250000px;}
.h0_c00471{height:1166.400056px;}
.w0_c00471{width:920.879975px;}
.w1_c00471{width:921.000000px;}
.x0_c00471{left:0.000000px;}
.x3d_c00471{left:107.100000px;}
.x4_c00471{left:108.300000px;}
.xe3_c00471{left:109.350000px;}
.x103_c00471{left:110.550000px;}
.x86_c00471{left:126.600000px;}
.x104_c00471{left:128.850000px;}
.x3e_c00471{left:134.100000px;}
.x5d_c00471{left:136.050000px;}
.x5_c00471{left:138.900000px;}
.xb9_c00471{left:140.100000px;}
.xfc_c00471{left:141.150000px;}
.x95_c00471{left:142.650000px;}
.x118_c00471{left:145.200000px;}
.x99_c00471{left:148.350000px;}
.x8c_c00471{left:151.500000px;}
.xf1_c00471{left:152.700000px;}
.xaf_c00471{left:155.850000px;}
.x4b_c00471{left:158.550000px;}
.xd6_c00471{left:159.900000px;}
.xfd_c00471{left:160.950000px;}
.xe4_c00471{left:163.050000px;}
.x7c_c00471{left:164.850000px;}
.xf7_c00471{left:166.950000px;}
.x1e_c00471{left:168.000000px;}
.xa7_c00471{left:169.650000px;}
.x2e_c00471{left:172.500000px;}
.xb6_c00471{left:174.000000px;}
.x9f_c00471{left:176.100000px;}
.x4c_c00471{left:178.050000px;}
.x6e_c00471{left:180.450000px;}
.x9a_c00471{left:182.550000px;}
.x5e_c00471{left:183.600000px;}
.xb0_c00471{left:186.450000px;}
.xa8_c00471{left:188.700000px;}
.x109_c00471{left:191.250000px;}
.x1f_c00471{left:192.900000px;}
.xc3_c00471{left:200.400000px;}
.xf2_c00471{left:203.100000px;}
.x6_c00471{left:204.750000px;}
.xb1_c00471{left:208.800000px;}
.x3f_c00471{left:210.450000px;}
.x87_c00471{left:211.950000px;}
.x5f_c00471{left:216.750000px;}
.x9b_c00471{left:217.800000px;}
.xf8_c00471{left:218.850000px;}
.x20_c00471{left:220.950000px;}
.x13_c00471{left:222.900000px;}
.x2f_c00471{left:223.950000px;}
.x7d_c00471{left:225.000000px;}
.x7_c00471{left:227.850000px;}
.x4d_c00471{left:229.950000px;}
.xfe_c00471{left:231.600000px;}
.x115_c00471{left:232.650000px;}
.x9c_c00471{left:234.750000px;}
.xdd_c00471{left:236.550000px;}
.x76_c00471{left:238.050000px;}
.x8d_c00471{left:240.750000px;}
.x21_c00471{left:241.800000px;}
.x10e_c00471{left:243.750000px;}
.xa0_c00471{left:245.550000px;}
.x14_c00471{left:246.600000px;}
.x96_c00471{left:247.800000px;}
.x4e_c00471{left:249.750000px;}
.x68_c00471{left:252.750000px;}
.x6f_c00471{left:254.850000px;}
.xce_c00471{left:256.800000px;}
.x8_c00471{left:258.150000px;}
.x9d_c00471{left:260.700000px;}
.x60_c00471{left:262.050000px;}
.x40_c00471{left:264.750000px;}
.xd7_c00471{left:267.600000px;}
.x22_c00471{left:269.850000px;}
.x97_c00471{left:273.300000px;}
.xc8_c00471{left:274.350000px;}
.x15_c00471{left:277.500000px;}
.xcf_c00471{left:279.450000px;}
.x7e_c00471{left:281.850000px;}
.xa9_c00471{left:283.650000px;}
.x61_c00471{left:284.700000px;}
.xf3_c00471{left:286.350000px;}
.x10f_c00471{left:287.700000px;}
.x30_c00471{left:289.500000px;}
.xd0_c00471{left:292.050000px;}
.x88_c00471{left:294.000000px;}
.x7f_c00471{left:296.250000px;}
.xa1_c00471{left:299.250000px;}
.x41_c00471{left:301.500000px;}
.x70_c00471{left:302.700000px;}
.xd8_c00471{left:305.400000px;}
.x119_c00471{left:308.700000px;}
.x31_c00471{left:310.350000px;}
.x62_c00471{left:313.200000px;}
.x4f_c00471{left:318.450000px;}
.x42_c00471{left:321.300000px;}
.x69_c00471{left:324.000000px;}
.x9e_c00471{left:326.250000px;}
.x71_c00471{left:328.200000px;}
.xfb_c00471{left:329.850000px;}
.x9_c00471{left:330.900000px;}
.xc9_c00471{left:332.400000px;}
.x105_c00471{left:334.800000px;}
.x98_c00471{left:336.600000px;}
.x50_c00471{left:337.950000px;}
.xf4_c00471{left:340.350000px;}
.x23_c00471{left:344.700000px;}
.xb7_c00471{left:345.750000px;}
.x80_c00471{left:349.500000px;}
.x16_c00471{left:351.300000px;}
.xa_c00471{left:353.550000px;}
.xe5_c00471{left:354.600000px;}
.xff_c00471{left:359.100000px;}
.x11a_c00471{left:361.200000px;}
.x24_c00471{left:362.400000px;}
.x1_c00471{left:365.100000px;}
.x89_c00471{left:367.050000px;}
.xc4_c00471{left:369.900000px;}
.x77_c00471{left:372.750000px;}
.xee_c00471{left:378.300000px;}
.x81_c00471{left:382.200000px;}
.x32_c00471{left:384.900000px;}
.x8e_c00471{left:386.550000px;}
.x25_c00471{left:387.600000px;}
.x6a_c00471{left:390.900000px;}
.x116_c00471{left:394.950000px;}
.xf5_c00471{left:397.200000px;}
.xba_c00471{left:399.300000px;}
.xb2_c00471{left:401.850000px;}
.x11c_c00471{left:403.800000px;}
.xde_c00471{left:406.200000px;}
.x8a_c00471{left:407.400000px;}
.xd1_c00471{left:408.450000px;}
.x82_c00471{left:409.500000px;}
.x33_c00471{left:411.150000px;}
.xd9_c00471{left:413.100000px;}
.xb8_c00471{left:414.450000px;}
.x10a_c00471{left:415.800000px;}
.x106_c00471{left:417.300000px;}
.x43_c00471{left:420.000000px;}
.x51_c00471{left:425.400000px;}
.x63_c00471{left:428.400000px;}
.x34_c00471{left:433.800000px;}
.x72_c00471{left:434.850000px;}
.x17_c00471{left:436.200000px;}
.xc5_c00471{left:438.600000px;}
.xb_c00471{left:439.650000px;}
.x8f_c00471{left:442.350000px;}
.x26_c00471{left:446.700000px;}
.xf9_c00471{left:449.250000px;}
.x2_c00471{left:456.150000px;}
.xca_c00471{left:457.500000px;}
.xbb_c00471{left:459.750000px;}
.x110_c00471{left:461.850000px;}
.xaa_c00471{left:462.900000px;}
.xd2_c00471{left:464.250000px;}
.x90_c00471{left:465.750000px;}
.x52_c00471{left:471.450000px;}
.x11d_c00471{left:472.500000px;}
.xb3_c00471{left:476.700000px;}
.x111_c00471{left:479.550000px;}
.xc_c00471{left:482.550000px;}
.xda_c00471{left:484.350000px;}
.x78_c00471{left:486.900000px;}
.x44_c00471{left:490.950000px;}
.x91_c00471{left:493.050000px;}
.x27_c00471{left:494.250000px;}
.x64_c00471{left:495.750000px;}
.x107_c00471{left:497.250000px;}
.xea_c00471{left:500.100000px;}
.x35_c00471{left:502.200000px;}
.xbc_c00471{left:503.250000px;}
.x8b_c00471{left:505.650000px;}
.xd_c00471{left:508.050000px;}
.x6b_c00471{left:510.450000px;}
.x18_c00471{left:512.850000px;}
.x79_c00471{left:517.800000px;}
.x112_c00471{left:519.150000px;}
.x73_c00471{left:520.200000px;}
.xb4_c00471{left:523.500000px;}
.x36_c00471{left:524.850000px;}
.x92_c00471{left:526.200000px;}
.xf6_c00471{left:527.550000px;}
.xab_c00471{left:529.200000px;}
.x45_c00471{left:530.550000px;}
.xbd_c00471{left:533.100000px;}
.x28_c00471{left:536.400000px;}
.x6c_c00471{left:537.450000px;}
.x53_c00471{left:541.650000px;}
.x11b_c00471{left:543.750000px;}
.x108_c00471{left:545.850000px;}
.x10b_c00471{left:546.900000px;}
.x11e_c00471{left:550.650000px;}
.xa2_c00471{left:552.750000px;}
.x65_c00471{left:555.150000px;}
.xe_c00471{left:556.650000px;}
.xc6_c00471{left:558.450000px;}
.x54_c00471{left:559.650000px;}
.x100_c00471{left:560.850000px;}
.x46_c00471{left:562.200000px;}
.xbe_c00471{left:564.450000px;}
.x10c_c00471{left:566.400000px;}
.xa3_c00471{left:567.450000px;}
.xeb_c00471{left:573.450000px;}
.x83_c00471{left:575.100000px;}
.xf_c00471{left:576.750000px;}
.xac_c00471{left:578.100000px;}
.x29_c00471{left:579.150000px;}
.x37_c00471{left:580.950000px;}
.x55_c00471{left:587.700000px;}
.xdb_c00471{left:589.500000px;}
.xef_c00471{left:591.300000px;}
.x7a_c00471{left:595.200000px;}
.x38_c00471{left:596.400000px;}
.xdf_c00471{left:598.350000px;}
.x84_c00471{left:602.100000px;}
.x19_c00471{left:604.650000px;}
.xa4_c00471{left:607.350000px;}
.x2a_c00471{left:610.050000px;}
.x47_c00471{left:611.100000px;}
.xc7_c00471{left:612.750000px;}
.x10_c00471{left:618.450000px;}
.xd3_c00471{left:620.400000px;}
.xbf_c00471{left:622.350000px;}
.x2b_c00471{left:624.150000px;}
.x56_c00471{left:627.000000px;}
.xad_c00471{left:628.500000px;}
.xe0_c00471{left:630.750000px;}
.x66_c00471{left:633.300000px;}
.xe9_c00471{left:634.350000px;}
.x39_c00471{left:636.000000px;}
.xfa_c00471{left:637.350000px;}
.x48_c00471{left:638.850000px;}
.x1a_c00471{left:642.750000px;}
.x57_c00471{left:646.500000px;}
.x101_c00471{left:648.000000px;}
.x74_c00471{left:649.350000px;}
.x93_c00471{left:651.450000px;}
.x6d_c00471{left:654.300000px;}
.x7b_c00471{left:657.750000px;}
.x2c_c00471{left:661.950000px;}
.x117_c00471{left:663.300000px;}
.xf0_c00471{left:664.350000px;}
.x58_c00471{left:665.550000px;}
.x67_c00471{left:667.500000px;}
.xec_c00471{left:671.700000px;}
.xd4_c00471{left:673.350000px;}
.xe6_c00471{left:675.150000px;}
.x49_c00471{left:677.700000px;}
.x10d_c00471{left:679.650000px;}
.x59_c00471{left:683.250000px;}
.xa5_c00471{left:685.200000px;}
.x1b_c00471{left:686.700000px;}
.xc0_c00471{left:690.000000px;}
.x3a_c00471{left:691.800000px;}
.xcb_c00471{left:695.550000px;}
.x11_c00471{left:698.400000px;}
.xae_c00471{left:700.500000px;}
.x85_c00471{left:702.300000px;}
.x5a_c00471{left:704.100000px;}
.xe1_c00471{left:705.600000px;}
.x3b_c00471{left:710.100000px;}
.xdc_c00471{left:712.950000px;}
.xcc_c00471{left:715.050000px;}
.xe7_c00471{left:718.050000px;}
.x2d_c00471{left:720.600000px;}
.x1c_c00471{left:721.650000px;}
.xa6_c00471{left:723.000000px;}
.x4a_c00471{left:725.250000px;}
.xe2_c00471{left:727.500000px;}
.x94_c00471{left:730.500000px;}
.x5b_c00471{left:732.150000px;}
.xc1_c00471{left:734.250000px;}
.x113_c00471{left:737.400000px;}
.x3c_c00471{left:738.900000px;}
.x102_c00471{left:741.600000px;}
.xcd_c00471{left:743.100000px;}
.x75_c00471{left:745.200000px;}
.xed_c00471{left:746.250000px;}
.x3_c00471{left:748.800000px;}
.x1d_c00471{left:751.500000px;}
.xb5_c00471{left:753.900000px;}
.xc2_c00471{left:755.100000px;}
.xe8_c00471{left:756.150000px;}
.x114_c00471{left:757.500000px;}
.x12_c00471{left:759.600000px;}
.x5c_c00471{left:762.750000px;}
.xd5_c00471{left:764.700000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws9_c00471{word-spacing:-10.930931pt;}
.ws2_c00471{word-spacing:-4.691358pt;}
.ws1_c00471{word-spacing:-0.567376pt;}
.wsa_c00471{word-spacing:0.000000pt;}
.ws7_c00471{word-spacing:3.229167pt;}
.ws0_c00471{word-spacing:3.252033pt;}
.ws8_c00471{word-spacing:4.773663pt;}
.ws4_c00471{word-spacing:15.555556pt;}
.ws6_c00471{word-spacing:15.622896pt;}
.ws3_c00471{word-spacing:15.672515pt;}
.ws5_c00471{word-spacing:22.539683pt;}
.fs0_c00471{font-size:48.000000pt;}
.fs1_c00471{font-size:53.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y2d_c00471{bottom:130.666667pt;}
.y2c_c00471{bottom:148.533333pt;}
.y2b_c00471{bottom:166.133333pt;}
.y2a_c00471{bottom:183.733333pt;}
.y29_c00471{bottom:201.600000pt;}
.y28_c00471{bottom:219.200000pt;}
.y27_c00471{bottom:236.800000pt;}
.y26_c00471{bottom:254.666667pt;}
.y25_c00471{bottom:272.266667pt;}
.y24_c00471{bottom:290.533333pt;}
.y23_c00471{bottom:308.266667pt;}
.y22_c00471{bottom:326.133333pt;}
.y21_c00471{bottom:343.733333pt;}
.y20_c00471{bottom:361.333333pt;}
.y1f_c00471{bottom:379.333333pt;}
.y1e_c00471{bottom:397.200000pt;}
.y1d_c00471{bottom:414.800000pt;}
.y1c_c00471{bottom:432.666667pt;}
.y1b_c00471{bottom:450.266667pt;}
.y1a_c00471{bottom:468.133333pt;}
.y19_c00471{bottom:485.733333pt;}
.y18_c00471{bottom:503.733333pt;}
.y17_c00471{bottom:521.333333pt;}
.y16_c00471{bottom:538.933333pt;}
.y15_c00471{bottom:556.800000pt;}
.y14_c00471{bottom:574.400000pt;}
.y13_c00471{bottom:592.266667pt;}
.y12_c00471{bottom:609.866667pt;}
.y11_c00471{bottom:627.866667pt;}
.y10_c00471{bottom:645.466667pt;}
.yf_c00471{bottom:663.333333pt;}
.ye_c00471{bottom:681.066667pt;}
.yd_c00471{bottom:698.933333pt;}
.yc_c00471{bottom:716.533333pt;}
.yb_c00471{bottom:734.400000pt;}
.ya_c00471{bottom:752.000000pt;}
.y9_c00471{bottom:769.866667pt;}
.y8_c00471{bottom:788.000000pt;}
.y7_c00471{bottom:805.866667pt;}
.y6_c00471{bottom:823.733333pt;}
.y5_c00471{bottom:841.333333pt;}
.y4_c00471{bottom:858.933333pt;}
.y3_c00471{bottom:876.800000pt;}
.y2_c00471{bottom:894.666667pt;}
.y1_c00471{bottom:928.000000pt;}
.h2_c00471{height:48.000000pt;}
.h3_c00471{height:53.333333pt;}
.h1_c00471{height:1036.666667pt;}
.h0_c00471{height:1036.800049pt;}
.w0_c00471{width:818.559977pt;}
.w1_c00471{width:818.666667pt;}
.x0_c00471{left:0.000000pt;}
.x3d_c00471{left:95.200000pt;}
.x4_c00471{left:96.266667pt;}
.xe3_c00471{left:97.200000pt;}
.x103_c00471{left:98.266667pt;}
.x86_c00471{left:112.533333pt;}
.x104_c00471{left:114.533333pt;}
.x3e_c00471{left:119.200000pt;}
.x5d_c00471{left:120.933333pt;}
.x5_c00471{left:123.466667pt;}
.xb9_c00471{left:124.533333pt;}
.xfc_c00471{left:125.466667pt;}
.x95_c00471{left:126.800000pt;}
.x118_c00471{left:129.066667pt;}
.x99_c00471{left:131.866667pt;}
.x8c_c00471{left:134.666667pt;}
.xf1_c00471{left:135.733333pt;}
.xaf_c00471{left:138.533333pt;}
.x4b_c00471{left:140.933333pt;}
.xd6_c00471{left:142.133333pt;}
.xfd_c00471{left:143.066667pt;}
.xe4_c00471{left:144.933333pt;}
.x7c_c00471{left:146.533333pt;}
.xf7_c00471{left:148.400000pt;}
.x1e_c00471{left:149.333333pt;}
.xa7_c00471{left:150.800000pt;}
.x2e_c00471{left:153.333333pt;}
.xb6_c00471{left:154.666667pt;}
.x9f_c00471{left:156.533333pt;}
.x4c_c00471{left:158.266667pt;}
.x6e_c00471{left:160.400000pt;}
.x9a_c00471{left:162.266667pt;}
.x5e_c00471{left:163.200000pt;}
.xb0_c00471{left:165.733333pt;}
.xa8_c00471{left:167.733333pt;}
.x109_c00471{left:170.000000pt;}
.x1f_c00471{left:171.466667pt;}
.xc3_c00471{left:178.133333pt;}
.xf2_c00471{left:180.533333pt;}
.x6_c00471{left:182.000000pt;}
.xb1_c00471{left:185.600000pt;}
.x3f_c00471{left:187.066667pt;}
.x87_c00471{left:188.400000pt;}
.x5f_c00471{left:192.666667pt;}
.x9b_c00471{left:193.600000pt;}
.xf8_c00471{left:194.533333pt;}
.x20_c00471{left:196.400000pt;}
.x13_c00471{left:198.133333pt;}
.x2f_c00471{left:199.066667pt;}
.x7d_c00471{left:200.000000pt;}
.x7_c00471{left:202.533333pt;}
.x4d_c00471{left:204.400000pt;}
.xfe_c00471{left:205.866667pt;}
.x115_c00471{left:206.800000pt;}
.x9c_c00471{left:208.666667pt;}
.xdd_c00471{left:210.266667pt;}
.x76_c00471{left:211.600000pt;}
.x8d_c00471{left:214.000000pt;}
.x21_c00471{left:214.933333pt;}
.x10e_c00471{left:216.666667pt;}
.xa0_c00471{left:218.266667pt;}
.x14_c00471{left:219.200000pt;}
.x96_c00471{left:220.266667pt;}
.x4e_c00471{left:222.000000pt;}
.x68_c00471{left:224.666667pt;}
.x6f_c00471{left:226.533333pt;}
.xce_c00471{left:228.266667pt;}
.x8_c00471{left:229.466667pt;}
.x9d_c00471{left:231.733333pt;}
.x60_c00471{left:232.933333pt;}
.x40_c00471{left:235.333333pt;}
.xd7_c00471{left:237.866667pt;}
.x22_c00471{left:239.866667pt;}
.x97_c00471{left:242.933333pt;}
.xc8_c00471{left:243.866667pt;}
.x15_c00471{left:246.666667pt;}
.xcf_c00471{left:248.400000pt;}
.x7e_c00471{left:250.533333pt;}
.xa9_c00471{left:252.133333pt;}
.x61_c00471{left:253.066667pt;}
.xf3_c00471{left:254.533333pt;}
.x10f_c00471{left:255.733333pt;}
.x30_c00471{left:257.333333pt;}
.xd0_c00471{left:259.600000pt;}
.x88_c00471{left:261.333333pt;}
.x7f_c00471{left:263.333333pt;}
.xa1_c00471{left:266.000000pt;}
.x41_c00471{left:268.000000pt;}
.x70_c00471{left:269.066667pt;}
.xd8_c00471{left:271.466667pt;}
.x119_c00471{left:274.400000pt;}
.x31_c00471{left:275.866667pt;}
.x62_c00471{left:278.400000pt;}
.x4f_c00471{left:283.066667pt;}
.x42_c00471{left:285.600000pt;}
.x69_c00471{left:288.000000pt;}
.x9e_c00471{left:290.000000pt;}
.x71_c00471{left:291.733333pt;}
.xfb_c00471{left:293.200000pt;}
.x9_c00471{left:294.133333pt;}
.xc9_c00471{left:295.466667pt;}
.x105_c00471{left:297.600000pt;}
.x98_c00471{left:299.200000pt;}
.x50_c00471{left:300.400000pt;}
.xf4_c00471{left:302.533333pt;}
.x23_c00471{left:306.400000pt;}
.xb7_c00471{left:307.333333pt;}
.x80_c00471{left:310.666667pt;}
.x16_c00471{left:312.266667pt;}
.xa_c00471{left:314.266667pt;}
.xe5_c00471{left:315.200000pt;}
.xff_c00471{left:319.200000pt;}
.x11a_c00471{left:321.066667pt;}
.x24_c00471{left:322.133333pt;}
.x1_c00471{left:324.533333pt;}
.x89_c00471{left:326.266667pt;}
.xc4_c00471{left:328.800000pt;}
.x77_c00471{left:331.333333pt;}
.xee_c00471{left:336.266667pt;}
.x81_c00471{left:339.733333pt;}
.x32_c00471{left:342.133333pt;}
.x8e_c00471{left:343.600000pt;}
.x25_c00471{left:344.533333pt;}
.x6a_c00471{left:347.466667pt;}
.x116_c00471{left:351.066667pt;}
.xf5_c00471{left:353.066667pt;}
.xba_c00471{left:354.933333pt;}
.xb2_c00471{left:357.200000pt;}
.x11c_c00471{left:358.933333pt;}
.xde_c00471{left:361.066667pt;}
.x8a_c00471{left:362.133333pt;}
.xd1_c00471{left:363.066667pt;}
.x82_c00471{left:364.000000pt;}
.x33_c00471{left:365.466667pt;}
.xd9_c00471{left:367.200000pt;}
.xb8_c00471{left:368.400000pt;}
.x10a_c00471{left:369.600000pt;}
.x106_c00471{left:370.933333pt;}
.x43_c00471{left:373.333333pt;}
.x51_c00471{left:378.133333pt;}
.x63_c00471{left:380.800000pt;}
.x34_c00471{left:385.600000pt;}
.x72_c00471{left:386.533333pt;}
.x17_c00471{left:387.733333pt;}
.xc5_c00471{left:389.866667pt;}
.xb_c00471{left:390.800000pt;}
.x8f_c00471{left:393.200000pt;}
.x26_c00471{left:397.066667pt;}
.xf9_c00471{left:399.333333pt;}
.x2_c00471{left:405.466667pt;}
.xca_c00471{left:406.666667pt;}
.xbb_c00471{left:408.666667pt;}
.x110_c00471{left:410.533333pt;}
.xaa_c00471{left:411.466667pt;}
.xd2_c00471{left:412.666667pt;}
.x90_c00471{left:414.000000pt;}
.x52_c00471{left:419.066667pt;}
.x11d_c00471{left:420.000000pt;}
.xb3_c00471{left:423.733333pt;}
.x111_c00471{left:426.266667pt;}
.xc_c00471{left:428.933333pt;}
.xda_c00471{left:430.533333pt;}
.x78_c00471{left:432.800000pt;}
.x44_c00471{left:436.400000pt;}
.x91_c00471{left:438.266667pt;}
.x27_c00471{left:439.333333pt;}
.x64_c00471{left:440.666667pt;}
.x107_c00471{left:442.000000pt;}
.xea_c00471{left:444.533333pt;}
.x35_c00471{left:446.400000pt;}
.xbc_c00471{left:447.333333pt;}
.x8b_c00471{left:449.466667pt;}
.xd_c00471{left:451.600000pt;}
.x6b_c00471{left:453.733333pt;}
.x18_c00471{left:455.866667pt;}
.x79_c00471{left:460.266667pt;}
.x112_c00471{left:461.466667pt;}
.x73_c00471{left:462.400000pt;}
.xb4_c00471{left:465.333333pt;}
.x36_c00471{left:466.533333pt;}
.x92_c00471{left:467.733333pt;}
.xf6_c00471{left:468.933333pt;}
.xab_c00471{left:470.400000pt;}
.x45_c00471{left:471.600000pt;}
.xbd_c00471{left:473.866667pt;}
.x28_c00471{left:476.800000pt;}
.x6c_c00471{left:477.733333pt;}
.x53_c00471{left:481.466667pt;}
.x11b_c00471{left:483.333333pt;}
.x108_c00471{left:485.200000pt;}
.x10b_c00471{left:486.133333pt;}
.x11e_c00471{left:489.466667pt;}
.xa2_c00471{left:491.333333pt;}
.x65_c00471{left:493.466667pt;}
.xe_c00471{left:494.800000pt;}
.xc6_c00471{left:496.400000pt;}
.x54_c00471{left:497.466667pt;}
.x100_c00471{left:498.533333pt;}
.x46_c00471{left:499.733333pt;}
.xbe_c00471{left:501.733333pt;}
.x10c_c00471{left:503.466667pt;}
.xa3_c00471{left:504.400000pt;}
.xeb_c00471{left:509.733333pt;}
.x83_c00471{left:511.200000pt;}
.xf_c00471{left:512.666667pt;}
.xac_c00471{left:513.866667pt;}
.x29_c00471{left:514.800000pt;}
.x37_c00471{left:516.400000pt;}
.x55_c00471{left:522.400000pt;}
.xdb_c00471{left:524.000000pt;}
.xef_c00471{left:525.600000pt;}
.x7a_c00471{left:529.066667pt;}
.x38_c00471{left:530.133333pt;}
.xdf_c00471{left:531.866667pt;}
.x84_c00471{left:535.200000pt;}
.x19_c00471{left:537.466667pt;}
.xa4_c00471{left:539.866667pt;}
.x2a_c00471{left:542.266667pt;}
.x47_c00471{left:543.200000pt;}
.xc7_c00471{left:544.666667pt;}
.x10_c00471{left:549.733333pt;}
.xd3_c00471{left:551.466667pt;}
.xbf_c00471{left:553.200000pt;}
.x2b_c00471{left:554.800000pt;}
.x56_c00471{left:557.333333pt;}
.xad_c00471{left:558.666667pt;}
.xe0_c00471{left:560.666667pt;}
.x66_c00471{left:562.933333pt;}
.xe9_c00471{left:563.866667pt;}
.x39_c00471{left:565.333333pt;}
.xfa_c00471{left:566.533333pt;}
.x48_c00471{left:567.866667pt;}
.x1a_c00471{left:571.333333pt;}
.x57_c00471{left:574.666667pt;}
.x101_c00471{left:576.000000pt;}
.x74_c00471{left:577.200000pt;}
.x93_c00471{left:579.066667pt;}
.x6d_c00471{left:581.600000pt;}
.x7b_c00471{left:584.666667pt;}
.x2c_c00471{left:588.400000pt;}
.x117_c00471{left:589.600000pt;}
.xf0_c00471{left:590.533333pt;}
.x58_c00471{left:591.600000pt;}
.x67_c00471{left:593.333333pt;}
.xec_c00471{left:597.066667pt;}
.xd4_c00471{left:598.533333pt;}
.xe6_c00471{left:600.133333pt;}
.x49_c00471{left:602.400000pt;}
.x10d_c00471{left:604.133333pt;}
.x59_c00471{left:607.333333pt;}
.xa5_c00471{left:609.066667pt;}
.x1b_c00471{left:610.400000pt;}
.xc0_c00471{left:613.333333pt;}
.x3a_c00471{left:614.933333pt;}
.xcb_c00471{left:618.266667pt;}
.x11_c00471{left:620.800000pt;}
.xae_c00471{left:622.666667pt;}
.x85_c00471{left:624.266667pt;}
.x5a_c00471{left:625.866667pt;}
.xe1_c00471{left:627.200000pt;}
.x3b_c00471{left:631.200000pt;}
.xdc_c00471{left:633.733333pt;}
.xcc_c00471{left:635.600000pt;}
.xe7_c00471{left:638.266667pt;}
.x2d_c00471{left:640.533333pt;}
.x1c_c00471{left:641.466667pt;}
.xa6_c00471{left:642.666667pt;}
.x4a_c00471{left:644.666667pt;}
.xe2_c00471{left:646.666667pt;}
.x94_c00471{left:649.333333pt;}
.x5b_c00471{left:650.800000pt;}
.xc1_c00471{left:652.666667pt;}
.x113_c00471{left:655.466667pt;}
.x3c_c00471{left:656.800000pt;}
.x102_c00471{left:659.200000pt;}
.xcd_c00471{left:660.533333pt;}
.x75_c00471{left:662.400000pt;}
.xed_c00471{left:663.333333pt;}
.x3_c00471{left:665.600000pt;}
.x1d_c00471{left:668.000000pt;}
.xb5_c00471{left:670.133333pt;}
.xc2_c00471{left:671.200000pt;}
.xe8_c00471{left:672.133333pt;}
.x114_c00471{left:673.333333pt;}
.x12_c00471{left:675.200000pt;}
.x5c_c00471{left:678.000000pt;}
.xd5_c00471{left:679.733333pt;}
}





/* 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_c00472 {
    display:none;
  }
  .loading-indicator_c00472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00472 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_c00472 { 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_c00472" -> "#page-container .classname_c00472")
 */
.pf_c00472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00472 { /* 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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00472 { /* 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_c00472 { /* 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_c00472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00472 {overflow:visible;}
  }
}
.c_c00472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00472 { /* 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_c00472:after { /* webkit #35443 */
  content: '';
}
.t_c00472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00472 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 */
}
.__c00472 { /* 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_c00472 { /* info for Javascript */
  display:none;
}
.l_c00472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00472: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_c00472 {
    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_c00472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00472.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_c00472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00472;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.000000;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;}
.m60_c00472{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00472{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m79_c00472{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00472{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m52_c00472{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m83_c00472{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m82_c00472{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.mad_c00472{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00472{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00472{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00472{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00472{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00472{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m26_c00472{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00472{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m99_c00472{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00472{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2_c00472{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m91_c00472{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00472{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m39_c00472{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m66_c00472{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m87_c00472{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.md_c00472{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m37_c00472{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m43_c00472{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00472{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m70_c00472{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m81_c00472{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00472{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m95_c00472{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m57_c00472{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00472{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m61_c00472{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00472{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m14_c00472{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m13_c00472{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00472{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00472{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00472{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m50_c00472{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m27_c00472{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00472{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m72_c00472{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m8_c00472{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m69_c00472{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m32_c00472{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mae_c00472{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.mab_c00472{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m18_c00472{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m23_c00472{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00472{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m77_c00472{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m64_c00472{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00472{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00472{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m7_c00472{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m51_c00472{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m92_c00472{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.ma_c00472{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00472{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m68_c00472{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00472{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m22_c00472{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m40_c00472{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m84_c00472{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m41_c00472{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m89_c00472{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00472{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mb_c00472{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00472{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9_c00472{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m16_c00472{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00472{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00472{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m53_c00472{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20_c00472{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m71_c00472{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00472{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00472{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);}
.ma0_c00472{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00472{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00472{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m98_c00472{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m17_c00472{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m74_c00472{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00472{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mf_c00472{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m88_c00472{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mac_c00472{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m55_c00472{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m30_c00472{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m24_c00472{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m34_c00472{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00472{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m29_c00472{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m73_c00472{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m58_c00472{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m38_c00472{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m45_c00472{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m93_c00472{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m75_c00472{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00472{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00472{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m36_c00472{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m90_c00472{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m6_c00472{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m47_c00472{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m12_c00472{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m76_c00472{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m49_c00472{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m62_c00472{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00472{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00472{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00472{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m19_c00472{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00472{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.me_c00472{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00472{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c00472{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00472{transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271000,0.000000,0.000000,0.250000,0,0);}
.m94_c00472{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00472{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.mc_c00472{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m15_c00472{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m5_c00472{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m42_c00472{transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00472{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m48_c00472{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m56_c00472{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00472{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00472{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00472{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m11_c00472{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m63_c00472{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00472{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00472{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4_c00472{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00472{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m10_c00472{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m65_c00472{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m78_c00472{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00472{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m25_c00472{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m54_c00472{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m97_c00472{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m35_c00472{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00472{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m80_c00472{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00472{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m33_c00472{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00472{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m46_c00472{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00472{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00472{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m31_c00472{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00472{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m44_c00472{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.maa_c00472{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m28_c00472{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00472{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m0_c00472{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00472{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.m85_c00472{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00472{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m59_c00472{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00472{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1_c00472{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m86_c00472{transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326750,0.000000,0.000000,0.250000,0,0);}
.m3_c00472{transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00472{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00472{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m67_c00472{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00472{transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370750,0.000000,0.000000,0.250000,0,0);}
.m96_c00472{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{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__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:-9.125000px;}
.ws3_c00472{word-spacing:-3.234840px;}
.ws6_c00472{word-spacing:0.000000px;}
.ws4_c00472{word-spacing:5.875000px;}
.ws1_c00472{word-spacing:7.133568px;}
.ws5_c00472{word-spacing:8.750000px;}
.ws2_c00472{word-spacing:12.641676px;}
.fc0_c00472{color:transparent;}
.fs0_c00472{font-size:54.000000px;}
.y0_c00472{bottom:0.000000px;}
.y2d_c00472{bottom:155.700000px;}
.y2c_c00472{bottom:175.800000px;}
.y2b_c00472{bottom:195.600000px;}
.y2a_c00472{bottom:215.400000px;}
.y29_c00472{bottom:235.200000px;}
.y28_c00472{bottom:255.300000px;}
.y27_c00472{bottom:274.800000px;}
.y26_c00472{bottom:294.900000px;}
.y25_c00472{bottom:314.700000px;}
.y24_c00472{bottom:334.500000px;}
.y23_c00472{bottom:354.600000px;}
.y22_c00472{bottom:374.400000px;}
.y21_c00472{bottom:394.200000px;}
.y20_c00472{bottom:414.000000px;}
.y1f_c00472{bottom:433.800000px;}
.y1e_c00472{bottom:453.450000px;}
.y1d_c00472{bottom:473.250000px;}
.y1c_c00472{bottom:493.800000px;}
.y1b_c00472{bottom:513.300000px;}
.y1a_c00472{bottom:534.300000px;}
.y19_c00472{bottom:554.850000px;}
.y18_c00472{bottom:574.650000px;}
.y17_c00472{bottom:594.450000px;}
.y16_c00472{bottom:614.550000px;}
.y15_c00472{bottom:634.350000px;}
.y14_c00472{bottom:654.150000px;}
.y13_c00472{bottom:673.950000px;}
.y12_c00472{bottom:693.750000px;}
.y11_c00472{bottom:713.850000px;}
.y10_c00472{bottom:733.650000px;}
.yf_c00472{bottom:753.750000px;}
.ye_c00472{bottom:773.550000px;}
.yd_c00472{bottom:793.350000px;}
.yc_c00472{bottom:813.450000px;}
.yb_c00472{bottom:833.550000px;}
.ya_c00472{bottom:853.650000px;}
.y9_c00472{bottom:873.750000px;}
.y8_c00472{bottom:893.850000px;}
.y7_c00472{bottom:913.650000px;}
.y6_c00472{bottom:933.450000px;}
.y5_c00472{bottom:953.550000px;}
.y4_c00472{bottom:974.100000px;}
.y3_c00472{bottom:993.600000px;}
.y2_c00472{bottom:1014.150000px;}
.y1_c00472{bottom:1051.950000px;}
.h2_c00472{height:54.000000px;}
.h1_c00472{height:1166.250000px;}
.h0_c00472{height:1166.400056px;}
.w0_c00472{width:920.879975px;}
.w1_c00472{width:921.000000px;}
.x0_c00472{left:0.000000px;}
.x12c_c00472{left:150.750000px;}
.x125_c00472{left:152.100000px;}
.x80_c00472{left:153.300000px;}
.x1_c00472{left:154.500000px;}
.x73_c00472{left:171.900000px;}
.xd2_c00472{left:176.550000px;}
.xdb_c00472{left:177.900000px;}
.x111_c00472{left:182.700000px;}
.x57_c00472{left:184.650000px;}
.x3_c00472{left:185.700000px;}
.x113_c00472{left:186.750000px;}
.x4c_c00472{left:188.700000px;}
.x6a_c00472{left:190.200000px;}
.xbe_c00472{left:192.150000px;}
.xae_c00472{left:193.650000px;}
.xa6_c00472{left:195.750000px;}
.x94_c00472{left:197.250000px;}
.x10_c00472{left:199.350000px;}
.x27_c00472{left:200.400000px;}
.x81_c00472{left:201.900000px;}
.xd3_c00472{left:205.050000px;}
.x33_c00472{left:207.000000px;}
.x74_c00472{left:210.000000px;}
.x4_c00472{left:211.950000px;}
.xe4_c00472{left:213.450000px;}
.xaf_c00472{left:214.500000px;}
.x8c_c00472{left:215.850000px;}
.xe7_c00472{left:216.900000px;}
.x11_c00472{left:219.900000px;}
.xc6_c00472{left:220.950000px;}
.x61_c00472{left:222.900000px;}
.xfa_c00472{left:224.550000px;}
.x58_c00472{left:226.050000px;}
.x95_c00472{left:230.400000px;}
.x18_c00472{left:233.700000px;}
.xe8_c00472{left:236.400000px;}
.x4d_c00472{left:238.050000px;}
.x75_c00472{left:240.600000px;}
.x114_c00472{left:242.250000px;}
.x59_c00472{left:244.050000px;}
.x5_c00472{left:247.650000px;}
.x28_c00472{left:252.600000px;}
.xc7_c00472{left:258.300000px;}
.x126_c00472{left:260.100000px;}
.xa7_c00472{left:261.300000px;}
.x41_c00472{left:262.350000px;}
.x34_c00472{left:264.000000px;}
.xe9_c00472{left:265.500000px;}
.x96_c00472{left:270.300000px;}
.x107_c00472{left:273.150000px;}
.x12_c00472{left:276.750000px;}
.x29_c00472{left:277.800000px;}
.xbf_c00472{left:280.650000px;}
.xff_c00472{left:282.300000px;}
.xf3_c00472{left:284.100000px;}
.x19_c00472{left:285.900000px;}
.x97_c00472{left:288.600000px;}
.x82_c00472{left:290.100000px;}
.xf1_c00472{left:291.900000px;}
.x42_c00472{left:293.250000px;}
.x4e_c00472{left:294.300000px;}
.x6b_c00472{left:296.400000px;}
.xd7_c00472{left:298.200000px;}
.xcd_c00472{left:299.850000px;}
.x76_c00472{left:301.500000px;}
.x35_c00472{left:304.650000px;}
.x5a_c00472{left:306.300000px;}
.x13_c00472{left:308.100000px;}
.xc8_c00472{left:310.200000px;}
.x100_c00472{left:311.850000px;}
.x4f_c00472{left:316.200000px;}
.x11a_c00472{left:318.600000px;}
.x36_c00472{left:320.850000px;}
.x108_c00472{left:322.800000px;}
.xf4_c00472{left:326.550000px;}
.x83_c00472{left:328.650000px;}
.xa8_c00472{left:329.700000px;}
.x10c_c00472{left:331.800000px;}
.x2a_c00472{left:334.350000px;}
.x14_c00472{left:336.600000px;}
.xd4_c00472{left:338.250000px;}
.x77_c00472{left:341.850000px;}
.x98_c00472{left:342.900000px;}
.x8d_c00472{left:346.800000px;}
.x37_c00472{left:352.200000px;}
.x1a_c00472{left:353.550000px;}
.x129_c00472{left:355.200000px;}
.xb7_c00472{left:356.400000px;}
.xce_c00472{left:357.450000px;}
.x62_c00472{left:359.700000px;}
.xc0_c00472{left:360.900000px;}
.xe5_c00472{left:362.850000px;}
.xb0_c00472{left:364.950000px;}
.x109_c00472{left:366.300000px;}
.x10e_c00472{left:367.950000px;}
.xa9_c00472{left:369.600000px;}
.x120_c00472{left:371.250000px;}
.x6_c00472{left:372.900000px;}
.x6c_c00472{left:374.550000px;}
.x101_c00472{left:376.350000px;}
.x5b_c00472{left:377.550000px;}
.x1b_c00472{left:378.750000px;}
.xd8_c00472{left:381.000000px;}
.x78_c00472{left:382.200000px;}
.x12d_c00472{left:383.700000px;}
.x43_c00472{left:387.600000px;}
.x50_c00472{left:388.950000px;}
.x84_c00472{left:390.900000px;}
.x2b_c00472{left:391.950000px;}
.x6d_c00472{left:394.350000px;}
.x11b_c00472{left:397.200000px;}
.xaa_c00472{left:398.700000px;}
.xc1_c00472{left:401.250000px;}
.x63_c00472{left:402.900000px;}
.x99_c00472{left:405.450000px;}
.xb8_c00472{left:407.850000px;}
.xa1_c00472{left:409.650000px;}
.x79_c00472{left:411.300000px;}
.x51_c00472{left:412.650000px;}
.x85_c00472{left:416.100000px;}
.x38_c00472{left:419.100000px;}
.xfb_c00472{left:421.200000px;}
.xf2_c00472{left:422.850000px;}
.xdc_c00472{left:426.300000px;}
.x44_c00472{left:428.250000px;}
.xc9_c00472{left:429.750000px;}
.x64_c00472{left:432.000000px;}
.x2c_c00472{left:433.650000px;}
.x15_c00472{left:436.350000px;}
.x7a_c00472{left:439.350000px;}
.x7_c00472{left:441.600000px;}
.xd9_c00472{left:446.850000px;}
.x1c_c00472{left:448.200000px;}
.xea_c00472{left:451.500000px;}
.x2_c00472{left:452.550000px;}
.xb1_c00472{left:454.200000px;}
.xed_c00472{left:455.700000px;}
.xe6_c00472{left:457.500000px;}
.x2d_c00472{left:458.550000px;}
.x11c_c00472{left:459.600000px;}
.x122_c00472{left:460.650000px;}
.x10f_c00472{left:461.850000px;}
.xc2_c00472{left:463.950000px;}
.x39_c00472{left:465.600000px;}
.x16_c00472{left:467.700000px;}
.xb9_c00472{left:468.750000px;}
.x102_c00472{left:470.400000px;}
.xdd_c00472{left:475.200000px;}
.x65_c00472{left:478.500000px;}
.x8_c00472{left:480.450000px;}
.x45_c00472{left:482.550000px;}
.x121_c00472{left:483.750000px;}
.x11d_c00472{left:485.100000px;}
.x10d_c00472{left:486.600000px;}
.x9a_c00472{left:487.950000px;}
.x86_c00472{left:489.600000px;}
.xee_c00472{left:491.700000px;}
.xeb_c00472{left:495.750000px;}
.x10a_c00472{left:497.700000px;}
.xb2_c00472{left:501.750000px;}
.x1d_c00472{left:504.750000px;}
.x5c_c00472{left:505.800000px;}
.xc3_c00472{left:508.650000px;}
.xf8_c00472{left:512.400000px;}
.x12a_c00472{left:514.650000px;}
.x3a_c00472{left:516.750000px;}
.xf5_c00472{left:519.150000px;}
.xa2_c00472{left:520.500000px;}
.x6e_c00472{left:523.650000px;}
.x1e_c00472{left:525.300000px;}
.xde_c00472{left:526.350000px;}
.x115_c00472{left:527.400000px;}
.x87_c00472{left:528.600000px;}
.x9b_c00472{left:531.150000px;}
.x66_c00472{left:532.200000px;}
.x127_c00472{left:533.400000px;}
.xfc_c00472{left:536.100000px;}
.xb3_c00472{left:538.050000px;}
.x9_c00472{left:542.700000px;}
.x52_c00472{left:546.150000px;}
.x2e_c00472{left:547.500000px;}
.xcf_c00472{left:550.500000px;}
.x9c_c00472{left:551.700000px;}
.x46_c00472{left:552.750000px;}
.x7b_c00472{left:554.100000px;}
.x3b_c00472{left:555.300000px;}
.xab_c00472{left:558.600000px;}
.x17_c00472{left:561.600000px;}
.x116_c00472{left:563.700000px;}
.x103_c00472{left:565.500000px;}
.xb4_c00472{left:566.850000px;}
.x1f_c00472{left:569.250000px;}
.x5d_c00472{left:570.600000px;}
.xf6_c00472{left:571.650000px;}
.x2f_c00472{left:573.000000px;}
.x47_c00472{left:574.650000px;}
.xd5_c00472{left:577.650000px;}
.x88_c00472{left:580.500000px;}
.x20_c00472{left:581.550000px;}
.xdf_c00472{left:582.900000px;}
.xac_c00472{left:584.850000px;}
.x6f_c00472{left:587.700000px;}
.x53_c00472{left:590.400000px;}
.x117_c00472{left:591.450000px;}
.x8e_c00472{left:594.450000px;}
.xec_c00472{left:595.500000px;}
.xa_c00472{left:598.200000px;}
.xc4_c00472{left:602.550000px;}
.xca_c00472{left:604.350000px;}
.x9d_c00472{left:606.750000px;}
.xe0_c00472{left:607.800000px;}
.x89_c00472{left:610.050000px;}
.xd0_c00472{left:611.400000px;}
.xad_c00472{left:613.650000px;}
.x7c_c00472{left:618.150000px;}
.xef_c00472{left:620.250000px;}
.x104_c00472{left:621.600000px;}
.x54_c00472{left:623.850000px;}
.x3c_c00472{left:625.200000px;}
.xcb_c00472{left:626.250000px;}
.x8f_c00472{left:628.650000px;}
.x30_c00472{left:632.100000px;}
.x10b_c00472{left:633.300000px;}
.x67_c00472{left:636.300000px;}
.x21_c00472{left:638.100000px;}
.xe1_c00472{left:640.200000px;}
.x3d_c00472{left:641.400000px;}
.xb_c00472{left:642.900000px;}
.xba_c00472{left:644.100000px;}
.xf7_c00472{left:646.200000px;}
.xa3_c00472{left:648.000000px;}
.x105_c00472{left:649.650000px;}
.x7d_c00472{left:651.600000px;}
.x5e_c00472{left:656.700000px;}
.xc_c00472{left:663.000000px;}
.x128_c00472{left:664.050000px;}
.x9e_c00472{left:665.850000px;}
.x112_c00472{left:667.050000px;}
.xa4_c00472{left:668.100000px;}
.x8a_c00472{left:669.450000px;}
.xfd_c00472{left:672.450000px;}
.x70_c00472{left:674.400000px;}
.x31_c00472{left:675.600000px;}
.x22_c00472{left:678.000000px;}
.x3e_c00472{left:681.300000px;}
.x68_c00472{left:682.800000px;}
.x12b_c00472{left:685.050000px;}
.xcc_c00472{left:687.450000px;}
.x90_c00472{left:689.100000px;}
.xd_c00472{left:691.050000px;}
.xfe_c00472{left:693.000000px;}
.x23_c00472{left:694.950000px;}
.x118_c00472{left:696.300000px;}
.xb5_c00472{left:699.600000px;}
.x55_c00472{left:701.550000px;}
.x32_c00472{left:703.650000px;}
.xbb_c00472{left:705.600000px;}
.x48_c00472{left:707.100000px;}
.x91_c00472{left:709.200000px;}
.x110_c00472{left:710.250000px;}
.x123_c00472{left:713.700000px;}
.x69_c00472{left:716.250000px;}
.x7e_c00472{left:718.200000px;}
.xda_c00472{left:724.050000px;}
.x119_c00472{left:727.650000px;}
.x24_c00472{left:729.900000px;}
.x9f_c00472{left:731.400000px;}
.x11e_c00472{left:732.750000px;}
.xd6_c00472{left:733.800000px;}
.x49_c00472{left:735.150000px;}
.x3f_c00472{left:736.350000px;}
.xf0_c00472{left:739.050000px;}
.x5f_c00472{left:740.250000px;}
.x106_c00472{left:744.000000px;}
.x7f_c00472{left:747.000000px;}
.xe_c00472{left:750.450000px;}
.xbc_c00472{left:754.500000px;}
.x60_c00472{left:757.200000px;}
.x92_c00472{left:758.850000px;}
.x71_c00472{left:760.800000px;}
.x25_c00472{left:764.400000px;}
.x56_c00472{left:766.050000px;}
.xe2_c00472{left:769.050000px;}
.x4a_c00472{left:770.100000px;}
.xf9_c00472{left:771.150000px;}
.xc5_c00472{left:773.550000px;}
.x40_c00472{left:775.650000px;}
.xd1_c00472{left:777.300000px;}
.x93_c00472{left:779.400000px;}
.x11f_c00472{left:781.350000px;}
.xbd_c00472{left:783.300000px;}
.x72_c00472{left:786.000000px;}
.xe3_c00472{left:788.550000px;}
.x4b_c00472{left:790.650000px;}
.xa5_c00472{left:795.150000px;}
.xb6_c00472{left:797.250000px;}
.x8b_c00472{left:798.600000px;}
.xf_c00472{left:800.850000px;}
.x124_c00472{left:803.700000px;}
.xa0_c00472{left:809.550000px;}
.x26_c00472{left:810.900000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:-8.111111pt;}
.ws3_c00472{word-spacing:-2.875413pt;}
.ws6_c00472{word-spacing:0.000000pt;}
.ws4_c00472{word-spacing:5.222222pt;}
.ws1_c00472{word-spacing:6.340949pt;}
.ws5_c00472{word-spacing:7.777778pt;}
.ws2_c00472{word-spacing:11.237045pt;}
.fs0_c00472{font-size:48.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y2d_c00472{bottom:138.400000pt;}
.y2c_c00472{bottom:156.266667pt;}
.y2b_c00472{bottom:173.866667pt;}
.y2a_c00472{bottom:191.466667pt;}
.y29_c00472{bottom:209.066667pt;}
.y28_c00472{bottom:226.933333pt;}
.y27_c00472{bottom:244.266667pt;}
.y26_c00472{bottom:262.133333pt;}
.y25_c00472{bottom:279.733333pt;}
.y24_c00472{bottom:297.333333pt;}
.y23_c00472{bottom:315.200000pt;}
.y22_c00472{bottom:332.800000pt;}
.y21_c00472{bottom:350.400000pt;}
.y20_c00472{bottom:368.000000pt;}
.y1f_c00472{bottom:385.600000pt;}
.y1e_c00472{bottom:403.066667pt;}
.y1d_c00472{bottom:420.666667pt;}
.y1c_c00472{bottom:438.933333pt;}
.y1b_c00472{bottom:456.266667pt;}
.y1a_c00472{bottom:474.933333pt;}
.y19_c00472{bottom:493.200000pt;}
.y18_c00472{bottom:510.800000pt;}
.y17_c00472{bottom:528.400000pt;}
.y16_c00472{bottom:546.266667pt;}
.y15_c00472{bottom:563.866667pt;}
.y14_c00472{bottom:581.466667pt;}
.y13_c00472{bottom:599.066667pt;}
.y12_c00472{bottom:616.666667pt;}
.y11_c00472{bottom:634.533333pt;}
.y10_c00472{bottom:652.133333pt;}
.yf_c00472{bottom:670.000000pt;}
.ye_c00472{bottom:687.600000pt;}
.yd_c00472{bottom:705.200000pt;}
.yc_c00472{bottom:723.066667pt;}
.yb_c00472{bottom:740.933333pt;}
.ya_c00472{bottom:758.800000pt;}
.y9_c00472{bottom:776.666667pt;}
.y8_c00472{bottom:794.533333pt;}
.y7_c00472{bottom:812.133333pt;}
.y6_c00472{bottom:829.733333pt;}
.y5_c00472{bottom:847.600000pt;}
.y4_c00472{bottom:865.866667pt;}
.y3_c00472{bottom:883.200000pt;}
.y2_c00472{bottom:901.466667pt;}
.y1_c00472{bottom:935.066667pt;}
.h2_c00472{height:48.000000pt;}
.h1_c00472{height:1036.666667pt;}
.h0_c00472{height:1036.800049pt;}
.w0_c00472{width:818.559977pt;}
.w1_c00472{width:818.666667pt;}
.x0_c00472{left:0.000000pt;}
.x12c_c00472{left:134.000000pt;}
.x125_c00472{left:135.200000pt;}
.x80_c00472{left:136.266667pt;}
.x1_c00472{left:137.333333pt;}
.x73_c00472{left:152.800000pt;}
.xd2_c00472{left:156.933333pt;}
.xdb_c00472{left:158.133333pt;}
.x111_c00472{left:162.400000pt;}
.x57_c00472{left:164.133333pt;}
.x3_c00472{left:165.066667pt;}
.x113_c00472{left:166.000000pt;}
.x4c_c00472{left:167.733333pt;}
.x6a_c00472{left:169.066667pt;}
.xbe_c00472{left:170.800000pt;}
.xae_c00472{left:172.133333pt;}
.xa6_c00472{left:174.000000pt;}
.x94_c00472{left:175.333333pt;}
.x10_c00472{left:177.200000pt;}
.x27_c00472{left:178.133333pt;}
.x81_c00472{left:179.466667pt;}
.xd3_c00472{left:182.266667pt;}
.x33_c00472{left:184.000000pt;}
.x74_c00472{left:186.666667pt;}
.x4_c00472{left:188.400000pt;}
.xe4_c00472{left:189.733333pt;}
.xaf_c00472{left:190.666667pt;}
.x8c_c00472{left:191.866667pt;}
.xe7_c00472{left:192.800000pt;}
.x11_c00472{left:195.466667pt;}
.xc6_c00472{left:196.400000pt;}
.x61_c00472{left:198.133333pt;}
.xfa_c00472{left:199.600000pt;}
.x58_c00472{left:200.933333pt;}
.x95_c00472{left:204.800000pt;}
.x18_c00472{left:207.733333pt;}
.xe8_c00472{left:210.133333pt;}
.x4d_c00472{left:211.600000pt;}
.x75_c00472{left:213.866667pt;}
.x114_c00472{left:215.333333pt;}
.x59_c00472{left:216.933333pt;}
.x5_c00472{left:220.133333pt;}
.x28_c00472{left:224.533333pt;}
.xc7_c00472{left:229.600000pt;}
.x126_c00472{left:231.200000pt;}
.xa7_c00472{left:232.266667pt;}
.x41_c00472{left:233.200000pt;}
.x34_c00472{left:234.666667pt;}
.xe9_c00472{left:236.000000pt;}
.x96_c00472{left:240.266667pt;}
.x107_c00472{left:242.800000pt;}
.x12_c00472{left:246.000000pt;}
.x29_c00472{left:246.933333pt;}
.xbf_c00472{left:249.466667pt;}
.xff_c00472{left:250.933333pt;}
.xf3_c00472{left:252.533333pt;}
.x19_c00472{left:254.133333pt;}
.x97_c00472{left:256.533333pt;}
.x82_c00472{left:257.866667pt;}
.xf1_c00472{left:259.466667pt;}
.x42_c00472{left:260.666667pt;}
.x4e_c00472{left:261.600000pt;}
.x6b_c00472{left:263.466667pt;}
.xd7_c00472{left:265.066667pt;}
.xcd_c00472{left:266.533333pt;}
.x76_c00472{left:268.000000pt;}
.x35_c00472{left:270.800000pt;}
.x5a_c00472{left:272.266667pt;}
.x13_c00472{left:273.866667pt;}
.xc8_c00472{left:275.733333pt;}
.x100_c00472{left:277.200000pt;}
.x4f_c00472{left:281.066667pt;}
.x11a_c00472{left:283.200000pt;}
.x36_c00472{left:285.200000pt;}
.x108_c00472{left:286.933333pt;}
.xf4_c00472{left:290.266667pt;}
.x83_c00472{left:292.133333pt;}
.xa8_c00472{left:293.066667pt;}
.x10c_c00472{left:294.933333pt;}
.x2a_c00472{left:297.200000pt;}
.x14_c00472{left:299.200000pt;}
.xd4_c00472{left:300.666667pt;}
.x77_c00472{left:303.866667pt;}
.x98_c00472{left:304.800000pt;}
.x8d_c00472{left:308.266667pt;}
.x37_c00472{left:313.066667pt;}
.x1a_c00472{left:314.266667pt;}
.x129_c00472{left:315.733333pt;}
.xb7_c00472{left:316.800000pt;}
.xce_c00472{left:317.733333pt;}
.x62_c00472{left:319.733333pt;}
.xc0_c00472{left:320.800000pt;}
.xe5_c00472{left:322.533333pt;}
.xb0_c00472{left:324.400000pt;}
.x109_c00472{left:325.600000pt;}
.x10e_c00472{left:327.066667pt;}
.xa9_c00472{left:328.533333pt;}
.x120_c00472{left:330.000000pt;}
.x6_c00472{left:331.466667pt;}
.x6c_c00472{left:332.933333pt;}
.x101_c00472{left:334.533333pt;}
.x5b_c00472{left:335.600000pt;}
.x1b_c00472{left:336.666667pt;}
.xd8_c00472{left:338.666667pt;}
.x78_c00472{left:339.733333pt;}
.x12d_c00472{left:341.066667pt;}
.x43_c00472{left:344.533333pt;}
.x50_c00472{left:345.733333pt;}
.x84_c00472{left:347.466667pt;}
.x2b_c00472{left:348.400000pt;}
.x6d_c00472{left:350.533333pt;}
.x11b_c00472{left:353.066667pt;}
.xaa_c00472{left:354.400000pt;}
.xc1_c00472{left:356.666667pt;}
.x63_c00472{left:358.133333pt;}
.x99_c00472{left:360.400000pt;}
.xb8_c00472{left:362.533333pt;}
.xa1_c00472{left:364.133333pt;}
.x79_c00472{left:365.600000pt;}
.x51_c00472{left:366.800000pt;}
.x85_c00472{left:369.866667pt;}
.x38_c00472{left:372.533333pt;}
.xfb_c00472{left:374.400000pt;}
.xf2_c00472{left:375.866667pt;}
.xdc_c00472{left:378.933333pt;}
.x44_c00472{left:380.666667pt;}
.xc9_c00472{left:382.000000pt;}
.x64_c00472{left:384.000000pt;}
.x2c_c00472{left:385.466667pt;}
.x15_c00472{left:387.866667pt;}
.x7a_c00472{left:390.533333pt;}
.x7_c00472{left:392.533333pt;}
.xd9_c00472{left:397.200000pt;}
.x1c_c00472{left:398.400000pt;}
.xea_c00472{left:401.333333pt;}
.x2_c00472{left:402.266667pt;}
.xb1_c00472{left:403.733333pt;}
.xed_c00472{left:405.066667pt;}
.xe6_c00472{left:406.666667pt;}
.x2d_c00472{left:407.600000pt;}
.x11c_c00472{left:408.533333pt;}
.x122_c00472{left:409.466667pt;}
.x10f_c00472{left:410.533333pt;}
.xc2_c00472{left:412.400000pt;}
.x39_c00472{left:413.866667pt;}
.x16_c00472{left:415.733333pt;}
.xb9_c00472{left:416.666667pt;}
.x102_c00472{left:418.133333pt;}
.xdd_c00472{left:422.400000pt;}
.x65_c00472{left:425.333333pt;}
.x8_c00472{left:427.066667pt;}
.x45_c00472{left:428.933333pt;}
.x121_c00472{left:430.000000pt;}
.x11d_c00472{left:431.200000pt;}
.x10d_c00472{left:432.533333pt;}
.x9a_c00472{left:433.733333pt;}
.x86_c00472{left:435.200000pt;}
.xee_c00472{left:437.066667pt;}
.xeb_c00472{left:440.666667pt;}
.x10a_c00472{left:442.400000pt;}
.xb2_c00472{left:446.000000pt;}
.x1d_c00472{left:448.666667pt;}
.x5c_c00472{left:449.600000pt;}
.xc3_c00472{left:452.133333pt;}
.xf8_c00472{left:455.466667pt;}
.x12a_c00472{left:457.466667pt;}
.x3a_c00472{left:459.333333pt;}
.xf5_c00472{left:461.466667pt;}
.xa2_c00472{left:462.666667pt;}
.x6e_c00472{left:465.466667pt;}
.x1e_c00472{left:466.933333pt;}
.xde_c00472{left:467.866667pt;}
.x115_c00472{left:468.800000pt;}
.x87_c00472{left:469.866667pt;}
.x9b_c00472{left:472.133333pt;}
.x66_c00472{left:473.066667pt;}
.x127_c00472{left:474.133333pt;}
.xfc_c00472{left:476.533333pt;}
.xb3_c00472{left:478.266667pt;}
.x9_c00472{left:482.400000pt;}
.x52_c00472{left:485.466667pt;}
.x2e_c00472{left:486.666667pt;}
.xcf_c00472{left:489.333333pt;}
.x9c_c00472{left:490.400000pt;}
.x46_c00472{left:491.333333pt;}
.x7b_c00472{left:492.533333pt;}
.x3b_c00472{left:493.600000pt;}
.xab_c00472{left:496.533333pt;}
.x17_c00472{left:499.200000pt;}
.x116_c00472{left:501.066667pt;}
.x103_c00472{left:502.666667pt;}
.xb4_c00472{left:503.866667pt;}
.x1f_c00472{left:506.000000pt;}
.x5d_c00472{left:507.200000pt;}
.xf6_c00472{left:508.133333pt;}
.x2f_c00472{left:509.333333pt;}
.x47_c00472{left:510.800000pt;}
.xd5_c00472{left:513.466667pt;}
.x88_c00472{left:516.000000pt;}
.x20_c00472{left:516.933333pt;}
.xdf_c00472{left:518.133333pt;}
.xac_c00472{left:519.866667pt;}
.x6f_c00472{left:522.400000pt;}
.x53_c00472{left:524.800000pt;}
.x117_c00472{left:525.733333pt;}
.x8e_c00472{left:528.400000pt;}
.xec_c00472{left:529.333333pt;}
.xa_c00472{left:531.733333pt;}
.xc4_c00472{left:535.600000pt;}
.xca_c00472{left:537.200000pt;}
.x9d_c00472{left:539.333333pt;}
.xe0_c00472{left:540.266667pt;}
.x89_c00472{left:542.266667pt;}
.xd0_c00472{left:543.466667pt;}
.xad_c00472{left:545.466667pt;}
.x7c_c00472{left:549.466667pt;}
.xef_c00472{left:551.333333pt;}
.x104_c00472{left:552.533333pt;}
.x54_c00472{left:554.533333pt;}
.x3c_c00472{left:555.733333pt;}
.xcb_c00472{left:556.666667pt;}
.x8f_c00472{left:558.800000pt;}
.x30_c00472{left:561.866667pt;}
.x10b_c00472{left:562.933333pt;}
.x67_c00472{left:565.600000pt;}
.x21_c00472{left:567.200000pt;}
.xe1_c00472{left:569.066667pt;}
.x3d_c00472{left:570.133333pt;}
.xb_c00472{left:571.466667pt;}
.xba_c00472{left:572.533333pt;}
.xf7_c00472{left:574.400000pt;}
.xa3_c00472{left:576.000000pt;}
.x105_c00472{left:577.466667pt;}
.x7d_c00472{left:579.200000pt;}
.x5e_c00472{left:583.733333pt;}
.xc_c00472{left:589.333333pt;}
.x128_c00472{left:590.266667pt;}
.x9e_c00472{left:591.866667pt;}
.x112_c00472{left:592.933333pt;}
.xa4_c00472{left:593.866667pt;}
.x8a_c00472{left:595.066667pt;}
.xfd_c00472{left:597.733333pt;}
.x70_c00472{left:599.466667pt;}
.x31_c00472{left:600.533333pt;}
.x22_c00472{left:602.666667pt;}
.x3e_c00472{left:605.600000pt;}
.x68_c00472{left:606.933333pt;}
.x12b_c00472{left:608.933333pt;}
.xcc_c00472{left:611.066667pt;}
.x90_c00472{left:612.533333pt;}
.xd_c00472{left:614.266667pt;}
.xfe_c00472{left:616.000000pt;}
.x23_c00472{left:617.733333pt;}
.x118_c00472{left:618.933333pt;}
.xb5_c00472{left:621.866667pt;}
.x55_c00472{left:623.600000pt;}
.x32_c00472{left:625.466667pt;}
.xbb_c00472{left:627.200000pt;}
.x48_c00472{left:628.533333pt;}
.x91_c00472{left:630.400000pt;}
.x110_c00472{left:631.333333pt;}
.x123_c00472{left:634.400000pt;}
.x69_c00472{left:636.666667pt;}
.x7e_c00472{left:638.400000pt;}
.xda_c00472{left:643.600000pt;}
.x119_c00472{left:646.800000pt;}
.x24_c00472{left:648.800000pt;}
.x9f_c00472{left:650.133333pt;}
.x11e_c00472{left:651.333333pt;}
.xd6_c00472{left:652.266667pt;}
.x49_c00472{left:653.466667pt;}
.x3f_c00472{left:654.533333pt;}
.xf0_c00472{left:656.933333pt;}
.x5f_c00472{left:658.000000pt;}
.x106_c00472{left:661.333333pt;}
.x7f_c00472{left:664.000000pt;}
.xe_c00472{left:667.066667pt;}
.xbc_c00472{left:670.666667pt;}
.x60_c00472{left:673.066667pt;}
.x92_c00472{left:674.533333pt;}
.x71_c00472{left:676.266667pt;}
.x25_c00472{left:679.466667pt;}
.x56_c00472{left:680.933333pt;}
.xe2_c00472{left:683.600000pt;}
.x4a_c00472{left:684.533333pt;}
.xf9_c00472{left:685.466667pt;}
.xc5_c00472{left:687.600000pt;}
.x40_c00472{left:689.466667pt;}
.xd1_c00472{left:690.933333pt;}
.x93_c00472{left:692.800000pt;}
.x11f_c00472{left:694.533333pt;}
.xbd_c00472{left:696.266667pt;}
.x72_c00472{left:698.666667pt;}
.xe3_c00472{left:700.933333pt;}
.x4b_c00472{left:702.800000pt;}
.xa5_c00472{left:706.800000pt;}
.xb6_c00472{left:708.666667pt;}
.x8b_c00472{left:709.866667pt;}
.xf_c00472{left:711.866667pt;}
.x124_c00472{left:714.400000pt;}
.xa0_c00472{left:719.600000pt;}
.x26_c00472{left:720.800000pt;}
}





/* 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_c00473 {
    display:none;
  }
  .loading-indicator_c00473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00473 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_c00473 { 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_c00473" -> "#page-container .classname_c00473")
 */
.pf_c00473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00473 { /* 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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00473 { /* 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_c00473 { /* 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_c00473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00473 {overflow:visible;}
  }
}
.c_c00473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00473 { /* 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_c00473:after { /* webkit #35443 */
  content: '';
}
.t_c00473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00473 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 */
}
.__c00473 { /* 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_c00473 { /* info for Javascript */
  display:none;
}
.l_c00473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00473: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_c00473 {
    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_c00473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00473.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_c00473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00473{font-family:sans-serif;visibility:hidden;}
.sc__c00473{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
}
.y0_c00473{bottom:0.000000px;}
.h1_c00473{height:1166.250000px;}
.h0_c00473{height:1166.400056px;}
.w0_c00473{width:920.879975px;}
.w1_c00473{width:921.000000px;}
.x0_c00473{left:0.000000px;}
@media print{
.y0_c00473{bottom:0.000000pt;}
.h1_c00473{height:1036.666667pt;}
.h0_c00473{height:1036.800049pt;}
.w0_c00473{width:818.559977pt;}
.w1_c00473{width:818.666667pt;}
.x0_c00473{left:0.000000pt;}
}





/* 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_c00474 {
    display:none;
  }
  .loading-indicator_c00474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00474 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_c00474 { 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_c00474" -> "#page-container .classname_c00474")
 */
.pf_c00474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00474 { /* 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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00474 { /* 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_c00474 { /* 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_c00474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00474 {overflow:visible;}
  }
}
.c_c00474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00474 { /* 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_c00474:after { /* webkit #35443 */
  content: '';
}
.t_c00474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00474 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 */
}
.__c00474 { /* 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_c00474 { /* info for Javascript */
  display:none;
}
.l_c00474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00474: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_c00474 {
    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_c00474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00474.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_c00474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00474;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb_c00474{transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024000,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.me_c00474{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m4_c00474{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m0_c00474{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.ls0_c00474{letter-spacing:0.000000px;}
.sc__c00474{text-shadow:none;}
.sc0_c00474{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__c00474{-webkit-text-stroke:0px transparent;}
.sc0_c00474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00474{word-spacing:0.000000px;}
.fc0_c00474{color:transparent;}
.fs0_c00474{font-size:42.000000px;}
.fs1_c00474{font-size:60.000000px;}
.y0_c00474{bottom:0.000000px;}
.y3_c00474{bottom:27.000000px;}
.y2_c00474{bottom:39.900000px;}
.y1_c00474{bottom:1117.500000px;}
.h2_c00474{height:42.000000px;}
.h3_c00474{height:60.000000px;}
.h1_c00474{height:1166.250000px;}
.h0_c00474{height:1166.400056px;}
.w0_c00474{width:920.879975px;}
.w1_c00474{width:921.000000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:58.350000px;}
.x8_c00474{left:60.150000px;}
.x2_c00474{left:108.000000px;}
.x9_c00474{left:112.350000px;}
.x3_c00474{left:154.050000px;}
.xa_c00474{left:157.350000px;}
.x4_c00474{left:202.350000px;}
.xb_c00474{left:207.450000px;}
.x5_c00474{left:251.700000px;}
.xc_c00474{left:255.000000px;}
.x6_c00474{left:299.550000px;}
.xd_c00474{left:304.350000px;}
.x7_c00474{left:347.850000px;}
.xe_c00474{left:351.150000px;}
.xf_c00474{left:834.900000px;}
.x10_c00474{left:843.900000px;}
.x11_c00474{left:855.450000px;}
.x12_c00474{left:870.900000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs0_c00474{font-size:37.333333pt;}
.fs1_c00474{font-size:53.333333pt;}
.y0_c00474{bottom:0.000000pt;}
.y3_c00474{bottom:24.000000pt;}
.y2_c00474{bottom:35.466667pt;}
.y1_c00474{bottom:993.333333pt;}
.h2_c00474{height:37.333333pt;}
.h3_c00474{height:53.333333pt;}
.h1_c00474{height:1036.666667pt;}
.h0_c00474{height:1036.800049pt;}
.w0_c00474{width:818.559977pt;}
.w1_c00474{width:818.666667pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:51.866667pt;}
.x8_c00474{left:53.466667pt;}
.x2_c00474{left:96.000000pt;}
.x9_c00474{left:99.866667pt;}
.x3_c00474{left:136.933333pt;}
.xa_c00474{left:139.866667pt;}
.x4_c00474{left:179.866667pt;}
.xb_c00474{left:184.400000pt;}
.x5_c00474{left:223.733333pt;}
.xc_c00474{left:226.666667pt;}
.x6_c00474{left:266.266667pt;}
.xd_c00474{left:270.533333pt;}
.x7_c00474{left:309.200000pt;}
.xe_c00474{left:312.133333pt;}
.xf_c00474{left:742.133333pt;}
.x10_c00474{left:750.133333pt;}
.x11_c00474{left:760.400000pt;}
.x12_c00474{left:774.133333pt;}
}





/* 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_c00475 {
    display:none;
  }
  .loading-indicator_c00475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00475 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_c00475 { 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_c00475" -> "#page-container .classname_c00475")
 */
.pf_c00475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00475 { /* 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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00475 { /* 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_c00475 { /* 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_c00475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00475 {overflow:visible;}
  }
}
.c_c00475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00475 { /* 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_c00475:after { /* webkit #35443 */
  content: '';
}
.t_c00475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00475 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 */
}
.__c00475 { /* 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_c00475 { /* info for Javascript */
  display:none;
}
.l_c00475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00475: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_c00475 {
    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_c00475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00475.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_c00475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.000000;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;}
.mc_c00475{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m0_c00475{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m6_c00475{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3_c00475{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma_c00475{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m9_c00475{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m8_c00475{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m11_c00475{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m2_c00475{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00475{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mb_c00475{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c00475{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m1_c00475{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00475{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.mf_c00475{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m7_c00475{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m10_c00475{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md_c00475{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{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__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:0.000000px;}
.fc0_c00475{color:transparent;}
.fs0_c00475{font-size:36.000000px;}
.y0_c00475{bottom:0.000000px;}
.y3_c00475{bottom:34.200000px;}
.y4_c00475{bottom:34.950000px;}
.y2_c00475{bottom:95.100000px;}
.y1_c00475{bottom:1110.900000px;}
.h2_c00475{height:36.000000px;}
.h1_c00475{height:1166.250000px;}
.h0_c00475{height:1166.400056px;}
.w0_c00475{width:920.879975px;}
.w1_c00475{width:921.000000px;}
.x0_c00475{left:0.000000px;}
.x10_c00475{left:7.200000px;}
.x11_c00475{left:55.800000px;}
.x12_c00475{left:99.750000px;}
.x13_c00475{left:132.900000px;}
.x14_c00475{left:196.200000px;}
.x1_c00475{left:198.300000px;}
.x15_c00475{left:245.100000px;}
.x2_c00475{left:246.600000px;}
.x16_c00475{left:293.400000px;}
.x3_c00475{left:294.900000px;}
.x17_c00475{left:339.900000px;}
.x4_c00475{left:342.750000px;}
.x18_c00475{left:387.000000px;}
.x5_c00475{left:388.050000px;}
.x6_c00475{left:436.650000px;}
.x19_c00475{left:483.000000px;}
.x7_c00475{left:485.250000px;}
.x1a_c00475{left:533.100000px;}
.x8_c00475{left:534.600000px;}
.x9_c00475{left:581.700000px;}
.x1b_c00475{left:628.950000px;}
.xa_c00475{left:630.000000px;}
.x1c_c00475{left:677.550000px;}
.xb_c00475{left:678.600000px;}
.xc_c00475{left:724.350000px;}
.x1d_c00475{left:771.900000px;}
.xd_c00475{left:772.950000px;}
.xe_c00475{left:820.050000px;}
.xf_c00475{left:874.500000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs0_c00475{font-size:32.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y3_c00475{bottom:30.400000pt;}
.y4_c00475{bottom:31.066667pt;}
.y2_c00475{bottom:84.533333pt;}
.y1_c00475{bottom:987.466667pt;}
.h2_c00475{height:32.000000pt;}
.h1_c00475{height:1036.666667pt;}
.h0_c00475{height:1036.800049pt;}
.w0_c00475{width:818.559977pt;}
.w1_c00475{width:818.666667pt;}
.x0_c00475{left:0.000000pt;}
.x10_c00475{left:6.400000pt;}
.x11_c00475{left:49.600000pt;}
.x12_c00475{left:88.666667pt;}
.x13_c00475{left:118.133333pt;}
.x14_c00475{left:174.400000pt;}
.x1_c00475{left:176.266667pt;}
.x15_c00475{left:217.866667pt;}
.x2_c00475{left:219.200000pt;}
.x16_c00475{left:260.800000pt;}
.x3_c00475{left:262.133333pt;}
.x17_c00475{left:302.133333pt;}
.x4_c00475{left:304.666667pt;}
.x18_c00475{left:344.000000pt;}
.x5_c00475{left:344.933333pt;}
.x6_c00475{left:388.133333pt;}
.x19_c00475{left:429.333333pt;}
.x7_c00475{left:431.333333pt;}
.x1a_c00475{left:473.866667pt;}
.x8_c00475{left:475.200000pt;}
.x9_c00475{left:517.066667pt;}
.x1b_c00475{left:559.066667pt;}
.xa_c00475{left:560.000000pt;}
.x1c_c00475{left:602.266667pt;}
.xb_c00475{left:603.200000pt;}
.xc_c00475{left:643.866667pt;}
.x1d_c00475{left:686.133333pt;}
.xd_c00475{left:687.066667pt;}
.xe_c00475{left:728.933333pt;}
.xf_c00475{left:777.333333pt;}
}





/* 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_c00476 {
    display:none;
  }
  .loading-indicator_c00476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00476 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_c00476 { 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_c00476" -> "#page-container .classname_c00476")
 */
.pf_c00476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00476 { /* 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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00476 { /* 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_c00476 { /* 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_c00476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00476 {overflow:visible;}
  }
}
.c_c00476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00476 { /* 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_c00476:after { /* webkit #35443 */
  content: '';
}
.t_c00476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00476 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 */
}
.__c00476 { /* 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_c00476 { /* info for Javascript */
  display:none;
}
.l_c00476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00476: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_c00476 {
    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_c00476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00476.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_c00476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00476;src:url('chunks/assets/font_cafd4abc9cd7162d2827cdeb.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.000000;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_c00476{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls0_c00476{letter-spacing:0.000000px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{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__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:0.000000px;}
.fc0_c00476{color:transparent;}
.fs0_c00476{font-size:84.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:1115.700000px;}
.h2_c00476{height:84.000000px;}
.h1_c00476{height:1166.250000px;}
.h0_c00476{height:1166.400056px;}
.w0_c00476{width:920.879975px;}
.w1_c00476{width:921.000000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:859.350000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs0_c00476{font-size:74.666667pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:991.733333pt;}
.h2_c00476{height:74.666667pt;}
.h1_c00476{height:1036.666667pt;}
.h0_c00476{height:1036.800049pt;}
.w0_c00476{width:818.559977pt;}
.w1_c00476{width:818.666667pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:763.866667pt;}
}





/* 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_c00477 {
    display:none;
  }
  .loading-indicator_c00477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00477 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_c00477 { 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_c00477" -> "#page-container .classname_c00477")
 */
.pf_c00477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00477 { /* 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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00477 { /* 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_c00477 { /* 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_c00477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00477 {overflow:visible;}
  }
}
.c_c00477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00477 { /* 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_c00477:after { /* webkit #35443 */
  content: '';
}
.t_c00477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00477 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 */
}
.__c00477 { /* 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_c00477 { /* info for Javascript */
  display:none;
}
.l_c00477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00477: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_c00477 {
    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_c00477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00477.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_c00477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00477;src:url('chunks/assets/font_8d220fc6cb305cca524a3af1.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.000000;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;}
.m14_c00477{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mab_c00477{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m28_c00477{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00477{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00477{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m29_c00477{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m21_c00477{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00477{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m60_c00477{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m74_c00477{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m80_c00477{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00477{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.md_c00477{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m88_c00477{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m39_c00477{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m62_c00477{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00477{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m26_c00477{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00477{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00477{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m42_c00477{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00477{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m53_c00477{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m65_c00477{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00477{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m45_c00477{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m68_c00477{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00477{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00477{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m67_c00477{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00477{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m22_c00477{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00477{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00477{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m44_c00477{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00477{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m58_c00477{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m11_c00477{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00477{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m17_c00477{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00477{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00477{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00477{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00477{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m77_c00477{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00477{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m23_c00477{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m92_c00477{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00477{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m86_c00477{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m24_c00477{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00477{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m64_c00477{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m15_c00477{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6_c00477{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m55_c00477{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m78_c00477{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00477{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00477{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m66_c00477{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00477{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00477{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mba_c00477{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00477{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5_c00477{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m85_c00477{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00477{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00477{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m75_c00477{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m79_c00477{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m34_c00477{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m59_c00477{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m84_c00477{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m13_c00477{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00477{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m43_c00477{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m33_c00477{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m10_c00477{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m37_c00477{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00477{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m20_c00477{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m7_c00477{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m63_c00477{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m81_c00477{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00477{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m38_c00477{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00477{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00477{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.mb_c00477{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m16_c00477{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.mc_c00477{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m31_c00477{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00477{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m49_c00477{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m90_c00477{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m32_c00477{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m36_c00477{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m89_c00477{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m46_c00477{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00477{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m47_c00477{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00477{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m41_c00477{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m96_c00477{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m71_c00477{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00477{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00477{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m91_c00477{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m35_c00477{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m72_c00477{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00477{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00477{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mf_c00477{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m82_c00477{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00477{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00477{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00477{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00477{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00477{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19_c00477{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00477{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27_c00477{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00477{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00477{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00477{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma_c00477{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.maf_c00477{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m73_c00477{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00477{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00477{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00477{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m40_c00477{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m54_c00477{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00477{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m48_c00477{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m30_c00477{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00477{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00477{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m51_c00477{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8_c00477{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.maa_c00477{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m12_c00477{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m69_c00477{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m95_c00477{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m50_c00477{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00477{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00477{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m18_c00477{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m76_c00477{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m93_c00477{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00477{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00477{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00477{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m56_c00477{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00477{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m97_c00477{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m57_c00477{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00477{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00477{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m70_c00477{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m2_c00477{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00477{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m99_c00477{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00477{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m61_c00477{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00477{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m9_c00477{transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00477{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00477{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m98_c00477{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00477{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00477{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00477{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mae_c00477{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00477{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mad_c00477{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00477{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.mac_c00477{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m52_c00477{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00477{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m83_c00477{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00477{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1_c00477{transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00477{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00477{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m0_c00477{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m87_c00477{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.m94_c00477{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00477{vertical-align:0.000000px;}
.ls0_c00477{letter-spacing:0.000000px;}
.sc__c00477{text-shadow:none;}
.sc0_c00477{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__c00477{-webkit-text-stroke:0px transparent;}
.sc0_c00477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00477{word-spacing:-1.262391px;}
.ws4_c00477{word-spacing:-0.531915px;}
.ws8_c00477{word-spacing:0.000000px;}
.ws2_c00477{word-spacing:1.250000px;}
.ws1_c00477{word-spacing:2.183187px;}
.ws5_c00477{word-spacing:5.063291px;}
.ws0_c00477{word-spacing:7.380952px;}
.ws3_c00477{word-spacing:8.611111px;}
.ws7_c00477{word-spacing:9.722222px;}
.fc0_c00477{color:transparent;}
.fs0_c00477{font-size:42.000000px;}
.fs1_c00477{font-size:60.000000px;}
.y0_c00477{bottom:0.000000px;}
.y3e_c00477{bottom:141.900000px;}
.y3d_c00477{bottom:169.200000px;}
.y3c_c00477{bottom:199.500000px;}
.y32_c00477{bottom:200.250000px;}
.y3b_c00477{bottom:214.200000px;}
.y31_c00477{bottom:214.950000px;}
.y3a_c00477{bottom:229.350000px;}
.y30_c00477{bottom:230.100000px;}
.y2f_c00477{bottom:244.200000px;}
.y39_c00477{bottom:258.600000px;}
.y2e_c00477{bottom:258.900000px;}
.y38_c00477{bottom:273.300000px;}
.y2d_c00477{bottom:273.600000px;}
.y37_c00477{bottom:286.950000px;}
.y2c_c00477{bottom:288.000000px;}
.y2b_c00477{bottom:302.700000px;}
.y2a_c00477{bottom:317.100000px;}
.y29_c00477{bottom:331.200000px;}
.y28_c00477{bottom:346.200000px;}
.y36_c00477{bottom:346.350000px;}
.y27_c00477{bottom:360.900000px;}
.y21_c00477{bottom:361.800000px;}
.y35_c00477{bottom:374.700000px;}
.y26_c00477{bottom:375.600000px;}
.y25_c00477{bottom:390.000000px;}
.y20_c00477{bottom:391.350000px;}
.y34_c00477{bottom:404.250000px;}
.y24_c00477{bottom:404.700000px;}
.y33_c00477{bottom:418.650000px;}
.y23_c00477{bottom:419.400000px;}
.y22_c00477{bottom:436.350000px;}
.y1f_c00477{bottom:436.650000px;}
.y1e_c00477{bottom:467.250000px;}
.y1d_c00477{bottom:487.800000px;}
.y1c_c00477{bottom:507.600000px;}
.y1b_c00477{bottom:527.400000px;}
.y1a_c00477{bottom:547.800000px;}
.y19_c00477{bottom:567.600000px;}
.y18_c00477{bottom:587.400000px;}
.y17_c00477{bottom:607.500000px;}
.y16_c00477{bottom:627.300000px;}
.y15_c00477{bottom:647.400000px;}
.y14_c00477{bottom:667.500000px;}
.y13_c00477{bottom:687.300000px;}
.y12_c00477{bottom:707.400000px;}
.y11_c00477{bottom:727.650000px;}
.y10_c00477{bottom:747.750000px;}
.yf_c00477{bottom:767.850000px;}
.ye_c00477{bottom:787.650000px;}
.yd_c00477{bottom:807.750000px;}
.yc_c00477{bottom:827.850000px;}
.yb_c00477{bottom:847.650000px;}
.ya_c00477{bottom:867.750000px;}
.y9_c00477{bottom:888.300000px;}
.y8_c00477{bottom:908.400000px;}
.y7_c00477{bottom:928.200000px;}
.y6_c00477{bottom:948.300000px;}
.y5_c00477{bottom:968.100000px;}
.y4_c00477{bottom:988.650000px;}
.y3_c00477{bottom:1008.750000px;}
.y1_c00477{bottom:1046.850000px;}
.y2_c00477{bottom:1110.600000px;}
.h2_c00477{height:42.000000px;}
.h3_c00477{height:60.000000px;}
.h1_c00477{height:1166.250000px;}
.h0_c00477{height:1166.400056px;}
.w0_c00477{width:920.879975px;}
.w1_c00477{width:921.000000px;}
.x0_c00477{left:0.000000px;}
.x4_c00477{left:39.600000px;}
.xf2_c00477{left:108.900000px;}
.xb5_c00477{left:110.100000px;}
.x5_c00477{left:111.300000px;}
.xbe_c00477{left:129.600000px;}
.xa6_c00477{left:133.350000px;}
.x72_c00477{left:136.350000px;}
.x8d_c00477{left:137.850000px;}
.x6_c00477{left:139.350000px;}
.xec_c00477{left:140.400000px;}
.x22_c00477{left:142.200000px;}
.xd9_c00477{left:143.250000px;}
.x57_c00477{left:149.550000px;}
.xcd_c00477{left:153.150000px;}
.xf3_c00477{left:155.400000px;}
.xbf_c00477{left:156.600000px;}
.xb6_c00477{left:157.950000px;}
.x10a_c00477{left:162.300000px;}
.x3e_c00477{left:164.550000px;}
.x31_c00477{left:166.650000px;}
.x81_c00477{left:168.300000px;}
.xb7_c00477{left:169.500000px;}
.xed_c00477{left:170.700000px;}
.x23_c00477{left:174.300000px;}
.xfe_c00477{left:175.350000px;}
.x13_c00477{left:177.750000px;}
.x9d_c00477{left:180.150000px;}
.x7_c00477{left:181.800000px;}
.x8e_c00477{left:183.600000px;}
.xe6_c00477{left:186.000000px;}
.xda_c00477{left:187.800000px;}
.x95_c00477{left:189.750000px;}
.xf4_c00477{left:192.150000px;}
.x3f_c00477{left:195.900000px;}
.x65_c00477{left:197.250000px;}
.x9e_c00477{left:199.650000px;}
.x58_c00477{left:202.050000px;}
.xc6_c00477{left:203.850000px;}
.x14_c00477{left:206.550000px;}
.xce_c00477{left:207.900000px;}
.x8_c00477{left:209.550000px;}
.x10b_c00477{left:215.100000px;}
.x66_c00477{left:217.350000px;}
.x4a_c00477{left:218.850000px;}
.xe0_c00477{left:222.900000px;}
.x73_c00477{left:224.100000px;}
.x9_c00477{left:225.750000px;}
.xee_c00477{left:227.250000px;}
.x24_c00477{left:230.850000px;}
.x82_c00477{left:232.350000px;}
.x32_c00477{left:236.100000px;}
.x40_c00477{left:240.150000px;}
.xc0_c00477{left:246.150000px;}
.x74_c00477{left:250.350000px;}
.x96_c00477{left:252.750000px;}
.x15_c00477{left:255.150000px;}
.x33_c00477{left:259.500000px;}
.x41_c00477{left:261.000000px;}
.x4b_c00477{left:263.550000px;}
.xe7_c00477{left:268.800000px;}
.x83_c00477{left:269.850000px;}
.xf9_c00477{left:273.600000px;}
.x75_c00477{left:275.850000px;}
.x59_c00477{left:277.200000px;}
.xf5_c00477{left:278.250000px;}
.xc7_c00477{left:279.750000px;}
.x67_c00477{left:281.550000px;}
.xa_c00477{left:286.650000px;}
.x42_c00477{left:289.800000px;}
.x25_c00477{left:294.150000px;}
.xa7_c00477{left:297.150000px;}
.xcf_c00477{left:301.950000px;}
.x4c_c00477{left:304.950000px;}
.x84_c00477{left:306.600000px;}
.xe1_c00477{left:307.950000px;}
.xc8_c00477{left:310.050000px;}
.x26_c00477{left:312.150000px;}
.x97_c00477{left:315.750000px;}
.xef_c00477{left:318.600000px;}
.xe8_c00477{left:320.700000px;}
.x4d_c00477{left:322.950000px;}
.x112_c00477{left:324.000000px;}
.xc1_c00477{left:326.850000px;}
.xa8_c00477{left:329.250000px;}
.x102_c00477{left:331.800000px;}
.x16_c00477{left:332.850000px;}
.xb0_c00477{left:334.050000px;}
.x5a_c00477{left:337.650000px;}
.xe2_c00477{left:340.650000px;}
.x17_c00477{left:343.950000px;}
.x34_c00477{left:345.150000px;}
.xb_c00477{left:347.100000px;}
.x8f_c00477{left:350.550000px;}
.x4e_c00477{left:352.500000px;}
.xb1_c00477{left:354.150000px;}
.x101_c00477{left:357.450000px;}
.x85_c00477{left:360.600000px;}
.xf6_c00477{left:362.550000px;}
.x76_c00477{left:366.150000px;}
.x1_c00477{left:368.250000px;}
.x90_c00477{left:370.050000px;}
.x27_c00477{left:374.850000px;}
.xdb_c00477{left:376.500000px;}
.x35_c00477{left:379.350000px;}
.x77_c00477{left:381.300000px;}
.x18_c00477{left:383.850000px;}
.xa9_c00477{left:386.400000px;}
.x100_c00477{left:387.450000px;}
.x86_c00477{left:389.400000px;}
.xc2_c00477{left:390.900000px;}
.xff_c00477{left:393.150000px;}
.x5b_c00477{left:396.000000px;}
.xd0_c00477{left:397.050000px;}
.x103_c00477{left:398.400000px;}
.x43_c00477{left:400.950000px;}
.xc_c00477{left:403.350000px;}
.x78_c00477{left:405.750000px;}
.x28_c00477{left:408.750000px;}
.x4f_c00477{left:409.800000px;}
.x68_c00477{left:414.000000px;}
.x5c_c00477{left:417.300000px;}
.xe9_c00477{left:418.650000px;}
.xb8_c00477{left:419.700000px;}
.xc3_c00477{left:422.250000px;}
.x87_c00477{left:423.900000px;}
.x91_c00477{left:427.200000px;}
.xfa_c00477{left:428.400000px;}
.x69_c00477{left:429.450000px;}
.x44_c00477{left:431.850000px;}
.xaa_c00477{left:435.750000px;}
.xd1_c00477{left:436.950000px;}
.x36_c00477{left:438.000000px;}
.x79_c00477{left:439.200000px;}
.xb9_c00477{left:443.850000px;}
.x19_c00477{left:446.100000px;}
.xd4_c00477{left:449.400000px;}
.xd_c00477{left:451.650000px;}
.x10c_c00477{left:453.750000px;}
.x7a_c00477{left:456.450000px;}
.x2_c00477{left:459.000000px;}
.x29_c00477{left:462.000000px;}
.x6a_c00477{left:468.300000px;}
.x50_c00477{left:469.950000px;}
.x1a_c00477{left:471.000000px;}
.x5d_c00477{left:474.900000px;}
.x7b_c00477{left:475.950000px;}
.x88_c00477{left:477.900000px;}
.xdc_c00477{left:481.800000px;}
.xea_c00477{left:483.450000px;}
.xb2_c00477{left:486.300000px;}
.x37_c00477{left:488.100000px;}
.xf7_c00477{left:490.050000px;}
.xba_c00477{left:491.700000px;}
.xe_c00477{left:493.350000px;}
.x45_c00477{left:496.650000px;}
.x51_c00477{left:498.750000px;}
.x1b_c00477{left:500.550000px;}
.x5e_c00477{left:501.600000px;}
.x92_c00477{left:504.300000px;}
.xbb_c00477{left:506.100000px;}
.xab_c00477{left:507.450000px;}
.x10d_c00477{left:508.800000px;}
.x98_c00477{left:513.150000px;}
.x2a_c00477{left:519.300000px;}
.xf_c00477{left:521.100000px;}
.x1c_c00477{left:522.450000px;}
.x89_c00477{left:523.650000px;}
.x46_c00477{left:525.150000px;}
.x7c_c00477{left:527.850000px;}
.x38_c00477{left:534.900000px;}
.xbc_c00477{left:537.450000px;}
.xc9_c00477{left:539.850000px;}
.x113_c00477{left:541.800000px;}
.xc4_c00477{left:543.150000px;}
.x6b_c00477{left:544.200000px;}
.x52_c00477{left:546.300000px;}
.x5f_c00477{left:548.100000px;}
.xf0_c00477{left:549.600000px;}
.x1d_c00477{left:551.550000px;}
.xd5_c00477{left:553.350000px;}
.x7d_c00477{left:556.350000px;}
.x108_c00477{left:558.300000px;}
.xfb_c00477{left:559.500000px;}
.xdd_c00477{left:563.850000px;}
.x6c_c00477{left:565.050000px;}
.xd2_c00477{left:566.100000px;}
.x60_c00477{left:568.950000px;}
.xf8_c00477{left:570.300000px;}
.x9f_c00477{left:571.500000px;}
.xac_c00477{left:573.000000px;}
.x7e_c00477{left:574.050000px;}
.x39_c00477{left:575.250000px;}
.xc5_c00477{left:577.050000px;}
.x47_c00477{left:578.850000px;}
.x53_c00477{left:580.200000px;}
.xca_c00477{left:582.000000px;}
.x10_c00477{left:586.950000px;}
.xe3_c00477{left:588.750000px;}
.x2b_c00477{left:591.000000px;}
.xeb_c00477{left:592.950000px;}
.x1e_c00477{left:594.450000px;}
.x6d_c00477{left:595.650000px;}
.x10e_c00477{left:597.300000px;}
.x48_c00477{left:598.650000px;}
.xa0_c00477{left:600.600000px;}
.xad_c00477{left:602.850000px;}
.x105_c00477{left:606.900000px;}
.x54_c00477{left:609.000000px;}
.x1f_c00477{left:611.700000px;}
.x107_c00477{left:613.500000px;}
.x6e_c00477{left:615.150000px;}
.x106_c00477{left:618.750000px;}
.xd6_c00477{left:621.000000px;}
.xde_c00477{left:622.050000px;}
.x61_c00477{left:623.700000px;}
.xd3_c00477{left:625.800000px;}
.x8a_c00477{left:628.200000px;}
.xa1_c00477{left:629.400000px;}
.xcb_c00477{left:631.050000px;}
.x3a_c00477{left:634.950000px;}
.x2c_c00477{left:637.500000px;}
.x99_c00477{left:639.150000px;}
.x6f_c00477{left:642.150000px;}
.x93_c00477{left:643.950000px;}
.x10f_c00477{left:645.900000px;}
.x20_c00477{left:646.950000px;}
.xdf_c00477{left:648.000000px;}
.xa2_c00477{left:649.500000px;}
.x62_c00477{left:654.000000px;}
.x2d_c00477{left:657.000000px;}
.x9a_c00477{left:659.250000px;}
.xd7_c00477{left:660.600000px;}
.x109_c00477{left:661.650000px;}
.x7f_c00477{left:663.000000px;}
.x49_c00477{left:668.100000px;}
.xb3_c00477{left:669.450000px;}
.x8b_c00477{left:672.150000px;}
.x110_c00477{left:674.700000px;}
.x11_c00477{left:676.650000px;}
.x104_c00477{left:679.650000px;}
.x21_c00477{left:682.200000px;}
.x9b_c00477{left:683.700000px;}
.xae_c00477{left:685.650000px;}
.x63_c00477{left:687.900000px;}
.xfc_c00477{left:689.400000px;}
.xa3_c00477{left:690.900000px;}
.x2e_c00477{left:691.950000px;}
.xe4_c00477{left:693.900000px;}
.x3b_c00477{left:695.100000px;}
.x8c_c00477{left:696.600000px;}
.x12_c00477{left:701.850000px;}
.x70_c00477{left:703.050000px;}
.xbd_c00477{left:705.150000px;}
.x80_c00477{left:706.500000px;}
.xa4_c00477{left:709.950000px;}
.x55_c00477{left:713.400000px;}
.xb4_c00477{left:715.950000px;}
.x9c_c00477{left:717.900000px;}
.xe5_c00477{left:719.850000px;}
.x71_c00477{left:721.350000px;}
.x2f_c00477{left:722.850000px;}
.x94_c00477{left:726.000000px;}
.x64_c00477{left:727.200000px;}
.xd8_c00477{left:729.000000px;}
.xa5_c00477{left:735.150000px;}
.x3c_c00477{left:737.250000px;}
.x30_c00477{left:742.650000px;}
.xf1_c00477{left:744.000000px;}
.xcc_c00477{left:746.100000px;}
.x3_c00477{left:750.600000px;}
.x111_c00477{left:753.600000px;}
.x3d_c00477{left:757.050000px;}
.xaf_c00477{left:758.100000px;}
.x56_c00477{left:760.500000px;}
.xfd_c00477{left:763.500000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws6_c00477{word-spacing:-1.122125pt;}
.ws4_c00477{word-spacing:-0.472813pt;}
.ws8_c00477{word-spacing:0.000000pt;}
.ws2_c00477{word-spacing:1.111111pt;}
.ws1_c00477{word-spacing:1.940611pt;}
.ws5_c00477{word-spacing:4.500703pt;}
.ws0_c00477{word-spacing:6.560847pt;}
.ws3_c00477{word-spacing:7.654321pt;}
.ws7_c00477{word-spacing:8.641975pt;}
.fs0_c00477{font-size:37.333333pt;}
.fs1_c00477{font-size:53.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y3e_c00477{bottom:126.133333pt;}
.y3d_c00477{bottom:150.400000pt;}
.y3c_c00477{bottom:177.333333pt;}
.y32_c00477{bottom:178.000000pt;}
.y3b_c00477{bottom:190.400000pt;}
.y31_c00477{bottom:191.066667pt;}
.y3a_c00477{bottom:203.866667pt;}
.y30_c00477{bottom:204.533333pt;}
.y2f_c00477{bottom:217.066667pt;}
.y39_c00477{bottom:229.866667pt;}
.y2e_c00477{bottom:230.133333pt;}
.y38_c00477{bottom:242.933333pt;}
.y2d_c00477{bottom:243.200000pt;}
.y37_c00477{bottom:255.066667pt;}
.y2c_c00477{bottom:256.000000pt;}
.y2b_c00477{bottom:269.066667pt;}
.y2a_c00477{bottom:281.866667pt;}
.y29_c00477{bottom:294.400000pt;}
.y28_c00477{bottom:307.733333pt;}
.y36_c00477{bottom:307.866667pt;}
.y27_c00477{bottom:320.800000pt;}
.y21_c00477{bottom:321.600000pt;}
.y35_c00477{bottom:333.066667pt;}
.y26_c00477{bottom:333.866667pt;}
.y25_c00477{bottom:346.666667pt;}
.y20_c00477{bottom:347.866667pt;}
.y34_c00477{bottom:359.333333pt;}
.y24_c00477{bottom:359.733333pt;}
.y33_c00477{bottom:372.133333pt;}
.y23_c00477{bottom:372.800000pt;}
.y22_c00477{bottom:387.866667pt;}
.y1f_c00477{bottom:388.133333pt;}
.y1e_c00477{bottom:415.333333pt;}
.y1d_c00477{bottom:433.600000pt;}
.y1c_c00477{bottom:451.200000pt;}
.y1b_c00477{bottom:468.800000pt;}
.y1a_c00477{bottom:486.933333pt;}
.y19_c00477{bottom:504.533333pt;}
.y18_c00477{bottom:522.133333pt;}
.y17_c00477{bottom:540.000000pt;}
.y16_c00477{bottom:557.600000pt;}
.y15_c00477{bottom:575.466667pt;}
.y14_c00477{bottom:593.333333pt;}
.y13_c00477{bottom:610.933333pt;}
.y12_c00477{bottom:628.800000pt;}
.y11_c00477{bottom:646.800000pt;}
.y10_c00477{bottom:664.666667pt;}
.yf_c00477{bottom:682.533333pt;}
.ye_c00477{bottom:700.133333pt;}
.yd_c00477{bottom:718.000000pt;}
.yc_c00477{bottom:735.866667pt;}
.yb_c00477{bottom:753.466667pt;}
.ya_c00477{bottom:771.333333pt;}
.y9_c00477{bottom:789.600000pt;}
.y8_c00477{bottom:807.466667pt;}
.y7_c00477{bottom:825.066667pt;}
.y6_c00477{bottom:842.933333pt;}
.y5_c00477{bottom:860.533333pt;}
.y4_c00477{bottom:878.800000pt;}
.y3_c00477{bottom:896.666667pt;}
.y1_c00477{bottom:930.533333pt;}
.y2_c00477{bottom:987.200000pt;}
.h2_c00477{height:37.333333pt;}
.h3_c00477{height:53.333333pt;}
.h1_c00477{height:1036.666667pt;}
.h0_c00477{height:1036.800049pt;}
.w0_c00477{width:818.559977pt;}
.w1_c00477{width:818.666667pt;}
.x0_c00477{left:0.000000pt;}
.x4_c00477{left:35.200000pt;}
.xf2_c00477{left:96.800000pt;}
.xb5_c00477{left:97.866667pt;}
.x5_c00477{left:98.933333pt;}
.xbe_c00477{left:115.200000pt;}
.xa6_c00477{left:118.533333pt;}
.x72_c00477{left:121.200000pt;}
.x8d_c00477{left:122.533333pt;}
.x6_c00477{left:123.866667pt;}
.xec_c00477{left:124.800000pt;}
.x22_c00477{left:126.400000pt;}
.xd9_c00477{left:127.333333pt;}
.x57_c00477{left:132.933333pt;}
.xcd_c00477{left:136.133333pt;}
.xf3_c00477{left:138.133333pt;}
.xbf_c00477{left:139.200000pt;}
.xb6_c00477{left:140.400000pt;}
.x10a_c00477{left:144.266667pt;}
.x3e_c00477{left:146.266667pt;}
.x31_c00477{left:148.133333pt;}
.x81_c00477{left:149.600000pt;}
.xb7_c00477{left:150.666667pt;}
.xed_c00477{left:151.733333pt;}
.x23_c00477{left:154.933333pt;}
.xfe_c00477{left:155.866667pt;}
.x13_c00477{left:158.000000pt;}
.x9d_c00477{left:160.133333pt;}
.x7_c00477{left:161.600000pt;}
.x8e_c00477{left:163.200000pt;}
.xe6_c00477{left:165.333333pt;}
.xda_c00477{left:166.933333pt;}
.x95_c00477{left:168.666667pt;}
.xf4_c00477{left:170.800000pt;}
.x3f_c00477{left:174.133333pt;}
.x65_c00477{left:175.333333pt;}
.x9e_c00477{left:177.466667pt;}
.x58_c00477{left:179.600000pt;}
.xc6_c00477{left:181.200000pt;}
.x14_c00477{left:183.600000pt;}
.xce_c00477{left:184.800000pt;}
.x8_c00477{left:186.266667pt;}
.x10b_c00477{left:191.200000pt;}
.x66_c00477{left:193.200000pt;}
.x4a_c00477{left:194.533333pt;}
.xe0_c00477{left:198.133333pt;}
.x73_c00477{left:199.200000pt;}
.x9_c00477{left:200.666667pt;}
.xee_c00477{left:202.000000pt;}
.x24_c00477{left:205.200000pt;}
.x82_c00477{left:206.533333pt;}
.x32_c00477{left:209.866667pt;}
.x40_c00477{left:213.466667pt;}
.xc0_c00477{left:218.800000pt;}
.x74_c00477{left:222.533333pt;}
.x96_c00477{left:224.666667pt;}
.x15_c00477{left:226.800000pt;}
.x33_c00477{left:230.666667pt;}
.x41_c00477{left:232.000000pt;}
.x4b_c00477{left:234.266667pt;}
.xe7_c00477{left:238.933333pt;}
.x83_c00477{left:239.866667pt;}
.xf9_c00477{left:243.200000pt;}
.x75_c00477{left:245.200000pt;}
.x59_c00477{left:246.400000pt;}
.xf5_c00477{left:247.333333pt;}
.xc7_c00477{left:248.666667pt;}
.x67_c00477{left:250.266667pt;}
.xa_c00477{left:254.800000pt;}
.x42_c00477{left:257.600000pt;}
.x25_c00477{left:261.466667pt;}
.xa7_c00477{left:264.133333pt;}
.xcf_c00477{left:268.400000pt;}
.x4c_c00477{left:271.066667pt;}
.x84_c00477{left:272.533333pt;}
.xe1_c00477{left:273.733333pt;}
.xc8_c00477{left:275.600000pt;}
.x26_c00477{left:277.466667pt;}
.x97_c00477{left:280.666667pt;}
.xef_c00477{left:283.200000pt;}
.xe8_c00477{left:285.066667pt;}
.x4d_c00477{left:287.066667pt;}
.x112_c00477{left:288.000000pt;}
.xc1_c00477{left:290.533333pt;}
.xa8_c00477{left:292.666667pt;}
.x102_c00477{left:294.933333pt;}
.x16_c00477{left:295.866667pt;}
.xb0_c00477{left:296.933333pt;}
.x5a_c00477{left:300.133333pt;}
.xe2_c00477{left:302.800000pt;}
.x17_c00477{left:305.733333pt;}
.x34_c00477{left:306.800000pt;}
.xb_c00477{left:308.533333pt;}
.x8f_c00477{left:311.600000pt;}
.x4e_c00477{left:313.333333pt;}
.xb1_c00477{left:314.800000pt;}
.x101_c00477{left:317.733333pt;}
.x85_c00477{left:320.533333pt;}
.xf6_c00477{left:322.266667pt;}
.x76_c00477{left:325.466667pt;}
.x1_c00477{left:327.333333pt;}
.x90_c00477{left:328.933333pt;}
.x27_c00477{left:333.200000pt;}
.xdb_c00477{left:334.666667pt;}
.x35_c00477{left:337.200000pt;}
.x77_c00477{left:338.933333pt;}
.x18_c00477{left:341.200000pt;}
.xa9_c00477{left:343.466667pt;}
.x100_c00477{left:344.400000pt;}
.x86_c00477{left:346.133333pt;}
.xc2_c00477{left:347.466667pt;}
.xff_c00477{left:349.466667pt;}
.x5b_c00477{left:352.000000pt;}
.xd0_c00477{left:352.933333pt;}
.x103_c00477{left:354.133333pt;}
.x43_c00477{left:356.400000pt;}
.xc_c00477{left:358.533333pt;}
.x78_c00477{left:360.666667pt;}
.x28_c00477{left:363.333333pt;}
.x4f_c00477{left:364.266667pt;}
.x68_c00477{left:368.000000pt;}
.x5c_c00477{left:370.933333pt;}
.xe9_c00477{left:372.133333pt;}
.xb8_c00477{left:373.066667pt;}
.xc3_c00477{left:375.333333pt;}
.x87_c00477{left:376.800000pt;}
.x91_c00477{left:379.733333pt;}
.xfa_c00477{left:380.800000pt;}
.x69_c00477{left:381.733333pt;}
.x44_c00477{left:383.866667pt;}
.xaa_c00477{left:387.333333pt;}
.xd1_c00477{left:388.400000pt;}
.x36_c00477{left:389.333333pt;}
.x79_c00477{left:390.400000pt;}
.xb9_c00477{left:394.533333pt;}
.x19_c00477{left:396.533333pt;}
.xd4_c00477{left:399.466667pt;}
.xd_c00477{left:401.466667pt;}
.x10c_c00477{left:403.333333pt;}
.x7a_c00477{left:405.733333pt;}
.x2_c00477{left:408.000000pt;}
.x29_c00477{left:410.666667pt;}
.x6a_c00477{left:416.266667pt;}
.x50_c00477{left:417.733333pt;}
.x1a_c00477{left:418.666667pt;}
.x5d_c00477{left:422.133333pt;}
.x7b_c00477{left:423.066667pt;}
.x88_c00477{left:424.800000pt;}
.xdc_c00477{left:428.266667pt;}
.xea_c00477{left:429.733333pt;}
.xb2_c00477{left:432.266667pt;}
.x37_c00477{left:433.866667pt;}
.xf7_c00477{left:435.600000pt;}
.xba_c00477{left:437.066667pt;}
.xe_c00477{left:438.533333pt;}
.x45_c00477{left:441.466667pt;}
.x51_c00477{left:443.333333pt;}
.x1b_c00477{left:444.933333pt;}
.x5e_c00477{left:445.866667pt;}
.x92_c00477{left:448.266667pt;}
.xbb_c00477{left:449.866667pt;}
.xab_c00477{left:451.066667pt;}
.x10d_c00477{left:452.266667pt;}
.x98_c00477{left:456.133333pt;}
.x2a_c00477{left:461.600000pt;}
.xf_c00477{left:463.200000pt;}
.x1c_c00477{left:464.400000pt;}
.x89_c00477{left:465.466667pt;}
.x46_c00477{left:466.800000pt;}
.x7c_c00477{left:469.200000pt;}
.x38_c00477{left:475.466667pt;}
.xbc_c00477{left:477.733333pt;}
.xc9_c00477{left:479.866667pt;}
.x113_c00477{left:481.600000pt;}
.xc4_c00477{left:482.800000pt;}
.x6b_c00477{left:483.733333pt;}
.x52_c00477{left:485.600000pt;}
.x5f_c00477{left:487.200000pt;}
.xf0_c00477{left:488.533333pt;}
.x1d_c00477{left:490.266667pt;}
.xd5_c00477{left:491.866667pt;}
.x7d_c00477{left:494.533333pt;}
.x108_c00477{left:496.266667pt;}
.xfb_c00477{left:497.333333pt;}
.xdd_c00477{left:501.200000pt;}
.x6c_c00477{left:502.266667pt;}
.xd2_c00477{left:503.200000pt;}
.x60_c00477{left:505.733333pt;}
.xf8_c00477{left:506.933333pt;}
.x9f_c00477{left:508.000000pt;}
.xac_c00477{left:509.333333pt;}
.x7e_c00477{left:510.266667pt;}
.x39_c00477{left:511.333333pt;}
.xc5_c00477{left:512.933333pt;}
.x47_c00477{left:514.533333pt;}
.x53_c00477{left:515.733333pt;}
.xca_c00477{left:517.333333pt;}
.x10_c00477{left:521.733333pt;}
.xe3_c00477{left:523.333333pt;}
.x2b_c00477{left:525.333333pt;}
.xeb_c00477{left:527.066667pt;}
.x1e_c00477{left:528.400000pt;}
.x6d_c00477{left:529.466667pt;}
.x10e_c00477{left:530.933333pt;}
.x48_c00477{left:532.133333pt;}
.xa0_c00477{left:533.866667pt;}
.xad_c00477{left:535.866667pt;}
.x105_c00477{left:539.466667pt;}
.x54_c00477{left:541.333333pt;}
.x1f_c00477{left:543.733333pt;}
.x107_c00477{left:545.333333pt;}
.x6e_c00477{left:546.800000pt;}
.x106_c00477{left:550.000000pt;}
.xd6_c00477{left:552.000000pt;}
.xde_c00477{left:552.933333pt;}
.x61_c00477{left:554.400000pt;}
.xd3_c00477{left:556.266667pt;}
.x8a_c00477{left:558.400000pt;}
.xa1_c00477{left:559.466667pt;}
.xcb_c00477{left:560.933333pt;}
.x3a_c00477{left:564.400000pt;}
.x2c_c00477{left:566.666667pt;}
.x99_c00477{left:568.133333pt;}
.x6f_c00477{left:570.800000pt;}
.x93_c00477{left:572.400000pt;}
.x10f_c00477{left:574.133333pt;}
.x20_c00477{left:575.066667pt;}
.xdf_c00477{left:576.000000pt;}
.xa2_c00477{left:577.333333pt;}
.x62_c00477{left:581.333333pt;}
.x2d_c00477{left:584.000000pt;}
.x9a_c00477{left:586.000000pt;}
.xd7_c00477{left:587.200000pt;}
.x109_c00477{left:588.133333pt;}
.x7f_c00477{left:589.333333pt;}
.x49_c00477{left:593.866667pt;}
.xb3_c00477{left:595.066667pt;}
.x8b_c00477{left:597.466667pt;}
.x110_c00477{left:599.733333pt;}
.x11_c00477{left:601.466667pt;}
.x104_c00477{left:604.133333pt;}
.x21_c00477{left:606.400000pt;}
.x9b_c00477{left:607.733333pt;}
.xae_c00477{left:609.466667pt;}
.x63_c00477{left:611.466667pt;}
.xfc_c00477{left:612.800000pt;}
.xa3_c00477{left:614.133333pt;}
.x2e_c00477{left:615.066667pt;}
.xe4_c00477{left:616.800000pt;}
.x3b_c00477{left:617.866667pt;}
.x8c_c00477{left:619.200000pt;}
.x12_c00477{left:623.866667pt;}
.x70_c00477{left:624.933333pt;}
.xbd_c00477{left:626.800000pt;}
.x80_c00477{left:628.000000pt;}
.xa4_c00477{left:631.066667pt;}
.x55_c00477{left:634.133333pt;}
.xb4_c00477{left:636.400000pt;}
.x9c_c00477{left:638.133333pt;}
.xe5_c00477{left:639.866667pt;}
.x71_c00477{left:641.200000pt;}
.x2f_c00477{left:642.533333pt;}
.x94_c00477{left:645.333333pt;}
.x64_c00477{left:646.400000pt;}
.xd8_c00477{left:648.000000pt;}
.xa5_c00477{left:653.466667pt;}
.x3c_c00477{left:655.333333pt;}
.x30_c00477{left:660.133333pt;}
.xf1_c00477{left:661.333333pt;}
.xcc_c00477{left:663.200000pt;}
.x3_c00477{left:667.200000pt;}
.x111_c00477{left:669.866667pt;}
.x3d_c00477{left:672.933333pt;}
.xaf_c00477{left:673.866667pt;}
.x56_c00477{left:676.000000pt;}
.xfd_c00477{left:678.666667pt;}
}





/* 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_c00478 {
    display:none;
  }
  .loading-indicator_c00478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00478 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_c00478 { 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_c00478" -> "#page-container .classname_c00478")
 */
.pf_c00478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00478 { /* 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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00478 { /* 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_c00478 { /* 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_c00478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00478 {overflow:visible;}
  }
}
.c_c00478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00478 { /* 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_c00478:after { /* webkit #35443 */
  content: '';
}
.t_c00478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00478 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 */
}
.__c00478 { /* 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_c00478 { /* info for Javascript */
  display:none;
}
.l_c00478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00478: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_c00478 {
    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_c00478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00478.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_c00478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00478;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.000000;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;}
.m6f_c00478{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m83_c00478{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00478{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00478{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00478{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m58_c00478{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00478{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00478{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00478{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m79_c00478{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00478{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00478{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc_c00478{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00478{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00478{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m50_c00478{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m99_c00478{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m27_c00478{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00478{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00478{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m69_c00478{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m20_c00478{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00478{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m62_c00478{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m23_c00478{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.me_c00478{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00478{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00478{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m42_c00478{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m45_c00478{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m75_c00478{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m73_c00478{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m30_c00478{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m90_c00478{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00478{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00478{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00478{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m13_c00478{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m78_c00478{transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204750,0.000000,0.000000,0.250000,0,0);}
.m71_c00478{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00478{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00478{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m37_c00478{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00478{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m2_c00478{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m38_c00478{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m82_c00478{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m77_c00478{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00478{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m19_c00478{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m44_c00478{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m32_c00478{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00478{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00478{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m80_c00478{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m26_c00478{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m31_c00478{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m63_c00478{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m21_c00478{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00478{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00478{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m53_c00478{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m84_c00478{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m59_c00478{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m54_c00478{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00478{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m96_c00478{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m89_c00478{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m88_c00478{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00478{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m86_c00478{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00478{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m33_c00478{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m4_c00478{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00478{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m57_c00478{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m24_c00478{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00478{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m35_c00478{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00478{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00478{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m68_c00478{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m87_c00478{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00478{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00478{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m8_c00478{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m72_c00478{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00478{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m98_c00478{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00478{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00478{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m11_c00478{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00478{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6_c00478{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m70_c00478{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m18_c00478{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m22_c00478{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m55_c00478{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m56_c00478{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00478{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m61_c00478{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00478{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma_c00478{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00478{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_c00478{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00478{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m81_c00478{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m74_c00478{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m16_c00478{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00478{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00478{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m52_c00478{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m92_c00478{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m93_c00478{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m85_c00478{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7_c00478{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00478{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00478{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m76_c00478{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m51_c00478{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00478{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);}
.m17_c00478{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m49_c00478{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m41_c00478{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00478{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m60_c00478{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00478{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m12_c00478{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00478{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m46_c00478{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m25_c00478{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m47_c00478{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00478{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m66_c00478{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00478{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m95_c00478{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5_c00478{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00478{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00478{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m94_c00478{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m64_c00478{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m40_c00478{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00478{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00478{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m28_c00478{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m48_c00478{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m67_c00478{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00478{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m43_c00478{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m36_c00478{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m29_c00478{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m65_c00478{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m39_c00478{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00478{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m91_c00478{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m34_c00478{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00478{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00478{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.m14_c00478{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m97_c00478{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.v0_c00478{vertical-align:0.000000px;}
.ls0_c00478{letter-spacing:0.000000px;}
.sc__c00478{text-shadow:none;}
.sc0_c00478{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__c00478{-webkit-text-stroke:0px transparent;}
.sc0_c00478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00478{word-spacing:-3.611111px;}
.ws4_c00478{word-spacing:0.000000px;}
.ws2_c00478{word-spacing:6.666667px;}
.ws3_c00478{word-spacing:8.194444px;}
.ws0_c00478{word-spacing:10.921053px;}
.fc0_c00478{color:transparent;}
.fs0_c00478{font-size:60.000000px;}
.y0_c00478{bottom:0.000000px;}
.y2c_c00478{bottom:156.900000px;}
.y2b_c00478{bottom:177.000000px;}
.y2a_c00478{bottom:197.100000px;}
.y29_c00478{bottom:216.600000px;}
.y28_c00478{bottom:236.700000px;}
.y27_c00478{bottom:256.800000px;}
.y26_c00478{bottom:276.900000px;}
.y25_c00478{bottom:296.700000px;}
.y24_c00478{bottom:316.800000px;}
.y23_c00478{bottom:336.600000px;}
.y22_c00478{bottom:376.950000px;}
.y21_c00478{bottom:396.750000px;}
.y20_c00478{bottom:416.550000px;}
.y1f_c00478{bottom:436.650000px;}
.y1e_c00478{bottom:456.750000px;}
.y1d_c00478{bottom:476.550000px;}
.y1c_c00478{bottom:496.650000px;}
.y1b_c00478{bottom:516.450000px;}
.y1a_c00478{bottom:536.550000px;}
.y19_c00478{bottom:556.350000px;}
.y18_c00478{bottom:576.150000px;}
.y17_c00478{bottom:595.950000px;}
.y16_c00478{bottom:615.750000px;}
.y15_c00478{bottom:635.850000px;}
.y14_c00478{bottom:655.950000px;}
.y13_c00478{bottom:675.600000px;}
.y12_c00478{bottom:696.150000px;}
.y11_c00478{bottom:716.250000px;}
.y10_c00478{bottom:736.350000px;}
.yf_c00478{bottom:756.450000px;}
.ye_c00478{bottom:776.250000px;}
.yd_c00478{bottom:796.350000px;}
.yc_c00478{bottom:816.450000px;}
.yb_c00478{bottom:836.250000px;}
.ya_c00478{bottom:855.450000px;}
.y9_c00478{bottom:876.000000px;}
.y8_c00478{bottom:896.100000px;}
.y7_c00478{bottom:916.200000px;}
.y6_c00478{bottom:936.000000px;}
.y5_c00478{bottom:956.100000px;}
.y4_c00478{bottom:975.900000px;}
.y3_c00478{bottom:996.150000px;}
.y2_c00478{bottom:1016.250000px;}
.y1_c00478{bottom:1054.800000px;}
.h2_c00478{height:60.000000px;}
.h1_c00478{height:1166.250000px;}
.h0_c00478{height:1166.400056px;}
.w0_c00478{width:920.879975px;}
.w1_c00478{width:921.000000px;}
.x0_c00478{left:0.000000px;}
.x13_c00478{left:144.600000px;}
.x1_c00478{left:145.800000px;}
.x114_c00478{left:147.150000px;}
.x89_c00478{left:161.550000px;}
.x3b_c00478{left:165.750000px;}
.x9f_c00478{left:167.550000px;}
.xff_c00478{left:169.200000px;}
.x24_c00478{left:171.000000px;}
.xfe_c00478{left:172.050000px;}
.xcc_c00478{left:173.100000px;}
.xa7_c00478{left:174.600000px;}
.x17_c00478{left:176.400000px;}
.xc5_c00478{left:177.600000px;}
.x2f_c00478{left:179.250000px;}
.x11f_c00478{left:183.600000px;}
.x100_c00478{left:185.400000px;}
.x3c_c00478{left:189.900000px;}
.x14_c00478{left:191.400000px;}
.x12b_c00478{left:193.200000px;}
.x51_c00478{left:195.300000px;}
.xd1_c00478{left:197.100000px;}
.x8a_c00478{left:199.650000px;}
.x80_c00478{left:200.700000px;}
.x3_c00478{left:202.650000px;}
.xd9_c00478{left:204.300000px;}
.x15_c00478{left:206.100000px;}
.x5d_c00478{left:207.450000px;}
.x101_c00478{left:208.800000px;}
.xb0_c00478{left:210.000000px;}
.xad_c00478{left:211.650000px;}
.xc6_c00478{left:213.900000px;}
.x106_c00478{left:216.000000px;}
.x75_c00478{left:217.200000px;}
.x52_c00478{left:219.450000px;}
.x30_c00478{left:221.400000px;}
.x102_c00478{left:224.400000px;}
.xed_c00478{left:228.750000px;}
.x6c_c00478{left:229.800000px;}
.xa0_c00478{left:230.850000px;}
.x16_c00478{left:232.800000px;}
.xda_c00478{left:234.150000px;}
.x25_c00478{left:239.100000px;}
.x4_c00478{left:240.450000px;}
.xf4_c00478{left:241.650000px;}
.x53_c00478{left:244.350000px;}
.x93_c00478{left:246.600000px;}
.x47_c00478{left:247.800000px;}
.x3d_c00478{left:249.000000px;}
.x76_c00478{left:251.400000px;}
.x107_c00478{left:252.750000px;}
.x8b_c00478{left:253.950000px;}
.x81_c00478{left:255.150000px;}
.x5e_c00478{left:258.900000px;}
.x18_c00478{left:261.000000px;}
.x94_c00478{left:262.500000px;}
.xd4_c00478{left:264.000000px;}
.x10a_c00478{left:267.450000px;}
.x48_c00478{left:268.650000px;}
.x134_c00478{left:269.850000px;}
.x5_c00478{left:272.550000px;}
.xe3_c00478{left:273.600000px;}
.x115_c00478{left:275.250000px;}
.xe6_c00478{left:276.450000px;}
.xf5_c00478{left:277.650000px;}
.xee_c00478{left:280.200000px;}
.x77_c00478{left:281.250000px;}
.xa8_c00478{left:283.650000px;}
.xb1_c00478{left:284.850000px;}
.xdb_c00478{left:286.050000px;}
.xd5_c00478{left:287.400000px;}
.x6d_c00478{left:288.450000px;}
.xcd_c00478{left:290.100000px;}
.xc7_c00478{left:294.150000px;}
.x19_c00478{left:298.500000px;}
.x95_c00478{left:301.350000px;}
.xae_c00478{left:302.700000px;}
.x82_c00478{left:303.750000px;}
.xb2_c00478{left:305.700000px;}
.x5f_c00478{left:307.500000px;}
.x110_c00478{left:309.300000px;}
.x103_c00478{left:316.200000px;}
.x31_c00478{left:317.550000px;}
.xdc_c00478{left:318.750000px;}
.x8c_c00478{left:319.800000px;}
.x1a_c00478{left:321.600000px;}
.xf6_c00478{left:323.400000px;}
.x116_c00478{left:328.950000px;}
.x26_c00478{left:331.950000px;}
.x49_c00478{left:333.450000px;}
.xb3_c00478{left:334.500000px;}
.x32_c00478{left:336.300000px;}
.x6e_c00478{left:337.500000px;}
.x54_c00478{left:338.550000px;}
.xc8_c00478{left:340.950000px;}
.x108_c00478{left:342.000000px;}
.x6_c00478{left:344.850000px;}
.xba_c00478{left:346.500000px;}
.xdd_c00478{left:348.300000px;}
.x4a_c00478{left:350.700000px;}
.x96_c00478{left:353.850000px;}
.x12c_c00478{left:355.350000px;}
.xd2_c00478{left:358.350000px;}
.xce_c00478{left:360.300000px;}
.x60_c00478{left:365.100000px;}
.x27_c00478{left:367.200000px;}
.xe7_c00478{left:368.700000px;}
.x78_c00478{left:373.050000px;}
.x7_c00478{left:376.500000px;}
.x1b_c00478{left:378.450000px;}
.xef_c00478{left:379.950000px;}
.xaf_c00478{left:384.750000px;}
.x121_c00478{left:386.100000px;}
.x6f_c00478{left:387.150000px;}
.x83_c00478{left:389.100000px;}
.x4b_c00478{left:391.050000px;}
.x61_c00478{left:393.900000px;}
.x10b_c00478{left:395.550000px;}
.xc9_c00478{left:396.750000px;}
.xf7_c00478{left:398.700000px;}
.xd6_c00478{left:400.050000px;}
.xde_c00478{left:404.100000px;}
.x55_c00478{left:406.650000px;}
.x122_c00478{left:409.800000px;}
.xa9_c00478{left:411.000000px;}
.x33_c00478{left:412.650000px;}
.x8_c00478{left:414.600000px;}
.x1c_c00478{left:415.950000px;}
.x8d_c00478{left:417.750000px;}
.xb4_c00478{left:419.100000px;}
.x97_c00478{left:422.550000px;}
.x11b_c00478{left:423.600000px;}
.xf0_c00478{left:425.250000px;}
.x28_c00478{left:426.300000px;}
.x56_c00478{left:427.950000px;}
.x9_c00478{left:430.050000px;}
.x70_c00478{left:432.150000px;}
.x62_c00478{left:433.200000px;}
.x1d_c00478{left:435.000000px;}
.x98_c00478{left:437.700000px;}
.x34_c00478{left:441.450000px;}
.x2_c00478{left:443.100000px;}
.x3e_c00478{left:444.750000px;}
.x12d_c00478{left:447.150000px;}
.x4c_c00478{left:448.650000px;}
.xbb_c00478{left:451.650000px;}
.x57_c00478{left:457.050000px;}
.xf8_c00478{left:458.100000px;}
.x99_c00478{left:460.800000px;}
.x11c_c00478{left:462.900000px;}
.x79_c00478{left:464.100000px;}
.x29_c00478{left:465.600000px;}
.xbc_c00478{left:470.400000px;}
.x111_c00478{left:471.600000px;}
.xe4_c00478{left:476.550000px;}
.xf9_c00478{left:478.200000px;}
.x35_c00478{left:479.550000px;}
.x117_c00478{left:482.400000px;}
.xb5_c00478{left:483.900000px;}
.x10c_c00478{left:485.550000px;}
.xcf_c00478{left:486.600000px;}
.xa_c00478{left:488.400000px;}
.x9a_c00478{left:489.600000px;}
.x63_c00478{left:490.800000px;}
.x120_c00478{left:494.100000px;}
.xaa_c00478{left:495.600000px;}
.x3f_c00478{left:498.750000px;}
.x8e_c00478{left:500.550000px;}
.x2a_c00478{left:503.400000px;}
.x4d_c00478{left:504.750000px;}
.xdf_c00478{left:505.950000px;}
.x12e_c00478{left:507.300000px;}
.xd7_c00478{left:509.550000px;}
.x1e_c00478{left:514.200000px;}
.xe8_c00478{left:516.750000px;}
.x58_c00478{left:518.550000px;}
.x7a_c00478{left:519.600000px;}
.xbd_c00478{left:522.300000px;}
.x71_c00478{left:524.250000px;}
.x12f_c00478{left:526.800000px;}
.xb_c00478{left:528.000000px;}
.x124_c00478{left:530.400000px;}
.xd8_c00478{left:531.900000px;}
.xfa_c00478{left:532.950000px;}
.xb6_c00478{left:534.000000px;}
.x4e_c00478{left:535.350000px;}
.xca_c00478{left:537.750000px;}
.x104_c00478{left:538.950000px;}
.x130_c00478{left:541.500000px;}
.x40_c00478{left:543.750000px;}
.x84_c00478{left:545.700000px;}
.x125_c00478{left:547.650000px;}
.xc_c00478{left:550.650000px;}
.x7b_c00478{left:552.300000px;}
.x10d_c00478{left:556.800000px;}
.x64_c00478{left:558.900000px;}
.x41_c00478{left:563.550000px;}
.x59_c00478{left:565.350000px;}
.xa1_c00478{left:566.700000px;}
.x105_c00478{left:568.050000px;}
.xe0_c00478{left:570.000000px;}
.x11d_c00478{left:572.100000px;}
.xd_c00478{left:574.350000px;}
.x36_c00478{left:576.750000px;}
.x9b_c00478{left:577.800000px;}
.x7c_c00478{left:580.800000px;}
.x2b_c00478{left:583.650000px;}
.x10e_c00478{left:585.300000px;}
.xa2_c00478{left:586.500000px;}
.x42_c00478{left:592.650000px;}
.x5a_c00478{left:593.850000px;}
.xd3_c00478{left:597.000000px;}
.xe1_c00478{left:599.550000px;}
.xe9_c00478{left:600.900000px;}
.x65_c00478{left:605.400000px;}
.xe_c00478{left:606.450000px;}
.x37_c00478{left:609.150000px;}
.xbe_c00478{left:611.550000px;}
.x123_c00478{left:614.100000px;}
.x72_c00478{left:616.050000px;}
.xb7_c00478{left:617.100000px;}
.x5b_c00478{left:618.300000px;}
.x10f_c00478{left:619.500000px;}
.x8f_c00478{left:620.550000px;}
.xfb_c00478{left:621.900000px;}
.x126_c00478{left:623.250000px;}
.x4f_c00478{left:625.800000px;}
.xa3_c00478{left:627.900000px;}
.x109_c00478{left:632.550000px;}
.xf1_c00478{left:636.300000px;}
.x7d_c00478{left:637.350000px;}
.x127_c00478{left:640.500000px;}
.x66_c00478{left:642.900000px;}
.x43_c00478{left:644.550000px;}
.x1f_c00478{left:648.450000px;}
.x2c_c00478{left:650.250000px;}
.x90_c00478{left:651.900000px;}
.x5c_c00478{left:656.850000px;}
.xf_c00478{left:658.350000px;}
.xe2_c00478{left:659.700000px;}
.x85_c00478{left:661.200000px;}
.x67_c00478{left:664.200000px;}
.x20_c00478{left:666.750000px;}
.xbf_c00478{left:668.400000px;}
.x118_c00478{left:669.900000px;}
.xab_c00478{left:671.700000px;}
.x38_c00478{left:675.450000px;}
.xa4_c00478{left:677.250000px;}
.x10_c00478{left:680.250000px;}
.xc0_c00478{left:682.050000px;}
.x9c_c00478{left:683.250000px;}
.xea_c00478{left:686.850000px;}
.x128_c00478{left:688.050000px;}
.x2d_c00478{left:689.100000px;}
.xc1_c00478{left:693.150000px;}
.x112_c00478{left:695.100000px;}
.x131_c00478{left:697.950000px;}
.xfc_c00478{left:699.000000px;}
.x44_c00478{left:700.650000px;}
.x11e_c00478{left:702.000000px;}
.x11_c00478{left:703.350000px;}
.x68_c00478{left:706.350000px;}
.x86_c00478{left:708.000000px;}
.x73_c00478{left:713.550000px;}
.x21_c00478{left:716.400000px;}
.x91_c00478{left:718.500000px;}
.xf2_c00478{left:719.850000px;}
.xb8_c00478{left:721.500000px;}
.xcb_c00478{left:722.850000px;}
.x119_c00478{left:723.900000px;}
.x7e_c00478{left:725.850000px;}
.xa5_c00478{left:727.650000px;}
.xc2_c00478{left:728.850000px;}
.xd0_c00478{left:731.250000px;}
.x74_c00478{left:733.350000px;}
.x87_c00478{left:734.700000px;}
.xe5_c00478{left:735.750000px;}
.x22_c00478{left:736.950000px;}
.x92_c00478{left:739.050000px;}
.xb9_c00478{left:741.300000px;}
.xeb_c00478{left:742.950000px;}
.x39_c00478{left:745.650000px;}
.x9d_c00478{left:748.350000px;}
.xc3_c00478{left:750.450000px;}
.x45_c00478{left:752.850000px;}
.x129_c00478{left:756.150000px;}
.xac_c00478{left:760.350000px;}
.x2e_c00478{left:761.400000px;}
.x7f_c00478{left:764.400000px;}
.x69_c00478{left:767.250000px;}
.xfd_c00478{left:768.600000px;}
.x9e_c00478{left:770.250000px;}
.x113_c00478{left:771.450000px;}
.x50_c00478{left:773.100000px;}
.x88_c00478{left:775.050000px;}
.xc4_c00478{left:778.200000px;}
.x132_c00478{left:781.200000px;}
.x12_c00478{left:783.600000px;}
.x6a_c00478{left:784.950000px;}
.x23_c00478{left:786.600000px;}
.x11a_c00478{left:787.950000px;}
.xf3_c00478{left:790.500000px;}
.x46_c00478{left:792.150000px;}
.x3a_c00478{left:793.200000px;}
.x133_c00478{left:795.900000px;}
.xec_c00478{left:797.250000px;}
.x6b_c00478{left:800.400000px;}
.xa6_c00478{left:801.450000px;}
.x12a_c00478{left:802.950000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws1_c00478{word-spacing:-3.209877pt;}
.ws4_c00478{word-spacing:0.000000pt;}
.ws2_c00478{word-spacing:5.925926pt;}
.ws3_c00478{word-spacing:7.283951pt;}
.ws0_c00478{word-spacing:9.707602pt;}
.fs0_c00478{font-size:53.333333pt;}
.y0_c00478{bottom:0.000000pt;}
.y2c_c00478{bottom:139.466667pt;}
.y2b_c00478{bottom:157.333333pt;}
.y2a_c00478{bottom:175.200000pt;}
.y29_c00478{bottom:192.533333pt;}
.y28_c00478{bottom:210.400000pt;}
.y27_c00478{bottom:228.266667pt;}
.y26_c00478{bottom:246.133333pt;}
.y25_c00478{bottom:263.733333pt;}
.y24_c00478{bottom:281.600000pt;}
.y23_c00478{bottom:299.200000pt;}
.y22_c00478{bottom:335.066667pt;}
.y21_c00478{bottom:352.666667pt;}
.y20_c00478{bottom:370.266667pt;}
.y1f_c00478{bottom:388.133333pt;}
.y1e_c00478{bottom:406.000000pt;}
.y1d_c00478{bottom:423.600000pt;}
.y1c_c00478{bottom:441.466667pt;}
.y1b_c00478{bottom:459.066667pt;}
.y1a_c00478{bottom:476.933333pt;}
.y19_c00478{bottom:494.533333pt;}
.y18_c00478{bottom:512.133333pt;}
.y17_c00478{bottom:529.733333pt;}
.y16_c00478{bottom:547.333333pt;}
.y15_c00478{bottom:565.200000pt;}
.y14_c00478{bottom:583.066667pt;}
.y13_c00478{bottom:600.533333pt;}
.y12_c00478{bottom:618.800000pt;}
.y11_c00478{bottom:636.666667pt;}
.y10_c00478{bottom:654.533333pt;}
.yf_c00478{bottom:672.400000pt;}
.ye_c00478{bottom:690.000000pt;}
.yd_c00478{bottom:707.866667pt;}
.yc_c00478{bottom:725.733333pt;}
.yb_c00478{bottom:743.333333pt;}
.ya_c00478{bottom:760.400000pt;}
.y9_c00478{bottom:778.666667pt;}
.y8_c00478{bottom:796.533333pt;}
.y7_c00478{bottom:814.400000pt;}
.y6_c00478{bottom:832.000000pt;}
.y5_c00478{bottom:849.866667pt;}
.y4_c00478{bottom:867.466667pt;}
.y3_c00478{bottom:885.466667pt;}
.y2_c00478{bottom:903.333333pt;}
.y1_c00478{bottom:937.600000pt;}
.h2_c00478{height:53.333333pt;}
.h1_c00478{height:1036.666667pt;}
.h0_c00478{height:1036.800049pt;}
.w0_c00478{width:818.559977pt;}
.w1_c00478{width:818.666667pt;}
.x0_c00478{left:0.000000pt;}
.x13_c00478{left:128.533333pt;}
.x1_c00478{left:129.600000pt;}
.x114_c00478{left:130.800000pt;}
.x89_c00478{left:143.600000pt;}
.x3b_c00478{left:147.333333pt;}
.x9f_c00478{left:148.933333pt;}
.xff_c00478{left:150.400000pt;}
.x24_c00478{left:152.000000pt;}
.xfe_c00478{left:152.933333pt;}
.xcc_c00478{left:153.866667pt;}
.xa7_c00478{left:155.200000pt;}
.x17_c00478{left:156.800000pt;}
.xc5_c00478{left:157.866667pt;}
.x2f_c00478{left:159.333333pt;}
.x11f_c00478{left:163.200000pt;}
.x100_c00478{left:164.800000pt;}
.x3c_c00478{left:168.800000pt;}
.x14_c00478{left:170.133333pt;}
.x12b_c00478{left:171.733333pt;}
.x51_c00478{left:173.600000pt;}
.xd1_c00478{left:175.200000pt;}
.x8a_c00478{left:177.466667pt;}
.x80_c00478{left:178.400000pt;}
.x3_c00478{left:180.133333pt;}
.xd9_c00478{left:181.600000pt;}
.x15_c00478{left:183.200000pt;}
.x5d_c00478{left:184.400000pt;}
.x101_c00478{left:185.600000pt;}
.xb0_c00478{left:186.666667pt;}
.xad_c00478{left:188.133333pt;}
.xc6_c00478{left:190.133333pt;}
.x106_c00478{left:192.000000pt;}
.x75_c00478{left:193.066667pt;}
.x52_c00478{left:195.066667pt;}
.x30_c00478{left:196.800000pt;}
.x102_c00478{left:199.466667pt;}
.xed_c00478{left:203.333333pt;}
.x6c_c00478{left:204.266667pt;}
.xa0_c00478{left:205.200000pt;}
.x16_c00478{left:206.933333pt;}
.xda_c00478{left:208.133333pt;}
.x25_c00478{left:212.533333pt;}
.x4_c00478{left:213.733333pt;}
.xf4_c00478{left:214.800000pt;}
.x53_c00478{left:217.200000pt;}
.x93_c00478{left:219.200000pt;}
.x47_c00478{left:220.266667pt;}
.x3d_c00478{left:221.333333pt;}
.x76_c00478{left:223.466667pt;}
.x107_c00478{left:224.666667pt;}
.x8b_c00478{left:225.733333pt;}
.x81_c00478{left:226.800000pt;}
.x5e_c00478{left:230.133333pt;}
.x18_c00478{left:232.000000pt;}
.x94_c00478{left:233.333333pt;}
.xd4_c00478{left:234.666667pt;}
.x10a_c00478{left:237.733333pt;}
.x48_c00478{left:238.800000pt;}
.x134_c00478{left:239.866667pt;}
.x5_c00478{left:242.266667pt;}
.xe3_c00478{left:243.200000pt;}
.x115_c00478{left:244.666667pt;}
.xe6_c00478{left:245.733333pt;}
.xf5_c00478{left:246.800000pt;}
.xee_c00478{left:249.066667pt;}
.x77_c00478{left:250.000000pt;}
.xa8_c00478{left:252.133333pt;}
.xb1_c00478{left:253.200000pt;}
.xdb_c00478{left:254.266667pt;}
.xd5_c00478{left:255.466667pt;}
.x6d_c00478{left:256.400000pt;}
.xcd_c00478{left:257.866667pt;}
.xc7_c00478{left:261.466667pt;}
.x19_c00478{left:265.333333pt;}
.x95_c00478{left:267.866667pt;}
.xae_c00478{left:269.066667pt;}
.x82_c00478{left:270.000000pt;}
.xb2_c00478{left:271.733333pt;}
.x5f_c00478{left:273.333333pt;}
.x110_c00478{left:274.933333pt;}
.x103_c00478{left:281.066667pt;}
.x31_c00478{left:282.266667pt;}
.xdc_c00478{left:283.333333pt;}
.x8c_c00478{left:284.266667pt;}
.x1a_c00478{left:285.866667pt;}
.xf6_c00478{left:287.466667pt;}
.x116_c00478{left:292.400000pt;}
.x26_c00478{left:295.066667pt;}
.x49_c00478{left:296.400000pt;}
.xb3_c00478{left:297.333333pt;}
.x32_c00478{left:298.933333pt;}
.x6e_c00478{left:300.000000pt;}
.x54_c00478{left:300.933333pt;}
.xc8_c00478{left:303.066667pt;}
.x108_c00478{left:304.000000pt;}
.x6_c00478{left:306.533333pt;}
.xba_c00478{left:308.000000pt;}
.xdd_c00478{left:309.600000pt;}
.x4a_c00478{left:311.733333pt;}
.x96_c00478{left:314.533333pt;}
.x12c_c00478{left:315.866667pt;}
.xd2_c00478{left:318.533333pt;}
.xce_c00478{left:320.266667pt;}
.x60_c00478{left:324.533333pt;}
.x27_c00478{left:326.400000pt;}
.xe7_c00478{left:327.733333pt;}
.x78_c00478{left:331.600000pt;}
.x7_c00478{left:334.666667pt;}
.x1b_c00478{left:336.400000pt;}
.xef_c00478{left:337.733333pt;}
.xaf_c00478{left:342.000000pt;}
.x121_c00478{left:343.200000pt;}
.x6f_c00478{left:344.133333pt;}
.x83_c00478{left:345.866667pt;}
.x4b_c00478{left:347.600000pt;}
.x61_c00478{left:350.133333pt;}
.x10b_c00478{left:351.600000pt;}
.xc9_c00478{left:352.666667pt;}
.xf7_c00478{left:354.400000pt;}
.xd6_c00478{left:355.600000pt;}
.xde_c00478{left:359.200000pt;}
.x55_c00478{left:361.466667pt;}
.x122_c00478{left:364.266667pt;}
.xa9_c00478{left:365.333333pt;}
.x33_c00478{left:366.800000pt;}
.x8_c00478{left:368.533333pt;}
.x1c_c00478{left:369.733333pt;}
.x8d_c00478{left:371.333333pt;}
.xb4_c00478{left:372.533333pt;}
.x97_c00478{left:375.600000pt;}
.x11b_c00478{left:376.533333pt;}
.xf0_c00478{left:378.000000pt;}
.x28_c00478{left:378.933333pt;}
.x56_c00478{left:380.400000pt;}
.x9_c00478{left:382.266667pt;}
.x70_c00478{left:384.133333pt;}
.x62_c00478{left:385.066667pt;}
.x1d_c00478{left:386.666667pt;}
.x98_c00478{left:389.066667pt;}
.x34_c00478{left:392.400000pt;}
.x2_c00478{left:393.866667pt;}
.x3e_c00478{left:395.333333pt;}
.x12d_c00478{left:397.466667pt;}
.x4c_c00478{left:398.800000pt;}
.xbb_c00478{left:401.466667pt;}
.x57_c00478{left:406.266667pt;}
.xf8_c00478{left:407.200000pt;}
.x99_c00478{left:409.600000pt;}
.x11c_c00478{left:411.466667pt;}
.x79_c00478{left:412.533333pt;}
.x29_c00478{left:413.866667pt;}
.xbc_c00478{left:418.133333pt;}
.x111_c00478{left:419.200000pt;}
.xe4_c00478{left:423.600000pt;}
.xf9_c00478{left:425.066667pt;}
.x35_c00478{left:426.266667pt;}
.x117_c00478{left:428.800000pt;}
.xb5_c00478{left:430.133333pt;}
.x10c_c00478{left:431.600000pt;}
.xcf_c00478{left:432.533333pt;}
.xa_c00478{left:434.133333pt;}
.x9a_c00478{left:435.200000pt;}
.x63_c00478{left:436.266667pt;}
.x120_c00478{left:439.200000pt;}
.xaa_c00478{left:440.533333pt;}
.x3f_c00478{left:443.333333pt;}
.x8e_c00478{left:444.933333pt;}
.x2a_c00478{left:447.466667pt;}
.x4d_c00478{left:448.666667pt;}
.xdf_c00478{left:449.733333pt;}
.x12e_c00478{left:450.933333pt;}
.xd7_c00478{left:452.933333pt;}
.x1e_c00478{left:457.066667pt;}
.xe8_c00478{left:459.333333pt;}
.x58_c00478{left:460.933333pt;}
.x7a_c00478{left:461.866667pt;}
.xbd_c00478{left:464.266667pt;}
.x71_c00478{left:466.000000pt;}
.x12f_c00478{left:468.266667pt;}
.xb_c00478{left:469.333333pt;}
.x124_c00478{left:471.466667pt;}
.xd8_c00478{left:472.800000pt;}
.xfa_c00478{left:473.733333pt;}
.xb6_c00478{left:474.666667pt;}
.x4e_c00478{left:475.866667pt;}
.xca_c00478{left:478.000000pt;}
.x104_c00478{left:479.066667pt;}
.x130_c00478{left:481.333333pt;}
.x40_c00478{left:483.333333pt;}
.x84_c00478{left:485.066667pt;}
.x125_c00478{left:486.800000pt;}
.xc_c00478{left:489.466667pt;}
.x7b_c00478{left:490.933333pt;}
.x10d_c00478{left:494.933333pt;}
.x64_c00478{left:496.800000pt;}
.x41_c00478{left:500.933333pt;}
.x59_c00478{left:502.533333pt;}
.xa1_c00478{left:503.733333pt;}
.x105_c00478{left:504.933333pt;}
.xe0_c00478{left:506.666667pt;}
.x11d_c00478{left:508.533333pt;}
.xd_c00478{left:510.533333pt;}
.x36_c00478{left:512.666667pt;}
.x9b_c00478{left:513.600000pt;}
.x7c_c00478{left:516.266667pt;}
.x2b_c00478{left:518.800000pt;}
.x10e_c00478{left:520.266667pt;}
.xa2_c00478{left:521.333333pt;}
.x42_c00478{left:526.800000pt;}
.x5a_c00478{left:527.866667pt;}
.xd3_c00478{left:530.666667pt;}
.xe1_c00478{left:532.933333pt;}
.xe9_c00478{left:534.133333pt;}
.x65_c00478{left:538.133333pt;}
.xe_c00478{left:539.066667pt;}
.x37_c00478{left:541.466667pt;}
.xbe_c00478{left:543.600000pt;}
.x123_c00478{left:545.866667pt;}
.x72_c00478{left:547.600000pt;}
.xb7_c00478{left:548.533333pt;}
.x5b_c00478{left:549.600000pt;}
.x10f_c00478{left:550.666667pt;}
.x8f_c00478{left:551.600000pt;}
.xfb_c00478{left:552.800000pt;}
.x126_c00478{left:554.000000pt;}
.x4f_c00478{left:556.266667pt;}
.xa3_c00478{left:558.133333pt;}
.x109_c00478{left:562.266667pt;}
.xf1_c00478{left:565.600000pt;}
.x7d_c00478{left:566.533333pt;}
.x127_c00478{left:569.333333pt;}
.x66_c00478{left:571.466667pt;}
.x43_c00478{left:572.933333pt;}
.x1f_c00478{left:576.400000pt;}
.x2c_c00478{left:578.000000pt;}
.x90_c00478{left:579.466667pt;}
.x5c_c00478{left:583.866667pt;}
.xf_c00478{left:585.200000pt;}
.xe2_c00478{left:586.400000pt;}
.x85_c00478{left:587.733333pt;}
.x67_c00478{left:590.400000pt;}
.x20_c00478{left:592.666667pt;}
.xbf_c00478{left:594.133333pt;}
.x118_c00478{left:595.466667pt;}
.xab_c00478{left:597.066667pt;}
.x38_c00478{left:600.400000pt;}
.xa4_c00478{left:602.000000pt;}
.x10_c00478{left:604.666667pt;}
.xc0_c00478{left:606.266667pt;}
.x9c_c00478{left:607.333333pt;}
.xea_c00478{left:610.533333pt;}
.x128_c00478{left:611.600000pt;}
.x2d_c00478{left:612.533333pt;}
.xc1_c00478{left:616.133333pt;}
.x112_c00478{left:617.866667pt;}
.x131_c00478{left:620.400000pt;}
.xfc_c00478{left:621.333333pt;}
.x44_c00478{left:622.800000pt;}
.x11e_c00478{left:624.000000pt;}
.x11_c00478{left:625.200000pt;}
.x68_c00478{left:627.866667pt;}
.x86_c00478{left:629.333333pt;}
.x73_c00478{left:634.266667pt;}
.x21_c00478{left:636.800000pt;}
.x91_c00478{left:638.666667pt;}
.xf2_c00478{left:639.866667pt;}
.xb8_c00478{left:641.333333pt;}
.xcb_c00478{left:642.533333pt;}
.x119_c00478{left:643.466667pt;}
.x7e_c00478{left:645.200000pt;}
.xa5_c00478{left:646.800000pt;}
.xc2_c00478{left:647.866667pt;}
.xd0_c00478{left:650.000000pt;}
.x74_c00478{left:651.866667pt;}
.x87_c00478{left:653.066667pt;}
.xe5_c00478{left:654.000000pt;}
.x22_c00478{left:655.066667pt;}
.x92_c00478{left:656.933333pt;}
.xb9_c00478{left:658.933333pt;}
.xeb_c00478{left:660.400000pt;}
.x39_c00478{left:662.800000pt;}
.x9d_c00478{left:665.200000pt;}
.xc3_c00478{left:667.066667pt;}
.x45_c00478{left:669.200000pt;}
.x129_c00478{left:672.133333pt;}
.xac_c00478{left:675.866667pt;}
.x2e_c00478{left:676.800000pt;}
.x7f_c00478{left:679.466667pt;}
.x69_c00478{left:682.000000pt;}
.xfd_c00478{left:683.200000pt;}
.x9e_c00478{left:684.666667pt;}
.x113_c00478{left:685.733333pt;}
.x50_c00478{left:687.200000pt;}
.x88_c00478{left:688.933333pt;}
.xc4_c00478{left:691.733333pt;}
.x132_c00478{left:694.400000pt;}
.x12_c00478{left:696.533333pt;}
.x6a_c00478{left:697.733333pt;}
.x23_c00478{left:699.200000pt;}
.x11a_c00478{left:700.400000pt;}
.xf3_c00478{left:702.666667pt;}
.x46_c00478{left:704.133333pt;}
.x3a_c00478{left:705.066667pt;}
.x133_c00478{left:707.466667pt;}
.xec_c00478{left:708.666667pt;}
.x6b_c00478{left:711.466667pt;}
.xa6_c00478{left:712.400000pt;}
.x12a_c00478{left:713.733333pt;}
}





/* 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_c00479 {
    display:none;
  }
  .loading-indicator_c00479.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00479 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_c00479 { 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_c00479" -> "#page-container .classname_c00479")
 */
.pf_c00479 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00479 { /* 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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00479 { /* 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_c00479 { /* 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_c00479 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00479 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00479 {overflow:visible;}
  }
}
.c_c00479 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00479 { /* 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_c00479:after { /* webkit #35443 */
  content: '';
}
.t_c00479:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00479 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 */
}
.__c00479 { /* 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_c00479 { /* info for Javascript */
  display:none;
}
.l_c00479 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00479 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00479 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00479: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_c00479 {
    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_c00479.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00479.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_c00479 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00479{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00479;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.000000;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;}
.m95_c00479{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m64_c00479{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m50_c00479{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00479{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m98_c00479{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00479{transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00479{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m94_c00479{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m32_c00479{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mf_c00479{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00479{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m87_c00479{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m72_c00479{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m15_c00479{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00479{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00479{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m85_c00479{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m71_c00479{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m82_c00479{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00479{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m44_c00479{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m37_c00479{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00479{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00479{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00479{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m40_c00479{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4_c00479{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00479{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00479{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m39_c00479{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m28_c00479{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00479{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00479{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m80_c00479{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m25_c00479{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00479{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m7_c00479{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00479{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb_c00479{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00479{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m86_c00479{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.mc_c00479{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00479{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m27_c00479{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00479{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00479{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.me_c00479{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00479{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12_c00479{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00479{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m20_c00479{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m42_c00479{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00479{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00479{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00479{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m34_c00479{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m91_c00479{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00479{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m13_c00479{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00479{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.ma_c00479{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00479{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00479{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00479{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m77_c00479{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m76_c00479{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00479{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.m24_c00479{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00479{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00479{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00479{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m9_c00479{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00479{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m70_c00479{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m6_c00479{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m49_c00479{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00479{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m33_c00479{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m69_c00479{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m19_c00479{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m65_c00479{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m8_c00479{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00479{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m78_c00479{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00479{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00479{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m89_c00479{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00479{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m41_c00479{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m68_c00479{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00479{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m84_c00479{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m22_c00479{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00479{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m29_c00479{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m97_c00479{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m30_c00479{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m52_c00479{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.m57_c00479{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00479{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m54_c00479{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m21_c00479{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.md_c00479{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00479{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m17_c00479{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m16_c00479{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00479{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m60_c00479{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00479{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m18_c00479{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00479{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m38_c00479{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m36_c00479{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m66_c00479{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m43_c00479{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m67_c00479{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m75_c00479{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00479{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00479{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m62_c00479{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00479{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m35_c00479{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m51_c00479{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);}
.m31_c00479{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m63_c00479{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m48_c00479{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00479{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m79_c00479{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m14_c00479{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00479{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m5_c00479{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00479{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m74_c00479{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m93_c00479{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00479{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00479{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m59_c00479{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m58_c00479{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m90_c00479{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m55_c00479{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m45_c00479{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00479{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00479{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m81_c00479{transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274500,0.000000,0.000000,0.250000,0,0);}
.m53_c00479{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m61_c00479{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m96_c00479{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1_c00479{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m88_c00479{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00479{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00479{transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285500,0.000000,0.000000,0.250000,0,0);}
.m23_c00479{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m26_c00479{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m56_c00479{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m46_c00479{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m11_c00479{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m83_c00479{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00479{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00479{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c00479{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00479{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343750,0.000000,0.000000,0.250000,0,0);}
.m73_c00479{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00479{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{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__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00479{word-spacing:-8.860759px;}
.ws8_c00479{word-spacing:-3.611111px;}
.wsb_c00479{word-spacing:0.000000px;}
.ws6_c00479{word-spacing:1.234568px;}
.ws1_c00479{word-spacing:4.375000px;}
.wsa_c00479{word-spacing:5.138889px;}
.ws4_c00479{word-spacing:8.492647px;}
.ws3_c00479{word-spacing:10.000000px;}
.ws5_c00479{word-spacing:11.527778px;}
.ws2_c00479{word-spacing:17.424242px;}
.ws7_c00479{word-spacing:17.500000px;}
.ws0_c00479{word-spacing:19.259259px;}
.fc0_c00479{color:transparent;}
.fs0_c00479{font-size:54.000000px;}
.fs1_c00479{font-size:60.000000px;}
.y0_c00479{bottom:0.000000px;}
.y2b_c00479{bottom:147.300000px;}
.y2a_c00479{bottom:189.000000px;}
.y29_c00479{bottom:229.350000px;}
.y28_c00479{bottom:249.150000px;}
.y27_c00479{bottom:269.250000px;}
.y26_c00479{bottom:289.050000px;}
.y25_c00479{bottom:310.050000px;}
.y24_c00479{bottom:330.150000px;}
.y23_c00479{bottom:349.950000px;}
.y22_c00479{bottom:370.050000px;}
.y21_c00479{bottom:389.850000px;}
.y20_c00479{bottom:409.950000px;}
.y1f_c00479{bottom:430.050000px;}
.y1e_c00479{bottom:449.850000px;}
.y1d_c00479{bottom:469.950000px;}
.y1c_c00479{bottom:489.750000px;}
.y1b_c00479{bottom:509.550000px;}
.y1a_c00479{bottom:529.650000px;}
.y19_c00479{bottom:549.750000px;}
.y18_c00479{bottom:569.550000px;}
.y17_c00479{bottom:590.100000px;}
.y16_c00479{bottom:610.200000px;}
.y15_c00479{bottom:630.000000px;}
.y14_c00479{bottom:650.100000px;}
.y13_c00479{bottom:669.900000px;}
.y12_c00479{bottom:689.700000px;}
.y11_c00479{bottom:709.800000px;}
.y10_c00479{bottom:729.900000px;}
.yf_c00479{bottom:750.000000px;}
.ye_c00479{bottom:769.800000px;}
.yd_c00479{bottom:790.350000px;}
.yc_c00479{bottom:810.450000px;}
.yb_c00479{bottom:830.250000px;}
.ya_c00479{bottom:850.350000px;}
.y9_c00479{bottom:869.550000px;}
.y8_c00479{bottom:890.400000px;}
.y7_c00479{bottom:910.500000px;}
.y6_c00479{bottom:930.300000px;}
.y5_c00479{bottom:950.400000px;}
.y4_c00479{bottom:970.500000px;}
.y3_c00479{bottom:990.750000px;}
.y2_c00479{bottom:1010.850000px;}
.y1_c00479{bottom:1048.650000px;}
.h2_c00479{height:54.000000px;}
.h3_c00479{height:60.000000px;}
.h1_c00479{height:1166.250000px;}
.h0_c00479{height:1166.400056px;}
.w0_c00479{width:920.879975px;}
.w1_c00479{width:921.000000px;}
.x0_c00479{left:0.000000px;}
.x4_c00479{left:100.050000px;}
.x2f_c00479{left:101.250000px;}
.x6b_c00479{left:102.450000px;}
.x81_c00479{left:103.500000px;}
.x9b_c00479{left:104.850000px;}
.xaf_c00479{left:106.800000px;}
.x112_c00479{left:108.000000px;}
.x12b_c00479{left:109.800000px;}
.x75_c00479{left:115.800000px;}
.x3c_c00479{left:118.350000px;}
.x54_c00479{left:122.700000px;}
.x9c_c00479{left:125.700000px;}
.xd9_c00479{left:127.200000px;}
.x5f_c00479{left:130.050000px;}
.x22_c00479{left:132.150000px;}
.x30_c00479{left:133.650000px;}
.x5_c00479{left:137.550000px;}
.xb0_c00479{left:139.500000px;}
.x16_c00479{left:140.700000px;}
.xa5_c00479{left:142.800000px;}
.x82_c00479{left:145.650000px;}
.xfc_c00479{left:148.650000px;}
.x9d_c00479{left:151.200000px;}
.x76_c00479{left:152.550000px;}
.x23_c00479{left:155.550000px;}
.x3d_c00479{left:157.650000px;}
.x89_c00479{left:159.150000px;}
.x94_c00479{left:160.500000px;}
.x128_c00479{left:161.850000px;}
.xc3_c00479{left:162.900000px;}
.x83_c00479{left:166.500000px;}
.x61_c00479{left:167.700000px;}
.x6_c00479{left:169.650000px;}
.x12d_c00479{left:171.300000px;}
.x10e_c00479{left:173.850000px;}
.x4b_c00479{left:175.200000px;}
.xe7_c00479{left:177.150000px;}
.x8a_c00479{left:180.750000px;}
.x24_c00479{left:181.800000px;}
.x123_c00479{left:183.300000px;}
.xb9_c00479{left:185.250000px;}
.xcc_c00479{left:187.200000px;}
.x60_c00479{left:188.850000px;}
.x77_c00479{left:191.850000px;}
.x9e_c00479{left:192.900000px;}
.x129_c00479{left:194.250000px;}
.x4c_c00479{left:196.500000px;}
.xe8_c00479{left:198.750000px;}
.x17_c00479{left:200.850000px;}
.x25_c00479{left:202.350000px;}
.x3e_c00479{left:203.700000px;}
.x7_c00479{left:205.950000px;}
.x6c_c00479{left:207.150000px;}
.xc4_c00479{left:211.800000px;}
.x8b_c00479{left:215.250000px;}
.xf7_c00479{left:217.050000px;}
.xcd_c00479{left:219.600000px;}
.x55_c00479{left:220.650000px;}
.xd4_c00479{left:222.300000px;}
.x12c_c00479{left:223.500000px;}
.xb1_c00479{left:225.600000px;}
.x6d_c00479{left:228.000000px;}
.x26_c00479{left:231.150000px;}
.x18_c00479{left:232.500000px;}
.xf2_c00479{left:233.700000px;}
.x8c_c00479{left:235.800000px;}
.xf8_c00479{left:238.650000px;}
.x102_c00479{left:239.700000px;}
.x31_c00479{left:241.350000px;}
.x78_c00479{left:245.100000px;}
.xe0_c00479{left:246.750000px;}
.x62_c00479{left:248.400000px;}
.x8_c00479{left:251.250000px;}
.xed_c00479{left:253.200000px;}
.x3f_c00479{left:254.850000px;}
.x6e_c00479{left:257.100000px;}
.x9f_c00479{left:259.500000px;}
.x32_c00479{left:261.450000px;}
.x11f_c00479{left:262.500000px;}
.x10f_c00479{left:263.550000px;}
.x79_c00479{left:265.200000px;}
.x117_c00479{left:266.700000px;}
.x56_c00479{left:267.750000px;}
.x63_c00479{left:269.700000px;}
.x9_c00479{left:271.350000px;}
.xb2_c00479{left:272.400000px;}
.x40_c00479{left:274.350000px;}
.x95_c00479{left:276.150000px;}
.xa6_c00479{left:277.500000px;}
.xf3_c00479{left:280.500000px;}
.x19_c00479{left:282.150000px;}
.x10a_c00479{left:283.650000px;}
.xce_c00479{left:286.200000px;}
.x124_c00479{left:289.050000px;}
.xee_c00479{left:291.000000px;}
.xfd_c00479{left:292.800000px;}
.x57_c00479{left:297.600000px;}
.x103_c00479{left:299.100000px;}
.x1a_c00479{left:302.250000px;}
.x33_c00479{left:305.400000px;}
.xda_c00479{left:306.900000px;}
.xb3_c00479{left:311.700000px;}
.xa_c00479{left:313.500000px;}
.xcf_c00479{left:315.300000px;}
.x41_c00479{left:317.550000px;}
.xba_c00479{left:320.850000px;}
.x58_c00479{left:322.800000px;}
.x118_c00479{left:325.350000px;}
.xdb_c00479{left:328.500000px;}
.x96_c00479{left:331.200000px;}
.x7a_c00479{left:332.550000px;}
.x6f_c00479{left:334.500000px;}
.x27_c00479{left:336.300000px;}
.x34_c00479{left:337.800000px;}
.x1b_c00479{left:340.050000px;}
.x8d_c00479{left:341.550000px;}
.xd5_c00479{left:345.150000px;}
.x42_c00479{left:348.900000px;}
.x1_c00479{left:352.050000px;}
.x12e_c00479{left:353.850000px;}
.xb_c00479{left:354.900000px;}
.x125_c00479{left:356.400000px;}
.x64_c00479{left:359.250000px;}
.x10b_c00479{left:360.750000px;}
.xf9_c00479{left:362.850000px;}
.x28_c00479{left:364.050000px;}
.x70_c00479{left:366.900000px;}
.x1c_c00479{left:369.150000px;}
.xd0_c00479{left:370.350000px;}
.x110_c00479{left:371.850000px;}
.x59_c00479{left:373.500000px;}
.xc_c00479{left:375.750000px;}
.x10c_c00479{left:376.950000px;}
.xb4_c00479{left:378.600000px;}
.x97_c00479{left:380.550000px;}
.x131_c00479{left:382.350000px;}
.xd6_c00479{left:384.450000px;}
.xbb_c00479{left:385.650000px;}
.x35_c00479{left:387.450000px;}
.xa0_c00479{left:388.500000px;}
.x1d_c00479{left:390.750000px;}
.x43_c00479{left:391.800000px;}
.x65_c00479{left:396.000000px;}
.xa7_c00479{left:397.050000px;}
.xe1_c00479{left:398.250000px;}
.xb5_c00479{left:399.450000px;}
.x8e_c00479{left:400.500000px;}
.xc5_c00479{left:402.600000px;}
.xe9_c00479{left:404.550000px;}
.x4d_c00479{left:406.650000px;}
.xfe_c00479{left:408.000000px;}
.x36_c00479{left:409.350000px;}
.x5a_c00479{left:412.800000px;}
.x7b_c00479{left:414.600000px;}
.x44_c00479{left:416.250000px;}
.xa1_c00479{left:417.300000px;}
.x119_c00479{left:419.400000px;}
.x98_c00479{left:422.700000px;}
.xfa_c00479{left:425.550000px;}
.xd7_c00479{left:427.350000px;}
.x4e_c00479{left:430.350000px;}
.xc6_c00479{left:432.450000px;}
.x113_c00479{left:434.250000px;}
.xd_c00479{left:435.900000px;}
.xbc_c00479{left:438.150000px;}
.x11e_c00479{left:439.500000px;}
.xa8_c00479{left:440.550000px;}
.x2_c00479{left:442.350000px;}
.xea_c00479{left:444.900000px;}
.x84_c00479{left:445.950000px;}
.x29_c00479{left:447.600000px;}
.x45_c00479{left:450.450000px;}
.xff_c00479{left:451.950000px;}
.x1e_c00479{left:453.750000px;}
.x104_c00479{left:454.950000px;}
.x5b_c00479{left:456.300000px;}
.xe2_c00479{left:457.350000px;}
.x107_c00479{left:459.750000px;}
.xc7_c00479{left:462.300000px;}
.x85_c00479{left:465.450000px;}
.x37_c00479{left:468.450000px;}
.x46_c00479{left:470.250000px;}
.x11a_c00479{left:475.500000px;}
.x120_c00479{left:477.450000px;}
.xbd_c00479{left:478.800000px;}
.x66_c00479{left:482.700000px;}
.xb6_c00479{left:484.050000px;}
.x4f_c00479{left:485.100000px;}
.x7c_c00479{left:487.350000px;}
.x47_c00479{left:490.350000px;}
.xe_c00479{left:491.400000px;}
.x86_c00479{left:494.550000px;}
.x11b_c00479{left:495.600000px;}
.x115_c00479{left:500.250000px;}
.x132_c00479{left:502.650000px;}
.x38_c00479{left:503.700000px;}
.x5c_c00479{left:506.400000px;}
.x100_c00479{left:508.800000px;}
.x108_c00479{left:510.450000px;}
.x50_c00479{left:512.100000px;}
.x2a_c00479{left:514.200000px;}
.xbe_c00479{left:515.850000px;}
.xdc_c00479{left:516.900000px;}
.xd1_c00479{left:520.200000px;}
.x7d_c00479{left:523.050000px;}
.x126_c00479{left:525.600000px;}
.x105_c00479{left:526.650000px;}
.xf_c00479{left:527.700000px;}
.x8f_c00479{left:531.150000px;}
.x51_c00479{left:532.650000px;}
.xa2_c00479{left:534.450000px;}
.xc8_c00479{left:535.800000px;}
.xd2_c00479{left:537.150000px;}
.xdd_c00479{left:539.550000px;}
.x2b_c00479{left:541.500000px;}
.x71_c00479{left:543.000000px;}
.x7e_c00479{left:544.350000px;}
.xa9_c00479{left:546.750000px;}
.x12f_c00479{left:549.000000px;}
.xbf_c00479{left:552.150000px;}
.x67_c00479{left:553.200000px;}
.xfb_c00479{left:557.250000px;}
.x90_c00479{left:558.900000px;}
.x106_c00479{left:560.100000px;}
.x12a_c00479{left:561.900000px;}
.xe3_c00479{left:566.400000px;}
.x2c_c00479{left:568.800000px;}
.x10_c00479{left:570.150000px;}
.x87_c00479{left:571.650000px;}
.x7f_c00479{left:572.850000px;}
.xaa_c00479{left:575.850000px;}
.xeb_c00479{left:580.200000px;}
.x111_c00479{left:583.950000px;}
.x109_c00479{left:585.300000px;}
.xd8_c00479{left:589.050000px;}
.x11_c00479{left:590.250000px;}
.x1f_c00479{left:592.350000px;}
.xc9_c00479{left:596.250000px;}
.x52_c00479{left:597.450000px;}
.x5d_c00479{left:598.500000px;}
.x2d_c00479{left:601.950000px;}
.xef_c00479{left:603.750000px;}
.x39_c00479{left:605.550000px;}
.x68_c00479{left:607.500000px;}
.xab_c00479{left:610.050000px;}
.x72_c00479{left:611.700000px;}
.xb7_c00479{left:615.450000px;}
.xca_c00479{left:617.100000px;}
.xc0_c00479{left:621.150000px;}
.xe4_c00479{left:623.250000px;}
.x10d_c00479{left:625.800000px;}
.x20_c00479{left:627.300000px;}
.x69_c00479{left:629.100000px;}
.x91_c00479{left:630.450000px;}
.x99_c00479{left:631.950000px;}
.x48_c00479{left:634.200000px;}
.x114_c00479{left:635.400000px;}
.xac_c00479{left:637.050000px;}
.xc1_c00479{left:641.700000px;}
.xf4_c00479{left:644.550000px;}
.x12_c00479{left:645.750000px;}
.x21_c00479{left:647.100000px;}
.xe5_c00479{left:651.300000px;}
.xcb_c00479{left:653.400000px;}
.x116_c00479{left:655.350000px;}
.xad_c00479{left:656.850000px;}
.x130_c00479{left:658.350000px;}
.x11c_c00479{left:661.500000px;}
.x5e_c00479{left:663.600000px;}
.xf5_c00479{left:665.400000px;}
.x73_c00479{left:667.200000px;}
.x121_c00479{left:668.550000px;}
.x2e_c00479{left:670.050000px;}
.x13_c00479{left:672.750000px;}
.xa3_c00479{left:675.150000px;}
.xd3_c00479{left:676.950000px;}
.xec_c00479{left:679.500000px;}
.x92_c00479{left:682.950000px;}
.xe6_c00479{left:689.100000px;}
.x3a_c00479{left:692.250000px;}
.x9a_c00479{left:694.200000px;}
.x53_c00479{left:700.500000px;}
.x49_c00479{left:703.650000px;}
.x6a_c00479{left:705.750000px;}
.xde_c00479{left:706.800000px;}
.xa4_c00479{left:711.150000px;}
.x14_c00479{left:713.850000px;}
.x122_c00479{left:716.100000px;}
.x88_c00479{left:720.750000px;}
.xae_c00479{left:725.250000px;}
.x3b_c00479{left:726.450000px;}
.xb8_c00479{left:730.650000px;}
.x15_c00479{left:732.900000px;}
.xf0_c00479{left:736.650000px;}
.x4a_c00479{left:738.900000px;}
.x3_c00479{left:742.200000px;}
.xc2_c00479{left:744.600000px;}
.xdf_c00479{left:745.650000px;}
.x80_c00479{left:746.850000px;}
.x127_c00479{left:750.150000px;}
.xf6_c00479{left:754.650000px;}
.x74_c00479{left:758.700000px;}
.x93_c00479{left:760.350000px;}
.xf1_c00479{left:761.850000px;}
.x11d_c00479{left:764.100000px;}
.x101_c00479{left:768.600000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws9_c00479{word-spacing:-7.876231pt;}
.ws8_c00479{word-spacing:-3.209877pt;}
.wsb_c00479{word-spacing:0.000000pt;}
.ws6_c00479{word-spacing:1.097394pt;}
.ws1_c00479{word-spacing:3.888889pt;}
.wsa_c00479{word-spacing:4.567901pt;}
.ws4_c00479{word-spacing:7.549020pt;}
.ws3_c00479{word-spacing:8.888889pt;}
.ws5_c00479{word-spacing:10.246914pt;}
.ws2_c00479{word-spacing:15.488215pt;}
.ws7_c00479{word-spacing:15.555556pt;}
.ws0_c00479{word-spacing:17.119342pt;}
.fs0_c00479{font-size:48.000000pt;}
.fs1_c00479{font-size:53.333333pt;}
.y0_c00479{bottom:0.000000pt;}
.y2b_c00479{bottom:130.933333pt;}
.y2a_c00479{bottom:168.000000pt;}
.y29_c00479{bottom:203.866667pt;}
.y28_c00479{bottom:221.466667pt;}
.y27_c00479{bottom:239.333333pt;}
.y26_c00479{bottom:256.933333pt;}
.y25_c00479{bottom:275.600000pt;}
.y24_c00479{bottom:293.466667pt;}
.y23_c00479{bottom:311.066667pt;}
.y22_c00479{bottom:328.933333pt;}
.y21_c00479{bottom:346.533333pt;}
.y20_c00479{bottom:364.400000pt;}
.y1f_c00479{bottom:382.266667pt;}
.y1e_c00479{bottom:399.866667pt;}
.y1d_c00479{bottom:417.733333pt;}
.y1c_c00479{bottom:435.333333pt;}
.y1b_c00479{bottom:452.933333pt;}
.y1a_c00479{bottom:470.800000pt;}
.y19_c00479{bottom:488.666667pt;}
.y18_c00479{bottom:506.266667pt;}
.y17_c00479{bottom:524.533333pt;}
.y16_c00479{bottom:542.400000pt;}
.y15_c00479{bottom:560.000000pt;}
.y14_c00479{bottom:577.866667pt;}
.y13_c00479{bottom:595.466667pt;}
.y12_c00479{bottom:613.066667pt;}
.y11_c00479{bottom:630.933333pt;}
.y10_c00479{bottom:648.800000pt;}
.yf_c00479{bottom:666.666667pt;}
.ye_c00479{bottom:684.266667pt;}
.yd_c00479{bottom:702.533333pt;}
.yc_c00479{bottom:720.400000pt;}
.yb_c00479{bottom:738.000000pt;}
.ya_c00479{bottom:755.866667pt;}
.y9_c00479{bottom:772.933333pt;}
.y8_c00479{bottom:791.466667pt;}
.y7_c00479{bottom:809.333333pt;}
.y6_c00479{bottom:826.933333pt;}
.y5_c00479{bottom:844.800000pt;}
.y4_c00479{bottom:862.666667pt;}
.y3_c00479{bottom:880.666667pt;}
.y2_c00479{bottom:898.533333pt;}
.y1_c00479{bottom:932.133333pt;}
.h2_c00479{height:48.000000pt;}
.h3_c00479{height:53.333333pt;}
.h1_c00479{height:1036.666667pt;}
.h0_c00479{height:1036.800049pt;}
.w0_c00479{width:818.559977pt;}
.w1_c00479{width:818.666667pt;}
.x0_c00479{left:0.000000pt;}
.x4_c00479{left:88.933333pt;}
.x2f_c00479{left:90.000000pt;}
.x6b_c00479{left:91.066667pt;}
.x81_c00479{left:92.000000pt;}
.x9b_c00479{left:93.200000pt;}
.xaf_c00479{left:94.933333pt;}
.x112_c00479{left:96.000000pt;}
.x12b_c00479{left:97.600000pt;}
.x75_c00479{left:102.933333pt;}
.x3c_c00479{left:105.200000pt;}
.x54_c00479{left:109.066667pt;}
.x9c_c00479{left:111.733333pt;}
.xd9_c00479{left:113.066667pt;}
.x5f_c00479{left:115.600000pt;}
.x22_c00479{left:117.466667pt;}
.x30_c00479{left:118.800000pt;}
.x5_c00479{left:122.266667pt;}
.xb0_c00479{left:124.000000pt;}
.x16_c00479{left:125.066667pt;}
.xa5_c00479{left:126.933333pt;}
.x82_c00479{left:129.466667pt;}
.xfc_c00479{left:132.133333pt;}
.x9d_c00479{left:134.400000pt;}
.x76_c00479{left:135.600000pt;}
.x23_c00479{left:138.266667pt;}
.x3d_c00479{left:140.133333pt;}
.x89_c00479{left:141.466667pt;}
.x94_c00479{left:142.666667pt;}
.x128_c00479{left:143.866667pt;}
.xc3_c00479{left:144.800000pt;}
.x83_c00479{left:148.000000pt;}
.x61_c00479{left:149.066667pt;}
.x6_c00479{left:150.800000pt;}
.x12d_c00479{left:152.266667pt;}
.x10e_c00479{left:154.533333pt;}
.x4b_c00479{left:155.733333pt;}
.xe7_c00479{left:157.466667pt;}
.x8a_c00479{left:160.666667pt;}
.x24_c00479{left:161.600000pt;}
.x123_c00479{left:162.933333pt;}
.xb9_c00479{left:164.666667pt;}
.xcc_c00479{left:166.400000pt;}
.x60_c00479{left:167.866667pt;}
.x77_c00479{left:170.533333pt;}
.x9e_c00479{left:171.466667pt;}
.x129_c00479{left:172.666667pt;}
.x4c_c00479{left:174.666667pt;}
.xe8_c00479{left:176.666667pt;}
.x17_c00479{left:178.533333pt;}
.x25_c00479{left:179.866667pt;}
.x3e_c00479{left:181.066667pt;}
.x7_c00479{left:183.066667pt;}
.x6c_c00479{left:184.133333pt;}
.xc4_c00479{left:188.266667pt;}
.x8b_c00479{left:191.333333pt;}
.xf7_c00479{left:192.933333pt;}
.xcd_c00479{left:195.200000pt;}
.x55_c00479{left:196.133333pt;}
.xd4_c00479{left:197.600000pt;}
.x12c_c00479{left:198.666667pt;}
.xb1_c00479{left:200.533333pt;}
.x6d_c00479{left:202.666667pt;}
.x26_c00479{left:205.466667pt;}
.x18_c00479{left:206.666667pt;}
.xf2_c00479{left:207.733333pt;}
.x8c_c00479{left:209.600000pt;}
.xf8_c00479{left:212.133333pt;}
.x102_c00479{left:213.066667pt;}
.x31_c00479{left:214.533333pt;}
.x78_c00479{left:217.866667pt;}
.xe0_c00479{left:219.333333pt;}
.x62_c00479{left:220.800000pt;}
.x8_c00479{left:223.333333pt;}
.xed_c00479{left:225.066667pt;}
.x3f_c00479{left:226.533333pt;}
.x6e_c00479{left:228.533333pt;}
.x9f_c00479{left:230.666667pt;}
.x32_c00479{left:232.400000pt;}
.x11f_c00479{left:233.333333pt;}
.x10f_c00479{left:234.266667pt;}
.x79_c00479{left:235.733333pt;}
.x117_c00479{left:237.066667pt;}
.x56_c00479{left:238.000000pt;}
.x63_c00479{left:239.733333pt;}
.x9_c00479{left:241.200000pt;}
.xb2_c00479{left:242.133333pt;}
.x40_c00479{left:243.866667pt;}
.x95_c00479{left:245.466667pt;}
.xa6_c00479{left:246.666667pt;}
.xf3_c00479{left:249.333333pt;}
.x19_c00479{left:250.800000pt;}
.x10a_c00479{left:252.133333pt;}
.xce_c00479{left:254.400000pt;}
.x124_c00479{left:256.933333pt;}
.xee_c00479{left:258.666667pt;}
.xfd_c00479{left:260.266667pt;}
.x57_c00479{left:264.533333pt;}
.x103_c00479{left:265.866667pt;}
.x1a_c00479{left:268.666667pt;}
.x33_c00479{left:271.466667pt;}
.xda_c00479{left:272.800000pt;}
.xb3_c00479{left:277.066667pt;}
.xa_c00479{left:278.666667pt;}
.xcf_c00479{left:280.266667pt;}
.x41_c00479{left:282.266667pt;}
.xba_c00479{left:285.200000pt;}
.x58_c00479{left:286.933333pt;}
.x118_c00479{left:289.200000pt;}
.xdb_c00479{left:292.000000pt;}
.x96_c00479{left:294.400000pt;}
.x7a_c00479{left:295.600000pt;}
.x6f_c00479{left:297.333333pt;}
.x27_c00479{left:298.933333pt;}
.x34_c00479{left:300.266667pt;}
.x1b_c00479{left:302.266667pt;}
.x8d_c00479{left:303.600000pt;}
.xd5_c00479{left:306.800000pt;}
.x42_c00479{left:310.133333pt;}
.x1_c00479{left:312.933333pt;}
.x12e_c00479{left:314.533333pt;}
.xb_c00479{left:315.466667pt;}
.x125_c00479{left:316.800000pt;}
.x64_c00479{left:319.333333pt;}
.x10b_c00479{left:320.666667pt;}
.xf9_c00479{left:322.533333pt;}
.x28_c00479{left:323.600000pt;}
.x70_c00479{left:326.133333pt;}
.x1c_c00479{left:328.133333pt;}
.xd0_c00479{left:329.200000pt;}
.x110_c00479{left:330.533333pt;}
.x59_c00479{left:332.000000pt;}
.xc_c00479{left:334.000000pt;}
.x10c_c00479{left:335.066667pt;}
.xb4_c00479{left:336.533333pt;}
.x97_c00479{left:338.266667pt;}
.x131_c00479{left:339.866667pt;}
.xd6_c00479{left:341.733333pt;}
.xbb_c00479{left:342.800000pt;}
.x35_c00479{left:344.400000pt;}
.xa0_c00479{left:345.333333pt;}
.x1d_c00479{left:347.333333pt;}
.x43_c00479{left:348.266667pt;}
.x65_c00479{left:352.000000pt;}
.xa7_c00479{left:352.933333pt;}
.xe1_c00479{left:354.000000pt;}
.xb5_c00479{left:355.066667pt;}
.x8e_c00479{left:356.000000pt;}
.xc5_c00479{left:357.866667pt;}
.xe9_c00479{left:359.600000pt;}
.x4d_c00479{left:361.466667pt;}
.xfe_c00479{left:362.666667pt;}
.x36_c00479{left:363.866667pt;}
.x5a_c00479{left:366.933333pt;}
.x7b_c00479{left:368.533333pt;}
.x44_c00479{left:370.000000pt;}
.xa1_c00479{left:370.933333pt;}
.x119_c00479{left:372.800000pt;}
.x98_c00479{left:375.733333pt;}
.xfa_c00479{left:378.266667pt;}
.xd7_c00479{left:379.866667pt;}
.x4e_c00479{left:382.533333pt;}
.xc6_c00479{left:384.400000pt;}
.x113_c00479{left:386.000000pt;}
.xd_c00479{left:387.466667pt;}
.xbc_c00479{left:389.466667pt;}
.x11e_c00479{left:390.666667pt;}
.xa8_c00479{left:391.600000pt;}
.x2_c00479{left:393.200000pt;}
.xea_c00479{left:395.466667pt;}
.x84_c00479{left:396.400000pt;}
.x29_c00479{left:397.866667pt;}
.x45_c00479{left:400.400000pt;}
.xff_c00479{left:401.733333pt;}
.x1e_c00479{left:403.333333pt;}
.x104_c00479{left:404.400000pt;}
.x5b_c00479{left:405.600000pt;}
.xe2_c00479{left:406.533333pt;}
.x107_c00479{left:408.666667pt;}
.xc7_c00479{left:410.933333pt;}
.x85_c00479{left:413.733333pt;}
.x37_c00479{left:416.400000pt;}
.x46_c00479{left:418.000000pt;}
.x11a_c00479{left:422.666667pt;}
.x120_c00479{left:424.400000pt;}
.xbd_c00479{left:425.600000pt;}
.x66_c00479{left:429.066667pt;}
.xb6_c00479{left:430.266667pt;}
.x4f_c00479{left:431.200000pt;}
.x7c_c00479{left:433.200000pt;}
.x47_c00479{left:435.866667pt;}
.xe_c00479{left:436.800000pt;}
.x86_c00479{left:439.600000pt;}
.x11b_c00479{left:440.533333pt;}
.x115_c00479{left:444.666667pt;}
.x132_c00479{left:446.800000pt;}
.x38_c00479{left:447.733333pt;}
.x5c_c00479{left:450.133333pt;}
.x100_c00479{left:452.266667pt;}
.x108_c00479{left:453.733333pt;}
.x50_c00479{left:455.200000pt;}
.x2a_c00479{left:457.066667pt;}
.xbe_c00479{left:458.533333pt;}
.xdc_c00479{left:459.466667pt;}
.xd1_c00479{left:462.400000pt;}
.x7d_c00479{left:464.933333pt;}
.x126_c00479{left:467.200000pt;}
.x105_c00479{left:468.133333pt;}
.xf_c00479{left:469.066667pt;}
.x8f_c00479{left:472.133333pt;}
.x51_c00479{left:473.466667pt;}
.xa2_c00479{left:475.066667pt;}
.xc8_c00479{left:476.266667pt;}
.xd2_c00479{left:477.466667pt;}
.xdd_c00479{left:479.600000pt;}
.x2b_c00479{left:481.333333pt;}
.x71_c00479{left:482.666667pt;}
.x7e_c00479{left:483.866667pt;}
.xa9_c00479{left:486.000000pt;}
.x12f_c00479{left:488.000000pt;}
.xbf_c00479{left:490.800000pt;}
.x67_c00479{left:491.733333pt;}
.xfb_c00479{left:495.333333pt;}
.x90_c00479{left:496.800000pt;}
.x106_c00479{left:497.866667pt;}
.x12a_c00479{left:499.466667pt;}
.xe3_c00479{left:503.466667pt;}
.x2c_c00479{left:505.600000pt;}
.x10_c00479{left:506.800000pt;}
.x87_c00479{left:508.133333pt;}
.x7f_c00479{left:509.200000pt;}
.xaa_c00479{left:511.866667pt;}
.xeb_c00479{left:515.733333pt;}
.x111_c00479{left:519.066667pt;}
.x109_c00479{left:520.266667pt;}
.xd8_c00479{left:523.600000pt;}
.x11_c00479{left:524.666667pt;}
.x1f_c00479{left:526.533333pt;}
.xc9_c00479{left:530.000000pt;}
.x52_c00479{left:531.066667pt;}
.x5d_c00479{left:532.000000pt;}
.x2d_c00479{left:535.066667pt;}
.xef_c00479{left:536.666667pt;}
.x39_c00479{left:538.266667pt;}
.x68_c00479{left:540.000000pt;}
.xab_c00479{left:542.266667pt;}
.x72_c00479{left:543.733333pt;}
.xb7_c00479{left:547.066667pt;}
.xca_c00479{left:548.533333pt;}
.xc0_c00479{left:552.133333pt;}
.xe4_c00479{left:554.000000pt;}
.x10d_c00479{left:556.266667pt;}
.x20_c00479{left:557.600000pt;}
.x69_c00479{left:559.200000pt;}
.x91_c00479{left:560.400000pt;}
.x99_c00479{left:561.733333pt;}
.x48_c00479{left:563.733333pt;}
.x114_c00479{left:564.800000pt;}
.xac_c00479{left:566.266667pt;}
.xc1_c00479{left:570.400000pt;}
.xf4_c00479{left:572.933333pt;}
.x12_c00479{left:574.000000pt;}
.x21_c00479{left:575.200000pt;}
.xe5_c00479{left:578.933333pt;}
.xcb_c00479{left:580.800000pt;}
.x116_c00479{left:582.533333pt;}
.xad_c00479{left:583.866667pt;}
.x130_c00479{left:585.200000pt;}
.x11c_c00479{left:588.000000pt;}
.x5e_c00479{left:589.866667pt;}
.xf5_c00479{left:591.466667pt;}
.x73_c00479{left:593.066667pt;}
.x121_c00479{left:594.266667pt;}
.x2e_c00479{left:595.600000pt;}
.x13_c00479{left:598.000000pt;}
.xa3_c00479{left:600.133333pt;}
.xd3_c00479{left:601.733333pt;}
.xec_c00479{left:604.000000pt;}
.x92_c00479{left:607.066667pt;}
.xe6_c00479{left:612.533333pt;}
.x3a_c00479{left:615.333333pt;}
.x9a_c00479{left:617.066667pt;}
.x53_c00479{left:622.666667pt;}
.x49_c00479{left:625.466667pt;}
.x6a_c00479{left:627.333333pt;}
.xde_c00479{left:628.266667pt;}
.xa4_c00479{left:632.133333pt;}
.x14_c00479{left:634.533333pt;}
.x122_c00479{left:636.533333pt;}
.x88_c00479{left:640.666667pt;}
.xae_c00479{left:644.666667pt;}
.x3b_c00479{left:645.733333pt;}
.xb8_c00479{left:649.466667pt;}
.x15_c00479{left:651.466667pt;}
.xf0_c00479{left:654.800000pt;}
.x4a_c00479{left:656.800000pt;}
.x3_c00479{left:659.733333pt;}
.xc2_c00479{left:661.866667pt;}
.xdf_c00479{left:662.800000pt;}
.x80_c00479{left:663.866667pt;}
.x127_c00479{left:666.800000pt;}
.xf6_c00479{left:670.800000pt;}
.x74_c00479{left:674.400000pt;}
.x93_c00479{left:675.866667pt;}
.xf1_c00479{left:677.200000pt;}
.x11d_c00479{left:679.200000pt;}
.x101_c00479{left:683.200000pt;}
}





/* 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_c00480 {
    display:none;
  }
  .loading-indicator_c00480.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00480 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_c00480 { 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_c00480" -> "#page-container .classname_c00480")
 */
.pf_c00480 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00480 { /* 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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00480 { /* 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_c00480 { /* 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_c00480 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00480 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00480 {overflow:visible;}
  }
}
.c_c00480 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00480 { /* 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_c00480:after { /* webkit #35443 */
  content: '';
}
.t_c00480:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00480 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 */
}
.__c00480 { /* 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_c00480 { /* info for Javascript */
  display:none;
}
.l_c00480 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00480 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00480 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00480: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_c00480 {
    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_c00480.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00480.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_c00480 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00480{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00480;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.000000;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;}
.m1e_c00480{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m56_c00480{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.mad_c00480{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m27_c00480{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00480{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00480{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m21_c00480{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m49_c00480{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m39_c00480{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m99_c00480{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00480{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m72_c00480{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m19_c00480{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m76_c00480{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m87_c00480{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m46_c00480{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m62_c00480{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m74_c00480{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mae_c00480{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00480{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00480{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m89_c00480{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00480{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00480{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m83_c00480{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m81_c00480{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m65_c00480{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m64_c00480{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m50_c00480{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00480{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m20_c00480{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m24_c00480{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m90_c00480{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m44_c00480{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m3_c00480{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00480{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00480{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m25_c00480{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m68_c00480{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00480{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m91_c00480{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m93_c00480{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m5_c00480{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m84_c00480{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.mab_c00480{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00480{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00480{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00480{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00480{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m53_c00480{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00480{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00480{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00480{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m8_c00480{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m7_c00480{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00480{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.ma9_c00480{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m80_c00480{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m36_c00480{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00480{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m75_c00480{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m79_c00480{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m86_c00480{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00480{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m38_c00480{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.maa_c00480{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.md_c00480{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m67_c00480{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00480{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m59_c00480{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m77_c00480{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m43_c00480{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m9_c00480{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00480{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00480{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me_c00480{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m26_c00480{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m12_c00480{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00480{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.mc_c00480{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00480{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00480{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00480{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00480{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m54_c00480{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m47_c00480{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00480{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m35_c00480{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00480{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m22_c00480{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m71_c00480{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00480{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m32_c00480{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00480{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m95_c00480{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m88_c00480{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00480{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00480{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m82_c00480{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m58_c00480{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m16_c00480{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mac_c00480{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00480{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m60_c00480{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m69_c00480{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00480{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m30_c00480{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m23_c00480{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m66_c00480{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00480{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m14_c00480{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6_c00480{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m70_c00480{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m29_c00480{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m94_c00480{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m2_c00480{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m34_c00480{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00480{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00480{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m98_c00480{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00480{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00480{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00480{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m92_c00480{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00480{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m31_c00480{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00480{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c00480{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00480{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00480{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m51_c00480{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m41_c00480{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00480{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00480{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);}
.mf_c00480{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00480{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00480{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00480{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00480{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m28_c00480{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m45_c00480{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m37_c00480{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m17_c00480{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m18_c00480{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma_c00480{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00480{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00480{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00480{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00480{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00480{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m40_c00480{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m61_c00480{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m42_c00480{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m73_c00480{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00480{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00480{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m52_c00480{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m48_c00480{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m33_c00480{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00480{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m57_c00480{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m0_c00480{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m96_c00480{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m78_c00480{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m10_c00480{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mb_c00480{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m63_c00480{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m1_c00480{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m55_c00480{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m13_c00480{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m4_c00480{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00480{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00480{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00480{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m85_c00480{transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.516000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{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__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00480{word-spacing:-10.138889px;}
.ws2_c00480{word-spacing:-3.611111px;}
.ws6_c00480{word-spacing:0.000000px;}
.ws3_c00480{word-spacing:4.375000px;}
.ws4_c00480{word-spacing:6.388889px;}
.ws0_c00480{word-spacing:6.707317px;}
.ws1_c00480{word-spacing:10.000000px;}
.fc0_c00480{color:transparent;}
.fs0_c00480{font-size:60.000000px;}
.y0_c00480{bottom:0.000000px;}
.y2d_c00480{bottom:149.400000px;}
.y2c_c00480{bottom:168.900000px;}
.y2b_c00480{bottom:189.000000px;}
.y2a_c00480{bottom:208.950000px;}
.y29_c00480{bottom:229.050000px;}
.y28_c00480{bottom:249.150000px;}
.y27_c00480{bottom:268.950000px;}
.y26_c00480{bottom:288.750000px;}
.y25_c00480{bottom:308.850000px;}
.y24_c00480{bottom:328.350000px;}
.y23_c00480{bottom:348.900000px;}
.y22_c00480{bottom:368.700000px;}
.y21_c00480{bottom:388.800000px;}
.y20_c00480{bottom:408.600000px;}
.y1f_c00480{bottom:428.400000px;}
.y1e_c00480{bottom:448.500000px;}
.y1d_c00480{bottom:468.300000px;}
.y1c_c00480{bottom:487.950000px;}
.y1b_c00480{bottom:508.500000px;}
.y1a_c00480{bottom:528.600000px;}
.y19_c00480{bottom:548.400000px;}
.y18_c00480{bottom:568.200000px;}
.y17_c00480{bottom:588.300000px;}
.y16_c00480{bottom:608.100000px;}
.y15_c00480{bottom:628.200000px;}
.y14_c00480{bottom:648.000000px;}
.y13_c00480{bottom:667.800000px;}
.y12_c00480{bottom:688.350000px;}
.y11_c00480{bottom:708.450000px;}
.y10_c00480{bottom:728.250000px;}
.yf_c00480{bottom:748.800000px;}
.ye_c00480{bottom:768.600000px;}
.yd_c00480{bottom:788.700000px;}
.yc_c00480{bottom:808.500000px;}
.yb_c00480{bottom:828.900000px;}
.ya_c00480{bottom:848.700000px;}
.y9_c00480{bottom:869.250000px;}
.y8_c00480{bottom:889.050000px;}
.y7_c00480{bottom:909.150000px;}
.y6_c00480{bottom:928.950000px;}
.y5_c00480{bottom:949.050000px;}
.y4_c00480{bottom:969.150000px;}
.y3_c00480{bottom:988.950000px;}
.y2_c00480{bottom:1009.050000px;}
.y1_c00480{bottom:1047.900000px;}
.h2_c00480{height:60.000000px;}
.h1_c00480{height:1166.250000px;}
.h0_c00480{height:1166.400056px;}
.w0_c00480{width:920.879975px;}
.w1_c00480{width:921.000000px;}
.x0_c00480{left:0.000000px;}
.x11f_c00480{left:145.200000px;}
.x11a_c00480{left:146.250000px;}
.xeb_c00480{left:147.300000px;}
.xb3_c00480{left:148.500000px;}
.x8d_c00480{left:149.550000px;}
.x23_c00480{left:150.750000px;}
.x3_c00480{left:151.950000px;}
.x1_c00480{left:153.000000px;}
.x11b_c00480{left:163.500000px;}
.x120_c00480{left:166.800000px;}
.x65_c00480{left:168.150000px;}
.x15_c00480{left:172.650000px;}
.x3e_c00480{left:174.450000px;}
.x13c_c00480{left:176.100000px;}
.xa4_c00480{left:177.750000px;}
.xab_c00480{left:179.550000px;}
.x83_c00480{left:181.500000px;}
.x66_c00480{left:186.150000px;}
.xfd_c00480{left:189.450000px;}
.xe5_c00480{left:190.500000px;}
.x24_c00480{left:191.850000px;}
.xf0_c00480{left:194.100000px;}
.xc5_c00480{left:195.300000px;}
.x4_c00480{left:198.750000px;}
.x7e_c00480{left:199.950000px;}
.x99_c00480{left:201.900000px;}
.x72_c00480{left:204.000000px;}
.x25_c00480{left:206.250000px;}
.xcf_c00480{left:208.650000px;}
.x145_c00480{left:209.700000px;}
.x3f_c00480{left:211.200000px;}
.x12c_c00480{left:214.500000px;}
.x11c_c00480{left:216.000000px;}
.x56_c00480{left:217.500000px;}
.x16_c00480{left:219.450000px;}
.x5_c00480{left:221.100000px;}
.x32_c00480{left:223.050000px;}
.x4c_c00480{left:226.350000px;}
.x67_c00480{left:228.300000px;}
.xbc_c00480{left:229.350000px;}
.x73_c00480{left:232.800000px;}
.x136_c00480{left:233.850000px;}
.x9a_c00480{left:235.350000px;}
.xac_c00480{left:236.400000px;}
.xdf_c00480{left:241.800000px;}
.xd0_c00480{left:243.150000px;}
.x17_c00480{left:244.950000px;}
.x57_c00480{left:246.000000px;}
.x6_c00480{left:250.200000px;}
.xf1_c00480{left:251.400000px;}
.x132_c00480{left:252.900000px;}
.x7f_c00480{left:254.700000px;}
.x4d_c00480{left:255.900000px;}
.xc6_c00480{left:257.250000px;}
.x11d_c00480{left:259.200000px;}
.xd8_c00480{left:261.000000px;}
.x26_c00480{left:265.650000px;}
.x101_c00480{left:266.700000px;}
.x12f_c00480{left:268.800000px;}
.x10c_c00480{left:270.150000px;}
.x58_c00480{left:271.200000px;}
.x7_c00480{left:272.850000px;}
.xf2_c00480{left:274.050000px;}
.x40_c00480{left:275.250000px;}
.x137_c00480{left:276.300000px;}
.xc7_c00480{left:278.100000px;}
.x74_c00480{left:282.450000px;}
.x121_c00480{left:283.800000px;}
.x59_c00480{left:286.350000px;}
.x9b_c00480{left:287.850000px;}
.x12d_c00480{left:290.400000px;}
.xfe_c00480{left:291.750000px;}
.xb4_c00480{left:292.950000px;}
.xec_c00480{left:294.150000px;}
.xdc_c00480{left:295.650000px;}
.x84_c00480{left:297.750000px;}
.x4e_c00480{left:299.100000px;}
.x5a_c00480{left:301.050000px;}
.x41_c00480{left:303.300000px;}
.x138_c00480{left:304.800000px;}
.x110_c00480{left:307.200000px;}
.x80_c00480{left:309.000000px;}
.xa5_c00480{left:311.700000px;}
.xe6_c00480{left:315.150000px;}
.x85_c00480{left:316.800000px;}
.x27_c00480{left:317.850000px;}
.x11e_c00480{left:320.700000px;}
.x102_c00480{left:322.050000px;}
.x18_c00480{left:323.400000px;}
.x8_c00480{left:326.100000px;}
.x111_c00480{left:327.300000px;}
.x114_c00480{left:328.650000px;}
.x5b_c00480{left:329.850000px;}
.x86_c00480{left:331.950000px;}
.x68_c00480{left:336.000000px;}
.xad_c00480{left:339.000000px;}
.x33_c00480{left:340.650000px;}
.x103_c00480{left:341.850000px;}
.xe7_c00480{left:344.250000px;}
.xf3_c00480{left:346.050000px;}
.x9_c00480{left:348.750000px;}
.x5c_c00480{left:349.950000px;}
.xd9_c00480{left:351.750000px;}
.xa6_c00480{left:352.800000px;}
.x42_c00480{left:354.000000px;}
.x146_c00480{left:355.800000px;}
.x9c_c00480{left:357.750000px;}
.xd1_c00480{left:360.750000px;}
.xb5_c00480{left:364.650000px;}
.xf8_c00480{left:365.850000px;}
.xf4_c00480{left:367.650000px;}
.x43_c00480{left:368.700000px;}
.x4f_c00480{left:371.100000px;}
.xdd_c00480{left:374.250000px;}
.x69_c00480{left:375.300000px;}
.x34_c00480{left:378.150000px;}
.xa_c00480{left:381.150000px;}
.x5d_c00480{left:383.850000px;}
.x112_c00480{left:384.900000px;}
.x9d_c00480{left:386.550000px;}
.x28_c00480{left:387.750000px;}
.x130_c00480{left:389.100000px;}
.x8e_c00480{left:393.900000px;}
.xa7_c00480{left:396.750000px;}
.x29_c00480{left:398.850000px;}
.x115_c00480{left:400.350000px;}
.x19_c00480{left:404.100000px;}
.xbd_c00480{left:405.600000px;}
.x35_c00480{left:407.700000px;}
.x6a_c00480{left:411.300000px;}
.x10d_c00480{left:412.350000px;}
.x8f_c00480{left:414.000000px;}
.x116_c00480{left:415.050000px;}
.x5e_c00480{left:416.250000px;}
.x81_c00480{left:418.050000px;}
.xe8_c00480{left:419.850000px;}
.x147_c00480{left:420.900000px;}
.x122_c00480{left:422.850000px;}
.x44_c00480{left:424.200000px;}
.xa8_c00480{left:425.250000px;}
.x126_c00480{left:426.450000px;}
.x2a_c00480{left:427.650000px;}
.xd2_c00480{left:428.850000px;}
.x10e_c00480{left:430.350000px;}
.x1a_c00480{left:433.950000px;}
.x141_c00480{left:437.550000px;}
.x133_c00480{left:438.900000px;}
.xae_c00480{left:445.500000px;}
.x45_c00480{left:447.300000px;}
.x9e_c00480{left:448.800000px;}
.x2_c00480{left:451.050000px;}
.x50_c00480{left:453.150000px;}
.xb_c00480{left:454.650000px;}
.x90_c00480{left:456.150000px;}
.x2b_c00480{left:459.300000px;}
.xf5_c00480{left:460.950000px;}
.x134_c00480{left:462.300000px;}
.xb6_c00480{left:463.950000px;}
.x6b_c00480{left:465.300000px;}
.x139_c00480{left:466.350000px;}
.x9f_c00480{left:468.300000px;}
.x12a_c00480{left:471.900000px;}
.x104_c00480{left:474.300000px;}
.xf9_c00480{left:475.500000px;}
.x1b_c00480{left:477.900000px;}
.x117_c00480{left:479.550000px;}
.x2c_c00480{left:480.600000px;}
.xda_c00480{left:481.650000px;}
.x6c_c00480{left:484.050000px;}
.x5f_c00480{left:486.150000px;}
.xed_c00480{left:487.500000px;}
.x75_c00480{left:490.800000px;}
.xe0_c00480{left:492.300000px;}
.xbe_c00480{left:496.350000px;}
.x6d_c00480{left:498.450000px;}
.x46_c00480{left:500.550000px;}
.x76_c00480{left:501.600000px;}
.x10f_c00480{left:504.900000px;}
.x1c_c00480{left:506.400000px;}
.xc_c00480{left:508.350000px;}
.x82_c00480{left:510.150000px;}
.xff_c00480{left:511.800000px;}
.x36_c00480{left:513.450000px;}
.xa0_c00480{left:514.650000px;}
.x87_c00480{left:516.150000px;}
.x113_c00480{left:517.800000px;}
.x91_c00480{left:519.450000px;}
.x105_c00480{left:522.150000px;}
.x12b_c00480{left:523.350000px;}
.xc8_c00480{left:525.000000px;}
.x47_c00480{left:526.500000px;}
.xa9_c00480{left:528.150000px;}
.xd_c00480{left:530.250000px;}
.x77_c00480{left:532.950000px;}
.x13a_c00480{left:535.350000px;}
.x92_c00480{left:537.150000px;}
.x6e_c00480{left:538.800000px;}
.x37_c00480{left:540.750000px;}
.x106_c00480{left:541.950000px;}
.xd3_c00480{left:543.000000px;}
.x88_c00480{left:544.950000px;}
.x51_c00480{left:546.750000px;}
.xa1_c00480{left:548.100000px;}
.xc9_c00480{left:549.450000px;}
.xbf_c00480{left:551.850000px;}
.x1d_c00480{left:553.950000px;}
.x93_c00480{left:555.150000px;}
.xde_c00480{left:556.350000px;}
.xe1_c00480{left:557.400000px;}
.xe_c00480{left:560.850000px;}
.x78_c00480{left:563.250000px;}
.xfa_c00480{left:564.450000px;}
.xb7_c00480{left:568.350000px;}
.xca_c00480{left:571.050000px;}
.x118_c00480{left:573.600000px;}
.x52_c00480{left:577.350000px;}
.x38_c00480{left:578.850000px;}
.x6f_c00480{left:581.250000px;}
.x94_c00480{left:582.450000px;}
.x2d_c00480{left:583.500000px;}
.x107_c00480{left:584.550000px;}
.x119_c00480{left:585.900000px;}
.xc0_c00480{left:589.650000px;}
.xd4_c00480{left:590.850000px;}
.xdb_c00480{left:592.950000px;}
.x142_c00480{left:594.600000px;}
.xcd_c00480{left:596.700000px;}
.xcb_c00480{left:598.350000px;}
.xf_c00480{left:601.500000px;}
.x89_c00480{left:603.600000px;}
.xe9_c00480{left:606.900000px;}
.x123_c00480{left:607.950000px;}
.x108_c00480{left:609.000000px;}
.x79_c00480{left:612.300000px;}
.x95_c00480{left:614.100000px;}
.x131_c00480{left:616.800000px;}
.x60_c00480{left:618.300000px;}
.xaf_c00480{left:620.850000px;}
.x8a_c00480{left:624.450000px;}
.x1e_c00480{left:626.700000px;}
.x48_c00480{left:629.550000px;}
.x96_c00480{left:631.350000px;}
.xc1_c00480{left:633.150000px;}
.xe2_c00480{left:634.500000px;}
.x10_c00480{left:636.000000px;}
.x100_c00480{left:637.500000px;}
.x12e_c00480{left:640.350000px;}
.x2e_c00480{left:642.900000px;}
.x39_c00480{left:643.950000px;}
.xb8_c00480{left:645.300000px;}
.x1f_c00480{left:646.800000px;}
.xcc_c00480{left:648.000000px;}
.x13d_c00480{left:649.650000px;}
.x7a_c00480{left:653.400000px;}
.x61_c00480{left:654.600000px;}
.x11_c00480{left:656.850000px;}
.x127_c00480{left:660.000000px;}
.x109_c00480{left:661.200000px;}
.xee_c00480{left:662.850000px;}
.xc2_c00480{left:664.050000px;}
.xb9_c00480{left:668.400000px;}
.xd5_c00480{left:671.850000px;}
.x70_c00480{left:673.050000px;}
.x49_c00480{left:674.550000px;}
.x53_c00480{left:677.550000px;}
.xea_c00480{left:679.650000px;}
.x13e_c00480{left:683.550000px;}
.x3a_c00480{left:684.600000px;}
.x12_c00480{left:686.400000px;}
.x13b_c00480{left:690.450000px;}
.xd6_c00480{left:691.950000px;}
.x20_c00480{left:694.350000px;}
.x124_c00480{left:695.850000px;}
.x2f_c00480{left:697.950000px;}
.x10a_c00480{left:699.300000px;}
.xc3_c00480{left:700.800000px;}
.xf6_c00480{left:702.750000px;}
.x3b_c00480{left:704.400000px;}
.x97_c00480{left:706.950000px;}
.x62_c00480{left:708.300000px;}
.x128_c00480{left:709.950000px;}
.x4a_c00480{left:712.350000px;}
.xb0_c00480{left:714.150000px;}
.x7b_c00480{left:718.200000px;}
.xc4_c00480{left:723.450000px;}
.x13f_c00480{left:724.950000px;}
.xba_c00480{left:726.000000px;}
.xfb_c00480{left:727.800000px;}
.x13_c00480{left:729.600000px;}
.xa2_c00480{left:730.650000px;}
.x54_c00480{left:733.050000px;}
.xb1_c00480{left:734.700000px;}
.x7c_c00480{left:736.200000px;}
.xd7_c00480{left:737.250000px;}
.x30_c00480{left:739.650000px;}
.x3c_c00480{left:741.450000px;}
.xfc_c00480{left:745.050000px;}
.x98_c00480{left:746.250000px;}
.xaa_c00480{left:750.600000px;}
.x8b_c00480{left:753.000000px;}
.xef_c00480{left:754.200000px;}
.x143_c00480{left:756.600000px;}
.x21_c00480{left:759.450000px;}
.xe3_c00480{left:761.550000px;}
.xb2_c00480{left:762.750000px;}
.x7d_c00480{left:764.700000px;}
.x55_c00480{left:766.500000px;}
.x31_c00480{left:768.150000px;}
.x10b_c00480{left:771.000000px;}
.x14_c00480{left:772.050000px;}
.x63_c00480{left:774.450000px;}
.x22_c00480{left:777.450000px;}
.x3d_c00480{left:779.550000px;}
.xbb_c00480{left:782.250000px;}
.x129_c00480{left:783.750000px;}
.x135_c00480{left:785.850000px;}
.x144_c00480{left:786.900000px;}
.x125_c00480{left:788.700000px;}
.xce_c00480{left:791.100000px;}
.x64_c00480{left:792.150000px;}
.xf7_c00480{left:793.500000px;}
.xe4_c00480{left:796.050000px;}
.x71_c00480{left:797.250000px;}
.x140_c00480{left:801.300000px;}
.x4b_c00480{left:802.650000px;}
.xa3_c00480{left:804.900000px;}
.x8c_c00480{left:808.050000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws5_c00480{word-spacing:-9.012346pt;}
.ws2_c00480{word-spacing:-3.209877pt;}
.ws6_c00480{word-spacing:0.000000pt;}
.ws3_c00480{word-spacing:3.888889pt;}
.ws4_c00480{word-spacing:5.679012pt;}
.ws0_c00480{word-spacing:5.962060pt;}
.ws1_c00480{word-spacing:8.888889pt;}
.fs0_c00480{font-size:53.333333pt;}
.y0_c00480{bottom:0.000000pt;}
.y2d_c00480{bottom:132.800000pt;}
.y2c_c00480{bottom:150.133333pt;}
.y2b_c00480{bottom:168.000000pt;}
.y2a_c00480{bottom:185.733333pt;}
.y29_c00480{bottom:203.600000pt;}
.y28_c00480{bottom:221.466667pt;}
.y27_c00480{bottom:239.066667pt;}
.y26_c00480{bottom:256.666667pt;}
.y25_c00480{bottom:274.533333pt;}
.y24_c00480{bottom:291.866667pt;}
.y23_c00480{bottom:310.133333pt;}
.y22_c00480{bottom:327.733333pt;}
.y21_c00480{bottom:345.600000pt;}
.y20_c00480{bottom:363.200000pt;}
.y1f_c00480{bottom:380.800000pt;}
.y1e_c00480{bottom:398.666667pt;}
.y1d_c00480{bottom:416.266667pt;}
.y1c_c00480{bottom:433.733333pt;}
.y1b_c00480{bottom:452.000000pt;}
.y1a_c00480{bottom:469.866667pt;}
.y19_c00480{bottom:487.466667pt;}
.y18_c00480{bottom:505.066667pt;}
.y17_c00480{bottom:522.933333pt;}
.y16_c00480{bottom:540.533333pt;}
.y15_c00480{bottom:558.400000pt;}
.y14_c00480{bottom:576.000000pt;}
.y13_c00480{bottom:593.600000pt;}
.y12_c00480{bottom:611.866667pt;}
.y11_c00480{bottom:629.733333pt;}
.y10_c00480{bottom:647.333333pt;}
.yf_c00480{bottom:665.600000pt;}
.ye_c00480{bottom:683.200000pt;}
.yd_c00480{bottom:701.066667pt;}
.yc_c00480{bottom:718.666667pt;}
.yb_c00480{bottom:736.800000pt;}
.ya_c00480{bottom:754.400000pt;}
.y9_c00480{bottom:772.666667pt;}
.y8_c00480{bottom:790.266667pt;}
.y7_c00480{bottom:808.133333pt;}
.y6_c00480{bottom:825.733333pt;}
.y5_c00480{bottom:843.600000pt;}
.y4_c00480{bottom:861.466667pt;}
.y3_c00480{bottom:879.066667pt;}
.y2_c00480{bottom:896.933333pt;}
.y1_c00480{bottom:931.466667pt;}
.h2_c00480{height:53.333333pt;}
.h1_c00480{height:1036.666667pt;}
.h0_c00480{height:1036.800049pt;}
.w0_c00480{width:818.559977pt;}
.w1_c00480{width:818.666667pt;}
.x0_c00480{left:0.000000pt;}
.x11f_c00480{left:129.066667pt;}
.x11a_c00480{left:130.000000pt;}
.xeb_c00480{left:130.933333pt;}
.xb3_c00480{left:132.000000pt;}
.x8d_c00480{left:132.933333pt;}
.x23_c00480{left:134.000000pt;}
.x3_c00480{left:135.066667pt;}
.x1_c00480{left:136.000000pt;}
.x11b_c00480{left:145.333333pt;}
.x120_c00480{left:148.266667pt;}
.x65_c00480{left:149.466667pt;}
.x15_c00480{left:153.466667pt;}
.x3e_c00480{left:155.066667pt;}
.x13c_c00480{left:156.533333pt;}
.xa4_c00480{left:158.000000pt;}
.xab_c00480{left:159.600000pt;}
.x83_c00480{left:161.333333pt;}
.x66_c00480{left:165.466667pt;}
.xfd_c00480{left:168.400000pt;}
.xe5_c00480{left:169.333333pt;}
.x24_c00480{left:170.533333pt;}
.xf0_c00480{left:172.533333pt;}
.xc5_c00480{left:173.600000pt;}
.x4_c00480{left:176.666667pt;}
.x7e_c00480{left:177.733333pt;}
.x99_c00480{left:179.466667pt;}
.x72_c00480{left:181.333333pt;}
.x25_c00480{left:183.333333pt;}
.xcf_c00480{left:185.466667pt;}
.x145_c00480{left:186.400000pt;}
.x3f_c00480{left:187.733333pt;}
.x12c_c00480{left:190.666667pt;}
.x11c_c00480{left:192.000000pt;}
.x56_c00480{left:193.333333pt;}
.x16_c00480{left:195.066667pt;}
.x5_c00480{left:196.533333pt;}
.x32_c00480{left:198.266667pt;}
.x4c_c00480{left:201.200000pt;}
.x67_c00480{left:202.933333pt;}
.xbc_c00480{left:203.866667pt;}
.x73_c00480{left:206.933333pt;}
.x136_c00480{left:207.866667pt;}
.x9a_c00480{left:209.200000pt;}
.xac_c00480{left:210.133333pt;}
.xdf_c00480{left:214.933333pt;}
.xd0_c00480{left:216.133333pt;}
.x17_c00480{left:217.733333pt;}
.x57_c00480{left:218.666667pt;}
.x6_c00480{left:222.400000pt;}
.xf1_c00480{left:223.466667pt;}
.x132_c00480{left:224.800000pt;}
.x7f_c00480{left:226.400000pt;}
.x4d_c00480{left:227.466667pt;}
.xc6_c00480{left:228.666667pt;}
.x11d_c00480{left:230.400000pt;}
.xd8_c00480{left:232.000000pt;}
.x26_c00480{left:236.133333pt;}
.x101_c00480{left:237.066667pt;}
.x12f_c00480{left:238.933333pt;}
.x10c_c00480{left:240.133333pt;}
.x58_c00480{left:241.066667pt;}
.x7_c00480{left:242.533333pt;}
.xf2_c00480{left:243.600000pt;}
.x40_c00480{left:244.666667pt;}
.x137_c00480{left:245.600000pt;}
.xc7_c00480{left:247.200000pt;}
.x74_c00480{left:251.066667pt;}
.x121_c00480{left:252.266667pt;}
.x59_c00480{left:254.533333pt;}
.x9b_c00480{left:255.866667pt;}
.x12d_c00480{left:258.133333pt;}
.xfe_c00480{left:259.333333pt;}
.xb4_c00480{left:260.400000pt;}
.xec_c00480{left:261.466667pt;}
.xdc_c00480{left:262.800000pt;}
.x84_c00480{left:264.666667pt;}
.x4e_c00480{left:265.866667pt;}
.x5a_c00480{left:267.600000pt;}
.x41_c00480{left:269.600000pt;}
.x138_c00480{left:270.933333pt;}
.x110_c00480{left:273.066667pt;}
.x80_c00480{left:274.666667pt;}
.xa5_c00480{left:277.066667pt;}
.xe6_c00480{left:280.133333pt;}
.x85_c00480{left:281.600000pt;}
.x27_c00480{left:282.533333pt;}
.x11e_c00480{left:285.066667pt;}
.x102_c00480{left:286.266667pt;}
.x18_c00480{left:287.466667pt;}
.x8_c00480{left:289.866667pt;}
.x111_c00480{left:290.933333pt;}
.x114_c00480{left:292.133333pt;}
.x5b_c00480{left:293.200000pt;}
.x86_c00480{left:295.066667pt;}
.x68_c00480{left:298.666667pt;}
.xad_c00480{left:301.333333pt;}
.x33_c00480{left:302.800000pt;}
.x103_c00480{left:303.866667pt;}
.xe7_c00480{left:306.000000pt;}
.xf3_c00480{left:307.600000pt;}
.x9_c00480{left:310.000000pt;}
.x5c_c00480{left:311.066667pt;}
.xd9_c00480{left:312.666667pt;}
.xa6_c00480{left:313.600000pt;}
.x42_c00480{left:314.666667pt;}
.x146_c00480{left:316.266667pt;}
.x9c_c00480{left:318.000000pt;}
.xd1_c00480{left:320.666667pt;}
.xb5_c00480{left:324.133333pt;}
.xf8_c00480{left:325.200000pt;}
.xf4_c00480{left:326.800000pt;}
.x43_c00480{left:327.733333pt;}
.x4f_c00480{left:329.866667pt;}
.xdd_c00480{left:332.666667pt;}
.x69_c00480{left:333.600000pt;}
.x34_c00480{left:336.133333pt;}
.xa_c00480{left:338.800000pt;}
.x5d_c00480{left:341.200000pt;}
.x112_c00480{left:342.133333pt;}
.x9d_c00480{left:343.600000pt;}
.x28_c00480{left:344.666667pt;}
.x130_c00480{left:345.866667pt;}
.x8e_c00480{left:350.133333pt;}
.xa7_c00480{left:352.666667pt;}
.x29_c00480{left:354.533333pt;}
.x115_c00480{left:355.866667pt;}
.x19_c00480{left:359.200000pt;}
.xbd_c00480{left:360.533333pt;}
.x35_c00480{left:362.400000pt;}
.x6a_c00480{left:365.600000pt;}
.x10d_c00480{left:366.533333pt;}
.x8f_c00480{left:368.000000pt;}
.x116_c00480{left:368.933333pt;}
.x5e_c00480{left:370.000000pt;}
.x81_c00480{left:371.600000pt;}
.xe8_c00480{left:373.200000pt;}
.x147_c00480{left:374.133333pt;}
.x122_c00480{left:375.866667pt;}
.x44_c00480{left:377.066667pt;}
.xa8_c00480{left:378.000000pt;}
.x126_c00480{left:379.066667pt;}
.x2a_c00480{left:380.133333pt;}
.xd2_c00480{left:381.200000pt;}
.x10e_c00480{left:382.533333pt;}
.x1a_c00480{left:385.733333pt;}
.x141_c00480{left:388.933333pt;}
.x133_c00480{left:390.133333pt;}
.xae_c00480{left:396.000000pt;}
.x45_c00480{left:397.600000pt;}
.x9e_c00480{left:398.933333pt;}
.x2_c00480{left:400.933333pt;}
.x50_c00480{left:402.800000pt;}
.xb_c00480{left:404.133333pt;}
.x90_c00480{left:405.466667pt;}
.x2b_c00480{left:408.266667pt;}
.xf5_c00480{left:409.733333pt;}
.x134_c00480{left:410.933333pt;}
.xb6_c00480{left:412.400000pt;}
.x6b_c00480{left:413.600000pt;}
.x139_c00480{left:414.533333pt;}
.x9f_c00480{left:416.266667pt;}
.x12a_c00480{left:419.466667pt;}
.x104_c00480{left:421.600000pt;}
.xf9_c00480{left:422.666667pt;}
.x1b_c00480{left:424.800000pt;}
.x117_c00480{left:426.266667pt;}
.x2c_c00480{left:427.200000pt;}
.xda_c00480{left:428.133333pt;}
.x6c_c00480{left:430.266667pt;}
.x5f_c00480{left:432.133333pt;}
.xed_c00480{left:433.333333pt;}
.x75_c00480{left:436.266667pt;}
.xe0_c00480{left:437.600000pt;}
.xbe_c00480{left:441.200000pt;}
.x6d_c00480{left:443.066667pt;}
.x46_c00480{left:444.933333pt;}
.x76_c00480{left:445.866667pt;}
.x10f_c00480{left:448.800000pt;}
.x1c_c00480{left:450.133333pt;}
.xc_c00480{left:451.866667pt;}
.x82_c00480{left:453.466667pt;}
.xff_c00480{left:454.933333pt;}
.x36_c00480{left:456.400000pt;}
.xa0_c00480{left:457.466667pt;}
.x87_c00480{left:458.800000pt;}
.x113_c00480{left:460.266667pt;}
.x91_c00480{left:461.733333pt;}
.x105_c00480{left:464.133333pt;}
.x12b_c00480{left:465.200000pt;}
.xc8_c00480{left:466.666667pt;}
.x47_c00480{left:468.000000pt;}
.xa9_c00480{left:469.466667pt;}
.xd_c00480{left:471.333333pt;}
.x77_c00480{left:473.733333pt;}
.x13a_c00480{left:475.866667pt;}
.x92_c00480{left:477.466667pt;}
.x6e_c00480{left:478.933333pt;}
.x37_c00480{left:480.666667pt;}
.x106_c00480{left:481.733333pt;}
.xd3_c00480{left:482.666667pt;}
.x88_c00480{left:484.400000pt;}
.x51_c00480{left:486.000000pt;}
.xa1_c00480{left:487.200000pt;}
.xc9_c00480{left:488.400000pt;}
.xbf_c00480{left:490.533333pt;}
.x1d_c00480{left:492.400000pt;}
.x93_c00480{left:493.466667pt;}
.xde_c00480{left:494.533333pt;}
.xe1_c00480{left:495.466667pt;}
.xe_c00480{left:498.533333pt;}
.x78_c00480{left:500.666667pt;}
.xfa_c00480{left:501.733333pt;}
.xb7_c00480{left:505.200000pt;}
.xca_c00480{left:507.600000pt;}
.x118_c00480{left:509.866667pt;}
.x52_c00480{left:513.200000pt;}
.x38_c00480{left:514.533333pt;}
.x6f_c00480{left:516.666667pt;}
.x94_c00480{left:517.733333pt;}
.x2d_c00480{left:518.666667pt;}
.x107_c00480{left:519.600000pt;}
.x119_c00480{left:520.800000pt;}
.xc0_c00480{left:524.133333pt;}
.xd4_c00480{left:525.200000pt;}
.xdb_c00480{left:527.066667pt;}
.x142_c00480{left:528.533333pt;}
.xcd_c00480{left:530.400000pt;}
.xcb_c00480{left:531.866667pt;}
.xf_c00480{left:534.666667pt;}
.x89_c00480{left:536.533333pt;}
.xe9_c00480{left:539.466667pt;}
.x123_c00480{left:540.400000pt;}
.x108_c00480{left:541.333333pt;}
.x79_c00480{left:544.266667pt;}
.x95_c00480{left:545.866667pt;}
.x131_c00480{left:548.266667pt;}
.x60_c00480{left:549.600000pt;}
.xaf_c00480{left:551.866667pt;}
.x8a_c00480{left:555.066667pt;}
.x1e_c00480{left:557.066667pt;}
.x48_c00480{left:559.600000pt;}
.x96_c00480{left:561.200000pt;}
.xc1_c00480{left:562.800000pt;}
.xe2_c00480{left:564.000000pt;}
.x10_c00480{left:565.333333pt;}
.x100_c00480{left:566.666667pt;}
.x12e_c00480{left:569.200000pt;}
.x2e_c00480{left:571.466667pt;}
.x39_c00480{left:572.400000pt;}
.xb8_c00480{left:573.600000pt;}
.x1f_c00480{left:574.933333pt;}
.xcc_c00480{left:576.000000pt;}
.x13d_c00480{left:577.466667pt;}
.x7a_c00480{left:580.800000pt;}
.x61_c00480{left:581.866667pt;}
.x11_c00480{left:583.866667pt;}
.x127_c00480{left:586.666667pt;}
.x109_c00480{left:587.733333pt;}
.xee_c00480{left:589.200000pt;}
.xc2_c00480{left:590.266667pt;}
.xb9_c00480{left:594.133333pt;}
.xd5_c00480{left:597.200000pt;}
.x70_c00480{left:598.266667pt;}
.x49_c00480{left:599.600000pt;}
.x53_c00480{left:602.266667pt;}
.xea_c00480{left:604.133333pt;}
.x13e_c00480{left:607.600000pt;}
.x3a_c00480{left:608.533333pt;}
.x12_c00480{left:610.133333pt;}
.x13b_c00480{left:613.733333pt;}
.xd6_c00480{left:615.066667pt;}
.x20_c00480{left:617.200000pt;}
.x124_c00480{left:618.533333pt;}
.x2f_c00480{left:620.400000pt;}
.x10a_c00480{left:621.600000pt;}
.xc3_c00480{left:622.933333pt;}
.xf6_c00480{left:624.666667pt;}
.x3b_c00480{left:626.133333pt;}
.x97_c00480{left:628.400000pt;}
.x62_c00480{left:629.600000pt;}
.x128_c00480{left:631.066667pt;}
.x4a_c00480{left:633.200000pt;}
.xb0_c00480{left:634.800000pt;}
.x7b_c00480{left:638.400000pt;}
.xc4_c00480{left:643.066667pt;}
.x13f_c00480{left:644.400000pt;}
.xba_c00480{left:645.333333pt;}
.xfb_c00480{left:646.933333pt;}
.x13_c00480{left:648.533333pt;}
.xa2_c00480{left:649.466667pt;}
.x54_c00480{left:651.600000pt;}
.xb1_c00480{left:653.066667pt;}
.x7c_c00480{left:654.400000pt;}
.xd7_c00480{left:655.333333pt;}
.x30_c00480{left:657.466667pt;}
.x3c_c00480{left:659.066667pt;}
.xfc_c00480{left:662.266667pt;}
.x98_c00480{left:663.333333pt;}
.xaa_c00480{left:667.200000pt;}
.x8b_c00480{left:669.333333pt;}
.xef_c00480{left:670.400000pt;}
.x143_c00480{left:672.533333pt;}
.x21_c00480{left:675.066667pt;}
.xe3_c00480{left:676.933333pt;}
.xb2_c00480{left:678.000000pt;}
.x7d_c00480{left:679.733333pt;}
.x55_c00480{left:681.333333pt;}
.x31_c00480{left:682.800000pt;}
.x10b_c00480{left:685.333333pt;}
.x14_c00480{left:686.266667pt;}
.x63_c00480{left:688.400000pt;}
.x22_c00480{left:691.066667pt;}
.x3d_c00480{left:692.933333pt;}
.xbb_c00480{left:695.333333pt;}
.x129_c00480{left:696.666667pt;}
.x135_c00480{left:698.533333pt;}
.x144_c00480{left:699.466667pt;}
.x125_c00480{left:701.066667pt;}
.xce_c00480{left:703.200000pt;}
.x64_c00480{left:704.133333pt;}
.xf7_c00480{left:705.333333pt;}
.xe4_c00480{left:707.600000pt;}
.x71_c00480{left:708.666667pt;}
.x140_c00480{left:712.266667pt;}
.x4b_c00480{left:713.466667pt;}
.xa3_c00480{left:715.466667pt;}
.x8c_c00480{left:718.266667pt;}
}





/* 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_c00481 {
    display:none;
  }
  .loading-indicator_c00481.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00481 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_c00481 { 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_c00481" -> "#page-container .classname_c00481")
 */
.pf_c00481 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00481 { /* 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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00481 { /* 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_c00481 { /* 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_c00481 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00481 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00481 {overflow:visible;}
  }
}
.c_c00481 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00481 { /* 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_c00481:after { /* webkit #35443 */
  content: '';
}
.t_c00481:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00481 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 */
}
.__c00481 { /* 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_c00481 { /* info for Javascript */
  display:none;
}
.l_c00481 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00481 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00481 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00481: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_c00481 {
    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_c00481.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00481.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_c00481 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00481{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00481;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.000000;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;}
.m43_c00481{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m24_c00481{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00481{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m83_c00481{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m28_c00481{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00481{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00481{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mab_c00481{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m86_c00481{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00481{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00481{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00481{transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00481{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m53_c00481{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m51_c00481{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m80_c00481{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00481{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m34_c00481{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00481{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.mc_c00481{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00481{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00481{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00481{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m9_c00481{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m77_c00481{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m22_c00481{transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194500,0.000000,0.000000,0.250000,0,0);}
.m40_c00481{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m19_c00481{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m27_c00481{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00481{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00481{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00481{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00481{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00481{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00481{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m88_c00481{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00481{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m78_c00481{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m55_c00481{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.mb_c00481{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m21_c00481{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m8_c00481{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m36_c00481{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m29_c00481{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00481{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m6_c00481{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m50_c00481{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00481{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m18_c00481{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m33_c00481{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m71_c00481{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m82_c00481{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00481{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m73_c00481{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00481{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m37_c00481{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m39_c00481{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m26_c00481{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m64_c00481{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m35_c00481{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m75_c00481{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m12_c00481{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m30_c00481{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m91_c00481{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m17_c00481{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m84_c00481{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.me_c00481{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m23_c00481{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m74_c00481{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00481{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m68_c00481{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m31_c00481{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m85_c00481{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00481{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m49_c00481{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m48_c00481{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m14_c00481{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00481{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m47_c00481{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m54_c00481{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m32_c00481{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m5_c00481{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00481{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m93_c00481{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m15_c00481{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00481{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m44_c00481{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00481{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m56_c00481{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00481{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m96_c00481{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3_c00481{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.maa_c00481{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m60_c00481{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00481{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m89_c00481{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00481{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m25_c00481{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00481{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m79_c00481{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00481{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m20_c00481{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.mf_c00481{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00481{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m99_c00481{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m59_c00481{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m76_c00481{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00481{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m66_c00481{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m10_c00481{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00481{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m92_c00481{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00481{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00481{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m87_c00481{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m4_c00481{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m97_c00481{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00481{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m61_c00481{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00481{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m72_c00481{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m98_c00481{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00481{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00481{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00481{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m45_c00481{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m57_c00481{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m46_c00481{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00481{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m7_c00481{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00481{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00481{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00481{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m16_c00481{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.ma_c00481{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m41_c00481{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m95_c00481{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00481{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m42_c00481{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m62_c00481{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m63_c00481{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m11_c00481{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00481{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00481{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m13_c00481{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m90_c00481{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00481{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m52_c00481{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00481{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m81_c00481{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00481{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00481{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00481{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00481{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m1_c00481{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00481{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00481{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m69_c00481{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m65_c00481{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00481{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m94_c00481{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00481{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00481{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2_c00481{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00481{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m0_c00481{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.m58_c00481{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m67_c00481{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00481{transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.378000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00481{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md_c00481{transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.504000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00481{transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.528000,0.000000,0.000000,0.250000,0,0);}
.v0_c00481{vertical-align:0.000000px;}
.ls0_c00481{letter-spacing:0.000000px;}
.sc__c00481{text-shadow:none;}
.sc0_c00481{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__c00481{-webkit-text-stroke:0px transparent;}
.sc0_c00481{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9_c00481{word-spacing:-5.277778px;}
.ws1_c00481{word-spacing:-4.736842px;}
.wsa_c00481{word-spacing:0.000000px;}
.ws0_c00481{word-spacing:1.666667px;}
.ws6_c00481{word-spacing:6.315789px;}
.ws8_c00481{word-spacing:8.529412px;}
.ws3_c00481{word-spacing:8.571429px;}
.ws4_c00481{word-spacing:14.411765px;}
.ws2_c00481{word-spacing:15.526316px;}
.ws5_c00481{word-spacing:17.341772px;}
.ws7_c00481{word-spacing:31.805556px;}
.fc0_c00481{color:transparent;}
.fs0_c00481{font-size:54.000000px;}
.fs1_c00481{font-size:60.000000px;}
.y0_c00481{bottom:0.000000px;}
.y2e_c00481{bottom:132.150000px;}
.y2d_c00481{bottom:151.200000px;}
.y2c_c00481{bottom:171.300000px;}
.y2b_c00481{bottom:191.400000px;}
.y2a_c00481{bottom:211.500000px;}
.y29_c00481{bottom:231.300000px;}
.y28_c00481{bottom:251.100000px;}
.y27_c00481{bottom:270.900000px;}
.y26_c00481{bottom:291.000000px;}
.y25_c00481{bottom:310.800000px;}
.y24_c00481{bottom:330.300000px;}
.y23_c00481{bottom:350.400000px;}
.y22_c00481{bottom:370.200000px;}
.y21_c00481{bottom:389.700000px;}
.y20_c00481{bottom:409.800000px;}
.y1f_c00481{bottom:429.600000px;}
.y1e_c00481{bottom:449.400000px;}
.y1d_c00481{bottom:469.500000px;}
.y1c_c00481{bottom:489.300000px;}
.y1b_c00481{bottom:509.400000px;}
.y1a_c00481{bottom:529.200000px;}
.y19_c00481{bottom:549.000000px;}
.y18_c00481{bottom:568.800000px;}
.y17_c00481{bottom:588.900000px;}
.y16_c00481{bottom:608.700000px;}
.y15_c00481{bottom:629.100000px;}
.y14_c00481{bottom:648.900000px;}
.y13_c00481{bottom:669.000000px;}
.y12_c00481{bottom:688.800000px;}
.y11_c00481{bottom:708.600000px;}
.y10_c00481{bottom:728.700000px;}
.yf_c00481{bottom:748.500000px;}
.ye_c00481{bottom:768.300000px;}
.yd_c00481{bottom:788.400000px;}
.yc_c00481{bottom:808.350000px;}
.yb_c00481{bottom:828.450000px;}
.ya_c00481{bottom:848.250000px;}
.y9_c00481{bottom:868.050000px;}
.y8_c00481{bottom:887.850000px;}
.y7_c00481{bottom:907.950000px;}
.y6_c00481{bottom:927.750000px;}
.y5_c00481{bottom:947.850000px;}
.y4_c00481{bottom:967.650000px;}
.y3_c00481{bottom:987.450000px;}
.y2_c00481{bottom:1007.250000px;}
.y1_c00481{bottom:1045.500000px;}
.h2_c00481{height:54.000000px;}
.h3_c00481{height:60.000000px;}
.h1_c00481{height:1166.250000px;}
.h0_c00481{height:1166.400056px;}
.w0_c00481{width:920.879975px;}
.w1_c00481{width:921.000000px;}
.x0_c00481{left:0.000000px;}
.xd3_c00481{left:105.000000px;}
.x4_c00481{left:106.950000px;}
.x34_c00481{left:124.350000px;}
.x5_c00481{left:133.200000px;}
.x63_c00481{left:134.850000px;}
.xc8_c00481{left:136.200000px;}
.x79_c00481{left:137.850000px;}
.xf7_c00481{left:140.400000px;}
.x129_c00481{left:141.750000px;}
.x25_c00481{left:144.150000px;}
.x4d_c00481{left:147.300000px;}
.xe7_c00481{left:150.000000px;}
.xf2_c00481{left:151.650000px;}
.x41_c00481{left:153.450000px;}
.x133_c00481{left:156.150000px;}
.xd4_c00481{left:158.250000px;}
.xb2_c00481{left:160.050000px;}
.xfc_c00481{left:161.850000px;}
.x9a_c00481{left:163.350000px;}
.x57_c00481{left:165.150000px;}
.xef_c00481{left:167.700000px;}
.x6_c00481{left:168.900000px;}
.x7a_c00481{left:170.250000px;}
.x16_c00481{left:172.500000px;}
.x105_c00481{left:173.550000px;}
.x10e_c00481{left:174.900000px;}
.xab_c00481{left:176.400000px;}
.x35_c00481{left:179.400000px;}
.x8d_c00481{left:181.800000px;}
.x115_c00481{left:184.050000px;}
.x64_c00481{left:185.550000px;}
.x86_c00481{left:188.550000px;}
.xa3_c00481{left:190.350000px;}
.x106_c00481{left:191.850000px;}
.x7b_c00481{left:192.900000px;}
.x10f_c00481{left:195.450000px;}
.xb3_c00481{left:196.800000px;}
.xf8_c00481{left:198.000000px;}
.x11c_c00481{left:199.500000px;}
.xc9_c00481{left:201.000000px;}
.x120_c00481{left:202.350000px;}
.x26_c00481{left:205.650000px;}
.x58_c00481{left:208.650000px;}
.xe0_c00481{left:211.050000px;}
.xce_c00481{left:212.400000px;}
.x17_c00481{left:214.650000px;}
.x4e_c00481{left:216.750000px;}
.xf9_c00481{left:217.800000px;}
.xb4_c00481{left:219.150000px;}
.xac_c00481{left:221.100000px;}
.x7_c00481{left:222.150000px;}
.x42_c00481{left:223.350000px;}
.xc3_c00481{left:228.900000px;}
.x95_c00481{left:230.250000px;}
.x59_c00481{left:231.750000px;}
.x65_c00481{left:234.900000px;}
.xe8_c00481{left:235.950000px;}
.x121_c00481{left:237.300000px;}
.x18_c00481{left:240.150000px;}
.x110_c00481{left:241.200000px;}
.x87_c00481{left:245.850000px;}
.xfd_c00481{left:247.950000px;}
.x36_c00481{left:249.900000px;}
.x8_c00481{left:252.450000px;}
.x134_c00481{left:256.500000px;}
.x5a_c00481{left:260.250000px;}
.x27_c00481{left:262.200000px;}
.x11d_c00481{left:263.250000px;}
.x101_c00481{left:264.300000px;}
.x70_c00481{left:266.400000px;}
.x43_c00481{left:267.600000px;}
.xa4_c00481{left:268.800000px;}
.x7c_c00481{left:270.300000px;}
.x4f_c00481{left:272.850000px;}
.xe1_c00481{left:274.350000px;}
.xe9_c00481{left:277.650000px;}
.x9b_c00481{left:279.300000px;}
.x9_c00481{left:280.500000px;}
.x12c_c00481{left:283.200000px;}
.x37_c00481{left:284.850000px;}
.xfe_c00481{left:286.050000px;}
.x28_c00481{left:287.400000px;}
.x11e_c00481{left:289.200000px;}
.x118_c00481{left:290.550000px;}
.xad_c00481{left:292.350000px;}
.x66_c00481{left:293.550000px;}
.x50_c00481{left:296.250000px;}
.x111_c00481{left:298.500000px;}
.xca_c00481{left:301.200000px;}
.xbb_c00481{left:302.250000px;}
.x67_c00481{left:307.200000px;}
.xa5_c00481{left:309.150000px;}
.x12f_c00481{left:310.950000px;}
.xb5_c00481{left:312.300000px;}
.x51_c00481{left:313.500000px;}
.xea_c00481{left:316.200000px;}
.xcf_c00481{left:319.650000px;}
.xf0_c00481{left:321.000000px;}
.xe2_c00481{left:322.200000px;}
.x8e_c00481{left:324.750000px;}
.x44_c00481{left:326.250000px;}
.x29_c00481{left:327.750000px;}
.x5b_c00481{left:329.250000px;}
.x112_c00481{left:330.900000px;}
.xd5_c00481{left:333.900000px;}
.xa_c00481{left:336.000000px;}
.xc4_c00481{left:337.650000px;}
.x88_c00481{left:339.900000px;}
.x68_c00481{left:341.100000px;}
.xae_c00481{left:343.500000px;}
.x7d_c00481{left:345.150000px;}
.x19_c00481{left:347.850000px;}
.x5c_c00481{left:349.350000px;}
.xa6_c00481{left:352.050000px;}
.x1_c00481{left:353.550000px;}
.x45_c00481{left:355.050000px;}
.xdb_c00481{left:356.550000px;}
.xe3_c00481{left:358.200000px;}
.x71_c00481{left:360.300000px;}
.x125_c00481{left:361.650000px;}
.x7e_c00481{left:363.900000px;}
.x38_c00481{left:365.100000px;}
.x8f_c00481{left:367.200000px;}
.x69_c00481{left:369.900000px;}
.xb6_c00481{left:372.450000px;}
.x9c_c00481{left:375.150000px;}
.xb_c00481{left:376.350000px;}
.x5d_c00481{left:378.150000px;}
.x89_c00481{left:379.800000px;}
.xa7_c00481{left:381.600000px;}
.x107_c00481{left:383.700000px;}
.x126_c00481{left:386.550000px;}
.x2a_c00481{left:388.650000px;}
.x72_c00481{left:390.150000px;}
.x7f_c00481{left:391.950000px;}
.x46_c00481{left:394.650000px;}
.xc5_c00481{left:396.000000px;}
.x1a_c00481{left:399.300000px;}
.x2b_c00481{left:400.500000px;}
.xbc_c00481{left:402.000000px;}
.xc_c00481{left:405.150000px;}
.x9d_c00481{left:407.250000px;}
.xe4_c00481{left:409.350000px;}
.xeb_c00481{left:411.600000px;}
.x90_c00481{left:413.250000px;}
.xaf_c00481{left:414.450000px;}
.x8a_c00481{left:415.500000px;}
.x122_c00481{left:418.050000px;}
.xd6_c00481{left:420.900000px;}
.x80_c00481{left:424.050000px;}
.x1b_c00481{left:425.550000px;}
.x2_c00481{left:427.350000px;}
.x5e_c00481{left:428.850000px;}
.x52_c00481{left:431.100000px;}
.x96_c00481{left:433.200000px;}
.x39_c00481{left:435.000000px;}
.xcb_c00481{left:437.700000px;}
.x130_c00481{left:438.750000px;}
.x116_c00481{left:441.600000px;}
.x81_c00481{left:443.850000px;}
.x12d_c00481{left:445.650000px;}
.x8b_c00481{left:446.850000px;}
.xd_c00481{left:448.350000px;}
.xbd_c00481{left:449.850000px;}
.xdc_c00481{left:451.350000px;}
.x3a_c00481{left:452.700000px;}
.x9e_c00481{left:454.050000px;}
.xe5_c00481{left:459.150000px;}
.xa8_c00481{left:461.100000px;}
.x73_c00481{left:462.150000px;}
.x2c_c00481{left:464.250000px;}
.x113_c00481{left:465.300000px;}
.x53_c00481{left:466.350000px;}
.x102_c00481{left:467.400000px;}
.x12a_c00481{left:469.050000px;}
.x91_c00481{left:470.250000px;}
.x3b_c00481{left:472.800000px;}
.xcc_c00481{left:475.200000px;}
.x119_c00481{left:476.400000px;}
.x12e_c00481{left:477.750000px;}
.x1c_c00481{left:480.600000px;}
.x108_c00481{left:482.400000px;}
.x8c_c00481{left:483.900000px;}
.x97_c00481{left:485.700000px;}
.xbe_c00481{left:486.900000px;}
.xb7_c00481{left:488.700000px;}
.xdd_c00481{left:490.950000px;}
.xff_c00481{left:494.850000px;}
.xcd_c00481{left:497.100000px;}
.xe_c00481{left:502.350000px;}
.x103_c00481{left:504.450000px;}
.xb0_c00481{left:505.650000px;}
.xbf_c00481{left:507.450000px;}
.x5f_c00481{left:509.550000px;}
.x1d_c00481{left:511.500000px;}
.x47_c00481{left:514.050000px;}
.x74_c00481{left:515.850000px;}
.xd7_c00481{left:517.800000px;}
.xde_c00481{left:519.450000px;}
.xf_c00481{left:521.400000px;}
.xfa_c00481{left:523.050000px;}
.x11a_c00481{left:526.350000px;}
.x3c_c00481{left:529.650000px;}
.xd0_c00481{left:532.050000px;}
.x6a_c00481{left:534.150000px;}
.x48_c00481{left:536.400000px;}
.x10a_c00481{left:539.550000px;}
.xc6_c00481{left:541.500000px;}
.x82_c00481{left:543.150000px;}
.x1e_c00481{left:544.950000px;}
.x2d_c00481{left:547.800000px;}
.x75_c00481{left:550.050000px;}
.x10d_c00481{left:552.450000px;}
.x10_c00481{left:554.550000px;}
.xf3_c00481{left:557.250000px;}
.x3d_c00481{left:561.300000px;}
.x98_c00481{left:563.100000px;}
.x6b_c00481{left:564.750000px;}
.x1f_c00481{left:570.450000px;}
.x9f_c00481{left:572.550000px;}
.x127_c00481{left:576.900000px;}
.x83_c00481{left:579.150000px;}
.x92_c00481{left:580.350000px;}
.x114_c00481{left:581.550000px;}
.xb8_c00481{left:583.050000px;}
.x60_c00481{left:585.150000px;}
.x54_c00481{left:588.750000px;}
.x109_c00481{left:590.100000px;}
.xf1_c00481{left:592.200000px;}
.xa9_c00481{left:595.050000px;}
.x6c_c00481{left:596.100000px;}
.x10b_c00481{left:597.900000px;}
.xc0_c00481{left:600.000000px;}
.x2e_c00481{left:601.800000px;}
.x117_c00481{left:603.600000px;}
.xf4_c00481{left:605.100000px;}
.x11_c00481{left:608.550000px;}
.x104_c00481{left:609.600000px;}
.x20_c00481{left:610.800000px;}
.x2f_c00481{left:612.900000px;}
.xb1_c00481{left:614.400000px;}
.xaa_c00481{left:615.600000px;}
.x76_c00481{left:620.550000px;}
.x84_c00481{left:622.350000px;}
.x11b_c00481{left:625.350000px;}
.x3e_c00481{left:627.150000px;}
.xc7_c00481{left:629.400000px;}
.x21_c00481{left:630.900000px;}
.x10c_c00481{left:634.650000px;}
.x93_c00481{left:635.850000px;}
.x6d_c00481{left:637.200000px;}
.xa0_c00481{left:638.550000px;}
.x12b_c00481{left:640.350000px;}
.x30_c00481{left:641.400000px;}
.x55_c00481{left:645.300000px;}
.x49_c00481{left:646.950000px;}
.xd8_c00481{left:648.000000px;}
.x12_c00481{left:650.250000px;}
.x77_c00481{left:652.200000px;}
.xec_c00481{left:655.950000px;}
.xf5_c00481{left:657.000000px;}
.x3f_c00481{left:658.500000px;}
.xd9_c00481{left:660.300000px;}
.x123_c00481{left:661.650000px;}
.x99_c00481{left:663.450000px;}
.xfb_c00481{left:664.500000px;}
.xd1_c00481{left:666.300000px;}
.x22_c00481{left:669.000000px;}
.x4a_c00481{left:671.100000px;}
.x61_c00481{left:672.750000px;}
.x31_c00481{left:674.850000px;}
.x11f_c00481{left:677.250000px;}
.xa1_c00481{left:679.200000px;}
.x13_c00481{left:680.850000px;}
.xe6_c00481{left:682.800000px;}
.xc1_c00481{left:684.600000px;}
.x94_c00481{left:687.300000px;}
.xda_c00481{left:689.400000px;}
.x32_c00481{left:692.100000px;}
.xed_c00481{left:694.500000px;}
.x100_c00481{left:696.900000px;}
.x128_c00481{left:700.050000px;}
.xdf_c00481{left:702.300000px;}
.x85_c00481{left:704.100000px;}
.x56_c00481{left:705.450000px;}
.x14_c00481{left:711.150000px;}
.x131_c00481{left:712.350000px;}
.x78_c00481{left:717.750000px;}
.x23_c00481{left:719.400000px;}
.xd2_c00481{left:723.450000px;}
.x4b_c00481{left:727.200000px;}
.xee_c00481{left:729.750000px;}
.x33_c00481{left:732.000000px;}
.xb9_c00481{left:734.550000px;}
.x6e_c00481{left:736.500000px;}
.x132_c00481{left:737.850000px;}
.xa2_c00481{left:739.350000px;}
.x15_c00481{left:742.050000px;}
.x62_c00481{left:743.250000px;}
.xc2_c00481{left:745.050000px;}
.x3_c00481{left:747.750000px;}
.x124_c00481{left:750.450000px;}
.x40_c00481{left:753.150000px;}
.xba_c00481{left:754.350000px;}
.xf6_c00481{left:756.750000px;}
.x6f_c00481{left:758.850000px;}
.x24_c00481{left:761.850000px;}
.x4c_c00481{left:763.950000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws9_c00481{word-spacing:-4.691358pt;}
.ws1_c00481{word-spacing:-4.210526pt;}
.wsa_c00481{word-spacing:0.000000pt;}
.ws0_c00481{word-spacing:1.481481pt;}
.ws6_c00481{word-spacing:5.614035pt;}
.ws8_c00481{word-spacing:7.581699pt;}
.ws3_c00481{word-spacing:7.619048pt;}
.ws4_c00481{word-spacing:12.810458pt;}
.ws2_c00481{word-spacing:13.801170pt;}
.ws5_c00481{word-spacing:15.414909pt;}
.ws7_c00481{word-spacing:28.271605pt;}
.fs0_c00481{font-size:48.000000pt;}
.fs1_c00481{font-size:53.333333pt;}
.y0_c00481{bottom:0.000000pt;}
.y2e_c00481{bottom:117.466667pt;}
.y2d_c00481{bottom:134.400000pt;}
.y2c_c00481{bottom:152.266667pt;}
.y2b_c00481{bottom:170.133333pt;}
.y2a_c00481{bottom:188.000000pt;}
.y29_c00481{bottom:205.600000pt;}
.y28_c00481{bottom:223.200000pt;}
.y27_c00481{bottom:240.800000pt;}
.y26_c00481{bottom:258.666667pt;}
.y25_c00481{bottom:276.266667pt;}
.y24_c00481{bottom:293.600000pt;}
.y23_c00481{bottom:311.466667pt;}
.y22_c00481{bottom:329.066667pt;}
.y21_c00481{bottom:346.400000pt;}
.y20_c00481{bottom:364.266667pt;}
.y1f_c00481{bottom:381.866667pt;}
.y1e_c00481{bottom:399.466667pt;}
.y1d_c00481{bottom:417.333333pt;}
.y1c_c00481{bottom:434.933333pt;}
.y1b_c00481{bottom:452.800000pt;}
.y1a_c00481{bottom:470.400000pt;}
.y19_c00481{bottom:488.000000pt;}
.y18_c00481{bottom:505.600000pt;}
.y17_c00481{bottom:523.466667pt;}
.y16_c00481{bottom:541.066667pt;}
.y15_c00481{bottom:559.200000pt;}
.y14_c00481{bottom:576.800000pt;}
.y13_c00481{bottom:594.666667pt;}
.y12_c00481{bottom:612.266667pt;}
.y11_c00481{bottom:629.866667pt;}
.y10_c00481{bottom:647.733333pt;}
.yf_c00481{bottom:665.333333pt;}
.ye_c00481{bottom:682.933333pt;}
.yd_c00481{bottom:700.800000pt;}
.yc_c00481{bottom:718.533333pt;}
.yb_c00481{bottom:736.400000pt;}
.ya_c00481{bottom:754.000000pt;}
.y9_c00481{bottom:771.600000pt;}
.y8_c00481{bottom:789.200000pt;}
.y7_c00481{bottom:807.066667pt;}
.y6_c00481{bottom:824.666667pt;}
.y5_c00481{bottom:842.533333pt;}
.y4_c00481{bottom:860.133333pt;}
.y3_c00481{bottom:877.733333pt;}
.y2_c00481{bottom:895.333333pt;}
.y1_c00481{bottom:929.333333pt;}
.h2_c00481{height:48.000000pt;}
.h3_c00481{height:53.333333pt;}
.h1_c00481{height:1036.666667pt;}
.h0_c00481{height:1036.800049pt;}
.w0_c00481{width:818.559977pt;}
.w1_c00481{width:818.666667pt;}
.x0_c00481{left:0.000000pt;}
.xd3_c00481{left:93.333333pt;}
.x4_c00481{left:95.066667pt;}
.x34_c00481{left:110.533333pt;}
.x5_c00481{left:118.400000pt;}
.x63_c00481{left:119.866667pt;}
.xc8_c00481{left:121.066667pt;}
.x79_c00481{left:122.533333pt;}
.xf7_c00481{left:124.800000pt;}
.x129_c00481{left:126.000000pt;}
.x25_c00481{left:128.133333pt;}
.x4d_c00481{left:130.933333pt;}
.xe7_c00481{left:133.333333pt;}
.xf2_c00481{left:134.800000pt;}
.x41_c00481{left:136.400000pt;}
.x133_c00481{left:138.800000pt;}
.xd4_c00481{left:140.666667pt;}
.xb2_c00481{left:142.266667pt;}
.xfc_c00481{left:143.866667pt;}
.x9a_c00481{left:145.200000pt;}
.x57_c00481{left:146.800000pt;}
.xef_c00481{left:149.066667pt;}
.x6_c00481{left:150.133333pt;}
.x7a_c00481{left:151.333333pt;}
.x16_c00481{left:153.333333pt;}
.x105_c00481{left:154.266667pt;}
.x10e_c00481{left:155.466667pt;}
.xab_c00481{left:156.800000pt;}
.x35_c00481{left:159.466667pt;}
.x8d_c00481{left:161.600000pt;}
.x115_c00481{left:163.600000pt;}
.x64_c00481{left:164.933333pt;}
.x86_c00481{left:167.600000pt;}
.xa3_c00481{left:169.200000pt;}
.x106_c00481{left:170.533333pt;}
.x7b_c00481{left:171.466667pt;}
.x10f_c00481{left:173.733333pt;}
.xb3_c00481{left:174.933333pt;}
.xf8_c00481{left:176.000000pt;}
.x11c_c00481{left:177.333333pt;}
.xc9_c00481{left:178.666667pt;}
.x120_c00481{left:179.866667pt;}
.x26_c00481{left:182.800000pt;}
.x58_c00481{left:185.466667pt;}
.xe0_c00481{left:187.600000pt;}
.xce_c00481{left:188.800000pt;}
.x17_c00481{left:190.800000pt;}
.x4e_c00481{left:192.666667pt;}
.xf9_c00481{left:193.600000pt;}
.xb4_c00481{left:194.800000pt;}
.xac_c00481{left:196.533333pt;}
.x7_c00481{left:197.466667pt;}
.x42_c00481{left:198.533333pt;}
.xc3_c00481{left:203.466667pt;}
.x95_c00481{left:204.666667pt;}
.x59_c00481{left:206.000000pt;}
.x65_c00481{left:208.800000pt;}
.xe8_c00481{left:209.733333pt;}
.x121_c00481{left:210.933333pt;}
.x18_c00481{left:213.466667pt;}
.x110_c00481{left:214.400000pt;}
.x87_c00481{left:218.533333pt;}
.xfd_c00481{left:220.400000pt;}
.x36_c00481{left:222.133333pt;}
.x8_c00481{left:224.400000pt;}
.x134_c00481{left:228.000000pt;}
.x5a_c00481{left:231.333333pt;}
.x27_c00481{left:233.066667pt;}
.x11d_c00481{left:234.000000pt;}
.x101_c00481{left:234.933333pt;}
.x70_c00481{left:236.800000pt;}
.x43_c00481{left:237.866667pt;}
.xa4_c00481{left:238.933333pt;}
.x7c_c00481{left:240.266667pt;}
.x4f_c00481{left:242.533333pt;}
.xe1_c00481{left:243.866667pt;}
.xe9_c00481{left:246.800000pt;}
.x9b_c00481{left:248.266667pt;}
.x9_c00481{left:249.333333pt;}
.x12c_c00481{left:251.733333pt;}
.x37_c00481{left:253.200000pt;}
.xfe_c00481{left:254.266667pt;}
.x28_c00481{left:255.466667pt;}
.x11e_c00481{left:257.066667pt;}
.x118_c00481{left:258.266667pt;}
.xad_c00481{left:259.866667pt;}
.x66_c00481{left:260.933333pt;}
.x50_c00481{left:263.333333pt;}
.x111_c00481{left:265.333333pt;}
.xca_c00481{left:267.733333pt;}
.xbb_c00481{left:268.666667pt;}
.x67_c00481{left:273.066667pt;}
.xa5_c00481{left:274.800000pt;}
.x12f_c00481{left:276.400000pt;}
.xb5_c00481{left:277.600000pt;}
.x51_c00481{left:278.666667pt;}
.xea_c00481{left:281.066667pt;}
.xcf_c00481{left:284.133333pt;}
.xf0_c00481{left:285.333333pt;}
.xe2_c00481{left:286.400000pt;}
.x8e_c00481{left:288.666667pt;}
.x44_c00481{left:290.000000pt;}
.x29_c00481{left:291.333333pt;}
.x5b_c00481{left:292.666667pt;}
.x112_c00481{left:294.133333pt;}
.xd5_c00481{left:296.800000pt;}
.xa_c00481{left:298.666667pt;}
.xc4_c00481{left:300.133333pt;}
.x88_c00481{left:302.133333pt;}
.x68_c00481{left:303.200000pt;}
.xae_c00481{left:305.333333pt;}
.x7d_c00481{left:306.800000pt;}
.x19_c00481{left:309.200000pt;}
.x5c_c00481{left:310.533333pt;}
.xa6_c00481{left:312.933333pt;}
.x1_c00481{left:314.266667pt;}
.x45_c00481{left:315.600000pt;}
.xdb_c00481{left:316.933333pt;}
.xe3_c00481{left:318.400000pt;}
.x71_c00481{left:320.266667pt;}
.x125_c00481{left:321.466667pt;}
.x7e_c00481{left:323.466667pt;}
.x38_c00481{left:324.533333pt;}
.x8f_c00481{left:326.400000pt;}
.x69_c00481{left:328.800000pt;}
.xb6_c00481{left:331.066667pt;}
.x9c_c00481{left:333.466667pt;}
.xb_c00481{left:334.533333pt;}
.x5d_c00481{left:336.133333pt;}
.x89_c00481{left:337.600000pt;}
.xa7_c00481{left:339.200000pt;}
.x107_c00481{left:341.066667pt;}
.x126_c00481{left:343.600000pt;}
.x2a_c00481{left:345.466667pt;}
.x72_c00481{left:346.800000pt;}
.x7f_c00481{left:348.400000pt;}
.x46_c00481{left:350.800000pt;}
.xc5_c00481{left:352.000000pt;}
.x1a_c00481{left:354.933333pt;}
.x2b_c00481{left:356.000000pt;}
.xbc_c00481{left:357.333333pt;}
.xc_c00481{left:360.133333pt;}
.x9d_c00481{left:362.000000pt;}
.xe4_c00481{left:363.866667pt;}
.xeb_c00481{left:365.866667pt;}
.x90_c00481{left:367.333333pt;}
.xaf_c00481{left:368.400000pt;}
.x8a_c00481{left:369.333333pt;}
.x122_c00481{left:371.600000pt;}
.xd6_c00481{left:374.133333pt;}
.x80_c00481{left:376.933333pt;}
.x1b_c00481{left:378.266667pt;}
.x2_c00481{left:379.866667pt;}
.x5e_c00481{left:381.200000pt;}
.x52_c00481{left:383.200000pt;}
.x96_c00481{left:385.066667pt;}
.x39_c00481{left:386.666667pt;}
.xcb_c00481{left:389.066667pt;}
.x130_c00481{left:390.000000pt;}
.x116_c00481{left:392.533333pt;}
.x81_c00481{left:394.533333pt;}
.x12d_c00481{left:396.133333pt;}
.x8b_c00481{left:397.200000pt;}
.xd_c00481{left:398.533333pt;}
.xbd_c00481{left:399.866667pt;}
.xdc_c00481{left:401.200000pt;}
.x3a_c00481{left:402.400000pt;}
.x9e_c00481{left:403.600000pt;}
.xe5_c00481{left:408.133333pt;}
.xa8_c00481{left:409.866667pt;}
.x73_c00481{left:410.800000pt;}
.x2c_c00481{left:412.666667pt;}
.x113_c00481{left:413.600000pt;}
.x53_c00481{left:414.533333pt;}
.x102_c00481{left:415.466667pt;}
.x12a_c00481{left:416.933333pt;}
.x91_c00481{left:418.000000pt;}
.x3b_c00481{left:420.266667pt;}
.xcc_c00481{left:422.400000pt;}
.x119_c00481{left:423.466667pt;}
.x12e_c00481{left:424.666667pt;}
.x1c_c00481{left:427.200000pt;}
.x108_c00481{left:428.800000pt;}
.x8c_c00481{left:430.133333pt;}
.x97_c00481{left:431.733333pt;}
.xbe_c00481{left:432.800000pt;}
.xb7_c00481{left:434.400000pt;}
.xdd_c00481{left:436.400000pt;}
.xff_c00481{left:439.866667pt;}
.xcd_c00481{left:441.866667pt;}
.xe_c00481{left:446.533333pt;}
.x103_c00481{left:448.400000pt;}
.xb0_c00481{left:449.466667pt;}
.xbf_c00481{left:451.066667pt;}
.x5f_c00481{left:452.933333pt;}
.x1d_c00481{left:454.666667pt;}
.x47_c00481{left:456.933333pt;}
.x74_c00481{left:458.533333pt;}
.xd7_c00481{left:460.266667pt;}
.xde_c00481{left:461.733333pt;}
.xf_c00481{left:463.466667pt;}
.xfa_c00481{left:464.933333pt;}
.x11a_c00481{left:467.866667pt;}
.x3c_c00481{left:470.800000pt;}
.xd0_c00481{left:472.933333pt;}
.x6a_c00481{left:474.800000pt;}
.x48_c00481{left:476.800000pt;}
.x10a_c00481{left:479.600000pt;}
.xc6_c00481{left:481.333333pt;}
.x82_c00481{left:482.800000pt;}
.x1e_c00481{left:484.400000pt;}
.x2d_c00481{left:486.933333pt;}
.x75_c00481{left:488.933333pt;}
.x10d_c00481{left:491.066667pt;}
.x10_c00481{left:492.933333pt;}
.xf3_c00481{left:495.333333pt;}
.x3d_c00481{left:498.933333pt;}
.x98_c00481{left:500.533333pt;}
.x6b_c00481{left:502.000000pt;}
.x1f_c00481{left:507.066667pt;}
.x9f_c00481{left:508.933333pt;}
.x127_c00481{left:512.800000pt;}
.x83_c00481{left:514.800000pt;}
.x92_c00481{left:515.866667pt;}
.x114_c00481{left:516.933333pt;}
.xb8_c00481{left:518.266667pt;}
.x60_c00481{left:520.133333pt;}
.x54_c00481{left:523.333333pt;}
.x109_c00481{left:524.533333pt;}
.xf1_c00481{left:526.400000pt;}
.xa9_c00481{left:528.933333pt;}
.x6c_c00481{left:529.866667pt;}
.x10b_c00481{left:531.466667pt;}
.xc0_c00481{left:533.333333pt;}
.x2e_c00481{left:534.933333pt;}
.x117_c00481{left:536.533333pt;}
.xf4_c00481{left:537.866667pt;}
.x11_c00481{left:540.933333pt;}
.x104_c00481{left:541.866667pt;}
.x20_c00481{left:542.933333pt;}
.x2f_c00481{left:544.800000pt;}
.xb1_c00481{left:546.133333pt;}
.xaa_c00481{left:547.200000pt;}
.x76_c00481{left:551.600000pt;}
.x84_c00481{left:553.200000pt;}
.x11b_c00481{left:555.866667pt;}
.x3e_c00481{left:557.466667pt;}
.xc7_c00481{left:559.466667pt;}
.x21_c00481{left:560.800000pt;}
.x10c_c00481{left:564.133333pt;}
.x93_c00481{left:565.200000pt;}
.x6d_c00481{left:566.400000pt;}
.xa0_c00481{left:567.600000pt;}
.x12b_c00481{left:569.200000pt;}
.x30_c00481{left:570.133333pt;}
.x55_c00481{left:573.600000pt;}
.x49_c00481{left:575.066667pt;}
.xd8_c00481{left:576.000000pt;}
.x12_c00481{left:578.000000pt;}
.x77_c00481{left:579.733333pt;}
.xec_c00481{left:583.066667pt;}
.xf5_c00481{left:584.000000pt;}
.x3f_c00481{left:585.333333pt;}
.xd9_c00481{left:586.933333pt;}
.x123_c00481{left:588.133333pt;}
.x99_c00481{left:589.733333pt;}
.xfb_c00481{left:590.666667pt;}
.xd1_c00481{left:592.266667pt;}
.x22_c00481{left:594.666667pt;}
.x4a_c00481{left:596.533333pt;}
.x61_c00481{left:598.000000pt;}
.x31_c00481{left:599.866667pt;}
.x11f_c00481{left:602.000000pt;}
.xa1_c00481{left:603.733333pt;}
.x13_c00481{left:605.200000pt;}
.xe6_c00481{left:606.933333pt;}
.xc1_c00481{left:608.533333pt;}
.x94_c00481{left:610.933333pt;}
.xda_c00481{left:612.800000pt;}
.x32_c00481{left:615.200000pt;}
.xed_c00481{left:617.333333pt;}
.x100_c00481{left:619.466667pt;}
.x128_c00481{left:622.266667pt;}
.xdf_c00481{left:624.266667pt;}
.x85_c00481{left:625.866667pt;}
.x56_c00481{left:627.066667pt;}
.x14_c00481{left:632.133333pt;}
.x131_c00481{left:633.200000pt;}
.x78_c00481{left:638.000000pt;}
.x23_c00481{left:639.466667pt;}
.xd2_c00481{left:643.066667pt;}
.x4b_c00481{left:646.400000pt;}
.xee_c00481{left:648.666667pt;}
.x33_c00481{left:650.666667pt;}
.xb9_c00481{left:652.933333pt;}
.x6e_c00481{left:654.666667pt;}
.x132_c00481{left:655.866667pt;}
.xa2_c00481{left:657.200000pt;}
.x15_c00481{left:659.600000pt;}
.x62_c00481{left:660.666667pt;}
.xc2_c00481{left:662.266667pt;}
.x3_c00481{left:664.666667pt;}
.x124_c00481{left:667.066667pt;}
.x40_c00481{left:669.466667pt;}
.xba_c00481{left:670.533333pt;}
.xf6_c00481{left:672.666667pt;}
.x6f_c00481{left:674.533333pt;}
.x24_c00481{left:677.200000pt;}
.x4c_c00481{left:679.066667pt;}
}





/* 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_c00482 {
    display:none;
  }
  .loading-indicator_c00482.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00482 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_c00482 { 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_c00482" -> "#page-container .classname_c00482")
 */
.pf_c00482 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00482 { /* 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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00482 { /* 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_c00482 { /* 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_c00482 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00482 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00482 {overflow:visible;}
  }
}
.c_c00482 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00482 { /* 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_c00482:after { /* webkit #35443 */
  content: '';
}
.t_c00482:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00482 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 */
}
.__c00482 { /* 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_c00482 { /* info for Javascript */
  display:none;
}
.l_c00482 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00482 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00482 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00482: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_c00482 {
    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_c00482.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00482.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_c00482 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_3643d014bc878c4774730482.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.000000;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;}
.m86_c00482{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00482{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m48_c00482{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00482{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m93_c00482{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m99_c00482{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00482{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00482{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m60_c00482{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00482{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00482{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00482{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m69_c00482{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m19_c00482{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00482{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m94_c00482{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00482{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00482{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m73_c00482{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m16_c00482{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m71_c00482{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.mf_c00482{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m90_c00482{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00482{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00482{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m18_c00482{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00482{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m21_c00482{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m47_c00482{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00482{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m37_c00482{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m22_c00482{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00482{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m65_c00482{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me_c00482{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00482{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00482{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m76_c00482{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00482{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00482{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00482{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00482{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.m36_c00482{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00482{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m95_c00482{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00482{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m49_c00482{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m87_c00482{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00482{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00482{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m33_c00482{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m45_c00482{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m91_c00482{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m54_c00482{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00482{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m14_c00482{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m61_c00482{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00482{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m15_c00482{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00482{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.ma_c00482{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m46_c00482{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00482{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00482{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m67_c00482{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m25_c00482{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m41_c00482{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00482{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00482{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m32_c00482{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00482{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m30_c00482{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m50_c00482{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m79_c00482{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00482{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m53_c00482{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m26_c00482{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m88_c00482{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m82_c00482{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00482{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00482{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00482{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00482{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00482{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m29_c00482{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00482{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m96_c00482{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m31_c00482{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m89_c00482{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m43_c00482{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m39_c00482{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m24_c00482{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m66_c00482{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00482{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00482{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m20_c00482{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m83_c00482{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m78_c00482{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m58_c00482{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00482{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m56_c00482{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m63_c00482{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m97_c00482{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m35_c00482{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m62_c00482{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17_c00482{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m42_c00482{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2_c00482{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m28_c00482{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13_c00482{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m27_c00482{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m81_c00482{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00482{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00482{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m84_c00482{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00482{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m38_c00482{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00482{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m75_c00482{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00482{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00482{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m80_c00482{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00482{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m64_c00482{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00482{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m59_c00482{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m44_c00482{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00482{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00482{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m11_c00482{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m55_c00482{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00482{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m68_c00482{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00482{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c00482{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m77_c00482{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m52_c00482{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m72_c00482{transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00482{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00482{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m74_c00482{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m70_c00482{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00482{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m51_c00482{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00482{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m85_c00482{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m98_c00482{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m57_c00482{transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297000,0.000000,0.000000,0.250000,0,0);}
.m34_c00482{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00482{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m92_c00482{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00482{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00482{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.m23_c00482{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.v0_c00482{vertical-align:0.000000px;}
.ls0_c00482{letter-spacing:0.000000px;}
.sc__c00482{text-shadow:none;}
.sc0_c00482{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__c00482{-webkit-text-stroke:0px transparent;}
.sc0_c00482{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00482{word-spacing:-7.441860px;}
.ws9_c00482{word-spacing:0.000000px;}
.ws3_c00482{word-spacing:1.250000px;}
.ws7_c00482{word-spacing:1.666667px;}
.ws0_c00482{word-spacing:1.944444px;}
.ws6_c00482{word-spacing:2.797927px;}
.ws2_c00482{word-spacing:7.500000px;}
.ws8_c00482{word-spacing:13.750000px;}
.ws5_c00482{word-spacing:16.607143px;}
.ws4_c00482{word-spacing:21.527778px;}
.fc0_c00482{color:transparent;}
.fs0_c00482{font-size:60.000000px;}
.y0_c00482{bottom:0.000000px;}
.y29_c00482{bottom:221.100000px;}
.y28_c00482{bottom:254.700000px;}
.y27_c00482{bottom:274.500000px;}
.y26_c00482{bottom:294.300000px;}
.y25_c00482{bottom:314.100000px;}
.y24_c00482{bottom:334.200000px;}
.y23_c00482{bottom:354.000000px;}
.y22_c00482{bottom:374.100000px;}
.y21_c00482{bottom:394.050000px;}
.y20_c00482{bottom:414.150000px;}
.y1f_c00482{bottom:433.950000px;}
.y1e_c00482{bottom:453.750000px;}
.y1d_c00482{bottom:473.850000px;}
.y1c_c00482{bottom:493.650000px;}
.y1b_c00482{bottom:513.750000px;}
.y1a_c00482{bottom:533.550000px;}
.y19_c00482{bottom:553.350000px;}
.y18_c00482{bottom:573.150000px;}
.y17_c00482{bottom:592.950000px;}
.y16_c00482{bottom:613.200000px;}
.y15_c00482{bottom:633.000000px;}
.y14_c00482{bottom:652.800000px;}
.y13_c00482{bottom:672.900000px;}
.y12_c00482{bottom:692.700000px;}
.y11_c00482{bottom:712.500000px;}
.y10_c00482{bottom:732.300000px;}
.yf_c00482{bottom:752.400000px;}
.ye_c00482{bottom:772.200000px;}
.yd_c00482{bottom:792.600000px;}
.yc_c00482{bottom:812.100000px;}
.yb_c00482{bottom:832.200000px;}
.ya_c00482{bottom:852.000000px;}
.y9_c00482{bottom:871.800000px;}
.y8_c00482{bottom:891.900000px;}
.y7_c00482{bottom:911.700000px;}
.y6_c00482{bottom:931.800000px;}
.y5_c00482{bottom:951.600000px;}
.y4_c00482{bottom:971.700000px;}
.y3_c00482{bottom:991.500000px;}
.y2_c00482{bottom:1011.600000px;}
.y1_c00482{bottom:1050.150000px;}
.h2_c00482{height:60.000000px;}
.h1_c00482{height:1166.250000px;}
.h0_c00482{height:1166.400056px;}
.w0_c00482{width:920.879975px;}
.w1_c00482{width:921.000000px;}
.x0_c00482{left:0.000000px;}
.xdf_c00482{left:145.050000px;}
.x11_c00482{left:146.250000px;}
.x1_c00482{left:148.350000px;}
.x65_c00482{left:163.950000px;}
.xc6_c00482{left:165.150000px;}
.xbc_c00482{left:167.550000px;}
.xaa_c00482{left:174.750000px;}
.x3_c00482{left:177.450000px;}
.xed_c00482{left:179.400000px;}
.xe8_c00482{left:180.900000px;}
.x20_c00482{left:183.150000px;}
.x43_c00482{left:188.250000px;}
.xb7_c00482{left:189.300000px;}
.x38_c00482{left:193.350000px;}
.x94_c00482{left:195.000000px;}
.x66_c00482{left:197.400000px;}
.x8d_c00482{left:200.250000px;}
.x21_c00482{left:203.700000px;}
.xab_c00482{left:205.650000px;}
.xe0_c00482{left:208.050000px;}
.x5a_c00482{left:210.600000px;}
.x2c_c00482{left:212.400000px;}
.x12_c00482{left:215.400000px;}
.xfd_c00482{left:217.650000px;}
.x103_c00482{left:220.350000px;}
.xcb_c00482{left:222.750000px;}
.xac_c00482{left:225.150000px;}
.x44_c00482{left:226.350000px;}
.x83_c00482{left:228.150000px;}
.x4_c00482{left:229.950000px;}
.x39_c00482{left:231.150000px;}
.x9d_c00482{left:234.000000px;}
.xd2_c00482{left:236.100000px;}
.xd7_c00482{left:237.450000px;}
.xc3_c00482{left:240.900000px;}
.x11d_c00482{left:243.450000px;}
.x104_c00482{left:245.250000px;}
.x2d_c00482{left:248.100000px;}
.xcc_c00482{left:249.450000px;}
.xc7_c00482{left:251.850000px;}
.xad_c00482{left:252.900000px;}
.xfe_c00482{left:253.950000px;}
.x13_c00482{left:256.500000px;}
.x67_c00482{left:257.550000px;}
.xda_c00482{left:259.200000px;}
.xee_c00482{left:261.150000px;}
.x84_c00482{left:262.350000px;}
.x7c_c00482{left:264.000000px;}
.xe9_c00482{left:268.050000px;}
.xbd_c00482{left:269.100000px;}
.x72_c00482{left:270.900000px;}
.xff_c00482{left:274.500000px;}
.xf8_c00482{left:275.550000px;}
.x10a_c00482{left:276.600000px;}
.xdb_c00482{left:279.000000px;}
.xcd_c00482{left:281.100000px;}
.x45_c00482{left:282.900000px;}
.x105_c00482{left:284.550000px;}
.x5b_c00482{left:286.500000px;}
.x22_c00482{left:287.550000px;}
.x117_c00482{left:288.750000px;}
.x8e_c00482{left:290.250000px;}
.xb8_c00482{left:291.900000px;}
.x5_c00482{left:293.700000px;}
.xf3_c00482{left:295.800000px;}
.xd3_c00482{left:297.000000px;}
.x68_c00482{left:298.650000px;}
.x73_c00482{left:304.050000px;}
.x14_c00482{left:307.650000px;}
.x118_c00482{left:310.050000px;}
.xf4_c00482{left:313.050000px;}
.x9e_c00482{left:314.700000px;}
.x100_c00482{left:316.950000px;}
.xce_c00482{left:319.950000px;}
.x6_c00482{left:322.200000px;}
.x4f_c00482{left:324.750000px;}
.x106_c00482{left:326.700000px;}
.x74_c00482{left:328.200000px;}
.x69_c00482{left:329.550000px;}
.x15_c00482{left:332.100000px;}
.x23_c00482{left:333.600000px;}
.x3a_c00482{left:335.400000px;}
.xc4_c00482{left:337.650000px;}
.xe1_c00482{left:339.750000px;}
.x85_c00482{left:340.800000px;}
.x112_c00482{left:342.900000px;}
.x50_c00482{left:345.300000px;}
.x10b_c00482{left:346.500000px;}
.xae_c00482{left:349.050000px;}
.xbe_c00482{left:351.450000px;}
.x2e_c00482{left:353.250000px;}
.x7d_c00482{left:356.250000px;}
.x46_c00482{left:361.650000px;}
.x11e_c00482{left:364.650000px;}
.x6a_c00482{left:367.650000px;}
.x9f_c00482{left:369.000000px;}
.x51_c00482{left:370.500000px;}
.x107_c00482{left:372.750000px;}
.x47_c00482{left:376.350000px;}
.x7_c00482{left:378.300000px;}
.x5c_c00482{left:381.600000px;}
.xcf_c00482{left:382.950000px;}
.xb9_c00482{left:385.650000px;}
.xa0_c00482{left:386.700000px;}
.x75_c00482{left:389.400000px;}
.x8_c00482{left:390.900000px;}
.x24_c00482{left:393.000000px;}
.x86_c00482{left:394.050000px;}
.xc8_c00482{left:395.100000px;}
.xbf_c00482{left:397.800000px;}
.xc5_c00482{left:403.500000px;}
.x25_c00482{left:408.150000px;}
.x2f_c00482{left:410.850000px;}
.x8f_c00482{left:413.400000px;}
.x48_c00482{left:415.200000px;}
.x16_c00482{left:416.700000px;}
.xea_c00482{left:417.750000px;}
.xf5_c00482{left:419.550000px;}
.x108_c00482{left:421.350000px;}
.xef_c00482{left:423.900000px;}
.x6b_c00482{left:425.250000px;}
.x10c_c00482{left:427.800000px;}
.x124_c00482{left:429.150000px;}
.x3b_c00482{left:432.600000px;}
.x11f_c00482{left:433.800000px;}
.x9_c00482{left:435.150000px;}
.xdc_c00482{left:436.650000px;}
.x52_c00482{left:437.850000px;}
.x30_c00482{left:439.650000px;}
.xd0_c00482{left:441.300000px;}
.x6c_c00482{left:444.300000px;}
.x2_c00482{left:445.350000px;}
.x26_c00482{left:448.500000px;}
.x113_c00482{left:451.650000px;}
.x5d_c00482{left:452.850000px;}
.x17_c00482{left:454.500000px;}
.x119_c00482{left:460.500000px;}
.x87_c00482{left:462.150000px;}
.xa1_c00482{left:464.850000px;}
.xd4_c00482{left:469.350000px;}
.x95_c00482{left:470.700000px;}
.x5e_c00482{left:472.950000px;}
.xa_c00482{left:478.650000px;}
.x53_c00482{left:480.000000px;}
.xd8_c00482{left:481.800000px;}
.x49_c00482{left:482.850000px;}
.x90_c00482{left:484.350000px;}
.x3c_c00482{left:486.600000px;}
.x18_c00482{left:489.450000px;}
.xf6_c00482{left:490.500000px;}
.xaf_c00482{left:491.850000px;}
.x76_c00482{left:493.050000px;}
.x125_c00482{left:494.700000px;}
.x96_c00482{left:495.900000px;}
.x31_c00482{left:496.950000px;}
.x11a_c00482{left:500.400000px;}
.xb_c00482{left:506.400000px;}
.x88_c00482{left:509.250000px;}
.x4a_c00482{left:513.750000px;}
.x7e_c00482{left:515.850000px;}
.xc9_c00482{left:518.550000px;}
.x5f_c00482{left:521.850000px;}
.xe2_c00482{left:526.200000px;}
.xf9_c00482{left:527.550000px;}
.xc0_c00482{left:531.600000px;}
.x89_c00482{left:532.650000px;}
.x91_c00482{left:533.700000px;}
.x32_c00482{left:536.250000px;}
.xa2_c00482{left:540.150000px;}
.x97_c00482{left:541.200000px;}
.x60_c00482{left:543.150000px;}
.x19_c00482{left:544.950000px;}
.x101_c00482{left:546.600000px;}
.xb0_c00482{left:547.950000px;}
.xdd_c00482{left:549.000000px;}
.xba_c00482{left:550.950000px;}
.x6d_c00482{left:553.800000px;}
.x33_c00482{left:555.750000px;}
.x7f_c00482{left:558.000000px;}
.x3d_c00482{left:559.350000px;}
.xfa_c00482{left:561.750000px;}
.x8a_c00482{left:565.350000px;}
.x126_c00482{left:571.350000px;}
.x54_c00482{left:572.850000px;}
.x61_c00482{left:577.050000px;}
.xb1_c00482{left:578.850000px;}
.x120_c00482{left:580.350000px;}
.x10d_c00482{left:581.400000px;}
.x4b_c00482{left:582.450000px;}
.xa3_c00482{left:583.650000px;}
.xc_c00482{left:587.100000px;}
.xeb_c00482{left:589.500000px;}
.x3e_c00482{left:590.700000px;}
.x102_c00482{left:597.000000px;}
.xc1_c00482{left:598.650000px;}
.x110_c00482{left:599.700000px;}
.x1a_c00482{left:600.750000px;}
.x4c_c00482{left:602.550000px;}
.xca_c00482{left:603.900000px;}
.x77_c00482{left:605.400000px;}
.xd_c00482{left:607.650000px;}
.x27_c00482{left:608.700000px;}
.x55_c00482{left:609.900000px;}
.xe5_c00482{left:615.000000px;}
.x98_c00482{left:620.400000px;}
.x6e_c00482{left:621.450000px;}
.xa4_c00482{left:624.300000px;}
.x4d_c00482{left:625.650000px;}
.x11b_c00482{left:626.700000px;}
.x80_c00482{left:628.500000px;}
.x56_c00482{left:631.200000px;}
.xd5_c00482{left:633.750000px;}
.x28_c00482{left:636.750000px;}
.x121_c00482{left:637.950000px;}
.xf0_c00482{left:639.150000px;}
.x99_c00482{left:640.950000px;}
.xa5_c00482{left:642.300000px;}
.x3f_c00482{left:643.650000px;}
.x78_c00482{left:645.300000px;}
.x1b_c00482{left:647.250000px;}
.x81_c00482{left:651.900000px;}
.xb2_c00482{left:653.700000px;}
.x111_c00482{left:656.850000px;}
.xf7_c00482{left:658.200000px;}
.xf1_c00482{left:659.700000px;}
.x34_c00482{left:661.500000px;}
.x8b_c00482{left:663.900000px;}
.x1c_c00482{left:667.350000px;}
.x6f_c00482{left:671.550000px;}
.xb3_c00482{left:673.800000px;}
.xe_c00482{left:675.750000px;}
.x57_c00482{left:678.300000px;}
.xa6_c00482{left:679.800000px;}
.xd6_c00482{left:681.150000px;}
.x11c_c00482{left:682.500000px;}
.xd1_c00482{left:684.750000px;}
.x79_c00482{left:688.200000px;}
.x114_c00482{left:690.900000px;}
.x35_c00482{left:692.400000px;}
.xe3_c00482{left:693.900000px;}
.x40_c00482{left:695.850000px;}
.x29_c00482{left:698.700000px;}
.x62_c00482{left:700.500000px;}
.xb4_c00482{left:701.550000px;}
.x8c_c00482{left:703.800000px;}
.x92_c00482{left:705.750000px;}
.x1d_c00482{left:709.800000px;}
.x9a_c00482{left:712.650000px;}
.xd9_c00482{left:714.300000px;}
.x4e_c00482{left:716.700000px;}
.xf_c00482{left:719.700000px;}
.x63_c00482{left:722.100000px;}
.xe6_c00482{left:724.800000px;}
.xa7_c00482{left:728.400000px;}
.x41_c00482{left:731.100000px;}
.x58_c00482{left:733.650000px;}
.x109_c00482{left:734.850000px;}
.xf2_c00482{left:736.050000px;}
.xe4_c00482{left:737.100000px;}
.x9b_c00482{left:739.350000px;}
.x7a_c00482{left:740.400000px;}
.x115_c00482{left:743.400000px;}
.xe7_c00482{left:745.350000px;}
.x2a_c00482{left:751.650000px;}
.x1e_c00482{left:753.000000px;}
.xbb_c00482{left:754.050000px;}
.xec_c00482{left:755.100000px;}
.x70_c00482{left:756.150000px;}
.x36_c00482{left:757.500000px;}
.x122_c00482{left:758.700000px;}
.x59_c00482{left:762.450000px;}
.xfb_c00482{left:763.500000px;}
.x93_c00482{left:765.900000px;}
.xa8_c00482{left:766.950000px;}
.xb5_c00482{left:768.150000px;}
.x42_c00482{left:769.650000px;}
.x2b_c00482{left:771.450000px;}
.x10e_c00482{left:772.500000px;}
.x9c_c00482{left:775.050000px;}
.x10_c00482{left:777.000000px;}
.x7b_c00482{left:778.200000px;}
.xde_c00482{left:781.500000px;}
.x1f_c00482{left:783.300000px;}
.x82_c00482{left:784.350000px;}
.xfc_c00482{left:786.900000px;}
.x64_c00482{left:787.950000px;}
.xb6_c00482{left:791.250000px;}
.x123_c00482{left:792.600000px;}
.x71_c00482{left:794.700000px;}
.x37_c00482{left:798.150000px;}
.xc2_c00482{left:800.250000px;}
.xa9_c00482{left:802.200000px;}
.x10f_c00482{left:807.450000px;}
.x116_c00482{left:810.750000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws1_c00482{word-spacing:-6.614987pt;}
.ws9_c00482{word-spacing:0.000000pt;}
.ws3_c00482{word-spacing:1.111111pt;}
.ws7_c00482{word-spacing:1.481481pt;}
.ws0_c00482{word-spacing:1.728395pt;}
.ws6_c00482{word-spacing:2.487047pt;}
.ws2_c00482{word-spacing:6.666667pt;}
.ws8_c00482{word-spacing:12.222222pt;}
.ws5_c00482{word-spacing:14.761905pt;}
.ws4_c00482{word-spacing:19.135802pt;}
.fs0_c00482{font-size:53.333333pt;}
.y0_c00482{bottom:0.000000pt;}
.y29_c00482{bottom:196.533333pt;}
.y28_c00482{bottom:226.400000pt;}
.y27_c00482{bottom:244.000000pt;}
.y26_c00482{bottom:261.600000pt;}
.y25_c00482{bottom:279.200000pt;}
.y24_c00482{bottom:297.066667pt;}
.y23_c00482{bottom:314.666667pt;}
.y22_c00482{bottom:332.533333pt;}
.y21_c00482{bottom:350.266667pt;}
.y20_c00482{bottom:368.133333pt;}
.y1f_c00482{bottom:385.733333pt;}
.y1e_c00482{bottom:403.333333pt;}
.y1d_c00482{bottom:421.200000pt;}
.y1c_c00482{bottom:438.800000pt;}
.y1b_c00482{bottom:456.666667pt;}
.y1a_c00482{bottom:474.266667pt;}
.y19_c00482{bottom:491.866667pt;}
.y18_c00482{bottom:509.466667pt;}
.y17_c00482{bottom:527.066667pt;}
.y16_c00482{bottom:545.066667pt;}
.y15_c00482{bottom:562.666667pt;}
.y14_c00482{bottom:580.266667pt;}
.y13_c00482{bottom:598.133333pt;}
.y12_c00482{bottom:615.733333pt;}
.y11_c00482{bottom:633.333333pt;}
.y10_c00482{bottom:650.933333pt;}
.yf_c00482{bottom:668.800000pt;}
.ye_c00482{bottom:686.400000pt;}
.yd_c00482{bottom:704.533333pt;}
.yc_c00482{bottom:721.866667pt;}
.yb_c00482{bottom:739.733333pt;}
.ya_c00482{bottom:757.333333pt;}
.y9_c00482{bottom:774.933333pt;}
.y8_c00482{bottom:792.800000pt;}
.y7_c00482{bottom:810.400000pt;}
.y6_c00482{bottom:828.266667pt;}
.y5_c00482{bottom:845.866667pt;}
.y4_c00482{bottom:863.733333pt;}
.y3_c00482{bottom:881.333333pt;}
.y2_c00482{bottom:899.200000pt;}
.y1_c00482{bottom:933.466667pt;}
.h2_c00482{height:53.333333pt;}
.h1_c00482{height:1036.666667pt;}
.h0_c00482{height:1036.800049pt;}
.w0_c00482{width:818.559977pt;}
.w1_c00482{width:818.666667pt;}
.x0_c00482{left:0.000000pt;}
.xdf_c00482{left:128.933333pt;}
.x11_c00482{left:130.000000pt;}
.x1_c00482{left:131.866667pt;}
.x65_c00482{left:145.733333pt;}
.xc6_c00482{left:146.800000pt;}
.xbc_c00482{left:148.933333pt;}
.xaa_c00482{left:155.333333pt;}
.x3_c00482{left:157.733333pt;}
.xed_c00482{left:159.466667pt;}
.xe8_c00482{left:160.800000pt;}
.x20_c00482{left:162.800000pt;}
.x43_c00482{left:167.333333pt;}
.xb7_c00482{left:168.266667pt;}
.x38_c00482{left:171.866667pt;}
.x94_c00482{left:173.333333pt;}
.x66_c00482{left:175.466667pt;}
.x8d_c00482{left:178.000000pt;}
.x21_c00482{left:181.066667pt;}
.xab_c00482{left:182.800000pt;}
.xe0_c00482{left:184.933333pt;}
.x5a_c00482{left:187.200000pt;}
.x2c_c00482{left:188.800000pt;}
.x12_c00482{left:191.466667pt;}
.xfd_c00482{left:193.466667pt;}
.x103_c00482{left:195.866667pt;}
.xcb_c00482{left:198.000000pt;}
.xac_c00482{left:200.133333pt;}
.x44_c00482{left:201.200000pt;}
.x83_c00482{left:202.800000pt;}
.x4_c00482{left:204.400000pt;}
.x39_c00482{left:205.466667pt;}
.x9d_c00482{left:208.000000pt;}
.xd2_c00482{left:209.866667pt;}
.xd7_c00482{left:211.066667pt;}
.xc3_c00482{left:214.133333pt;}
.x11d_c00482{left:216.400000pt;}
.x104_c00482{left:218.000000pt;}
.x2d_c00482{left:220.533333pt;}
.xcc_c00482{left:221.733333pt;}
.xc7_c00482{left:223.866667pt;}
.xad_c00482{left:224.800000pt;}
.xfe_c00482{left:225.733333pt;}
.x13_c00482{left:228.000000pt;}
.x67_c00482{left:228.933333pt;}
.xda_c00482{left:230.400000pt;}
.xee_c00482{left:232.133333pt;}
.x84_c00482{left:233.200000pt;}
.x7c_c00482{left:234.666667pt;}
.xe9_c00482{left:238.266667pt;}
.xbd_c00482{left:239.200000pt;}
.x72_c00482{left:240.800000pt;}
.xff_c00482{left:244.000000pt;}
.xf8_c00482{left:244.933333pt;}
.x10a_c00482{left:245.866667pt;}
.xdb_c00482{left:248.000000pt;}
.xcd_c00482{left:249.866667pt;}
.x45_c00482{left:251.466667pt;}
.x105_c00482{left:252.933333pt;}
.x5b_c00482{left:254.666667pt;}
.x22_c00482{left:255.600000pt;}
.x117_c00482{left:256.666667pt;}
.x8e_c00482{left:258.000000pt;}
.xb8_c00482{left:259.466667pt;}
.x5_c00482{left:261.066667pt;}
.xf3_c00482{left:262.933333pt;}
.xd3_c00482{left:264.000000pt;}
.x68_c00482{left:265.466667pt;}
.x73_c00482{left:270.266667pt;}
.x14_c00482{left:273.466667pt;}
.x118_c00482{left:275.600000pt;}
.xf4_c00482{left:278.266667pt;}
.x9e_c00482{left:279.733333pt;}
.x100_c00482{left:281.733333pt;}
.xce_c00482{left:284.400000pt;}
.x6_c00482{left:286.400000pt;}
.x4f_c00482{left:288.666667pt;}
.x106_c00482{left:290.400000pt;}
.x74_c00482{left:291.733333pt;}
.x69_c00482{left:292.933333pt;}
.x15_c00482{left:295.200000pt;}
.x23_c00482{left:296.533333pt;}
.x3a_c00482{left:298.133333pt;}
.xc4_c00482{left:300.133333pt;}
.xe1_c00482{left:302.000000pt;}
.x85_c00482{left:302.933333pt;}
.x112_c00482{left:304.800000pt;}
.x50_c00482{left:306.933333pt;}
.x10b_c00482{left:308.000000pt;}
.xae_c00482{left:310.266667pt;}
.xbe_c00482{left:312.400000pt;}
.x2e_c00482{left:314.000000pt;}
.x7d_c00482{left:316.666667pt;}
.x46_c00482{left:321.466667pt;}
.x11e_c00482{left:324.133333pt;}
.x6a_c00482{left:326.800000pt;}
.x9f_c00482{left:328.000000pt;}
.x51_c00482{left:329.333333pt;}
.x107_c00482{left:331.333333pt;}
.x47_c00482{left:334.533333pt;}
.x7_c00482{left:336.266667pt;}
.x5c_c00482{left:339.200000pt;}
.xcf_c00482{left:340.400000pt;}
.xb9_c00482{left:342.800000pt;}
.xa0_c00482{left:343.733333pt;}
.x75_c00482{left:346.133333pt;}
.x8_c00482{left:347.466667pt;}
.x24_c00482{left:349.333333pt;}
.x86_c00482{left:350.266667pt;}
.xc8_c00482{left:351.200000pt;}
.xbf_c00482{left:353.600000pt;}
.xc5_c00482{left:358.666667pt;}
.x25_c00482{left:362.800000pt;}
.x2f_c00482{left:365.200000pt;}
.x8f_c00482{left:367.466667pt;}
.x48_c00482{left:369.066667pt;}
.x16_c00482{left:370.400000pt;}
.xea_c00482{left:371.333333pt;}
.xf5_c00482{left:372.933333pt;}
.x108_c00482{left:374.533333pt;}
.xef_c00482{left:376.800000pt;}
.x6b_c00482{left:378.000000pt;}
.x10c_c00482{left:380.266667pt;}
.x124_c00482{left:381.466667pt;}
.x3b_c00482{left:384.533333pt;}
.x11f_c00482{left:385.600000pt;}
.x9_c00482{left:386.800000pt;}
.xdc_c00482{left:388.133333pt;}
.x52_c00482{left:389.200000pt;}
.x30_c00482{left:390.800000pt;}
.xd0_c00482{left:392.266667pt;}
.x6c_c00482{left:394.933333pt;}
.x2_c00482{left:395.866667pt;}
.x26_c00482{left:398.666667pt;}
.x113_c00482{left:401.466667pt;}
.x5d_c00482{left:402.533333pt;}
.x17_c00482{left:404.000000pt;}
.x119_c00482{left:409.333333pt;}
.x87_c00482{left:410.800000pt;}
.xa1_c00482{left:413.200000pt;}
.xd4_c00482{left:417.200000pt;}
.x95_c00482{left:418.400000pt;}
.x5e_c00482{left:420.400000pt;}
.xa_c00482{left:425.466667pt;}
.x53_c00482{left:426.666667pt;}
.xd8_c00482{left:428.266667pt;}
.x49_c00482{left:429.200000pt;}
.x90_c00482{left:430.533333pt;}
.x3c_c00482{left:432.533333pt;}
.x18_c00482{left:435.066667pt;}
.xf6_c00482{left:436.000000pt;}
.xaf_c00482{left:437.200000pt;}
.x76_c00482{left:438.266667pt;}
.x125_c00482{left:439.733333pt;}
.x96_c00482{left:440.800000pt;}
.x31_c00482{left:441.733333pt;}
.x11a_c00482{left:444.800000pt;}
.xb_c00482{left:450.133333pt;}
.x88_c00482{left:452.666667pt;}
.x4a_c00482{left:456.666667pt;}
.x7e_c00482{left:458.533333pt;}
.xc9_c00482{left:460.933333pt;}
.x5f_c00482{left:463.866667pt;}
.xe2_c00482{left:467.733333pt;}
.xf9_c00482{left:468.933333pt;}
.xc0_c00482{left:472.533333pt;}
.x89_c00482{left:473.466667pt;}
.x91_c00482{left:474.400000pt;}
.x32_c00482{left:476.666667pt;}
.xa2_c00482{left:480.133333pt;}
.x97_c00482{left:481.066667pt;}
.x60_c00482{left:482.800000pt;}
.x19_c00482{left:484.400000pt;}
.x101_c00482{left:485.866667pt;}
.xb0_c00482{left:487.066667pt;}
.xdd_c00482{left:488.000000pt;}
.xba_c00482{left:489.733333pt;}
.x6d_c00482{left:492.266667pt;}
.x33_c00482{left:494.000000pt;}
.x7f_c00482{left:496.000000pt;}
.x3d_c00482{left:497.200000pt;}
.xfa_c00482{left:499.333333pt;}
.x8a_c00482{left:502.533333pt;}
.x126_c00482{left:507.866667pt;}
.x54_c00482{left:509.200000pt;}
.x61_c00482{left:512.933333pt;}
.xb1_c00482{left:514.533333pt;}
.x120_c00482{left:515.866667pt;}
.x10d_c00482{left:516.800000pt;}
.x4b_c00482{left:517.733333pt;}
.xa3_c00482{left:518.800000pt;}
.xc_c00482{left:521.866667pt;}
.xeb_c00482{left:524.000000pt;}
.x3e_c00482{left:525.066667pt;}
.x102_c00482{left:530.666667pt;}
.xc1_c00482{left:532.133333pt;}
.x110_c00482{left:533.066667pt;}
.x1a_c00482{left:534.000000pt;}
.x4c_c00482{left:535.600000pt;}
.xca_c00482{left:536.800000pt;}
.x77_c00482{left:538.133333pt;}
.xd_c00482{left:540.133333pt;}
.x27_c00482{left:541.066667pt;}
.x55_c00482{left:542.133333pt;}
.xe5_c00482{left:546.666667pt;}
.x98_c00482{left:551.466667pt;}
.x6e_c00482{left:552.400000pt;}
.xa4_c00482{left:554.933333pt;}
.x4d_c00482{left:556.133333pt;}
.x11b_c00482{left:557.066667pt;}
.x80_c00482{left:558.666667pt;}
.x56_c00482{left:561.066667pt;}
.xd5_c00482{left:563.333333pt;}
.x28_c00482{left:566.000000pt;}
.x121_c00482{left:567.066667pt;}
.xf0_c00482{left:568.133333pt;}
.x99_c00482{left:569.733333pt;}
.xa5_c00482{left:570.933333pt;}
.x3f_c00482{left:572.133333pt;}
.x78_c00482{left:573.600000pt;}
.x1b_c00482{left:575.333333pt;}
.x81_c00482{left:579.466667pt;}
.xb2_c00482{left:581.066667pt;}
.x111_c00482{left:583.866667pt;}
.xf7_c00482{left:585.066667pt;}
.xf1_c00482{left:586.400000pt;}
.x34_c00482{left:588.000000pt;}
.x8b_c00482{left:590.133333pt;}
.x1c_c00482{left:593.200000pt;}
.x6f_c00482{left:596.933333pt;}
.xb3_c00482{left:598.933333pt;}
.xe_c00482{left:600.666667pt;}
.x57_c00482{left:602.933333pt;}
.xa6_c00482{left:604.266667pt;}
.xd6_c00482{left:605.466667pt;}
.x11c_c00482{left:606.666667pt;}
.xd1_c00482{left:608.666667pt;}
.x79_c00482{left:611.733333pt;}
.x114_c00482{left:614.133333pt;}
.x35_c00482{left:615.466667pt;}
.xe3_c00482{left:616.800000pt;}
.x40_c00482{left:618.533333pt;}
.x29_c00482{left:621.066667pt;}
.x62_c00482{left:622.666667pt;}
.xb4_c00482{left:623.600000pt;}
.x8c_c00482{left:625.600000pt;}
.x92_c00482{left:627.333333pt;}
.x1d_c00482{left:630.933333pt;}
.x9a_c00482{left:633.466667pt;}
.xd9_c00482{left:634.933333pt;}
.x4e_c00482{left:637.066667pt;}
.xf_c00482{left:639.733333pt;}
.x63_c00482{left:641.866667pt;}
.xe6_c00482{left:644.266667pt;}
.xa7_c00482{left:647.466667pt;}
.x41_c00482{left:649.866667pt;}
.x58_c00482{left:652.133333pt;}
.x109_c00482{left:653.200000pt;}
.xf2_c00482{left:654.266667pt;}
.xe4_c00482{left:655.200000pt;}
.x9b_c00482{left:657.200000pt;}
.x7a_c00482{left:658.133333pt;}
.x115_c00482{left:660.800000pt;}
.xe7_c00482{left:662.533333pt;}
.x2a_c00482{left:668.133333pt;}
.x1e_c00482{left:669.333333pt;}
.xbb_c00482{left:670.266667pt;}
.xec_c00482{left:671.200000pt;}
.x70_c00482{left:672.133333pt;}
.x36_c00482{left:673.333333pt;}
.x122_c00482{left:674.400000pt;}
.x59_c00482{left:677.733333pt;}
.xfb_c00482{left:678.666667pt;}
.x93_c00482{left:680.800000pt;}
.xa8_c00482{left:681.733333pt;}
.xb5_c00482{left:682.800000pt;}
.x42_c00482{left:684.133333pt;}
.x2b_c00482{left:685.733333pt;}
.x10e_c00482{left:686.666667pt;}
.x9c_c00482{left:688.933333pt;}
.x10_c00482{left:690.666667pt;}
.x7b_c00482{left:691.733333pt;}
.xde_c00482{left:694.666667pt;}
.x1f_c00482{left:696.266667pt;}
.x82_c00482{left:697.200000pt;}
.xfc_c00482{left:699.466667pt;}
.x64_c00482{left:700.400000pt;}
.xb6_c00482{left:703.333333pt;}
.x123_c00482{left:704.533333pt;}
.x71_c00482{left:706.400000pt;}
.x37_c00482{left:709.466667pt;}
.xc2_c00482{left:711.333333pt;}
.xa9_c00482{left:713.066667pt;}
.x10f_c00482{left:717.733333pt;}
.x116_c00482{left:720.666667pt;}
}





/* 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_c00483 {
    display:none;
  }
  .loading-indicator_c00483.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00483 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_c00483 { 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_c00483" -> "#page-container .classname_c00483")
 */
.pf_c00483 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00483 { /* 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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00483 { /* 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_c00483 { /* 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_c00483 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00483 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00483 {overflow:visible;}
  }
}
.c_c00483 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00483 { /* 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_c00483:after { /* webkit #35443 */
  content: '';
}
.t_c00483:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00483 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 */
}
.__c00483 { /* 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_c00483 { /* info for Javascript */
  display:none;
}
.l_c00483 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00483 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00483 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00483: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_c00483 {
    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_c00483.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00483.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_c00483 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00483{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00483;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.000000;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;}
.md_c00483{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m33_c00483{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m19_c00483{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m2_c00483{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00483{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m12_c00483{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m10_c00483{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m15_c00483{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m17_c00483{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00483{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m43_c00483{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m27_c00483{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00483{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00483{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00483{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00483{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m39_c00483{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m96_c00483{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m56_c00483{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m31_c00483{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m54_c00483{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00483{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00483{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m50_c00483{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m21_c00483{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mc_c00483{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00483{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m48_c00483{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m83_c00483{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00483{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m64_c00483{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00483{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m60_c00483{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00483{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00483{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m47_c00483{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m77_c00483{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m46_c00483{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m87_c00483{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf_c00483{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m63_c00483{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m89_c00483{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m42_c00483{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m90_c00483{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m94_c00483{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m72_c00483{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m32_c00483{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00483{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m30_c00483{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00483{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4_c00483{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00483{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m67_c00483{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m18_c00483{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00483{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00483{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5_c00483{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m16_c00483{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m58_c00483{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m13_c00483{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00483{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m45_c00483{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m80_c00483{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m53_c00483{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m98_c00483{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m29_c00483{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00483{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m24_c00483{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00483{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8_c00483{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m7_c00483{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m41_c00483{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m68_c00483{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m22_c00483{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00483{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00483{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m1_c00483{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m86_c00483{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m23_c00483{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00483{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m91_c00483{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m71_c00483{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m49_c00483{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m57_c00483{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m99_c00483{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00483{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m85_c00483{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00483{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m28_c00483{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m26_c00483{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00483{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m52_c00483{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m55_c00483{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m0_c00483{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00483{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00483{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00483{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00483{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00483{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00483{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m25_c00483{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00483{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m40_c00483{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m82_c00483{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m93_c00483{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m65_c00483{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m92_c00483{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00483{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00483{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m9_c00483{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00483{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m75_c00483{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m74_c00483{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00483{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m84_c00483{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m20_c00483{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m6_c00483{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m61_c00483{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00483{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00483{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m14_c00483{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00483{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00483{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00483{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.ma_c00483{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00483{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m79_c00483{transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348000,0.000000,0.000000,0.250000,0,0);}
.m35_c00483{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m37_c00483{transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);}
.m81_c00483{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00483{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m38_c00483{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m51_c00483{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m36_c00483{transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.386750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00483{transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392750,0.000000,0.000000,0.250000,0,0);}
.m11_c00483{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m44_c00483{transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396250,0.000000,0.000000,0.250000,0,0);}
.m34_c00483{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00483{transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401750,0.000000,0.000000,0.250000,0,0);}
.m95_c00483{transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402750,0.000000,0.000000,0.250000,0,0);}
.m70_c00483{transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.403750,0.000000,0.000000,0.250000,0,0);}
.m76_c00483{transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405250,0.000000,0.000000,0.250000,0,0);}
.m78_c00483{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m62_c00483{transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407250,0.000000,0.000000,0.250000,0,0);}
.m97_c00483{transform:matrix(0.409500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00483{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m66_c00483{transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00483{transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00483{transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.426000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00483{transform:matrix(0.440500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440500,0.000000,0.000000,0.250000,0,0);}
.m73_c00483{transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.444000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00483{transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00483{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m59_c00483{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00483{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.me_c00483{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m88_c00483{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.m3_c00483{transform:matrix(0.665500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665500,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{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__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00483{word-spacing:-21.000000px;}
.ws1_c00483{word-spacing:-3.488903px;}
.ws2_c00483{word-spacing:-2.712029px;}
.ws4_c00483{word-spacing:0.000000px;}
.ws0_c00483{word-spacing:6.219512px;}
._0_c00483{width:2.647220px;}
.fc0_c00483{color:transparent;}
.fs2_c00483{font-size:42.000000px;}
.fs1_c00483{font-size:66.000000px;}
.fs0_c00483{font-size:114.000000px;}
.y0_c00483{bottom:0.000000px;}
.y78_c00483{bottom:142.500000px;}
.y50_c00483{bottom:143.700000px;}
.y4b_c00483{bottom:144.300000px;}
.y77_c00483{bottom:154.350000px;}
.y4f_c00483{bottom:155.100000px;}
.y4a_c00483{bottom:155.850000px;}
.y76_c00483{bottom:165.900000px;}
.y49_c00483{bottom:167.400000px;}
.y4e_c00483{bottom:174.300000px;}
.y75_c00483{bottom:177.450000px;}
.y4d_c00483{bottom:185.700000px;}
.y48_c00483{bottom:186.450000px;}
.y74_c00483{bottom:189.300000px;}
.y4c_c00483{bottom:197.700000px;}
.y47_c00483{bottom:198.000000px;}
.y46_c00483{bottom:209.850000px;}
.y73_c00483{bottom:214.500000px;}
.y20_c00483{bottom:216.300000px;}
.y45_c00483{bottom:221.400000px;}
.y72_c00483{bottom:226.050000px;}
.y1f_c00483{bottom:227.850000px;}
.y44_c00483{bottom:232.950000px;}
.y71_c00483{bottom:237.600000px;}
.y1e_c00483{bottom:239.850000px;}
.y43_c00483{bottom:244.500000px;}
.y70_c00483{bottom:249.450000px;}
.y1d_c00483{bottom:251.700000px;}
.y6f_c00483{bottom:261.000000px;}
.y1c_c00483{bottom:262.800000px;}
.y42_c00483{bottom:263.550000px;}
.y1b_c00483{bottom:274.650000px;}
.y41_c00483{bottom:275.400000px;}
.y6e_c00483{bottom:286.200000px;}
.y40_c00483{bottom:286.500000px;}
.y6d_c00483{bottom:297.750000px;}
.y3f_c00483{bottom:298.500000px;}
.y6c_c00483{bottom:309.300000px;}
.y3e_c00483{bottom:317.400000px;}
.y6b_c00483{bottom:320.700000px;}
.y3d_c00483{bottom:328.950000px;}
.y3c_c00483{bottom:340.500000px;}
.y1a_c00483{bottom:341.700000px;}
.y6a_c00483{bottom:344.550000px;}
.y3b_c00483{bottom:352.500000px;}
.y19_c00483{bottom:353.550000px;}
.y69_c00483{bottom:356.400000px;}
.y18_c00483{bottom:365.100000px;}
.y68_c00483{bottom:367.950000px;}
.y3a_c00483{bottom:371.100000px;}
.y17_c00483{bottom:376.500000px;}
.y67_c00483{bottom:379.800000px;}
.y39_c00483{bottom:383.100000px;}
.y16_c00483{bottom:388.050000px;}
.y66_c00483{bottom:390.900000px;}
.y38_c00483{bottom:394.500000px;}
.y15_c00483{bottom:399.600000px;}
.y65_c00483{bottom:402.900000px;}
.y37_c00483{bottom:406.050000px;}
.y14_c00483{bottom:411.450000px;}
.y64_c00483{bottom:414.300000px;}
.y36_c00483{bottom:417.900000px;}
.y13_c00483{bottom:423.000000px;}
.y63_c00483{bottom:425.850000px;}
.y35_c00483{bottom:429.750000px;}
.y12_c00483{bottom:434.550000px;}
.y62_c00483{bottom:437.400000px;}
.y34_c00483{bottom:441.300000px;}
.y11_c00483{bottom:446.100000px;}
.y61_c00483{bottom:449.250000px;}
.y33_c00483{bottom:452.850000px;}
.y10_c00483{bottom:457.500000px;}
.y60_c00483{bottom:460.500000px;}
.y32_c00483{bottom:464.400000px;}
.yf_c00483{bottom:469.050000px;}
.ye_c00483{bottom:480.900000px;}
.y5f_c00483{bottom:481.350000px;}
.y31_c00483{bottom:482.700000px;}
.y5e_c00483{bottom:492.900000px;}
.y30_c00483{bottom:495.000000px;}
.yd_c00483{bottom:496.350000px;}
.y5d_c00483{bottom:504.750000px;}
.y2f_c00483{bottom:506.850000px;}
.yc_c00483{bottom:508.650000px;}
.y5c_c00483{bottom:516.300000px;}
.y2e_c00483{bottom:517.650000px;}
.y5b_c00483{bottom:527.700000px;}
.y2d_c00483{bottom:529.500000px;}
.y5a_c00483{bottom:539.250000px;}
.y2c_c00483{bottom:541.050000px;}
.y59_c00483{bottom:550.800000px;}
.y2b_c00483{bottom:552.900000px;}
.y58_c00483{bottom:562.350000px;}
.y2a_c00483{bottom:564.450000px;}
.yb_c00483{bottom:571.350000px;}
.y57_c00483{bottom:574.200000px;}
.y29_c00483{bottom:576.300000px;}
.ya_c00483{bottom:582.900000px;}
.y56_c00483{bottom:585.000000px;}
.y28_c00483{bottom:587.850000px;}
.y9_c00483{bottom:594.300000px;}
.y27_c00483{bottom:599.400000px;}
.y8_c00483{bottom:605.850000px;}
.y55_c00483{bottom:606.900000px;}
.y26_c00483{bottom:610.950000px;}
.y7_c00483{bottom:617.700000px;}
.y54_c00483{bottom:618.900000px;}
.y6_c00483{bottom:628.950000px;}
.y53_c00483{bottom:629.700000px;}
.y25_c00483{bottom:630.300000px;}
.y5_c00483{bottom:640.500000px;}
.y52_c00483{bottom:640.800000px;}
.y24_c00483{bottom:642.300000px;}
.y4_c00483{bottom:661.800000px;}
.y23_c00483{bottom:662.100000px;}
.y3_c00483{bottom:672.900000px;}
.y51_c00483{bottom:673.950000px;}
.y22_c00483{bottom:674.250000px;}
.y21_c00483{bottom:717.450000px;}
.y2_c00483{bottom:740.550000px;}
.y1_c00483{bottom:838.800000px;}
.h4_c00483{height:42.000000px;}
.h3_c00483{height:66.000000px;}
.h2_c00483{height:114.000000px;}
.h1_c00483{height:1166.250000px;}
.h0_c00483{height:1166.400056px;}
.w0_c00483{width:920.879975px;}
.w1_c00483{width:921.000000px;}
.x0_c00483{left:0.000000px;}
.x2c_c00483{left:113.700000px;}
.x2d_c00483{left:125.250000px;}
.x50_c00483{left:126.300000px;}
.x28_c00483{left:133.950000px;}
.x49_c00483{left:140.700000px;}
.x2e_c00483{left:146.100000px;}
.x2_c00483{left:155.550000px;}
.x53_c00483{left:158.700000px;}
.x2f_c00483{left:159.900000px;}
.x29_c00483{left:163.500000px;}
.x33_c00483{left:171.000000px;}
.x35_c00483{left:173.850000px;}
.x45_c00483{left:175.350000px;}
.x37_c00483{left:182.850000px;}
.x34_c00483{left:190.500000px;}
.x3_c00483{left:192.600000px;}
.x2a_c00483{left:196.200000px;}
.x3b_c00483{left:197.400000px;}
.x40_c00483{left:198.450000px;}
.x4_c00483{left:199.800000px;}
.x58_c00483{left:203.850000px;}
.x4e_c00483{left:207.150000px;}
.x30_c00483{left:213.150000px;}
.x4d_c00483{left:214.350000px;}
.x4a_c00483{left:216.000000px;}
.x57_c00483{left:220.800000px;}
.x5_c00483{left:222.450000px;}
.x3a_c00483{left:227.100000px;}
.x46_c00483{left:229.050000px;}
.x41_c00483{left:230.400000px;}
.x3c_c00483{left:232.650000px;}
.x51_c00483{left:235.800000px;}
.x43_c00483{left:237.600000px;}
.x3f_c00483{left:239.700000px;}
.x47_c00483{left:240.900000px;}
.x38_c00483{left:243.000000px;}
.x4f_c00483{left:244.650000px;}
.x54_c00483{left:248.700000px;}
.x2b_c00483{left:252.300000px;}
.x36_c00483{left:256.200000px;}
.x5a_c00483{left:262.650000px;}
.x31_c00483{left:266.400000px;}
.x59_c00483{left:267.450000px;}
.x4b_c00483{left:271.050000px;}
.x48_c00483{left:276.600000px;}
.x3d_c00483{left:279.750000px;}
.x55_c00483{left:280.800000px;}
.x39_c00483{left:285.150000px;}
.x42_c00483{left:288.300000px;}
.x44_c00483{left:290.850000px;}
.x56_c00483{left:293.100000px;}
.x52_c00483{left:295.200000px;}
.x5b_c00483{left:298.950000px;}
.x3e_c00483{left:300.150000px;}
.x4c_c00483{left:304.950000px;}
.x32_c00483{left:312.450000px;}
.x23_c00483{left:337.650000px;}
.x11_c00483{left:339.150000px;}
.x12_c00483{left:343.800000px;}
.x6_c00483{left:346.350000px;}
.x1d_c00483{left:347.700000px;}
.x5c_c00483{left:349.200000px;}
.x27_c00483{left:350.700000px;}
.x22_c00483{left:356.100000px;}
.x21_c00483{left:360.750000px;}
.x20_c00483{left:361.800000px;}
.x13_c00483{left:364.350000px;}
.x5d_c00483{left:365.400000px;}
.x7_c00483{left:372.600000px;}
.x1_c00483{left:376.500000px;}
.x14_c00483{left:384.900000px;}
.x19_c00483{left:395.700000px;}
.x15_c00483{left:400.350000px;}
.x24_c00483{left:405.000000px;}
.x1b_c00483{left:408.600000px;}
.xc_c00483{left:410.400000px;}
.x1e_c00483{left:413.250000px;}
.x26_c00483{left:420.750000px;}
.xe_c00483{left:421.950000px;}
.x1c_c00483{left:423.450000px;}
.x1a_c00483{left:440.550000px;}
.x8_c00483{left:453.900000px;}
.xf_c00483{left:455.100000px;}
.x1f_c00483{left:457.500000px;}
.x10_c00483{left:458.700000px;}
.x16_c00483{left:468.450000px;}
.x25_c00483{left:475.950000px;}
.x17_c00483{left:507.750000px;}
.x18_c00483{left:522.450000px;}
.xd_c00483{left:523.800000px;}
.x9_c00483{left:558.600000px;}
.x5e_c00483{left:563.400000px;}
.x65_c00483{left:564.450000px;}
.x66_c00483{left:574.500000px;}
.x8b_c00483{left:575.700000px;}
.x67_c00483{left:589.650000px;}
.x91_c00483{left:591.450000px;}
.x5f_c00483{left:595.800000px;}
.x89_c00483{left:605.100000px;}
.x74_c00483{left:609.450000px;}
.x68_c00483{left:610.500000px;}
.x92_c00483{left:612.000000px;}
.x62_c00483{left:619.500000px;}
.x7f_c00483{left:623.400000px;}
.x69_c00483{left:624.600000px;}
.x70_c00483{left:625.650000px;}
.x60_c00483{left:630.300000px;}
.x90_c00483{left:633.300000px;}
.x93_c00483{left:635.100000px;}
.xa_c00483{left:643.950000px;}
.x94_c00483{left:646.200000px;}
.x96_c00483{left:650.550000px;}
.x63_c00483{left:658.050000px;}
.x76_c00483{left:659.250000px;}
.x7b_c00483{left:660.900000px;}
.x86_c00483{left:661.950000px;}
.x80_c00483{left:665.100000px;}
.x73_c00483{left:666.450000px;}
.x88_c00483{left:668.100000px;}
.x7c_c00483{left:670.800000px;}
.x77_c00483{left:671.850000px;}
.x83_c00483{left:672.900000px;}
.x78_c00483{left:673.950000px;}
.x75_c00483{left:675.600000px;}
.x81_c00483{left:677.550000px;}
.x8d_c00483{left:678.600000px;}
.x71_c00483{left:679.650000px;}
.x84_c00483{left:681.450000px;}
.x7d_c00483{left:682.650000px;}
.x79_c00483{left:686.250000px;}
.x6a_c00483{left:688.350000px;}
.x82_c00483{left:689.850000px;}
.x72_c00483{left:691.950000px;}
.x6d_c00483{left:693.000000px;}
.x85_c00483{left:694.050000px;}
.x8a_c00483{left:697.650000px;}
.x87_c00483{left:699.300000px;}
.x61_c00483{left:702.300000px;}
.x64_c00483{left:708.150000px;}
.x6b_c00483{left:709.950000px;}
.x7a_c00483{left:711.150000px;}
.x7e_c00483{left:712.200000px;}
.x6e_c00483{left:714.300000px;}
.x8e_c00483{left:716.700000px;}
.xb_c00483{left:719.850000px;}
.x6c_c00483{left:721.800000px;}
.x6f_c00483{left:726.900000px;}
.x95_c00483{left:734.850000px;}
.x8c_c00483{left:746.700000px;}
.x8f_c00483{left:753.750000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws3_c00483{word-spacing:-18.666667pt;}
.ws1_c00483{word-spacing:-3.101247pt;}
.ws2_c00483{word-spacing:-2.410693pt;}
.ws4_c00483{word-spacing:0.000000pt;}
.ws0_c00483{word-spacing:5.528455pt;}
._0_c00483{width:2.353084pt;}
.fs2_c00483{font-size:37.333333pt;}
.fs1_c00483{font-size:58.666667pt;}
.fs0_c00483{font-size:101.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y78_c00483{bottom:126.666667pt;}
.y50_c00483{bottom:127.733333pt;}
.y4b_c00483{bottom:128.266667pt;}
.y77_c00483{bottom:137.200000pt;}
.y4f_c00483{bottom:137.866667pt;}
.y4a_c00483{bottom:138.533333pt;}
.y76_c00483{bottom:147.466667pt;}
.y49_c00483{bottom:148.800000pt;}
.y4e_c00483{bottom:154.933333pt;}
.y75_c00483{bottom:157.733333pt;}
.y4d_c00483{bottom:165.066667pt;}
.y48_c00483{bottom:165.733333pt;}
.y74_c00483{bottom:168.266667pt;}
.y4c_c00483{bottom:175.733333pt;}
.y47_c00483{bottom:176.000000pt;}
.y46_c00483{bottom:186.533333pt;}
.y73_c00483{bottom:190.666667pt;}
.y20_c00483{bottom:192.266667pt;}
.y45_c00483{bottom:196.800000pt;}
.y72_c00483{bottom:200.933333pt;}
.y1f_c00483{bottom:202.533333pt;}
.y44_c00483{bottom:207.066667pt;}
.y71_c00483{bottom:211.200000pt;}
.y1e_c00483{bottom:213.200000pt;}
.y43_c00483{bottom:217.333333pt;}
.y70_c00483{bottom:221.733333pt;}
.y1d_c00483{bottom:223.733333pt;}
.y6f_c00483{bottom:232.000000pt;}
.y1c_c00483{bottom:233.600000pt;}
.y42_c00483{bottom:234.266667pt;}
.y1b_c00483{bottom:244.133333pt;}
.y41_c00483{bottom:244.800000pt;}
.y6e_c00483{bottom:254.400000pt;}
.y40_c00483{bottom:254.666667pt;}
.y6d_c00483{bottom:264.666667pt;}
.y3f_c00483{bottom:265.333333pt;}
.y6c_c00483{bottom:274.933333pt;}
.y3e_c00483{bottom:282.133333pt;}
.y6b_c00483{bottom:285.066667pt;}
.y3d_c00483{bottom:292.400000pt;}
.y3c_c00483{bottom:302.666667pt;}
.y1a_c00483{bottom:303.733333pt;}
.y6a_c00483{bottom:306.266667pt;}
.y3b_c00483{bottom:313.333333pt;}
.y19_c00483{bottom:314.266667pt;}
.y69_c00483{bottom:316.800000pt;}
.y18_c00483{bottom:324.533333pt;}
.y68_c00483{bottom:327.066667pt;}
.y3a_c00483{bottom:329.866667pt;}
.y17_c00483{bottom:334.666667pt;}
.y67_c00483{bottom:337.600000pt;}
.y39_c00483{bottom:340.533333pt;}
.y16_c00483{bottom:344.933333pt;}
.y66_c00483{bottom:347.466667pt;}
.y38_c00483{bottom:350.666667pt;}
.y15_c00483{bottom:355.200000pt;}
.y65_c00483{bottom:358.133333pt;}
.y37_c00483{bottom:360.933333pt;}
.y14_c00483{bottom:365.733333pt;}
.y64_c00483{bottom:368.266667pt;}
.y36_c00483{bottom:371.466667pt;}
.y13_c00483{bottom:376.000000pt;}
.y63_c00483{bottom:378.533333pt;}
.y35_c00483{bottom:382.000000pt;}
.y12_c00483{bottom:386.266667pt;}
.y62_c00483{bottom:388.800000pt;}
.y34_c00483{bottom:392.266667pt;}
.y11_c00483{bottom:396.533333pt;}
.y61_c00483{bottom:399.333333pt;}
.y33_c00483{bottom:402.533333pt;}
.y10_c00483{bottom:406.666667pt;}
.y60_c00483{bottom:409.333333pt;}
.y32_c00483{bottom:412.800000pt;}
.yf_c00483{bottom:416.933333pt;}
.ye_c00483{bottom:427.466667pt;}
.y5f_c00483{bottom:427.866667pt;}
.y31_c00483{bottom:429.066667pt;}
.y5e_c00483{bottom:438.133333pt;}
.y30_c00483{bottom:440.000000pt;}
.yd_c00483{bottom:441.200000pt;}
.y5d_c00483{bottom:448.666667pt;}
.y2f_c00483{bottom:450.533333pt;}
.yc_c00483{bottom:452.133333pt;}
.y5c_c00483{bottom:458.933333pt;}
.y2e_c00483{bottom:460.133333pt;}
.y5b_c00483{bottom:469.066667pt;}
.y2d_c00483{bottom:470.666667pt;}
.y5a_c00483{bottom:479.333333pt;}
.y2c_c00483{bottom:480.933333pt;}
.y59_c00483{bottom:489.600000pt;}
.y2b_c00483{bottom:491.466667pt;}
.y58_c00483{bottom:499.866667pt;}
.y2a_c00483{bottom:501.733333pt;}
.yb_c00483{bottom:507.866667pt;}
.y57_c00483{bottom:510.400000pt;}
.y29_c00483{bottom:512.266667pt;}
.ya_c00483{bottom:518.133333pt;}
.y56_c00483{bottom:520.000000pt;}
.y28_c00483{bottom:522.533333pt;}
.y9_c00483{bottom:528.266667pt;}
.y27_c00483{bottom:532.800000pt;}
.y8_c00483{bottom:538.533333pt;}
.y55_c00483{bottom:539.466667pt;}
.y26_c00483{bottom:543.066667pt;}
.y7_c00483{bottom:549.066667pt;}
.y54_c00483{bottom:550.133333pt;}
.y6_c00483{bottom:559.066667pt;}
.y53_c00483{bottom:559.733333pt;}
.y25_c00483{bottom:560.266667pt;}
.y5_c00483{bottom:569.333333pt;}
.y52_c00483{bottom:569.600000pt;}
.y24_c00483{bottom:570.933333pt;}
.y4_c00483{bottom:588.266667pt;}
.y23_c00483{bottom:588.533333pt;}
.y3_c00483{bottom:598.133333pt;}
.y51_c00483{bottom:599.066667pt;}
.y22_c00483{bottom:599.333333pt;}
.y21_c00483{bottom:637.733333pt;}
.y2_c00483{bottom:658.266667pt;}
.y1_c00483{bottom:745.600000pt;}
.h4_c00483{height:37.333333pt;}
.h3_c00483{height:58.666667pt;}
.h2_c00483{height:101.333333pt;}
.h1_c00483{height:1036.666667pt;}
.h0_c00483{height:1036.800049pt;}
.w0_c00483{width:818.559977pt;}
.w1_c00483{width:818.666667pt;}
.x0_c00483{left:0.000000pt;}
.x2c_c00483{left:101.066667pt;}
.x2d_c00483{left:111.333333pt;}
.x50_c00483{left:112.266667pt;}
.x28_c00483{left:119.066667pt;}
.x49_c00483{left:125.066667pt;}
.x2e_c00483{left:129.866667pt;}
.x2_c00483{left:138.266667pt;}
.x53_c00483{left:141.066667pt;}
.x2f_c00483{left:142.133333pt;}
.x29_c00483{left:145.333333pt;}
.x33_c00483{left:152.000000pt;}
.x35_c00483{left:154.533333pt;}
.x45_c00483{left:155.866667pt;}
.x37_c00483{left:162.533333pt;}
.x34_c00483{left:169.333333pt;}
.x3_c00483{left:171.200000pt;}
.x2a_c00483{left:174.400000pt;}
.x3b_c00483{left:175.466667pt;}
.x40_c00483{left:176.400000pt;}
.x4_c00483{left:177.600000pt;}
.x58_c00483{left:181.200000pt;}
.x4e_c00483{left:184.133333pt;}
.x30_c00483{left:189.466667pt;}
.x4d_c00483{left:190.533333pt;}
.x4a_c00483{left:192.000000pt;}
.x57_c00483{left:196.266667pt;}
.x5_c00483{left:197.733333pt;}
.x3a_c00483{left:201.866667pt;}
.x46_c00483{left:203.600000pt;}
.x41_c00483{left:204.800000pt;}
.x3c_c00483{left:206.800000pt;}
.x51_c00483{left:209.600000pt;}
.x43_c00483{left:211.200000pt;}
.x3f_c00483{left:213.066667pt;}
.x47_c00483{left:214.133333pt;}
.x38_c00483{left:216.000000pt;}
.x4f_c00483{left:217.466667pt;}
.x54_c00483{left:221.066667pt;}
.x2b_c00483{left:224.266667pt;}
.x36_c00483{left:227.733333pt;}
.x5a_c00483{left:233.466667pt;}
.x31_c00483{left:236.800000pt;}
.x59_c00483{left:237.733333pt;}
.x4b_c00483{left:240.933333pt;}
.x48_c00483{left:245.866667pt;}
.x3d_c00483{left:248.666667pt;}
.x55_c00483{left:249.600000pt;}
.x39_c00483{left:253.466667pt;}
.x42_c00483{left:256.266667pt;}
.x44_c00483{left:258.533333pt;}
.x56_c00483{left:260.533333pt;}
.x52_c00483{left:262.400000pt;}
.x5b_c00483{left:265.733333pt;}
.x3e_c00483{left:266.800000pt;}
.x4c_c00483{left:271.066667pt;}
.x32_c00483{left:277.733333pt;}
.x23_c00483{left:300.133333pt;}
.x11_c00483{left:301.466667pt;}
.x12_c00483{left:305.600000pt;}
.x6_c00483{left:307.866667pt;}
.x1d_c00483{left:309.066667pt;}
.x5c_c00483{left:310.400000pt;}
.x27_c00483{left:311.733333pt;}
.x22_c00483{left:316.533333pt;}
.x21_c00483{left:320.666667pt;}
.x20_c00483{left:321.600000pt;}
.x13_c00483{left:323.866667pt;}
.x5d_c00483{left:324.800000pt;}
.x7_c00483{left:331.200000pt;}
.x1_c00483{left:334.666667pt;}
.x14_c00483{left:342.133333pt;}
.x19_c00483{left:351.733333pt;}
.x15_c00483{left:355.866667pt;}
.x24_c00483{left:360.000000pt;}
.x1b_c00483{left:363.200000pt;}
.xc_c00483{left:364.800000pt;}
.x1e_c00483{left:367.333333pt;}
.x26_c00483{left:374.000000pt;}
.xe_c00483{left:375.066667pt;}
.x1c_c00483{left:376.400000pt;}
.x1a_c00483{left:391.600000pt;}
.x8_c00483{left:403.466667pt;}
.xf_c00483{left:404.533333pt;}
.x1f_c00483{left:406.666667pt;}
.x10_c00483{left:407.733333pt;}
.x16_c00483{left:416.400000pt;}
.x25_c00483{left:423.066667pt;}
.x17_c00483{left:451.333333pt;}
.x18_c00483{left:464.400000pt;}
.xd_c00483{left:465.600000pt;}
.x9_c00483{left:496.533333pt;}
.x5e_c00483{left:500.800000pt;}
.x65_c00483{left:501.733333pt;}
.x66_c00483{left:510.666667pt;}
.x8b_c00483{left:511.733333pt;}
.x67_c00483{left:524.133333pt;}
.x91_c00483{left:525.733333pt;}
.x5f_c00483{left:529.600000pt;}
.x89_c00483{left:537.866667pt;}
.x74_c00483{left:541.733333pt;}
.x68_c00483{left:542.666667pt;}
.x92_c00483{left:544.000000pt;}
.x62_c00483{left:550.666667pt;}
.x7f_c00483{left:554.133333pt;}
.x69_c00483{left:555.200000pt;}
.x70_c00483{left:556.133333pt;}
.x60_c00483{left:560.266667pt;}
.x90_c00483{left:562.933333pt;}
.x93_c00483{left:564.533333pt;}
.xa_c00483{left:572.400000pt;}
.x94_c00483{left:574.400000pt;}
.x96_c00483{left:578.266667pt;}
.x63_c00483{left:584.933333pt;}
.x76_c00483{left:586.000000pt;}
.x7b_c00483{left:587.466667pt;}
.x86_c00483{left:588.400000pt;}
.x80_c00483{left:591.200000pt;}
.x73_c00483{left:592.400000pt;}
.x88_c00483{left:593.866667pt;}
.x7c_c00483{left:596.266667pt;}
.x77_c00483{left:597.200000pt;}
.x83_c00483{left:598.133333pt;}
.x78_c00483{left:599.066667pt;}
.x75_c00483{left:600.533333pt;}
.x81_c00483{left:602.266667pt;}
.x8d_c00483{left:603.200000pt;}
.x71_c00483{left:604.133333pt;}
.x84_c00483{left:605.733333pt;}
.x7d_c00483{left:606.800000pt;}
.x79_c00483{left:610.000000pt;}
.x6a_c00483{left:611.866667pt;}
.x82_c00483{left:613.200000pt;}
.x72_c00483{left:615.066667pt;}
.x6d_c00483{left:616.000000pt;}
.x85_c00483{left:616.933333pt;}
.x8a_c00483{left:620.133333pt;}
.x87_c00483{left:621.600000pt;}
.x61_c00483{left:624.266667pt;}
.x64_c00483{left:629.466667pt;}
.x6b_c00483{left:631.066667pt;}
.x7a_c00483{left:632.133333pt;}
.x7e_c00483{left:633.066667pt;}
.x6e_c00483{left:634.933333pt;}
.x8e_c00483{left:637.066667pt;}
.xb_c00483{left:639.866667pt;}
.x6c_c00483{left:641.600000pt;}
.x6f_c00483{left:646.133333pt;}
.x95_c00483{left:653.200000pt;}
.x8c_c00483{left:663.733333pt;}
.x8f_c00483{left:670.000000pt;}
}





/* 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_c00484 {
    display:none;
  }
  .loading-indicator_c00484.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00484 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_c00484 { 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_c00484" -> "#page-container .classname_c00484")
 */
.pf_c00484 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00484 { /* 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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00484 { /* 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_c00484 { /* 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_c00484 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00484 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00484 {overflow:visible;}
  }
}
.c_c00484 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00484 { /* 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_c00484:after { /* webkit #35443 */
  content: '';
}
.t_c00484:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00484 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 */
}
.__c00484 { /* 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_c00484 { /* info for Javascript */
  display:none;
}
.l_c00484 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00484 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00484 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00484: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_c00484 {
    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_c00484.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00484.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_c00484 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.000000;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;}
.m68_c00484{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m8_c00484{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00484{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m49_c00484{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00484{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00484{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m10_c00484{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00484{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m17_c00484{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m26_c00484{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00484{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m54_c00484{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00484{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00484{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00484{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m56_c00484{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00484{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m34_c00484{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m76_c00484{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00484{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m71_c00484{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00484{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00484{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m46_c00484{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m78_c00484{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00484{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m20_c00484{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00484{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m52_c00484{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m31_c00484{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m41_c00484{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m85_c00484{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00484{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m69_c00484{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m58_c00484{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00484{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00484{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m66_c00484{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m51_c00484{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m92_c00484{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m73_c00484{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m95_c00484{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.ma_c00484{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00484{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00484{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00484{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m44_c00484{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m55_c00484{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m74_c00484{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m65_c00484{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18_c00484{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00484{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00484{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);}
.m57_c00484{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00484{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00484{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m30_c00484{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00484{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00484{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00484{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m12_c00484{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m63_c00484{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.maa_c00484{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00484{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00484{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m19_c00484{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00484{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00484{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00484{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00484{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00484{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00484{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m25_c00484{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mae_c00484{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00484{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m38_c00484{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m91_c00484{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m21_c00484{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00484{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.maf_c00484{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00484{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00484{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m86_c00484{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00484{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m36_c00484{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m98_c00484{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m33_c00484{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m93_c00484{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00484{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00484{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m24_c00484{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m97_c00484{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00484{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m82_c00484{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m77_c00484{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00484{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mab_c00484{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m89_c00484{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00484{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m59_c00484{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m79_c00484{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00484{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m87_c00484{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00484{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00484{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m28_c00484{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m84_c00484{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m53_c00484{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00484{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00484{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m99_c00484{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00484{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m64_c00484{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00484{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m60_c00484{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m32_c00484{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00484{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m70_c00484{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m23_c00484{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m14_c00484{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m88_c00484{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00484{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00484{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00484{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00484{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m83_c00484{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m48_c00484{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m62_c00484{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m47_c00484{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m43_c00484{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m96_c00484{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m22_c00484{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.mad_c00484{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00484{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00484{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00484{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00484{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00484{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m42_c00484{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.mac_c00484{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m61_c00484{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00484{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m90_c00484{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m6_c00484{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m75_c00484{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m50_c00484{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00484{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m67_c00484{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00484{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00484{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00484{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m27_c00484{transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.384000,0.000000,0.000000,0.250000,0,0);}
.m39_c00484{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00484{transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);}
.m80_c00484{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m94_c00484{transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00484{transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00484{transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.398500,0.000000,0.000000,0.250000,0,0);}
.m72_c00484{transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408250,0.000000,0.000000,0.250000,0,0);}
.m40_c00484{transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.408500,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00484{transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414000,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.417250,0.000000,0.000000,0.250000,0,0);}
.m81_c00484{transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);}
.m35_c00484{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m37_c00484{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m15_c00484{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m29_c00484{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m45_c00484{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00484{vertical-align:0.000000px;}
.ls0_c00484{letter-spacing:0.000000px;}
.sc__c00484{text-shadow:none;}
.sc0_c00484{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__c00484{-webkit-text-stroke:0px transparent;}
.sc0_c00484{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00484{word-spacing:0.000000px;}
.ws0_c00484{word-spacing:84.528517px;}
.fc0_c00484{color:transparent;}
.fs2_c00484{font-size:30.000000px;}
.fs3_c00484{font-size:36.000000px;}
.fs1_c00484{font-size:42.000000px;}
.fs0_c00484{font-size:60.000000px;}
.y0_c00484{bottom:0.000000px;}
.y46_c00484{bottom:150.900000px;}
.y81_c00484{bottom:151.800000px;}
.yc7_c00484{bottom:153.000000px;}
.y45_c00484{bottom:162.750000px;}
.y80_c00484{bottom:163.650000px;}
.yc6_c00484{bottom:164.550000px;}
.y44_c00484{bottom:174.300000px;}
.y7f_c00484{bottom:175.200000px;}
.yc5_c00484{bottom:176.100000px;}
.y43_c00484{bottom:185.400000px;}
.y7e_c00484{bottom:187.050000px;}
.yc4_c00484{bottom:187.200000px;}
.y42_c00484{bottom:196.950000px;}
.y7d_c00484{bottom:198.150000px;}
.yc3_c00484{bottom:199.050000px;}
.y7c_c00484{bottom:210.000000px;}
.yc2_c00484{bottom:210.600000px;}
.y41_c00484{bottom:217.050000px;}
.y7b_c00484{bottom:221.550000px;}
.y40_c00484{bottom:228.900000px;}
.yc1_c00484{bottom:231.150000px;}
.y7a_c00484{bottom:232.650000px;}
.y3f_c00484{bottom:240.150000px;}
.yc0_c00484{bottom:242.700000px;}
.y79_c00484{bottom:244.500000px;}
.y3e_c00484{bottom:252.000000px;}
.ybf_c00484{bottom:254.100000px;}
.y78_c00484{bottom:256.050000px;}
.y3d_c00484{bottom:263.550000px;}
.ybe_c00484{bottom:265.650000px;}
.y77_c00484{bottom:267.900000px;}
.y3c_c00484{bottom:275.100000px;}
.ybd_c00484{bottom:277.200000px;}
.y76_c00484{bottom:278.700000px;}
.y3b_c00484{bottom:286.500000px;}
.ybc_c00484{bottom:289.050000px;}
.ybb_c00484{bottom:300.600000px;}
.y3a_c00484{bottom:302.700000px;}
.yba_c00484{bottom:312.150000px;}
.y75_c00484{bottom:314.250000px;}
.y39_c00484{bottom:314.700000px;}
.yb9_c00484{bottom:324.000000px;}
.y74_c00484{bottom:326.100000px;}
.y38_c00484{bottom:326.550000px;}
.yb8_c00484{bottom:335.550000px;}
.y73_c00484{bottom:337.650000px;}
.y37_c00484{bottom:338.100000px;}
.yb7_c00484{bottom:347.100000px;}
.y72_c00484{bottom:349.200000px;}
.y36_c00484{bottom:349.500000px;}
.y71_c00484{bottom:360.750000px;}
.y35_c00484{bottom:361.050000px;}
.yb6_c00484{bottom:364.950000px;}
.y70_c00484{bottom:372.300000px;}
.y34_c00484{bottom:372.900000px;}
.yb5_c00484{bottom:376.800000px;}
.y33_c00484{bottom:384.150000px;}
.yb4_c00484{bottom:388.350000px;}
.y6f_c00484{bottom:395.700000px;}
.y32_c00484{bottom:396.000000px;}
.yb3_c00484{bottom:400.200000px;}
.y6e_c00484{bottom:407.100000px;}
.y31_c00484{bottom:407.550000px;}
.yb2_c00484{bottom:411.750000px;}
.y30_c00484{bottom:419.400000px;}
.yb1_c00484{bottom:423.300000px;}
.y2f_c00484{bottom:430.950000px;}
.yb0_c00484{bottom:434.850000px;}
.y2e_c00484{bottom:442.050000px;}
.y6d_c00484{bottom:442.800000px;}
.yaf_c00484{bottom:446.400000px;}
.y2d_c00484{bottom:453.900000px;}
.yae_c00484{bottom:457.950000px;}
.y6c_c00484{bottom:465.900000px;}
.yad_c00484{bottom:469.800000px;}
.y2c_c00484{bottom:470.100000px;}
.y6b_c00484{bottom:477.300000px;}
.yac_c00484{bottom:481.350000px;}
.y2b_c00484{bottom:481.650000px;}
.y6a_c00484{bottom:488.550000px;}
.y2a_c00484{bottom:493.200000px;}
.y69_c00484{bottom:500.100000px;}
.yab_c00484{bottom:501.450000px;}
.y29_c00484{bottom:504.750000px;}
.y68_c00484{bottom:512.250000px;}
.yaa_c00484{bottom:513.000000px;}
.y28_c00484{bottom:516.600000px;}
.ya9_c00484{bottom:524.850000px;}
.y67_c00484{bottom:525.300000px;}
.y27_c00484{bottom:528.150000px;}
.ya8_c00484{bottom:536.400000px;}
.y26_c00484{bottom:540.000000px;}
.ya7_c00484{bottom:547.950000px;}
.y25_c00484{bottom:551.550000px;}
.ya6_c00484{bottom:559.050000px;}
.y24_c00484{bottom:563.100000px;}
.y65_c00484{bottom:563.700000px;}
.ya5_c00484{bottom:572.100000px;}
.y23_c00484{bottom:574.500000px;}
.y22_c00484{bottom:586.050000px;}
.y64_c00484{bottom:587.550000px;}
.ya4_c00484{bottom:590.400000px;}
.y21_c00484{bottom:597.600000px;}
.y63_c00484{bottom:599.100000px;}
.y66_c00484{bottom:599.700000px;}
.ya3_c00484{bottom:602.700000px;}
.ya2_c00484{bottom:614.100000px;}
.y20_c00484{bottom:616.650000px;}
.ya1_c00484{bottom:625.650000px;}
.y1f_c00484{bottom:628.500000px;}
.ya0_c00484{bottom:637.200000px;}
.y1e_c00484{bottom:639.300000px;}
.y9f_c00484{bottom:649.050000px;}
.y1d_c00484{bottom:651.600000px;}
.y62_c00484{bottom:655.500000px;}
.y9e_c00484{bottom:660.600000px;}
.y1c_c00484{bottom:662.400000px;}
.y61_c00484{bottom:667.050000px;}
.y9d_c00484{bottom:672.150000px;}
.y1b_c00484{bottom:674.700000px;}
.y60_c00484{bottom:678.600000px;}
.y9c_c00484{bottom:683.700000px;}
.y1a_c00484{bottom:686.550000px;}
.y5f_c00484{bottom:690.450000px;}
.y9b_c00484{bottom:695.550000px;}
.y5e_c00484{bottom:702.300000px;}
.y9a_c00484{bottom:706.650000px;}
.y5d_c00484{bottom:713.100000px;}
.y99_c00484{bottom:718.500000px;}
.y5c_c00484{bottom:725.700000px;}
.y98_c00484{bottom:736.200000px;}
.y19_c00484{bottom:737.250000px;}
.y97_c00484{bottom:748.050000px;}
.y18_c00484{bottom:748.800000px;}
.y96_c00484{bottom:759.600000px;}
.y5b_c00484{bottom:760.350000px;}
.y17_c00484{bottom:765.000000px;}
.y95_c00484{bottom:771.150000px;}
.y5a_c00484{bottom:771.750000px;}
.y16_c00484{bottom:776.850000px;}
.y94_c00484{bottom:782.700000px;}
.y59_c00484{bottom:784.050000px;}
.y15_c00484{bottom:788.700000px;}
.y93_c00484{bottom:794.100000px;}
.y58_c00484{bottom:794.850000px;}
.y14_c00484{bottom:799.200000px;}
.y92_c00484{bottom:805.650000px;}
.y57_c00484{bottom:806.400000px;}
.y13_c00484{bottom:812.100000px;}
.y91_c00484{bottom:817.500000px;}
.y56_c00484{bottom:819.000000px;}
.y12_c00484{bottom:823.650000px;}
.y90_c00484{bottom:829.050000px;}
.y11_c00484{bottom:835.200000px;}
.y55_c00484{bottom:838.800000px;}
.y8f_c00484{bottom:840.600000px;}
.y10_c00484{bottom:846.000000px;}
.y54_c00484{bottom:851.400000px;}
.y8e_c00484{bottom:852.150000px;}
.y53_c00484{bottom:862.950000px;}
.y8d_c00484{bottom:863.700000px;}
.yf_c00484{bottom:866.100000px;}
.y52_c00484{bottom:873.600000px;}
.y8c_c00484{bottom:875.850000px;}
.ye_c00484{bottom:877.650000px;}
.y51_c00484{bottom:885.900000px;}
.yd_c00484{bottom:888.150000px;}
.y8b_c00484{bottom:893.550000px;}
.y50_c00484{bottom:896.700000px;}
.y8a_c00484{bottom:905.100000px;}
.yc_c00484{bottom:908.700000px;}
.y89_c00484{bottom:916.950000px;}
.yb_c00484{bottom:919.500000px;}
.y4f_c00484{bottom:920.550000px;}
.y88_c00484{bottom:928.500000px;}
.y4e_c00484{bottom:931.650000px;}
.ya_c00484{bottom:932.100000px;}
.y87_c00484{bottom:940.350000px;}
.y9_c00484{bottom:943.200000px;}
.y4d_c00484{bottom:943.500000px;}
.y8_c00484{bottom:954.750000px;}
.y4c_c00484{bottom:955.500000px;}
.y86_c00484{bottom:958.650000px;}
.y7_c00484{bottom:966.300000px;}
.y4b_c00484{bottom:967.350000px;}
.y85_c00484{bottom:970.200000px;}
.y6_c00484{bottom:977.700000px;}
.y4a_c00484{bottom:978.450000px;}
.y84_c00484{bottom:983.550000px;}
.y5_c00484{bottom:988.500000px;}
.y49_c00484{bottom:989.550000px;}
.y4_c00484{bottom:1000.800000px;}
.y48_c00484{bottom:1001.400000px;}
.y83_c00484{bottom:1004.100000px;}
.y3_c00484{bottom:1013.100000px;}
.y47_c00484{bottom:1013.700000px;}
.y82_c00484{bottom:1016.700000px;}
.y1_c00484{bottom:1047.600000px;}
.y2_c00484{bottom:1049.400000px;}
.h4_c00484{height:30.000000px;}
.h5_c00484{height:36.000000px;}
.h3_c00484{height:42.000000px;}
.h2_c00484{height:60.000000px;}
.h1_c00484{height:1166.250000px;}
.h0_c00484{height:1166.400056px;}
.w0_c00484{width:920.879975px;}
.w1_c00484{width:921.000000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:142.950000px;}
.xa_c00484{left:144.300000px;}
.x19_c00484{left:155.550000px;}
.x1e_c00484{left:156.600000px;}
.xb_c00484{left:160.200000px;}
.x2f_c00484{left:168.900000px;}
.x2d_c00484{left:170.700000px;}
.x34_c00484{left:172.050000px;}
.x45_c00484{left:174.150000px;}
.x3_c00484{left:175.200000px;}
.x1f_c00484{left:176.700000px;}
.x30_c00484{left:184.350000px;}
.x16_c00484{left:189.600000px;}
.x1a_c00484{left:190.800000px;}
.x31_c00484{left:192.300000px;}
.x40_c00484{left:193.350000px;}
.x44_c00484{left:194.400000px;}
.x6_c00484{left:199.050000px;}
.xc_c00484{left:204.000000px;}
.x1c_c00484{left:205.200000px;}
.x22_c00484{left:206.400000px;}
.x3c_c00484{left:208.200000px;}
.x4_c00484{left:209.400000px;}
.x11_c00484{left:212.700000px;}
.xd_c00484{left:213.900000px;}
.x33_c00484{left:214.950000px;}
.x3d_c00484{left:216.000000px;}
.x43_c00484{left:217.500000px;}
.x46_c00484{left:218.550000px;}
.x32_c00484{left:219.600000px;}
.x2e_c00484{left:226.500000px;}
.xe_c00484{left:227.550000px;}
.x3e_c00484{left:228.600000px;}
.x35_c00484{left:230.100000px;}
.x2b_c00484{left:231.750000px;}
.x47_c00484{left:233.700000px;}
.x7_c00484{left:238.650000px;}
.x2a_c00484{left:241.950000px;}
.x2c_c00484{left:243.300000px;}
.x1b_c00484{left:250.950000px;}
.x20_c00484{left:252.450000px;}
.x1d_c00484{left:254.100000px;}
.x29_c00484{left:260.550000px;}
.x24_c00484{left:261.750000px;}
.x21_c00484{left:265.050000px;}
.x27_c00484{left:266.400000px;}
.x12_c00484{left:268.500000px;}
.x41_c00484{left:272.550000px;}
.x25_c00484{left:274.050000px;}
.x13_c00484{left:279.600000px;}
.x15_c00484{left:280.650000px;}
.x5_c00484{left:281.700000px;}
.x14_c00484{left:283.950000px;}
.xf_c00484{left:285.450000px;}
.x36_c00484{left:286.650000px;}
.x17_c00484{left:287.700000px;}
.x8_c00484{left:289.050000px;}
.x3a_c00484{left:291.900000px;}
.x9_c00484{left:293.400000px;}
.x3f_c00484{left:295.950000px;}
.x10_c00484{left:297.300000px;}
.x18_c00484{left:299.550000px;}
.x37_c00484{left:303.600000px;}
.x3b_c00484{left:305.250000px;}
.x28_c00484{left:317.550000px;}
.x23_c00484{left:319.500000px;}
.x39_c00484{left:324.150000px;}
.x42_c00484{left:327.150000px;}
.x26_c00484{left:331.650000px;}
.x38_c00484{left:334.200000px;}
.x4e_c00484{left:369.000000px;}
.x6a_c00484{left:376.950000px;}
.x5d_c00484{left:381.600000px;}
.x48_c00484{left:382.650000px;}
.x6c_c00484{left:394.500000px;}
.x5e_c00484{left:397.050000px;}
.x6d_c00484{left:411.450000px;}
.x70_c00484{left:412.950000px;}
.x4f_c00484{left:415.050000px;}
.x57_c00484{left:416.550000px;}
.x6e_c00484{left:429.150000px;}
.x50_c00484{left:430.200000px;}
.x58_c00484{left:431.700000px;}
.x49_c00484{left:436.650000px;}
.x52_c00484{left:439.200000px;}
.x60_c00484{left:440.250000px;}
.x2_c00484{left:443.250000px;}
.x53_c00484{left:445.350000px;}
.x4b_c00484{left:451.350000px;}
.x6b_c00484{left:452.550000px;}
.x54_c00484{left:454.350000px;}
.x62_c00484{left:455.700000px;}
.x65_c00484{left:463.200000px;}
.x6f_c00484{left:473.100000px;}
.x69_c00484{left:475.200000px;}
.x4c_c00484{left:484.500000px;}
.x5b_c00484{left:487.050000px;}
.x4d_c00484{left:488.100000px;}
.x66_c00484{left:497.700000px;}
.x51_c00484{left:499.650000px;}
.x63_c00484{left:506.850000px;}
.x5f_c00484{left:514.050000px;}
.x55_c00484{left:517.650000px;}
.x56_c00484{left:522.000000px;}
.x64_c00484{left:523.050000px;}
.x68_c00484{left:531.000000px;}
.x5a_c00484{left:532.650000px;}
.x5c_c00484{left:543.900000px;}
.x59_c00484{left:546.450000px;}
.x4a_c00484{left:551.850000px;}
.x67_c00484{left:553.500000px;}
.x61_c00484{left:574.200000px;}
.x76_c00484{left:605.100000px;}
.x82_c00484{left:607.650000px;}
.x71_c00484{left:619.200000px;}
.x77_c00484{left:625.200000px;}
.x83_c00484{left:631.800000px;}
.x8a_c00484{left:633.300000px;}
.x84_c00484{left:636.900000px;}
.x78_c00484{left:651.300000px;}
.x7c_c00484{left:652.350000px;}
.x80_c00484{left:653.700000px;}
.x85_c00484{left:654.900000px;}
.x79_c00484{left:666.000000px;}
.x7d_c00484{left:667.800000px;}
.x73_c00484{left:669.300000px;}
.x88_c00484{left:670.350000px;}
.x7b_c00484{left:675.000000px;}
.x7f_c00484{left:676.800000px;}
.x81_c00484{left:677.850000px;}
.x87_c00484{left:679.050000px;}
.x8b_c00484{left:680.100000px;}
.x72_c00484{left:682.950000px;}
.x7a_c00484{left:695.850000px;}
.x7e_c00484{left:696.900000px;}
.x86_c00484{left:699.150000px;}
.x89_c00484{left:700.200000px;}
.x74_c00484{left:718.200000px;}
.x75_c00484{left:721.800000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws1_c00484{word-spacing:0.000000pt;}
.ws0_c00484{word-spacing:75.136460pt;}
.fs2_c00484{font-size:26.666667pt;}
.fs3_c00484{font-size:32.000000pt;}
.fs1_c00484{font-size:37.333333pt;}
.fs0_c00484{font-size:53.333333pt;}
.y0_c00484{bottom:0.000000pt;}
.y46_c00484{bottom:134.133333pt;}
.y81_c00484{bottom:134.933333pt;}
.yc7_c00484{bottom:136.000000pt;}
.y45_c00484{bottom:144.666667pt;}
.y80_c00484{bottom:145.466667pt;}
.yc6_c00484{bottom:146.266667pt;}
.y44_c00484{bottom:154.933333pt;}
.y7f_c00484{bottom:155.733333pt;}
.yc5_c00484{bottom:156.533333pt;}
.y43_c00484{bottom:164.800000pt;}
.y7e_c00484{bottom:166.266667pt;}
.yc4_c00484{bottom:166.400000pt;}
.y42_c00484{bottom:175.066667pt;}
.y7d_c00484{bottom:176.133333pt;}
.yc3_c00484{bottom:176.933333pt;}
.y7c_c00484{bottom:186.666667pt;}
.yc2_c00484{bottom:187.200000pt;}
.y41_c00484{bottom:192.933333pt;}
.y7b_c00484{bottom:196.933333pt;}
.y40_c00484{bottom:203.466667pt;}
.yc1_c00484{bottom:205.466667pt;}
.y7a_c00484{bottom:206.800000pt;}
.y3f_c00484{bottom:213.466667pt;}
.yc0_c00484{bottom:215.733333pt;}
.y79_c00484{bottom:217.333333pt;}
.y3e_c00484{bottom:224.000000pt;}
.ybf_c00484{bottom:225.866667pt;}
.y78_c00484{bottom:227.600000pt;}
.y3d_c00484{bottom:234.266667pt;}
.ybe_c00484{bottom:236.133333pt;}
.y77_c00484{bottom:238.133333pt;}
.y3c_c00484{bottom:244.533333pt;}
.ybd_c00484{bottom:246.400000pt;}
.y76_c00484{bottom:247.733333pt;}
.y3b_c00484{bottom:254.666667pt;}
.ybc_c00484{bottom:256.933333pt;}
.ybb_c00484{bottom:267.200000pt;}
.y3a_c00484{bottom:269.066667pt;}
.yba_c00484{bottom:277.466667pt;}
.y75_c00484{bottom:279.333333pt;}
.y39_c00484{bottom:279.733333pt;}
.yb9_c00484{bottom:288.000000pt;}
.y74_c00484{bottom:289.866667pt;}
.y38_c00484{bottom:290.266667pt;}
.yb8_c00484{bottom:298.266667pt;}
.y73_c00484{bottom:300.133333pt;}
.y37_c00484{bottom:300.533333pt;}
.yb7_c00484{bottom:308.533333pt;}
.y72_c00484{bottom:310.400000pt;}
.y36_c00484{bottom:310.666667pt;}
.y71_c00484{bottom:320.666667pt;}
.y35_c00484{bottom:320.933333pt;}
.yb6_c00484{bottom:324.400000pt;}
.y70_c00484{bottom:330.933333pt;}
.y34_c00484{bottom:331.466667pt;}
.yb5_c00484{bottom:334.933333pt;}
.y33_c00484{bottom:341.466667pt;}
.yb4_c00484{bottom:345.200000pt;}
.y6f_c00484{bottom:351.733333pt;}
.y32_c00484{bottom:352.000000pt;}
.yb3_c00484{bottom:355.733333pt;}
.y6e_c00484{bottom:361.866667pt;}
.y31_c00484{bottom:362.266667pt;}
.yb2_c00484{bottom:366.000000pt;}
.y30_c00484{bottom:372.800000pt;}
.yb1_c00484{bottom:376.266667pt;}
.y2f_c00484{bottom:383.066667pt;}
.yb0_c00484{bottom:386.533333pt;}
.y2e_c00484{bottom:392.933333pt;}
.y6d_c00484{bottom:393.600000pt;}
.yaf_c00484{bottom:396.800000pt;}
.y2d_c00484{bottom:403.466667pt;}
.yae_c00484{bottom:407.066667pt;}
.y6c_c00484{bottom:414.133333pt;}
.yad_c00484{bottom:417.600000pt;}
.y2c_c00484{bottom:417.866667pt;}
.y6b_c00484{bottom:424.266667pt;}
.yac_c00484{bottom:427.866667pt;}
.y2b_c00484{bottom:428.133333pt;}
.y6a_c00484{bottom:434.266667pt;}
.y2a_c00484{bottom:438.400000pt;}
.y69_c00484{bottom:444.533333pt;}
.yab_c00484{bottom:445.733333pt;}
.y29_c00484{bottom:448.666667pt;}
.y68_c00484{bottom:455.333333pt;}
.yaa_c00484{bottom:456.000000pt;}
.y28_c00484{bottom:459.200000pt;}
.ya9_c00484{bottom:466.533333pt;}
.y67_c00484{bottom:466.933333pt;}
.y27_c00484{bottom:469.466667pt;}
.ya8_c00484{bottom:476.800000pt;}
.y26_c00484{bottom:480.000000pt;}
.ya7_c00484{bottom:487.066667pt;}
.y25_c00484{bottom:490.266667pt;}
.ya6_c00484{bottom:496.933333pt;}
.y24_c00484{bottom:500.533333pt;}
.y65_c00484{bottom:501.066667pt;}
.ya5_c00484{bottom:508.533333pt;}
.y23_c00484{bottom:510.666667pt;}
.y22_c00484{bottom:520.933333pt;}
.y64_c00484{bottom:522.266667pt;}
.ya4_c00484{bottom:524.800000pt;}
.y21_c00484{bottom:531.200000pt;}
.y63_c00484{bottom:532.533333pt;}
.y66_c00484{bottom:533.066667pt;}
.ya3_c00484{bottom:535.733333pt;}
.ya2_c00484{bottom:545.866667pt;}
.y20_c00484{bottom:548.133333pt;}
.ya1_c00484{bottom:556.133333pt;}
.y1f_c00484{bottom:558.666667pt;}
.ya0_c00484{bottom:566.400000pt;}
.y1e_c00484{bottom:568.266667pt;}
.y9f_c00484{bottom:576.933333pt;}
.y1d_c00484{bottom:579.200000pt;}
.y62_c00484{bottom:582.666667pt;}
.y9e_c00484{bottom:587.200000pt;}
.y1c_c00484{bottom:588.800000pt;}
.y61_c00484{bottom:592.933333pt;}
.y9d_c00484{bottom:597.466667pt;}
.y1b_c00484{bottom:599.733333pt;}
.y60_c00484{bottom:603.200000pt;}
.y9c_c00484{bottom:607.733333pt;}
.y1a_c00484{bottom:610.266667pt;}
.y5f_c00484{bottom:613.733333pt;}
.y9b_c00484{bottom:618.266667pt;}
.y5e_c00484{bottom:624.266667pt;}
.y9a_c00484{bottom:628.133333pt;}
.y5d_c00484{bottom:633.866667pt;}
.y99_c00484{bottom:638.666667pt;}
.y5c_c00484{bottom:645.066667pt;}
.y98_c00484{bottom:654.400000pt;}
.y19_c00484{bottom:655.333333pt;}
.y97_c00484{bottom:664.933333pt;}
.y18_c00484{bottom:665.600000pt;}
.y96_c00484{bottom:675.200000pt;}
.y5b_c00484{bottom:675.866667pt;}
.y17_c00484{bottom:680.000000pt;}
.y95_c00484{bottom:685.466667pt;}
.y5a_c00484{bottom:686.000000pt;}
.y16_c00484{bottom:690.533333pt;}
.y94_c00484{bottom:695.733333pt;}
.y59_c00484{bottom:696.933333pt;}
.y15_c00484{bottom:701.066667pt;}
.y93_c00484{bottom:705.866667pt;}
.y58_c00484{bottom:706.533333pt;}
.y14_c00484{bottom:710.400000pt;}
.y92_c00484{bottom:716.133333pt;}
.y57_c00484{bottom:716.800000pt;}
.y13_c00484{bottom:721.866667pt;}
.y91_c00484{bottom:726.666667pt;}
.y56_c00484{bottom:728.000000pt;}
.y12_c00484{bottom:732.133333pt;}
.y90_c00484{bottom:736.933333pt;}
.y11_c00484{bottom:742.400000pt;}
.y55_c00484{bottom:745.600000pt;}
.y8f_c00484{bottom:747.200000pt;}
.y10_c00484{bottom:752.000000pt;}
.y54_c00484{bottom:756.800000pt;}
.y8e_c00484{bottom:757.466667pt;}
.y53_c00484{bottom:767.066667pt;}
.y8d_c00484{bottom:767.733333pt;}
.yf_c00484{bottom:769.866667pt;}
.y52_c00484{bottom:776.533333pt;}
.y8c_c00484{bottom:778.533333pt;}
.ye_c00484{bottom:780.133333pt;}
.y51_c00484{bottom:787.466667pt;}
.yd_c00484{bottom:789.466667pt;}
.y8b_c00484{bottom:794.266667pt;}
.y50_c00484{bottom:797.066667pt;}
.y8a_c00484{bottom:804.533333pt;}
.yc_c00484{bottom:807.733333pt;}
.y89_c00484{bottom:815.066667pt;}
.yb_c00484{bottom:817.333333pt;}
.y4f_c00484{bottom:818.266667pt;}
.y88_c00484{bottom:825.333333pt;}
.y4e_c00484{bottom:828.133333pt;}
.ya_c00484{bottom:828.533333pt;}
.y87_c00484{bottom:835.866667pt;}
.y9_c00484{bottom:838.400000pt;}
.y4d_c00484{bottom:838.666667pt;}
.y8_c00484{bottom:848.666667pt;}
.y4c_c00484{bottom:849.333333pt;}
.y86_c00484{bottom:852.133333pt;}
.y7_c00484{bottom:858.933333pt;}
.y4b_c00484{bottom:859.866667pt;}
.y85_c00484{bottom:862.400000pt;}
.y6_c00484{bottom:869.066667pt;}
.y4a_c00484{bottom:869.733333pt;}
.y84_c00484{bottom:874.266667pt;}
.y5_c00484{bottom:878.666667pt;}
.y49_c00484{bottom:879.600000pt;}
.y4_c00484{bottom:889.600000pt;}
.y48_c00484{bottom:890.133333pt;}
.y83_c00484{bottom:892.533333pt;}
.y3_c00484{bottom:900.533333pt;}
.y47_c00484{bottom:901.066667pt;}
.y82_c00484{bottom:903.733333pt;}
.y1_c00484{bottom:931.200000pt;}
.y2_c00484{bottom:932.800000pt;}
.h4_c00484{height:26.666667pt;}
.h5_c00484{height:32.000000pt;}
.h3_c00484{height:37.333333pt;}
.h2_c00484{height:53.333333pt;}
.h1_c00484{height:1036.666667pt;}
.h0_c00484{height:1036.800049pt;}
.w0_c00484{width:818.559977pt;}
.w1_c00484{width:818.666667pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:127.066667pt;}
.xa_c00484{left:128.266667pt;}
.x19_c00484{left:138.266667pt;}
.x1e_c00484{left:139.200000pt;}
.xb_c00484{left:142.400000pt;}
.x2f_c00484{left:150.133333pt;}
.x2d_c00484{left:151.733333pt;}
.x34_c00484{left:152.933333pt;}
.x45_c00484{left:154.800000pt;}
.x3_c00484{left:155.733333pt;}
.x1f_c00484{left:157.066667pt;}
.x30_c00484{left:163.866667pt;}
.x16_c00484{left:168.533333pt;}
.x1a_c00484{left:169.600000pt;}
.x31_c00484{left:170.933333pt;}
.x40_c00484{left:171.866667pt;}
.x44_c00484{left:172.800000pt;}
.x6_c00484{left:176.933333pt;}
.xc_c00484{left:181.333333pt;}
.x1c_c00484{left:182.400000pt;}
.x22_c00484{left:183.466667pt;}
.x3c_c00484{left:185.066667pt;}
.x4_c00484{left:186.133333pt;}
.x11_c00484{left:189.066667pt;}
.xd_c00484{left:190.133333pt;}
.x33_c00484{left:191.066667pt;}
.x3d_c00484{left:192.000000pt;}
.x43_c00484{left:193.333333pt;}
.x46_c00484{left:194.266667pt;}
.x32_c00484{left:195.200000pt;}
.x2e_c00484{left:201.333333pt;}
.xe_c00484{left:202.266667pt;}
.x3e_c00484{left:203.200000pt;}
.x35_c00484{left:204.533333pt;}
.x2b_c00484{left:206.000000pt;}
.x47_c00484{left:207.733333pt;}
.x7_c00484{left:212.133333pt;}
.x2a_c00484{left:215.066667pt;}
.x2c_c00484{left:216.266667pt;}
.x1b_c00484{left:223.066667pt;}
.x20_c00484{left:224.400000pt;}
.x1d_c00484{left:225.866667pt;}
.x29_c00484{left:231.600000pt;}
.x24_c00484{left:232.666667pt;}
.x21_c00484{left:235.600000pt;}
.x27_c00484{left:236.800000pt;}
.x12_c00484{left:238.666667pt;}
.x41_c00484{left:242.266667pt;}
.x25_c00484{left:243.600000pt;}
.x13_c00484{left:248.533333pt;}
.x15_c00484{left:249.466667pt;}
.x5_c00484{left:250.400000pt;}
.x14_c00484{left:252.400000pt;}
.xf_c00484{left:253.733333pt;}
.x36_c00484{left:254.800000pt;}
.x17_c00484{left:255.733333pt;}
.x8_c00484{left:256.933333pt;}
.x3a_c00484{left:259.466667pt;}
.x9_c00484{left:260.800000pt;}
.x3f_c00484{left:263.066667pt;}
.x10_c00484{left:264.266667pt;}
.x18_c00484{left:266.266667pt;}
.x37_c00484{left:269.866667pt;}
.x3b_c00484{left:271.333333pt;}
.x28_c00484{left:282.266667pt;}
.x23_c00484{left:284.000000pt;}
.x39_c00484{left:288.133333pt;}
.x42_c00484{left:290.800000pt;}
.x26_c00484{left:294.800000pt;}
.x38_c00484{left:297.066667pt;}
.x4e_c00484{left:328.000000pt;}
.x6a_c00484{left:335.066667pt;}
.x5d_c00484{left:339.200000pt;}
.x48_c00484{left:340.133333pt;}
.x6c_c00484{left:350.666667pt;}
.x5e_c00484{left:352.933333pt;}
.x6d_c00484{left:365.733333pt;}
.x70_c00484{left:367.066667pt;}
.x4f_c00484{left:368.933333pt;}
.x57_c00484{left:370.266667pt;}
.x6e_c00484{left:381.466667pt;}
.x50_c00484{left:382.400000pt;}
.x58_c00484{left:383.733333pt;}
.x49_c00484{left:388.133333pt;}
.x52_c00484{left:390.400000pt;}
.x60_c00484{left:391.333333pt;}
.x2_c00484{left:394.000000pt;}
.x53_c00484{left:395.866667pt;}
.x4b_c00484{left:401.200000pt;}
.x6b_c00484{left:402.266667pt;}
.x54_c00484{left:403.866667pt;}
.x62_c00484{left:405.066667pt;}
.x65_c00484{left:411.733333pt;}
.x6f_c00484{left:420.533333pt;}
.x69_c00484{left:422.400000pt;}
.x4c_c00484{left:430.666667pt;}
.x5b_c00484{left:432.933333pt;}
.x4d_c00484{left:433.866667pt;}
.x66_c00484{left:442.400000pt;}
.x51_c00484{left:444.133333pt;}
.x63_c00484{left:450.533333pt;}
.x5f_c00484{left:456.933333pt;}
.x55_c00484{left:460.133333pt;}
.x56_c00484{left:464.000000pt;}
.x64_c00484{left:464.933333pt;}
.x68_c00484{left:472.000000pt;}
.x5a_c00484{left:473.466667pt;}
.x5c_c00484{left:483.466667pt;}
.x59_c00484{left:485.733333pt;}
.x4a_c00484{left:490.533333pt;}
.x67_c00484{left:492.000000pt;}
.x61_c00484{left:510.400000pt;}
.x76_c00484{left:537.866667pt;}
.x82_c00484{left:540.133333pt;}
.x71_c00484{left:550.400000pt;}
.x77_c00484{left:555.733333pt;}
.x83_c00484{left:561.600000pt;}
.x8a_c00484{left:562.933333pt;}
.x84_c00484{left:566.133333pt;}
.x78_c00484{left:578.933333pt;}
.x7c_c00484{left:579.866667pt;}
.x80_c00484{left:581.066667pt;}
.x85_c00484{left:582.133333pt;}
.x79_c00484{left:592.000000pt;}
.x7d_c00484{left:593.600000pt;}
.x73_c00484{left:594.933333pt;}
.x88_c00484{left:595.866667pt;}
.x7b_c00484{left:600.000000pt;}
.x7f_c00484{left:601.600000pt;}
.x81_c00484{left:602.533333pt;}
.x87_c00484{left:603.600000pt;}
.x8b_c00484{left:604.533333pt;}
.x72_c00484{left:607.066667pt;}
.x7a_c00484{left:618.533333pt;}
.x7e_c00484{left:619.466667pt;}
.x86_c00484{left:621.466667pt;}
.x89_c00484{left:622.400000pt;}
.x74_c00484{left:638.400000pt;}
.x75_c00484{left:641.600000pt;}
}





/* 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_c00485 {
    display:none;
  }
  .loading-indicator_c00485.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00485 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_c00485 { 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_c00485" -> "#page-container .classname_c00485")
 */
.pf_c00485 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00485 { /* 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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00485 { /* 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_c00485 { /* 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_c00485 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00485 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00485 {overflow:visible;}
  }
}
.c_c00485 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00485 { /* 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_c00485:after { /* webkit #35443 */
  content: '';
}
.t_c00485:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00485 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 */
}
.__c00485 { /* 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_c00485 { /* info for Javascript */
  display:none;
}
.l_c00485 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00485 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00485 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00485: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_c00485 {
    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_c00485.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00485.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_c00485 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00485{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00485;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.000000;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;}
.m1c_c00485{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m7_c00485{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m73_c00485{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00485{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00485{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m16_c00485{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00485{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m25_c00485{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m39_c00485{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m54_c00485{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00485{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00485{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00485{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m27_c00485{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00485{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m57_c00485{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf_c00485{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m72_c00485{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m81_c00485{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m33_c00485{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m62_c00485{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00485{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m30_c00485{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m19_c00485{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00485{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00485{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m77_c00485{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m42_c00485{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m75_c00485{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00485{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00485{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m18_c00485{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00485{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00485{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m35_c00485{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00485{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00485{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m76_c00485{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m80_c00485{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00485{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m26_c00485{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00485{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m41_c00485{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00485{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00485{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m59_c00485{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00485{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m84_c00485{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m28_c00485{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m55_c00485{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m21_c00485{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00485{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00485{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m48_c00485{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m45_c00485{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00485{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m37_c00485{transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00485{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m87_c00485{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00485{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m36_c00485{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m43_c00485{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00485{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m60_c00485{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m38_c00485{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m63_c00485{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m52_c00485{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00485{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00485{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m15_c00485{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m22_c00485{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m78_c00485{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m50_c00485{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m44_c00485{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m23_c00485{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m47_c00485{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m20_c00485{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m32_c00485{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m53_c00485{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00485{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m24_c00485{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00485{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m82_c00485{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00485{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m51_c00485{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00485{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00485{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m86_c00485{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m69_c00485{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m74_c00485{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.ma_c00485{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m70_c00485{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m85_c00485{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00485{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m17_c00485{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m14_c00485{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00485{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m46_c00485{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m68_c00485{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00485{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m58_c00485{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00485{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m31_c00485{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m88_c00485{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.m67_c00485{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m56_c00485{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m79_c00485{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00485{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m65_c00485{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00485{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m29_c00485{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m61_c00485{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00485{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00485{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m64_c00485{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m89_c00485{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m71_c00485{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m66_c00485{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m2_c00485{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00485{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m34_c00485{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397250,0.000000,0.000000,0.250000,0,0);}
.m83_c00485{transform:matrix(0.413500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.413500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.413500,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m49_c00485{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00485{vertical-align:0.000000px;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{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__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
.fc0_c00485{color:transparent;}
.fs0_c00485{font-size:42.000000px;}
.fs1_c00485{font-size:66.000000px;}
.y0_c00485{bottom:0.000000px;}
.y48_c00485{bottom:147.300000px;}
.y8b_c00485{bottom:149.400000px;}
.yca_c00485{bottom:151.950000px;}
.y47_c00485{bottom:159.150000px;}
.y8a_c00485{bottom:160.950000px;}
.yc9_c00485{bottom:162.750000px;}
.y89_c00485{bottom:172.050000px;}
.y46_c00485{bottom:174.900000px;}
.y88_c00485{bottom:183.900000px;}
.y45_c00485{bottom:186.750000px;}
.yc8_c00485{bottom:193.200000px;}
.y87_c00485{bottom:195.450000px;}
.y44_c00485{bottom:198.300000px;}
.yc7_c00485{bottom:205.500000px;}
.y86_c00485{bottom:207.000000px;}
.y43_c00485{bottom:209.850000px;}
.yc6_c00485{bottom:217.050000px;}
.y85_c00485{bottom:218.850000px;}
.y42_c00485{bottom:221.400000px;}
.y84_c00485{bottom:230.400000px;}
.y41_c00485{bottom:233.250000px;}
.yc5_c00485{bottom:237.600000px;}
.y83_c00485{bottom:242.250000px;}
.y40_c00485{bottom:249.300000px;}
.yc4_c00485{bottom:249.450000px;}
.y82_c00485{bottom:253.800000px;}
.yc3_c00485{bottom:261.000000px;}
.y3f_c00485{bottom:261.150000px;}
.y3e_c00485{bottom:272.250000px;}
.yc2_c00485{bottom:272.550000px;}
.y81_c00485{bottom:273.900000px;}
.y3d_c00485{bottom:284.100000px;}
.yc1_c00485{bottom:284.400000px;}
.y80_c00485{bottom:285.900000px;}
.yc0_c00485{bottom:295.950000px;}
.y3c_c00485{bottom:299.850000px;}
.y7f_c00485{bottom:306.000000px;}
.ybf_c00485{bottom:307.500000px;}
.y3b_c00485{bottom:311.400000px;}
.y7e_c00485{bottom:317.850000px;}
.ybe_c00485{bottom:318.900000px;}
.y3a_c00485{bottom:323.250000px;}
.y7d_c00485{bottom:329.400000px;}
.y39_c00485{bottom:334.800000px;}
.ybd_c00485{bottom:340.050000px;}
.y7c_c00485{bottom:341.250000px;}
.y38_c00485{bottom:346.350000px;}
.ybc_c00485{bottom:351.600000px;}
.y7b_c00485{bottom:352.800000px;}
.y37_c00485{bottom:358.200000px;}
.ybb_c00485{bottom:363.150000px;}
.y7a_c00485{bottom:364.350000px;}
.y36_c00485{bottom:373.950000px;}
.yba_c00485{bottom:374.700000px;}
.y79_c00485{bottom:376.050000px;}
.y35_c00485{bottom:385.500000px;}
.yb9_c00485{bottom:386.700000px;}
.y78_c00485{bottom:387.600000px;}
.y34_c00485{bottom:397.350000px;}
.y77_c00485{bottom:399.150000px;}
.yb8_c00485{bottom:406.800000px;}
.y33_c00485{bottom:408.900000px;}
.y76_c00485{bottom:410.700000px;}
.yb7_c00485{bottom:418.350000px;}
.y32_c00485{bottom:420.450000px;}
.y75_c00485{bottom:422.250000px;}
.yb6_c00485{bottom:430.200000px;}
.y31_c00485{bottom:432.000000px;}
.y74_c00485{bottom:434.100000px;}
.y30_c00485{bottom:443.850000px;}
.y73_c00485{bottom:445.650000px;}
.y72_c00485{bottom:457.200000px;}
.y2f_c00485{bottom:457.500000px;}
.yb5_c00485{bottom:466.950000px;}
.y71_c00485{bottom:469.050000px;}
.y2e_c00485{bottom:477.750000px;}
.yb4_c00485{bottom:478.800000px;}
.y70_c00485{bottom:480.600000px;}
.y2d_c00485{bottom:489.600000px;}
.yb3_c00485{bottom:490.350000px;}
.y6f_c00485{bottom:492.150000px;}
.y2c_c00485{bottom:500.700000px;}
.yb2_c00485{bottom:501.900000px;}
.y6e_c00485{bottom:503.700000px;}
.y2b_c00485{bottom:512.700000px;}
.y6d_c00485{bottom:515.550000px;}
.yb1_c00485{bottom:522.300000px;}
.y2a_c00485{bottom:524.100000px;}
.y6c_c00485{bottom:527.100000px;}
.yb0_c00485{bottom:533.850000px;}
.y29_c00485{bottom:536.100000px;}
.y6b_c00485{bottom:538.500000px;}
.yaf_c00485{bottom:545.400000px;}
.y28_c00485{bottom:547.500000px;}
.yae_c00485{bottom:556.950000px;}
.y6a_c00485{bottom:559.050000px;}
.y27_c00485{bottom:563.400000px;}
.yad_c00485{bottom:568.500000px;}
.y69_c00485{bottom:570.600000px;}
.y26_c00485{bottom:575.250000px;}
.yac_c00485{bottom:580.350000px;}
.y68_c00485{bottom:582.450000px;}
.y25_c00485{bottom:586.800000px;}
.yab_c00485{bottom:591.900000px;}
.y67_c00485{bottom:594.000000px;}
.y24_c00485{bottom:598.650000px;}
.y23_c00485{bottom:609.900000px;}
.yaa_c00485{bottom:612.300000px;}
.y66_c00485{bottom:614.550000px;}
.ya9_c00485{bottom:624.300000px;}
.y65_c00485{bottom:626.100000px;}
.y22_c00485{bottom:627.900000px;}
.ya8_c00485{bottom:635.400000px;}
.y64_c00485{bottom:637.500000px;}
.y21_c00485{bottom:639.750000px;}
.ya7_c00485{bottom:646.950000px;}
.y63_c00485{bottom:649.500000px;}
.y20_c00485{bottom:651.300000px;}
.ya6_c00485{bottom:658.800000px;}
.y62_c00485{bottom:660.900000px;}
.y1f_c00485{bottom:663.150000px;}
.ya5_c00485{bottom:670.350000px;}
.y61_c00485{bottom:672.900000px;}
.y1e_c00485{bottom:674.700000px;}
.ya4_c00485{bottom:682.200000px;}
.y60_c00485{bottom:684.750000px;}
.y1d_c00485{bottom:686.100000px;}
.ya3_c00485{bottom:693.750000px;}
.y1c_c00485{bottom:698.100000px;}
.y5f_c00485{bottom:704.850000px;}
.y1b_c00485{bottom:709.500000px;}
.ya2_c00485{bottom:714.900000px;}
.y5e_c00485{bottom:716.700000px;}
.y1a_c00485{bottom:721.050000px;}
.ya1_c00485{bottom:726.900000px;}
.y5d_c00485{bottom:728.250000px;}
.y19_c00485{bottom:732.600000px;}
.ya0_c00485{bottom:738.300000px;}
.y5c_c00485{bottom:740.100000px;}
.y18_c00485{bottom:744.150000px;}
.y9f_c00485{bottom:749.850000px;}
.y17_c00485{bottom:755.700000px;}
.y5b_c00485{bottom:760.650000px;}
.y9e_c00485{bottom:761.700000px;}
.y16_c00485{bottom:767.550000px;}
.y5a_c00485{bottom:772.500000px;}
.y9d_c00485{bottom:773.250000px;}
.y15_c00485{bottom:779.100000px;}
.y9c_c00485{bottom:784.500000px;}
.y59_c00485{bottom:794.850000px;}
.y9b_c00485{bottom:796.350000px;}
.y14_c00485{bottom:796.950000px;}
.y58_c00485{bottom:806.700000px;}
.y9a_c00485{bottom:807.900000px;}
.y13_c00485{bottom:808.800000px;}
.y57_c00485{bottom:818.250000px;}
.y99_c00485{bottom:819.300000px;}
.y12_c00485{bottom:820.350000px;}
.y56_c00485{bottom:830.100000px;}
.y98_c00485{bottom:830.850000px;}
.y11_c00485{bottom:831.900000px;}
.y55_c00485{bottom:842.100000px;}
.y97_c00485{bottom:842.400000px;}
.y10_c00485{bottom:843.450000px;}
.y96_c00485{bottom:854.250000px;}
.yf_c00485{bottom:855.300000px;}
.y54_c00485{bottom:862.200000px;}
.y95_c00485{bottom:865.800000px;}
.ye_c00485{bottom:871.500000px;}
.y53_c00485{bottom:874.050000px;}
.y94_c00485{bottom:877.350000px;}
.yd_c00485{bottom:883.500000px;}
.y52_c00485{bottom:885.600000px;}
.y93_c00485{bottom:889.200000px;}
.yc_c00485{bottom:894.900000px;}
.y51_c00485{bottom:897.150000px;}
.y92_c00485{bottom:900.750000px;}
.yb_c00485{bottom:906.450000px;}
.y50_c00485{bottom:909.000000px;}
.y91_c00485{bottom:912.300000px;}
.ya_c00485{bottom:918.000000px;}
.y4f_c00485{bottom:920.550000px;}
.y9_c00485{bottom:929.850000px;}
.y4e_c00485{bottom:932.400000px;}
.y90_c00485{bottom:932.700000px;}
.y8_c00485{bottom:941.400000px;}
.y8f_c00485{bottom:944.250000px;}
.y4d_c00485{bottom:952.950000px;}
.y8e_c00485{bottom:956.100000px;}
.y7_c00485{bottom:957.150000px;}
.y4c_c00485{bottom:964.500000px;}
.y8d_c00485{bottom:967.650000px;}
.y6_c00485{bottom:968.700000px;}
.y4b_c00485{bottom:979.200000px;}
.y8c_c00485{bottom:979.500000px;}
.y5_c00485{bottom:980.700000px;}
.y4a_c00485{bottom:1000.050000px;}
.y4_c00485{bottom:1001.100000px;}
.y49_c00485{bottom:1011.600000px;}
.y3_c00485{bottom:1013.100000px;}
.y2_c00485{bottom:1046.550000px;}
.y1_c00485{bottom:1047.300000px;}
.h2_c00485{height:42.000000px;}
.h3_c00485{height:66.000000px;}
.h1_c00485{height:1166.250000px;}
.h0_c00485{height:1166.400056px;}
.w0_c00485{width:920.879975px;}
.w1_c00485{width:921.000000px;}
.x0_c00485{left:0.000000px;}
.x16_c00485{left:118.800000px;}
.x5_c00485{left:135.300000px;}
.x17_c00485{left:140.700000px;}
.x13_c00485{left:142.500000px;}
.x1b_c00485{left:158.100000px;}
.x19_c00485{left:159.150000px;}
.x11_c00485{left:160.500000px;}
.xa_c00485{left:161.700000px;}
.x18_c00485{left:165.600000px;}
.x1c_c00485{left:178.200000px;}
.x10_c00485{left:180.300000px;}
.xb_c00485{left:182.250000px;}
.x7_c00485{left:185.400000px;}
.x1a_c00485{left:187.650000px;}
.x12_c00485{left:188.700000px;}
.xe_c00485{left:189.750000px;}
.xd_c00485{left:190.800000px;}
.x6_c00485{left:198.600000px;}
.x15_c00485{left:204.150000px;}
.x1d_c00485{left:207.750000px;}
.x14_c00485{left:210.150000px;}
.xc_c00485{left:211.350000px;}
.xf_c00485{left:212.400000px;}
.x8_c00485{left:234.000000px;}
.x9_c00485{left:237.300000px;}
.x23_c00485{left:344.550000px;}
.x1_c00485{left:351.750000px;}
.x1e_c00485{left:360.000000px;}
.x24_c00485{left:361.500000px;}
.x2b_c00485{left:367.500000px;}
.x2d_c00485{left:383.700000px;}
.x25_c00485{left:385.200000px;}
.x26_c00485{left:405.300000px;}
.x20_c00485{left:410.400000px;}
.x2c_c00485{left:412.950000px;}
.x28_c00485{left:414.000000px;}
.x1f_c00485{left:423.300000px;}
.x2a_c00485{left:433.500000px;}
.x29_c00485{left:434.850000px;}
.x27_c00485{left:435.900000px;}
.x2_c00485{left:451.050000px;}
.x21_c00485{left:458.700000px;}
.x22_c00485{left:462.000000px;}
.x3_c00485{left:471.150000px;}
.x3a_c00485{left:569.550000px;}
.x2e_c00485{left:586.500000px;}
.x3b_c00485{left:592.200000px;}
.x3f_c00485{left:608.700000px;}
.x3c_c00485{left:610.200000px;}
.x33_c00485{left:611.700000px;}
.x41_c00485{left:628.950000px;}
.x38_c00485{left:631.050000px;}
.x34_c00485{left:632.550000px;}
.x30_c00485{left:635.400000px;}
.x40_c00485{left:637.500000px;}
.x3e_c00485{left:638.700000px;}
.x39_c00485{left:639.750000px;}
.x36_c00485{left:640.800000px;}
.x2f_c00485{left:651.300000px;}
.x42_c00485{left:658.950000px;}
.x3d_c00485{left:660.600000px;}
.x37_c00485{left:661.650000px;}
.x35_c00485{left:662.850000px;}
.x31_c00485{left:684.750000px;}
.x32_c00485{left:688.350000px;}
.x4_c00485{left:753.450000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs0_c00485{font-size:37.333333pt;}
.fs1_c00485{font-size:58.666667pt;}
.y0_c00485{bottom:0.000000pt;}
.y48_c00485{bottom:130.933333pt;}
.y8b_c00485{bottom:132.800000pt;}
.yca_c00485{bottom:135.066667pt;}
.y47_c00485{bottom:141.466667pt;}
.y8a_c00485{bottom:143.066667pt;}
.yc9_c00485{bottom:144.666667pt;}
.y89_c00485{bottom:152.933333pt;}
.y46_c00485{bottom:155.466667pt;}
.y88_c00485{bottom:163.466667pt;}
.y45_c00485{bottom:166.000000pt;}
.yc8_c00485{bottom:171.733333pt;}
.y87_c00485{bottom:173.733333pt;}
.y44_c00485{bottom:176.266667pt;}
.yc7_c00485{bottom:182.666667pt;}
.y86_c00485{bottom:184.000000pt;}
.y43_c00485{bottom:186.533333pt;}
.yc6_c00485{bottom:192.933333pt;}
.y85_c00485{bottom:194.533333pt;}
.y42_c00485{bottom:196.800000pt;}
.y84_c00485{bottom:204.800000pt;}
.y41_c00485{bottom:207.333333pt;}
.yc5_c00485{bottom:211.200000pt;}
.y83_c00485{bottom:215.333333pt;}
.y40_c00485{bottom:221.600000pt;}
.yc4_c00485{bottom:221.733333pt;}
.y82_c00485{bottom:225.600000pt;}
.yc3_c00485{bottom:232.000000pt;}
.y3f_c00485{bottom:232.133333pt;}
.y3e_c00485{bottom:242.000000pt;}
.yc2_c00485{bottom:242.266667pt;}
.y81_c00485{bottom:243.466667pt;}
.y3d_c00485{bottom:252.533333pt;}
.yc1_c00485{bottom:252.800000pt;}
.y80_c00485{bottom:254.133333pt;}
.yc0_c00485{bottom:263.066667pt;}
.y3c_c00485{bottom:266.533333pt;}
.y7f_c00485{bottom:272.000000pt;}
.ybf_c00485{bottom:273.333333pt;}
.y3b_c00485{bottom:276.800000pt;}
.y7e_c00485{bottom:282.533333pt;}
.ybe_c00485{bottom:283.466667pt;}
.y3a_c00485{bottom:287.333333pt;}
.y7d_c00485{bottom:292.800000pt;}
.y39_c00485{bottom:297.600000pt;}
.ybd_c00485{bottom:302.266667pt;}
.y7c_c00485{bottom:303.333333pt;}
.y38_c00485{bottom:307.866667pt;}
.ybc_c00485{bottom:312.533333pt;}
.y7b_c00485{bottom:313.600000pt;}
.y37_c00485{bottom:318.400000pt;}
.ybb_c00485{bottom:322.800000pt;}
.y7a_c00485{bottom:323.866667pt;}
.y36_c00485{bottom:332.400000pt;}
.yba_c00485{bottom:333.066667pt;}
.y79_c00485{bottom:334.266667pt;}
.y35_c00485{bottom:342.666667pt;}
.yb9_c00485{bottom:343.733333pt;}
.y78_c00485{bottom:344.533333pt;}
.y34_c00485{bottom:353.200000pt;}
.y77_c00485{bottom:354.800000pt;}
.yb8_c00485{bottom:361.600000pt;}
.y33_c00485{bottom:363.466667pt;}
.y76_c00485{bottom:365.066667pt;}
.yb7_c00485{bottom:371.866667pt;}
.y32_c00485{bottom:373.733333pt;}
.y75_c00485{bottom:375.333333pt;}
.yb6_c00485{bottom:382.400000pt;}
.y31_c00485{bottom:384.000000pt;}
.y74_c00485{bottom:385.866667pt;}
.y30_c00485{bottom:394.533333pt;}
.y73_c00485{bottom:396.133333pt;}
.y72_c00485{bottom:406.400000pt;}
.y2f_c00485{bottom:406.666667pt;}
.yb5_c00485{bottom:415.066667pt;}
.y71_c00485{bottom:416.933333pt;}
.y2e_c00485{bottom:424.666667pt;}
.yb4_c00485{bottom:425.600000pt;}
.y70_c00485{bottom:427.200000pt;}
.y2d_c00485{bottom:435.200000pt;}
.yb3_c00485{bottom:435.866667pt;}
.y6f_c00485{bottom:437.466667pt;}
.y2c_c00485{bottom:445.066667pt;}
.yb2_c00485{bottom:446.133333pt;}
.y6e_c00485{bottom:447.733333pt;}
.y2b_c00485{bottom:455.733333pt;}
.y6d_c00485{bottom:458.266667pt;}
.yb1_c00485{bottom:464.266667pt;}
.y2a_c00485{bottom:465.866667pt;}
.y6c_c00485{bottom:468.533333pt;}
.yb0_c00485{bottom:474.533333pt;}
.y29_c00485{bottom:476.533333pt;}
.y6b_c00485{bottom:478.666667pt;}
.yaf_c00485{bottom:484.800000pt;}
.y28_c00485{bottom:486.666667pt;}
.yae_c00485{bottom:495.066667pt;}
.y6a_c00485{bottom:496.933333pt;}
.y27_c00485{bottom:500.800000pt;}
.yad_c00485{bottom:505.333333pt;}
.y69_c00485{bottom:507.200000pt;}
.y26_c00485{bottom:511.333333pt;}
.yac_c00485{bottom:515.866667pt;}
.y68_c00485{bottom:517.733333pt;}
.y25_c00485{bottom:521.600000pt;}
.yab_c00485{bottom:526.133333pt;}
.y67_c00485{bottom:528.000000pt;}
.y24_c00485{bottom:532.133333pt;}
.y23_c00485{bottom:542.133333pt;}
.yaa_c00485{bottom:544.266667pt;}
.y66_c00485{bottom:546.266667pt;}
.ya9_c00485{bottom:554.933333pt;}
.y65_c00485{bottom:556.533333pt;}
.y22_c00485{bottom:558.133333pt;}
.ya8_c00485{bottom:564.800000pt;}
.y64_c00485{bottom:566.666667pt;}
.y21_c00485{bottom:568.666667pt;}
.ya7_c00485{bottom:575.066667pt;}
.y63_c00485{bottom:577.333333pt;}
.y20_c00485{bottom:578.933333pt;}
.ya6_c00485{bottom:585.600000pt;}
.y62_c00485{bottom:587.466667pt;}
.y1f_c00485{bottom:589.466667pt;}
.ya5_c00485{bottom:595.866667pt;}
.y61_c00485{bottom:598.133333pt;}
.y1e_c00485{bottom:599.733333pt;}
.ya4_c00485{bottom:606.400000pt;}
.y60_c00485{bottom:608.666667pt;}
.y1d_c00485{bottom:609.866667pt;}
.ya3_c00485{bottom:616.666667pt;}
.y1c_c00485{bottom:620.533333pt;}
.y5f_c00485{bottom:626.533333pt;}
.y1b_c00485{bottom:630.666667pt;}
.ya2_c00485{bottom:635.466667pt;}
.y5e_c00485{bottom:637.066667pt;}
.y1a_c00485{bottom:640.933333pt;}
.ya1_c00485{bottom:646.133333pt;}
.y5d_c00485{bottom:647.333333pt;}
.y19_c00485{bottom:651.200000pt;}
.ya0_c00485{bottom:656.266667pt;}
.y5c_c00485{bottom:657.866667pt;}
.y18_c00485{bottom:661.466667pt;}
.y9f_c00485{bottom:666.533333pt;}
.y17_c00485{bottom:671.733333pt;}
.y5b_c00485{bottom:676.133333pt;}
.y9e_c00485{bottom:677.066667pt;}
.y16_c00485{bottom:682.266667pt;}
.y5a_c00485{bottom:686.666667pt;}
.y9d_c00485{bottom:687.333333pt;}
.y15_c00485{bottom:692.533333pt;}
.y9c_c00485{bottom:697.333333pt;}
.y59_c00485{bottom:706.533333pt;}
.y9b_c00485{bottom:707.866667pt;}
.y14_c00485{bottom:708.400000pt;}
.y58_c00485{bottom:717.066667pt;}
.y9a_c00485{bottom:718.133333pt;}
.y13_c00485{bottom:718.933333pt;}
.y57_c00485{bottom:727.333333pt;}
.y99_c00485{bottom:728.266667pt;}
.y12_c00485{bottom:729.200000pt;}
.y56_c00485{bottom:737.866667pt;}
.y98_c00485{bottom:738.533333pt;}
.y11_c00485{bottom:739.466667pt;}
.y55_c00485{bottom:748.533333pt;}
.y97_c00485{bottom:748.800000pt;}
.y10_c00485{bottom:749.733333pt;}
.y96_c00485{bottom:759.333333pt;}
.yf_c00485{bottom:760.266667pt;}
.y54_c00485{bottom:766.400000pt;}
.y95_c00485{bottom:769.600000pt;}
.ye_c00485{bottom:774.666667pt;}
.y53_c00485{bottom:776.933333pt;}
.y94_c00485{bottom:779.866667pt;}
.yd_c00485{bottom:785.333333pt;}
.y52_c00485{bottom:787.200000pt;}
.y93_c00485{bottom:790.400000pt;}
.yc_c00485{bottom:795.466667pt;}
.y51_c00485{bottom:797.466667pt;}
.y92_c00485{bottom:800.666667pt;}
.yb_c00485{bottom:805.733333pt;}
.y50_c00485{bottom:808.000000pt;}
.y91_c00485{bottom:810.933333pt;}
.ya_c00485{bottom:816.000000pt;}
.y4f_c00485{bottom:818.266667pt;}
.y9_c00485{bottom:826.533333pt;}
.y4e_c00485{bottom:828.800000pt;}
.y90_c00485{bottom:829.066667pt;}
.y8_c00485{bottom:836.800000pt;}
.y8f_c00485{bottom:839.333333pt;}
.y4d_c00485{bottom:847.066667pt;}
.y8e_c00485{bottom:849.866667pt;}
.y7_c00485{bottom:850.800000pt;}
.y4c_c00485{bottom:857.333333pt;}
.y8d_c00485{bottom:860.133333pt;}
.y6_c00485{bottom:861.066667pt;}
.y4b_c00485{bottom:870.400000pt;}
.y8c_c00485{bottom:870.666667pt;}
.y5_c00485{bottom:871.733333pt;}
.y4a_c00485{bottom:888.933333pt;}
.y4_c00485{bottom:889.866667pt;}
.y49_c00485{bottom:899.200000pt;}
.y3_c00485{bottom:900.533333pt;}
.y2_c00485{bottom:930.266667pt;}
.y1_c00485{bottom:930.933333pt;}
.h2_c00485{height:37.333333pt;}
.h3_c00485{height:58.666667pt;}
.h1_c00485{height:1036.666667pt;}
.h0_c00485{height:1036.800049pt;}
.w0_c00485{width:818.559977pt;}
.w1_c00485{width:818.666667pt;}
.x0_c00485{left:0.000000pt;}
.x16_c00485{left:105.600000pt;}
.x5_c00485{left:120.266667pt;}
.x17_c00485{left:125.066667pt;}
.x13_c00485{left:126.666667pt;}
.x1b_c00485{left:140.533333pt;}
.x19_c00485{left:141.466667pt;}
.x11_c00485{left:142.666667pt;}
.xa_c00485{left:143.733333pt;}
.x18_c00485{left:147.200000pt;}
.x1c_c00485{left:158.400000pt;}
.x10_c00485{left:160.266667pt;}
.xb_c00485{left:162.000000pt;}
.x7_c00485{left:164.800000pt;}
.x1a_c00485{left:166.800000pt;}
.x12_c00485{left:167.733333pt;}
.xe_c00485{left:168.666667pt;}
.xd_c00485{left:169.600000pt;}
.x6_c00485{left:176.533333pt;}
.x15_c00485{left:181.466667pt;}
.x1d_c00485{left:184.666667pt;}
.x14_c00485{left:186.800000pt;}
.xc_c00485{left:187.866667pt;}
.xf_c00485{left:188.800000pt;}
.x8_c00485{left:208.000000pt;}
.x9_c00485{left:210.933333pt;}
.x23_c00485{left:306.266667pt;}
.x1_c00485{left:312.666667pt;}
.x1e_c00485{left:320.000000pt;}
.x24_c00485{left:321.333333pt;}
.x2b_c00485{left:326.666667pt;}
.x2d_c00485{left:341.066667pt;}
.x25_c00485{left:342.400000pt;}
.x26_c00485{left:360.266667pt;}
.x20_c00485{left:364.800000pt;}
.x2c_c00485{left:367.066667pt;}
.x28_c00485{left:368.000000pt;}
.x1f_c00485{left:376.266667pt;}
.x2a_c00485{left:385.333333pt;}
.x29_c00485{left:386.533333pt;}
.x27_c00485{left:387.466667pt;}
.x2_c00485{left:400.933333pt;}
.x21_c00485{left:407.733333pt;}
.x22_c00485{left:410.666667pt;}
.x3_c00485{left:418.800000pt;}
.x3a_c00485{left:506.266667pt;}
.x2e_c00485{left:521.333333pt;}
.x3b_c00485{left:526.400000pt;}
.x3f_c00485{left:541.066667pt;}
.x3c_c00485{left:542.400000pt;}
.x33_c00485{left:543.733333pt;}
.x41_c00485{left:559.066667pt;}
.x38_c00485{left:560.933333pt;}
.x34_c00485{left:562.266667pt;}
.x30_c00485{left:564.800000pt;}
.x40_c00485{left:566.666667pt;}
.x3e_c00485{left:567.733333pt;}
.x39_c00485{left:568.666667pt;}
.x36_c00485{left:569.600000pt;}
.x2f_c00485{left:578.933333pt;}
.x42_c00485{left:585.733333pt;}
.x3d_c00485{left:587.200000pt;}
.x37_c00485{left:588.133333pt;}
.x35_c00485{left:589.200000pt;}
.x31_c00485{left:608.666667pt;}
.x32_c00485{left:611.866667pt;}
.x4_c00485{left:669.733333pt;}
}





/* 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_c00486 {
    display:none;
  }
  .loading-indicator_c00486.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00486 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_c00486 { 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_c00486" -> "#page-container .classname_c00486")
 */
.pf_c00486 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00486 { /* 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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00486 { /* 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_c00486 { /* 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_c00486 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00486 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00486 {overflow:visible;}
  }
}
.c_c00486 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00486 { /* 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_c00486:after { /* webkit #35443 */
  content: '';
}
.t_c00486:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00486 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 */
}
.__c00486 { /* 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_c00486 { /* info for Javascript */
  display:none;
}
.l_c00486 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00486 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00486 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00486: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_c00486 {
    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_c00486.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00486.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_c00486 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00486{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00486;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.000000;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;}
.m46_c00486{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.me_c00486{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m50_c00486{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00486{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00486{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m52_c00486{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00486{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m45_c00486{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00486{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m53_c00486{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m48_c00486{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m32_c00486{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m21_c00486{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m43_c00486{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m18_c00486{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m40_c00486{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m51_c00486{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m16_c00486{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00486{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m0_c00486{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m33_c00486{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m31_c00486{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m39_c00486{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m42_c00486{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m55_c00486{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00486{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m17_c00486{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00486{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00486{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m54_c00486{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00486{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m37_c00486{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m24_c00486{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m38_c00486{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma_c00486{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m41_c00486{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00486{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14_c00486{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00486{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);}
.m22_c00486{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m34_c00486{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m13_c00486{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m47_c00486{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m35_c00486{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m27_c00486{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00486{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00486{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c00486{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00486{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m44_c00486{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00486{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.mf_c00486{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.m49_c00486{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m28_c00486{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m3_c00486{transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353750,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.v0_c00486{vertical-align:0.000000px;}
.ls0_c00486{letter-spacing:0.000000px;}
.sc__c00486{text-shadow:none;}
.sc0_c00486{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__c00486{-webkit-text-stroke:0px transparent;}
.sc0_c00486{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00486{word-spacing:0.000000px;}
.fc0_c00486{color:transparent;}
.fs3_c00486{font-size:36.000000px;}
.fs1_c00486{font-size:42.000000px;}
.fs2_c00486{font-size:48.000000px;}
.fs0_c00486{font-size:66.000000px;}
.y0_c00486{bottom:0.000000px;}
.y25_c00486{bottom:556.800000px;}
.y48_c00486{bottom:559.050000px;}
.y24_c00486{bottom:568.350000px;}
.y47_c00486{bottom:570.900000px;}
.y23_c00486{bottom:580.650000px;}
.y66_c00486{bottom:592.950000px;}
.y46_c00486{bottom:594.000000px;}
.y22_c00486{bottom:596.100000px;}
.y65_c00486{bottom:604.800000px;}
.y45_c00486{bottom:605.550000px;}
.y21_c00486{bottom:608.400000px;}
.y44_c00486{bottom:617.100000px;}
.y20_c00486{bottom:619.200000px;}
.y64_c00486{bottom:627.150000px;}
.y43_c00486{bottom:630.750000px;}
.y1f_c00486{bottom:631.050000px;}
.y63_c00486{bottom:638.700000px;}
.y1e_c00486{bottom:642.600000px;}
.y62_c00486{bottom:650.100000px;}
.y1d_c00486{bottom:654.150000px;}
.y42_c00486{bottom:654.450000px;}
.y61_c00486{bottom:662.100000px;}
.y1c_c00486{bottom:666.000000px;}
.y41_c00486{bottom:666.300000px;}
.y60_c00486{bottom:673.500000px;}
.y40_c00486{bottom:677.850000px;}
.y1b_c00486{bottom:680.400000px;}
.y5f_c00486{bottom:685.050000px;}
.y5e_c00486{bottom:696.600000px;}
.y1a_c00486{bottom:700.500000px;}
.y3f_c00486{bottom:701.550000px;}
.y5d_c00486{bottom:708.150000px;}
.y19_c00486{bottom:712.050000px;}
.y3e_c00486{bottom:713.100000px;}
.y5c_c00486{bottom:720.300000px;}
.y18_c00486{bottom:723.900000px;}
.y3d_c00486{bottom:724.650000px;}
.y5b_c00486{bottom:731.850000px;}
.y17_c00486{bottom:735.450000px;}
.y3c_c00486{bottom:736.200000px;}
.y16_c00486{bottom:747.750000px;}
.y3b_c00486{bottom:748.050000px;}
.y5a_c00486{bottom:754.200000px;}
.y3a_c00486{bottom:759.900000px;}
.y15_c00486{bottom:763.200000px;}
.y59_c00486{bottom:765.750000px;}
.y39_c00486{bottom:771.450000px;}
.y14_c00486{bottom:775.050000px;}
.y58_c00486{bottom:776.850000px;}
.y38_c00486{bottom:782.700000px;}
.y13_c00486{bottom:786.600000px;}
.y37_c00486{bottom:794.550000px;}
.y57_c00486{bottom:797.850000px;}
.y12_c00486{bottom:798.450000px;}
.y36_c00486{bottom:806.100000px;}
.y56_c00486{bottom:809.400000px;}
.y11_c00486{bottom:814.350000px;}
.y35_c00486{bottom:817.950000px;}
.y55_c00486{bottom:821.250000px;}
.y10_c00486{bottom:825.900000px;}
.y54_c00486{bottom:832.350000px;}
.yf_c00486{bottom:837.750000px;}
.y34_c00486{bottom:840.300000px;}
.y53_c00486{bottom:844.200000px;}
.y33_c00486{bottom:852.150000px;}
.ye_c00486{bottom:853.500000px;}
.y52_c00486{bottom:856.050000px;}
.y32_c00486{bottom:863.700000px;}
.yd_c00486{bottom:865.050000px;}
.y51_c00486{bottom:869.100000px;}
.y31_c00486{bottom:875.550000px;}
.yc_c00486{bottom:876.900000px;}
.y50_c00486{bottom:885.900000px;}
.y30_c00486{bottom:887.700000px;}
.yb_c00486{bottom:891.300000px;}
.y2f_c00486{bottom:898.800000px;}
.y2e_c00486{bottom:910.350000px;}
.y4f_c00486{bottom:911.250000px;}
.ya_c00486{bottom:911.850000px;}
.y2d_c00486{bottom:921.900000px;}
.y4e_c00486{bottom:923.100000px;}
.y9_c00486{bottom:923.400000px;}
.y2c_c00486{bottom:933.450000px;}
.y8_c00486{bottom:934.950000px;}
.y2b_c00486{bottom:945.300000px;}
.y7_c00486{bottom:946.800000px;}
.y2a_c00486{bottom:956.850000px;}
.y4d_c00486{bottom:958.350000px;}
.y6_c00486{bottom:961.200000px;}
.y29_c00486{bottom:968.400000px;}
.y4c_c00486{bottom:969.900000px;}
.y28_c00486{bottom:980.250000px;}
.y5_c00486{bottom:980.700000px;}
.y4b_c00486{bottom:981.750000px;}
.y27_c00486{bottom:1000.800000px;}
.y4_c00486{bottom:1001.100000px;}
.y4a_c00486{bottom:1002.150000px;}
.y26_c00486{bottom:1012.350000px;}
.y3_c00486{bottom:1012.650000px;}
.y49_c00486{bottom:1013.700000px;}
.y2_c00486{bottom:1048.350000px;}
.y1_c00486{bottom:1048.650000px;}
.h5_c00486{height:36.000000px;}
.h3_c00486{height:42.000000px;}
.h4_c00486{height:48.000000px;}
.h2_c00486{height:66.000000px;}
.h1_c00486{height:1166.250000px;}
.h0_c00486{height:1166.400056px;}
.w0_c00486{width:920.879975px;}
.w1_c00486{width:921.000000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:150.900000px;}
.x8_c00486{left:162.300000px;}
.x7_c00486{left:174.300000px;}
.x3_c00486{left:176.100000px;}
.xd_c00486{left:182.250000px;}
.x14_c00486{left:189.000000px;}
.xf_c00486{left:204.150000px;}
.x17_c00486{left:205.500000px;}
.x9_c00486{left:209.550000px;}
.x12_c00486{left:218.850000px;}
.x10_c00486{left:220.050000px;}
.xa_c00486{left:223.650000px;}
.x15_c00486{left:224.700000px;}
.x5_c00486{left:227.250000px;}
.xc_c00486{left:232.950000px;}
.x16_c00486{left:234.000000px;}
.x4_c00486{left:240.150000px;}
.x13_c00486{left:248.700000px;}
.x11_c00486{left:251.400000px;}
.xb_c00486{left:252.750000px;}
.xe_c00486{left:254.850000px;}
.x6_c00486{left:279.750000px;}
.x18_c00486{left:403.950000px;}
.x24_c00486{left:413.700000px;}
.x1b_c00486{left:430.200000px;}
.x22_c00486{left:431.700000px;}
.x1f_c00486{left:436.350000px;}
.x25_c00486{left:437.700000px;}
.x1c_c00486{left:445.350000px;}
.x20_c00486{left:450.750000px;}
.x2_c00486{left:452.550000px;}
.x1e_c00486{left:459.450000px;}
.x27_c00486{left:460.800000px;}
.x19_c00486{left:467.700000px;}
.x1d_c00486{left:475.650000px;}
.x21_c00486{left:480.600000px;}
.x26_c00486{left:481.950000px;}
.x23_c00486{left:483.150000px;}
.x1a_c00486{left:502.950000px;}
.x31_c00486{left:615.900000px;}
.x28_c00486{left:629.700000px;}
.x32_c00486{left:637.800000px;}
.x33_c00486{left:645.450000px;}
.x2e_c00486{left:662.700000px;}
.x36_c00486{left:663.900000px;}
.x2f_c00486{left:677.100000px;}
.x34_c00486{left:678.600000px;}
.x2a_c00486{left:681.150000px;}
.x2d_c00486{left:686.100000px;}
.x35_c00486{left:687.300000px;}
.x29_c00486{left:694.500000px;}
.x30_c00486{left:708.000000px;}
.x2b_c00486{left:730.050000px;}
.x2c_c00486{left:733.350000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs3_c00486{font-size:32.000000pt;}
.fs1_c00486{font-size:37.333333pt;}
.fs2_c00486{font-size:42.666667pt;}
.fs0_c00486{font-size:58.666667pt;}
.y0_c00486{bottom:0.000000pt;}
.y25_c00486{bottom:494.933333pt;}
.y48_c00486{bottom:496.933333pt;}
.y24_c00486{bottom:505.200000pt;}
.y47_c00486{bottom:507.466667pt;}
.y23_c00486{bottom:516.133333pt;}
.y66_c00486{bottom:527.066667pt;}
.y46_c00486{bottom:528.000000pt;}
.y22_c00486{bottom:529.866667pt;}
.y65_c00486{bottom:537.600000pt;}
.y45_c00486{bottom:538.266667pt;}
.y21_c00486{bottom:540.800000pt;}
.y44_c00486{bottom:548.533333pt;}
.y20_c00486{bottom:550.400000pt;}
.y64_c00486{bottom:557.466667pt;}
.y43_c00486{bottom:560.666667pt;}
.y1f_c00486{bottom:560.933333pt;}
.y63_c00486{bottom:567.733333pt;}
.y1e_c00486{bottom:571.200000pt;}
.y62_c00486{bottom:577.866667pt;}
.y1d_c00486{bottom:581.466667pt;}
.y42_c00486{bottom:581.733333pt;}
.y61_c00486{bottom:588.533333pt;}
.y1c_c00486{bottom:592.000000pt;}
.y41_c00486{bottom:592.266667pt;}
.y60_c00486{bottom:598.666667pt;}
.y40_c00486{bottom:602.533333pt;}
.y1b_c00486{bottom:604.800000pt;}
.y5f_c00486{bottom:608.933333pt;}
.y5e_c00486{bottom:619.200000pt;}
.y1a_c00486{bottom:622.666667pt;}
.y3f_c00486{bottom:623.600000pt;}
.y5d_c00486{bottom:629.466667pt;}
.y19_c00486{bottom:632.933333pt;}
.y3e_c00486{bottom:633.866667pt;}
.y5c_c00486{bottom:640.266667pt;}
.y18_c00486{bottom:643.466667pt;}
.y3d_c00486{bottom:644.133333pt;}
.y5b_c00486{bottom:650.533333pt;}
.y17_c00486{bottom:653.733333pt;}
.y3c_c00486{bottom:654.400000pt;}
.y16_c00486{bottom:664.666667pt;}
.y3b_c00486{bottom:664.933333pt;}
.y5a_c00486{bottom:670.400000pt;}
.y3a_c00486{bottom:675.466667pt;}
.y15_c00486{bottom:678.400000pt;}
.y59_c00486{bottom:680.666667pt;}
.y39_c00486{bottom:685.733333pt;}
.y14_c00486{bottom:688.933333pt;}
.y58_c00486{bottom:690.533333pt;}
.y38_c00486{bottom:695.733333pt;}
.y13_c00486{bottom:699.200000pt;}
.y37_c00486{bottom:706.266667pt;}
.y57_c00486{bottom:709.200000pt;}
.y12_c00486{bottom:709.733333pt;}
.y36_c00486{bottom:716.533333pt;}
.y56_c00486{bottom:719.466667pt;}
.y11_c00486{bottom:723.866667pt;}
.y35_c00486{bottom:727.066667pt;}
.y55_c00486{bottom:730.000000pt;}
.y10_c00486{bottom:734.133333pt;}
.y54_c00486{bottom:739.866667pt;}
.yf_c00486{bottom:744.666667pt;}
.y34_c00486{bottom:746.933333pt;}
.y53_c00486{bottom:750.400000pt;}
.y33_c00486{bottom:757.466667pt;}
.ye_c00486{bottom:758.666667pt;}
.y52_c00486{bottom:760.933333pt;}
.y32_c00486{bottom:767.733333pt;}
.yd_c00486{bottom:768.933333pt;}
.y51_c00486{bottom:772.533333pt;}
.y31_c00486{bottom:778.266667pt;}
.yc_c00486{bottom:779.466667pt;}
.y50_c00486{bottom:787.466667pt;}
.y30_c00486{bottom:789.066667pt;}
.yb_c00486{bottom:792.266667pt;}
.y2f_c00486{bottom:798.933333pt;}
.y2e_c00486{bottom:809.200000pt;}
.y4f_c00486{bottom:810.000000pt;}
.ya_c00486{bottom:810.533333pt;}
.y2d_c00486{bottom:819.466667pt;}
.y4e_c00486{bottom:820.533333pt;}
.y9_c00486{bottom:820.800000pt;}
.y2c_c00486{bottom:829.733333pt;}
.y8_c00486{bottom:831.066667pt;}
.y2b_c00486{bottom:840.266667pt;}
.y7_c00486{bottom:841.600000pt;}
.y2a_c00486{bottom:850.533333pt;}
.y4d_c00486{bottom:851.866667pt;}
.y6_c00486{bottom:854.400000pt;}
.y29_c00486{bottom:860.800000pt;}
.y4c_c00486{bottom:862.133333pt;}
.y28_c00486{bottom:871.333333pt;}
.y5_c00486{bottom:871.733333pt;}
.y4b_c00486{bottom:872.666667pt;}
.y27_c00486{bottom:889.600000pt;}
.y4_c00486{bottom:889.866667pt;}
.y4a_c00486{bottom:890.800000pt;}
.y26_c00486{bottom:899.866667pt;}
.y3_c00486{bottom:900.133333pt;}
.y49_c00486{bottom:901.066667pt;}
.y2_c00486{bottom:931.866667pt;}
.y1_c00486{bottom:932.133333pt;}
.h5_c00486{height:32.000000pt;}
.h3_c00486{height:37.333333pt;}
.h4_c00486{height:42.666667pt;}
.h2_c00486{height:58.666667pt;}
.h1_c00486{height:1036.666667pt;}
.h0_c00486{height:1036.800049pt;}
.w0_c00486{width:818.559977pt;}
.w1_c00486{width:818.666667pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:134.133333pt;}
.x8_c00486{left:144.266667pt;}
.x7_c00486{left:154.933333pt;}
.x3_c00486{left:156.533333pt;}
.xd_c00486{left:162.000000pt;}
.x14_c00486{left:168.000000pt;}
.xf_c00486{left:181.466667pt;}
.x17_c00486{left:182.666667pt;}
.x9_c00486{left:186.266667pt;}
.x12_c00486{left:194.533333pt;}
.x10_c00486{left:195.600000pt;}
.xa_c00486{left:198.800000pt;}
.x15_c00486{left:199.733333pt;}
.x5_c00486{left:202.000000pt;}
.xc_c00486{left:207.066667pt;}
.x16_c00486{left:208.000000pt;}
.x4_c00486{left:213.466667pt;}
.x13_c00486{left:221.066667pt;}
.x11_c00486{left:223.466667pt;}
.xb_c00486{left:224.666667pt;}
.xe_c00486{left:226.533333pt;}
.x6_c00486{left:248.666667pt;}
.x18_c00486{left:359.066667pt;}
.x24_c00486{left:367.733333pt;}
.x1b_c00486{left:382.400000pt;}
.x22_c00486{left:383.733333pt;}
.x1f_c00486{left:387.866667pt;}
.x25_c00486{left:389.066667pt;}
.x1c_c00486{left:395.866667pt;}
.x20_c00486{left:400.666667pt;}
.x2_c00486{left:402.266667pt;}
.x1e_c00486{left:408.400000pt;}
.x27_c00486{left:409.600000pt;}
.x19_c00486{left:415.733333pt;}
.x1d_c00486{left:422.800000pt;}
.x21_c00486{left:427.200000pt;}
.x26_c00486{left:428.400000pt;}
.x23_c00486{left:429.466667pt;}
.x1a_c00486{left:447.066667pt;}
.x31_c00486{left:547.466667pt;}
.x28_c00486{left:559.733333pt;}
.x32_c00486{left:566.933333pt;}
.x33_c00486{left:573.733333pt;}
.x2e_c00486{left:589.066667pt;}
.x36_c00486{left:590.133333pt;}
.x2f_c00486{left:601.866667pt;}
.x34_c00486{left:603.200000pt;}
.x2a_c00486{left:605.466667pt;}
.x2d_c00486{left:609.866667pt;}
.x35_c00486{left:610.933333pt;}
.x29_c00486{left:617.333333pt;}
.x30_c00486{left:629.333333pt;}
.x2b_c00486{left:648.933333pt;}
.x2c_c00486{left:651.866667pt;}
}





/* 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_c00487 {
    display:none;
  }
  .loading-indicator_c00487.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00487 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_c00487 { 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_c00487" -> "#page-container .classname_c00487")
 */
.pf_c00487 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00487 { /* 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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00487 { /* 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_c00487 { /* 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_c00487 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00487 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00487 {overflow:visible;}
  }
}
.c_c00487 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00487 { /* 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_c00487:after { /* webkit #35443 */
  content: '';
}
.t_c00487:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00487 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 */
}
.__c00487 { /* 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_c00487 { /* info for Javascript */
  display:none;
}
.l_c00487 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00487 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00487 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00487: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_c00487 {
    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_c00487.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00487.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_c00487 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.000000;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;}
.m21_c00487{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m1_c00487{transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00487{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m20_c00487{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00487{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m38_c00487{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00487{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m47_c00487{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.m70_c00487{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00487{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m33_c00487{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m34_c00487{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.ma_c00487{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00487{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m49_c00487{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6_c00487{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m35_c00487{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m31_c00487{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m3_c00487{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m42_c00487{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0_c00487{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m12_c00487{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m40_c00487{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00487{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m83_c00487{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m17_c00487{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m64_c00487{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m43_c00487{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4_c00487{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m29_c00487{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m85_c00487{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m48_c00487{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00487{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19_c00487{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m22_c00487{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m74_c00487{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m2_c00487{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m84_c00487{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mf_c00487{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m24_c00487{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00487{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m30_c00487{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m56_c00487{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m32_c00487{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16_c00487{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m54_c00487{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m63_c00487{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5_c00487{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);}
.m57_c00487{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00487{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m11_c00487{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00487{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m71_c00487{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m79_c00487{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m61_c00487{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m9_c00487{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00487{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.md_c00487{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m86_c00487{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m39_c00487{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00487{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m46_c00487{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00487{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00487{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m78_c00487{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m69_c00487{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00487{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m25_c00487{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00487{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m41_c00487{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m13_c00487{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00487{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m26_c00487{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00487{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00487{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00487{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m52_c00487{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00487{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m18_c00487{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00487{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00487{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m28_c00487{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m45_c00487{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00487{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m82_c00487{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00487{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m14_c00487{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m44_c00487{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m81_c00487{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m65_c00487{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m75_c00487{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00487{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00487{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m67_c00487{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00487{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m59_c00487{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00487{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00487{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00487{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.me_c00487{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m55_c00487{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00487{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m50_c00487{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m37_c00487{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00487{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m10_c00487{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m15_c00487{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m66_c00487{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m60_c00487{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.m68_c00487{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mc_c00487{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m58_c00487{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m73_c00487{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00487{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00487{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m72_c00487{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00487{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00487{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00487{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.m51_c00487{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00487{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m53_c00487{transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317000,0.000000,0.000000,0.250000,0,0);}
.m62_c00487{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m27_c00487{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00487{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m87_c00487{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m80_c00487{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m76_c00487{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00487{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00487{transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363750,0.000000,0.000000,0.250000,0,0);}
.m23_c00487{transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00487{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00487{transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379250,0.000000,0.000000,0.250000,0,0);}
.m8_c00487{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m77_c00487{transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.404250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00487{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.v1_c00487{vertical-align:-3.000000px;}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{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__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00487{word-spacing:-4.666667px;}
.ws3_c00487{word-spacing:0.000000px;}
.ws2_c00487{word-spacing:23.762078px;}
.ws0_c00487{word-spacing:67.111111px;}
.fc0_c00487{color:transparent;}
.fs6_c00487{font-size:24.000000px;}
.fs4_c00487{font-size:30.000000px;}
.fs3_c00487{font-size:36.000000px;}
.fs2_c00487{font-size:42.000000px;}
.fs5_c00487{font-size:48.000000px;}
.fs0_c00487{font-size:66.000000px;}
.fs1_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y41_c00487{bottom:152.250000px;}
.y40_c00487{bottom:164.550000px;}
.y3f_c00487{bottom:175.650000px;}
.y3e_c00487{bottom:187.200000px;}
.y3d_c00487{bottom:203.100000px;}
.y3c_c00487{bottom:223.500000px;}
.y3b_c00487{bottom:235.500000px;}
.y3a_c00487{bottom:250.950000px;}
.y39_c00487{bottom:262.800000px;}
.y38_c00487{bottom:274.350000px;}
.y37_c00487{bottom:286.200000px;}
.y36_c00487{bottom:297.750000px;}
.y35_c00487{bottom:313.500000px;}
.y34_c00487{bottom:334.050000px;}
.y33_c00487{bottom:345.900000px;}
.y32_c00487{bottom:361.800000px;}
.y31_c00487{bottom:373.350000px;}
.y30_c00487{bottom:385.200000px;}
.y2f_c00487{bottom:401.100000px;}
.y2e_c00487{bottom:421.950000px;}
.y5f_c00487{bottom:441.000000px;}
.y78_c00487{bottom:443.100000px;}
.y2d_c00487{bottom:447.150000px;}
.y2c_c00487{bottom:447.900000px;}
.y5e_c00487{bottom:452.850000px;}
.y2b_c00487{bottom:458.700000px;}
.y77_c00487{bottom:459.000000px;}
.y2a_c00487{bottom:459.300000px;}
.y5d_c00487{bottom:464.400000px;}
.y29_c00487{bottom:470.550000px;}
.y28_c00487{bottom:470.850000px;}
.y5c_c00487{bottom:475.950000px;}
.y76_c00487{bottom:479.550000px;}
.y27_c00487{bottom:482.400000px;}
.y75_c00487{bottom:491.400000px;}
.y5b_c00487{bottom:494.700000px;}
.y26_c00487{bottom:497.850000px;}
.y25_c00487{bottom:498.300000px;}
.y74_c00487{bottom:502.950000px;}
.y24_c00487{bottom:510.150000px;}
.y73_c00487{bottom:514.800000px;}
.y5a_c00487{bottom:518.100000px;}
.y23_c00487{bottom:521.700000px;}
.y72_c00487{bottom:526.350000px;}
.y59_c00487{bottom:529.650000px;}
.y22_c00487{bottom:533.100000px;}
.y71_c00487{bottom:537.900000px;}
.y58_c00487{bottom:541.500000px;}
.y21_c00487{bottom:548.700000px;}
.y20_c00487{bottom:549.000000px;}
.y57_c00487{bottom:553.350000px;}
.y70_c00487{bottom:553.650000px;}
.y1f_c00487{bottom:560.550000px;}
.y1e_c00487{bottom:560.850000px;}
.y56_c00487{bottom:564.450000px;}
.y1c_c00487{bottom:572.400000px;}
.y6f_c00487{bottom:574.200000px;}
.y1d_c00487{bottom:574.950000px;}
.y1b_c00487{bottom:584.250000px;}
.y55_c00487{bottom:585.000000px;}
.y6e_c00487{bottom:586.050000px;}
.y1a_c00487{bottom:595.500000px;}
.y19_c00487{bottom:595.800000px;}
.y6d_c00487{bottom:601.950000px;}
.y18_c00487{bottom:606.900000px;}
.y17_c00487{bottom:607.350000px;}
.y54_c00487{bottom:608.100000px;}
.y53_c00487{bottom:619.950000px;}
.y6c_c00487{bottom:622.800000px;}
.y16_c00487{bottom:623.100000px;}
.y52_c00487{bottom:631.500000px;}
.y6b_c00487{bottom:634.650000px;}
.y51_c00487{bottom:643.350000px;}
.y15_c00487{bottom:643.650000px;}
.y6a_c00487{bottom:646.200000px;}
.y50_c00487{bottom:654.900000px;}
.y14_c00487{bottom:655.500000px;}
.y69_c00487{bottom:657.750000px;}
.y4f_c00487{bottom:666.300000px;}
.y13_c00487{bottom:667.050000px;}
.y68_c00487{bottom:673.950000px;}
.y4e_c00487{bottom:677.850000px;}
.y12_c00487{bottom:678.600000px;}
.y4d_c00487{bottom:689.700000px;}
.y67_c00487{bottom:690.150000px;}
.y11_c00487{bottom:690.450000px;}
.y4c_c00487{bottom:701.250000px;}
.y10_c00487{bottom:702.000000px;}
.y4b_c00487{bottom:712.800000px;}
.y66_c00487{bottom:713.250000px;}
.yf_c00487{bottom:718.950000px;}
.y4a_c00487{bottom:724.650000px;}
.y65_c00487{bottom:725.100000px;}
.ye_c00487{bottom:738.300000px;}
.y64_c00487{bottom:740.850000px;}
.y49_c00487{bottom:744.900000px;}
.yd_c00487{bottom:750.150000px;}
.y63_c00487{bottom:761.400000px;}
.yc_c00487{bottom:761.700000px;}
.y48_c00487{bottom:768.300000px;}
.yb_c00487{bottom:773.250000px;}
.y47_c00487{bottom:779.850000px;}
.ya_c00487{bottom:784.800000px;}
.y46_c00487{bottom:791.700000px;}
.y9_c00487{bottom:796.650000px;}
.y62_c00487{bottom:800.700000px;}
.y8_c00487{bottom:808.200000px;}
.y45_c00487{bottom:811.800000px;}
.y7_c00487{bottom:820.050000px;}
.y61_c00487{bottom:823.950000px;}
.y44_c00487{bottom:835.200000px;}
.y6_c00487{bottom:835.950000px;}
.y60_c00487{bottom:839.850000px;}
.y43_c00487{bottom:856.050000px;}
.y5_c00487{bottom:856.500000px;}
.y42_c00487{bottom:879.150000px;}
.y4_c00487{bottom:879.450000px;}
.y3_c00487{bottom:891.000000px;}
.y2_c00487{bottom:931.350000px;}
.y1_c00487{bottom:1050.150000px;}
.h8_c00487{height:24.000000px;}
.h6_c00487{height:30.000000px;}
.h5_c00487{height:36.000000px;}
.h4_c00487{height:42.000000px;}
.h7_c00487{height:48.000000px;}
.h2_c00487{height:66.000000px;}
.h3_c00487{height:72.000000px;}
.h1_c00487{height:1166.250000px;}
.h0_c00487{height:1166.400056px;}
.w0_c00487{width:920.879975px;}
.w1_c00487{width:921.000000px;}
.x0_c00487{left:0.000000px;}
.xb_c00487{left:105.450000px;}
.xc_c00487{left:120.900000px;}
.xd_c00487{left:133.200000px;}
.x8_c00487{left:134.250000px;}
.xf_c00487{left:145.050000px;}
.x2f_c00487{left:146.100000px;}
.xe_c00487{left:147.900000px;}
.x1a_c00487{left:149.100000px;}
.x2b_c00487{left:157.350000px;}
.x1b_c00487{left:160.650000px;}
.x34_c00487{left:162.000000px;}
.x33_c00487{left:163.350000px;}
.x37_c00487{left:164.850000px;}
.x1c_c00487{left:168.900000px;}
.x1d_c00487{left:172.500000px;}
.x1e_c00487{left:178.650000px;}
.x1f_c00487{left:184.050000px;}
.x10_c00487{left:189.300000px;}
.x9_c00487{left:191.550000px;}
.x13_c00487{left:197.550000px;}
.x12_c00487{left:199.350000px;}
.xa_c00487{left:200.550000px;}
.x22_c00487{left:204.600000px;}
.x17_c00487{left:206.100000px;}
.x16_c00487{left:207.600000px;}
.x23_c00487{left:209.250000px;}
.x21_c00487{left:213.600000px;}
.x24_c00487{left:214.650000px;}
.x26_c00487{left:216.300000px;}
.x32_c00487{left:218.100000px;}
.x30_c00487{left:219.900000px;}
.x14_c00487{left:222.750000px;}
.x35_c00487{left:223.950000px;}
.x2c_c00487{left:225.150000px;}
.x2d_c00487{left:226.350000px;}
.x3a_c00487{left:228.150000px;}
.x18_c00487{left:230.250000px;}
.x27_c00487{left:232.500000px;}
.x2_c00487{left:234.750000px;}
.x11_c00487{left:235.800000px;}
.x15_c00487{left:238.950000px;}
.x39_c00487{left:240.150000px;}
.x2e_c00487{left:241.650000px;}
.x20_c00487{left:242.700000px;}
.x31_c00487{left:244.050000px;}
.x19_c00487{left:246.450000px;}
.x28_c00487{left:247.650000px;}
.x38_c00487{left:250.500000px;}
.x25_c00487{left:252.750000px;}
.x3b_c00487{left:256.200000px;}
.x3_c00487{left:263.250000px;}
.x36_c00487{left:270.600000px;}
.x29_c00487{left:276.750000px;}
.x3c_c00487{left:278.850000px;}
.x2a_c00487{left:291.150000px;}
.x3f_c00487{left:331.500000px;}
.x40_c00487{left:346.200000px;}
.x4_c00487{left:352.500000px;}
.x44_c00487{left:357.450000px;}
.x41_c00487{left:358.950000px;}
.x4f_c00487{left:370.500000px;}
.x4b_c00487{left:402.300000px;}
.x5c_c00487{left:412.200000px;}
.x60_c00487{left:415.050000px;}
.x57_c00487{left:416.100000px;}
.x61_c00487{left:417.150000px;}
.x46_c00487{left:418.200000px;}
.x48_c00487{left:421.050000px;}
.x3d_c00487{left:422.550000px;}
.x62_c00487{left:424.350000px;}
.x3e_c00487{left:425.400000px;}
.x1_c00487{left:426.600000px;}
.x45_c00487{left:429.000000px;}
.x5e_c00487{left:431.250000px;}
.x47_c00487{left:432.300000px;}
.x49_c00487{left:436.200000px;}
.x52_c00487{left:438.900000px;}
.x5d_c00487{left:440.250000px;}
.x5f_c00487{left:443.550000px;}
.x42_c00487{left:445.350000px;}
.x4a_c00487{left:449.850000px;}
.x63_c00487{left:452.400000px;}
.x58_c00487{left:454.200000px;}
.x5a_c00487{left:456.150000px;}
.x53_c00487{left:462.900000px;}
.x50_c00487{left:464.850000px;}
.x4c_c00487{left:466.050000px;}
.x43_c00487{left:469.500000px;}
.x59_c00487{left:472.500000px;}
.x55_c00487{left:474.750000px;}
.x5b_c00487{left:479.850000px;}
.x5_c00487{left:483.150000px;}
.x54_c00487{left:486.000000px;}
.x51_c00487{left:488.250000px;}
.x4d_c00487{left:489.450000px;}
.x56_c00487{left:497.850000px;}
.x4e_c00487{left:505.650000px;}
.x6_c00487{left:509.850000px;}
.x7_c00487{left:547.950000px;}
.x73_c00487{left:555.900000px;}
.x67_c00487{left:556.950000px;}
.x68_c00487{left:572.850000px;}
.x80_c00487{left:579.600000px;}
.x76_c00487{left:582.450000px;}
.x64_c00487{left:583.500000px;}
.x7a_c00487{left:594.300000px;}
.x6b_c00487{left:595.350000px;}
.x6e_c00487{left:598.350000px;}
.x69_c00487{left:599.550000px;}
.x6a_c00487{left:609.300000px;}
.x74_c00487{left:615.000000px;}
.x75_c00487{left:623.700000px;}
.x84_c00487{left:639.000000px;}
.x65_c00487{left:641.850000px;}
.x83_c00487{left:647.250000px;}
.x66_c00487{left:650.100000px;}
.x79_c00487{left:652.650000px;}
.x71_c00487{left:654.900000px;}
.x7e_c00487{left:658.800000px;}
.x77_c00487{left:662.400000px;}
.x6f_c00487{left:664.950000px;}
.x70_c00487{left:666.750000px;}
.x7b_c00487{left:667.800000px;}
.x7f_c00487{left:675.000000px;}
.x86_c00487{left:677.250000px;}
.x82_c00487{left:679.200000px;}
.x72_c00487{left:680.400000px;}
.x78_c00487{left:681.450000px;}
.x6c_c00487{left:683.850000px;}
.x85_c00487{left:689.400000px;}
.x7c_c00487{left:690.900000px;}
.x87_c00487{left:702.150000px;}
.x6d_c00487{left:709.800000px;}
.x81_c00487{left:712.350000px;}
.x7d_c00487{left:714.300000px;}
.x88_c00487{left:725.250000px;}
.x89_c00487{left:741.450000px;}
@media print{
.v1_c00487{vertical-align:-2.666667pt;}
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws1_c00487{word-spacing:-4.148148pt;}
.ws3_c00487{word-spacing:0.000000pt;}
.ws2_c00487{word-spacing:21.121847pt;}
.ws0_c00487{word-spacing:59.654321pt;}
.fs6_c00487{font-size:21.333333pt;}
.fs4_c00487{font-size:26.666667pt;}
.fs3_c00487{font-size:32.000000pt;}
.fs2_c00487{font-size:37.333333pt;}
.fs5_c00487{font-size:42.666667pt;}
.fs0_c00487{font-size:58.666667pt;}
.fs1_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y41_c00487{bottom:135.333333pt;}
.y40_c00487{bottom:146.266667pt;}
.y3f_c00487{bottom:156.133333pt;}
.y3e_c00487{bottom:166.400000pt;}
.y3d_c00487{bottom:180.533333pt;}
.y3c_c00487{bottom:198.666667pt;}
.y3b_c00487{bottom:209.333333pt;}
.y3a_c00487{bottom:223.066667pt;}
.y39_c00487{bottom:233.600000pt;}
.y38_c00487{bottom:243.866667pt;}
.y37_c00487{bottom:254.400000pt;}
.y36_c00487{bottom:264.666667pt;}
.y35_c00487{bottom:278.666667pt;}
.y34_c00487{bottom:296.933333pt;}
.y33_c00487{bottom:307.466667pt;}
.y32_c00487{bottom:321.600000pt;}
.y31_c00487{bottom:331.866667pt;}
.y30_c00487{bottom:342.400000pt;}
.y2f_c00487{bottom:356.533333pt;}
.y2e_c00487{bottom:375.066667pt;}
.y5f_c00487{bottom:392.000000pt;}
.y78_c00487{bottom:393.866667pt;}
.y2d_c00487{bottom:397.466667pt;}
.y2c_c00487{bottom:398.133333pt;}
.y5e_c00487{bottom:402.533333pt;}
.y2b_c00487{bottom:407.733333pt;}
.y77_c00487{bottom:408.000000pt;}
.y2a_c00487{bottom:408.266667pt;}
.y5d_c00487{bottom:412.800000pt;}
.y29_c00487{bottom:418.266667pt;}
.y28_c00487{bottom:418.533333pt;}
.y5c_c00487{bottom:423.066667pt;}
.y76_c00487{bottom:426.266667pt;}
.y27_c00487{bottom:428.800000pt;}
.y75_c00487{bottom:436.800000pt;}
.y5b_c00487{bottom:439.733333pt;}
.y26_c00487{bottom:442.533333pt;}
.y25_c00487{bottom:442.933333pt;}
.y74_c00487{bottom:447.066667pt;}
.y24_c00487{bottom:453.466667pt;}
.y73_c00487{bottom:457.600000pt;}
.y5a_c00487{bottom:460.533333pt;}
.y23_c00487{bottom:463.733333pt;}
.y72_c00487{bottom:467.866667pt;}
.y59_c00487{bottom:470.800000pt;}
.y22_c00487{bottom:473.866667pt;}
.y71_c00487{bottom:478.133333pt;}
.y58_c00487{bottom:481.333333pt;}
.y21_c00487{bottom:487.733333pt;}
.y20_c00487{bottom:488.000000pt;}
.y57_c00487{bottom:491.866667pt;}
.y70_c00487{bottom:492.133333pt;}
.y1f_c00487{bottom:498.266667pt;}
.y1e_c00487{bottom:498.533333pt;}
.y56_c00487{bottom:501.733333pt;}
.y1c_c00487{bottom:508.800000pt;}
.y6f_c00487{bottom:510.400000pt;}
.y1d_c00487{bottom:511.066667pt;}
.y1b_c00487{bottom:519.333333pt;}
.y55_c00487{bottom:520.000000pt;}
.y6e_c00487{bottom:520.933333pt;}
.y1a_c00487{bottom:529.333333pt;}
.y19_c00487{bottom:529.600000pt;}
.y6d_c00487{bottom:535.066667pt;}
.y18_c00487{bottom:539.466667pt;}
.y17_c00487{bottom:539.866667pt;}
.y54_c00487{bottom:540.533333pt;}
.y53_c00487{bottom:551.066667pt;}
.y6c_c00487{bottom:553.600000pt;}
.y16_c00487{bottom:553.866667pt;}
.y52_c00487{bottom:561.333333pt;}
.y6b_c00487{bottom:564.133333pt;}
.y51_c00487{bottom:571.866667pt;}
.y15_c00487{bottom:572.133333pt;}
.y6a_c00487{bottom:574.400000pt;}
.y50_c00487{bottom:582.133333pt;}
.y14_c00487{bottom:582.666667pt;}
.y69_c00487{bottom:584.666667pt;}
.y4f_c00487{bottom:592.266667pt;}
.y13_c00487{bottom:592.933333pt;}
.y68_c00487{bottom:599.066667pt;}
.y4e_c00487{bottom:602.533333pt;}
.y12_c00487{bottom:603.200000pt;}
.y4d_c00487{bottom:613.066667pt;}
.y67_c00487{bottom:613.466667pt;}
.y11_c00487{bottom:613.733333pt;}
.y4c_c00487{bottom:623.333333pt;}
.y10_c00487{bottom:624.000000pt;}
.y4b_c00487{bottom:633.600000pt;}
.y66_c00487{bottom:634.000000pt;}
.yf_c00487{bottom:639.066667pt;}
.y4a_c00487{bottom:644.133333pt;}
.y65_c00487{bottom:644.533333pt;}
.ye_c00487{bottom:656.266667pt;}
.y64_c00487{bottom:658.533333pt;}
.y49_c00487{bottom:662.133333pt;}
.yd_c00487{bottom:666.800000pt;}
.y63_c00487{bottom:676.800000pt;}
.yc_c00487{bottom:677.066667pt;}
.y48_c00487{bottom:682.933333pt;}
.yb_c00487{bottom:687.333333pt;}
.y47_c00487{bottom:693.200000pt;}
.ya_c00487{bottom:697.600000pt;}
.y46_c00487{bottom:703.733333pt;}
.y9_c00487{bottom:708.133333pt;}
.y62_c00487{bottom:711.733333pt;}
.y8_c00487{bottom:718.400000pt;}
.y45_c00487{bottom:721.600000pt;}
.y7_c00487{bottom:728.933333pt;}
.y61_c00487{bottom:732.400000pt;}
.y44_c00487{bottom:742.400000pt;}
.y6_c00487{bottom:743.066667pt;}
.y60_c00487{bottom:746.533333pt;}
.y43_c00487{bottom:760.933333pt;}
.y5_c00487{bottom:761.333333pt;}
.y42_c00487{bottom:781.466667pt;}
.y4_c00487{bottom:781.733333pt;}
.y3_c00487{bottom:792.000000pt;}
.y2_c00487{bottom:827.866667pt;}
.y1_c00487{bottom:933.466667pt;}
.h8_c00487{height:21.333333pt;}
.h6_c00487{height:26.666667pt;}
.h5_c00487{height:32.000000pt;}
.h4_c00487{height:37.333333pt;}
.h7_c00487{height:42.666667pt;}
.h2_c00487{height:58.666667pt;}
.h3_c00487{height:64.000000pt;}
.h1_c00487{height:1036.666667pt;}
.h0_c00487{height:1036.800049pt;}
.w0_c00487{width:818.559977pt;}
.w1_c00487{width:818.666667pt;}
.x0_c00487{left:0.000000pt;}
.xb_c00487{left:93.733333pt;}
.xc_c00487{left:107.466667pt;}
.xd_c00487{left:118.400000pt;}
.x8_c00487{left:119.333333pt;}
.xf_c00487{left:128.933333pt;}
.x2f_c00487{left:129.866667pt;}
.xe_c00487{left:131.466667pt;}
.x1a_c00487{left:132.533333pt;}
.x2b_c00487{left:139.866667pt;}
.x1b_c00487{left:142.800000pt;}
.x34_c00487{left:144.000000pt;}
.x33_c00487{left:145.200000pt;}
.x37_c00487{left:146.533333pt;}
.x1c_c00487{left:150.133333pt;}
.x1d_c00487{left:153.333333pt;}
.x1e_c00487{left:158.800000pt;}
.x1f_c00487{left:163.600000pt;}
.x10_c00487{left:168.266667pt;}
.x9_c00487{left:170.266667pt;}
.x13_c00487{left:175.600000pt;}
.x12_c00487{left:177.200000pt;}
.xa_c00487{left:178.266667pt;}
.x22_c00487{left:181.866667pt;}
.x17_c00487{left:183.200000pt;}
.x16_c00487{left:184.533333pt;}
.x23_c00487{left:186.000000pt;}
.x21_c00487{left:189.866667pt;}
.x24_c00487{left:190.800000pt;}
.x26_c00487{left:192.266667pt;}
.x32_c00487{left:193.866667pt;}
.x30_c00487{left:195.466667pt;}
.x14_c00487{left:198.000000pt;}
.x35_c00487{left:199.066667pt;}
.x2c_c00487{left:200.133333pt;}
.x2d_c00487{left:201.200000pt;}
.x3a_c00487{left:202.800000pt;}
.x18_c00487{left:204.666667pt;}
.x27_c00487{left:206.666667pt;}
.x2_c00487{left:208.666667pt;}
.x11_c00487{left:209.600000pt;}
.x15_c00487{left:212.400000pt;}
.x39_c00487{left:213.466667pt;}
.x2e_c00487{left:214.800000pt;}
.x20_c00487{left:215.733333pt;}
.x31_c00487{left:216.933333pt;}
.x19_c00487{left:219.066667pt;}
.x28_c00487{left:220.133333pt;}
.x38_c00487{left:222.666667pt;}
.x25_c00487{left:224.666667pt;}
.x3b_c00487{left:227.733333pt;}
.x3_c00487{left:234.000000pt;}
.x36_c00487{left:240.533333pt;}
.x29_c00487{left:246.000000pt;}
.x3c_c00487{left:247.866667pt;}
.x2a_c00487{left:258.800000pt;}
.x3f_c00487{left:294.666667pt;}
.x40_c00487{left:307.733333pt;}
.x4_c00487{left:313.333333pt;}
.x44_c00487{left:317.733333pt;}
.x41_c00487{left:319.066667pt;}
.x4f_c00487{left:329.333333pt;}
.x4b_c00487{left:357.600000pt;}
.x5c_c00487{left:366.400000pt;}
.x60_c00487{left:368.933333pt;}
.x57_c00487{left:369.866667pt;}
.x61_c00487{left:370.800000pt;}
.x46_c00487{left:371.733333pt;}
.x48_c00487{left:374.266667pt;}
.x3d_c00487{left:375.600000pt;}
.x62_c00487{left:377.200000pt;}
.x3e_c00487{left:378.133333pt;}
.x1_c00487{left:379.200000pt;}
.x45_c00487{left:381.333333pt;}
.x5e_c00487{left:383.333333pt;}
.x47_c00487{left:384.266667pt;}
.x49_c00487{left:387.733333pt;}
.x52_c00487{left:390.133333pt;}
.x5d_c00487{left:391.333333pt;}
.x5f_c00487{left:394.266667pt;}
.x42_c00487{left:395.866667pt;}
.x4a_c00487{left:399.866667pt;}
.x63_c00487{left:402.133333pt;}
.x58_c00487{left:403.733333pt;}
.x5a_c00487{left:405.466667pt;}
.x53_c00487{left:411.466667pt;}
.x50_c00487{left:413.200000pt;}
.x4c_c00487{left:414.266667pt;}
.x43_c00487{left:417.333333pt;}
.x59_c00487{left:420.000000pt;}
.x55_c00487{left:422.000000pt;}
.x5b_c00487{left:426.533333pt;}
.x5_c00487{left:429.466667pt;}
.x54_c00487{left:432.000000pt;}
.x51_c00487{left:434.000000pt;}
.x4d_c00487{left:435.066667pt;}
.x56_c00487{left:442.533333pt;}
.x4e_c00487{left:449.466667pt;}
.x6_c00487{left:453.200000pt;}
.x7_c00487{left:487.066667pt;}
.x73_c00487{left:494.133333pt;}
.x67_c00487{left:495.066667pt;}
.x68_c00487{left:509.200000pt;}
.x80_c00487{left:515.200000pt;}
.x76_c00487{left:517.733333pt;}
.x64_c00487{left:518.666667pt;}
.x7a_c00487{left:528.266667pt;}
.x6b_c00487{left:529.200000pt;}
.x6e_c00487{left:531.866667pt;}
.x69_c00487{left:532.933333pt;}
.x6a_c00487{left:541.600000pt;}
.x74_c00487{left:546.666667pt;}
.x75_c00487{left:554.400000pt;}
.x84_c00487{left:568.000000pt;}
.x65_c00487{left:570.533333pt;}
.x83_c00487{left:575.333333pt;}
.x66_c00487{left:577.866667pt;}
.x79_c00487{left:580.133333pt;}
.x71_c00487{left:582.133333pt;}
.x7e_c00487{left:585.600000pt;}
.x77_c00487{left:588.800000pt;}
.x6f_c00487{left:591.066667pt;}
.x70_c00487{left:592.666667pt;}
.x7b_c00487{left:593.600000pt;}
.x7f_c00487{left:600.000000pt;}
.x86_c00487{left:602.000000pt;}
.x82_c00487{left:603.733333pt;}
.x72_c00487{left:604.800000pt;}
.x78_c00487{left:605.733333pt;}
.x6c_c00487{left:607.866667pt;}
.x85_c00487{left:612.800000pt;}
.x7c_c00487{left:614.133333pt;}
.x87_c00487{left:624.133333pt;}
.x6d_c00487{left:630.933333pt;}
.x81_c00487{left:633.200000pt;}
.x7d_c00487{left:634.933333pt;}
.x88_c00487{left:644.666667pt;}
.x89_c00487{left:659.066667pt;}
}





/* 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_c00488 {
    display:none;
  }
  .loading-indicator_c00488.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00488 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_c00488 { 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_c00488" -> "#page-container .classname_c00488")
 */
.pf_c00488 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00488 { /* 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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00488 { /* 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_c00488 { /* 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_c00488 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00488 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00488 {overflow:visible;}
  }
}
.c_c00488 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00488 { /* 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_c00488:after { /* webkit #35443 */
  content: '';
}
.t_c00488:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00488 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 */
}
.__c00488 { /* 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_c00488 { /* info for Javascript */
  display:none;
}
.l_c00488 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00488 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00488 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00488: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_c00488 {
    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_c00488.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00488.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_c00488 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00488{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00488;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.000000;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;}
.m85_c00488{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00488{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00488{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m31_c00488{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00488{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m81_c00488{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00488{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00488{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00488{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00488{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m1_c00488{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00488{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00488{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m13_c00488{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00488{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00488{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00488{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00488{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m56_c00488{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00488{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00488{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00488{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m23_c00488{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m97_c00488{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00488{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00488{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m93_c00488{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m19_c00488{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00488{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00488{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m86_c00488{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m12_c00488{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m88_c00488{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00488{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m26_c00488{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mac_c00488{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.mce_c00488{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m25_c00488{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m45_c00488{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00488{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m90_c00488{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00488{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00488{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00488{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00488{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00488{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mf_c00488{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m84_c00488{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m50_c00488{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00488{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00488{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00488{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me_c00488{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00488{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m30_c00488{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00488{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m98_c00488{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00488{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m38_c00488{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00488{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00488{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m60_c00488{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00488{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m59_c00488{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m44_c00488{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m47_c00488{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m10_c00488{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m17_c00488{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00488{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m99_c00488{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m94_c00488{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00488{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m92_c00488{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00488{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11_c00488{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m72_c00488{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00488{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m55_c00488{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00488{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00488{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00488{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma_c00488{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m91_c00488{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m62_c00488{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m42_c00488{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00488{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6_c00488{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00488{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5_c00488{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m95_c00488{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00488{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00488{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma1_c00488{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00488{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m3_c00488{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00488{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m80_c00488{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mae_c00488{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m51_c00488{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00488{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00488{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m4_c00488{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m96_c00488{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00488{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m78_c00488{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m27_c00488{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m82_c00488{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m48_c00488{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00488{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m89_c00488{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m18_c00488{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m9_c00488{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m71_c00488{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m54_c00488{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mba_c00488{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m64_c00488{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m75_c00488{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00488{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00488{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m87_c00488{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00488{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m35_c00488{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mad_c00488{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00488{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00488{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m69_c00488{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mca_c00488{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00488{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00488{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00488{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m77_c00488{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00488{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00488{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00488{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00488{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00488{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m49_c00488{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m40_c00488{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m79_c00488{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00488{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00488{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m28_c00488{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8_c00488{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m34_c00488{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00488{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m33_c00488{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00488{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m32_c00488{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m74_c00488{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m76_c00488{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m58_c00488{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00488{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mb_c00488{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m20_c00488{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m21_c00488{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00488{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m70_c00488{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00488{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00488{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m43_c00488{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00488{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00488{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00488{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00488{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.maa_c00488{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m36_c00488{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00488{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m68_c00488{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m15_c00488{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m37_c00488{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m24_c00488{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m66_c00488{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m63_c00488{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m73_c00488{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00488{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00488{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m29_c00488{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m67_c00488{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.md_c00488{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m83_c00488{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00488{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m39_c00488{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m41_c00488{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m7_c00488{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00488{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.maf_c00488{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m61_c00488{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00488{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00488{transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315750,0.000000,0.000000,0.250000,0,0);}
.m57_c00488{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m65_c00488{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.m22_c00488{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m52_c00488{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00488{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00488{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00488{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00488{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00488{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.m53_c00488{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m16_c00488{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00488{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00488{transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00488{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m14_c00488{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m46_c00488{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.mc_c00488{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00488{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.mab_c00488{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{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__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00488{word-spacing:-4.004926px;}
.ws5_c00488{word-spacing:-2.875000px;}
.ws8_c00488{word-spacing:0.000000px;}
.ws0_c00488{word-spacing:3.250000px;}
.ws2_c00488{word-spacing:4.058341px;}
.ws3_c00488{word-spacing:6.125000px;}
.ws7_c00488{word-spacing:6.680346px;}
.ws4_c00488{word-spacing:10.290793px;}
.ws6_c00488{word-spacing:372.000000px;}
.fc0_c00488{color:transparent;}
.fs3_c00488{font-size:36.000000px;}
.fs2_c00488{font-size:42.000000px;}
.fs0_c00488{font-size:60.000000px;}
.fs1_c00488{font-size:66.000000px;}
.y0_c00488{bottom:0.000000px;}
.y60_c00488{bottom:163.800000px;}
.y33_c00488{bottom:164.100000px;}
.y32_c00488{bottom:175.650000px;}
.y31_c00488{bottom:187.200000px;}
.y30_c00488{bottom:198.750000px;}
.y2f_c00488{bottom:210.300000px;}
.y5f_c00488{bottom:210.600000px;}
.y2e_c00488{bottom:221.850000px;}
.y5e_c00488{bottom:222.150000px;}
.y2d_c00488{bottom:233.400000px;}
.y5d_c00488{bottom:233.700000px;}
.y2c_c00488{bottom:244.950000px;}
.y5c_c00488{bottom:245.550000px;}
.y5b_c00488{bottom:256.650000px;}
.y2b_c00488{bottom:256.800000px;}
.y2a_c00488{bottom:268.350000px;}
.y5a_c00488{bottom:268.500000px;}
.y59_c00488{bottom:280.050000px;}
.y29_c00488{bottom:280.200000px;}
.y28_c00488{bottom:291.300000px;}
.y58_c00488{bottom:291.600000px;}
.y57_c00488{bottom:317.100000px;}
.y27_c00488{bottom:318.150000px;}
.y56_c00488{bottom:330.150000px;}
.y26_c00488{bottom:332.850000px;}
.y55_c00488{bottom:346.650000px;}
.y25_c00488{bottom:347.550000px;}
.y54_c00488{bottom:360.750000px;}
.y24_c00488{bottom:361.950000px;}
.y53_c00488{bottom:375.450000px;}
.y23_c00488{bottom:376.350000px;}
.y52_c00488{bottom:389.850000px;}
.y22_c00488{bottom:391.050000px;}
.y51_c00488{bottom:404.700000px;}
.y21_c00488{bottom:405.750000px;}
.y50_c00488{bottom:419.100000px;}
.y20_c00488{bottom:419.850000px;}
.y4f_c00488{bottom:433.500000px;}
.y1f_c00488{bottom:434.250000px;}
.y4e_c00488{bottom:448.200000px;}
.y1e_c00488{bottom:449.400000px;}
.y4d_c00488{bottom:462.600000px;}
.y1d_c00488{bottom:463.800000px;}
.y4c_c00488{bottom:477.300000px;}
.y1c_c00488{bottom:478.200000px;}
.y4b_c00488{bottom:491.400000px;}
.y1b_c00488{bottom:492.900000px;}
.y4a_c00488{bottom:506.850000px;}
.y1a_c00488{bottom:507.600000px;}
.y49_c00488{bottom:520.950000px;}
.y19_c00488{bottom:522.000000px;}
.y48_c00488{bottom:535.050000px;}
.y18_c00488{bottom:536.100000px;}
.y47_c00488{bottom:550.500000px;}
.y17_c00488{bottom:550.800000px;}
.y46_c00488{bottom:563.400000px;}
.y16_c00488{bottom:565.950000px;}
.y45_c00488{bottom:578.850000px;}
.y15_c00488{bottom:580.350000px;}
.y44_c00488{bottom:593.250000px;}
.y14_c00488{bottom:595.050000px;}
.y43_c00488{bottom:607.350000px;}
.y13_c00488{bottom:609.900000px;}
.y42_c00488{bottom:622.050000px;}
.y12_c00488{bottom:624.300000px;}
.y41_c00488{bottom:636.600000px;}
.y11_c00488{bottom:639.150000px;}
.y40_c00488{bottom:651.300000px;}
.y10_c00488{bottom:653.850000px;}
.y3f_c00488{bottom:665.550000px;}
.yf_c00488{bottom:668.250000px;}
.y3e_c00488{bottom:680.700000px;}
.ye_c00488{bottom:682.950000px;}
.y3d_c00488{bottom:694.800000px;}
.yd_c00488{bottom:697.350000px;}
.y3c_c00488{bottom:709.350000px;}
.yc_c00488{bottom:711.750000px;}
.y3b_c00488{bottom:724.050000px;}
.yb_c00488{bottom:726.450000px;}
.y3a_c00488{bottom:738.750000px;}
.ya_c00488{bottom:741.000000px;}
.y39_c00488{bottom:753.450000px;}
.y9_c00488{bottom:755.400000px;}
.y38_c00488{bottom:767.850000px;}
.y8_c00488{bottom:770.100000px;}
.y37_c00488{bottom:782.700000px;}
.y7_c00488{bottom:784.500000px;}
.y36_c00488{bottom:797.400000px;}
.y6_c00488{bottom:799.200000px;}
.y35_c00488{bottom:811.800000px;}
.y5_c00488{bottom:816.600000px;}
.y34_c00488{bottom:826.500000px;}
.y4_c00488{bottom:827.700000px;}
.y3_c00488{bottom:864.300000px;}
.y2_c00488{bottom:905.400000px;}
.y1_c00488{bottom:1058.700000px;}
.h5_c00488{height:36.000000px;}
.h4_c00488{height:42.000000px;}
.h2_c00488{height:60.000000px;}
.h3_c00488{height:66.000000px;}
.h1_c00488{height:1166.250000px;}
.h0_c00488{height:1166.400056px;}
.w0_c00488{width:920.879975px;}
.w1_c00488{width:921.000000px;}
.x0_c00488{left:0.000000px;}
.x9c_c00488{left:138.300000px;}
.x80_c00488{left:139.500000px;}
.x6c_c00488{left:141.900000px;}
.x42_c00488{left:144.450000px;}
.x2f_c00488{left:146.550000px;}
.x16_c00488{left:147.600000px;}
.xa1_c00488{left:151.650000px;}
.x97_c00488{left:155.550000px;}
.x7d_c00488{left:157.350000px;}
.x9d_c00488{left:167.100000px;}
.x7e_c00488{left:168.900000px;}
.x81_c00488{left:172.950000px;}
.x8a_c00488{left:174.600000px;}
.x3f_c00488{left:175.800000px;}
.x30_c00488{left:177.000000px;}
.x17_c00488{left:180.750000px;}
.x92_c00488{left:181.800000px;}
.x20_c00488{left:187.950000px;}
.x7f_c00488{left:189.750000px;}
.x2d_c00488{left:191.250000px;}
.x8b_c00488{left:194.400000px;}
.x95_c00488{left:195.450000px;}
.x5f_c00488{left:196.500000px;}
.x57_c00488{left:198.000000px;}
.x26_c00488{left:203.700000px;}
.x53_c00488{left:205.500000px;}
.x43_c00488{left:206.700000px;}
.x2_c00488{left:208.800000px;}
.x74_c00488{left:210.450000px;}
.x37_c00488{left:213.750000px;}
.x6d_c00488{left:216.450000px;}
.x31_c00488{left:217.650000px;}
.x18_c00488{left:219.600000px;}
.x38_c00488{left:223.050000px;}
.x9e_c00488{left:224.400000px;}
.x8c_c00488{left:225.750000px;}
.x21_c00488{left:227.550000px;}
.x4c_c00488{left:229.350000px;}
.x3e_c00488{left:231.300000px;}
.x46_c00488{left:234.300000px;}
.x90_c00488{left:237.300000px;}
.x93_c00488{left:239.700000px;}
.x27_c00488{left:241.200000px;}
.xa2_c00488{left:242.700000px;}
.x98_c00488{left:243.750000px;}
.x3_c00488{left:244.800000px;}
.x5b_c00488{left:246.300000px;}
.x79_c00488{left:249.750000px;}
.x32_c00488{left:251.100000px;}
.x19_c00488{left:253.050000px;}
.x99_c00488{left:254.550000px;}
.x54_c00488{left:256.650000px;}
.x39_c00488{left:258.150000px;}
.x73_c00488{left:261.600000px;}
.x15_c00488{left:263.100000px;}
.x75_c00488{left:264.450000px;}
.x55_c00488{left:266.400000px;}
.x2e_c00488{left:267.450000px;}
.x44_c00488{left:270.000000px;}
.x28_c00488{left:272.100000px;}
.x22_c00488{left:273.600000px;}
.x1a_c00488{left:274.650000px;}
.x4f_c00488{left:277.200000px;}
.x33_c00488{left:278.850000px;}
.x60_c00488{left:281.550000px;}
.x96_c00488{left:283.650000px;}
.x29_c00488{left:285.450000px;}
.x65_c00488{left:287.100000px;}
.x9f_c00488{left:288.750000px;}
.x23_c00488{left:290.550000px;}
.x45_c00488{left:293.400000px;}
.x6e_c00488{left:295.350000px;}
.x56_c00488{left:296.700000px;}
.x40_c00488{left:299.250000px;}
.x2a_c00488{left:301.350000px;}
.x76_c00488{left:303.000000px;}
.xa0_c00488{left:307.800000px;}
.x1b_c00488{left:308.850000px;}
.x63_c00488{left:310.800000px;}
.x58_c00488{left:312.900000px;}
.x86_c00488{left:314.400000px;}
.x24_c00488{left:316.050000px;}
.x47_c00488{left:317.850000px;}
.x34_c00488{left:320.250000px;}
.x8d_c00488{left:325.800000px;}
.x50_c00488{left:327.900000px;}
.x25_c00488{left:328.950000px;}
.x7a_c00488{left:330.000000px;}
.x77_c00488{left:332.550000px;}
.x4_c00488{left:334.050000px;}
.x3a_c00488{left:335.100000px;}
.x94_c00488{left:336.900000px;}
.x48_c00488{left:339.450000px;}
.x1c_c00488{left:341.250000px;}
.x82_c00488{left:343.950000px;}
.x5c_c00488{left:345.600000px;}
.x4d_c00488{left:347.400000px;}
.x41_c00488{left:349.650000px;}
.x2b_c00488{left:351.000000px;}
.xa3_c00488{left:353.850000px;}
.x78_c00488{left:354.900000px;}
.x3b_c00488{left:357.600000px;}
.xc_c00488{left:359.250000px;}
.x68_c00488{left:361.650000px;}
.x6f_c00488{left:362.700000px;}
.x51_c00488{left:363.900000px;}
.x83_c00488{left:365.250000px;}
.x61_c00488{left:366.600000px;}
.x66_c00488{left:368.850000px;}
.x7c_c00488{left:369.900000px;}
.x1d_c00488{left:372.600000px;}
.x49_c00488{left:373.950000px;}
.x5_c00488{left:375.750000px;}
.x91_c00488{left:378.000000px;}
.x69_c00488{left:380.250000px;}
.xa4_c00488{left:382.650000px;}
.x72_c00488{left:384.150000px;}
.x2c_c00488{left:385.950000px;}
.x87_c00488{left:388.200000px;}
.xd_c00488{left:389.550000px;}
.x59_c00488{left:391.050000px;}
.x9a_c00488{left:392.850000px;}
.x3c_c00488{left:394.350000px;}
.x52_c00488{left:396.000000px;}
.x5d_c00488{left:398.550000px;}
.x6a_c00488{left:400.050000px;}
.xe_c00488{left:401.400000px;}
.x6_c00488{left:402.750000px;}
.x64_c00488{left:404.100000px;}
.x9b_c00488{left:405.450000px;}
.x1e_c00488{left:407.550000px;}
.x89_c00488{left:408.600000px;}
.x35_c00488{left:410.250000px;}
.x70_c00488{left:411.600000px;}
.x4a_c00488{left:414.300000px;}
.x5a_c00488{left:416.550000px;}
.x84_c00488{left:418.650000px;}
.x8e_c00488{left:420.750000px;}
.x4e_c00488{left:421.950000px;}
.xf_c00488{left:424.500000px;}
.x67_c00488{left:426.150000px;}
.x62_c00488{left:427.500000px;}
.x6b_c00488{left:429.150000px;}
.x4b_c00488{left:430.800000px;}
.x71_c00488{left:433.500000px;}
.x5e_c00488{left:437.100000px;}
.x1f_c00488{left:438.150000px;}
.x36_c00488{left:439.800000px;}
.x8f_c00488{left:442.050000px;}
.x3d_c00488{left:444.450000px;}
.x7b_c00488{left:449.100000px;}
.x85_c00488{left:456.150000px;}
.x88_c00488{left:460.650000px;}
.x10_c00488{left:462.300000px;}
.x7_c00488{left:469.350000px;}
.x1_c00488{left:472.350000px;}
.x115_c00488{left:481.800000px;}
.xf8_c00488{left:483.150000px;}
.xa5_c00488{left:490.650000px;}
.x8_c00488{left:495.600000px;}
.x103_c00488{left:497.550000px;}
.x11_c00488{left:499.350000px;}
.x116_c00488{left:501.300000px;}
.x11e_c00488{left:503.100000px;}
.xf9_c00488{left:511.200000px;}
.x10b_c00488{left:512.700000px;}
.x12_c00488{left:518.100000px;}
.x121_c00488{left:519.300000px;}
.x111_c00488{left:523.500000px;}
.x104_c00488{left:526.350000px;}
.x11a_c00488{left:531.750000px;}
.x123_c00488{left:533.550000px;}
.x109_c00488{left:537.150000px;}
.x11f_c00488{left:538.350000px;}
.x105_c00488{left:539.700000px;}
.x10c_c00488{left:545.850000px;}
.x11b_c00488{left:547.950000px;}
.xff_c00488{left:549.000000px;}
.x10e_c00488{left:551.100000px;}
.x120_c00488{left:553.050000px;}
.xfa_c00488{left:555.150000px;}
.x13_c00488{left:557.400000px;}
.xf6_c00488{left:558.750000px;}
.xef_c00488{left:559.800000px;}
.xe4_c00488{left:561.300000px;}
.xd7_c00488{left:562.350000px;}
.xcd_c00488{left:563.400000px;}
.xc5_c00488{left:564.600000px;}
.xa6_c00488{left:566.250000px;}
.xf4_c00488{left:570.000000px;}
.x14_c00488{left:571.050000px;}
.xea_c00488{left:572.850000px;}
.xda_c00488{left:573.900000px;}
.xd1_c00488{left:575.400000px;}
.x9_c00488{left:576.900000px;}
.x11c_c00488{left:579.300000px;}
.x112_c00488{left:584.700000px;}
.x106_c00488{left:585.750000px;}
.x117_c00488{left:587.400000px;}
.x122_c00488{left:590.250000px;}
.xfb_c00488{left:591.600000px;}
.x10f_c00488{left:595.350000px;}
.xf1_c00488{left:596.550000px;}
.xeb_c00488{left:598.350000px;}
.x124_c00488{left:600.750000px;}
.xee_c00488{left:602.250000px;}
.xd4_c00488{left:606.900000px;}
.xdb_c00488{left:608.400000px;}
.xa7_c00488{left:610.200000px;}
.xd2_c00488{left:611.400000px;}
.xb9_c00488{left:612.600000px;}
.xa_c00488{left:613.650000px;}
.xe6_c00488{left:617.100000px;}
.xb1_c00488{left:619.050000px;}
.xbf_c00488{left:620.700000px;}
.xc8_c00488{left:621.750000px;}
.xd8_c00488{left:625.350000px;}
.xc6_c00488{left:628.050000px;}
.xb7_c00488{left:630.300000px;}
.xc0_c00488{left:632.550000px;}
.xe7_c00488{left:633.600000px;}
.xc3_c00488{left:635.400000px;}
.xad_c00488{left:637.200000px;}
.x100_c00488{left:638.700000px;}
.xa8_c00488{left:640.050000px;}
.xd5_c00488{left:643.650000px;}
.xe8_c00488{left:645.900000px;}
.xb2_c00488{left:647.100000px;}
.x125_c00488{left:648.300000px;}
.xf7_c00488{left:650.100000px;}
.xa9_c00488{left:651.900000px;}
.xc9_c00488{left:653.100000px;}
.xb8_c00488{left:654.750000px;}
.xdf_c00488{left:656.250000px;}
.xb3_c00488{left:659.400000px;}
.xba_c00488{left:660.450000px;}
.xce_c00488{left:662.850000px;}
.xb_c00488{left:665.100000px;}
.xcc_c00488{left:666.900000px;}
.x101_c00488{left:669.300000px;}
.xc1_c00488{left:670.350000px;}
.xbb_c00488{left:672.750000px;}
.xc7_c00488{left:675.600000px;}
.xf2_c00488{left:677.550000px;}
.x113_c00488{left:680.850000px;}
.x10d_c00488{left:681.900000px;}
.xae_c00488{left:683.250000px;}
.x110_c00488{left:686.100000px;}
.xdd_c00488{left:688.950000px;}
.xed_c00488{left:692.400000px;}
.xaa_c00488{left:694.800000px;}
.xe0_c00488{left:697.350000px;}
.xb4_c00488{left:700.800000px;}
.xf0_c00488{left:703.050000px;}
.xec_c00488{left:708.600000px;}
.x126_c00488{left:710.250000px;}
.xf5_c00488{left:711.750000px;}
.xe9_c00488{left:713.250000px;}
.x11d_c00488{left:715.800000px;}
.xbc_c00488{left:717.450000px;}
.xd3_c00488{left:719.700000px;}
.xfc_c00488{left:721.800000px;}
.xf3_c00488{left:723.300000px;}
.xd9_c00488{left:724.350000px;}
.xab_c00488{left:725.700000px;}
.xe2_c00488{left:727.500000px;}
.xca_c00488{left:729.150000px;}
.x114_c00488{left:730.500000px;}
.xc2_c00488{left:732.300000px;}
.xe1_c00488{left:735.900000px;}
.xaf_c00488{left:739.350000px;}
.x118_c00488{left:741.450000px;}
.x127_c00488{left:742.650000px;}
.xb5_c00488{left:743.700000px;}
.x107_c00488{left:744.900000px;}
.xcf_c00488{left:747.900000px;}
.x10a_c00488{left:749.550000px;}
.xbd_c00488{left:751.350000px;}
.x119_c00488{left:758.400000px;}
.xcb_c00488{left:760.050000px;}
.xfd_c00488{left:763.950000px;}
.x102_c00488{left:765.150000px;}
.xd6_c00488{left:766.650000px;}
.xc4_c00488{left:769.200000px;}
.xe3_c00488{left:772.800000px;}
.xb0_c00488{left:774.600000px;}
.xe5_c00488{left:777.300000px;}
.xac_c00488{left:779.700000px;}
.xd0_c00488{left:781.350000px;}
.xb6_c00488{left:785.850000px;}
.xdc_c00488{left:788.700000px;}
.xfe_c00488{left:792.750000px;}
.x108_c00488{left:795.600000px;}
.xbe_c00488{left:797.400000px;}
.xde_c00488{left:799.200000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws1_c00488{word-spacing:-3.559934pt;}
.ws5_c00488{word-spacing:-2.555556pt;}
.ws8_c00488{word-spacing:0.000000pt;}
.ws0_c00488{word-spacing:2.888889pt;}
.ws2_c00488{word-spacing:3.607414pt;}
.ws3_c00488{word-spacing:5.444444pt;}
.ws7_c00488{word-spacing:5.938085pt;}
.ws4_c00488{word-spacing:9.147372pt;}
.ws6_c00488{word-spacing:330.666667pt;}
.fs3_c00488{font-size:32.000000pt;}
.fs2_c00488{font-size:37.333333pt;}
.fs0_c00488{font-size:53.333333pt;}
.fs1_c00488{font-size:58.666667pt;}
.y0_c00488{bottom:0.000000pt;}
.y60_c00488{bottom:145.600000pt;}
.y33_c00488{bottom:145.866667pt;}
.y32_c00488{bottom:156.133333pt;}
.y31_c00488{bottom:166.400000pt;}
.y30_c00488{bottom:176.666667pt;}
.y2f_c00488{bottom:186.933333pt;}
.y5f_c00488{bottom:187.200000pt;}
.y2e_c00488{bottom:197.200000pt;}
.y5e_c00488{bottom:197.466667pt;}
.y2d_c00488{bottom:207.466667pt;}
.y5d_c00488{bottom:207.733333pt;}
.y2c_c00488{bottom:217.733333pt;}
.y5c_c00488{bottom:218.266667pt;}
.y5b_c00488{bottom:228.133333pt;}
.y2b_c00488{bottom:228.266667pt;}
.y2a_c00488{bottom:238.533333pt;}
.y5a_c00488{bottom:238.666667pt;}
.y59_c00488{bottom:248.933333pt;}
.y29_c00488{bottom:249.066667pt;}
.y28_c00488{bottom:258.933333pt;}
.y58_c00488{bottom:259.200000pt;}
.y57_c00488{bottom:281.866667pt;}
.y27_c00488{bottom:282.800000pt;}
.y56_c00488{bottom:293.466667pt;}
.y26_c00488{bottom:295.866667pt;}
.y55_c00488{bottom:308.133333pt;}
.y25_c00488{bottom:308.933333pt;}
.y54_c00488{bottom:320.666667pt;}
.y24_c00488{bottom:321.733333pt;}
.y53_c00488{bottom:333.733333pt;}
.y23_c00488{bottom:334.533333pt;}
.y52_c00488{bottom:346.533333pt;}
.y22_c00488{bottom:347.600000pt;}
.y51_c00488{bottom:359.733333pt;}
.y21_c00488{bottom:360.666667pt;}
.y50_c00488{bottom:372.533333pt;}
.y20_c00488{bottom:373.200000pt;}
.y4f_c00488{bottom:385.333333pt;}
.y1f_c00488{bottom:386.000000pt;}
.y4e_c00488{bottom:398.400000pt;}
.y1e_c00488{bottom:399.466667pt;}
.y4d_c00488{bottom:411.200000pt;}
.y1d_c00488{bottom:412.266667pt;}
.y4c_c00488{bottom:424.266667pt;}
.y1c_c00488{bottom:425.066667pt;}
.y4b_c00488{bottom:436.800000pt;}
.y1b_c00488{bottom:438.133333pt;}
.y4a_c00488{bottom:450.533333pt;}
.y1a_c00488{bottom:451.200000pt;}
.y49_c00488{bottom:463.066667pt;}
.y19_c00488{bottom:464.000000pt;}
.y48_c00488{bottom:475.600000pt;}
.y18_c00488{bottom:476.533333pt;}
.y47_c00488{bottom:489.333333pt;}
.y17_c00488{bottom:489.600000pt;}
.y46_c00488{bottom:500.800000pt;}
.y16_c00488{bottom:503.066667pt;}
.y45_c00488{bottom:514.533333pt;}
.y15_c00488{bottom:515.866667pt;}
.y44_c00488{bottom:527.333333pt;}
.y14_c00488{bottom:528.933333pt;}
.y43_c00488{bottom:539.866667pt;}
.y13_c00488{bottom:542.133333pt;}
.y42_c00488{bottom:552.933333pt;}
.y12_c00488{bottom:554.933333pt;}
.y41_c00488{bottom:565.866667pt;}
.y11_c00488{bottom:568.133333pt;}
.y40_c00488{bottom:578.933333pt;}
.y10_c00488{bottom:581.200000pt;}
.y3f_c00488{bottom:591.600000pt;}
.yf_c00488{bottom:594.000000pt;}
.y3e_c00488{bottom:605.066667pt;}
.ye_c00488{bottom:607.066667pt;}
.y3d_c00488{bottom:617.600000pt;}
.yd_c00488{bottom:619.866667pt;}
.y3c_c00488{bottom:630.533333pt;}
.yc_c00488{bottom:632.666667pt;}
.y3b_c00488{bottom:643.600000pt;}
.yb_c00488{bottom:645.733333pt;}
.y3a_c00488{bottom:656.666667pt;}
.ya_c00488{bottom:658.666667pt;}
.y39_c00488{bottom:669.733333pt;}
.y9_c00488{bottom:671.466667pt;}
.y38_c00488{bottom:682.533333pt;}
.y8_c00488{bottom:684.533333pt;}
.y37_c00488{bottom:695.733333pt;}
.y7_c00488{bottom:697.333333pt;}
.y36_c00488{bottom:708.800000pt;}
.y6_c00488{bottom:710.400000pt;}
.y35_c00488{bottom:721.600000pt;}
.y5_c00488{bottom:725.866667pt;}
.y34_c00488{bottom:734.666667pt;}
.y4_c00488{bottom:735.733333pt;}
.y3_c00488{bottom:768.266667pt;}
.y2_c00488{bottom:804.800000pt;}
.y1_c00488{bottom:941.066667pt;}
.h5_c00488{height:32.000000pt;}
.h4_c00488{height:37.333333pt;}
.h2_c00488{height:53.333333pt;}
.h3_c00488{height:58.666667pt;}
.h1_c00488{height:1036.666667pt;}
.h0_c00488{height:1036.800049pt;}
.w0_c00488{width:818.559977pt;}
.w1_c00488{width:818.666667pt;}
.x0_c00488{left:0.000000pt;}
.x9c_c00488{left:122.933333pt;}
.x80_c00488{left:124.000000pt;}
.x6c_c00488{left:126.133333pt;}
.x42_c00488{left:128.400000pt;}
.x2f_c00488{left:130.266667pt;}
.x16_c00488{left:131.200000pt;}
.xa1_c00488{left:134.800000pt;}
.x97_c00488{left:138.266667pt;}
.x7d_c00488{left:139.866667pt;}
.x9d_c00488{left:148.533333pt;}
.x7e_c00488{left:150.133333pt;}
.x81_c00488{left:153.733333pt;}
.x8a_c00488{left:155.200000pt;}
.x3f_c00488{left:156.266667pt;}
.x30_c00488{left:157.333333pt;}
.x17_c00488{left:160.666667pt;}
.x92_c00488{left:161.600000pt;}
.x20_c00488{left:167.066667pt;}
.x7f_c00488{left:168.666667pt;}
.x2d_c00488{left:170.000000pt;}
.x8b_c00488{left:172.800000pt;}
.x95_c00488{left:173.733333pt;}
.x5f_c00488{left:174.666667pt;}
.x57_c00488{left:176.000000pt;}
.x26_c00488{left:181.066667pt;}
.x53_c00488{left:182.666667pt;}
.x43_c00488{left:183.733333pt;}
.x2_c00488{left:185.600000pt;}
.x74_c00488{left:187.066667pt;}
.x37_c00488{left:190.000000pt;}
.x6d_c00488{left:192.400000pt;}
.x31_c00488{left:193.466667pt;}
.x18_c00488{left:195.200000pt;}
.x38_c00488{left:198.266667pt;}
.x9e_c00488{left:199.466667pt;}
.x8c_c00488{left:200.666667pt;}
.x21_c00488{left:202.266667pt;}
.x4c_c00488{left:203.866667pt;}
.x3e_c00488{left:205.600000pt;}
.x46_c00488{left:208.266667pt;}
.x90_c00488{left:210.933333pt;}
.x93_c00488{left:213.066667pt;}
.x27_c00488{left:214.400000pt;}
.xa2_c00488{left:215.733333pt;}
.x98_c00488{left:216.666667pt;}
.x3_c00488{left:217.600000pt;}
.x5b_c00488{left:218.933333pt;}
.x79_c00488{left:222.000000pt;}
.x32_c00488{left:223.200000pt;}
.x19_c00488{left:224.933333pt;}
.x99_c00488{left:226.266667pt;}
.x54_c00488{left:228.133333pt;}
.x39_c00488{left:229.466667pt;}
.x73_c00488{left:232.533333pt;}
.x15_c00488{left:233.866667pt;}
.x75_c00488{left:235.066667pt;}
.x55_c00488{left:236.800000pt;}
.x2e_c00488{left:237.733333pt;}
.x44_c00488{left:240.000000pt;}
.x28_c00488{left:241.866667pt;}
.x22_c00488{left:243.200000pt;}
.x1a_c00488{left:244.133333pt;}
.x4f_c00488{left:246.400000pt;}
.x33_c00488{left:247.866667pt;}
.x60_c00488{left:250.266667pt;}
.x96_c00488{left:252.133333pt;}
.x29_c00488{left:253.733333pt;}
.x65_c00488{left:255.200000pt;}
.x9f_c00488{left:256.666667pt;}
.x23_c00488{left:258.266667pt;}
.x45_c00488{left:260.800000pt;}
.x6e_c00488{left:262.533333pt;}
.x56_c00488{left:263.733333pt;}
.x40_c00488{left:266.000000pt;}
.x2a_c00488{left:267.866667pt;}
.x76_c00488{left:269.333333pt;}
.xa0_c00488{left:273.600000pt;}
.x1b_c00488{left:274.533333pt;}
.x63_c00488{left:276.266667pt;}
.x58_c00488{left:278.133333pt;}
.x86_c00488{left:279.466667pt;}
.x24_c00488{left:280.933333pt;}
.x47_c00488{left:282.533333pt;}
.x34_c00488{left:284.666667pt;}
.x8d_c00488{left:289.600000pt;}
.x50_c00488{left:291.466667pt;}
.x25_c00488{left:292.400000pt;}
.x7a_c00488{left:293.333333pt;}
.x77_c00488{left:295.600000pt;}
.x4_c00488{left:296.933333pt;}
.x3a_c00488{left:297.866667pt;}
.x94_c00488{left:299.466667pt;}
.x48_c00488{left:301.733333pt;}
.x1c_c00488{left:303.333333pt;}
.x82_c00488{left:305.733333pt;}
.x5c_c00488{left:307.200000pt;}
.x4d_c00488{left:308.800000pt;}
.x41_c00488{left:310.800000pt;}
.x2b_c00488{left:312.000000pt;}
.xa3_c00488{left:314.533333pt;}
.x78_c00488{left:315.466667pt;}
.x3b_c00488{left:317.866667pt;}
.xc_c00488{left:319.333333pt;}
.x68_c00488{left:321.466667pt;}
.x6f_c00488{left:322.400000pt;}
.x51_c00488{left:323.466667pt;}
.x83_c00488{left:324.666667pt;}
.x61_c00488{left:325.866667pt;}
.x66_c00488{left:327.866667pt;}
.x7c_c00488{left:328.800000pt;}
.x1d_c00488{left:331.200000pt;}
.x49_c00488{left:332.400000pt;}
.x5_c00488{left:334.000000pt;}
.x91_c00488{left:336.000000pt;}
.x69_c00488{left:338.000000pt;}
.xa4_c00488{left:340.133333pt;}
.x72_c00488{left:341.466667pt;}
.x2c_c00488{left:343.066667pt;}
.x87_c00488{left:345.066667pt;}
.xd_c00488{left:346.266667pt;}
.x59_c00488{left:347.600000pt;}
.x9a_c00488{left:349.200000pt;}
.x3c_c00488{left:350.533333pt;}
.x52_c00488{left:352.000000pt;}
.x5d_c00488{left:354.266667pt;}
.x6a_c00488{left:355.600000pt;}
.xe_c00488{left:356.800000pt;}
.x6_c00488{left:358.000000pt;}
.x64_c00488{left:359.200000pt;}
.x9b_c00488{left:360.400000pt;}
.x1e_c00488{left:362.266667pt;}
.x89_c00488{left:363.200000pt;}
.x35_c00488{left:364.666667pt;}
.x70_c00488{left:365.866667pt;}
.x4a_c00488{left:368.266667pt;}
.x5a_c00488{left:370.266667pt;}
.x84_c00488{left:372.133333pt;}
.x8e_c00488{left:374.000000pt;}
.x4e_c00488{left:375.066667pt;}
.xf_c00488{left:377.333333pt;}
.x67_c00488{left:378.800000pt;}
.x62_c00488{left:380.000000pt;}
.x6b_c00488{left:381.466667pt;}
.x4b_c00488{left:382.933333pt;}
.x71_c00488{left:385.333333pt;}
.x5e_c00488{left:388.533333pt;}
.x1f_c00488{left:389.466667pt;}
.x36_c00488{left:390.933333pt;}
.x8f_c00488{left:392.933333pt;}
.x3d_c00488{left:395.066667pt;}
.x7b_c00488{left:399.200000pt;}
.x85_c00488{left:405.466667pt;}
.x88_c00488{left:409.466667pt;}
.x10_c00488{left:410.933333pt;}
.x7_c00488{left:417.200000pt;}
.x1_c00488{left:419.866667pt;}
.x115_c00488{left:428.266667pt;}
.xf8_c00488{left:429.466667pt;}
.xa5_c00488{left:436.133333pt;}
.x8_c00488{left:440.533333pt;}
.x103_c00488{left:442.266667pt;}
.x11_c00488{left:443.866667pt;}
.x116_c00488{left:445.600000pt;}
.x11e_c00488{left:447.200000pt;}
.xf9_c00488{left:454.400000pt;}
.x10b_c00488{left:455.733333pt;}
.x12_c00488{left:460.533333pt;}
.x121_c00488{left:461.600000pt;}
.x111_c00488{left:465.333333pt;}
.x104_c00488{left:467.866667pt;}
.x11a_c00488{left:472.666667pt;}
.x123_c00488{left:474.266667pt;}
.x109_c00488{left:477.466667pt;}
.x11f_c00488{left:478.533333pt;}
.x105_c00488{left:479.733333pt;}
.x10c_c00488{left:485.200000pt;}
.x11b_c00488{left:487.066667pt;}
.xff_c00488{left:488.000000pt;}
.x10e_c00488{left:489.866667pt;}
.x120_c00488{left:491.600000pt;}
.xfa_c00488{left:493.466667pt;}
.x13_c00488{left:495.466667pt;}
.xf6_c00488{left:496.666667pt;}
.xef_c00488{left:497.600000pt;}
.xe4_c00488{left:498.933333pt;}
.xd7_c00488{left:499.866667pt;}
.xcd_c00488{left:500.800000pt;}
.xc5_c00488{left:501.866667pt;}
.xa6_c00488{left:503.333333pt;}
.xf4_c00488{left:506.666667pt;}
.x14_c00488{left:507.600000pt;}
.xea_c00488{left:509.200000pt;}
.xda_c00488{left:510.133333pt;}
.xd1_c00488{left:511.466667pt;}
.x9_c00488{left:512.800000pt;}
.x11c_c00488{left:514.933333pt;}
.x112_c00488{left:519.733333pt;}
.x106_c00488{left:520.666667pt;}
.x117_c00488{left:522.133333pt;}
.x122_c00488{left:524.666667pt;}
.xfb_c00488{left:525.866667pt;}
.x10f_c00488{left:529.200000pt;}
.xf1_c00488{left:530.266667pt;}
.xeb_c00488{left:531.866667pt;}
.x124_c00488{left:534.000000pt;}
.xee_c00488{left:535.333333pt;}
.xd4_c00488{left:539.466667pt;}
.xdb_c00488{left:540.800000pt;}
.xa7_c00488{left:542.400000pt;}
.xd2_c00488{left:543.466667pt;}
.xb9_c00488{left:544.533333pt;}
.xa_c00488{left:545.466667pt;}
.xe6_c00488{left:548.533333pt;}
.xb1_c00488{left:550.266667pt;}
.xbf_c00488{left:551.733333pt;}
.xc8_c00488{left:552.666667pt;}
.xd8_c00488{left:555.866667pt;}
.xc6_c00488{left:558.266667pt;}
.xb7_c00488{left:560.266667pt;}
.xc0_c00488{left:562.266667pt;}
.xe7_c00488{left:563.200000pt;}
.xc3_c00488{left:564.800000pt;}
.xad_c00488{left:566.400000pt;}
.x100_c00488{left:567.733333pt;}
.xa8_c00488{left:568.933333pt;}
.xd5_c00488{left:572.133333pt;}
.xe8_c00488{left:574.133333pt;}
.xb2_c00488{left:575.200000pt;}
.x125_c00488{left:576.266667pt;}
.xf7_c00488{left:577.866667pt;}
.xa9_c00488{left:579.466667pt;}
.xc9_c00488{left:580.533333pt;}
.xb8_c00488{left:582.000000pt;}
.xdf_c00488{left:583.333333pt;}
.xb3_c00488{left:586.133333pt;}
.xba_c00488{left:587.066667pt;}
.xce_c00488{left:589.200000pt;}
.xb_c00488{left:591.200000pt;}
.xcc_c00488{left:592.800000pt;}
.x101_c00488{left:594.933333pt;}
.xc1_c00488{left:595.866667pt;}
.xbb_c00488{left:598.000000pt;}
.xc7_c00488{left:600.533333pt;}
.xf2_c00488{left:602.266667pt;}
.x113_c00488{left:605.200000pt;}
.x10d_c00488{left:606.133333pt;}
.xae_c00488{left:607.333333pt;}
.x110_c00488{left:609.866667pt;}
.xdd_c00488{left:612.400000pt;}
.xed_c00488{left:615.466667pt;}
.xaa_c00488{left:617.600000pt;}
.xe0_c00488{left:619.866667pt;}
.xb4_c00488{left:622.933333pt;}
.xf0_c00488{left:624.933333pt;}
.xec_c00488{left:629.866667pt;}
.x126_c00488{left:631.333333pt;}
.xf5_c00488{left:632.666667pt;}
.xe9_c00488{left:634.000000pt;}
.x11d_c00488{left:636.266667pt;}
.xbc_c00488{left:637.733333pt;}
.xd3_c00488{left:639.733333pt;}
.xfc_c00488{left:641.600000pt;}
.xf3_c00488{left:642.933333pt;}
.xd9_c00488{left:643.866667pt;}
.xab_c00488{left:645.066667pt;}
.xe2_c00488{left:646.666667pt;}
.xca_c00488{left:648.133333pt;}
.x114_c00488{left:649.333333pt;}
.xc2_c00488{left:650.933333pt;}
.xe1_c00488{left:654.133333pt;}
.xaf_c00488{left:657.200000pt;}
.x118_c00488{left:659.066667pt;}
.x127_c00488{left:660.133333pt;}
.xb5_c00488{left:661.066667pt;}
.x107_c00488{left:662.133333pt;}
.xcf_c00488{left:664.800000pt;}
.x10a_c00488{left:666.266667pt;}
.xbd_c00488{left:667.866667pt;}
.x119_c00488{left:674.133333pt;}
.xcb_c00488{left:675.600000pt;}
.xfd_c00488{left:679.066667pt;}
.x102_c00488{left:680.133333pt;}
.xd6_c00488{left:681.466667pt;}
.xc4_c00488{left:683.733333pt;}
.xe3_c00488{left:686.933333pt;}
.xb0_c00488{left:688.533333pt;}
.xe5_c00488{left:690.933333pt;}
.xac_c00488{left:693.066667pt;}
.xd0_c00488{left:694.533333pt;}
.xb6_c00488{left:698.533333pt;}
.xdc_c00488{left:701.066667pt;}
.xfe_c00488{left:704.666667pt;}
.x108_c00488{left:707.200000pt;}
.xbe_c00488{left:708.800000pt;}
.xde_c00488{left:710.400000pt;}
}





/* 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_c00489 {
    display:none;
  }
  .loading-indicator_c00489.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00489 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_c00489 { 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_c00489" -> "#page-container .classname_c00489")
 */
.pf_c00489 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00489 { /* 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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00489 { /* 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_c00489 { /* 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_c00489 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00489 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00489 {overflow:visible;}
  }
}
.c_c00489 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00489 { /* 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_c00489:after { /* webkit #35443 */
  content: '';
}
.t_c00489:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00489 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 */
}
.__c00489 { /* 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_c00489 { /* info for Javascript */
  display:none;
}
.l_c00489 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00489 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00489 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00489: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_c00489 {
    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_c00489.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00489.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_c00489 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00489{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00489;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.000000;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;}
.mc7_c00489{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m13_c00489{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mca_c00489{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m76_c00489{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00489{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m38_c00489{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00489{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m69_c00489{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00489{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m65_c00489{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m91_c00489{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m92_c00489{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00489{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m46_c00489{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m10_c00489{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m18_c00489{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m63_c00489{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00489{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m87_c00489{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.md_c00489{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00489{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m17_c00489{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m98_c00489{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00489{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m71_c00489{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m88_c00489{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mab_c00489{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m33_c00489{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00489{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00489{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m77_c00489{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m5_c00489{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m68_c00489{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m84_c00489{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00489{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00489{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m66_c00489{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m86_c00489{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m58_c00489{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00489{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00489{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m53_c00489{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00489{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00489{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m52_c00489{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00489{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00489{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00489{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m34_c00489{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00489{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00489{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m75_c00489{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m36_c00489{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00489{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mb_c00489{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m28_c00489{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.maa_c00489{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.me_c00489{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00489{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00489{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00489{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m39_c00489{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00489{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.ma_c00489{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m50_c00489{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m99_c00489{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m25_c00489{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00489{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m55_c00489{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00489{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00489{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.maf_c00489{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00489{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00489{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22_c00489{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00489{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00489{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00489{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m54_c00489{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m27_c00489{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m83_c00489{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00489{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00489{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m26_c00489{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00489{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00489{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc_c00489{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m74_c00489{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00489{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m67_c00489{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00489{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m59_c00489{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m90_c00489{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00489{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m23_c00489{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.mf_c00489{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00489{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00489{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00489{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00489{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m79_c00489{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m12_c00489{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m51_c00489{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mad_c00489{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m42_c00489{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m56_c00489{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m48_c00489{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m14_c00489{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m61_c00489{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00489{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m47_c00489{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m24_c00489{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m57_c00489{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00489{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00489{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m72_c00489{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m82_c00489{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00489{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00489{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00489{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00489{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m29_c00489{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m78_c00489{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00489{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m20_c00489{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00489{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m21_c00489{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00489{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00489{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00489{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00489{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m85_c00489{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00489{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m41_c00489{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m16_c00489{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00489{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00489{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m80_c00489{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m73_c00489{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00489{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00489{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m64_c00489{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00489{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mae_c00489{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m43_c00489{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m1_c00489{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m32_c00489{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00489{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00489{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00489{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00489{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m11_c00489{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00489{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00489{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mba_c00489{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00489{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m62_c00489{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00489{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00489{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00489{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00489{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m45_c00489{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m60_c00489{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m97_c00489{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m44_c00489{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.m95_c00489{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00489{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m94_c00489{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m70_c00489{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00489{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00489{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00489{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m89_c00489{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m49_c00489{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mac_c00489{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00489{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m35_c00489{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m93_c00489{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m96_c00489{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m81_c00489{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00489{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00489{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00489{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00489{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00489{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m15_c00489{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00489{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m19_c00489{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m31_c00489{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00489{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00489{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m30_c00489{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m37_c00489{transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00489{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m40_c00489{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m9_c00489{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00489{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00489{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00489{vertical-align:0.000000px;}
.ls0_c00489{letter-spacing:0.000000px;}
.sc__c00489{text-shadow:none;}
.sc0_c00489{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__c00489{-webkit-text-stroke:0px transparent;}
.sc0_c00489{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00489{word-spacing:0.000000px;}
.ws2_c00489{word-spacing:0.050505px;}
.ws1_c00489{word-spacing:1.375000px;}
.ws3_c00489{word-spacing:17.753086px;}
.ws0_c00489{word-spacing:19.500000px;}
.fc0_c00489{color:transparent;}
.fs0_c00489{font-size:42.000000px;}
.fs1_c00489{font-size:66.000000px;}
.y0_c00489{bottom:0.000000px;}
.y73_c00489{bottom:134.250000px;}
.y72_c00489{bottom:153.600000px;}
.y3d_c00489{bottom:156.300000px;}
.y71_c00489{bottom:168.300000px;}
.y3c_c00489{bottom:170.700000px;}
.y70_c00489{bottom:183.000000px;}
.y3b_c00489{bottom:185.100000px;}
.y6f_c00489{bottom:197.400000px;}
.y3a_c00489{bottom:199.500000px;}
.y6e_c00489{bottom:211.800000px;}
.y39_c00489{bottom:213.900000px;}
.y6d_c00489{bottom:226.500000px;}
.y38_c00489{bottom:228.600000px;}
.y6c_c00489{bottom:240.900000px;}
.y37_c00489{bottom:243.300000px;}
.y6b_c00489{bottom:255.300000px;}
.y36_c00489{bottom:258.450000px;}
.y6a_c00489{bottom:270.000000px;}
.y35_c00489{bottom:272.550000px;}
.y69_c00489{bottom:284.400000px;}
.y34_c00489{bottom:286.650000px;}
.y68_c00489{bottom:299.100000px;}
.y33_c00489{bottom:301.350000px;}
.y67_c00489{bottom:313.500000px;}
.y32_c00489{bottom:316.050000px;}
.y66_c00489{bottom:328.350000px;}
.y31_c00489{bottom:330.450000px;}
.y65_c00489{bottom:342.450000px;}
.y30_c00489{bottom:345.150000px;}
.y64_c00489{bottom:357.150000px;}
.y2f_c00489{bottom:359.250000px;}
.y63_c00489{bottom:371.850000px;}
.y2e_c00489{bottom:379.050000px;}
.y62_c00489{bottom:386.250000px;}
.y2d_c00489{bottom:389.100000px;}
.y61_c00489{bottom:400.650000px;}
.y2c_c00489{bottom:403.200000px;}
.y60_c00489{bottom:415.500000px;}
.y2b_c00489{bottom:418.050000px;}
.y5f_c00489{bottom:430.200000px;}
.y2a_c00489{bottom:432.450000px;}
.y29_c00489{bottom:447.150000px;}
.y28_c00489{bottom:461.250000px;}
.y5e_c00489{bottom:474.150000px;}
.y27_c00489{bottom:475.650000px;}
.y5d_c00489{bottom:489.600000px;}
.y26_c00489{bottom:489.750000px;}
.y5c_c00489{bottom:503.700000px;}
.y25_c00489{bottom:504.450000px;}
.y5b_c00489{bottom:518.400000px;}
.y24_c00489{bottom:519.150000px;}
.y5a_c00489{bottom:532.800000px;}
.y23_c00489{bottom:533.550000px;}
.y59_c00489{bottom:547.200000px;}
.y22_c00489{bottom:547.950000px;}
.y58_c00489{bottom:561.900000px;}
.y21_c00489{bottom:562.350000px;}
.y57_c00489{bottom:576.300000px;}
.y20_c00489{bottom:576.750000px;}
.y56_c00489{bottom:591.150000px;}
.y1f_c00489{bottom:591.450000px;}
.y55_c00489{bottom:605.550000px;}
.y1e_c00489{bottom:605.850000px;}
.y54_c00489{bottom:620.250000px;}
.y1d_c00489{bottom:620.700000px;}
.y1c_c00489{bottom:635.100000px;}
.y53_c00489{bottom:648.750000px;}
.y1b_c00489{bottom:649.800000px;}
.y52_c00489{bottom:663.450000px;}
.y1a_c00489{bottom:664.200000px;}
.y51_c00489{bottom:678.600000px;}
.y19_c00489{bottom:678.900000px;}
.y50_c00489{bottom:692.700000px;}
.y18_c00489{bottom:693.300000px;}
.y4f_c00489{bottom:707.400000px;}
.y17_c00489{bottom:707.700000px;}
.y16_c00489{bottom:721.800000px;}
.y4e_c00489{bottom:722.550000px;}
.y15_c00489{bottom:736.500000px;}
.y4d_c00489{bottom:736.950000px;}
.y14_c00489{bottom:750.900000px;}
.y4c_c00489{bottom:751.500000px;}
.y13_c00489{bottom:765.900000px;}
.y4b_c00489{bottom:766.200000px;}
.y12_c00489{bottom:780.300000px;}
.y4a_c00489{bottom:780.600000px;}
.y11_c00489{bottom:795.000000px;}
.y49_c00489{bottom:795.300000px;}
.y10_c00489{bottom:809.700000px;}
.yf_c00489{bottom:824.100000px;}
.y48_c00489{bottom:824.250000px;}
.ye_c00489{bottom:838.500000px;}
.y47_c00489{bottom:838.950000px;}
.yd_c00489{bottom:852.900000px;}
.y46_c00489{bottom:853.050000px;}
.yc_c00489{bottom:867.600000px;}
.y45_c00489{bottom:867.750000px;}
.yb_c00489{bottom:882.000000px;}
.y44_c00489{bottom:882.450000px;}
.y43_c00489{bottom:896.850000px;}
.ya_c00489{bottom:897.000000px;}
.y9_c00489{bottom:911.100000px;}
.y42_c00489{bottom:911.250000px;}
.y8_c00489{bottom:925.650000px;}
.y7_c00489{bottom:940.350000px;}
.y6_c00489{bottom:954.900000px;}
.y41_c00489{bottom:955.050000px;}
.y40_c00489{bottom:969.150000px;}
.y5_c00489{bottom:969.600000px;}
.y3f_c00489{bottom:983.550000px;}
.y4_c00489{bottom:984.000000px;}
.y3e_c00489{bottom:997.950000px;}
.y3_c00489{bottom:998.400000px;}
.y2_c00489{bottom:1013.100000px;}
.y1_c00489{bottom:1047.900000px;}
.h2_c00489{height:42.000000px;}
.h3_c00489{height:66.000000px;}
.h1_c00489{height:1166.250000px;}
.h0_c00489{height:1166.400056px;}
.w0_c00489{width:920.879975px;}
.w1_c00489{width:921.000000px;}
.x0_c00489{left:0.000000px;}
.x8_c00489{left:97.500000px;}
.x7c_c00489{left:135.600000px;}
.x69_c00489{left:142.650000px;}
.x6b_c00489{left:143.700000px;}
.x73_c00489{left:144.750000px;}
.x80_c00489{left:147.150000px;}
.x6e_c00489{left:153.150000px;}
.x67_c00489{left:155.100000px;}
.x65_c00489{left:156.450000px;}
.x15_c00489{left:167.700000px;}
.x9_c00489{left:169.200000px;}
.x56_c00489{left:178.650000px;}
.x23_c00489{left:179.700000px;}
.x7e_c00489{left:181.200000px;}
.x7b_c00489{left:183.900000px;}
.x74_c00489{left:188.250000px;}
.x7d_c00489{left:189.900000px;}
.x81_c00489{left:191.100000px;}
.x78_c00489{left:195.450000px;}
.x47_c00489{left:197.550000px;}
.x6a_c00489{left:200.250000px;}
.x27_c00489{left:201.900000px;}
.x66_c00489{left:203.250000px;}
.x6f_c00489{left:204.300000px;}
.x52_c00489{left:206.400000px;}
.x1e_c00489{left:207.750000px;}
.x5c_c00489{left:209.250000px;}
.x2d_c00489{left:212.700000px;}
.xa_c00489{left:214.200000px;}
.x3e_c00489{left:216.750000px;}
.x1a_c00489{left:217.950000px;}
.x16_c00489{left:220.200000px;}
.x3a_c00489{left:223.500000px;}
.x10_c00489{left:225.000000px;}
.x30_c00489{left:226.050000px;}
.x24_c00489{left:227.100000px;}
.x28_c00489{left:228.900000px;}
.x17_c00489{left:229.950000px;}
.x59_c00489{left:231.900000px;}
.x2e_c00489{left:233.250000px;}
.x1f_c00489{left:234.750000px;}
.x48_c00489{left:236.850000px;}
.x79_c00489{left:238.950000px;}
.x4a_c00489{left:240.150000px;}
.xb_c00489{left:241.500000px;}
.x29_c00489{left:243.300000px;}
.x3f_c00489{left:244.500000px;}
.x85_c00489{left:245.700000px;}
.x20_c00489{left:247.050000px;}
.x5d_c00489{left:248.550000px;}
.x37_c00489{left:250.500000px;}
.x31_c00489{left:252.750000px;}
.xc_c00489{left:253.800000px;}
.x11_c00489{left:255.600000px;}
.x1b_c00489{left:257.250000px;}
.x4e_c00489{left:259.950000px;}
.x43_c00489{left:261.600000px;}
.x5a_c00489{left:263.250000px;}
.x4d_c00489{left:264.300000px;}
.x32_c00489{left:265.650000px;}
.x12_c00489{left:267.900000px;}
.x35_c00489{left:272.100000px;}
.x7a_c00489{left:273.450000px;}
.x75_c00489{left:274.950000px;}
.x2f_c00489{left:280.350000px;}
.x18_c00489{left:281.400000px;}
.x36_c00489{left:285.750000px;}
.x49_c00489{left:288.000000px;}
.x64_c00489{left:289.050000px;}
.x1c_c00489{left:291.150000px;}
.x7f_c00489{left:293.400000px;}
.x44_c00489{left:294.750000px;}
.x3b_c00489{left:297.300000px;}
.x2a_c00489{left:298.350000px;}
.x50_c00489{left:301.800000px;}
.x6c_c00489{left:302.850000px;}
.x1_c00489{left:303.900000px;}
.x21_c00489{left:304.950000px;}
.x61_c00489{left:306.600000px;}
.x38_c00489{left:308.100000px;}
.xd_c00489{left:309.300000px;}
.x3c_c00489{left:311.400000px;}
.x5e_c00489{left:313.050000px;}
.x19_c00489{left:314.100000px;}
.x25_c00489{left:315.600000px;}
.x82_c00489{left:316.950000px;}
.x53_c00489{left:318.900000px;}
.x13_c00489{left:320.400000px;}
.x40_c00489{left:321.900000px;}
.x83_c00489{left:325.200000px;}
.x39_c00489{left:326.400000px;}
.x5b_c00489{left:327.600000px;}
.x72_c00489{left:329.850000px;}
.x1d_c00489{left:332.250000px;}
.x6d_c00489{left:334.200000px;}
.x41_c00489{left:335.250000px;}
.x55_c00489{left:336.750000px;}
.x33_c00489{left:338.100000px;}
.x57_c00489{left:339.600000px;}
.x2b_c00489{left:341.250000px;}
.x77_c00489{left:342.750000px;}
.x5f_c00489{left:344.700000px;}
.x62_c00489{left:346.200000px;}
.x4b_c00489{left:349.650000px;}
.x51_c00489{left:351.450000px;}
.xe_c00489{left:353.550000px;}
.x76_c00489{left:355.200000px;}
.x14_c00489{left:358.500000px;}
.x3d_c00489{left:361.050000px;}
.x54_c00489{left:362.100000px;}
.x70_c00489{left:366.900000px;}
.x84_c00489{left:368.400000px;}
.x45_c00489{left:375.150000px;}
.x2_c00489{left:376.650000px;}
.x68_c00489{left:378.900000px;}
.x22_c00489{left:380.850000px;}
.x4c_c00489{left:382.350000px;}
.x42_c00489{left:385.350000px;}
.x58_c00489{left:386.400000px;}
.x71_c00489{left:388.800000px;}
.x2c_c00489{left:390.600000px;}
.x34_c00489{left:392.850000px;}
.x63_c00489{left:394.050000px;}
.x26_c00489{left:395.100000px;}
.xf_c00489{left:396.750000px;}
.x60_c00489{left:401.250000px;}
.x4f_c00489{left:405.150000px;}
.x3_c00489{left:406.500000px;}
.x46_c00489{left:411.450000px;}
.x4_c00489{left:426.300000px;}
.x86_c00489{left:439.950000px;}
.xe6_c00489{left:441.000000px;}
.xe7_c00489{left:475.500000px;}
.x5_c00489{left:477.450000px;}
.x93_c00489{left:478.500000px;}
.xfa_c00489{left:486.300000px;}
.xec_c00489{left:487.800000px;}
.x8d_c00489{left:489.150000px;}
.x6_c00489{left:497.550000px;}
.xbd_c00489{left:498.900000px;}
.xfc_c00489{left:500.850000px;}
.xfb_c00489{left:504.600000px;}
.xc4_c00489{left:510.300000px;}
.xb8_c00489{left:514.500000px;}
.x101_c00489{left:515.550000px;}
.x9e_c00489{left:517.350000px;}
.x90_c00489{left:518.700000px;}
.x9f_c00489{left:521.400000px;}
.xd9_c00489{left:522.600000px;}
.xf0_c00489{left:525.150000px;}
.xb9_c00489{left:527.550000px;}
.x87_c00489{left:529.200000px;}
.xe8_c00489{left:531.000000px;}
.xa3_c00489{left:532.500000px;}
.xfd_c00489{left:534.300000px;}
.x8e_c00489{left:536.700000px;}
.xc5_c00489{left:539.100000px;}
.xba_c00489{left:543.000000px;}
.xaf_c00489{left:544.200000px;}
.xbe_c00489{left:545.700000px;}
.x94_c00489{left:546.900000px;}
.xa0_c00489{left:550.200000px;}
.xac_c00489{left:554.550000px;}
.x88_c00489{left:556.500000px;}
.xb0_c00489{left:557.550000px;}
.xa8_c00489{left:558.900000px;}
.x103_c00489{left:559.950000px;}
.x91_c00489{left:561.150000px;}
.xf1_c00489{left:562.200000px;}
.xbb_c00489{left:564.300000px;}
.xca_c00489{left:565.500000px;}
.xf7_c00489{left:567.600000px;}
.x89_c00489{left:569.100000px;}
.xc8_c00489{left:570.900000px;}
.xdf_c00489{left:572.100000px;}
.xa4_c00489{left:573.150000px;}
.xda_c00489{left:574.500000px;}
.x8f_c00489{left:576.600000px;}
.x92_c00489{left:577.800000px;}
.x99_c00489{left:579.150000px;}
.xed_c00489{left:582.450000px;}
.xbf_c00489{left:584.250000px;}
.x95_c00489{left:588.600000px;}
.xb1_c00489{left:589.650000px;}
.xe1_c00489{left:591.300000px;}
.xc6_c00489{left:593.100000px;}
.xcb_c00489{left:595.050000px;}
.x104_c00489{left:598.800000px;}
.xd4_c00489{left:600.000000px;}
.x100_c00489{left:601.950000px;}
.xd2_c00489{left:603.300000px;}
.xc0_c00489{left:604.350000px;}
.xa1_c00489{left:606.000000px;}
.xcf_c00489{left:608.100000px;}
.xcc_c00489{left:610.200000px;}
.xa5_c00489{left:611.250000px;}
.xc9_c00489{left:615.600000px;}
.xa9_c00489{left:617.250000px;}
.x8a_c00489{left:620.550000px;}
.xb2_c00489{left:623.550000px;}
.xe9_c00489{left:625.050000px;}
.xf4_c00489{left:629.700000px;}
.x9a_c00489{left:633.450000px;}
.xf5_c00489{left:635.100000px;}
.xbc_c00489{left:637.350000px;}
.xee_c00489{left:638.550000px;}
.xc1_c00489{left:642.150000px;}
.xc7_c00489{left:645.000000px;}
.xe0_c00489{left:646.800000px;}
.xad_c00489{left:648.450000px;}
.x105_c00489{left:649.500000px;}
.x96_c00489{left:651.600000px;}
.x8b_c00489{left:652.950000px;}
.xb3_c00489{left:654.900000px;}
.xa2_c00489{left:657.450000px;}
.xdd_c00489{left:659.550000px;}
.xe3_c00489{left:661.800000px;}
.xd0_c00489{left:663.900000px;}
.xa6_c00489{left:665.550000px;}
.xd5_c00489{left:668.400000px;}
.xaa_c00489{left:669.750000px;}
.xc2_c00489{left:672.750000px;}
.xcd_c00489{left:676.800000px;}
.xe2_c00489{left:677.850000px;}
.x9b_c00489{left:680.250000px;}
.xa7_c00489{left:681.450000px;}
.xd6_c00489{left:683.100000px;}
.xef_c00489{left:684.300000px;}
.x97_c00489{left:685.500000px;}
.xb7_c00489{left:687.900000px;}
.xf9_c00489{left:691.500000px;}
.xb4_c00489{left:693.000000px;}
.xf6_c00489{left:695.250000px;}
.x9c_c00489{left:696.750000px;}
.xe4_c00489{left:698.550000px;}
.x8c_c00489{left:700.050000px;}
.xd1_c00489{left:703.500000px;}
.xf8_c00489{left:704.700000px;}
.xf2_c00489{left:706.200000px;}
.xce_c00489{left:707.700000px;}
.xd7_c00489{left:709.050000px;}
.xde_c00489{left:711.000000px;}
.xf3_c00489{left:712.050000px;}
.xfe_c00489{left:713.250000px;}
.xdc_c00489{left:716.400000px;}
.xc3_c00489{left:717.750000px;}
.xae_c00489{left:718.950000px;}
.xea_c00489{left:723.750000px;}
.xdb_c00489{left:726.450000px;}
.xab_c00489{left:729.150000px;}
.xb5_c00489{left:731.100000px;}
.xd3_c00489{left:732.150000px;}
.x98_c00489{left:733.350000px;}
.xd8_c00489{left:736.050000px;}
.x9d_c00489{left:739.200000px;}
.x7_c00489{left:740.250000px;}
.xe5_c00489{left:741.450000px;}
.x102_c00489{left:743.550000px;}
.xeb_c00489{left:746.400000px;}
.xff_c00489{left:755.400000px;}
.xb6_c00489{left:759.600000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws4_c00489{word-spacing:0.000000pt;}
.ws2_c00489{word-spacing:0.044893pt;}
.ws1_c00489{word-spacing:1.222222pt;}
.ws3_c00489{word-spacing:15.780521pt;}
.ws0_c00489{word-spacing:17.333333pt;}
.fs0_c00489{font-size:37.333333pt;}
.fs1_c00489{font-size:58.666667pt;}
.y0_c00489{bottom:0.000000pt;}
.y73_c00489{bottom:119.333333pt;}
.y72_c00489{bottom:136.533333pt;}
.y3d_c00489{bottom:138.933333pt;}
.y71_c00489{bottom:149.600000pt;}
.y3c_c00489{bottom:151.733333pt;}
.y70_c00489{bottom:162.666667pt;}
.y3b_c00489{bottom:164.533333pt;}
.y6f_c00489{bottom:175.466667pt;}
.y3a_c00489{bottom:177.333333pt;}
.y6e_c00489{bottom:188.266667pt;}
.y39_c00489{bottom:190.133333pt;}
.y6d_c00489{bottom:201.333333pt;}
.y38_c00489{bottom:203.200000pt;}
.y6c_c00489{bottom:214.133333pt;}
.y37_c00489{bottom:216.266667pt;}
.y6b_c00489{bottom:226.933333pt;}
.y36_c00489{bottom:229.733333pt;}
.y6a_c00489{bottom:240.000000pt;}
.y35_c00489{bottom:242.266667pt;}
.y69_c00489{bottom:252.800000pt;}
.y34_c00489{bottom:254.800000pt;}
.y68_c00489{bottom:265.866667pt;}
.y33_c00489{bottom:267.866667pt;}
.y67_c00489{bottom:278.666667pt;}
.y32_c00489{bottom:280.933333pt;}
.y66_c00489{bottom:291.866667pt;}
.y31_c00489{bottom:293.733333pt;}
.y65_c00489{bottom:304.400000pt;}
.y30_c00489{bottom:306.800000pt;}
.y64_c00489{bottom:317.466667pt;}
.y2f_c00489{bottom:319.333333pt;}
.y63_c00489{bottom:330.533333pt;}
.y2e_c00489{bottom:336.933333pt;}
.y62_c00489{bottom:343.333333pt;}
.y2d_c00489{bottom:345.866667pt;}
.y61_c00489{bottom:356.133333pt;}
.y2c_c00489{bottom:358.400000pt;}
.y60_c00489{bottom:369.333333pt;}
.y2b_c00489{bottom:371.600000pt;}
.y5f_c00489{bottom:382.400000pt;}
.y2a_c00489{bottom:384.400000pt;}
.y29_c00489{bottom:397.466667pt;}
.y28_c00489{bottom:410.000000pt;}
.y5e_c00489{bottom:421.466667pt;}
.y27_c00489{bottom:422.800000pt;}
.y5d_c00489{bottom:435.200000pt;}
.y26_c00489{bottom:435.333333pt;}
.y5c_c00489{bottom:447.733333pt;}
.y25_c00489{bottom:448.400000pt;}
.y5b_c00489{bottom:460.800000pt;}
.y24_c00489{bottom:461.466667pt;}
.y5a_c00489{bottom:473.600000pt;}
.y23_c00489{bottom:474.266667pt;}
.y59_c00489{bottom:486.400000pt;}
.y22_c00489{bottom:487.066667pt;}
.y58_c00489{bottom:499.466667pt;}
.y21_c00489{bottom:499.866667pt;}
.y57_c00489{bottom:512.266667pt;}
.y20_c00489{bottom:512.666667pt;}
.y56_c00489{bottom:525.466667pt;}
.y1f_c00489{bottom:525.733333pt;}
.y55_c00489{bottom:538.266667pt;}
.y1e_c00489{bottom:538.533333pt;}
.y54_c00489{bottom:551.333333pt;}
.y1d_c00489{bottom:551.733333pt;}
.y1c_c00489{bottom:564.533333pt;}
.y53_c00489{bottom:576.666667pt;}
.y1b_c00489{bottom:577.600000pt;}
.y52_c00489{bottom:589.733333pt;}
.y1a_c00489{bottom:590.400000pt;}
.y51_c00489{bottom:603.200000pt;}
.y19_c00489{bottom:603.466667pt;}
.y50_c00489{bottom:615.733333pt;}
.y18_c00489{bottom:616.266667pt;}
.y4f_c00489{bottom:628.800000pt;}
.y17_c00489{bottom:629.066667pt;}
.y16_c00489{bottom:641.600000pt;}
.y4e_c00489{bottom:642.266667pt;}
.y15_c00489{bottom:654.666667pt;}
.y4d_c00489{bottom:655.066667pt;}
.y14_c00489{bottom:667.466667pt;}
.y4c_c00489{bottom:668.000000pt;}
.y13_c00489{bottom:680.800000pt;}
.y4b_c00489{bottom:681.066667pt;}
.y12_c00489{bottom:693.600000pt;}
.y4a_c00489{bottom:693.866667pt;}
.y11_c00489{bottom:706.666667pt;}
.y49_c00489{bottom:706.933333pt;}
.y10_c00489{bottom:719.733333pt;}
.yf_c00489{bottom:732.533333pt;}
.y48_c00489{bottom:732.666667pt;}
.ye_c00489{bottom:745.333333pt;}
.y47_c00489{bottom:745.733333pt;}
.yd_c00489{bottom:758.133333pt;}
.y46_c00489{bottom:758.266667pt;}
.yc_c00489{bottom:771.200000pt;}
.y45_c00489{bottom:771.333333pt;}
.yb_c00489{bottom:784.000000pt;}
.y44_c00489{bottom:784.400000pt;}
.y43_c00489{bottom:797.200000pt;}
.ya_c00489{bottom:797.333333pt;}
.y9_c00489{bottom:809.866667pt;}
.y42_c00489{bottom:810.000000pt;}
.y8_c00489{bottom:822.800000pt;}
.y7_c00489{bottom:835.866667pt;}
.y6_c00489{bottom:848.800000pt;}
.y41_c00489{bottom:848.933333pt;}
.y40_c00489{bottom:861.466667pt;}
.y5_c00489{bottom:861.866667pt;}
.y3f_c00489{bottom:874.266667pt;}
.y4_c00489{bottom:874.666667pt;}
.y3e_c00489{bottom:887.066667pt;}
.y3_c00489{bottom:887.466667pt;}
.y2_c00489{bottom:900.533333pt;}
.y1_c00489{bottom:931.466667pt;}
.h2_c00489{height:37.333333pt;}
.h3_c00489{height:58.666667pt;}
.h1_c00489{height:1036.666667pt;}
.h0_c00489{height:1036.800049pt;}
.w0_c00489{width:818.559977pt;}
.w1_c00489{width:818.666667pt;}
.x0_c00489{left:0.000000pt;}
.x8_c00489{left:86.666667pt;}
.x7c_c00489{left:120.533333pt;}
.x69_c00489{left:126.800000pt;}
.x6b_c00489{left:127.733333pt;}
.x73_c00489{left:128.666667pt;}
.x80_c00489{left:130.800000pt;}
.x6e_c00489{left:136.133333pt;}
.x67_c00489{left:137.866667pt;}
.x65_c00489{left:139.066667pt;}
.x15_c00489{left:149.066667pt;}
.x9_c00489{left:150.400000pt;}
.x56_c00489{left:158.800000pt;}
.x23_c00489{left:159.733333pt;}
.x7e_c00489{left:161.066667pt;}
.x7b_c00489{left:163.466667pt;}
.x74_c00489{left:167.333333pt;}
.x7d_c00489{left:168.800000pt;}
.x81_c00489{left:169.866667pt;}
.x78_c00489{left:173.733333pt;}
.x47_c00489{left:175.600000pt;}
.x6a_c00489{left:178.000000pt;}
.x27_c00489{left:179.466667pt;}
.x66_c00489{left:180.666667pt;}
.x6f_c00489{left:181.600000pt;}
.x52_c00489{left:183.466667pt;}
.x1e_c00489{left:184.666667pt;}
.x5c_c00489{left:186.000000pt;}
.x2d_c00489{left:189.066667pt;}
.xa_c00489{left:190.400000pt;}
.x3e_c00489{left:192.666667pt;}
.x1a_c00489{left:193.733333pt;}
.x16_c00489{left:195.733333pt;}
.x3a_c00489{left:198.666667pt;}
.x10_c00489{left:200.000000pt;}
.x30_c00489{left:200.933333pt;}
.x24_c00489{left:201.866667pt;}
.x28_c00489{left:203.466667pt;}
.x17_c00489{left:204.400000pt;}
.x59_c00489{left:206.133333pt;}
.x2e_c00489{left:207.333333pt;}
.x1f_c00489{left:208.666667pt;}
.x48_c00489{left:210.533333pt;}
.x79_c00489{left:212.400000pt;}
.x4a_c00489{left:213.466667pt;}
.xb_c00489{left:214.666667pt;}
.x29_c00489{left:216.266667pt;}
.x3f_c00489{left:217.333333pt;}
.x85_c00489{left:218.400000pt;}
.x20_c00489{left:219.600000pt;}
.x5d_c00489{left:220.933333pt;}
.x37_c00489{left:222.666667pt;}
.x31_c00489{left:224.666667pt;}
.xc_c00489{left:225.600000pt;}
.x11_c00489{left:227.200000pt;}
.x1b_c00489{left:228.666667pt;}
.x4e_c00489{left:231.066667pt;}
.x43_c00489{left:232.533333pt;}
.x5a_c00489{left:234.000000pt;}
.x4d_c00489{left:234.933333pt;}
.x32_c00489{left:236.133333pt;}
.x12_c00489{left:238.133333pt;}
.x35_c00489{left:241.866667pt;}
.x7a_c00489{left:243.066667pt;}
.x75_c00489{left:244.400000pt;}
.x2f_c00489{left:249.200000pt;}
.x18_c00489{left:250.133333pt;}
.x36_c00489{left:254.000000pt;}
.x49_c00489{left:256.000000pt;}
.x64_c00489{left:256.933333pt;}
.x1c_c00489{left:258.800000pt;}
.x7f_c00489{left:260.800000pt;}
.x44_c00489{left:262.000000pt;}
.x3b_c00489{left:264.266667pt;}
.x2a_c00489{left:265.200000pt;}
.x50_c00489{left:268.266667pt;}
.x6c_c00489{left:269.200000pt;}
.x1_c00489{left:270.133333pt;}
.x21_c00489{left:271.066667pt;}
.x61_c00489{left:272.533333pt;}
.x38_c00489{left:273.866667pt;}
.xd_c00489{left:274.933333pt;}
.x3c_c00489{left:276.800000pt;}
.x5e_c00489{left:278.266667pt;}
.x19_c00489{left:279.200000pt;}
.x25_c00489{left:280.533333pt;}
.x82_c00489{left:281.733333pt;}
.x53_c00489{left:283.466667pt;}
.x13_c00489{left:284.800000pt;}
.x40_c00489{left:286.133333pt;}
.x83_c00489{left:289.066667pt;}
.x39_c00489{left:290.133333pt;}
.x5b_c00489{left:291.200000pt;}
.x72_c00489{left:293.200000pt;}
.x1d_c00489{left:295.333333pt;}
.x6d_c00489{left:297.066667pt;}
.x41_c00489{left:298.000000pt;}
.x55_c00489{left:299.333333pt;}
.x33_c00489{left:300.533333pt;}
.x57_c00489{left:301.866667pt;}
.x2b_c00489{left:303.333333pt;}
.x77_c00489{left:304.666667pt;}
.x5f_c00489{left:306.400000pt;}
.x62_c00489{left:307.733333pt;}
.x4b_c00489{left:310.800000pt;}
.x51_c00489{left:312.400000pt;}
.xe_c00489{left:314.266667pt;}
.x76_c00489{left:315.733333pt;}
.x14_c00489{left:318.666667pt;}
.x3d_c00489{left:320.933333pt;}
.x54_c00489{left:321.866667pt;}
.x70_c00489{left:326.133333pt;}
.x84_c00489{left:327.466667pt;}
.x45_c00489{left:333.466667pt;}
.x2_c00489{left:334.800000pt;}
.x68_c00489{left:336.800000pt;}
.x22_c00489{left:338.533333pt;}
.x4c_c00489{left:339.866667pt;}
.x42_c00489{left:342.533333pt;}
.x58_c00489{left:343.466667pt;}
.x71_c00489{left:345.600000pt;}
.x2c_c00489{left:347.200000pt;}
.x34_c00489{left:349.200000pt;}
.x63_c00489{left:350.266667pt;}
.x26_c00489{left:351.200000pt;}
.xf_c00489{left:352.666667pt;}
.x60_c00489{left:356.666667pt;}
.x4f_c00489{left:360.133333pt;}
.x3_c00489{left:361.333333pt;}
.x46_c00489{left:365.733333pt;}
.x4_c00489{left:378.933333pt;}
.x86_c00489{left:391.066667pt;}
.xe6_c00489{left:392.000000pt;}
.xe7_c00489{left:422.666667pt;}
.x5_c00489{left:424.400000pt;}
.x93_c00489{left:425.333333pt;}
.xfa_c00489{left:432.266667pt;}
.xec_c00489{left:433.600000pt;}
.x8d_c00489{left:434.800000pt;}
.x6_c00489{left:442.266667pt;}
.xbd_c00489{left:443.466667pt;}
.xfc_c00489{left:445.200000pt;}
.xfb_c00489{left:448.533333pt;}
.xc4_c00489{left:453.600000pt;}
.xb8_c00489{left:457.333333pt;}
.x101_c00489{left:458.266667pt;}
.x9e_c00489{left:459.866667pt;}
.x90_c00489{left:461.066667pt;}
.x9f_c00489{left:463.466667pt;}
.xd9_c00489{left:464.533333pt;}
.xf0_c00489{left:466.800000pt;}
.xb9_c00489{left:468.933333pt;}
.x87_c00489{left:470.400000pt;}
.xe8_c00489{left:472.000000pt;}
.xa3_c00489{left:473.333333pt;}
.xfd_c00489{left:474.933333pt;}
.x8e_c00489{left:477.066667pt;}
.xc5_c00489{left:479.200000pt;}
.xba_c00489{left:482.666667pt;}
.xaf_c00489{left:483.733333pt;}
.xbe_c00489{left:485.066667pt;}
.x94_c00489{left:486.133333pt;}
.xa0_c00489{left:489.066667pt;}
.xac_c00489{left:492.933333pt;}
.x88_c00489{left:494.666667pt;}
.xb0_c00489{left:495.600000pt;}
.xa8_c00489{left:496.800000pt;}
.x103_c00489{left:497.733333pt;}
.x91_c00489{left:498.800000pt;}
.xf1_c00489{left:499.733333pt;}
.xbb_c00489{left:501.600000pt;}
.xca_c00489{left:502.666667pt;}
.xf7_c00489{left:504.533333pt;}
.x89_c00489{left:505.866667pt;}
.xc8_c00489{left:507.466667pt;}
.xdf_c00489{left:508.533333pt;}
.xa4_c00489{left:509.466667pt;}
.xda_c00489{left:510.666667pt;}
.x8f_c00489{left:512.533333pt;}
.x92_c00489{left:513.600000pt;}
.x99_c00489{left:514.800000pt;}
.xed_c00489{left:517.733333pt;}
.xbf_c00489{left:519.333333pt;}
.x95_c00489{left:523.200000pt;}
.xb1_c00489{left:524.133333pt;}
.xe1_c00489{left:525.600000pt;}
.xc6_c00489{left:527.200000pt;}
.xcb_c00489{left:528.933333pt;}
.x104_c00489{left:532.266667pt;}
.xd4_c00489{left:533.333333pt;}
.x100_c00489{left:535.066667pt;}
.xd2_c00489{left:536.266667pt;}
.xc0_c00489{left:537.200000pt;}
.xa1_c00489{left:538.666667pt;}
.xcf_c00489{left:540.533333pt;}
.xcc_c00489{left:542.400000pt;}
.xa5_c00489{left:543.333333pt;}
.xc9_c00489{left:547.200000pt;}
.xa9_c00489{left:548.666667pt;}
.x8a_c00489{left:551.600000pt;}
.xb2_c00489{left:554.266667pt;}
.xe9_c00489{left:555.600000pt;}
.xf4_c00489{left:559.733333pt;}
.x9a_c00489{left:563.066667pt;}
.xf5_c00489{left:564.533333pt;}
.xbc_c00489{left:566.533333pt;}
.xee_c00489{left:567.600000pt;}
.xc1_c00489{left:570.800000pt;}
.xc7_c00489{left:573.333333pt;}
.xe0_c00489{left:574.933333pt;}
.xad_c00489{left:576.400000pt;}
.x105_c00489{left:577.333333pt;}
.x96_c00489{left:579.200000pt;}
.x8b_c00489{left:580.400000pt;}
.xb3_c00489{left:582.133333pt;}
.xa2_c00489{left:584.400000pt;}
.xdd_c00489{left:586.266667pt;}
.xe3_c00489{left:588.266667pt;}
.xd0_c00489{left:590.133333pt;}
.xa6_c00489{left:591.600000pt;}
.xd5_c00489{left:594.133333pt;}
.xaa_c00489{left:595.333333pt;}
.xc2_c00489{left:598.000000pt;}
.xcd_c00489{left:601.600000pt;}
.xe2_c00489{left:602.533333pt;}
.x9b_c00489{left:604.666667pt;}
.xa7_c00489{left:605.733333pt;}
.xd6_c00489{left:607.200000pt;}
.xef_c00489{left:608.266667pt;}
.x97_c00489{left:609.333333pt;}
.xb7_c00489{left:611.466667pt;}
.xf9_c00489{left:614.666667pt;}
.xb4_c00489{left:616.000000pt;}
.xf6_c00489{left:618.000000pt;}
.x9c_c00489{left:619.333333pt;}
.xe4_c00489{left:620.933333pt;}
.x8c_c00489{left:622.266667pt;}
.xd1_c00489{left:625.333333pt;}
.xf8_c00489{left:626.400000pt;}
.xf2_c00489{left:627.733333pt;}
.xce_c00489{left:629.066667pt;}
.xd7_c00489{left:630.266667pt;}
.xde_c00489{left:632.000000pt;}
.xf3_c00489{left:632.933333pt;}
.xfe_c00489{left:634.000000pt;}
.xdc_c00489{left:636.800000pt;}
.xc3_c00489{left:638.000000pt;}
.xae_c00489{left:639.066667pt;}
.xea_c00489{left:643.333333pt;}
.xdb_c00489{left:645.733333pt;}
.xab_c00489{left:648.133333pt;}
.xb5_c00489{left:649.866667pt;}
.xd3_c00489{left:650.800000pt;}
.x98_c00489{left:651.866667pt;}
.xd8_c00489{left:654.266667pt;}
.x9d_c00489{left:657.066667pt;}
.x7_c00489{left:658.000000pt;}
.xe5_c00489{left:659.066667pt;}
.x102_c00489{left:660.933333pt;}
.xeb_c00489{left:663.466667pt;}
.xff_c00489{left:671.466667pt;}
.xb6_c00489{left:675.200000pt;}
}





/* 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_c00490 {
    display:none;
  }
  .loading-indicator_c00490.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00490 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_c00490 { 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_c00490" -> "#page-container .classname_c00490")
 */
.pf_c00490 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00490 { /* 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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00490 { /* 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_c00490 { /* 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_c00490 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00490 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00490 {overflow:visible;}
  }
}
.c_c00490 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00490 { /* 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_c00490:after { /* webkit #35443 */
  content: '';
}
.t_c00490:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00490 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 */
}
.__c00490 { /* 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_c00490 { /* info for Javascript */
  display:none;
}
.l_c00490 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00490 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00490 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00490: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_c00490 {
    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_c00490.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00490.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_c00490 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00490{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00490;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.000000;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;}
.m87_c00490{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00490{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m76_c00490{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00490{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00490{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00490{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00490{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00490{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00490{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00490{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00490{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00490{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m67_c00490{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00490{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.maf_c00490{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m90_c00490{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00490{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00490{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00490{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m78_c00490{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00490{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m51_c00490{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00490{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m94_c00490{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m20_c00490{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m99_c00490{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00490{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00490{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m54_c00490{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m18_c00490{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mae_c00490{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m77_c00490{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m43_c00490{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00490{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m24_c00490{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00490{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00490{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00490{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00490{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00490{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m71_c00490{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00490{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m28_c00490{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m32_c00490{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m41_c00490{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00490{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m55_c00490{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m79_c00490{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m62_c00490{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00490{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m93_c00490{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m91_c00490{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00490{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00490{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00490{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m42_c00490{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00490{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00490{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m29_c00490{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00490{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00490{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m73_c00490{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m74_c00490{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m65_c00490{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m96_c00490{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m61_c00490{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m75_c00490{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00490{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00490{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m23_c00490{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m38_c00490{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00490{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00490{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00490{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00490{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m66_c00490{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.maa_c00490{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m80_c00490{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m21_c00490{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13_c00490{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00490{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m88_c00490{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00490{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m50_c00490{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m59_c00490{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00490{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00490{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m56_c00490{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00490{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m30_c00490{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m95_c00490{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m19_c00490{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00490{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00490{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.mac_c00490{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m5f_c00490{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00490{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00490{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00490{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00490{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m63_c00490{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00490{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00490{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m68_c00490{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m45_c00490{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00490{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m37_c00490{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00490{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2_c00490{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00490{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m69_c00490{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m36_c00490{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00490{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m82_c00490{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m70_c00490{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m64_c00490{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m81_c00490{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m34_c00490{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m92_c00490{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00490{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m52_c00490{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00490{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00490{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00490{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00490{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m58_c00490{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00490{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.mba_c00490{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m40_c00490{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m98_c00490{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00490{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m46_c00490{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mab_c00490{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00490{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m53_c00490{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00490{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m49_c00490{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m48_c00490{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m60_c00490{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m27_c00490{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00490{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m44_c00490{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00490{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m47_c00490{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m84_c00490{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.mad_c00490{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m86_c00490{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.md_c00490{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00490{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00490{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m26_c00490{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m31_c00490{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m57_c00490{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m72_c00490{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m97_c00490{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00490{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m83_c00490{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00490{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00490{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00490{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00490{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00490{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);}
.m11_c00490{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m85_c00490{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00490{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m89_c00490{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m33_c00490{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m25_c00490{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00490{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m22_c00490{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m39_c00490{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.sc__c00490{text-shadow:none;}
.sc0_c00490{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__c00490{-webkit-text-stroke:0px transparent;}
.sc0_c00490{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00490{word-spacing:-3.700091px;}
.ws1_c00490{word-spacing:-2.822242px;}
.ws4_c00490{word-spacing:0.000000px;}
.ws3_c00490{word-spacing:4.910859px;}
.ws2_c00490{word-spacing:5.381951px;}
.fc0_c00490{color:transparent;}
.fs2_c00490{font-size:36.000000px;}
.fs1_c00490{font-size:42.000000px;}
.fs0_c00490{font-size:60.000000px;}
.y0_c00490{bottom:0.000000px;}
.y3e_c00490{bottom:158.400000px;}
.y3d_c00490{bottom:173.100000px;}
.y6f_c00490{bottom:173.550000px;}
.y3c_c00490{bottom:187.500000px;}
.y3b_c00490{bottom:201.600000px;}
.y6e_c00490{bottom:201.900000px;}
.y3a_c00490{bottom:216.000000px;}
.y6d_c00490{bottom:216.750000px;}
.y39_c00490{bottom:230.700000px;}
.y6c_c00490{bottom:231.150000px;}
.y38_c00490{bottom:245.100000px;}
.y6b_c00490{bottom:245.850000px;}
.y37_c00490{bottom:259.800000px;}
.y6a_c00490{bottom:259.950000px;}
.y36_c00490{bottom:274.500000px;}
.y69_c00490{bottom:276.900000px;}
.y35_c00490{bottom:289.200000px;}
.y34_c00490{bottom:303.300000px;}
.y68_c00490{bottom:303.450000px;}
.y67_c00490{bottom:317.850000px;}
.y33_c00490{bottom:321.600000px;}
.y66_c00490{bottom:332.250000px;}
.y32_c00490{bottom:332.700000px;}
.y65_c00490{bottom:346.800000px;}
.y31_c00490{bottom:347.100000px;}
.y64_c00490{bottom:361.200000px;}
.y30_c00490{bottom:362.250000px;}
.y2f_c00490{bottom:375.900000px;}
.y63_c00490{bottom:390.600000px;}
.y2e_c00490{bottom:391.050000px;}
.y2d_c00490{bottom:405.150000px;}
.y62_c00490{bottom:405.300000px;}
.y61_c00490{bottom:419.700000px;}
.y2c_c00490{bottom:419.850000px;}
.y60_c00490{bottom:434.100000px;}
.y2b_c00490{bottom:434.550000px;}
.y5f_c00490{bottom:448.950000px;}
.y2a_c00490{bottom:449.100000px;}
.y5e_c00490{bottom:463.350000px;}
.y29_c00490{bottom:463.500000px;}
.y5d_c00490{bottom:478.050000px;}
.y28_c00490{bottom:478.200000px;}
.y5c_c00490{bottom:492.150000px;}
.y27_c00490{bottom:492.900000px;}
.y5b_c00490{bottom:506.850000px;}
.y26_c00490{bottom:507.300000px;}
.y5a_c00490{bottom:521.250000px;}
.y25_c00490{bottom:521.550000px;}
.y24_c00490{bottom:535.200000px;}
.y59_c00490{bottom:535.650000px;}
.y58_c00490{bottom:549.750000px;}
.y23_c00490{bottom:551.100000px;}
.y22_c00490{bottom:564.450000px;}
.y57_c00490{bottom:564.900000px;}
.y56_c00490{bottom:579.000000px;}
.y21_c00490{bottom:579.600000px;}
.y55_c00490{bottom:593.700000px;}
.y20_c00490{bottom:594.300000px;}
.y1f_c00490{bottom:608.400000px;}
.y54_c00490{bottom:622.800000px;}
.y1e_c00490{bottom:623.100000px;}
.y53_c00490{bottom:637.200000px;}
.y1d_c00490{bottom:638.100000px;}
.y52_c00490{bottom:651.900000px;}
.y1c_c00490{bottom:652.200000px;}
.y51_c00490{bottom:666.750000px;}
.y1b_c00490{bottom:666.900000px;}
.y50_c00490{bottom:681.150000px;}
.y1a_c00490{bottom:681.600000px;}
.y4f_c00490{bottom:695.550000px;}
.y19_c00490{bottom:696.300000px;}
.y18_c00490{bottom:709.950000px;}
.y4e_c00490{bottom:710.250000px;}
.y4d_c00490{bottom:725.100000px;}
.y17_c00490{bottom:725.400000px;}
.y16_c00490{bottom:739.500000px;}
.y4c_c00490{bottom:754.200000px;}
.y15_c00490{bottom:754.650000px;}
.y4b_c00490{bottom:768.750000px;}
.y14_c00490{bottom:769.350000px;}
.y4a_c00490{bottom:783.150000px;}
.y13_c00490{bottom:783.750000px;}
.y12_c00490{bottom:798.150000px;}
.y49_c00490{bottom:798.300000px;}
.y11_c00490{bottom:812.550000px;}
.y48_c00490{bottom:813.000000px;}
.y10_c00490{bottom:826.650000px;}
.y47_c00490{bottom:827.400000px;}
.yf_c00490{bottom:841.800000px;}
.ye_c00490{bottom:856.200000px;}
.yd_c00490{bottom:870.300000px;}
.y46_c00490{bottom:870.900000px;}
.y45_c00490{bottom:885.300000px;}
.yc_c00490{bottom:885.750000px;}
.y44_c00490{bottom:899.700000px;}
.yb_c00490{bottom:900.450000px;}
.ya_c00490{bottom:914.100000px;}
.y43_c00490{bottom:914.400000px;}
.y9_c00490{bottom:928.800000px;}
.y8_c00490{bottom:942.900000px;}
.y42_c00490{bottom:943.350000px;}
.y41_c00490{bottom:957.750000px;}
.y7_c00490{bottom:958.050000px;}
.y6_c00490{bottom:972.450000px;}
.y5_c00490{bottom:986.850000px;}
.y40_c00490{bottom:987.150000px;}
.y4_c00490{bottom:1001.550000px;}
.y3f_c00490{bottom:1016.250000px;}
.y3_c00490{bottom:1017.000000px;}
.y2_c00490{bottom:1051.200000px;}
.y1_c00490{bottom:1051.500000px;}
.h4_c00490{height:36.000000px;}
.h3_c00490{height:42.000000px;}
.h2_c00490{height:60.000000px;}
.h1_c00490{height:1166.250000px;}
.h0_c00490{height:1166.400056px;}
.w0_c00490{width:920.879975px;}
.w1_c00490{width:921.000000px;}
.x0_c00490{left:0.000000px;}
.x84_c00490{left:151.200000px;}
.x3_c00490{left:152.700000px;}
.x1_c00490{left:154.800000px;}
.x4f_c00490{left:187.950000px;}
.x3a_c00490{left:189.000000px;}
.x4_c00490{left:198.000000px;}
.x17_c00490{left:200.100000px;}
.x77_c00490{left:202.050000px;}
.x81_c00490{left:209.700000px;}
.x6d_c00490{left:210.750000px;}
.xb_c00490{left:212.550000px;}
.x7a_c00490{left:213.900000px;}
.x4b_c00490{left:216.600000px;}
.x85_c00490{left:222.450000px;}
.x74_c00490{left:224.100000px;}
.x82_c00490{left:225.150000px;}
.x13_c00490{left:226.650000px;}
.x4c_c00490{left:229.200000px;}
.xc_c00490{left:232.350000px;}
.x53_c00490{left:234.150000px;}
.x67_c00490{left:236.100000px;}
.x88_c00490{left:237.150000px;}
.x3b_c00490{left:240.150000px;}
.x7f_c00490{left:241.950000px;}
.x2f_c00490{left:243.300000px;}
.x56_c00490{left:245.400000px;}
.x14_c00490{left:246.450000px;}
.x23_c00490{left:247.950000px;}
.x5_c00490{left:249.900000px;}
.x75_c00490{left:251.100000px;}
.x35_c00490{left:253.350000px;}
.x46_c00490{left:254.850000px;}
.x1e_c00490{left:256.650000px;}
.x61_c00490{left:258.750000px;}
.x18_c00490{left:259.950000px;}
.x86_c00490{left:261.300000px;}
.x15_c00490{left:262.350000px;}
.x66_c00490{left:265.950000px;}
.x5b_c00490{left:267.000000px;}
.x3c_c00490{left:268.200000px;}
.x39_c00490{left:269.550000px;}
.x30_c00490{left:270.600000px;}
.x19_c00490{left:272.850000px;}
.x2c_c00490{left:273.900000px;}
.x27_c00490{left:274.950000px;}
.xd_c00490{left:276.300000px;}
.x6_c00490{left:279.000000px;}
.x54_c00490{left:280.200000px;}
.x16_c00490{left:281.400000px;}
.x31_c00490{left:282.900000px;}
.x70_c00490{left:284.100000px;}
.x59_c00490{left:285.450000px;}
.x28_c00490{left:286.800000px;}
.x24_c00490{left:288.300000px;}
.x78_c00490{left:289.500000px;}
.x7_c00490{left:291.300000px;}
.x5c_c00490{left:293.700000px;}
.x40_c00490{left:296.550000px;}
.x87_c00490{left:298.050000px;}
.x62_c00490{left:299.400000px;}
.x36_c00490{left:301.200000px;}
.x72_c00490{left:302.250000px;}
.x47_c00490{left:303.450000px;}
.x5d_c00490{left:305.550000px;}
.x43_c00490{left:306.600000px;}
.x1f_c00490{left:307.800000px;}
.x50_c00490{left:312.000000px;}
.x57_c00490{left:313.500000px;}
.x73_c00490{left:314.850000px;}
.x3d_c00490{left:317.850000px;}
.xe_c00490{left:320.550000px;}
.x6f_c00490{left:321.750000px;}
.x79_c00490{left:323.700000px;}
.x41_c00490{left:325.350000px;}
.x63_c00490{left:330.000000px;}
.x1a_c00490{left:331.200000px;}
.x69_c00490{left:333.600000px;}
.x7b_c00490{left:334.800000px;}
.x5a_c00490{left:336.150000px;}
.x5f_c00490{left:338.700000px;}
.x29_c00490{left:339.750000px;}
.x37_c00490{left:341.550000px;}
.x25_c00490{left:346.200000px;}
.x8_c00490{left:350.400000px;}
.x76_c00490{left:351.450000px;}
.x32_c00490{left:353.100000px;}
.x48_c00490{left:354.900000px;}
.x42_c00490{left:357.000000px;}
.xf_c00490{left:358.050000px;}
.x44_c00490{left:359.550000px;}
.x38_c00490{left:360.600000px;}
.x1b_c00490{left:363.600000px;}
.x55_c00490{left:365.550000px;}
.x64_c00490{left:366.750000px;}
.x2d_c00490{left:368.550000px;}
.x20_c00490{left:371.550000px;}
.x10_c00490{left:373.950000px;}
.x3e_c00490{left:375.450000px;}
.x6b_c00490{left:376.650000px;}
.x60_c00490{left:378.750000px;}
.x65_c00490{left:381.150000px;}
.x9_c00490{left:384.300000px;}
.x4d_c00490{left:386.550000px;}
.x21_c00490{left:388.800000px;}
.x5e_c00490{left:390.150000px;}
.x7c_c00490{left:392.100000px;}
.x89_c00490{left:394.050000px;}
.x11_c00490{left:396.600000px;}
.x2e_c00490{left:398.100000px;}
.x80_c00490{left:399.750000px;}
.x51_c00490{left:400.800000px;}
.x4e_c00490{left:402.000000px;}
.x1c_c00490{left:403.200000px;}
.x58_c00490{left:405.000000px;}
.x71_c00490{left:406.500000px;}
.x2a_c00490{left:409.200000px;}
.x6c_c00490{left:411.900000px;}
.x7d_c00490{left:414.450000px;}
.x33_c00490{left:415.800000px;}
.x49_c00490{left:419.700000px;}
.x4a_c00490{left:421.800000px;}
.x26_c00490{left:424.950000px;}
.xa_c00490{left:426.000000px;}
.x8b_c00490{left:428.400000px;}
.x83_c00490{left:432.000000px;}
.x12_c00490{left:435.150000px;}
.x22_c00490{left:437.700000px;}
.x34_c00490{left:439.500000px;}
.x8a_c00490{left:440.850000px;}
.x1d_c00490{left:442.050000px;}
.x2b_c00490{left:443.100000px;}
.x6a_c00490{left:444.150000px;}
.x6e_c00490{left:445.500000px;}
.x52_c00490{left:448.650000px;}
.x45_c00490{left:451.050000px;}
.x2_c00490{left:456.150000px;}
.x3f_c00490{left:457.500000px;}
.x68_c00490{left:459.450000px;}
.x7e_c00490{left:461.550000px;}
.x108_c00490{left:493.200000px;}
.xff_c00490{left:494.700000px;}
.xbd_c00490{left:496.350000px;}
.x8c_c00490{left:497.550000px;}
.x100_c00490{left:527.400000px;}
.x101_c00490{left:529.200000px;}
.xf8_c00490{left:532.950000px;}
.xcc_c00490{left:534.000000px;}
.x106_c00490{left:535.350000px;}
.xb3_c00490{left:546.000000px;}
.x94_c00490{left:547.200000px;}
.x8d_c00490{left:551.550000px;}
.xdd_c00490{left:553.650000px;}
.x103_c00490{left:555.750000px;}
.xbc_c00490{left:558.150000px;}
.x93_c00490{left:559.500000px;}
.x104_c00490{left:564.150000px;}
.x105_c00490{left:566.250000px;}
.xbf_c00490{left:567.900000px;}
.xcb_c00490{left:569.250000px;}
.xc5_c00490{left:570.450000px;}
.xce_c00490{left:572.100000px;}
.xde_c00490{left:574.200000px;}
.xed_c00490{left:576.000000px;}
.xd4_c00490{left:577.050000px;}
.xd7_c00490{left:579.300000px;}
.xf0_c00490{left:580.650000px;}
.x9a_c00490{left:583.350000px;}
.xd6_c00490{left:584.550000px;}
.xef_c00490{left:586.200000px;}
.xf4_c00490{left:587.850000px;}
.xa0_c00490{left:592.800000px;}
.xd3_c00490{left:594.450000px;}
.xb4_c00490{left:595.650000px;}
.xb8_c00490{left:596.700000px;}
.xa9_c00490{left:598.650000px;}
.x8e_c00490{left:599.850000px;}
.xcf_c00490{left:601.200000px;}
.xf2_c00490{left:602.250000px;}
.xa7_c00490{left:603.750000px;}
.xd5_c00490{left:604.800000px;}
.xf5_c00490{left:605.850000px;}
.xcd_c00490{left:607.500000px;}
.x9d_c00490{left:609.300000px;}
.xc6_c00490{left:610.350000px;}
.xc0_c00490{left:611.850000px;}
.xdf_c00490{left:614.550000px;}
.x95_c00490{left:615.600000px;}
.xd1_c00490{left:617.550000px;}
.xf6_c00490{left:619.500000px;}
.xa1_c00490{left:620.550000px;}
.x9b_c00490{left:621.900000px;}
.xe9_c00490{left:623.250000px;}
.xb9_c00490{left:624.750000px;}
.xaa_c00490{left:625.950000px;}
.x102_c00490{left:627.450000px;}
.xaf_c00490{left:628.800000px;}
.x8f_c00490{left:631.200000px;}
.xa2_c00490{left:632.850000px;}
.xd8_c00490{left:634.650000px;}
.xb5_c00490{left:637.050000px;}
.xab_c00490{left:638.550000px;}
.xe2_c00490{left:640.050000px;}
.xc1_c00490{left:641.400000px;}
.x90_c00490{left:643.800000px;}
.xc7_c00490{left:646.650000px;}
.xe6_c00490{left:648.900000px;}
.xf3_c00490{left:651.900000px;}
.xf1_c00490{left:653.400000px;}
.xee_c00490{left:655.650000px;}
.x96_c00490{left:656.700000px;}
.xe3_c00490{left:657.750000px;}
.xfe_c00490{left:660.900000px;}
.xf7_c00490{left:663.300000px;}
.xd9_c00490{left:665.100000px;}
.xb0_c00490{left:666.600000px;}
.xb6_c00490{left:668.400000px;}
.xa3_c00490{left:669.900000px;}
.xa8_c00490{left:675.000000px;}
.xc2_c00490{left:677.400000px;}
.xe7_c00490{left:679.200000px;}
.xba_c00490{left:681.600000px;}
.xbe_c00490{left:685.200000px;}
.x97_c00490{left:688.800000px;}
.x107_c00490{left:693.300000px;}
.x9e_c00490{left:694.650000px;}
.x9c_c00490{left:696.450000px;}
.x91_c00490{left:699.300000px;}
.xac_c00490{left:700.500000px;}
.xd2_c00490{left:702.150000px;}
.xa4_c00490{left:703.350000px;}
.xb7_c00490{left:705.150000px;}
.x9f_c00490{left:706.950000px;}
.xea_c00490{left:708.900000px;}
.xc8_c00490{left:709.950000px;}
.xf9_c00490{left:711.600000px;}
.xda_c00490{left:712.950000px;}
.xc3_c00490{left:714.900000px;}
.xd0_c00490{left:718.950000px;}
.xad_c00490{left:721.800000px;}
.x98_c00490{left:725.550000px;}
.xc9_c00490{left:730.500000px;}
.xb1_c00490{left:732.450000px;}
.xe8_c00490{left:733.500000px;}
.x99_c00490{left:741.450000px;}
.xfa_c00490{left:745.350000px;}
.xa5_c00490{left:748.050000px;}
.xe4_c00490{left:749.850000px;}
.x92_c00490{left:751.800000px;}
.xfb_c00490{left:757.650000px;}
.xeb_c00490{left:759.600000px;}
.xdb_c00490{left:764.850000px;}
.xe0_c00490{left:767.850000px;}
.xfc_c00490{left:769.500000px;}
.xca_c00490{left:775.200000px;}
.xb2_c00490{left:778.500000px;}
.xae_c00490{left:782.250000px;}
.xa6_c00490{left:783.750000px;}
.xc4_c00490{left:786.150000px;}
.xfd_c00490{left:789.000000px;}
.xbb_c00490{left:795.750000px;}
.xe1_c00490{left:802.350000px;}
.xe5_c00490{left:804.450000px;}
.xec_c00490{left:807.450000px;}
.xdc_c00490{left:808.800000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:-3.288970pt;}
.ws1_c00490{word-spacing:-2.508660pt;}
.ws4_c00490{word-spacing:0.000000pt;}
.ws3_c00490{word-spacing:4.365208pt;}
.ws2_c00490{word-spacing:4.783956pt;}
.fs2_c00490{font-size:32.000000pt;}
.fs1_c00490{font-size:37.333333pt;}
.fs0_c00490{font-size:53.333333pt;}
.y0_c00490{bottom:0.000000pt;}
.y3e_c00490{bottom:140.800000pt;}
.y3d_c00490{bottom:153.866667pt;}
.y6f_c00490{bottom:154.266667pt;}
.y3c_c00490{bottom:166.666667pt;}
.y3b_c00490{bottom:179.200000pt;}
.y6e_c00490{bottom:179.466667pt;}
.y3a_c00490{bottom:192.000000pt;}
.y6d_c00490{bottom:192.666667pt;}
.y39_c00490{bottom:205.066667pt;}
.y6c_c00490{bottom:205.466667pt;}
.y38_c00490{bottom:217.866667pt;}
.y6b_c00490{bottom:218.533333pt;}
.y37_c00490{bottom:230.933333pt;}
.y6a_c00490{bottom:231.066667pt;}
.y36_c00490{bottom:244.000000pt;}
.y69_c00490{bottom:246.133333pt;}
.y35_c00490{bottom:257.066667pt;}
.y34_c00490{bottom:269.600000pt;}
.y68_c00490{bottom:269.733333pt;}
.y67_c00490{bottom:282.533333pt;}
.y33_c00490{bottom:285.866667pt;}
.y66_c00490{bottom:295.333333pt;}
.y32_c00490{bottom:295.733333pt;}
.y65_c00490{bottom:308.266667pt;}
.y31_c00490{bottom:308.533333pt;}
.y64_c00490{bottom:321.066667pt;}
.y30_c00490{bottom:322.000000pt;}
.y2f_c00490{bottom:334.133333pt;}
.y63_c00490{bottom:347.200000pt;}
.y2e_c00490{bottom:347.600000pt;}
.y2d_c00490{bottom:360.133333pt;}
.y62_c00490{bottom:360.266667pt;}
.y61_c00490{bottom:373.066667pt;}
.y2c_c00490{bottom:373.200000pt;}
.y60_c00490{bottom:385.866667pt;}
.y2b_c00490{bottom:386.266667pt;}
.y5f_c00490{bottom:399.066667pt;}
.y2a_c00490{bottom:399.200000pt;}
.y5e_c00490{bottom:411.866667pt;}
.y29_c00490{bottom:412.000000pt;}
.y5d_c00490{bottom:424.933333pt;}
.y28_c00490{bottom:425.066667pt;}
.y5c_c00490{bottom:437.466667pt;}
.y27_c00490{bottom:438.133333pt;}
.y5b_c00490{bottom:450.533333pt;}
.y26_c00490{bottom:450.933333pt;}
.y5a_c00490{bottom:463.333333pt;}
.y25_c00490{bottom:463.600000pt;}
.y24_c00490{bottom:475.733333pt;}
.y59_c00490{bottom:476.133333pt;}
.y58_c00490{bottom:488.666667pt;}
.y23_c00490{bottom:489.866667pt;}
.y22_c00490{bottom:501.733333pt;}
.y57_c00490{bottom:502.133333pt;}
.y56_c00490{bottom:514.666667pt;}
.y21_c00490{bottom:515.200000pt;}
.y55_c00490{bottom:527.733333pt;}
.y20_c00490{bottom:528.266667pt;}
.y1f_c00490{bottom:540.800000pt;}
.y54_c00490{bottom:553.600000pt;}
.y1e_c00490{bottom:553.866667pt;}
.y53_c00490{bottom:566.400000pt;}
.y1d_c00490{bottom:567.200000pt;}
.y52_c00490{bottom:579.466667pt;}
.y1c_c00490{bottom:579.733333pt;}
.y51_c00490{bottom:592.666667pt;}
.y1b_c00490{bottom:592.800000pt;}
.y50_c00490{bottom:605.466667pt;}
.y1a_c00490{bottom:605.866667pt;}
.y4f_c00490{bottom:618.266667pt;}
.y19_c00490{bottom:618.933333pt;}
.y18_c00490{bottom:631.066667pt;}
.y4e_c00490{bottom:631.333333pt;}
.y4d_c00490{bottom:644.533333pt;}
.y17_c00490{bottom:644.800000pt;}
.y16_c00490{bottom:657.333333pt;}
.y4c_c00490{bottom:670.400000pt;}
.y15_c00490{bottom:670.800000pt;}
.y4b_c00490{bottom:683.333333pt;}
.y14_c00490{bottom:683.866667pt;}
.y4a_c00490{bottom:696.133333pt;}
.y13_c00490{bottom:696.666667pt;}
.y12_c00490{bottom:709.466667pt;}
.y49_c00490{bottom:709.600000pt;}
.y11_c00490{bottom:722.266667pt;}
.y48_c00490{bottom:722.666667pt;}
.y10_c00490{bottom:734.800000pt;}
.y47_c00490{bottom:735.466667pt;}
.yf_c00490{bottom:748.266667pt;}
.ye_c00490{bottom:761.066667pt;}
.yd_c00490{bottom:773.600000pt;}
.y46_c00490{bottom:774.133333pt;}
.y45_c00490{bottom:786.933333pt;}
.yc_c00490{bottom:787.333333pt;}
.y44_c00490{bottom:799.733333pt;}
.yb_c00490{bottom:800.400000pt;}
.ya_c00490{bottom:812.533333pt;}
.y43_c00490{bottom:812.800000pt;}
.y9_c00490{bottom:825.600000pt;}
.y8_c00490{bottom:838.133333pt;}
.y42_c00490{bottom:838.533333pt;}
.y41_c00490{bottom:851.333333pt;}
.y7_c00490{bottom:851.600000pt;}
.y6_c00490{bottom:864.400000pt;}
.y5_c00490{bottom:877.200000pt;}
.y40_c00490{bottom:877.466667pt;}
.y4_c00490{bottom:890.266667pt;}
.y3f_c00490{bottom:903.333333pt;}
.y3_c00490{bottom:904.000000pt;}
.y2_c00490{bottom:934.400000pt;}
.y1_c00490{bottom:934.666667pt;}
.h4_c00490{height:32.000000pt;}
.h3_c00490{height:37.333333pt;}
.h2_c00490{height:53.333333pt;}
.h1_c00490{height:1036.666667pt;}
.h0_c00490{height:1036.800049pt;}
.w0_c00490{width:818.559977pt;}
.w1_c00490{width:818.666667pt;}
.x0_c00490{left:0.000000pt;}
.x84_c00490{left:134.400000pt;}
.x3_c00490{left:135.733333pt;}
.x1_c00490{left:137.600000pt;}
.x4f_c00490{left:167.066667pt;}
.x3a_c00490{left:168.000000pt;}
.x4_c00490{left:176.000000pt;}
.x17_c00490{left:177.866667pt;}
.x77_c00490{left:179.600000pt;}
.x81_c00490{left:186.400000pt;}
.x6d_c00490{left:187.333333pt;}
.xb_c00490{left:188.933333pt;}
.x7a_c00490{left:190.133333pt;}
.x4b_c00490{left:192.533333pt;}
.x85_c00490{left:197.733333pt;}
.x74_c00490{left:199.200000pt;}
.x82_c00490{left:200.133333pt;}
.x13_c00490{left:201.466667pt;}
.x4c_c00490{left:203.733333pt;}
.xc_c00490{left:206.533333pt;}
.x53_c00490{left:208.133333pt;}
.x67_c00490{left:209.866667pt;}
.x88_c00490{left:210.800000pt;}
.x3b_c00490{left:213.466667pt;}
.x7f_c00490{left:215.066667pt;}
.x2f_c00490{left:216.266667pt;}
.x56_c00490{left:218.133333pt;}
.x14_c00490{left:219.066667pt;}
.x23_c00490{left:220.400000pt;}
.x5_c00490{left:222.133333pt;}
.x75_c00490{left:223.200000pt;}
.x35_c00490{left:225.200000pt;}
.x46_c00490{left:226.533333pt;}
.x1e_c00490{left:228.133333pt;}
.x61_c00490{left:230.000000pt;}
.x18_c00490{left:231.066667pt;}
.x86_c00490{left:232.266667pt;}
.x15_c00490{left:233.200000pt;}
.x66_c00490{left:236.400000pt;}
.x5b_c00490{left:237.333333pt;}
.x3c_c00490{left:238.400000pt;}
.x39_c00490{left:239.600000pt;}
.x30_c00490{left:240.533333pt;}
.x19_c00490{left:242.533333pt;}
.x2c_c00490{left:243.466667pt;}
.x27_c00490{left:244.400000pt;}
.xd_c00490{left:245.600000pt;}
.x6_c00490{left:248.000000pt;}
.x54_c00490{left:249.066667pt;}
.x16_c00490{left:250.133333pt;}
.x31_c00490{left:251.466667pt;}
.x70_c00490{left:252.533333pt;}
.x59_c00490{left:253.733333pt;}
.x28_c00490{left:254.933333pt;}
.x24_c00490{left:256.266667pt;}
.x78_c00490{left:257.333333pt;}
.x7_c00490{left:258.933333pt;}
.x5c_c00490{left:261.066667pt;}
.x40_c00490{left:263.600000pt;}
.x87_c00490{left:264.933333pt;}
.x62_c00490{left:266.133333pt;}
.x36_c00490{left:267.733333pt;}
.x72_c00490{left:268.666667pt;}
.x47_c00490{left:269.733333pt;}
.x5d_c00490{left:271.600000pt;}
.x43_c00490{left:272.533333pt;}
.x1f_c00490{left:273.600000pt;}
.x50_c00490{left:277.333333pt;}
.x57_c00490{left:278.666667pt;}
.x73_c00490{left:279.866667pt;}
.x3d_c00490{left:282.533333pt;}
.xe_c00490{left:284.933333pt;}
.x6f_c00490{left:286.000000pt;}
.x79_c00490{left:287.733333pt;}
.x41_c00490{left:289.200000pt;}
.x63_c00490{left:293.333333pt;}
.x1a_c00490{left:294.400000pt;}
.x69_c00490{left:296.533333pt;}
.x7b_c00490{left:297.600000pt;}
.x5a_c00490{left:298.800000pt;}
.x5f_c00490{left:301.066667pt;}
.x29_c00490{left:302.000000pt;}
.x37_c00490{left:303.600000pt;}
.x25_c00490{left:307.733333pt;}
.x8_c00490{left:311.466667pt;}
.x76_c00490{left:312.400000pt;}
.x32_c00490{left:313.866667pt;}
.x48_c00490{left:315.466667pt;}
.x42_c00490{left:317.333333pt;}
.xf_c00490{left:318.266667pt;}
.x44_c00490{left:319.600000pt;}
.x38_c00490{left:320.533333pt;}
.x1b_c00490{left:323.200000pt;}
.x55_c00490{left:324.933333pt;}
.x64_c00490{left:326.000000pt;}
.x2d_c00490{left:327.600000pt;}
.x20_c00490{left:330.266667pt;}
.x10_c00490{left:332.400000pt;}
.x3e_c00490{left:333.733333pt;}
.x6b_c00490{left:334.800000pt;}
.x60_c00490{left:336.666667pt;}
.x65_c00490{left:338.800000pt;}
.x9_c00490{left:341.600000pt;}
.x4d_c00490{left:343.600000pt;}
.x21_c00490{left:345.600000pt;}
.x5e_c00490{left:346.800000pt;}
.x7c_c00490{left:348.533333pt;}
.x89_c00490{left:350.266667pt;}
.x11_c00490{left:352.533333pt;}
.x2e_c00490{left:353.866667pt;}
.x80_c00490{left:355.333333pt;}
.x51_c00490{left:356.266667pt;}
.x4e_c00490{left:357.333333pt;}
.x1c_c00490{left:358.400000pt;}
.x58_c00490{left:360.000000pt;}
.x71_c00490{left:361.333333pt;}
.x2a_c00490{left:363.733333pt;}
.x6c_c00490{left:366.133333pt;}
.x7d_c00490{left:368.400000pt;}
.x33_c00490{left:369.600000pt;}
.x49_c00490{left:373.066667pt;}
.x4a_c00490{left:374.933333pt;}
.x26_c00490{left:377.733333pt;}
.xa_c00490{left:378.666667pt;}
.x8b_c00490{left:380.800000pt;}
.x83_c00490{left:384.000000pt;}
.x12_c00490{left:386.800000pt;}
.x22_c00490{left:389.066667pt;}
.x34_c00490{left:390.666667pt;}
.x8a_c00490{left:391.866667pt;}
.x1d_c00490{left:392.933333pt;}
.x2b_c00490{left:393.866667pt;}
.x6a_c00490{left:394.800000pt;}
.x6e_c00490{left:396.000000pt;}
.x52_c00490{left:398.800000pt;}
.x45_c00490{left:400.933333pt;}
.x2_c00490{left:405.466667pt;}
.x3f_c00490{left:406.666667pt;}
.x68_c00490{left:408.400000pt;}
.x7e_c00490{left:410.266667pt;}
.x108_c00490{left:438.400000pt;}
.xff_c00490{left:439.733333pt;}
.xbd_c00490{left:441.200000pt;}
.x8c_c00490{left:442.266667pt;}
.x100_c00490{left:468.800000pt;}
.x101_c00490{left:470.400000pt;}
.xf8_c00490{left:473.733333pt;}
.xcc_c00490{left:474.666667pt;}
.x106_c00490{left:475.866667pt;}
.xb3_c00490{left:485.333333pt;}
.x94_c00490{left:486.400000pt;}
.x8d_c00490{left:490.266667pt;}
.xdd_c00490{left:492.133333pt;}
.x103_c00490{left:494.000000pt;}
.xbc_c00490{left:496.133333pt;}
.x93_c00490{left:497.333333pt;}
.x104_c00490{left:501.466667pt;}
.x105_c00490{left:503.333333pt;}
.xbf_c00490{left:504.800000pt;}
.xcb_c00490{left:506.000000pt;}
.xc5_c00490{left:507.066667pt;}
.xce_c00490{left:508.533333pt;}
.xde_c00490{left:510.400000pt;}
.xed_c00490{left:512.000000pt;}
.xd4_c00490{left:512.933333pt;}
.xd7_c00490{left:514.933333pt;}
.xf0_c00490{left:516.133333pt;}
.x9a_c00490{left:518.533333pt;}
.xd6_c00490{left:519.600000pt;}
.xef_c00490{left:521.066667pt;}
.xf4_c00490{left:522.533333pt;}
.xa0_c00490{left:526.933333pt;}
.xd3_c00490{left:528.400000pt;}
.xb4_c00490{left:529.466667pt;}
.xb8_c00490{left:530.400000pt;}
.xa9_c00490{left:532.133333pt;}
.x8e_c00490{left:533.200000pt;}
.xcf_c00490{left:534.400000pt;}
.xf2_c00490{left:535.333333pt;}
.xa7_c00490{left:536.666667pt;}
.xd5_c00490{left:537.600000pt;}
.xf5_c00490{left:538.533333pt;}
.xcd_c00490{left:540.000000pt;}
.x9d_c00490{left:541.600000pt;}
.xc6_c00490{left:542.533333pt;}
.xc0_c00490{left:543.866667pt;}
.xdf_c00490{left:546.266667pt;}
.x95_c00490{left:547.200000pt;}
.xd1_c00490{left:548.933333pt;}
.xf6_c00490{left:550.666667pt;}
.xa1_c00490{left:551.600000pt;}
.x9b_c00490{left:552.800000pt;}
.xe9_c00490{left:554.000000pt;}
.xb9_c00490{left:555.333333pt;}
.xaa_c00490{left:556.400000pt;}
.x102_c00490{left:557.733333pt;}
.xaf_c00490{left:558.933333pt;}
.x8f_c00490{left:561.066667pt;}
.xa2_c00490{left:562.533333pt;}
.xd8_c00490{left:564.133333pt;}
.xb5_c00490{left:566.266667pt;}
.xab_c00490{left:567.600000pt;}
.xe2_c00490{left:568.933333pt;}
.xc1_c00490{left:570.133333pt;}
.x90_c00490{left:572.266667pt;}
.xc7_c00490{left:574.800000pt;}
.xe6_c00490{left:576.800000pt;}
.xf3_c00490{left:579.466667pt;}
.xf1_c00490{left:580.800000pt;}
.xee_c00490{left:582.800000pt;}
.x96_c00490{left:583.733333pt;}
.xe3_c00490{left:584.666667pt;}
.xfe_c00490{left:587.466667pt;}
.xf7_c00490{left:589.600000pt;}
.xd9_c00490{left:591.200000pt;}
.xb0_c00490{left:592.533333pt;}
.xb6_c00490{left:594.133333pt;}
.xa3_c00490{left:595.466667pt;}
.xa8_c00490{left:600.000000pt;}
.xc2_c00490{left:602.133333pt;}
.xe7_c00490{left:603.733333pt;}
.xba_c00490{left:605.866667pt;}
.xbe_c00490{left:609.066667pt;}
.x97_c00490{left:612.266667pt;}
.x107_c00490{left:616.266667pt;}
.x9e_c00490{left:617.466667pt;}
.x9c_c00490{left:619.066667pt;}
.x91_c00490{left:621.600000pt;}
.xac_c00490{left:622.666667pt;}
.xd2_c00490{left:624.133333pt;}
.xa4_c00490{left:625.200000pt;}
.xb7_c00490{left:626.800000pt;}
.x9f_c00490{left:628.400000pt;}
.xea_c00490{left:630.133333pt;}
.xc8_c00490{left:631.066667pt;}
.xf9_c00490{left:632.533333pt;}
.xda_c00490{left:633.733333pt;}
.xc3_c00490{left:635.466667pt;}
.xd0_c00490{left:639.066667pt;}
.xad_c00490{left:641.600000pt;}
.x98_c00490{left:644.933333pt;}
.xc9_c00490{left:649.333333pt;}
.xb1_c00490{left:651.066667pt;}
.xe8_c00490{left:652.000000pt;}
.x99_c00490{left:659.066667pt;}
.xfa_c00490{left:662.533333pt;}
.xa5_c00490{left:664.933333pt;}
.xe4_c00490{left:666.533333pt;}
.x92_c00490{left:668.266667pt;}
.xfb_c00490{left:673.466667pt;}
.xeb_c00490{left:675.200000pt;}
.xdb_c00490{left:679.866667pt;}
.xe0_c00490{left:682.533333pt;}
.xfc_c00490{left:684.000000pt;}
.xca_c00490{left:689.066667pt;}
.xb2_c00490{left:692.000000pt;}
.xae_c00490{left:695.333333pt;}
.xa6_c00490{left:696.666667pt;}
.xc4_c00490{left:698.800000pt;}
.xfd_c00490{left:701.333333pt;}
.xbb_c00490{left:707.333333pt;}
.xe1_c00490{left:713.200000pt;}
.xe5_c00490{left:715.066667pt;}
.xec_c00490{left:717.733333pt;}
.xdc_c00490{left:718.933333pt;}
}





/* 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_c00491 {
    display:none;
  }
  .loading-indicator_c00491.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00491 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_c00491 { 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_c00491" -> "#page-container .classname_c00491")
 */
.pf_c00491 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00491 { /* 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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00491 { /* 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_c00491 { /* 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_c00491 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00491 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00491 {overflow:visible;}
  }
}
.c_c00491 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00491 { /* 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_c00491:after { /* webkit #35443 */
  content: '';
}
.t_c00491:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00491 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 */
}
.__c00491 { /* 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_c00491 { /* info for Javascript */
  display:none;
}
.l_c00491 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00491 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00491 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00491: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_c00491 {
    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_c00491.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00491.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_c00491 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00491{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00491;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.000000;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;}
.mba_c00491{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m73_c00491{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m45_c00491{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00491{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m60_c00491{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m85_c00491{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m91_c00491{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00491{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00491{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m56_c00491{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m77_c00491{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00491{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m14_c00491{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m25_c00491{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00491{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m70_c00491{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mab_c00491{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m15_c00491{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00491{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m74_c00491{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m89_c00491{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.md_c00491{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m28_c00491{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m27_c00491{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m8_c00491{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m26_c00491{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m7_c00491{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00491{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m17_c00491{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.maa_c00491{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m21_c00491{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00491{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00491{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m47_c00491{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m48_c00491{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m84_c00491{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00491{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00491{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m39_c00491{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m40_c00491{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m51_c00491{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00491{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00491{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00491{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m30_c00491{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00491{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m33_c00491{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m66_c00491{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00491{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m34_c00491{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00491{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00491{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00491{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m24_c00491{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00491{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00491{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m52_c00491{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00491{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m13_c00491{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00491{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00491{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00491{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m49_c00491{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m78_c00491{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m76_c00491{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6_c00491{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m41_c00491{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m53_c00491{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m19_c00491{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00491{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00491{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00491{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29_c00491{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00491{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00491{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00491{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00491{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00491{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m20_c00491{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m44_c00491{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00491{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00491{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.mc_c00491{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m83_c00491{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22_c00491{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00491{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m32_c00491{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00491{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m99_c00491{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00491{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5_c00491{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.ma_c00491{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00491{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00491{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m58_c00491{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00491{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00491{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m88_c00491{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m35_c00491{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00491{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m93_c00491{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m65_c00491{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m18_c00491{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00491{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00491{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00491{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00491{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00491{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00491{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00491{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m92_c00491{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.mb_c00491{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00491{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00491{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m50_c00491{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00491{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m87_c00491{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00491{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00491{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00491{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00491{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00491{transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275250,0.000000,0.000000,0.250000,0,0);}
.m98_c00491{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m94_c00491{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m10_c00491{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00491{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m43_c00491{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m62_c00491{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m86_c00491{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00491{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00491{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00491{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m67_c00491{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m96_c00491{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m59_c00491{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00491{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m80_c00491{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00491{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00491{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00491{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mae_c00491{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.mce_c00491{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m61_c00491{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00491{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m46_c00491{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00491{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00491{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m79_c00491{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m69_c00491{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m1_c00491{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m31_c00491{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00491{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m90_c00491{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00491{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00491{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m36_c00491{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00491{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00491{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m12_c00491{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mad_c00491{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m37_c00491{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m55_c00491{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m64_c00491{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m63_c00491{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m11_c00491{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00491{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00491{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m95_c00491{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m81_c00491{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.me_c00491{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00491{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m3_c00491{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m38_c00491{transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00491{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.maf_c00491{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mac_c00491{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00491{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00491{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m54_c00491{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m71_c00491{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00491{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00491{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00491{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00491{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00491{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m9_c00491{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m72_c00491{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.mf_c00491{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m23_c00491{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00491{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00491{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m82_c00491{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m2_c00491{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m57_c00491{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m75_c00491{transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350250,0.000000,0.000000,0.250000,0,0);}
.m68_c00491{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m0_c00491{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.mca_c00491{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00491{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m4_c00491{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m97_c00491{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00491{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00491{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00491{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00491{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00491{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m16_c00491{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00491{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{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__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00491{word-spacing:-5.875000px;}
.ws0_c00491{word-spacing:-3.814950px;}
.ws3_c00491{word-spacing:0.000000px;}
.ws1_c00491{word-spacing:3.976676px;}
.fc0_c00491{color:transparent;}
.fs0_c00491{font-size:42.000000px;}
.fs1_c00491{font-size:60.000000px;}
.y0_c00491{bottom:0.000000px;}
.y6c_c00491{bottom:147.900000px;}
.y6b_c00491{bottom:181.800000px;}
.y3c_c00491{bottom:182.250000px;}
.y6a_c00491{bottom:195.450000px;}
.y3b_c00491{bottom:196.950000px;}
.y3a_c00491{bottom:210.600000px;}
.y69_c00491{bottom:224.700000px;}
.y39_c00491{bottom:226.050000px;}
.y68_c00491{bottom:239.550000px;}
.y38_c00491{bottom:240.750000px;}
.y67_c00491{bottom:253.650000px;}
.y37_c00491{bottom:254.850000px;}
.y66_c00491{bottom:268.350000px;}
.y36_c00491{bottom:268.950000px;}
.y65_c00491{bottom:283.050000px;}
.y35_c00491{bottom:284.100000px;}
.y64_c00491{bottom:297.450000px;}
.y34_c00491{bottom:297.750000px;}
.y63_c00491{bottom:312.150000px;}
.y33_c00491{bottom:312.750000px;}
.y62_c00491{bottom:326.550000px;}
.y32_c00491{bottom:326.850000px;}
.y61_c00491{bottom:340.950000px;}
.y31_c00491{bottom:341.250000px;}
.y60_c00491{bottom:355.350000px;}
.y30_c00491{bottom:356.400000px;}
.y5f_c00491{bottom:370.350000px;}
.y2f_c00491{bottom:370.500000px;}
.y5e_c00491{bottom:384.750000px;}
.y2e_c00491{bottom:384.900000px;}
.y5d_c00491{bottom:399.150000px;}
.y2d_c00491{bottom:399.600000px;}
.y5c_c00491{bottom:413.550000px;}
.y2c_c00491{bottom:414.000000px;}
.y5b_c00491{bottom:428.250000px;}
.y2b_c00491{bottom:428.400000px;}
.y2a_c00491{bottom:442.800000px;}
.y5a_c00491{bottom:442.950000px;}
.y59_c00491{bottom:457.350000px;}
.y29_c00491{bottom:457.500000px;}
.y28_c00491{bottom:471.900000px;}
.y58_c00491{bottom:472.050000px;}
.y27_c00491{bottom:486.000000px;}
.y57_c00491{bottom:486.750000px;}
.y26_c00491{bottom:500.700000px;}
.y56_c00491{bottom:501.150000px;}
.y25_c00491{bottom:514.800000px;}
.y55_c00491{bottom:515.550000px;}
.y24_c00491{bottom:529.950000px;}
.y54_c00491{bottom:530.250000px;}
.y23_c00491{bottom:544.050000px;}
.y53_c00491{bottom:545.100000px;}
.y22_c00491{bottom:558.750000px;}
.y52_c00491{bottom:559.200000px;}
.y21_c00491{bottom:573.150000px;}
.y51_c00491{bottom:573.900000px;}
.y20_c00491{bottom:587.850000px;}
.y50_c00491{bottom:588.300000px;}
.y1f_c00491{bottom:602.400000px;}
.y4f_c00491{bottom:603.300000px;}
.y1e_c00491{bottom:617.100000px;}
.y4e_c00491{bottom:617.400000px;}
.y1d_c00491{bottom:631.800000px;}
.y4d_c00491{bottom:632.100000px;}
.y1c_c00491{bottom:646.500000px;}
.y1b_c00491{bottom:660.900000px;}
.y1a_c00491{bottom:675.300000px;}
.y4c_c00491{bottom:675.750000px;}
.y19_c00491{bottom:689.700000px;}
.y4b_c00491{bottom:690.150000px;}
.y18_c00491{bottom:704.100000px;}
.y4a_c00491{bottom:704.850000px;}
.y17_c00491{bottom:718.500000px;}
.y49_c00491{bottom:719.250000px;}
.y16_c00491{bottom:732.600000px;}
.y48_c00491{bottom:739.800000px;}
.y15_c00491{bottom:747.300000px;}
.y47_c00491{bottom:757.800000px;}
.y14_c00491{bottom:761.850000px;}
.y13_c00491{bottom:776.550000px;}
.y12_c00491{bottom:790.950000px;}
.y11_c00491{bottom:805.650000px;}
.y10_c00491{bottom:820.500000px;}
.y46_c00491{bottom:828.600000px;}
.yf_c00491{bottom:834.900000px;}
.y45_c00491{bottom:842.250000px;}
.ye_c00491{bottom:849.300000px;}
.y44_c00491{bottom:856.650000px;}
.yd_c00491{bottom:864.000000px;}
.y43_c00491{bottom:871.350000px;}
.yc_c00491{bottom:878.400000px;}
.y42_c00491{bottom:885.000000px;}
.yb_c00491{bottom:892.800000px;}
.y41_c00491{bottom:899.700000px;}
.ya_c00491{bottom:907.200000px;}
.y40_c00491{bottom:920.100000px;}
.y9_c00491{bottom:921.900000px;}
.y8_c00491{bottom:936.300000px;}
.y7_c00491{bottom:950.700000px;}
.y3f_c00491{bottom:952.200000px;}
.y6_c00491{bottom:965.100000px;}
.y3e_c00491{bottom:966.900000px;}
.y5_c00491{bottom:980.400000px;}
.y3d_c00491{bottom:987.450000px;}
.y4_c00491{bottom:994.800000px;}
.y3_c00491{bottom:1009.500000px;}
.y2_c00491{bottom:1041.450000px;}
.y1_c00491{bottom:1044.000000px;}
.h2_c00491{height:42.000000px;}
.h3_c00491{height:60.000000px;}
.h1_c00491{height:1166.250000px;}
.h0_c00491{height:1166.400056px;}
.w0_c00491{width:920.879975px;}
.w1_c00491{width:921.000000px;}
.x0_c00491{left:0.000000px;}
.x52_c00491{left:108.150000px;}
.x2a_c00491{left:109.200000px;}
.x8_c00491{left:110.850000px;}
.x6c_c00491{left:143.100000px;}
.x53_c00491{left:145.650000px;}
.x5d_c00491{left:146.700000px;}
.x77_c00491{left:148.200000px;}
.x2d_c00491{left:150.150000px;}
.x33_c00491{left:151.500000px;}
.x24_c00491{left:155.100000px;}
.x9_c00491{left:156.150000px;}
.x2b_c00491{left:159.300000px;}
.x32_c00491{left:160.800000px;}
.x45_c00491{left:162.750000px;}
.x65_c00491{left:164.550000px;}
.x3e_c00491{left:166.500000px;}
.x12_c00491{left:168.150000px;}
.x4a_c00491{left:170.250000px;}
.x70_c00491{left:171.750000px;}
.x43_c00491{left:173.850000px;}
.x40_c00491{left:175.050000px;}
.x64_c00491{left:176.100000px;}
.x54_c00491{left:183.750000px;}
.x6d_c00491{left:186.600000px;}
.x35_c00491{left:188.550000px;}
.x5b_c00491{left:190.050000px;}
.x7b_c00491{left:191.850000px;}
.x14_c00491{left:194.850000px;}
.x1d_c00491{left:197.400000px;}
.x73_c00491{left:198.750000px;}
.x25_c00491{left:200.100000px;}
.x3a_c00491{left:201.900000px;}
.xa_c00491{left:202.950000px;}
.x41_c00491{left:204.150000px;}
.x13_c00491{left:205.650000px;}
.x1f_c00491{left:207.900000px;}
.x4e_c00491{left:209.400000px;}
.x5e_c00491{left:210.450000px;}
.x44_c00491{left:211.950000px;}
.x69_c00491{left:213.300000px;}
.x21_c00491{left:214.950000px;}
.x4c_c00491{left:216.300000px;}
.x2e_c00491{left:218.250000px;}
.xd_c00491{left:220.500000px;}
.x15_c00491{left:222.600000px;}
.x62_c00491{left:224.550000px;}
.x66_c00491{left:226.800000px;}
.x28_c00491{left:228.300000px;}
.x6a_c00491{left:229.500000px;}
.x1c_c00491{left:231.300000px;}
.x5c_c00491{left:232.500000px;}
.x3b_c00491{left:233.550000px;}
.x16_c00491{left:234.900000px;}
.x1e_c00491{left:236.700000px;}
.x51_c00491{left:239.100000px;}
.x57_c00491{left:240.900000px;}
.xb_c00491{left:242.850000px;}
.x3f_c00491{left:244.350000px;}
.x20_c00491{left:246.750000px;}
.xc_c00491{left:249.750000px;}
.x5f_c00491{left:251.100000px;}
.x4b_c00491{left:252.300000px;}
.x22_c00491{left:254.100000px;}
.x4d_c00491{left:255.600000px;}
.xe_c00491{left:258.000000px;}
.x2c_c00491{left:260.850000px;}
.x74_c00491{left:265.050000px;}
.x29_c00491{left:267.600000px;}
.x46_c00491{left:269.700000px;}
.x17_c00491{left:271.200000px;}
.x3c_c00491{left:272.400000px;}
.x37_c00491{left:273.450000px;}
.x34_c00491{left:275.700000px;}
.x42_c00491{left:279.750000px;}
.x68_c00491{left:281.250000px;}
.x56_c00491{left:285.450000px;}
.x36_c00491{left:287.100000px;}
.x67_c00491{left:288.300000px;}
.x6e_c00491{left:291.000000px;}
.x58_c00491{left:292.350000px;}
.x2f_c00491{left:294.900000px;}
.xf5_c00491{left:296.700000px;}
.x18_c00491{left:300.750000px;}
.x78_c00491{left:303.450000px;}
.xf_c00491{left:307.350000px;}
.x75_c00491{left:309.300000px;}
.x55_c00491{left:313.500000px;}
.x1_c00491{left:314.700000px;}
.x26_c00491{left:316.800000px;}
.x38_c00491{left:321.750000px;}
.x3d_c00491{left:322.800000px;}
.x63_c00491{left:324.750000px;}
.x59_c00491{left:325.800000px;}
.x6b_c00491{left:329.250000px;}
.xf6_c00491{left:333.300000px;}
.x76_c00491{left:334.800000px;}
.x71_c00491{left:340.350000px;}
.x47_c00491{left:341.400000px;}
.x6f_c00491{left:343.950000px;}
.x30_c00491{left:347.400000px;}
.x19_c00491{left:349.350000px;}
.x4f_c00491{left:355.500000px;}
.x23_c00491{left:358.500000px;}
.x27_c00491{left:359.700000px;}
.x10_c00491{left:361.350000px;}
.x48_c00491{left:364.500000px;}
.x60_c00491{left:365.550000px;}
.x39_c00491{left:366.750000px;}
.x1a_c00491{left:370.950000px;}
.x5a_c00491{left:375.900000px;}
.x2_c00491{left:387.450000px;}
.x1b_c00491{left:389.250000px;}
.xf7_c00491{left:393.450000px;}
.x31_c00491{left:394.500000px;}
.x72_c00491{left:396.450000px;}
.x61_c00491{left:399.000000px;}
.x7a_c00491{left:400.350000px;}
.x79_c00491{left:403.200000px;}
.x49_c00491{left:406.200000px;}
.x50_c00491{left:408.000000px;}
.x11_c00491{left:413.550000px;}
.x3_c00491{left:417.300000px;}
.x4_c00491{left:437.400000px;}
.x9e_c00491{left:451.050000px;}
.x7c_c00491{left:452.100000px;}
.xe2_c00491{left:477.750000px;}
.xc3_c00491{left:478.800000px;}
.xf1_c00491{left:480.000000px;}
.x5_c00491{left:488.550000px;}
.xc9_c00491{left:489.900000px;}
.xee_c00491{left:491.100000px;}
.x6_c00491{left:508.650000px;}
.xe7_c00491{left:509.700000px;}
.x7d_c00491{left:512.250000px;}
.xed_c00491{left:513.900000px;}
.xe1_c00491{left:515.550000px;}
.xc5_c00491{left:518.850000px;}
.xbe_c00491{left:520.200000px;}
.x81_c00491{left:521.250000px;}
.x84_c00491{left:523.350000px;}
.xf2_c00491{left:525.600000px;}
.xdf_c00491{left:526.950000px;}
.xcc_c00491{left:529.800000px;}
.xa5_c00491{left:532.050000px;}
.xbd_c00491{left:533.100000px;}
.x89_c00491{left:535.500000px;}
.x92_c00491{left:536.700000px;}
.xf8_c00491{left:539.700000px;}
.xe8_c00491{left:541.050000px;}
.xd6_c00491{left:542.850000px;}
.xd1_c00491{left:545.850000px;}
.xb6_c00491{left:547.950000px;}
.xc4_c00491{left:549.300000px;}
.xca_c00491{left:552.150000px;}
.xf9_c00491{left:553.350000px;}
.xe9_c00491{left:554.400000px;}
.xdc_c00491{left:555.750000px;}
.xd2_c00491{left:557.400000px;}
.xaa_c00491{left:558.450000px;}
.x8d_c00491{left:561.600000px;}
.xb1_c00491{left:562.650000px;}
.x82_c00491{left:565.500000px;}
.xe3_c00491{left:566.700000px;}
.x98_c00491{left:569.100000px;}
.x8a_c00491{left:571.200000px;}
.x93_c00491{left:572.400000px;}
.x9d_c00491{left:573.450000px;}
.x9f_c00491{left:575.250000px;}
.xbf_c00491{left:577.800000px;}
.xa6_c00491{left:580.350000px;}
.xb7_c00491{left:582.450000px;}
.xd7_c00491{left:586.650000px;}
.x8e_c00491{left:588.600000px;}
.xab_c00491{left:589.800000px;}
.xd5_c00491{left:591.150000px;}
.xb2_c00491{left:592.950000px;}
.x7e_c00491{left:594.750000px;}
.xf4_c00491{left:598.500000px;}
.x8f_c00491{left:600.450000px;}
.xa0_c00491{left:602.550000px;}
.xb9_c00491{left:604.200000px;}
.xb3_c00491{left:605.550000px;}
.x8b_c00491{left:607.950000px;}
.x99_c00491{left:611.250000px;}
.xb0_c00491{left:613.500000px;}
.xa1_c00491{left:615.450000px;}
.x83_c00491{left:616.950000px;}
.xcd_c00491{left:620.100000px;}
.xec_c00491{left:622.200000px;}
.x85_c00491{left:623.400000px;}
.xe0_c00491{left:625.650000px;}
.xea_c00491{left:627.600000px;}
.xd3_c00491{left:630.450000px;}
.xda_c00491{left:631.500000px;}
.x94_c00491{left:632.850000px;}
.x86_c00491{left:635.700000px;}
.xc6_c00491{left:637.050000px;}
.xb8_c00491{left:638.250000px;}
.xdd_c00491{left:641.100000px;}
.xac_c00491{left:645.600000px;}
.xd8_c00491{left:651.150000px;}
.x8c_c00491{left:652.950000px;}
.x9a_c00491{left:654.750000px;}
.xce_c00491{left:655.800000px;}
.xba_c00491{left:658.500000px;}
.xf3_c00491{left:660.600000px;}
.x95_c00491{left:661.950000px;}
.xb4_c00491{left:663.150000px;}
.xeb_c00491{left:664.650000px;}
.xcf_c00491{left:665.700000px;}
.xa7_c00491{left:667.200000px;}
.xdb_c00491{left:669.600000px;}
.x90_c00491{left:670.650000px;}
.xe6_c00491{left:671.700000px;}
.xa2_c00491{left:673.050000px;}
.xd9_c00491{left:676.350000px;}
.xc7_c00491{left:677.400000px;}
.xc0_c00491{left:680.400000px;}
.xe4_c00491{left:684.600000px;}
.xad_c00491{left:686.250000px;}
.xbb_c00491{left:689.850000px;}
.x96_c00491{left:691.500000px;}
.x9b_c00491{left:693.300000px;}
.x7f_c00491{left:694.800000px;}
.xa8_c00491{left:696.750000px;}
.xef_c00491{left:699.450000px;}
.xa3_c00491{left:701.100000px;}
.x87_c00491{left:702.300000px;}
.xde_c00491{left:705.150000px;}
.xe5_c00491{left:710.100000px;}
.xd0_c00491{left:712.500000px;}
.xb5_c00491{left:715.350000px;}
.xc2_c00491{left:716.700000px;}
.x91_c00491{left:718.500000px;}
.xcb_c00491{left:722.850000px;}
.xd4_c00491{left:724.350000px;}
.x97_c00491{left:727.200000px;}
.xf0_c00491{left:729.750000px;}
.xc1_c00491{left:731.550000px;}
.xae_c00491{left:735.900000px;}
.xbc_c00491{left:742.350000px;}
.x80_c00491{left:744.150000px;}
.x9c_c00491{left:745.800000px;}
.x88_c00491{left:747.600000px;}
.xa9_c00491{left:750.150000px;}
.x7_c00491{left:752.700000px;}
.xa4_c00491{left:756.150000px;}
.xc8_c00491{left:758.400000px;}
.xaf_c00491{left:763.650000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws2_c00491{word-spacing:-5.222222pt;}
.ws0_c00491{word-spacing:-3.391067pt;}
.ws3_c00491{word-spacing:0.000000pt;}
.ws1_c00491{word-spacing:3.534823pt;}
.fs0_c00491{font-size:37.333333pt;}
.fs1_c00491{font-size:53.333333pt;}
.y0_c00491{bottom:0.000000pt;}
.y6c_c00491{bottom:131.466667pt;}
.y6b_c00491{bottom:161.600000pt;}
.y3c_c00491{bottom:162.000000pt;}
.y6a_c00491{bottom:173.733333pt;}
.y3b_c00491{bottom:175.066667pt;}
.y3a_c00491{bottom:187.200000pt;}
.y69_c00491{bottom:199.733333pt;}
.y39_c00491{bottom:200.933333pt;}
.y68_c00491{bottom:212.933333pt;}
.y38_c00491{bottom:214.000000pt;}
.y67_c00491{bottom:225.466667pt;}
.y37_c00491{bottom:226.533333pt;}
.y66_c00491{bottom:238.533333pt;}
.y36_c00491{bottom:239.066667pt;}
.y65_c00491{bottom:251.600000pt;}
.y35_c00491{bottom:252.533333pt;}
.y64_c00491{bottom:264.400000pt;}
.y34_c00491{bottom:264.666667pt;}
.y63_c00491{bottom:277.466667pt;}
.y33_c00491{bottom:278.000000pt;}
.y62_c00491{bottom:290.266667pt;}
.y32_c00491{bottom:290.533333pt;}
.y61_c00491{bottom:303.066667pt;}
.y31_c00491{bottom:303.333333pt;}
.y60_c00491{bottom:315.866667pt;}
.y30_c00491{bottom:316.800000pt;}
.y5f_c00491{bottom:329.200000pt;}
.y2f_c00491{bottom:329.333333pt;}
.y5e_c00491{bottom:342.000000pt;}
.y2e_c00491{bottom:342.133333pt;}
.y5d_c00491{bottom:354.800000pt;}
.y2d_c00491{bottom:355.200000pt;}
.y5c_c00491{bottom:367.600000pt;}
.y2c_c00491{bottom:368.000000pt;}
.y5b_c00491{bottom:380.666667pt;}
.y2b_c00491{bottom:380.800000pt;}
.y2a_c00491{bottom:393.600000pt;}
.y5a_c00491{bottom:393.733333pt;}
.y59_c00491{bottom:406.533333pt;}
.y29_c00491{bottom:406.666667pt;}
.y28_c00491{bottom:419.466667pt;}
.y58_c00491{bottom:419.600000pt;}
.y27_c00491{bottom:432.000000pt;}
.y57_c00491{bottom:432.666667pt;}
.y26_c00491{bottom:445.066667pt;}
.y56_c00491{bottom:445.466667pt;}
.y25_c00491{bottom:457.600000pt;}
.y55_c00491{bottom:458.266667pt;}
.y24_c00491{bottom:471.066667pt;}
.y54_c00491{bottom:471.333333pt;}
.y23_c00491{bottom:483.600000pt;}
.y53_c00491{bottom:484.533333pt;}
.y22_c00491{bottom:496.666667pt;}
.y52_c00491{bottom:497.066667pt;}
.y21_c00491{bottom:509.466667pt;}
.y51_c00491{bottom:510.133333pt;}
.y20_c00491{bottom:522.533333pt;}
.y50_c00491{bottom:522.933333pt;}
.y1f_c00491{bottom:535.466667pt;}
.y4f_c00491{bottom:536.266667pt;}
.y1e_c00491{bottom:548.533333pt;}
.y4e_c00491{bottom:548.800000pt;}
.y1d_c00491{bottom:561.600000pt;}
.y4d_c00491{bottom:561.866667pt;}
.y1c_c00491{bottom:574.666667pt;}
.y1b_c00491{bottom:587.466667pt;}
.y1a_c00491{bottom:600.266667pt;}
.y4c_c00491{bottom:600.666667pt;}
.y19_c00491{bottom:613.066667pt;}
.y4b_c00491{bottom:613.466667pt;}
.y18_c00491{bottom:625.866667pt;}
.y4a_c00491{bottom:626.533333pt;}
.y17_c00491{bottom:638.666667pt;}
.y49_c00491{bottom:639.333333pt;}
.y16_c00491{bottom:651.200000pt;}
.y48_c00491{bottom:657.600000pt;}
.y15_c00491{bottom:664.266667pt;}
.y47_c00491{bottom:673.600000pt;}
.y14_c00491{bottom:677.200000pt;}
.y13_c00491{bottom:690.266667pt;}
.y12_c00491{bottom:703.066667pt;}
.y11_c00491{bottom:716.133333pt;}
.y10_c00491{bottom:729.333333pt;}
.y46_c00491{bottom:736.533333pt;}
.yf_c00491{bottom:742.133333pt;}
.y45_c00491{bottom:748.666667pt;}
.ye_c00491{bottom:754.933333pt;}
.y44_c00491{bottom:761.466667pt;}
.yd_c00491{bottom:768.000000pt;}
.y43_c00491{bottom:774.533333pt;}
.yc_c00491{bottom:780.800000pt;}
.y42_c00491{bottom:786.666667pt;}
.yb_c00491{bottom:793.600000pt;}
.y41_c00491{bottom:799.733333pt;}
.ya_c00491{bottom:806.400000pt;}
.y40_c00491{bottom:817.866667pt;}
.y9_c00491{bottom:819.466667pt;}
.y8_c00491{bottom:832.266667pt;}
.y7_c00491{bottom:845.066667pt;}
.y3f_c00491{bottom:846.400000pt;}
.y6_c00491{bottom:857.866667pt;}
.y3e_c00491{bottom:859.466667pt;}
.y5_c00491{bottom:871.466667pt;}
.y3d_c00491{bottom:877.733333pt;}
.y4_c00491{bottom:884.266667pt;}
.y3_c00491{bottom:897.333333pt;}
.y2_c00491{bottom:925.733333pt;}
.y1_c00491{bottom:928.000000pt;}
.h2_c00491{height:37.333333pt;}
.h3_c00491{height:53.333333pt;}
.h1_c00491{height:1036.666667pt;}
.h0_c00491{height:1036.800049pt;}
.w0_c00491{width:818.559977pt;}
.w1_c00491{width:818.666667pt;}
.x0_c00491{left:0.000000pt;}
.x52_c00491{left:96.133333pt;}
.x2a_c00491{left:97.066667pt;}
.x8_c00491{left:98.533333pt;}
.x6c_c00491{left:127.200000pt;}
.x53_c00491{left:129.466667pt;}
.x5d_c00491{left:130.400000pt;}
.x77_c00491{left:131.733333pt;}
.x2d_c00491{left:133.466667pt;}
.x33_c00491{left:134.666667pt;}
.x24_c00491{left:137.866667pt;}
.x9_c00491{left:138.800000pt;}
.x2b_c00491{left:141.600000pt;}
.x32_c00491{left:142.933333pt;}
.x45_c00491{left:144.666667pt;}
.x65_c00491{left:146.266667pt;}
.x3e_c00491{left:148.000000pt;}
.x12_c00491{left:149.466667pt;}
.x4a_c00491{left:151.333333pt;}
.x70_c00491{left:152.666667pt;}
.x43_c00491{left:154.533333pt;}
.x40_c00491{left:155.600000pt;}
.x64_c00491{left:156.533333pt;}
.x54_c00491{left:163.333333pt;}
.x6d_c00491{left:165.866667pt;}
.x35_c00491{left:167.600000pt;}
.x5b_c00491{left:168.933333pt;}
.x7b_c00491{left:170.533333pt;}
.x14_c00491{left:173.200000pt;}
.x1d_c00491{left:175.466667pt;}
.x73_c00491{left:176.666667pt;}
.x25_c00491{left:177.866667pt;}
.x3a_c00491{left:179.466667pt;}
.xa_c00491{left:180.400000pt;}
.x41_c00491{left:181.466667pt;}
.x13_c00491{left:182.800000pt;}
.x1f_c00491{left:184.800000pt;}
.x4e_c00491{left:186.133333pt;}
.x5e_c00491{left:187.066667pt;}
.x44_c00491{left:188.400000pt;}
.x69_c00491{left:189.600000pt;}
.x21_c00491{left:191.066667pt;}
.x4c_c00491{left:192.266667pt;}
.x2e_c00491{left:194.000000pt;}
.xd_c00491{left:196.000000pt;}
.x15_c00491{left:197.866667pt;}
.x62_c00491{left:199.600000pt;}
.x66_c00491{left:201.600000pt;}
.x28_c00491{left:202.933333pt;}
.x6a_c00491{left:204.000000pt;}
.x1c_c00491{left:205.600000pt;}
.x5c_c00491{left:206.666667pt;}
.x3b_c00491{left:207.600000pt;}
.x16_c00491{left:208.800000pt;}
.x1e_c00491{left:210.400000pt;}
.x51_c00491{left:212.533333pt;}
.x57_c00491{left:214.133333pt;}
.xb_c00491{left:215.866667pt;}
.x3f_c00491{left:217.200000pt;}
.x20_c00491{left:219.333333pt;}
.xc_c00491{left:222.000000pt;}
.x5f_c00491{left:223.200000pt;}
.x4b_c00491{left:224.266667pt;}
.x22_c00491{left:225.866667pt;}
.x4d_c00491{left:227.200000pt;}
.xe_c00491{left:229.333333pt;}
.x2c_c00491{left:231.866667pt;}
.x74_c00491{left:235.600000pt;}
.x29_c00491{left:237.866667pt;}
.x46_c00491{left:239.733333pt;}
.x17_c00491{left:241.066667pt;}
.x3c_c00491{left:242.133333pt;}
.x37_c00491{left:243.066667pt;}
.x34_c00491{left:245.066667pt;}
.x42_c00491{left:248.666667pt;}
.x68_c00491{left:250.000000pt;}
.x56_c00491{left:253.733333pt;}
.x36_c00491{left:255.200000pt;}
.x67_c00491{left:256.266667pt;}
.x6e_c00491{left:258.666667pt;}
.x58_c00491{left:259.866667pt;}
.x2f_c00491{left:262.133333pt;}
.xf5_c00491{left:263.733333pt;}
.x18_c00491{left:267.333333pt;}
.x78_c00491{left:269.733333pt;}
.xf_c00491{left:273.200000pt;}
.x75_c00491{left:274.933333pt;}
.x55_c00491{left:278.666667pt;}
.x1_c00491{left:279.733333pt;}
.x26_c00491{left:281.600000pt;}
.x38_c00491{left:286.000000pt;}
.x3d_c00491{left:286.933333pt;}
.x63_c00491{left:288.666667pt;}
.x59_c00491{left:289.600000pt;}
.x6b_c00491{left:292.666667pt;}
.xf6_c00491{left:296.266667pt;}
.x76_c00491{left:297.600000pt;}
.x71_c00491{left:302.533333pt;}
.x47_c00491{left:303.466667pt;}
.x6f_c00491{left:305.733333pt;}
.x30_c00491{left:308.800000pt;}
.x19_c00491{left:310.533333pt;}
.x4f_c00491{left:316.000000pt;}
.x23_c00491{left:318.666667pt;}
.x27_c00491{left:319.733333pt;}
.x10_c00491{left:321.200000pt;}
.x48_c00491{left:324.000000pt;}
.x60_c00491{left:324.933333pt;}
.x39_c00491{left:326.000000pt;}
.x1a_c00491{left:329.733333pt;}
.x5a_c00491{left:334.133333pt;}
.x2_c00491{left:344.400000pt;}
.x1b_c00491{left:346.000000pt;}
.xf7_c00491{left:349.733333pt;}
.x31_c00491{left:350.666667pt;}
.x72_c00491{left:352.400000pt;}
.x61_c00491{left:354.666667pt;}
.x7a_c00491{left:355.866667pt;}
.x79_c00491{left:358.400000pt;}
.x49_c00491{left:361.066667pt;}
.x50_c00491{left:362.666667pt;}
.x11_c00491{left:367.600000pt;}
.x3_c00491{left:370.933333pt;}
.x4_c00491{left:388.800000pt;}
.x9e_c00491{left:400.933333pt;}
.x7c_c00491{left:401.866667pt;}
.xe2_c00491{left:424.666667pt;}
.xc3_c00491{left:425.600000pt;}
.xf1_c00491{left:426.666667pt;}
.x5_c00491{left:434.266667pt;}
.xc9_c00491{left:435.466667pt;}
.xee_c00491{left:436.533333pt;}
.x6_c00491{left:452.133333pt;}
.xe7_c00491{left:453.066667pt;}
.x7d_c00491{left:455.333333pt;}
.xed_c00491{left:456.800000pt;}
.xe1_c00491{left:458.266667pt;}
.xc5_c00491{left:461.200000pt;}
.xbe_c00491{left:462.400000pt;}
.x81_c00491{left:463.333333pt;}
.x84_c00491{left:465.200000pt;}
.xf2_c00491{left:467.200000pt;}
.xdf_c00491{left:468.400000pt;}
.xcc_c00491{left:470.933333pt;}
.xa5_c00491{left:472.933333pt;}
.xbd_c00491{left:473.866667pt;}
.x89_c00491{left:476.000000pt;}
.x92_c00491{left:477.066667pt;}
.xf8_c00491{left:479.733333pt;}
.xe8_c00491{left:480.933333pt;}
.xd6_c00491{left:482.533333pt;}
.xd1_c00491{left:485.200000pt;}
.xb6_c00491{left:487.066667pt;}
.xc4_c00491{left:488.266667pt;}
.xca_c00491{left:490.800000pt;}
.xf9_c00491{left:491.866667pt;}
.xe9_c00491{left:492.800000pt;}
.xdc_c00491{left:494.000000pt;}
.xd2_c00491{left:495.466667pt;}
.xaa_c00491{left:496.400000pt;}
.x8d_c00491{left:499.200000pt;}
.xb1_c00491{left:500.133333pt;}
.x82_c00491{left:502.666667pt;}
.xe3_c00491{left:503.733333pt;}
.x98_c00491{left:505.866667pt;}
.x8a_c00491{left:507.733333pt;}
.x93_c00491{left:508.800000pt;}
.x9d_c00491{left:509.733333pt;}
.x9f_c00491{left:511.333333pt;}
.xbf_c00491{left:513.600000pt;}
.xa6_c00491{left:515.866667pt;}
.xb7_c00491{left:517.733333pt;}
.xd7_c00491{left:521.466667pt;}
.x8e_c00491{left:523.200000pt;}
.xab_c00491{left:524.266667pt;}
.xd5_c00491{left:525.466667pt;}
.xb2_c00491{left:527.066667pt;}
.x7e_c00491{left:528.666667pt;}
.xf4_c00491{left:532.000000pt;}
.x8f_c00491{left:533.733333pt;}
.xa0_c00491{left:535.600000pt;}
.xb9_c00491{left:537.066667pt;}
.xb3_c00491{left:538.266667pt;}
.x8b_c00491{left:540.400000pt;}
.x99_c00491{left:543.333333pt;}
.xb0_c00491{left:545.333333pt;}
.xa1_c00491{left:547.066667pt;}
.x83_c00491{left:548.400000pt;}
.xcd_c00491{left:551.200000pt;}
.xec_c00491{left:553.066667pt;}
.x85_c00491{left:554.133333pt;}
.xe0_c00491{left:556.133333pt;}
.xea_c00491{left:557.866667pt;}
.xd3_c00491{left:560.400000pt;}
.xda_c00491{left:561.333333pt;}
.x94_c00491{left:562.533333pt;}
.x86_c00491{left:565.066667pt;}
.xc6_c00491{left:566.266667pt;}
.xb8_c00491{left:567.333333pt;}
.xdd_c00491{left:569.866667pt;}
.xac_c00491{left:573.866667pt;}
.xd8_c00491{left:578.800000pt;}
.x8c_c00491{left:580.400000pt;}
.x9a_c00491{left:582.000000pt;}
.xce_c00491{left:582.933333pt;}
.xba_c00491{left:585.333333pt;}
.xf3_c00491{left:587.200000pt;}
.x95_c00491{left:588.400000pt;}
.xb4_c00491{left:589.466667pt;}
.xeb_c00491{left:590.800000pt;}
.xcf_c00491{left:591.733333pt;}
.xa7_c00491{left:593.066667pt;}
.xdb_c00491{left:595.200000pt;}
.x90_c00491{left:596.133333pt;}
.xe6_c00491{left:597.066667pt;}
.xa2_c00491{left:598.266667pt;}
.xd9_c00491{left:601.200000pt;}
.xc7_c00491{left:602.133333pt;}
.xc0_c00491{left:604.800000pt;}
.xe4_c00491{left:608.533333pt;}
.xad_c00491{left:610.000000pt;}
.xbb_c00491{left:613.200000pt;}
.x96_c00491{left:614.666667pt;}
.x9b_c00491{left:616.266667pt;}
.x7f_c00491{left:617.600000pt;}
.xa8_c00491{left:619.333333pt;}
.xef_c00491{left:621.733333pt;}
.xa3_c00491{left:623.200000pt;}
.x87_c00491{left:624.266667pt;}
.xde_c00491{left:626.800000pt;}
.xe5_c00491{left:631.200000pt;}
.xd0_c00491{left:633.333333pt;}
.xb5_c00491{left:635.866667pt;}
.xc2_c00491{left:637.066667pt;}
.x91_c00491{left:638.666667pt;}
.xcb_c00491{left:642.533333pt;}
.xd4_c00491{left:643.866667pt;}
.x97_c00491{left:646.400000pt;}
.xf0_c00491{left:648.666667pt;}
.xc1_c00491{left:650.266667pt;}
.xae_c00491{left:654.133333pt;}
.xbc_c00491{left:659.866667pt;}
.x80_c00491{left:661.466667pt;}
.x9c_c00491{left:662.933333pt;}
.x88_c00491{left:664.533333pt;}
.xa9_c00491{left:666.800000pt;}
.x7_c00491{left:669.066667pt;}
.xa4_c00491{left:672.133333pt;}
.xc8_c00491{left:674.133333pt;}
.xaf_c00491{left:678.800000pt;}
}





/* 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_c00492 {
    display:none;
  }
  .loading-indicator_c00492.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00492 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_c00492 { 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_c00492" -> "#page-container .classname_c00492")
 */
.pf_c00492 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00492 { /* 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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00492 { /* 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_c00492 { /* 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_c00492 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00492 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00492 {overflow:visible;}
  }
}
.c_c00492 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00492 { /* 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_c00492:after { /* webkit #35443 */
  content: '';
}
.t_c00492:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00492 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 */
}
.__c00492 { /* 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_c00492 { /* info for Javascript */
  display:none;
}
.l_c00492 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00492 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00492 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00492: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_c00492 {
    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_c00492.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00492.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_c00492 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00492{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00492;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.000000;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;}
.m81_c00492{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00492{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m41_c00492{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00492{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00492{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00492{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00492{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00492{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00492{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m89_c00492{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00492{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.md0_c00492{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m30_c00492{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m46_c00492{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00492{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00492{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m90_c00492{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m2_c00492{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00492{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.md3_c00492{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00492{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m21_c00492{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m94_c00492{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m35_c00492{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00492{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m98_c00492{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00492{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m99_c00492{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00492{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m66_c00492{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00492{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m92_c00492{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m62_c00492{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00492{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m12_c00492{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00492{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m49_c00492{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00492{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m86_c00492{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m43_c00492{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00492{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m39_c00492{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m56_c00492{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00492{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00492{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9e_c00492{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m17_c00492{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00492{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00492{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m87_c00492{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m38_c00492{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00492{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m50_c00492{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00492{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00492{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00492{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m88_c00492{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00492{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00492{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00492{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m42_c00492{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.m54_c00492{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00492{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m77_c00492{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00492{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00492{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m60_c00492{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00492{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00492{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m70_c00492{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00492{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mce_c00492{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mf_c00492{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m83_c00492{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m37_c00492{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mab_c00492{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00492{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00492{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m5a_c00492{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m68_c00492{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00492{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m61_c00492{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m84_c00492{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m57_c00492{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00492{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma_c00492{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m15_c00492{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00492{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mad_c00492{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00492{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m48_c00492{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m73_c00492{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.maf_c00492{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m80_c00492{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m58_c00492{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00492{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m11_c00492{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.md1_c00492{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00492{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m75_c00492{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m69_c00492{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m59_c00492{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00492{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mba_c00492{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m93_c00492{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00492{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m64_c00492{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00492{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00492{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00492{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00492{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00492{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.md2_c00492{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m97_c00492{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00492{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m76_c00492{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m13_c00492{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m52_c00492{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m3_c00492{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m67_c00492{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m25_c00492{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m31_c00492{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mac_c00492{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00492{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00492{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00492{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m85_c00492{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m96_c00492{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m74_c00492{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.maa_c00492{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m44_c00492{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00492{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00492{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00492{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00492{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m34_c00492{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00492{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m47_c00492{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m51_c00492{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.ma6_c00492{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m16_c00492{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00492{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m91_c00492{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00492{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00492{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m33_c00492{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m45_c00492{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m95_c00492{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00492{transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305500,0.000000,0.000000,0.250000,0,0);}
.mca_c00492{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00492{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00492{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.mae_c00492{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00492{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00492{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00492{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m40_c00492{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00492{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m36_c00492{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m65_c00492{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00492{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00492{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m63_c00492{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00492{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m78_c00492{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00492{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m72_c00492{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00492{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00492{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00492{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00492{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00492{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00492{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00492{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m71_c00492{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00492{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m82_c00492{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m53_c00492{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m55_c00492{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{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__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00492{word-spacing:-9.068368px;}
.ws3_c00492{word-spacing:-3.836795px;}
.ws1_c00492{word-spacing:-2.074766px;}
.ws6_c00492{word-spacing:-1.884026px;}
.ws8_c00492{word-spacing:0.000000px;}
.ws7_c00492{word-spacing:0.983903px;}
.ws0_c00492{word-spacing:1.059003px;}
.ws4_c00492{word-spacing:9.196901px;}
.ws5_c00492{word-spacing:13.250000px;}
._0_c00492{width:53.625755px;}
.fc0_c00492{color:transparent;}
.fs2_c00492{font-size:36.000000px;}
.fs1_c00492{font-size:42.000000px;}
.fs0_c00492{font-size:60.000000px;}
.y0_c00492{bottom:0.000000px;}
.y3d_c00492{bottom:151.650000px;}
.y6f_c00492{bottom:152.250000px;}
.y3c_c00492{bottom:162.750000px;}
.y6e_c00492{bottom:164.100000px;}
.y3b_c00492{bottom:196.500000px;}
.y6d_c00492{bottom:197.250000px;}
.y3a_c00492{bottom:211.650000px;}
.y6c_c00492{bottom:212.400000px;}
.y39_c00492{bottom:226.050000px;}
.y6b_c00492{bottom:226.500000px;}
.y38_c00492{bottom:240.600000px;}
.y6a_c00492{bottom:240.900000px;}
.y37_c00492{bottom:255.000000px;}
.y69_c00492{bottom:255.900000px;}
.y36_c00492{bottom:269.400000px;}
.y68_c00492{bottom:272.100000px;}
.y35_c00492{bottom:283.800000px;}
.y67_c00492{bottom:298.200000px;}
.y34_c00492{bottom:298.500000px;}
.y33_c00492{bottom:312.900000px;}
.y66_c00492{bottom:313.650000px;}
.y32_c00492{bottom:327.300000px;}
.y65_c00492{bottom:328.050000px;}
.y31_c00492{bottom:342.000000px;}
.y64_c00492{bottom:342.750000px;}
.y30_c00492{bottom:356.400000px;}
.y63_c00492{bottom:357.150000px;}
.y2f_c00492{bottom:370.800000px;}
.y62_c00492{bottom:371.850000px;}
.y2e_c00492{bottom:385.500000px;}
.y61_c00492{bottom:386.250000px;}
.y2d_c00492{bottom:400.350000px;}
.y60_c00492{bottom:400.650000px;}
.y2c_c00492{bottom:414.750000px;}
.y5f_c00492{bottom:429.450000px;}
.y2b_c00492{bottom:429.750000px;}
.y2a_c00492{bottom:443.850000px;}
.y5e_c00492{bottom:444.300000px;}
.y29_c00492{bottom:458.250000px;}
.y5d_c00492{bottom:459.000000px;}
.y28_c00492{bottom:472.650000px;}
.y5c_c00492{bottom:473.700000px;}
.y27_c00492{bottom:487.050000px;}
.y5b_c00492{bottom:487.800000px;}
.y26_c00492{bottom:501.450000px;}
.y5a_c00492{bottom:502.650000px;}
.y25_c00492{bottom:515.850000px;}
.y59_c00492{bottom:517.050000px;}
.y24_c00492{bottom:530.700000px;}
.y58_c00492{bottom:531.750000px;}
.y23_c00492{bottom:545.100000px;}
.y22_c00492{bottom:559.800000px;}
.y57_c00492{bottom:573.900000px;}
.y21_c00492{bottom:574.200000px;}
.y20_c00492{bottom:588.600000px;}
.y56_c00492{bottom:603.300000px;}
.y1f_c00492{bottom:603.450000px;}
.y55_c00492{bottom:617.700000px;}
.y1e_c00492{bottom:617.850000px;}
.y1d_c00492{bottom:632.550000px;}
.y1c_c00492{bottom:646.950000px;}
.y1b_c00492{bottom:661.350000px;}
.y1a_c00492{bottom:676.050000px;}
.y54_c00492{bottom:689.700000px;}
.y19_c00492{bottom:690.450000px;}
.y53_c00492{bottom:704.550000px;}
.y18_c00492{bottom:705.150000px;}
.y52_c00492{bottom:718.950000px;}
.y17_c00492{bottom:719.850000px;}
.y51_c00492{bottom:734.100000px;}
.y16_c00492{bottom:734.250000px;}
.y50_c00492{bottom:748.500000px;}
.y15_c00492{bottom:748.950000px;}
.y4f_c00492{bottom:762.900000px;}
.y14_c00492{bottom:763.350000px;}
.y4e_c00492{bottom:777.600000px;}
.y13_c00492{bottom:778.050000px;}
.y4d_c00492{bottom:791.700000px;}
.y12_c00492{bottom:792.450000px;}
.y4c_c00492{bottom:806.100000px;}
.y11_c00492{bottom:806.850000px;}
.y4b_c00492{bottom:820.800000px;}
.y10_c00492{bottom:821.550000px;}
.y4a_c00492{bottom:835.200000px;}
.yf_c00492{bottom:835.950000px;}
.y49_c00492{bottom:849.900000px;}
.ye_c00492{bottom:850.650000px;}
.y48_c00492{bottom:864.300000px;}
.yd_c00492{bottom:865.050000px;}
.y47_c00492{bottom:879.150000px;}
.yc_c00492{bottom:879.450000px;}
.y46_c00492{bottom:892.500000px;}
.yb_c00492{bottom:893.850000px;}
.y45_c00492{bottom:907.200000px;}
.ya_c00492{bottom:908.850000px;}
.y44_c00492{bottom:921.900000px;}
.y9_c00492{bottom:923.550000px;}
.y43_c00492{bottom:936.750000px;}
.y8_c00492{bottom:937.950000px;}
.y42_c00492{bottom:950.850000px;}
.y7_c00492{bottom:952.350000px;}
.y41_c00492{bottom:965.550000px;}
.y6_c00492{bottom:967.050000px;}
.y40_c00492{bottom:980.250000px;}
.y5_c00492{bottom:981.450000px;}
.y3f_c00492{bottom:994.800000px;}
.y4_c00492{bottom:995.850000px;}
.y3e_c00492{bottom:1009.500000px;}
.y3_c00492{bottom:1010.550000px;}
.y2_c00492{bottom:1045.050000px;}
.y1_c00492{bottom:1045.800000px;}
.h4_c00492{height:36.000000px;}
.h3_c00492{height:42.000000px;}
.h2_c00492{height:60.000000px;}
.h1_c00492{height:1166.250000px;}
.h0_c00492{height:1166.400056px;}
.w0_c00492{width:920.879975px;}
.w1_c00492{width:921.000000px;}
.x0_c00492{left:0.000000px;}
.x93_c00492{left:142.800000px;}
.x1_c00492{left:149.700000px;}
.x92_c00492{left:161.250000px;}
.x8a_c00492{left:171.000000px;}
.x6c_c00492{left:172.050000px;}
.x55_c00492{left:173.250000px;}
.x44_c00492{left:174.300000px;}
.x24_c00492{left:175.350000px;}
.x3_c00492{left:176.400000px;}
.x7f_c00492{left:180.750000px;}
.x94_c00492{left:182.100000px;}
.x89_c00492{left:183.300000px;}
.x5e_c00492{left:184.350000px;}
.x50_c00492{left:185.700000px;}
.xb_c00492{left:187.950000px;}
.x6e_c00492{left:195.000000px;}
.x49_c00492{left:198.000000px;}
.x7b_c00492{left:199.050000px;}
.x30_c00492{left:200.550000px;}
.x18_c00492{left:205.950000px;}
.x3b_c00492{left:207.900000px;}
.x40_c00492{left:210.300000px;}
.x4_c00492{left:212.400000px;}
.x8d_c00492{left:214.800000px;}
.x34_c00492{left:216.750000px;}
.x25_c00492{left:217.800000px;}
.x2b_c00492{left:220.050000px;}
.x73_c00492{left:221.850000px;}
.x1f_c00492{left:223.050000px;}
.x62_c00492{left:224.700000px;}
.x1d_c00492{left:226.050000px;}
.x4a_c00492{left:227.850000px;}
.xc_c00492{left:229.050000px;}
.x26_c00492{left:232.200000px;}
.x77_c00492{left:233.550000px;}
.x53_c00492{left:234.750000px;}
.x11_c00492{left:236.850000px;}
.x7c_c00492{left:237.900000px;}
.x56_c00492{left:239.100000px;}
.x31_c00492{left:240.900000px;}
.x45_c00492{left:244.200000px;}
.x47_c00492{left:246.000000px;}
.x2c_c00492{left:247.800000px;}
.x3c_c00492{left:250.050000px;}
.x27_c00492{left:253.500000px;}
.x5_c00492{left:254.550000px;}
.x19_c00492{left:256.050000px;}
.x81_c00492{left:257.550000px;}
.x80_c00492{left:259.200000px;}
.x52_c00492{left:260.250000px;}
.x20_c00492{left:261.600000px;}
.x28_c00492{left:265.800000px;}
.x6_c00492{left:267.150000px;}
.x12_c00492{left:268.200000px;}
.x84_c00492{left:271.050000px;}
.x78_c00492{left:272.400000px;}
.x1e_c00492{left:273.900000px;}
.x48_c00492{left:275.850000px;}
.x5f_c00492{left:277.500000px;}
.x39_c00492{left:278.850000px;}
.x57_c00492{left:280.200000px;}
.x72_c00492{left:283.500000px;}
.x6b_c00492{left:285.150000px;}
.x1a_c00492{left:288.450000px;}
.x46_c00492{left:289.500000px;}
.x8c_c00492{left:294.600000px;}
.x13_c00492{left:296.250000px;}
.x51_c00492{left:297.300000px;}
.x82_c00492{left:300.000000px;}
.xd_c00492{left:303.600000px;}
.x7_c00492{left:306.750000px;}
.x2d_c00492{left:310.050000px;}
.x21_c00492{left:311.700000px;}
.x32_c00492{left:313.200000px;}
.x8e_c00492{left:314.550000px;}
.x6f_c00492{left:315.600000px;}
.x91_c00492{left:316.950000px;}
.x5b_c00492{left:318.600000px;}
.x3d_c00492{left:320.250000px;}
.x87_c00492{left:321.300000px;}
.x29_c00492{left:322.350000px;}
.x41_c00492{left:324.000000px;}
.x85_c00492{left:325.050000px;}
.x1b_c00492{left:326.550000px;}
.x14_c00492{left:327.900000px;}
.x35_c00492{left:331.500000px;}
.x74_c00492{left:332.700000px;}
.x4d_c00492{left:334.350000px;}
.x42_c00492{left:336.300000px;}
.x8_c00492{left:338.100000px;}
.x22_c00492{left:339.450000px;}
.x65_c00492{left:340.800000px;}
.xe_c00492{left:342.150000px;}
.x79_c00492{left:345.450000px;}
.x36_c00492{left:348.000000px;}
.x54_c00492{left:350.700000px;}
.x75_c00492{left:352.200000px;}
.x64_c00492{left:354.300000px;}
.x23_c00492{left:355.350000px;}
.x69_c00492{left:356.400000px;}
.x3a_c00492{left:359.400000px;}
.x70_c00492{left:362.100000px;}
.x6d_c00492{left:364.950000px;}
.x95_c00492{left:366.000000px;}
.x3e_c00492{left:367.050000px;}
.x15_c00492{left:369.300000px;}
.x4e_c00492{left:370.350000px;}
.x37_c00492{left:371.700000px;}
.x5c_c00492{left:372.900000px;}
.x58_c00492{left:374.550000px;}
.x43_c00492{left:379.800000px;}
.xf_c00492{left:381.750000px;}
.x60_c00492{left:383.100000px;}
.x9_c00492{left:384.600000px;}
.x76_c00492{left:385.650000px;}
.x86_c00492{left:387.300000px;}
.x4b_c00492{left:388.800000px;}
.x59_c00492{left:390.750000px;}
.x33_c00492{left:392.850000px;}
.x66_c00492{left:395.550000px;}
.x7e_c00492{left:397.650000px;}
.x8f_c00492{left:403.500000px;}
.x63_c00492{left:406.050000px;}
.x5d_c00492{left:407.400000px;}
.x3f_c00492{left:408.750000px;}
.x2e_c00492{left:411.300000px;}
.x16_c00492{left:412.500000px;}
.xa_c00492{left:413.700000px;}
.x61_c00492{left:415.500000px;}
.x2a_c00492{left:416.550000px;}
.x38_c00492{left:418.500000px;}
.x88_c00492{left:421.800000px;}
.x83_c00492{left:423.150000px;}
.x8b_c00492{left:425.550000px;}
.x4c_c00492{left:427.200000px;}
.x1c_c00492{left:428.400000px;}
.x10_c00492{left:430.650000px;}
.x67_c00492{left:432.300000px;}
.x6a_c00492{left:433.800000px;}
.x90_c00492{left:438.000000px;}
.x5a_c00492{left:440.400000px;}
.x71_c00492{left:441.600000px;}
.x17_c00492{left:442.800000px;}
.x7a_c00492{left:444.450000px;}
.x4f_c00492{left:445.950000px;}
.x2_c00492{left:448.200000px;}
.x96_c00492{left:450.150000px;}
.x7d_c00492{left:453.450000px;}
.x2f_c00492{left:455.250000px;}
.x68_c00492{left:459.600000px;}
.x115_c00492{left:487.950000px;}
.x97_c00492{left:491.700000px;}
.x122_c00492{left:496.050000px;}
.xed_c00492{left:514.050000px;}
.xf8_c00492{left:515.100000px;}
.xe6_c00492{left:516.300000px;}
.xb2_c00492{left:517.650000px;}
.x98_c00492{left:518.700000px;}
.x10c_c00492{left:522.750000px;}
.xfb_c00492{left:526.500000px;}
.xe1_c00492{left:528.000000px;}
.xc8_c00492{left:529.050000px;}
.xa1_c00492{left:530.100000px;}
.x11d_c00492{left:538.950000px;}
.xf0_c00492{left:541.800000px;}
.xe4_c00492{left:543.000000px;}
.xa2_c00492{left:546.000000px;}
.x99_c00492{left:548.550000px;}
.xab_c00492{left:550.650000px;}
.x10a_c00492{left:552.450000px;}
.xf9_c00492{left:555.000000px;}
.xa5_c00492{left:556.200000px;}
.xff_c00492{left:557.400000px;}
.xe7_c00492{left:559.800000px;}
.xb9_c00492{left:562.050000px;}
.x117_c00492{left:563.700000px;}
.xea_c00492{left:565.950000px;}
.xa3_c00492{left:567.600000px;}
.xd2_c00492{left:569.550000px;}
.xcb_c00492{left:570.900000px;}
.xd9_c00492{left:573.600000px;}
.x9a_c00492{left:575.550000px;}
.xbe_c00492{left:576.900000px;}
.xb1_c00492{left:578.250000px;}
.xfc_c00492{left:579.750000px;}
.xa4_c00492{left:580.950000px;}
.xcd_c00492{left:583.200000px;}
.xa6_c00492{left:585.300000px;}
.xe5_c00492{left:586.950000px;}
.x9b_c00492{left:588.150000px;}
.xe8_c00492{left:589.950000px;}
.x118_c00492{left:591.450000px;}
.xdd_c00492{left:592.950000px;}
.xa7_c00492{left:596.100000px;}
.xb3_c00492{left:597.600000px;}
.x127_c00492{left:599.250000px;}
.xba_c00492{left:600.900000px;}
.xf4_c00492{left:602.400000px;}
.x11f_c00492{left:603.450000px;}
.xc5_c00492{left:605.850000px;}
.xbf_c00492{left:609.300000px;}
.xc9_c00492{left:613.950000px;}
.x103_c00492{left:615.900000px;}
.xfd_c00492{left:620.400000px;}
.x114_c00492{left:621.450000px;}
.xe9_c00492{left:624.450000px;}
.xee_c00492{left:625.650000px;}
.xda_c00492{left:626.850000px;}
.x119_c00492{left:628.050000px;}
.x108_c00492{left:630.000000px;}
.x10e_c00492{left:632.700000px;}
.xd3_c00492{left:635.100000px;}
.xf5_c00492{left:637.650000px;}
.xac_c00492{left:639.300000px;}
.x121_c00492{left:641.100000px;}
.x9c_c00492{left:642.450000px;}
.xb4_c00492{left:644.700000px;}
.xa8_c00492{left:645.750000px;}
.xbb_c00492{left:646.950000px;}
.x11e_c00492{left:648.000000px;}
.xe2_c00492{left:649.350000px;}
.xca_c00492{left:653.250000px;}
.xf1_c00492{left:654.900000px;}
.xc6_c00492{left:656.250000px;}
.xeb_c00492{left:657.450000px;}
.x113_c00492{left:658.500000px;}
.x123_c00492{left:659.850000px;}
.xce_c00492{left:663.150000px;}
.xdb_c00492{left:666.150000px;}
.x104_c00492{left:667.350000px;}
.x100_c00492{left:668.850000px;}
.xcc_c00492{left:670.200000px;}
.xc0_c00492{left:672.300000px;}
.xfe_c00492{left:673.500000px;}
.x10f_c00492{left:675.150000px;}
.xd4_c00492{left:678.900000px;}
.xad_c00492{left:680.400000px;}
.x9d_c00492{left:683.100000px;}
.xb5_c00492{left:685.050000px;}
.xf6_c00492{left:686.250000px;}
.xf2_c00492{left:689.100000px;}
.xef_c00492{left:692.250000px;}
.xc3_c00492{left:694.800000px;}
.xcf_c00492{left:695.850000px;}
.xae_c00492{left:697.350000px;}
.xb6_c00492{left:699.450000px;}
.xe3_c00492{left:701.250000px;}
.x124_c00492{left:703.800000px;}
.xde_c00492{left:707.400000px;}
.xf7_c00492{left:709.350000px;}
.xec_c00492{left:711.150000px;}
.xc7_c00492{left:713.400000px;}
.xbc_c00492{left:715.050000px;}
.x106_c00492{left:717.000000px;}
.x116_c00492{left:720.300000px;}
.x11a_c00492{left:721.350000px;}
.x101_c00492{left:723.150000px;}
.xc1_c00492{left:724.200000px;}
.x110_c00492{left:726.600000px;}
.x112_c00492{left:727.950000px;}
.xaf_c00492{left:729.450000px;}
.x105_c00492{left:730.650000px;}
.xd7_c00492{left:732.000000px;}
.x9e_c00492{left:733.800000px;}
.x120_c00492{left:734.850000px;}
.xd5_c00492{left:736.200000px;}
.x102_c00492{left:737.550000px;}
.xb7_c00492{left:741.900000px;}
.x125_c00492{left:743.400000px;}
.xdc_c00492{left:747.000000px;}
.xa9_c00492{left:749.400000px;}
.xd0_c00492{left:752.700000px;}
.x128_c00492{left:753.900000px;}
.x10b_c00492{left:754.950000px;}
.xb8_c00492{left:758.100000px;}
.xc2_c00492{left:761.250000px;}
.x107_c00492{left:763.050000px;}
.xb0_c00492{left:766.950000px;}
.xf3_c00492{left:768.300000px;}
.x11b_c00492{left:771.450000px;}
.x111_c00492{left:773.700000px;}
.xdf_c00492{left:777.150000px;}
.x10d_c00492{left:779.250000px;}
.x9f_c00492{left:781.350000px;}
.xd8_c00492{left:783.150000px;}
.xaa_c00492{left:784.650000px;}
.xd6_c00492{left:787.650000px;}
.xbd_c00492{left:788.850000px;}
.xd1_c00492{left:790.200000px;}
.x109_c00492{left:793.350000px;}
.x126_c00492{left:796.350000px;}
.xfa_c00492{left:798.000000px;}
.x11c_c00492{left:801.300000px;}
.xc4_c00492{left:802.800000px;}
.xe0_c00492{left:804.900000px;}
.xa0_c00492{left:812.700000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws2_c00492{word-spacing:-8.060772pt;}
.ws3_c00492{word-spacing:-3.410485pt;}
.ws1_c00492{word-spacing:-1.844237pt;}
.ws6_c00492{word-spacing:-1.674690pt;}
.ws8_c00492{word-spacing:0.000000pt;}
.ws7_c00492{word-spacing:0.874581pt;}
.ws0_c00492{word-spacing:0.941336pt;}
.ws4_c00492{word-spacing:8.175023pt;}
.ws5_c00492{word-spacing:11.777778pt;}
._0_c00492{width:47.667337pt;}
.fs2_c00492{font-size:32.000000pt;}
.fs1_c00492{font-size:37.333333pt;}
.fs0_c00492{font-size:53.333333pt;}
.y0_c00492{bottom:0.000000pt;}
.y3d_c00492{bottom:134.800000pt;}
.y6f_c00492{bottom:135.333333pt;}
.y3c_c00492{bottom:144.666667pt;}
.y6e_c00492{bottom:145.866667pt;}
.y3b_c00492{bottom:174.666667pt;}
.y6d_c00492{bottom:175.333333pt;}
.y3a_c00492{bottom:188.133333pt;}
.y6c_c00492{bottom:188.800000pt;}
.y39_c00492{bottom:200.933333pt;}
.y6b_c00492{bottom:201.333333pt;}
.y38_c00492{bottom:213.866667pt;}
.y6a_c00492{bottom:214.133333pt;}
.y37_c00492{bottom:226.666667pt;}
.y69_c00492{bottom:227.466667pt;}
.y36_c00492{bottom:239.466667pt;}
.y68_c00492{bottom:241.866667pt;}
.y35_c00492{bottom:252.266667pt;}
.y67_c00492{bottom:265.066667pt;}
.y34_c00492{bottom:265.333333pt;}
.y33_c00492{bottom:278.133333pt;}
.y66_c00492{bottom:278.800000pt;}
.y32_c00492{bottom:290.933333pt;}
.y65_c00492{bottom:291.600000pt;}
.y31_c00492{bottom:304.000000pt;}
.y64_c00492{bottom:304.666667pt;}
.y30_c00492{bottom:316.800000pt;}
.y63_c00492{bottom:317.466667pt;}
.y2f_c00492{bottom:329.600000pt;}
.y62_c00492{bottom:330.533333pt;}
.y2e_c00492{bottom:342.666667pt;}
.y61_c00492{bottom:343.333333pt;}
.y2d_c00492{bottom:355.866667pt;}
.y60_c00492{bottom:356.133333pt;}
.y2c_c00492{bottom:368.666667pt;}
.y5f_c00492{bottom:381.733333pt;}
.y2b_c00492{bottom:382.000000pt;}
.y2a_c00492{bottom:394.533333pt;}
.y5e_c00492{bottom:394.933333pt;}
.y29_c00492{bottom:407.333333pt;}
.y5d_c00492{bottom:408.000000pt;}
.y28_c00492{bottom:420.133333pt;}
.y5c_c00492{bottom:421.066667pt;}
.y27_c00492{bottom:432.933333pt;}
.y5b_c00492{bottom:433.600000pt;}
.y26_c00492{bottom:445.733333pt;}
.y5a_c00492{bottom:446.800000pt;}
.y25_c00492{bottom:458.533333pt;}
.y59_c00492{bottom:459.600000pt;}
.y24_c00492{bottom:471.733333pt;}
.y58_c00492{bottom:472.666667pt;}
.y23_c00492{bottom:484.533333pt;}
.y22_c00492{bottom:497.600000pt;}
.y57_c00492{bottom:510.133333pt;}
.y21_c00492{bottom:510.400000pt;}
.y20_c00492{bottom:523.200000pt;}
.y56_c00492{bottom:536.266667pt;}
.y1f_c00492{bottom:536.400000pt;}
.y55_c00492{bottom:549.066667pt;}
.y1e_c00492{bottom:549.200000pt;}
.y1d_c00492{bottom:562.266667pt;}
.y1c_c00492{bottom:575.066667pt;}
.y1b_c00492{bottom:587.866667pt;}
.y1a_c00492{bottom:600.933333pt;}
.y54_c00492{bottom:613.066667pt;}
.y19_c00492{bottom:613.733333pt;}
.y53_c00492{bottom:626.266667pt;}
.y18_c00492{bottom:626.800000pt;}
.y52_c00492{bottom:639.066667pt;}
.y17_c00492{bottom:639.866667pt;}
.y51_c00492{bottom:652.533333pt;}
.y16_c00492{bottom:652.666667pt;}
.y50_c00492{bottom:665.333333pt;}
.y15_c00492{bottom:665.733333pt;}
.y4f_c00492{bottom:678.133333pt;}
.y14_c00492{bottom:678.533333pt;}
.y4e_c00492{bottom:691.200000pt;}
.y13_c00492{bottom:691.600000pt;}
.y4d_c00492{bottom:703.733333pt;}
.y12_c00492{bottom:704.400000pt;}
.y4c_c00492{bottom:716.533333pt;}
.y11_c00492{bottom:717.200000pt;}
.y4b_c00492{bottom:729.600000pt;}
.y10_c00492{bottom:730.266667pt;}
.y4a_c00492{bottom:742.400000pt;}
.yf_c00492{bottom:743.066667pt;}
.y49_c00492{bottom:755.466667pt;}
.ye_c00492{bottom:756.133333pt;}
.y48_c00492{bottom:768.266667pt;}
.yd_c00492{bottom:768.933333pt;}
.y47_c00492{bottom:781.466667pt;}
.yc_c00492{bottom:781.733333pt;}
.y46_c00492{bottom:793.333333pt;}
.yb_c00492{bottom:794.533333pt;}
.y45_c00492{bottom:806.400000pt;}
.ya_c00492{bottom:807.866667pt;}
.y44_c00492{bottom:819.466667pt;}
.y9_c00492{bottom:820.933333pt;}
.y43_c00492{bottom:832.666667pt;}
.y8_c00492{bottom:833.733333pt;}
.y42_c00492{bottom:845.200000pt;}
.y7_c00492{bottom:846.533333pt;}
.y41_c00492{bottom:858.266667pt;}
.y6_c00492{bottom:859.600000pt;}
.y40_c00492{bottom:871.333333pt;}
.y5_c00492{bottom:872.400000pt;}
.y3f_c00492{bottom:884.266667pt;}
.y4_c00492{bottom:885.200000pt;}
.y3e_c00492{bottom:897.333333pt;}
.y3_c00492{bottom:898.266667pt;}
.y2_c00492{bottom:928.933333pt;}
.y1_c00492{bottom:929.600000pt;}
.h4_c00492{height:32.000000pt;}
.h3_c00492{height:37.333333pt;}
.h2_c00492{height:53.333333pt;}
.h1_c00492{height:1036.666667pt;}
.h0_c00492{height:1036.800049pt;}
.w0_c00492{width:818.559977pt;}
.w1_c00492{width:818.666667pt;}
.x0_c00492{left:0.000000pt;}
.x93_c00492{left:126.933333pt;}
.x1_c00492{left:133.066667pt;}
.x92_c00492{left:143.333333pt;}
.x8a_c00492{left:152.000000pt;}
.x6c_c00492{left:152.933333pt;}
.x55_c00492{left:154.000000pt;}
.x44_c00492{left:154.933333pt;}
.x24_c00492{left:155.866667pt;}
.x3_c00492{left:156.800000pt;}
.x7f_c00492{left:160.666667pt;}
.x94_c00492{left:161.866667pt;}
.x89_c00492{left:162.933333pt;}
.x5e_c00492{left:163.866667pt;}
.x50_c00492{left:165.066667pt;}
.xb_c00492{left:167.066667pt;}
.x6e_c00492{left:173.333333pt;}
.x49_c00492{left:176.000000pt;}
.x7b_c00492{left:176.933333pt;}
.x30_c00492{left:178.266667pt;}
.x18_c00492{left:183.066667pt;}
.x3b_c00492{left:184.800000pt;}
.x40_c00492{left:186.933333pt;}
.x4_c00492{left:188.800000pt;}
.x8d_c00492{left:190.933333pt;}
.x34_c00492{left:192.666667pt;}
.x25_c00492{left:193.600000pt;}
.x2b_c00492{left:195.600000pt;}
.x73_c00492{left:197.200000pt;}
.x1f_c00492{left:198.266667pt;}
.x62_c00492{left:199.733333pt;}
.x1d_c00492{left:200.933333pt;}
.x4a_c00492{left:202.533333pt;}
.xc_c00492{left:203.600000pt;}
.x26_c00492{left:206.400000pt;}
.x77_c00492{left:207.600000pt;}
.x53_c00492{left:208.666667pt;}
.x11_c00492{left:210.533333pt;}
.x7c_c00492{left:211.466667pt;}
.x56_c00492{left:212.533333pt;}
.x31_c00492{left:214.133333pt;}
.x45_c00492{left:217.066667pt;}
.x47_c00492{left:218.666667pt;}
.x2c_c00492{left:220.266667pt;}
.x3c_c00492{left:222.266667pt;}
.x27_c00492{left:225.333333pt;}
.x5_c00492{left:226.266667pt;}
.x19_c00492{left:227.600000pt;}
.x81_c00492{left:228.933333pt;}
.x80_c00492{left:230.400000pt;}
.x52_c00492{left:231.333333pt;}
.x20_c00492{left:232.533333pt;}
.x28_c00492{left:236.266667pt;}
.x6_c00492{left:237.466667pt;}
.x12_c00492{left:238.400000pt;}
.x84_c00492{left:240.933333pt;}
.x78_c00492{left:242.133333pt;}
.x1e_c00492{left:243.466667pt;}
.x48_c00492{left:245.200000pt;}
.x5f_c00492{left:246.666667pt;}
.x39_c00492{left:247.866667pt;}
.x57_c00492{left:249.066667pt;}
.x72_c00492{left:252.000000pt;}
.x6b_c00492{left:253.466667pt;}
.x1a_c00492{left:256.400000pt;}
.x46_c00492{left:257.333333pt;}
.x8c_c00492{left:261.866667pt;}
.x13_c00492{left:263.333333pt;}
.x51_c00492{left:264.266667pt;}
.x82_c00492{left:266.666667pt;}
.xd_c00492{left:269.866667pt;}
.x7_c00492{left:272.666667pt;}
.x2d_c00492{left:275.600000pt;}
.x21_c00492{left:277.066667pt;}
.x32_c00492{left:278.400000pt;}
.x8e_c00492{left:279.600000pt;}
.x6f_c00492{left:280.533333pt;}
.x91_c00492{left:281.733333pt;}
.x5b_c00492{left:283.200000pt;}
.x3d_c00492{left:284.666667pt;}
.x87_c00492{left:285.600000pt;}
.x29_c00492{left:286.533333pt;}
.x41_c00492{left:288.000000pt;}
.x85_c00492{left:288.933333pt;}
.x1b_c00492{left:290.266667pt;}
.x14_c00492{left:291.466667pt;}
.x35_c00492{left:294.666667pt;}
.x74_c00492{left:295.733333pt;}
.x4d_c00492{left:297.200000pt;}
.x42_c00492{left:298.933333pt;}
.x8_c00492{left:300.533333pt;}
.x22_c00492{left:301.733333pt;}
.x65_c00492{left:302.933333pt;}
.xe_c00492{left:304.133333pt;}
.x79_c00492{left:307.066667pt;}
.x36_c00492{left:309.333333pt;}
.x54_c00492{left:311.733333pt;}
.x75_c00492{left:313.066667pt;}
.x64_c00492{left:314.933333pt;}
.x23_c00492{left:315.866667pt;}
.x69_c00492{left:316.800000pt;}
.x3a_c00492{left:319.466667pt;}
.x70_c00492{left:321.866667pt;}
.x6d_c00492{left:324.400000pt;}
.x95_c00492{left:325.333333pt;}
.x3e_c00492{left:326.266667pt;}
.x15_c00492{left:328.266667pt;}
.x4e_c00492{left:329.200000pt;}
.x37_c00492{left:330.400000pt;}
.x5c_c00492{left:331.466667pt;}
.x58_c00492{left:332.933333pt;}
.x43_c00492{left:337.600000pt;}
.xf_c00492{left:339.333333pt;}
.x60_c00492{left:340.533333pt;}
.x9_c00492{left:341.866667pt;}
.x76_c00492{left:342.800000pt;}
.x86_c00492{left:344.266667pt;}
.x4b_c00492{left:345.600000pt;}
.x59_c00492{left:347.333333pt;}
.x33_c00492{left:349.200000pt;}
.x66_c00492{left:351.600000pt;}
.x7e_c00492{left:353.466667pt;}
.x8f_c00492{left:358.666667pt;}
.x63_c00492{left:360.933333pt;}
.x5d_c00492{left:362.133333pt;}
.x3f_c00492{left:363.333333pt;}
.x2e_c00492{left:365.600000pt;}
.x16_c00492{left:366.666667pt;}
.xa_c00492{left:367.733333pt;}
.x61_c00492{left:369.333333pt;}
.x2a_c00492{left:370.266667pt;}
.x38_c00492{left:372.000000pt;}
.x88_c00492{left:374.933333pt;}
.x83_c00492{left:376.133333pt;}
.x8b_c00492{left:378.266667pt;}
.x4c_c00492{left:379.733333pt;}
.x1c_c00492{left:380.800000pt;}
.x10_c00492{left:382.800000pt;}
.x67_c00492{left:384.266667pt;}
.x6a_c00492{left:385.600000pt;}
.x90_c00492{left:389.333333pt;}
.x5a_c00492{left:391.466667pt;}
.x71_c00492{left:392.533333pt;}
.x17_c00492{left:393.600000pt;}
.x7a_c00492{left:395.066667pt;}
.x4f_c00492{left:396.400000pt;}
.x2_c00492{left:398.400000pt;}
.x96_c00492{left:400.133333pt;}
.x7d_c00492{left:403.066667pt;}
.x2f_c00492{left:404.666667pt;}
.x68_c00492{left:408.533333pt;}
.x115_c00492{left:433.733333pt;}
.x97_c00492{left:437.066667pt;}
.x122_c00492{left:440.933333pt;}
.xed_c00492{left:456.933333pt;}
.xf8_c00492{left:457.866667pt;}
.xe6_c00492{left:458.933333pt;}
.xb2_c00492{left:460.133333pt;}
.x98_c00492{left:461.066667pt;}
.x10c_c00492{left:464.666667pt;}
.xfb_c00492{left:468.000000pt;}
.xe1_c00492{left:469.333333pt;}
.xc8_c00492{left:470.266667pt;}
.xa1_c00492{left:471.200000pt;}
.x11d_c00492{left:479.066667pt;}
.xf0_c00492{left:481.600000pt;}
.xe4_c00492{left:482.666667pt;}
.xa2_c00492{left:485.333333pt;}
.x99_c00492{left:487.600000pt;}
.xab_c00492{left:489.466667pt;}
.x10a_c00492{left:491.066667pt;}
.xf9_c00492{left:493.333333pt;}
.xa5_c00492{left:494.400000pt;}
.xff_c00492{left:495.466667pt;}
.xe7_c00492{left:497.600000pt;}
.xb9_c00492{left:499.600000pt;}
.x117_c00492{left:501.066667pt;}
.xea_c00492{left:503.066667pt;}
.xa3_c00492{left:504.533333pt;}
.xd2_c00492{left:506.266667pt;}
.xcb_c00492{left:507.466667pt;}
.xd9_c00492{left:509.866667pt;}
.x9a_c00492{left:511.600000pt;}
.xbe_c00492{left:512.800000pt;}
.xb1_c00492{left:514.000000pt;}
.xfc_c00492{left:515.333333pt;}
.xa4_c00492{left:516.400000pt;}
.xcd_c00492{left:518.400000pt;}
.xa6_c00492{left:520.266667pt;}
.xe5_c00492{left:521.733333pt;}
.x9b_c00492{left:522.800000pt;}
.xe8_c00492{left:524.400000pt;}
.x118_c00492{left:525.733333pt;}
.xdd_c00492{left:527.066667pt;}
.xa7_c00492{left:529.866667pt;}
.xb3_c00492{left:531.200000pt;}
.x127_c00492{left:532.666667pt;}
.xba_c00492{left:534.133333pt;}
.xf4_c00492{left:535.466667pt;}
.x11f_c00492{left:536.400000pt;}
.xc5_c00492{left:538.533333pt;}
.xbf_c00492{left:541.600000pt;}
.xc9_c00492{left:545.733333pt;}
.x103_c00492{left:547.466667pt;}
.xfd_c00492{left:551.466667pt;}
.x114_c00492{left:552.400000pt;}
.xe9_c00492{left:555.066667pt;}
.xee_c00492{left:556.133333pt;}
.xda_c00492{left:557.200000pt;}
.x119_c00492{left:558.266667pt;}
.x108_c00492{left:560.000000pt;}
.x10e_c00492{left:562.400000pt;}
.xd3_c00492{left:564.533333pt;}
.xf5_c00492{left:566.800000pt;}
.xac_c00492{left:568.266667pt;}
.x121_c00492{left:569.866667pt;}
.x9c_c00492{left:571.066667pt;}
.xb4_c00492{left:573.066667pt;}
.xa8_c00492{left:574.000000pt;}
.xbb_c00492{left:575.066667pt;}
.x11e_c00492{left:576.000000pt;}
.xe2_c00492{left:577.200000pt;}
.xca_c00492{left:580.666667pt;}
.xf1_c00492{left:582.133333pt;}
.xc6_c00492{left:583.333333pt;}
.xeb_c00492{left:584.400000pt;}
.x113_c00492{left:585.333333pt;}
.x123_c00492{left:586.533333pt;}
.xce_c00492{left:589.466667pt;}
.xdb_c00492{left:592.133333pt;}
.x104_c00492{left:593.200000pt;}
.x100_c00492{left:594.533333pt;}
.xcc_c00492{left:595.733333pt;}
.xc0_c00492{left:597.600000pt;}
.xfe_c00492{left:598.666667pt;}
.x10f_c00492{left:600.133333pt;}
.xd4_c00492{left:603.466667pt;}
.xad_c00492{left:604.800000pt;}
.x9d_c00492{left:607.200000pt;}
.xb5_c00492{left:608.933333pt;}
.xf6_c00492{left:610.000000pt;}
.xf2_c00492{left:612.533333pt;}
.xef_c00492{left:615.333333pt;}
.xc3_c00492{left:617.600000pt;}
.xcf_c00492{left:618.533333pt;}
.xae_c00492{left:619.866667pt;}
.xb6_c00492{left:621.733333pt;}
.xe3_c00492{left:623.333333pt;}
.x124_c00492{left:625.600000pt;}
.xde_c00492{left:628.800000pt;}
.xf7_c00492{left:630.533333pt;}
.xec_c00492{left:632.133333pt;}
.xc7_c00492{left:634.133333pt;}
.xbc_c00492{left:635.600000pt;}
.x106_c00492{left:637.333333pt;}
.x116_c00492{left:640.266667pt;}
.x11a_c00492{left:641.200000pt;}
.x101_c00492{left:642.800000pt;}
.xc1_c00492{left:643.733333pt;}
.x110_c00492{left:645.866667pt;}
.x112_c00492{left:647.066667pt;}
.xaf_c00492{left:648.400000pt;}
.x105_c00492{left:649.466667pt;}
.xd7_c00492{left:650.666667pt;}
.x9e_c00492{left:652.266667pt;}
.x120_c00492{left:653.200000pt;}
.xd5_c00492{left:654.400000pt;}
.x102_c00492{left:655.600000pt;}
.xb7_c00492{left:659.466667pt;}
.x125_c00492{left:660.800000pt;}
.xdc_c00492{left:664.000000pt;}
.xa9_c00492{left:666.133333pt;}
.xd0_c00492{left:669.066667pt;}
.x128_c00492{left:670.133333pt;}
.x10b_c00492{left:671.066667pt;}
.xb8_c00492{left:673.866667pt;}
.xc2_c00492{left:676.666667pt;}
.x107_c00492{left:678.266667pt;}
.xb0_c00492{left:681.733333pt;}
.xf3_c00492{left:682.933333pt;}
.x11b_c00492{left:685.733333pt;}
.x111_c00492{left:687.733333pt;}
.xdf_c00492{left:690.800000pt;}
.x10d_c00492{left:692.666667pt;}
.x9f_c00492{left:694.533333pt;}
.xd8_c00492{left:696.133333pt;}
.xaa_c00492{left:697.466667pt;}
.xd6_c00492{left:700.133333pt;}
.xbd_c00492{left:701.200000pt;}
.xd1_c00492{left:702.400000pt;}
.x109_c00492{left:705.200000pt;}
.x126_c00492{left:707.866667pt;}
.xfa_c00492{left:709.333333pt;}
.x11c_c00492{left:712.266667pt;}
.xc4_c00492{left:713.600000pt;}
.xe0_c00492{left:715.466667pt;}
.xa0_c00492{left:722.400000pt;}
}





/* 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_c00493 {
    display:none;
  }
  .loading-indicator_c00493.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00493 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_c00493 { 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_c00493" -> "#page-container .classname_c00493")
 */
.pf_c00493 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00493 { /* 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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00493 { /* 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_c00493 { /* 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_c00493 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00493 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00493 {overflow:visible;}
  }
}
.c_c00493 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00493 { /* 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_c00493:after { /* webkit #35443 */
  content: '';
}
.t_c00493:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00493 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 */
}
.__c00493 { /* 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_c00493 { /* info for Javascript */
  display:none;
}
.l_c00493 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00493 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00493 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00493: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_c00493 {
    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_c00493.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00493.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_c00493 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00493{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00493;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.000000;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;}
.m22_c00493{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00493{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m72_c00493{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00493{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mc_c00493{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m30_c00493{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m36_c00493{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11_c00493{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00493{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00493{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00493{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m82_c00493{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m60_c00493{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m27_c00493{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00493{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00493{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00493{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00493{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00493{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mba_c00493{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00493{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m86_c00493{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m80_c00493{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m50_c00493{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m41_c00493{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m87_c00493{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m51_c00493{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.maf_c00493{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00493{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00493{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m83_c00493{transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220250,0.000000,0.000000,0.250000,0,0);}
.m93_c00493{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m6_c00493{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m12_c00493{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00493{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00493{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00493{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00493{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00493{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m98_c00493{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m96_c00493{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00493{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m42_c00493{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00493{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00493{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00493{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00493{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00493{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00493{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00493{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m53_c00493{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m85_c00493{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00493{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m75_c00493{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m63_c00493{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m79_c00493{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00493{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00493{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00493{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00493{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00493{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00493{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00493{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m55_c00493{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m62_c00493{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00493{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mad_c00493{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m13_c00493{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00493{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m28_c00493{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m69_c00493{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00493{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00493{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m77_c00493{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m7_c00493{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mac_c00493{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15_c00493{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00493{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m33_c00493{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m74_c00493{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mae_c00493{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00493{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m66_c00493{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m0_c00493{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m39_c00493{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m35_c00493{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00493{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00493{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m17_c00493{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m88_c00493{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00493{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m95_c00493{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00493{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00493{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m14_c00493{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00493{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00493{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m94_c00493{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00493{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00493{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m59_c00493{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.md_c00493{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00493{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m52_c00493{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00493{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00493{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00493{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00493{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00493{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m81_c00493{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m89_c00493{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m24_c00493{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00493{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00493{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00493{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00493{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m68_c00493{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00493{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00493{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00493{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00493{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m57_c00493{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00493{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m61_c00493{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00493{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00493{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m58_c00493{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m40_c00493{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m70_c00493{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m49_c00493{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00493{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.maa_c00493{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m5c_c00493{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00493{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m65_c00493{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00493{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m34_c00493{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m48_c00493{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m46_c00493{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m37_c00493{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m97_c00493{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m90_c00493{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m20_c00493{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00493{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m44_c00493{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00493{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00493{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00493{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.mab_c00493{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m78_c00493{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m92_c00493{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00493{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.m99_c00493{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m8c_c00493{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m64_c00493{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m84_c00493{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m25_c00493{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m67_c00493{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m32_c00493{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m26_c00493{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m47_c00493{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00493{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m31_c00493{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m45_c00493{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00493{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00493{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00493{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00493{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m71_c00493{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00493{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m16_c00493{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00493{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m38_c00493{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00493{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m73_c00493{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00493{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m23_c00493{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00493{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m21_c00493{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m56_c00493{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m54_c00493{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00493{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m91_c00493{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m76_c00493{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m29_c00493{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m18_c00493{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{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__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00493{word-spacing:-5.148893px;}
.ws7_c00493{word-spacing:-5.023701px;}
.ws2_c00493{word-spacing:-3.803456px;}
.ws3_c00493{word-spacing:-3.751286px;}
.ws4_c00493{word-spacing:-2.445328px;}
.wsa_c00493{word-spacing:0.000000px;}
.ws1_c00493{word-spacing:0.299663px;}
.ws9_c00493{word-spacing:3.957156px;}
.ws6_c00493{word-spacing:15.308411px;}
.ws0_c00493{word-spacing:18.023324px;}
.ws8_c00493{word-spacing:27.935860px;}
._0_c00493{width:20.173038px;}
.fc0_c00493{color:transparent;}
.fs2_c00493{font-size:42.000000px;}
.fs0_c00493{font-size:60.000000px;}
.fs1_c00493{font-size:66.000000px;}
.y0_c00493{bottom:0.000000px;}
.y72_c00493{bottom:143.400000px;}
.y3e_c00493{bottom:143.700000px;}
.y3d_c00493{bottom:158.100000px;}
.y71_c00493{bottom:172.500000px;}
.y3c_c00493{bottom:172.800000px;}
.y3b_c00493{bottom:187.200000px;}
.y70_c00493{bottom:201.600000px;}
.y3a_c00493{bottom:201.900000px;}
.y6f_c00493{bottom:216.300000px;}
.y39_c00493{bottom:216.900000px;}
.y6e_c00493{bottom:231.150000px;}
.y38_c00493{bottom:231.300000px;}
.y6d_c00493{bottom:245.550000px;}
.y37_c00493{bottom:246.000000px;}
.y6c_c00493{bottom:260.400000px;}
.y36_c00493{bottom:260.700000px;}
.y6b_c00493{bottom:274.050000px;}
.y35_c00493{bottom:274.950000px;}
.y6a_c00493{bottom:288.450000px;}
.y34_c00493{bottom:289.350000px;}
.y69_c00493{bottom:303.150000px;}
.y33_c00493{bottom:304.500000px;}
.y68_c00493{bottom:317.850000px;}
.y32_c00493{bottom:318.600000px;}
.y67_c00493{bottom:331.950000px;}
.y31_c00493{bottom:333.600000px;}
.y66_c00493{bottom:346.350000px;}
.y30_c00493{bottom:348.300000px;}
.y65_c00493{bottom:361.500000px;}
.y2f_c00493{bottom:363.000000px;}
.y64_c00493{bottom:375.900000px;}
.y2e_c00493{bottom:377.400000px;}
.y63_c00493{bottom:391.050000px;}
.y2d_c00493{bottom:392.100000px;}
.y62_c00493{bottom:405.150000px;}
.y2c_c00493{bottom:406.500000px;}
.y61_c00493{bottom:419.550000px;}
.y2b_c00493{bottom:420.900000px;}
.y60_c00493{bottom:434.250000px;}
.y2a_c00493{bottom:435.300000px;}
.y5f_c00493{bottom:448.950000px;}
.y29_c00493{bottom:449.700000px;}
.y5e_c00493{bottom:463.350000px;}
.y28_c00493{bottom:464.100000px;}
.y5d_c00493{bottom:478.050000px;}
.y27_c00493{bottom:478.650000px;}
.y5c_c00493{bottom:492.150000px;}
.y26_c00493{bottom:493.050000px;}
.y5b_c00493{bottom:507.300000px;}
.y25_c00493{bottom:507.750000px;}
.y5a_c00493{bottom:522.000000px;}
.y24_c00493{bottom:522.450000px;}
.y59_c00493{bottom:536.400000px;}
.y23_c00493{bottom:536.850000px;}
.y58_c00493{bottom:550.800000px;}
.y22_c00493{bottom:551.550000px;}
.y57_c00493{bottom:565.650000px;}
.y21_c00493{bottom:565.950000px;}
.y56_c00493{bottom:580.350000px;}
.y20_c00493{bottom:580.650000px;}
.y55_c00493{bottom:594.750000px;}
.y1f_c00493{bottom:595.050000px;}
.y54_c00493{bottom:609.600000px;}
.y1e_c00493{bottom:610.050000px;}
.y53_c00493{bottom:624.300000px;}
.y1d_c00493{bottom:624.750000px;}
.y52_c00493{bottom:638.700000px;}
.y1c_c00493{bottom:639.450000px;}
.y51_c00493{bottom:653.100000px;}
.y1b_c00493{bottom:654.150000px;}
.y50_c00493{bottom:668.250000px;}
.y1a_c00493{bottom:668.550000px;}
.y4f_c00493{bottom:682.650000px;}
.y19_c00493{bottom:682.950000px;}
.y4e_c00493{bottom:697.050000px;}
.y18_c00493{bottom:697.350000px;}
.y4d_c00493{bottom:711.750000px;}
.y17_c00493{bottom:712.500000px;}
.y4c_c00493{bottom:726.600000px;}
.y16_c00493{bottom:727.200000px;}
.y4b_c00493{bottom:741.300000px;}
.y15_c00493{bottom:741.600000px;}
.y4a_c00493{bottom:756.000000px;}
.y14_c00493{bottom:756.300000px;}
.y49_c00493{bottom:770.400000px;}
.y13_c00493{bottom:771.000000px;}
.y48_c00493{bottom:785.100000px;}
.y12_c00493{bottom:785.400000px;}
.y47_c00493{bottom:799.500000px;}
.y11_c00493{bottom:800.100000px;}
.y46_c00493{bottom:813.900000px;}
.y10_c00493{bottom:814.500000px;}
.y45_c00493{bottom:828.450000px;}
.yf_c00493{bottom:829.200000px;}
.y44_c00493{bottom:843.150000px;}
.ye_c00493{bottom:843.600000px;}
.y43_c00493{bottom:857.850000px;}
.yd_c00493{bottom:858.300000px;}
.yc_c00493{bottom:872.250000px;}
.y42_c00493{bottom:872.700000px;}
.yb_c00493{bottom:886.650000px;}
.y41_c00493{bottom:887.100000px;}
.ya_c00493{bottom:902.100000px;}
.y9_c00493{bottom:916.500000px;}
.y8_c00493{bottom:930.900000px;}
.y7_c00493{bottom:945.750000px;}
.y6_c00493{bottom:960.450000px;}
.y40_c00493{bottom:960.600000px;}
.y5_c00493{bottom:974.850000px;}
.y3f_c00493{bottom:975.000000px;}
.y4_c00493{bottom:989.700000px;}
.y3_c00493{bottom:1004.400000px;}
.y2_c00493{bottom:1039.200000px;}
.y1_c00493{bottom:1044.300000px;}
.h4_c00493{height:42.000000px;}
.h2_c00493{height:60.000000px;}
.h3_c00493{height:66.000000px;}
.h1_c00493{height:1166.250000px;}
.h0_c00493{height:1166.400056px;}
.w0_c00493{width:920.879975px;}
.w1_c00493{width:921.000000px;}
.x0_c00493{left:0.000000px;}
.x8_c00493{left:110.550000px;}
.x82_c00493{left:111.750000px;}
.x11_c00493{left:148.200000px;}
.x9_c00493{left:150.900000px;}
.x52_c00493{left:151.950000px;}
.x6e_c00493{left:154.050000px;}
.x7f_c00493{left:161.400000px;}
.x27_c00493{left:162.750000px;}
.x1d_c00493{left:164.100000px;}
.x75_c00493{left:171.000000px;}
.x81_c00493{left:173.100000px;}
.x6f_c00493{left:174.900000px;}
.x13_c00493{left:177.450000px;}
.xa_c00493{left:182.250000px;}
.x8b_c00493{left:185.850000px;}
.x28_c00493{left:186.900000px;}
.x1e_c00493{left:188.250000px;}
.x29_c00493{left:189.450000px;}
.x63_c00493{left:191.550000px;}
.x62_c00493{left:193.350000px;}
.x16_c00493{left:196.500000px;}
.x66_c00493{left:197.550000px;}
.x35_c00493{left:198.750000px;}
.x3b_c00493{left:199.800000px;}
.x4d_c00493{left:201.600000px;}
.x76_c00493{left:203.400000px;}
.x43_c00493{left:204.450000px;}
.x2d_c00493{left:206.250000px;}
.x79_c00493{left:207.300000px;}
.x3d_c00493{left:209.550000px;}
.x5a_c00493{left:211.350000px;}
.x4a_c00493{left:213.450000px;}
.x4f_c00493{left:214.500000px;}
.xb_c00493{left:216.150000px;}
.x14_c00493{left:217.350000px;}
.x70_c00493{left:218.850000px;}
.x55_c00493{left:220.500000px;}
.x64_c00493{left:221.700000px;}
.x83_c00493{left:222.750000px;}
.x17_c00493{left:224.250000px;}
.x89_c00493{left:225.750000px;}
.x7b_c00493{left:226.800000px;}
.xc_c00493{left:228.750000px;}
.x74_c00493{left:230.550000px;}
.x8f_c00493{left:232.200000px;}
.x12_c00493{left:233.550000px;}
.x44_c00493{left:235.050000px;}
.x18_c00493{left:236.550000px;}
.x36_c00493{left:238.050000px;}
.x6b_c00493{left:239.250000px;}
.x5e_c00493{left:240.750000px;}
.x37_c00493{left:244.050000px;}
.x1f_c00493{left:245.850000px;}
.x45_c00493{left:246.900000px;}
.x53_c00493{left:248.100000px;}
.x87_c00493{left:250.050000px;}
.x56_c00493{left:251.400000px;}
.x68_c00493{left:252.450000px;}
.x41_c00493{left:253.800000px;}
.x50_c00493{left:254.850000px;}
.x38_c00493{left:256.650000px;}
.x2e_c00493{left:258.450000px;}
.x84_c00493{left:259.800000px;}
.x88_c00493{left:261.150000px;}
.x8c_c00493{left:262.200000px;}
.x57_c00493{left:263.250000px;}
.x5b_c00493{left:265.350000px;}
.x51_c00493{left:266.700000px;}
.x7c_c00493{left:268.500000px;}
.x86_c00493{left:270.750000px;}
.x6d_c00493{left:272.250000px;}
.x69_c00493{left:273.300000px;}
.x4b_c00493{left:275.700000px;}
.x3e_c00493{left:276.900000px;}
.x71_c00493{left:280.050000px;}
.x4e_c00493{left:282.600000px;}
.x73_c00493{left:283.800000px;}
.x48_c00493{left:286.500000px;}
.xd_c00493{left:287.850000px;}
.x20_c00493{left:289.350000px;}
.x2a_c00493{left:290.700000px;}
.xe_c00493{left:295.800000px;}
.x2f_c00493{left:297.750000px;}
.x3c_c00493{left:299.250000px;}
.x21_c00493{left:302.700000px;}
.x46_c00493{left:304.200000px;}
.x8a_c00493{left:308.250000px;}
.x80_c00493{left:309.300000px;}
.x5f_c00493{left:311.100000px;}
.x19_c00493{left:312.900000px;}
.x1_c00493{left:314.250000px;}
.x72_c00493{left:321.150000px;}
.x58_c00493{left:322.350000px;}
.x67_c00493{left:324.450000px;}
.x30_c00493{left:328.350000px;}
.x5c_c00493{left:329.400000px;}
.x15_c00493{left:330.450000px;}
.xf_c00493{left:332.850000px;}
.x40_c00493{left:334.800000px;}
.x22_c00493{left:336.600000px;}
.x31_c00493{left:340.950000px;}
.x90_c00493{left:342.150000px;}
.x8d_c00493{left:345.000000px;}
.x10_c00493{left:346.500000px;}
.x7a_c00493{left:349.200000px;}
.x85_c00493{left:351.150000px;}
.x65_c00493{left:352.650000px;}
.x7d_c00493{left:354.600000px;}
.x60_c00493{left:356.400000px;}
.x47_c00493{left:358.200000px;}
.x23_c00493{left:359.250000px;}
.x6c_c00493{left:360.900000px;}
.x1a_c00493{left:364.350000px;}
.x39_c00493{left:366.150000px;}
.x32_c00493{left:370.050000px;}
.x3f_c00493{left:371.250000px;}
.x2b_c00493{left:374.100000px;}
.x78_c00493{left:375.450000px;}
.x5d_c00493{left:376.950000px;}
.x77_c00493{left:379.500000px;}
.x54_c00493{left:381.000000px;}
.x33_c00493{left:382.350000px;}
.x24_c00493{left:384.450000px;}
.x91_c00493{left:386.250000px;}
.x2_c00493{left:387.300000px;}
.x25_c00493{left:389.100000px;}
.x7e_c00493{left:392.100000px;}
.x42_c00493{left:393.450000px;}
.x4c_c00493{left:395.250000px;}
.x8e_c00493{left:398.550000px;}
.x1b_c00493{left:400.050000px;}
.x49_c00493{left:402.450000px;}
.x3a_c00493{left:405.000000px;}
.x61_c00493{left:406.050000px;}
.x26_c00493{left:407.850000px;}
.x2c_c00493{left:415.800000px;}
.x3_c00493{left:417.150000px;}
.x92_c00493{left:419.700000px;}
.x59_c00493{left:420.750000px;}
.x1c_c00493{left:425.250000px;}
.x6a_c00493{left:430.350000px;}
.x34_c00493{left:431.700000px;}
.x4_c00493{left:437.250000px;}
.x9a_c00493{left:453.450000px;}
.x5_c00493{left:488.700000px;}
.xd2_c00493{left:503.550000px;}
.xd5_c00493{left:505.500000px;}
.x6_c00493{left:509.250000px;}
.xa5_c00493{left:517.350000px;}
.x9b_c00493{left:518.550000px;}
.xce_c00493{left:521.850000px;}
.x93_c00493{left:529.200000px;}
.xe2_c00493{left:531.300000px;}
.xef_c00493{left:534.000000px;}
.xd3_c00493{left:539.250000px;}
.xd6_c00493{left:540.750000px;}
.xf5_c00493{left:541.800000px;}
.xfc_c00493{left:543.600000px;}
.xf9_c00493{left:544.800000px;}
.xec_c00493{left:547.650000px;}
.xc4_c00493{left:549.450000px;}
.x9c_c00493{left:553.050000px;}
.xa6_c00493{left:554.400000px;}
.xc1_c00493{left:556.650000px;}
.x99_c00493{left:558.150000px;}
.xde_c00493{left:559.200000px;}
.xa9_c00493{left:560.850000px;}
.xe3_c00493{left:563.700000px;}
.xa7_c00493{left:564.900000px;}
.xe9_c00493{left:566.700000px;}
.xc5_c00493{left:567.750000px;}
.xa1_c00493{left:568.800000px;}
.xb7_c00493{left:570.600000px;}
.xfa_c00493{left:572.850000px;}
.xbd_c00493{left:573.900000px;}
.xed_c00493{left:575.700000px;}
.xbf_c00493{left:577.800000px;}
.xd4_c00493{left:579.600000px;}
.xd7_c00493{left:580.650000px;}
.x9d_c00493{left:581.850000px;}
.xf0_c00493{left:584.700000px;}
.xa2_c00493{left:586.500000px;}
.xab_c00493{left:587.850000px;}
.xc6_c00493{left:589.050000px;}
.x102_c00493{left:590.400000px;}
.xcf_c00493{left:592.050000px;}
.x94_c00493{left:594.300000px;}
.xe5_c00493{left:595.500000px;}
.xb4_c00493{left:597.600000px;}
.xb3_c00493{left:599.400000px;}
.xf2_c00493{left:600.450000px;}
.xc7_c00493{left:601.950000px;}
.xaa_c00493{left:604.800000px;}
.xa8_c00493{left:606.300000px;}
.xe6_c00493{left:607.350000px;}
.xea_c00493{left:608.850000px;}
.xb8_c00493{left:609.900000px;}
.xd8_c00493{left:611.100000px;}
.xb5_c00493{left:613.500000px;}
.xac_c00493{left:615.600000px;}
.x104_c00493{left:617.250000px;}
.xb9_c00493{left:619.200000px;}
.xc0_c00493{left:622.050000px;}
.xb0_c00493{left:624.300000px;}
.xca_c00493{left:625.650000px;}
.xad_c00493{left:628.200000px;}
.xf8_c00493{left:630.000000px;}
.xba_c00493{left:632.100000px;}
.xb6_c00493{left:636.600000px;}
.xa3_c00493{left:637.650000px;}
.xc8_c00493{left:638.850000px;}
.x95_c00493{left:641.400000px;}
.xd9_c00493{left:643.200000px;}
.xf6_c00493{left:645.150000px;}
.xd0_c00493{left:646.350000px;}
.xee_c00493{left:647.400000px;}
.x9e_c00493{left:648.450000px;}
.xbe_c00493{left:654.600000px;}
.xeb_c00493{left:655.950000px;}
.xfb_c00493{left:658.650000px;}
.xff_c00493{left:661.650000px;}
.xa4_c00493{left:664.950000px;}
.xe0_c00493{left:666.000000px;}
.xfd_c00493{left:667.050000px;}
.xc2_c00493{left:668.100000px;}
.xda_c00493{left:669.900000px;}
.xb1_c00493{left:672.150000px;}
.x96_c00493{left:674.850000px;}
.xe7_c00493{left:676.800000px;}
.xbb_c00493{left:678.900000px;}
.xae_c00493{left:682.200000px;}
.x9f_c00493{left:684.750000px;}
.xcb_c00493{left:685.800000px;}
.xdb_c00493{left:687.600000px;}
.xe1_c00493{left:688.650000px;}
.xcd_c00493{left:693.600000px;}
.xf7_c00493{left:695.250000px;}
.x100_c00493{left:696.900000px;}
.xf4_c00493{left:698.550000px;}
.xf1_c00493{left:700.650000px;}
.x97_c00493{left:702.600000px;}
.xb2_c00493{left:703.800000px;}
.x103_c00493{left:712.500000px;}
.xd1_c00493{left:714.150000px;}
.xcc_c00493{left:721.050000px;}
.xdf_c00493{left:722.550000px;}
.xe8_c00493{left:727.950000px;}
.xfe_c00493{left:729.750000px;}
.xaf_c00493{left:731.550000px;}
.xc3_c00493{left:736.200000px;}
.xdc_c00493{left:737.700000px;}
.x101_c00493{left:739.050000px;}
.xbc_c00493{left:740.100000px;}
.xa0_c00493{left:743.400000px;}
.x98_c00493{left:747.600000px;}
.xe4_c00493{left:749.850000px;}
.xdd_c00493{left:751.050000px;}
.x7_c00493{left:754.800000px;}
.xc9_c00493{left:757.650000px;}
.xf3_c00493{left:760.050000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws5_c00493{word-spacing:-4.576794pt;}
.ws7_c00493{word-spacing:-4.465512pt;}
.ws2_c00493{word-spacing:-3.380850pt;}
.ws3_c00493{word-spacing:-3.334477pt;}
.ws4_c00493{word-spacing:-2.173625pt;}
.wsa_c00493{word-spacing:0.000000pt;}
.ws1_c00493{word-spacing:0.266367pt;}
.ws9_c00493{word-spacing:3.517472pt;}
.ws6_c00493{word-spacing:13.607477pt;}
.ws0_c00493{word-spacing:16.020732pt;}
.ws8_c00493{word-spacing:24.831876pt;}
._0_c00493{width:17.931590pt;}
.fs2_c00493{font-size:37.333333pt;}
.fs0_c00493{font-size:53.333333pt;}
.fs1_c00493{font-size:58.666667pt;}
.y0_c00493{bottom:0.000000pt;}
.y72_c00493{bottom:127.466667pt;}
.y3e_c00493{bottom:127.733333pt;}
.y3d_c00493{bottom:140.533333pt;}
.y71_c00493{bottom:153.333333pt;}
.y3c_c00493{bottom:153.600000pt;}
.y3b_c00493{bottom:166.400000pt;}
.y70_c00493{bottom:179.200000pt;}
.y3a_c00493{bottom:179.466667pt;}
.y6f_c00493{bottom:192.266667pt;}
.y39_c00493{bottom:192.800000pt;}
.y6e_c00493{bottom:205.466667pt;}
.y38_c00493{bottom:205.600000pt;}
.y6d_c00493{bottom:218.266667pt;}
.y37_c00493{bottom:218.666667pt;}
.y6c_c00493{bottom:231.466667pt;}
.y36_c00493{bottom:231.733333pt;}
.y6b_c00493{bottom:243.600000pt;}
.y35_c00493{bottom:244.400000pt;}
.y6a_c00493{bottom:256.400000pt;}
.y34_c00493{bottom:257.200000pt;}
.y69_c00493{bottom:269.466667pt;}
.y33_c00493{bottom:270.666667pt;}
.y68_c00493{bottom:282.533333pt;}
.y32_c00493{bottom:283.200000pt;}
.y67_c00493{bottom:295.066667pt;}
.y31_c00493{bottom:296.533333pt;}
.y66_c00493{bottom:307.866667pt;}
.y30_c00493{bottom:309.600000pt;}
.y65_c00493{bottom:321.333333pt;}
.y2f_c00493{bottom:322.666667pt;}
.y64_c00493{bottom:334.133333pt;}
.y2e_c00493{bottom:335.466667pt;}
.y63_c00493{bottom:347.600000pt;}
.y2d_c00493{bottom:348.533333pt;}
.y62_c00493{bottom:360.133333pt;}
.y2c_c00493{bottom:361.333333pt;}
.y61_c00493{bottom:372.933333pt;}
.y2b_c00493{bottom:374.133333pt;}
.y60_c00493{bottom:386.000000pt;}
.y2a_c00493{bottom:386.933333pt;}
.y5f_c00493{bottom:399.066667pt;}
.y29_c00493{bottom:399.733333pt;}
.y5e_c00493{bottom:411.866667pt;}
.y28_c00493{bottom:412.533333pt;}
.y5d_c00493{bottom:424.933333pt;}
.y27_c00493{bottom:425.466667pt;}
.y5c_c00493{bottom:437.466667pt;}
.y26_c00493{bottom:438.266667pt;}
.y5b_c00493{bottom:450.933333pt;}
.y25_c00493{bottom:451.333333pt;}
.y5a_c00493{bottom:464.000000pt;}
.y24_c00493{bottom:464.400000pt;}
.y59_c00493{bottom:476.800000pt;}
.y23_c00493{bottom:477.200000pt;}
.y58_c00493{bottom:489.600000pt;}
.y22_c00493{bottom:490.266667pt;}
.y57_c00493{bottom:502.800000pt;}
.y21_c00493{bottom:503.066667pt;}
.y56_c00493{bottom:515.866667pt;}
.y20_c00493{bottom:516.133333pt;}
.y55_c00493{bottom:528.666667pt;}
.y1f_c00493{bottom:528.933333pt;}
.y54_c00493{bottom:541.866667pt;}
.y1e_c00493{bottom:542.266667pt;}
.y53_c00493{bottom:554.933333pt;}
.y1d_c00493{bottom:555.333333pt;}
.y52_c00493{bottom:567.733333pt;}
.y1c_c00493{bottom:568.400000pt;}
.y51_c00493{bottom:580.533333pt;}
.y1b_c00493{bottom:581.466667pt;}
.y50_c00493{bottom:594.000000pt;}
.y1a_c00493{bottom:594.266667pt;}
.y4f_c00493{bottom:606.800000pt;}
.y19_c00493{bottom:607.066667pt;}
.y4e_c00493{bottom:619.600000pt;}
.y18_c00493{bottom:619.866667pt;}
.y4d_c00493{bottom:632.666667pt;}
.y17_c00493{bottom:633.333333pt;}
.y4c_c00493{bottom:645.866667pt;}
.y16_c00493{bottom:646.400000pt;}
.y4b_c00493{bottom:658.933333pt;}
.y15_c00493{bottom:659.200000pt;}
.y4a_c00493{bottom:672.000000pt;}
.y14_c00493{bottom:672.266667pt;}
.y49_c00493{bottom:684.800000pt;}
.y13_c00493{bottom:685.333333pt;}
.y48_c00493{bottom:697.866667pt;}
.y12_c00493{bottom:698.133333pt;}
.y47_c00493{bottom:710.666667pt;}
.y11_c00493{bottom:711.200000pt;}
.y46_c00493{bottom:723.466667pt;}
.y10_c00493{bottom:724.000000pt;}
.y45_c00493{bottom:736.400000pt;}
.yf_c00493{bottom:737.066667pt;}
.y44_c00493{bottom:749.466667pt;}
.ye_c00493{bottom:749.866667pt;}
.y43_c00493{bottom:762.533333pt;}
.yd_c00493{bottom:762.933333pt;}
.yc_c00493{bottom:775.333333pt;}
.y42_c00493{bottom:775.733333pt;}
.yb_c00493{bottom:788.133333pt;}
.y41_c00493{bottom:788.533333pt;}
.ya_c00493{bottom:801.866667pt;}
.y9_c00493{bottom:814.666667pt;}
.y8_c00493{bottom:827.466667pt;}
.y7_c00493{bottom:840.666667pt;}
.y6_c00493{bottom:853.733333pt;}
.y40_c00493{bottom:853.866667pt;}
.y5_c00493{bottom:866.533333pt;}
.y3f_c00493{bottom:866.666667pt;}
.y4_c00493{bottom:879.733333pt;}
.y3_c00493{bottom:892.800000pt;}
.y2_c00493{bottom:923.733333pt;}
.y1_c00493{bottom:928.266667pt;}
.h4_c00493{height:37.333333pt;}
.h2_c00493{height:53.333333pt;}
.h3_c00493{height:58.666667pt;}
.h1_c00493{height:1036.666667pt;}
.h0_c00493{height:1036.800049pt;}
.w0_c00493{width:818.559977pt;}
.w1_c00493{width:818.666667pt;}
.x0_c00493{left:0.000000pt;}
.x8_c00493{left:98.266667pt;}
.x82_c00493{left:99.333333pt;}
.x11_c00493{left:131.733333pt;}
.x9_c00493{left:134.133333pt;}
.x52_c00493{left:135.066667pt;}
.x6e_c00493{left:136.933333pt;}
.x7f_c00493{left:143.466667pt;}
.x27_c00493{left:144.666667pt;}
.x1d_c00493{left:145.866667pt;}
.x75_c00493{left:152.000000pt;}
.x81_c00493{left:153.866667pt;}
.x6f_c00493{left:155.466667pt;}
.x13_c00493{left:157.733333pt;}
.xa_c00493{left:162.000000pt;}
.x8b_c00493{left:165.200000pt;}
.x28_c00493{left:166.133333pt;}
.x1e_c00493{left:167.333333pt;}
.x29_c00493{left:168.400000pt;}
.x63_c00493{left:170.266667pt;}
.x62_c00493{left:171.866667pt;}
.x16_c00493{left:174.666667pt;}
.x66_c00493{left:175.600000pt;}
.x35_c00493{left:176.666667pt;}
.x3b_c00493{left:177.600000pt;}
.x4d_c00493{left:179.200000pt;}
.x76_c00493{left:180.800000pt;}
.x43_c00493{left:181.733333pt;}
.x2d_c00493{left:183.333333pt;}
.x79_c00493{left:184.266667pt;}
.x3d_c00493{left:186.266667pt;}
.x5a_c00493{left:187.866667pt;}
.x4a_c00493{left:189.733333pt;}
.x4f_c00493{left:190.666667pt;}
.xb_c00493{left:192.133333pt;}
.x14_c00493{left:193.200000pt;}
.x70_c00493{left:194.533333pt;}
.x55_c00493{left:196.000000pt;}
.x64_c00493{left:197.066667pt;}
.x83_c00493{left:198.000000pt;}
.x17_c00493{left:199.333333pt;}
.x89_c00493{left:200.666667pt;}
.x7b_c00493{left:201.600000pt;}
.xc_c00493{left:203.333333pt;}
.x74_c00493{left:204.933333pt;}
.x8f_c00493{left:206.400000pt;}
.x12_c00493{left:207.600000pt;}
.x44_c00493{left:208.933333pt;}
.x18_c00493{left:210.266667pt;}
.x36_c00493{left:211.600000pt;}
.x6b_c00493{left:212.666667pt;}
.x5e_c00493{left:214.000000pt;}
.x37_c00493{left:216.933333pt;}
.x1f_c00493{left:218.533333pt;}
.x45_c00493{left:219.466667pt;}
.x53_c00493{left:220.533333pt;}
.x87_c00493{left:222.266667pt;}
.x56_c00493{left:223.466667pt;}
.x68_c00493{left:224.400000pt;}
.x41_c00493{left:225.600000pt;}
.x50_c00493{left:226.533333pt;}
.x38_c00493{left:228.133333pt;}
.x2e_c00493{left:229.733333pt;}
.x84_c00493{left:230.933333pt;}
.x88_c00493{left:232.133333pt;}
.x8c_c00493{left:233.066667pt;}
.x57_c00493{left:234.000000pt;}
.x5b_c00493{left:235.866667pt;}
.x51_c00493{left:237.066667pt;}
.x7c_c00493{left:238.666667pt;}
.x86_c00493{left:240.666667pt;}
.x6d_c00493{left:242.000000pt;}
.x69_c00493{left:242.933333pt;}
.x4b_c00493{left:245.066667pt;}
.x3e_c00493{left:246.133333pt;}
.x71_c00493{left:248.933333pt;}
.x4e_c00493{left:251.200000pt;}
.x73_c00493{left:252.266667pt;}
.x48_c00493{left:254.666667pt;}
.xd_c00493{left:255.866667pt;}
.x20_c00493{left:257.200000pt;}
.x2a_c00493{left:258.400000pt;}
.xe_c00493{left:262.933333pt;}
.x2f_c00493{left:264.666667pt;}
.x3c_c00493{left:266.000000pt;}
.x21_c00493{left:269.066667pt;}
.x46_c00493{left:270.400000pt;}
.x8a_c00493{left:274.000000pt;}
.x80_c00493{left:274.933333pt;}
.x5f_c00493{left:276.533333pt;}
.x19_c00493{left:278.133333pt;}
.x1_c00493{left:279.333333pt;}
.x72_c00493{left:285.466667pt;}
.x58_c00493{left:286.533333pt;}
.x67_c00493{left:288.400000pt;}
.x30_c00493{left:291.866667pt;}
.x5c_c00493{left:292.800000pt;}
.x15_c00493{left:293.733333pt;}
.xf_c00493{left:295.866667pt;}
.x40_c00493{left:297.600000pt;}
.x22_c00493{left:299.200000pt;}
.x31_c00493{left:303.066667pt;}
.x90_c00493{left:304.133333pt;}
.x8d_c00493{left:306.666667pt;}
.x10_c00493{left:308.000000pt;}
.x7a_c00493{left:310.400000pt;}
.x85_c00493{left:312.133333pt;}
.x65_c00493{left:313.466667pt;}
.x7d_c00493{left:315.200000pt;}
.x60_c00493{left:316.800000pt;}
.x47_c00493{left:318.400000pt;}
.x23_c00493{left:319.333333pt;}
.x6c_c00493{left:320.800000pt;}
.x1a_c00493{left:323.866667pt;}
.x39_c00493{left:325.466667pt;}
.x32_c00493{left:328.933333pt;}
.x3f_c00493{left:330.000000pt;}
.x2b_c00493{left:332.533333pt;}
.x78_c00493{left:333.733333pt;}
.x5d_c00493{left:335.066667pt;}
.x77_c00493{left:337.333333pt;}
.x54_c00493{left:338.666667pt;}
.x33_c00493{left:339.866667pt;}
.x24_c00493{left:341.733333pt;}
.x91_c00493{left:343.333333pt;}
.x2_c00493{left:344.266667pt;}
.x25_c00493{left:345.866667pt;}
.x7e_c00493{left:348.533333pt;}
.x42_c00493{left:349.733333pt;}
.x4c_c00493{left:351.333333pt;}
.x8e_c00493{left:354.266667pt;}
.x1b_c00493{left:355.600000pt;}
.x49_c00493{left:357.733333pt;}
.x3a_c00493{left:360.000000pt;}
.x61_c00493{left:360.933333pt;}
.x26_c00493{left:362.533333pt;}
.x2c_c00493{left:369.600000pt;}
.x3_c00493{left:370.800000pt;}
.x92_c00493{left:373.066667pt;}
.x59_c00493{left:374.000000pt;}
.x1c_c00493{left:378.000000pt;}
.x6a_c00493{left:382.533333pt;}
.x34_c00493{left:383.733333pt;}
.x4_c00493{left:388.666667pt;}
.x9a_c00493{left:403.066667pt;}
.x5_c00493{left:434.400000pt;}
.xd2_c00493{left:447.600000pt;}
.xd5_c00493{left:449.333333pt;}
.x6_c00493{left:452.666667pt;}
.xa5_c00493{left:459.866667pt;}
.x9b_c00493{left:460.933333pt;}
.xce_c00493{left:463.866667pt;}
.x93_c00493{left:470.400000pt;}
.xe2_c00493{left:472.266667pt;}
.xef_c00493{left:474.666667pt;}
.xd3_c00493{left:479.333333pt;}
.xd6_c00493{left:480.666667pt;}
.xf5_c00493{left:481.600000pt;}
.xfc_c00493{left:483.200000pt;}
.xf9_c00493{left:484.266667pt;}
.xec_c00493{left:486.800000pt;}
.xc4_c00493{left:488.400000pt;}
.x9c_c00493{left:491.600000pt;}
.xa6_c00493{left:492.800000pt;}
.xc1_c00493{left:494.800000pt;}
.x99_c00493{left:496.133333pt;}
.xde_c00493{left:497.066667pt;}
.xa9_c00493{left:498.533333pt;}
.xe3_c00493{left:501.066667pt;}
.xa7_c00493{left:502.133333pt;}
.xe9_c00493{left:503.733333pt;}
.xc5_c00493{left:504.666667pt;}
.xa1_c00493{left:505.600000pt;}
.xb7_c00493{left:507.200000pt;}
.xfa_c00493{left:509.200000pt;}
.xbd_c00493{left:510.133333pt;}
.xed_c00493{left:511.733333pt;}
.xbf_c00493{left:513.600000pt;}
.xd4_c00493{left:515.200000pt;}
.xd7_c00493{left:516.133333pt;}
.x9d_c00493{left:517.200000pt;}
.xf0_c00493{left:519.733333pt;}
.xa2_c00493{left:521.333333pt;}
.xab_c00493{left:522.533333pt;}
.xc6_c00493{left:523.600000pt;}
.x102_c00493{left:524.800000pt;}
.xcf_c00493{left:526.266667pt;}
.x94_c00493{left:528.266667pt;}
.xe5_c00493{left:529.333333pt;}
.xb4_c00493{left:531.200000pt;}
.xb3_c00493{left:532.800000pt;}
.xf2_c00493{left:533.733333pt;}
.xc7_c00493{left:535.066667pt;}
.xaa_c00493{left:537.600000pt;}
.xa8_c00493{left:538.933333pt;}
.xe6_c00493{left:539.866667pt;}
.xea_c00493{left:541.200000pt;}
.xb8_c00493{left:542.133333pt;}
.xd8_c00493{left:543.200000pt;}
.xb5_c00493{left:545.333333pt;}
.xac_c00493{left:547.200000pt;}
.x104_c00493{left:548.666667pt;}
.xb9_c00493{left:550.400000pt;}
.xc0_c00493{left:552.933333pt;}
.xb0_c00493{left:554.933333pt;}
.xca_c00493{left:556.133333pt;}
.xad_c00493{left:558.400000pt;}
.xf8_c00493{left:560.000000pt;}
.xba_c00493{left:561.866667pt;}
.xb6_c00493{left:565.866667pt;}
.xa3_c00493{left:566.800000pt;}
.xc8_c00493{left:567.866667pt;}
.x95_c00493{left:570.133333pt;}
.xd9_c00493{left:571.733333pt;}
.xf6_c00493{left:573.466667pt;}
.xd0_c00493{left:574.533333pt;}
.xee_c00493{left:575.466667pt;}
.x9e_c00493{left:576.400000pt;}
.xbe_c00493{left:581.866667pt;}
.xeb_c00493{left:583.066667pt;}
.xfb_c00493{left:585.466667pt;}
.xff_c00493{left:588.133333pt;}
.xa4_c00493{left:591.066667pt;}
.xe0_c00493{left:592.000000pt;}
.xfd_c00493{left:592.933333pt;}
.xc2_c00493{left:593.866667pt;}
.xda_c00493{left:595.466667pt;}
.xb1_c00493{left:597.466667pt;}
.x96_c00493{left:599.866667pt;}
.xe7_c00493{left:601.600000pt;}
.xbb_c00493{left:603.466667pt;}
.xae_c00493{left:606.400000pt;}
.x9f_c00493{left:608.666667pt;}
.xcb_c00493{left:609.600000pt;}
.xdb_c00493{left:611.200000pt;}
.xe1_c00493{left:612.133333pt;}
.xcd_c00493{left:616.533333pt;}
.xf7_c00493{left:618.000000pt;}
.x100_c00493{left:619.466667pt;}
.xf4_c00493{left:620.933333pt;}
.xf1_c00493{left:622.800000pt;}
.x97_c00493{left:624.533333pt;}
.xb2_c00493{left:625.600000pt;}
.x103_c00493{left:633.333333pt;}
.xd1_c00493{left:634.800000pt;}
.xcc_c00493{left:640.933333pt;}
.xdf_c00493{left:642.266667pt;}
.xe8_c00493{left:647.066667pt;}
.xfe_c00493{left:648.666667pt;}
.xaf_c00493{left:650.266667pt;}
.xc3_c00493{left:654.400000pt;}
.xdc_c00493{left:655.733333pt;}
.x101_c00493{left:656.933333pt;}
.xbc_c00493{left:657.866667pt;}
.xa0_c00493{left:660.800000pt;}
.x98_c00493{left:664.533333pt;}
.xe4_c00493{left:666.533333pt;}
.xdd_c00493{left:667.600000pt;}
.x7_c00493{left:670.933333pt;}
.xc9_c00493{left:673.466667pt;}
.xf3_c00493{left:675.600000pt;}
}





/* 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_c00494 {
    display:none;
  }
  .loading-indicator_c00494.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00494 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_c00494 { 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_c00494" -> "#page-container .classname_c00494")
 */
.pf_c00494 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00494 { /* 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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00494 { /* 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_c00494 { /* 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_c00494 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00494 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00494 {overflow:visible;}
  }
}
.c_c00494 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00494 { /* 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_c00494:after { /* webkit #35443 */
  content: '';
}
.t_c00494:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00494 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 */
}
.__c00494 { /* 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_c00494 { /* info for Javascript */
  display:none;
}
.l_c00494 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00494 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00494 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00494: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_c00494 {
    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_c00494.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00494.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_c00494 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.000000;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;}
.m58_c00494{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.mba_c00494{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00494{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m73_c00494{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00494{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m48_c00494{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m55_c00494{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00494{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m84_c00494{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m27_c00494{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m72_c00494{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m68_c00494{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m56_c00494{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mc_c00494{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00494{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m97_c00494{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00494{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00494{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00494{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m39_c00494{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m88_c00494{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00494{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m26_c00494{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m4c_c00494{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m37_c00494{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00494{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m23_c00494{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00494{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00494{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m89_c00494{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m79_c00494{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00494{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00494{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00494{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m96_c00494{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m93_c00494{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m70_c00494{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00494{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m40_c00494{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00494{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00494{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00494{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00494{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m18_c00494{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00494{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00494{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m57_c00494{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m59_c00494{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m74_c00494{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m24_c00494{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m66_c00494{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma_c00494{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00494{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m31_c00494{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00494{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m10_c00494{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m16_c00494{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00494{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00494{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m50_c00494{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m47_c00494{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m36_c00494{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m90_c00494{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m99_c00494{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00494{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00494{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m33_c00494{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3b_c00494{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m62_c00494{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00494{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m53_c00494{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00494{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00494{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00494{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21_c00494{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00494{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00494{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00494{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m44_c00494{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mab_c00494{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m46_c00494{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20_c00494{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2_c00494{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00494{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m54_c00494{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m76_c00494{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m77_c00494{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00494{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m34_c00494{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00494{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00494{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m7f_c00494{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00494{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00494{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m98_c00494{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.mb_c00494{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00494{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00494{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00494{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m80_c00494{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mbe_c00494{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00494{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00494{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m9_c00494{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00494{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.me_c00494{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m29_c00494{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m78_c00494{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00494{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m85_c00494{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m25_c00494{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00494{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m86_c00494{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00494{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m41_c00494{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m13_c00494{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m30_c00494{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00494{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00494{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m8_c00494{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.md_c00494{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m2c_c00494{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m95_c00494{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00494{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m52_c00494{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00494{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m32_c00494{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m49_c00494{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m51_c00494{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11_c00494{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m15_c00494{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m38_c00494{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m42_c00494{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00494{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m92_c00494{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00494{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m43_c00494{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m81_c00494{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00494{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m12_c00494{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00494{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m19_c00494{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m65_c00494{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m6d_c00494{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m69_c00494{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00494{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m63_c00494{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00494{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00494{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00494{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.mf_c00494{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m75_c00494{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00494{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m64_c00494{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00494{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m94_c00494{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m60_c00494{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m87_c00494{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m83_c00494{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.maa_c00494{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m14_c00494{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00494{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00494{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m91_c00494{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m28_c00494{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00494{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00494{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00494{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m71_c00494{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mad_c00494{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00494{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00494{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00494{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00494{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00494{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00494{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00494{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00494{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00494{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m67_c00494{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00494{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00494{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00494{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m61_c00494{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.mac_c00494{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00494{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m82_c00494{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.maf_c00494{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mae_c00494{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00494{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m22_c00494{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m17_c00494{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00494{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m35_c00494{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m45_c00494{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.v0_c00494{vertical-align:0.000000px;}
.ls0_c00494{letter-spacing:0.000000px;}
.sc__c00494{text-shadow:none;}
.sc0_c00494{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__c00494{-webkit-text-stroke:0px transparent;}
.sc0_c00494{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6_c00494{word-spacing:-9.926244px;}
.ws0_c00494{word-spacing:-8.215743px;}
.ws5_c00494{word-spacing:-7.176661px;}
.ws2_c00494{word-spacing:-5.148893px;}
.ws4_c00494{word-spacing:-4.745543px;}
.ws7_c00494{word-spacing:0.000000px;}
.ws1_c00494{word-spacing:1.375000px;}
.ws3_c00494{word-spacing:10.649867px;}
.fc0_c00494{color:transparent;}
.fs2_c00494{font-size:36.000000px;}
.fs1_c00494{font-size:42.000000px;}
.fs0_c00494{font-size:54.000000px;}
.y0_c00494{bottom:0.000000px;}
.y3d_c00494{bottom:147.300000px;}
.y78_c00494{bottom:150.900000px;}
.y3c_c00494{bottom:163.800000px;}
.y77_c00494{bottom:164.550000px;}
.y3b_c00494{bottom:178.500000px;}
.y76_c00494{bottom:181.650000px;}
.y3a_c00494{bottom:191.400000px;}
.y75_c00494{bottom:194.550000px;}
.y39_c00494{bottom:207.300000px;}
.y74_c00494{bottom:211.050000px;}
.y38_c00494{bottom:223.200000px;}
.y73_c00494{bottom:225.750000px;}
.y72_c00494{bottom:239.100000px;}
.y37_c00494{bottom:246.450000px;}
.y71_c00494{bottom:252.750000px;}
.y36_c00494{bottom:262.350000px;}
.y70_c00494{bottom:267.150000px;}
.y35_c00494{bottom:277.050000px;}
.y6f_c00494{bottom:283.650000px;}
.y34_c00494{bottom:291.150000px;}
.y6e_c00494{bottom:298.350000px;}
.y33_c00494{bottom:305.250000px;}
.y6d_c00494{bottom:312.750000px;}
.y32_c00494{bottom:320.100000px;}
.y6c_c00494{bottom:327.150000px;}
.y31_c00494{bottom:336.000000px;}
.y6b_c00494{bottom:340.050000px;}
.y30_c00494{bottom:350.100000px;}
.y6a_c00494{bottom:356.550000px;}
.y2f_c00494{bottom:364.500000px;}
.y69_c00494{bottom:370.950000px;}
.y2e_c00494{bottom:379.200000px;}
.y68_c00494{bottom:384.600000px;}
.y2d_c00494{bottom:393.900000px;}
.y67_c00494{bottom:400.050000px;}
.y2c_c00494{bottom:408.300000px;}
.y66_c00494{bottom:414.450000px;}
.y2b_c00494{bottom:423.000000px;}
.y65_c00494{bottom:429.150000px;}
.y2a_c00494{bottom:437.700000px;}
.y64_c00494{bottom:443.550000px;}
.y29_c00494{bottom:451.800000px;}
.y63_c00494{bottom:457.800000px;}
.y28_c00494{bottom:466.200000px;}
.y62_c00494{bottom:470.700000px;}
.y27_c00494{bottom:480.600000px;}
.y61_c00494{bottom:487.200000px;}
.y26_c00494{bottom:495.300000px;}
.y60_c00494{bottom:500.100000px;}
.y25_c00494{bottom:510.750000px;}
.y5f_c00494{bottom:516.300000px;}
.y24_c00494{bottom:524.850000px;}
.y5e_c00494{bottom:529.950000px;}
.y23_c00494{bottom:538.500000px;}
.y5d_c00494{bottom:545.100000px;}
.y22_c00494{bottom:553.950000px;}
.y5c_c00494{bottom:558.000000px;}
.y21_c00494{bottom:568.350000px;}
.y5b_c00494{bottom:573.900000px;}
.y20_c00494{bottom:582.450000px;}
.y5a_c00494{bottom:586.500000px;}
.y1f_c00494{bottom:597.600000px;}
.y59_c00494{bottom:602.550000px;}
.y1e_c00494{bottom:612.300000px;}
.y58_c00494{bottom:615.900000px;}
.y1d_c00494{bottom:626.400000px;}
.y57_c00494{bottom:631.800000px;}
.y1c_c00494{bottom:641.100000px;}
.y56_c00494{bottom:645.900000px;}
.y1b_c00494{bottom:656.250000px;}
.y55_c00494{bottom:660.900000px;}
.y1a_c00494{bottom:670.650000px;}
.y54_c00494{bottom:675.000000px;}
.y19_c00494{bottom:685.050000px;}
.y53_c00494{bottom:689.700000px;}
.y18_c00494{bottom:699.900000px;}
.y52_c00494{bottom:704.850000px;}
.y17_c00494{bottom:714.300000px;}
.y51_c00494{bottom:719.400000px;}
.y16_c00494{bottom:729.000000px;}
.y50_c00494{bottom:733.800000px;}
.y15_c00494{bottom:743.400000px;}
.y4f_c00494{bottom:748.200000px;}
.y14_c00494{bottom:757.800000px;}
.y4e_c00494{bottom:762.900000px;}
.y13_c00494{bottom:772.500000px;}
.y4d_c00494{bottom:777.600000px;}
.y12_c00494{bottom:786.900000px;}
.y4c_c00494{bottom:792.300000px;}
.y11_c00494{bottom:801.750000px;}
.y4b_c00494{bottom:806.400000px;}
.y10_c00494{bottom:816.450000px;}
.y4a_c00494{bottom:821.100000px;}
.yf_c00494{bottom:830.850000px;}
.y49_c00494{bottom:835.500000px;}
.ye_c00494{bottom:845.250000px;}
.y48_c00494{bottom:851.700000px;}
.yd_c00494{bottom:859.350000px;}
.yc_c00494{bottom:875.100000px;}
.y47_c00494{bottom:875.850000px;}
.yb_c00494{bottom:889.500000px;}
.y46_c00494{bottom:891.300000px;}
.ya_c00494{bottom:904.350000px;}
.y45_c00494{bottom:905.400000px;}
.y9_c00494{bottom:918.000000px;}
.y44_c00494{bottom:920.550000px;}
.y8_c00494{bottom:932.700000px;}
.y43_c00494{bottom:934.950000px;}
.y7_c00494{bottom:947.850000px;}
.y42_c00494{bottom:949.650000px;}
.y6_c00494{bottom:961.800000px;}
.y41_c00494{bottom:964.050000px;}
.y5_c00494{bottom:976.950000px;}
.y40_c00494{bottom:978.150000px;}
.y4_c00494{bottom:991.050000px;}
.y3f_c00494{bottom:993.300000px;}
.y3_c00494{bottom:1006.200000px;}
.y3e_c00494{bottom:1008.000000px;}
.y1_c00494{bottom:1040.400000px;}
.y2_c00494{bottom:1042.200000px;}
.h4_c00494{height:36.000000px;}
.h3_c00494{height:42.000000px;}
.h2_c00494{height:54.000000px;}
.h1_c00494{height:1166.250000px;}
.h0_c00494{height:1166.400056px;}
.w0_c00494{width:920.879975px;}
.w1_c00494{width:921.000000px;}
.x0_c00494{left:0.000000px;}
.x3_c00494{left:136.800000px;}
.x1_c00494{left:138.900000px;}
.x64_c00494{left:141.750000px;}
.x6c_c00494{left:142.950000px;}
.x72_c00494{left:144.300000px;}
.x73_c00494{left:182.850000px;}
.x4_c00494{left:188.700000px;}
.x29_c00494{left:190.050000px;}
.x3a_c00494{left:191.100000px;}
.x51_c00494{left:192.900000px;}
.x60_c00494{left:194.100000px;}
.x69_c00494{left:195.750000px;}
.x20_c00494{left:200.850000px;}
.x34_c00494{left:203.100000px;}
.x4a_c00494{left:204.450000px;}
.x70_c00494{left:213.150000px;}
.x66_c00494{left:216.000000px;}
.x1a_c00494{left:220.650000px;}
.x21_c00494{left:222.450000px;}
.x74_c00494{left:225.000000px;}
.x54_c00494{left:227.250000px;}
.x11_c00494{left:229.200000px;}
.x5_c00494{left:231.150000px;}
.xb_c00494{left:233.700000px;}
.x67_c00494{left:234.750000px;}
.x2f_c00494{left:235.800000px;}
.x45_c00494{left:237.600000px;}
.x4b_c00494{left:239.700000px;}
.x77_c00494{left:240.900000px;}
.x6a_c00494{left:242.250000px;}
.x25_c00494{left:243.900000px;}
.x2c_c00494{left:245.550000px;}
.x3b_c00494{left:247.200000px;}
.x4f_c00494{left:249.450000px;}
.x36_c00494{left:251.100000px;}
.x6_c00494{left:252.450000px;}
.x57_c00494{left:254.550000px;}
.x13_c00494{left:255.600000px;}
.x50_c00494{left:262.800000px;}
.x22_c00494{left:264.150000px;}
.x3c_c00494{left:265.650000px;}
.x52_c00494{left:267.450000px;}
.x2a_c00494{left:268.950000px;}
.x1b_c00494{left:270.300000px;}
.x1c_c00494{left:272.400000px;}
.x43_c00494{left:273.600000px;}
.x12_c00494{left:274.950000px;}
.x30_c00494{left:276.150000px;}
.x17_c00494{left:277.500000px;}
.xc_c00494{left:279.000000px;}
.x14_c00494{left:280.500000px;}
.x68_c00494{left:281.550000px;}
.x6d_c00494{left:282.900000px;}
.x2b_c00494{left:284.400000px;}
.x7_c00494{left:285.900000px;}
.x23_c00494{left:287.850000px;}
.x26_c00494{left:288.900000px;}
.x46_c00494{left:291.150000px;}
.xd_c00494{left:292.650000px;}
.x18_c00494{left:294.000000px;}
.x58_c00494{left:295.200000px;}
.x5d_c00494{left:296.700000px;}
.x38_c00494{left:297.750000px;}
.x35_c00494{left:301.050000px;}
.x37_c00494{left:302.250000px;}
.x71_c00494{left:304.200000px;}
.x1d_c00494{left:306.300000px;}
.x8_c00494{left:307.800000px;}
.xe_c00494{left:308.850000px;}
.x5b_c00494{left:311.250000px;}
.x39_c00494{left:312.900000px;}
.x55_c00494{left:315.150000px;}
.x40_c00494{left:317.550000px;}
.x44_c00494{left:320.400000px;}
.x31_c00494{left:321.450000px;}
.x63_c00494{left:323.250000px;}
.x5c_c00494{left:324.600000px;}
.x5e_c00494{left:326.550000px;}
.x6e_c00494{left:329.400000px;}
.x3d_c00494{left:331.500000px;}
.x53_c00494{left:332.700000px;}
.x59_c00494{left:334.500000px;}
.x19_c00494{left:338.700000px;}
.x24_c00494{left:339.750000px;}
.x4c_c00494{left:341.550000px;}
.xf_c00494{left:343.050000px;}
.x9_c00494{left:345.900000px;}
.x7b_c00494{left:348.750000px;}
.x15_c00494{left:351.000000px;}
.x6b_c00494{left:353.250000px;}
.x47_c00494{left:355.200000px;}
.x32_c00494{left:356.700000px;}
.x41_c00494{left:359.250000px;}
.x1e_c00494{left:360.600000px;}
.x56_c00494{left:363.000000px;}
.x5f_c00494{left:364.050000px;}
.x5a_c00494{left:367.650000px;}
.x78_c00494{left:372.150000px;}
.xa_c00494{left:374.400000px;}
.x48_c00494{left:376.500000px;}
.x27_c00494{left:378.600000px;}
.x4d_c00494{left:382.200000px;}
.x10_c00494{left:383.700000px;}
.x3e_c00494{left:387.000000px;}
.x61_c00494{left:389.550000px;}
.x1f_c00494{left:397.350000px;}
.x4e_c00494{left:400.500000px;}
.x62_c00494{left:404.700000px;}
.x75_c00494{left:405.900000px;}
.x16_c00494{left:408.900000px;}
.x2d_c00494{left:410.400000px;}
.x79_c00494{left:415.050000px;}
.x28_c00494{left:416.100000px;}
.x49_c00494{left:419.700000px;}
.x7c_c00494{left:423.300000px;}
.x7a_c00494{left:427.950000px;}
.x2e_c00494{left:430.200000px;}
.x6f_c00494{left:433.500000px;}
.x3f_c00494{left:434.550000px;}
.x42_c00494{left:436.050000px;}
.x33_c00494{left:437.250000px;}
.x2_c00494{left:439.200000px;}
.x65_c00494{left:441.300000px;}
.x76_c00494{left:451.950000px;}
.x7d_c00494{left:480.600000px;}
.xb4_c00494{left:482.400000px;}
.xe9_c00494{left:483.750000px;}
.xeb_c00494{left:514.800000px;}
.x7e_c00494{left:516.600000px;}
.x10f_c00494{left:518.250000px;}
.x8b_c00494{left:520.050000px;}
.xa1_c00494{left:521.700000px;}
.xb5_c00494{left:525.600000px;}
.xce_c00494{left:526.950000px;}
.xaa_c00494{left:528.300000px;}
.x84_c00494{left:530.100000px;}
.x94_c00494{left:532.350000px;}
.x9a_c00494{left:533.550000px;}
.xc5_c00494{left:535.950000px;}
.xca_c00494{left:537.450000px;}
.xaf_c00494{left:538.950000px;}
.xbc_c00494{left:540.000000px;}
.xd2_c00494{left:541.800000px;}
.xfa_c00494{left:544.050000px;}
.xf0_c00494{left:549.750000px;}
.xe0_c00494{left:550.800000px;}
.x109_c00494{left:552.150000px;}
.x7f_c00494{left:554.100000px;}
.x8c_c00494{left:556.050000px;}
.xfd_c00494{left:560.550000px;}
.xf6_c00494{left:561.900000px;}
.x9b_c00494{left:563.400000px;}
.xfb_c00494{left:564.600000px;}
.xe6_c00494{left:567.000000px;}
.xe1_c00494{left:569.100000px;}
.xb6_c00494{left:570.600000px;}
.xee_c00494{left:572.550000px;}
.xbd_c00494{left:574.200000px;}
.xab_c00494{left:575.400000px;}
.xb0_c00494{left:577.050000px;}
.xcf_c00494{left:578.850000px;}
.xd8_c00494{left:580.500000px;}
.x85_c00494{left:581.550000px;}
.xa2_c00494{left:583.200000px;}
.x9c_c00494{left:585.000000px;}
.x8d_c00494{left:586.350000px;}
.xd3_c00494{left:587.550000px;}
.x80_c00494{left:589.800000px;}
.xe2_c00494{left:591.750000px;}
.xb1_c00494{left:593.250000px;}
.xc6_c00494{left:594.300000px;}
.xa3_c00494{left:595.500000px;}
.x110_c00494{left:597.450000px;}
.x8e_c00494{left:598.650000px;}
.xdb_c00494{left:600.450000px;}
.xf7_c00494{left:603.000000px;}
.xac_c00494{left:604.200000px;}
.xd4_c00494{left:605.850000px;}
.x103_c00494{left:608.550000px;}
.xb7_c00494{left:609.900000px;}
.xef_c00494{left:614.250000px;}
.x95_c00494{left:616.200000px;}
.xba_c00494{left:617.400000px;}
.xd0_c00494{left:619.500000px;}
.xc0_c00494{left:621.000000px;}
.x9d_c00494{left:622.800000px;}
.xde_c00494{left:623.850000px;}
.xd9_c00494{left:625.500000px;}
.x106_c00494{left:627.000000px;}
.xfe_c00494{left:629.700000px;}
.xe7_c00494{left:632.850000px;}
.x10e_c00494{left:634.200000px;}
.xc7_c00494{left:635.700000px;}
.xa4_c00494{left:638.700000px;}
.x8f_c00494{left:639.750000px;}
.xe8_c00494{left:641.400000px;}
.xb2_c00494{left:642.900000px;}
.x86_c00494{left:645.300000px;}
.x90_c00494{left:646.650000px;}
.xcb_c00494{left:647.850000px;}
.xd1_c00494{left:650.400000px;}
.xd5_c00494{left:651.900000px;}
.x9e_c00494{left:653.100000px;}
.xa9_c00494{left:655.800000px;}
.xb3_c00494{left:657.300000px;}
.xc1_c00494{left:659.550000px;}
.xff_c00494{left:661.350000px;}
.x96_c00494{left:662.700000px;}
.xf1_c00494{left:663.900000px;}
.xbe_c00494{left:666.300000px;}
.x111_c00494{left:667.350000px;}
.x10b_c00494{left:669.000000px;}
.xad_c00494{left:670.800000px;}
.xda_c00494{left:673.350000px;}
.x108_c00494{left:674.850000px;}
.xa5_c00494{left:677.250000px;}
.x91_c00494{left:678.750000px;}
.xb8_c00494{left:680.400000px;}
.x81_c00494{left:681.600000px;}
.xf8_c00494{left:683.400000px;}
.xcc_c00494{left:684.600000px;}
.x87_c00494{left:689.250000px;}
.x97_c00494{left:691.500000px;}
.x10a_c00494{left:693.150000px;}
.xbf_c00494{left:695.100000px;}
.xbb_c00494{left:696.150000px;}
.xd6_c00494{left:697.200000px;}
.x100_c00494{left:698.400000px;}
.xcd_c00494{left:700.050000px;}
.xc8_c00494{left:702.750000px;}
.x9f_c00494{left:704.550000px;}
.x82_c00494{left:706.050000px;}
.x92_c00494{left:707.250000px;}
.xec_c00494{left:709.500000px;}
.xe3_c00494{left:710.550000px;}
.xd7_c00494{left:713.400000px;}
.xae_c00494{left:716.100000px;}
.xc9_c00494{left:717.450000px;}
.x88_c00494{left:719.100000px;}
.xea_c00494{left:720.600000px;}
.xa6_c00494{left:721.950000px;}
.xfc_c00494{left:725.100000px;}
.xc2_c00494{left:728.250000px;}
.x104_c00494{left:729.750000px;}
.xdc_c00494{left:731.400000px;}
.xdf_c00494{left:733.650000px;}
.xb9_c00494{left:734.700000px;}
.x107_c00494{left:736.800000px;}
.xf9_c00494{left:738.450000px;}
.x10c_c00494{left:741.000000px;}
.x93_c00494{left:742.500000px;}
.xf2_c00494{left:744.150000px;}
.xe4_c00494{left:745.200000px;}
.xdd_c00494{left:746.550000px;}
.xa0_c00494{left:748.500000px;}
.xf4_c00494{left:749.850000px;}
.x98_c00494{left:755.250000px;}
.x89_c00494{left:756.600000px;}
.xa7_c00494{left:758.250000px;}
.x101_c00494{left:761.400000px;}
.x105_c00494{left:762.900000px;}
.xc3_c00494{left:766.800000px;}
.x10d_c00494{left:768.000000px;}
.x102_c00494{left:770.700000px;}
.x8a_c00494{left:772.050000px;}
.xed_c00494{left:773.550000px;}
.x83_c00494{left:775.200000px;}
.xa8_c00494{left:776.550000px;}
.x99_c00494{left:778.350000px;}
.xf3_c00494{left:779.400000px;}
.xc4_c00494{left:781.500000px;}
.xe5_c00494{left:783.300000px;}
.x112_c00494{left:786.450000px;}
.xf5_c00494{left:793.050000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws6_c00494{word-spacing:-8.823328pt;}
.ws0_c00494{word-spacing:-7.302883pt;}
.ws5_c00494{word-spacing:-6.379254pt;}
.ws2_c00494{word-spacing:-4.576794pt;}
.ws4_c00494{word-spacing:-4.218260pt;}
.ws7_c00494{word-spacing:0.000000pt;}
.ws1_c00494{word-spacing:1.222222pt;}
.ws3_c00494{word-spacing:9.466549pt;}
.fs2_c00494{font-size:32.000000pt;}
.fs1_c00494{font-size:37.333333pt;}
.fs0_c00494{font-size:48.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y3d_c00494{bottom:130.933333pt;}
.y78_c00494{bottom:134.133333pt;}
.y3c_c00494{bottom:145.600000pt;}
.y77_c00494{bottom:146.266667pt;}
.y3b_c00494{bottom:158.666667pt;}
.y76_c00494{bottom:161.466667pt;}
.y3a_c00494{bottom:170.133333pt;}
.y75_c00494{bottom:172.933333pt;}
.y39_c00494{bottom:184.266667pt;}
.y74_c00494{bottom:187.600000pt;}
.y38_c00494{bottom:198.400000pt;}
.y73_c00494{bottom:200.666667pt;}
.y72_c00494{bottom:212.533333pt;}
.y37_c00494{bottom:219.066667pt;}
.y71_c00494{bottom:224.666667pt;}
.y36_c00494{bottom:233.200000pt;}
.y70_c00494{bottom:237.466667pt;}
.y35_c00494{bottom:246.266667pt;}
.y6f_c00494{bottom:252.133333pt;}
.y34_c00494{bottom:258.800000pt;}
.y6e_c00494{bottom:265.200000pt;}
.y33_c00494{bottom:271.333333pt;}
.y6d_c00494{bottom:278.000000pt;}
.y32_c00494{bottom:284.533333pt;}
.y6c_c00494{bottom:290.800000pt;}
.y31_c00494{bottom:298.666667pt;}
.y6b_c00494{bottom:302.266667pt;}
.y30_c00494{bottom:311.200000pt;}
.y6a_c00494{bottom:316.933333pt;}
.y2f_c00494{bottom:324.000000pt;}
.y69_c00494{bottom:329.733333pt;}
.y2e_c00494{bottom:337.066667pt;}
.y68_c00494{bottom:341.866667pt;}
.y2d_c00494{bottom:350.133333pt;}
.y67_c00494{bottom:355.600000pt;}
.y2c_c00494{bottom:362.933333pt;}
.y66_c00494{bottom:368.400000pt;}
.y2b_c00494{bottom:376.000000pt;}
.y65_c00494{bottom:381.466667pt;}
.y2a_c00494{bottom:389.066667pt;}
.y64_c00494{bottom:394.266667pt;}
.y29_c00494{bottom:401.600000pt;}
.y63_c00494{bottom:406.933333pt;}
.y28_c00494{bottom:414.400000pt;}
.y62_c00494{bottom:418.400000pt;}
.y27_c00494{bottom:427.200000pt;}
.y61_c00494{bottom:433.066667pt;}
.y26_c00494{bottom:440.266667pt;}
.y60_c00494{bottom:444.533333pt;}
.y25_c00494{bottom:454.000000pt;}
.y5f_c00494{bottom:458.933333pt;}
.y24_c00494{bottom:466.533333pt;}
.y5e_c00494{bottom:471.066667pt;}
.y23_c00494{bottom:478.666667pt;}
.y5d_c00494{bottom:484.533333pt;}
.y22_c00494{bottom:492.400000pt;}
.y5c_c00494{bottom:496.000000pt;}
.y21_c00494{bottom:505.200000pt;}
.y5b_c00494{bottom:510.133333pt;}
.y20_c00494{bottom:517.733333pt;}
.y5a_c00494{bottom:521.333333pt;}
.y1f_c00494{bottom:531.200000pt;}
.y59_c00494{bottom:535.600000pt;}
.y1e_c00494{bottom:544.266667pt;}
.y58_c00494{bottom:547.466667pt;}
.y1d_c00494{bottom:556.800000pt;}
.y57_c00494{bottom:561.600000pt;}
.y1c_c00494{bottom:569.866667pt;}
.y56_c00494{bottom:574.133333pt;}
.y1b_c00494{bottom:583.333333pt;}
.y55_c00494{bottom:587.466667pt;}
.y1a_c00494{bottom:596.133333pt;}
.y54_c00494{bottom:600.000000pt;}
.y19_c00494{bottom:608.933333pt;}
.y53_c00494{bottom:613.066667pt;}
.y18_c00494{bottom:622.133333pt;}
.y52_c00494{bottom:626.533333pt;}
.y17_c00494{bottom:634.933333pt;}
.y51_c00494{bottom:639.466667pt;}
.y16_c00494{bottom:648.000000pt;}
.y50_c00494{bottom:652.266667pt;}
.y15_c00494{bottom:660.800000pt;}
.y4f_c00494{bottom:665.066667pt;}
.y14_c00494{bottom:673.600000pt;}
.y4e_c00494{bottom:678.133333pt;}
.y13_c00494{bottom:686.666667pt;}
.y4d_c00494{bottom:691.200000pt;}
.y12_c00494{bottom:699.466667pt;}
.y4c_c00494{bottom:704.266667pt;}
.y11_c00494{bottom:712.666667pt;}
.y4b_c00494{bottom:716.800000pt;}
.y10_c00494{bottom:725.733333pt;}
.y4a_c00494{bottom:729.866667pt;}
.yf_c00494{bottom:738.533333pt;}
.y49_c00494{bottom:742.666667pt;}
.ye_c00494{bottom:751.333333pt;}
.y48_c00494{bottom:757.066667pt;}
.yd_c00494{bottom:763.866667pt;}
.yc_c00494{bottom:777.866667pt;}
.y47_c00494{bottom:778.533333pt;}
.yb_c00494{bottom:790.666667pt;}
.y46_c00494{bottom:792.266667pt;}
.ya_c00494{bottom:803.866667pt;}
.y45_c00494{bottom:804.800000pt;}
.y9_c00494{bottom:816.000000pt;}
.y44_c00494{bottom:818.266667pt;}
.y8_c00494{bottom:829.066667pt;}
.y43_c00494{bottom:831.066667pt;}
.y7_c00494{bottom:842.533333pt;}
.y42_c00494{bottom:844.133333pt;}
.y6_c00494{bottom:854.933333pt;}
.y41_c00494{bottom:856.933333pt;}
.y5_c00494{bottom:868.400000pt;}
.y40_c00494{bottom:869.466667pt;}
.y4_c00494{bottom:880.933333pt;}
.y3f_c00494{bottom:882.933333pt;}
.y3_c00494{bottom:894.400000pt;}
.y3e_c00494{bottom:896.000000pt;}
.y1_c00494{bottom:924.800000pt;}
.y2_c00494{bottom:926.400000pt;}
.h4_c00494{height:32.000000pt;}
.h3_c00494{height:37.333333pt;}
.h2_c00494{height:48.000000pt;}
.h1_c00494{height:1036.666667pt;}
.h0_c00494{height:1036.800049pt;}
.w0_c00494{width:818.559977pt;}
.w1_c00494{width:818.666667pt;}
.x0_c00494{left:0.000000pt;}
.x3_c00494{left:121.600000pt;}
.x1_c00494{left:123.466667pt;}
.x64_c00494{left:126.000000pt;}
.x6c_c00494{left:127.066667pt;}
.x72_c00494{left:128.266667pt;}
.x73_c00494{left:162.533333pt;}
.x4_c00494{left:167.733333pt;}
.x29_c00494{left:168.933333pt;}
.x3a_c00494{left:169.866667pt;}
.x51_c00494{left:171.466667pt;}
.x60_c00494{left:172.533333pt;}
.x69_c00494{left:174.000000pt;}
.x20_c00494{left:178.533333pt;}
.x34_c00494{left:180.533333pt;}
.x4a_c00494{left:181.733333pt;}
.x70_c00494{left:189.466667pt;}
.x66_c00494{left:192.000000pt;}
.x1a_c00494{left:196.133333pt;}
.x21_c00494{left:197.733333pt;}
.x74_c00494{left:200.000000pt;}
.x54_c00494{left:202.000000pt;}
.x11_c00494{left:203.733333pt;}
.x5_c00494{left:205.466667pt;}
.xb_c00494{left:207.733333pt;}
.x67_c00494{left:208.666667pt;}
.x2f_c00494{left:209.600000pt;}
.x45_c00494{left:211.200000pt;}
.x4b_c00494{left:213.066667pt;}
.x77_c00494{left:214.133333pt;}
.x6a_c00494{left:215.333333pt;}
.x25_c00494{left:216.800000pt;}
.x2c_c00494{left:218.266667pt;}
.x3b_c00494{left:219.733333pt;}
.x4f_c00494{left:221.733333pt;}
.x36_c00494{left:223.200000pt;}
.x6_c00494{left:224.400000pt;}
.x57_c00494{left:226.266667pt;}
.x13_c00494{left:227.200000pt;}
.x50_c00494{left:233.600000pt;}
.x22_c00494{left:234.800000pt;}
.x3c_c00494{left:236.133333pt;}
.x52_c00494{left:237.733333pt;}
.x2a_c00494{left:239.066667pt;}
.x1b_c00494{left:240.266667pt;}
.x1c_c00494{left:242.133333pt;}
.x43_c00494{left:243.200000pt;}
.x12_c00494{left:244.400000pt;}
.x30_c00494{left:245.466667pt;}
.x17_c00494{left:246.666667pt;}
.xc_c00494{left:248.000000pt;}
.x14_c00494{left:249.333333pt;}
.x68_c00494{left:250.266667pt;}
.x6d_c00494{left:251.466667pt;}
.x2b_c00494{left:252.800000pt;}
.x7_c00494{left:254.133333pt;}
.x23_c00494{left:255.866667pt;}
.x26_c00494{left:256.800000pt;}
.x46_c00494{left:258.800000pt;}
.xd_c00494{left:260.133333pt;}
.x18_c00494{left:261.333333pt;}
.x58_c00494{left:262.400000pt;}
.x5d_c00494{left:263.733333pt;}
.x38_c00494{left:264.666667pt;}
.x35_c00494{left:267.600000pt;}
.x37_c00494{left:268.666667pt;}
.x71_c00494{left:270.400000pt;}
.x1d_c00494{left:272.266667pt;}
.x8_c00494{left:273.600000pt;}
.xe_c00494{left:274.533333pt;}
.x5b_c00494{left:276.666667pt;}
.x39_c00494{left:278.133333pt;}
.x55_c00494{left:280.133333pt;}
.x40_c00494{left:282.266667pt;}
.x44_c00494{left:284.800000pt;}
.x31_c00494{left:285.733333pt;}
.x63_c00494{left:287.333333pt;}
.x5c_c00494{left:288.533333pt;}
.x5e_c00494{left:290.266667pt;}
.x6e_c00494{left:292.800000pt;}
.x3d_c00494{left:294.666667pt;}
.x53_c00494{left:295.733333pt;}
.x59_c00494{left:297.333333pt;}
.x19_c00494{left:301.066667pt;}
.x24_c00494{left:302.000000pt;}
.x4c_c00494{left:303.600000pt;}
.xf_c00494{left:304.933333pt;}
.x9_c00494{left:307.466667pt;}
.x7b_c00494{left:310.000000pt;}
.x15_c00494{left:312.000000pt;}
.x6b_c00494{left:314.000000pt;}
.x47_c00494{left:315.733333pt;}
.x32_c00494{left:317.066667pt;}
.x41_c00494{left:319.333333pt;}
.x1e_c00494{left:320.533333pt;}
.x56_c00494{left:322.666667pt;}
.x5f_c00494{left:323.600000pt;}
.x5a_c00494{left:326.800000pt;}
.x78_c00494{left:330.800000pt;}
.xa_c00494{left:332.800000pt;}
.x48_c00494{left:334.666667pt;}
.x27_c00494{left:336.533333pt;}
.x4d_c00494{left:339.733333pt;}
.x10_c00494{left:341.066667pt;}
.x3e_c00494{left:344.000000pt;}
.x61_c00494{left:346.266667pt;}
.x1f_c00494{left:353.200000pt;}
.x4e_c00494{left:356.000000pt;}
.x62_c00494{left:359.733333pt;}
.x75_c00494{left:360.800000pt;}
.x16_c00494{left:363.466667pt;}
.x2d_c00494{left:364.800000pt;}
.x79_c00494{left:368.933333pt;}
.x28_c00494{left:369.866667pt;}
.x49_c00494{left:373.066667pt;}
.x7c_c00494{left:376.266667pt;}
.x7a_c00494{left:380.400000pt;}
.x2e_c00494{left:382.400000pt;}
.x6f_c00494{left:385.333333pt;}
.x3f_c00494{left:386.266667pt;}
.x42_c00494{left:387.600000pt;}
.x33_c00494{left:388.666667pt;}
.x2_c00494{left:390.400000pt;}
.x65_c00494{left:392.266667pt;}
.x76_c00494{left:401.733333pt;}
.x7d_c00494{left:427.200000pt;}
.xb4_c00494{left:428.800000pt;}
.xe9_c00494{left:430.000000pt;}
.xeb_c00494{left:457.600000pt;}
.x7e_c00494{left:459.200000pt;}
.x10f_c00494{left:460.666667pt;}
.x8b_c00494{left:462.266667pt;}
.xa1_c00494{left:463.733333pt;}
.xb5_c00494{left:467.200000pt;}
.xce_c00494{left:468.400000pt;}
.xaa_c00494{left:469.600000pt;}
.x84_c00494{left:471.200000pt;}
.x94_c00494{left:473.200000pt;}
.x9a_c00494{left:474.266667pt;}
.xc5_c00494{left:476.400000pt;}
.xca_c00494{left:477.733333pt;}
.xaf_c00494{left:479.066667pt;}
.xbc_c00494{left:480.000000pt;}
.xd2_c00494{left:481.600000pt;}
.xfa_c00494{left:483.600000pt;}
.xf0_c00494{left:488.666667pt;}
.xe0_c00494{left:489.600000pt;}
.x109_c00494{left:490.800000pt;}
.x7f_c00494{left:492.533333pt;}
.x8c_c00494{left:494.266667pt;}
.xfd_c00494{left:498.266667pt;}
.xf6_c00494{left:499.466667pt;}
.x9b_c00494{left:500.800000pt;}
.xfb_c00494{left:501.866667pt;}
.xe6_c00494{left:504.000000pt;}
.xe1_c00494{left:505.866667pt;}
.xb6_c00494{left:507.200000pt;}
.xee_c00494{left:508.933333pt;}
.xbd_c00494{left:510.400000pt;}
.xab_c00494{left:511.466667pt;}
.xb0_c00494{left:512.933333pt;}
.xcf_c00494{left:514.533333pt;}
.xd8_c00494{left:516.000000pt;}
.x85_c00494{left:516.933333pt;}
.xa2_c00494{left:518.400000pt;}
.x9c_c00494{left:520.000000pt;}
.x8d_c00494{left:521.200000pt;}
.xd3_c00494{left:522.266667pt;}
.x80_c00494{left:524.266667pt;}
.xe2_c00494{left:526.000000pt;}
.xb1_c00494{left:527.333333pt;}
.xc6_c00494{left:528.266667pt;}
.xa3_c00494{left:529.333333pt;}
.x110_c00494{left:531.066667pt;}
.x8e_c00494{left:532.133333pt;}
.xdb_c00494{left:533.733333pt;}
.xf7_c00494{left:536.000000pt;}
.xac_c00494{left:537.066667pt;}
.xd4_c00494{left:538.533333pt;}
.x103_c00494{left:540.933333pt;}
.xb7_c00494{left:542.133333pt;}
.xef_c00494{left:546.000000pt;}
.x95_c00494{left:547.733333pt;}
.xba_c00494{left:548.800000pt;}
.xd0_c00494{left:550.666667pt;}
.xc0_c00494{left:552.000000pt;}
.x9d_c00494{left:553.600000pt;}
.xde_c00494{left:554.533333pt;}
.xd9_c00494{left:556.000000pt;}
.x106_c00494{left:557.333333pt;}
.xfe_c00494{left:559.733333pt;}
.xe7_c00494{left:562.533333pt;}
.x10e_c00494{left:563.733333pt;}
.xc7_c00494{left:565.066667pt;}
.xa4_c00494{left:567.733333pt;}
.x8f_c00494{left:568.666667pt;}
.xe8_c00494{left:570.133333pt;}
.xb2_c00494{left:571.466667pt;}
.x86_c00494{left:573.600000pt;}
.x90_c00494{left:574.800000pt;}
.xcb_c00494{left:575.866667pt;}
.xd1_c00494{left:578.133333pt;}
.xd5_c00494{left:579.466667pt;}
.x9e_c00494{left:580.533333pt;}
.xa9_c00494{left:582.933333pt;}
.xb3_c00494{left:584.266667pt;}
.xc1_c00494{left:586.266667pt;}
.xff_c00494{left:587.866667pt;}
.x96_c00494{left:589.066667pt;}
.xf1_c00494{left:590.133333pt;}
.xbe_c00494{left:592.266667pt;}
.x111_c00494{left:593.200000pt;}
.x10b_c00494{left:594.666667pt;}
.xad_c00494{left:596.266667pt;}
.xda_c00494{left:598.533333pt;}
.x108_c00494{left:599.866667pt;}
.xa5_c00494{left:602.000000pt;}
.x91_c00494{left:603.333333pt;}
.xb8_c00494{left:604.800000pt;}
.x81_c00494{left:605.866667pt;}
.xf8_c00494{left:607.466667pt;}
.xcc_c00494{left:608.533333pt;}
.x87_c00494{left:612.666667pt;}
.x97_c00494{left:614.666667pt;}
.x10a_c00494{left:616.133333pt;}
.xbf_c00494{left:617.866667pt;}
.xbb_c00494{left:618.800000pt;}
.xd6_c00494{left:619.733333pt;}
.x100_c00494{left:620.800000pt;}
.xcd_c00494{left:622.266667pt;}
.xc8_c00494{left:624.666667pt;}
.x9f_c00494{left:626.266667pt;}
.x82_c00494{left:627.600000pt;}
.x92_c00494{left:628.666667pt;}
.xec_c00494{left:630.666667pt;}
.xe3_c00494{left:631.600000pt;}
.xd7_c00494{left:634.133333pt;}
.xae_c00494{left:636.533333pt;}
.xc9_c00494{left:637.733333pt;}
.x88_c00494{left:639.200000pt;}
.xea_c00494{left:640.533333pt;}
.xa6_c00494{left:641.733333pt;}
.xfc_c00494{left:644.533333pt;}
.xc2_c00494{left:647.333333pt;}
.x104_c00494{left:648.666667pt;}
.xdc_c00494{left:650.133333pt;}
.xdf_c00494{left:652.133333pt;}
.xb9_c00494{left:653.066667pt;}
.x107_c00494{left:654.933333pt;}
.xf9_c00494{left:656.400000pt;}
.x10c_c00494{left:658.666667pt;}
.x93_c00494{left:660.000000pt;}
.xf2_c00494{left:661.466667pt;}
.xe4_c00494{left:662.400000pt;}
.xdd_c00494{left:663.600000pt;}
.xa0_c00494{left:665.333333pt;}
.xf4_c00494{left:666.533333pt;}
.x98_c00494{left:671.333333pt;}
.x89_c00494{left:672.533333pt;}
.xa7_c00494{left:674.000000pt;}
.x101_c00494{left:676.800000pt;}
.x105_c00494{left:678.133333pt;}
.xc3_c00494{left:681.600000pt;}
.x10d_c00494{left:682.666667pt;}
.x102_c00494{left:685.066667pt;}
.x8a_c00494{left:686.266667pt;}
.xed_c00494{left:687.600000pt;}
.x83_c00494{left:689.066667pt;}
.xa8_c00494{left:690.266667pt;}
.x99_c00494{left:691.866667pt;}
.xf3_c00494{left:692.800000pt;}
.xc4_c00494{left:694.666667pt;}
.xe5_c00494{left:696.266667pt;}
.x112_c00494{left:699.066667pt;}
.xf5_c00494{left:704.933333pt;}
}





/* 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_c00495 {
    display:none;
  }
  .loading-indicator_c00495.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00495 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_c00495 { 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_c00495" -> "#page-container .classname_c00495")
 */
.pf_c00495 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00495 { /* 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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00495 { /* 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_c00495 { /* 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_c00495 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00495 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00495 {overflow:visible;}
  }
}
.c_c00495 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00495 { /* 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_c00495:after { /* webkit #35443 */
  content: '';
}
.t_c00495:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00495 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 */
}
.__c00495 { /* 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_c00495 { /* info for Javascript */
  display:none;
}
.l_c00495 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00495 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00495 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00495: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_c00495 {
    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_c00495.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00495.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_c00495 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00495{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00495;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.000000;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;}
.mb9_c00495{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m67_c00495{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.mac_c00495{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00495{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00495{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00495{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mae_c00495{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00495{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m40_c00495{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m89_c00495{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00495{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m26_c00495{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m19_c00495{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.md2_c00495{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00495{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mab_c00495{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m81_c00495{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11_c00495{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m18_c00495{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00495{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00495{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00495{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00495{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00495{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00495{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00495{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m62_c00495{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00495{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00495{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00495{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00495{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m73_c00495{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mcd_c00495{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m28_c00495{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m91_c00495{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m7b_c00495{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc_c00495{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m51_c00495{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m38_c00495{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00495{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.ma_c00495{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m71_c00495{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00495{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00495{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00495{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mce_c00495{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00495{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00495{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00495{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.maf_c00495{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m14_c00495{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.md_c00495{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.md0_c00495{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m95_c00495{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00495{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00495{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m20_c00495{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00495{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m98_c00495{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m86_c00495{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m83_c00495{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m87_c00495{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m84_c00495{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00495{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m50_c00495{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.md5_c00495{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.md3_c00495{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m68_c00495{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00495{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00495{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00495{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00495{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m30_c00495{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00495{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00495{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00495{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00495{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00495{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m22_c00495{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m75_c00495{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00495{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.maa_c00495{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.md1_c00495{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m27_c00495{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m23_c00495{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m21_c00495{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m82_c00495{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m31_c00495{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00495{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m74_c00495{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m32_c00495{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m52_c00495{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);}
.m10_c00495{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00495{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m53_c00495{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m70_c00495{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m99_c00495{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m76_c00495{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00495{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m44_c00495{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00495{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00495{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mc7_c00495{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00495{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00495{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m6_c00495{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m49_c00495{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00495{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00495{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00495{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m69_c00495{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m24_c00495{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m97_c00495{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00495{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00495{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m48_c00495{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m58_c00495{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00495{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00495{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m56_c00495{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00495{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c00495{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00495{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m54_c00495{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00495{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00495{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.mb_c00495{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m66_c00495{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m12_c00495{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mba_c00495{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m36_c00495{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00495{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00495{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m92_c00495{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00495{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m72_c00495{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m8_c00495{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m37_c00495{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00495{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m13_c00495{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00495{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m85_c00495{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m17_c00495{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00495{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m88_c00495{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m25_c00495{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m33_c00495{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00495{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m43_c00495{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m79_c00495{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m35_c00495{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00495{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00495{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.mf_c00495{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m9_c00495{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00495{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00495{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m94_c00495{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00495{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m41_c00495{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.md4_c00495{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00495{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00495{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m29_c00495{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m59_c00495{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m45_c00495{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m55_c00495{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m34_c00495{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00495{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m47_c00495{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m80_c00495{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.mad_c00495{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m64_c00495{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m93_c00495{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00495{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m96_c00495{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m78_c00495{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m3_c00495{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m60_c00495{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m90_c00495{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00495{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00495{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m77_c00495{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.mca_c00495{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m65_c00495{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m16_c00495{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m57_c00495{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00495{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m61_c00495{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00495{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.me_c00495{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00495{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00495{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m42_c00495{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mc2_c00495{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m15_c00495{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00495{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00495{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00495{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m46_c00495{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m63_c00495{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00495{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00495{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00495{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00495{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00495{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00495{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m39_c00495{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00495{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00495{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00495{vertical-align:0.000000px;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{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__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00495{word-spacing:-10.399568px;}
.ws6_c00495{word-spacing:-7.250235px;}
.ws2_c00495{word-spacing:-6.125000px;}
.ws1_c00495{word-spacing:-5.583431px;}
.ws0_c00495{word-spacing:-3.722278px;}
.ws7_c00495{word-spacing:-1.401691px;}
.ws9_c00495{word-spacing:0.000000px;}
.ws4_c00495{word-spacing:8.526587px;}
.ws8_c00495{word-spacing:23.647220px;}
.ws3_c00495{word-spacing:31.500000px;}
.fc0_c00495{color:transparent;}
.fs2_c00495{font-size:36.000000px;}
.fs0_c00495{font-size:42.000000px;}
.fs1_c00495{font-size:60.000000px;}
.y0_c00495{bottom:0.000000px;}
.y41_c00495{bottom:164.400000px;}
.y6f_c00495{bottom:164.550000px;}
.y40_c00495{bottom:178.800000px;}
.y6e_c00495{bottom:179.250000px;}
.y6d_c00495{bottom:193.800000px;}
.y3f_c00495{bottom:193.950000px;}
.y3e_c00495{bottom:208.050000px;}
.y6c_c00495{bottom:208.500000px;}
.y3d_c00495{bottom:222.900000px;}
.y3c_c00495{bottom:237.300000px;}
.y6b_c00495{bottom:251.700000px;}
.y3b_c00495{bottom:252.000000px;}
.y3a_c00495{bottom:266.400000px;}
.y6a_c00495{bottom:280.800000px;}
.y39_c00495{bottom:281.100000px;}
.y69_c00495{bottom:295.200000px;}
.y38_c00495{bottom:295.950000px;}
.y68_c00495{bottom:309.600000px;}
.y37_c00495{bottom:310.650000px;}
.y67_c00495{bottom:324.600000px;}
.y36_c00495{bottom:325.050000px;}
.y66_c00495{bottom:339.300000px;}
.y35_c00495{bottom:339.450000px;}
.y65_c00495{bottom:354.000000px;}
.y34_c00495{bottom:354.300000px;}
.y33_c00495{bottom:368.700000px;}
.y32_c00495{bottom:383.100000px;}
.y64_c00495{bottom:383.400000px;}
.y31_c00495{bottom:397.500000px;}
.y63_c00495{bottom:398.100000px;}
.y30_c00495{bottom:412.200000px;}
.y62_c00495{bottom:412.500000px;}
.y2f_c00495{bottom:426.900000px;}
.y2e_c00495{bottom:441.000000px;}
.y61_c00495{bottom:441.600000px;}
.y2d_c00495{bottom:455.850000px;}
.y60_c00495{bottom:456.300000px;}
.y2c_c00495{bottom:470.250000px;}
.y5f_c00495{bottom:471.000000px;}
.y2b_c00495{bottom:485.400000px;}
.y5e_c00495{bottom:485.700000px;}
.y2a_c00495{bottom:499.500000px;}
.y5d_c00495{bottom:500.400000px;}
.y29_c00495{bottom:513.900000px;}
.y5c_c00495{bottom:514.800000px;}
.y28_c00495{bottom:528.600000px;}
.y5b_c00495{bottom:529.350000px;}
.y27_c00495{bottom:543.300000px;}
.y5a_c00495{bottom:543.750000px;}
.y26_c00495{bottom:557.700000px;}
.y59_c00495{bottom:558.450000px;}
.y25_c00495{bottom:572.850000px;}
.y58_c00495{bottom:573.150000px;}
.y24_c00495{bottom:587.250000px;}
.y57_c00495{bottom:587.550000px;}
.y23_c00495{bottom:601.950000px;}
.y56_c00495{bottom:602.100000px;}
.y22_c00495{bottom:616.650000px;}
.y55_c00495{bottom:618.300000px;}
.y21_c00495{bottom:630.750000px;}
.y54_c00495{bottom:633.000000px;}
.y20_c00495{bottom:645.150000px;}
.y53_c00495{bottom:647.700000px;}
.y1f_c00495{bottom:659.850000px;}
.y52_c00495{bottom:664.950000px;}
.y1e_c00495{bottom:675.000000px;}
.y51_c00495{bottom:688.650000px;}
.y1d_c00495{bottom:689.400000px;}
.y50_c00495{bottom:703.500000px;}
.y1c_c00495{bottom:704.100000px;}
.y4f_c00495{bottom:718.200000px;}
.y1b_c00495{bottom:718.500000px;}
.y1a_c00495{bottom:732.900000px;}
.y4e_c00495{bottom:747.300000px;}
.y19_c00495{bottom:747.450000px;}
.y18_c00495{bottom:762.150000px;}
.y17_c00495{bottom:776.850000px;}
.y4d_c00495{bottom:790.500000px;}
.y16_c00495{bottom:791.700000px;}
.y4c_c00495{bottom:805.650000px;}
.y15_c00495{bottom:806.100000px;}
.y14_c00495{bottom:820.500000px;}
.y4b_c00495{bottom:834.900000px;}
.y13_c00495{bottom:835.200000px;}
.y4a_c00495{bottom:849.300000px;}
.y12_c00495{bottom:849.600000px;}
.y11_c00495{bottom:864.300000px;}
.y49_c00495{bottom:864.450000px;}
.y10_c00495{bottom:878.700000px;}
.y48_c00495{bottom:879.150000px;}
.yf_c00495{bottom:892.800000px;}
.y47_c00495{bottom:893.550000px;}
.ye_c00495{bottom:907.200000px;}
.y46_c00495{bottom:907.950000px;}
.yd_c00495{bottom:921.900000px;}
.y45_c00495{bottom:922.650000px;}
.y5_c00495{bottom:927.450000px;}
.yc_c00495{bottom:936.750000px;}
.y4_c00495{bottom:942.150000px;}
.yb_c00495{bottom:950.700000px;}
.y44_c00495{bottom:951.450000px;}
.y3_c00495{bottom:956.850000px;}
.ya_c00495{bottom:965.850000px;}
.y9_c00495{bottom:980.250000px;}
.y8_c00495{bottom:995.100000px;}
.y43_c00495{bottom:1009.500000px;}
.y7_c00495{bottom:1013.700000px;}
.y42_c00495{bottom:1024.200000px;}
.y6_c00495{bottom:1024.500000px;}
.y2_c00495{bottom:1058.400000px;}
.y1_c00495{bottom:1059.150000px;}
.h4_c00495{height:36.000000px;}
.h2_c00495{height:42.000000px;}
.h3_c00495{height:60.000000px;}
.h1_c00495{height:1166.250000px;}
.h0_c00495{height:1166.400056px;}
.w0_c00495{width:920.879975px;}
.w1_c00495{width:921.000000px;}
.x0_c00495{left:0.000000px;}
.x7e_c00495{left:113.850000px;}
.x12_c00495{left:115.500000px;}
.x5b_c00495{left:143.850000px;}
.x33_c00495{left:144.900000px;}
.x13_c00495{left:146.100000px;}
.x80_c00495{left:148.350000px;}
.x24_c00495{left:155.850000px;}
.x22_c00495{left:157.650000px;}
.x1b_c00495{left:158.700000px;}
.x1a_c00495{left:167.400000px;}
.x49_c00495{left:169.200000px;}
.x52_c00495{left:173.550000px;}
.x7b_c00495{left:177.150000px;}
.x81_c00495{left:178.950000px;}
.x1c_c00495{left:180.300000px;}
.x65_c00495{left:181.500000px;}
.x3a_c00495{left:182.850000px;}
.x27_c00495{left:184.200000px;}
.x6a_c00495{left:185.400000px;}
.x86_c00495{left:187.350000px;}
.x2d_c00495{left:188.850000px;}
.x34_c00495{left:190.650000px;}
.x66_c00495{left:192.000000px;}
.x6b_c00495{left:194.100000px;}
.x14_c00495{left:195.750000px;}
.x3e_c00495{left:197.550000px;}
.x4a_c00495{left:198.750000px;}
.x1d_c00495{left:200.400000px;}
.x5c_c00495{left:201.750000px;}
.x3b_c00495{left:204.150000px;}
.x2c_c00495{left:206.100000px;}
.x2a_c00495{left:207.900000px;}
.x71_c00495{left:209.850000px;}
.x25_c00495{left:213.450000px;}
.x4f_c00495{left:214.500000px;}
.x26_c00495{left:216.000000px;}
.x20_c00495{left:218.250000px;}
.x68_c00495{left:219.300000px;}
.x35_c00495{left:220.500000px;}
.x58_c00495{left:221.700000px;}
.x23_c00495{left:223.950000px;}
.x7d_c00495{left:225.150000px;}
.x28_c00495{left:227.400000px;}
.x15_c00495{left:229.200000px;}
.x79_c00495{left:230.400000px;}
.x82_c00495{left:233.700000px;}
.x36_c00495{left:234.900000px;}
.x2e_c00495{left:237.450000px;}
.x7f_c00495{left:239.100000px;}
.x5d_c00495{left:240.600000px;}
.x29_c00495{left:241.800000px;}
.x1e_c00495{left:242.850000px;}
.x4b_c00495{left:246.600000px;}
.x53_c00495{left:247.950000px;}
.x2b_c00495{left:251.100000px;}
.x67_c00495{left:252.600000px;}
.x50_c00495{left:254.400000px;}
.x3f_c00495{left:256.950000px;}
.x59_c00495{left:258.750000px;}
.x1f_c00495{left:259.800000px;}
.x21_c00495{left:263.550000px;}
.x2f_c00495{left:268.050000px;}
.x69_c00495{left:269.700000px;}
.xc_c00495{left:271.200000px;}
.x62_c00495{left:272.550000px;}
.x11_c00495{left:276.150000px;}
.x83_c00495{left:277.650000px;}
.x16_c00495{left:279.300000px;}
.x54_c00495{left:280.650000px;}
.x64_c00495{left:282.000000px;}
.x6c_c00495{left:283.050000px;}
.x74_c00495{left:284.400000px;}
.x8_c00495{left:286.950000px;}
.x5e_c00495{left:288.450000px;}
.x40_c00495{left:293.100000px;}
.x7c_c00495{left:295.950000px;}
.x4c_c00495{left:297.000000px;}
.x37_c00495{left:298.650000px;}
.x6d_c00495{left:301.800000px;}
.x5a_c00495{left:303.000000px;}
.x6f_c00495{left:304.800000px;}
.x43_c00495{left:306.900000px;}
.x55_c00495{left:308.700000px;}
.x84_c00495{left:310.050000px;}
.x17_c00495{left:311.400000px;}
.x78_c00495{left:312.900000px;}
.x30_c00495{left:314.850000px;}
.x46_c00495{left:316.950000px;}
.x41_c00495{left:318.000000px;}
.x75_c00495{left:319.350000px;}
.x1_c00495{left:320.700000px;}
.xd_c00495{left:323.400000px;}
.x76_c00495{left:325.650000px;}
.x31_c00495{left:328.200000px;}
.x87_c00495{left:329.550000px;}
.x56_c00495{left:331.350000px;}
.x51_c00495{left:335.400000px;}
.x9_c00495{left:338.100000px;}
.xe_c00495{left:339.300000px;}
.x72_c00495{left:341.250000px;}
.x44_c00495{left:342.600000px;}
.x85_c00495{left:345.750000px;}
.x38_c00495{left:346.950000px;}
.x32_c00495{left:348.000000px;}
.x6e_c00495{left:350.700000px;}
.x18_c00495{left:358.500000px;}
.xa_c00495{left:361.800000px;}
.x5f_c00495{left:363.300000px;}
.x4d_c00495{left:365.400000px;}
.x42_c00495{left:366.900000px;}
.x70_c00495{left:369.300000px;}
.x57_c00495{left:375.300000px;}
.x77_c00495{left:377.100000px;}
.x4e_c00495{left:379.050000px;}
.xf_c00495{left:386.400000px;}
.x60_c00495{left:387.450000px;}
.x2_c00495{left:393.000000px;}
.x45_c00495{left:394.050000px;}
.x39_c00495{left:395.250000px;}
.x47_c00495{left:396.450000px;}
.x88_c00495{left:397.950000px;}
.x3c_c00495{left:399.300000px;}
.x19_c00495{left:400.650000px;}
.x73_c00495{left:405.000000px;}
.x3d_c00495{left:407.550000px;}
.x10_c00495{left:410.100000px;}
.x48_c00495{left:411.900000px;}
.x63_c00495{left:414.000000px;}
.x61_c00495{left:416.550000px;}
.x7a_c00495{left:419.700000px;}
.x3_c00495{left:423.600000px;}
.xb_c00495{left:426.300000px;}
.x4_c00495{left:443.700000px;}
.xe6_c00495{left:457.500000px;}
.x90_c00495{left:458.700000px;}
.x10f_c00495{left:486.450000px;}
.x96_c00495{left:489.300000px;}
.xf0_c00495{left:490.650000px;}
.xfc_c00495{left:492.150000px;}
.x5_c00495{left:493.350000px;}
.x91_c00495{left:494.400000px;}
.xee_c00495{left:497.100000px;}
.x89_c00495{left:500.700000px;}
.xaf_c00495{left:501.900000px;}
.xf8_c00495{left:502.950000px;}
.x102_c00495{left:504.300000px;}
.x6_c00495{left:513.900000px;}
.xeb_c00495{left:515.100000px;}
.xaa_c00495{left:517.350000px;}
.xd3_c00495{left:519.150000px;}
.xde_c00495{left:520.200000px;}
.xa4_c00495{left:522.000000px;}
.x10a_c00495{left:527.550000px;}
.xb5_c00495{left:528.600000px;}
.xa1_c00495{left:530.850000px;}
.xb8_c00495{left:534.750000px;}
.xc7_c00495{left:536.100000px;}
.x108_c00495{left:537.750000px;}
.xe4_c00495{left:539.250000px;}
.x8a_c00495{left:541.350000px;}
.xe7_c00495{left:542.550000px;}
.xf4_c00495{left:543.600000px;}
.xa5_c00495{left:544.650000px;}
.xef_c00495{left:545.700000px;}
.xca_c00495{left:548.550000px;}
.x105_c00495{left:550.050000px;}
.xab_c00495{left:552.000000px;}
.x9c_c00495{left:553.500000px;}
.xfe_c00495{left:555.300000px;}
.xa6_c00495{left:556.500000px;}
.xd4_c00495{left:558.450000px;}
.xe1_c00495{left:560.850000px;}
.xb9_c00495{left:563.250000px;}
.xc3_c00495{left:566.400000px;}
.xe8_c00495{left:568.050000px;}
.x110_c00495{left:570.000000px;}
.x10b_c00495{left:571.950000px;}
.xa2_c00495{left:573.300000px;}
.xba_c00495{left:575.550000px;}
.xff_c00495{left:576.600000px;}
.xdf_c00495{left:577.800000px;}
.xcb_c00495{left:579.150000px;}
.x97_c00495{left:580.800000px;}
.x92_c00495{left:583.350000px;}
.xb0_c00495{left:585.750000px;}
.x9d_c00495{left:588.450000px;}
.xd5_c00495{left:590.100000px;}
.xac_c00495{left:591.300000px;}
.x100_c00495{left:592.500000px;}
.xbf_c00495{left:596.100000px;}
.xd9_c00495{left:598.350000px;}
.xe2_c00495{left:600.150000px;}
.xfa_c00495{left:601.350000px;}
.xfb_c00495{left:602.400000px;}
.x111_c00495{left:603.450000px;}
.xcc_c00495{left:606.450000px;}
.xb6_c00495{left:607.500000px;}
.x8b_c00495{left:611.100000px;}
.xad_c00495{left:614.700000px;}
.xa3_c00495{left:616.200000px;}
.xe9_c00495{left:617.400000px;}
.x93_c00495{left:619.650000px;}
.xb7_c00495{left:621.150000px;}
.xb1_c00495{left:622.500000px;}
.xc4_c00495{left:625.050000px;}
.xc8_c00495{left:626.100000px;}
.xd6_c00495{left:628.350000px;}
.x112_c00495{left:632.250000px;}
.x9e_c00495{left:633.450000px;}
.xda_c00495{left:636.150000px;}
.xd0_c00495{left:637.200000px;}
.x106_c00495{left:638.550000px;}
.xbb_c00495{left:639.600000px;}
.xc0_c00495{left:640.800000px;}
.xf9_c00495{left:642.900000px;}
.x98_c00495{left:644.850000px;}
.x8c_c00495{left:647.850000px;}
.xae_c00495{left:648.900000px;}
.xf1_c00495{left:649.950000px;}
.xe3_c00495{left:654.900000px;}
.xa7_c00495{left:657.000000px;}
.x94_c00495{left:658.500000px;}
.xdb_c00495{left:661.050000px;}
.xec_c00495{left:664.200000px;}
.x9f_c00495{left:666.150000px;}
.xb2_c00495{left:667.800000px;}
.x113_c00495{left:670.050000px;}
.xc1_c00495{left:671.100000px;}
.xcd_c00495{left:672.450000px;}
.xe0_c00495{left:674.250000px;}
.xd1_c00495{left:675.300000px;}
.xbc_c00495{left:676.650000px;}
.xdc_c00495{left:680.100000px;}
.xc9_c00495{left:682.950000px;}
.xf2_c00495{left:684.900000px;}
.xea_c00495{left:686.400000px;}
.x10c_c00495{left:688.350000px;}
.x95_c00495{left:689.400000px;}
.x103_c00495{left:692.100000px;}
.xc5_c00495{left:694.200000px;}
.xfd_c00495{left:695.700000px;}
.x99_c00495{left:697.050000px;}
.xa8_c00495{left:698.700000px;}
.x8d_c00495{left:700.050000px;}
.xa0_c00495{left:701.100000px;}
.x107_c00495{left:703.050000px;}
.xd7_c00495{left:705.750000px;}
.xbd_c00495{left:710.850000px;}
.x9a_c00495{left:712.950000px;}
.xb3_c00495{left:714.900000px;}
.xe5_c00495{left:716.550000px;}
.xed_c00495{left:717.750000px;}
.xc2_c00495{left:719.700000px;}
.xf5_c00495{left:721.800000px;}
.xce_c00495{left:723.150000px;}
.xd2_c00495{left:724.200000px;}
.xf6_c00495{left:727.950000px;}
.x114_c00495{left:730.500000px;}
.x9b_c00495{left:732.450000px;}
.xb4_c00495{left:733.950000px;}
.xc6_c00495{left:736.350000px;}
.x101_c00495{left:739.350000px;}
.x10d_c00495{left:740.700000px;}
.xf3_c00495{left:742.200000px;}
.x10e_c00495{left:743.250000px;}
.x109_c00495{left:744.750000px;}
.xa9_c00495{left:747.300000px;}
.x104_c00495{left:748.650000px;}
.x8e_c00495{left:751.500000px;}
.xf7_c00495{left:753.450000px;}
.xbe_c00495{left:754.800000px;}
.xdd_c00495{left:757.500000px;}
.x7_c00495{left:760.200000px;}
.xd8_c00495{left:765.900000px;}
.x8f_c00495{left:771.000000px;}
.xcf_c00495{left:772.800000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws5_c00495{word-spacing:-9.244060pt;}
.ws6_c00495{word-spacing:-6.444653pt;}
.ws2_c00495{word-spacing:-5.444444pt;}
.ws1_c00495{word-spacing:-4.963049pt;}
.ws0_c00495{word-spacing:-3.308691pt;}
.ws7_c00495{word-spacing:-1.245948pt;}
.ws9_c00495{word-spacing:0.000000pt;}
.ws4_c00495{word-spacing:7.579188pt;}
.ws8_c00495{word-spacing:21.019751pt;}
.ws3_c00495{word-spacing:28.000000pt;}
.fs2_c00495{font-size:32.000000pt;}
.fs0_c00495{font-size:37.333333pt;}
.fs1_c00495{font-size:53.333333pt;}
.y0_c00495{bottom:0.000000pt;}
.y41_c00495{bottom:146.133333pt;}
.y6f_c00495{bottom:146.266667pt;}
.y40_c00495{bottom:158.933333pt;}
.y6e_c00495{bottom:159.333333pt;}
.y6d_c00495{bottom:172.266667pt;}
.y3f_c00495{bottom:172.400000pt;}
.y3e_c00495{bottom:184.933333pt;}
.y6c_c00495{bottom:185.333333pt;}
.y3d_c00495{bottom:198.133333pt;}
.y3c_c00495{bottom:210.933333pt;}
.y6b_c00495{bottom:223.733333pt;}
.y3b_c00495{bottom:224.000000pt;}
.y3a_c00495{bottom:236.800000pt;}
.y6a_c00495{bottom:249.600000pt;}
.y39_c00495{bottom:249.866667pt;}
.y69_c00495{bottom:262.400000pt;}
.y38_c00495{bottom:263.066667pt;}
.y68_c00495{bottom:275.200000pt;}
.y37_c00495{bottom:276.133333pt;}
.y67_c00495{bottom:288.533333pt;}
.y36_c00495{bottom:288.933333pt;}
.y66_c00495{bottom:301.600000pt;}
.y35_c00495{bottom:301.733333pt;}
.y65_c00495{bottom:314.666667pt;}
.y34_c00495{bottom:314.933333pt;}
.y33_c00495{bottom:327.733333pt;}
.y32_c00495{bottom:340.533333pt;}
.y64_c00495{bottom:340.800000pt;}
.y31_c00495{bottom:353.333333pt;}
.y63_c00495{bottom:353.866667pt;}
.y30_c00495{bottom:366.400000pt;}
.y62_c00495{bottom:366.666667pt;}
.y2f_c00495{bottom:379.466667pt;}
.y2e_c00495{bottom:392.000000pt;}
.y61_c00495{bottom:392.533333pt;}
.y2d_c00495{bottom:405.200000pt;}
.y60_c00495{bottom:405.600000pt;}
.y2c_c00495{bottom:418.000000pt;}
.y5f_c00495{bottom:418.666667pt;}
.y2b_c00495{bottom:431.466667pt;}
.y5e_c00495{bottom:431.733333pt;}
.y2a_c00495{bottom:444.000000pt;}
.y5d_c00495{bottom:444.800000pt;}
.y29_c00495{bottom:456.800000pt;}
.y5c_c00495{bottom:457.600000pt;}
.y28_c00495{bottom:469.866667pt;}
.y5b_c00495{bottom:470.533333pt;}
.y27_c00495{bottom:482.933333pt;}
.y5a_c00495{bottom:483.333333pt;}
.y26_c00495{bottom:495.733333pt;}
.y59_c00495{bottom:496.400000pt;}
.y25_c00495{bottom:509.200000pt;}
.y58_c00495{bottom:509.466667pt;}
.y24_c00495{bottom:522.000000pt;}
.y57_c00495{bottom:522.266667pt;}
.y23_c00495{bottom:535.066667pt;}
.y56_c00495{bottom:535.200000pt;}
.y22_c00495{bottom:548.133333pt;}
.y55_c00495{bottom:549.600000pt;}
.y21_c00495{bottom:560.666667pt;}
.y54_c00495{bottom:562.666667pt;}
.y20_c00495{bottom:573.466667pt;}
.y53_c00495{bottom:575.733333pt;}
.y1f_c00495{bottom:586.533333pt;}
.y52_c00495{bottom:591.066667pt;}
.y1e_c00495{bottom:600.000000pt;}
.y51_c00495{bottom:612.133333pt;}
.y1d_c00495{bottom:612.800000pt;}
.y50_c00495{bottom:625.333333pt;}
.y1c_c00495{bottom:625.866667pt;}
.y4f_c00495{bottom:638.400000pt;}
.y1b_c00495{bottom:638.666667pt;}
.y1a_c00495{bottom:651.466667pt;}
.y4e_c00495{bottom:664.266667pt;}
.y19_c00495{bottom:664.400000pt;}
.y18_c00495{bottom:677.466667pt;}
.y17_c00495{bottom:690.533333pt;}
.y4d_c00495{bottom:702.666667pt;}
.y16_c00495{bottom:703.733333pt;}
.y4c_c00495{bottom:716.133333pt;}
.y15_c00495{bottom:716.533333pt;}
.y14_c00495{bottom:729.333333pt;}
.y4b_c00495{bottom:742.133333pt;}
.y13_c00495{bottom:742.400000pt;}
.y4a_c00495{bottom:754.933333pt;}
.y12_c00495{bottom:755.200000pt;}
.y11_c00495{bottom:768.266667pt;}
.y49_c00495{bottom:768.400000pt;}
.y10_c00495{bottom:781.066667pt;}
.y48_c00495{bottom:781.466667pt;}
.yf_c00495{bottom:793.600000pt;}
.y47_c00495{bottom:794.266667pt;}
.ye_c00495{bottom:806.400000pt;}
.y46_c00495{bottom:807.066667pt;}
.yd_c00495{bottom:819.466667pt;}
.y45_c00495{bottom:820.133333pt;}
.y5_c00495{bottom:824.400000pt;}
.yc_c00495{bottom:832.666667pt;}
.y4_c00495{bottom:837.466667pt;}
.yb_c00495{bottom:845.066667pt;}
.y44_c00495{bottom:845.733333pt;}
.y3_c00495{bottom:850.533333pt;}
.ya_c00495{bottom:858.533333pt;}
.y9_c00495{bottom:871.333333pt;}
.y8_c00495{bottom:884.533333pt;}
.y43_c00495{bottom:897.333333pt;}
.y7_c00495{bottom:901.066667pt;}
.y42_c00495{bottom:910.400000pt;}
.y6_c00495{bottom:910.666667pt;}
.y2_c00495{bottom:940.800000pt;}
.y1_c00495{bottom:941.466667pt;}
.h4_c00495{height:32.000000pt;}
.h2_c00495{height:37.333333pt;}
.h3_c00495{height:53.333333pt;}
.h1_c00495{height:1036.666667pt;}
.h0_c00495{height:1036.800049pt;}
.w0_c00495{width:818.559977pt;}
.w1_c00495{width:818.666667pt;}
.x0_c00495{left:0.000000pt;}
.x7e_c00495{left:101.200000pt;}
.x12_c00495{left:102.666667pt;}
.x5b_c00495{left:127.866667pt;}
.x33_c00495{left:128.800000pt;}
.x13_c00495{left:129.866667pt;}
.x80_c00495{left:131.866667pt;}
.x24_c00495{left:138.533333pt;}
.x22_c00495{left:140.133333pt;}
.x1b_c00495{left:141.066667pt;}
.x1a_c00495{left:148.800000pt;}
.x49_c00495{left:150.400000pt;}
.x52_c00495{left:154.266667pt;}
.x7b_c00495{left:157.466667pt;}
.x81_c00495{left:159.066667pt;}
.x1c_c00495{left:160.266667pt;}
.x65_c00495{left:161.333333pt;}
.x3a_c00495{left:162.533333pt;}
.x27_c00495{left:163.733333pt;}
.x6a_c00495{left:164.800000pt;}
.x86_c00495{left:166.533333pt;}
.x2d_c00495{left:167.866667pt;}
.x34_c00495{left:169.466667pt;}
.x66_c00495{left:170.666667pt;}
.x6b_c00495{left:172.533333pt;}
.x14_c00495{left:174.000000pt;}
.x3e_c00495{left:175.600000pt;}
.x4a_c00495{left:176.666667pt;}
.x1d_c00495{left:178.133333pt;}
.x5c_c00495{left:179.333333pt;}
.x3b_c00495{left:181.466667pt;}
.x2c_c00495{left:183.200000pt;}
.x2a_c00495{left:184.800000pt;}
.x71_c00495{left:186.533333pt;}
.x25_c00495{left:189.733333pt;}
.x4f_c00495{left:190.666667pt;}
.x26_c00495{left:192.000000pt;}
.x20_c00495{left:194.000000pt;}
.x68_c00495{left:194.933333pt;}
.x35_c00495{left:196.000000pt;}
.x58_c00495{left:197.066667pt;}
.x23_c00495{left:199.066667pt;}
.x7d_c00495{left:200.133333pt;}
.x28_c00495{left:202.133333pt;}
.x15_c00495{left:203.733333pt;}
.x79_c00495{left:204.800000pt;}
.x82_c00495{left:207.733333pt;}
.x36_c00495{left:208.800000pt;}
.x2e_c00495{left:211.066667pt;}
.x7f_c00495{left:212.533333pt;}
.x5d_c00495{left:213.866667pt;}
.x29_c00495{left:214.933333pt;}
.x1e_c00495{left:215.866667pt;}
.x4b_c00495{left:219.200000pt;}
.x53_c00495{left:220.400000pt;}
.x2b_c00495{left:223.200000pt;}
.x67_c00495{left:224.533333pt;}
.x50_c00495{left:226.133333pt;}
.x3f_c00495{left:228.400000pt;}
.x59_c00495{left:230.000000pt;}
.x1f_c00495{left:230.933333pt;}
.x21_c00495{left:234.266667pt;}
.x2f_c00495{left:238.266667pt;}
.x69_c00495{left:239.733333pt;}
.xc_c00495{left:241.066667pt;}
.x62_c00495{left:242.266667pt;}
.x11_c00495{left:245.466667pt;}
.x83_c00495{left:246.800000pt;}
.x16_c00495{left:248.266667pt;}
.x54_c00495{left:249.466667pt;}
.x64_c00495{left:250.666667pt;}
.x6c_c00495{left:251.600000pt;}
.x74_c00495{left:252.800000pt;}
.x8_c00495{left:255.066667pt;}
.x5e_c00495{left:256.400000pt;}
.x40_c00495{left:260.533333pt;}
.x7c_c00495{left:263.066667pt;}
.x4c_c00495{left:264.000000pt;}
.x37_c00495{left:265.466667pt;}
.x6d_c00495{left:268.266667pt;}
.x5a_c00495{left:269.333333pt;}
.x6f_c00495{left:270.933333pt;}
.x43_c00495{left:272.800000pt;}
.x55_c00495{left:274.400000pt;}
.x84_c00495{left:275.600000pt;}
.x17_c00495{left:276.800000pt;}
.x78_c00495{left:278.133333pt;}
.x30_c00495{left:279.866667pt;}
.x46_c00495{left:281.733333pt;}
.x41_c00495{left:282.666667pt;}
.x75_c00495{left:283.866667pt;}
.x1_c00495{left:285.066667pt;}
.xd_c00495{left:287.466667pt;}
.x76_c00495{left:289.466667pt;}
.x31_c00495{left:291.733333pt;}
.x87_c00495{left:292.933333pt;}
.x56_c00495{left:294.533333pt;}
.x51_c00495{left:298.133333pt;}
.x9_c00495{left:300.533333pt;}
.xe_c00495{left:301.600000pt;}
.x72_c00495{left:303.333333pt;}
.x44_c00495{left:304.533333pt;}
.x85_c00495{left:307.333333pt;}
.x38_c00495{left:308.400000pt;}
.x32_c00495{left:309.333333pt;}
.x6e_c00495{left:311.733333pt;}
.x18_c00495{left:318.666667pt;}
.xa_c00495{left:321.600000pt;}
.x5f_c00495{left:322.933333pt;}
.x4d_c00495{left:324.800000pt;}
.x42_c00495{left:326.133333pt;}
.x70_c00495{left:328.266667pt;}
.x57_c00495{left:333.600000pt;}
.x77_c00495{left:335.200000pt;}
.x4e_c00495{left:336.933333pt;}
.xf_c00495{left:343.466667pt;}
.x60_c00495{left:344.400000pt;}
.x2_c00495{left:349.333333pt;}
.x45_c00495{left:350.266667pt;}
.x39_c00495{left:351.333333pt;}
.x47_c00495{left:352.400000pt;}
.x88_c00495{left:353.733333pt;}
.x3c_c00495{left:354.933333pt;}
.x19_c00495{left:356.133333pt;}
.x73_c00495{left:360.000000pt;}
.x3d_c00495{left:362.266667pt;}
.x10_c00495{left:364.533333pt;}
.x48_c00495{left:366.133333pt;}
.x63_c00495{left:368.000000pt;}
.x61_c00495{left:370.266667pt;}
.x7a_c00495{left:373.066667pt;}
.x3_c00495{left:376.533333pt;}
.xb_c00495{left:378.933333pt;}
.x4_c00495{left:394.400000pt;}
.xe6_c00495{left:406.666667pt;}
.x90_c00495{left:407.733333pt;}
.x10f_c00495{left:432.400000pt;}
.x96_c00495{left:434.933333pt;}
.xf0_c00495{left:436.133333pt;}
.xfc_c00495{left:437.466667pt;}
.x5_c00495{left:438.533333pt;}
.x91_c00495{left:439.466667pt;}
.xee_c00495{left:441.866667pt;}
.x89_c00495{left:445.066667pt;}
.xaf_c00495{left:446.133333pt;}
.xf8_c00495{left:447.066667pt;}
.x102_c00495{left:448.266667pt;}
.x6_c00495{left:456.800000pt;}
.xeb_c00495{left:457.866667pt;}
.xaa_c00495{left:459.866667pt;}
.xd3_c00495{left:461.466667pt;}
.xde_c00495{left:462.400000pt;}
.xa4_c00495{left:464.000000pt;}
.x10a_c00495{left:468.933333pt;}
.xb5_c00495{left:469.866667pt;}
.xa1_c00495{left:471.866667pt;}
.xb8_c00495{left:475.333333pt;}
.xc7_c00495{left:476.533333pt;}
.x108_c00495{left:478.000000pt;}
.xe4_c00495{left:479.333333pt;}
.x8a_c00495{left:481.200000pt;}
.xe7_c00495{left:482.266667pt;}
.xf4_c00495{left:483.200000pt;}
.xa5_c00495{left:484.133333pt;}
.xef_c00495{left:485.066667pt;}
.xca_c00495{left:487.600000pt;}
.x105_c00495{left:488.933333pt;}
.xab_c00495{left:490.666667pt;}
.x9c_c00495{left:492.000000pt;}
.xfe_c00495{left:493.600000pt;}
.xa6_c00495{left:494.666667pt;}
.xd4_c00495{left:496.400000pt;}
.xe1_c00495{left:498.533333pt;}
.xb9_c00495{left:500.666667pt;}
.xc3_c00495{left:503.466667pt;}
.xe8_c00495{left:504.933333pt;}
.x110_c00495{left:506.666667pt;}
.x10b_c00495{left:508.400000pt;}
.xa2_c00495{left:509.600000pt;}
.xba_c00495{left:511.600000pt;}
.xff_c00495{left:512.533333pt;}
.xdf_c00495{left:513.600000pt;}
.xcb_c00495{left:514.800000pt;}
.x97_c00495{left:516.266667pt;}
.x92_c00495{left:518.533333pt;}
.xb0_c00495{left:520.666667pt;}
.x9d_c00495{left:523.066667pt;}
.xd5_c00495{left:524.533333pt;}
.xac_c00495{left:525.600000pt;}
.x100_c00495{left:526.666667pt;}
.xbf_c00495{left:529.866667pt;}
.xd9_c00495{left:531.866667pt;}
.xe2_c00495{left:533.466667pt;}
.xfa_c00495{left:534.533333pt;}
.xfb_c00495{left:535.466667pt;}
.x111_c00495{left:536.400000pt;}
.xcc_c00495{left:539.066667pt;}
.xb6_c00495{left:540.000000pt;}
.x8b_c00495{left:543.200000pt;}
.xad_c00495{left:546.400000pt;}
.xa3_c00495{left:547.733333pt;}
.xe9_c00495{left:548.800000pt;}
.x93_c00495{left:550.800000pt;}
.xb7_c00495{left:552.133333pt;}
.xb1_c00495{left:553.333333pt;}
.xc4_c00495{left:555.600000pt;}
.xc8_c00495{left:556.533333pt;}
.xd6_c00495{left:558.533333pt;}
.x112_c00495{left:562.000000pt;}
.x9e_c00495{left:563.066667pt;}
.xda_c00495{left:565.466667pt;}
.xd0_c00495{left:566.400000pt;}
.x106_c00495{left:567.600000pt;}
.xbb_c00495{left:568.533333pt;}
.xc0_c00495{left:569.600000pt;}
.xf9_c00495{left:571.466667pt;}
.x98_c00495{left:573.200000pt;}
.x8c_c00495{left:575.866667pt;}
.xae_c00495{left:576.800000pt;}
.xf1_c00495{left:577.733333pt;}
.xe3_c00495{left:582.133333pt;}
.xa7_c00495{left:584.000000pt;}
.x94_c00495{left:585.333333pt;}
.xdb_c00495{left:587.600000pt;}
.xec_c00495{left:590.400000pt;}
.x9f_c00495{left:592.133333pt;}
.xb2_c00495{left:593.600000pt;}
.x113_c00495{left:595.600000pt;}
.xc1_c00495{left:596.533333pt;}
.xcd_c00495{left:597.733333pt;}
.xe0_c00495{left:599.333333pt;}
.xd1_c00495{left:600.266667pt;}
.xbc_c00495{left:601.466667pt;}
.xdc_c00495{left:604.533333pt;}
.xc9_c00495{left:607.066667pt;}
.xf2_c00495{left:608.800000pt;}
.xea_c00495{left:610.133333pt;}
.x10c_c00495{left:611.866667pt;}
.x95_c00495{left:612.800000pt;}
.x103_c00495{left:615.200000pt;}
.xc5_c00495{left:617.066667pt;}
.xfd_c00495{left:618.400000pt;}
.x99_c00495{left:619.600000pt;}
.xa8_c00495{left:621.066667pt;}
.x8d_c00495{left:622.266667pt;}
.xa0_c00495{left:623.200000pt;}
.x107_c00495{left:624.933333pt;}
.xd7_c00495{left:627.333333pt;}
.xbd_c00495{left:631.866667pt;}
.x9a_c00495{left:633.733333pt;}
.xb3_c00495{left:635.466667pt;}
.xe5_c00495{left:636.933333pt;}
.xed_c00495{left:638.000000pt;}
.xc2_c00495{left:639.733333pt;}
.xf5_c00495{left:641.600000pt;}
.xce_c00495{left:642.800000pt;}
.xd2_c00495{left:643.733333pt;}
.xf6_c00495{left:647.066667pt;}
.x114_c00495{left:649.333333pt;}
.x9b_c00495{left:651.066667pt;}
.xb4_c00495{left:652.400000pt;}
.xc6_c00495{left:654.533333pt;}
.x101_c00495{left:657.200000pt;}
.x10d_c00495{left:658.400000pt;}
.xf3_c00495{left:659.733333pt;}
.x10e_c00495{left:660.666667pt;}
.x109_c00495{left:662.000000pt;}
.xa9_c00495{left:664.266667pt;}
.x104_c00495{left:665.466667pt;}
.x8e_c00495{left:668.000000pt;}
.xf7_c00495{left:669.733333pt;}
.xbe_c00495{left:670.933333pt;}
.xdd_c00495{left:673.333333pt;}
.x7_c00495{left:675.733333pt;}
.xd8_c00495{left:680.800000pt;}
.x8f_c00495{left:685.333333pt;}
.xcf_c00495{left:686.933333pt;}
}





/* 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_c00496 {
    display:none;
  }
  .loading-indicator_c00496.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00496 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_c00496 { 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_c00496" -> "#page-container .classname_c00496")
 */
.pf_c00496 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00496 { /* 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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00496 { /* 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_c00496 { /* 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_c00496 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00496 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00496 {overflow:visible;}
  }
}
.c_c00496 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00496 { /* 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_c00496:after { /* webkit #35443 */
  content: '';
}
.t_c00496:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00496 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 */
}
.__c00496 { /* 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_c00496 { /* info for Javascript */
  display:none;
}
.l_c00496 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00496 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00496 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00496: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_c00496 {
    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_c00496.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00496.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_c00496 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00496{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00496;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.000000;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;}
.m9e_c00496{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m10_c00496{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00496{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m98_c00496{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m14_c00496{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.mae_c00496{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m92_c00496{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m32_c00496{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m6c_c00496{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m21_c00496{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00496{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00496{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m19_c00496{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00496{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.mce_c00496{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00496{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00496{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00496{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00496{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00496{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m24_c00496{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00496{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m97_c00496{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00496{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00496{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00496{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m49_c00496{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m25_c00496{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.maf_c00496{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mad_c00496{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m84_c00496{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00496{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m75_c00496{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m96_c00496{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00496{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.me_c00496{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m63_c00496{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m85_c00496{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1b_c00496{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m87_c00496{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m0_c00496{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00496{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m5b_c00496{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m12_c00496{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md_c00496{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m68_c00496{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00496{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m69_c00496{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m86_c00496{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m29_c00496{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00496{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m78_c00496{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00496{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00496{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00496{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00496{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00496{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00496{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00496{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00496{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00496{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m88_c00496{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00496{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m41_c00496{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m17_c00496{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00496{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.md0_c00496{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m51_c00496{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00496{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m89_c00496{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00496{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m56_c00496{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.mca_c00496{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m4d_c00496{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00496{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m70_c00496{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m48_c00496{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11_c00496{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00496{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16_c00496{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m36_c00496{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m33_c00496{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mb_c00496{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m38_c00496{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m80_c00496{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00496{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00496{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00496{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00496{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00496{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m37_c00496{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00496{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00496{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m64_c00496{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00496{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00496{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.mac_c00496{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mc5_c00496{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m54_c00496{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m42_c00496{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00496{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m47_c00496{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m60_c00496{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m53_c00496{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m23_c00496{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m77_c00496{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00496{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m44_c00496{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m66_c00496{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00496{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00496{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00496{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m45_c00496{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.mba_c00496{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00496{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m18_c00496{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00496{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m81_c00496{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m15_c00496{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00496{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00496{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m22_c00496{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00496{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m6a_c00496{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m27_c00496{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00496{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00496{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00496{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00496{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m13_c00496{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00496{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m52_c00496{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00496{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m72_c00496{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00496{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00496{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00496{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m57_c00496{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m35_c00496{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00496{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00496{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00496{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m30_c00496{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m62_c00496{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00496{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m67_c00496{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.m28_c00496{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00496{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00496{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m90_c00496{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m26_c00496{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m50_c00496{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m8f_c00496{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mc7_c00496{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00496{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mbb_c00496{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m31_c00496{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00496{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m74_c00496{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m55_c00496{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m39_c00496{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m3c_c00496{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m59_c00496{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00496{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.mab_c00496{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m40_c00496{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m61_c00496{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00496{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m43_c00496{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00496{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m94_c00496{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m34_c00496{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m71_c00496{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00496{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00496{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m79_c00496{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00496{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m73_c00496{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m20_c00496{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00496{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m83_c00496{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m99_c00496{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00496{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m76_c00496{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m82_c00496{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.maa_c00496{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00496{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m58_c00496{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m65_c00496{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m93_c00496{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00496{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m95_c00496{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m91_c00496{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00496{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.mf_c00496{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00496{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m46_c00496{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00496{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls0_c00496{letter-spacing:0.000000px;}
.sc__c00496{text-shadow:none;}
.sc0_c00496{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__c00496{-webkit-text-stroke:0px transparent;}
.sc0_c00496{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c00496{word-spacing:-8.454545px;}
.ws6_c00496{word-spacing:-5.440522px;}
.ws2_c00496{word-spacing:-2.835916px;}
.ws1_c00496{word-spacing:-2.507559px;}
.ws0_c00496{word-spacing:-0.559433px;}
.ws7_c00496{word-spacing:0.000000px;}
.ws4_c00496{word-spacing:3.250000px;}
.ws3_c00496{word-spacing:10.290793px;}
.fc0_c00496{color:transparent;}
.fs1_c00496{font-size:42.000000px;}
.fs0_c00496{font-size:66.000000px;}
.y0_c00496{bottom:0.000000px;}
.y3e_c00496{bottom:159.300000px;}
.y77_c00496{bottom:159.900000px;}
.y3d_c00496{bottom:173.700000px;}
.y76_c00496{bottom:174.600000px;}
.y3c_c00496{bottom:188.400000px;}
.y75_c00496{bottom:189.750000px;}
.y3b_c00496{bottom:203.100000px;}
.y74_c00496{bottom:204.450000px;}
.y3a_c00496{bottom:217.800000px;}
.y73_c00496{bottom:218.400000px;}
.y39_c00496{bottom:231.450000px;}
.y72_c00496{bottom:232.500000px;}
.y38_c00496{bottom:246.300000px;}
.y71_c00496{bottom:247.950000px;}
.y37_c00496{bottom:261.000000px;}
.y70_c00496{bottom:262.350000px;}
.y36_c00496{bottom:274.350000px;}
.y6f_c00496{bottom:276.450000px;}
.y35_c00496{bottom:290.100000px;}
.y6e_c00496{bottom:291.150000px;}
.y34_c00496{bottom:304.950000px;}
.y6d_c00496{bottom:305.850000px;}
.y33_c00496{bottom:319.350000px;}
.y6c_c00496{bottom:320.250000px;}
.y32_c00496{bottom:334.050000px;}
.y6b_c00496{bottom:334.350000px;}
.y31_c00496{bottom:348.450000px;}
.y6a_c00496{bottom:349.050000px;}
.y30_c00496{bottom:362.850000px;}
.y69_c00496{bottom:364.200000px;}
.y2f_c00496{bottom:377.250000px;}
.y68_c00496{bottom:378.300000px;}
.y2e_c00496{bottom:392.400000px;}
.y67_c00496{bottom:393.450000px;}
.y2d_c00496{bottom:406.800000px;}
.y66_c00496{bottom:408.000000px;}
.y2c_c00496{bottom:421.200000px;}
.y65_c00496{bottom:422.700000px;}
.y2b_c00496{bottom:436.350000px;}
.y64_c00496{bottom:437.400000px;}
.y2a_c00496{bottom:450.750000px;}
.y63_c00496{bottom:451.500000px;}
.y29_c00496{bottom:465.450000px;}
.y62_c00496{bottom:465.900000px;}
.y28_c00496{bottom:479.550000px;}
.y61_c00496{bottom:480.600000px;}
.y27_c00496{bottom:494.250000px;}
.y60_c00496{bottom:495.000000px;}
.y26_c00496{bottom:509.100000px;}
.y5f_c00496{bottom:509.400000px;}
.y25_c00496{bottom:522.750000px;}
.y5e_c00496{bottom:524.100000px;}
.y24_c00496{bottom:537.450000px;}
.y5d_c00496{bottom:537.900000px;}
.y23_c00496{bottom:552.000000px;}
.y5c_c00496{bottom:552.900000px;}
.y22_c00496{bottom:566.700000px;}
.y21_c00496{bottom:581.400000px;}
.y20_c00496{bottom:595.800000px;}
.y5b_c00496{bottom:595.950000px;}
.y1f_c00496{bottom:610.200000px;}
.y5a_c00496{bottom:610.350000px;}
.y1e_c00496{bottom:624.600000px;}
.y59_c00496{bottom:625.050000px;}
.y1d_c00496{bottom:639.300000px;}
.y58_c00496{bottom:639.750000px;}
.y57_c00496{bottom:654.150000px;}
.y1c_c00496{bottom:654.300000px;}
.y56_c00496{bottom:668.250000px;}
.y1b_c00496{bottom:668.700000px;}
.y55_c00496{bottom:682.950000px;}
.y1a_c00496{bottom:683.400000px;}
.y54_c00496{bottom:697.650000px;}
.y19_c00496{bottom:697.800000px;}
.y53_c00496{bottom:712.050000px;}
.y18_c00496{bottom:712.500000px;}
.y17_c00496{bottom:726.900000px;}
.y52_c00496{bottom:727.500000px;}
.y16_c00496{bottom:741.600000px;}
.y51_c00496{bottom:741.900000px;}
.y15_c00496{bottom:756.000000px;}
.y50_c00496{bottom:756.300000px;}
.y4f_c00496{bottom:771.000000px;}
.y14_c00496{bottom:771.150000px;}
.y4e_c00496{bottom:785.400000px;}
.y13_c00496{bottom:785.550000px;}
.y12_c00496{bottom:800.100000px;}
.y4d_c00496{bottom:800.550000px;}
.y11_c00496{bottom:814.800000px;}
.y4c_c00496{bottom:815.250000px;}
.y10_c00496{bottom:829.500000px;}
.y4b_c00496{bottom:829.650000px;}
.yf_c00496{bottom:844.200000px;}
.y4a_c00496{bottom:844.350000px;}
.ye_c00496{bottom:858.600000px;}
.y49_c00496{bottom:858.750000px;}
.y48_c00496{bottom:873.150000px;}
.yd_c00496{bottom:873.300000px;}
.yc_c00496{bottom:887.700000px;}
.y47_c00496{bottom:887.850000px;}
.yb_c00496{bottom:902.100000px;}
.y46_c00496{bottom:902.250000px;}
.ya_c00496{bottom:916.500000px;}
.y45_c00496{bottom:916.950000px;}
.y44_c00496{bottom:931.050000px;}
.y9_c00496{bottom:931.350000px;}
.y8_c00496{bottom:945.300000px;}
.y43_c00496{bottom:945.750000px;}
.y42_c00496{bottom:960.150000px;}
.y7_c00496{bottom:960.450000px;}
.y41_c00496{bottom:975.000000px;}
.y6_c00496{bottom:975.600000px;}
.y5_c00496{bottom:989.700000px;}
.y40_c00496{bottom:1004.100000px;}
.y4_c00496{bottom:1004.400000px;}
.y3f_c00496{bottom:1018.500000px;}
.y3_c00496{bottom:1019.100000px;}
.y2_c00496{bottom:1054.200000px;}
.y1_c00496{bottom:1054.500000px;}
.h3_c00496{height:42.000000px;}
.h2_c00496{height:66.000000px;}
.h1_c00496{height:1164.000000px;}
.h0_c00496{height:1164.239960px;}
.w0_c00496{width:920.160094px;}
.w1_c00496{width:920.250000px;}
.x0_c00496{left:0.000000px;}
.x3_c00496{left:140.100000px;}
.x1_c00496{left:141.150000px;}
.x19_c00496{left:171.300000px;}
.x4_c00496{left:172.500000px;}
.xd_c00496{left:173.850000px;}
.x77_c00496{left:178.650000px;}
.x71_c00496{left:180.300000px;}
.x5a_c00496{left:181.350000px;}
.x2a_c00496{left:182.550000px;}
.x13_c00496{left:184.500000px;}
.x8a_c00496{left:190.950000px;}
.x69_c00496{left:192.300000px;}
.x5d_c00496{left:193.350000px;}
.x3a_c00496{left:194.400000px;}
.x46_c00496{left:195.450000px;}
.x83_c00496{left:201.300000px;}
.x3b_c00496{left:209.100000px;}
.x2d_c00496{left:213.000000px;}
.x7_c00496{left:214.200000px;}
.x25_c00496{left:215.250000px;}
.x6c_c00496{left:217.650000px;}
.x58_c00496{left:220.950000px;}
.xe_c00496{left:222.750000px;}
.x8_c00496{left:224.250000px;}
.x14_c00496{left:225.600000px;}
.x49_c00496{left:226.800000px;}
.x2b_c00496{left:228.300000px;}
.x5_c00496{left:230.400000px;}
.x88_c00496{left:232.950000px;}
.xb_c00496{left:235.050000px;}
.x20_c00496{left:236.850000px;}
.x4d_c00496{left:238.650000px;}
.x40_c00496{left:240.300000px;}
.x89_c00496{left:242.700000px;}
.x79_c00496{left:244.050000px;}
.x7c_c00496{left:245.400000px;}
.x34_c00496{left:246.900000px;}
.x3e_c00496{left:249.300000px;}
.x6a_c00496{left:250.650000px;}
.xf_c00496{left:252.600000px;}
.x6f_c00496{left:253.800000px;}
.x3c_c00496{left:255.900000px;}
.x4a_c00496{left:257.400000px;}
.x35_c00496{left:259.200000px;}
.x7e_c00496{left:260.700000px;}
.x30_c00496{left:261.900000px;}
.x26_c00496{left:263.850000px;}
.x10_c00496{left:265.200000px;}
.x2e_c00496{left:268.050000px;}
.x15_c00496{left:269.550000px;}
.x6_c00496{left:270.750000px;}
.x86_c00496{left:271.800000px;}
.x31_c00496{left:274.200000px;}
.xc_c00496{left:276.150000px;}
.x41_c00496{left:278.100000px;}
.x70_c00496{left:281.850000px;}
.x60_c00496{left:283.050000px;}
.x9_c00496{left:285.150000px;}
.x47_c00496{left:286.650000px;}
.x4e_c00496{left:288.600000px;}
.x3f_c00496{left:289.650000px;}
.x3d_c00496{left:292.200000px;}
.x27_c00496{left:293.400000px;}
.x5e_c00496{left:295.950000px;}
.x61_c00496{left:297.450000px;}
.x1a_c00496{left:300.750000px;}
.x59_c00496{left:301.950000px;}
.x36_c00496{left:303.150000px;}
.x54_c00496{left:304.650000px;}
.x21_c00496{left:306.300000px;}
.x5b_c00496{left:307.350000px;}
.x28_c00496{left:309.600000px;}
.x2c_c00496{left:310.650000px;}
.x63_c00496{left:311.850000px;}
.x72_c00496{left:314.400000px;}
.x16_c00496{left:316.050000px;}
.x6e_c00496{left:319.200000px;}
.x7b_c00496{left:321.150000px;}
.x48_c00496{left:322.950000px;}
.x7a_c00496{left:324.300000px;}
.x2f_c00496{left:325.650000px;}
.x65_c00496{left:327.000000px;}
.x7f_c00496{left:328.050000px;}
.x75_c00496{left:329.400000px;}
.x4b_c00496{left:330.900000px;}
.x55_c00496{left:334.200000px;}
.x53_c00496{left:338.400000px;}
.x1b_c00496{left:339.600000px;}
.x84_c00496{left:341.850000px;}
.x37_c00496{left:344.250000px;}
.xa_c00496{left:345.600000px;}
.x57_c00496{left:347.400000px;}
.x76_c00496{left:350.400000px;}
.x22_c00496{left:352.050000px;}
.x4f_c00496{left:353.100000px;}
.x44_c00496{left:354.450000px;}
.x17_c00496{left:356.700000px;}
.x1c_c00496{left:357.900000px;}
.x62_c00496{left:359.400000px;}
.x66_c00496{left:363.000000px;}
.x42_c00496{left:365.250000px;}
.x23_c00496{left:367.200000px;}
.x32_c00496{left:369.150000px;}
.x38_c00496{left:370.500000px;}
.x73_c00496{left:373.800000px;}
.x50_c00496{left:375.000000px;}
.x4c_c00496{left:376.200000px;}
.x6b_c00496{left:379.200000px;}
.x11_c00496{left:382.200000px;}
.x67_c00496{left:383.850000px;}
.x1d_c00496{left:385.200000px;}
.x74_c00496{left:387.300000px;}
.x56_c00496{left:388.500000px;}
.x80_c00496{left:390.450000px;}
.x45_c00496{left:395.100000px;}
.x5f_c00496{left:397.500000px;}
.x24_c00496{left:399.600000px;}
.x1e_c00496{left:400.650000px;}
.x18_c00496{left:402.450000px;}
.x29_c00496{left:404.700000px;}
.x78_c00496{left:406.500000px;}
.x68_c00496{left:407.700000px;}
.x7d_c00496{left:411.450000px;}
.x33_c00496{left:412.650000px;}
.x81_c00496{left:415.350000px;}
.x43_c00496{left:417.450000px;}
.x5c_c00496{left:419.400000px;}
.x51_c00496{left:422.850000px;}
.x87_c00496{left:425.100000px;}
.x6d_c00496{left:428.850000px;}
.x82_c00496{left:430.500000px;}
.x1f_c00496{left:434.550000px;}
.x52_c00496{left:439.050000px;}
.x64_c00496{left:440.400000px;}
.x2_c00496{left:442.800000px;}
.x85_c00496{left:444.300000px;}
.x39_c00496{left:451.500000px;}
.x12_c00496{left:456.300000px;}
.xf7_c00496{left:478.800000px;}
.xed_c00496{left:479.850000px;}
.xbc_c00496{left:482.700000px;}
.x8b_c00496{left:483.900000px;}
.x110_c00496{left:512.700000px;}
.x10e_c00496{left:515.100000px;}
.x104_c00496{left:519.600000px;}
.xbd_c00496{left:520.800000px;}
.x100_c00496{left:522.750000px;}
.xe4_c00496{left:524.700000px;}
.xce_c00496{left:525.900000px;}
.x8c_c00496{left:527.100000px;}
.xf8_c00496{left:529.200000px;}
.x109_c00496{left:530.400000px;}
.xc4_c00496{left:532.500000px;}
.xfa_c00496{left:535.350000px;}
.xdb_c00496{left:536.400000px;}
.xd3_c00496{left:537.750000px;}
.x9f_c00496{left:539.250000px;}
.x114_c00496{left:542.250000px;}
.x111_c00496{left:547.200000px;}
.xf0_c00496{left:549.000000px;}
.xb1_c00496{left:553.800000px;}
.xc5_c00496{left:556.650000px;}
.x116_c00496{left:557.700000px;}
.x10b_c00496{left:561.150000px;}
.x9b_c00496{left:563.100000px;}
.xbe_c00496{left:564.300000px;}
.xa9_c00496{left:566.700000px;}
.xf9_c00496{left:567.750000px;}
.xaa_c00496{left:568.950000px;}
.xde_c00496{left:570.000000px;}
.x94_c00496{left:571.050000px;}
.x101_c00496{left:574.200000px;}
.x99_c00496{left:575.700000px;}
.xfb_c00496{left:577.050000px;}
.xf2_c00496{left:578.850000px;}
.xb8_c00496{left:580.050000px;}
.x8d_c00496{left:582.150000px;}
.xc8_c00496{left:584.250000px;}
.xa5_c00496{left:585.300000px;}
.xbf_c00496{left:586.950000px;}
.xba_c00496{left:590.850000px;}
.xdc_c00496{left:593.700000px;}
.xa0_c00496{left:595.350000px;}
.xab_c00496{left:596.700000px;}
.x95_c00496{left:598.050000px;}
.xb2_c00496{left:600.000000px;}
.xc0_c00496{left:602.100000px;}
.xe7_c00496{left:605.100000px;}
.xd6_c00496{left:606.600000px;}
.xfd_c00496{left:607.950000px;}
.xac_c00496{left:609.000000px;}
.xf3_c00496{left:610.500000px;}
.x8f_c00496{left:611.550000px;}
.x102_c00496{left:612.750000px;}
.xdf_c00496{left:614.250000px;}
.x96_c00496{left:616.050000px;}
.x9a_c00496{left:617.100000px;}
.xd8_c00496{left:618.600000px;}
.xe2_c00496{left:619.800000px;}
.xcf_c00496{left:624.300000px;}
.x8e_c00496{left:625.350000px;}
.xb3_c00496{left:626.700000px;}
.xee_c00496{left:629.250000px;}
.xe8_c00496{left:630.300000px;}
.xcc_c00496{left:631.500000px;}
.xeb_c00496{left:633.450000px;}
.xc9_c00496{left:636.450000px;}
.x112_c00496{left:637.650000px;}
.xa6_c00496{left:639.000000px;}
.x90_c00496{left:641.100000px;}
.x103_c00496{left:642.300000px;}
.xe9_c00496{left:643.650000px;}
.xb4_c00496{left:645.450000px;}
.xe5_c00496{left:646.500000px;}
.xad_c00496{left:648.300000px;}
.xfe_c00496{left:649.350000px;}
.xfc_c00496{left:650.550000px;}
.x91_c00496{left:653.400000px;}
.xd9_c00496{left:655.350000px;}
.xdd_c00496{left:657.150000px;}
.xf1_c00496{left:658.800000px;}
.x10f_c00496{left:659.850000px;}
.x9c_c00496{left:663.150000px;}
.x105_c00496{left:665.100000px;}
.xcd_c00496{left:667.800000px;}
.xd0_c00496{left:670.350000px;}
.x113_c00496{left:672.900000px;}
.xec_c00496{left:674.100000px;}
.xa1_c00496{left:675.900000px;}
.xb5_c00496{left:677.550000px;}
.xb9_c00496{left:679.050000px;}
.x97_c00496{left:682.350000px;}
.xe3_c00496{left:684.600000px;}
.xa7_c00496{left:687.600000px;}
.xda_c00496{left:689.250000px;}
.xbb_c00496{left:691.800000px;}
.xc1_c00496{left:694.200000px;}
.xae_c00496{left:696.600000px;}
.x106_c00496{left:698.550000px;}
.xca_c00496{left:699.750000px;}
.xd1_c00496{left:700.950000px;}
.x9d_c00496{left:702.750000px;}
.x115_c00496{left:706.800000px;}
.x92_c00496{left:708.450000px;}
.xe1_c00496{left:711.600000px;}
.x10c_c00496{left:713.100000px;}
.xa2_c00496{left:717.000000px;}
.xaf_c00496{left:719.700000px;}
.xf4_c00496{left:721.050000px;}
.x98_c00496{left:723.000000px;}
.xd4_c00496{left:724.350000px;}
.xea_c00496{left:726.750000px;}
.xff_c00496{left:727.950000px;}
.xb6_c00496{left:729.000000px;}
.xe6_c00496{left:732.900000px;}
.xa8_c00496{left:735.150000px;}
.x107_c00496{left:737.400000px;}
.xc2_c00496{left:740.250000px;}
.xc6_c00496{left:743.700000px;}
.xf5_c00496{left:745.500000px;}
.xa3_c00496{left:746.850000px;}
.xd2_c00496{left:749.850000px;}
.xcb_c00496{left:751.200000px;}
.x10d_c00496{left:753.750000px;}
.x93_c00496{left:754.950000px;}
.xf6_c00496{left:759.150000px;}
.xe0_c00496{left:760.500000px;}
.x10a_c00496{left:761.550000px;}
.xb7_c00496{left:762.900000px;}
.xd5_c00496{left:766.500000px;}
.xb0_c00496{left:767.550000px;}
.xef_c00496{left:769.800000px;}
.xc3_c00496{left:774.450000px;}
.x108_c00496{left:775.500000px;}
.xa4_c00496{left:777.150000px;}
.x9e_c00496{left:780.150000px;}
.xd7_c00496{left:781.350000px;}
.xc7_c00496{left:784.800000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws5_c00496{word-spacing:-7.515152pt;}
.ws6_c00496{word-spacing:-4.836019pt;}
.ws2_c00496{word-spacing:-2.520814pt;}
.ws1_c00496{word-spacing:-2.228942pt;}
.ws0_c00496{word-spacing:-0.497274pt;}
.ws7_c00496{word-spacing:0.000000pt;}
.ws4_c00496{word-spacing:2.888889pt;}
.ws3_c00496{word-spacing:9.147372pt;}
.fs1_c00496{font-size:37.333333pt;}
.fs0_c00496{font-size:58.666667pt;}
.y0_c00496{bottom:0.000000pt;}
.y3e_c00496{bottom:141.600000pt;}
.y77_c00496{bottom:142.133333pt;}
.y3d_c00496{bottom:154.400000pt;}
.y76_c00496{bottom:155.200000pt;}
.y3c_c00496{bottom:167.466667pt;}
.y75_c00496{bottom:168.666667pt;}
.y3b_c00496{bottom:180.533333pt;}
.y74_c00496{bottom:181.733333pt;}
.y3a_c00496{bottom:193.600000pt;}
.y73_c00496{bottom:194.133333pt;}
.y39_c00496{bottom:205.733333pt;}
.y72_c00496{bottom:206.666667pt;}
.y38_c00496{bottom:218.933333pt;}
.y71_c00496{bottom:220.400000pt;}
.y37_c00496{bottom:232.000000pt;}
.y70_c00496{bottom:233.200000pt;}
.y36_c00496{bottom:243.866667pt;}
.y6f_c00496{bottom:245.733333pt;}
.y35_c00496{bottom:257.866667pt;}
.y6e_c00496{bottom:258.800000pt;}
.y34_c00496{bottom:271.066667pt;}
.y6d_c00496{bottom:271.866667pt;}
.y33_c00496{bottom:283.866667pt;}
.y6c_c00496{bottom:284.666667pt;}
.y32_c00496{bottom:296.933333pt;}
.y6b_c00496{bottom:297.200000pt;}
.y31_c00496{bottom:309.733333pt;}
.y6a_c00496{bottom:310.266667pt;}
.y30_c00496{bottom:322.533333pt;}
.y69_c00496{bottom:323.733333pt;}
.y2f_c00496{bottom:335.333333pt;}
.y68_c00496{bottom:336.266667pt;}
.y2e_c00496{bottom:348.800000pt;}
.y67_c00496{bottom:349.733333pt;}
.y2d_c00496{bottom:361.600000pt;}
.y66_c00496{bottom:362.666667pt;}
.y2c_c00496{bottom:374.400000pt;}
.y65_c00496{bottom:375.733333pt;}
.y2b_c00496{bottom:387.866667pt;}
.y64_c00496{bottom:388.800000pt;}
.y2a_c00496{bottom:400.666667pt;}
.y63_c00496{bottom:401.333333pt;}
.y29_c00496{bottom:413.733333pt;}
.y62_c00496{bottom:414.133333pt;}
.y28_c00496{bottom:426.266667pt;}
.y61_c00496{bottom:427.200000pt;}
.y27_c00496{bottom:439.333333pt;}
.y60_c00496{bottom:440.000000pt;}
.y26_c00496{bottom:452.533333pt;}
.y5f_c00496{bottom:452.800000pt;}
.y25_c00496{bottom:464.666667pt;}
.y5e_c00496{bottom:465.866667pt;}
.y24_c00496{bottom:477.733333pt;}
.y5d_c00496{bottom:478.133333pt;}
.y23_c00496{bottom:490.666667pt;}
.y5c_c00496{bottom:491.466667pt;}
.y22_c00496{bottom:503.733333pt;}
.y21_c00496{bottom:516.800000pt;}
.y20_c00496{bottom:529.600000pt;}
.y5b_c00496{bottom:529.733333pt;}
.y1f_c00496{bottom:542.400000pt;}
.y5a_c00496{bottom:542.533333pt;}
.y1e_c00496{bottom:555.200000pt;}
.y59_c00496{bottom:555.600000pt;}
.y1d_c00496{bottom:568.266667pt;}
.y58_c00496{bottom:568.666667pt;}
.y57_c00496{bottom:581.466667pt;}
.y1c_c00496{bottom:581.600000pt;}
.y56_c00496{bottom:594.000000pt;}
.y1b_c00496{bottom:594.400000pt;}
.y55_c00496{bottom:607.066667pt;}
.y1a_c00496{bottom:607.466667pt;}
.y54_c00496{bottom:620.133333pt;}
.y19_c00496{bottom:620.266667pt;}
.y53_c00496{bottom:632.933333pt;}
.y18_c00496{bottom:633.333333pt;}
.y17_c00496{bottom:646.133333pt;}
.y52_c00496{bottom:646.666667pt;}
.y16_c00496{bottom:659.200000pt;}
.y51_c00496{bottom:659.466667pt;}
.y15_c00496{bottom:672.000000pt;}
.y50_c00496{bottom:672.266667pt;}
.y4f_c00496{bottom:685.333333pt;}
.y14_c00496{bottom:685.466667pt;}
.y4e_c00496{bottom:698.133333pt;}
.y13_c00496{bottom:698.266667pt;}
.y12_c00496{bottom:711.200000pt;}
.y4d_c00496{bottom:711.600000pt;}
.y11_c00496{bottom:724.266667pt;}
.y4c_c00496{bottom:724.666667pt;}
.y10_c00496{bottom:737.333333pt;}
.y4b_c00496{bottom:737.466667pt;}
.yf_c00496{bottom:750.400000pt;}
.y4a_c00496{bottom:750.533333pt;}
.ye_c00496{bottom:763.200000pt;}
.y49_c00496{bottom:763.333333pt;}
.y48_c00496{bottom:776.133333pt;}
.yd_c00496{bottom:776.266667pt;}
.yc_c00496{bottom:789.066667pt;}
.y47_c00496{bottom:789.200000pt;}
.yb_c00496{bottom:801.866667pt;}
.y46_c00496{bottom:802.000000pt;}
.ya_c00496{bottom:814.666667pt;}
.y45_c00496{bottom:815.066667pt;}
.y44_c00496{bottom:827.600000pt;}
.y9_c00496{bottom:827.866667pt;}
.y8_c00496{bottom:840.266667pt;}
.y43_c00496{bottom:840.666667pt;}
.y42_c00496{bottom:853.466667pt;}
.y7_c00496{bottom:853.733333pt;}
.y41_c00496{bottom:866.666667pt;}
.y6_c00496{bottom:867.200000pt;}
.y5_c00496{bottom:879.733333pt;}
.y40_c00496{bottom:892.533333pt;}
.y4_c00496{bottom:892.800000pt;}
.y3f_c00496{bottom:905.333333pt;}
.y3_c00496{bottom:905.866667pt;}
.y2_c00496{bottom:937.066667pt;}
.y1_c00496{bottom:937.333333pt;}
.h3_c00496{height:37.333333pt;}
.h2_c00496{height:58.666667pt;}
.h1_c00496{height:1034.666667pt;}
.h0_c00496{height:1034.879964pt;}
.w0_c00496{width:817.920084pt;}
.w1_c00496{width:818.000000pt;}
.x0_c00496{left:0.000000pt;}
.x3_c00496{left:124.533333pt;}
.x1_c00496{left:125.466667pt;}
.x19_c00496{left:152.266667pt;}
.x4_c00496{left:153.333333pt;}
.xd_c00496{left:154.533333pt;}
.x77_c00496{left:158.800000pt;}
.x71_c00496{left:160.266667pt;}
.x5a_c00496{left:161.200000pt;}
.x2a_c00496{left:162.266667pt;}
.x13_c00496{left:164.000000pt;}
.x8a_c00496{left:169.733333pt;}
.x69_c00496{left:170.933333pt;}
.x5d_c00496{left:171.866667pt;}
.x3a_c00496{left:172.800000pt;}
.x46_c00496{left:173.733333pt;}
.x83_c00496{left:178.933333pt;}
.x3b_c00496{left:185.866667pt;}
.x2d_c00496{left:189.333333pt;}
.x7_c00496{left:190.400000pt;}
.x25_c00496{left:191.333333pt;}
.x6c_c00496{left:193.466667pt;}
.x58_c00496{left:196.400000pt;}
.xe_c00496{left:198.000000pt;}
.x8_c00496{left:199.333333pt;}
.x14_c00496{left:200.533333pt;}
.x49_c00496{left:201.600000pt;}
.x2b_c00496{left:202.933333pt;}
.x5_c00496{left:204.800000pt;}
.x88_c00496{left:207.066667pt;}
.xb_c00496{left:208.933333pt;}
.x20_c00496{left:210.533333pt;}
.x4d_c00496{left:212.133333pt;}
.x40_c00496{left:213.600000pt;}
.x89_c00496{left:215.733333pt;}
.x79_c00496{left:216.933333pt;}
.x7c_c00496{left:218.133333pt;}
.x34_c00496{left:219.466667pt;}
.x3e_c00496{left:221.600000pt;}
.x6a_c00496{left:222.800000pt;}
.xf_c00496{left:224.533333pt;}
.x6f_c00496{left:225.600000pt;}
.x3c_c00496{left:227.466667pt;}
.x4a_c00496{left:228.800000pt;}
.x35_c00496{left:230.400000pt;}
.x7e_c00496{left:231.733333pt;}
.x30_c00496{left:232.800000pt;}
.x26_c00496{left:234.533333pt;}
.x10_c00496{left:235.733333pt;}
.x2e_c00496{left:238.266667pt;}
.x15_c00496{left:239.600000pt;}
.x6_c00496{left:240.666667pt;}
.x86_c00496{left:241.600000pt;}
.x31_c00496{left:243.733333pt;}
.xc_c00496{left:245.466667pt;}
.x41_c00496{left:247.200000pt;}
.x70_c00496{left:250.533333pt;}
.x60_c00496{left:251.600000pt;}
.x9_c00496{left:253.466667pt;}
.x47_c00496{left:254.800000pt;}
.x4e_c00496{left:256.533333pt;}
.x3f_c00496{left:257.466667pt;}
.x3d_c00496{left:259.733333pt;}
.x27_c00496{left:260.800000pt;}
.x5e_c00496{left:263.066667pt;}
.x61_c00496{left:264.400000pt;}
.x1a_c00496{left:267.333333pt;}
.x59_c00496{left:268.400000pt;}
.x36_c00496{left:269.466667pt;}
.x54_c00496{left:270.800000pt;}
.x21_c00496{left:272.266667pt;}
.x5b_c00496{left:273.200000pt;}
.x28_c00496{left:275.200000pt;}
.x2c_c00496{left:276.133333pt;}
.x63_c00496{left:277.200000pt;}
.x72_c00496{left:279.466667pt;}
.x16_c00496{left:280.933333pt;}
.x6e_c00496{left:283.733333pt;}
.x7b_c00496{left:285.466667pt;}
.x48_c00496{left:287.066667pt;}
.x7a_c00496{left:288.266667pt;}
.x2f_c00496{left:289.466667pt;}
.x65_c00496{left:290.666667pt;}
.x7f_c00496{left:291.600000pt;}
.x75_c00496{left:292.800000pt;}
.x4b_c00496{left:294.133333pt;}
.x55_c00496{left:297.066667pt;}
.x53_c00496{left:300.800000pt;}
.x1b_c00496{left:301.866667pt;}
.x84_c00496{left:303.866667pt;}
.x37_c00496{left:306.000000pt;}
.xa_c00496{left:307.200000pt;}
.x57_c00496{left:308.800000pt;}
.x76_c00496{left:311.466667pt;}
.x22_c00496{left:312.933333pt;}
.x4f_c00496{left:313.866667pt;}
.x44_c00496{left:315.066667pt;}
.x17_c00496{left:317.066667pt;}
.x1c_c00496{left:318.133333pt;}
.x62_c00496{left:319.466667pt;}
.x66_c00496{left:322.666667pt;}
.x42_c00496{left:324.666667pt;}
.x23_c00496{left:326.400000pt;}
.x32_c00496{left:328.133333pt;}
.x38_c00496{left:329.333333pt;}
.x73_c00496{left:332.266667pt;}
.x50_c00496{left:333.333333pt;}
.x4c_c00496{left:334.400000pt;}
.x6b_c00496{left:337.066667pt;}
.x11_c00496{left:339.733333pt;}
.x67_c00496{left:341.200000pt;}
.x1d_c00496{left:342.400000pt;}
.x74_c00496{left:344.266667pt;}
.x56_c00496{left:345.333333pt;}
.x80_c00496{left:347.066667pt;}
.x45_c00496{left:351.200000pt;}
.x5f_c00496{left:353.333333pt;}
.x24_c00496{left:355.200000pt;}
.x1e_c00496{left:356.133333pt;}
.x18_c00496{left:357.733333pt;}
.x29_c00496{left:359.733333pt;}
.x78_c00496{left:361.333333pt;}
.x68_c00496{left:362.400000pt;}
.x7d_c00496{left:365.733333pt;}
.x33_c00496{left:366.800000pt;}
.x81_c00496{left:369.200000pt;}
.x43_c00496{left:371.066667pt;}
.x5c_c00496{left:372.800000pt;}
.x51_c00496{left:375.866667pt;}
.x87_c00496{left:377.866667pt;}
.x6d_c00496{left:381.200000pt;}
.x82_c00496{left:382.666667pt;}
.x1f_c00496{left:386.266667pt;}
.x52_c00496{left:390.266667pt;}
.x64_c00496{left:391.466667pt;}
.x2_c00496{left:393.600000pt;}
.x85_c00496{left:394.933333pt;}
.x39_c00496{left:401.333333pt;}
.x12_c00496{left:405.600000pt;}
.xf7_c00496{left:425.600000pt;}
.xed_c00496{left:426.533333pt;}
.xbc_c00496{left:429.066667pt;}
.x8b_c00496{left:430.133333pt;}
.x110_c00496{left:455.733333pt;}
.x10e_c00496{left:457.866667pt;}
.x104_c00496{left:461.866667pt;}
.xbd_c00496{left:462.933333pt;}
.x100_c00496{left:464.666667pt;}
.xe4_c00496{left:466.400000pt;}
.xce_c00496{left:467.466667pt;}
.x8c_c00496{left:468.533333pt;}
.xf8_c00496{left:470.400000pt;}
.x109_c00496{left:471.466667pt;}
.xc4_c00496{left:473.333333pt;}
.xfa_c00496{left:475.866667pt;}
.xdb_c00496{left:476.800000pt;}
.xd3_c00496{left:478.000000pt;}
.x9f_c00496{left:479.333333pt;}
.x114_c00496{left:482.000000pt;}
.x111_c00496{left:486.400000pt;}
.xf0_c00496{left:488.000000pt;}
.xb1_c00496{left:492.266667pt;}
.xc5_c00496{left:494.800000pt;}
.x116_c00496{left:495.733333pt;}
.x10b_c00496{left:498.800000pt;}
.x9b_c00496{left:500.533333pt;}
.xbe_c00496{left:501.600000pt;}
.xa9_c00496{left:503.733333pt;}
.xf9_c00496{left:504.666667pt;}
.xaa_c00496{left:505.733333pt;}
.xde_c00496{left:506.666667pt;}
.x94_c00496{left:507.600000pt;}
.x101_c00496{left:510.400000pt;}
.x99_c00496{left:511.733333pt;}
.xfb_c00496{left:512.933333pt;}
.xf2_c00496{left:514.533333pt;}
.xb8_c00496{left:515.600000pt;}
.x8d_c00496{left:517.466667pt;}
.xc8_c00496{left:519.333333pt;}
.xa5_c00496{left:520.266667pt;}
.xbf_c00496{left:521.733333pt;}
.xba_c00496{left:525.200000pt;}
.xdc_c00496{left:527.733333pt;}
.xa0_c00496{left:529.200000pt;}
.xab_c00496{left:530.400000pt;}
.x95_c00496{left:531.600000pt;}
.xb2_c00496{left:533.333333pt;}
.xc0_c00496{left:535.200000pt;}
.xe7_c00496{left:537.866667pt;}
.xd6_c00496{left:539.200000pt;}
.xfd_c00496{left:540.400000pt;}
.xac_c00496{left:541.333333pt;}
.xf3_c00496{left:542.666667pt;}
.x8f_c00496{left:543.600000pt;}
.x102_c00496{left:544.666667pt;}
.xdf_c00496{left:546.000000pt;}
.x96_c00496{left:547.600000pt;}
.x9a_c00496{left:548.533333pt;}
.xd8_c00496{left:549.866667pt;}
.xe2_c00496{left:550.933333pt;}
.xcf_c00496{left:554.933333pt;}
.x8e_c00496{left:555.866667pt;}
.xb3_c00496{left:557.066667pt;}
.xee_c00496{left:559.333333pt;}
.xe8_c00496{left:560.266667pt;}
.xcc_c00496{left:561.333333pt;}
.xeb_c00496{left:563.066667pt;}
.xc9_c00496{left:565.733333pt;}
.x112_c00496{left:566.800000pt;}
.xa6_c00496{left:568.000000pt;}
.x90_c00496{left:569.866667pt;}
.x103_c00496{left:570.933333pt;}
.xe9_c00496{left:572.133333pt;}
.xb4_c00496{left:573.733333pt;}
.xe5_c00496{left:574.666667pt;}
.xad_c00496{left:576.266667pt;}
.xfe_c00496{left:577.200000pt;}
.xfc_c00496{left:578.266667pt;}
.x91_c00496{left:580.800000pt;}
.xd9_c00496{left:582.533333pt;}
.xdd_c00496{left:584.133333pt;}
.xf1_c00496{left:585.600000pt;}
.x10f_c00496{left:586.533333pt;}
.x9c_c00496{left:589.466667pt;}
.x105_c00496{left:591.200000pt;}
.xcd_c00496{left:593.600000pt;}
.xd0_c00496{left:595.866667pt;}
.x113_c00496{left:598.133333pt;}
.xec_c00496{left:599.200000pt;}
.xa1_c00496{left:600.800000pt;}
.xb5_c00496{left:602.266667pt;}
.xb9_c00496{left:603.600000pt;}
.x97_c00496{left:606.533333pt;}
.xe3_c00496{left:608.533333pt;}
.xa7_c00496{left:611.200000pt;}
.xda_c00496{left:612.666667pt;}
.xbb_c00496{left:614.933333pt;}
.xc1_c00496{left:617.066667pt;}
.xae_c00496{left:619.200000pt;}
.x106_c00496{left:620.933333pt;}
.xca_c00496{left:622.000000pt;}
.xd1_c00496{left:623.066667pt;}
.x9d_c00496{left:624.666667pt;}
.x115_c00496{left:628.266667pt;}
.x92_c00496{left:629.733333pt;}
.xe1_c00496{left:632.533333pt;}
.x10c_c00496{left:633.866667pt;}
.xa2_c00496{left:637.333333pt;}
.xaf_c00496{left:639.733333pt;}
.xf4_c00496{left:640.933333pt;}
.x98_c00496{left:642.666667pt;}
.xd4_c00496{left:643.866667pt;}
.xea_c00496{left:646.000000pt;}
.xff_c00496{left:647.066667pt;}
.xb6_c00496{left:648.000000pt;}
.xe6_c00496{left:651.466667pt;}
.xa8_c00496{left:653.466667pt;}
.x107_c00496{left:655.466667pt;}
.xc2_c00496{left:658.000000pt;}
.xc6_c00496{left:661.066667pt;}
.xf5_c00496{left:662.666667pt;}
.xa3_c00496{left:663.866667pt;}
.xd2_c00496{left:666.533333pt;}
.xcb_c00496{left:667.733333pt;}
.x10d_c00496{left:670.000000pt;}
.x93_c00496{left:671.066667pt;}
.xf6_c00496{left:674.800000pt;}
.xe0_c00496{left:676.000000pt;}
.x10a_c00496{left:676.933333pt;}
.xb7_c00496{left:678.133333pt;}
.xd5_c00496{left:681.333333pt;}
.xb0_c00496{left:682.266667pt;}
.xef_c00496{left:684.266667pt;}
.xc3_c00496{left:688.400000pt;}
.x108_c00496{left:689.333333pt;}
.xa4_c00496{left:690.800000pt;}
.x9e_c00496{left:693.466667pt;}
.xd7_c00496{left:694.533333pt;}
.xc7_c00496{left:697.600000pt;}
}





/* 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_c00497 {
    display:none;
  }
  .loading-indicator_c00497.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00497 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_c00497 { 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_c00497" -> "#page-container .classname_c00497")
 */
.pf_c00497 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00497 { /* 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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00497 { /* 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_c00497 { /* 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_c00497 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00497 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00497 {overflow:visible;}
  }
}
.c_c00497 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00497 { /* 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_c00497:after { /* webkit #35443 */
  content: '';
}
.t_c00497:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00497 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 */
}
.__c00497 { /* 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_c00497 { /* info for Javascript */
  display:none;
}
.l_c00497 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00497 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00497 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00497: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_c00497 {
    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_c00497.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00497.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_c00497 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00497{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00497;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.000000;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;}
.m4f_c00497{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m77_c00497{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00497{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00497{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m28_c00497{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00497{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m93_c00497{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m8f_c00497{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.mab_c00497{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00497{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m43_c00497{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00497{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mae_c00497{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00497{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m53_c00497{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00497{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m5d_c00497{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m94_c00497{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.m89_c00497{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m98_c00497{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00497{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00497{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m79_c00497{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.mad_c00497{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00497{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00497{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00497{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00497{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m49_c00497{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m68_c00497{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00497{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00497{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m33_c00497{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00497{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6_c00497{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m26_c00497{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00497{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mba_c00497{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m55_c00497{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m32_c00497{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m23_c00497{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m46_c00497{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m9a_c00497{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00497{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m24_c00497{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m86_c00497{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00497{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m65_c00497{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00497{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m34_c00497{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00497{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00497{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00497{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m88_c00497{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00497{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m63_c00497{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.me_c00497{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m48_c00497{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m87_c00497{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mca_c00497{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00497{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m10_c00497{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00497{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00497{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00497{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m74_c00497{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m59_c00497{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m99_c00497{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.md_c00497{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m14_c00497{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00497{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m41_c00497{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00497{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m15_c00497{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m35_c00497{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.mb9_c00497{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00497{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m12_c00497{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00497{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00497{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m36_c00497{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00497{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00497{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m66_c00497{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m8_c00497{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00497{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00497{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m5c_c00497{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m85_c00497{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00497{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00497{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9_c00497{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m51_c00497{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m95_c00497{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m20_c00497{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb_c00497{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m11_c00497{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m56_c00497{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mbc_c00497{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00497{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m67_c00497{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00497{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00497{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00497{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m22_c00497{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m50_c00497{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m97_c00497{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00497{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m45_c00497{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m40_c00497{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m83_c00497{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m84_c00497{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m7_c00497{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00497{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00497{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00497{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.mc_c00497{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00497{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.maa_c00497{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.maf_c00497{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m70_c00497{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00497{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00497{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m92_c00497{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00497{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00497{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m25_c00497{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.m47_c00497{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00497{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00497{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m39_c00497{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m38_c00497{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.mcc_c00497{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m76_c00497{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m71_c00497{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m19_c00497{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m58_c00497{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00497{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m13_c00497{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m96_c00497{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m69_c00497{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m18_c00497{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.mf_c00497{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m42_c00497{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m52_c00497{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00497{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00497{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00497{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m90_c00497{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00497{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m37_c00497{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m16_c00497{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00497{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c00497{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00497{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m57_c00497{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m31_c00497{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m78_c00497{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.m91_c00497{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m1_c00497{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.mb0_c00497{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m29_c00497{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m9d_c00497{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00497{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.ma3_c00497{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00497{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00497{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m64_c00497{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m72_c00497{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m73_c00497{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m30_c00497{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.mac_c00497{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00497{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00497{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m81_c00497{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m61_c00497{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m3_c00497{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m62_c00497{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00497{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m17_c00497{transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00497{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00497{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m60_c00497{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00497{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00497{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00497{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00497{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00497{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m80_c00497{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m21_c00497{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2_c00497{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00497{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m4_c00497{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00497{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00497{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m82_c00497{transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355500,0.000000,0.000000,0.250000,0,0);}
.m0_c00497{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00497{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m5_c00497{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00497{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00497{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00497{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.ma_c00497{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m44_c00497{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00497{transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);}
.m54_c00497{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{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__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00497{word-spacing:-6.333637px;}
.ws2_c00497{word-spacing:-4.890875px;}
.ws1_c00497{word-spacing:-4.375000px;}
.ws6_c00497{word-spacing:0.000000px;}
.ws0_c00497{word-spacing:1.375000px;}
.ws4_c00497{word-spacing:12.195777px;}
.ws5_c00497{word-spacing:13.871961px;}
.fc0_c00497{color:transparent;}
.fs2_c00497{font-size:36.000000px;}
.fs0_c00497{font-size:42.000000px;}
.fs1_c00497{font-size:66.000000px;}
.y0_c00497{bottom:0.000000px;}
.y73_c00497{bottom:133.950000px;}
.y72_c00497{bottom:153.750000px;}
.y3d_c00497{bottom:154.050000px;}
.y71_c00497{bottom:168.150000px;}
.y3c_c00497{bottom:168.600000px;}
.y70_c00497{bottom:182.550000px;}
.y3b_c00497{bottom:183.300000px;}
.y6f_c00497{bottom:196.950000px;}
.y3a_c00497{bottom:197.700000px;}
.y6e_c00497{bottom:211.350000px;}
.y39_c00497{bottom:212.100000px;}
.y6d_c00497{bottom:226.050000px;}
.y38_c00497{bottom:226.500000px;}
.y6c_c00497{bottom:240.450000px;}
.y37_c00497{bottom:240.900000px;}
.y6b_c00497{bottom:254.850000px;}
.y36_c00497{bottom:257.700000px;}
.y6a_c00497{bottom:269.250000px;}
.y69_c00497{bottom:283.800000px;}
.y35_c00497{bottom:283.950000px;}
.y34_c00497{bottom:298.350000px;}
.y68_c00497{bottom:298.500000px;}
.y67_c00497{bottom:312.900000px;}
.y33_c00497{bottom:313.500000px;}
.y32_c00497{bottom:327.600000px;}
.y31_c00497{bottom:342.300000px;}
.y66_c00497{bottom:356.700000px;}
.y30_c00497{bottom:357.300000px;}
.y2f_c00497{bottom:371.700000px;}
.y2e_c00497{bottom:386.100000px;}
.y65_c00497{bottom:386.400000px;}
.y2d_c00497{bottom:400.500000px;}
.y64_c00497{bottom:400.800000px;}
.y2c_c00497{bottom:415.200000px;}
.y2b_c00497{bottom:429.900000px;}
.y2a_c00497{bottom:444.300000px;}
.y29_c00497{bottom:458.700000px;}
.y63_c00497{bottom:459.000000px;}
.y28_c00497{bottom:473.400000px;}
.y62_c00497{bottom:473.700000px;}
.y27_c00497{bottom:487.800000px;}
.y61_c00497{bottom:488.100000px;}
.y26_c00497{bottom:502.200000px;}
.y60_c00497{bottom:502.500000px;}
.y5f_c00497{bottom:516.900000px;}
.y25_c00497{bottom:517.200000px;}
.y5e_c00497{bottom:531.600000px;}
.y24_c00497{bottom:531.900000px;}
.y5d_c00497{bottom:546.000000px;}
.y23_c00497{bottom:546.300000px;}
.y5c_c00497{bottom:560.400000px;}
.y22_c00497{bottom:561.000000px;}
.y5b_c00497{bottom:574.800000px;}
.y21_c00497{bottom:575.400000px;}
.y5a_c00497{bottom:589.200000px;}
.y20_c00497{bottom:590.100000px;}
.y59_c00497{bottom:603.900000px;}
.y1f_c00497{bottom:604.500000px;}
.y58_c00497{bottom:618.600000px;}
.y1e_c00497{bottom:619.200000px;}
.y57_c00497{bottom:633.000000px;}
.y1d_c00497{bottom:633.600000px;}
.y56_c00497{bottom:647.400000px;}
.y1c_c00497{bottom:648.000000px;}
.y55_c00497{bottom:662.100000px;}
.y1b_c00497{bottom:663.000000px;}
.y54_c00497{bottom:676.500000px;}
.y1a_c00497{bottom:677.400000px;}
.y53_c00497{bottom:691.050000px;}
.y19_c00497{bottom:691.800000px;}
.y52_c00497{bottom:705.750000px;}
.y18_c00497{bottom:706.500000px;}
.y51_c00497{bottom:720.450000px;}
.y17_c00497{bottom:720.900000px;}
.y50_c00497{bottom:734.850000px;}
.y16_c00497{bottom:735.300000px;}
.y4f_c00497{bottom:749.250000px;}
.y15_c00497{bottom:750.000000px;}
.y4e_c00497{bottom:763.950000px;}
.y14_c00497{bottom:764.700000px;}
.y4d_c00497{bottom:778.350000px;}
.y13_c00497{bottom:779.400000px;}
.y4c_c00497{bottom:793.050000px;}
.y12_c00497{bottom:794.100000px;}
.y11_c00497{bottom:808.500000px;}
.y4b_c00497{bottom:810.300000px;}
.y10_c00497{bottom:823.200000px;}
.y4a_c00497{bottom:836.700000px;}
.yf_c00497{bottom:837.600000px;}
.y49_c00497{bottom:851.100000px;}
.ye_c00497{bottom:852.000000px;}
.y48_c00497{bottom:865.500000px;}
.yd_c00497{bottom:866.700000px;}
.y47_c00497{bottom:879.900000px;}
.yc_c00497{bottom:881.100000px;}
.y46_c00497{bottom:894.600000px;}
.yb_c00497{bottom:895.800000px;}
.y45_c00497{bottom:909.000000px;}
.ya_c00497{bottom:910.200000px;}
.y44_c00497{bottom:923.700000px;}
.y9_c00497{bottom:924.600000px;}
.y43_c00497{bottom:938.250000px;}
.y8_c00497{bottom:939.300000px;}
.y42_c00497{bottom:952.650000px;}
.y7_c00497{bottom:953.700000px;}
.y41_c00497{bottom:967.350000px;}
.y6_c00497{bottom:968.100000px;}
.y40_c00497{bottom:981.450000px;}
.y5_c00497{bottom:982.800000px;}
.y3f_c00497{bottom:995.850000px;}
.y4_c00497{bottom:997.200000px;}
.y3e_c00497{bottom:1010.550000px;}
.y3_c00497{bottom:1011.900000px;}
.y2_c00497{bottom:1043.550000px;}
.y1_c00497{bottom:1046.850000px;}
.h4_c00497{height:36.000000px;}
.h2_c00497{height:42.000000px;}
.h3_c00497{height:66.000000px;}
.h1_c00497{height:1164.000000px;}
.h0_c00497{height:1164.239960px;}
.w0_c00497{width:920.160094px;}
.w1_c00497{width:920.250000px;}
.x0_c00497{left:0.000000px;}
.x5a_c00497{left:100.050000px;}
.x8_c00497{left:101.550000px;}
.x74_c00497{left:126.750000px;}
.x73_c00497{left:128.400000px;}
.x64_c00497{left:132.600000px;}
.x62_c00497{left:135.150000px;}
.x78_c00497{left:138.600000px;}
.x5b_c00497{left:142.950000px;}
.x4e_c00497{left:146.700000px;}
.x2f_c00497{left:147.750000px;}
.x5d_c00497{left:152.550000px;}
.x6d_c00497{left:154.200000px;}
.x9_c00497{left:157.350000px;}
.x19_c00497{left:159.300000px;}
.x59_c00497{left:161.250000px;}
.x71_c00497{left:167.400000px;}
.x69_c00497{left:169.200000px;}
.x11_c00497{left:170.550000px;}
.x56_c00497{left:173.850000px;}
.x66_c00497{left:177.600000px;}
.x65_c00497{left:179.550000px;}
.x1a_c00497{left:180.900000px;}
.x2b_c00497{left:184.350000px;}
.x30_c00497{left:186.300000px;}
.x26_c00497{left:189.300000px;}
.xa_c00497{left:193.650000px;}
.x35_c00497{left:196.500000px;}
.x46_c00497{left:197.850000px;}
.x34_c00497{left:199.800000px;}
.x12_c00497{left:201.150000px;}
.x1b_c00497{left:204.000000px;}
.x67_c00497{left:205.350000px;}
.x6a_c00497{left:208.050000px;}
.x50_c00497{left:209.250000px;}
.x16_c00497{left:210.300000px;}
.x31_c00497{left:214.050000px;}
.x55_c00497{left:215.250000px;}
.x53_c00497{left:217.050000px;}
.x79_c00497{left:218.250000px;}
.x49_c00497{left:219.900000px;}
.xb_c00497{left:220.950000px;}
.x27_c00497{left:223.200000px;}
.x3a_c00497{left:225.300000px;}
.x32_c00497{left:226.650000px;}
.x7c_c00497{left:228.150000px;}
.x47_c00497{left:229.950000px;}
.xc_c00497{left:233.550000px;}
.x41_c00497{left:235.500000px;}
.x4f_c00497{left:237.750000px;}
.x6c_c00497{left:239.850000px;}
.x5c_c00497{left:241.950000px;}
.x36_c00497{left:244.800000px;}
.x3b_c00497{left:247.650000px;}
.x4a_c00497{left:248.700000px;}
.x42_c00497{left:250.200000px;}
.x23_c00497{left:251.850000px;}
.x68_c00497{left:253.350000px;}
.x5f_c00497{left:254.700000px;}
.x1f_c00497{left:256.950000px;}
.x17_c00497{left:258.600000px;}
.x7d_c00497{left:264.900000px;}
.x1c_c00497{left:266.250000px;}
.x28_c00497{left:269.250000px;}
.x2c_c00497{left:271.800000px;}
.x4b_c00497{left:273.900000px;}
.x3c_c00497{left:276.150000px;}
.x63_c00497{left:278.400000px;}
.x7f_c00497{left:279.900000px;}
.x24_c00497{left:282.450000px;}
.x60_c00497{left:285.300000px;}
.x75_c00497{left:286.650000px;}
.x48_c00497{left:287.850000px;}
.x13_c00497{left:289.650000px;}
.x57_c00497{left:291.300000px;}
.xd_c00497{left:292.650000px;}
.x1d_c00497{left:294.750000px;}
.x3d_c00497{left:295.950000px;}
.x29_c00497{left:297.300000px;}
.x43_c00497{left:299.850000px;}
.x20_c00497{left:302.700000px;}
.x18_c00497{left:304.650000px;}
.x54_c00497{left:306.000000px;}
.x1_c00497{left:307.500000px;}
.x84_c00497{left:310.050000px;}
.x2d_c00497{left:311.700000px;}
.xe_c00497{left:315.300000px;}
.x80_c00497{left:317.550000px;}
.x6e_c00497{left:319.050000px;}
.x37_c00497{left:321.150000px;}
.x6b_c00497{left:322.650000px;}
.x14_c00497{left:324.900000px;}
.x3e_c00497{left:328.050000px;}
.x81_c00497{left:329.850000px;}
.x76_c00497{left:330.900000px;}
.x44_c00497{left:333.300000px;}
.x38_c00497{left:334.800000px;}
.x21_c00497{left:337.200000px;}
.x3f_c00497{left:339.900000px;}
.x6f_c00497{left:341.700000px;}
.x7a_c00497{left:344.250000px;}
.x51_c00497{left:345.300000px;}
.x2a_c00497{left:346.650000px;}
.x22_c00497{left:349.050000px;}
.x61_c00497{left:352.200000px;}
.x72_c00497{left:353.400000px;}
.x33_c00497{left:355.200000px;}
.x82_c00497{left:357.900000px;}
.x4c_c00497{left:360.300000px;}
.x5e_c00497{left:362.550000px;}
.xf_c00497{left:364.950000px;}
.x1e_c00497{left:366.750000px;}
.x7b_c00497{left:369.750000px;}
.x39_c00497{left:371.100000px;}
.x52_c00497{left:372.300000px;}
.x4d_c00497{left:376.500000px;}
.x2_c00497{left:380.250000px;}
.x70_c00497{left:382.350000px;}
.x77_c00497{left:383.400000px;}
.x85_c00497{left:384.900000px;}
.x2e_c00497{left:387.600000px;}
.x15_c00497{left:391.800000px;}
.x40_c00497{left:393.600000px;}
.x45_c00497{left:395.250000px;}
.x25_c00497{left:396.300000px;}
.x10_c00497{left:400.200000px;}
.x58_c00497{left:402.900000px;}
.x3_c00497{left:410.550000px;}
.x7e_c00497{left:412.500000px;}
.x83_c00497{left:415.800000px;}
.x4_c00497{left:430.050000px;}
.xb7_c00497{left:443.100000px;}
.x86_c00497{left:444.300000px;}
.xcb_c00497{left:476.400000px;}
.xcf_c00497{left:477.450000px;}
.x5_c00497{left:481.200000px;}
.xc8_c00497{left:483.000000px;}
.xe1_c00497{left:486.150000px;}
.xb3_c00497{left:487.200000px;}
.xd4_c00497{left:489.300000px;}
.xff_c00497{left:490.350000px;}
.xf5_c00497{left:498.450000px;}
.x87_c00497{left:500.400000px;}
.x6_c00497{left:501.750000px;}
.x97_c00497{left:502.800000px;}
.xb8_c00497{left:504.300000px;}
.xdb_c00497{left:506.100000px;}
.xef_c00497{left:511.500000px;}
.xa2_c00497{left:513.000000px;}
.x106_c00497{left:514.200000px;}
.x8d_c00497{left:516.600000px;}
.xc7_c00497{left:517.950000px;}
.xdc_c00497{left:519.300000px;}
.xc9_c00497{left:520.800000px;}
.xe0_c00497{left:522.600000px;}
.xda_c00497{left:523.950000px;}
.xfb_c00497{left:525.150000px;}
.x101_c00497{left:527.550000px;}
.x95_c00497{left:529.800000px;}
.xa4_c00497{left:531.000000px;}
.xae_c00497{left:534.450000px;}
.xb4_c00497{left:537.600000px;}
.xf6_c00497{left:538.800000px;}
.xa5_c00497{left:540.300000px;}
.x103_c00497{left:541.350000px;}
.xd1_c00497{left:542.850000px;}
.xe2_c00497{left:544.800000px;}
.xb5_c00497{left:546.300000px;}
.xd5_c00497{left:547.650000px;}
.x8e_c00497{left:548.700000px;}
.x9d_c00497{left:550.950000px;}
.xa3_c00497{left:552.600000px;}
.x108_c00497{left:553.650000px;}
.xbf_c00497{left:555.150000px;}
.xca_c00497{left:558.600000px;}
.x9e_c00497{left:559.650000px;}
.x88_c00497{left:561.300000px;}
.x98_c00497{left:562.950000px;}
.x104_c00497{left:564.450000px;}
.xe4_c00497{left:565.500000px;}
.x96_c00497{left:567.600000px;}
.xaf_c00497{left:569.700000px;}
.xfe_c00497{left:570.750000px;}
.x9f_c00497{left:572.250000px;}
.xcc_c00497{left:573.600000px;}
.xb9_c00497{left:576.300000px;}
.xa7_c00497{left:577.800000px;}
.xa6_c00497{left:580.200000px;}
.xd0_c00497{left:583.200000px;}
.xb6_c00497{left:584.400000px;}
.xf3_c00497{left:585.600000px;}
.xd8_c00497{left:588.150000px;}
.xa8_c00497{left:590.100000px;}
.xe7_c00497{left:592.650000px;}
.xc3_c00497{left:594.750000px;}
.x99_c00497{left:596.400000px;}
.xa1_c00497{left:597.450000px;}
.x8f_c00497{left:599.400000px;}
.xba_c00497{left:601.200000px;}
.xcd_c00497{left:602.400000px;}
.xf9_c00497{left:603.600000px;}
.x10a_c00497{left:605.700000px;}
.xd6_c00497{left:607.350000px;}
.xb0_c00497{left:608.550000px;}
.xdd_c00497{left:609.900000px;}
.x89_c00497{left:612.450000px;}
.xbb_c00497{left:613.500000px;}
.x107_c00497{left:614.550000px;}
.xa0_c00497{left:618.300000px;}
.xe5_c00497{left:621.000000px;}
.xd9_c00497{left:622.650000px;}
.xa9_c00497{left:624.600000px;}
.x90_c00497{left:626.400000px;}
.x109_c00497{left:628.050000px;}
.xf4_c00497{left:629.100000px;}
.xe3_c00497{left:630.450000px;}
.xfc_c00497{left:632.550000px;}
.xec_c00497{left:634.800000px;}
.x100_c00497{left:636.150000px;}
.xce_c00497{left:637.350000px;}
.xb1_c00497{left:639.450000px;}
.xac_c00497{left:640.800000px;}
.xd2_c00497{left:641.850000px;}
.xc4_c00497{left:645.450000px;}
.x91_c00497{left:646.950000px;}
.xe8_c00497{left:651.000000px;}
.xb2_c00497{left:652.800000px;}
.xbc_c00497{left:654.600000px;}
.x9a_c00497{left:656.100000px;}
.x8a_c00497{left:659.550000px;}
.xed_c00497{left:663.900000px;}
.xe6_c00497{left:665.700000px;}
.xf7_c00497{left:669.150000px;}
.xc0_c00497{left:673.200000px;}
.xfd_c00497{left:676.500000px;}
.x92_c00497{left:677.850000px;}
.xaa_c00497{left:679.050000px;}
.x9b_c00497{left:681.300000px;}
.xd7_c00497{left:682.950000px;}
.xf8_c00497{left:684.300000px;}
.xf0_c00497{left:686.100000px;}
.xbd_c00497{left:687.300000px;}
.xad_c00497{left:689.700000px;}
.x93_c00497{left:690.750000px;}
.xde_c00497{left:692.700000px;}
.x8b_c00497{left:695.850000px;}
.x9c_c00497{left:697.500000px;}
.xf1_c00497{left:703.350000px;}
.xc5_c00497{left:704.550000px;}
.xd3_c00497{left:708.450000px;}
.x94_c00497{left:710.250000px;}
.x102_c00497{left:712.650000px;}
.xab_c00497{left:716.850000px;}
.x105_c00497{left:718.800000px;}
.xea_c00497{left:720.450000px;}
.xc1_c00497{left:723.300000px;}
.xf2_c00497{left:730.350000px;}
.xe9_c00497{left:731.550000px;}
.xdf_c00497{left:735.150000px;}
.x8c_c00497{left:736.950000px;}
.xbe_c00497{left:739.500000px;}
.xc2_c00497{left:740.550000px;}
.xc6_c00497{left:741.600000px;}
.xfa_c00497{left:743.700000px;}
.x7_c00497{left:745.050000px;}
.xeb_c00497{left:746.700000px;}
.xee_c00497{left:754.950000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws3_c00497{word-spacing:-5.629900pt;}
.ws2_c00497{word-spacing:-4.347444pt;}
.ws1_c00497{word-spacing:-3.888889pt;}
.ws6_c00497{word-spacing:0.000000pt;}
.ws0_c00497{word-spacing:1.222222pt;}
.ws4_c00497{word-spacing:10.840691pt;}
.ws5_c00497{word-spacing:12.330632pt;}
.fs2_c00497{font-size:32.000000pt;}
.fs0_c00497{font-size:37.333333pt;}
.fs1_c00497{font-size:58.666667pt;}
.y0_c00497{bottom:0.000000pt;}
.y73_c00497{bottom:119.066667pt;}
.y72_c00497{bottom:136.666667pt;}
.y3d_c00497{bottom:136.933333pt;}
.y71_c00497{bottom:149.466667pt;}
.y3c_c00497{bottom:149.866667pt;}
.y70_c00497{bottom:162.266667pt;}
.y3b_c00497{bottom:162.933333pt;}
.y6f_c00497{bottom:175.066667pt;}
.y3a_c00497{bottom:175.733333pt;}
.y6e_c00497{bottom:187.866667pt;}
.y39_c00497{bottom:188.533333pt;}
.y6d_c00497{bottom:200.933333pt;}
.y38_c00497{bottom:201.333333pt;}
.y6c_c00497{bottom:213.733333pt;}
.y37_c00497{bottom:214.133333pt;}
.y6b_c00497{bottom:226.533333pt;}
.y36_c00497{bottom:229.066667pt;}
.y6a_c00497{bottom:239.333333pt;}
.y69_c00497{bottom:252.266667pt;}
.y35_c00497{bottom:252.400000pt;}
.y34_c00497{bottom:265.200000pt;}
.y68_c00497{bottom:265.333333pt;}
.y67_c00497{bottom:278.133333pt;}
.y33_c00497{bottom:278.666667pt;}
.y32_c00497{bottom:291.200000pt;}
.y31_c00497{bottom:304.266667pt;}
.y66_c00497{bottom:317.066667pt;}
.y30_c00497{bottom:317.600000pt;}
.y2f_c00497{bottom:330.400000pt;}
.y2e_c00497{bottom:343.200000pt;}
.y65_c00497{bottom:343.466667pt;}
.y2d_c00497{bottom:356.000000pt;}
.y64_c00497{bottom:356.266667pt;}
.y2c_c00497{bottom:369.066667pt;}
.y2b_c00497{bottom:382.133333pt;}
.y2a_c00497{bottom:394.933333pt;}
.y29_c00497{bottom:407.733333pt;}
.y63_c00497{bottom:408.000000pt;}
.y28_c00497{bottom:420.800000pt;}
.y62_c00497{bottom:421.066667pt;}
.y27_c00497{bottom:433.600000pt;}
.y61_c00497{bottom:433.866667pt;}
.y26_c00497{bottom:446.400000pt;}
.y60_c00497{bottom:446.666667pt;}
.y5f_c00497{bottom:459.466667pt;}
.y25_c00497{bottom:459.733333pt;}
.y5e_c00497{bottom:472.533333pt;}
.y24_c00497{bottom:472.800000pt;}
.y5d_c00497{bottom:485.333333pt;}
.y23_c00497{bottom:485.600000pt;}
.y5c_c00497{bottom:498.133333pt;}
.y22_c00497{bottom:498.666667pt;}
.y5b_c00497{bottom:510.933333pt;}
.y21_c00497{bottom:511.466667pt;}
.y5a_c00497{bottom:523.733333pt;}
.y20_c00497{bottom:524.533333pt;}
.y59_c00497{bottom:536.800000pt;}
.y1f_c00497{bottom:537.333333pt;}
.y58_c00497{bottom:549.866667pt;}
.y1e_c00497{bottom:550.400000pt;}
.y57_c00497{bottom:562.666667pt;}
.y1d_c00497{bottom:563.200000pt;}
.y56_c00497{bottom:575.466667pt;}
.y1c_c00497{bottom:576.000000pt;}
.y55_c00497{bottom:588.533333pt;}
.y1b_c00497{bottom:589.333333pt;}
.y54_c00497{bottom:601.333333pt;}
.y1a_c00497{bottom:602.133333pt;}
.y53_c00497{bottom:614.266667pt;}
.y19_c00497{bottom:614.933333pt;}
.y52_c00497{bottom:627.333333pt;}
.y18_c00497{bottom:628.000000pt;}
.y51_c00497{bottom:640.400000pt;}
.y17_c00497{bottom:640.800000pt;}
.y50_c00497{bottom:653.200000pt;}
.y16_c00497{bottom:653.600000pt;}
.y4f_c00497{bottom:666.000000pt;}
.y15_c00497{bottom:666.666667pt;}
.y4e_c00497{bottom:679.066667pt;}
.y14_c00497{bottom:679.733333pt;}
.y4d_c00497{bottom:691.866667pt;}
.y13_c00497{bottom:692.800000pt;}
.y4c_c00497{bottom:704.933333pt;}
.y12_c00497{bottom:705.866667pt;}
.y11_c00497{bottom:718.666667pt;}
.y4b_c00497{bottom:720.266667pt;}
.y10_c00497{bottom:731.733333pt;}
.y4a_c00497{bottom:743.733333pt;}
.yf_c00497{bottom:744.533333pt;}
.y49_c00497{bottom:756.533333pt;}
.ye_c00497{bottom:757.333333pt;}
.y48_c00497{bottom:769.333333pt;}
.yd_c00497{bottom:770.400000pt;}
.y47_c00497{bottom:782.133333pt;}
.yc_c00497{bottom:783.200000pt;}
.y46_c00497{bottom:795.200000pt;}
.yb_c00497{bottom:796.266667pt;}
.y45_c00497{bottom:808.000000pt;}
.ya_c00497{bottom:809.066667pt;}
.y44_c00497{bottom:821.066667pt;}
.y9_c00497{bottom:821.866667pt;}
.y43_c00497{bottom:834.000000pt;}
.y8_c00497{bottom:834.933333pt;}
.y42_c00497{bottom:846.800000pt;}
.y7_c00497{bottom:847.733333pt;}
.y41_c00497{bottom:859.866667pt;}
.y6_c00497{bottom:860.533333pt;}
.y40_c00497{bottom:872.400000pt;}
.y5_c00497{bottom:873.600000pt;}
.y3f_c00497{bottom:885.200000pt;}
.y4_c00497{bottom:886.400000pt;}
.y3e_c00497{bottom:898.266667pt;}
.y3_c00497{bottom:899.466667pt;}
.y2_c00497{bottom:927.600000pt;}
.y1_c00497{bottom:930.533333pt;}
.h4_c00497{height:32.000000pt;}
.h2_c00497{height:37.333333pt;}
.h3_c00497{height:58.666667pt;}
.h1_c00497{height:1034.666667pt;}
.h0_c00497{height:1034.879964pt;}
.w0_c00497{width:817.920084pt;}
.w1_c00497{width:818.000000pt;}
.x0_c00497{left:0.000000pt;}
.x5a_c00497{left:88.933333pt;}
.x8_c00497{left:90.266667pt;}
.x74_c00497{left:112.666667pt;}
.x73_c00497{left:114.133333pt;}
.x64_c00497{left:117.866667pt;}
.x62_c00497{left:120.133333pt;}
.x78_c00497{left:123.200000pt;}
.x5b_c00497{left:127.066667pt;}
.x4e_c00497{left:130.400000pt;}
.x2f_c00497{left:131.333333pt;}
.x5d_c00497{left:135.600000pt;}
.x6d_c00497{left:137.066667pt;}
.x9_c00497{left:139.866667pt;}
.x19_c00497{left:141.600000pt;}
.x59_c00497{left:143.333333pt;}
.x71_c00497{left:148.800000pt;}
.x69_c00497{left:150.400000pt;}
.x11_c00497{left:151.600000pt;}
.x56_c00497{left:154.533333pt;}
.x66_c00497{left:157.866667pt;}
.x65_c00497{left:159.600000pt;}
.x1a_c00497{left:160.800000pt;}
.x2b_c00497{left:163.866667pt;}
.x30_c00497{left:165.600000pt;}
.x26_c00497{left:168.266667pt;}
.xa_c00497{left:172.133333pt;}
.x35_c00497{left:174.666667pt;}
.x46_c00497{left:175.866667pt;}
.x34_c00497{left:177.600000pt;}
.x12_c00497{left:178.800000pt;}
.x1b_c00497{left:181.333333pt;}
.x67_c00497{left:182.533333pt;}
.x6a_c00497{left:184.933333pt;}
.x50_c00497{left:186.000000pt;}
.x16_c00497{left:186.933333pt;}
.x31_c00497{left:190.266667pt;}
.x55_c00497{left:191.333333pt;}
.x53_c00497{left:192.933333pt;}
.x79_c00497{left:194.000000pt;}
.x49_c00497{left:195.466667pt;}
.xb_c00497{left:196.400000pt;}
.x27_c00497{left:198.400000pt;}
.x3a_c00497{left:200.266667pt;}
.x32_c00497{left:201.466667pt;}
.x7c_c00497{left:202.800000pt;}
.x47_c00497{left:204.400000pt;}
.xc_c00497{left:207.600000pt;}
.x41_c00497{left:209.333333pt;}
.x4f_c00497{left:211.333333pt;}
.x6c_c00497{left:213.200000pt;}
.x5c_c00497{left:215.066667pt;}
.x36_c00497{left:217.600000pt;}
.x3b_c00497{left:220.133333pt;}
.x4a_c00497{left:221.066667pt;}
.x42_c00497{left:222.400000pt;}
.x23_c00497{left:223.866667pt;}
.x68_c00497{left:225.200000pt;}
.x5f_c00497{left:226.400000pt;}
.x1f_c00497{left:228.400000pt;}
.x17_c00497{left:229.866667pt;}
.x7d_c00497{left:235.466667pt;}
.x1c_c00497{left:236.666667pt;}
.x28_c00497{left:239.333333pt;}
.x2c_c00497{left:241.600000pt;}
.x4b_c00497{left:243.466667pt;}
.x3c_c00497{left:245.466667pt;}
.x63_c00497{left:247.466667pt;}
.x7f_c00497{left:248.800000pt;}
.x24_c00497{left:251.066667pt;}
.x60_c00497{left:253.600000pt;}
.x75_c00497{left:254.800000pt;}
.x48_c00497{left:255.866667pt;}
.x13_c00497{left:257.466667pt;}
.x57_c00497{left:258.933333pt;}
.xd_c00497{left:260.133333pt;}
.x1d_c00497{left:262.000000pt;}
.x3d_c00497{left:263.066667pt;}
.x29_c00497{left:264.266667pt;}
.x43_c00497{left:266.533333pt;}
.x20_c00497{left:269.066667pt;}
.x18_c00497{left:270.800000pt;}
.x54_c00497{left:272.000000pt;}
.x1_c00497{left:273.333333pt;}
.x84_c00497{left:275.600000pt;}
.x2d_c00497{left:277.066667pt;}
.xe_c00497{left:280.266667pt;}
.x80_c00497{left:282.266667pt;}
.x6e_c00497{left:283.600000pt;}
.x37_c00497{left:285.466667pt;}
.x6b_c00497{left:286.800000pt;}
.x14_c00497{left:288.800000pt;}
.x3e_c00497{left:291.600000pt;}
.x81_c00497{left:293.200000pt;}
.x76_c00497{left:294.133333pt;}
.x44_c00497{left:296.266667pt;}
.x38_c00497{left:297.600000pt;}
.x21_c00497{left:299.733333pt;}
.x3f_c00497{left:302.133333pt;}
.x6f_c00497{left:303.733333pt;}
.x7a_c00497{left:306.000000pt;}
.x51_c00497{left:306.933333pt;}
.x2a_c00497{left:308.133333pt;}
.x22_c00497{left:310.266667pt;}
.x61_c00497{left:313.066667pt;}
.x72_c00497{left:314.133333pt;}
.x33_c00497{left:315.733333pt;}
.x82_c00497{left:318.133333pt;}
.x4c_c00497{left:320.266667pt;}
.x5e_c00497{left:322.266667pt;}
.xf_c00497{left:324.400000pt;}
.x1e_c00497{left:326.000000pt;}
.x7b_c00497{left:328.666667pt;}
.x39_c00497{left:329.866667pt;}
.x52_c00497{left:330.933333pt;}
.x4d_c00497{left:334.666667pt;}
.x2_c00497{left:338.000000pt;}
.x70_c00497{left:339.866667pt;}
.x77_c00497{left:340.800000pt;}
.x85_c00497{left:342.133333pt;}
.x2e_c00497{left:344.533333pt;}
.x15_c00497{left:348.266667pt;}
.x40_c00497{left:349.866667pt;}
.x45_c00497{left:351.333333pt;}
.x25_c00497{left:352.266667pt;}
.x10_c00497{left:355.733333pt;}
.x58_c00497{left:358.133333pt;}
.x3_c00497{left:364.933333pt;}
.x7e_c00497{left:366.666667pt;}
.x83_c00497{left:369.600000pt;}
.x4_c00497{left:382.266667pt;}
.xb7_c00497{left:393.866667pt;}
.x86_c00497{left:394.933333pt;}
.xcb_c00497{left:423.466667pt;}
.xcf_c00497{left:424.400000pt;}
.x5_c00497{left:427.733333pt;}
.xc8_c00497{left:429.333333pt;}
.xe1_c00497{left:432.133333pt;}
.xb3_c00497{left:433.066667pt;}
.xd4_c00497{left:434.933333pt;}
.xff_c00497{left:435.866667pt;}
.xf5_c00497{left:443.066667pt;}
.x87_c00497{left:444.800000pt;}
.x6_c00497{left:446.000000pt;}
.x97_c00497{left:446.933333pt;}
.xb8_c00497{left:448.266667pt;}
.xdb_c00497{left:449.866667pt;}
.xef_c00497{left:454.666667pt;}
.xa2_c00497{left:456.000000pt;}
.x106_c00497{left:457.066667pt;}
.x8d_c00497{left:459.200000pt;}
.xc7_c00497{left:460.400000pt;}
.xdc_c00497{left:461.600000pt;}
.xc9_c00497{left:462.933333pt;}
.xe0_c00497{left:464.533333pt;}
.xda_c00497{left:465.733333pt;}
.xfb_c00497{left:466.800000pt;}
.x101_c00497{left:468.933333pt;}
.x95_c00497{left:470.933333pt;}
.xa4_c00497{left:472.000000pt;}
.xae_c00497{left:475.066667pt;}
.xb4_c00497{left:477.866667pt;}
.xf6_c00497{left:478.933333pt;}
.xa5_c00497{left:480.266667pt;}
.x103_c00497{left:481.200000pt;}
.xd1_c00497{left:482.533333pt;}
.xe2_c00497{left:484.266667pt;}
.xb5_c00497{left:485.600000pt;}
.xd5_c00497{left:486.800000pt;}
.x8e_c00497{left:487.733333pt;}
.x9d_c00497{left:489.733333pt;}
.xa3_c00497{left:491.200000pt;}
.x108_c00497{left:492.133333pt;}
.xbf_c00497{left:493.466667pt;}
.xca_c00497{left:496.533333pt;}
.x9e_c00497{left:497.466667pt;}
.x88_c00497{left:498.933333pt;}
.x98_c00497{left:500.400000pt;}
.x104_c00497{left:501.733333pt;}
.xe4_c00497{left:502.666667pt;}
.x96_c00497{left:504.533333pt;}
.xaf_c00497{left:506.400000pt;}
.xfe_c00497{left:507.333333pt;}
.x9f_c00497{left:508.666667pt;}
.xcc_c00497{left:509.866667pt;}
.xb9_c00497{left:512.266667pt;}
.xa7_c00497{left:513.600000pt;}
.xa6_c00497{left:515.733333pt;}
.xd0_c00497{left:518.400000pt;}
.xb6_c00497{left:519.466667pt;}
.xf3_c00497{left:520.533333pt;}
.xd8_c00497{left:522.800000pt;}
.xa8_c00497{left:524.533333pt;}
.xe7_c00497{left:526.800000pt;}
.xc3_c00497{left:528.666667pt;}
.x99_c00497{left:530.133333pt;}
.xa1_c00497{left:531.066667pt;}
.x8f_c00497{left:532.800000pt;}
.xba_c00497{left:534.400000pt;}
.xcd_c00497{left:535.466667pt;}
.xf9_c00497{left:536.533333pt;}
.x10a_c00497{left:538.400000pt;}
.xd6_c00497{left:539.866667pt;}
.xb0_c00497{left:540.933333pt;}
.xdd_c00497{left:542.133333pt;}
.x89_c00497{left:544.400000pt;}
.xbb_c00497{left:545.333333pt;}
.x107_c00497{left:546.266667pt;}
.xa0_c00497{left:549.600000pt;}
.xe5_c00497{left:552.000000pt;}
.xd9_c00497{left:553.466667pt;}
.xa9_c00497{left:555.200000pt;}
.x90_c00497{left:556.800000pt;}
.x109_c00497{left:558.266667pt;}
.xf4_c00497{left:559.200000pt;}
.xe3_c00497{left:560.400000pt;}
.xfc_c00497{left:562.266667pt;}
.xec_c00497{left:564.266667pt;}
.x100_c00497{left:565.466667pt;}
.xce_c00497{left:566.533333pt;}
.xb1_c00497{left:568.400000pt;}
.xac_c00497{left:569.600000pt;}
.xd2_c00497{left:570.533333pt;}
.xc4_c00497{left:573.733333pt;}
.x91_c00497{left:575.066667pt;}
.xe8_c00497{left:578.666667pt;}
.xb2_c00497{left:580.266667pt;}
.xbc_c00497{left:581.866667pt;}
.x9a_c00497{left:583.200000pt;}
.x8a_c00497{left:586.266667pt;}
.xed_c00497{left:590.133333pt;}
.xe6_c00497{left:591.733333pt;}
.xf7_c00497{left:594.800000pt;}
.xc0_c00497{left:598.400000pt;}
.xfd_c00497{left:601.333333pt;}
.x92_c00497{left:602.533333pt;}
.xaa_c00497{left:603.600000pt;}
.x9b_c00497{left:605.600000pt;}
.xd7_c00497{left:607.066667pt;}
.xf8_c00497{left:608.266667pt;}
.xf0_c00497{left:609.866667pt;}
.xbd_c00497{left:610.933333pt;}
.xad_c00497{left:613.066667pt;}
.x93_c00497{left:614.000000pt;}
.xde_c00497{left:615.733333pt;}
.x8b_c00497{left:618.533333pt;}
.x9c_c00497{left:620.000000pt;}
.xf1_c00497{left:625.200000pt;}
.xc5_c00497{left:626.266667pt;}
.xd3_c00497{left:629.733333pt;}
.x94_c00497{left:631.333333pt;}
.x102_c00497{left:633.466667pt;}
.xab_c00497{left:637.200000pt;}
.x105_c00497{left:638.933333pt;}
.xea_c00497{left:640.400000pt;}
.xc1_c00497{left:642.933333pt;}
.xf2_c00497{left:649.200000pt;}
.xe9_c00497{left:650.266667pt;}
.xdf_c00497{left:653.466667pt;}
.x8c_c00497{left:655.066667pt;}
.xbe_c00497{left:657.333333pt;}
.xc2_c00497{left:658.266667pt;}
.xc6_c00497{left:659.200000pt;}
.xfa_c00497{left:661.066667pt;}
.x7_c00497{left:662.266667pt;}
.xeb_c00497{left:663.733333pt;}
.xee_c00497{left:671.066667pt;}
}





/* 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_c00498 {
    display:none;
  }
  .loading-indicator_c00498.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00498 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_c00498 { 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_c00498" -> "#page-container .classname_c00498")
 */
.pf_c00498 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00498 { /* 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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00498 { /* 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_c00498 { /* 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_c00498 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00498 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00498 {overflow:visible;}
  }
}
.c_c00498 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00498 { /* 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_c00498:after { /* webkit #35443 */
  content: '';
}
.t_c00498:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00498 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 */
}
.__c00498 { /* 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_c00498 { /* info for Javascript */
  display:none;
}
.l_c00498 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00498 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00498 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00498: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_c00498 {
    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_c00498.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00498.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_c00498 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00498{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00498;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.000000;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;}
.m39_c00498{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m32_c00498{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00498{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00498{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.mc0_c00498{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00498{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00498{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m99_c00498{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m7_c00498{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m28_c00498{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m53_c00498{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00498{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.md6_c00498{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00498{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00498{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.md0_c00498{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00498{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00498{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mac_c00498{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m65_c00498{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m95_c00498{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00498{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00498{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00498{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m40_c00498{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m69_c00498{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00498{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00498{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m91_c00498{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00498{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.m26_c00498{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.maa_c00498{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m74_c00498{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00498{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00498{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00498{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m49_c00498{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.m70_c00498{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m25_c00498{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m94_c00498{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m93_c00498{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m86_c00498{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m24_c00498{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m62_c00498{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00498{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00498{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m22_c00498{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00498{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00498{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00498{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00498{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00498{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m38_c00498{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00498{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00498{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00498{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00498{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00498{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00498{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00498{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00498{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00498{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m7d_c00498{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m48_c00498{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m46_c00498{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m75_c00498{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00498{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m77_c00498{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00498{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00498{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m52_c00498{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0_c00498{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m41_c00498{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00498{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb4_c00498{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m54_c00498{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m35_c00498{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00498{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00498{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m29_c00498{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00498{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m55_c00498{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mb2_c00498{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00498{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00498{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00498{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00498{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m63_c00498{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00498{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00498{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m89_c00498{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m85_c00498{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m51_c00498{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m47_c00498{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m59_c00498{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00498{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m92_c00498{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00498{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m33_c00498{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00498{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m80_c00498{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00498{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m45_c00498{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m67_c00498{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m58_c00498{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.mad_c00498{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m61_c00498{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00498{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m66_c00498{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m8e_c00498{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.mbe_c00498{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.md7_c00498{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00498{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m27_c00498{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m72_c00498{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m68_c00498{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m37_c00498{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m31_c00498{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00498{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00498{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.mba_c00498{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m71_c00498{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00498{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00498{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m18_c00498{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m60_c00498{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m21_c00498{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m19_c00498{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00498{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m23_c00498{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m79_c00498{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m83_c00498{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00498{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m34_c00498{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.maf_c00498{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mce_c00498{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m42_c00498{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.md4_c00498{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00498{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m20_c00498{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00498{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m90_c00498{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.md_c00498{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m88_c00498{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m50_c00498{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m97_c00498{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.m44_c00498{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m43_c00498{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00498{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00498{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00498{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m96_c00498{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00498{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m87_c00498{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00498{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m81_c00498{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m98_c00498{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00498{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.mca_c00498{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.md1_c00498{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00498{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m57_c00498{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.mae_c00498{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.ma5_c00498{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00498{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00498{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m6_c00498{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00498{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.md8_c00498{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00498{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.md5_c00498{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00498{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m17_c00498{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00498{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00498{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.md2_c00498{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.m56_c00498{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mbf_c00498{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00498{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00498{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m30_c00498{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00498{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.mab_c00498{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m84_c00498{transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338250,0.000000,0.000000,0.250000,0,0);}
.m82_c00498{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00498{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m78_c00498{transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00498{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00498{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m76_c00498{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00498{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m36_c00498{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.md3_c00498{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00498{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m73_c00498{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00498{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00498{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.m64_c00498{transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);}
.v0_c00498{vertical-align:0.000000px;}
.ls0_c00498{letter-spacing:0.000000px;}
.sc__c00498{text-shadow:none;}
.sc0_c00498{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__c00498{-webkit-text-stroke:0px transparent;}
.sc0_c00498{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00498{word-spacing:-3.751286px;}
.ws3_c00498{word-spacing:-1.245791px;}
.ws5_c00498{word-spacing:0.000000px;}
.ws0_c00498{word-spacing:1.375000px;}
.ws1_c00498{word-spacing:3.398390px;}
.ws4_c00498{word-spacing:9.515376px;}
.fc0_c00498{color:transparent;}
.fs3_c00498{font-size:36.000000px;}
.fs2_c00498{font-size:42.000000px;}
.fs1_c00498{font-size:48.000000px;}
.fs0_c00498{font-size:60.000000px;}
.y0_c00498{bottom:0.000000px;}
.y71_c00498{bottom:161.400000px;}
.y3d_c00498{bottom:162.750000px;}
.y70_c00498{bottom:175.800000px;}
.y3c_c00498{bottom:176.850000px;}
.y6f_c00498{bottom:190.200000px;}
.y3b_c00498{bottom:191.250000px;}
.y6e_c00498{bottom:204.900000px;}
.y3a_c00498{bottom:206.700000px;}
.y6d_c00498{bottom:219.600000px;}
.y39_c00498{bottom:221.400000px;}
.y6c_c00498{bottom:233.700000px;}
.y38_c00498{bottom:235.050000px;}
.y6b_c00498{bottom:249.000000px;}
.y37_c00498{bottom:250.200000px;}
.y6a_c00498{bottom:263.400000px;}
.y36_c00498{bottom:265.650000px;}
.y69_c00498{bottom:277.800000px;}
.y35_c00498{bottom:277.950000px;}
.y68_c00498{bottom:292.500000px;}
.y34_c00498{bottom:293.100000px;}
.y67_c00498{bottom:307.200000px;}
.y33_c00498{bottom:308.100000px;}
.y66_c00498{bottom:321.600000px;}
.y32_c00498{bottom:322.200000px;}
.y31_c00498{bottom:335.550000px;}
.y65_c00498{bottom:336.300000px;}
.y30_c00498{bottom:350.250000px;}
.y64_c00498{bottom:351.000000px;}
.y63_c00498{bottom:365.700000px;}
.y2f_c00498{bottom:368.250000px;}
.y62_c00498{bottom:379.800000px;}
.y61_c00498{bottom:394.200000px;}
.y2e_c00498{bottom:395.100000px;}
.y60_c00498{bottom:408.900000px;}
.y2d_c00498{bottom:409.800000px;}
.y5f_c00498{bottom:423.300000px;}
.y2c_c00498{bottom:424.200000px;}
.y5e_c00498{bottom:437.400000px;}
.y2b_c00498{bottom:438.900000px;}
.y5d_c00498{bottom:452.550000px;}
.y2a_c00498{bottom:453.000000px;}
.y5c_c00498{bottom:466.950000px;}
.y29_c00498{bottom:467.100000px;}
.y5b_c00498{bottom:481.350000px;}
.y28_c00498{bottom:481.500000px;}
.y5a_c00498{bottom:496.050000px;}
.y27_c00498{bottom:496.200000px;}
.y26_c00498{bottom:510.600000px;}
.y59_c00498{bottom:511.350000px;}
.y58_c00498{bottom:525.000000px;}
.y25_c00498{bottom:525.300000px;}
.y57_c00498{bottom:539.700000px;}
.y24_c00498{bottom:540.000000px;}
.y23_c00498{bottom:554.400000px;}
.y22_c00498{bottom:568.800000px;}
.y56_c00498{bottom:583.200000px;}
.y21_c00498{bottom:583.650000px;}
.y55_c00498{bottom:596.850000px;}
.y20_c00498{bottom:598.050000px;}
.y54_c00498{bottom:612.000000px;}
.y1f_c00498{bottom:612.750000px;}
.y53_c00498{bottom:626.400000px;}
.y1e_c00498{bottom:627.150000px;}
.y52_c00498{bottom:641.100000px;}
.y1d_c00498{bottom:641.700000px;}
.y51_c00498{bottom:655.500000px;}
.y1c_c00498{bottom:656.400000px;}
.y50_c00498{bottom:670.200000px;}
.y1b_c00498{bottom:670.800000px;}
.y4f_c00498{bottom:684.900000px;}
.y1a_c00498{bottom:685.200000px;}
.y4e_c00498{bottom:699.300000px;}
.y19_c00498{bottom:699.900000px;}
.y4d_c00498{bottom:714.000000px;}
.y18_c00498{bottom:714.300000px;}
.y4c_c00498{bottom:728.400000px;}
.y17_c00498{bottom:728.700000px;}
.y4b_c00498{bottom:742.800000px;}
.y16_c00498{bottom:743.100000px;}
.y4a_c00498{bottom:757.500000px;}
.y15_c00498{bottom:757.800000px;}
.y49_c00498{bottom:772.200000px;}
.y14_c00498{bottom:772.500000px;}
.y48_c00498{bottom:786.600000px;}
.y13_c00498{bottom:786.900000px;}
.y12_c00498{bottom:801.300000px;}
.y47_c00498{bottom:815.700000px;}
.y11_c00498{bottom:816.150000px;}
.y46_c00498{bottom:830.100000px;}
.y10_c00498{bottom:830.550000px;}
.yf_c00498{bottom:844.950000px;}
.ye_c00498{bottom:859.650000px;}
.yd_c00498{bottom:874.050000px;}
.y45_c00498{bottom:888.450000px;}
.yc_c00498{bottom:888.900000px;}
.y44_c00498{bottom:902.850000px;}
.yb_c00498{bottom:903.150000px;}
.ya_c00498{bottom:917.550000px;}
.y9_c00498{bottom:932.700000px;}
.y43_c00498{bottom:946.350000px;}
.y8_c00498{bottom:947.100000px;}
.y42_c00498{bottom:960.750000px;}
.y7_c00498{bottom:962.250000px;}
.y41_c00498{bottom:975.900000px;}
.y6_c00498{bottom:976.350000px;}
.y40_c00498{bottom:990.300000px;}
.y5_c00498{bottom:990.750000px;}
.y3f_c00498{bottom:1004.850000px;}
.y4_c00498{bottom:1005.450000px;}
.y3e_c00498{bottom:1019.550000px;}
.y3_c00498{bottom:1020.300000px;}
.y2_c00498{bottom:1054.200000px;}
.y1_c00498{bottom:1054.500000px;}
.h5_c00498{height:36.000000px;}
.h4_c00498{height:42.000000px;}
.h3_c00498{height:48.000000px;}
.h2_c00498{height:60.000000px;}
.h1_c00498{height:1164.000000px;}
.h0_c00498{height:1164.239960px;}
.w0_c00498{width:920.160094px;}
.w1_c00498{width:920.250000px;}
.x0_c00498{left:0.000000px;}
.x73_c00498{left:146.100000px;}
.x3_c00498{left:147.600000px;}
.x1_c00498{left:149.400000px;}
.x3c_c00498{left:182.100000px;}
.xf_c00498{left:183.300000px;}
.x4_c00498{left:192.300000px;}
.x40_c00498{left:193.350000px;}
.x8_c00498{left:194.700000px;}
.x76_c00498{left:197.850000px;}
.x79_c00498{left:199.050000px;}
.x7c_c00498{left:201.000000px;}
.x53_c00498{left:205.500000px;}
.x59_c00498{left:209.550000px;}
.x7b_c00498{left:212.850000px;}
.x5_c00498{left:214.650000px;}
.x9_c00498{left:217.350000px;}
.x41_c00498{left:220.050000px;}
.x6e_c00498{left:222.600000px;}
.x2a_c00498{left:226.050000px;}
.x45_c00498{left:228.600000px;}
.x82_c00498{left:229.800000px;}
.x32_c00498{left:231.900000px;}
.x54_c00498{left:233.550000px;}
.x3a_c00498{left:235.500000px;}
.x2e_c00498{left:236.550000px;}
.x10_c00498{left:237.600000px;}
.x33_c00498{left:239.400000px;}
.x34_c00498{left:241.200000px;}
.x24_c00498{left:243.150000px;}
.x13_c00498{left:244.800000px;}
.x60_c00498{left:246.900000px;}
.x77_c00498{left:247.950000px;}
.x1d_c00498{left:250.050000px;}
.x63_c00498{left:252.450000px;}
.x18_c00498{left:253.800000px;}
.x2c_c00498{left:255.300000px;}
.x7f_c00498{left:256.800000px;}
.x7e_c00498{left:257.850000px;}
.x2b_c00498{left:259.500000px;}
.x6f_c00498{left:261.150000px;}
.x46_c00498{left:263.100000px;}
.xa_c00498{left:264.150000px;}
.x74_c00498{left:267.450000px;}
.x25_c00498{left:269.100000px;}
.x6b_c00498{left:270.300000px;}
.x11_c00498{left:271.800000px;}
.x48_c00498{left:273.300000px;}
.x1e_c00498{left:275.250000px;}
.xc_c00498{left:276.450000px;}
.x35_c00498{left:279.750000px;}
.x2f_c00498{left:280.800000px;}
.x14_c00498{left:283.050000px;}
.xd_c00498{left:285.150000px;}
.x6_c00498{left:288.150000px;}
.x19_c00498{left:289.800000px;}
.x4b_c00498{left:291.750000px;}
.x5a_c00498{left:293.100000px;}
.x78_c00498{left:295.800000px;}
.x70_c00498{left:297.000000px;}
.x3d_c00498{left:298.650000px;}
.x56_c00498{left:300.450000px;}
.x2d_c00498{left:301.800000px;}
.xb_c00498{left:303.000000px;}
.x1f_c00498{left:305.100000px;}
.x50_c00498{left:307.650000px;}
.x30_c00498{left:309.300000px;}
.x5e_c00498{left:311.550000px;}
.x36_c00498{left:313.650000px;}
.x4c_c00498{left:315.450000px;}
.x20_c00498{left:316.950000px;}
.xe_c00498{left:324.450000px;}
.x7_c00498{left:327.450000px;}
.x57_c00498{left:331.800000px;}
.x12_c00498{left:333.750000px;}
.x37_c00498{left:334.950000px;}
.x47_c00498{left:336.450000px;}
.x61_c00498{left:339.000000px;}
.x71_c00498{left:342.000000px;}
.x26_c00498{left:345.150000px;}
.x5b_c00498{left:347.400000px;}
.x1a_c00498{left:349.500000px;}
.x3f_c00498{left:351.750000px;}
.x68_c00498{left:353.100000px;}
.x80_c00498{left:354.450000px;}
.x62_c00498{left:355.500000px;}
.x31_c00498{left:356.850000px;}
.x4d_c00498{left:358.350000px;}
.x43_c00498{left:359.850000px;}
.x6c_c00498{left:363.150000px;}
.x21_c00498{left:366.300000px;}
.x1b_c00498{left:367.500000px;}
.x3e_c00498{left:369.450000px;}
.x66_c00498{left:371.550000px;}
.x15_c00498{left:374.550000px;}
.x49_c00498{left:375.600000px;}
.x5f_c00498{left:377.100000px;}
.x69_c00498{left:379.050000px;}
.x52_c00498{left:381.900000px;}
.x3b_c00498{left:383.250000px;}
.x81_c00498{left:386.100000px;}
.x27_c00498{left:387.300000px;}
.x75_c00498{left:390.450000px;}
.x38_c00498{left:391.800000px;}
.x4e_c00498{left:393.600000px;}
.x5c_c00498{left:396.000000px;}
.x16_c00498{left:399.750000px;}
.x44_c00498{left:401.250000px;}
.x22_c00498{left:403.350000px;}
.x64_c00498{left:404.400000px;}
.x7a_c00498{left:408.300000px;}
.x5d_c00498{left:412.500000px;}
.x55_c00498{left:413.550000px;}
.x1c_c00498{left:415.350000px;}
.x17_c00498{left:418.800000px;}
.x51_c00498{left:423.900000px;}
.x28_c00498{left:426.900000px;}
.x67_c00498{left:428.850000px;}
.x39_c00498{left:430.650000px;}
.x4a_c00498{left:433.200000px;}
.x42_c00498{left:435.000000px;}
.x7d_c00498{left:436.050000px;}
.x72_c00498{left:437.700000px;}
.x58_c00498{left:439.050000px;}
.x23_c00498{left:442.950000px;}
.x4f_c00498{left:444.750000px;}
.x6a_c00498{left:447.150000px;}
.x65_c00498{left:449.400000px;}
.x2_c00498{left:453.300000px;}
.x6d_c00498{left:455.400000px;}
.x29_c00498{left:458.550000px;}
.xb2_c00498{left:491.550000px;}
.x83_c00498{left:492.900000px;}
.xc6_c00498{left:523.950000px;}
.xd4_c00498{left:526.500000px;}
.xd7_c00498{left:527.700000px;}
.xcd_c00498{left:537.000000px;}
.xd2_c00498{left:538.050000px;}
.xb3_c00498{left:540.150000px;}
.xd8_c00498{left:544.200000px;}
.xb8_c00498{left:550.050000px;}
.xdb_c00498{left:552.450000px;}
.x108_c00498{left:558.750000px;}
.x99_c00498{left:561.750000px;}
.x84_c00498{left:562.800000px;}
.xd9_c00498{left:564.000000px;}
.xf4_c00498{left:565.050000px;}
.xc7_c00498{left:566.400000px;}
.xce_c00498{left:569.400000px;}
.x9f_c00498{left:572.850000px;}
.x91_c00498{left:574.350000px;}
.xd3_c00498{left:575.850000px;}
.xfb_c00498{left:577.050000px;}
.xd5_c00498{left:578.700000px;}
.xa8_c00498{left:582.150000px;}
.xae_c00498{left:583.200000px;}
.x85_c00498{left:585.150000px;}
.xc8_c00498{left:588.300000px;}
.x97_c00498{left:590.100000px;}
.xb4_c00498{left:592.350000px;}
.xed_c00498{left:594.000000px;}
.xbc_c00498{left:596.250000px;}
.xa0_c00498{left:600.900000px;}
.xa4_c00498{left:601.950000px;}
.x8b_c00498{left:603.300000px;}
.xaf_c00498{left:605.100000px;}
.x88_c00498{left:606.150000px;}
.x9a_c00498{left:607.500000px;}
.xe3_c00498{left:609.300000px;}
.xc2_c00498{left:610.500000px;}
.xd6_c00498{left:611.850000px;}
.xa9_c00498{left:613.500000px;}
.x86_c00498{left:615.450000px;}
.x92_c00498{left:617.550000px;}
.xdc_c00498{left:620.100000px;}
.xee_c00498{left:621.750000px;}
.xb9_c00498{left:623.100000px;}
.xaa_c00498{left:626.850000px;}
.x8c_c00498{left:628.200000px;}
.xe8_c00498{left:629.850000px;}
.xa5_c00498{left:631.800000px;}
.x105_c00498{left:632.850000px;}
.x9b_c00498{left:634.500000px;}
.x93_c00498{left:636.300000px;}
.xbd_c00498{left:637.650000px;}
.x8d_c00498{left:639.750000px;}
.xe2_c00498{left:641.700000px;}
.xf1_c00498{left:643.200000px;}
.xc3_c00498{left:644.700000px;}
.x87_c00498{left:647.850000px;}
.xc9_c00498{left:649.500000px;}
.x98_c00498{left:650.700000px;}
.xf7_c00498{left:652.650000px;}
.x107_c00498{left:655.500000px;}
.x89_c00498{left:656.550000px;}
.xe5_c00498{left:660.000000px;}
.xb0_c00498{left:662.250000px;}
.xfe_c00498{left:663.900000px;}
.x101_c00498{left:665.850000px;}
.xbe_c00498{left:668.250000px;}
.xab_c00498{left:670.800000px;}
.x8a_c00498{left:672.000000px;}
.x94_c00498{left:673.350000px;}
.xc4_c00498{left:675.600000px;}
.xf2_c00498{left:677.100000px;}
.xca_c00498{left:679.050000px;}
.xa1_c00498{left:680.850000px;}
.xfc_c00498{left:683.250000px;}
.xb5_c00498{left:684.900000px;}
.xcf_c00498{left:686.100000px;}
.xe9_c00498{left:687.150000px;}
.x102_c00498{left:689.250000px;}
.x95_c00498{left:692.400000px;}
.xe4_c00498{left:693.600000px;}
.xac_c00498{left:696.300000px;}
.xea_c00498{left:698.400000px;}
.xb1_c00498{left:702.600000px;}
.xef_c00498{left:705.000000px;}
.x8e_c00498{left:708.150000px;}
.xad_c00498{left:709.200000px;}
.xbf_c00498{left:710.700000px;}
.xf5_c00498{left:711.900000px;}
.xa2_c00498{left:712.950000px;}
.xda_c00498{left:714.450000px;}
.xba_c00498{left:716.100000px;}
.xdd_c00498{left:719.400000px;}
.x100_c00498{left:721.950000px;}
.xb6_c00498{left:724.500000px;}
.x104_c00498{left:725.850000px;}
.xf3_c00498{left:727.200000px;}
.xe1_c00498{left:728.400000px;}
.xfd_c00498{left:729.750000px;}
.xff_c00498{left:731.250000px;}
.xc5_c00498{left:733.500000px;}
.xdf_c00498{left:736.650000px;}
.x9c_c00498{left:739.200000px;}
.xf0_c00498{left:746.100000px;}
.xb7_c00498{left:747.150000px;}
.xf8_c00498{left:748.800000px;}
.xa6_c00498{left:750.750000px;}
.x8f_c00498{left:752.850000px;}
.xcb_c00498{left:755.400000px;}
.xeb_c00498{left:757.050000px;}
.xd0_c00498{left:758.700000px;}
.xbb_c00498{left:761.850000px;}
.xe6_c00498{left:764.100000px;}
.xf6_c00498{left:765.900000px;}
.xf9_c00498{left:767.250000px;}
.x103_c00498{left:769.200000px;}
.x90_c00498{left:772.350000px;}
.x9d_c00498{left:774.150000px;}
.xd1_c00498{left:776.400000px;}
.x96_c00498{left:779.100000px;}
.xc0_c00498{left:780.300000px;}
.xe7_c00498{left:783.150000px;}
.xfa_c00498{left:784.950000px;}
.xde_c00498{left:786.000000px;}
.xe0_c00498{left:787.800000px;}
.xa3_c00498{left:789.750000px;}
.xec_c00498{left:790.950000px;}
.xc1_c00498{left:796.200000px;}
.xcc_c00498{left:800.100000px;}
.x9e_c00498{left:802.200000px;}
.x106_c00498{left:803.400000px;}
.xa7_c00498{left:807.900000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws2_c00498{word-spacing:-3.334477pt;}
.ws3_c00498{word-spacing:-1.107370pt;}
.ws5_c00498{word-spacing:0.000000pt;}
.ws0_c00498{word-spacing:1.222222pt;}
.ws1_c00498{word-spacing:3.020791pt;}
.ws4_c00498{word-spacing:8.458112pt;}
.fs3_c00498{font-size:32.000000pt;}
.fs2_c00498{font-size:37.333333pt;}
.fs1_c00498{font-size:42.666667pt;}
.fs0_c00498{font-size:53.333333pt;}
.y0_c00498{bottom:0.000000pt;}
.y71_c00498{bottom:143.466667pt;}
.y3d_c00498{bottom:144.666667pt;}
.y70_c00498{bottom:156.266667pt;}
.y3c_c00498{bottom:157.200000pt;}
.y6f_c00498{bottom:169.066667pt;}
.y3b_c00498{bottom:170.000000pt;}
.y6e_c00498{bottom:182.133333pt;}
.y3a_c00498{bottom:183.733333pt;}
.y6d_c00498{bottom:195.200000pt;}
.y39_c00498{bottom:196.800000pt;}
.y6c_c00498{bottom:207.733333pt;}
.y38_c00498{bottom:208.933333pt;}
.y6b_c00498{bottom:221.333333pt;}
.y37_c00498{bottom:222.400000pt;}
.y6a_c00498{bottom:234.133333pt;}
.y36_c00498{bottom:236.133333pt;}
.y69_c00498{bottom:246.933333pt;}
.y35_c00498{bottom:247.066667pt;}
.y68_c00498{bottom:260.000000pt;}
.y34_c00498{bottom:260.533333pt;}
.y67_c00498{bottom:273.066667pt;}
.y33_c00498{bottom:273.866667pt;}
.y66_c00498{bottom:285.866667pt;}
.y32_c00498{bottom:286.400000pt;}
.y31_c00498{bottom:298.266667pt;}
.y65_c00498{bottom:298.933333pt;}
.y30_c00498{bottom:311.333333pt;}
.y64_c00498{bottom:312.000000pt;}
.y63_c00498{bottom:325.066667pt;}
.y2f_c00498{bottom:327.333333pt;}
.y62_c00498{bottom:337.600000pt;}
.y61_c00498{bottom:350.400000pt;}
.y2e_c00498{bottom:351.200000pt;}
.y60_c00498{bottom:363.466667pt;}
.y2d_c00498{bottom:364.266667pt;}
.y5f_c00498{bottom:376.266667pt;}
.y2c_c00498{bottom:377.066667pt;}
.y5e_c00498{bottom:388.800000pt;}
.y2b_c00498{bottom:390.133333pt;}
.y5d_c00498{bottom:402.266667pt;}
.y2a_c00498{bottom:402.666667pt;}
.y5c_c00498{bottom:415.066667pt;}
.y29_c00498{bottom:415.200000pt;}
.y5b_c00498{bottom:427.866667pt;}
.y28_c00498{bottom:428.000000pt;}
.y5a_c00498{bottom:440.933333pt;}
.y27_c00498{bottom:441.066667pt;}
.y26_c00498{bottom:453.866667pt;}
.y59_c00498{bottom:454.533333pt;}
.y58_c00498{bottom:466.666667pt;}
.y25_c00498{bottom:466.933333pt;}
.y57_c00498{bottom:479.733333pt;}
.y24_c00498{bottom:480.000000pt;}
.y23_c00498{bottom:492.800000pt;}
.y22_c00498{bottom:505.600000pt;}
.y56_c00498{bottom:518.400000pt;}
.y21_c00498{bottom:518.800000pt;}
.y55_c00498{bottom:530.533333pt;}
.y20_c00498{bottom:531.600000pt;}
.y54_c00498{bottom:544.000000pt;}
.y1f_c00498{bottom:544.666667pt;}
.y53_c00498{bottom:556.800000pt;}
.y1e_c00498{bottom:557.466667pt;}
.y52_c00498{bottom:569.866667pt;}
.y1d_c00498{bottom:570.400000pt;}
.y51_c00498{bottom:582.666667pt;}
.y1c_c00498{bottom:583.466667pt;}
.y50_c00498{bottom:595.733333pt;}
.y1b_c00498{bottom:596.266667pt;}
.y4f_c00498{bottom:608.800000pt;}
.y1a_c00498{bottom:609.066667pt;}
.y4e_c00498{bottom:621.600000pt;}
.y19_c00498{bottom:622.133333pt;}
.y4d_c00498{bottom:634.666667pt;}
.y18_c00498{bottom:634.933333pt;}
.y4c_c00498{bottom:647.466667pt;}
.y17_c00498{bottom:647.733333pt;}
.y4b_c00498{bottom:660.266667pt;}
.y16_c00498{bottom:660.533333pt;}
.y4a_c00498{bottom:673.333333pt;}
.y15_c00498{bottom:673.600000pt;}
.y49_c00498{bottom:686.400000pt;}
.y14_c00498{bottom:686.666667pt;}
.y48_c00498{bottom:699.200000pt;}
.y13_c00498{bottom:699.466667pt;}
.y12_c00498{bottom:712.266667pt;}
.y47_c00498{bottom:725.066667pt;}
.y11_c00498{bottom:725.466667pt;}
.y46_c00498{bottom:737.866667pt;}
.y10_c00498{bottom:738.266667pt;}
.yf_c00498{bottom:751.066667pt;}
.ye_c00498{bottom:764.133333pt;}
.yd_c00498{bottom:776.933333pt;}
.y45_c00498{bottom:789.733333pt;}
.yc_c00498{bottom:790.133333pt;}
.y44_c00498{bottom:802.533333pt;}
.yb_c00498{bottom:802.800000pt;}
.ya_c00498{bottom:815.600000pt;}
.y9_c00498{bottom:829.066667pt;}
.y43_c00498{bottom:841.200000pt;}
.y8_c00498{bottom:841.866667pt;}
.y42_c00498{bottom:854.000000pt;}
.y7_c00498{bottom:855.333333pt;}
.y41_c00498{bottom:867.466667pt;}
.y6_c00498{bottom:867.866667pt;}
.y40_c00498{bottom:880.266667pt;}
.y5_c00498{bottom:880.666667pt;}
.y3f_c00498{bottom:893.200000pt;}
.y4_c00498{bottom:893.733333pt;}
.y3e_c00498{bottom:906.266667pt;}
.y3_c00498{bottom:906.933333pt;}
.y2_c00498{bottom:937.066667pt;}
.y1_c00498{bottom:937.333333pt;}
.h5_c00498{height:32.000000pt;}
.h4_c00498{height:37.333333pt;}
.h3_c00498{height:42.666667pt;}
.h2_c00498{height:53.333333pt;}
.h1_c00498{height:1034.666667pt;}
.h0_c00498{height:1034.879964pt;}
.w0_c00498{width:817.920084pt;}
.w1_c00498{width:818.000000pt;}
.x0_c00498{left:0.000000pt;}
.x73_c00498{left:129.866667pt;}
.x3_c00498{left:131.200000pt;}
.x1_c00498{left:132.800000pt;}
.x3c_c00498{left:161.866667pt;}
.xf_c00498{left:162.933333pt;}
.x4_c00498{left:170.933333pt;}
.x40_c00498{left:171.866667pt;}
.x8_c00498{left:173.066667pt;}
.x76_c00498{left:175.866667pt;}
.x79_c00498{left:176.933333pt;}
.x7c_c00498{left:178.666667pt;}
.x53_c00498{left:182.666667pt;}
.x59_c00498{left:186.266667pt;}
.x7b_c00498{left:189.200000pt;}
.x5_c00498{left:190.800000pt;}
.x9_c00498{left:193.200000pt;}
.x41_c00498{left:195.600000pt;}
.x6e_c00498{left:197.866667pt;}
.x2a_c00498{left:200.933333pt;}
.x45_c00498{left:203.200000pt;}
.x82_c00498{left:204.266667pt;}
.x32_c00498{left:206.133333pt;}
.x54_c00498{left:207.600000pt;}
.x3a_c00498{left:209.333333pt;}
.x2e_c00498{left:210.266667pt;}
.x10_c00498{left:211.200000pt;}
.x33_c00498{left:212.800000pt;}
.x34_c00498{left:214.400000pt;}
.x24_c00498{left:216.133333pt;}
.x13_c00498{left:217.600000pt;}
.x60_c00498{left:219.466667pt;}
.x77_c00498{left:220.400000pt;}
.x1d_c00498{left:222.266667pt;}
.x63_c00498{left:224.400000pt;}
.x18_c00498{left:225.600000pt;}
.x2c_c00498{left:226.933333pt;}
.x7f_c00498{left:228.266667pt;}
.x7e_c00498{left:229.200000pt;}
.x2b_c00498{left:230.666667pt;}
.x6f_c00498{left:232.133333pt;}
.x46_c00498{left:233.866667pt;}
.xa_c00498{left:234.800000pt;}
.x74_c00498{left:237.733333pt;}
.x25_c00498{left:239.200000pt;}
.x6b_c00498{left:240.266667pt;}
.x11_c00498{left:241.600000pt;}
.x48_c00498{left:242.933333pt;}
.x1e_c00498{left:244.666667pt;}
.xc_c00498{left:245.733333pt;}
.x35_c00498{left:248.666667pt;}
.x2f_c00498{left:249.600000pt;}
.x14_c00498{left:251.600000pt;}
.xd_c00498{left:253.466667pt;}
.x6_c00498{left:256.133333pt;}
.x19_c00498{left:257.600000pt;}
.x4b_c00498{left:259.333333pt;}
.x5a_c00498{left:260.533333pt;}
.x78_c00498{left:262.933333pt;}
.x70_c00498{left:264.000000pt;}
.x3d_c00498{left:265.466667pt;}
.x56_c00498{left:267.066667pt;}
.x2d_c00498{left:268.266667pt;}
.xb_c00498{left:269.333333pt;}
.x1f_c00498{left:271.200000pt;}
.x50_c00498{left:273.466667pt;}
.x30_c00498{left:274.933333pt;}
.x5e_c00498{left:276.933333pt;}
.x36_c00498{left:278.800000pt;}
.x4c_c00498{left:280.400000pt;}
.x20_c00498{left:281.733333pt;}
.xe_c00498{left:288.400000pt;}
.x7_c00498{left:291.066667pt;}
.x57_c00498{left:294.933333pt;}
.x12_c00498{left:296.666667pt;}
.x37_c00498{left:297.733333pt;}
.x47_c00498{left:299.066667pt;}
.x61_c00498{left:301.333333pt;}
.x71_c00498{left:304.000000pt;}
.x26_c00498{left:306.800000pt;}
.x5b_c00498{left:308.800000pt;}
.x1a_c00498{left:310.666667pt;}
.x3f_c00498{left:312.666667pt;}
.x68_c00498{left:313.866667pt;}
.x80_c00498{left:315.066667pt;}
.x62_c00498{left:316.000000pt;}
.x31_c00498{left:317.200000pt;}
.x4d_c00498{left:318.533333pt;}
.x43_c00498{left:319.866667pt;}
.x6c_c00498{left:322.800000pt;}
.x21_c00498{left:325.600000pt;}
.x1b_c00498{left:326.666667pt;}
.x3e_c00498{left:328.400000pt;}
.x66_c00498{left:330.266667pt;}
.x15_c00498{left:332.933333pt;}
.x49_c00498{left:333.866667pt;}
.x5f_c00498{left:335.200000pt;}
.x69_c00498{left:336.933333pt;}
.x52_c00498{left:339.466667pt;}
.x3b_c00498{left:340.666667pt;}
.x81_c00498{left:343.200000pt;}
.x27_c00498{left:344.266667pt;}
.x75_c00498{left:347.066667pt;}
.x38_c00498{left:348.266667pt;}
.x4e_c00498{left:349.866667pt;}
.x5c_c00498{left:352.000000pt;}
.x16_c00498{left:355.333333pt;}
.x44_c00498{left:356.666667pt;}
.x22_c00498{left:358.533333pt;}
.x64_c00498{left:359.466667pt;}
.x7a_c00498{left:362.933333pt;}
.x5d_c00498{left:366.666667pt;}
.x55_c00498{left:367.600000pt;}
.x1c_c00498{left:369.200000pt;}
.x17_c00498{left:372.266667pt;}
.x51_c00498{left:376.800000pt;}
.x28_c00498{left:379.466667pt;}
.x67_c00498{left:381.200000pt;}
.x39_c00498{left:382.800000pt;}
.x4a_c00498{left:385.066667pt;}
.x42_c00498{left:386.666667pt;}
.x7d_c00498{left:387.600000pt;}
.x72_c00498{left:389.066667pt;}
.x58_c00498{left:390.266667pt;}
.x23_c00498{left:393.733333pt;}
.x4f_c00498{left:395.333333pt;}
.x6a_c00498{left:397.466667pt;}
.x65_c00498{left:399.466667pt;}
.x2_c00498{left:402.933333pt;}
.x6d_c00498{left:404.800000pt;}
.x29_c00498{left:407.600000pt;}
.xb2_c00498{left:436.933333pt;}
.x83_c00498{left:438.133333pt;}
.xc6_c00498{left:465.733333pt;}
.xd4_c00498{left:468.000000pt;}
.xd7_c00498{left:469.066667pt;}
.xcd_c00498{left:477.333333pt;}
.xd2_c00498{left:478.266667pt;}
.xb3_c00498{left:480.133333pt;}
.xd8_c00498{left:483.733333pt;}
.xb8_c00498{left:488.933333pt;}
.xdb_c00498{left:491.066667pt;}
.x108_c00498{left:496.666667pt;}
.x99_c00498{left:499.333333pt;}
.x84_c00498{left:500.266667pt;}
.xd9_c00498{left:501.333333pt;}
.xf4_c00498{left:502.266667pt;}
.xc7_c00498{left:503.466667pt;}
.xce_c00498{left:506.133333pt;}
.x9f_c00498{left:509.200000pt;}
.x91_c00498{left:510.533333pt;}
.xd3_c00498{left:511.866667pt;}
.xfb_c00498{left:512.933333pt;}
.xd5_c00498{left:514.400000pt;}
.xa8_c00498{left:517.466667pt;}
.xae_c00498{left:518.400000pt;}
.x85_c00498{left:520.133333pt;}
.xc8_c00498{left:522.933333pt;}
.x97_c00498{left:524.533333pt;}
.xb4_c00498{left:526.533333pt;}
.xed_c00498{left:528.000000pt;}
.xbc_c00498{left:530.000000pt;}
.xa0_c00498{left:534.133333pt;}
.xa4_c00498{left:535.066667pt;}
.x8b_c00498{left:536.266667pt;}
.xaf_c00498{left:537.866667pt;}
.x88_c00498{left:538.800000pt;}
.x9a_c00498{left:540.000000pt;}
.xe3_c00498{left:541.600000pt;}
.xc2_c00498{left:542.666667pt;}
.xd6_c00498{left:543.866667pt;}
.xa9_c00498{left:545.333333pt;}
.x86_c00498{left:547.066667pt;}
.x92_c00498{left:548.933333pt;}
.xdc_c00498{left:551.200000pt;}
.xee_c00498{left:552.666667pt;}
.xb9_c00498{left:553.866667pt;}
.xaa_c00498{left:557.200000pt;}
.x8c_c00498{left:558.400000pt;}
.xe8_c00498{left:559.866667pt;}
.xa5_c00498{left:561.600000pt;}
.x105_c00498{left:562.533333pt;}
.x9b_c00498{left:564.000000pt;}
.x93_c00498{left:565.600000pt;}
.xbd_c00498{left:566.800000pt;}
.x8d_c00498{left:568.666667pt;}
.xe2_c00498{left:570.400000pt;}
.xf1_c00498{left:571.733333pt;}
.xc3_c00498{left:573.066667pt;}
.x87_c00498{left:575.866667pt;}
.xc9_c00498{left:577.333333pt;}
.x98_c00498{left:578.400000pt;}
.xf7_c00498{left:580.133333pt;}
.x107_c00498{left:582.666667pt;}
.x89_c00498{left:583.600000pt;}
.xe5_c00498{left:586.666667pt;}
.xb0_c00498{left:588.666667pt;}
.xfe_c00498{left:590.133333pt;}
.x101_c00498{left:591.866667pt;}
.xbe_c00498{left:594.000000pt;}
.xab_c00498{left:596.266667pt;}
.x8a_c00498{left:597.333333pt;}
.x94_c00498{left:598.533333pt;}
.xc4_c00498{left:600.533333pt;}
.xf2_c00498{left:601.866667pt;}
.xca_c00498{left:603.600000pt;}
.xa1_c00498{left:605.200000pt;}
.xfc_c00498{left:607.333333pt;}
.xb5_c00498{left:608.800000pt;}
.xcf_c00498{left:609.866667pt;}
.xe9_c00498{left:610.800000pt;}
.x102_c00498{left:612.666667pt;}
.x95_c00498{left:615.466667pt;}
.xe4_c00498{left:616.533333pt;}
.xac_c00498{left:618.933333pt;}
.xea_c00498{left:620.800000pt;}
.xb1_c00498{left:624.533333pt;}
.xef_c00498{left:626.666667pt;}
.x8e_c00498{left:629.466667pt;}
.xad_c00498{left:630.400000pt;}
.xbf_c00498{left:631.733333pt;}
.xf5_c00498{left:632.800000pt;}
.xa2_c00498{left:633.733333pt;}
.xda_c00498{left:635.066667pt;}
.xba_c00498{left:636.533333pt;}
.xdd_c00498{left:639.466667pt;}
.x100_c00498{left:641.733333pt;}
.xb6_c00498{left:644.000000pt;}
.x104_c00498{left:645.200000pt;}
.xf3_c00498{left:646.400000pt;}
.xe1_c00498{left:647.466667pt;}
.xfd_c00498{left:648.666667pt;}
.xff_c00498{left:650.000000pt;}
.xc5_c00498{left:652.000000pt;}
.xdf_c00498{left:654.800000pt;}
.x9c_c00498{left:657.066667pt;}
.xf0_c00498{left:663.200000pt;}
.xb7_c00498{left:664.133333pt;}
.xf8_c00498{left:665.600000pt;}
.xa6_c00498{left:667.333333pt;}
.x8f_c00498{left:669.200000pt;}
.xcb_c00498{left:671.466667pt;}
.xeb_c00498{left:672.933333pt;}
.xd0_c00498{left:674.400000pt;}
.xbb_c00498{left:677.200000pt;}
.xe6_c00498{left:679.200000pt;}
.xf6_c00498{left:680.800000pt;}
.xf9_c00498{left:682.000000pt;}
.x103_c00498{left:683.733333pt;}
.x90_c00498{left:686.533333pt;}
.x9d_c00498{left:688.133333pt;}
.xd1_c00498{left:690.133333pt;}
.x96_c00498{left:692.533333pt;}
.xc0_c00498{left:693.600000pt;}
.xe7_c00498{left:696.133333pt;}
.xfa_c00498{left:697.733333pt;}
.xde_c00498{left:698.666667pt;}
.xe0_c00498{left:700.266667pt;}
.xa3_c00498{left:702.000000pt;}
.xec_c00498{left:703.066667pt;}
.xc1_c00498{left:707.733333pt;}
.xcc_c00498{left:711.200000pt;}
.x9e_c00498{left:713.066667pt;}
.x106_c00498{left:714.133333pt;}
.xa7_c00498{left:718.133333pt;}
}





/* 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_c00499 {
    display:none;
  }
  .loading-indicator_c00499.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00499 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_c00499 { 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_c00499" -> "#page-container .classname_c00499")
 */
.pf_c00499 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00499 { /* 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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00499 { /* 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_c00499 { /* 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_c00499 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00499 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00499 {overflow:visible;}
  }
}
.c_c00499 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00499 { /* 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_c00499:after { /* webkit #35443 */
  content: '';
}
.t_c00499:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00499 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 */
}
.__c00499 { /* 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_c00499 { /* info for Javascript */
  display:none;
}
.l_c00499 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00499 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00499 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00499: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_c00499 {
    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_c00499.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00499.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_c00499 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00499{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_9de17bff1bb698325fd26c8a.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.000000;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;}
.m4a_c00499{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m63_c00499{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m84_c00499{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00499{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m45_c00499{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00499{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00499{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.mc_c00499{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m46_c00499{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c00499{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00499{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00499{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m37_c00499{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00499{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00499{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00499{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m64_c00499{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m8a_c00499{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.md_c00499{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m18_c00499{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00499{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m6_c00499{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00499{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00499{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00499{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00499{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00499{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m26_c00499{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m47_c00499{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m19_c00499{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m41_c00499{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m91_c00499{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m68_c00499{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m73_c00499{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00499{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00499{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00499{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m38_c00499{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m83_c00499{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m25_c00499{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00499{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m23_c00499{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00499{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m74_c00499{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m8_c00499{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00499{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.m72_c00499{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00499{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m7_c00499{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00499{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m75_c00499{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m92_c00499{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00499{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m56_c00499{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00499{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m34_c00499{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.m44_c00499{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00499{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m33_c00499{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17_c00499{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m89_c00499{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m57_c00499{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m48_c00499{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m10_c00499{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00499{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00499{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m86_c00499{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00499{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.mad_c00499{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3a_c00499{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m76_c00499{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m77_c00499{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m95_c00499{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00499{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00499{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00499{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m3d_c00499{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m12_c00499{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m36_c00499{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00499{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.ma8_c00499{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.mae_c00499{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00499{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m70_c00499{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m67_c00499{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00499{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m24_c00499{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.mb_c00499{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m32_c00499{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00499{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.m55_c00499{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.mf_c00499{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m85_c00499{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00499{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m82_c00499{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m30_c00499{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m81_c00499{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00499{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00499{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m51_c00499{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m61_c00499{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.m40_c00499{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m43_c00499{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00499{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.m97_c00499{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m39_c00499{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00499{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00499{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m58_c00499{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.me_c00499{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m52_c00499{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.m88_c00499{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m53_c00499{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00499{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00499{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00499{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m80_c00499{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m78_c00499{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m27_c00499{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00499{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.maf_c00499{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00499{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m96_c00499{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m99_c00499{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m11_c00499{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00499{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m59_c00499{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m69_c00499{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00499{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m79_c00499{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00499{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.m54_c00499{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m93_c00499{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m60_c00499{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.m94_c00499{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00499{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.m22_c00499{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m66_c00499{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00499{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00499{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.m87_c00499{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.m62_c00499{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00499{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m6e_c00499{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00499{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00499{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m13_c00499{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00499{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m50_c00499{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00499{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m14_c00499{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m3f_c00499{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m20_c00499{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m71_c00499{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.maa_c00499{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m49_c00499{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m16_c00499{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m3_c00499{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m31_c00499{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00499{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m98_c00499{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.mab_c00499{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00499{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00499{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00499{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m90_c00499{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m65_c00499{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m42_c00499{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00499{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.mac_c00499{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00499{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00499{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00499{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m29_c00499{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m2_c00499{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m15_c00499{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.mb7_c00499{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m28_c00499{transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.379000,0.000000,0.000000,0.250000,0,0);}
.m35_c00499{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00499{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{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__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4_c00499{word-spacing:0.000000px;}
.ws1_c00499{word-spacing:2.880466px;}
.ws2_c00499{word-spacing:3.351835px;}
.ws0_c00499{word-spacing:7.578947px;}
.ws3_c00499{word-spacing:13.880466px;}
.fc0_c00499{color:transparent;}
.fs2_c00499{font-size:36.000000px;}
.fs0_c00499{font-size:42.000000px;}
.fs1_c00499{font-size:66.000000px;}
.y0_c00499{bottom:0.000000px;}
.y6d_c00499{bottom:144.450000px;}
.y39_c00499{bottom:152.250000px;}
.y6c_c00499{bottom:159.150000px;}
.y38_c00499{bottom:167.100000px;}
.y6b_c00499{bottom:173.550000px;}
.y37_c00499{bottom:181.350000px;}
.y6a_c00499{bottom:187.950000px;}
.y36_c00499{bottom:195.750000px;}
.y69_c00499{bottom:202.350000px;}
.y35_c00499{bottom:210.150000px;}
.y68_c00499{bottom:217.050000px;}
.y34_c00499{bottom:224.550000px;}
.y67_c00499{bottom:231.450000px;}
.y33_c00499{bottom:240.450000px;}
.y66_c00499{bottom:246.600000px;}
.y32_c00499{bottom:253.050000px;}
.y65_c00499{bottom:261.000000px;}
.y31_c00499{bottom:267.750000px;}
.y64_c00499{bottom:275.400000px;}
.y30_c00499{bottom:281.850000px;}
.y63_c00499{bottom:290.100000px;}
.y2f_c00499{bottom:297.300000px;}
.y62_c00499{bottom:304.200000px;}
.y2e_c00499{bottom:311.700000px;}
.y61_c00499{bottom:318.900000px;}
.y2d_c00499{bottom:326.100000px;}
.y60_c00499{bottom:336.300000px;}
.y2c_c00499{bottom:340.500000px;}
.y2b_c00499{bottom:354.900000px;}
.y5f_c00499{bottom:356.100000px;}
.y2a_c00499{bottom:369.750000px;}
.y5e_c00499{bottom:370.500000px;}
.y29_c00499{bottom:384.450000px;}
.y5d_c00499{bottom:384.900000px;}
.y28_c00499{bottom:399.150000px;}
.y5c_c00499{bottom:399.300000px;}
.y27_c00499{bottom:413.250000px;}
.y5b_c00499{bottom:413.550000px;}
.y26_c00499{bottom:427.350000px;}
.y5a_c00499{bottom:427.650000px;}
.y25_c00499{bottom:442.050000px;}
.y59_c00499{bottom:442.350000px;}
.y58_c00499{bottom:456.750000px;}
.y24_c00499{bottom:457.200000px;}
.y23_c00499{bottom:470.850000px;}
.y57_c00499{bottom:485.250000px;}
.y22_c00499{bottom:485.700000px;}
.y21_c00499{bottom:500.100000px;}
.y56_c00499{bottom:500.400000px;}
.y20_c00499{bottom:514.800000px;}
.y55_c00499{bottom:515.100000px;}
.y1f_c00499{bottom:529.200000px;}
.y54_c00499{bottom:529.800000px;}
.y1e_c00499{bottom:543.600000px;}
.y53_c00499{bottom:544.200000px;}
.y1d_c00499{bottom:558.000000px;}
.y52_c00499{bottom:558.300000px;}
.y1c_c00499{bottom:572.700000px;}
.y51_c00499{bottom:573.450000px;}
.y1b_c00499{bottom:586.800000px;}
.y1a_c00499{bottom:601.200000px;}
.y50_c00499{bottom:601.950000px;}
.y19_c00499{bottom:615.900000px;}
.y4f_c00499{bottom:616.050000px;}
.y18_c00499{bottom:630.000000px;}
.y4e_c00499{bottom:630.450000px;}
.y4d_c00499{bottom:644.850000px;}
.y17_c00499{bottom:645.150000px;}
.y16_c00499{bottom:659.550000px;}
.y4c_c00499{bottom:674.250000px;}
.y15_c00499{bottom:676.500000px;}
.y14_c00499{bottom:688.350000px;}
.y13_c00499{bottom:702.750000px;}
.y4b_c00499{bottom:703.050000px;}
.y12_c00499{bottom:717.150000px;}
.y4a_c00499{bottom:731.550000px;}
.y11_c00499{bottom:731.850000px;}
.y10_c00499{bottom:745.950000px;}
.yf_c00499{bottom:760.350000px;}
.y49_c00499{bottom:760.650000px;}
.y48_c00499{bottom:775.350000px;}
.ye_c00499{bottom:775.500000px;}
.y47_c00499{bottom:789.450000px;}
.yd_c00499{bottom:792.750000px;}
.y46_c00499{bottom:804.900000px;}
.yc_c00499{bottom:812.850000px;}
.y45_c00499{bottom:822.300000px;}
.yb_c00499{bottom:834.450000px;}
.y44_c00499{bottom:842.400000px;}
.y43_c00499{bottom:856.500000px;}
.y42_c00499{bottom:886.650000px;}
.y41_c00499{bottom:901.050000px;}
.ya_c00499{bottom:903.750000px;}
.y40_c00499{bottom:915.450000px;}
.y9_c00499{bottom:918.450000px;}
.y3f_c00499{bottom:929.850000px;}
.y8_c00499{bottom:932.850000px;}
.y3e_c00499{bottom:945.000000px;}
.y7_c00499{bottom:947.550000px;}
.y3d_c00499{bottom:958.350000px;}
.y6_c00499{bottom:961.950000px;}
.y3c_c00499{bottom:973.050000px;}
.y5_c00499{bottom:976.350000px;}
.y3b_c00499{bottom:987.450000px;}
.y4_c00499{bottom:990.750000px;}
.y3a_c00499{bottom:1002.900000px;}
.y3_c00499{bottom:1005.450000px;}
.y2_c00499{bottom:1035.000000px;}
.y1_c00499{bottom:1040.100000px;}
.h4_c00499{height:36.000000px;}
.h2_c00499{height:42.000000px;}
.h3_c00499{height:66.000000px;}
.h1_c00499{height:1164.000000px;}
.h0_c00499{height:1164.239960px;}
.w0_c00499{width:920.160094px;}
.w1_c00499{width:920.250000px;}
.x0_c00499{left:0.000000px;}
.x81_c00499{left:94.350000px;}
.x33_c00499{left:100.800000px;}
.x8_c00499{left:102.900000px;}
.x7b_c00499{left:130.350000px;}
.x76_c00499{left:132.900000px;}
.x47_c00499{left:134.250000px;}
.x6a_c00499{left:135.750000px;}
.x18_c00499{left:136.800000px;}
.x37_c00499{left:138.300000px;}
.x6f_c00499{left:145.050000px;}
.x4e_c00499{left:146.100000px;}
.x1e_c00499{left:147.450000px;}
.x42_c00499{left:148.650000px;}
.x48_c00499{left:156.600000px;}
.x75_c00499{left:158.850000px;}
.x8b_c00499{left:161.100000px;}
.x9_c00499{left:162.600000px;}
.x25_c00499{left:164.700000px;}
.x4f_c00499{left:166.200000px;}
.x74_c00499{left:171.150000px;}
.x82_c00499{left:173.550000px;}
.x11_c00499{left:175.350000px;}
.x2a_c00499{left:176.550000px;}
.x26_c00499{left:177.600000px;}
.x43_c00499{left:179.250000px;}
.x49_c00499{left:181.500000px;}
.x88_c00499{left:183.750000px;}
.x1f_c00499{left:185.550000px;}
.x84_c00499{left:187.350000px;}
.x2f_c00499{left:188.400000px;}
.x6b_c00499{left:189.450000px;}
.x5a_c00499{left:190.800000px;}
.x3b_c00499{left:195.300000px;}
.x34_c00499{left:196.950000px;}
.x6d_c00499{left:199.350000px;}
.xa_c00499{left:201.900000px;}
.x8c_c00499{left:204.300000px;}
.x30_c00499{left:205.350000px;}
.x50_c00499{left:207.900000px;}
.x51_c00499{left:208.950000px;}
.x54_c00499{left:210.900000px;}
.x5f_c00499{left:212.700000px;}
.x19_c00499{left:214.800000px;}
.x62_c00499{left:216.450000px;}
.x27_c00499{left:218.700000px;}
.x70_c00499{left:219.900000px;}
.x3c_c00499{left:221.550000px;}
.xb_c00499{left:223.500000px;}
.x16_c00499{left:226.200000px;}
.x32_c00499{left:227.550000px;}
.x77_c00499{left:230.550000px;}
.x28_c00499{left:232.050000px;}
.x3d_c00499{left:234.150000px;}
.xc_c00499{left:236.100000px;}
.x35_c00499{left:241.200000px;}
.x5d_c00499{left:243.000000px;}
.x85_c00499{left:244.500000px;}
.x4a_c00499{left:246.300000px;}
.x31_c00499{left:250.650000px;}
.x38_c00499{left:252.000000px;}
.x12_c00499{left:254.550000px;}
.x5b_c00499{left:255.900000px;}
.x20_c00499{left:259.050000px;}
.x44_c00499{left:262.650000px;}
.x2b_c00499{left:265.200000px;}
.x6c_c00499{left:266.850000px;}
.x17_c00499{left:267.900000px;}
.x13_c00499{left:269.700000px;}
.x3e_c00499{left:271.200000px;}
.x60_c00499{left:272.700000px;}
.x7d_c00499{left:273.750000px;}
.x45_c00499{left:276.750000px;}
.x1a_c00499{left:279.600000px;}
.x29_c00499{left:280.950000px;}
.x6e_c00499{left:282.150000px;}
.x63_c00499{left:283.350000px;}
.xd_c00499{left:285.000000px;}
.x21_c00499{left:288.600000px;}
.x7c_c00499{left:291.300000px;}
.x56_c00499{left:292.350000px;}
.x2c_c00499{left:296.100000px;}
.x71_c00499{left:297.750000px;}
.x4b_c00499{left:298.800000px;}
.x57_c00499{left:301.650000px;}
.x68_c00499{left:303.450000px;}
.x1_c00499{left:306.750000px;}
.x1b_c00499{left:308.100000px;}
.x3f_c00499{left:310.050000px;}
.x46_c00499{left:312.750000px;}
.x7f_c00499{left:313.950000px;}
.x14_c00499{left:315.450000px;}
.xe_c00499{left:317.700000px;}
.x64_c00499{left:321.450000px;}
.x79_c00499{left:323.700000px;}
.x52_c00499{left:324.900000px;}
.x7e_c00499{left:326.250000px;}
.x39_c00499{left:327.300000px;}
.x80_c00499{left:328.350000px;}
.x67_c00499{left:329.700000px;}
.x2d_c00499{left:332.100000px;}
.x83_c00499{left:333.450000px;}
.x36_c00499{left:337.350000px;}
.x22_c00499{left:339.300000px;}
.x86_c00499{left:340.950000px;}
.x89_c00499{left:342.600000px;}
.x8a_c00499{left:344.700000px;}
.x78_c00499{left:346.350000px;}
.x1c_c00499{left:347.700000px;}
.x5c_c00499{left:349.200000px;}
.x69_c00499{left:353.100000px;}
.x4c_c00499{left:357.150000px;}
.xf_c00499{left:358.350000px;}
.x58_c00499{left:361.050000px;}
.x7a_c00499{left:362.850000px;}
.x65_c00499{left:363.900000px;}
.x40_c00499{left:365.550000px;}
.x2e_c00499{left:366.600000px;}
.x53_c00499{left:367.800000px;}
.x3a_c00499{left:370.200000px;}
.x61_c00499{left:372.000000px;}
.x23_c00499{left:374.550000px;}
.x2_c00499{left:379.500000px;}
.x10_c00499{left:382.050000px;}
.x59_c00499{left:386.250000px;}
.x15_c00499{left:387.750000px;}
.x1d_c00499{left:390.150000px;}
.x72_c00499{left:392.700000px;}
.x24_c00499{left:394.050000px;}
.x5e_c00499{left:395.550000px;}
.x55_c00499{left:397.500000px;}
.x66_c00499{left:402.450000px;}
.x87_c00499{left:403.650000px;}
.x73_c00499{left:405.600000px;}
.x41_c00499{left:406.950000px;}
.x3_c00499{left:409.350000px;}
.x4d_c00499{left:414.300000px;}
.x4_c00499{left:429.450000px;}
.x106_c00499{left:436.650000px;}
.xe0_c00499{left:439.650000px;}
.xd3_c00499{left:440.700000px;}
.xb6_c00499{left:442.500000px;}
.x8d_c00499{left:443.850000px;}
.x117_c00499{left:457.950000px;}
.x107_c00499{left:459.750000px;}
.x112_c00499{left:469.650000px;}
.x10a_c00499{left:470.700000px;}
.xb5_c00499{left:477.450000px;}
.x5_c00499{left:480.600000px;}
.xd6_c00499{left:484.350000px;}
.xdc_c00499{left:486.150000px;}
.xec_c00499{left:487.950000px;}
.xff_c00499{left:490.050000px;}
.xb7_c00499{left:491.100000px;}
.xc3_c00499{left:493.800000px;}
.xeb_c00499{left:497.700000px;}
.xd2_c00499{left:499.650000px;}
.x6_c00499{left:500.700000px;}
.x102_c00499{left:501.900000px;}
.xe1_c00499{left:502.950000px;}
.xba_c00499{left:504.150000px;}
.xc8_c00499{left:505.350000px;}
.x113_c00499{left:507.150000px;}
.xe8_c00499{left:508.350000px;}
.x94_c00499{left:512.700000px;}
.x8e_c00499{left:514.800000px;}
.xfa_c00499{left:516.600000px;}
.xdf_c00499{left:518.100000px;}
.xd4_c00499{left:519.600000px;}
.xd9_c00499{left:520.650000px;}
.xef_c00499{left:521.850000px;}
.xab_c00499{left:523.500000px;}
.x9c_c00499{left:525.000000px;}
.xc1_c00499{left:527.250000px;}
.x100_c00499{left:528.900000px;}
.xcd_c00499{left:530.250000px;}
.xed_c00499{left:532.350000px;}
.xf7_c00499{left:534.900000px;}
.xbb_c00499{left:536.250000px;}
.xa2_c00499{left:537.900000px;}
.xe2_c00499{left:539.250000px;}
.xc2_c00499{left:542.700000px;}
.xe6_c00499{left:545.100000px;}
.x10b_c00499{left:546.150000px;}
.xe3_c00499{left:547.950000px;}
.x95_c00499{left:549.450000px;}
.xe9_c00499{left:550.800000px;}
.xb1_c00499{left:552.900000px;}
.xb3_c00499{left:556.800000px;}
.xa3_c00499{left:558.000000px;}
.x9d_c00499{left:560.250000px;}
.xc4_c00499{left:562.500000px;}
.x10c_c00499{left:563.850000px;}
.xb4_c00499{left:564.900000px;}
.xfb_c00499{left:565.950000px;}
.xd7_c00499{left:567.450000px;}
.xdd_c00499{left:568.500000px;}
.xd5_c00499{left:570.750000px;}
.xc9_c00499{left:573.000000px;}
.x103_c00499{left:574.650000px;}
.x8f_c00499{left:576.000000px;}
.x10d_c00499{left:577.500000px;}
.xfc_c00499{left:579.300000px;}
.xa6_c00499{left:580.350000px;}
.xac_c00499{left:582.900000px;}
.xcf_c00499{left:586.050000px;}
.xb8_c00499{left:587.850000px;}
.xe7_c00499{left:589.800000px;}
.x96_c00499{left:591.150000px;}
.x10f_c00499{left:592.500000px;}
.xbc_c00499{left:594.150000px;}
.xb2_c00499{left:596.100000px;}
.xf8_c00499{left:597.600000px;}
.x116_c00499{left:599.400000px;}
.xc5_c00499{left:602.550000px;}
.x90_c00499{left:604.800000px;}
.x108_c00499{left:607.650000px;}
.xad_c00499{left:609.600000px;}
.xce_c00499{left:612.000000px;}
.x104_c00499{left:614.250000px;}
.xa7_c00499{left:616.350000px;}
.xa4_c00499{left:623.100000px;}
.xea_c00499{left:625.050000px;}
.x91_c00499{left:627.900000px;}
.xf2_c00499{left:629.550000px;}
.x97_c00499{left:630.750000px;}
.xbd_c00499{left:632.700000px;}
.xcb_c00499{left:634.200000px;}
.xa5_c00499{left:637.500000px;}
.xfd_c00499{left:639.150000px;}
.xee_c00499{left:641.850000px;}
.x10e_c00499{left:643.350000px;}
.xda_c00499{left:645.600000px;}
.x9e_c00499{left:647.100000px;}
.xd0_c00499{left:649.050000px;}
.xf0_c00499{left:650.700000px;}
.x101_c00499{left:652.800000px;}
.xae_c00499{left:653.850000px;}
.xbe_c00499{left:655.350000px;}
.xe4_c00499{left:657.000000px;}
.x114_c00499{left:659.700000px;}
.xfe_c00499{left:660.750000px;}
.x92_c00499{left:667.200000px;}
.xf4_c00499{left:668.700000px;}
.x9f_c00499{left:669.750000px;}
.x105_c00499{left:670.800000px;}
.x98_c00499{left:672.900000px;}
.xf3_c00499{left:675.300000px;}
.xde_c00499{left:679.350000px;}
.xaf_c00499{left:681.150000px;}
.xf5_c00499{left:684.600000px;}
.xa8_c00499{left:685.950000px;}
.xc6_c00499{left:690.000000px;}
.xbf_c00499{left:692.100000px;}
.x110_c00499{left:693.900000px;}
.xdb_c00499{left:694.950000px;}
.x109_c00499{left:697.200000px;}
.xa9_c00499{left:698.850000px;}
.x99_c00499{left:699.900000px;}
.xe5_c00499{left:703.500000px;}
.xca_c00499{left:705.750000px;}
.xf1_c00499{left:707.850000px;}
.x93_c00499{left:709.350000px;}
.x9a_c00499{left:713.250000px;}
.xd8_c00499{left:714.750000px;}
.xa0_c00499{left:717.600000px;}
.xf9_c00499{left:721.050000px;}
.xb0_c00499{left:727.950000px;}
.xd1_c00499{left:730.350000px;}
.xcc_c00499{left:731.400000px;}
.x9b_c00499{left:733.800000px;}
.x118_c00499{left:734.850000px;}
.xc7_c00499{left:736.050000px;}
.xaa_c00499{left:737.700000px;}
.x111_c00499{left:740.700000px;}
.x115_c00499{left:742.200000px;}
.xb9_c00499{left:743.850000px;}
.x7_c00499{left:745.800000px;}
.xa1_c00499{left:750.300000px;}
.xc0_c00499{left:751.950000px;}
.xf6_c00499{left:754.800000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws4_c00499{word-spacing:0.000000pt;}
.ws1_c00499{word-spacing:2.560415pt;}
.ws2_c00499{word-spacing:2.979409pt;}
.ws0_c00499{word-spacing:6.736842pt;}
.ws3_c00499{word-spacing:12.338192pt;}
.fs2_c00499{font-size:32.000000pt;}
.fs0_c00499{font-size:37.333333pt;}
.fs1_c00499{font-size:58.666667pt;}
.y0_c00499{bottom:0.000000pt;}
.y6d_c00499{bottom:128.400000pt;}
.y39_c00499{bottom:135.333333pt;}
.y6c_c00499{bottom:141.466667pt;}
.y38_c00499{bottom:148.533333pt;}
.y6b_c00499{bottom:154.266667pt;}
.y37_c00499{bottom:161.200000pt;}
.y6a_c00499{bottom:167.066667pt;}
.y36_c00499{bottom:174.000000pt;}
.y69_c00499{bottom:179.866667pt;}
.y35_c00499{bottom:186.800000pt;}
.y68_c00499{bottom:192.933333pt;}
.y34_c00499{bottom:199.600000pt;}
.y67_c00499{bottom:205.733333pt;}
.y33_c00499{bottom:213.733333pt;}
.y66_c00499{bottom:219.200000pt;}
.y32_c00499{bottom:224.933333pt;}
.y65_c00499{bottom:232.000000pt;}
.y31_c00499{bottom:238.000000pt;}
.y64_c00499{bottom:244.800000pt;}
.y30_c00499{bottom:250.533333pt;}
.y63_c00499{bottom:257.866667pt;}
.y2f_c00499{bottom:264.266667pt;}
.y62_c00499{bottom:270.400000pt;}
.y2e_c00499{bottom:277.066667pt;}
.y61_c00499{bottom:283.466667pt;}
.y2d_c00499{bottom:289.866667pt;}
.y60_c00499{bottom:298.933333pt;}
.y2c_c00499{bottom:302.666667pt;}
.y2b_c00499{bottom:315.466667pt;}
.y5f_c00499{bottom:316.533333pt;}
.y2a_c00499{bottom:328.666667pt;}
.y5e_c00499{bottom:329.333333pt;}
.y29_c00499{bottom:341.733333pt;}
.y5d_c00499{bottom:342.133333pt;}
.y28_c00499{bottom:354.800000pt;}
.y5c_c00499{bottom:354.933333pt;}
.y27_c00499{bottom:367.333333pt;}
.y5b_c00499{bottom:367.600000pt;}
.y26_c00499{bottom:379.866667pt;}
.y5a_c00499{bottom:380.133333pt;}
.y25_c00499{bottom:392.933333pt;}
.y59_c00499{bottom:393.200000pt;}
.y58_c00499{bottom:406.000000pt;}
.y24_c00499{bottom:406.400000pt;}
.y23_c00499{bottom:418.533333pt;}
.y57_c00499{bottom:431.333333pt;}
.y22_c00499{bottom:431.733333pt;}
.y21_c00499{bottom:444.533333pt;}
.y56_c00499{bottom:444.800000pt;}
.y20_c00499{bottom:457.600000pt;}
.y55_c00499{bottom:457.866667pt;}
.y1f_c00499{bottom:470.400000pt;}
.y54_c00499{bottom:470.933333pt;}
.y1e_c00499{bottom:483.200000pt;}
.y53_c00499{bottom:483.733333pt;}
.y1d_c00499{bottom:496.000000pt;}
.y52_c00499{bottom:496.266667pt;}
.y1c_c00499{bottom:509.066667pt;}
.y51_c00499{bottom:509.733333pt;}
.y1b_c00499{bottom:521.600000pt;}
.y1a_c00499{bottom:534.400000pt;}
.y50_c00499{bottom:535.066667pt;}
.y19_c00499{bottom:547.466667pt;}
.y4f_c00499{bottom:547.600000pt;}
.y18_c00499{bottom:560.000000pt;}
.y4e_c00499{bottom:560.400000pt;}
.y4d_c00499{bottom:573.200000pt;}
.y17_c00499{bottom:573.466667pt;}
.y16_c00499{bottom:586.266667pt;}
.y4c_c00499{bottom:599.333333pt;}
.y15_c00499{bottom:601.333333pt;}
.y14_c00499{bottom:611.866667pt;}
.y13_c00499{bottom:624.666667pt;}
.y4b_c00499{bottom:624.933333pt;}
.y12_c00499{bottom:637.466667pt;}
.y4a_c00499{bottom:650.266667pt;}
.y11_c00499{bottom:650.533333pt;}
.y10_c00499{bottom:663.066667pt;}
.yf_c00499{bottom:675.866667pt;}
.y49_c00499{bottom:676.133333pt;}
.y48_c00499{bottom:689.200000pt;}
.ye_c00499{bottom:689.333333pt;}
.y47_c00499{bottom:701.733333pt;}
.yd_c00499{bottom:704.666667pt;}
.y46_c00499{bottom:715.466667pt;}
.yc_c00499{bottom:722.533333pt;}
.y45_c00499{bottom:730.933333pt;}
.yb_c00499{bottom:741.733333pt;}
.y44_c00499{bottom:748.800000pt;}
.y43_c00499{bottom:761.333333pt;}
.y42_c00499{bottom:788.133333pt;}
.y41_c00499{bottom:800.933333pt;}
.ya_c00499{bottom:803.333333pt;}
.y40_c00499{bottom:813.733333pt;}
.y9_c00499{bottom:816.400000pt;}
.y3f_c00499{bottom:826.533333pt;}
.y8_c00499{bottom:829.200000pt;}
.y3e_c00499{bottom:840.000000pt;}
.y7_c00499{bottom:842.266667pt;}
.y3d_c00499{bottom:851.866667pt;}
.y6_c00499{bottom:855.066667pt;}
.y3c_c00499{bottom:864.933333pt;}
.y5_c00499{bottom:867.866667pt;}
.y3b_c00499{bottom:877.733333pt;}
.y4_c00499{bottom:880.666667pt;}
.y3a_c00499{bottom:891.466667pt;}
.y3_c00499{bottom:893.733333pt;}
.y2_c00499{bottom:920.000000pt;}
.y1_c00499{bottom:924.533333pt;}
.h4_c00499{height:32.000000pt;}
.h2_c00499{height:37.333333pt;}
.h3_c00499{height:58.666667pt;}
.h1_c00499{height:1034.666667pt;}
.h0_c00499{height:1034.879964pt;}
.w0_c00499{width:817.920084pt;}
.w1_c00499{width:818.000000pt;}
.x0_c00499{left:0.000000pt;}
.x81_c00499{left:83.866667pt;}
.x33_c00499{left:89.600000pt;}
.x8_c00499{left:91.466667pt;}
.x7b_c00499{left:115.866667pt;}
.x76_c00499{left:118.133333pt;}
.x47_c00499{left:119.333333pt;}
.x6a_c00499{left:120.666667pt;}
.x18_c00499{left:121.600000pt;}
.x37_c00499{left:122.933333pt;}
.x6f_c00499{left:128.933333pt;}
.x4e_c00499{left:129.866667pt;}
.x1e_c00499{left:131.066667pt;}
.x42_c00499{left:132.133333pt;}
.x48_c00499{left:139.200000pt;}
.x75_c00499{left:141.200000pt;}
.x8b_c00499{left:143.200000pt;}
.x9_c00499{left:144.533333pt;}
.x25_c00499{left:146.400000pt;}
.x4f_c00499{left:147.733333pt;}
.x74_c00499{left:152.133333pt;}
.x82_c00499{left:154.266667pt;}
.x11_c00499{left:155.866667pt;}
.x2a_c00499{left:156.933333pt;}
.x26_c00499{left:157.866667pt;}
.x43_c00499{left:159.333333pt;}
.x49_c00499{left:161.333333pt;}
.x88_c00499{left:163.333333pt;}
.x1f_c00499{left:164.933333pt;}
.x84_c00499{left:166.533333pt;}
.x2f_c00499{left:167.466667pt;}
.x6b_c00499{left:168.400000pt;}
.x5a_c00499{left:169.600000pt;}
.x3b_c00499{left:173.600000pt;}
.x34_c00499{left:175.066667pt;}
.x6d_c00499{left:177.200000pt;}
.xa_c00499{left:179.466667pt;}
.x8c_c00499{left:181.600000pt;}
.x30_c00499{left:182.533333pt;}
.x50_c00499{left:184.800000pt;}
.x51_c00499{left:185.733333pt;}
.x54_c00499{left:187.466667pt;}
.x5f_c00499{left:189.066667pt;}
.x19_c00499{left:190.933333pt;}
.x62_c00499{left:192.400000pt;}
.x27_c00499{left:194.400000pt;}
.x70_c00499{left:195.466667pt;}
.x3c_c00499{left:196.933333pt;}
.xb_c00499{left:198.666667pt;}
.x16_c00499{left:201.066667pt;}
.x32_c00499{left:202.266667pt;}
.x77_c00499{left:204.933333pt;}
.x28_c00499{left:206.266667pt;}
.x3d_c00499{left:208.133333pt;}
.xc_c00499{left:209.866667pt;}
.x35_c00499{left:214.400000pt;}
.x5d_c00499{left:216.000000pt;}
.x85_c00499{left:217.333333pt;}
.x4a_c00499{left:218.933333pt;}
.x31_c00499{left:222.800000pt;}
.x38_c00499{left:224.000000pt;}
.x12_c00499{left:226.266667pt;}
.x5b_c00499{left:227.466667pt;}
.x20_c00499{left:230.266667pt;}
.x44_c00499{left:233.466667pt;}
.x2b_c00499{left:235.733333pt;}
.x6c_c00499{left:237.200000pt;}
.x17_c00499{left:238.133333pt;}
.x13_c00499{left:239.733333pt;}
.x3e_c00499{left:241.066667pt;}
.x60_c00499{left:242.400000pt;}
.x7d_c00499{left:243.333333pt;}
.x45_c00499{left:246.000000pt;}
.x1a_c00499{left:248.533333pt;}
.x29_c00499{left:249.733333pt;}
.x6e_c00499{left:250.800000pt;}
.x63_c00499{left:251.866667pt;}
.xd_c00499{left:253.333333pt;}
.x21_c00499{left:256.533333pt;}
.x7c_c00499{left:258.933333pt;}
.x56_c00499{left:259.866667pt;}
.x2c_c00499{left:263.200000pt;}
.x71_c00499{left:264.666667pt;}
.x4b_c00499{left:265.600000pt;}
.x57_c00499{left:268.133333pt;}
.x68_c00499{left:269.733333pt;}
.x1_c00499{left:272.666667pt;}
.x1b_c00499{left:273.866667pt;}
.x3f_c00499{left:275.600000pt;}
.x46_c00499{left:278.000000pt;}
.x7f_c00499{left:279.066667pt;}
.x14_c00499{left:280.400000pt;}
.xe_c00499{left:282.400000pt;}
.x64_c00499{left:285.733333pt;}
.x79_c00499{left:287.733333pt;}
.x52_c00499{left:288.800000pt;}
.x7e_c00499{left:290.000000pt;}
.x39_c00499{left:290.933333pt;}
.x80_c00499{left:291.866667pt;}
.x67_c00499{left:293.066667pt;}
.x2d_c00499{left:295.200000pt;}
.x83_c00499{left:296.400000pt;}
.x36_c00499{left:299.866667pt;}
.x22_c00499{left:301.600000pt;}
.x86_c00499{left:303.066667pt;}
.x89_c00499{left:304.533333pt;}
.x8a_c00499{left:306.400000pt;}
.x78_c00499{left:307.866667pt;}
.x1c_c00499{left:309.066667pt;}
.x5c_c00499{left:310.400000pt;}
.x69_c00499{left:313.866667pt;}
.x4c_c00499{left:317.466667pt;}
.xf_c00499{left:318.533333pt;}
.x58_c00499{left:320.933333pt;}
.x7a_c00499{left:322.533333pt;}
.x65_c00499{left:323.466667pt;}
.x40_c00499{left:324.933333pt;}
.x2e_c00499{left:325.866667pt;}
.x53_c00499{left:326.933333pt;}
.x3a_c00499{left:329.066667pt;}
.x61_c00499{left:330.666667pt;}
.x23_c00499{left:332.933333pt;}
.x2_c00499{left:337.333333pt;}
.x10_c00499{left:339.600000pt;}
.x59_c00499{left:343.333333pt;}
.x15_c00499{left:344.666667pt;}
.x1d_c00499{left:346.800000pt;}
.x72_c00499{left:349.066667pt;}
.x24_c00499{left:350.266667pt;}
.x5e_c00499{left:351.600000pt;}
.x55_c00499{left:353.333333pt;}
.x66_c00499{left:357.733333pt;}
.x87_c00499{left:358.800000pt;}
.x73_c00499{left:360.533333pt;}
.x41_c00499{left:361.733333pt;}
.x3_c00499{left:363.866667pt;}
.x4d_c00499{left:368.266667pt;}
.x4_c00499{left:381.733333pt;}
.x106_c00499{left:388.133333pt;}
.xe0_c00499{left:390.800000pt;}
.xd3_c00499{left:391.733333pt;}
.xb6_c00499{left:393.333333pt;}
.x8d_c00499{left:394.533333pt;}
.x117_c00499{left:407.066667pt;}
.x107_c00499{left:408.666667pt;}
.x112_c00499{left:417.466667pt;}
.x10a_c00499{left:418.400000pt;}
.xb5_c00499{left:424.400000pt;}
.x5_c00499{left:427.200000pt;}
.xd6_c00499{left:430.533333pt;}
.xdc_c00499{left:432.133333pt;}
.xec_c00499{left:433.733333pt;}
.xff_c00499{left:435.600000pt;}
.xb7_c00499{left:436.533333pt;}
.xc3_c00499{left:438.933333pt;}
.xeb_c00499{left:442.400000pt;}
.xd2_c00499{left:444.133333pt;}
.x6_c00499{left:445.066667pt;}
.x102_c00499{left:446.133333pt;}
.xe1_c00499{left:447.066667pt;}
.xba_c00499{left:448.133333pt;}
.xc8_c00499{left:449.200000pt;}
.x113_c00499{left:450.800000pt;}
.xe8_c00499{left:451.866667pt;}
.x94_c00499{left:455.733333pt;}
.x8e_c00499{left:457.600000pt;}
.xfa_c00499{left:459.200000pt;}
.xdf_c00499{left:460.533333pt;}
.xd4_c00499{left:461.866667pt;}
.xd9_c00499{left:462.800000pt;}
.xef_c00499{left:463.866667pt;}
.xab_c00499{left:465.333333pt;}
.x9c_c00499{left:466.666667pt;}
.xc1_c00499{left:468.666667pt;}
.x100_c00499{left:470.133333pt;}
.xcd_c00499{left:471.333333pt;}
.xed_c00499{left:473.200000pt;}
.xf7_c00499{left:475.466667pt;}
.xbb_c00499{left:476.666667pt;}
.xa2_c00499{left:478.133333pt;}
.xe2_c00499{left:479.333333pt;}
.xc2_c00499{left:482.400000pt;}
.xe6_c00499{left:484.533333pt;}
.x10b_c00499{left:485.466667pt;}
.xe3_c00499{left:487.066667pt;}
.x95_c00499{left:488.400000pt;}
.xe9_c00499{left:489.600000pt;}
.xb1_c00499{left:491.466667pt;}
.xb3_c00499{left:494.933333pt;}
.xa3_c00499{left:496.000000pt;}
.x9d_c00499{left:498.000000pt;}
.xc4_c00499{left:500.000000pt;}
.x10c_c00499{left:501.200000pt;}
.xb4_c00499{left:502.133333pt;}
.xfb_c00499{left:503.066667pt;}
.xd7_c00499{left:504.400000pt;}
.xdd_c00499{left:505.333333pt;}
.xd5_c00499{left:507.333333pt;}
.xc9_c00499{left:509.333333pt;}
.x103_c00499{left:510.800000pt;}
.x8f_c00499{left:512.000000pt;}
.x10d_c00499{left:513.333333pt;}
.xfc_c00499{left:514.933333pt;}
.xa6_c00499{left:515.866667pt;}
.xac_c00499{left:518.133333pt;}
.xcf_c00499{left:520.933333pt;}
.xb8_c00499{left:522.533333pt;}
.xe7_c00499{left:524.266667pt;}
.x96_c00499{left:525.466667pt;}
.x10f_c00499{left:526.666667pt;}
.xbc_c00499{left:528.133333pt;}
.xb2_c00499{left:529.866667pt;}
.xf8_c00499{left:531.200000pt;}
.x116_c00499{left:532.800000pt;}
.xc5_c00499{left:535.600000pt;}
.x90_c00499{left:537.600000pt;}
.x108_c00499{left:540.133333pt;}
.xad_c00499{left:541.866667pt;}
.xce_c00499{left:544.000000pt;}
.x104_c00499{left:546.000000pt;}
.xa7_c00499{left:547.866667pt;}
.xa4_c00499{left:553.866667pt;}
.xea_c00499{left:555.600000pt;}
.x91_c00499{left:558.133333pt;}
.xf2_c00499{left:559.600000pt;}
.x97_c00499{left:560.666667pt;}
.xbd_c00499{left:562.400000pt;}
.xcb_c00499{left:563.733333pt;}
.xa5_c00499{left:566.666667pt;}
.xfd_c00499{left:568.133333pt;}
.xee_c00499{left:570.533333pt;}
.x10e_c00499{left:571.866667pt;}
.xda_c00499{left:573.866667pt;}
.x9e_c00499{left:575.200000pt;}
.xd0_c00499{left:576.933333pt;}
.xf0_c00499{left:578.400000pt;}
.x101_c00499{left:580.266667pt;}
.xae_c00499{left:581.200000pt;}
.xbe_c00499{left:582.533333pt;}
.xe4_c00499{left:584.000000pt;}
.x114_c00499{left:586.400000pt;}
.xfe_c00499{left:587.333333pt;}
.x92_c00499{left:593.066667pt;}
.xf4_c00499{left:594.400000pt;}
.x9f_c00499{left:595.333333pt;}
.x105_c00499{left:596.266667pt;}
.x98_c00499{left:598.133333pt;}
.xf3_c00499{left:600.266667pt;}
.xde_c00499{left:603.866667pt;}
.xaf_c00499{left:605.466667pt;}
.xf5_c00499{left:608.533333pt;}
.xa8_c00499{left:609.733333pt;}
.xc6_c00499{left:613.333333pt;}
.xbf_c00499{left:615.200000pt;}
.x110_c00499{left:616.800000pt;}
.xdb_c00499{left:617.733333pt;}
.x109_c00499{left:619.733333pt;}
.xa9_c00499{left:621.200000pt;}
.x99_c00499{left:622.133333pt;}
.xe5_c00499{left:625.333333pt;}
.xca_c00499{left:627.333333pt;}
.xf1_c00499{left:629.200000pt;}
.x93_c00499{left:630.533333pt;}
.x9a_c00499{left:634.000000pt;}
.xd8_c00499{left:635.333333pt;}
.xa0_c00499{left:637.866667pt;}
.xf9_c00499{left:640.933333pt;}
.xb0_c00499{left:647.066667pt;}
.xd1_c00499{left:649.200000pt;}
.xcc_c00499{left:650.133333pt;}
.x9b_c00499{left:652.266667pt;}
.x118_c00499{left:653.200000pt;}
.xc7_c00499{left:654.266667pt;}
.xaa_c00499{left:655.733333pt;}
.x111_c00499{left:658.400000pt;}
.x115_c00499{left:659.733333pt;}
.xb9_c00499{left:661.200000pt;}
.x7_c00499{left:662.933333pt;}
.xa1_c00499{left:666.933333pt;}
.xc0_c00499{left:668.400000pt;}
.xf6_c00499{left:670.933333pt;}
}





/* 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_c00001 {
    display:none;
  }
  .loading-indicator_c00001.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c00001 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_c00001 { 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_c00001" -> "#page-container .classname_c00001")
 */
.pf_c00001 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c00001 { /* 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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c00001 { /* 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_c00001 { /* 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_c00001 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c00001 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c00001 {overflow:visible;}
  }
}
.c_c00001 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c00001 { /* 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_c00001:after { /* webkit #35443 */
  content: '';
}
.t_c00001:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c00001 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 */
}
.__c00001 { /* 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_c00001 { /* info for Javascript */
  display:none;
}
.l_c00001 { /* annotation links */
}
/* transparent color - WebKit */
.d_c00001 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c00001 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c00001: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_c00001 {
    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_c00001.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c00001.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_c00001 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c00001{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_98436dc8dfa0433841fa329c.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.000000;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;}
.m2ac_c00001{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m29a_c00001{transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030000,0.000000,0.000000,0.250000,0,0);}
.m2f0_c00001{transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034250,0.000000,0.000000,0.250000,0,0);}
.m237_c00001{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m2ab_c00001{transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00001{transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051500,0.000000,0.000000,0.250000,0,0);}
.m206_c00001{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m2ad_c00001{transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064500,0.000000,0.000000,0.250000,0,0);}
.m23e_c00001{transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068500,0.000000,0.000000,0.250000,0,0);}
.m2b9_c00001{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m220_c00001{transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075000,0.000000,0.000000,0.250000,0,0);}
.m2f2_c00001{transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076250,0.000000,0.000000,0.250000,0,0);}
.m18f_c00001{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m2d7_c00001{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m238_c00001{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m2ba_c00001{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m60_c00001{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00001{transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090000,0.000000,0.000000,0.250000,0,0);}
.m2a8_c00001{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m2d8_c00001{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m2d0_c00001{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m300_c00001{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00001{transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098250,0.000000,0.000000,0.250000,0,0);}
.m137_c00001{transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100000,0.000000,0.000000,0.250000,0,0);}
.m139_c00001{transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102750,0.000000,0.000000,0.250000,0,0);}
.m272_c00001{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m2ec_c00001{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m2af_c00001{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m2b5_c00001{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m2b4_c00001{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00001{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m296_c00001{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2b7_c00001{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m22e_c00001{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m2aa_c00001{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m231_c00001{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m2ae_c00001{transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131000,0.000000,0.000000,0.250000,0,0);}
.m2ef_c00001{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m2b8_c00001{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m2d2_c00001{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m2b3_c00001{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00001{transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135000,0.000000,0.000000,0.250000,0,0);}
.m53_c00001{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m302_c00001{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m2d1_c00001{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2da_c00001{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m283_c00001{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m18a_c00001{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m2d5_c00001{transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145750,0.000000,0.000000,0.250000,0,0);}
.m2cb_c00001{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m2e9_c00001{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m205_c00001{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m2b6_c00001{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m2a6_c00001{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m2a7_c00001{transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152750,0.000000,0.000000,0.250000,0,0);}
.m21d_c00001{transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153000,0.000000,0.000000,0.250000,0,0);}
.m239_c00001{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m51_c00001{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m2f9_c00001{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m2bf_c00001{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m2c0_c00001{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m27c_c00001{transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160000,0.000000,0.000000,0.250000,0,0);}
.m275_c00001{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m264_c00001{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00001{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m2a9_c00001{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00001{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m106_c00001{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m2cd_c00001{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m20a_c00001{transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167000,0.000000,0.000000,0.250000,0,0);}
.m2a2_c00001{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00001{transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168500,0.000000,0.000000,0.250000,0,0);}
.m21a_c00001{transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168750,0.000000,0.000000,0.250000,0,0);}
.m2cc_c00001{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m21e_c00001{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m27d_c00001{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00001{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00001{transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172500,0.000000,0.000000,0.250000,0,0);}
.m28d_c00001{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2f8_c00001{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00001{transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174000,0.000000,0.000000,0.250000,0,0);}
.m242_c00001{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m280_c00001{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m251_c00001{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m281_c00001{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m282_c00001{transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176000,0.000000,0.000000,0.250000,0,0);}
.m196_c00001{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m2ca_c00001{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m29b_c00001{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00001{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m295_c00001{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m270_c00001{transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177750,0.000000,0.000000,0.250000,0,0);}
.m29f_c00001{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m227_c00001{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m279_c00001{transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00001{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m2ea_c00001{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m2eb_c00001{transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181750,0.000000,0.000000,0.250000,0,0);}
.m217_c00001{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00001{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m63_c00001{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m24c_c00001{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m2d3_c00001{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m186_c00001{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2de_c00001{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m158_c00001{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m262_c00001{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00001{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00001{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m23b_c00001{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00001{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m19a_c00001{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m20c_c00001{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00001{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m26e_c00001{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m62_c00001{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m23a_c00001{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m28a_c00001{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m273_c00001{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m2fc_c00001{transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189750,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00001{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00001{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m170_c00001{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m19b_c00001{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00001{transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191250,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00001{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m204_c00001{transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191750,0.000000,0.000000,0.250000,0,0);}
.m213_c00001{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m284_c00001{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m110_c00001{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00001{transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192750,0.000000,0.000000,0.250000,0,0);}
.m232_c00001{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m252_c00001{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m143_c00001{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m243_c00001{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m2c9_c00001{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m91_c00001{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m2c8_c00001{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m19d_c00001{transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195000,0.000000,0.000000,0.250000,0,0);}
.m185_c00001{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m183_c00001{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m246_c00001{transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196250,0.000000,0.000000,0.250000,0,0);}
.m253_c00001{transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196500,0.000000,0.000000,0.250000,0,0);}
.m235_c00001{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m20d_c00001{transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00001{transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197250,0.000000,0.000000,0.250000,0,0);}
.m23c_c00001{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m263_c00001{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00001{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m162_c00001{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m152_c00001{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00001{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m249_c00001{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m132_c00001{transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199250,0.000000,0.000000,0.250000,0,0);}
.m17c_c00001{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00001{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m285_c00001{transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200250,0.000000,0.000000,0.250000,0,0);}
.m23f_c00001{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00001{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m215_c00001{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m245_c00001{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mfa_c00001{transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201500,0.000000,0.000000,0.250000,0,0);}
.m24e_c00001{transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201750,0.000000,0.000000,0.250000,0,0);}
.m167_c00001{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m33_c00001{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m153_c00001{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m128_c00001{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2d6_c00001{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00001{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00001{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00001{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00001{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1ff_c00001{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m234_c00001{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m200_c00001{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m2d4_c00001{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1f5_c00001{transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205500,0.000000,0.000000,0.250000,0,0);}
.me2_c00001{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m236_c00001{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m223_c00001{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m2b1_c00001{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m212_c00001{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m211_c00001{transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207000,0.000000,0.000000,0.250000,0,0);}
.m135_c00001{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m165_c00001{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m17d_c00001{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m209_c00001{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00001{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m58_c00001{transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208500,0.000000,0.000000,0.250000,0,0);}
.m216_c00001{transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208750,0.000000,0.000000,0.250000,0,0);}
.m28e_c00001{transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00001{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m146_c00001{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00001{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m2ce_c00001{transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210250,0.000000,0.000000,0.250000,0,0);}
.md6_c00001{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m14c_c00001{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m24d_c00001{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m218_c00001{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mff_c00001{transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211500,0.000000,0.000000,0.250000,0,0);}
.m20e_c00001{transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211750,0.000000,0.000000,0.250000,0,0);}
.m191_c00001{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m111_c00001{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00001{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1f0_c00001{transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212750,0.000000,0.000000,0.250000,0,0);}
.md4_c00001{transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213000,0.000000,0.000000,0.250000,0,0);}
.m64_c00001{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m168_c00001{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00001{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m248_c00001{transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00001{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00001{transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214500,0.000000,0.000000,0.250000,0,0);}
.m2b0_c00001{transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214750,0.000000,0.000000,0.250000,0,0);}
.m130_c00001{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m38_c00001{transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215250,0.000000,0.000000,0.250000,0,0);}
.md3_c00001{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00001{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00001{transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216000,0.000000,0.000000,0.250000,0,0);}
.m214_c00001{transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216250,0.000000,0.000000,0.250000,0,0);}
.m10f_c00001{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m20f_c00001{transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216750,0.000000,0.000000,0.250000,0,0);}
.m261_c00001{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00001{transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217250,0.000000,0.000000,0.250000,0,0);}
.m15d_c00001{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00001{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.me7_c00001{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m181_c00001{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m46_c00001{transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218500,0.000000,0.000000,0.250000,0,0);}
.m247_c00001{transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218750,0.000000,0.000000,0.250000,0,0);}
.mdc_c00001{transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219000,0.000000,0.000000,0.250000,0,0);}
.m219_c00001{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00001{transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219500,0.000000,0.000000,0.250000,0,0);}
.m166_c00001{transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219750,0.000000,0.000000,0.250000,0,0);}
.md0_c00001{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m92_c00001{transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00001{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00001{transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221000,0.000000,0.000000,0.250000,0,0);}
.m140_c00001{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m100_c00001{transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221500,0.000000,0.000000,0.250000,0,0);}
.m178_c00001{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1fc_c00001{transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222000,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00001{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00001{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m3_c00001{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m1de_c00001{transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223000,0.000000,0.000000,0.250000,0,0);}
.m21b_c00001{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m21f_c00001{transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223500,0.000000,0.000000,0.250000,0,0);}
.m222_c00001{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00001{transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00001{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m37_c00001{transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224500,0.000000,0.000000,0.250000,0,0);}
.med_c00001{transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00001{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00001{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m12a_c00001{transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00001{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m145_c00001{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m87_c00001{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00001{transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226500,0.000000,0.000000,0.250000,0,0);}
.m74_c00001{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00001{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00001{transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227250,0.000000,0.000000,0.250000,0,0);}
.m173_c00001{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.md_c00001{transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227750,0.000000,0.000000,0.250000,0,0);}
.me5_c00001{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00001{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m9_c00001{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00001{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m151_c00001{transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00001{transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00001{transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229500,0.000000,0.000000,0.250000,0,0);}
.m86_c00001{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00001{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m47_c00001{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mda_c00001{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m61_c00001{transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230750,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00001{transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231000,0.000000,0.000000,0.250000,0,0);}
.m259_c00001{transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231250,0.000000,0.000000,0.250000,0,0);}
.m16_c00001{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00001{transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231750,0.000000,0.000000,0.250000,0,0);}
.m182_c00001{transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232000,0.000000,0.000000,0.250000,0,0);}
.m193_c00001{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00001{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00001{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m297_c00001{transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00001{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00001{transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233500,0.000000,0.000000,0.250000,0,0);}
.m75_c00001{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m7b_c00001{transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234000,0.000000,0.000000,0.250000,0,0);}
.m45_c00001{transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234250,0.000000,0.000000,0.250000,0,0);}
.m21c_c00001{transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00001{transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00001{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.mce_c00001{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00001{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00001{transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235750,0.000000,0.000000,0.250000,0,0);}
.m13f_c00001{transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236000,0.000000,0.000000,0.250000,0,0);}
.m73_c00001{transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236250,0.000000,0.000000,0.250000,0,0);}
.m88_c00001{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00001{transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236750,0.000000,0.000000,0.250000,0,0);}
.mef_c00001{transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237000,0.000000,0.000000,0.250000,0,0);}
.m21_c00001{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00001{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00001{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m23_c00001{transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00001{transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00001{transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238500,0.000000,0.000000,0.250000,0,0);}
.m120_c00001{transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238750,0.000000,0.000000,0.250000,0,0);}
.m19e_c00001{transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239000,0.000000,0.000000,0.250000,0,0);}
.m199_c00001{transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239250,0.000000,0.000000,0.250000,0,0);}
.mc_c00001{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00001{transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240500,0.000000,0.000000,0.250000,0,0);}
.m2c1_c00001{transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00001{transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241250,0.000000,0.000000,0.250000,0,0);}
.mc1_c00001{transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00001{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m99_c00001{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.md9_c00001{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00001{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m72_c00001{transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242750,0.000000,0.000000,0.250000,0,0);}
.m123_c00001{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00001{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m59_c00001{transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243500,0.000000,0.000000,0.250000,0,0);}
.me0_c00001{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);}
.m15f_c00001{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m13_c00001{transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00001{transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00001{transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244750,0.000000,0.000000,0.250000,0,0);}
.m36_c00001{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m107_c00001{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00001{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5_c00001{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m133_c00001{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00001{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00001{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00001{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m26d_c00001{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m17_c00001{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m80_c00001{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m43_c00001{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mba_c00001{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m201_c00001{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mf_c00001{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m294_c00001{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00001{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m103_c00001{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m66_c00001{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m44_c00001{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00001{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);}
.m10_c00001{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m15_c00001{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m90_c00001{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma7_c00001{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00001{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m6_c00001{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m159_c00001{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m0_c00001{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m79_c00001{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m71_c00001{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00001{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22d_c00001{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m96_c00001{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m108_c00001{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00001{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mee_c00001{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m11_c00001{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mea_c00001{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m34_c00001{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m25_c00001{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mae_c00001{transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00001{transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255500,0.000000,0.000000,0.250000,0,0);}
.m76_c00001{transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255750,0.000000,0.000000,0.250000,0,0);}
.m131_c00001{transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256000,0.000000,0.000000,0.250000,0,0);}
.m277_c00001{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.m197_c00001{transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256500,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00001{transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256750,0.000000,0.000000,0.250000,0,0);}
.m260_c00001{transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257000,0.000000,0.000000,0.250000,0,0);}
.m32_c00001{transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257250,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00001{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m26b_c00001{transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257750,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00001{transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258000,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00001{transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00001{transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258500,0.000000,0.000000,0.250000,0,0);}
.md1_c00001{transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258750,0.000000,0.000000,0.250000,0,0);}
.m93_c00001{transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00001{transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259250,0.000000,0.000000,0.250000,0,0);}
.m97_c00001{transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259500,0.000000,0.000000,0.250000,0,0);}
.m134_c00001{transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259750,0.000000,0.000000,0.250000,0,0);}
.m30_c00001{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00001{transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260250,0.000000,0.000000,0.250000,0,0);}
.m50_c00001{transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260500,0.000000,0.000000,0.250000,0,0);}
.m109_c00001{transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00001{transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261000,0.000000,0.000000,0.250000,0,0);}
.m26c_c00001{transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261250,0.000000,0.000000,0.250000,0,0);}
.m12_c00001{transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261500,0.000000,0.000000,0.250000,0,0);}
.m156_c00001{transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261750,0.000000,0.000000,0.250000,0,0);}
.m55_c00001{transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262000,0.000000,0.000000,0.250000,0,0);}
.m67_c00001{transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00001{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m19_c00001{transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262750,0.000000,0.000000,0.250000,0,0);}
.m298_c00001{transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263000,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00001{transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00001{transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263500,0.000000,0.000000,0.250000,0,0);}
.m142_c00001{transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263750,0.000000,0.000000,0.250000,0,0);}
.me_c00001{transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00001{transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264250,0.000000,0.000000,0.250000,0,0);}
.mbc_c00001{transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264500,0.000000,0.000000,0.250000,0,0);}
.m68_c00001{transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264750,0.000000,0.000000,0.250000,0,0);}
.m124_c00001{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m240_c00001{transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265250,0.000000,0.000000,0.250000,0,0);}
.m1db_c00001{transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265500,0.000000,0.000000,0.250000,0,0);}
.m29_c00001{transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265750,0.000000,0.000000,0.250000,0,0);}
.m24a_c00001{transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00001{transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266250,0.000000,0.000000,0.250000,0,0);}
.me9_c00001{transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266500,0.000000,0.000000,0.250000,0,0);}
.m56_c00001{transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266750,0.000000,0.000000,0.250000,0,0);}
.md2_c00001{transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267000,0.000000,0.000000,0.250000,0,0);}
.m77_c00001{transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267250,0.000000,0.000000,0.250000,0,0);}
.m20_c00001{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00001{transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267750,0.000000,0.000000,0.250000,0,0);}
.m121_c00001{transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00001{transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268250,0.000000,0.000000,0.250000,0,0);}
.m24_c00001{transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268500,0.000000,0.000000,0.250000,0,0);}
.m28c_c00001{transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268750,0.000000,0.000000,0.250000,0,0);}
.me1_c00001{transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00001{transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00001{transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00001{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17f_c00001{transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00001{transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270500,0.000000,0.000000,0.250000,0,0);}
.m48_c00001{transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270750,0.000000,0.000000,0.250000,0,0);}
.ma8_c00001{transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00001{transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00001{transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271750,0.000000,0.000000,0.250000,0,0);}
.m22c_c00001{transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272000,0.000000,0.000000,0.250000,0,0);}
.m83_c00001{transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00001{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00001{transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00001{transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273000,0.000000,0.000000,0.250000,0,0);}
.m171_c00001{transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273250,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00001{transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273750,0.000000,0.000000,0.250000,0,0);}
.m2a1_c00001{transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00001{transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274250,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00001{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14b_c00001{transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275500,0.000000,0.000000,0.250000,0,0);}
.m117_c00001{transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275750,0.000000,0.000000,0.250000,0,0);}
.ma5_c00001{transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00001{transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276250,0.000000,0.000000,0.250000,0,0);}
.mcd_c00001{transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276500,0.000000,0.000000,0.250000,0,0);}
.m49_c00001{transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276750,0.000000,0.000000,0.250000,0,0);}
.m154_c00001{transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00001{transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00001{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m69_c00001{transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00001{transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00001{transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278250,0.000000,0.000000,0.250000,0,0);}
.m22_c00001{transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278500,0.000000,0.000000,0.250000,0,0);}
.m198_c00001{transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278750,0.000000,0.000000,0.250000,0,0);}
.mf3_c00001{transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279000,0.000000,0.000000,0.250000,0,0);}
.m31_c00001{transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279250,0.000000,0.000000,0.250000,0,0);}
.m94_c00001{transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279500,0.000000,0.000000,0.250000,0,0);}
.m28_c00001{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m125_c00001{transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280500,0.000000,0.000000,0.250000,0,0);}
.m8_c00001{transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280750,0.000000,0.000000,0.250000,0,0);}
.mde_c00001{transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00001{transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281250,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00001{transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281500,0.000000,0.000000,0.250000,0,0);}
.mab_c00001{transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00001{transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282000,0.000000,0.000000,0.250000,0,0);}
.m118_c00001{transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282250,0.000000,0.000000,0.250000,0,0);}
.m1da_c00001{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00001{transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282750,0.000000,0.000000,0.250000,0,0);}
.m257_c00001{transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283250,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00001{transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283500,0.000000,0.000000,0.250000,0,0);}
.m39_c00001{transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.283750,0.000000,0.000000,0.250000,0,0);}
.m98_c00001{transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284000,0.000000,0.000000,0.250000,0,0);}
.m122_c00001{transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00001{transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00001{transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284750,0.000000,0.000000,0.250000,0,0);}
.m5b_c00001{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00001{transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285250,0.000000,0.000000,0.250000,0,0);}
.m14_c00001{transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285750,0.000000,0.000000,0.250000,0,0);}
.maa_c00001{transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286250,0.000000,0.000000,0.250000,0,0);}
.m42_c00001{transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00001{transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.286750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00001{transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00001{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00001{transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288000,0.000000,0.000000,0.250000,0,0);}
.mca_c00001{transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288250,0.000000,0.000000,0.250000,0,0);}
.m89_c00001{transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00001{transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288750,0.000000,0.000000,0.250000,0,0);}
.m52_c00001{transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289000,0.000000,0.000000,0.250000,0,0);}
.m102_c00001{transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289250,0.000000,0.000000,0.250000,0,0);}
.md7_c00001{transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289500,0.000000,0.000000,0.250000,0,0);}
.me3_c00001{transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289750,0.000000,0.000000,0.250000,0,0);}
.m141_c00001{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00001{transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290250,0.000000,0.000000,0.250000,0,0);}
.m274_c00001{transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290500,0.000000,0.000000,0.250000,0,0);}
.m25f_c00001{transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00001{transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00001{transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00001{transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291750,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00001{transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292000,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00001{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00001{transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292750,0.000000,0.000000,0.250000,0,0);}
.m17e_c00001{transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293000,0.000000,0.000000,0.250000,0,0);}
.m115_c00001{transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293250,0.000000,0.000000,0.250000,0,0);}
.md8_c00001{transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.293500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00001{transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294000,0.000000,0.000000,0.250000,0,0);}
.m27_c00001{transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294250,0.000000,0.000000,0.250000,0,0);}
.m16e_c00001{transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00001{transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.294750,0.000000,0.000000,0.250000,0,0);}
.m22f_c00001{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00001{transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295250,0.000000,0.000000,0.250000,0,0);}
.mad_c00001{transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295750,0.000000,0.000000,0.250000,0,0);}
.m175_c00001{transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296000,0.000000,0.000000,0.250000,0,0);}
.meb_c00001{transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296250,0.000000,0.000000,0.250000,0,0);}
.m179_c00001{transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296500,0.000000,0.000000,0.250000,0,0);}
.m138_c00001{transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296750,0.000000,0.000000,0.250000,0,0);}
.m2_c00001{transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297250,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00001{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00001{transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00001{transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298250,0.000000,0.000000,0.250000,0,0);}
.m9c_c00001{transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298500,0.000000,0.000000,0.250000,0,0);}
.me4_c00001{transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00001{transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299000,0.000000,0.000000,0.250000,0,0);}
.m148_c00001{transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.299250,0.000000,0.000000,0.250000,0,0);}
.m4f_c00001{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18_c00001{transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300750,0.000000,0.000000,0.250000,0,0);}
.m114_c00001{transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301000,0.000000,0.000000,0.250000,0,0);}
.m81_c00001{transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301250,0.000000,0.000000,0.250000,0,0);}
.m187_c00001{transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00001{transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.301750,0.000000,0.000000,0.250000,0,0);}
.m101_c00001{transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00001{transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302250,0.000000,0.000000,0.250000,0,0);}
.m1af_c00001{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00001{transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302750,0.000000,0.000000,0.250000,0,0);}
.m290_c00001{transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303000,0.000000,0.000000,0.250000,0,0);}
.m164_c00001{transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303250,0.000000,0.000000,0.250000,0,0);}
.m14a_c00001{transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303500,0.000000,0.000000,0.250000,0,0);}
.m150_c00001{transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303750,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00001{transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304000,0.000000,0.000000,0.250000,0,0);}
.maf_c00001{transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304250,0.000000,0.000000,0.250000,0,0);}
.m149_c00001{transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304500,0.000000,0.000000,0.250000,0,0);}
.m160_c00001{transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.304750,0.000000,0.000000,0.250000,0,0);}
.m207_c00001{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m84_c00001{transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305250,0.000000,0.000000,0.250000,0,0);}
.m4d_c00001{transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305750,0.000000,0.000000,0.250000,0,0);}
.m155_c00001{transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00001{transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306500,0.000000,0.000000,0.250000,0,0);}
.m129_c00001{transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.306750,0.000000,0.000000,0.250000,0,0);}
.m78_c00001{transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307000,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00001{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00001{transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308000,0.000000,0.000000,0.250000,0,0);}
.m28b_c00001{transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308250,0.000000,0.000000,0.250000,0,0);}
.m40_c00001{transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00001{transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00001{transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309250,0.000000,0.000000,0.250000,0,0);}
.m2bb_c00001{transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.309500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00001{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19c_c00001{transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310250,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00001{transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310500,0.000000,0.000000,0.250000,0,0);}
.me6_c00001{transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00001{transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311000,0.000000,0.000000,0.250000,0,0);}
.m210_c00001{transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311250,0.000000,0.000000,0.250000,0,0);}
.m95_c00001{transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311500,0.000000,0.000000,0.250000,0,0);}
.m41_c00001{transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312000,0.000000,0.000000,0.250000,0,0);}
.m195_c00001{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00001{transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312750,0.000000,0.000000,0.250000,0,0);}
.m233_c00001{transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00001{transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00001{transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00001{transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.313750,0.000000,0.000000,0.250000,0,0);}
.m65_c00001{transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314250,0.000000,0.000000,0.250000,0,0);}
.m26f_c00001{transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.314500,0.000000,0.000000,0.250000,0,0);}
.m16c_c00001{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00001{transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315500,0.000000,0.000000,0.250000,0,0);}
.m157_c00001{transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00001{transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316500,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00001{transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316750,0.000000,0.000000,0.250000,0,0);}
.m35_c00001{transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317250,0.000000,0.000000,0.250000,0,0);}
.m2d9_c00001{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00001{transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317750,0.000000,0.000000,0.250000,0,0);}
.m192_c00001{transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318000,0.000000,0.000000,0.250000,0,0);}
.m85_c00001{transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318250,0.000000,0.000000,0.250000,0,0);}
.m3c_c00001{transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.318750,0.000000,0.000000,0.250000,0,0);}
.m16f_c00001{transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.319250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00001{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m169_c00001{transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320500,0.000000,0.000000,0.250000,0,0);}
.m127_c00001{transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00001{transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321250,0.000000,0.000000,0.250000,0,0);}
.me8_c00001{transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.321500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00001{transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322250,0.000000,0.000000,0.250000,0,0);}
.m1df_c00001{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00001{transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322750,0.000000,0.000000,0.250000,0,0);}
.m174_c00001{transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323250,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00001{transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323500,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00001{transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.323750,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00001{transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324000,0.000000,0.000000,0.250000,0,0);}
.m271_c00001{transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324250,0.000000,0.000000,0.250000,0,0);}
.m2c4_c00001{transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324500,0.000000,0.000000,0.250000,0,0);}
.m25e_c00001{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00001{transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325750,0.000000,0.000000,0.250000,0,0);}
.m292_c00001{transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326000,0.000000,0.000000,0.250000,0,0);}
.m208_c00001{transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.326250,0.000000,0.000000,0.250000,0,0);}
.m254_c00001{transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327000,0.000000,0.000000,0.250000,0,0);}
.m291_c00001{transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327250,0.000000,0.000000,0.250000,0,0);}
.m288_c00001{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m163_c00001{transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327750,0.000000,0.000000,0.250000,0,0);}
.m258_c00001{transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328000,0.000000,0.000000,0.250000,0,0);}
.mec_c00001{transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328250,0.000000,0.000000,0.250000,0,0);}
.m14f_c00001{transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328500,0.000000,0.000000,0.250000,0,0);}
.m230_c00001{transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328750,0.000000,0.000000,0.250000,0,0);}
.mf1_c00001{transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329250,0.000000,0.000000,0.250000,0,0);}
.m29e_c00001{transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.329500,0.000000,0.000000,0.250000,0,0);}
.md5_c00001{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2dd_c00001{transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330500,0.000000,0.000000,0.250000,0,0);}
.m278_c00001{transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331250,0.000000,0.000000,0.250000,0,0);}
.m147_c00001{transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.331500,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00001{transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332000,0.000000,0.000000,0.250000,0,0);}
.m104_c00001{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00001{transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332750,0.000000,0.000000,0.250000,0,0);}
.m27a_c00001{transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333000,0.000000,0.000000,0.250000,0,0);}
.m18d_c00001{transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333250,0.000000,0.000000,0.250000,0,0);}
.m25b_c00001{transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.333750,0.000000,0.000000,0.250000,0,0);}
.m54_c00001{transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.334250,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00001{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m189_c00001{transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335250,0.000000,0.000000,0.250000,0,0);}
.m2dc_c00001{transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00001{transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336000,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00001{transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.336500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00001{transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337250,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00001{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00001{transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338000,0.000000,0.000000,0.250000,0,0);}
.m188_c00001{transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.338500,0.000000,0.000000,0.250000,0,0);}
.m1_c00001{transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339000,0.000000,0.000000,0.250000,0,0);}
.m172_c00001{transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.339500,0.000000,0.000000,0.250000,0,0);}
.m136_c00001{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m29d_c00001{transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340500,0.000000,0.000000,0.250000,0,0);}
.m27b_c00001{transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340750,0.000000,0.000000,0.250000,0,0);}
.mf7_c00001{transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341000,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00001{transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341250,0.000000,0.000000,0.250000,0,0);}
.m27f_c00001{transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.341750,0.000000,0.000000,0.250000,0,0);}
.m24f_c00001{transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342000,0.000000,0.000000,0.250000,0,0);}
.mac_c00001{transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342750,0.000000,0.000000,0.250000,0,0);}
.m203_c00001{transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343000,0.000000,0.000000,0.250000,0,0);}
.m20b_c00001{transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.343500,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00001{transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344000,0.000000,0.000000,0.250000,0,0);}
.m2bc_c00001{transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.344500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00001{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00001{transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345750,0.000000,0.000000,0.250000,0,0);}
.m180_c00001{transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346250,0.000000,0.000000,0.250000,0,0);}
.m250_c00001{transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00001{transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346750,0.000000,0.000000,0.250000,0,0);}
.m161_c00001{transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347250,0.000000,0.000000,0.250000,0,0);}
.m244_c00001{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m289_c00001{transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00001{transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.348500,0.000000,0.000000,0.250000,0,0);}
.m276_c00001{transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349000,0.000000,0.000000,0.250000,0,0);}
.m2db_c00001{transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349250,0.000000,0.000000,0.250000,0,0);}
.m194_c00001{transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.349750,0.000000,0.000000,0.250000,0,0);}
.m25c_c00001{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m176_c00001{transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350500,0.000000,0.000000,0.250000,0,0);}
.m256_c00001{transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350750,0.000000,0.000000,0.250000,0,0);}
.m22b_c00001{transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00001{transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.351500,0.000000,0.000000,0.250000,0,0);}
.m2cf_c00001{transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00001{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00001{transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.353250,0.000000,0.000000,0.250000,0,0);}
.m26a_c00001{transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00001{transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354250,0.000000,0.000000,0.250000,0,0);}
.m293_c00001{transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.354500,0.000000,0.000000,0.250000,0,0);}
.m269_c00001{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00001{transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355750,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00001{transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00001{transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356250,0.000000,0.000000,0.250000,0,0);}
.m2a5_c00001{transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356500,0.000000,0.000000,0.250000,0,0);}
.m268_c00001{transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357000,0.000000,0.000000,0.250000,0,0);}
.m1be_c00001{transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357250,0.000000,0.000000,0.250000,0,0);}
.m241_c00001{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m299_c00001{transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357750,0.000000,0.000000,0.250000,0,0);}
.m112_c00001{transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.358000,0.000000,0.000000,0.250000,0,0);}
.m105_c00001{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m228_c00001{transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362000,0.000000,0.000000,0.250000,0,0);}
.m177_c00001{transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362250,0.000000,0.000000,0.250000,0,0);}
.m2a0_c00001{transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00001{transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363250,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00001{transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.363500,0.000000,0.000000,0.250000,0,0);}
.m113_c00001{transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364250,0.000000,0.000000,0.250000,0,0);}
.m2a3_c00001{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00001{transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365750,0.000000,0.000000,0.250000,0,0);}
.m202_c00001{transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00001{transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366500,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00001{transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.366750,0.000000,0.000000,0.250000,0,0);}
.m126_c00001{transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.368500,0.000000,0.000000,0.250000,0,0);}
.m265_c00001{transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00001{transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.369500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00001{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m184_c00001{transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371500,0.000000,0.000000,0.250000,0,0);}
.m2c2_c00001{transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373250,0.000000,0.000000,0.250000,0,0);}
.m225_c00001{transform:matrix(0.374750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.374750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.374750,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00001{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m17b_c00001{transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377250,0.000000,0.000000,0.250000,0,0);}
.m229_c00001{transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381500,0.000000,0.000000,0.250000,0,0);}
.m28f_c00001{transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.381750,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00001{transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382750,0.000000,0.000000,0.250000,0,0);}
.m18e_c00001{transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385750,0.000000,0.000000,0.250000,0,0);}
.m266_c00001{transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387000,0.000000,0.000000,0.250000,0,0);}
.m2b2_c00001{transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387750,0.000000,0.000000,0.250000,0,0);}
.m116_c00001{transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.388500,0.000000,0.000000,0.250000,0,0);}
.m255_c00001{transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.389500,0.000000,0.000000,0.250000,0,0);}
.m25a_c00001{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m27e_c00001{transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390750,0.000000,0.000000,0.250000,0,0);}
.m29c_c00001{transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391500,0.000000,0.000000,0.250000,0,0);}
.m24b_c00001{transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.391750,0.000000,0.000000,0.250000,0,0);}
.m2a4_c00001{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00001{transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.394250,0.000000,0.000000,0.250000,0,0);}
.m267_c00001{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m286_c00001{transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395750,0.000000,0.000000,0.250000,0,0);}
.m23d_c00001{transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.396750,0.000000,0.000000,0.250000,0,0);}
.m14d_c00001{transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.399000,0.000000,0.000000,0.250000,0,0);}
.m25d_c00001{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2fe_c00001{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00001{transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405750,0.000000,0.000000,0.250000,0,0);}
.m2c6_c00001{transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.409000,0.000000,0.000000,0.250000,0,0);}
.m119_c00001{transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.411500,0.000000,0.000000,0.250000,0,0);}
.m287_c00001{transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.414750,0.000000,0.000000,0.250000,0,0);}
.m22a_c00001{transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.418250,0.000000,0.000000,0.250000,0,0);}
.m226_c00001{transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.421750,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00001{transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.428500,0.000000,0.000000,0.250000,0,0);}
.m190_c00001{transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445750,0.000000,0.000000,0.250000,0,0);}
.m2fb_c00001{transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.450000,0.000000,0.000000,0.250000,0,0);}
.m17a_c00001{transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462750,0.000000,0.000000,0.250000,0,0);}
.m224_c00001{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2c7_c00001{transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.466750,0.000000,0.000000,0.250000,0,0);}
.m82_c00001{transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.480000,0.000000,0.000000,0.250000,0,0);}
.m2bd_c00001{transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492000,0.000000,0.000000,0.250000,0,0);}
.m221_c00001{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m144_c00001{transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497250,0.000000,0.000000,0.250000,0,0);}
.m2be_c00001{transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510000,0.000000,0.000000,0.250000,0,0);}
.mb_c00001{transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.514250,0.000000,0.000000,0.250000,0,0);}
.m2c3_c00001{transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.525000,0.000000,0.000000,0.250000,0,0);}
.m70_c00001{transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.531500,0.000000,0.000000,0.250000,0,0);}
.m2c5_c00001{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00001{transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.548500,0.000000,0.000000,0.250000,0,0);}
.m57_c00001{transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565750,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00001{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00001{transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582750,0.000000,0.000000,0.250000,0,0);}
.m2ff_c00001{transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.585000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00001{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m2f5_c00001{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2f1_c00001{transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.634250,0.000000,0.000000,0.250000,0,0);}
.m301_c00001{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m2e2_c00001{transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.668500,0.000000,0.000000,0.250000,0,0);}
.m2e7_c00001{transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685750,0.000000,0.000000,0.250000,0,0);}
.m2e5_c00001{transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702750,0.000000,0.000000,0.250000,0,0);}
.m2e8_c00001{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2e0_c00001{transform:matrix(0.737250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737250,0.000000,0.000000,0.250000,0,0);}
.m2df_c00001{transform:matrix(0.754250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.754250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.754250,0.000000,0.000000,0.250000,0,0);}
.m2f4_c00001{transform:matrix(0.771500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.771500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.771500,0.000000,0.000000,0.250000,0,0);}
.m2f3_c00001{transform:matrix(0.788500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.788500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.788500,0.000000,0.000000,0.250000,0,0);}
.m2e1_c00001{transform:matrix(0.942750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942750,0.000000,0.000000,0.250000,0,0);}
.m2f6_c00001{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.m2f7_c00001{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m2fa_c00001{transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.975000,0.000000,0.000000,0.250000,0,0);}
.m2fd_c00001{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m2e4_c00001{transform:matrix(1.045750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.045750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.045750,0.000000,0.000000,0.250000,0,0);}
.m2e3_c00001{transform:matrix(1.062750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062750,0.000000,0.000000,0.250000,0,0);}
.m2ed_c00001{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m2e6_c00001{transform:matrix(1.097250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097250,0.000000,0.000000,0.250000,0,0);}
.m2ee_c00001{transform:matrix(1.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.114250,0.000000,0.000000,0.250000,0,0);}
.v7_c00001{vertical-align:-9.000000px;}
.v6_c00001{vertical-align:-7.200000px;}
.v5_c00001{vertical-align:-6.000000px;}
.v4_c00001{vertical-align:-3.000000px;}
.v3_c00001{vertical-align:-1.200000px;}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:1.800000px;}
.v2_c00001{vertical-align:6.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.ls7_c00001{letter-spacing:69.369685px;}
.ls1_c00001{letter-spacing:118.964357px;}
.ls3_c00001{letter-spacing:131.430818px;}
.ls6_c00001{letter-spacing:168.453125px;}
.ls2_c00001{letter-spacing:496.924788px;}
.ls4_c00001{letter-spacing:570.238914px;}
.ls5_c00001{letter-spacing:1203.282600px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{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__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wscc_c00001{word-spacing:-24.000000px;}
.wsb0_c00001{word-spacing:-21.000000px;}
.wse7_c00001{word-spacing:-13.857143px;}
.wsfe_c00001{word-spacing:-13.473623px;}
.ws13e_c00001{word-spacing:-13.428571px;}
.ws13a_c00001{word-spacing:-12.285714px;}
.ws79_c00001{word-spacing:-11.041995px;}
.ws105_c00001{word-spacing:-10.750000px;}
.ws13d_c00001{word-spacing:-10.727273px;}
.ws139_c00001{word-spacing:-10.571429px;}
.ws20_c00001{word-spacing:-10.479490px;}
.ws7d_c00001{word-spacing:-10.378304px;}
.wsfa_c00001{word-spacing:-10.065651px;}
.wse1_c00001{word-spacing:-10.000000px;}
.ws13f_c00001{word-spacing:-9.428571px;}
.ws7a_c00001{word-spacing:-9.250000px;}
.ws12e_c00001{word-spacing:-9.169553px;}
.ws102_c00001{word-spacing:-8.774194px;}
.ws131_c00001{word-spacing:-8.428571px;}
.wsf5_c00001{word-spacing:-8.205882px;}
.ws6_c00001{word-spacing:-8.189504px;}
.wsab_c00001{word-spacing:-8.070423px;}
.wsd1_c00001{word-spacing:-8.000000px;}
.ws29_c00001{word-spacing:-7.960802px;}
.wsd6_c00001{word-spacing:-7.855422px;}
.ws13_c00001{word-spacing:-7.816901px;}
.ws11_c00001{word-spacing:-7.758432px;}
.wsac_c00001{word-spacing:-7.750000px;}
.wsc2_c00001{word-spacing:-7.605456px;}
.wsfd_c00001{word-spacing:-7.575851px;}
.ws5d_c00001{word-spacing:-7.568995px;}
.wsdd_c00001{word-spacing:-7.478261px;}
.ws10b_c00001{word-spacing:-7.375000px;}
.ws86_c00001{word-spacing:-7.367454px;}
.wsd4_c00001{word-spacing:-7.250000px;}
.wsd7_c00001{word-spacing:-7.095238px;}
.wsf9_c00001{word-spacing:-7.090909px;}
.ws3d_c00001{word-spacing:-7.037135px;}
.ws3e_c00001{word-spacing:-7.004405px;}
.ws135_c00001{word-spacing:-7.000000px;}
.wsa9_c00001{word-spacing:-6.987013px;}
.ws92_c00001{word-spacing:-6.923304px;}
.wse6_c00001{word-spacing:-6.875203px;}
.wsdb_c00001{word-spacing:-6.854073px;}
.ws33_c00001{word-spacing:-6.752051px;}
.wsaa_c00001{word-spacing:-6.666667px;}
.ws103_c00001{word-spacing:-6.612245px;}
.ws93_c00001{word-spacing:-6.609658px;}
.wsb7_c00001{word-spacing:-6.571429px;}
.ws47_c00001{word-spacing:-6.558923px;}
.ws60_c00001{word-spacing:-6.500000px;}
.ws78_c00001{word-spacing:-6.250000px;}
.wsbf_c00001{word-spacing:-6.236025px;}
.ws120_c00001{word-spacing:-6.139942px;}
.wsda_c00001{word-spacing:-6.125000px;}
.wsdc_c00001{word-spacing:-6.113636px;}
.wsd0_c00001{word-spacing:-6.089385px;}
.ws10_c00001{word-spacing:-5.900875px;}
.ws6a_c00001{word-spacing:-5.883382px;}
.ws99_c00001{word-spacing:-5.875000px;}
.ws7c_c00001{word-spacing:-5.852113px;}
.ws8_c00001{word-spacing:-5.792651px;}
.wsaf_c00001{word-spacing:-5.792235px;}
.wseb_c00001{word-spacing:-5.788773px;}
.wsb3_c00001{word-spacing:-5.764706px;}
.wse2_c00001{word-spacing:-5.746479px;}
.ws2e_c00001{word-spacing:-5.625608px;}
.wsc5_c00001{word-spacing:-5.487733px;}
.ws6e_c00001{word-spacing:-5.466667px;}
.ws89_c00001{word-spacing:-5.455789px;}
.wsbe_c00001{word-spacing:-5.401274px;}
.wsc4_c00001{word-spacing:-5.398374px;}
.wsed_c00001{word-spacing:-5.245473px;}
.ws50_c00001{word-spacing:-5.155521px;}
.ws1e_c00001{word-spacing:-5.111212px;}
.wsbd_c00001{word-spacing:-5.090909px;}
.wsba_c00001{word-spacing:-5.038961px;}
.ws7e_c00001{word-spacing:-5.023701px;}
.ws7_c00001{word-spacing:-5.010027px;}
.wsdf_c00001{word-spacing:-5.000000px;}
.ws6c_c00001{word-spacing:-4.992474px;}
.ws2c_c00001{word-spacing:-4.975986px;}
.wsa4_c00001{word-spacing:-4.921079px;}
.ws27_c00001{word-spacing:-4.903198px;}
.ws12f_c00001{word-spacing:-4.843575px;}
.ws59_c00001{word-spacing:-4.804853px;}
.wsc1_c00001{word-spacing:-4.794613px;}
.ws18_c00001{word-spacing:-4.754717px;}
.wsa0_c00001{word-spacing:-4.750000px;}
.wsff_c00001{word-spacing:-4.709261px;}
.ws77_c00001{word-spacing:-4.680851px;}
.wsec_c00001{word-spacing:-4.670391px;}
.wsb2_c00001{word-spacing:-4.666667px;}
.ws36_c00001{word-spacing:-4.625000px;}
.ws1d_c00001{word-spacing:-4.529633px;}
.ws19_c00001{word-spacing:-4.500000px;}
.wsb8_c00001{word-spacing:-4.457531px;}
.ws100_c00001{word-spacing:-4.444444px;}
.wsd8_c00001{word-spacing:-4.409091px;}
.ws53_c00001{word-spacing:-4.385519px;}
.ws130_c00001{word-spacing:-4.375000px;}
.wsbb_c00001{word-spacing:-4.366972px;}
.wscb_c00001{word-spacing:-4.301166px;}
.ws1_c00001{word-spacing:-4.285714px;}
.ws7f_c00001{word-spacing:-4.250000px;}
.wse_c00001{word-spacing:-4.186589px;}
.ws11b_c00001{word-spacing:-4.177843px;}
.ws1a_c00001{word-spacing:-4.151603px;}
.ws11e_c00001{word-spacing:-4.142857px;}
.wsd_c00001{word-spacing:-4.134111px;}
.ws9f_c00001{word-spacing:-4.132179px;}
.ws8b_c00001{word-spacing:-4.116618px;}
.ws40_c00001{word-spacing:-4.030994px;}
.ws3_c00001{word-spacing:-3.929809px;}
.ws95_c00001{word-spacing:-3.858847px;}
.wsc3_c00001{word-spacing:-3.853186px;}
.ws71_c00001{word-spacing:-3.845070px;}
.wsb1_c00001{word-spacing:-3.740260px;}
.wsca_c00001{word-spacing:-3.626992px;}
.ws11a_c00001{word-spacing:-3.441077px;}
.ws126_c00001{word-spacing:-3.421252px;}
.ws140_c00001{word-spacing:-3.375000px;}
.ws12b_c00001{word-spacing:-3.339676px;}
.ws96_c00001{word-spacing:-3.338028px;}
.wsb4_c00001{word-spacing:-3.333333px;}
.wsa8_c00001{word-spacing:-3.210526px;}
.ws5_c00001{word-spacing:-3.169332px;}
.ws124_c00001{word-spacing:-3.137012px;}
.wsbc_c00001{word-spacing:-3.125000px;}
.ws54_c00001{word-spacing:-3.029155px;}
.ws28_c00001{word-spacing:-3.020408px;}
.ws4f_c00001{word-spacing:-3.000000px;}
.ws10f_c00001{word-spacing:-2.994169px;}
.ws4e_c00001{word-spacing:-2.985423px;}
.wsa3_c00001{word-spacing:-2.976676px;}
.ws119_c00001{word-spacing:-2.950437px;}
.ws2b_c00001{word-spacing:-2.941691px;}
.ws2_c00001{word-spacing:-2.875000px;}
.ws2a_c00001{word-spacing:-2.835916px;}
.wse8_c00001{word-spacing:-2.821948px;}
.wsad_c00001{word-spacing:-2.758621px;}
.ws1b_c00001{word-spacing:-2.750000px;}
.ws4_c00001{word-spacing:-2.721057px;}
.wsf4_c00001{word-spacing:-2.708333px;}
.ws3b_c00001{word-spacing:-2.704180px;}
.ws12_c00001{word-spacing:-2.682081px;}
.wsf7_c00001{word-spacing:-2.590909px;}
.wsde_c00001{word-spacing:-2.526316px;}
.wsd2_c00001{word-spacing:-2.451613px;}
.ws106_c00001{word-spacing:-2.388060px;}
.wsc7_c00001{word-spacing:-2.333333px;}
.ws30_c00001{word-spacing:-2.271872px;}
.ws97_c00001{word-spacing:-2.224652px;}
.ws24_c00001{word-spacing:-2.209563px;}
.ws3a_c00001{word-spacing:-2.040452px;}
.wsd5_c00001{word-spacing:-2.000000px;}
.ws125_c00001{word-spacing:-1.973843px;}
.ws9b_c00001{word-spacing:-1.877264px;}
.wscd_c00001{word-spacing:-1.857143px;}
.wsc9_c00001{word-spacing:-1.837253px;}
.wsb6_c00001{word-spacing:-1.746479px;}
.wse3_c00001{word-spacing:-1.730417px;}
.ws10e_c00001{word-spacing:-1.627022px;}
.ws8c_c00001{word-spacing:-1.545455px;}
.ws51_c00001{word-spacing:-1.518313px;}
.ws44_c00001{word-spacing:-1.375000px;}
.ws136_c00001{word-spacing:-1.333333px;}
.ws6f_c00001{word-spacing:-1.288630px;}
.ws80_c00001{word-spacing:-1.192420px;}
.ws17_c00001{word-spacing:-1.152659px;}
.wsa_c00001{word-spacing:-1.068241px;}
.wsf8_c00001{word-spacing:-0.965517px;}
.ws76_c00001{word-spacing:-0.935065px;}
.ws112_c00001{word-spacing:-0.513078px;}
.ws9c_c00001{word-spacing:-0.509664px;}
.ws111_c00001{word-spacing:-0.469945px;}
.ws34_c00001{word-spacing:-0.405063px;}
.wse0_c00001{word-spacing:-0.338028px;}
.ws4b_c00001{word-spacing:-0.250000px;}
.ws115_c00001{word-spacing:-0.096210px;}
.ws11c_c00001{word-spacing:-0.087464px;}
.wsc_c00001{word-spacing:-0.078717px;}
.ws2d_c00001{word-spacing:-0.068071px;}
.ws64_c00001{word-spacing:-0.026239px;}
.wsf_c00001{word-spacing:0.000000px;}
.ws113_c00001{word-spacing:0.125000px;}
.wsc6_c00001{word-spacing:0.142857px;}
.ws4c_c00001{word-spacing:0.225589px;}
.ws41_c00001{word-spacing:0.227911px;}
.wsae_c00001{word-spacing:0.285714px;}
.wsc8_c00001{word-spacing:0.299663px;}
.wscf_c00001{word-spacing:0.312961px;}
.ws67_c00001{word-spacing:0.316103px;}
.ws129_c00001{word-spacing:0.350133px;}
.ws13b_c00001{word-spacing:0.363636px;}
.ws15_c00001{word-spacing:0.498688px;}
.ws26_c00001{word-spacing:0.555556px;}
.ws70_c00001{word-spacing:0.614525px;}
.wsfb_c00001{word-spacing:0.717620px;}
.ws12d_c00001{word-spacing:0.732181px;}
.ws116_c00001{word-spacing:0.790744px;}
.ws57_c00001{word-spacing:0.848812px;}
.ws73_c00001{word-spacing:1.069971px;}
.ws49_c00001{word-spacing:1.226950px;}
.wsb9_c00001{word-spacing:1.250000px;}
.ws133_c00001{word-spacing:1.333333px;}
.ws5e_c00001{word-spacing:1.420240px;}
.ws132_c00001{word-spacing:1.571429px;}
.ws107_c00001{word-spacing:1.647059px;}
.wsd9_c00001{word-spacing:1.724180px;}
.ws4a_c00001{word-spacing:1.766578px;}
.ws48_c00001{word-spacing:1.780809px;}
.ws134_c00001{word-spacing:1.857143px;}
.ws128_c00001{word-spacing:1.946128px;}
.ws8d_c00001{word-spacing:2.069376px;}
.wsfc_c00001{word-spacing:2.093822px;}
.ws127_c00001{word-spacing:2.199573px;}
.ws32_c00001{word-spacing:2.243650px;}
.ws62_c00001{word-spacing:2.444668px;}
.ws101_c00001{word-spacing:2.588235px;}
.ws9_c00001{word-spacing:2.647220px;}
.ws74_c00001{word-spacing:2.801749px;}
.ws117_c00001{word-spacing:2.808743px;}
.ws5a_c00001{word-spacing:2.862974px;}
.ws75_c00001{word-spacing:2.863263px;}
.ws98_c00001{word-spacing:2.875000px;}
.ws38_c00001{word-spacing:3.077535px;}
.ws121_c00001{word-spacing:3.365634px;}
.ws10d_c00001{word-spacing:3.417508px;}
.ws108_c00001{word-spacing:3.538462px;}
.ws5c_c00001{word-spacing:3.603951px;}
.wsce_c00001{word-spacing:3.673866px;}
.ws11f_c00001{word-spacing:3.769137px;}
.ws9a_c00001{word-spacing:3.971922px;}
.ws10a_c00001{word-spacing:3.979654px;}
.wsa6_c00001{word-spacing:4.375000px;}
.ws11d_c00001{word-spacing:4.500000px;}
.ws14_c00001{word-spacing:4.640394px;}
.ws13c_c00001{word-spacing:4.666667px;}
.ws87_c00001{word-spacing:4.703259px;}
.wsa5_c00001{word-spacing:4.750000px;}
.wsf6_c00001{word-spacing:4.857143px;}
.ws0_c00001{word-spacing:5.058040px;}
.ws16_c00001{word-spacing:5.245863px;}
.wsa7_c00001{word-spacing:5.647059px;}
.ws109_c00001{word-spacing:5.750000px;}
.ws85_c00001{word-spacing:5.804665px;}
.ws10c_c00001{word-spacing:5.920424px;}
.ws55_c00001{word-spacing:6.000000px;}
.ws52_c00001{word-spacing:6.051458px;}
.ws83_c00001{word-spacing:6.125000px;}
.ws8f_c00001{word-spacing:6.416499px;}
.ws6d_c00001{word-spacing:6.806746px;}
.ws104_c00001{word-spacing:6.857143px;}
.ws81_c00001{word-spacing:6.935860px;}
.ws94_c00001{word-spacing:6.962099px;}
.ws110_c00001{word-spacing:7.130012px;}
.ws23_c00001{word-spacing:7.595197px;}
.ws137_c00001{word-spacing:8.545455px;}
.ws114_c00001{word-spacing:8.875000px;}
.ws138_c00001{word-spacing:9.379310px;}
.ws8a_c00001{word-spacing:9.426618px;}
.ws4d_c00001{word-spacing:9.724138px;}
.ws118_c00001{word-spacing:9.727273px;}
.ws46_c00001{word-spacing:9.868805px;}
.ws69_c00001{word-spacing:9.886297px;}
.ws91_c00001{word-spacing:10.250000px;}
.ws123_c00001{word-spacing:10.750000px;}
.ws84_c00001{word-spacing:10.991254px;}
.wsf3_c00001{word-spacing:12.000000px;}
.wsb_c00001{word-spacing:12.023857px;}
.ws3c_c00001{word-spacing:12.787386px;}
.ws1f_c00001{word-spacing:12.801749px;}
.ws65_c00001{word-spacing:12.916256px;}
.wse5_c00001{word-spacing:13.112861px;}
.ws31_c00001{word-spacing:13.451115px;}
.ws9d_c00001{word-spacing:13.720322px;}
.ws122_c00001{word-spacing:13.928571px;}
.ws82_c00001{word-spacing:13.967930px;}
.ws8e_c00001{word-spacing:14.022346px;}
.ws5f_c00001{word-spacing:14.349134px;}
.ws22_c00001{word-spacing:14.463993px;}
.ws58_c00001{word-spacing:15.470825px;}
.ws88_c00001{word-spacing:15.875114px;}
.ws63_c00001{word-spacing:15.904853px;}
.wsa1_c00001{word-spacing:16.117707px;}
.ws1c_c00001{word-spacing:16.375000px;}
.ws21_c00001{word-spacing:16.813411px;}
.ws12a_c00001{word-spacing:17.113786px;}
.ws37_c00001{word-spacing:17.885312px;}
.ws42_c00001{word-spacing:20.231527px;}
.ws39_c00001{word-spacing:20.750000px;}
.ws12c_c00001{word-spacing:21.463886px;}
.ws35_c00001{word-spacing:22.266667px;}
.ws66_c00001{word-spacing:22.958333px;}
.wsa2_c00001{word-spacing:23.228130px;}
.ws25_c00001{word-spacing:23.647220px;}
.ws90_c00001{word-spacing:23.863263px;}
.wsef_c00001{word-spacing:24.000000px;}
.ws61_c00001{word-spacing:24.250000px;}
.ws45_c00001{word-spacing:24.741112px;}
.ws3f_c00001{word-spacing:24.758958px;}
.ws9e_c00001{word-spacing:24.957156px;}
.ws7b_c00001{word-spacing:25.072015px;}
.ws72_c00001{word-spacing:25.154280px;}
.ws2f_c00001{word-spacing:26.769679px;}
.ws5b_c00001{word-spacing:27.229008px;}
.ws43_c00001{word-spacing:27.944606px;}
.ws56_c00001{word-spacing:28.788403px;}
.ws68_c00001{word-spacing:34.050463px;}
.ws6b_c00001{word-spacing:34.269360px;}
.wsf0_c00001{word-spacing:77.741047px;}
.wsea_c00001{word-spacing:108.697167px;}
.wse9_c00001{word-spacing:124.563572px;}
.wsc0_c00001{word-spacing:168.244898px;}
.wsee_c00001{word-spacing:190.571046px;}
.wsf1_c00001{word-spacing:193.032451px;}
.wse4_c00001{word-spacing:249.270305px;}
.wsb5_c00001{word-spacing:389.037037px;}
.wsd3_c00001{word-spacing:646.637685px;}
.wsf2_c00001{word-spacing:1009.776171px;}
._3_c00001{width:1.605923px;}
._4_c00001{width:3.428571px;}
._1_c00001{width:24.612642px;}
._6_c00001{width:25.994536px;}
._7_c00001{width:27.000000px;}
._2_c00001{width:28.336870px;}
._5_c00001{width:33.654162px;}
._0_c00001{width:44.863263px;}
.fc0_c00001{color:transparent;}
.fs7_c00001{font-size:30.000000px;}
.fs2_c00001{font-size:36.000000px;}
.fs1_c00001{font-size:42.000000px;}
.fs4_c00001{font-size:48.000000px;}
.fs5_c00001{font-size:54.000000px;}
.fs0_c00001{font-size:60.000000px;}
.fs3_c00001{font-size:66.000000px;}
.fsb_c00001{font-size:72.000000px;}
.fs6_c00001{font-size:78.000000px;}
.fs9_c00001{font-size:90.000000px;}
.fs8_c00001{font-size:102.000000px;}
.fsa_c00001{font-size:126.000000px;}
.fsc_c00001{font-size:132.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1061_c00001{bottom:76.350000px;}
.y1062_c00001{bottom:111.300000px;}
.y1015_c00001{bottom:112.650000px;}
.yc05_c00001{bottom:122.700000px;}
.yf84_c00001{bottom:124.950000px;}
.y50e_c00001{bottom:126.000000px;}
.y100e_c00001{bottom:128.100000px;}
.y1014_c00001{bottom:128.550000px;}
.y1008_c00001{bottom:128.850000px;}
.y8f7_c00001{bottom:129.600000px;}
.ya0f_c00001{bottom:130.350000px;}
.yae6_c00001{bottom:130.950000px;}
.yfa1_c00001{bottom:131.100000px;}
.yfa7_c00001{bottom:131.400000px;}
.y1002_c00001{bottom:131.700000px;}
.yfec_c00001{bottom:132.900000px;}
.yd27_c00001{bottom:133.200000px;}
.yba3_c00001{bottom:133.500000px;}
.yfdd_c00001{bottom:134.250000px;}
.yb6d_c00001{bottom:135.000000px;}
.yb6e_c00001{bottom:135.300000px;}
.yab1_c00001{bottom:135.450000px;}
.ya9e_c00001{bottom:135.600000px;}
.yb6f_c00001{bottom:135.750000px;}
.y273_c00001{bottom:136.050000px;}
.yabc_c00001{bottom:136.350000px;}
.y70e_c00001{bottom:136.500000px;}
.yac7_c00001{bottom:136.800000px;}
.yf13_c00001{bottom:137.850000px;}
.y1038_c00001{bottom:138.900000px;}
.yf17_c00001{bottom:139.050000px;}
.y944_c00001{bottom:139.200000px;}
.y100d_c00001{bottom:140.100000px;}
.y1007_c00001{bottom:140.400000px;}
.y92c_c00001{bottom:141.450000px;}
.ybb8_c00001{bottom:141.600000px;}
.yfa9_c00001{bottom:141.900000px;}
.y984_c00001{bottom:142.200000px;}
.yfaa_c00001{bottom:142.500000px;}
.yfc2_c00001{bottom:142.800000px;}
.y986_c00001{bottom:142.950000px;}
.yf83_c00001{bottom:143.250000px;}
.y985_c00001{bottom:144.000000px;}
.yc7c_c00001{bottom:144.150000px;}
.y9c5_c00001{bottom:144.300000px;}
.y99f_c00001{bottom:144.750000px;}
.yfe3_c00001{bottom:145.050000px;}
.y50d_c00001{bottom:145.200000px;}
.yae5_c00001{bottom:145.350000px;}
.y4e8_c00001{bottom:145.500000px;}
.yc4a_c00001{bottom:146.100000px;}
.yc4c_c00001{bottom:146.550000px;}
.y1021_c00001{bottom:146.850000px;}
.yb03_c00001{bottom:147.300000px;}
.y77e_c00001{bottom:147.450000px;}
.y1023_c00001{bottom:147.600000px;}
.y651_c00001{bottom:147.900000px;}
.ycae_c00001{bottom:148.050000px;}
.y7fd_c00001{bottom:148.200000px;}
.yc4e_c00001{bottom:148.350000px;}
.ye35_c00001{bottom:148.500000px;}
.yeba_c00001{bottom:148.950000px;}
.y8f6_c00001{bottom:149.100000px;}
.y8d5_c00001{bottom:149.250000px;}
.y499_c00001{bottom:149.400000px;}
.ya0e_c00001{bottom:149.700000px;}
.yeac_c00001{bottom:150.000000px;}
.yab0_c00001{bottom:150.150000px;}
.y321_c00001{bottom:150.450000px;}
.y67f_c00001{bottom:150.600000px;}
.y4bd_c00001{bottom:150.750000px;}
.ya0d_c00001{bottom:151.200000px;}
.ybac_c00001{bottom:151.350000px;}
.y58d_c00001{bottom:151.500000px;}
.y5b6_c00001{bottom:151.650000px;}
.yd22_c00001{bottom:151.950000px;}
.yd25_c00001{bottom:152.100000px;}
.yd1d_c00001{bottom:152.250000px;}
.y730_c00001{bottom:152.550000px;}
.yed6_c00001{bottom:152.700000px;}
.y3cd_c00001{bottom:153.000000px;}
.ybb2_c00001{bottom:153.300000px;}
.y244_c00001{bottom:153.750000px;}
.y943_c00001{bottom:153.900000px;}
.y3c_c00001{bottom:154.050000px;}
.ybcb_c00001{bottom:154.200000px;}
.y915_c00001{bottom:154.350000px;}
.y17e_c00001{bottom:154.500000px;}
.y272_c00001{bottom:154.800000px;}
.y88f_c00001{bottom:154.950000px;}
.y71_c00001{bottom:155.100000px;}
.y9f4_c00001{bottom:155.250000px;}
.ye3e_c00001{bottom:155.550000px;}
.y862_c00001{bottom:155.850000px;}
.y70d_c00001{bottom:156.000000px;}
.y626_c00001{bottom:156.150000px;}
.y1ae_c00001{bottom:156.300000px;}
.y610_c00001{bottom:156.600000px;}
.y560_c00001{bottom:157.050000px;}
.y983_c00001{bottom:157.350000px;}
.ya55_c00001{bottom:157.650000px;}
.y119_c00001{bottom:157.800000px;}
.ye1_c00001{bottom:158.100000px;}
.y9aa_c00001{bottom:158.400000px;}
.y6cf_c00001{bottom:158.700000px;}
.y379_c00001{bottom:158.850000px;}
.y9c4_c00001{bottom:159.000000px;}
.y20b_c00001{bottom:159.150000px;}
.yc7b_c00001{bottom:159.300000px;}
.y7dc_c00001{bottom:159.450000px;}
.y6dd_c00001{bottom:159.600000px;}
.ybf6_c00001{bottom:159.750000px;}
.yae_c00001{bottom:159.900000px;}
.y4e7_c00001{bottom:160.200000px;}
.y14e_c00001{bottom:160.500000px;}
.y5dc_c00001{bottom:160.800000px;}
.yd82_c00001{bottom:160.950000px;}
.yc4b_c00001{bottom:161.250000px;}
.yb02_c00001{bottom:161.400000px;}
.y103f_c00001{bottom:161.550000px;}
.yf66_c00001{bottom:161.700000px;}
.yc4d_c00001{bottom:162.000000px;}
.y77d_c00001{bottom:162.150000px;}
.ye2f_c00001{bottom:162.450000px;}
.ycac_c00001{bottom:162.750000px;}
.y8f5_c00001{bottom:163.050000px;}
.ye34_c00001{bottom:163.200000px;}
.yeb9_c00001{bottom:163.350000px;}
.yba2_c00001{bottom:163.500000px;}
.y8d4_c00001{bottom:163.650000px;}
.y428_c00001{bottom:163.800000px;}
.y72f_c00001{bottom:164.100000px;}
.ya0c_c00001{bottom:164.550000px;}
.yeab_c00001{bottom:164.700000px;}
.y962_c00001{bottom:164.850000px;}
.y243_c00001{bottom:165.300000px;}
.ya9d_c00001{bottom:165.450000px;}
.y973_c00001{bottom:165.750000px;}
.y4bc_c00001{bottom:165.900000px;}
.y67e_c00001{bottom:166.050000px;}
.y58c_c00001{bottom:166.200000px;}
.yd21_c00001{bottom:166.350000px;}
.yac6_c00001{bottom:166.500000px;}
.y271_c00001{bottom:166.650000px;}
.y5b5_c00001{bottom:166.800000px;}
.yf12_c00001{bottom:166.950000px;}
.yed5_c00001{bottom:167.100000px;}
.yf16_c00001{bottom:167.400000px;}
.yed1_c00001{bottom:167.700000px;}
.ybb1_c00001{bottom:168.000000px;}
.yf1a_c00001{bottom:168.150000px;}
.y942_c00001{bottom:168.300000px;}
.yfe2_c00001{bottom:168.450000px;}
.y3b_c00001{bottom:168.750000px;}
.y753_c00001{bottom:168.900000px;}
.y17d_c00001{bottom:169.200000px;}
.y70_c00001{bottom:169.500000px;}
.y88e_c00001{bottom:169.650000px;}
.y9f2_c00001{bottom:169.950000px;}
.ye3f_c00001{bottom:170.250000px;}
.y875_c00001{bottom:170.400000px;}
.y1029_c00001{bottom:170.550000px;}
.y6fc_c00001{bottom:170.700000px;}
.y625_c00001{bottom:170.850000px;}
.y1ad_c00001{bottom:171.000000px;}
.y60f_c00001{bottom:171.300000px;}
.y55f_c00001{bottom:171.750000px;}
.ya54_c00001{bottom:171.900000px;}
.y7fc_c00001{bottom:172.050000px;}
.y118_c00001{bottom:172.200000px;}
.ya58_c00001{bottom:172.350000px;}
.y34a_c00001{bottom:172.500000px;}
.ye0_c00001{bottom:172.800000px;}
.ya50_c00001{bottom:173.100000px;}
.y9a9_c00001{bottom:173.250000px;}
.ye00_c00001{bottom:173.400000px;}
.y8ae_c00001{bottom:173.550000px;}
.y9c3_c00001{bottom:173.700000px;}
.y6ce_c00001{bottom:173.850000px;}
.yc7d_c00001{bottom:174.000000px;}
.y378_c00001{bottom:174.300000px;}
.yad_c00001{bottom:174.600000px;}
.y5db_c00001{bottom:174.900000px;}
.y14d_c00001{bottom:175.050000px;}
.y4e6_c00001{bottom:175.350000px;}
.yc49_c00001{bottom:175.650000px;}
.yda5_c00001{bottom:175.800000px;}
.yda3_c00001{bottom:175.950000px;}
.yb01_c00001{bottom:176.100000px;}
.yca5_c00001{bottom:176.400000px;}
.ycfe_c00001{bottom:176.700000px;}
.y77c_c00001{bottom:176.850000px;}
.y650_c00001{bottom:177.000000px;}
.y242_c00001{bottom:177.150000px;}
.ycab_c00001{bottom:177.450000px;}
.ye33_c00001{bottom:177.600000px;}
.yeb8_c00001{bottom:177.750000px;}
.y8f4_c00001{bottom:177.900000px;}
.y270_c00001{bottom:178.200000px;}
.y8d3_c00001{bottom:178.350000px;}
.ya0b_c00001{bottom:178.500000px;}
.ya0a_c00001{bottom:178.950000px;}
.yeaa_c00001{bottom:179.100000px;}
.y961_c00001{bottom:179.250000px;}
.yfeb_c00001{bottom:179.550000px;}
.y67d_c00001{bottom:179.700000px;}
.yfe1_c00001{bottom:180.000000px;}
.ya9c_c00001{bottom:180.150000px;}
.y58b_c00001{bottom:180.600000px;}
.y99c_c00001{bottom:180.750000px;}
.y5b4_c00001{bottom:180.900000px;}
.yd20_c00001{bottom:181.050000px;}
.y972_c00001{bottom:181.200000px;}
.yd1c_c00001{bottom:181.650000px;}
.yf15_c00001{bottom:181.800000px;}
.ybb0_c00001{bottom:182.100000px;}
.y3a9_c00001{bottom:182.250000px;}
.y3cc_c00001{bottom:182.550000px;}
.y941_c00001{bottom:182.700000px;}
.y3a_c00001{bottom:182.850000px;}
.y1e0_c00001{bottom:183.300000px;}
.y17c_c00001{bottom:183.600000px;}
.y6af_c00001{bottom:183.900000px;}
.y88d_c00001{bottom:184.350000px;}
.y7db_c00001{bottom:184.650000px;}
.y9f3_c00001{bottom:184.800000px;}
.y6f_c00001{bottom:185.100000px;}
.y1ac_c00001{bottom:185.400000px;}
.y624_c00001{bottom:185.550000px;}
.y60e_c00001{bottom:185.700000px;}
.y55e_c00001{bottom:186.150000px;}
.ya53_c00001{bottom:186.300000px;}
.ya56_c00001{bottom:186.450000px;}
.y117_c00001{bottom:186.600000px;}
.ya57_c00001{bottom:186.750000px;}
.y1010_c00001{bottom:186.900000px;}
.ydf_c00001{bottom:187.200000px;}
.y2f4_c00001{bottom:187.500000px;}
.y8ad_c00001{bottom:187.950000px;}
.yd85_c00001{bottom:188.100000px;}
.y6cd_c00001{bottom:188.250000px;}
.y9c1_c00001{bottom:188.400000px;}
.y8a4_c00001{bottom:188.550000px;}
.yac_c00001{bottom:188.700000px;}
.y6dc_c00001{bottom:189.000000px;}
.y4e5_c00001{bottom:189.300000px;}
.y14c_c00001{bottom:189.450000px;}
.y320_c00001{bottom:189.600000px;}
.yae4_c00001{bottom:189.750000px;}
.y26f_c00001{bottom:190.050000px;}
.yf07_c00001{bottom:190.200000px;}
.ycfd_c00001{bottom:190.350000px;}
.y77b_c00001{bottom:190.500000px;}
.yca4_c00001{bottom:190.800000px;}
.y64f_c00001{bottom:191.100000px;}
.yda2_c00001{bottom:191.250000px;}
.ycaa_c00001{bottom:191.550000px;}
.yec6_c00001{bottom:191.700000px;}
.ycad_c00001{bottom:191.850000px;}
.ye2d_c00001{bottom:192.000000px;}
.yeb7_c00001{bottom:192.150000px;}
.y8f3_c00001{bottom:192.300000px;}
.yba1_c00001{bottom:192.600000px;}
.ya09_c00001{bottom:192.900000px;}
.y8d2_c00001{bottom:193.050000px;}
.y498_c00001{bottom:193.350000px;}
.yea9_c00001{bottom:193.500000px;}
.y960_c00001{bottom:193.650000px;}
.ye9c_c00001{bottom:193.800000px;}
.yaaf_c00001{bottom:194.100000px;}
.ya08_c00001{bottom:194.400000px;}
.ya9b_c00001{bottom:194.550000px;}
.y102a_c00001{bottom:194.700000px;}
.yabb_c00001{bottom:194.850000px;}
.y58a_c00001{bottom:195.000000px;}
.ye51_c00001{bottom:195.150000px;}
.y67c_c00001{bottom:195.450000px;}
.y5b3_c00001{bottom:195.600000px;}
.y454_c00001{bottom:195.900000px;}
.yd1b_c00001{bottom:196.050000px;}
.ye4f_c00001{bottom:196.200000px;}
.yf11_c00001{bottom:196.350000px;}
.ybaf_c00001{bottom:196.500000px;}
.yed4_c00001{bottom:196.650000px;}
.y3a8_c00001{bottom:196.950000px;}
.y99e_c00001{bottom:197.250000px;}
.yf1c_c00001{bottom:197.400000px;}
.y39_c00001{bottom:197.550000px;}
.y1df_c00001{bottom:197.700000px;}
.y940_c00001{bottom:197.850000px;}
.y904_c00001{bottom:198.000000px;}
.y17b_c00001{bottom:198.300000px;}
.y971_c00001{bottom:198.450000px;}
.y6ae_c00001{bottom:198.600000px;}
.y88c_c00001{bottom:198.750000px;}
.y7da_c00001{bottom:199.050000px;}
.ydba_c00001{bottom:199.200000px;}
.y6e_c00001{bottom:199.500000px;}
.y874_c00001{bottom:199.650000px;}
.y6fb_c00001{bottom:199.800000px;}
.y623_c00001{bottom:199.950000px;}
.y1ab_c00001{bottom:200.100000px;}
.ybb7_c00001{bottom:200.250000px;}
.y844_c00001{bottom:200.550000px;}
.ya4f_c00001{bottom:200.850000px;}
.y116_c00001{bottom:201.000000px;}
.y861_c00001{bottom:201.300000px;}
.yde_c00001{bottom:201.600000px;}
.yfff_c00001{bottom:201.750000px;}
.y349_c00001{bottom:201.900000px;}
.y2f3_c00001{bottom:202.200000px;}
.yd87_c00001{bottom:202.350000px;}
.ydff_c00001{bottom:202.500000px;}
.y427_c00001{bottom:202.650000px;}
.y9c0_c00001{bottom:202.800000px;}
.y8ac_c00001{bottom:202.950000px;}
.y400_c00001{bottom:203.100000px;}
.y377_c00001{bottom:203.400000px;}
.yb2f_c00001{bottom:203.550000px;}
.y2a8_c00001{bottom:203.700000px;}
.yab_c00001{bottom:203.850000px;}
.yb1d_c00001{bottom:204.000000px;}
.y14b_c00001{bottom:204.150000px;}
.y31f_c00001{bottom:204.300000px;}
.yae3_c00001{bottom:204.450000px;}
.yf06_c00001{bottom:204.600000px;}
.yb00_c00001{bottom:204.900000px;}
.yda4_c00001{bottom:205.200000px;}
.yca3_c00001{bottom:205.500000px;}
.yda1_c00001{bottom:205.650000px;}
.y77a_c00001{bottom:205.950000px;}
.yec5_c00001{bottom:206.100000px;}
.yca9_c00001{bottom:206.250000px;}
.ye2c_c00001{bottom:206.400000px;}
.y64e_c00001{bottom:206.550000px;}
.ycaf_c00001{bottom:206.700000px;}
.yeb6_c00001{bottom:206.850000px;}
.y497_c00001{bottom:207.000000px;}
.ya07_c00001{bottom:207.300000px;}
.yd3f_c00001{bottom:207.600000px;}
.y8d1_c00001{bottom:207.750000px;}
.ya06_c00001{bottom:208.050000px;}
.yea8_c00001{bottom:208.200000px;}
.y1037_c00001{bottom:208.350000px;}
.yd39_c00001{bottom:208.500000px;}
.y95f_c00001{bottom:208.800000px;}
.yaae_c00001{bottom:208.950000px;}
.ybab_c00001{bottom:209.100000px;}
.ya9a_c00001{bottom:209.250000px;}
.y67b_c00001{bottom:209.550000px;}
.ye50_c00001{bottom:209.850000px;}
.yd24_c00001{bottom:210.000000px;}
.y589_c00001{bottom:210.150000px;}
.y453_c00001{bottom:210.300000px;}
.y473_c00001{bottom:210.600000px;}
.y970_c00001{bottom:210.750000px;}
.ye4e_c00001{bottom:210.900000px;}
.y241_c00001{bottom:211.200000px;}
.yed3_c00001{bottom:211.350000px;}
.y3a7_c00001{bottom:211.650000px;}
.yf1b_c00001{bottom:211.800000px;}
.y38_c00001{bottom:211.950000px;}
.y7bf_c00001{bottom:212.100000px;}
.y93f_c00001{bottom:212.250000px;}
.y20a_c00001{bottom:212.400000px;}
.y17a_c00001{bottom:212.550000px;}
.y6ad_c00001{bottom:212.700000px;}
.yfc4_c00001{bottom:212.850000px;}
.y26e_c00001{bottom:213.150000px;}
.y88b_c00001{bottom:213.450000px;}
.y2d0_c00001{bottom:213.600000px;}
.y6d_c00001{bottom:213.900000px;}
.y873_c00001{bottom:214.050000px;}
.y60d_c00001{bottom:214.200000px;}
.y622_c00001{bottom:214.350000px;}
.y70c_c00001{bottom:214.500000px;}
.ybb6_c00001{bottom:214.650000px;}
.y860_c00001{bottom:214.950000px;}
.ya52_c00001{bottom:215.100000px;}
.y55d_c00001{bottom:215.250000px;}
.y115_c00001{bottom:215.400000px;}
.ya4e_c00001{bottom:215.700000px;}
.y539_c00001{bottom:216.000000px;}
.ydd_c00001{bottom:216.300000px;}
.y2f2_c00001{bottom:216.600000px;}
.y752_c00001{bottom:216.750000px;}
.ydfe_c00001{bottom:216.900000px;}
.y6cc_c00001{bottom:217.050000px;}
.yd84_c00001{bottom:217.200000px;}
.y798_c00001{bottom:217.500000px;}
.y8ab_c00001{bottom:217.650000px;}
.y2a7_c00001{bottom:217.800000px;}
.yae2_c00001{bottom:218.100000px;}
.yaa_c00001{bottom:218.250000px;}
.y50c_c00001{bottom:218.400000px;}
.y5f7_c00001{bottom:218.550000px;}
.y14a_c00001{bottom:218.850000px;}
.y31e_c00001{bottom:219.000000px;}
.y104d_c00001{bottom:219.150000px;}
.yaff_c00001{bottom:219.300000px;}
.y7fb_c00001{bottom:219.600000px;}
.y64d_c00001{bottom:219.900000px;}
.y779_c00001{bottom:220.350000px;}
.yca8_c00001{bottom:220.650000px;}
.ye31_c00001{bottom:220.800000px;}
.ye2b_c00001{bottom:221.100000px;}
.y8f2_c00001{bottom:221.400000px;}
.yeb5_c00001{bottom:221.550000px;}
.yc1f_c00001{bottom:221.700000px;}
.y99d_c00001{bottom:221.850000px;}
.y8d0_c00001{bottom:222.150000px;}
.yd3e_c00001{bottom:222.300000px;}
.ya05_c00001{bottom:222.450000px;}
.yea7_c00001{bottom:222.600000px;}
.y496_c00001{bottom:222.900000px;}
.ybaa_c00001{bottom:223.200000px;}
.y240_c00001{bottom:223.500000px;}
.ya99_c00001{bottom:223.650000px;}
.y67a_c00001{bottom:223.950000px;}
.y95e_c00001{bottom:224.250000px;}
.y588_c00001{bottom:224.550000px;}
.y5b2_c00001{bottom:224.700000px;}
.y26d_c00001{bottom:225.000000px;}
.y96f_c00001{bottom:225.150000px;}
.yf14_c00001{bottom:225.300000px;}
.yf10_c00001{bottom:225.450000px;}
.yed2_c00001{bottom:225.750000px;}
.ybae_c00001{bottom:226.050000px;}
.y3a6_c00001{bottom:226.200000px;}
.yed0_c00001{bottom:226.350000px;}
.y3cb_c00001{bottom:226.500000px;}
.y472_c00001{bottom:226.650000px;}
.y72e_c00001{bottom:226.800000px;}
.y179_c00001{bottom:226.950000px;}
.y37_c00001{bottom:227.100000px;}
.ydbc_c00001{bottom:227.250000px;}
.y4bb_c00001{bottom:227.550000px;}
.ydb9_c00001{bottom:227.700000px;}
.y6ac_c00001{bottom:227.850000px;}
.y7d9_c00001{bottom:228.300000px;}
.y6c_c00001{bottom:228.600000px;}
.y2cf_c00001{bottom:228.750000px;}
.y693_c00001{bottom:228.900000px;}
.ybb5_c00001{bottom:229.050000px;}
.y85f_c00001{bottom:229.350000px;}
.ydc3_c00001{bottom:229.500000px;}
.y1aa_c00001{bottom:229.650000px;}
.y114_c00001{bottom:229.800000px;}
.ya4d_c00001{bottom:230.100000px;}
.ydc_c00001{bottom:230.400000px;}
.y538_c00001{bottom:230.700000px;}
.y751_c00001{bottom:230.850000px;}
.y2f1_c00001{bottom:231.000000px;}
.y103e_c00001{bottom:231.150000px;}
.y376_c00001{bottom:231.450000px;}
.ydfd_c00001{bottom:231.600000px;}
.yf71_c00001{bottom:231.750000px;}
.y8a3_c00001{bottom:231.900000px;}
.y8aa_c00001{bottom:232.050000px;}
.y2a6_c00001{bottom:232.200000px;}
.ye7e_c00001{bottom:232.350000px;}
.y3ff_c00001{bottom:232.500000px;}
.y6db_c00001{bottom:232.650000px;}
.yb1c_c00001{bottom:232.800000px;}
.ya9_c00001{bottom:232.950000px;}
.y50b_c00001{bottom:233.100000px;}
.y149_c00001{bottom:233.250000px;}
.y31d_c00001{bottom:233.700000px;}
.yf65_c00001{bottom:234.000000px;}
.y7fa_c00001{bottom:234.300000px;}
.y822_c00001{bottom:234.600000px;}
.y778_c00001{bottom:234.750000px;}
.yca7_c00001{bottom:235.050000px;}
.yec4_c00001{bottom:235.200000px;}
.yde5_c00001{bottom:235.500000px;}
.y64c_c00001{bottom:235.800000px;}
.yeb4_c00001{bottom:235.950000px;}
.y843_c00001{bottom:236.100000px;}
.yba0_c00001{bottom:236.250000px;}
.yc1e_c00001{bottom:236.550000px;}
.y8cf_c00001{bottom:236.850000px;}
.yd3d_c00001{bottom:237.000000px;}
.yd4d_c00001{bottom:237.300000px;}
.yd38_c00001{bottom:237.600000px;}
.yba9_c00001{bottom:237.900000px;}
.y96e_c00001{bottom:238.050000px;}
.ya98_c00001{bottom:238.350000px;}
.ye5b_c00001{bottom:238.650000px;}
.y679_c00001{bottom:238.800000px;}
.y587_c00001{bottom:238.950000px;}
.ye5c_c00001{bottom:239.100000px;}
.y452_c00001{bottom:239.400000px;}
.yd26_c00001{bottom:239.550000px;}
.yd1a_c00001{bottom:239.850000px;}
.yac5_c00001{bottom:240.150000px;}
.y471_c00001{bottom:240.300000px;}
.y914_c00001{bottom:240.450000px;}
.y3a5_c00001{bottom:240.600000px;}
.y7be_c00001{bottom:240.900000px;}
.y93e_c00001{bottom:241.050000px;}
.y3ca_c00001{bottom:241.200000px;}
.ydbb_c00001{bottom:241.350000px;}
.y495_c00001{bottom:241.500000px;}
.y178_c00001{bottom:241.650000px;}
.y36_c00001{bottom:241.950000px;}
.ydb8_c00001{bottom:242.100000px;}
.y1049_c00001{bottom:242.250000px;}
.y88a_c00001{bottom:242.400000px;}
.y7d8_c00001{bottom:242.700000px;}
.ya04_c00001{bottom:243.000000px;}
.y2ce_c00001{bottom:243.150000px;}
.y60c_c00001{bottom:243.300000px;}
.ydb2_c00001{bottom:243.450000px;}
.y1a9_c00001{bottom:244.050000px;}
.y113_c00001{bottom:244.200000px;}
.ya51_c00001{bottom:244.500000px;}
.y6b_c00001{bottom:244.800000px;}
.ydb_c00001{bottom:244.950000px;}
.y2f0_c00001{bottom:245.100000px;}
.y750_c00001{bottom:245.250000px;}
.ya4c_c00001{bottom:245.550000px;}
.y348_c00001{bottom:245.700000px;}
.y6cb_c00001{bottom:245.850000px;}
.ydfc_c00001{bottom:246.000000px;}
.y3fe_c00001{bottom:246.150000px;}
.ydfa_c00001{bottom:246.300000px;}
.y426_c00001{bottom:246.600000px;}
.y8a9_c00001{bottom:246.750000px;}
.y2a5_c00001{bottom:246.900000px;}
.yd81_c00001{bottom:247.050000px;}
.y5da_c00001{bottom:247.200000px;}
.ya8_c00001{bottom:247.350000px;}
.yb1b_c00001{bottom:247.500000px;}
.y6ab_c00001{bottom:247.650000px;}
.y50a_c00001{bottom:247.800000px;}
.y31c_c00001{bottom:248.100000px;}
.yafe_c00001{bottom:248.400000px;}
.y7f9_c00001{bottom:248.700000px;}
.yf05_c00001{bottom:249.000000px;}
.y821_c00001{bottom:249.300000px;}
.y64b_c00001{bottom:249.450000px;}
.yec3_c00001{bottom:249.600000px;}
.ye2a_c00001{bottom:249.900000px;}
.y8f1_c00001{bottom:250.200000px;}
.ye32_c00001{bottom:250.350000px;}
.yfdc_c00001{bottom:250.500000px;}
.yde2_c00001{bottom:250.650000px;}
.y8ce_c00001{bottom:250.950000px;}
.yde6_c00001{bottom:251.250000px;}
.yd3c_c00001{bottom:251.400000px;}
.yd48_c00001{bottom:251.550000px;}
.yd4c_c00001{bottom:251.700000px;}
.yba8_c00001{bottom:252.000000px;}
.y1028_c00001{bottom:252.450000px;}
.ya97_c00001{bottom:252.750000px;}
.yaba_c00001{bottom:253.050000px;}
.y678_c00001{bottom:253.200000px;}
.yf89_c00001{bottom:253.500000px;}
.y451_c00001{bottom:253.800000px;}
.yd19_c00001{bottom:253.950000px;}
.y586_c00001{bottom:254.100000px;}
.y96d_c00001{bottom:254.250000px;}
.y95d_c00001{bottom:254.550000px;}
.ybca_c00001{bottom:254.850000px;}
.y470_c00001{bottom:255.000000px;}
.y3a4_c00001{bottom:255.300000px;}
.yf19_c00001{bottom:255.450000px;}
.y3c9_c00001{bottom:255.600000px;}
.y93d_c00001{bottom:255.750000px;}
.y72d_c00001{bottom:255.900000px;}
.y177_c00001{bottom:256.050000px;}
.y209_c00001{bottom:256.200000px;}
.y35_c00001{bottom:256.350000px;}
.ydb7_c00001{bottom:256.500000px;}
.y1006_c00001{bottom:256.650000px;}
.y913_c00001{bottom:256.800000px;}
.y889_c00001{bottom:257.100000px;}
.y7d7_c00001{bottom:257.400000px;}
.y872_c00001{bottom:257.550000px;}
.y60b_c00001{bottom:257.700000px;}
.y2cd_c00001{bottom:257.850000px;}
.yf8b_c00001{bottom:258.000000px;}
.y70b_c00001{bottom:258.150000px;}
.ydc2_c00001{bottom:258.600000px;}
.yfa6_c00001{bottom:258.750000px;}
.y112_c00001{bottom:258.900000px;}
.yda_c00001{bottom:259.350000px;}
.yfc3_c00001{bottom:259.500000px;}
.y537_c00001{bottom:259.650000px;}
.yffe_c00001{bottom:259.800000px;}
.y2ef_c00001{bottom:259.950000px;}
.yd86_c00001{bottom:260.250000px;}
.yd83_c00001{bottom:260.550000px;}
.y55c_c00001{bottom:260.700000px;}
.y6ca_c00001{bottom:261.000000px;}
.y375_c00001{bottom:261.300000px;}
.y2a4_c00001{bottom:261.450000px;}
.y148_c00001{bottom:261.600000px;}
.yb2e_c00001{bottom:261.750000px;}
.ya7_c00001{bottom:262.050000px;}
.y509_c00001{bottom:262.200000px;}
.ycd7_c00001{bottom:262.500000px;}
.y31b_c00001{bottom:262.800000px;}
.y777_c00001{bottom:263.100000px;}
.y1027_c00001{bottom:263.250000px;}
.y64a_c00001{bottom:263.550000px;}
.y820_c00001{bottom:264.000000px;}
.ye2e_c00001{bottom:264.300000px;}
.yde4_c00001{bottom:264.600000px;}
.yde1_c00001{bottom:265.050000px;}
.y8f0_c00001{bottom:265.350000px;}
.y8cd_c00001{bottom:265.650000px;}
.yd3b_c00001{bottom:265.800000px;}
.yd47_c00001{bottom:265.950000px;}
.yd37_c00001{bottom:266.100000px;}
.yd4b_c00001{bottom:266.250000px;}
.y7f8_c00001{bottom:266.400000px;}
.yef0_c00001{bottom:266.700000px;}
.yaad_c00001{bottom:267.150000px;}
.y677_c00001{bottom:267.300000px;}
.ya03_c00001{bottom:267.450000px;}
.y95c_c00001{bottom:267.900000px;}
.y5b1_c00001{bottom:268.200000px;}
.yd23_c00001{bottom:268.350000px;}
.y450_c00001{bottom:268.500000px;}
.yd18_c00001{bottom:268.650000px;}
.yf0f_c00001{bottom:268.950000px;}
.ya4b_c00001{bottom:269.250000px;}
.y46f_c00001{bottom:269.400000px;}
.y7bd_c00001{bottom:269.700000px;}
.y3a3_c00001{bottom:270.000000px;}
.yf18_c00001{bottom:270.150000px;}
.y3c8_c00001{bottom:270.300000px;}
.y176_c00001{bottom:270.450000px;}
.y208_c00001{bottom:270.600000px;}
.y34_c00001{bottom:270.750000px;}
.y4ba_c00001{bottom:271.500000px;}
.ydb6_c00001{bottom:271.650000px;}
.yff4_c00001{bottom:271.800000px;}
.y871_c00001{bottom:271.950000px;}
.y6a_c00001{bottom:272.100000px;}
.y111_c00001{bottom:272.550000px;}
.ydb1_c00001{bottom:272.850000px;}
.y1a8_c00001{bottom:273.300000px;}
.y74f_c00001{bottom:273.600000px;}
.yf04_c00001{bottom:273.900000px;}
.yd9_c00001{bottom:274.050000px;}
.y2ee_c00001{bottom:274.350000px;}
.y9f1_c00001{bottom:274.650000px;}
.y347_c00001{bottom:274.800000px;}
.y494_c00001{bottom:275.100000px;}
.y3fd_c00001{bottom:275.400000px;}
.y147_c00001{bottom:275.700000px;}
.y6da_c00001{bottom:275.850000px;}
.y8a2_c00001{bottom:276.000000px;}
.ya6_c00001{bottom:276.150000px;}
.yb1a_c00001{bottom:276.300000px;}
.y5f6_c00001{bottom:276.450000px;}
.y5d9_c00001{bottom:276.600000px;}
.y31a_c00001{bottom:276.900000px;}
.y4e4_c00001{bottom:277.200000px;}
.y1036_c00001{bottom:277.500000px;}
.y776_c00001{bottom:277.950000px;}
.yf64_c00001{bottom:278.250000px;}
.yf96_c00001{bottom:278.550000px;}
.y81f_c00001{bottom:278.700000px;}
.ycfc_c00001{bottom:279.000000px;}
.y100c_c00001{bottom:279.300000px;}
.y23f_c00001{bottom:279.450000px;}
.y649_c00001{bottom:279.750000px;}
.y8cc_c00001{bottom:280.050000px;}
.ye95_c00001{bottom:280.200000px;}
.y26c_c00001{bottom:280.500000px;}
.yd46_c00001{bottom:280.650000px;}
.y92b_c00001{bottom:280.800000px;}
.yd4a_c00001{bottom:280.950000px;}
.y9c2_c00001{bottom:281.100000px;}
.y797_c00001{bottom:281.550000px;}
.yfa5_c00001{bottom:281.850000px;}
.y676_c00001{bottom:282.000000px;}
.y96c_c00001{bottom:282.300000px;}
.ya96_c00001{bottom:282.600000px;}
.y44f_c00001{bottom:282.900000px;}
.yd17_c00001{bottom:283.050000px;}
.y72c_c00001{bottom:283.350000px;}
.y95b_c00001{bottom:283.500000px;}
.y7bc_c00001{bottom:283.650000px;}
.y3a2_c00001{bottom:284.100000px;}
.y982_c00001{bottom:284.400000px;}
.yecf_c00001{bottom:284.550000px;}
.y207_c00001{bottom:284.700000px;}
.yfc9_c00001{bottom:284.850000px;}
.y33_c00001{bottom:285.150000px;}
.y4b9_c00001{bottom:285.450000px;}
.y6aa_c00001{bottom:285.900000px;}
.ydb5_c00001{bottom:286.050000px;}
.y97d_c00001{bottom:286.200000px;}
.y870_c00001{bottom:286.650000px;}
.y69_c00001{bottom:286.800000px;}
.y2cc_c00001{bottom:286.950000px;}
.y6fa_c00001{bottom:287.100000px;}
.y1a7_c00001{bottom:287.250000px;}
.y110_c00001{bottom:287.700000px;}
.ydc1_c00001{bottom:288.000000px;}
.yc41_c00001{bottom:288.150000px;}
.yd8_c00001{bottom:288.450000px;}
.y2ed_c00001{bottom:288.750000px;}
.yca6_c00001{bottom:289.050000px;}
.y346_c00001{bottom:289.500000px;}
.y74e_c00001{bottom:289.650000px;}
.y425_c00001{bottom:289.800000px;}
.y55b_c00001{bottom:289.950000px;}
.y146_c00001{bottom:290.100000px;}
.y5d8_c00001{bottom:290.250000px;}
.yf70_c00001{bottom:290.400000px;}
.ya5_c00001{bottom:290.550000px;}
.y8a1_c00001{bottom:290.700000px;}
.y2a3_c00001{bottom:290.850000px;}
.yc04_c00001{bottom:291.000000px;}
.y1013_c00001{bottom:291.150000px;}
.y508_c00001{bottom:291.300000px;}
.y319_c00001{bottom:291.600000px;}
.y775_c00001{bottom:292.350000px;}
.yc2e_c00001{bottom:292.650000px;}
.y81e_c00001{bottom:293.400000px;}
.ye85_c00001{bottom:293.700000px;}
.yde3_c00001{bottom:293.850000px;}
.y648_c00001{bottom:294.150000px;}
.yb9f_c00001{bottom:294.450000px;}
.y23e_c00001{bottom:294.600000px;}
.y8cb_c00001{bottom:294.750000px;}
.y8ef_c00001{bottom:294.900000px;}
.yea6_c00001{bottom:295.050000px;}
.y26b_c00001{bottom:295.200000px;}
.yd45_c00001{bottom:295.350000px;}
.yf95_c00001{bottom:295.500000px;}
.yd49_c00001{bottom:295.650000px;}
.yd36_c00001{bottom:295.950000px;}
.yfea_c00001{bottom:296.250000px;}
.yaac_c00001{bottom:296.550000px;}
.y675_c00001{bottom:296.700000px;}
.y96b_c00001{bottom:297.000000px;}
.y585_c00001{bottom:297.300000px;}
.yd1f_c00001{bottom:297.450000px;}
.y44e_c00001{bottom:297.750000px;}
.y95a_c00001{bottom:297.900000px;}
.y72b_c00001{bottom:298.050000px;}
.yac4_c00001{bottom:298.200000px;}
.ybf4_c00001{bottom:298.350000px;}
.y3a1_c00001{bottom:298.500000px;}
.y46e_c00001{bottom:298.800000px;}
.y981_c00001{bottom:298.950000px;}
.y206_c00001{bottom:299.100000px;}
.y93c_c00001{bottom:299.250000px;}
.y32_c00001{bottom:299.550000px;}
.y1de_c00001{bottom:299.850000px;}
.y175_c00001{bottom:300.000000px;}
.ydb4_c00001{bottom:300.150000px;}
.y6a9_c00001{bottom:300.300000px;}
.y4b8_c00001{bottom:300.600000px;}
.y68_c00001{bottom:300.900000px;}
.y7d6_c00001{bottom:301.050000px;}
.y692_c00001{bottom:301.200000px;}
.y10f_c00001{bottom:301.350000px;}
.y6f9_c00001{bottom:301.500000px;}
.y1a6_c00001{bottom:301.650000px;}
.yc7a_c00001{bottom:301.800000px;}
.ydb0_c00001{bottom:301.950000px;}
.ydc0_c00001{bottom:302.100000px;}
.y85e_c00001{bottom:302.400000px;}
.y74d_c00001{bottom:302.550000px;}
.y100b_c00001{bottom:302.700000px;}
.y842_c00001{bottom:302.850000px;}
.yd7_c00001{bottom:303.150000px;}
.y2ec_c00001{bottom:303.450000px;}
.y345_c00001{bottom:303.600000px;}
.y493_c00001{bottom:303.900000px;}
.y374_c00001{bottom:304.200000px;}
.y145_c00001{bottom:304.500000px;}
.ya4_c00001{bottom:304.950000px;}
.y8a0_c00001{bottom:305.100000px;}
.y318_c00001{bottom:305.250000px;}
.yae1_c00001{bottom:305.400000px;}
.y5d7_c00001{bottom:305.700000px;}
.y507_c00001{bottom:306.000000px;}
.y4e3_c00001{bottom:306.300000px;}
.y774_c00001{bottom:306.750000px;}
.yafd_c00001{bottom:307.050000px;}
.y647_c00001{bottom:307.800000px;}
.ye29_c00001{bottom:308.100000px;}
.yd80_c00001{bottom:308.250000px;}
.yb5e_c00001{bottom:308.550000px;}
.yb64_c00001{bottom:308.700000px;}
.yb9e_c00001{bottom:308.850000px;}
.y23d_c00001{bottom:309.300000px;}
.y8ca_c00001{bottom:309.450000px;}
.yde7_c00001{bottom:309.600000px;}
.yd44_c00001{bottom:309.750000px;}
.y26a_c00001{bottom:309.900000px;}
.y1026_c00001{bottom:310.050000px;}
.yd35_c00001{bottom:310.350000px;}
.y674_c00001{bottom:311.100000px;}
.yaab_c00001{bottom:311.250000px;}
.ya95_c00001{bottom:311.400000px;}
.y1048_c00001{bottom:311.700000px;}
.y584_c00001{bottom:311.850000px;}
.yd1e_c00001{bottom:312.150000px;}
.y44d_c00001{bottom:312.450000px;}
.y959_c00001{bottom:312.600000px;}
.yac3_c00001{bottom:312.900000px;}
.ybf3_c00001{bottom:313.050000px;}
.y205_c00001{bottom:313.200000px;}
.y3a0_c00001{bottom:313.500000px;}
.y31_c00001{bottom:313.650000px;}
.y1dd_c00001{bottom:313.950000px;}
.y980_c00001{bottom:314.250000px;}
.y174_c00001{bottom:314.400000px;}
.y903_c00001{bottom:314.700000px;}
.y4b7_c00001{bottom:315.000000px;}
.y67_c00001{bottom:315.300000px;}
.y86f_c00001{bottom:315.450000px;}
.y691_c00001{bottom:315.600000px;}
.y2cb_c00001{bottom:315.750000px;}
.y6f8_c00001{bottom:315.900000px;}
.y621_c00001{bottom:316.050000px;}
.yc79_c00001{bottom:316.200000px;}
.y1a5_c00001{bottom:316.350000px;}
.yc3d_c00001{bottom:316.500000px;}
.y10e_c00001{bottom:316.800000px;}
.y841_c00001{bottom:317.250000px;}
.yd6_c00001{bottom:317.550000px;}
.y536_c00001{bottom:317.850000px;}
.yffd_c00001{bottom:318.150000px;}
.y344_c00001{bottom:318.300000px;}
.ye01_c00001{bottom:318.600000px;}
.ydf9_c00001{bottom:318.900000px;}
.y144_c00001{bottom:319.050000px;}
.y424_c00001{bottom:319.200000px;}
.ya3_c00001{bottom:319.350000px;}
.yc03_c00001{bottom:319.500000px;}
.y2a2_c00001{bottom:319.650000px;}
.y89f_c00001{bottom:319.800000px;}
.yf72_c00001{bottom:319.950000px;}
.y5d6_c00001{bottom:320.100000px;}
.y506_c00001{bottom:320.400000px;}
.y317_c00001{bottom:320.700000px;}
.yb2d_c00001{bottom:321.000000px;}
.y4e2_c00001{bottom:321.150000px;}
.y773_c00001{bottom:321.450000px;}
.yafc_c00001{bottom:321.750000px;}
.yeef_c00001{bottom:321.900000px;}
.ye30_c00001{bottom:322.200000px;}
.y81d_c00001{bottom:322.500000px;}
.ye28_c00001{bottom:322.650000px;}
.yb5d_c00001{bottom:322.950000px;}
.y646_c00001{bottom:323.250000px;}
.yb63_c00001{bottom:323.400000px;}
.ye8d_c00001{bottom:323.550000px;}
.yf63_c00001{bottom:323.700000px;}
.y8c9_c00001{bottom:323.850000px;}
.y23c_c00001{bottom:324.000000px;}
.yea5_c00001{bottom:324.150000px;}
.y269_c00001{bottom:324.300000px;}
.yd43_c00001{bottom:324.450000px;}
.yd3a_c00001{bottom:324.750000px;}
.yf62_c00001{bottom:325.050000px;}
.yba7_c00001{bottom:325.200000px;}
.yaaa_c00001{bottom:325.350000px;}
.yab9_c00001{bottom:325.500000px;}
.y673_c00001{bottom:325.800000px;}
.ya94_c00001{bottom:326.100000px;}
.y583_c00001{bottom:326.550000px;}
.y46d_c00001{bottom:326.850000px;}
.y5b0_c00001{bottom:327.000000px;}
.y9ea_c00001{bottom:327.150000px;}
.y30_c00001{bottom:327.300000px;}
.yac2_c00001{bottom:327.600000px;}
.ybf2_c00001{bottom:327.750000px;}
.y3fc_c00001{bottom:327.900000px;}
.y39f_c00001{bottom:328.200000px;}
.y204_c00001{bottom:328.350000px;}
.y1dc_c00001{bottom:328.650000px;}
.y173_c00001{bottom:328.800000px;}
.y6a8_c00001{bottom:329.100000px;}
.y902_c00001{bottom:329.400000px;}
.y4b6_c00001{bottom:329.700000px;}
.yf94_c00001{bottom:329.850000px;}
.yc78_c00001{bottom:330.000000px;}
.y888_c00001{bottom:330.150000px;}
.y690_c00001{bottom:330.300000px;}
.y66_c00001{bottom:330.450000px;}
.y6f7_c00001{bottom:330.600000px;}
.yc34_c00001{bottom:330.750000px;}
.y2ca_c00001{bottom:330.900000px;}
.y10d_c00001{bottom:331.200000px;}
.ybb4_c00001{bottom:331.500000px;}
.yd5_c00001{bottom:331.950000px;}
.y2eb_c00001{bottom:332.250000px;}
.y840_c00001{bottom:332.400000px;}
.y492_c00001{bottom:332.550000px;}
.y535_c00001{bottom:332.700000px;}
.y343_c00001{bottom:333.000000px;}
.y6c9_c00001{bottom:333.300000px;}
.yc01_c00001{bottom:333.450000px;}
.y423_c00001{bottom:333.600000px;}
.ya2_c00001{bottom:333.750000px;}
.yb19_c00001{bottom:333.900000px;}
.y2a1_c00001{bottom:334.050000px;}
.y89e_c00001{bottom:334.200000px;}
.y5d5_c00001{bottom:334.350000px;}
.y796_c00001{bottom:334.500000px;}
.y5f5_c00001{bottom:334.800000px;}
.yc2d_c00001{bottom:334.950000px;}
.y772_c00001{bottom:335.100000px;}
.y316_c00001{bottom:335.400000px;}
.y4e1_c00001{bottom:335.550000px;}
.yafb_c00001{bottom:335.850000px;}
.ycf5_c00001{bottom:336.000000px;}
.yf82_c00001{bottom:336.300000px;}
.yc48_c00001{bottom:336.600000px;}
.y81c_c00001{bottom:336.900000px;}
.yb5c_c00001{bottom:337.350000px;}
.y645_c00001{bottom:337.650000px;}
.yb6c_c00001{bottom:337.800000px;}
.ycfa_c00001{bottom:337.950000px;}
.yb62_c00001{bottom:338.100000px;}
.y8c8_c00001{bottom:338.250000px;}
.y23b_c00001{bottom:338.400000px;}
.y268_c00001{bottom:338.550000px;}
.ye94_c00001{bottom:338.700000px;}
.yd42_c00001{bottom:338.850000px;}
.yd34_c00001{bottom:339.150000px;}
.yba6_c00001{bottom:339.900000px;}
.yaa9_c00001{bottom:340.050000px;}
.yfa4_c00001{bottom:340.200000px;}
.y672_c00001{bottom:340.500000px;}
.ya93_c00001{bottom:340.800000px;}
.y582_c00001{bottom:340.950000px;}
.yf81_c00001{bottom:341.250000px;}
.y5af_c00001{bottom:341.400000px;}
.y44c_c00001{bottom:341.700000px;}
.y9e9_c00001{bottom:341.850000px;}
.ybad_c00001{bottom:342.000000px;}
.ybf1_c00001{bottom:342.150000px;}
.y7bb_c00001{bottom:342.300000px;}
.y39e_c00001{bottom:342.600000px;}
.y2f_c00001{bottom:342.750000px;}
.y1db_c00001{bottom:343.050000px;}
.y172_c00001{bottom:343.200000px;}
.y3c7_c00001{bottom:343.350000px;}
.y6a7_c00001{bottom:343.500000px;}
.y65_c00001{bottom:343.800000px;}
.y1a4_c00001{bottom:344.100000px;}
.y9f0_c00001{bottom:344.250000px;}
.y7d5_c00001{bottom:344.550000px;}
.yc77_c00001{bottom:344.700000px;}
.y620_c00001{bottom:344.850000px;}
.y6f6_c00001{bottom:345.000000px;}
.y60a_c00001{bottom:345.300000px;}
.y68f_c00001{bottom:345.450000px;}
.y2c9_c00001{bottom:345.600000px;}
.y10c_c00001{bottom:345.900000px;}
.yd4_c00001{bottom:346.350000px;}
.y2ea_c00001{bottom:346.650000px;}
.y83f_c00001{bottom:346.800000px;}
.y1035_c00001{bottom:346.950000px;}
.yf93_c00001{bottom:347.100000px;}
.y342_c00001{bottom:347.400000px;}
.y55a_c00001{bottom:347.700000px;}
.yc00_c00001{bottom:347.850000px;}
.y422_c00001{bottom:348.000000px;}
.y143_c00001{bottom:348.150000px;}
.ya1_c00001{bottom:348.450000px;}
.yc02_c00001{bottom:348.600000px;}
.yf6e_c00001{bottom:348.750000px;}
.y89d_c00001{bottom:348.900000px;}
.yb18_c00001{bottom:349.050000px;}
.y2a0_c00001{bottom:349.200000px;}
.yc2c_c00001{bottom:349.350000px;}
.ye7d_c00001{bottom:349.500000px;}
.y92a_c00001{bottom:349.650000px;}
.y315_c00001{bottom:349.800000px;}
.y795_c00001{bottom:350.100000px;}
.y4e0_c00001{bottom:350.250000px;}
.y505_c00001{bottom:350.550000px;}
.ycf4_c00001{bottom:350.700000px;}
.ycf8_c00001{bottom:351.000000px;}
.y81b_c00001{bottom:351.300000px;}
.y644_c00001{bottom:351.750000px;}
.y8ee_c00001{bottom:352.050000px;}
.yeb3_c00001{bottom:352.350000px;}
.yb61_c00001{bottom:352.500000px;}
.yb9d_c00001{bottom:352.800000px;}
.y8c7_c00001{bottom:352.950000px;}
.y23a_c00001{bottom:353.100000px;}
.yea4_c00001{bottom:353.250000px;}
.yd41_c00001{bottom:353.550000px;}
.y267_c00001{bottom:353.700000px;}
.yd33_c00001{bottom:353.850000px;}
.yba5_c00001{bottom:354.300000px;}
.y1001_c00001{bottom:354.600000px;}
.yaa8_c00001{bottom:354.750000px;}
.y671_c00001{bottom:354.900000px;}
.ya92_c00001{bottom:355.200000px;}
.yab8_c00001{bottom:355.350000px;}
.y581_c00001{bottom:355.650000px;}
.y5ae_c00001{bottom:356.100000px;}
.y44b_c00001{bottom:356.400000px;}
.y9e8_c00001{bottom:356.550000px;}
.yac1_c00001{bottom:356.700000px;}
.ybf0_c00001{bottom:356.850000px;}
.y39d_c00001{bottom:357.000000px;}
.y2e_c00001{bottom:357.150000px;}
.y72a_c00001{bottom:357.450000px;}
.y3c6_c00001{bottom:357.750000px;}
.y171_c00001{bottom:357.900000px;}
.y103d_c00001{bottom:358.050000px;}
.y1da_c00001{bottom:358.200000px;}
.y9ef_c00001{bottom:358.350000px;}
.ya02_c00001{bottom:358.500000px;}
.y6a6_c00001{bottom:358.650000px;}
.y64_c00001{bottom:358.950000px;}
.y86e_c00001{bottom:359.100000px;}
.y887_c00001{bottom:359.250000px;}
.yc76_c00001{bottom:359.400000px;}
.y2c8_c00001{bottom:359.700000px;}
.y68e_c00001{bottom:359.850000px;}
.y10b_c00001{bottom:360.000000px;}
.ybc9_c00001{bottom:360.300000px;}
.y2e9_c00001{bottom:360.450000px;}
.y74c_c00001{bottom:360.750000px;}
.yd3_c00001{bottom:360.900000px;}
.y85d_c00001{bottom:361.050000px;}
.y83e_c00001{bottom:361.200000px;}
.y341_c00001{bottom:361.800000px;}
.y559_c00001{bottom:362.100000px;}
.ybff_c00001{bottom:362.550000px;}
.ya0_c00001{bottom:362.700000px;}
.y142_c00001{bottom:362.850000px;}
.y421_c00001{bottom:363.150000px;}
.y89c_c00001{bottom:363.300000px;}
.yb17_c00001{bottom:363.450000px;}
.y373_c00001{bottom:363.600000px;}
.y29f_c00001{bottom:363.900000px;}
.y929_c00001{bottom:364.050000px;}
.y314_c00001{bottom:364.200000px;}
.yf92_c00001{bottom:364.350000px;}
.y794_c00001{bottom:364.500000px;}
.yc1b_c00001{bottom:364.650000px;}
.y771_c00001{bottom:364.950000px;}
.y4df_c00001{bottom:365.100000px;}
.y504_c00001{bottom:365.250000px;}
.y3fb_c00001{bottom:365.400000px;}
.ycf7_c00001{bottom:365.700000px;}
.y81a_c00001{bottom:366.000000px;}
.yec2_c00001{bottom:366.150000px;}
.y643_c00001{bottom:366.450000px;}
.yb6b_c00001{bottom:366.600000px;}
.yfe0_c00001{bottom:366.750000px;}
.yb60_c00001{bottom:366.900000px;}
.yeb2_c00001{bottom:367.050000px;}
.yb5b_c00001{bottom:367.200000px;}
.yda0_c00001{bottom:367.500000px;}
.ye4a_c00001{bottom:367.650000px;}
.y239_c00001{bottom:367.800000px;}
.y8ed_c00001{bottom:367.950000px;}
.y8c6_c00001{bottom:368.100000px;}
.yd32_c00001{bottom:368.250000px;}
.y266_c00001{bottom:368.400000px;}
.ye49_c00001{bottom:368.700000px;}
.y97f_c00001{bottom:369.000000px;}
.y670_c00001{bottom:369.300000px;}
.yaa7_c00001{bottom:369.450000px;}
.y1051_c00001{bottom:369.750000px;}
.ya91_c00001{bottom:369.900000px;}
.y580_c00001{bottom:370.050000px;}
.y9a8_c00001{bottom:370.200000px;}
.yab7_c00001{bottom:370.350000px;}
.y9e7_c00001{bottom:370.650000px;}
.y5ad_c00001{bottom:370.800000px;}
.ycca_c00001{bottom:371.100000px;}
.y7ba_c00001{bottom:371.250000px;}
.y39c_c00001{bottom:371.400000px;}
.y2d_c00001{bottom:371.550000px;}
.y170_c00001{bottom:372.300000px;}
.y3c5_c00001{bottom:372.450000px;}
.y912_c00001{bottom:372.600000px;}
.y1d9_c00001{bottom:372.900000px;}
.y9ee_c00001{bottom:373.050000px;}
.y63_c00001{bottom:373.350000px;}
.y44a_c00001{bottom:373.650000px;}
.y86d_c00001{bottom:373.800000px;}
.y1a3_c00001{bottom:374.100000px;}
.y68d_c00001{bottom:374.250000px;}
.y2c7_c00001{bottom:374.400000px;}
.yc33_c00001{bottom:374.550000px;}
.y729_c00001{bottom:374.700000px;}
.y10a_c00001{bottom:375.150000px;}
.yd2_c00001{bottom:375.300000px;}
.yc40_c00001{bottom:375.450000px;}
.y85c_c00001{bottom:375.600000px;}
.y83d_c00001{bottom:375.900000px;}
.yff9_c00001{bottom:376.200000px;}
.y340_c00001{bottom:376.500000px;}
.y534_c00001{bottom:376.650000px;}
.yfc8_c00001{bottom:376.800000px;}
.ydf8_c00001{bottom:376.950000px;}
.y9f_c00001{bottom:377.100000px;}
.y141_c00001{bottom:377.250000px;}
.ydfb_c00001{bottom:377.400000px;}
.y491_c00001{bottom:377.550000px;}
.y372_c00001{bottom:377.700000px;}
.y5f4_c00001{bottom:378.000000px;}
.yb16_c00001{bottom:378.150000px;}
.y29e_c00001{bottom:378.300000px;}
.y928_c00001{bottom:378.450000px;}
.yf61_c00001{bottom:378.750000px;}
.y793_c00001{bottom:378.900000px;}
.yafa_c00001{bottom:379.050000px;}
.yb2c_c00001{bottom:379.200000px;}
.y770_c00001{bottom:379.350000px;}
.yc1a_c00001{bottom:379.500000px;}
.y4de_c00001{bottom:379.800000px;}
.y503_c00001{bottom:379.950000px;}
.y3fa_c00001{bottom:380.100000px;}
.ycf6_c00001{bottom:380.550000px;}
.y105e_c00001{bottom:380.850000px;}
.y642_c00001{bottom:381.150000px;}
.yb5a_c00001{bottom:381.300000px;}
.yeb1_c00001{bottom:381.450000px;}
.yb5f_c00001{bottom:381.600000px;}
.y238_c00001{bottom:381.900000px;}
.y8ec_c00001{bottom:382.050000px;}
.ycfb_c00001{bottom:382.350000px;}
.ya27_c00001{bottom:382.500000px;}
.yd40_c00001{bottom:382.650000px;}
.y8c5_c00001{bottom:382.800000px;}
.y265_c00001{bottom:383.100000px;}
.yd31_c00001{bottom:383.400000px;}
.y100f_c00001{bottom:383.700000px;}
.ye46_c00001{bottom:383.850000px;}
.y66f_c00001{bottom:384.000000px;}
.yaa6_c00001{bottom:384.150000px;}
.ya90_c00001{bottom:384.300000px;}
.ycd1_c00001{bottom:384.450000px;}
.y9a7_c00001{bottom:384.600000px;}
.yab6_c00001{bottom:384.750000px;}
.y5ac_c00001{bottom:384.900000px;}
.y57f_c00001{bottom:385.050000px;}
.y958_c00001{bottom:385.200000px;}
.y9e6_c00001{bottom:385.800000px;}
.y2c_c00001{bottom:385.950000px;}
.y39b_c00001{bottom:386.100000px;}
.y46c_c00001{bottom:386.250000px;}
.y3c4_c00001{bottom:386.550000px;}
.y16f_c00001{bottom:386.700000px;}
.y1d8_c00001{bottom:387.000000px;}
.y911_c00001{bottom:387.300000px;}
.y7d4_c00001{bottom:387.750000px;}
.y62_c00001{bottom:388.050000px;}
.y4b5_c00001{bottom:388.200000px;}
.y886_c00001{bottom:388.350000px;}
.y2c6_c00001{bottom:388.500000px;}
.y1a2_c00001{bottom:388.800000px;}
.y68c_c00001{bottom:388.950000px;}
.y609_c00001{bottom:389.100000px;}
.y61f_c00001{bottom:389.250000px;}
.y109_c00001{bottom:389.550000px;}
.y2e8_c00001{bottom:389.850000px;}
.yd1_c00001{bottom:390.000000px;}
.y83c_c00001{bottom:390.300000px;}
.yfd0_c00001{bottom:390.600000px;}
.y33f_c00001{bottom:390.900000px;}
.y533_c00001{bottom:391.050000px;}
.y558_c00001{bottom:391.350000px;}
.y9e_c00001{bottom:391.500000px;}
.y140_c00001{bottom:391.650000px;}
.yeeb_c00001{bottom:391.800000px;}
.y6c8_c00001{bottom:392.100000px;}
.y490_c00001{bottom:392.250000px;}
.y371_c00001{bottom:392.400000px;}
.yb15_c00001{bottom:392.550000px;}
.y420_c00001{bottom:392.700000px;}
.y927_c00001{bottom:392.850000px;}
.y5d4_c00001{bottom:393.000000px;}
.y29d_c00001{bottom:393.150000px;}
.yc1d_c00001{bottom:393.300000px;}
.y76f_c00001{bottom:393.450000px;}
.y792_c00001{bottom:393.600000px;}
.yc19_c00001{bottom:393.900000px;}
.yaf9_c00001{bottom:394.200000px;}
.y449_c00001{bottom:394.350000px;}
.yeee_c00001{bottom:394.500000px;}
.yeff_c00001{bottom:394.650000px;}
.y3f9_c00001{bottom:394.800000px;}
.y819_c00001{bottom:394.950000px;}
.y641_c00001{bottom:395.250000px;}
.ybf5_c00001{bottom:395.550000px;}
.ye27_c00001{bottom:395.700000px;}
.yb59_c00001{bottom:396.000000px;}
.yeb0_c00001{bottom:396.150000px;}
.yea3_c00001{bottom:396.450000px;}
.y8eb_c00001{bottom:396.750000px;}
.ya26_c00001{bottom:396.900000px;}
.y264_c00001{bottom:397.050000px;}
.y237_c00001{bottom:397.200000px;}
.y97e_c00001{bottom:397.500000px;}
.ye48_c00001{bottom:397.800000px;}
.ye4d_c00001{bottom:397.950000px;}
.yfa0_c00001{bottom:398.100000px;}
.y66e_c00001{bottom:398.400000px;}
.yfa3_c00001{bottom:398.550000px;}
.yf91_c00001{bottom:398.700000px;}
.ycd6_c00001{bottom:398.850000px;}
.ya8f_c00001{bottom:399.000000px;}
.y5ab_c00001{bottom:399.150000px;}
.y9a6_c00001{bottom:399.300000px;}
.y957_c00001{bottom:399.600000px;}
.y57e_c00001{bottom:399.750000px;}
.yb9c_c00001{bottom:399.900000px;}
.y9e5_c00001{bottom:400.200000px;}
.y7b9_c00001{bottom:400.350000px;}
.y39a_c00001{bottom:400.500000px;}
.y2b_c00001{bottom:400.650000px;}
.yac0_c00001{bottom:400.800000px;}
.y93b_c00001{bottom:401.100000px;}
.y3c3_c00001{bottom:401.250000px;}
.y16e_c00001{bottom:401.400000px;}
.y9ed_c00001{bottom:401.700000px;}
.yfe9_c00001{bottom:401.850000px;}
.y61_c00001{bottom:402.150000px;}
.y728_c00001{bottom:402.450000px;}
.y901_c00001{bottom:402.600000px;}
.ydb3_c00001{bottom:402.750000px;}
.y1a1_c00001{bottom:402.900000px;}
.y6f5_c00001{bottom:403.200000px;}
.y7f7_c00001{bottom:403.500000px;}
.y608_c00001{bottom:403.650000px;}
.y108_c00001{bottom:403.950000px;}
.ybc8_c00001{bottom:404.250000px;}
.yd0_c00001{bottom:404.400000px;}
.y83b_c00001{bottom:404.700000px;}
.y103c_c00001{bottom:404.850000px;}
.yba4_c00001{bottom:405.000000px;}
.ycf9_c00001{bottom:405.300000px;}
.y532_c00001{bottom:405.450000px;}
.ybb3_c00001{bottom:405.750000px;}
.y9d_c00001{bottom:405.900000px;}
.y33e_c00001{bottom:406.050000px;}
.y13f_c00001{bottom:406.500000px;}
.y41f_c00001{bottom:406.800000px;}
.y48f_c00001{bottom:406.950000px;}
.y29c_c00001{bottom:407.100000px;}
.y313_c00001{bottom:407.250000px;}
.y5d3_c00001{bottom:407.400000px;}
.y926_c00001{bottom:407.550000px;}
.yf6f_c00001{bottom:407.850000px;}
.y791_c00001{bottom:408.000000px;}
.y5f3_c00001{bottom:408.300000px;}
.y76e_c00001{bottom:408.450000px;}
.ya01_c00001{bottom:408.600000px;}
.y502_c00001{bottom:408.750000px;}
.yeed_c00001{bottom:408.900000px;}
.y448_c00001{bottom:409.050000px;}
.y818_c00001{bottom:409.350000px;}
.y3f8_c00001{bottom:409.500000px;}
.yf9c_c00001{bottom:409.650000px;}
.yf60_c00001{bottom:410.100000px;}
.y640_c00001{bottom:410.400000px;}
.yeaf_c00001{bottom:410.550000px;}
.yb58_c00001{bottom:410.700000px;}
.y8ea_c00001{bottom:411.150000px;}
.yd9f_c00001{bottom:411.450000px;}
.ya25_c00001{bottom:411.600000px;}
.y236_c00001{bottom:411.900000px;}
.y263_c00001{bottom:412.200000px;}
.ye4c_c00001{bottom:412.350000px;}
.y66d_c00001{bottom:412.500000px;}
.yfdf_c00001{bottom:412.950000px;}
.ycd0_c00001{bottom:413.250000px;}
.y5aa_c00001{bottom:413.550000px;}
.ya8e_c00001{bottom:413.700000px;}
.yab5_c00001{bottom:413.850000px;}
.y9a5_c00001{bottom:414.000000px;}
.y7b8_c00001{bottom:414.300000px;}
.y57d_c00001{bottom:414.450000px;}
.y956_c00001{bottom:414.600000px;}
.ycc7_c00001{bottom:414.750000px;}
.y399_c00001{bottom:414.900000px;}
.y2a_c00001{bottom:415.050000px;}
.yabf_c00001{bottom:415.200000px;}
.y910_c00001{bottom:415.350000px;}
.y93a_c00001{bottom:415.500000px;}
.y3c2_c00001{bottom:415.650000px;}
.y16d_c00001{bottom:415.800000px;}
.yd52_c00001{bottom:416.100000px;}
.y103b_c00001{bottom:416.400000px;}
.y1d7_c00001{bottom:416.550000px;}
.y60_c00001{bottom:416.850000px;}
.y900_c00001{bottom:417.000000px;}
.y86c_c00001{bottom:417.300000px;}
.y6f4_c00001{bottom:417.600000px;}
.y7d3_c00001{bottom:417.750000px;}
.y70a_c00001{bottom:417.900000px;}
.y68b_c00001{bottom:418.050000px;}
.yc3c_c00001{bottom:418.200000px;}
.y607_c00001{bottom:418.350000px;}
.y107_c00001{bottom:418.650000px;}
.y2e7_c00001{bottom:418.800000px;}
.y85b_c00001{bottom:418.950000px;}
.ycf_c00001{bottom:419.100000px;}
.y1a0_c00001{bottom:419.400000px;}
.yc3f_c00001{bottom:419.700000px;}
.y531_c00001{bottom:420.150000px;}
.y9c_c00001{bottom:420.300000px;}
.y557_c00001{bottom:420.450000px;}
.y13e_c00001{bottom:420.900000px;}
.y370_c00001{bottom:421.200000px;}
.yeea_c00001{bottom:421.350000px;}
.y41e_c00001{bottom:421.500000px;}
.yc2b_c00001{bottom:421.800000px;}
.y312_c00001{bottom:421.950000px;}
.y29b_c00001{bottom:422.100000px;}
.ybfe_c00001{bottom:422.250000px;}
.y790_c00001{bottom:422.400000px;}
.y76d_c00001{bottom:422.550000px;}
.yc18_c00001{bottom:422.700000px;}
.yffc_c00001{bottom:423.000000px;}
.y33d_c00001{bottom:423.300000px;}
.y501_c00001{bottom:423.450000px;}
.yf03_c00001{bottom:423.600000px;}
.y447_c00001{bottom:423.750000px;}
.y89b_c00001{bottom:424.050000px;}
.y3f7_c00001{bottom:424.200000px;}
.yfde_c00001{bottom:424.800000px;}
.y63f_c00001{bottom:425.100000px;}
.yec1_c00001{bottom:425.400000px;}
.y203_c00001{bottom:425.550000px;}
.yc8d_c00001{bottom:425.700000px;}
.y66c_c00001{bottom:425.850000px;}
.y235_c00001{bottom:426.300000px;}
.ya35_c00001{bottom:426.600000px;}
.y262_c00001{bottom:426.900000px;}
.ye4b_c00001{bottom:427.050000px;}
.ye45_c00001{bottom:427.350000px;}
.y1047_c00001{bottom:427.650000px;}
.y1034_c00001{bottom:427.950000px;}
.yccf_c00001{bottom:428.100000px;}
.ya8d_c00001{bottom:428.400000px;}
.yaa5_c00001{bottom:428.550000px;}
.y955_c00001{bottom:428.700000px;}
.y57c_c00001{bottom:428.850000px;}
.ycc6_c00001{bottom:429.150000px;}
.y398_c00001{bottom:429.300000px;}
.y5a9_c00001{bottom:429.450000px;}
.y46b_c00001{bottom:429.750000px;}
.y29_c00001{bottom:429.900000px;}
.y9ec_c00001{bottom:430.200000px;}
.y16c_c00001{bottom:430.500000px;}
.y3c1_c00001{bottom:430.800000px;}
.yd51_c00001{bottom:430.950000px;}
.y5f_c00001{bottom:431.250000px;}
.y7d2_c00001{bottom:431.400000px;}
.y885_c00001{bottom:431.550000px;}
.y8ff_c00001{bottom:431.700000px;}
.y90f_c00001{bottom:431.850000px;}
.y4b4_c00001{bottom:432.000000px;}
.y709_c00001{bottom:432.300000px;}
.y68a_c00001{bottom:432.450000px;}
.y996_c00001{bottom:432.600000px;}
.y2c5_c00001{bottom:432.750000px;}
.y7f6_c00001{bottom:432.900000px;}
.y606_c00001{bottom:433.050000px;}
.y2e6_c00001{bottom:433.200000px;}
.y106_c00001{bottom:433.350000px;}
.yce_c00001{bottom:433.500000px;}
.yfc1_c00001{bottom:433.800000px;}
.y83a_c00001{bottom:434.100000px;}
.ye7c_c00001{bottom:434.550000px;}
.y530_c00001{bottom:434.700000px;}
.y74b_c00001{bottom:434.850000px;}
.y9b_c00001{bottom:435.000000px;}
.y1000_c00001{bottom:435.300000px;}
.y13d_c00001{bottom:435.600000px;}
.yee9_c00001{bottom:435.750000px;}
.yc47_c00001{bottom:435.900000px;}
.yeec_c00001{bottom:436.050000px;}
.y41d_c00001{bottom:436.200000px;}
.y6c7_c00001{bottom:436.350000px;}
.y311_c00001{bottom:436.650000px;}
.y29a_c00001{bottom:436.800000px;}
.yc2a_c00001{bottom:436.950000px;}
.y78f_c00001{bottom:437.100000px;}
.yc1c_c00001{bottom:437.400000px;}
.y76c_c00001{bottom:437.700000px;}
.yb2b_c00001{bottom:437.850000px;}
.yf02_c00001{bottom:438.000000px;}
.y446_c00001{bottom:438.150000px;}
.y4dd_c00001{bottom:438.450000px;}
.y3f6_c00001{bottom:438.900000px;}
.y63e_c00001{bottom:439.050000px;}
.ydf7_c00001{bottom:439.200000px;}
.yb67_c00001{bottom:439.500000px;}
.yeae_c00001{bottom:439.800000px;}
.yb57_c00001{bottom:439.950000px;}
.yb6a_c00001{bottom:440.100000px;}
.y202_c00001{bottom:440.250000px;}
.yf0e_c00001{bottom:440.400000px;}
.y8e9_c00001{bottom:440.550000px;}
.y234_c00001{bottom:440.700000px;}
.y8c4_c00001{bottom:441.000000px;}
.ye47_c00001{bottom:441.300000px;}
.y261_c00001{bottom:441.750000px;}
.yf5f_c00001{bottom:442.050000px;}
.ycd5_c00001{bottom:442.500000px;}
.y5a8_c00001{bottom:442.800000px;}
.yaa4_c00001{bottom:442.950000px;}
.y9a4_c00001{bottom:443.100000px;}
.y57b_c00001{bottom:443.250000px;}
.ycc5_c00001{bottom:443.550000px;}
.y46a_c00001{bottom:443.850000px;}
.y397_c00001{bottom:444.000000px;}
.y7b7_c00001{bottom:444.300000px;}
.y28_c00001{bottom:444.600000px;}
.y16b_c00001{bottom:444.900000px;}
.y5e_c00001{bottom:445.350000px;}
.yd50_c00001{bottom:445.650000px;}
.y884_c00001{bottom:445.950000px;}
.y6a5_c00001{bottom:446.100000px;}
.y86b_c00001{bottom:446.400000px;}
.y6f3_c00001{bottom:446.550000px;}
.y4b3_c00001{bottom:446.700000px;}
.y19f_c00001{bottom:446.850000px;}
.y689_c00001{bottom:447.150000px;}
.y2c4_c00001{bottom:447.300000px;}
.y105_c00001{bottom:447.450000px;}
.y9bf_c00001{bottom:447.600000px;}
.y995_c00001{bottom:447.750000px;}
.ycd_c00001{bottom:447.900000px;}
.y99b_c00001{bottom:448.200000px;}
.y839_c00001{bottom:448.500000px;}
.y74a_c00001{bottom:448.950000px;}
.y52f_c00001{bottom:449.100000px;}
.y1020_c00001{bottom:449.250000px;}
.y9a_c00001{bottom:449.400000px;}
.y13c_c00001{bottom:449.700000px;}
.y36f_c00001{bottom:450.000000px;}
.y556_c00001{bottom:450.300000px;}
.yee8_c00001{bottom:450.450000px;}
.y41c_c00001{bottom:450.600000px;}
.y6c6_c00001{bottom:450.750000px;}
.y5f2_c00001{bottom:451.050000px;}
.y299_c00001{bottom:451.200000px;}
.yae0_c00001{bottom:451.350000px;}
.y48e_c00001{bottom:451.500000px;}
.y76b_c00001{bottom:451.800000px;}
.yaf8_c00001{bottom:452.100000px;}
.yb14_c00001{bottom:452.250000px;}
.y500_c00001{bottom:452.550000px;}
.yf01_c00001{bottom:452.700000px;}
.y445_c00001{bottom:452.850000px;}
.y3f5_c00001{bottom:453.000000px;}
.y100a_c00001{bottom:453.300000px;}
.y63d_c00001{bottom:453.750000px;}
.yb66_c00001{bottom:453.900000px;}
.yb56_c00001{bottom:454.350000px;}
.yead_c00001{bottom:454.500000px;}
.yc92_c00001{bottom:454.650000px;}
.yb69_c00001{bottom:454.800000px;}
.y8e8_c00001{bottom:454.950000px;}
.ya24_c00001{bottom:455.100000px;}
.y233_c00001{bottom:455.400000px;}
.ya34_c00001{bottom:455.700000px;}
.y66b_c00001{bottom:456.150000px;}
.y9eb_c00001{bottom:456.450000px;}
.yfa2_c00001{bottom:456.600000px;}
.yfc0_c00001{bottom:456.900000px;}
.yaa3_c00001{bottom:457.050000px;}
.ycc9_c00001{bottom:457.200000px;}
.y954_c00001{bottom:457.350000px;}
.ya8c_c00001{bottom:457.500000px;}
.yab4_c00001{bottom:457.650000px;}
.y57a_c00001{bottom:457.950000px;}
.y5a7_c00001{bottom:458.250000px;}
.y469_c00001{bottom:458.550000px;}
.y27_c00001{bottom:458.700000px;}
.yabe_c00001{bottom:459.000000px;}
.y16a_c00001{bottom:459.300000px;}
.y5d_c00001{bottom:459.750000px;}
.y1d6_c00001{bottom:460.050000px;}
.y90e_c00001{bottom:460.350000px;}
.y9b2_c00001{bottom:460.500000px;}
.y4b2_c00001{bottom:460.800000px;}
.y883_c00001{bottom:461.100000px;}
.y6f2_c00001{bottom:461.250000px;}
.ydaf_c00001{bottom:461.400000px;}
.y19e_c00001{bottom:461.550000px;}
.y7f5_c00001{bottom:461.700000px;}
.y104_c00001{bottom:461.850000px;}
.y2c3_c00001{bottom:462.000000px;}
.yf7a_c00001{bottom:462.150000px;}
.y9be_c00001{bottom:462.300000px;}
.y99a_c00001{bottom:462.600000px;}
.y838_c00001{bottom:462.900000px;}
.y85a_c00001{bottom:463.050000px;}
.ycc_c00001{bottom:463.200000px;}
.y97c_c00001{bottom:463.350000px;}
.y52e_c00001{bottom:463.500000px;}
.y749_c00001{bottom:463.650000px;}
.y99_c00001{bottom:463.800000px;}
.y13b_c00001{bottom:464.100000px;}
.y33c_c00001{bottom:464.400000px;}
.yc46_c00001{bottom:464.700000px;}
.y6c5_c00001{bottom:464.850000px;}
.y555_c00001{bottom:465.000000px;}
.y89a_c00001{bottom:465.150000px;}
.y298_c00001{bottom:465.300000px;}
.y36e_c00001{bottom:465.450000px;}
.y5d2_c00001{bottom:465.600000px;}
.y5f1_c00001{bottom:465.750000px;}
.y310_c00001{bottom:465.900000px;}
.y76a_c00001{bottom:466.200000px;}
.ye5a_c00001{bottom:466.500000px;}
.yb13_c00001{bottom:466.650000px;}
.yaf7_c00001{bottom:466.800000px;}
.yefe_c00001{bottom:466.950000px;}
.y4dc_c00001{bottom:467.250000px;}
.yf00_c00001{bottom:467.400000px;}
.yf90_c00001{bottom:467.550000px;}
.y3f4_c00001{bottom:467.700000px;}
.yca2_c00001{bottom:468.000000px;}
.y817_c00001{bottom:468.150000px;}
.y63c_c00001{bottom:468.450000px;}
.yb65_c00001{bottom:468.750000px;}
.y201_c00001{bottom:469.050000px;}
.yb68_c00001{bottom:469.200000px;}
.y8e7_c00001{bottom:469.350000px;}
.y232_c00001{bottom:469.500000px;}
.y8c3_c00001{bottom:469.800000px;}
.ya33_c00001{bottom:470.100000px;}
.ye8c_c00001{bottom:470.250000px;}
.ya4a_c00001{bottom:470.400000px;}
.ye90_c00001{bottom:470.550000px;}
.y260_c00001{bottom:470.850000px;}
.yfdb_c00001{bottom:471.300000px;}
.yaa2_c00001{bottom:471.750000px;}
.y5a6_c00001{bottom:471.900000px;}
.yab3_c00001{bottom:472.050000px;}
.ycc4_c00001{bottom:472.350000px;}
.y579_c00001{bottom:472.650000px;}
.y396_c00001{bottom:472.800000px;}
.y7b6_c00001{bottom:473.100000px;}
.y468_c00001{bottom:473.250000px;}
.y26_c00001{bottom:473.400000px;}
.y169_c00001{bottom:473.700000px;}
.y1d5_c00001{bottom:474.150000px;}
.yb91_c00001{bottom:474.450000px;}
.y5c_c00001{bottom:474.600000px;}
.y7d1_c00001{bottom:474.900000px;}
.y90d_c00001{bottom:475.050000px;}
.y4b1_c00001{bottom:475.200000px;}
.y6a4_c00001{bottom:475.500000px;}
.y6f1_c00001{bottom:475.650000px;}
.y19d_c00001{bottom:475.950000px;}
.y7f4_c00001{bottom:476.100000px;}
.y103_c00001{bottom:476.250000px;}
.y9bd_c00001{bottom:476.400000px;}
.y2c2_c00001{bottom:476.700000px;}
.y999_c00001{bottom:477.000000px;}
.ydbf_c00001{bottom:477.150000px;}
.y837_c00001{bottom:477.300000px;}
.ycb_c00001{bottom:477.600000px;}
.y859_c00001{bottom:477.750000px;}
.y33b_c00001{bottom:478.050000px;}
.y98_c00001{bottom:478.200000px;}
.y748_c00001{bottom:478.350000px;}
.y97b_c00001{bottom:478.500000px;}
.y13a_c00001{bottom:478.800000px;}
.y36d_c00001{bottom:479.100000px;}
.y6c4_c00001{bottom:479.250000px;}
.y41b_c00001{bottom:479.400000px;}
.yfba_c00001{bottom:479.550000px;}
.y97a_c00001{bottom:479.700000px;}
.yb9b_c00001{bottom:479.850000px;}
.y297_c00001{bottom:480.000000px;}
.y48d_c00001{bottom:480.150000px;}
.y30f_c00001{bottom:480.300000px;}
.y5f0_c00001{bottom:480.450000px;}
.y78e_c00001{bottom:480.600000px;}
.yd16_c00001{bottom:480.900000px;}
.yaf6_c00001{bottom:481.200000px;}
.yb12_c00001{bottom:481.350000px;}
.y444_c00001{bottom:481.650000px;}
.y4db_c00001{bottom:481.800000px;}
.y3f3_c00001{bottom:482.100000px;}
.yfda_c00001{bottom:482.700000px;}
.y816_c00001{bottom:482.850000px;}
.y63b_c00001{bottom:483.150000px;}
.yc9a_c00001{bottom:483.300000px;}
.y200_c00001{bottom:483.450000px;}
.yea2_c00001{bottom:483.600000px;}
.yd6e_c00001{bottom:483.750000px;}
.ya23_c00001{bottom:483.900000px;}
.y8e6_c00001{bottom:484.050000px;}
.ya41_c00001{bottom:484.200000px;}
.y4ff_c00001{bottom:484.500000px;}
.y231_c00001{bottom:484.650000px;}
.y1060_c00001{bottom:484.800000px;}
.ye8b_c00001{bottom:484.950000px;}
.y1009_c00001{bottom:485.250000px;}
.y103a_c00001{bottom:485.550000px;}
.y1033_c00001{bottom:485.700000px;}
.y104c_c00001{bottom:486.000000px;}
.yaa1_c00001{bottom:486.150000px;}
.yf80_c00001{bottom:486.300000px;}
.yab2_c00001{bottom:486.450000px;}
.y578_c00001{bottom:486.750000px;}
.y9a3_c00001{bottom:487.050000px;}
.y395_c00001{bottom:487.200000px;}
.y467_c00001{bottom:487.350000px;}
.y7b5_c00001{bottom:487.500000px;}
.yabd_c00001{bottom:487.800000px;}
.yb8b_c00001{bottom:487.950000px;}
.y1d4_c00001{bottom:488.100000px;}
.ycf3_c00001{bottom:488.250000px;}
.y90c_c00001{bottom:488.400000px;}
.y168_c00001{bottom:488.550000px;}
.y3c0_c00001{bottom:489.000000px;}
.y5b_c00001{bottom:489.300000px;}
.y727_c00001{bottom:489.600000px;}
.yd4f_c00001{bottom:489.900000px;}
.y6f0_c00001{bottom:490.050000px;}
.y6a3_c00001{bottom:490.200000px;}
.y102_c00001{bottom:490.350000px;}
.y7f3_c00001{bottom:490.500000px;}
.y19c_c00001{bottom:490.650000px;}
.y2c1_c00001{bottom:491.100000px;}
.y9b9_c00001{bottom:491.250000px;}
.y61e_c00001{bottom:491.400000px;}
.y998_c00001{bottom:491.700000px;}
.y836_c00001{bottom:491.850000px;}
.y858_c00001{bottom:492.150000px;}
.yca_c00001{bottom:492.300000px;}
.ya00_c00001{bottom:492.450000px;}
.y97_c00001{bottom:492.600000px;}
.y25_c00001{bottom:492.900000px;}
.y747_c00001{bottom:493.050000px;}
.y139_c00001{bottom:493.200000px;}
.y48c_c00001{bottom:493.500000px;}
.y6c3_c00001{bottom:493.650000px;}
.y5d1_c00001{bottom:493.800000px;}
.y41a_c00001{bottom:494.100000px;}
.yc45_c00001{bottom:494.250000px;}
.y296_c00001{bottom:494.400000px;}
.y96a_c00001{bottom:494.700000px;}
.y36c_c00001{bottom:494.850000px;}
.y30e_c00001{bottom:495.000000px;}
.y769_c00001{bottom:495.300000px;}
.yb11_c00001{bottom:495.450000px;}
.ye59_c00001{bottom:495.750000px;}
.ybed_c00001{bottom:495.900000px;}
.y443_c00001{bottom:496.050000px;}
.ybe6_c00001{bottom:496.200000px;}
.ydcb_c00001{bottom:496.350000px;}
.y3f2_c00001{bottom:496.500000px;}
.yb2a_c00001{bottom:496.800000px;}
.yf27_c00001{bottom:497.100000px;}
.y63a_c00001{bottom:497.550000px;}
.y1ff_c00001{bottom:497.850000px;}
.yc99_c00001{bottom:498.000000px;}
.yd62_c00001{bottom:498.150000px;}
.yc91_c00001{bottom:498.300000px;}
.yd6d_c00001{bottom:498.450000px;}
.ya22_c00001{bottom:498.600000px;}
.y230_c00001{bottom:498.750000px;}
.ya32_c00001{bottom:498.900000px;}
.y8c2_c00001{bottom:499.050000px;}
.ya40_c00001{bottom:499.350000px;}
.ye8f_c00001{bottom:499.650000px;}
.y25f_c00001{bottom:500.100000px;}
.y1012_c00001{bottom:500.400000px;}
.yaa0_c00001{bottom:500.850000px;}
.y577_c00001{bottom:501.150000px;}
.yded_c00001{bottom:501.300000px;}
.y5a5_c00001{bottom:501.450000px;}
.y394_c00001{bottom:501.600000px;}
.y953_c00001{bottom:501.900000px;}
.ydf5_c00001{bottom:502.050000px;}
.y7b4_c00001{bottom:502.200000px;}
.y1d3_c00001{bottom:502.500000px;}
.y167_c00001{bottom:502.950000px;}
.yb8a_c00001{bottom:503.100000px;}
.y5a_c00001{bottom:503.250000px;}
.y3bf_c00001{bottom:503.700000px;}
.y7d0_c00001{bottom:504.000000px;}
.y726_c00001{bottom:504.300000px;}
.y6ef_c00001{bottom:504.450000px;}
.ydae_c00001{bottom:504.600000px;}
.y101_c00001{bottom:504.750000px;}
.y6a2_c00001{bottom:504.900000px;}
.y605_c00001{bottom:505.050000px;}
.y7f2_c00001{bottom:505.200000px;}
.y19b_c00001{bottom:505.350000px;}
.y2e5_c00001{bottom:505.500000px;}
.y9b8_c00001{bottom:505.650000px;}
.y2c0_c00001{bottom:505.800000px;}
.yfd7_c00001{bottom:506.100000px;}
.y835_c00001{bottom:506.250000px;}
.yefd_c00001{bottom:506.400000px;}
.ydbe_c00001{bottom:506.550000px;}
.yc9_c00001{bottom:506.700000px;}
.y138_c00001{bottom:506.850000px;}
.y1022_c00001{bottom:507.000000px;}
.y96_c00001{bottom:507.300000px;}
.y52d_c00001{bottom:507.600000px;}
.y746_c00001{bottom:507.750000px;}
.y554_c00001{bottom:507.900000px;}
.y1056_c00001{bottom:508.050000px;}
.y6c2_c00001{bottom:508.350000px;}
.yc44_c00001{bottom:508.650000px;}
.y419_c00001{bottom:508.800000px;}
.y36b_c00001{bottom:508.950000px;}
.y295_c00001{bottom:509.100000px;}
.y925_c00001{bottom:509.250000px;}
.y30d_c00001{bottom:509.400000px;}
.y5ef_c00001{bottom:509.550000px;}
.y768_c00001{bottom:509.700000px;}
.yb10_c00001{bottom:509.850000px;}
.ybec_c00001{bottom:510.300000px;}
.y4da_c00001{bottom:510.450000px;}
.yc6c_c00001{bottom:510.600000px;}
.yd30_c00001{bottom:510.750000px;}
.y442_c00001{bottom:510.900000px;}
.y3f1_c00001{bottom:511.050000px;}
.yb29_c00001{bottom:511.200000px;}
.yf26_c00001{bottom:511.500000px;}
.y639_c00001{bottom:511.650000px;}
.yc70_c00001{bottom:511.800000px;}
.y815_c00001{bottom:511.950000px;}
.yece_c00001{bottom:512.100000px;}
.y4fe_c00001{bottom:512.250000px;}
.yc75_c00001{bottom:512.400000px;}
.y1fe_c00001{bottom:512.700000px;}
.yd61_c00001{bottom:512.850000px;}
.ya21_c00001{bottom:513.000000px;}
.y8e5_c00001{bottom:513.150000px;}
.ya31_c00001{bottom:513.300000px;}
.y8c1_c00001{bottom:513.450000px;}
.y997_c00001{bottom:513.750000px;}
.ye26_c00001{bottom:513.900000px;}
.ye8a_c00001{bottom:514.050000px;}
.y22f_c00001{bottom:514.200000px;}
.yfb9_c00001{bottom:514.350000px;}
.y25e_c00001{bottom:514.500000px;}
.y952_c00001{bottom:514.800000px;}
.y66a_c00001{bottom:515.250000px;}
.ya9f_c00001{bottom:515.550000px;}
.ydec_c00001{bottom:515.700000px;}
.y576_c00001{bottom:515.850000px;}
.ycc3_c00001{bottom:516.150000px;}
.y393_c00001{bottom:516.300000px;}
.ydf4_c00001{bottom:516.450000px;}
.y9a2_c00001{bottom:516.600000px;}
.y166_c00001{bottom:516.900000px;}
.y5a4_c00001{bottom:517.050000px;}
.y1d2_c00001{bottom:517.350000px;}
.y939_c00001{bottom:517.650000px;}
.y725_c00001{bottom:517.800000px;}
.yf7f_c00001{bottom:518.100000px;}
.y59_c00001{bottom:518.400000px;}
.y100_c00001{bottom:518.700000px;}
.y6ee_c00001{bottom:518.850000px;}
.y4b0_c00001{bottom:519.150000px;}
.ydad_c00001{bottom:519.300000px;}
.y604_c00001{bottom:519.450000px;}
.y6a1_c00001{bottom:519.600000px;}
.y19a_c00001{bottom:519.750000px;}
.y2bf_c00001{bottom:519.900000px;}
.y2e4_c00001{bottom:520.200000px;}
.y9b7_c00001{bottom:520.350000px;}
.y9bc_c00001{bottom:520.500000px;}
.y834_c00001{bottom:520.950000px;}
.y857_c00001{bottom:521.250000px;}
.y95_c00001{bottom:521.400000px;}
.ye6b_c00001{bottom:521.550000px;}
.y9ff_c00001{bottom:521.700000px;}
.y33a_c00001{bottom:522.000000px;}
.y745_c00001{bottom:522.150000px;}
.y137_c00001{bottom:522.300000px;}
.y6c1_c00001{bottom:522.750000px;}
.y36a_c00001{bottom:523.050000px;}
.y294_c00001{bottom:523.200000px;}
.y418_c00001{bottom:523.500000px;}
.y5ee_c00001{bottom:523.650000px;}
.y30c_c00001{bottom:523.800000px;}
.yd2e_c00001{bottom:523.950000px;}
.y78d_c00001{bottom:524.100000px;}
.yadf_c00001{bottom:524.250000px;}
.y924_c00001{bottom:524.400000px;}
.yaf5_c00001{bottom:524.550000px;}
.ybeb_c00001{bottom:524.700000px;}
.y767_c00001{bottom:524.850000px;}
.ybe2_c00001{bottom:525.150000px;}
.ybe5_c00001{bottom:525.300000px;}
.y3f0_c00001{bottom:525.450000px;}
.y441_c00001{bottom:525.600000px;}
.yb28_c00001{bottom:525.900000px;}
.yf3a_c00001{bottom:526.050000px;}
.yf25_c00001{bottom:526.200000px;}
.y638_c00001{bottom:526.350000px;}
.yc6f_c00001{bottom:526.500000px;}
.y814_c00001{bottom:526.650000px;}
.yecd_c00001{bottom:526.800000px;}
.yd79_c00001{bottom:526.950000px;}
.yc74_c00001{bottom:527.100000px;}
.yd6c_c00001{bottom:527.250000px;}
.y1fd_c00001{bottom:527.400000px;}
.y8e4_c00001{bottom:527.550000px;}
.ya3f_c00001{bottom:527.700000px;}
.ye11_c00001{bottom:527.850000px;}
.ya30_c00001{bottom:528.000000px;}
.y8c0_c00001{bottom:528.150000px;}
.ye89_c00001{bottom:528.450000px;}
.y22e_c00001{bottom:528.600000px;}
.y25d_c00001{bottom:528.900000px;}
.yb55_c00001{bottom:529.200000px;}
.yfd6_c00001{bottom:529.500000px;}
.y669_c00001{bottom:529.650000px;}
.ye3d_c00001{bottom:529.950000px;}
.y575_c00001{bottom:530.250000px;}
.y5a3_c00001{bottom:530.400000px;}
.ycc2_c00001{bottom:530.550000px;}
.y24_c00001{bottom:530.700000px;}
.ydf3_c00001{bottom:530.850000px;}
.ydf6_c00001{bottom:531.000000px;}
.yf42_c00001{bottom:531.150000px;}
.y165_c00001{bottom:531.300000px;}
.y1d1_c00001{bottom:531.750000px;}
.y58_c00001{bottom:532.050000px;}
.y3be_c00001{bottom:532.500000px;}
.y86a_c00001{bottom:533.100000px;}
.y90b_c00001{bottom:533.250000px;}
.yff_c00001{bottom:533.550000px;}
.y9e3_c00001{bottom:533.700000px;}
.y4af_c00001{bottom:533.850000px;}
.y6a0_c00001{bottom:534.000000px;}
.y199_c00001{bottom:534.150000px;}
.y603_c00001{bottom:534.300000px;}
.yc32_c00001{bottom:534.450000px;}
.y2be_c00001{bottom:534.600000px;}
.y9bb_c00001{bottom:534.900000px;}
.y9b6_c00001{bottom:535.050000px;}
.ybc7_c00001{bottom:535.350000px;}
.y833_c00001{bottom:535.650000px;}
.y856_c00001{bottom:535.950000px;}
.y94_c00001{bottom:536.100000px;}
.y553_c00001{bottom:536.400000px;}
.ye78_c00001{bottom:536.550000px;}
.y136_c00001{bottom:536.700000px;}
.y52c_c00001{bottom:536.850000px;}
.y339_c00001{bottom:537.150000px;}
.y5d0_c00001{bottom:537.450000px;}
.y293_c00001{bottom:537.600000px;}
.yc43_c00001{bottom:537.750000px;}
.y6d9_c00001{bottom:537.900000px;}
.y30b_c00001{bottom:538.200000px;}
.y5ed_c00001{bottom:538.350000px;}
.y369_c00001{bottom:538.500000px;}
.yade_c00001{bottom:538.650000px;}
.yd14_c00001{bottom:538.950000px;}
.ybea_c00001{bottom:539.100000px;}
.yb9a_c00001{bottom:539.250000px;}
.yaf4_c00001{bottom:539.400000px;}
.y766_c00001{bottom:539.550000px;}
.yd2f_c00001{bottom:539.700000px;}
.y4d9_c00001{bottom:540.000000px;}
.y3ef_c00001{bottom:540.150000px;}
.y440_c00001{bottom:540.300000px;}
.ydd6_c00001{bottom:540.450000px;}
.yb27_c00001{bottom:540.600000px;}
.ybef_c00001{bottom:540.750000px;}
.yc6e_c00001{bottom:540.900000px;}
.y637_c00001{bottom:541.050000px;}
.y7b3_c00001{bottom:541.200000px;}
.yca1_c00001{bottom:541.350000px;}
.yc98_c00001{bottom:541.500000px;}
.yd6b_c00001{bottom:541.650000px;}
.y1fc_c00001{bottom:541.800000px;}
.y4fd_c00001{bottom:541.950000px;}
.ya3e_c00001{bottom:542.100000px;}
.y22d_c00001{bottom:542.250000px;}
.ye1a_c00001{bottom:542.400000px;}
.ya49_c00001{bottom:542.550000px;}
.ya2f_c00001{bottom:542.700000px;}
.ya20_c00001{bottom:542.850000px;}
.y25c_c00001{bottom:543.000000px;}
.y1050_c00001{bottom:543.150000px;}
.ye93_c00001{bottom:543.300000px;}
.yc8c_c00001{bottom:543.600000px;}
.yf53_c00001{bottom:543.900000px;}
.y668_c00001{bottom:544.350000px;}
.ye3c_c00001{bottom:544.650000px;}
.y5a2_c00001{bottom:544.800000px;}
.ycc1_c00001{bottom:544.950000px;}
.y574_c00001{bottom:545.100000px;}
.y392_c00001{bottom:545.400000px;}
.ydf2_c00001{bottom:545.550000px;}
.ye3b_c00001{bottom:545.700000px;}
.y23_c00001{bottom:546.150000px;}
.y938_c00001{bottom:546.450000px;}
.y1d0_c00001{bottom:546.900000px;}
.yb89_c00001{bottom:547.200000px;}
.y57_c00001{bottom:547.500000px;}
.y3bd_c00001{bottom:547.650000px;}
.yb90_c00001{bottom:547.800000px;}
.y7cf_c00001{bottom:547.950000px;}
.yfe_c00001{bottom:548.250000px;}
.y69f_c00001{bottom:548.400000px;}
.y4ae_c00001{bottom:548.700000px;}
.ydac_c00001{bottom:548.850000px;}
.y602_c00001{bottom:549.000000px;}
.y688_c00001{bottom:549.150000px;}
.y198_c00001{bottom:549.300000px;}
.y9b5_c00001{bottom:549.750000px;}
.ydbd_c00001{bottom:550.200000px;}
.y855_c00001{bottom:550.350000px;}
.yc8_c00001{bottom:550.500000px;}
.y135_c00001{bottom:550.800000px;}
.y93_c00001{bottom:550.950000px;}
.y9fe_c00001{bottom:551.100000px;}
.y52b_c00001{bottom:551.250000px;}
.yf7d_c00001{bottom:551.550000px;}
.y552_c00001{bottom:551.850000px;}
.y292_c00001{bottom:552.300000px;}
.y30a_c00001{bottom:552.600000px;}
.y368_c00001{bottom:552.900000px;}
.y5ec_c00001{bottom:553.050000px;}
.yadd_c00001{bottom:553.350000px;}
.yd2d_c00001{bottom:553.800000px;}
.y765_c00001{bottom:553.950000px;}
.yaf3_c00001{bottom:554.100000px;}
.ybe1_c00001{bottom:554.250000px;}
.yc6b_c00001{bottom:554.400000px;}
.y3ee_c00001{bottom:554.550000px;}
.y43f_c00001{bottom:554.700000px;}
.y1032_c00001{bottom:555.000000px;}
.ybee_c00001{bottom:555.150000px;}
.y4fc_c00001{bottom:555.300000px;}
.y636_c00001{bottom:555.450000px;}
.yc6d_c00001{bottom:555.600000px;}
.yd78_c00001{bottom:555.750000px;}
.y7b2_c00001{bottom:555.900000px;}
.yecc_c00001{bottom:556.050000px;}
.y1fb_c00001{bottom:556.200000px;}
.yc97_c00001{bottom:556.350000px;}
.ya1f_c00001{bottom:556.500000px;}
.ya48_c00001{bottom:556.650000px;}
.y8e3_c00001{bottom:556.950000px;}
.ye19_c00001{bottom:557.100000px;}
.ye10_c00001{bottom:557.250000px;}
.ya2e_c00001{bottom:557.400000px;}
.y22c_c00001{bottom:557.700000px;}
.ye92_c00001{bottom:557.850000px;}
.ye84_c00001{bottom:558.000000px;}
.ye25_c00001{bottom:558.150000px;}
.yc8b_c00001{bottom:558.300000px;}
.y667_c00001{bottom:558.450000px;}
.yd9e_c00001{bottom:558.750000px;}
.yf4d_c00001{bottom:559.050000px;}
.y951_c00001{bottom:559.200000px;}
.ycc8_c00001{bottom:559.500000px;}
.y391_c00001{bottom:559.800000px;}
.ydf1_c00001{bottom:559.950000px;}
.ycc0_c00001{bottom:560.100000px;}
.y5a1_c00001{bottom:560.250000px;}
.yfa8_c00001{bottom:560.400000px;}
.y22_c00001{bottom:560.550000px;}
.y164_c00001{bottom:560.850000px;}
.yfb8_c00001{bottom:561.150000px;}
.y1cf_c00001{bottom:561.300000px;}
.y724_c00001{bottom:561.600000px;}
.y7ce_c00001{bottom:562.050000px;}
.y3bc_c00001{bottom:562.350000px;}
.yb8f_c00001{bottom:562.500000px;}
.yfd_c00001{bottom:562.650000px;}
.yc3e_c00001{bottom:562.800000px;}
.y9e1_c00001{bottom:562.950000px;}
.y69e_c00001{bottom:563.100000px;}
.y61d_c00001{bottom:563.400000px;}
.y7f1_c00001{bottom:563.550000px;}
.y197_c00001{bottom:563.700000px;}
.y687_c00001{bottom:563.850000px;}
.ydab_c00001{bottom:564.000000px;}
.y2bd_c00001{bottom:564.150000px;}
.yb97_c00001{bottom:564.450000px;}
.y832_c00001{bottom:564.600000px;}
.y854_c00001{bottom:564.750000px;}
.yc7_c00001{bottom:564.900000px;}
.y134_c00001{bottom:565.200000px;}
.y92_c00001{bottom:565.350000px;}
.y338_c00001{bottom:565.500000px;}
.ye77_c00001{bottom:565.650000px;}
.y52a_c00001{bottom:565.950000px;}
.y48b_c00001{bottom:566.250000px;}
.y9ba_c00001{bottom:566.550000px;}
.y6c0_c00001{bottom:566.700000px;}
.y5cf_c00001{bottom:566.850000px;}
.y6d8_c00001{bottom:567.000000px;}
.yd11_c00001{bottom:567.300000px;}
.y309_c00001{bottom:567.450000px;}
.yd13_c00001{bottom:567.750000px;}
.yb0f_c00001{bottom:568.050000px;}
.y923_c00001{bottom:568.200000px;}
.ybe9_c00001{bottom:568.350000px;}
.yadc_c00001{bottom:568.500000px;}
.y764_c00001{bottom:568.650000px;}
.y417_c00001{bottom:568.800000px;}
.y3ed_c00001{bottom:568.950000px;}
.y43e_c00001{bottom:569.100000px;}
.y4d8_c00001{bottom:569.250000px;}
.yb26_c00001{bottom:569.400000px;}
.ydd3_c00001{bottom:569.550000px;}
.y1fa_c00001{bottom:569.850000px;}
.y813_c00001{bottom:570.000000px;}
.yf2d_c00001{bottom:570.150000px;}
.y7b1_c00001{bottom:570.300000px;}
.yd77_c00001{bottom:570.450000px;}
.yc73_c00001{bottom:570.600000px;}
.yd6a_c00001{bottom:570.750000px;}
.ya3d_c00001{bottom:570.900000px;}
.ya47_c00001{bottom:571.050000px;}
.ya1e_c00001{bottom:571.200000px;}
.y8e2_c00001{bottom:571.350000px;}
.ye18_c00001{bottom:571.500000px;}
.yc90_c00001{bottom:571.650000px;}
.y4fb_c00001{bottom:571.800000px;}
.yf9b_c00001{bottom:571.950000px;}
.y22b_c00001{bottom:572.100000px;}
.ye8e_c00001{bottom:572.400000px;}
.ye24_c00001{bottom:572.550000px;}
.y291_c00001{bottom:572.700000px;}
.yc8a_c00001{bottom:573.000000px;}
.yd9d_c00001{bottom:573.150000px;}
.yf4c_c00001{bottom:573.450000px;}
.y950_c00001{bottom:573.900000px;}
.y573_c00001{bottom:574.200000px;}
.y5a0_c00001{bottom:574.350000px;}
.y25b_c00001{bottom:574.500000px;}
.ydf0_c00001{bottom:574.650000px;}
.y466_c00001{bottom:574.950000px;}
.y21_c00001{bottom:575.250000px;}
.y163_c00001{bottom:575.550000px;}
.y1ce_c00001{bottom:575.700000px;}
.y56_c00001{bottom:576.000000px;}
.yb88_c00001{bottom:576.300000px;}
.y4ad_c00001{bottom:576.750000px;}
.yfc_c00001{bottom:577.050000px;}
.yb8e_c00001{bottom:577.200000px;}
.y196_c00001{bottom:577.350000px;}
.y708_c00001{bottom:577.500000px;}
.y2bc_c00001{bottom:577.800000px;}
.y7f0_c00001{bottom:577.950000px;}
.y9e4_c00001{bottom:578.100000px;}
.y1046_c00001{bottom:578.250000px;}
.y2e3_c00001{bottom:578.550000px;}
.y61c_c00001{bottom:578.700000px;}
.y853_c00001{bottom:578.850000px;}
.y133_c00001{bottom:579.300000px;}
.y9b4_c00001{bottom:579.600000px;}
.y91_c00001{bottom:579.750000px;}
.y367_c00001{bottom:579.900000px;}
.ye76_c00001{bottom:580.050000px;}
.ye6a_c00001{bottom:580.200000px;}
.y337_c00001{bottom:580.350000px;}
.y529_c00001{bottom:580.650000px;}
.y6bf_c00001{bottom:581.100000px;}
.y5ce_c00001{bottom:581.250000px;}
.y48a_c00001{bottom:581.400000px;}
.y5eb_c00001{bottom:581.550000px;}
.y969_c00001{bottom:581.700000px;}
.y308_c00001{bottom:581.850000px;}
.yadb_c00001{bottom:582.150000px;}
.yaf2_c00001{bottom:582.450000px;}
.y922_c00001{bottom:582.600000px;}
.yd2c_c00001{bottom:582.900000px;}
.y763_c00001{bottom:583.050000px;}
.ybe0_c00001{bottom:583.350000px;}
.y416_c00001{bottom:583.500000px;}
.y3ec_c00001{bottom:583.650000px;}
.y43d_c00001{bottom:583.800000px;}
.y4d7_c00001{bottom:583.950000px;}
.ydd2_c00001{bottom:584.250000px;}
.yf2c_c00001{bottom:584.550000px;}
.y1f9_c00001{bottom:584.700000px;}
.y635_c00001{bottom:585.000000px;}
.yd76_c00001{bottom:585.150000px;}
.yc72_c00001{bottom:585.300000px;}
.y4fa_c00001{bottom:585.450000px;}
.ya3c_c00001{bottom:585.600000px;}
.yc8f_c00001{bottom:585.750000px;}
.ya1d_c00001{bottom:585.900000px;}
.yd9b_c00001{bottom:586.050000px;}
.ye17_c00001{bottom:586.200000px;}
.ye0f_c00001{bottom:586.350000px;}
.y8e1_c00001{bottom:586.500000px;}
.y22a_c00001{bottom:586.800000px;}
.ye91_c00001{bottom:586.950000px;}
.yff8_c00001{bottom:587.100000px;}
.ye23_c00001{bottom:587.250000px;}
.yc89_c00001{bottom:587.400000px;}
.ye83_c00001{bottom:587.550000px;}
.yd9c_c00001{bottom:587.850000px;}
.y94f_c00001{bottom:588.300000px;}
.y572_c00001{bottom:588.600000px;}
.y59f_c00001{bottom:588.750000px;}
.y390_c00001{bottom:588.900000px;}
.ycd4_c00001{bottom:589.050000px;}
.y20_c00001{bottom:589.350000px;}
.y55_c00001{bottom:589.650000px;}
.y465_c00001{bottom:589.800000px;}
.y1cd_c00001{bottom:590.100000px;}
.y9a1_c00001{bottom:590.400000px;}
.yb87_c00001{bottom:590.700000px;}
.y3bb_c00001{bottom:591.150000px;}
.yc17_c00001{bottom:591.450000px;}
.yb8d_c00001{bottom:591.600000px;}
.yf0c_c00001{bottom:591.750000px;}
.yfb_c00001{bottom:591.900000px;}
.y744_c00001{bottom:592.050000px;}
.y707_c00001{bottom:592.200000px;}
.yf0d_c00001{bottom:592.350000px;}
.y195_c00001{bottom:592.500000px;}
.y601_c00001{bottom:592.650000px;}
.ydaa_c00001{bottom:592.800000px;}
.y2bb_c00001{bottom:592.950000px;}
.y61b_c00001{bottom:593.100000px;}
.y132_c00001{bottom:593.250000px;}
.yb96_c00001{bottom:593.700000px;}
.y9b3_c00001{bottom:594.000000px;}
.yc6_c00001{bottom:594.150000px;}
.ye71_c00001{bottom:594.300000px;}
.y90_c00001{bottom:594.450000px;}
.ye69_c00001{bottom:594.600000px;}
.y551_c00001{bottom:594.750000px;}
.y336_c00001{bottom:595.050000px;}
.y366_c00001{bottom:595.500000px;}
.y25a_c00001{bottom:595.800000px;}
.y5cd_c00001{bottom:595.950000px;}
.y968_c00001{bottom:596.100000px;}
.yd12_c00001{bottom:596.250000px;}
.y307_c00001{bottom:596.550000px;}
.yb0e_c00001{bottom:596.850000px;}
.y921_c00001{bottom:597.000000px;}
.yb99_c00001{bottom:597.150000px;}
.yd15_c00001{bottom:597.300000px;}
.y762_c00001{bottom:597.450000px;}
.yada_c00001{bottom:597.600000px;}
.y990_c00001{bottom:597.750000px;}
.yb25_c00001{bottom:597.900000px;}
.y3eb_c00001{bottom:598.050000px;}
.y993_c00001{bottom:598.200000px;}
.y991_c00001{bottom:598.350000px;}
.ybe4_c00001{bottom:598.500000px;}
.y4d6_c00001{bottom:598.650000px;}
.y4f9_c00001{bottom:599.100000px;}
.yf2b_c00001{bottom:599.250000px;}
.y812_c00001{bottom:599.400000px;}
.yd75_c00001{bottom:599.550000px;}
.yc71_c00001{bottom:599.700000px;}
.ya46_c00001{bottom:599.850000px;}
.yec0_c00001{bottom:600.000000px;}
.yc96_c00001{bottom:600.150000px;}
.ya3b_c00001{bottom:600.300000px;}
.yc8e_c00001{bottom:600.450000px;}
.y8e0_c00001{bottom:600.600000px;}
.ye0e_c00001{bottom:600.750000px;}
.ya2d_c00001{bottom:600.900000px;}
.y666_c00001{bottom:601.200000px;}
.y229_c00001{bottom:601.500000px;}
.ye22_c00001{bottom:601.650000px;}
.ye88_c00001{bottom:601.950000px;}
.yc88_c00001{bottom:602.100000px;}
.yf4b_c00001{bottom:602.250000px;}
.yd9a_c00001{bottom:602.700000px;}
.yf5e_c00001{bottom:602.850000px;}
.y94e_c00001{bottom:603.000000px;}
.y1f_c00001{bottom:603.300000px;}
.y59e_c00001{bottom:603.450000px;}
.ydef_c00001{bottom:603.750000px;}
.y162_c00001{bottom:604.050000px;}
.yf8f_c00001{bottom:604.350000px;}
.y1cc_c00001{bottom:604.500000px;}
.y54_c00001{bottom:604.800000px;}
.y634_c00001{bottom:605.100000px;}
.y937_c00001{bottom:605.250000px;}
.y7cd_c00001{bottom:605.550000px;}
.y3ba_c00001{bottom:605.850000px;}
.y4ac_c00001{bottom:606.300000px;}
.y194_c00001{bottom:606.600000px;}
.y706_c00001{bottom:606.900000px;}
.yc31_c00001{bottom:607.050000px;}
.y2e2_c00001{bottom:607.350000px;}
.y61a_c00001{bottom:607.500000px;}
.y131_c00001{bottom:607.650000px;}
.y852_c00001{bottom:608.100000px;}
.y743_c00001{bottom:608.250000px;}
.yb95_c00001{bottom:608.400000px;}
.ye7b_c00001{bottom:608.700000px;}
.y8f_c00001{bottom:608.850000px;}
.y365_c00001{bottom:609.150000px;}
.ye68_c00001{bottom:609.300000px;}
.y335_c00001{bottom:609.450000px;}
.yfc7_c00001{bottom:609.750000px;}
.yc42_c00001{bottom:609.900000px;}
.y528_c00001{bottom:610.200000px;}
.y5cc_c00001{bottom:610.350000px;}
.y899_c00001{bottom:610.500000px;}
.y290_c00001{bottom:610.650000px;}
.y306_c00001{bottom:610.950000px;}
.y78c_c00001{bottom:611.250000px;}
.yb0d_c00001{bottom:611.550000px;}
.y920_c00001{bottom:611.700000px;}
.yad9_c00001{bottom:612.000000px;}
.y761_c00001{bottom:612.150000px;}
.yaf1_c00001{bottom:612.300000px;}
.ybdf_c00001{bottom:612.450000px;}
.ybe8_c00001{bottom:612.600000px;}
.y3ea_c00001{bottom:612.750000px;}
.y98f_c00001{bottom:612.900000px;}
.y1031_c00001{bottom:613.050000px;}
.ydd1_c00001{bottom:613.350000px;}
.ye58_c00001{bottom:613.500000px;}
.yf2a_c00001{bottom:613.650000px;}
.y7b0_c00001{bottom:613.800000px;}
.yca0_c00001{bottom:613.950000px;}
.yf39_c00001{bottom:614.250000px;}
.ya45_c00001{bottom:614.550000px;}
.ya3a_c00001{bottom:614.700000px;}
.yfa_c00001{bottom:614.850000px;}
.y8df_c00001{bottom:615.000000px;}
.y9a0_c00001{bottom:615.300000px;}
.yb4a_c00001{bottom:615.450000px;}
.y228_c00001{bottom:615.600000px;}
.ycef_c00001{bottom:615.750000px;}
.y4f8_c00001{bottom:615.900000px;}
.y8bf_c00001{bottom:616.050000px;}
.y665_c00001{bottom:616.350000px;}
.yc87_c00001{bottom:616.500000px;}
.yd99_c00001{bottom:616.650000px;}
.ye82_c00001{bottom:616.800000px;}
.yf4a_c00001{bottom:616.950000px;}
.ye44_c00001{bottom:617.100000px;}
.y94d_c00001{bottom:617.400000px;}
.y59d_c00001{bottom:617.550000px;}
.y571_c00001{bottom:617.700000px;}
.y38f_c00001{bottom:617.850000px;}
.ycce_c00001{bottom:618.150000px;}
.y1e_c00001{bottom:618.450000px;}
.y161_c00001{bottom:618.900000px;}
.y1cb_c00001{bottom:619.200000px;}
.yfb3_c00001{bottom:619.500000px;}
.y936_c00001{bottom:619.650000px;}
.yc29_c00001{bottom:619.950000px;}
.y831_c00001{bottom:620.250000px;}
.y3b9_c00001{bottom:620.400000px;}
.y6ed_c00001{bottom:620.700000px;}
.y69d_c00001{bottom:621.000000px;}
.y723_c00001{bottom:621.300000px;}
.y705_c00001{bottom:621.450000px;}
.y193_c00001{bottom:621.750000px;}
.y619_c00001{bottom:621.900000px;}
.y2ba_c00001{bottom:622.050000px;}
.y130_c00001{bottom:622.200000px;}
.yfcf_c00001{bottom:622.350000px;}
.y851_c00001{bottom:622.500000px;}
.y742_c00001{bottom:622.650000px;}
.yb94_c00001{bottom:622.800000px;}
.ybc6_c00001{bottom:623.100000px;}
.y8e_c00001{bottom:623.250000px;}
.y364_c00001{bottom:623.550000px;}
.ye70_c00001{bottom:623.700000px;}
.y334_c00001{bottom:623.850000px;}
.ye67_c00001{bottom:624.000000px;}
.ye75_c00001{bottom:624.150000px;}
.y550_c00001{bottom:624.300000px;}
.y6be_c00001{bottom:624.600000px;}
.y527_c00001{bottom:624.900000px;}
.y489_c00001{bottom:625.050000px;}
.y28f_c00001{bottom:625.350000px;}
.y305_c00001{bottom:625.650000px;}
.yb98_c00001{bottom:625.950000px;}
.y78b_c00001{bottom:626.100000px;}
.yb0c_c00001{bottom:626.250000px;}
.yad8_c00001{bottom:626.400000px;}
.y760_c00001{bottom:626.550000px;}
.yaf0_c00001{bottom:626.700000px;}
.yb24_c00001{bottom:627.000000px;}
.ybde_c00001{bottom:627.150000px;}
.y3e9_c00001{bottom:627.300000px;}
.y994_c00001{bottom:627.450000px;}
.y98e_c00001{bottom:627.600000px;}
.y4d5_c00001{bottom:627.900000px;}
.yc9f_c00001{bottom:628.050000px;}
.ya70_c00001{bottom:628.200000px;}
.yf29_c00001{bottom:628.350000px;}
.y811_c00001{bottom:628.500000px;}
.yd74_c00001{bottom:628.650000px;}
.y4f7_c00001{bottom:628.950000px;}
.yd7f_c00001{bottom:629.100000px;}
.y967_c00001{bottom:629.250000px;}
.ya39_c00001{bottom:629.400000px;}
.yd60_c00001{bottom:629.550000px;}
.y8de_c00001{bottom:629.700000px;}
.yb49_c00001{bottom:629.850000px;}
.yb3a_c00001{bottom:630.000000px;}
.ya2c_c00001{bottom:630.150000px;}
.ye0a_c00001{bottom:630.300000px;}
.yce4_c00001{bottom:630.450000px;}
.yf6b_c00001{bottom:630.600000px;}
.y227_c00001{bottom:630.750000px;}
.yc86_c00001{bottom:630.900000px;}
.y1f8_c00001{bottom:631.050000px;}
.yd98_c00001{bottom:631.500000px;}
.yf49_c00001{bottom:631.650000px;}
.yfbf_c00001{bottom:631.800000px;}
.yf5d_c00001{bottom:631.950000px;}
.y570_c00001{bottom:632.100000px;}
.y59c_c00001{bottom:632.250000px;}
.y1d_c00001{bottom:632.550000px;}
.ycd3_c00001{bottom:632.700000px;}
.ydee_c00001{bottom:632.850000px;}
.yf41_c00001{bottom:633.150000px;}
.y464_c00001{bottom:633.300000px;}
.y53_c00001{bottom:633.600000px;}
.y1ca_c00001{bottom:633.900000px;}
.y830_c00001{bottom:634.350000px;}
.y90a_c00001{bottom:634.650000px;}
.y3b8_c00001{bottom:634.800000px;}
.y6ec_c00001{bottom:635.100000px;}
.y7cc_c00001{bottom:635.400000px;}
.y69c_c00001{bottom:635.700000px;}
.yb8c_c00001{bottom:635.850000px;}
.y43c_c00001{bottom:636.150000px;}
.y7ef_c00001{bottom:636.300000px;}
.y192_c00001{bottom:636.450000px;}
.y12f_c00001{bottom:636.600000px;}
.y741_c00001{bottom:636.750000px;}
.ybc5_c00001{bottom:636.900000px;}
.y850_c00001{bottom:637.200000px;}
.yc5_c00001{bottom:637.650000px;}
.y8d_c00001{bottom:637.950000px;}
.ye66_c00001{bottom:638.100000px;}
.yf9_c00001{bottom:638.250000px;}
.ye6f_c00001{bottom:638.400000px;}
.ye74_c00001{bottom:638.550000px;}
.y363_c00001{bottom:638.700000px;}
.y54f_c00001{bottom:639.000000px;}
.y488_c00001{bottom:639.150000px;}
.y526_c00001{bottom:639.300000px;}
.y5cb_c00001{bottom:639.750000px;}
.y333_c00001{bottom:640.050000px;}
.y28e_c00001{bottom:640.200000px;}
.y78a_c00001{bottom:640.500000px;}
.y304_c00001{bottom:640.800000px;}
.y75f_c00001{bottom:640.950000px;}
.yad7_c00001{bottom:641.100000px;}
.yb23_c00001{bottom:641.400000px;}
.y9e2_c00001{bottom:641.550000px;}
.y3e8_c00001{bottom:641.700000px;}
.y4d4_c00001{bottom:641.850000px;}
.ybe3_c00001{bottom:642.000000px;}
.y4f6_c00001{bottom:642.150000px;}
.y98d_c00001{bottom:642.300000px;}
.ydd0_c00001{bottom:642.450000px;}
.y7af_c00001{bottom:642.600000px;}
.ya6b_c00001{bottom:642.750000px;}
.y810_c00001{bottom:642.900000px;}
.yd73_c00001{bottom:643.050000px;}
.yc9e_c00001{bottom:643.200000px;}
.ya44_c00001{bottom:643.350000px;}
.yc95_c00001{bottom:643.650000px;}
.yd7e_c00001{bottom:643.800000px;}
.yd5f_c00001{bottom:643.950000px;}
.ya1c_c00001{bottom:644.100000px;}
.yf31_c00001{bottom:644.250000px;}
.y226_c00001{bottom:644.400000px;}
.ya2b_c00001{bottom:644.550000px;}
.yb54_c00001{bottom:644.700000px;}
.ycee_c00001{bottom:644.850000px;}
.ye09_c00001{bottom:645.000000px;}
.y664_c00001{bottom:645.150000px;}
.ye21_c00001{bottom:645.300000px;}
.y8be_c00001{bottom:645.450000px;}
.y1f7_c00001{bottom:645.750000px;}
.yfd9_c00001{bottom:645.900000px;}
.yc85_c00001{bottom:646.050000px;}
.yd10_c00001{bottom:646.200000px;}
.yf48_c00001{bottom:646.350000px;}
.y101f_c00001{bottom:646.500000px;}
.y59b_c00001{bottom:646.650000px;}
.y56f_c00001{bottom:646.800000px;}
.y38e_c00001{bottom:646.950000px;}
.ycd2_c00001{bottom:647.100000px;}
.y52_c00001{bottom:647.250000px;}
.yccd_c00001{bottom:647.400000px;}
.y160_c00001{bottom:647.550000px;}
.y1c_c00001{bottom:647.700000px;}
.ye3a_c00001{bottom:648.000000px;}
.y463_c00001{bottom:648.300000px;}
.y1c9_c00001{bottom:648.600000px;}
.y633_c00001{bottom:648.750000px;}
.yf8a_c00001{bottom:649.050000px;}
.y3b7_c00001{bottom:649.500000px;}
.y722_c00001{bottom:649.800000px;}
.y740_c00001{bottom:650.100000px;}
.y69b_c00001{bottom:650.400000px;}
.y704_c00001{bottom:650.550000px;}
.y191_c00001{bottom:650.850000px;}
.y7ee_c00001{bottom:651.000000px;}
.y12e_c00001{bottom:651.300000px;}
.yc3b_c00001{bottom:651.450000px;}
.y2b9_c00001{bottom:651.600000px;}
.yc4_c00001{bottom:651.750000px;}
.yb93_c00001{bottom:651.900000px;}
.y8c_c00001{bottom:652.050000px;}
.yee7_c00001{bottom:652.350000px;}
.ye7a_c00001{bottom:652.650000px;}
.y4ab_c00001{bottom:652.950000px;}
.ye6e_c00001{bottom:653.100000px;}
.ye65_c00001{bottom:653.250000px;}
.y332_c00001{bottom:653.400000px;}
.y487_c00001{bottom:653.550000px;}
.y525_c00001{bottom:653.700000px;}
.y415_c00001{bottom:654.150000px;}
.y5ca_c00001{bottom:654.450000px;}
.y28d_c00001{bottom:654.600000px;}
.y898_c00001{bottom:654.750000px;}
.y303_c00001{bottom:654.900000px;}
.y789_c00001{bottom:655.200000px;}
.y75e_c00001{bottom:655.350000px;}
.yf8e_c00001{bottom:655.500000px;}
.yad6_c00001{bottom:655.800000px;}
.y1055_c00001{bottom:655.950000px;}
.ya8b_c00001{bottom:656.100000px;}
.yfc6_c00001{bottom:656.250000px;}
.y3e7_c00001{bottom:656.400000px;}
.y992_c00001{bottom:656.700000px;}
.y4d3_c00001{bottom:657.000000px;}
.ydcf_c00001{bottom:657.150000px;}
.y4f5_c00001{bottom:657.300000px;}
.ya6a_c00001{bottom:657.450000px;}
.yc9d_c00001{bottom:657.600000px;}
.yd72_c00001{bottom:657.750000px;}
.yd69_c00001{bottom:658.050000px;}
.yd7d_c00001{bottom:658.200000px;}
.yc94_c00001{bottom:658.350000px;}
.ya1b_c00001{bottom:658.500000px;}
.yf30_c00001{bottom:658.650000px;}
.yd96_c00001{bottom:658.800000px;}
.yb48_c00001{bottom:658.950000px;}
.yb39_c00001{bottom:659.100000px;}
.ya2a_c00001{bottom:659.250000px;}
.ye08_c00001{bottom:659.400000px;}
.y225_c00001{bottom:659.550000px;}
.yf6d_c00001{bottom:659.700000px;}
.yce3_c00001{bottom:659.850000px;}
.ye20_c00001{bottom:660.000000px;}
.y8bd_c00001{bottom:660.150000px;}
.y1f6_c00001{bottom:660.450000px;}
.yd97_c00001{bottom:660.600000px;}
.yc84_c00001{bottom:660.750000px;}
.yf5c_c00001{bottom:661.050000px;}
.y59a_c00001{bottom:661.350000px;}
.y56e_c00001{bottom:661.500000px;}
.y38d_c00001{bottom:661.650000px;}
.yccc_c00001{bottom:661.800000px;}
.y15f_c00001{bottom:661.950000px;}
.y1b_c00001{bottom:662.100000px;}
.yf40_c00001{bottom:662.250000px;}
.y51_c00001{bottom:662.400000px;}
.y1c8_c00001{bottom:662.700000px;}
.y935_c00001{bottom:662.850000px;}
.y82f_c00001{bottom:663.150000px;}
.y3b6_c00001{bottom:663.900000px;}
.y7cb_c00001{bottom:664.200000px;}
.y190_c00001{bottom:664.500000px;}
.y721_c00001{bottom:664.950000px;}
.y703_c00001{bottom:665.250000px;}
.y686_c00001{bottom:665.400000px;}
.y84f_c00001{bottom:665.550000px;}
.y12d_c00001{bottom:665.700000px;}
.yc3a_c00001{bottom:665.850000px;}
.y2b8_c00001{bottom:666.000000px;}
.yc3_c00001{bottom:666.150000px;}
.yb92_c00001{bottom:666.300000px;}
.y8b_c00001{bottom:666.450000px;}
.y73f_c00001{bottom:666.750000px;}
.y259_c00001{bottom:667.050000px;}
.ye6d_c00001{bottom:667.500000px;}
.ye64_c00001{bottom:667.650000px;}
.y362_c00001{bottom:667.800000px;}
.y4aa_c00001{bottom:668.100000px;}
.y486_c00001{bottom:668.250000px;}
.y524_c00001{bottom:668.400000px;}
.y8a8_c00001{bottom:668.550000px;}
.y5c9_c00001{bottom:668.850000px;}
.y28c_c00001{bottom:669.000000px;}
.y414_c00001{bottom:669.300000px;}
.y897_c00001{bottom:669.450000px;}
.y788_c00001{bottom:669.600000px;}
.y302_c00001{bottom:669.750000px;}
.y101b_c00001{bottom:669.900000px;}
.y1054_c00001{bottom:670.200000px;}
.ya8a_c00001{bottom:670.500000px;}
.y1039_c00001{bottom:670.650000px;}
.y91f_c00001{bottom:670.800000px;}
.yf8_c00001{bottom:670.950000px;}
.y3e6_c00001{bottom:671.100000px;}
.y7ae_c00001{bottom:671.400000px;}
.y4d2_c00001{bottom:671.700000px;}
.y979_c00001{bottom:671.850000px;}
.y98c_c00001{bottom:672.150000px;}
.yc9c_c00001{bottom:672.300000px;}
.y80f_c00001{bottom:672.450000px;}
.yd7c_c00001{bottom:672.600000px;}
.yc93_c00001{bottom:672.750000px;}
.ya38_c00001{bottom:672.900000px;}
.yf2f_c00001{bottom:673.050000px;}
.yb38_c00001{bottom:673.200000px;}
.y663_c00001{bottom:673.500000px;}
.y224_c00001{bottom:673.650000px;}
.ye16_c00001{bottom:673.800000px;}
.ya29_c00001{bottom:673.950000px;}
.ye07_c00001{bottom:674.100000px;}
.y4f4_c00001{bottom:674.250000px;}
.yf6a_c00001{bottom:674.400000px;}
.yce2_c00001{bottom:674.550000px;}
.ye1f_c00001{bottom:674.700000px;}
.y1f5_c00001{bottom:674.850000px;}
.yd95_c00001{bottom:675.000000px;}
.yf52_c00001{bottom:675.300000px;}
.yc83_c00001{bottom:675.450000px;}
.y599_c00001{bottom:675.750000px;}
.y94c_c00001{bottom:675.900000px;}
.y38c_c00001{bottom:676.050000px;}
.y56d_c00001{bottom:676.200000px;}
.y1a_c00001{bottom:676.500000px;}
.yf3f_c00001{bottom:676.650000px;}
.y50_c00001{bottom:676.800000px;}
.y15e_c00001{bottom:677.100000px;}
.y462_c00001{bottom:677.400000px;}
.y1c7_c00001{bottom:677.550000px;}
.y43b_c00001{bottom:677.850000px;}
.yfbe_c00001{bottom:678.300000px;}
.y3b5_c00001{bottom:678.600000px;}
.yff2_c00001{bottom:678.900000px;}
.y882_c00001{bottom:679.200000px;}
.y720_c00001{bottom:679.350000px;}
.y18f_c00001{bottom:679.650000px;}
.y69a_c00001{bottom:679.950000px;}
.y2b7_c00001{bottom:680.100000px;}
.y2e1_c00001{bottom:680.250000px;}
.y12c_c00001{bottom:680.400000px;}
.yc2_c00001{bottom:680.550000px;}
.y84e_c00001{bottom:680.700000px;}
.y8a_c00001{bottom:681.150000px;}
.y632_c00001{bottom:681.450000px;}
.y1053_c00001{bottom:681.750000px;}
.yee6_c00001{bottom:681.900000px;}
.y258_c00001{bottom:682.200000px;}
.ye63_c00001{bottom:682.350000px;}
.y361_c00001{bottom:682.500000px;}
.y331_c00001{bottom:682.650000px;}
.y523_c00001{bottom:682.800000px;}
.y485_c00001{bottom:682.950000px;}
.y9fd_c00001{bottom:683.100000px;}
.y6bd_c00001{bottom:683.250000px;}
.y5ea_c00001{bottom:683.400000px;}
.y5c8_c00001{bottom:683.550000px;}
.y28b_c00001{bottom:683.700000px;}
.y896_c00001{bottom:683.850000px;}
.y75d_c00001{bottom:684.150000px;}
.y301_c00001{bottom:684.450000px;}
.y787_c00001{bottom:684.600000px;}
.ya89_c00001{bottom:684.900000px;}
.ye87_c00001{bottom:685.050000px;}
.yaef_c00001{bottom:685.200000px;}
.ybe7_c00001{bottom:685.500000px;}
.y3e5_c00001{bottom:685.800000px;}
.yf7_c00001{bottom:686.100000px;}
.y9f9_c00001{bottom:686.250000px;}
.y80e_c00001{bottom:686.550000px;}
.y4d1_c00001{bottom:686.700000px;}
.ya69_c00001{bottom:686.850000px;}
.yc9b_c00001{bottom:687.000000px;}
.yd68_c00001{bottom:687.150000px;}
.ya37_c00001{bottom:687.300000px;}
.yd5e_c00001{bottom:687.450000px;}
.y4f3_c00001{bottom:687.600000px;}
.yb37_c00001{bottom:687.750000px;}
.yb53_c00001{bottom:687.900000px;}
.ya1a_c00001{bottom:688.050000px;}
.ye15_c00001{bottom:688.200000px;}
.y223_c00001{bottom:688.350000px;}
.ye06_c00001{bottom:688.500000px;}
.y662_c00001{bottom:688.650000px;}
.y8dd_c00001{bottom:688.800000px;}
.yce1_c00001{bottom:688.950000px;}
.y978_c00001{bottom:689.100000px;}
.y1f4_c00001{bottom:689.250000px;}
.yfb2_c00001{bottom:689.400000px;}
.y8bc_c00001{bottom:689.550000px;}
.yb86_c00001{bottom:689.700000px;}
.yc82_c00001{bottom:689.850000px;}
.yf5b_c00001{bottom:690.150000px;}
.y94b_c00001{bottom:690.300000px;}
.y598_c00001{bottom:690.450000px;}
.y19_c00001{bottom:690.900000px;}
.y38b_c00001{bottom:691.200000px;}
.yf3e_c00001{bottom:691.350000px;}
.y4f_c00001{bottom:691.500000px;}
.yff7_c00001{bottom:691.650000px;}
.yef9_c00001{bottom:691.800000px;}
.y1c6_c00001{bottom:691.950000px;}
.y934_c00001{bottom:692.250000px;}
.y7ca_c00001{bottom:692.550000px;}
.y71f_c00001{bottom:692.700000px;}
.y43a_c00001{bottom:692.850000px;}
.y3b4_c00001{bottom:693.000000px;}
.y881_c00001{bottom:693.300000px;}
.y104f_c00001{bottom:693.450000px;}
.y9d0_c00001{bottom:693.600000px;}
.y18e_c00001{bottom:693.750000px;}
.y699_c00001{bottom:694.050000px;}
.y600_c00001{bottom:694.200000px;}
.y2b6_c00001{bottom:694.500000px;}
.y2e0_c00001{bottom:694.650000px;}
.y12b_c00001{bottom:694.800000px;}
.ybc3_c00001{bottom:695.100000px;}
.yc1_c00001{bottom:695.250000px;}
.y89_c00001{bottom:695.550000px;}
.ybc4_c00001{bottom:695.850000px;}
.y257_c00001{bottom:696.150000px;}
.ye6c_c00001{bottom:696.600000px;}
.ye62_c00001{bottom:696.750000px;}
.y360_c00001{bottom:696.900000px;}
.y330_c00001{bottom:697.050000px;}
.y4a9_c00001{bottom:697.350000px;}
.y522_c00001{bottom:697.500000px;}
.y54e_c00001{bottom:697.650000px;}
.y6d7_c00001{bottom:697.800000px;}
.y6bc_c00001{bottom:697.950000px;}
.y28a_c00001{bottom:698.100000px;}
.y5c7_c00001{bottom:698.250000px;}
.y786_c00001{bottom:698.700000px;}
.y300_c00001{bottom:698.850000px;}
.y91e_c00001{bottom:699.150000px;}
.yde0_c00001{bottom:699.300000px;}
.yf9a_c00001{bottom:699.450000px;}
.ya88_c00001{bottom:699.600000px;}
.y3e4_c00001{bottom:699.900000px;}
.yc5f_c00001{bottom:700.050000px;}
.yf6_c00001{bottom:700.200000px;}
.ya79_c00001{bottom:700.500000px;}
.ydd5_c00001{bottom:700.650000px;}
.y7ad_c00001{bottom:700.950000px;}
.y80d_c00001{bottom:701.250000px;}
.y4d0_c00001{bottom:701.400000px;}
.yd67_c00001{bottom:701.550000px;}
.ya43_c00001{bottom:701.700000px;}
.yd5d_c00001{bottom:701.850000px;}
.ya36_c00001{bottom:702.000000px;}
.yb36_c00001{bottom:702.150000px;}
.y4f2_c00001{bottom:702.300000px;}
.ya19_c00001{bottom:702.450000px;}
.yf24_c00001{bottom:702.600000px;}
.y222_c00001{bottom:702.750000px;}
.ye14_c00001{bottom:702.900000px;}
.yb3c_c00001{bottom:703.050000px;}
.yb47_c00001{bottom:703.200000px;}
.yce0_c00001{bottom:703.350000px;}
.y661_c00001{bottom:703.500000px;}
.y1f3_c00001{bottom:703.950000px;}
.yfce_c00001{bottom:704.100000px;}
.y966_c00001{bottom:704.400000px;}
.yc81_c00001{bottom:704.550000px;}
.y94a_c00001{bottom:704.700000px;}
.y101a_c00001{bottom:704.850000px;}
.yf51_c00001{bottom:705.000000px;}
.y1045_c00001{bottom:705.150000px;}
.y18_c00001{bottom:705.300000px;}
.yccb_c00001{bottom:705.600000px;}
.yf3d_c00001{bottom:705.750000px;}
.y15d_c00001{bottom:705.900000px;}
.y597_c00001{bottom:706.050000px;}
.yef8_c00001{bottom:706.200000px;}
.y4e_c00001{bottom:706.350000px;}
.y977_c00001{bottom:706.500000px;}
.y1c5_c00001{bottom:706.650000px;}
.y439_c00001{bottom:707.250000px;}
.y71e_c00001{bottom:707.400000px;}
.y3b3_c00001{bottom:707.700000px;}
.y8fe_c00001{bottom:707.850000px;}
.y9d6_c00001{bottom:708.000000px;}
.y18d_c00001{bottom:708.150000px;}
.y880_c00001{bottom:708.300000px;}
.yd4e_c00001{bottom:708.450000px;}
.y9de_c00001{bottom:708.750000px;}
.y5ff_c00001{bottom:708.900000px;}
.y2b5_c00001{bottom:709.050000px;}
.y12a_c00001{bottom:709.200000px;}
.yc39_c00001{bottom:709.350000px;}
.yb85_c00001{bottom:709.500000px;}
.yc0_c00001{bottom:709.650000px;}
.y2df_c00001{bottom:709.800000px;}
.y84d_c00001{bottom:709.950000px;}
.y88_c00001{bottom:710.250000px;}
.y256_c00001{bottom:710.850000px;}
.yf99_c00001{bottom:711.000000px;}
.ye61_c00001{bottom:711.450000px;}
.y35f_c00001{bottom:711.600000px;}
.y32f_c00001{bottom:711.750000px;}
.ye73_c00001{bottom:711.900000px;}
.y4a8_c00001{bottom:712.050000px;}
.y54d_c00001{bottom:712.350000px;}
.y413_c00001{bottom:712.500000px;}
.y521_c00001{bottom:712.650000px;}
.yfb1_c00001{bottom:712.800000px;}
.y785_c00001{bottom:713.100000px;}
.y75c_c00001{bottom:713.250000px;}
.y2ff_c00001{bottom:713.550000px;}
.yddf_c00001{bottom:713.700000px;}
.yad5_c00001{bottom:714.000000px;}
.ya87_c00001{bottom:714.300000px;}
.y3e3_c00001{bottom:714.600000px;}
.yc5e_c00001{bottom:714.750000px;}
.yf5_c00001{bottom:714.900000px;}
.yc69_c00001{bottom:715.050000px;}
.y7ac_c00001{bottom:715.350000px;}
.ydce_c00001{bottom:715.500000px;}
.y4f1_c00001{bottom:715.650000px;}
.yb35_c00001{bottom:715.800000px;}
.y80c_c00001{bottom:715.950000px;}
.y4cf_c00001{bottom:716.100000px;}
.y7ed_c00001{bottom:716.400000px;}
.yd5c_c00001{bottom:716.550000px;}
.ye57_c00001{bottom:716.700000px;}
.ya18_c00001{bottom:716.850000px;}
.yf23_c00001{bottom:717.000000px;}
.ya28_c00001{bottom:717.150000px;}
.y660_c00001{bottom:717.450000px;}
.y221_c00001{bottom:717.600000px;}
.ycdf_c00001{bottom:717.750000px;}
.y8dc_c00001{bottom:717.900000px;}
.yce8_c00001{bottom:718.050000px;}
.y289_c00001{bottom:718.200000px;}
.y1f2_c00001{bottom:718.350000px;}
.y8bb_c00001{bottom:718.650000px;}
.yf5a_c00001{bottom:719.250000px;}
.y596_c00001{bottom:719.400000px;}
.y17_c00001{bottom:720.000000px;}
.y965_c00001{bottom:720.300000px;}
.y38a_c00001{bottom:720.450000px;}
.y15c_c00001{bottom:720.600000px;}
.y933_c00001{bottom:720.750000px;}
.yef6_c00001{bottom:720.900000px;}
.y1c4_c00001{bottom:721.050000px;}
.y869_c00001{bottom:721.800000px;}
.y438_c00001{bottom:721.950000px;}
.y3b2_c00001{bottom:722.100000px;}
.y9d5_c00001{bottom:722.400000px;}
.y71d_c00001{bottom:722.550000px;}
.y18c_c00001{bottom:722.850000px;}
.y87f_c00001{bottom:723.000000px;}
.y9dd_c00001{bottom:723.150000px;}
.y702_c00001{bottom:723.300000px;}
.yc30_c00001{bottom:723.450000px;}
.y685_c00001{bottom:723.600000px;}
.y2b4_c00001{bottom:723.750000px;}
.y129_c00001{bottom:723.900000px;}
.y87_c00001{bottom:724.350000px;}
.yc38_c00001{bottom:724.500000px;}
.yfb7_c00001{bottom:724.650000px;}
.y73e_c00001{bottom:724.800000px;}
.ybdd_c00001{bottom:725.400000px;}
.ye60_c00001{bottom:725.850000px;}
.y255_c00001{bottom:726.000000px;}
.y32e_c00001{bottom:726.150000px;}
.y35e_c00001{bottom:726.300000px;}
.y484_c00001{bottom:726.450000px;}
.y4a7_c00001{bottom:726.600000px;}
.y54c_c00001{bottom:726.750000px;}
.y6d6_c00001{bottom:726.900000px;}
.y412_c00001{bottom:727.050000px;}
.y5e9_c00001{bottom:727.200000px;}
.y5c6_c00001{bottom:727.350000px;}
.yfd5_c00001{bottom:727.500000px;}
.y784_c00001{bottom:727.800000px;}
.y2fe_c00001{bottom:727.950000px;}
.y91d_c00001{bottom:728.250000px;}
.ydde_c00001{bottom:728.400000px;}
.y9b0_c00001{bottom:728.550000px;}
.yad4_c00001{bottom:728.700000px;}
.y3e2_c00001{bottom:729.000000px;}
.yc5d_c00001{bottom:729.150000px;}
.yd28_c00001{bottom:729.300000px;}
.y7ab_c00001{bottom:729.450000px;}
.yf4_c00001{bottom:729.600000px;}
.ya6f_c00001{bottom:729.750000px;}
.ya68_c00001{bottom:730.050000px;}
.ydcd_c00001{bottom:730.200000px;}
.y80b_c00001{bottom:730.350000px;}
.y4ce_c00001{bottom:730.500000px;}
.ya42_c00001{bottom:730.800000px;}
.yd5b_c00001{bottom:730.950000px;}
.y7ec_c00001{bottom:731.100000px;}
.yf75_c00001{bottom:731.250000px;}
.yf22_c00001{bottom:731.400000px;}
.ya17_c00001{bottom:731.550000px;}
.yf38_c00001{bottom:731.700000px;}
.yebf_c00001{bottom:731.850000px;}
.yb52_c00001{bottom:732.000000px;}
.y220_c00001{bottom:732.300000px;}
.y1f1_c00001{bottom:732.450000px;}
.y65f_c00001{bottom:732.600000px;}
.y4f0_c00001{bottom:732.900000px;}
.ye1e_c00001{bottom:733.050000px;}
.y8ba_c00001{bottom:733.350000px;}
.yf59_c00001{bottom:733.950000px;}
.y595_c00001{bottom:734.100000px;}
.yf7c_c00001{bottom:734.400000px;}
.y16_c00001{bottom:734.700000px;}
.yc28_c00001{bottom:734.850000px;}
.y389_c00001{bottom:735.150000px;}
.yef5_c00001{bottom:735.300000px;}
.y461_c00001{bottom:735.450000px;}
.yef7_c00001{bottom:735.600000px;}
.y1c3_c00001{bottom:735.900000px;}
.y98b_c00001{bottom:736.200000px;}
.y6eb_c00001{bottom:736.500000px;}
.y437_c00001{bottom:736.650000px;}
.y71c_c00001{bottom:736.950000px;}
.y9cf_c00001{bottom:737.100000px;}
.y18b_c00001{bottom:737.250000px;}
.y9dc_c00001{bottom:737.550000px;}
.y87e_c00001{bottom:737.700000px;}
.y618_c00001{bottom:738.000000px;}
.y684_c00001{bottom:738.150000px;}
.y2de_c00001{bottom:738.300000px;}
.y128_c00001{bottom:738.450000px;}
.yc37_c00001{bottom:738.600000px;}
.ybf_c00001{bottom:738.750000px;}
.y86_c00001{bottom:739.050000px;}
.yfe8_c00001{bottom:739.350000px;}
.y101e_c00001{bottom:739.500000px;}
.y1019_c00001{bottom:739.800000px;}
.y254_c00001{bottom:740.100000px;}
.yd0e_c00001{bottom:740.250000px;}
.y1044_c00001{bottom:740.400000px;}
.ycbf_c00001{bottom:740.550000px;}
.y32d_c00001{bottom:740.850000px;}
.y35d_c00001{bottom:741.000000px;}
.y54b_c00001{bottom:741.150000px;}
.y6d5_c00001{bottom:741.300000px;}
.y411_c00001{bottom:741.450000px;}
.y8a7_c00001{bottom:741.600000px;}
.y6bb_c00001{bottom:741.750000px;}
.y5e8_c00001{bottom:741.900000px;}
.y5c5_c00001{bottom:742.050000px;}
.y75b_c00001{bottom:742.350000px;}
.y783_c00001{bottom:742.500000px;}
.y2fd_c00001{bottom:742.650000px;}
.yddd_c00001{bottom:742.800000px;}
.yb0b_c00001{bottom:743.100000px;}
.yad3_c00001{bottom:743.400000px;}
.ya86_c00001{bottom:743.550000px;}
.yf3_c00001{bottom:743.700000px;}
.y7aa_c00001{bottom:743.850000px;}
.ya78_c00001{bottom:744.000000px;}
.ya67_c00001{bottom:744.150000px;}
.ydd4_c00001{bottom:744.300000px;}
.y4cd_c00001{bottom:744.750000px;}
.y9fc_c00001{bottom:744.900000px;}
.y80a_c00001{bottom:745.050000px;}
.y9f8_c00001{bottom:745.200000px;}
.yd5a_c00001{bottom:745.350000px;}
.y7eb_c00001{bottom:745.500000px;}
.yea1_c00001{bottom:745.800000px;}
.ye56_c00001{bottom:745.950000px;}
.yf21_c00001{bottom:746.100000px;}
.yf9e_c00001{bottom:746.250000px;}
.ye0d_c00001{bottom:746.400000px;}
.y8db_c00001{bottom:746.550000px;}
.yb46_c00001{bottom:746.700000px;}
.y1f0_c00001{bottom:746.850000px;}
.y21f_c00001{bottom:747.000000px;}
.ycde_c00001{bottom:747.150000px;}
.y483_c00001{bottom:747.300000px;}
.ye1d_c00001{bottom:747.450000px;}
.y8b9_c00001{bottom:747.750000px;}
.yf58_c00001{bottom:748.050000px;}
.yf47_c00001{bottom:748.500000px;}
.y594_c00001{bottom:748.800000px;}
.y15_c00001{bottom:749.100000px;}
.y388_c00001{bottom:749.550000px;}
.y932_c00001{bottom:749.850000px;}
.yef4_c00001{bottom:750.000000px;}
.y82e_c00001{bottom:750.300000px;}
.y1c2_c00001{bottom:750.600000px;}
.y868_c00001{bottom:750.900000px;}
.yb81_c00001{bottom:751.050000px;}
.y6ea_c00001{bottom:751.200000px;}
.y436_c00001{bottom:751.350000px;}
.y7c9_c00001{bottom:751.650000px;}
.y9ce_c00001{bottom:751.800000px;}
.y1043_c00001{bottom:751.950000px;}
.y87d_c00001{bottom:752.100000px;}
.y9db_c00001{bottom:752.250000px;}
.y701_c00001{bottom:752.400000px;}
.y683_c00001{bottom:752.550000px;}
.y2dd_c00001{bottom:752.700000px;}
.y2b3_c00001{bottom:752.850000px;}
.y85_c00001{bottom:753.150000px;}
.yc36_c00001{bottom:753.300000px;}
.y127_c00001{bottom:753.600000px;}
.ybc2_c00001{bottom:753.900000px;}
.y73d_c00001{bottom:754.050000px;}
.y18a_c00001{bottom:754.200000px;}
.yd05_c00001{bottom:754.500000px;}
.yd0d_c00001{bottom:754.650000px;}
.ye5f_c00001{bottom:754.950000px;}
.y32c_c00001{bottom:755.250000px;}
.y35c_c00001{bottom:755.400000px;}
.y253_c00001{bottom:755.700000px;}
.y410_c00001{bottom:755.850000px;}
.y6d4_c00001{bottom:756.000000px;}
.y520_c00001{bottom:756.150000px;}
.y54a_c00001{bottom:756.300000px;}
.y5c4_c00001{bottom:756.450000px;}
.y288_c00001{bottom:756.750000px;}
.y5e7_c00001{bottom:756.900000px;}
.y2fc_c00001{bottom:757.350000px;}
.yb0a_c00001{bottom:757.500000px;}
.yb22_c00001{bottom:757.800000px;}
.yc6a_c00001{bottom:757.950000px;}
.y91c_c00001{bottom:758.100000px;}
.ya85_c00001{bottom:758.250000px;}
.y3e1_c00001{bottom:758.400000px;}
.yc63_c00001{bottom:758.550000px;}
.ya77_c00001{bottom:758.700000px;}
.yf2_c00001{bottom:758.850000px;}
.y7a9_c00001{bottom:759.000000px;}
.y976_c00001{bottom:759.150000px;}
.yfb0_c00001{bottom:759.300000px;}
.y809_c00001{bottom:759.450000px;}
.y9fb_c00001{bottom:759.600000px;}
.yd71_c00001{bottom:759.750000px;}
.y4cc_c00001{bottom:759.900000px;}
.yd59_c00001{bottom:760.050000px;}
.yf77_c00001{bottom:760.200000px;}
.yb45_c00001{bottom:760.350000px;}
.yea0_c00001{bottom:760.500000px;}
.ye55_c00001{bottom:760.650000px;}
.yf20_c00001{bottom:760.800000px;}
.yebe_c00001{bottom:760.950000px;}
.yb51_c00001{bottom:761.100000px;}
.y65e_c00001{bottom:761.400000px;}
.y1ef_c00001{bottom:761.550000px;}
.y21e_c00001{bottom:761.700000px;}
.ycdd_c00001{bottom:761.850000px;}
.ye1c_c00001{bottom:762.150000px;}
.y482_c00001{bottom:762.450000px;}
.y8b8_c00001{bottom:762.900000px;}
.y593_c00001{bottom:763.200000px;}
.y4d_c00001{bottom:763.500000px;}
.y14_c00001{bottom:763.650000px;}
.yc25_c00001{bottom:763.950000px;}
.y15b_c00001{bottom:764.100000px;}
.y460_c00001{bottom:764.250000px;}
.y387_c00001{bottom:764.400000px;}
.yb7b_c00001{bottom:764.550000px;}
.y82d_c00001{bottom:764.700000px;}
.y1c1_c00001{bottom:765.000000px;}
.y867_c00001{bottom:765.300000px;}
.y8fd_c00001{bottom:765.450000px;}
.y6e9_c00001{bottom:765.600000px;}
.y435_c00001{bottom:765.750000px;}
.y7c8_c00001{bottom:766.050000px;}
.y9d4_c00001{bottom:766.200000px;}
.y909_c00001{bottom:766.350000px;}
.y9cd_c00001{bottom:766.500000px;}
.y87c_c00001{bottom:766.800000px;}
.y9da_c00001{bottom:766.950000px;}
.y5fe_c00001{bottom:767.100000px;}
.y682_c00001{bottom:767.250000px;}
.y2dc_c00001{bottom:767.400000px;}
.y84_c00001{bottom:767.550000px;}
.ye80_c00001{bottom:767.700000px;}
.y126_c00001{bottom:768.000000px;}
.y84c_c00001{bottom:768.300000px;}
.y3b1_c00001{bottom:768.900000px;}
.yd04_c00001{bottom:769.050000px;}
.y9b1_c00001{bottom:769.200000px;}
.y252_c00001{bottom:769.350000px;}
.ycbe_c00001{bottom:769.650000px;}
.y35b_c00001{bottom:769.800000px;}
.y6d3_c00001{bottom:770.100000px;}
.y40f_c00001{bottom:770.250000px;}
.y8a6_c00001{bottom:770.400000px;}
.y6ba_c00001{bottom:770.550000px;}
.y549_c00001{bottom:770.700000px;}
.y51f_c00001{bottom:770.850000px;}
.y32b_c00001{bottom:771.150000px;}
.y782_c00001{bottom:771.300000px;}
.y287_c00001{bottom:771.450000px;}
.y5e6_c00001{bottom:771.600000px;}
.y2fb_c00001{bottom:771.750000px;}
.yddc_c00001{bottom:771.900000px;}
.yad2_c00001{bottom:772.200000px;}
.ya84_c00001{bottom:772.650000px;}
.yaee_c00001{bottom:772.800000px;}
.yc5c_c00001{bottom:772.950000px;}
.y3e0_c00001{bottom:773.100000px;}
.yf1_c00001{bottom:773.250000px;}
.y7a8_c00001{bottom:773.400000px;}
.y4cb_c00001{bottom:773.550000px;}
.yfcd_c00001{bottom:774.000000px;}
.y808_c00001{bottom:774.150000px;}
.y7ea_c00001{bottom:774.300000px;}
.yd70_c00001{bottom:774.450000px;}
.y1030_c00001{bottom:774.600000px;}
.yd58_c00001{bottom:774.750000px;}
.yf76_c00001{bottom:774.900000px;}
.y21d_c00001{bottom:775.050000px;}
.ye9f_c00001{bottom:775.200000px;}
.yebd_c00001{bottom:775.350000px;}
.ye0c_c00001{bottom:775.500000px;}
.yf37_c00001{bottom:775.650000px;}
.yb50_c00001{bottom:775.800000px;}
.y104b_c00001{bottom:775.950000px;}
.y8da_c00001{bottom:776.100000px;}
.y1ee_c00001{bottom:776.250000px;}
.y975_c00001{bottom:776.400000px;}
.ycdc_c00001{bottom:776.550000px;}
.y8b7_c00001{bottom:776.850000px;}
.y592_c00001{bottom:777.600000px;}
.y4ef_c00001{bottom:777.750000px;}
.yf57_c00001{bottom:777.900000px;}
.y631_c00001{bottom:778.050000px;}
.yf50_c00001{bottom:778.200000px;}
.y13_c00001{bottom:778.350000px;}
.y15a_c00001{bottom:778.500000px;}
.y91b_c00001{bottom:778.650000px;}
.yb7a_c00001{bottom:778.950000px;}
.y386_c00001{bottom:779.100000px;}
.y1c0_c00001{bottom:779.400000px;}
.y82c_c00001{bottom:779.550000px;}
.y866_c00001{bottom:779.700000px;}
.y6e8_c00001{bottom:780.000000px;}
.y434_c00001{bottom:780.150000px;}
.y7c7_c00001{bottom:780.450000px;}
.y9d3_c00001{bottom:780.600000px;}
.y8fc_c00001{bottom:780.900000px;}
.y5fd_c00001{bottom:781.200000px;}
.y9cc_c00001{bottom:781.350000px;}
.y700_c00001{bottom:781.500000px;}
.y681_c00001{bottom:781.650000px;}
.y2b2_c00001{bottom:781.950000px;}
.y2db_c00001{bottom:782.100000px;}
.y83_c00001{bottom:782.250000px;}
.yc35_c00001{bottom:782.400000px;}
.y125_c00001{bottom:782.700000px;}
.y73c_c00001{bottom:782.850000px;}
.yfb6_c00001{bottom:783.000000px;}
.yd03_c00001{bottom:783.750000px;}
.ye5e_c00001{bottom:784.050000px;}
.y251_c00001{bottom:784.350000px;}
.y35a_c00001{bottom:784.500000px;}
.y32a_c00001{bottom:784.800000px;}
.y4a6_c00001{bottom:784.950000px;}
.y8a5_c00001{bottom:785.100000px;}
.y51e_c00001{bottom:785.250000px;}
.y548_c00001{bottom:785.400000px;}
.y5c3_c00001{bottom:785.550000px;}
.y781_c00001{bottom:785.700000px;}
.y286_c00001{bottom:785.850000px;}
.y5e5_c00001{bottom:786.000000px;}
.yfd4_c00001{bottom:786.300000px;}
.y102f_c00001{bottom:786.450000px;}
.yddb_c00001{bottom:786.600000px;}
.y2fa_c00001{bottom:786.900000px;}
.ya83_c00001{bottom:787.050000px;}
.yaed_c00001{bottom:787.200000px;}
.yb21_c00001{bottom:787.350000px;}
.yd2b_c00001{bottom:787.500000px;}
.yc5b_c00001{bottom:787.650000px;}
.y3df_c00001{bottom:787.800000px;}
.ydca_c00001{bottom:787.950000px;}
.y7a7_c00001{bottom:788.100000px;}
.y9fa_c00001{bottom:788.400000px;}
.y807_c00001{bottom:788.550000px;}
.y4ca_c00001{bottom:788.700000px;}
.yd6f_c00001{bottom:788.850000px;}
.y7e9_c00001{bottom:789.150000px;}
.yd57_c00001{bottom:789.300000px;}
.ye54_c00001{bottom:789.450000px;}
.ye9e_c00001{bottom:789.600000px;}
.ye9b_c00001{bottom:789.750000px;}
.yb44_c00001{bottom:789.900000px;}
.yf79_c00001{bottom:790.050000px;}
.ye0b_c00001{bottom:790.200000px;}
.yf36_c00001{bottom:790.350000px;}
.y21c_c00001{bottom:790.500000px;}
.y1ed_c00001{bottom:790.650000px;}
.y8d9_c00001{bottom:790.950000px;}
.y8b6_c00001{bottom:791.250000px;}
.y56c_c00001{bottom:791.700000px;}
.yf46_c00001{bottom:792.000000px;}
.y949_c00001{bottom:792.300000px;}
.y630_c00001{bottom:792.450000px;}
.y4c_c00001{bottom:792.750000px;}
.yf4f_c00001{bottom:792.900000px;}
.y12_c00001{bottom:793.050000px;}
.y159_c00001{bottom:793.200000px;}
.yf0_c00001{bottom:793.500000px;}
.yb79_c00001{bottom:793.650000px;}
.ye39_c00001{bottom:793.800000px;}
.y4ee_c00001{bottom:793.950000px;}
.y6e7_c00001{bottom:794.100000px;}
.yfaf_c00001{bottom:794.250000px;}
.y865_c00001{bottom:794.550000px;}
.yb84_c00001{bottom:794.700000px;}
.y433_c00001{bottom:794.850000px;}
.yb80_c00001{bottom:795.000000px;}
.y1bf_c00001{bottom:795.300000px;}
.y87b_c00001{bottom:795.600000px;}
.y9d2_c00001{bottom:795.750000px;}
.y6ff_c00001{bottom:795.900000px;}
.y9cb_c00001{bottom:796.050000px;}
.y2da_c00001{bottom:796.200000px;}
.y2b1_c00001{bottom:796.350000px;}
.ybe_c00001{bottom:796.650000px;}
.ye7f_c00001{bottom:796.800000px;}
.y82_c00001{bottom:797.100000px;}
.y105d_c00001{bottom:797.250000px;}
.y84b_c00001{bottom:797.400000px;}
.y73b_c00001{bottom:797.550000px;}
.yfd3_c00001{bottom:797.700000px;}
.yf7e_c00001{bottom:797.850000px;}
.y102e_c00001{bottom:798.000000px;}
.yd0c_c00001{bottom:798.150000px;}
.y250_c00001{bottom:798.450000px;}
.y40e_c00001{bottom:798.750000px;}
.y359_c00001{bottom:798.900000px;}
.y329_c00001{bottom:799.200000px;}
.y4a5_c00001{bottom:799.350000px;}
.ydeb_c00001{bottom:799.500000px;}
.y51d_c00001{bottom:799.650000px;}
.y547_c00001{bottom:799.800000px;}
.y895_c00001{bottom:799.950000px;}
.y75a_c00001{bottom:800.250000px;}
.y5c2_c00001{bottom:800.400000px;}
.y285_c00001{bottom:800.700000px;}
.yb09_c00001{bottom:801.000000px;}
.y2f9_c00001{bottom:801.300000px;}
.ya82_c00001{bottom:801.450000px;}
.yb20_c00001{bottom:801.750000px;}
.y3de_c00001{bottom:801.900000px;}
.yc5a_c00001{bottom:802.050000px;}
.yad1_c00001{bottom:802.200000px;}
.y45f_c00001{bottom:802.500000px;}
.ydc9_c00001{bottom:802.650000px;}
.y4c9_c00001{bottom:802.800000px;}
.y806_c00001{bottom:802.950000px;}
.y9f7_c00001{bottom:803.100000px;}
.y7a6_c00001{bottom:803.250000px;}
.yb34_c00001{bottom:803.400000px;}
.y7e8_c00001{bottom:803.550000px;}
.yd66_c00001{bottom:803.700000px;}
.y98a_c00001{bottom:803.850000px;}
.yd56_c00001{bottom:804.000000px;}
.ye9a_c00001{bottom:804.150000px;}
.yb43_c00001{bottom:804.300000px;}
.yebc_c00001{bottom:804.450000px;}
.yced_c00001{bottom:804.600000px;}
.yf35_c00001{bottom:804.750000px;}
.y21b_c00001{bottom:804.900000px;}
.y1ec_c00001{bottom:805.050000px;}
.y8d8_c00001{bottom:805.350000px;}
.ye05_c00001{bottom:805.500000px;}
.ye1b_c00001{bottom:805.650000px;}
.y65d_c00001{bottom:805.800000px;}
.y8b5_c00001{bottom:805.950000px;}
.y56b_c00001{bottom:806.100000px;}
.yc0d_c00001{bottom:806.250000px;}
.y4b_c00001{bottom:806.400000px;}
.y4ed_c00001{bottom:806.550000px;}
.y948_c00001{bottom:806.700000px;}
.y591_c00001{bottom:806.850000px;}
.y11_c00001{bottom:807.150000px;}
.yc24_c00001{bottom:807.300000px;}
.y189_c00001{bottom:807.450000px;}
.yf3c_c00001{bottom:807.600000px;}
.y158_c00001{bottom:807.900000px;}
.yb75_c00001{bottom:808.200000px;}
.y82b_c00001{bottom:808.350000px;}
.yfcc_c00001{bottom:808.500000px;}
.y105c_c00001{bottom:808.800000px;}
.y6e6_c00001{bottom:808.950000px;}
.y908_c00001{bottom:809.250000px;}
.y432_c00001{bottom:809.550000px;}
.yb7f_c00001{bottom:809.700000px;}
.y101d_c00001{bottom:810.000000px;}
.y7c6_c00001{bottom:810.150000px;}
.y87a_c00001{bottom:810.300000px;}
.y6fe_c00001{bottom:810.450000px;}
.yb83_c00001{bottom:810.600000px;}
.y5fc_c00001{bottom:810.750000px;}
.ybd_c00001{bottom:811.050000px;}
.y124_c00001{bottom:811.200000px;}
.y2d9_c00001{bottom:811.350000px;}
.y81_c00001{bottom:811.500000px;}
.y1be_c00001{bottom:811.800000px;}
.ye86_c00001{bottom:812.100000px;}
.y73a_c00001{bottom:812.250000px;}
.yd02_c00001{bottom:812.550000px;}
.yd0b_c00001{bottom:812.850000px;}
.y358_c00001{bottom:813.300000px;}
.ye5d_c00001{bottom:813.450000px;}
.y24f_c00001{bottom:813.600000px;}
.y4a4_c00001{bottom:813.750000px;}
.y40d_c00001{bottom:813.900000px;}
.y51c_c00001{bottom:814.050000px;}
.y894_c00001{bottom:814.350000px;}
.y546_c00001{bottom:814.500000px;}
.y759_c00001{bottom:814.650000px;}
.y6b9_c00001{bottom:814.800000px;}
.y284_c00001{bottom:815.100000px;}
.yf98_c00001{bottom:815.400000px;}
.y5c1_c00001{bottom:815.550000px;}
.yb08_c00001{bottom:815.700000px;}
.ydda_c00001{bottom:815.850000px;}
.ya81_c00001{bottom:816.150000px;}
.yad0_c00001{bottom:816.300000px;}
.yc62_c00001{bottom:816.450000px;}
.y3dd_c00001{bottom:816.600000px;}
.yc59_c00001{bottom:816.750000px;}
.ya6e_c00001{bottom:816.900000px;}
.y481_c00001{bottom:817.200000px;}
.yfbd_c00001{bottom:817.500000px;}
.y7a5_c00001{bottom:817.650000px;}
.yb33_c00001{bottom:817.800000px;}
.y9f6_c00001{bottom:817.950000px;}
.y4c8_c00001{bottom:818.250000px;}
.yd55_c00001{bottom:818.400000px;}
.ye53_c00001{bottom:818.700000px;}
.ye99_c00001{bottom:818.850000px;}
.yb42_c00001{bottom:819.000000px;}
.yf28_c00001{bottom:819.150000px;}
.y21a_c00001{bottom:819.300000px;}
.ycf2_c00001{bottom:819.450000px;}
.yf78_c00001{bottom:819.600000px;}
.y1eb_c00001{bottom:819.750000px;}
.ye04_c00001{bottom:819.900000px;}
.yce7_c00001{bottom:820.050000px;}
.y65c_c00001{bottom:820.200000px;}
.yf69_c00001{bottom:820.350000px;}
.ycdb_c00001{bottom:820.500000px;}
.yc16_c00001{bottom:820.650000px;}
.y56a_c00001{bottom:820.800000px;}
.yc0c_c00001{bottom:820.950000px;}
.y8b4_c00001{bottom:821.100000px;}
.y590_c00001{bottom:821.250000px;}
.y4a_c00001{bottom:821.400000px;}
.y10_c00001{bottom:821.550000px;}
.yc23_c00001{bottom:821.700000px;}
.y62f_c00001{bottom:821.850000px;}
.y188_c00001{bottom:822.000000px;}
.y157_c00001{bottom:822.300000px;}
.y385_c00001{bottom:822.600000px;}
.ye38_c00001{bottom:822.900000px;}
.y4ec_c00001{bottom:823.050000px;}
.y6e5_c00001{bottom:823.350000px;}
.y71b_c00001{bottom:823.650000px;}
.y7c5_c00001{bottom:823.800000px;}
.y431_c00001{bottom:823.950000px;}
.y8fb_c00001{bottom:824.100000px;}
.y879_c00001{bottom:824.700000px;}
.y9d1_c00001{bottom:824.850000px;}
.y907_c00001{bottom:825.000000px;}
.yef_c00001{bottom:825.150000px;}
.ybd9_c00001{bottom:825.300000px;}
.ybc_c00001{bottom:825.450000px;}
.y123_c00001{bottom:825.600000px;}
.ybd4_c00001{bottom:825.750000px;}
.y80_c00001{bottom:825.900000px;}
.y84a_c00001{bottom:826.200000px;}
.y2d8_c00001{bottom:826.500000px;}
.yf9f_c00001{bottom:826.950000px;}
.yd0a_c00001{bottom:827.250000px;}
.yf8d_c00001{bottom:827.400000px;}
.yf9d_c00001{bottom:827.550000px;}
.y357_c00001{bottom:827.700000px;}
.y24e_c00001{bottom:828.000000px;}
.ybfd_c00001{bottom:828.150000px;}
.y328_c00001{bottom:828.300000px;}
.y4a3_c00001{bottom:828.450000px;}
.ye79_c00001{bottom:828.600000px;}
.y51b_c00001{bottom:828.750000px;}
.y545_c00001{bottom:828.900000px;}
.y758_c00001{bottom:829.050000px;}
.y780_c00001{bottom:829.200000px;}
.y283_c00001{bottom:829.500000px;}
.y5c0_c00001{bottom:829.950000px;}
.yfc5_c00001{bottom:830.100000px;}
.ydd9_c00001{bottom:830.550000px;}
.yb07_c00001{bottom:830.700000px;}
.y40c_c00001{bottom:830.850000px;}
.yacf_c00001{bottom:831.000000px;}
.yc58_c00001{bottom:831.150000px;}
.y3dc_c00001{bottom:831.300000px;}
.ya66_c00001{bottom:831.600000px;}
.yda9_c00001{bottom:831.900000px;}
.y105f_c00001{bottom:832.050000px;}
.ydc8_c00001{bottom:832.200000px;}
.y4c7_c00001{bottom:832.350000px;}
.yb32_c00001{bottom:832.500000px;}
.y7e7_c00001{bottom:832.650000px;}
.yd54_c00001{bottom:832.800000px;}
.y102d_c00001{bottom:832.950000px;}
.yd7b_c00001{bottom:833.100000px;}
.ye98_c00001{bottom:833.250000px;}
.yb41_c00001{bottom:833.400000px;}
.yebb_c00001{bottom:833.550000px;}
.ycec_c00001{bottom:833.700000px;}
.ye13_c00001{bottom:833.850000px;}
.yb4f_c00001{bottom:834.000000px;}
.y1ea_c00001{bottom:834.150000px;}
.y219_c00001{bottom:834.450000px;}
.ye03_c00001{bottom:834.600000px;}
.y65b_c00001{bottom:834.900000px;}
.yf68_c00001{bottom:835.050000px;}
.y569_c00001{bottom:835.200000px;}
.yc15_c00001{bottom:835.350000px;}
.y49_c00001{bottom:835.500000px;}
.yc0b_c00001{bottom:835.650000px;}
.yf_c00001{bottom:835.950000px;}
.yf45_c00001{bottom:836.100000px;}
.y62e_c00001{bottom:836.250000px;}
.yc22_c00001{bottom:836.400000px;}
.y187_c00001{bottom:836.700000px;}
.y156_c00001{bottom:837.000000px;}
.yb74_c00001{bottom:837.300000px;}
.y4eb_c00001{bottom:837.450000px;}
.y384_c00001{bottom:837.600000px;}
.y6e4_c00001{bottom:837.750000px;}
.y45e_c00001{bottom:838.050000px;}
.y931_c00001{bottom:838.200000px;}
.y1bd_c00001{bottom:838.350000px;}
.yb7e_c00001{bottom:838.500000px;}
.y430_c00001{bottom:838.650000px;}
.yb82_c00001{bottom:838.800000px;}
.y71a_c00001{bottom:839.100000px;}
.y906_c00001{bottom:839.400000px;}
.yee_c00001{bottom:839.550000px;}
.y617_c00001{bottom:839.850000px;}
.ybb_c00001{bottom:840.000000px;}
.y122_c00001{bottom:840.300000px;}
.ybd3_c00001{bottom:840.450000px;}
.y7f_c00001{bottom:840.600000px;}
.ye81_c00001{bottom:840.900000px;}
.y739_c00001{bottom:841.350000px;}
.yd09_c00001{bottom:841.650000px;}
.yd01_c00001{bottom:842.100000px;}
.y356_c00001{bottom:842.250000px;}
.yff6_c00001{bottom:842.400000px;}
.y24d_c00001{bottom:842.700000px;}
.ybfc_c00001{bottom:842.850000px;}
.y327_c00001{bottom:843.000000px;}
.y4a2_c00001{bottom:843.150000px;}
.ybf8_c00001{bottom:843.300000px;}
.y757_c00001{bottom:843.450000px;}
.y544_c00001{bottom:843.600000px;}
.y1025_c00001{bottom:843.750000px;}
.y51a_c00001{bottom:843.900000px;}
.y282_c00001{bottom:844.200000px;}
.y5bf_c00001{bottom:844.350000px;}
.ycb7_c00001{bottom:844.500000px;}
.yf8c_c00001{bottom:844.650000px;}
.ydd8_c00001{bottom:844.950000px;}
.yb06_c00001{bottom:845.100000px;}
.ya80_c00001{bottom:845.250000px;}
.yace_c00001{bottom:845.400000px;}
.yc68_c00001{bottom:845.550000px;}
.y3db_c00001{bottom:845.700000px;}
.yc57_c00001{bottom:845.850000px;}
.ya65_c00001{bottom:846.000000px;}
.y4c6_c00001{bottom:846.450000px;}
.ydc7_c00001{bottom:846.600000px;}
.y7a4_c00001{bottom:846.750000px;}
.ydcc_c00001{bottom:846.900000px;}
.y805_c00001{bottom:847.050000px;}
.yb31_c00001{bottom:847.200000px;}
.y7e6_c00001{bottom:847.350000px;}
.y480_c00001{bottom:847.500000px;}
.ybbe_c00001{bottom:847.800000px;}
.ye97_c00001{bottom:847.950000px;}
.yceb_c00001{bottom:848.100000px;}
.yb40_c00001{bottom:848.250000px;}
.yb4e_c00001{bottom:848.400000px;}
.y218_c00001{bottom:848.550000px;}
.yf2e_c00001{bottom:848.700000px;}
.y1e9_c00001{bottom:848.850000px;}
.yce6_c00001{bottom:849.000000px;}
.yf34_c00001{bottom:849.150000px;}
.y8d7_c00001{bottom:849.300000px;}
.yf67_c00001{bottom:849.450000px;}
.yc11_c00001{bottom:849.600000px;}
.y568_c00001{bottom:849.900000px;}
.yc14_c00001{bottom:850.050000px;}
.yf6c_c00001{bottom:850.200000px;}
.y947_c00001{bottom:850.350000px;}
.yf44_c00001{bottom:850.500000px;}
.y48_c00001{bottom:850.650000px;}
.yc21_c00001{bottom:850.800000px;}
.ye_c00001{bottom:851.100000px;}
.y186_c00001{bottom:851.400000px;}
.yf4e_c00001{bottom:851.550000px;}
.y3b0_c00001{bottom:851.700000px;}
.yf3b_c00001{bottom:851.850000px;}
.yefc_c00001{bottom:852.000000px;}
.y82a_c00001{bottom:852.150000px;}
.yb78_c00001{bottom:852.300000px;}
.y6e3_c00001{bottom:852.450000px;}
.y930_c00001{bottom:852.600000px;}
.y45d_c00001{bottom:852.750000px;}
.y719_c00001{bottom:852.900000px;}
.y1bc_c00001{bottom:853.050000px;}
.yb7d_c00001{bottom:853.200000px;}
.y9e0_c00001{bottom:853.350000px;}
.y878_c00001{bottom:853.500000px;}
.y7c4_c00001{bottom:853.650000px;}
.yc2f_c00001{bottom:853.950000px;}
.yed_c00001{bottom:854.250000px;}
.y9d9_c00001{bottom:854.400000px;}
.ybdb_c00001{bottom:854.550000px;}
.yba_c00001{bottom:854.700000px;}
.ybd2_c00001{bottom:854.850000px;}
.y7e_c00001{bottom:855.000000px;}
.yf0b_c00001{bottom:855.150000px;}
.y2b0_c00001{bottom:855.300000px;}
.y738_c00001{bottom:855.750000px;}
.y383_c00001{bottom:855.900000px;}
.y1018_c00001{bottom:856.050000px;}
.y355_c00001{bottom:856.350000px;}
.y40b_c00001{bottom:856.500000px;}
.y24c_c00001{bottom:856.800000px;}
.y326_c00001{bottom:857.100000px;}
.ybfb_c00001{bottom:857.250000px;}
.y4a1_c00001{bottom:857.550000px;}
.ye72_c00001{bottom:857.700000px;}
.ydea_c00001{bottom:857.850000px;}
.y519_c00001{bottom:858.000000px;}
.y91a_c00001{bottom:858.150000px;}
.y543_c00001{bottom:858.300000px;}
.y281_c00001{bottom:858.600000px;}
.y5be_c00001{bottom:859.050000px;}
.ya7f_c00001{bottom:859.350000px;}
.yb05_c00001{bottom:859.500000px;}
.ydd7_c00001{bottom:859.650000px;}
.yaec_c00001{bottom:859.800000px;}
.y3da_c00001{bottom:860.100000px;}
.yc56_c00001{bottom:860.250000px;}
.ya64_c00001{bottom:860.400000px;}
.yd2a_c00001{bottom:860.700000px;}
.y7a3_c00001{bottom:860.850000px;}
.y47f_c00001{bottom:861.150000px;}
.ydc6_c00001{bottom:861.300000px;}
.y7e5_c00001{bottom:861.450000px;}
.yb30_c00001{bottom:861.600000px;}
.y4c5_c00001{bottom:861.900000px;}
.yd7a_c00001{bottom:862.200000px;}
.ye9d_c00001{bottom:862.350000px;}
.ybbd_c00001{bottom:862.500000px;}
.ybc1_c00001{bottom:862.650000px;}
.yf1f_c00001{bottom:862.800000px;}
.yb3f_c00001{bottom:862.950000px;}
.yb4d_c00001{bottom:863.100000px;}
.y1e8_c00001{bottom:863.250000px;}
.y65a_c00001{bottom:863.400000px;}
.yd94_c00001{bottom:863.550000px;}
.y217_c00001{bottom:863.700000px;}
.yf33_c00001{bottom:863.850000px;}
.y62d_c00001{bottom:864.000000px;}
.yc10_c00001{bottom:864.150000px;}
.y47_c00001{bottom:864.300000px;}
.ye43_c00001{bottom:864.600000px;}
.y567_c00001{bottom:864.750000px;}
.y2f8_c00001{bottom:865.050000px;}
.yd_c00001{bottom:865.200000px;}
.y155_c00001{bottom:865.500000px;}
.y185_c00001{bottom:865.800000px;}
.yc27_c00001{bottom:866.100000px;}
.y829_c00001{bottom:866.250000px;}
.yefb_c00001{bottom:866.400000px;}
.y3af_c00001{bottom:866.550000px;}
.y382_c00001{bottom:866.700000px;}
.yb73_c00001{bottom:866.850000px;}
.yb77_c00001{bottom:867.000000px;}
.y1024_c00001{bottom:867.150000px;}
.y864_c00001{bottom:867.300000px;}
.y718_c00001{bottom:867.600000px;}
.y1bb_c00001{bottom:867.750000px;}
.y45c_c00001{bottom:867.900000px;}
.y9ab_c00001{bottom:868.350000px;}
.y616_c00001{bottom:868.650000px;}
.y698_c00001{bottom:868.800000px;}
.y9ca_c00001{bottom:868.950000px;}
.yb9_c00001{bottom:869.100000px;}
.ybda_c00001{bottom:869.250000px;}
.y6e2_c00001{bottom:869.400000px;}
.ybd1_c00001{bottom:869.550000px;}
.y7d_c00001{bottom:869.700000px;}
.yf0a_c00001{bottom:869.850000px;}
.yf88_c00001{bottom:870.150000px;}
.y974_c00001{bottom:870.450000px;}
.y40a_c00001{bottom:871.200000px;}
.y354_c00001{bottom:871.500000px;}
.y325_c00001{bottom:871.650000px;}
.y1011_c00001{bottom:871.800000px;}
.y24b_c00001{bottom:871.950000px;}
.y4a0_c00001{bottom:872.250000px;}
.y518_c00001{bottom:872.400000px;}
.y542_c00001{bottom:872.700000px;}
.y6b8_c00001{bottom:873.000000px;}
.y5bd_c00001{bottom:873.150000px;}
.y280_c00001{bottom:873.300000px;}
.ycbd_c00001{bottom:873.450000px;}
.yf97_c00001{bottom:873.750000px;}
.ya7e_c00001{bottom:874.050000px;}
.yaeb_c00001{bottom:874.200000px;}
.ya63_c00001{bottom:874.500000px;}
.y3d9_c00001{bottom:874.800000px;}
.yc55_c00001{bottom:874.950000px;}
.yd29_c00001{bottom:875.100000px;}
.y7a2_c00001{bottom:875.250000px;}
.y47e_c00001{bottom:875.550000px;}
.y804_c00001{bottom:875.850000px;}
.ydc5_c00001{bottom:876.000000px;}
.y7e4_c00001{bottom:876.300000px;}
.ybbc_c00001{bottom:876.600000px;}
.yd65_c00001{bottom:876.750000px;}
.yec9_c00001{bottom:876.900000px;}
.ybc0_c00001{bottom:877.050000px;}
.yf1e_c00001{bottom:877.200000px;}
.yb3e_c00001{bottom:877.350000px;}
.ycea_c00001{bottom:877.500000px;}
.y1e7_c00001{bottom:877.650000px;}
.yb4c_c00001{bottom:877.800000px;}
.y4c4_c00001{bottom:878.100000px;}
.yd93_c00001{bottom:878.250000px;}
.y216_c00001{bottom:878.400000px;}
.yc0f_c00001{bottom:878.550000px;}
.yc0a_c00001{bottom:878.700000px;}
.yc13_c00001{bottom:878.850000px;}
.y566_c00001{bottom:879.150000px;}
.ye42_c00001{bottom:879.300000px;}
.y46_c00001{bottom:879.450000px;}
.y154_c00001{bottom:879.900000px;}
.y2f7_c00001{bottom:880.200000px;}
.y184_c00001{bottom:880.500000px;}
.yc_c00001{bottom:880.650000px;}
.yf56_c00001{bottom:880.800000px;}
.y3ae_c00001{bottom:880.950000px;}
.yef3_c00001{bottom:881.100000px;}
.y381_c00001{bottom:881.400000px;}
.y849_c00001{bottom:881.700000px;}
.y45b_c00001{bottom:882.000000px;}
.y1ba_c00001{bottom:882.150000px;}
.y717_c00001{bottom:882.300000px;}
.y9df_c00001{bottom:882.450000px;}
.y9af_c00001{bottom:882.750000px;}
.y737_c00001{bottom:883.050000px;}
.y9ae_c00001{bottom:883.200000px;}
.y615_c00001{bottom:883.350000px;}
.y5fb_c00001{bottom:883.500000px;}
.yb8_c00001{bottom:883.650000px;}
.yec_c00001{bottom:883.800000px;}
.ybd0_c00001{bottom:883.950000px;}
.y2af_c00001{bottom:884.100000px;}
.ybdc_c00001{bottom:884.250000px;}
.y7c_c00001{bottom:884.550000px;}
.yf87_c00001{bottom:884.850000px;}
.y92f_c00001{bottom:885.300000px;}
.y409_c00001{bottom:885.600000px;}
.yd0f_c00001{bottom:885.900000px;}
.ybfa_c00001{bottom:886.050000px;}
.y24a_c00001{bottom:886.350000px;}
.y353_c00001{bottom:886.650000px;}
.y517_c00001{bottom:886.800000px;}
.y756_c00001{bottom:887.100000px;}
.y6b7_c00001{bottom:887.400000px;}
.y541_c00001{bottom:887.550000px;}
.y5e4_c00001{bottom:887.700000px;}
.y27f_c00001{bottom:887.850000px;}
.ycb6_c00001{bottom:888.000000px;}
.ycbc_c00001{bottom:888.150000px;}
.ya7d_c00001{bottom:888.600000px;}
.y3d8_c00001{bottom:888.900000px;}
.yc54_c00001{bottom:889.050000px;}
.ya62_c00001{bottom:889.200000px;}
.yc67_c00001{bottom:889.350000px;}
.ya76_c00001{bottom:889.500000px;}
.y105b_c00001{bottom:889.800000px;}
.y7a1_c00001{bottom:889.950000px;}
.y1017_c00001{bottom:890.250000px;}
.y7e3_c00001{bottom:890.550000px;}
.y4c3_c00001{bottom:890.700000px;}
.y47d_c00001{bottom:891.000000px;}
.yd64_c00001{bottom:891.150000px;}
.yda8_c00001{bottom:891.300000px;}
.yb4b_c00001{bottom:891.450000px;}
.yee1_c00001{bottom:891.600000px;}
.yb3d_c00001{bottom:891.750000px;}
.yf1d_c00001{bottom:891.900000px;}
.ycf1_c00001{bottom:892.050000px;}
.yce9_c00001{bottom:892.200000px;}
.ye12_c00001{bottom:892.350000px;}
.y659_c00001{bottom:892.500000px;}
.yd92_c00001{bottom:892.650000px;}
.y215_c00001{bottom:892.800000px;}
.yf32_c00001{bottom:892.950000px;}
.y45_c00001{bottom:893.100000px;}
.yc0e_c00001{bottom:893.250000px;}
.y4ea_c00001{bottom:893.550000px;}
.y565_c00001{bottom:893.850000px;}
.ye41_c00001{bottom:894.000000px;}
.y153_c00001{bottom:894.150000px;}
.yb_c00001{bottom:894.300000px;}
.y8b3_c00001{bottom:894.600000px;}
.yf43_c00001{bottom:894.750000px;}
.yc26_c00001{bottom:894.900000px;}
.y183_c00001{bottom:895.050000px;}
.ye37_c00001{bottom:895.350000px;}
.y828_c00001{bottom:895.500000px;}
.y3ad_c00001{bottom:895.650000px;}
.yef2_c00001{bottom:895.800000px;}
.y7c3_c00001{bottom:895.950000px;}
.y380_c00001{bottom:896.100000px;}
.y848_c00001{bottom:896.400000px;}
.y1b9_c00001{bottom:896.550000px;}
.y45a_c00001{bottom:896.700000px;}
.y42f_c00001{bottom:896.850000px;}
.yb7c_c00001{bottom:897.150000px;}
.yeb_c00001{bottom:897.450000px;}
.yb7_c00001{bottom:897.750000px;}
.y5fa_c00001{bottom:897.900000px;}
.y121_c00001{bottom:898.200000px;}
.y9d8_c00001{bottom:898.350000px;}
.y2ae_c00001{bottom:898.500000px;}
.y2d7_c00001{bottom:898.650000px;}
.y7b_c00001{bottom:898.950000px;}
.yfae_c00001{bottom:899.250000px;}
.y352_c00001{bottom:900.000000px;}
.yd00_c00001{bottom:900.300000px;}
.yd08_c00001{bottom:900.450000px;}
.ybf9_c00001{bottom:900.750000px;}
.y249_c00001{bottom:901.050000px;}
.y516_c00001{bottom:901.200000px;}
.y105a_c00001{bottom:901.350000px;}
.y6d2_c00001{bottom:901.500000px;}
.y6b6_c00001{bottom:901.800000px;}
.y540_c00001{bottom:901.950000px;}
.y5e3_c00001{bottom:902.100000px;}
.y5bc_c00001{bottom:902.250000px;}
.y27e_c00001{bottom:902.550000px;}
.ycb5_c00001{bottom:902.700000px;}
.ya7c_c00001{bottom:903.000000px;}
.yaea_c00001{bottom:903.300000px;}
.yc53_c00001{bottom:903.450000px;}
.y3d7_c00001{bottom:903.600000px;}
.yc66_c00001{bottom:903.750000px;}
.yc61_c00001{bottom:903.900000px;}
.ya6d_c00001{bottom:904.050000px;}
.ya61_c00001{bottom:904.200000px;}
.y47c_c00001{bottom:904.350000px;}
.ya75_c00001{bottom:904.500000px;}
.y7a0_c00001{bottom:904.650000px;}
.y7e2_c00001{bottom:904.950000px;}
.yb3b_c00001{bottom:905.400000px;}
.y803_c00001{bottom:905.700000px;}
.yd63_c00001{bottom:905.850000px;}
.y49f_c00001{bottom:906.150000px;}
.yee0_c00001{bottom:906.300000px;}
.ybbb_c00001{bottom:906.450000px;}
.yecb_c00001{bottom:906.600000px;}
.yeda_c00001{bottom:906.750000px;}
.y658_c00001{bottom:906.900000px;}
.yd8a_c00001{bottom:907.200000px;}
.yd91_c00001{bottom:907.350000px;}
.y214_c00001{bottom:907.500000px;}
.yc12_c00001{bottom:907.650000px;}
.yc09_c00001{bottom:907.950000px;}
.y564_c00001{bottom:908.250000px;}
.y44_c00001{bottom:908.400000px;}
.ya_c00001{bottom:908.700000px;}
.y2f6_c00001{bottom:909.000000px;}
.y152_c00001{bottom:909.300000px;}
.y182_c00001{bottom:909.450000px;}
.yf55_c00001{bottom:909.900000px;}
.y7c2_c00001{bottom:910.050000px;}
.y827_c00001{bottom:910.200000px;}
.yfb5_c00001{bottom:910.350000px;}
.y37f_c00001{bottom:910.500000px;}
.y459_c00001{bottom:910.800000px;}
.yb76_c00001{bottom:910.950000px;}
.y1b8_c00001{bottom:911.250000px;}
.y92e_c00001{bottom:911.550000px;}
.yb6_c00001{bottom:911.850000px;}
.y614_c00001{bottom:912.150000px;}
.yea_c00001{bottom:912.300000px;}
.y9ad_c00001{bottom:912.450000px;}
.y120_c00001{bottom:912.600000px;}
.y9d7_c00001{bottom:912.750000px;}
.y680_c00001{bottom:912.900000px;}
.ybd8_c00001{bottom:913.050000px;}
.y7a_c00001{bottom:913.350000px;}
.y101c_c00001{bottom:913.650000px;}
.yfe7_c00001{bottom:913.950000px;}
.yfd2_c00001{bottom:914.100000px;}
.y104a_c00001{bottom:914.400000px;}
.ycff_c00001{bottom:914.700000px;}
.yd07_c00001{bottom:914.850000px;}
.y408_c00001{bottom:915.000000px;}
.y324_c00001{bottom:915.750000px;}
.y351_c00001{bottom:915.900000px;}
.y248_c00001{bottom:916.200000px;}
.y515_c00001{bottom:916.350000px;}
.y657_c00001{bottom:916.500000px;}
.y53f_c00001{bottom:916.650000px;}
.y5e2_c00001{bottom:916.800000px;}
.y27d_c00001{bottom:916.950000px;}
.ycbb_c00001{bottom:917.250000px;}
.ycb4_c00001{bottom:917.400000px;}
.y3d6_c00001{bottom:917.700000px;}
.yacd_c00001{bottom:918.000000px;}
.yc52_c00001{bottom:918.150000px;}
.yc60_c00001{bottom:918.300000px;}
.yc65_c00001{bottom:918.450000px;}
.ya60_c00001{bottom:918.600000px;}
.ya6c_c00001{bottom:918.750000px;}
.y47b_c00001{bottom:919.050000px;}
.ya74_c00001{bottom:919.200000px;}
.y79f_c00001{bottom:919.350000px;}
.y802_c00001{bottom:919.800000px;}
.yd53_c00001{bottom:920.100000px;}
.yee5_c00001{bottom:920.250000px;}
.ybba_c00001{bottom:920.550000px;}
.yedf_c00001{bottom:920.700000px;}
.ybbf_c00001{bottom:920.850000px;}
.y656_c00001{bottom:921.000000px;}
.y4c2_c00001{bottom:921.300000px;}
.yed9_c00001{bottom:921.450000px;}
.y213_c00001{bottom:921.600000px;}
.yd90_c00001{bottom:921.750000px;}
.y62c_c00001{bottom:921.900000px;}
.yc80_c00001{bottom:922.050000px;}
.yfb4_c00001{bottom:922.200000px;}
.y8d6_c00001{bottom:922.350000px;}
.yc08_c00001{bottom:922.650000px;}
.y43_c00001{bottom:923.100000px;}
.y1e6_c00001{bottom:923.400000px;}
.y2f5_c00001{bottom:923.550000px;}
.y151_c00001{bottom:923.700000px;}
.y9_c00001{bottom:923.850000px;}
.yff1_c00001{bottom:924.000000px;}
.y181_c00001{bottom:924.150000px;}
.yf54_c00001{bottom:924.300000px;}
.yff3_c00001{bottom:924.450000px;}
.y826_c00001{bottom:924.600000px;}
.ye36_c00001{bottom:924.900000px;}
.y37e_c00001{bottom:925.200000px;}
.y458_c00001{bottom:925.500000px;}
.y1b7_c00001{bottom:925.650000px;}
.y42e_c00001{bottom:925.950000px;}
.y716_c00001{bottom:926.250000px;}
.ye9_c00001{bottom:926.700000px;}
.yb5_c00001{bottom:926.850000px;}
.y11f_c00001{bottom:927.000000px;}
.y2ad_c00001{bottom:927.300000px;}
.y9c9_c00001{bottom:927.450000px;}
.y79_c00001{bottom:927.750000px;}
.ybcf_c00001{bottom:928.050000px;}
.yf09_c00001{bottom:928.500000px;}
.y407_c00001{bottom:929.100000px;}
.yd06_c00001{bottom:929.550000px;}
.y1003_c00001{bottom:929.850000px;}
.y919_c00001{bottom:930.300000px;}
.y350_c00001{bottom:930.600000px;}
.y514_c00001{bottom:930.750000px;}
.ycb2_c00001{bottom:930.900000px;}
.y53e_c00001{bottom:931.050000px;}
.y27c_c00001{bottom:931.350000px;}
.y5e1_c00001{bottom:931.500000px;}
.ycba_c00001{bottom:931.650000px;}
.y989_c00001{bottom:932.100000px;}
.yacc_c00001{bottom:932.400000px;}
.yb04_c00001{bottom:932.550000px;}
.y247_c00001{bottom:932.700000px;}
.y3d5_c00001{bottom:932.850000px;}
.yc64_c00001{bottom:933.150000px;}
.ya5f_c00001{bottom:933.300000px;}
.y323_c00001{bottom:933.450000px;}
.ya73_c00001{bottom:933.600000px;}
.y79e_c00001{bottom:933.750000px;}
.yfad_c00001{bottom:933.900000px;}
.y7e1_c00001{bottom:934.200000px;}
.yee4_c00001{bottom:934.950000px;}
.yedc_c00001{bottom:935.400000px;}
.yc20_c00001{bottom:935.700000px;}
.y212_c00001{bottom:936.000000px;}
.y655_c00001{bottom:936.150000px;}
.yce5_c00001{bottom:936.300000px;}
.yd8f_c00001{bottom:936.450000px;}
.y42_c00001{bottom:936.750000px;}
.y49e_c00001{bottom:936.900000px;}
.yc7f_c00001{bottom:937.050000px;}
.y1042_c00001{bottom:937.200000px;}
.y58f_c00001{bottom:937.500000px;}
.y563_c00001{bottom:937.800000px;}
.y4e9_c00001{bottom:937.950000px;}
.y150_c00001{bottom:938.100000px;}
.y8_c00001{bottom:938.250000px;}
.y180_c00001{bottom:938.550000px;}
.y8b2_c00001{bottom:938.850000px;}
.y825_c00001{bottom:939.000000px;}
.yefa_c00001{bottom:939.300000px;}
.y7c1_c00001{bottom:939.600000px;}
.y457_c00001{bottom:939.900000px;}
.y1b6_c00001{bottom:940.050000px;}
.y715_c00001{bottom:940.350000px;}
.y42d_c00001{bottom:940.650000px;}
.y877_c00001{bottom:941.100000px;}
.ye8_c00001{bottom:941.400000px;}
.yb4_c00001{bottom:941.550000px;}
.y11e_c00001{bottom:941.700000px;}
.y6e1_c00001{bottom:941.850000px;}
.y697_c00001{bottom:942.000000px;}
.y905_c00001{bottom:942.150000px;}
.y78_c00001{bottom:942.450000px;}
.ybd7_c00001{bottom:942.600000px;}
.y736_c00001{bottom:943.200000px;}
.y406_c00001{bottom:944.400000px;}
.y34f_c00001{bottom:944.700000px;}
.y893_c00001{bottom:945.000000px;}
.y513_c00001{bottom:945.150000px;}
.y6b5_c00001{bottom:945.300000px;}
.y27b_c00001{bottom:945.750000px;}
.y987_c00001{bottom:946.050000px;}
.y5e0_c00001{bottom:946.200000px;}
.ycb3_c00001{bottom:946.500000px;}
.y988_c00001{bottom:946.800000px;}
.yacb_c00001{bottom:947.100000px;}
.y3d4_c00001{bottom:947.250000px;}
.yc51_c00001{bottom:947.550000px;}
.ya72_c00001{bottom:947.700000px;}
.y79d_c00001{bottom:947.850000px;}
.ya5e_c00001{bottom:948.000000px;}
.y1016_c00001{bottom:948.150000px;}
.y47a_c00001{bottom:948.300000px;}
.yfe6_c00001{bottom:948.600000px;}
.y1041_c00001{bottom:948.750000px;}
.yfd1_c00001{bottom:948.900000px;}
.y801_c00001{bottom:949.050000px;}
.yc07_c00001{bottom:949.350000px;}
.ye52_c00001{bottom:949.650000px;}
.yede_c00001{bottom:949.800000px;}
.ycf0_c00001{bottom:950.100000px;}
.y654_c00001{bottom:950.250000px;}
.y4c1_c00001{bottom:950.400000px;}
.y322_c00001{bottom:950.700000px;}
.yd8c_c00001{bottom:950.850000px;}
.yd8e_c00001{bottom:951.150000px;}
.ycda_c00001{bottom:951.450000px;}
.y49d_c00001{bottom:951.600000px;}
.y211_c00001{bottom:951.900000px;}
.y41_c00001{bottom:952.200000px;}
.ya16_c00001{bottom:952.350000px;}
.yda7_c00001{bottom:952.500000px;}
.ya13_c00001{bottom:952.650000px;}
.yf86_c00001{bottom:952.800000px;}
.y7_c00001{bottom:952.950000px;}
.y58e_c00001{bottom:953.250000px;}
.y714_c00001{bottom:953.700000px;}
.y456_c00001{bottom:954.300000px;}
.y1b5_c00001{bottom:954.450000px;}
.y847_c00001{bottom:954.750000px;}
.y3ac_c00001{bottom:954.900000px;}
.y1e5_c00001{bottom:955.050000px;}
.yb3_c00001{bottom:955.200000px;}
.y735_c00001{bottom:955.500000px;}
.ye7_c00001{bottom:955.800000px;}
.y6e0_c00001{bottom:955.950000px;}
.y613_c00001{bottom:956.100000px;}
.y11d_c00001{bottom:956.250000px;}
.y2ac_c00001{bottom:956.400000px;}
.y8fa_c00001{bottom:956.550000px;}
.y696_c00001{bottom:956.700000px;}
.y9c8_c00001{bottom:956.850000px;}
.y2d6_c00001{bottom:957.150000px;}
.ybd6_c00001{bottom:957.300000px;}
.yfbc_c00001{bottom:957.600000px;}
.y9f5_c00001{bottom:958.350000px;}
.y246_c00001{bottom:958.650000px;}
.y405_c00001{bottom:958.800000px;}
.y1059_c00001{bottom:958.950000px;}
.y34e_c00001{bottom:959.400000px;}
.y6b4_c00001{bottom:959.700000px;}
.y512_c00001{bottom:959.850000px;}
.y53d_c00001{bottom:960.150000px;}
.y77_c00001{bottom:960.450000px;}
.y1040_c00001{bottom:960.600000px;}
.y27a_c00001{bottom:960.750000px;}
.y5df_c00001{bottom:960.900000px;}
.ycb9_c00001{bottom:961.200000px;}
.ya7b_c00001{bottom:961.500000px;}
.y3d3_c00001{bottom:961.650000px;}
.yb1f_c00001{bottom:961.800000px;}
.yae9_c00001{bottom:961.950000px;}
.ya71_c00001{bottom:962.400000px;}
.y479_c00001{bottom:962.550000px;}
.ya5d_c00001{bottom:962.700000px;}
.y79c_c00001{bottom:963.000000px;}
.y800_c00001{bottom:963.750000px;}
.yec8_c00001{bottom:964.500000px;}
.yedb_c00001{bottom:964.800000px;}
.yeca_c00001{bottom:965.100000px;}
.yd89_c00001{bottom:965.250000px;}
.y653_c00001{bottom:965.400000px;}
.y210_c00001{bottom:965.550000px;}
.y40_c00001{bottom:965.850000px;}
.y49c_c00001{bottom:966.300000px;}
.y946_c00001{bottom:966.600000px;}
.y562_c00001{bottom:966.900000px;}
.ya15_c00001{bottom:967.050000px;}
.y62b_c00001{bottom:967.200000px;}
.y6_c00001{bottom:967.350000px;}
.y8b1_c00001{bottom:967.650000px;}
.yc7e_c00001{bottom:968.100000px;}
.y824_c00001{bottom:968.400000px;}
.y863_c00001{bottom:968.700000px;}
.y1b4_c00001{bottom:969.150000px;}
.y1e4_c00001{bottom:969.450000px;}
.y3ab_c00001{bottom:969.600000px;}
.y42c_c00001{bottom:969.750000px;}
.y713_c00001{bottom:969.900000px;}
.ye6_c00001{bottom:970.200000px;}
.yb2_c00001{bottom:970.350000px;}
.y5f9_c00001{bottom:970.500000px;}
.y1058_c00001{bottom:970.800000px;}
.y11c_c00001{bottom:970.950000px;}
.y612_c00001{bottom:971.250000px;}
.y695_c00001{bottom:971.400000px;}
.y2d5_c00001{bottom:971.550000px;}
.y8f9_c00001{bottom:971.700000px;}
.y2ab_c00001{bottom:971.850000px;}
.yf74_c00001{bottom:972.000000px;}
.y734_c00001{bottom:972.300000px;}
.yc50_c00001{bottom:972.750000px;}
.y404_c00001{bottom:973.200000px;}
.y77f_c00001{bottom:973.800000px;}
.y34d_c00001{bottom:974.100000px;}
.y511_c00001{bottom:974.550000px;}
.y6b3_c00001{bottom:974.700000px;}
.y279_c00001{bottom:974.850000px;}
.y53c_c00001{bottom:975.300000px;}
.y5de_c00001{bottom:975.600000px;}
.yb1e_c00001{bottom:975.900000px;}
.y1004_c00001{bottom:976.050000px;}
.yaca_c00001{bottom:976.200000px;}
.y3d2_c00001{bottom:976.350000px;}
.ya7a_c00001{bottom:976.650000px;}
.ya5c_c00001{bottom:977.100000px;}
.y7e0_c00001{bottom:977.400000px;}
.y245_c00001{bottom:977.700000px;}
.y7ff_c00001{bottom:978.150000px;}
.yee3_c00001{bottom:978.450000px;}
.y478_c00001{bottom:978.750000px;}
.yedd_c00001{bottom:978.900000px;}
.yec7_c00001{bottom:979.200000px;}
.y4c0_c00001{bottom:979.500000px;}
.yd8b_c00001{bottom:979.650000px;}
.ybb9_c00001{bottom:979.950000px;}
.yd8d_c00001{bottom:980.250000px;}
.yfbb_c00001{bottom:980.550000px;}
.y20f_c00001{bottom:980.700000px;}
.y3f_c00001{bottom:981.000000px;}
.y561_c00001{bottom:981.300000px;}
.ya14_c00001{bottom:981.450000px;}
.y62a_c00001{bottom:981.600000px;}
.y5_c00001{bottom:981.750000px;}
.y17f_c00001{bottom:982.050000px;}
.y964_c00001{bottom:982.200000px;}
.y1057_c00001{bottom:982.350000px;}
.yff0_c00001{bottom:982.500000px;}
.y712_c00001{bottom:982.800000px;}
.yfd8_c00001{bottom:983.100000px;}
.y37d_c00001{bottom:983.550000px;}
.y1b3_c00001{bottom:983.850000px;}
.yb1_c00001{bottom:984.000000px;}
.y42b_c00001{bottom:984.150000px;}
.y1e3_c00001{bottom:984.300000px;}
.ye5_c00001{bottom:984.600000px;}
.y6df_c00001{bottom:984.750000px;}
.y6fd_c00001{bottom:984.900000px;}
.y11b_c00001{bottom:985.350000px;}
.y9ac_c00001{bottom:985.650000px;}
.y694_c00001{bottom:985.800000px;}
.y733_c00001{bottom:985.950000px;}
.ybd5_c00001{bottom:986.100000px;}
.y76_c00001{bottom:986.400000px;}
.y2d4_c00001{bottom:986.700000px;}
.y2aa_c00001{bottom:987.000000px;}
.y92d_c00001{bottom:987.150000px;}
.y403_c00001{bottom:987.900000px;}
.y892_c00001{bottom:988.200000px;}
.y34c_c00001{bottom:988.500000px;}
.y6d1_c00001{bottom:988.950000px;}
.y6b2_c00001{bottom:989.100000px;}
.y510_c00001{bottom:989.250000px;}
.y53b_c00001{bottom:989.550000px;}
.y278_c00001{bottom:989.700000px;}
.y5bb_c00001{bottom:990.000000px;}
.ycb8_c00001{bottom:990.300000px;}
.y3d1_c00001{bottom:990.750000px;}
.yae8_c00001{bottom:991.050000px;}
.yfac_c00001{bottom:991.800000px;}
.yac9_c00001{bottom:992.100000px;}
.y7df_c00001{bottom:992.550000px;}
.y102c_c00001{bottom:992.850000px;}
.yee2_c00001{bottom:993.300000px;}
.y79b_c00001{bottom:993.600000px;}
.y477_c00001{bottom:993.900000px;}
.yfef_c00001{bottom:994.050000px;}
.yd88_c00001{bottom:994.350000px;}
.y652_c00001{bottom:994.650000px;}
.yfcb_c00001{bottom:994.950000px;}
.y20e_c00001{bottom:995.100000px;}
.y49b_c00001{bottom:995.400000px;}
.yfe5_c00001{bottom:995.550000px;}
.y629_c00001{bottom:995.700000px;}
.y4_c00001{bottom:996.150000px;}
.y3e_c00001{bottom:996.450000px;}
.y963_c00001{bottom:996.600000px;}
.y7c0_c00001{bottom:997.500000px;}
.y8b0_c00001{bottom:997.650000px;}
.y1e2_c00001{bottom:997.950000px;}
.y42a_c00001{bottom:998.250000px;}
.y3aa_c00001{bottom:998.400000px;}
.y1b2_c00001{bottom:998.550000px;}
.yb0_c00001{bottom:998.700000px;}
.y711_c00001{bottom:999.000000px;}
.ye4_c00001{bottom:999.300000px;}
.y6de_c00001{bottom:999.450000px;}
.y11a_c00001{bottom:999.750000px;}
.y732_c00001{bottom:1000.050000px;}
.y5f8_c00001{bottom:1000.500000px;}
.ybce_c00001{bottom:1000.800000px;}
.y75_c00001{bottom:1001.100000px;}
.y846_c00001{bottom:1001.550000px;}
.y876_c00001{bottom:1002.300000px;}
.y402_c00001{bottom:1002.600000px;}
.y34b_c00001{bottom:1002.900000px;}
.y6d0_c00001{bottom:1003.350000px;}
.y277_c00001{bottom:1003.650000px;}
.y6b1_c00001{bottom:1003.800000px;}
.y53a_c00001{bottom:1003.950000px;}
.y5ba_c00001{bottom:1004.100000px;}
.y918_c00001{bottom:1004.400000px;}
.y5dd_c00001{bottom:1004.700000px;}
.yb72_c00001{bottom:1005.150000px;}
.ya5b_c00001{bottom:1005.450000px;}
.y476_c00001{bottom:1005.900000px;}
.y7de_c00001{bottom:1006.200000px;}
.yfca_c00001{bottom:1006.500000px;}
.y102b_c00001{bottom:1006.650000px;}
.yae7_c00001{bottom:1006.950000px;}
.y7fe_c00001{bottom:1007.250000px;}
.yfe4_c00001{bottom:1007.400000px;}
.y79a_c00001{bottom:1007.700000px;}
.y4bf_c00001{bottom:1009.500000px;}
.y20d_c00001{bottom:1009.800000px;}
.y49a_c00001{bottom:1010.100000px;}
.y3_c00001{bottom:1010.550000px;}
.y14f_c00001{bottom:1010.850000px;}
.y3d_c00001{bottom:1011.300000px;}
.y2d3_c00001{bottom:1011.600000px;}
.y1005_c00001{bottom:1011.900000px;}
.y455_c00001{bottom:1012.350000px;}
.y37c_c00001{bottom:1012.650000px;}
.yaf_c00001{bottom:1013.100000px;}
.y1e1_c00001{bottom:1013.400000px;}
.y1b1_c00001{bottom:1013.700000px;}
.ye3_c00001{bottom:1014.150000px;}
.y611_c00001{bottom:1014.450000px;}
.y3d0_c00001{bottom:1014.900000px;}
.yfab_c00001{bottom:1015.200000px;}
.y74_c00001{bottom:1015.500000px;}
.y731_c00001{bottom:1015.950000px;}
.y845_c00001{bottom:1016.250000px;}
.y401_c00001{bottom:1017.000000px;}
.y891_c00001{bottom:1017.300000px;}
.y1052_c00001{bottom:1017.450000px;}
.yffb_c00001{bottom:1017.750000px;}
.y2a9_c00001{bottom:1018.050000px;}
.y6b0_c00001{bottom:1018.500000px;}
.y276_c00001{bottom:1018.800000px;}
.y5b9_c00001{bottom:1019.100000px;}
.ye40_c00001{bottom:1020.300000px;}
.ya12_c00001{bottom:1020.900000px;}
.yff5_c00001{bottom:1028.550000px;}
.yfee_c00001{bottom:1028.850000px;}
.yffa_c00001{bottom:1029.300000px;}
.y917_c00001{bottom:1035.450000px;}
.ya5a_c00001{bottom:1036.800000px;}
.ya59_c00001{bottom:1037.100000px;}
.y755_c00001{bottom:1037.550000px;}
.yb70_c00001{bottom:1037.850000px;}
.y916_c00001{bottom:1038.300000px;}
.y754_c00001{bottom:1038.600000px;}
.yb71_c00001{bottom:1039.950000px;}
.y474_c00001{bottom:1040.700000px;}
.yf08_c00001{bottom:1041.450000px;}
.yac8_c00001{bottom:1041.600000px;}
.y7dd_c00001{bottom:1041.900000px;}
.y2d2_c00001{bottom:1042.200000px;}
.y2d1_c00001{bottom:1042.500000px;}
.ybf7_c00001{bottom:1042.950000px;}
.y799_c00001{bottom:1043.250000px;}
.y475_c00001{bottom:1044.000000px;}
.y627_c00001{bottom:1044.300000px;}
.y1_c00001{bottom:1044.750000px;}
.y2_c00001{bottom:1045.050000px;}
.y4be_c00001{bottom:1045.350000px;}
.yc4f_c00001{bottom:1045.500000px;}
.y20c_c00001{bottom:1045.800000px;}
.y73_c00001{bottom:1046.100000px;}
.y945_c00001{bottom:1046.250000px;}
.y628_c00001{bottom:1046.400000px;}
.y8af_c00001{bottom:1046.550000px;}
.y70f_c00001{bottom:1046.850000px;}
.yc06_c00001{bottom:1047.300000px;}
.y37b_c00001{bottom:1047.600000px;}
.y429_c00001{bottom:1047.900000px;}
.y1b0_c00001{bottom:1048.050000px;}
.y1af_c00001{bottom:1048.350000px;}
.y37a_c00001{bottom:1048.650000px;}
.y710_c00001{bottom:1048.950000px;}
.ye2_c00001{bottom:1049.100000px;}
.y72_c00001{bottom:1049.400000px;}
.ye02_c00001{bottom:1049.700000px;}
.y3ce_c00001{bottom:1050.150000px;}
.ycb0_c00001{bottom:1050.450000px;}
.ye96_c00001{bottom:1050.600000px;}
.ydc4_c00001{bottom:1050.900000px;}
.ycb1_c00001{bottom:1051.200000px;}
.y3cf_c00001{bottom:1051.650000px;}
.y823_c00001{bottom:1051.800000px;}
.y8f8_c00001{bottom:1051.950000px;}
.y890_c00001{bottom:1052.250000px;}
.yed8_c00001{bottom:1052.400000px;}
.yda6_c00001{bottom:1052.550000px;}
.yed7_c00001{bottom:1052.700000px;}
.y275_c00001{bottom:1053.000000px;}
.y274_c00001{bottom:1053.300000px;}
.y5b7_c00001{bottom:1053.750000px;}
.y50f_c00001{bottom:1054.050000px;}
.ybcd_c00001{bottom:1054.350000px;}
.y5b8_c00001{bottom:1054.500000px;}
.ybcc_c00001{bottom:1055.100000px;}
.y9c6_c00001{bottom:1055.850000px;}
.ya11_c00001{bottom:1056.000000px;}
.ya10_c00001{bottom:1056.300000px;}
.y9c7_c00001{bottom:1056.600000px;}
.yf73_c00001{bottom:1058.850000px;}
.yde9_c00001{bottom:1059.150000px;}
.yf85_c00001{bottom:1059.450000px;}
.yfed_c00001{bottom:1059.750000px;}
.yde8_c00001{bottom:1060.200000px;}
.yf7b_c00001{bottom:1060.500000px;}
.yef1_c00001{bottom:1061.250000px;}
.y104e_c00001{bottom:1063.800000px;}
.ycd9_c00001{bottom:1066.200000px;}
.ycd8_c00001{bottom:1067.700000px;}
.ha_c00001{height:30.000000px;}
.h4_c00001{height:36.000000px;}
.h3_c00001{height:42.000000px;}
.hb_c00001{height:43.200000px;}
.h6_c00001{height:48.000000px;}
.h7_c00001{height:49.800000px;}
.h8_c00001{height:54.000000px;}
.h2_c00001{height:60.000000px;}
.h5_c00001{height:66.000000px;}
.hf_c00001{height:72.000000px;}
.h9_c00001{height:78.000000px;}
.hd_c00001{height:90.000000px;}
.hc_c00001{height:102.000000px;}
.he_c00001{height:126.000000px;}
.h10_c00001{height:132.000000px;}
.h1_c00001{height:1164.000000px;}
.h0_c00001{height:1164.239960px;}
.w0_c00001{width:920.160094px;}
.w1_c00001{width:920.250000px;}
.x0_c00001{left:0.000000px;}
.x221_c00001{left:79.950000px;}
.x222_c00001{left:81.000000px;}
.x228_c00001{left:82.050000px;}
.x234_c00001{left:83.100000px;}
.x233_c00001{left:84.150000px;}
.x232_c00001{left:85.350000px;}
.x231_c00001{left:86.400000px;}
.x223_c00001{left:87.600000px;}
.x230_c00001{left:88.650000px;}
.x216_c00001{left:89.700000px;}
.x217_c00001{left:91.500000px;}
.x21d_c00001{left:92.850000px;}
.x229_c00001{left:94.050000px;}
.x1fb_c00001{left:95.100000px;}
.x20f_c00001{left:96.900000px;}
.x20e_c00001{left:97.950000px;}
.x21b_c00001{left:99.300000px;}
.x200_c00001{left:100.500000px;}
.x1dc_c00001{left:102.300000px;}
.x21e_c00001{left:103.350000px;}
.x21a_c00001{left:104.400000px;}
.x219_c00001{left:105.450000px;}
.x1c6_c00001{left:106.500000px;}
.x1cb_c00001{left:107.550000px;}
.x19c_c00001{left:109.050000px;}
.x1a5_c00001{left:110.550000px;}
.x1e6_c00001{left:112.050000px;}
.x220_c00001{left:113.100000px;}
.x1e5_c00001{left:114.150000px;}
.x203_c00001{left:115.500000px;}
.x209_c00001{left:116.700000px;}
.x20a_c00001{left:117.750000px;}
.x20b_c00001{left:118.800000px;}
.x20c_c00001{left:120.300000px;}
.x13c_c00001{left:121.650000px;}
.x1f3_c00001{left:122.700000px;}
.x12f_c00001{left:124.650000px;}
.x127_c00001{left:125.850000px;}
.x11d_c00001{left:127.650000px;}
.x111_c00001{left:128.850000px;}
.x1ca_c00001{left:130.050000px;}
.x1f1_c00001{left:131.700000px;}
.x1f4_c00001{left:133.200000px;}
.x175_c00001{left:134.250000px;}
.x173_c00001{left:135.300000px;}
.x205_c00001{left:136.500000px;}
.x1b6_c00001{left:137.550000px;}
.x1b4_c00001{left:139.350000px;}
.x1f2_c00001{left:140.400000px;}
.x1c9_c00001{left:141.900000px;}
.x1ec_c00001{left:142.950000px;}
.x1c7_c00001{left:144.150000px;}
.x1e1_c00001{left:145.500000px;}
.x1d8_c00001{left:146.550000px;}
.x1d7_c00001{left:147.600000px;}
.x1d6_c00001{left:149.100000px;}
.x1cd_c00001{left:150.450000px;}
.x116_c00001{left:151.950000px;}
.x1f0_c00001{left:153.750000px;}
.x129_c00001{left:154.800000px;}
.x7a_c00001{left:156.300000px;}
.x3_c00001{left:157.350000px;}
.x1_c00001{left:158.400000px;}
.x1fd_c00001{left:159.450000px;}
.x1cf_c00001{left:160.500000px;}
.x1c8_c00001{left:161.850000px;}
.x139_c00001{left:162.900000px;}
.x128_c00001{left:163.950000px;}
.x131_c00001{left:165.000000px;}
.x117_c00001{left:166.800000px;}
.x19e_c00001{left:168.150000px;}
.x1a2_c00001{left:169.650000px;}
.x17a_c00001{left:170.700000px;}
.x17d_c00001{left:171.750000px;}
.x112_c00001{left:172.800000px;}
.x130_c00001{left:174.000000px;}
.x114_c00001{left:175.650000px;}
.x125_c00001{left:176.850000px;}
.x56_c00001{left:177.900000px;}
.x51_c00001{left:179.250000px;}
.x4_c00001{left:180.750000px;}
.x1e7_c00001{left:182.100000px;}
.x7f_c00001{left:183.150000px;}
.x1ce_c00001{left:184.200000px;}
.x11b_c00001{left:186.000000px;}
.x1b8_c00001{left:187.050000px;}
.x123_c00001{left:188.250000px;}
.x92_c00001{left:189.600000px;}
.x24_c00001{left:191.250000px;}
.x11_c00001{left:192.900000px;}
.x7d_c00001{left:194.400000px;}
.x89_c00001{left:195.450000px;}
.x120_c00001{left:196.950000px;}
.x13d_c00001{left:198.000000px;}
.x13b_c00001{left:199.800000px;}
.x12a_c00001{left:201.300000px;}
.x96_c00001{left:202.500000px;}
.x113_c00001{left:204.150000px;}
.x6d_c00001{left:205.950000px;}
.x115_c00001{left:207.000000px;}
.x69_c00001{left:208.350000px;}
.x90_c00001{left:210.300000px;}
.x133_c00001{left:211.350000px;}
.x31_c00001{left:212.550000px;}
.x7b_c00001{left:213.600000px;}
.x59_c00001{left:214.650000px;}
.x174_c00001{left:215.700000px;}
.x5c_c00001{left:216.750000px;}
.x19_c00001{left:218.400000px;}
.x2b_c00001{left:219.750000px;}
.x119_c00001{left:221.100000px;}
.x3d_c00001{left:222.750000px;}
.x1e_c00001{left:224.550000px;}
.x44_c00001{left:225.750000px;}
.x5_c00001{left:227.550000px;}
.x12_c00001{left:229.200000px;}
.x93_c00001{left:230.250000px;}
.xa_c00001{left:232.200000px;}
.x8e_c00001{left:234.000000px;}
.x65_c00001{left:235.050000px;}
.x32_c00001{left:236.100000px;}
.x1a0_c00001{left:237.150000px;}
.x37_c00001{left:238.200000px;}
.x47_c00001{left:239.850000px;}
.x39_c00001{left:241.350000px;}
.x118_c00001{left:242.700000px;}
.x25_c00001{left:243.750000px;}
.x184_c00001{left:244.950000px;}
.x6a_c00001{left:246.150000px;}
.x75_c00001{left:247.500000px;}
.x52_c00001{left:248.700000px;}
.x3e_c00001{left:250.050000px;}
.x1b5_c00001{left:251.250000px;}
.x80_c00001{left:252.600000px;}
.x66_c00001{left:254.100000px;}
.x13_c00001{left:255.450000px;}
.x138_c00001{left:256.950000px;}
.x11e_c00001{left:258.150000px;}
.x5d_c00001{left:259.200000px;}
.x2c_c00001{left:260.400000px;}
.x61_c00001{left:261.450000px;}
.x33_c00001{left:262.800000px;}
.xb_c00001{left:263.850000px;}
.x82_c00001{left:264.900000px;}
.x26_c00001{left:266.100000px;}
.x76_c00001{left:267.300000px;}
.x45_c00001{left:268.950000px;}
.x1f_c00001{left:270.150000px;}
.x180_c00001{left:271.200000px;}
.x8d_c00001{left:272.400000px;}
.x4d_c00001{left:274.350000px;}
.xc_c00001{left:275.700000px;}
.x73_c00001{left:277.050000px;}
.x41_c00001{left:278.250000px;}
.x12d_c00001{left:279.300000px;}
.x57_c00001{left:281.250000px;}
.x14_c00001{left:282.450000px;}
.x3a_c00001{left:283.500000px;}
.x50_c00001{left:285.150000px;}
.x6e_c00001{left:286.200000px;}
.x91_c00001{left:288.000000px;}
.x48_c00001{left:289.500000px;}
.x11c_c00001{left:291.450000px;}
.x53_c00001{left:292.950000px;}
.x126_c00001{left:294.150000px;}
.x132_c00001{left:295.200000px;}
.x6_c00001{left:296.250000px;}
.x1cc_c00001{left:297.600000px;}
.x3b_c00001{left:298.650000px;}
.x121_c00001{left:299.850000px;}
.x17b_c00001{left:300.900000px;}
.x5e_c00001{left:302.100000px;}
.x42_c00001{left:303.150000px;}
.x2d_c00001{left:304.350000px;}
.x1a_c00001{left:305.550000px;}
.x15_c00001{left:306.900000px;}
.x17c_c00001{left:308.100000px;}
.x5a_c00001{left:309.450000px;}
.x6f_c00001{left:311.400000px;}
.x77_c00001{left:312.750000px;}
.x3f_c00001{left:314.250000px;}
.x27_c00001{left:316.200000px;}
.x46_c00001{left:317.550000px;}
.x64_c00001{left:319.200000px;}
.x134_c00001{left:320.400000px;}
.x3c_c00001{left:321.750000px;}
.x7e_c00001{left:322.800000px;}
.x11a_c00001{left:324.000000px;}
.x1a3_c00001{left:325.050000px;}
.x70_c00001{left:326.100000px;}
.xd_c00001{left:327.150000px;}
.x2e_c00001{left:328.800000px;}
.x54_c00001{left:330.450000px;}
.x20_c00001{left:332.400000px;}
.x60_c00001{left:333.450000px;}
.x179_c00001{left:334.500000px;}
.x87_c00001{left:335.550000px;}
.x34_c00001{left:336.900000px;}
.x177_c00001{left:338.100000px;}
.x7_c00001{left:339.150000px;}
.x43_c00001{left:341.100000px;}
.x1b_c00001{left:343.050000px;}
.x12e_c00001{left:344.100000px;}
.x49_c00001{left:345.300000px;}
.x1d0_c00001{left:346.500000px;}
.x1a4_c00001{left:347.550000px;}
.x86_c00001{left:348.600000px;}
.x6b_c00001{left:349.950000px;}
.x136_c00001{left:351.000000px;}
.x55_c00001{left:352.050000px;}
.x13a_c00001{left:353.100000px;}
.x35_c00001{left:354.600000px;}
.x28_c00001{left:356.550000px;}
.x13e_c00001{left:357.600000px;}
.x62_c00001{left:359.100000px;}
.x4a_c00001{left:360.450000px;}
.x19f_c00001{left:361.800000px;}
.x6c_c00001{left:363.600000px;}
.x78_c00001{left:365.250000px;}
.x83_c00001{left:366.750000px;}
.x81_c00001{left:368.550000px;}
.xe_c00001{left:370.050000px;}
.x21_c00001{left:371.700000px;}
.x1df_c00001{left:372.900000px;}
.x4b_c00001{left:374.550000px;}
.x12b_c00001{left:375.600000px;}
.x4e_c00001{left:376.950000px;}
.x1c_c00001{left:378.300000px;}
.x2f_c00001{left:379.950000px;}
.x17e_c00001{left:381.150000px;}
.x12c_c00001{left:382.800000px;}
.x71_c00001{left:384.000000px;}
.x1a1_c00001{left:385.200000px;}
.x135_c00001{left:386.250000px;}
.x16_c00001{left:387.900000px;}
.x29_c00001{left:389.250000px;}
.x1d_c00001{left:391.200000px;}
.x178_c00001{left:393.150000px;}
.x8_c00001{left:394.200000px;}
.x1fc_c00001{left:395.250000px;}
.x67_c00001{left:396.300000px;}
.x5f_c00001{left:397.800000px;}
.x124_c00001{left:399.750000px;}
.x94_c00001{left:400.950000px;}
.x36_c00001{left:402.450000px;}
.x8c_c00001{left:403.950000px;}
.x19d_c00001{left:405.000000px;}
.x8a_c00001{left:406.050000px;}
.x122_c00001{left:407.100000px;}
.x22_c00001{left:408.450000px;}
.x204_c00001{left:409.500000px;}
.x9_c00001{left:411.150000px;}
.x4c_c00001{left:412.350000px;}
.x207_c00001{left:413.400000px;}
.x137_c00001{left:414.450000px;}
.x8f_c00001{left:416.100000px;}
.x7c_c00001{left:417.750000px;}
.x79_c00001{left:418.950000px;}
.x58_c00001{left:420.150000px;}
.x88_c00001{left:421.350000px;}
.x17_c00001{left:423.150000px;}
.x181_c00001{left:424.500000px;}
.x176_c00001{left:426.000000px;}
.x72_c00001{left:427.200000px;}
.x84_c00001{left:428.250000px;}
.x17f_c00001{left:429.600000px;}
.x95_c00001{left:430.800000px;}
.x206_c00001{left:431.850000px;}
.xf_c00001{left:433.350000px;}
.x4f_c00001{left:435.300000px;}
.x1b7_c00001{left:436.350000px;}
.x10d_c00001{left:437.400000px;}
.x211_c00001{left:438.450000px;}
.x40_c00001{left:439.500000px;}
.x5b_c00001{left:441.000000px;}
.x30_c00001{left:442.200000px;}
.x11f_c00001{left:443.400000px;}
.x21c_c00001{left:444.450000px;}
.x18_c00001{left:445.500000px;}
.x182_c00001{left:447.300000px;}
.x23_c00001{left:448.350000px;}
.x1e0_c00001{left:449.550000px;}
.x183_c00001{left:450.600000px;}
.x1d5_c00001{left:451.800000px;}
.x85_c00001{left:453.150000px;}
.x10_c00001{left:454.950000px;}
.x1fe_c00001{left:456.150000px;}
.x2_c00001{left:457.200000px;}
.x2a_c00001{left:458.700000px;}
.x8b_c00001{left:460.350000px;}
.x1d9_c00001{left:461.400000px;}
.x63_c00001{left:463.200000px;}
.x74_c00001{left:465.000000px;}
.x169_c00001{left:466.800000px;}
.x162_c00001{left:468.000000px;}
.x157_c00001{left:469.350000px;}
.x38_c00001{left:470.400000px;}
.x68_c00001{left:471.600000px;}
.x1ea_c00001{left:472.950000px;}
.x1f6_c00001{left:474.900000px;}
.x1dd_c00001{left:475.950000px;}
.x1f5_c00001{left:477.000000px;}
.x1f7_c00001{left:478.500000px;}
.x210_c00001{left:479.550000px;}
.x1c0_c00001{left:480.600000px;}
.x1ba_c00001{left:481.650000px;}
.x1b9_c00001{left:483.450000px;}
.x1ed_c00001{left:485.250000px;}
.x1c5_c00001{left:486.300000px;}
.x1f8_c00001{left:487.350000px;}
.x1d1_c00001{left:489.150000px;}
.x185_c00001{left:490.350000px;}
.x19a_c00001{left:492.300000px;}
.x1eb_c00001{left:493.800000px;}
.x187_c00001{left:495.600000px;}
.x1fa_c00001{left:497.250000px;}
.x20d_c00001{left:498.300000px;}
.xe7_c00001{left:499.350000px;}
.x97_c00001{left:501.150000px;}
.x1de_c00001{left:502.200000px;}
.x1a9_c00001{left:503.250000px;}
.x1ae_c00001{left:504.750000px;}
.x1a6_c00001{left:506.100000px;}
.x1d2_c00001{left:507.450000px;}
.x10e_c00001{left:508.800000px;}
.x1af_c00001{left:509.850000px;}
.x1a7_c00001{left:510.900000px;}
.x19b_c00001{left:512.400000px;}
.x1e8_c00001{left:513.450000px;}
.x1b2_c00001{left:515.100000px;}
.x149_c00001{left:516.300000px;}
.x161_c00001{left:518.100000px;}
.x14b_c00001{left:519.600000px;}
.x151_c00001{left:520.650000px;}
.x1b3_c00001{left:522.450000px;}
.x1ad_c00001{left:523.500000px;}
.x147_c00001{left:524.550000px;}
.x158_c00001{left:526.200000px;}
.x1ab_c00001{left:527.250000px;}
.x1c4_c00001{left:528.300000px;}
.x10f_c00001{left:529.350000px;}
.x156_c00001{left:531.300000px;}
.x14e_c00001{left:532.500000px;}
.x98_c00001{left:534.300000px;}
.xab_c00001{left:535.500000px;}
.x166_c00001{left:536.700000px;}
.x189_c00001{left:538.650000px;}
.x145_c00001{left:540.300000px;}
.x1aa_c00001{left:541.500000px;}
.x1d3_c00001{left:543.150000px;}
.x106_c00001{left:544.500000px;}
.xda_c00001{left:545.700000px;}
.xa0_c00001{left:546.900000px;}
.x13f_c00001{left:548.700000px;}
.x153_c00001{left:549.750000px;}
.x1a8_c00001{left:551.100000px;}
.x141_c00001{left:552.300000px;}
.x1c1_c00001{left:553.650000px;}
.x16a_c00001{left:555.000000px;}
.x1b0_c00001{left:556.350000px;}
.x172_c00001{left:557.700000px;}
.x10a_c00001{left:558.750000px;}
.x16d_c00001{left:559.800000px;}
.xc2_c00001{left:560.850000px;}
.x15e_c00001{left:561.900000px;}
.x191_c00001{left:563.100000px;}
.xc3_c00001{left:564.150000px;}
.x1bd_c00001{left:565.650000px;}
.xc9_c00001{left:566.700000px;}
.x1ef_c00001{left:567.750000px;}
.xb2_c00001{left:568.800000px;}
.xe8_c00001{left:570.300000px;}
.xa7_c00001{left:571.350000px;}
.x10b_c00001{left:572.400000px;}
.x1bb_c00001{left:573.450000px;}
.xf9_c00001{left:574.500000px;}
.x99_c00001{left:575.700000px;}
.xde_c00001{left:576.900000px;}
.x190_c00001{left:578.550000px;}
.x159_c00001{left:579.900000px;}
.x186_c00001{left:581.100000px;}
.x107_c00001{left:582.300000px;}
.xbc_c00001{left:584.250000px;}
.xfc_c00001{left:586.200000px;}
.xec_c00001{left:587.250000px;}
.xac_c00001{left:589.200000px;}
.xcf_c00001{left:590.850000px;}
.x163_c00001{left:591.900000px;}
.xb7_c00001{left:593.250000px;}
.x15f_c00001{left:594.600000px;}
.x10c_c00001{left:595.800000px;}
.xca_c00001{left:597.300000px;}
.x15c_c00001{left:598.800000px;}
.xae_c00001{left:600.000000px;}
.xa1_c00001{left:601.950000px;}
.xc4_c00001{left:603.000000px;}
.x144_c00001{left:604.350000px;}
.x9a_c00001{left:606.300000px;}
.xf4_c00001{left:608.100000px;}
.xb3_c00001{left:609.450000px;}
.xa8_c00001{left:610.650000px;}
.xbd_c00001{left:612.300000px;}
.xdf_c00001{left:613.650000px;}
.x15a_c00001{left:614.850000px;}
.x198_c00001{left:615.900000px;}
.xed_c00001{left:617.100000px;}
.x9b_c00001{left:618.600000px;}
.x14f_c00001{left:619.950000px;}
.xcb_c00001{left:621.450000px;}
.xdd_c00001{left:622.950000px;}
.xbe_c00001{left:624.600000px;}
.xfd_c00001{left:626.100000px;}
.x15b_c00001{left:627.150000px;}
.x148_c00001{left:628.200000px;}
.xd0_c00001{left:629.400000px;}
.xee_c00001{left:630.450000px;}
.xad_c00001{left:632.100000px;}
.x164_c00001{left:633.600000px;}
.x103_c00001{left:634.800000px;}
.xfa_c00001{left:636.750000px;}
.xaf_c00001{left:637.800000px;}
.xd7_c00001{left:639.450000px;}
.x1ee_c00001{left:640.500000px;}
.xd1_c00001{left:641.700000px;}
.x146_c00001{left:642.900000px;}
.xdb_c00001{left:643.950000px;}
.xcc_c00001{left:645.300000px;}
.x1b1_c00001{left:646.500000px;}
.xb8_c00001{left:648.000000px;}
.x16b_c00001{left:649.050000px;}
.x143_c00001{left:650.100000px;}
.x1c3_c00001{left:651.450000px;}
.xe9_c00001{left:652.800000px;}
.x142_c00001{left:654.150000px;}
.x1bc_c00001{left:655.200000px;}
.xc5_c00001{left:656.250000px;}
.xa2_c00001{left:657.450000px;}
.x18f_c00001{left:658.800000px;}
.xe4_c00001{left:660.300000px;}
.xe0_c00001{left:661.950000px;}
.xdc_c00001{left:663.750000px;}
.xef_c00001{left:664.950000px;}
.x170_c00001{left:666.300000px;}
.xf7_c00001{left:667.950000px;}
.xf2_c00001{left:669.300000px;}
.x9c_c00001{left:670.500000px;}
.xd5_c00001{left:672.150000px;}
.xfe_c00001{left:673.200000px;}
.x152_c00001{left:674.700000px;}
.x194_c00001{left:676.350000px;}
.x193_c00001{left:677.400000px;}
.xbf_c00001{left:678.600000px;}
.x15d_c00001{left:679.800000px;}
.xb4_c00001{left:681.450000px;}
.x201_c00001{left:682.500000px;}
.x154_c00001{left:683.550000px;}
.x1d4_c00001{left:684.600000px;}
.xcd_c00001{left:685.650000px;}
.x150_c00001{left:687.300000px;}
.x195_c00001{left:688.500000px;}
.x160_c00001{left:689.550000px;}
.xb9_c00001{left:690.900000px;}
.x16e_c00001{left:692.850000px;}
.xa9_c00001{left:694.200000px;}
.x105_c00001{left:695.250000px;}
.xd2_c00001{left:696.750000px;}
.xa3_c00001{left:698.100000px;}
.xd8_c00001{left:699.600000px;}
.x1ac_c00001{left:701.550000px;}
.xe1_c00001{left:702.600000px;}
.x188_c00001{left:704.250000px;}
.x16f_c00001{left:705.900000px;}
.xb0_c00001{left:707.550000px;}
.x1db_c00001{left:709.050000px;}
.x9d_c00001{left:710.100000px;}
.xff_c00001{left:712.050000px;}
.xa4_c00001{left:713.550000px;}
.x18d_c00001{left:715.050000px;}
.xc0_c00001{left:716.100000px;}
.x14a_c00001{left:717.900000px;}
.x1da_c00001{left:719.250000px;}
.xc6_c00001{left:720.300000px;}
.x1e9_c00001{left:721.350000px;}
.xaa_c00001{left:722.700000px;}
.x168_c00001{left:724.650000px;}
.xd4_c00001{left:725.700000px;}
.xf0_c00001{left:726.900000px;}
.x196_c00001{left:728.250000px;}
.x101_c00001{left:729.300000px;}
.x165_c00001{left:730.500000px;}
.xea_c00001{left:731.850000px;}
.x18e_c00001{left:733.050000px;}
.x14c_c00001{left:734.550000px;}
.x18b_c00001{left:736.200000px;}
.xf5_c00001{left:737.850000px;}
.x208_c00001{left:738.900000px;}
.xd3_c00001{left:739.950000px;}
.x104_c00001{left:741.000000px;}
.xb5_c00001{left:742.650000px;}
.xc7_c00001{left:744.450000px;}
.x9e_c00001{left:745.800000px;}
.x167_c00001{left:747.750000px;}
.xc1_c00001{left:749.550000px;}
.xd6_c00001{left:751.350000px;}
.x16c_c00001{left:752.400000px;}
.xa5_c00001{left:753.450000px;}
.x102_c00001{left:755.100000px;}
.x18c_c00001{left:756.300000px;}
.x108_c00001{left:757.500000px;}
.x14d_c00001{left:759.450000px;}
.x197_c00001{left:760.950000px;}
.xb6_c00001{left:762.150000px;}
.xf3_c00001{left:763.650000px;}
.xe5_c00001{left:764.700000px;}
.x171_c00001{left:765.750000px;}
.xe2_c00001{left:767.100000px;}
.x140_c00001{left:768.600000px;}
.x100_c00001{left:769.950000px;}
.xba_c00001{left:771.300000px;}
.x18a_c00001{left:772.650000px;}
.x110_c00001{left:773.850000px;}
.xeb_c00001{left:775.050000px;}
.xe6_c00001{left:777.000000px;}
.x21f_c00001{left:778.050000px;}
.x192_c00001{left:779.100000px;}
.x9f_c00001{left:780.300000px;}
.xc8_c00001{left:781.950000px;}
.x199_c00001{left:783.750000px;}
.x155_c00001{left:785.100000px;}
.x1be_c00001{left:786.150000px;}
.xf6_c00001{left:787.200000px;}
.x1c2_c00001{left:788.400000px;}
.xce_c00001{left:789.600000px;}
.xf8_c00001{left:790.950000px;}
.xf1_c00001{left:792.750000px;}
.x202_c00001{left:793.800000px;}
.xa6_c00001{left:794.850000px;}
.x1bf_c00001{left:795.900000px;}
.xb1_c00001{left:796.950000px;}
.x1e2_c00001{left:798.450000px;}
.x1e3_c00001{left:799.650000px;}
.x1ff_c00001{left:801.600000px;}
.x109_c00001{left:802.800000px;}
.x1e4_c00001{left:804.600000px;}
.xe3_c00001{left:806.400000px;}
.x215_c00001{left:808.350000px;}
.x1f9_c00001{left:809.550000px;}
.xfb_c00001{left:810.900000px;}
.xd9_c00001{left:812.700000px;}
.x218_c00001{left:814.800000px;}
.xbb_c00001{left:816.300000px;}
.x214_c00001{left:817.350000px;}
.x213_c00001{left:818.850000px;}
.x212_c00001{left:821.100000px;}
.x227_c00001{left:823.050000px;}
.x226_c00001{left:824.400000px;}
.x225_c00001{left:825.450000px;}
.x22f_c00001{left:826.500000px;}
.x22d_c00001{left:827.700000px;}
.x224_c00001{left:829.500000px;}
.x22c_c00001{left:831.150000px;}
.x235_c00001{left:832.800000px;}
.x22a_c00001{left:834.000000px;}
.x22e_c00001{left:836.700000px;}
.x22b_c00001{left:838.350000px;}
@media print{
.v7_c00001{vertical-align:-8.000000pt;}
.v6_c00001{vertical-align:-6.400000pt;}
.v5_c00001{vertical-align:-5.333333pt;}
.v4_c00001{vertical-align:-2.666667pt;}
.v3_c00001{vertical-align:-1.066667pt;}
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:1.600000pt;}
.v2_c00001{vertical-align:5.333333pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ls7_c00001{letter-spacing:61.661943pt;}
.ls1_c00001{letter-spacing:105.746095pt;}
.ls3_c00001{letter-spacing:116.827394pt;}
.ls6_c00001{letter-spacing:149.736111pt;}
.ls2_c00001{letter-spacing:441.710922pt;}
.ls4_c00001{letter-spacing:506.879035pt;}
.ls5_c00001{letter-spacing:1069.584534pt;}
.wscc_c00001{word-spacing:-21.333333pt;}
.wsb0_c00001{word-spacing:-18.666667pt;}
.wse7_c00001{word-spacing:-12.317460pt;}
.wsfe_c00001{word-spacing:-11.976553pt;}
.ws13e_c00001{word-spacing:-11.936508pt;}
.ws13a_c00001{word-spacing:-10.920635pt;}
.ws79_c00001{word-spacing:-9.815106pt;}
.ws105_c00001{word-spacing:-9.555556pt;}
.ws13d_c00001{word-spacing:-9.535354pt;}
.ws139_c00001{word-spacing:-9.396825pt;}
.ws20_c00001{word-spacing:-9.315102pt;}
.ws7d_c00001{word-spacing:-9.225160pt;}
.wsfa_c00001{word-spacing:-8.947245pt;}
.wse1_c00001{word-spacing:-8.888889pt;}
.ws13f_c00001{word-spacing:-8.380952pt;}
.ws7a_c00001{word-spacing:-8.222222pt;}
.ws12e_c00001{word-spacing:-8.150714pt;}
.ws102_c00001{word-spacing:-7.799283pt;}
.ws131_c00001{word-spacing:-7.492063pt;}
.wsf5_c00001{word-spacing:-7.294118pt;}
.ws6_c00001{word-spacing:-7.279559pt;}
.wsab_c00001{word-spacing:-7.173709pt;}
.wsd1_c00001{word-spacing:-7.111111pt;}
.ws29_c00001{word-spacing:-7.076269pt;}
.wsd6_c00001{word-spacing:-6.982597pt;}
.ws13_c00001{word-spacing:-6.948357pt;}
.ws11_c00001{word-spacing:-6.896384pt;}
.wsac_c00001{word-spacing:-6.888889pt;}
.wsc2_c00001{word-spacing:-6.760406pt;}
.wsfd_c00001{word-spacing:-6.734090pt;}
.ws5d_c00001{word-spacing:-6.727995pt;}
.wsdd_c00001{word-spacing:-6.647343pt;}
.ws10b_c00001{word-spacing:-6.555556pt;}
.ws86_c00001{word-spacing:-6.548848pt;}
.wsd4_c00001{word-spacing:-6.444444pt;}
.wsd7_c00001{word-spacing:-6.306878pt;}
.wsf9_c00001{word-spacing:-6.303030pt;}
.ws3d_c00001{word-spacing:-6.255231pt;}
.ws3e_c00001{word-spacing:-6.226138pt;}
.ws135_c00001{word-spacing:-6.222222pt;}
.wsa9_c00001{word-spacing:-6.210678pt;}
.ws92_c00001{word-spacing:-6.154048pt;}
.wse6_c00001{word-spacing:-6.111291pt;}
.wsdb_c00001{word-spacing:-6.092510pt;}
.ws33_c00001{word-spacing:-6.001823pt;}
.wsaa_c00001{word-spacing:-5.925926pt;}
.ws103_c00001{word-spacing:-5.877551pt;}
.ws93_c00001{word-spacing:-5.875252pt;}
.wsb7_c00001{word-spacing:-5.841270pt;}
.ws47_c00001{word-spacing:-5.830153pt;}
.ws60_c00001{word-spacing:-5.777778pt;}
.ws78_c00001{word-spacing:-5.555556pt;}
.wsbf_c00001{word-spacing:-5.543133pt;}
.ws120_c00001{word-spacing:-5.457726pt;}
.wsda_c00001{word-spacing:-5.444444pt;}
.wsdc_c00001{word-spacing:-5.434343pt;}
.wsd0_c00001{word-spacing:-5.412787pt;}
.ws10_c00001{word-spacing:-5.245222pt;}
.ws6a_c00001{word-spacing:-5.229673pt;}
.ws99_c00001{word-spacing:-5.222222pt;}
.ws7c_c00001{word-spacing:-5.201878pt;}
.ws8_c00001{word-spacing:-5.149023pt;}
.wsaf_c00001{word-spacing:-5.148653pt;}
.wseb_c00001{word-spacing:-5.145576pt;}
.wsb3_c00001{word-spacing:-5.124183pt;}
.wse2_c00001{word-spacing:-5.107981pt;}
.ws2e_c00001{word-spacing:-5.000540pt;}
.wsc5_c00001{word-spacing:-4.877985pt;}
.ws6e_c00001{word-spacing:-4.859259pt;}
.ws89_c00001{word-spacing:-4.849590pt;}
.wsbe_c00001{word-spacing:-4.801132pt;}
.wsc4_c00001{word-spacing:-4.798555pt;}
.wsed_c00001{word-spacing:-4.662643pt;}
.ws50_c00001{word-spacing:-4.582685pt;}
.ws1e_c00001{word-spacing:-4.543300pt;}
.wsbd_c00001{word-spacing:-4.525253pt;}
.wsba_c00001{word-spacing:-4.479076pt;}
.ws7e_c00001{word-spacing:-4.465512pt;}
.ws7_c00001{word-spacing:-4.453358pt;}
.wsdf_c00001{word-spacing:-4.444444pt;}
.ws6c_c00001{word-spacing:-4.437755pt;}
.ws2c_c00001{word-spacing:-4.423099pt;}
.wsa4_c00001{word-spacing:-4.374292pt;}
.ws27_c00001{word-spacing:-4.358398pt;}
.ws12f_c00001{word-spacing:-4.305400pt;}
.ws59_c00001{word-spacing:-4.270981pt;}
.wsc1_c00001{word-spacing:-4.261878pt;}
.ws18_c00001{word-spacing:-4.226415pt;}
.wsa0_c00001{word-spacing:-4.222222pt;}
.wsff_c00001{word-spacing:-4.186010pt;}
.ws77_c00001{word-spacing:-4.160757pt;}
.wsec_c00001{word-spacing:-4.151459pt;}
.wsb2_c00001{word-spacing:-4.148148pt;}
.ws36_c00001{word-spacing:-4.111111pt;}
.ws1d_c00001{word-spacing:-4.026341pt;}
.ws19_c00001{word-spacing:-4.000000pt;}
.wsb8_c00001{word-spacing:-3.962250pt;}
.ws100_c00001{word-spacing:-3.950617pt;}
.wsd8_c00001{word-spacing:-3.919192pt;}
.ws53_c00001{word-spacing:-3.898239pt;}
.ws130_c00001{word-spacing:-3.888889pt;}
.wsbb_c00001{word-spacing:-3.881753pt;}
.wscb_c00001{word-spacing:-3.823259pt;}
.ws1_c00001{word-spacing:-3.809524pt;}
.ws7f_c00001{word-spacing:-3.777778pt;}
.wse_c00001{word-spacing:-3.721412pt;}
.ws11b_c00001{word-spacing:-3.713638pt;}
.ws1a_c00001{word-spacing:-3.690314pt;}
.ws11e_c00001{word-spacing:-3.682540pt;}
.wsd_c00001{word-spacing:-3.674765pt;}
.ws9f_c00001{word-spacing:-3.673048pt;}
.ws8b_c00001{word-spacing:-3.659216pt;}
.ws40_c00001{word-spacing:-3.583105pt;}
.ws3_c00001{word-spacing:-3.493163pt;}
.ws95_c00001{word-spacing:-3.430086pt;}
.wsc3_c00001{word-spacing:-3.425054pt;}
.ws71_c00001{word-spacing:-3.417840pt;}
.wsb1_c00001{word-spacing:-3.324675pt;}
.wsca_c00001{word-spacing:-3.223993pt;}
.ws11a_c00001{word-spacing:-3.058736pt;}
.ws126_c00001{word-spacing:-3.041113pt;}
.ws140_c00001{word-spacing:-3.000000pt;}
.ws12b_c00001{word-spacing:-2.968601pt;}
.ws96_c00001{word-spacing:-2.967136pt;}
.wsb4_c00001{word-spacing:-2.962963pt;}
.wsa8_c00001{word-spacing:-2.853801pt;}
.ws5_c00001{word-spacing:-2.817184pt;}
.ws124_c00001{word-spacing:-2.788455pt;}
.wsbc_c00001{word-spacing:-2.777778pt;}
.ws54_c00001{word-spacing:-2.692582pt;}
.ws28_c00001{word-spacing:-2.684807pt;}
.ws4f_c00001{word-spacing:-2.666667pt;}
.ws10f_c00001{word-spacing:-2.661484pt;}
.ws4e_c00001{word-spacing:-2.653709pt;}
.wsa3_c00001{word-spacing:-2.645935pt;}
.ws119_c00001{word-spacing:-2.622611pt;}
.ws2b_c00001{word-spacing:-2.614836pt;}
.ws2_c00001{word-spacing:-2.555556pt;}
.ws2a_c00001{word-spacing:-2.520814pt;}
.wse8_c00001{word-spacing:-2.508399pt;}
.wsad_c00001{word-spacing:-2.452107pt;}
.ws1b_c00001{word-spacing:-2.444444pt;}
.ws4_c00001{word-spacing:-2.418718pt;}
.wsf4_c00001{word-spacing:-2.407407pt;}
.ws3b_c00001{word-spacing:-2.403716pt;}
.ws12_c00001{word-spacing:-2.384072pt;}
.wsf7_c00001{word-spacing:-2.303030pt;}
.wsde_c00001{word-spacing:-2.245614pt;}
.wsd2_c00001{word-spacing:-2.179211pt;}
.ws106_c00001{word-spacing:-2.122720pt;}
.wsc7_c00001{word-spacing:-2.074074pt;}
.ws30_c00001{word-spacing:-2.019442pt;}
.ws97_c00001{word-spacing:-1.977469pt;}
.ws24_c00001{word-spacing:-1.964056pt;}
.ws3a_c00001{word-spacing:-1.813735pt;}
.wsd5_c00001{word-spacing:-1.777778pt;}
.ws125_c00001{word-spacing:-1.754527pt;}
.ws9b_c00001{word-spacing:-1.668679pt;}
.wscd_c00001{word-spacing:-1.650794pt;}
.wsc9_c00001{word-spacing:-1.633114pt;}
.wsb6_c00001{word-spacing:-1.552426pt;}
.wse3_c00001{word-spacing:-1.538149pt;}
.ws10e_c00001{word-spacing:-1.446242pt;}
.ws8c_c00001{word-spacing:-1.373737pt;}
.ws51_c00001{word-spacing:-1.349612pt;}
.ws44_c00001{word-spacing:-1.222222pt;}
.ws136_c00001{word-spacing:-1.185185pt;}
.ws6f_c00001{word-spacing:-1.145449pt;}
.ws80_c00001{word-spacing:-1.059929pt;}
.ws17_c00001{word-spacing:-1.024585pt;}
.wsa_c00001{word-spacing:-0.949548pt;}
.wsf8_c00001{word-spacing:-0.858238pt;}
.ws76_c00001{word-spacing:-0.831169pt;}
.ws112_c00001{word-spacing:-0.456070pt;}
.ws9c_c00001{word-spacing:-0.453035pt;}
.ws111_c00001{word-spacing:-0.417729pt;}
.ws34_c00001{word-spacing:-0.360056pt;}
.wse0_c00001{word-spacing:-0.300469pt;}
.ws4b_c00001{word-spacing:-0.222222pt;}
.ws115_c00001{word-spacing:-0.085520pt;}
.ws11c_c00001{word-spacing:-0.077745pt;}
.wsc_c00001{word-spacing:-0.069971pt;}
.ws2d_c00001{word-spacing:-0.060508pt;}
.ws64_c00001{word-spacing:-0.023324pt;}
.wsf_c00001{word-spacing:0.000000pt;}
.ws113_c00001{word-spacing:0.111111pt;}
.wsc6_c00001{word-spacing:0.126984pt;}
.ws4c_c00001{word-spacing:0.200524pt;}
.ws41_c00001{word-spacing:0.202587pt;}
.wsae_c00001{word-spacing:0.253968pt;}
.wsc8_c00001{word-spacing:0.266367pt;}
.wscf_c00001{word-spacing:0.278188pt;}
.ws67_c00001{word-spacing:0.280981pt;}
.ws129_c00001{word-spacing:0.311229pt;}
.ws13b_c00001{word-spacing:0.323232pt;}
.ws15_c00001{word-spacing:0.443278pt;}
.ws26_c00001{word-spacing:0.493827pt;}
.ws70_c00001{word-spacing:0.546245pt;}
.wsfb_c00001{word-spacing:0.637884pt;}
.ws12d_c00001{word-spacing:0.650828pt;}
.ws116_c00001{word-spacing:0.702884pt;}
.ws57_c00001{word-spacing:0.754500pt;}
.ws73_c00001{word-spacing:0.951085pt;}
.ws49_c00001{word-spacing:1.090623pt;}
.wsb9_c00001{word-spacing:1.111111pt;}
.ws133_c00001{word-spacing:1.185185pt;}
.ws5e_c00001{word-spacing:1.262436pt;}
.ws132_c00001{word-spacing:1.396825pt;}
.ws107_c00001{word-spacing:1.464052pt;}
.wsd9_c00001{word-spacing:1.532604pt;}
.ws4a_c00001{word-spacing:1.570292pt;}
.ws48_c00001{word-spacing:1.582941pt;}
.ws134_c00001{word-spacing:1.650794pt;}
.ws128_c00001{word-spacing:1.729892pt;}
.ws8d_c00001{word-spacing:1.839445pt;}
.wsfc_c00001{word-spacing:1.861175pt;}
.ws127_c00001{word-spacing:1.955176pt;}
.ws32_c00001{word-spacing:1.994356pt;}
.ws62_c00001{word-spacing:2.173038pt;}
.ws101_c00001{word-spacing:2.300654pt;}
.ws9_c00001{word-spacing:2.353084pt;}
.ws74_c00001{word-spacing:2.490444pt;}
.ws117_c00001{word-spacing:2.496661pt;}
.ws5a_c00001{word-spacing:2.544866pt;}
.ws75_c00001{word-spacing:2.545123pt;}
.ws98_c00001{word-spacing:2.555556pt;}
.ws38_c00001{word-spacing:2.735586pt;}
.ws121_c00001{word-spacing:2.991675pt;}
.ws10d_c00001{word-spacing:3.037785pt;}
.ws108_c00001{word-spacing:3.145299pt;}
.ws5c_c00001{word-spacing:3.203512pt;}
.wsce_c00001{word-spacing:3.265659pt;}
.ws11f_c00001{word-spacing:3.350344pt;}
.ws9a_c00001{word-spacing:3.530598pt;}
.ws10a_c00001{word-spacing:3.537470pt;}
.wsa6_c00001{word-spacing:3.888889pt;}
.ws11d_c00001{word-spacing:4.000000pt;}
.ws14_c00001{word-spacing:4.124795pt;}
.ws13c_c00001{word-spacing:4.148148pt;}
.ws87_c00001{word-spacing:4.180675pt;}
.wsa5_c00001{word-spacing:4.222222pt;}
.wsf6_c00001{word-spacing:4.317460pt;}
.ws0_c00001{word-spacing:4.496036pt;}
.ws16_c00001{word-spacing:4.662989pt;}
.wsa7_c00001{word-spacing:5.019608pt;}
.ws109_c00001{word-spacing:5.111111pt;}
.ws85_c00001{word-spacing:5.159702pt;}
.ws10c_c00001{word-spacing:5.262599pt;}
.ws55_c00001{word-spacing:5.333333pt;}
.ws52_c00001{word-spacing:5.379074pt;}
.ws83_c00001{word-spacing:5.444444pt;}
.ws8f_c00001{word-spacing:5.703555pt;}
.ws6d_c00001{word-spacing:6.050441pt;}
.ws104_c00001{word-spacing:6.095238pt;}
.ws81_c00001{word-spacing:6.165209pt;}
.ws94_c00001{word-spacing:6.188533pt;}
.ws110_c00001{word-spacing:6.337789pt;}
.ws23_c00001{word-spacing:6.751286pt;}
.ws137_c00001{word-spacing:7.595960pt;}
.ws114_c00001{word-spacing:7.888889pt;}
.ws138_c00001{word-spacing:8.337165pt;}
.ws8a_c00001{word-spacing:8.379216pt;}
.ws4d_c00001{word-spacing:8.643678pt;}
.ws118_c00001{word-spacing:8.646465pt;}
.ws46_c00001{word-spacing:8.772271pt;}
.ws69_c00001{word-spacing:8.787820pt;}
.ws91_c00001{word-spacing:9.111111pt;}
.ws123_c00001{word-spacing:9.555556pt;}
.ws84_c00001{word-spacing:9.770003pt;}
.wsf3_c00001{word-spacing:10.666667pt;}
.wsb_c00001{word-spacing:10.687873pt;}
.ws3c_c00001{word-spacing:11.366565pt;}
.ws1f_c00001{word-spacing:11.379333pt;}
.ws65_c00001{word-spacing:11.481117pt;}
.wse5_c00001{word-spacing:11.655876pt;}
.ws31_c00001{word-spacing:11.956547pt;}
.ws9d_c00001{word-spacing:12.195842pt;}
.ws122_c00001{word-spacing:12.380952pt;}
.ws82_c00001{word-spacing:12.415938pt;}
.ws8e_c00001{word-spacing:12.464308pt;}
.ws5f_c00001{word-spacing:12.754786pt;}
.ws22_c00001{word-spacing:12.856882pt;}
.ws58_c00001{word-spacing:13.751844pt;}
.ws88_c00001{word-spacing:14.111212pt;}
.ws63_c00001{word-spacing:14.137647pt;}
.wsa1_c00001{word-spacing:14.326851pt;}
.ws1c_c00001{word-spacing:14.555556pt;}
.ws21_c00001{word-spacing:14.945254pt;}
.ws12a_c00001{word-spacing:15.212254pt;}
.ws37_c00001{word-spacing:15.898055pt;}
.ws42_c00001{word-spacing:17.983580pt;}
.ws39_c00001{word-spacing:18.444444pt;}
.ws12c_c00001{word-spacing:19.079010pt;}
.ws35_c00001{word-spacing:19.792593pt;}
.ws66_c00001{word-spacing:20.407407pt;}
.wsa2_c00001{word-spacing:20.647227pt;}
.ws25_c00001{word-spacing:21.019751pt;}
.ws90_c00001{word-spacing:21.211790pt;}
.wsef_c00001{word-spacing:21.333333pt;}
.ws61_c00001{word-spacing:21.555556pt;}
.ws45_c00001{word-spacing:21.992100pt;}
.ws3f_c00001{word-spacing:22.007962pt;}
.ws9e_c00001{word-spacing:22.184139pt;}
.ws7b_c00001{word-spacing:22.286235pt;}
.ws72_c00001{word-spacing:22.359360pt;}
.ws2f_c00001{word-spacing:23.795270pt;}
.ws5b_c00001{word-spacing:24.203562pt;}
.ws43_c00001{word-spacing:24.839650pt;}
.ws56_c00001{word-spacing:25.589691pt;}
.ws68_c00001{word-spacing:30.267079pt;}
.ws6b_c00001{word-spacing:30.461654pt;}
.wsf0_c00001{word-spacing:69.103153pt;}
.wsea_c00001{word-spacing:96.619704pt;}
.wse9_c00001{word-spacing:110.723175pt;}
.wsc0_c00001{word-spacing:149.551020pt;}
.wsee_c00001{word-spacing:169.396485pt;}
.wsf1_c00001{word-spacing:171.584401pt;}
.wse4_c00001{word-spacing:221.573605pt;}
.wsb5_c00001{word-spacing:345.810700pt;}
.wsd3_c00001{word-spacing:574.789053pt;}
.wsf2_c00001{word-spacing:897.578818pt;}
._3_c00001{width:1.427487pt;}
._4_c00001{width:3.047619pt;}
._1_c00001{width:21.877904pt;}
._6_c00001{width:23.106254pt;}
._7_c00001{width:24.000000pt;}
._2_c00001{width:25.188329pt;}
._5_c00001{width:29.914810pt;}
._0_c00001{width:39.878456pt;}
.fs7_c00001{font-size:26.666667pt;}
.fs2_c00001{font-size:32.000000pt;}
.fs1_c00001{font-size:37.333333pt;}
.fs4_c00001{font-size:42.666667pt;}
.fs5_c00001{font-size:48.000000pt;}
.fs0_c00001{font-size:53.333333pt;}
.fs3_c00001{font-size:58.666667pt;}
.fsb_c00001{font-size:64.000000pt;}
.fs6_c00001{font-size:69.333333pt;}
.fs9_c00001{font-size:80.000000pt;}
.fs8_c00001{font-size:90.666667pt;}
.fsa_c00001{font-size:112.000000pt;}
.fsc_c00001{font-size:117.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.y1061_c00001{bottom:67.866667pt;}
.y1062_c00001{bottom:98.933333pt;}
.y1015_c00001{bottom:100.133333pt;}
.yc05_c00001{bottom:109.066667pt;}
.yf84_c00001{bottom:111.066667pt;}
.y50e_c00001{bottom:112.000000pt;}
.y100e_c00001{bottom:113.866667pt;}
.y1014_c00001{bottom:114.266667pt;}
.y1008_c00001{bottom:114.533333pt;}
.y8f7_c00001{bottom:115.200000pt;}
.ya0f_c00001{bottom:115.866667pt;}
.yae6_c00001{bottom:116.400000pt;}
.yfa1_c00001{bottom:116.533333pt;}
.yfa7_c00001{bottom:116.800000pt;}
.y1002_c00001{bottom:117.066667pt;}
.yfec_c00001{bottom:118.133333pt;}
.yd27_c00001{bottom:118.400000pt;}
.yba3_c00001{bottom:118.666667pt;}
.yfdd_c00001{bottom:119.333333pt;}
.yb6d_c00001{bottom:120.000000pt;}
.yb6e_c00001{bottom:120.266667pt;}
.yab1_c00001{bottom:120.400000pt;}
.ya9e_c00001{bottom:120.533333pt;}
.yb6f_c00001{bottom:120.666667pt;}
.y273_c00001{bottom:120.933333pt;}
.yabc_c00001{bottom:121.200000pt;}
.y70e_c00001{bottom:121.333333pt;}
.yac7_c00001{bottom:121.600000pt;}
.yf13_c00001{bottom:122.533333pt;}
.y1038_c00001{bottom:123.466667pt;}
.yf17_c00001{bottom:123.600000pt;}
.y944_c00001{bottom:123.733333pt;}
.y100d_c00001{bottom:124.533333pt;}
.y1007_c00001{bottom:124.800000pt;}
.y92c_c00001{bottom:125.733333pt;}
.ybb8_c00001{bottom:125.866667pt;}
.yfa9_c00001{bottom:126.133333pt;}
.y984_c00001{bottom:126.400000pt;}
.yfaa_c00001{bottom:126.666667pt;}
.yfc2_c00001{bottom:126.933333pt;}
.y986_c00001{bottom:127.066667pt;}
.yf83_c00001{bottom:127.333333pt;}
.y985_c00001{bottom:128.000000pt;}
.yc7c_c00001{bottom:128.133333pt;}
.y9c5_c00001{bottom:128.266667pt;}
.y99f_c00001{bottom:128.666667pt;}
.yfe3_c00001{bottom:128.933333pt;}
.y50d_c00001{bottom:129.066667pt;}
.yae5_c00001{bottom:129.200000pt;}
.y4e8_c00001{bottom:129.333333pt;}
.yc4a_c00001{bottom:129.866667pt;}
.yc4c_c00001{bottom:130.266667pt;}
.y1021_c00001{bottom:130.533333pt;}
.yb03_c00001{bottom:130.933333pt;}
.y77e_c00001{bottom:131.066667pt;}
.y1023_c00001{bottom:131.200000pt;}
.y651_c00001{bottom:131.466667pt;}
.ycae_c00001{bottom:131.600000pt;}
.y7fd_c00001{bottom:131.733333pt;}
.yc4e_c00001{bottom:131.866667pt;}
.ye35_c00001{bottom:132.000000pt;}
.yeba_c00001{bottom:132.400000pt;}
.y8f6_c00001{bottom:132.533333pt;}
.y8d5_c00001{bottom:132.666667pt;}
.y499_c00001{bottom:132.800000pt;}
.ya0e_c00001{bottom:133.066667pt;}
.yeac_c00001{bottom:133.333333pt;}
.yab0_c00001{bottom:133.466667pt;}
.y321_c00001{bottom:133.733333pt;}
.y67f_c00001{bottom:133.866667pt;}
.y4bd_c00001{bottom:134.000000pt;}
.ya0d_c00001{bottom:134.400000pt;}
.ybac_c00001{bottom:134.533333pt;}
.y58d_c00001{bottom:134.666667pt;}
.y5b6_c00001{bottom:134.800000pt;}
.yd22_c00001{bottom:135.066667pt;}
.yd25_c00001{bottom:135.200000pt;}
.yd1d_c00001{bottom:135.333333pt;}
.y730_c00001{bottom:135.600000pt;}
.yed6_c00001{bottom:135.733333pt;}
.y3cd_c00001{bottom:136.000000pt;}
.ybb2_c00001{bottom:136.266667pt;}
.y244_c00001{bottom:136.666667pt;}
.y943_c00001{bottom:136.800000pt;}
.y3c_c00001{bottom:136.933333pt;}
.ybcb_c00001{bottom:137.066667pt;}
.y915_c00001{bottom:137.200000pt;}
.y17e_c00001{bottom:137.333333pt;}
.y272_c00001{bottom:137.600000pt;}
.y88f_c00001{bottom:137.733333pt;}
.y71_c00001{bottom:137.866667pt;}
.y9f4_c00001{bottom:138.000000pt;}
.ye3e_c00001{bottom:138.266667pt;}
.y862_c00001{bottom:138.533333pt;}
.y70d_c00001{bottom:138.666667pt;}
.y626_c00001{bottom:138.800000pt;}
.y1ae_c00001{bottom:138.933333pt;}
.y610_c00001{bottom:139.200000pt;}
.y560_c00001{bottom:139.600000pt;}
.y983_c00001{bottom:139.866667pt;}
.ya55_c00001{bottom:140.133333pt;}
.y119_c00001{bottom:140.266667pt;}
.ye1_c00001{bottom:140.533333pt;}
.y9aa_c00001{bottom:140.800000pt;}
.y6cf_c00001{bottom:141.066667pt;}
.y379_c00001{bottom:141.200000pt;}
.y9c4_c00001{bottom:141.333333pt;}
.y20b_c00001{bottom:141.466667pt;}
.yc7b_c00001{bottom:141.600000pt;}
.y7dc_c00001{bottom:141.733333pt;}
.y6dd_c00001{bottom:141.866667pt;}
.ybf6_c00001{bottom:142.000000pt;}
.yae_c00001{bottom:142.133333pt;}
.y4e7_c00001{bottom:142.400000pt;}
.y14e_c00001{bottom:142.666667pt;}
.y5dc_c00001{bottom:142.933333pt;}
.yd82_c00001{bottom:143.066667pt;}
.yc4b_c00001{bottom:143.333333pt;}
.yb02_c00001{bottom:143.466667pt;}
.y103f_c00001{bottom:143.600000pt;}
.yf66_c00001{bottom:143.733333pt;}
.yc4d_c00001{bottom:144.000000pt;}
.y77d_c00001{bottom:144.133333pt;}
.ye2f_c00001{bottom:144.400000pt;}
.ycac_c00001{bottom:144.666667pt;}
.y8f5_c00001{bottom:144.933333pt;}
.ye34_c00001{bottom:145.066667pt;}
.yeb9_c00001{bottom:145.200000pt;}
.yba2_c00001{bottom:145.333333pt;}
.y8d4_c00001{bottom:145.466667pt;}
.y428_c00001{bottom:145.600000pt;}
.y72f_c00001{bottom:145.866667pt;}
.ya0c_c00001{bottom:146.266667pt;}
.yeab_c00001{bottom:146.400000pt;}
.y962_c00001{bottom:146.533333pt;}
.y243_c00001{bottom:146.933333pt;}
.ya9d_c00001{bottom:147.066667pt;}
.y973_c00001{bottom:147.333333pt;}
.y4bc_c00001{bottom:147.466667pt;}
.y67e_c00001{bottom:147.600000pt;}
.y58c_c00001{bottom:147.733333pt;}
.yd21_c00001{bottom:147.866667pt;}
.yac6_c00001{bottom:148.000000pt;}
.y271_c00001{bottom:148.133333pt;}
.y5b5_c00001{bottom:148.266667pt;}
.yf12_c00001{bottom:148.400000pt;}
.yed5_c00001{bottom:148.533333pt;}
.yf16_c00001{bottom:148.800000pt;}
.yed1_c00001{bottom:149.066667pt;}
.ybb1_c00001{bottom:149.333333pt;}
.yf1a_c00001{bottom:149.466667pt;}
.y942_c00001{bottom:149.600000pt;}
.yfe2_c00001{bottom:149.733333pt;}
.y3b_c00001{bottom:150.000000pt;}
.y753_c00001{bottom:150.133333pt;}
.y17d_c00001{bottom:150.400000pt;}
.y70_c00001{bottom:150.666667pt;}
.y88e_c00001{bottom:150.800000pt;}
.y9f2_c00001{bottom:151.066667pt;}
.ye3f_c00001{bottom:151.333333pt;}
.y875_c00001{bottom:151.466667pt;}
.y1029_c00001{bottom:151.600000pt;}
.y6fc_c00001{bottom:151.733333pt;}
.y625_c00001{bottom:151.866667pt;}
.y1ad_c00001{bottom:152.000000pt;}
.y60f_c00001{bottom:152.266667pt;}
.y55f_c00001{bottom:152.666667pt;}
.ya54_c00001{bottom:152.800000pt;}
.y7fc_c00001{bottom:152.933333pt;}
.y118_c00001{bottom:153.066667pt;}
.ya58_c00001{bottom:153.200000pt;}
.y34a_c00001{bottom:153.333333pt;}
.ye0_c00001{bottom:153.600000pt;}
.ya50_c00001{bottom:153.866667pt;}
.y9a9_c00001{bottom:154.000000pt;}
.ye00_c00001{bottom:154.133333pt;}
.y8ae_c00001{bottom:154.266667pt;}
.y9c3_c00001{bottom:154.400000pt;}
.y6ce_c00001{bottom:154.533333pt;}
.yc7d_c00001{bottom:154.666667pt;}
.y378_c00001{bottom:154.933333pt;}
.yad_c00001{bottom:155.200000pt;}
.y5db_c00001{bottom:155.466667pt;}
.y14d_c00001{bottom:155.600000pt;}
.y4e6_c00001{bottom:155.866667pt;}
.yc49_c00001{bottom:156.133333pt;}
.yda5_c00001{bottom:156.266667pt;}
.yda3_c00001{bottom:156.400000pt;}
.yb01_c00001{bottom:156.533333pt;}
.yca5_c00001{bottom:156.800000pt;}
.ycfe_c00001{bottom:157.066667pt;}
.y77c_c00001{bottom:157.200000pt;}
.y650_c00001{bottom:157.333333pt;}
.y242_c00001{bottom:157.466667pt;}
.ycab_c00001{bottom:157.733333pt;}
.ye33_c00001{bottom:157.866667pt;}
.yeb8_c00001{bottom:158.000000pt;}
.y8f4_c00001{bottom:158.133333pt;}
.y270_c00001{bottom:158.400000pt;}
.y8d3_c00001{bottom:158.533333pt;}
.ya0b_c00001{bottom:158.666667pt;}
.ya0a_c00001{bottom:159.066667pt;}
.yeaa_c00001{bottom:159.200000pt;}
.y961_c00001{bottom:159.333333pt;}
.yfeb_c00001{bottom:159.600000pt;}
.y67d_c00001{bottom:159.733333pt;}
.yfe1_c00001{bottom:160.000000pt;}
.ya9c_c00001{bottom:160.133333pt;}
.y58b_c00001{bottom:160.533333pt;}
.y99c_c00001{bottom:160.666667pt;}
.y5b4_c00001{bottom:160.800000pt;}
.yd20_c00001{bottom:160.933333pt;}
.y972_c00001{bottom:161.066667pt;}
.yd1c_c00001{bottom:161.466667pt;}
.yf15_c00001{bottom:161.600000pt;}
.ybb0_c00001{bottom:161.866667pt;}
.y3a9_c00001{bottom:162.000000pt;}
.y3cc_c00001{bottom:162.266667pt;}
.y941_c00001{bottom:162.400000pt;}
.y3a_c00001{bottom:162.533333pt;}
.y1e0_c00001{bottom:162.933333pt;}
.y17c_c00001{bottom:163.200000pt;}
.y6af_c00001{bottom:163.466667pt;}
.y88d_c00001{bottom:163.866667pt;}
.y7db_c00001{bottom:164.133333pt;}
.y9f3_c00001{bottom:164.266667pt;}
.y6f_c00001{bottom:164.533333pt;}
.y1ac_c00001{bottom:164.800000pt;}
.y624_c00001{bottom:164.933333pt;}
.y60e_c00001{bottom:165.066667pt;}
.y55e_c00001{bottom:165.466667pt;}
.ya53_c00001{bottom:165.600000pt;}
.ya56_c00001{bottom:165.733333pt;}
.y117_c00001{bottom:165.866667pt;}
.ya57_c00001{bottom:166.000000pt;}
.y1010_c00001{bottom:166.133333pt;}
.ydf_c00001{bottom:166.400000pt;}
.y2f4_c00001{bottom:166.666667pt;}
.y8ad_c00001{bottom:167.066667pt;}
.yd85_c00001{bottom:167.200000pt;}
.y6cd_c00001{bottom:167.333333pt;}
.y9c1_c00001{bottom:167.466667pt;}
.y8a4_c00001{bottom:167.600000pt;}
.yac_c00001{bottom:167.733333pt;}
.y6dc_c00001{bottom:168.000000pt;}
.y4e5_c00001{bottom:168.266667pt;}
.y14c_c00001{bottom:168.400000pt;}
.y320_c00001{bottom:168.533333pt;}
.yae4_c00001{bottom:168.666667pt;}
.y26f_c00001{bottom:168.933333pt;}
.yf07_c00001{bottom:169.066667pt;}
.ycfd_c00001{bottom:169.200000pt;}
.y77b_c00001{bottom:169.333333pt;}
.yca4_c00001{bottom:169.600000pt;}
.y64f_c00001{bottom:169.866667pt;}
.yda2_c00001{bottom:170.000000pt;}
.ycaa_c00001{bottom:170.266667pt;}
.yec6_c00001{bottom:170.400000pt;}
.ycad_c00001{bottom:170.533333pt;}
.ye2d_c00001{bottom:170.666667pt;}
.yeb7_c00001{bottom:170.800000pt;}
.y8f3_c00001{bottom:170.933333pt;}
.yba1_c00001{bottom:171.200000pt;}
.ya09_c00001{bottom:171.466667pt;}
.y8d2_c00001{bottom:171.600000pt;}
.y498_c00001{bottom:171.866667pt;}
.yea9_c00001{bottom:172.000000pt;}
.y960_c00001{bottom:172.133333pt;}
.ye9c_c00001{bottom:172.266667pt;}
.yaaf_c00001{bottom:172.533333pt;}
.ya08_c00001{bottom:172.800000pt;}
.ya9b_c00001{bottom:172.933333pt;}
.y102a_c00001{bottom:173.066667pt;}
.yabb_c00001{bottom:173.200000pt;}
.y58a_c00001{bottom:173.333333pt;}
.ye51_c00001{bottom:173.466667pt;}
.y67c_c00001{bottom:173.733333pt;}
.y5b3_c00001{bottom:173.866667pt;}
.y454_c00001{bottom:174.133333pt;}
.yd1b_c00001{bottom:174.266667pt;}
.ye4f_c00001{bottom:174.400000pt;}
.yf11_c00001{bottom:174.533333pt;}
.ybaf_c00001{bottom:174.666667pt;}
.yed4_c00001{bottom:174.800000pt;}
.y3a8_c00001{bottom:175.066667pt;}
.y99e_c00001{bottom:175.333333pt;}
.yf1c_c00001{bottom:175.466667pt;}
.y39_c00001{bottom:175.600000pt;}
.y1df_c00001{bottom:175.733333pt;}
.y940_c00001{bottom:175.866667pt;}
.y904_c00001{bottom:176.000000pt;}
.y17b_c00001{bottom:176.266667pt;}
.y971_c00001{bottom:176.400000pt;}
.y6ae_c00001{bottom:176.533333pt;}
.y88c_c00001{bottom:176.666667pt;}
.y7da_c00001{bottom:176.933333pt;}
.ydba_c00001{bottom:177.066667pt;}
.y6e_c00001{bottom:177.333333pt;}
.y874_c00001{bottom:177.466667pt;}
.y6fb_c00001{bottom:177.600000pt;}
.y623_c00001{bottom:177.733333pt;}
.y1ab_c00001{bottom:177.866667pt;}
.ybb7_c00001{bottom:178.000000pt;}
.y844_c00001{bottom:178.266667pt;}
.ya4f_c00001{bottom:178.533333pt;}
.y116_c00001{bottom:178.666667pt;}
.y861_c00001{bottom:178.933333pt;}
.yde_c00001{bottom:179.200000pt;}
.yfff_c00001{bottom:179.333333pt;}
.y349_c00001{bottom:179.466667pt;}
.y2f3_c00001{bottom:179.733333pt;}
.yd87_c00001{bottom:179.866667pt;}
.ydff_c00001{bottom:180.000000pt;}
.y427_c00001{bottom:180.133333pt;}
.y9c0_c00001{bottom:180.266667pt;}
.y8ac_c00001{bottom:180.400000pt;}
.y400_c00001{bottom:180.533333pt;}
.y377_c00001{bottom:180.800000pt;}
.yb2f_c00001{bottom:180.933333pt;}
.y2a8_c00001{bottom:181.066667pt;}
.yab_c00001{bottom:181.200000pt;}
.yb1d_c00001{bottom:181.333333pt;}
.y14b_c00001{bottom:181.466667pt;}
.y31f_c00001{bottom:181.600000pt;}
.yae3_c00001{bottom:181.733333pt;}
.yf06_c00001{bottom:181.866667pt;}
.yb00_c00001{bottom:182.133333pt;}
.yda4_c00001{bottom:182.400000pt;}
.yca3_c00001{bottom:182.666667pt;}
.yda1_c00001{bottom:182.800000pt;}
.y77a_c00001{bottom:183.066667pt;}
.yec5_c00001{bottom:183.200000pt;}
.yca9_c00001{bottom:183.333333pt;}
.ye2c_c00001{bottom:183.466667pt;}
.y64e_c00001{bottom:183.600000pt;}
.ycaf_c00001{bottom:183.733333pt;}
.yeb6_c00001{bottom:183.866667pt;}
.y497_c00001{bottom:184.000000pt;}
.ya07_c00001{bottom:184.266667pt;}
.yd3f_c00001{bottom:184.533333pt;}
.y8d1_c00001{bottom:184.666667pt;}
.ya06_c00001{bottom:184.933333pt;}
.yea8_c00001{bottom:185.066667pt;}
.y1037_c00001{bottom:185.200000pt;}
.yd39_c00001{bottom:185.333333pt;}
.y95f_c00001{bottom:185.600000pt;}
.yaae_c00001{bottom:185.733333pt;}
.ybab_c00001{bottom:185.866667pt;}
.ya9a_c00001{bottom:186.000000pt;}
.y67b_c00001{bottom:186.266667pt;}
.ye50_c00001{bottom:186.533333pt;}
.yd24_c00001{bottom:186.666667pt;}
.y589_c00001{bottom:186.800000pt;}
.y453_c00001{bottom:186.933333pt;}
.y473_c00001{bottom:187.200000pt;}
.y970_c00001{bottom:187.333333pt;}
.ye4e_c00001{bottom:187.466667pt;}
.y241_c00001{bottom:187.733333pt;}
.yed3_c00001{bottom:187.866667pt;}
.y3a7_c00001{bottom:188.133333pt;}
.yf1b_c00001{bottom:188.266667pt;}
.y38_c00001{bottom:188.400000pt;}
.y7bf_c00001{bottom:188.533333pt;}
.y93f_c00001{bottom:188.666667pt;}
.y20a_c00001{bottom:188.800000pt;}
.y17a_c00001{bottom:188.933333pt;}
.y6ad_c00001{bottom:189.066667pt;}
.yfc4_c00001{bottom:189.200000pt;}
.y26e_c00001{bottom:189.466667pt;}
.y88b_c00001{bottom:189.733333pt;}
.y2d0_c00001{bottom:189.866667pt;}
.y6d_c00001{bottom:190.133333pt;}
.y873_c00001{bottom:190.266667pt;}
.y60d_c00001{bottom:190.400000pt;}
.y622_c00001{bottom:190.533333pt;}
.y70c_c00001{bottom:190.666667pt;}
.ybb6_c00001{bottom:190.800000pt;}
.y860_c00001{bottom:191.066667pt;}
.ya52_c00001{bottom:191.200000pt;}
.y55d_c00001{bottom:191.333333pt;}
.y115_c00001{bottom:191.466667pt;}
.ya4e_c00001{bottom:191.733333pt;}
.y539_c00001{bottom:192.000000pt;}
.ydd_c00001{bottom:192.266667pt;}
.y2f2_c00001{bottom:192.533333pt;}
.y752_c00001{bottom:192.666667pt;}
.ydfe_c00001{bottom:192.800000pt;}
.y6cc_c00001{bottom:192.933333pt;}
.yd84_c00001{bottom:193.066667pt;}
.y798_c00001{bottom:193.333333pt;}
.y8ab_c00001{bottom:193.466667pt;}
.y2a7_c00001{bottom:193.600000pt;}
.yae2_c00001{bottom:193.866667pt;}
.yaa_c00001{bottom:194.000000pt;}
.y50c_c00001{bottom:194.133333pt;}
.y5f7_c00001{bottom:194.266667pt;}
.y14a_c00001{bottom:194.533333pt;}
.y31e_c00001{bottom:194.666667pt;}
.y104d_c00001{bottom:194.800000pt;}
.yaff_c00001{bottom:194.933333pt;}
.y7fb_c00001{bottom:195.200000pt;}
.y64d_c00001{bottom:195.466667pt;}
.y779_c00001{bottom:195.866667pt;}
.yca8_c00001{bottom:196.133333pt;}
.ye31_c00001{bottom:196.266667pt;}
.ye2b_c00001{bottom:196.533333pt;}
.y8f2_c00001{bottom:196.800000pt;}
.yeb5_c00001{bottom:196.933333pt;}
.yc1f_c00001{bottom:197.066667pt;}
.y99d_c00001{bottom:197.200000pt;}
.y8d0_c00001{bottom:197.466667pt;}
.yd3e_c00001{bottom:197.600000pt;}
.ya05_c00001{bottom:197.733333pt;}
.yea7_c00001{bottom:197.866667pt;}
.y496_c00001{bottom:198.133333pt;}
.ybaa_c00001{bottom:198.400000pt;}
.y240_c00001{bottom:198.666667pt;}
.ya99_c00001{bottom:198.800000pt;}
.y67a_c00001{bottom:199.066667pt;}
.y95e_c00001{bottom:199.333333pt;}
.y588_c00001{bottom:199.600000pt;}
.y5b2_c00001{bottom:199.733333pt;}
.y26d_c00001{bottom:200.000000pt;}
.y96f_c00001{bottom:200.133333pt;}
.yf14_c00001{bottom:200.266667pt;}
.yf10_c00001{bottom:200.400000pt;}
.yed2_c00001{bottom:200.666667pt;}
.ybae_c00001{bottom:200.933333pt;}
.y3a6_c00001{bottom:201.066667pt;}
.yed0_c00001{bottom:201.200000pt;}
.y3cb_c00001{bottom:201.333333pt;}
.y472_c00001{bottom:201.466667pt;}
.y72e_c00001{bottom:201.600000pt;}
.y179_c00001{bottom:201.733333pt;}
.y37_c00001{bottom:201.866667pt;}
.ydbc_c00001{bottom:202.000000pt;}
.y4bb_c00001{bottom:202.266667pt;}
.ydb9_c00001{bottom:202.400000pt;}
.y6ac_c00001{bottom:202.533333pt;}
.y7d9_c00001{bottom:202.933333pt;}
.y6c_c00001{bottom:203.200000pt;}
.y2cf_c00001{bottom:203.333333pt;}
.y693_c00001{bottom:203.466667pt;}
.ybb5_c00001{bottom:203.600000pt;}
.y85f_c00001{bottom:203.866667pt;}
.ydc3_c00001{bottom:204.000000pt;}
.y1aa_c00001{bottom:204.133333pt;}
.y114_c00001{bottom:204.266667pt;}
.ya4d_c00001{bottom:204.533333pt;}
.ydc_c00001{bottom:204.800000pt;}
.y538_c00001{bottom:205.066667pt;}
.y751_c00001{bottom:205.200000pt;}
.y2f1_c00001{bottom:205.333333pt;}
.y103e_c00001{bottom:205.466667pt;}
.y376_c00001{bottom:205.733333pt;}
.ydfd_c00001{bottom:205.866667pt;}
.yf71_c00001{bottom:206.000000pt;}
.y8a3_c00001{bottom:206.133333pt;}
.y8aa_c00001{bottom:206.266667pt;}
.y2a6_c00001{bottom:206.400000pt;}
.ye7e_c00001{bottom:206.533333pt;}
.y3ff_c00001{bottom:206.666667pt;}
.y6db_c00001{bottom:206.800000pt;}
.yb1c_c00001{bottom:206.933333pt;}
.ya9_c00001{bottom:207.066667pt;}
.y50b_c00001{bottom:207.200000pt;}
.y149_c00001{bottom:207.333333pt;}
.y31d_c00001{bottom:207.733333pt;}
.yf65_c00001{bottom:208.000000pt;}
.y7fa_c00001{bottom:208.266667pt;}
.y822_c00001{bottom:208.533333pt;}
.y778_c00001{bottom:208.666667pt;}
.yca7_c00001{bottom:208.933333pt;}
.yec4_c00001{bottom:209.066667pt;}
.yde5_c00001{bottom:209.333333pt;}
.y64c_c00001{bottom:209.600000pt;}
.yeb4_c00001{bottom:209.733333pt;}
.y843_c00001{bottom:209.866667pt;}
.yba0_c00001{bottom:210.000000pt;}
.yc1e_c00001{bottom:210.266667pt;}
.y8cf_c00001{bottom:210.533333pt;}
.yd3d_c00001{bottom:210.666667pt;}
.yd4d_c00001{bottom:210.933333pt;}
.yd38_c00001{bottom:211.200000pt;}
.yba9_c00001{bottom:211.466667pt;}
.y96e_c00001{bottom:211.600000pt;}
.ya98_c00001{bottom:211.866667pt;}
.ye5b_c00001{bottom:212.133333pt;}
.y679_c00001{bottom:212.266667pt;}
.y587_c00001{bottom:212.400000pt;}
.ye5c_c00001{bottom:212.533333pt;}
.y452_c00001{bottom:212.800000pt;}
.yd26_c00001{bottom:212.933333pt;}
.yd1a_c00001{bottom:213.200000pt;}
.yac5_c00001{bottom:213.466667pt;}
.y471_c00001{bottom:213.600000pt;}
.y914_c00001{bottom:213.733333pt;}
.y3a5_c00001{bottom:213.866667pt;}
.y7be_c00001{bottom:214.133333pt;}
.y93e_c00001{bottom:214.266667pt;}
.y3ca_c00001{bottom:214.400000pt;}
.ydbb_c00001{bottom:214.533333pt;}
.y495_c00001{bottom:214.666667pt;}
.y178_c00001{bottom:214.800000pt;}
.y36_c00001{bottom:215.066667pt;}
.ydb8_c00001{bottom:215.200000pt;}
.y1049_c00001{bottom:215.333333pt;}
.y88a_c00001{bottom:215.466667pt;}
.y7d8_c00001{bottom:215.733333pt;}
.ya04_c00001{bottom:216.000000pt;}
.y2ce_c00001{bottom:216.133333pt;}
.y60c_c00001{bottom:216.266667pt;}
.ydb2_c00001{bottom:216.400000pt;}
.y1a9_c00001{bottom:216.933333pt;}
.y113_c00001{bottom:217.066667pt;}
.ya51_c00001{bottom:217.333333pt;}
.y6b_c00001{bottom:217.600000pt;}
.ydb_c00001{bottom:217.733333pt;}
.y2f0_c00001{bottom:217.866667pt;}
.y750_c00001{bottom:218.000000pt;}
.ya4c_c00001{bottom:218.266667pt;}
.y348_c00001{bottom:218.400000pt;}
.y6cb_c00001{bottom:218.533333pt;}
.ydfc_c00001{bottom:218.666667pt;}
.y3fe_c00001{bottom:218.800000pt;}
.ydfa_c00001{bottom:218.933333pt;}
.y426_c00001{bottom:219.200000pt;}
.y8a9_c00001{bottom:219.333333pt;}
.y2a5_c00001{bottom:219.466667pt;}
.yd81_c00001{bottom:219.600000pt;}
.y5da_c00001{bottom:219.733333pt;}
.ya8_c00001{bottom:219.866667pt;}
.yb1b_c00001{bottom:220.000000pt;}
.y6ab_c00001{bottom:220.133333pt;}
.y50a_c00001{bottom:220.266667pt;}
.y31c_c00001{bottom:220.533333pt;}
.yafe_c00001{bottom:220.800000pt;}
.y7f9_c00001{bottom:221.066667pt;}
.yf05_c00001{bottom:221.333333pt;}
.y821_c00001{bottom:221.600000pt;}
.y64b_c00001{bottom:221.733333pt;}
.yec3_c00001{bottom:221.866667pt;}
.ye2a_c00001{bottom:222.133333pt;}
.y8f1_c00001{bottom:222.400000pt;}
.ye32_c00001{bottom:222.533333pt;}
.yfdc_c00001{bottom:222.666667pt;}
.yde2_c00001{bottom:222.800000pt;}
.y8ce_c00001{bottom:223.066667pt;}
.yde6_c00001{bottom:223.333333pt;}
.yd3c_c00001{bottom:223.466667pt;}
.yd48_c00001{bottom:223.600000pt;}
.yd4c_c00001{bottom:223.733333pt;}
.yba8_c00001{bottom:224.000000pt;}
.y1028_c00001{bottom:224.400000pt;}
.ya97_c00001{bottom:224.666667pt;}
.yaba_c00001{bottom:224.933333pt;}
.y678_c00001{bottom:225.066667pt;}
.yf89_c00001{bottom:225.333333pt;}
.y451_c00001{bottom:225.600000pt;}
.yd19_c00001{bottom:225.733333pt;}
.y586_c00001{bottom:225.866667pt;}
.y96d_c00001{bottom:226.000000pt;}
.y95d_c00001{bottom:226.266667pt;}
.ybca_c00001{bottom:226.533333pt;}
.y470_c00001{bottom:226.666667pt;}
.y3a4_c00001{bottom:226.933333pt;}
.yf19_c00001{bottom:227.066667pt;}
.y3c9_c00001{bottom:227.200000pt;}
.y93d_c00001{bottom:227.333333pt;}
.y72d_c00001{bottom:227.466667pt;}
.y177_c00001{bottom:227.600000pt;}
.y209_c00001{bottom:227.733333pt;}
.y35_c00001{bottom:227.866667pt;}
.ydb7_c00001{bottom:228.000000pt;}
.y1006_c00001{bottom:228.133333pt;}
.y913_c00001{bottom:228.266667pt;}
.y889_c00001{bottom:228.533333pt;}
.y7d7_c00001{bottom:228.800000pt;}
.y872_c00001{bottom:228.933333pt;}
.y60b_c00001{bottom:229.066667pt;}
.y2cd_c00001{bottom:229.200000pt;}
.yf8b_c00001{bottom:229.333333pt;}
.y70b_c00001{bottom:229.466667pt;}
.ydc2_c00001{bottom:229.866667pt;}
.yfa6_c00001{bottom:230.000000pt;}
.y112_c00001{bottom:230.133333pt;}
.yda_c00001{bottom:230.533333pt;}
.yfc3_c00001{bottom:230.666667pt;}
.y537_c00001{bottom:230.800000pt;}
.yffe_c00001{bottom:230.933333pt;}
.y2ef_c00001{bottom:231.066667pt;}
.yd86_c00001{bottom:231.333333pt;}
.yd83_c00001{bottom:231.600000pt;}
.y55c_c00001{bottom:231.733333pt;}
.y6ca_c00001{bottom:232.000000pt;}
.y375_c00001{bottom:232.266667pt;}
.y2a4_c00001{bottom:232.400000pt;}
.y148_c00001{bottom:232.533333pt;}
.yb2e_c00001{bottom:232.666667pt;}
.ya7_c00001{bottom:232.933333pt;}
.y509_c00001{bottom:233.066667pt;}
.ycd7_c00001{bottom:233.333333pt;}
.y31b_c00001{bottom:233.600000pt;}
.y777_c00001{bottom:233.866667pt;}
.y1027_c00001{bottom:234.000000pt;}
.y64a_c00001{bottom:234.266667pt;}
.y820_c00001{bottom:234.666667pt;}
.ye2e_c00001{bottom:234.933333pt;}
.yde4_c00001{bottom:235.200000pt;}
.yde1_c00001{bottom:235.600000pt;}
.y8f0_c00001{bottom:235.866667pt;}
.y8cd_c00001{bottom:236.133333pt;}
.yd3b_c00001{bottom:236.266667pt;}
.yd47_c00001{bottom:236.400000pt;}
.yd37_c00001{bottom:236.533333pt;}
.yd4b_c00001{bottom:236.666667pt;}
.y7f8_c00001{bottom:236.800000pt;}
.yef0_c00001{bottom:237.066667pt;}
.yaad_c00001{bottom:237.466667pt;}
.y677_c00001{bottom:237.600000pt;}
.ya03_c00001{bottom:237.733333pt;}
.y95c_c00001{bottom:238.133333pt;}
.y5b1_c00001{bottom:238.400000pt;}
.yd23_c00001{bottom:238.533333pt;}
.y450_c00001{bottom:238.666667pt;}
.yd18_c00001{bottom:238.800000pt;}
.yf0f_c00001{bottom:239.066667pt;}
.ya4b_c00001{bottom:239.333333pt;}
.y46f_c00001{bottom:239.466667pt;}
.y7bd_c00001{bottom:239.733333pt;}
.y3a3_c00001{bottom:240.000000pt;}
.yf18_c00001{bottom:240.133333pt;}
.y3c8_c00001{bottom:240.266667pt;}
.y176_c00001{bottom:240.400000pt;}
.y208_c00001{bottom:240.533333pt;}
.y34_c00001{bottom:240.666667pt;}
.y4ba_c00001{bottom:241.333333pt;}
.ydb6_c00001{bottom:241.466667pt;}
.yff4_c00001{bottom:241.600000pt;}
.y871_c00001{bottom:241.733333pt;}
.y6a_c00001{bottom:241.866667pt;}
.y111_c00001{bottom:242.266667pt;}
.ydb1_c00001{bottom:242.533333pt;}
.y1a8_c00001{bottom:242.933333pt;}
.y74f_c00001{bottom:243.200000pt;}
.yf04_c00001{bottom:243.466667pt;}
.yd9_c00001{bottom:243.600000pt;}
.y2ee_c00001{bottom:243.866667pt;}
.y9f1_c00001{bottom:244.133333pt;}
.y347_c00001{bottom:244.266667pt;}
.y494_c00001{bottom:244.533333pt;}
.y3fd_c00001{bottom:244.800000pt;}
.y147_c00001{bottom:245.066667pt;}
.y6da_c00001{bottom:245.200000pt;}
.y8a2_c00001{bottom:245.333333pt;}
.ya6_c00001{bottom:245.466667pt;}
.yb1a_c00001{bottom:245.600000pt;}
.y5f6_c00001{bottom:245.733333pt;}
.y5d9_c00001{bottom:245.866667pt;}
.y31a_c00001{bottom:246.133333pt;}
.y4e4_c00001{bottom:246.400000pt;}
.y1036_c00001{bottom:246.666667pt;}
.y776_c00001{bottom:247.066667pt;}
.yf64_c00001{bottom:247.333333pt;}
.yf96_c00001{bottom:247.600000pt;}
.y81f_c00001{bottom:247.733333pt;}
.ycfc_c00001{bottom:248.000000pt;}
.y100c_c00001{bottom:248.266667pt;}
.y23f_c00001{bottom:248.400000pt;}
.y649_c00001{bottom:248.666667pt;}
.y8cc_c00001{bottom:248.933333pt;}
.ye95_c00001{bottom:249.066667pt;}
.y26c_c00001{bottom:249.333333pt;}
.yd46_c00001{bottom:249.466667pt;}
.y92b_c00001{bottom:249.600000pt;}
.yd4a_c00001{bottom:249.733333pt;}
.y9c2_c00001{bottom:249.866667pt;}
.y797_c00001{bottom:250.266667pt;}
.yfa5_c00001{bottom:250.533333pt;}
.y676_c00001{bottom:250.666667pt;}
.y96c_c00001{bottom:250.933333pt;}
.ya96_c00001{bottom:251.200000pt;}
.y44f_c00001{bottom:251.466667pt;}
.yd17_c00001{bottom:251.600000pt;}
.y72c_c00001{bottom:251.866667pt;}
.y95b_c00001{bottom:252.000000pt;}
.y7bc_c00001{bottom:252.133333pt;}
.y3a2_c00001{bottom:252.533333pt;}
.y982_c00001{bottom:252.800000pt;}
.yecf_c00001{bottom:252.933333pt;}
.y207_c00001{bottom:253.066667pt;}
.yfc9_c00001{bottom:253.200000pt;}
.y33_c00001{bottom:253.466667pt;}
.y4b9_c00001{bottom:253.733333pt;}
.y6aa_c00001{bottom:254.133333pt;}
.ydb5_c00001{bottom:254.266667pt;}
.y97d_c00001{bottom:254.400000pt;}
.y870_c00001{bottom:254.800000pt;}
.y69_c00001{bottom:254.933333pt;}
.y2cc_c00001{bottom:255.066667pt;}
.y6fa_c00001{bottom:255.200000pt;}
.y1a7_c00001{bottom:255.333333pt;}
.y110_c00001{bottom:255.733333pt;}
.ydc1_c00001{bottom:256.000000pt;}
.yc41_c00001{bottom:256.133333pt;}
.yd8_c00001{bottom:256.400000pt;}
.y2ed_c00001{bottom:256.666667pt;}
.yca6_c00001{bottom:256.933333pt;}
.y346_c00001{bottom:257.333333pt;}
.y74e_c00001{bottom:257.466667pt;}
.y425_c00001{bottom:257.600000pt;}
.y55b_c00001{bottom:257.733333pt;}
.y146_c00001{bottom:257.866667pt;}
.y5d8_c00001{bottom:258.000000pt;}
.yf70_c00001{bottom:258.133333pt;}
.ya5_c00001{bottom:258.266667pt;}
.y8a1_c00001{bottom:258.400000pt;}
.y2a3_c00001{bottom:258.533333pt;}
.yc04_c00001{bottom:258.666667pt;}
.y1013_c00001{bottom:258.800000pt;}
.y508_c00001{bottom:258.933333pt;}
.y319_c00001{bottom:259.200000pt;}
.y775_c00001{bottom:259.866667pt;}
.yc2e_c00001{bottom:260.133333pt;}
.y81e_c00001{bottom:260.800000pt;}
.ye85_c00001{bottom:261.066667pt;}
.yde3_c00001{bottom:261.200000pt;}
.y648_c00001{bottom:261.466667pt;}
.yb9f_c00001{bottom:261.733333pt;}
.y23e_c00001{bottom:261.866667pt;}
.y8cb_c00001{bottom:262.000000pt;}
.y8ef_c00001{bottom:262.133333pt;}
.yea6_c00001{bottom:262.266667pt;}
.y26b_c00001{bottom:262.400000pt;}
.yd45_c00001{bottom:262.533333pt;}
.yf95_c00001{bottom:262.666667pt;}
.yd49_c00001{bottom:262.800000pt;}
.yd36_c00001{bottom:263.066667pt;}
.yfea_c00001{bottom:263.333333pt;}
.yaac_c00001{bottom:263.600000pt;}
.y675_c00001{bottom:263.733333pt;}
.y96b_c00001{bottom:264.000000pt;}
.y585_c00001{bottom:264.266667pt;}
.yd1f_c00001{bottom:264.400000pt;}
.y44e_c00001{bottom:264.666667pt;}
.y95a_c00001{bottom:264.800000pt;}
.y72b_c00001{bottom:264.933333pt;}
.yac4_c00001{bottom:265.066667pt;}
.ybf4_c00001{bottom:265.200000pt;}
.y3a1_c00001{bottom:265.333333pt;}
.y46e_c00001{bottom:265.600000pt;}
.y981_c00001{bottom:265.733333pt;}
.y206_c00001{bottom:265.866667pt;}
.y93c_c00001{bottom:266.000000pt;}
.y32_c00001{bottom:266.266667pt;}
.y1de_c00001{bottom:266.533333pt;}
.y175_c00001{bottom:266.666667pt;}
.ydb4_c00001{bottom:266.800000pt;}
.y6a9_c00001{bottom:266.933333pt;}
.y4b8_c00001{bottom:267.200000pt;}
.y68_c00001{bottom:267.466667pt;}
.y7d6_c00001{bottom:267.600000pt;}
.y692_c00001{bottom:267.733333pt;}
.y10f_c00001{bottom:267.866667pt;}
.y6f9_c00001{bottom:268.000000pt;}
.y1a6_c00001{bottom:268.133333pt;}
.yc7a_c00001{bottom:268.266667pt;}
.ydb0_c00001{bottom:268.400000pt;}
.ydc0_c00001{bottom:268.533333pt;}
.y85e_c00001{bottom:268.800000pt;}
.y74d_c00001{bottom:268.933333pt;}
.y100b_c00001{bottom:269.066667pt;}
.y842_c00001{bottom:269.200000pt;}
.yd7_c00001{bottom:269.466667pt;}
.y2ec_c00001{bottom:269.733333pt;}
.y345_c00001{bottom:269.866667pt;}
.y493_c00001{bottom:270.133333pt;}
.y374_c00001{bottom:270.400000pt;}
.y145_c00001{bottom:270.666667pt;}
.ya4_c00001{bottom:271.066667pt;}
.y8a0_c00001{bottom:271.200000pt;}
.y318_c00001{bottom:271.333333pt;}
.yae1_c00001{bottom:271.466667pt;}
.y5d7_c00001{bottom:271.733333pt;}
.y507_c00001{bottom:272.000000pt;}
.y4e3_c00001{bottom:272.266667pt;}
.y774_c00001{bottom:272.666667pt;}
.yafd_c00001{bottom:272.933333pt;}
.y647_c00001{bottom:273.600000pt;}
.ye29_c00001{bottom:273.866667pt;}
.yd80_c00001{bottom:274.000000pt;}
.yb5e_c00001{bottom:274.266667pt;}
.yb64_c00001{bottom:274.400000pt;}
.yb9e_c00001{bottom:274.533333pt;}
.y23d_c00001{bottom:274.933333pt;}
.y8ca_c00001{bottom:275.066667pt;}
.yde7_c00001{bottom:275.200000pt;}
.yd44_c00001{bottom:275.333333pt;}
.y26a_c00001{bottom:275.466667pt;}
.y1026_c00001{bottom:275.600000pt;}
.yd35_c00001{bottom:275.866667pt;}
.y674_c00001{bottom:276.533333pt;}
.yaab_c00001{bottom:276.666667pt;}
.ya95_c00001{bottom:276.800000pt;}
.y1048_c00001{bottom:277.066667pt;}
.y584_c00001{bottom:277.200000pt;}
.yd1e_c00001{bottom:277.466667pt;}
.y44d_c00001{bottom:277.733333pt;}
.y959_c00001{bottom:277.866667pt;}
.yac3_c00001{bottom:278.133333pt;}
.ybf3_c00001{bottom:278.266667pt;}
.y205_c00001{bottom:278.400000pt;}
.y3a0_c00001{bottom:278.666667pt;}
.y31_c00001{bottom:278.800000pt;}
.y1dd_c00001{bottom:279.066667pt;}
.y980_c00001{bottom:279.333333pt;}
.y174_c00001{bottom:279.466667pt;}
.y903_c00001{bottom:279.733333pt;}
.y4b7_c00001{bottom:280.000000pt;}
.y67_c00001{bottom:280.266667pt;}
.y86f_c00001{bottom:280.400000pt;}
.y691_c00001{bottom:280.533333pt;}
.y2cb_c00001{bottom:280.666667pt;}
.y6f8_c00001{bottom:280.800000pt;}
.y621_c00001{bottom:280.933333pt;}
.yc79_c00001{bottom:281.066667pt;}
.y1a5_c00001{bottom:281.200000pt;}
.yc3d_c00001{bottom:281.333333pt;}
.y10e_c00001{bottom:281.600000pt;}
.y841_c00001{bottom:282.000000pt;}
.yd6_c00001{bottom:282.266667pt;}
.y536_c00001{bottom:282.533333pt;}
.yffd_c00001{bottom:282.800000pt;}
.y344_c00001{bottom:282.933333pt;}
.ye01_c00001{bottom:283.200000pt;}
.ydf9_c00001{bottom:283.466667pt;}
.y144_c00001{bottom:283.600000pt;}
.y424_c00001{bottom:283.733333pt;}
.ya3_c00001{bottom:283.866667pt;}
.yc03_c00001{bottom:284.000000pt;}
.y2a2_c00001{bottom:284.133333pt;}
.y89f_c00001{bottom:284.266667pt;}
.yf72_c00001{bottom:284.400000pt;}
.y5d6_c00001{bottom:284.533333pt;}
.y506_c00001{bottom:284.800000pt;}
.y317_c00001{bottom:285.066667pt;}
.yb2d_c00001{bottom:285.333333pt;}
.y4e2_c00001{bottom:285.466667pt;}
.y773_c00001{bottom:285.733333pt;}
.yafc_c00001{bottom:286.000000pt;}
.yeef_c00001{bottom:286.133333pt;}
.ye30_c00001{bottom:286.400000pt;}
.y81d_c00001{bottom:286.666667pt;}
.ye28_c00001{bottom:286.800000pt;}
.yb5d_c00001{bottom:287.066667pt;}
.y646_c00001{bottom:287.333333pt;}
.yb63_c00001{bottom:287.466667pt;}
.ye8d_c00001{bottom:287.600000pt;}
.yf63_c00001{bottom:287.733333pt;}
.y8c9_c00001{bottom:287.866667pt;}
.y23c_c00001{bottom:288.000000pt;}
.yea5_c00001{bottom:288.133333pt;}
.y269_c00001{bottom:288.266667pt;}
.yd43_c00001{bottom:288.400000pt;}
.yd3a_c00001{bottom:288.666667pt;}
.yf62_c00001{bottom:288.933333pt;}
.yba7_c00001{bottom:289.066667pt;}
.yaaa_c00001{bottom:289.200000pt;}
.yab9_c00001{bottom:289.333333pt;}
.y673_c00001{bottom:289.600000pt;}
.ya94_c00001{bottom:289.866667pt;}
.y583_c00001{bottom:290.266667pt;}
.y46d_c00001{bottom:290.533333pt;}
.y5b0_c00001{bottom:290.666667pt;}
.y9ea_c00001{bottom:290.800000pt;}
.y30_c00001{bottom:290.933333pt;}
.yac2_c00001{bottom:291.200000pt;}
.ybf2_c00001{bottom:291.333333pt;}
.y3fc_c00001{bottom:291.466667pt;}
.y39f_c00001{bottom:291.733333pt;}
.y204_c00001{bottom:291.866667pt;}
.y1dc_c00001{bottom:292.133333pt;}
.y173_c00001{bottom:292.266667pt;}
.y6a8_c00001{bottom:292.533333pt;}
.y902_c00001{bottom:292.800000pt;}
.y4b6_c00001{bottom:293.066667pt;}
.yf94_c00001{bottom:293.200000pt;}
.yc78_c00001{bottom:293.333333pt;}
.y888_c00001{bottom:293.466667pt;}
.y690_c00001{bottom:293.600000pt;}
.y66_c00001{bottom:293.733333pt;}
.y6f7_c00001{bottom:293.866667pt;}
.yc34_c00001{bottom:294.000000pt;}
.y2ca_c00001{bottom:294.133333pt;}
.y10d_c00001{bottom:294.400000pt;}
.ybb4_c00001{bottom:294.666667pt;}
.yd5_c00001{bottom:295.066667pt;}
.y2eb_c00001{bottom:295.333333pt;}
.y840_c00001{bottom:295.466667pt;}
.y492_c00001{bottom:295.600000pt;}
.y535_c00001{bottom:295.733333pt;}
.y343_c00001{bottom:296.000000pt;}
.y6c9_c00001{bottom:296.266667pt;}
.yc01_c00001{bottom:296.400000pt;}
.y423_c00001{bottom:296.533333pt;}
.ya2_c00001{bottom:296.666667pt;}
.yb19_c00001{bottom:296.800000pt;}
.y2a1_c00001{bottom:296.933333pt;}
.y89e_c00001{bottom:297.066667pt;}
.y5d5_c00001{bottom:297.200000pt;}
.y796_c00001{bottom:297.333333pt;}
.y5f5_c00001{bottom:297.600000pt;}
.yc2d_c00001{bottom:297.733333pt;}
.y772_c00001{bottom:297.866667pt;}
.y316_c00001{bottom:298.133333pt;}
.y4e1_c00001{bottom:298.266667pt;}
.yafb_c00001{bottom:298.533333pt;}
.ycf5_c00001{bottom:298.666667pt;}
.yf82_c00001{bottom:298.933333pt;}
.yc48_c00001{bottom:299.200000pt;}
.y81c_c00001{bottom:299.466667pt;}
.yb5c_c00001{bottom:299.866667pt;}
.y645_c00001{bottom:300.133333pt;}
.yb6c_c00001{bottom:300.266667pt;}
.ycfa_c00001{bottom:300.400000pt;}
.yb62_c00001{bottom:300.533333pt;}
.y8c8_c00001{bottom:300.666667pt;}
.y23b_c00001{bottom:300.800000pt;}
.y268_c00001{bottom:300.933333pt;}
.ye94_c00001{bottom:301.066667pt;}
.yd42_c00001{bottom:301.200000pt;}
.yd34_c00001{bottom:301.466667pt;}
.yba6_c00001{bottom:302.133333pt;}
.yaa9_c00001{bottom:302.266667pt;}
.yfa4_c00001{bottom:302.400000pt;}
.y672_c00001{bottom:302.666667pt;}
.ya93_c00001{bottom:302.933333pt;}
.y582_c00001{bottom:303.066667pt;}
.yf81_c00001{bottom:303.333333pt;}
.y5af_c00001{bottom:303.466667pt;}
.y44c_c00001{bottom:303.733333pt;}
.y9e9_c00001{bottom:303.866667pt;}
.ybad_c00001{bottom:304.000000pt;}
.ybf1_c00001{bottom:304.133333pt;}
.y7bb_c00001{bottom:304.266667pt;}
.y39e_c00001{bottom:304.533333pt;}
.y2f_c00001{bottom:304.666667pt;}
.y1db_c00001{bottom:304.933333pt;}
.y172_c00001{bottom:305.066667pt;}
.y3c7_c00001{bottom:305.200000pt;}
.y6a7_c00001{bottom:305.333333pt;}
.y65_c00001{bottom:305.600000pt;}
.y1a4_c00001{bottom:305.866667pt;}
.y9f0_c00001{bottom:306.000000pt;}
.y7d5_c00001{bottom:306.266667pt;}
.yc77_c00001{bottom:306.400000pt;}
.y620_c00001{bottom:306.533333pt;}
.y6f6_c00001{bottom:306.666667pt;}
.y60a_c00001{bottom:306.933333pt;}
.y68f_c00001{bottom:307.066667pt;}
.y2c9_c00001{bottom:307.200000pt;}
.y10c_c00001{bottom:307.466667pt;}
.yd4_c00001{bottom:307.866667pt;}
.y2ea_c00001{bottom:308.133333pt;}
.y83f_c00001{bottom:308.266667pt;}
.y1035_c00001{bottom:308.400000pt;}
.yf93_c00001{bottom:308.533333pt;}
.y342_c00001{bottom:308.800000pt;}
.y55a_c00001{bottom:309.066667pt;}
.yc00_c00001{bottom:309.200000pt;}
.y422_c00001{bottom:309.333333pt;}
.y143_c00001{bottom:309.466667pt;}
.ya1_c00001{bottom:309.733333pt;}
.yc02_c00001{bottom:309.866667pt;}
.yf6e_c00001{bottom:310.000000pt;}
.y89d_c00001{bottom:310.133333pt;}
.yb18_c00001{bottom:310.266667pt;}
.y2a0_c00001{bottom:310.400000pt;}
.yc2c_c00001{bottom:310.533333pt;}
.ye7d_c00001{bottom:310.666667pt;}
.y92a_c00001{bottom:310.800000pt;}
.y315_c00001{bottom:310.933333pt;}
.y795_c00001{bottom:311.200000pt;}
.y4e0_c00001{bottom:311.333333pt;}
.y505_c00001{bottom:311.600000pt;}
.ycf4_c00001{bottom:311.733333pt;}
.ycf8_c00001{bottom:312.000000pt;}
.y81b_c00001{bottom:312.266667pt;}
.y644_c00001{bottom:312.666667pt;}
.y8ee_c00001{bottom:312.933333pt;}
.yeb3_c00001{bottom:313.200000pt;}
.yb61_c00001{bottom:313.333333pt;}
.yb9d_c00001{bottom:313.600000pt;}
.y8c7_c00001{bottom:313.733333pt;}
.y23a_c00001{bottom:313.866667pt;}
.yea4_c00001{bottom:314.000000pt;}
.yd41_c00001{bottom:314.266667pt;}
.y267_c00001{bottom:314.400000pt;}
.yd33_c00001{bottom:314.533333pt;}
.yba5_c00001{bottom:314.933333pt;}
.y1001_c00001{bottom:315.200000pt;}
.yaa8_c00001{bottom:315.333333pt;}
.y671_c00001{bottom:315.466667pt;}
.ya92_c00001{bottom:315.733333pt;}
.yab8_c00001{bottom:315.866667pt;}
.y581_c00001{bottom:316.133333pt;}
.y5ae_c00001{bottom:316.533333pt;}
.y44b_c00001{bottom:316.800000pt;}
.y9e8_c00001{bottom:316.933333pt;}
.yac1_c00001{bottom:317.066667pt;}
.ybf0_c00001{bottom:317.200000pt;}
.y39d_c00001{bottom:317.333333pt;}
.y2e_c00001{bottom:317.466667pt;}
.y72a_c00001{bottom:317.733333pt;}
.y3c6_c00001{bottom:318.000000pt;}
.y171_c00001{bottom:318.133333pt;}
.y103d_c00001{bottom:318.266667pt;}
.y1da_c00001{bottom:318.400000pt;}
.y9ef_c00001{bottom:318.533333pt;}
.ya02_c00001{bottom:318.666667pt;}
.y6a6_c00001{bottom:318.800000pt;}
.y64_c00001{bottom:319.066667pt;}
.y86e_c00001{bottom:319.200000pt;}
.y887_c00001{bottom:319.333333pt;}
.yc76_c00001{bottom:319.466667pt;}
.y2c8_c00001{bottom:319.733333pt;}
.y68e_c00001{bottom:319.866667pt;}
.y10b_c00001{bottom:320.000000pt;}
.ybc9_c00001{bottom:320.266667pt;}
.y2e9_c00001{bottom:320.400000pt;}
.y74c_c00001{bottom:320.666667pt;}
.yd3_c00001{bottom:320.800000pt;}
.y85d_c00001{bottom:320.933333pt;}
.y83e_c00001{bottom:321.066667pt;}
.y341_c00001{bottom:321.600000pt;}
.y559_c00001{bottom:321.866667pt;}
.ybff_c00001{bottom:322.266667pt;}
.ya0_c00001{bottom:322.400000pt;}
.y142_c00001{bottom:322.533333pt;}
.y421_c00001{bottom:322.800000pt;}
.y89c_c00001{bottom:322.933333pt;}
.yb17_c00001{bottom:323.066667pt;}
.y373_c00001{bottom:323.200000pt;}
.y29f_c00001{bottom:323.466667pt;}
.y929_c00001{bottom:323.600000pt;}
.y314_c00001{bottom:323.733333pt;}
.yf92_c00001{bottom:323.866667pt;}
.y794_c00001{bottom:324.000000pt;}
.yc1b_c00001{bottom:324.133333pt;}
.y771_c00001{bottom:324.400000pt;}
.y4df_c00001{bottom:324.533333pt;}
.y504_c00001{bottom:324.666667pt;}
.y3fb_c00001{bottom:324.800000pt;}
.ycf7_c00001{bottom:325.066667pt;}
.y81a_c00001{bottom:325.333333pt;}
.yec2_c00001{bottom:325.466667pt;}
.y643_c00001{bottom:325.733333pt;}
.yb6b_c00001{bottom:325.866667pt;}
.yfe0_c00001{bottom:326.000000pt;}
.yb60_c00001{bottom:326.133333pt;}
.yeb2_c00001{bottom:326.266667pt;}
.yb5b_c00001{bottom:326.400000pt;}
.yda0_c00001{bottom:326.666667pt;}
.ye4a_c00001{bottom:326.800000pt;}
.y239_c00001{bottom:326.933333pt;}
.y8ed_c00001{bottom:327.066667pt;}
.y8c6_c00001{bottom:327.200000pt;}
.yd32_c00001{bottom:327.333333pt;}
.y266_c00001{bottom:327.466667pt;}
.ye49_c00001{bottom:327.733333pt;}
.y97f_c00001{bottom:328.000000pt;}
.y670_c00001{bottom:328.266667pt;}
.yaa7_c00001{bottom:328.400000pt;}
.y1051_c00001{bottom:328.666667pt;}
.ya91_c00001{bottom:328.800000pt;}
.y580_c00001{bottom:328.933333pt;}
.y9a8_c00001{bottom:329.066667pt;}
.yab7_c00001{bottom:329.200000pt;}
.y9e7_c00001{bottom:329.466667pt;}
.y5ad_c00001{bottom:329.600000pt;}
.ycca_c00001{bottom:329.866667pt;}
.y7ba_c00001{bottom:330.000000pt;}
.y39c_c00001{bottom:330.133333pt;}
.y2d_c00001{bottom:330.266667pt;}
.y170_c00001{bottom:330.933333pt;}
.y3c5_c00001{bottom:331.066667pt;}
.y912_c00001{bottom:331.200000pt;}
.y1d9_c00001{bottom:331.466667pt;}
.y9ee_c00001{bottom:331.600000pt;}
.y63_c00001{bottom:331.866667pt;}
.y44a_c00001{bottom:332.133333pt;}
.y86d_c00001{bottom:332.266667pt;}
.y1a3_c00001{bottom:332.533333pt;}
.y68d_c00001{bottom:332.666667pt;}
.y2c7_c00001{bottom:332.800000pt;}
.yc33_c00001{bottom:332.933333pt;}
.y729_c00001{bottom:333.066667pt;}
.y10a_c00001{bottom:333.466667pt;}
.yd2_c00001{bottom:333.600000pt;}
.yc40_c00001{bottom:333.733333pt;}
.y85c_c00001{bottom:333.866667pt;}
.y83d_c00001{bottom:334.133333pt;}
.yff9_c00001{bottom:334.400000pt;}
.y340_c00001{bottom:334.666667pt;}
.y534_c00001{bottom:334.800000pt;}
.yfc8_c00001{bottom:334.933333pt;}
.ydf8_c00001{bottom:335.066667pt;}
.y9f_c00001{bottom:335.200000pt;}
.y141_c00001{bottom:335.333333pt;}
.ydfb_c00001{bottom:335.466667pt;}
.y491_c00001{bottom:335.600000pt;}
.y372_c00001{bottom:335.733333pt;}
.y5f4_c00001{bottom:336.000000pt;}
.yb16_c00001{bottom:336.133333pt;}
.y29e_c00001{bottom:336.266667pt;}
.y928_c00001{bottom:336.400000pt;}
.yf61_c00001{bottom:336.666667pt;}
.y793_c00001{bottom:336.800000pt;}
.yafa_c00001{bottom:336.933333pt;}
.yb2c_c00001{bottom:337.066667pt;}
.y770_c00001{bottom:337.200000pt;}
.yc1a_c00001{bottom:337.333333pt;}
.y4de_c00001{bottom:337.600000pt;}
.y503_c00001{bottom:337.733333pt;}
.y3fa_c00001{bottom:337.866667pt;}
.ycf6_c00001{bottom:338.266667pt;}
.y105e_c00001{bottom:338.533333pt;}
.y642_c00001{bottom:338.800000pt;}
.yb5a_c00001{bottom:338.933333pt;}
.yeb1_c00001{bottom:339.066667pt;}
.yb5f_c00001{bottom:339.200000pt;}
.y238_c00001{bottom:339.466667pt;}
.y8ec_c00001{bottom:339.600000pt;}
.ycfb_c00001{bottom:339.866667pt;}
.ya27_c00001{bottom:340.000000pt;}
.yd40_c00001{bottom:340.133333pt;}
.y8c5_c00001{bottom:340.266667pt;}
.y265_c00001{bottom:340.533333pt;}
.yd31_c00001{bottom:340.800000pt;}
.y100f_c00001{bottom:341.066667pt;}
.ye46_c00001{bottom:341.200000pt;}
.y66f_c00001{bottom:341.333333pt;}
.yaa6_c00001{bottom:341.466667pt;}
.ya90_c00001{bottom:341.600000pt;}
.ycd1_c00001{bottom:341.733333pt;}
.y9a7_c00001{bottom:341.866667pt;}
.yab6_c00001{bottom:342.000000pt;}
.y5ac_c00001{bottom:342.133333pt;}
.y57f_c00001{bottom:342.266667pt;}
.y958_c00001{bottom:342.400000pt;}
.y9e6_c00001{bottom:342.933333pt;}
.y2c_c00001{bottom:343.066667pt;}
.y39b_c00001{bottom:343.200000pt;}
.y46c_c00001{bottom:343.333333pt;}
.y3c4_c00001{bottom:343.600000pt;}
.y16f_c00001{bottom:343.733333pt;}
.y1d8_c00001{bottom:344.000000pt;}
.y911_c00001{bottom:344.266667pt;}
.y7d4_c00001{bottom:344.666667pt;}
.y62_c00001{bottom:344.933333pt;}
.y4b5_c00001{bottom:345.066667pt;}
.y886_c00001{bottom:345.200000pt;}
.y2c6_c00001{bottom:345.333333pt;}
.y1a2_c00001{bottom:345.600000pt;}
.y68c_c00001{bottom:345.733333pt;}
.y609_c00001{bottom:345.866667pt;}
.y61f_c00001{bottom:346.000000pt;}
.y109_c00001{bottom:346.266667pt;}
.y2e8_c00001{bottom:346.533333pt;}
.yd1_c00001{bottom:346.666667pt;}
.y83c_c00001{bottom:346.933333pt;}
.yfd0_c00001{bottom:347.200000pt;}
.y33f_c00001{bottom:347.466667pt;}
.y533_c00001{bottom:347.600000pt;}
.y558_c00001{bottom:347.866667pt;}
.y9e_c00001{bottom:348.000000pt;}
.y140_c00001{bottom:348.133333pt;}
.yeeb_c00001{bottom:348.266667pt;}
.y6c8_c00001{bottom:348.533333pt;}
.y490_c00001{bottom:348.666667pt;}
.y371_c00001{bottom:348.800000pt;}
.yb15_c00001{bottom:348.933333pt;}
.y420_c00001{bottom:349.066667pt;}
.y927_c00001{bottom:349.200000pt;}
.y5d4_c00001{bottom:349.333333pt;}
.y29d_c00001{bottom:349.466667pt;}
.yc1d_c00001{bottom:349.600000pt;}
.y76f_c00001{bottom:349.733333pt;}
.y792_c00001{bottom:349.866667pt;}
.yc19_c00001{bottom:350.133333pt;}
.yaf9_c00001{bottom:350.400000pt;}
.y449_c00001{bottom:350.533333pt;}
.yeee_c00001{bottom:350.666667pt;}
.yeff_c00001{bottom:350.800000pt;}
.y3f9_c00001{bottom:350.933333pt;}
.y819_c00001{bottom:351.066667pt;}
.y641_c00001{bottom:351.333333pt;}
.ybf5_c00001{bottom:351.600000pt;}
.ye27_c00001{bottom:351.733333pt;}
.yb59_c00001{bottom:352.000000pt;}
.yeb0_c00001{bottom:352.133333pt;}
.yea3_c00001{bottom:352.400000pt;}
.y8eb_c00001{bottom:352.666667pt;}
.ya26_c00001{bottom:352.800000pt;}
.y264_c00001{bottom:352.933333pt;}
.y237_c00001{bottom:353.066667pt;}
.y97e_c00001{bottom:353.333333pt;}
.ye48_c00001{bottom:353.600000pt;}
.ye4d_c00001{bottom:353.733333pt;}
.yfa0_c00001{bottom:353.866667pt;}
.y66e_c00001{bottom:354.133333pt;}
.yfa3_c00001{bottom:354.266667pt;}
.yf91_c00001{bottom:354.400000pt;}
.ycd6_c00001{bottom:354.533333pt;}
.ya8f_c00001{bottom:354.666667pt;}
.y5ab_c00001{bottom:354.800000pt;}
.y9a6_c00001{bottom:354.933333pt;}
.y957_c00001{bottom:355.200000pt;}
.y57e_c00001{bottom:355.333333pt;}
.yb9c_c00001{bottom:355.466667pt;}
.y9e5_c00001{bottom:355.733333pt;}
.y7b9_c00001{bottom:355.866667pt;}
.y39a_c00001{bottom:356.000000pt;}
.y2b_c00001{bottom:356.133333pt;}
.yac0_c00001{bottom:356.266667pt;}
.y93b_c00001{bottom:356.533333pt;}
.y3c3_c00001{bottom:356.666667pt;}
.y16e_c00001{bottom:356.800000pt;}
.y9ed_c00001{bottom:357.066667pt;}
.yfe9_c00001{bottom:357.200000pt;}
.y61_c00001{bottom:357.466667pt;}
.y728_c00001{bottom:357.733333pt;}
.y901_c00001{bottom:357.866667pt;}
.ydb3_c00001{bottom:358.000000pt;}
.y1a1_c00001{bottom:358.133333pt;}
.y6f5_c00001{bottom:358.400000pt;}
.y7f7_c00001{bottom:358.666667pt;}
.y608_c00001{bottom:358.800000pt;}
.y108_c00001{bottom:359.066667pt;}
.ybc8_c00001{bottom:359.333333pt;}
.yd0_c00001{bottom:359.466667pt;}
.y83b_c00001{bottom:359.733333pt;}
.y103c_c00001{bottom:359.866667pt;}
.yba4_c00001{bottom:360.000000pt;}
.ycf9_c00001{bottom:360.266667pt;}
.y532_c00001{bottom:360.400000pt;}
.ybb3_c00001{bottom:360.666667pt;}
.y9d_c00001{bottom:360.800000pt;}
.y33e_c00001{bottom:360.933333pt;}
.y13f_c00001{bottom:361.333333pt;}
.y41f_c00001{bottom:361.600000pt;}
.y48f_c00001{bottom:361.733333pt;}
.y29c_c00001{bottom:361.866667pt;}
.y313_c00001{bottom:362.000000pt;}
.y5d3_c00001{bottom:362.133333pt;}
.y926_c00001{bottom:362.266667pt;}
.yf6f_c00001{bottom:362.533333pt;}
.y791_c00001{bottom:362.666667pt;}
.y5f3_c00001{bottom:362.933333pt;}
.y76e_c00001{bottom:363.066667pt;}
.ya01_c00001{bottom:363.200000pt;}
.y502_c00001{bottom:363.333333pt;}
.yeed_c00001{bottom:363.466667pt;}
.y448_c00001{bottom:363.600000pt;}
.y818_c00001{bottom:363.866667pt;}
.y3f8_c00001{bottom:364.000000pt;}
.yf9c_c00001{bottom:364.133333pt;}
.yf60_c00001{bottom:364.533333pt;}
.y640_c00001{bottom:364.800000pt;}
.yeaf_c00001{bottom:364.933333pt;}
.yb58_c00001{bottom:365.066667pt;}
.y8ea_c00001{bottom:365.466667pt;}
.yd9f_c00001{bottom:365.733333pt;}
.ya25_c00001{bottom:365.866667pt;}
.y236_c00001{bottom:366.133333pt;}
.y263_c00001{bottom:366.400000pt;}
.ye4c_c00001{bottom:366.533333pt;}
.y66d_c00001{bottom:366.666667pt;}
.yfdf_c00001{bottom:367.066667pt;}
.ycd0_c00001{bottom:367.333333pt;}
.y5aa_c00001{bottom:367.600000pt;}
.ya8e_c00001{bottom:367.733333pt;}
.yab5_c00001{bottom:367.866667pt;}
.y9a5_c00001{bottom:368.000000pt;}
.y7b8_c00001{bottom:368.266667pt;}
.y57d_c00001{bottom:368.400000pt;}
.y956_c00001{bottom:368.533333pt;}
.ycc7_c00001{bottom:368.666667pt;}
.y399_c00001{bottom:368.800000pt;}
.y2a_c00001{bottom:368.933333pt;}
.yabf_c00001{bottom:369.066667pt;}
.y910_c00001{bottom:369.200000pt;}
.y93a_c00001{bottom:369.333333pt;}
.y3c2_c00001{bottom:369.466667pt;}
.y16d_c00001{bottom:369.600000pt;}
.yd52_c00001{bottom:369.866667pt;}
.y103b_c00001{bottom:370.133333pt;}
.y1d7_c00001{bottom:370.266667pt;}
.y60_c00001{bottom:370.533333pt;}
.y900_c00001{bottom:370.666667pt;}
.y86c_c00001{bottom:370.933333pt;}
.y6f4_c00001{bottom:371.200000pt;}
.y7d3_c00001{bottom:371.333333pt;}
.y70a_c00001{bottom:371.466667pt;}
.y68b_c00001{bottom:371.600000pt;}
.yc3c_c00001{bottom:371.733333pt;}
.y607_c00001{bottom:371.866667pt;}
.y107_c00001{bottom:372.133333pt;}
.y2e7_c00001{bottom:372.266667pt;}
.y85b_c00001{bottom:372.400000pt;}
.ycf_c00001{bottom:372.533333pt;}
.y1a0_c00001{bottom:372.800000pt;}
.yc3f_c00001{bottom:373.066667pt;}
.y531_c00001{bottom:373.466667pt;}
.y9c_c00001{bottom:373.600000pt;}
.y557_c00001{bottom:373.733333pt;}
.y13e_c00001{bottom:374.133333pt;}
.y370_c00001{bottom:374.400000pt;}
.yeea_c00001{bottom:374.533333pt;}
.y41e_c00001{bottom:374.666667pt;}
.yc2b_c00001{bottom:374.933333pt;}
.y312_c00001{bottom:375.066667pt;}
.y29b_c00001{bottom:375.200000pt;}
.ybfe_c00001{bottom:375.333333pt;}
.y790_c00001{bottom:375.466667pt;}
.y76d_c00001{bottom:375.600000pt;}
.yc18_c00001{bottom:375.733333pt;}
.yffc_c00001{bottom:376.000000pt;}
.y33d_c00001{bottom:376.266667pt;}
.y501_c00001{bottom:376.400000pt;}
.yf03_c00001{bottom:376.533333pt;}
.y447_c00001{bottom:376.666667pt;}
.y89b_c00001{bottom:376.933333pt;}
.y3f7_c00001{bottom:377.066667pt;}
.yfde_c00001{bottom:377.600000pt;}
.y63f_c00001{bottom:377.866667pt;}
.yec1_c00001{bottom:378.133333pt;}
.y203_c00001{bottom:378.266667pt;}
.yc8d_c00001{bottom:378.400000pt;}
.y66c_c00001{bottom:378.533333pt;}
.y235_c00001{bottom:378.933333pt;}
.ya35_c00001{bottom:379.200000pt;}
.y262_c00001{bottom:379.466667pt;}
.ye4b_c00001{bottom:379.600000pt;}
.ye45_c00001{bottom:379.866667pt;}
.y1047_c00001{bottom:380.133333pt;}
.y1034_c00001{bottom:380.400000pt;}
.yccf_c00001{bottom:380.533333pt;}
.ya8d_c00001{bottom:380.800000pt;}
.yaa5_c00001{bottom:380.933333pt;}
.y955_c00001{bottom:381.066667pt;}
.y57c_c00001{bottom:381.200000pt;}
.ycc6_c00001{bottom:381.466667pt;}
.y398_c00001{bottom:381.600000pt;}
.y5a9_c00001{bottom:381.733333pt;}
.y46b_c00001{bottom:382.000000pt;}
.y29_c00001{bottom:382.133333pt;}
.y9ec_c00001{bottom:382.400000pt;}
.y16c_c00001{bottom:382.666667pt;}
.y3c1_c00001{bottom:382.933333pt;}
.yd51_c00001{bottom:383.066667pt;}
.y5f_c00001{bottom:383.333333pt;}
.y7d2_c00001{bottom:383.466667pt;}
.y885_c00001{bottom:383.600000pt;}
.y8ff_c00001{bottom:383.733333pt;}
.y90f_c00001{bottom:383.866667pt;}
.y4b4_c00001{bottom:384.000000pt;}
.y709_c00001{bottom:384.266667pt;}
.y68a_c00001{bottom:384.400000pt;}
.y996_c00001{bottom:384.533333pt;}
.y2c5_c00001{bottom:384.666667pt;}
.y7f6_c00001{bottom:384.800000pt;}
.y606_c00001{bottom:384.933333pt;}
.y2e6_c00001{bottom:385.066667pt;}
.y106_c00001{bottom:385.200000pt;}
.yce_c00001{bottom:385.333333pt;}
.yfc1_c00001{bottom:385.600000pt;}
.y83a_c00001{bottom:385.866667pt;}
.ye7c_c00001{bottom:386.266667pt;}
.y530_c00001{bottom:386.400000pt;}
.y74b_c00001{bottom:386.533333pt;}
.y9b_c00001{bottom:386.666667pt;}
.y1000_c00001{bottom:386.933333pt;}
.y13d_c00001{bottom:387.200000pt;}
.yee9_c00001{bottom:387.333333pt;}
.yc47_c00001{bottom:387.466667pt;}
.yeec_c00001{bottom:387.600000pt;}
.y41d_c00001{bottom:387.733333pt;}
.y6c7_c00001{bottom:387.866667pt;}
.y311_c00001{bottom:388.133333pt;}
.y29a_c00001{bottom:388.266667pt;}
.yc2a_c00001{bottom:388.400000pt;}
.y78f_c00001{bottom:388.533333pt;}
.yc1c_c00001{bottom:388.800000pt;}
.y76c_c00001{bottom:389.066667pt;}
.yb2b_c00001{bottom:389.200000pt;}
.yf02_c00001{bottom:389.333333pt;}
.y446_c00001{bottom:389.466667pt;}
.y4dd_c00001{bottom:389.733333pt;}
.y3f6_c00001{bottom:390.133333pt;}
.y63e_c00001{bottom:390.266667pt;}
.ydf7_c00001{bottom:390.400000pt;}
.yb67_c00001{bottom:390.666667pt;}
.yeae_c00001{bottom:390.933333pt;}
.yb57_c00001{bottom:391.066667pt;}
.yb6a_c00001{bottom:391.200000pt;}
.y202_c00001{bottom:391.333333pt;}
.yf0e_c00001{bottom:391.466667pt;}
.y8e9_c00001{bottom:391.600000pt;}
.y234_c00001{bottom:391.733333pt;}
.y8c4_c00001{bottom:392.000000pt;}
.ye47_c00001{bottom:392.266667pt;}
.y261_c00001{bottom:392.666667pt;}
.yf5f_c00001{bottom:392.933333pt;}
.ycd5_c00001{bottom:393.333333pt;}
.y5a8_c00001{bottom:393.600000pt;}
.yaa4_c00001{bottom:393.733333pt;}
.y9a4_c00001{bottom:393.866667pt;}
.y57b_c00001{bottom:394.000000pt;}
.ycc5_c00001{bottom:394.266667pt;}
.y46a_c00001{bottom:394.533333pt;}
.y397_c00001{bottom:394.666667pt;}
.y7b7_c00001{bottom:394.933333pt;}
.y28_c00001{bottom:395.200000pt;}
.y16b_c00001{bottom:395.466667pt;}
.y5e_c00001{bottom:395.866667pt;}
.yd50_c00001{bottom:396.133333pt;}
.y884_c00001{bottom:396.400000pt;}
.y6a5_c00001{bottom:396.533333pt;}
.y86b_c00001{bottom:396.800000pt;}
.y6f3_c00001{bottom:396.933333pt;}
.y4b3_c00001{bottom:397.066667pt;}
.y19f_c00001{bottom:397.200000pt;}
.y689_c00001{bottom:397.466667pt;}
.y2c4_c00001{bottom:397.600000pt;}
.y105_c00001{bottom:397.733333pt;}
.y9bf_c00001{bottom:397.866667pt;}
.y995_c00001{bottom:398.000000pt;}
.ycd_c00001{bottom:398.133333pt;}
.y99b_c00001{bottom:398.400000pt;}
.y839_c00001{bottom:398.666667pt;}
.y74a_c00001{bottom:399.066667pt;}
.y52f_c00001{bottom:399.200000pt;}
.y1020_c00001{bottom:399.333333pt;}
.y9a_c00001{bottom:399.466667pt;}
.y13c_c00001{bottom:399.733333pt;}
.y36f_c00001{bottom:400.000000pt;}
.y556_c00001{bottom:400.266667pt;}
.yee8_c00001{bottom:400.400000pt;}
.y41c_c00001{bottom:400.533333pt;}
.y6c6_c00001{bottom:400.666667pt;}
.y5f2_c00001{bottom:400.933333pt;}
.y299_c00001{bottom:401.066667pt;}
.yae0_c00001{bottom:401.200000pt;}
.y48e_c00001{bottom:401.333333pt;}
.y76b_c00001{bottom:401.600000pt;}
.yaf8_c00001{bottom:401.866667pt;}
.yb14_c00001{bottom:402.000000pt;}
.y500_c00001{bottom:402.266667pt;}
.yf01_c00001{bottom:402.400000pt;}
.y445_c00001{bottom:402.533333pt;}
.y3f5_c00001{bottom:402.666667pt;}
.y100a_c00001{bottom:402.933333pt;}
.y63d_c00001{bottom:403.333333pt;}
.yb66_c00001{bottom:403.466667pt;}
.yb56_c00001{bottom:403.866667pt;}
.yead_c00001{bottom:404.000000pt;}
.yc92_c00001{bottom:404.133333pt;}
.yb69_c00001{bottom:404.266667pt;}
.y8e8_c00001{bottom:404.400000pt;}
.ya24_c00001{bottom:404.533333pt;}
.y233_c00001{bottom:404.800000pt;}
.ya34_c00001{bottom:405.066667pt;}
.y66b_c00001{bottom:405.466667pt;}
.y9eb_c00001{bottom:405.733333pt;}
.yfa2_c00001{bottom:405.866667pt;}
.yfc0_c00001{bottom:406.133333pt;}
.yaa3_c00001{bottom:406.266667pt;}
.ycc9_c00001{bottom:406.400000pt;}
.y954_c00001{bottom:406.533333pt;}
.ya8c_c00001{bottom:406.666667pt;}
.yab4_c00001{bottom:406.800000pt;}
.y57a_c00001{bottom:407.066667pt;}
.y5a7_c00001{bottom:407.333333pt;}
.y469_c00001{bottom:407.600000pt;}
.y27_c00001{bottom:407.733333pt;}
.yabe_c00001{bottom:408.000000pt;}
.y16a_c00001{bottom:408.266667pt;}
.y5d_c00001{bottom:408.666667pt;}
.y1d6_c00001{bottom:408.933333pt;}
.y90e_c00001{bottom:409.200000pt;}
.y9b2_c00001{bottom:409.333333pt;}
.y4b2_c00001{bottom:409.600000pt;}
.y883_c00001{bottom:409.866667pt;}
.y6f2_c00001{bottom:410.000000pt;}
.ydaf_c00001{bottom:410.133333pt;}
.y19e_c00001{bottom:410.266667pt;}
.y7f5_c00001{bottom:410.400000pt;}
.y104_c00001{bottom:410.533333pt;}
.y2c3_c00001{bottom:410.666667pt;}
.yf7a_c00001{bottom:410.800000pt;}
.y9be_c00001{bottom:410.933333pt;}
.y99a_c00001{bottom:411.200000pt;}
.y838_c00001{bottom:411.466667pt;}
.y85a_c00001{bottom:411.600000pt;}
.ycc_c00001{bottom:411.733333pt;}
.y97c_c00001{bottom:411.866667pt;}
.y52e_c00001{bottom:412.000000pt;}
.y749_c00001{bottom:412.133333pt;}
.y99_c00001{bottom:412.266667pt;}
.y13b_c00001{bottom:412.533333pt;}
.y33c_c00001{bottom:412.800000pt;}
.yc46_c00001{bottom:413.066667pt;}
.y6c5_c00001{bottom:413.200000pt;}
.y555_c00001{bottom:413.333333pt;}
.y89a_c00001{bottom:413.466667pt;}
.y298_c00001{bottom:413.600000pt;}
.y36e_c00001{bottom:413.733333pt;}
.y5d2_c00001{bottom:413.866667pt;}
.y5f1_c00001{bottom:414.000000pt;}
.y310_c00001{bottom:414.133333pt;}
.y76a_c00001{bottom:414.400000pt;}
.ye5a_c00001{bottom:414.666667pt;}
.yb13_c00001{bottom:414.800000pt;}
.yaf7_c00001{bottom:414.933333pt;}
.yefe_c00001{bottom:415.066667pt;}
.y4dc_c00001{bottom:415.333333pt;}
.yf00_c00001{bottom:415.466667pt;}
.yf90_c00001{bottom:415.600000pt;}
.y3f4_c00001{bottom:415.733333pt;}
.yca2_c00001{bottom:416.000000pt;}
.y817_c00001{bottom:416.133333pt;}
.y63c_c00001{bottom:416.400000pt;}
.yb65_c00001{bottom:416.666667pt;}
.y201_c00001{bottom:416.933333pt;}
.yb68_c00001{bottom:417.066667pt;}
.y8e7_c00001{bottom:417.200000pt;}
.y232_c00001{bottom:417.333333pt;}
.y8c3_c00001{bottom:417.600000pt;}
.ya33_c00001{bottom:417.866667pt;}
.ye8c_c00001{bottom:418.000000pt;}
.ya4a_c00001{bottom:418.133333pt;}
.ye90_c00001{bottom:418.266667pt;}
.y260_c00001{bottom:418.533333pt;}
.yfdb_c00001{bottom:418.933333pt;}
.yaa2_c00001{bottom:419.333333pt;}
.y5a6_c00001{bottom:419.466667pt;}
.yab3_c00001{bottom:419.600000pt;}
.ycc4_c00001{bottom:419.866667pt;}
.y579_c00001{bottom:420.133333pt;}
.y396_c00001{bottom:420.266667pt;}
.y7b6_c00001{bottom:420.533333pt;}
.y468_c00001{bottom:420.666667pt;}
.y26_c00001{bottom:420.800000pt;}
.y169_c00001{bottom:421.066667pt;}
.y1d5_c00001{bottom:421.466667pt;}
.yb91_c00001{bottom:421.733333pt;}
.y5c_c00001{bottom:421.866667pt;}
.y7d1_c00001{bottom:422.133333pt;}
.y90d_c00001{bottom:422.266667pt;}
.y4b1_c00001{bottom:422.400000pt;}
.y6a4_c00001{bottom:422.666667pt;}
.y6f1_c00001{bottom:422.800000pt;}
.y19d_c00001{bottom:423.066667pt;}
.y7f4_c00001{bottom:423.200000pt;}
.y103_c00001{bottom:423.333333pt;}
.y9bd_c00001{bottom:423.466667pt;}
.y2c2_c00001{bottom:423.733333pt;}
.y999_c00001{bottom:424.000000pt;}
.ydbf_c00001{bottom:424.133333pt;}
.y837_c00001{bottom:424.266667pt;}
.ycb_c00001{bottom:424.533333pt;}
.y859_c00001{bottom:424.666667pt;}
.y33b_c00001{bottom:424.933333pt;}
.y98_c00001{bottom:425.066667pt;}
.y748_c00001{bottom:425.200000pt;}
.y97b_c00001{bottom:425.333333pt;}
.y13a_c00001{bottom:425.600000pt;}
.y36d_c00001{bottom:425.866667pt;}
.y6c4_c00001{bottom:426.000000pt;}
.y41b_c00001{bottom:426.133333pt;}
.yfba_c00001{bottom:426.266667pt;}
.y97a_c00001{bottom:426.400000pt;}
.yb9b_c00001{bottom:426.533333pt;}
.y297_c00001{bottom:426.666667pt;}
.y48d_c00001{bottom:426.800000pt;}
.y30f_c00001{bottom:426.933333pt;}
.y5f0_c00001{bottom:427.066667pt;}
.y78e_c00001{bottom:427.200000pt;}
.yd16_c00001{bottom:427.466667pt;}
.yaf6_c00001{bottom:427.733333pt;}
.yb12_c00001{bottom:427.866667pt;}
.y444_c00001{bottom:428.133333pt;}
.y4db_c00001{bottom:428.266667pt;}
.y3f3_c00001{bottom:428.533333pt;}
.yfda_c00001{bottom:429.066667pt;}
.y816_c00001{bottom:429.200000pt;}
.y63b_c00001{bottom:429.466667pt;}
.yc9a_c00001{bottom:429.600000pt;}
.y200_c00001{bottom:429.733333pt;}
.yea2_c00001{bottom:429.866667pt;}
.yd6e_c00001{bottom:430.000000pt;}
.ya23_c00001{bottom:430.133333pt;}
.y8e6_c00001{bottom:430.266667pt;}
.ya41_c00001{bottom:430.400000pt;}
.y4ff_c00001{bottom:430.666667pt;}
.y231_c00001{bottom:430.800000pt;}
.y1060_c00001{bottom:430.933333pt;}
.ye8b_c00001{bottom:431.066667pt;}
.y1009_c00001{bottom:431.333333pt;}
.y103a_c00001{bottom:431.600000pt;}
.y1033_c00001{bottom:431.733333pt;}
.y104c_c00001{bottom:432.000000pt;}
.yaa1_c00001{bottom:432.133333pt;}
.yf80_c00001{bottom:432.266667pt;}
.yab2_c00001{bottom:432.400000pt;}
.y578_c00001{bottom:432.666667pt;}
.y9a3_c00001{bottom:432.933333pt;}
.y395_c00001{bottom:433.066667pt;}
.y467_c00001{bottom:433.200000pt;}
.y7b5_c00001{bottom:433.333333pt;}
.yabd_c00001{bottom:433.600000pt;}
.yb8b_c00001{bottom:433.733333pt;}
.y1d4_c00001{bottom:433.866667pt;}
.ycf3_c00001{bottom:434.000000pt;}
.y90c_c00001{bottom:434.133333pt;}
.y168_c00001{bottom:434.266667pt;}
.y3c0_c00001{bottom:434.666667pt;}
.y5b_c00001{bottom:434.933333pt;}
.y727_c00001{bottom:435.200000pt;}
.yd4f_c00001{bottom:435.466667pt;}
.y6f0_c00001{bottom:435.600000pt;}
.y6a3_c00001{bottom:435.733333pt;}
.y102_c00001{bottom:435.866667pt;}
.y7f3_c00001{bottom:436.000000pt;}
.y19c_c00001{bottom:436.133333pt;}
.y2c1_c00001{bottom:436.533333pt;}
.y9b9_c00001{bottom:436.666667pt;}
.y61e_c00001{bottom:436.800000pt;}
.y998_c00001{bottom:437.066667pt;}
.y836_c00001{bottom:437.200000pt;}
.y858_c00001{bottom:437.466667pt;}
.yca_c00001{bottom:437.600000pt;}
.ya00_c00001{bottom:437.733333pt;}
.y97_c00001{bottom:437.866667pt;}
.y25_c00001{bottom:438.133333pt;}
.y747_c00001{bottom:438.266667pt;}
.y139_c00001{bottom:438.400000pt;}
.y48c_c00001{bottom:438.666667pt;}
.y6c3_c00001{bottom:438.800000pt;}
.y5d1_c00001{bottom:438.933333pt;}
.y41a_c00001{bottom:439.200000pt;}
.yc45_c00001{bottom:439.333333pt;}
.y296_c00001{bottom:439.466667pt;}
.y96a_c00001{bottom:439.733333pt;}
.y36c_c00001{bottom:439.866667pt;}
.y30e_c00001{bottom:440.000000pt;}
.y769_c00001{bottom:440.266667pt;}
.yb11_c00001{bottom:440.400000pt;}
.ye59_c00001{bottom:440.666667pt;}
.ybed_c00001{bottom:440.800000pt;}
.y443_c00001{bottom:440.933333pt;}
.ybe6_c00001{bottom:441.066667pt;}
.ydcb_c00001{bottom:441.200000pt;}
.y3f2_c00001{bottom:441.333333pt;}
.yb2a_c00001{bottom:441.600000pt;}
.yf27_c00001{bottom:441.866667pt;}
.y63a_c00001{bottom:442.266667pt;}
.y1ff_c00001{bottom:442.533333pt;}
.yc99_c00001{bottom:442.666667pt;}
.yd62_c00001{bottom:442.800000pt;}
.yc91_c00001{bottom:442.933333pt;}
.yd6d_c00001{bottom:443.066667pt;}
.ya22_c00001{bottom:443.200000pt;}
.y230_c00001{bottom:443.333333pt;}
.ya32_c00001{bottom:443.466667pt;}
.y8c2_c00001{bottom:443.600000pt;}
.ya40_c00001{bottom:443.866667pt;}
.ye8f_c00001{bottom:444.133333pt;}
.y25f_c00001{bottom:444.533333pt;}
.y1012_c00001{bottom:444.800000pt;}
.yaa0_c00001{bottom:445.200000pt;}
.y577_c00001{bottom:445.466667pt;}
.yded_c00001{bottom:445.600000pt;}
.y5a5_c00001{bottom:445.733333pt;}
.y394_c00001{bottom:445.866667pt;}
.y953_c00001{bottom:446.133333pt;}
.ydf5_c00001{bottom:446.266667pt;}
.y7b4_c00001{bottom:446.400000pt;}
.y1d3_c00001{bottom:446.666667pt;}
.y167_c00001{bottom:447.066667pt;}
.yb8a_c00001{bottom:447.200000pt;}
.y5a_c00001{bottom:447.333333pt;}
.y3bf_c00001{bottom:447.733333pt;}
.y7d0_c00001{bottom:448.000000pt;}
.y726_c00001{bottom:448.266667pt;}
.y6ef_c00001{bottom:448.400000pt;}
.ydae_c00001{bottom:448.533333pt;}
.y101_c00001{bottom:448.666667pt;}
.y6a2_c00001{bottom:448.800000pt;}
.y605_c00001{bottom:448.933333pt;}
.y7f2_c00001{bottom:449.066667pt;}
.y19b_c00001{bottom:449.200000pt;}
.y2e5_c00001{bottom:449.333333pt;}
.y9b8_c00001{bottom:449.466667pt;}
.y2c0_c00001{bottom:449.600000pt;}
.yfd7_c00001{bottom:449.866667pt;}
.y835_c00001{bottom:450.000000pt;}
.yefd_c00001{bottom:450.133333pt;}
.ydbe_c00001{bottom:450.266667pt;}
.yc9_c00001{bottom:450.400000pt;}
.y138_c00001{bottom:450.533333pt;}
.y1022_c00001{bottom:450.666667pt;}
.y96_c00001{bottom:450.933333pt;}
.y52d_c00001{bottom:451.200000pt;}
.y746_c00001{bottom:451.333333pt;}
.y554_c00001{bottom:451.466667pt;}
.y1056_c00001{bottom:451.600000pt;}
.y6c2_c00001{bottom:451.866667pt;}
.yc44_c00001{bottom:452.133333pt;}
.y419_c00001{bottom:452.266667pt;}
.y36b_c00001{bottom:452.400000pt;}
.y295_c00001{bottom:452.533333pt;}
.y925_c00001{bottom:452.666667pt;}
.y30d_c00001{bottom:452.800000pt;}
.y5ef_c00001{bottom:452.933333pt;}
.y768_c00001{bottom:453.066667pt;}
.yb10_c00001{bottom:453.200000pt;}
.ybec_c00001{bottom:453.600000pt;}
.y4da_c00001{bottom:453.733333pt;}
.yc6c_c00001{bottom:453.866667pt;}
.yd30_c00001{bottom:454.000000pt;}
.y442_c00001{bottom:454.133333pt;}
.y3f1_c00001{bottom:454.266667pt;}
.yb29_c00001{bottom:454.400000pt;}
.yf26_c00001{bottom:454.666667pt;}
.y639_c00001{bottom:454.800000pt;}
.yc70_c00001{bottom:454.933333pt;}
.y815_c00001{bottom:455.066667pt;}
.yece_c00001{bottom:455.200000pt;}
.y4fe_c00001{bottom:455.333333pt;}
.yc75_c00001{bottom:455.466667pt;}
.y1fe_c00001{bottom:455.733333pt;}
.yd61_c00001{bottom:455.866667pt;}
.ya21_c00001{bottom:456.000000pt;}
.y8e5_c00001{bottom:456.133333pt;}
.ya31_c00001{bottom:456.266667pt;}
.y8c1_c00001{bottom:456.400000pt;}
.y997_c00001{bottom:456.666667pt;}
.ye26_c00001{bottom:456.800000pt;}
.ye8a_c00001{bottom:456.933333pt;}
.y22f_c00001{bottom:457.066667pt;}
.yfb9_c00001{bottom:457.200000pt;}
.y25e_c00001{bottom:457.333333pt;}
.y952_c00001{bottom:457.600000pt;}
.y66a_c00001{bottom:458.000000pt;}
.ya9f_c00001{bottom:458.266667pt;}
.ydec_c00001{bottom:458.400000pt;}
.y576_c00001{bottom:458.533333pt;}
.ycc3_c00001{bottom:458.800000pt;}
.y393_c00001{bottom:458.933333pt;}
.ydf4_c00001{bottom:459.066667pt;}
.y9a2_c00001{bottom:459.200000pt;}
.y166_c00001{bottom:459.466667pt;}
.y5a4_c00001{bottom:459.600000pt;}
.y1d2_c00001{bottom:459.866667pt;}
.y939_c00001{bottom:460.133333pt;}
.y725_c00001{bottom:460.266667pt;}
.yf7f_c00001{bottom:460.533333pt;}
.y59_c00001{bottom:460.800000pt;}
.y100_c00001{bottom:461.066667pt;}
.y6ee_c00001{bottom:461.200000pt;}
.y4b0_c00001{bottom:461.466667pt;}
.ydad_c00001{bottom:461.600000pt;}
.y604_c00001{bottom:461.733333pt;}
.y6a1_c00001{bottom:461.866667pt;}
.y19a_c00001{bottom:462.000000pt;}
.y2bf_c00001{bottom:462.133333pt;}
.y2e4_c00001{bottom:462.400000pt;}
.y9b7_c00001{bottom:462.533333pt;}
.y9bc_c00001{bottom:462.666667pt;}
.y834_c00001{bottom:463.066667pt;}
.y857_c00001{bottom:463.333333pt;}
.y95_c00001{bottom:463.466667pt;}
.ye6b_c00001{bottom:463.600000pt;}
.y9ff_c00001{bottom:463.733333pt;}
.y33a_c00001{bottom:464.000000pt;}
.y745_c00001{bottom:464.133333pt;}
.y137_c00001{bottom:464.266667pt;}
.y6c1_c00001{bottom:464.666667pt;}
.y36a_c00001{bottom:464.933333pt;}
.y294_c00001{bottom:465.066667pt;}
.y418_c00001{bottom:465.333333pt;}
.y5ee_c00001{bottom:465.466667pt;}
.y30c_c00001{bottom:465.600000pt;}
.yd2e_c00001{bottom:465.733333pt;}
.y78d_c00001{bottom:465.866667pt;}
.yadf_c00001{bottom:466.000000pt;}
.y924_c00001{bottom:466.133333pt;}
.yaf5_c00001{bottom:466.266667pt;}
.ybeb_c00001{bottom:466.400000pt;}
.y767_c00001{bottom:466.533333pt;}
.ybe2_c00001{bottom:466.800000pt;}
.ybe5_c00001{bottom:466.933333pt;}
.y3f0_c00001{bottom:467.066667pt;}
.y441_c00001{bottom:467.200000pt;}
.yb28_c00001{bottom:467.466667pt;}
.yf3a_c00001{bottom:467.600000pt;}
.yf25_c00001{bottom:467.733333pt;}
.y638_c00001{bottom:467.866667pt;}
.yc6f_c00001{bottom:468.000000pt;}
.y814_c00001{bottom:468.133333pt;}
.yecd_c00001{bottom:468.266667pt;}
.yd79_c00001{bottom:468.400000pt;}
.yc74_c00001{bottom:468.533333pt;}
.yd6c_c00001{bottom:468.666667pt;}
.y1fd_c00001{bottom:468.800000pt;}
.y8e4_c00001{bottom:468.933333pt;}
.ya3f_c00001{bottom:469.066667pt;}
.ye11_c00001{bottom:469.200000pt;}
.ya30_c00001{bottom:469.333333pt;}
.y8c0_c00001{bottom:469.466667pt;}
.ye89_c00001{bottom:469.733333pt;}
.y22e_c00001{bottom:469.866667pt;}
.y25d_c00001{bottom:470.133333pt;}
.yb55_c00001{bottom:470.400000pt;}
.yfd6_c00001{bottom:470.666667pt;}
.y669_c00001{bottom:470.800000pt;}
.ye3d_c00001{bottom:471.066667pt;}
.y575_c00001{bottom:471.333333pt;}
.y5a3_c00001{bottom:471.466667pt;}
.ycc2_c00001{bottom:471.600000pt;}
.y24_c00001{bottom:471.733333pt;}
.ydf3_c00001{bottom:471.866667pt;}
.ydf6_c00001{bottom:472.000000pt;}
.yf42_c00001{bottom:472.133333pt;}
.y165_c00001{bottom:472.266667pt;}
.y1d1_c00001{bottom:472.666667pt;}
.y58_c00001{bottom:472.933333pt;}
.y3be_c00001{bottom:473.333333pt;}
.y86a_c00001{bottom:473.866667pt;}
.y90b_c00001{bottom:474.000000pt;}
.yff_c00001{bottom:474.266667pt;}
.y9e3_c00001{bottom:474.400000pt;}
.y4af_c00001{bottom:474.533333pt;}
.y6a0_c00001{bottom:474.666667pt;}
.y199_c00001{bottom:474.800000pt;}
.y603_c00001{bottom:474.933333pt;}
.yc32_c00001{bottom:475.066667pt;}
.y2be_c00001{bottom:475.200000pt;}
.y9bb_c00001{bottom:475.466667pt;}
.y9b6_c00001{bottom:475.600000pt;}
.ybc7_c00001{bottom:475.866667pt;}
.y833_c00001{bottom:476.133333pt;}
.y856_c00001{bottom:476.400000pt;}
.y94_c00001{bottom:476.533333pt;}
.y553_c00001{bottom:476.800000pt;}
.ye78_c00001{bottom:476.933333pt;}
.y136_c00001{bottom:477.066667pt;}
.y52c_c00001{bottom:477.200000pt;}
.y339_c00001{bottom:477.466667pt;}
.y5d0_c00001{bottom:477.733333pt;}
.y293_c00001{bottom:477.866667pt;}
.yc43_c00001{bottom:478.000000pt;}
.y6d9_c00001{bottom:478.133333pt;}
.y30b_c00001{bottom:478.400000pt;}
.y5ed_c00001{bottom:478.533333pt;}
.y369_c00001{bottom:478.666667pt;}
.yade_c00001{bottom:478.800000pt;}
.yd14_c00001{bottom:479.066667pt;}
.ybea_c00001{bottom:479.200000pt;}
.yb9a_c00001{bottom:479.333333pt;}
.yaf4_c00001{bottom:479.466667pt;}
.y766_c00001{bottom:479.600000pt;}
.yd2f_c00001{bottom:479.733333pt;}
.y4d9_c00001{bottom:480.000000pt;}
.y3ef_c00001{bottom:480.133333pt;}
.y440_c00001{bottom:480.266667pt;}
.ydd6_c00001{bottom:480.400000pt;}
.yb27_c00001{bottom:480.533333pt;}
.ybef_c00001{bottom:480.666667pt;}
.yc6e_c00001{bottom:480.800000pt;}
.y637_c00001{bottom:480.933333pt;}
.y7b3_c00001{bottom:481.066667pt;}
.yca1_c00001{bottom:481.200000pt;}
.yc98_c00001{bottom:481.333333pt;}
.yd6b_c00001{bottom:481.466667pt;}
.y1fc_c00001{bottom:481.600000pt;}
.y4fd_c00001{bottom:481.733333pt;}
.ya3e_c00001{bottom:481.866667pt;}
.y22d_c00001{bottom:482.000000pt;}
.ye1a_c00001{bottom:482.133333pt;}
.ya49_c00001{bottom:482.266667pt;}
.ya2f_c00001{bottom:482.400000pt;}
.ya20_c00001{bottom:482.533333pt;}
.y25c_c00001{bottom:482.666667pt;}
.y1050_c00001{bottom:482.800000pt;}
.ye93_c00001{bottom:482.933333pt;}
.yc8c_c00001{bottom:483.200000pt;}
.yf53_c00001{bottom:483.466667pt;}
.y668_c00001{bottom:483.866667pt;}
.ye3c_c00001{bottom:484.133333pt;}
.y5a2_c00001{bottom:484.266667pt;}
.ycc1_c00001{bottom:484.400000pt;}
.y574_c00001{bottom:484.533333pt;}
.y392_c00001{bottom:484.800000pt;}
.ydf2_c00001{bottom:484.933333pt;}
.ye3b_c00001{bottom:485.066667pt;}
.y23_c00001{bottom:485.466667pt;}
.y938_c00001{bottom:485.733333pt;}
.y1d0_c00001{bottom:486.133333pt;}
.yb89_c00001{bottom:486.400000pt;}
.y57_c00001{bottom:486.666667pt;}
.y3bd_c00001{bottom:486.800000pt;}
.yb90_c00001{bottom:486.933333pt;}
.y7cf_c00001{bottom:487.066667pt;}
.yfe_c00001{bottom:487.333333pt;}
.y69f_c00001{bottom:487.466667pt;}
.y4ae_c00001{bottom:487.733333pt;}
.ydac_c00001{bottom:487.866667pt;}
.y602_c00001{bottom:488.000000pt;}
.y688_c00001{bottom:488.133333pt;}
.y198_c00001{bottom:488.266667pt;}
.y9b5_c00001{bottom:488.666667pt;}
.ydbd_c00001{bottom:489.066667pt;}
.y855_c00001{bottom:489.200000pt;}
.yc8_c00001{bottom:489.333333pt;}
.y135_c00001{bottom:489.600000pt;}
.y93_c00001{bottom:489.733333pt;}
.y9fe_c00001{bottom:489.866667pt;}
.y52b_c00001{bottom:490.000000pt;}
.yf7d_c00001{bottom:490.266667pt;}
.y552_c00001{bottom:490.533333pt;}
.y292_c00001{bottom:490.933333pt;}
.y30a_c00001{bottom:491.200000pt;}
.y368_c00001{bottom:491.466667pt;}
.y5ec_c00001{bottom:491.600000pt;}
.yadd_c00001{bottom:491.866667pt;}
.yd2d_c00001{bottom:492.266667pt;}
.y765_c00001{bottom:492.400000pt;}
.yaf3_c00001{bottom:492.533333pt;}
.ybe1_c00001{bottom:492.666667pt;}
.yc6b_c00001{bottom:492.800000pt;}
.y3ee_c00001{bottom:492.933333pt;}
.y43f_c00001{bottom:493.066667pt;}
.y1032_c00001{bottom:493.333333pt;}
.ybee_c00001{bottom:493.466667pt;}
.y4fc_c00001{bottom:493.600000pt;}
.y636_c00001{bottom:493.733333pt;}
.yc6d_c00001{bottom:493.866667pt;}
.yd78_c00001{bottom:494.000000pt;}
.y7b2_c00001{bottom:494.133333pt;}
.yecc_c00001{bottom:494.266667pt;}
.y1fb_c00001{bottom:494.400000pt;}
.yc97_c00001{bottom:494.533333pt;}
.ya1f_c00001{bottom:494.666667pt;}
.ya48_c00001{bottom:494.800000pt;}
.y8e3_c00001{bottom:495.066667pt;}
.ye19_c00001{bottom:495.200000pt;}
.ye10_c00001{bottom:495.333333pt;}
.ya2e_c00001{bottom:495.466667pt;}
.y22c_c00001{bottom:495.733333pt;}
.ye92_c00001{bottom:495.866667pt;}
.ye84_c00001{bottom:496.000000pt;}
.ye25_c00001{bottom:496.133333pt;}
.yc8b_c00001{bottom:496.266667pt;}
.y667_c00001{bottom:496.400000pt;}
.yd9e_c00001{bottom:496.666667pt;}
.yf4d_c00001{bottom:496.933333pt;}
.y951_c00001{bottom:497.066667pt;}
.ycc8_c00001{bottom:497.333333pt;}
.y391_c00001{bottom:497.600000pt;}
.ydf1_c00001{bottom:497.733333pt;}
.ycc0_c00001{bottom:497.866667pt;}
.y5a1_c00001{bottom:498.000000pt;}
.yfa8_c00001{bottom:498.133333pt;}
.y22_c00001{bottom:498.266667pt;}
.y164_c00001{bottom:498.533333pt;}
.yfb8_c00001{bottom:498.800000pt;}
.y1cf_c00001{bottom:498.933333pt;}
.y724_c00001{bottom:499.200000pt;}
.y7ce_c00001{bottom:499.600000pt;}
.y3bc_c00001{bottom:499.866667pt;}
.yb8f_c00001{bottom:500.000000pt;}
.yfd_c00001{bottom:500.133333pt;}
.yc3e_c00001{bottom:500.266667pt;}
.y9e1_c00001{bottom:500.400000pt;}
.y69e_c00001{bottom:500.533333pt;}
.y61d_c00001{bottom:500.800000pt;}
.y7f1_c00001{bottom:500.933333pt;}
.y197_c00001{bottom:501.066667pt;}
.y687_c00001{bottom:501.200000pt;}
.ydab_c00001{bottom:501.333333pt;}
.y2bd_c00001{bottom:501.466667pt;}
.yb97_c00001{bottom:501.733333pt;}
.y832_c00001{bottom:501.866667pt;}
.y854_c00001{bottom:502.000000pt;}
.yc7_c00001{bottom:502.133333pt;}
.y134_c00001{bottom:502.400000pt;}
.y92_c00001{bottom:502.533333pt;}
.y338_c00001{bottom:502.666667pt;}
.ye77_c00001{bottom:502.800000pt;}
.y52a_c00001{bottom:503.066667pt;}
.y48b_c00001{bottom:503.333333pt;}
.y9ba_c00001{bottom:503.600000pt;}
.y6c0_c00001{bottom:503.733333pt;}
.y5cf_c00001{bottom:503.866667pt;}
.y6d8_c00001{bottom:504.000000pt;}
.yd11_c00001{bottom:504.266667pt;}
.y309_c00001{bottom:504.400000pt;}
.yd13_c00001{bottom:504.666667pt;}
.yb0f_c00001{bottom:504.933333pt;}
.y923_c00001{bottom:505.066667pt;}
.ybe9_c00001{bottom:505.200000pt;}
.yadc_c00001{bottom:505.333333pt;}
.y764_c00001{bottom:505.466667pt;}
.y417_c00001{bottom:505.600000pt;}
.y3ed_c00001{bottom:505.733333pt;}
.y43e_c00001{bottom:505.866667pt;}
.y4d8_c00001{bottom:506.000000pt;}
.yb26_c00001{bottom:506.133333pt;}
.ydd3_c00001{bottom:506.266667pt;}
.y1fa_c00001{bottom:506.533333pt;}
.y813_c00001{bottom:506.666667pt;}
.yf2d_c00001{bottom:506.800000pt;}
.y7b1_c00001{bottom:506.933333pt;}
.yd77_c00001{bottom:507.066667pt;}
.yc73_c00001{bottom:507.200000pt;}
.yd6a_c00001{bottom:507.333333pt;}
.ya3d_c00001{bottom:507.466667pt;}
.ya47_c00001{bottom:507.600000pt;}
.ya1e_c00001{bottom:507.733333pt;}
.y8e2_c00001{bottom:507.866667pt;}
.ye18_c00001{bottom:508.000000pt;}
.yc90_c00001{bottom:508.133333pt;}
.y4fb_c00001{bottom:508.266667pt;}
.yf9b_c00001{bottom:508.400000pt;}
.y22b_c00001{bottom:508.533333pt;}
.ye8e_c00001{bottom:508.800000pt;}
.ye24_c00001{bottom:508.933333pt;}
.y291_c00001{bottom:509.066667pt;}
.yc8a_c00001{bottom:509.333333pt;}
.yd9d_c00001{bottom:509.466667pt;}
.yf4c_c00001{bottom:509.733333pt;}
.y950_c00001{bottom:510.133333pt;}
.y573_c00001{bottom:510.400000pt;}
.y5a0_c00001{bottom:510.533333pt;}
.y25b_c00001{bottom:510.666667pt;}
.ydf0_c00001{bottom:510.800000pt;}
.y466_c00001{bottom:511.066667pt;}
.y21_c00001{bottom:511.333333pt;}
.y163_c00001{bottom:511.600000pt;}
.y1ce_c00001{bottom:511.733333pt;}
.y56_c00001{bottom:512.000000pt;}
.yb88_c00001{bottom:512.266667pt;}
.y4ad_c00001{bottom:512.666667pt;}
.yfc_c00001{bottom:512.933333pt;}
.yb8e_c00001{bottom:513.066667pt;}
.y196_c00001{bottom:513.200000pt;}
.y708_c00001{bottom:513.333333pt;}
.y2bc_c00001{bottom:513.600000pt;}
.y7f0_c00001{bottom:513.733333pt;}
.y9e4_c00001{bottom:513.866667pt;}
.y1046_c00001{bottom:514.000000pt;}
.y2e3_c00001{bottom:514.266667pt;}
.y61c_c00001{bottom:514.400000pt;}
.y853_c00001{bottom:514.533333pt;}
.y133_c00001{bottom:514.933333pt;}
.y9b4_c00001{bottom:515.200000pt;}
.y91_c00001{bottom:515.333333pt;}
.y367_c00001{bottom:515.466667pt;}
.ye76_c00001{bottom:515.600000pt;}
.ye6a_c00001{bottom:515.733333pt;}
.y337_c00001{bottom:515.866667pt;}
.y529_c00001{bottom:516.133333pt;}
.y6bf_c00001{bottom:516.533333pt;}
.y5ce_c00001{bottom:516.666667pt;}
.y48a_c00001{bottom:516.800000pt;}
.y5eb_c00001{bottom:516.933333pt;}
.y969_c00001{bottom:517.066667pt;}
.y308_c00001{bottom:517.200000pt;}
.yadb_c00001{bottom:517.466667pt;}
.yaf2_c00001{bottom:517.733333pt;}
.y922_c00001{bottom:517.866667pt;}
.yd2c_c00001{bottom:518.133333pt;}
.y763_c00001{bottom:518.266667pt;}
.ybe0_c00001{bottom:518.533333pt;}
.y416_c00001{bottom:518.666667pt;}
.y3ec_c00001{bottom:518.800000pt;}
.y43d_c00001{bottom:518.933333pt;}
.y4d7_c00001{bottom:519.066667pt;}
.ydd2_c00001{bottom:519.333333pt;}
.yf2c_c00001{bottom:519.600000pt;}
.y1f9_c00001{bottom:519.733333pt;}
.y635_c00001{bottom:520.000000pt;}
.yd76_c00001{bottom:520.133333pt;}
.yc72_c00001{bottom:520.266667pt;}
.y4fa_c00001{bottom:520.400000pt;}
.ya3c_c00001{bottom:520.533333pt;}
.yc8f_c00001{bottom:520.666667pt;}
.ya1d_c00001{bottom:520.800000pt;}
.yd9b_c00001{bottom:520.933333pt;}
.ye17_c00001{bottom:521.066667pt;}
.ye0f_c00001{bottom:521.200000pt;}
.y8e1_c00001{bottom:521.333333pt;}
.y22a_c00001{bottom:521.600000pt;}
.ye91_c00001{bottom:521.733333pt;}
.yff8_c00001{bottom:521.866667pt;}
.ye23_c00001{bottom:522.000000pt;}
.yc89_c00001{bottom:522.133333pt;}
.ye83_c00001{bottom:522.266667pt;}
.yd9c_c00001{bottom:522.533333pt;}
.y94f_c00001{bottom:522.933333pt;}
.y572_c00001{bottom:523.200000pt;}
.y59f_c00001{bottom:523.333333pt;}
.y390_c00001{bottom:523.466667pt;}
.ycd4_c00001{bottom:523.600000pt;}
.y20_c00001{bottom:523.866667pt;}
.y55_c00001{bottom:524.133333pt;}
.y465_c00001{bottom:524.266667pt;}
.y1cd_c00001{bottom:524.533333pt;}
.y9a1_c00001{bottom:524.800000pt;}
.yb87_c00001{bottom:525.066667pt;}
.y3bb_c00001{bottom:525.466667pt;}
.yc17_c00001{bottom:525.733333pt;}
.yb8d_c00001{bottom:525.866667pt;}
.yf0c_c00001{bottom:526.000000pt;}
.yfb_c00001{bottom:526.133333pt;}
.y744_c00001{bottom:526.266667pt;}
.y707_c00001{bottom:526.400000pt;}
.yf0d_c00001{bottom:526.533333pt;}
.y195_c00001{bottom:526.666667pt;}
.y601_c00001{bottom:526.800000pt;}
.ydaa_c00001{bottom:526.933333pt;}
.y2bb_c00001{bottom:527.066667pt;}
.y61b_c00001{bottom:527.200000pt;}
.y132_c00001{bottom:527.333333pt;}
.yb96_c00001{bottom:527.733333pt;}
.y9b3_c00001{bottom:528.000000pt;}
.yc6_c00001{bottom:528.133333pt;}
.ye71_c00001{bottom:528.266667pt;}
.y90_c00001{bottom:528.400000pt;}
.ye69_c00001{bottom:528.533333pt;}
.y551_c00001{bottom:528.666667pt;}
.y336_c00001{bottom:528.933333pt;}
.y366_c00001{bottom:529.333333pt;}
.y25a_c00001{bottom:529.600000pt;}
.y5cd_c00001{bottom:529.733333pt;}
.y968_c00001{bottom:529.866667pt;}
.yd12_c00001{bottom:530.000000pt;}
.y307_c00001{bottom:530.266667pt;}
.yb0e_c00001{bottom:530.533333pt;}
.y921_c00001{bottom:530.666667pt;}
.yb99_c00001{bottom:530.800000pt;}
.yd15_c00001{bottom:530.933333pt;}
.y762_c00001{bottom:531.066667pt;}
.yada_c00001{bottom:531.200000pt;}
.y990_c00001{bottom:531.333333pt;}
.yb25_c00001{bottom:531.466667pt;}
.y3eb_c00001{bottom:531.600000pt;}
.y993_c00001{bottom:531.733333pt;}
.y991_c00001{bottom:531.866667pt;}
.ybe4_c00001{bottom:532.000000pt;}
.y4d6_c00001{bottom:532.133333pt;}
.y4f9_c00001{bottom:532.533333pt;}
.yf2b_c00001{bottom:532.666667pt;}
.y812_c00001{bottom:532.800000pt;}
.yd75_c00001{bottom:532.933333pt;}
.yc71_c00001{bottom:533.066667pt;}
.ya46_c00001{bottom:533.200000pt;}
.yec0_c00001{bottom:533.333333pt;}
.yc96_c00001{bottom:533.466667pt;}
.ya3b_c00001{bottom:533.600000pt;}
.yc8e_c00001{bottom:533.733333pt;}
.y8e0_c00001{bottom:533.866667pt;}
.ye0e_c00001{bottom:534.000000pt;}
.ya2d_c00001{bottom:534.133333pt;}
.y666_c00001{bottom:534.400000pt;}
.y229_c00001{bottom:534.666667pt;}
.ye22_c00001{bottom:534.800000pt;}
.ye88_c00001{bottom:535.066667pt;}
.yc88_c00001{bottom:535.200000pt;}
.yf4b_c00001{bottom:535.333333pt;}
.yd9a_c00001{bottom:535.733333pt;}
.yf5e_c00001{bottom:535.866667pt;}
.y94e_c00001{bottom:536.000000pt;}
.y1f_c00001{bottom:536.266667pt;}
.y59e_c00001{bottom:536.400000pt;}
.ydef_c00001{bottom:536.666667pt;}
.y162_c00001{bottom:536.933333pt;}
.yf8f_c00001{bottom:537.200000pt;}
.y1cc_c00001{bottom:537.333333pt;}
.y54_c00001{bottom:537.600000pt;}
.y634_c00001{bottom:537.866667pt;}
.y937_c00001{bottom:538.000000pt;}
.y7cd_c00001{bottom:538.266667pt;}
.y3ba_c00001{bottom:538.533333pt;}
.y4ac_c00001{bottom:538.933333pt;}
.y194_c00001{bottom:539.200000pt;}
.y706_c00001{bottom:539.466667pt;}
.yc31_c00001{bottom:539.600000pt;}
.y2e2_c00001{bottom:539.866667pt;}
.y61a_c00001{bottom:540.000000pt;}
.y131_c00001{bottom:540.133333pt;}
.y852_c00001{bottom:540.533333pt;}
.y743_c00001{bottom:540.666667pt;}
.yb95_c00001{bottom:540.800000pt;}
.ye7b_c00001{bottom:541.066667pt;}
.y8f_c00001{bottom:541.200000pt;}
.y365_c00001{bottom:541.466667pt;}
.ye68_c00001{bottom:541.600000pt;}
.y335_c00001{bottom:541.733333pt;}
.yfc7_c00001{bottom:542.000000pt;}
.yc42_c00001{bottom:542.133333pt;}
.y528_c00001{bottom:542.400000pt;}
.y5cc_c00001{bottom:542.533333pt;}
.y899_c00001{bottom:542.666667pt;}
.y290_c00001{bottom:542.800000pt;}
.y306_c00001{bottom:543.066667pt;}
.y78c_c00001{bottom:543.333333pt;}
.yb0d_c00001{bottom:543.600000pt;}
.y920_c00001{bottom:543.733333pt;}
.yad9_c00001{bottom:544.000000pt;}
.y761_c00001{bottom:544.133333pt;}
.yaf1_c00001{bottom:544.266667pt;}
.ybdf_c00001{bottom:544.400000pt;}
.ybe8_c00001{bottom:544.533333pt;}
.y3ea_c00001{bottom:544.666667pt;}
.y98f_c00001{bottom:544.800000pt;}
.y1031_c00001{bottom:544.933333pt;}
.ydd1_c00001{bottom:545.200000pt;}
.ye58_c00001{bottom:545.333333pt;}
.yf2a_c00001{bottom:545.466667pt;}
.y7b0_c00001{bottom:545.600000pt;}
.yca0_c00001{bottom:545.733333pt;}
.yf39_c00001{bottom:546.000000pt;}
.ya45_c00001{bottom:546.266667pt;}
.ya3a_c00001{bottom:546.400000pt;}
.yfa_c00001{bottom:546.533333pt;}
.y8df_c00001{bottom:546.666667pt;}
.y9a0_c00001{bottom:546.933333pt;}
.yb4a_c00001{bottom:547.066667pt;}
.y228_c00001{bottom:547.200000pt;}
.ycef_c00001{bottom:547.333333pt;}
.y4f8_c00001{bottom:547.466667pt;}
.y8bf_c00001{bottom:547.600000pt;}
.y665_c00001{bottom:547.866667pt;}
.yc87_c00001{bottom:548.000000pt;}
.yd99_c00001{bottom:548.133333pt;}
.ye82_c00001{bottom:548.266667pt;}
.yf4a_c00001{bottom:548.400000pt;}
.ye44_c00001{bottom:548.533333pt;}
.y94d_c00001{bottom:548.800000pt;}
.y59d_c00001{bottom:548.933333pt;}
.y571_c00001{bottom:549.066667pt;}
.y38f_c00001{bottom:549.200000pt;}
.ycce_c00001{bottom:549.466667pt;}
.y1e_c00001{bottom:549.733333pt;}
.y161_c00001{bottom:550.133333pt;}
.y1cb_c00001{bottom:550.400000pt;}
.yfb3_c00001{bottom:550.666667pt;}
.y936_c00001{bottom:550.800000pt;}
.yc29_c00001{bottom:551.066667pt;}
.y831_c00001{bottom:551.333333pt;}
.y3b9_c00001{bottom:551.466667pt;}
.y6ed_c00001{bottom:551.733333pt;}
.y69d_c00001{bottom:552.000000pt;}
.y723_c00001{bottom:552.266667pt;}
.y705_c00001{bottom:552.400000pt;}
.y193_c00001{bottom:552.666667pt;}
.y619_c00001{bottom:552.800000pt;}
.y2ba_c00001{bottom:552.933333pt;}
.y130_c00001{bottom:553.066667pt;}
.yfcf_c00001{bottom:553.200000pt;}
.y851_c00001{bottom:553.333333pt;}
.y742_c00001{bottom:553.466667pt;}
.yb94_c00001{bottom:553.600000pt;}
.ybc6_c00001{bottom:553.866667pt;}
.y8e_c00001{bottom:554.000000pt;}
.y364_c00001{bottom:554.266667pt;}
.ye70_c00001{bottom:554.400000pt;}
.y334_c00001{bottom:554.533333pt;}
.ye67_c00001{bottom:554.666667pt;}
.ye75_c00001{bottom:554.800000pt;}
.y550_c00001{bottom:554.933333pt;}
.y6be_c00001{bottom:555.200000pt;}
.y527_c00001{bottom:555.466667pt;}
.y489_c00001{bottom:555.600000pt;}
.y28f_c00001{bottom:555.866667pt;}
.y305_c00001{bottom:556.133333pt;}
.yb98_c00001{bottom:556.400000pt;}
.y78b_c00001{bottom:556.533333pt;}
.yb0c_c00001{bottom:556.666667pt;}
.yad8_c00001{bottom:556.800000pt;}
.y760_c00001{bottom:556.933333pt;}
.yaf0_c00001{bottom:557.066667pt;}
.yb24_c00001{bottom:557.333333pt;}
.ybde_c00001{bottom:557.466667pt;}
.y3e9_c00001{bottom:557.600000pt;}
.y994_c00001{bottom:557.733333pt;}
.y98e_c00001{bottom:557.866667pt;}
.y4d5_c00001{bottom:558.133333pt;}
.yc9f_c00001{bottom:558.266667pt;}
.ya70_c00001{bottom:558.400000pt;}
.yf29_c00001{bottom:558.533333pt;}
.y811_c00001{bottom:558.666667pt;}
.yd74_c00001{bottom:558.800000pt;}
.y4f7_c00001{bottom:559.066667pt;}
.yd7f_c00001{bottom:559.200000pt;}
.y967_c00001{bottom:559.333333pt;}
.ya39_c00001{bottom:559.466667pt;}
.yd60_c00001{bottom:559.600000pt;}
.y8de_c00001{bottom:559.733333pt;}
.yb49_c00001{bottom:559.866667pt;}
.yb3a_c00001{bottom:560.000000pt;}
.ya2c_c00001{bottom:560.133333pt;}
.ye0a_c00001{bottom:560.266667pt;}
.yce4_c00001{bottom:560.400000pt;}
.yf6b_c00001{bottom:560.533333pt;}
.y227_c00001{bottom:560.666667pt;}
.yc86_c00001{bottom:560.800000pt;}
.y1f8_c00001{bottom:560.933333pt;}
.yd98_c00001{bottom:561.333333pt;}
.yf49_c00001{bottom:561.466667pt;}
.yfbf_c00001{bottom:561.600000pt;}
.yf5d_c00001{bottom:561.733333pt;}
.y570_c00001{bottom:561.866667pt;}
.y59c_c00001{bottom:562.000000pt;}
.y1d_c00001{bottom:562.266667pt;}
.ycd3_c00001{bottom:562.400000pt;}
.ydee_c00001{bottom:562.533333pt;}
.yf41_c00001{bottom:562.800000pt;}
.y464_c00001{bottom:562.933333pt;}
.y53_c00001{bottom:563.200000pt;}
.y1ca_c00001{bottom:563.466667pt;}
.y830_c00001{bottom:563.866667pt;}
.y90a_c00001{bottom:564.133333pt;}
.y3b8_c00001{bottom:564.266667pt;}
.y6ec_c00001{bottom:564.533333pt;}
.y7cc_c00001{bottom:564.800000pt;}
.y69c_c00001{bottom:565.066667pt;}
.yb8c_c00001{bottom:565.200000pt;}
.y43c_c00001{bottom:565.466667pt;}
.y7ef_c00001{bottom:565.600000pt;}
.y192_c00001{bottom:565.733333pt;}
.y12f_c00001{bottom:565.866667pt;}
.y741_c00001{bottom:566.000000pt;}
.ybc5_c00001{bottom:566.133333pt;}
.y850_c00001{bottom:566.400000pt;}
.yc5_c00001{bottom:566.800000pt;}
.y8d_c00001{bottom:567.066667pt;}
.ye66_c00001{bottom:567.200000pt;}
.yf9_c00001{bottom:567.333333pt;}
.ye6f_c00001{bottom:567.466667pt;}
.ye74_c00001{bottom:567.600000pt;}
.y363_c00001{bottom:567.733333pt;}
.y54f_c00001{bottom:568.000000pt;}
.y488_c00001{bottom:568.133333pt;}
.y526_c00001{bottom:568.266667pt;}
.y5cb_c00001{bottom:568.666667pt;}
.y333_c00001{bottom:568.933333pt;}
.y28e_c00001{bottom:569.066667pt;}
.y78a_c00001{bottom:569.333333pt;}
.y304_c00001{bottom:569.600000pt;}
.y75f_c00001{bottom:569.733333pt;}
.yad7_c00001{bottom:569.866667pt;}
.yb23_c00001{bottom:570.133333pt;}
.y9e2_c00001{bottom:570.266667pt;}
.y3e8_c00001{bottom:570.400000pt;}
.y4d4_c00001{bottom:570.533333pt;}
.ybe3_c00001{bottom:570.666667pt;}
.y4f6_c00001{bottom:570.800000pt;}
.y98d_c00001{bottom:570.933333pt;}
.ydd0_c00001{bottom:571.066667pt;}
.y7af_c00001{bottom:571.200000pt;}
.ya6b_c00001{bottom:571.333333pt;}
.y810_c00001{bottom:571.466667pt;}
.yd73_c00001{bottom:571.600000pt;}
.yc9e_c00001{bottom:571.733333pt;}
.ya44_c00001{bottom:571.866667pt;}
.yc95_c00001{bottom:572.133333pt;}
.yd7e_c00001{bottom:572.266667pt;}
.yd5f_c00001{bottom:572.400000pt;}
.ya1c_c00001{bottom:572.533333pt;}
.yf31_c00001{bottom:572.666667pt;}
.y226_c00001{bottom:572.800000pt;}
.ya2b_c00001{bottom:572.933333pt;}
.yb54_c00001{bottom:573.066667pt;}
.ycee_c00001{bottom:573.200000pt;}
.ye09_c00001{bottom:573.333333pt;}
.y664_c00001{bottom:573.466667pt;}
.ye21_c00001{bottom:573.600000pt;}
.y8be_c00001{bottom:573.733333pt;}
.y1f7_c00001{bottom:574.000000pt;}
.yfd9_c00001{bottom:574.133333pt;}
.yc85_c00001{bottom:574.266667pt;}
.yd10_c00001{bottom:574.400000pt;}
.yf48_c00001{bottom:574.533333pt;}
.y101f_c00001{bottom:574.666667pt;}
.y59b_c00001{bottom:574.800000pt;}
.y56f_c00001{bottom:574.933333pt;}
.y38e_c00001{bottom:575.066667pt;}
.ycd2_c00001{bottom:575.200000pt;}
.y52_c00001{bottom:575.333333pt;}
.yccd_c00001{bottom:575.466667pt;}
.y160_c00001{bottom:575.600000pt;}
.y1c_c00001{bottom:575.733333pt;}
.ye3a_c00001{bottom:576.000000pt;}
.y463_c00001{bottom:576.266667pt;}
.y1c9_c00001{bottom:576.533333pt;}
.y633_c00001{bottom:576.666667pt;}
.yf8a_c00001{bottom:576.933333pt;}
.y3b7_c00001{bottom:577.333333pt;}
.y722_c00001{bottom:577.600000pt;}
.y740_c00001{bottom:577.866667pt;}
.y69b_c00001{bottom:578.133333pt;}
.y704_c00001{bottom:578.266667pt;}
.y191_c00001{bottom:578.533333pt;}
.y7ee_c00001{bottom:578.666667pt;}
.y12e_c00001{bottom:578.933333pt;}
.yc3b_c00001{bottom:579.066667pt;}
.y2b9_c00001{bottom:579.200000pt;}
.yc4_c00001{bottom:579.333333pt;}
.yb93_c00001{bottom:579.466667pt;}
.y8c_c00001{bottom:579.600000pt;}
.yee7_c00001{bottom:579.866667pt;}
.ye7a_c00001{bottom:580.133333pt;}
.y4ab_c00001{bottom:580.400000pt;}
.ye6e_c00001{bottom:580.533333pt;}
.ye65_c00001{bottom:580.666667pt;}
.y332_c00001{bottom:580.800000pt;}
.y487_c00001{bottom:580.933333pt;}
.y525_c00001{bottom:581.066667pt;}
.y415_c00001{bottom:581.466667pt;}
.y5ca_c00001{bottom:581.733333pt;}
.y28d_c00001{bottom:581.866667pt;}
.y898_c00001{bottom:582.000000pt;}
.y303_c00001{bottom:582.133333pt;}
.y789_c00001{bottom:582.400000pt;}
.y75e_c00001{bottom:582.533333pt;}
.yf8e_c00001{bottom:582.666667pt;}
.yad6_c00001{bottom:582.933333pt;}
.y1055_c00001{bottom:583.066667pt;}
.ya8b_c00001{bottom:583.200000pt;}
.yfc6_c00001{bottom:583.333333pt;}
.y3e7_c00001{bottom:583.466667pt;}
.y992_c00001{bottom:583.733333pt;}
.y4d3_c00001{bottom:584.000000pt;}
.ydcf_c00001{bottom:584.133333pt;}
.y4f5_c00001{bottom:584.266667pt;}
.ya6a_c00001{bottom:584.400000pt;}
.yc9d_c00001{bottom:584.533333pt;}
.yd72_c00001{bottom:584.666667pt;}
.yd69_c00001{bottom:584.933333pt;}
.yd7d_c00001{bottom:585.066667pt;}
.yc94_c00001{bottom:585.200000pt;}
.ya1b_c00001{bottom:585.333333pt;}
.yf30_c00001{bottom:585.466667pt;}
.yd96_c00001{bottom:585.600000pt;}
.yb48_c00001{bottom:585.733333pt;}
.yb39_c00001{bottom:585.866667pt;}
.ya2a_c00001{bottom:586.000000pt;}
.ye08_c00001{bottom:586.133333pt;}
.y225_c00001{bottom:586.266667pt;}
.yf6d_c00001{bottom:586.400000pt;}
.yce3_c00001{bottom:586.533333pt;}
.ye20_c00001{bottom:586.666667pt;}
.y8bd_c00001{bottom:586.800000pt;}
.y1f6_c00001{bottom:587.066667pt;}
.yd97_c00001{bottom:587.200000pt;}
.yc84_c00001{bottom:587.333333pt;}
.yf5c_c00001{bottom:587.600000pt;}
.y59a_c00001{bottom:587.866667pt;}
.y56e_c00001{bottom:588.000000pt;}
.y38d_c00001{bottom:588.133333pt;}
.yccc_c00001{bottom:588.266667pt;}
.y15f_c00001{bottom:588.400000pt;}
.y1b_c00001{bottom:588.533333pt;}
.yf40_c00001{bottom:588.666667pt;}
.y51_c00001{bottom:588.800000pt;}
.y1c8_c00001{bottom:589.066667pt;}
.y935_c00001{bottom:589.200000pt;}
.y82f_c00001{bottom:589.466667pt;}
.y3b6_c00001{bottom:590.133333pt;}
.y7cb_c00001{bottom:590.400000pt;}
.y190_c00001{bottom:590.666667pt;}
.y721_c00001{bottom:591.066667pt;}
.y703_c00001{bottom:591.333333pt;}
.y686_c00001{bottom:591.466667pt;}
.y84f_c00001{bottom:591.600000pt;}
.y12d_c00001{bottom:591.733333pt;}
.yc3a_c00001{bottom:591.866667pt;}
.y2b8_c00001{bottom:592.000000pt;}
.yc3_c00001{bottom:592.133333pt;}
.yb92_c00001{bottom:592.266667pt;}
.y8b_c00001{bottom:592.400000pt;}
.y73f_c00001{bottom:592.666667pt;}
.y259_c00001{bottom:592.933333pt;}
.ye6d_c00001{bottom:593.333333pt;}
.ye64_c00001{bottom:593.466667pt;}
.y362_c00001{bottom:593.600000pt;}
.y4aa_c00001{bottom:593.866667pt;}
.y486_c00001{bottom:594.000000pt;}
.y524_c00001{bottom:594.133333pt;}
.y8a8_c00001{bottom:594.266667pt;}
.y5c9_c00001{bottom:594.533333pt;}
.y28c_c00001{bottom:594.666667pt;}
.y414_c00001{bottom:594.933333pt;}
.y897_c00001{bottom:595.066667pt;}
.y788_c00001{bottom:595.200000pt;}
.y302_c00001{bottom:595.333333pt;}
.y101b_c00001{bottom:595.466667pt;}
.y1054_c00001{bottom:595.733333pt;}
.ya8a_c00001{bottom:596.000000pt;}
.y1039_c00001{bottom:596.133333pt;}
.y91f_c00001{bottom:596.266667pt;}
.yf8_c00001{bottom:596.400000pt;}
.y3e6_c00001{bottom:596.533333pt;}
.y7ae_c00001{bottom:596.800000pt;}
.y4d2_c00001{bottom:597.066667pt;}
.y979_c00001{bottom:597.200000pt;}
.y98c_c00001{bottom:597.466667pt;}
.yc9c_c00001{bottom:597.600000pt;}
.y80f_c00001{bottom:597.733333pt;}
.yd7c_c00001{bottom:597.866667pt;}
.yc93_c00001{bottom:598.000000pt;}
.ya38_c00001{bottom:598.133333pt;}
.yf2f_c00001{bottom:598.266667pt;}
.yb38_c00001{bottom:598.400000pt;}
.y663_c00001{bottom:598.666667pt;}
.y224_c00001{bottom:598.800000pt;}
.ye16_c00001{bottom:598.933333pt;}
.ya29_c00001{bottom:599.066667pt;}
.ye07_c00001{bottom:599.200000pt;}
.y4f4_c00001{bottom:599.333333pt;}
.yf6a_c00001{bottom:599.466667pt;}
.yce2_c00001{bottom:599.600000pt;}
.ye1f_c00001{bottom:599.733333pt;}
.y1f5_c00001{bottom:599.866667pt;}
.yd95_c00001{bottom:600.000000pt;}
.yf52_c00001{bottom:600.266667pt;}
.yc83_c00001{bottom:600.400000pt;}
.y599_c00001{bottom:600.666667pt;}
.y94c_c00001{bottom:600.800000pt;}
.y38c_c00001{bottom:600.933333pt;}
.y56d_c00001{bottom:601.066667pt;}
.y1a_c00001{bottom:601.333333pt;}
.yf3f_c00001{bottom:601.466667pt;}
.y50_c00001{bottom:601.600000pt;}
.y15e_c00001{bottom:601.866667pt;}
.y462_c00001{bottom:602.133333pt;}
.y1c7_c00001{bottom:602.266667pt;}
.y43b_c00001{bottom:602.533333pt;}
.yfbe_c00001{bottom:602.933333pt;}
.y3b5_c00001{bottom:603.200000pt;}
.yff2_c00001{bottom:603.466667pt;}
.y882_c00001{bottom:603.733333pt;}
.y720_c00001{bottom:603.866667pt;}
.y18f_c00001{bottom:604.133333pt;}
.y69a_c00001{bottom:604.400000pt;}
.y2b7_c00001{bottom:604.533333pt;}
.y2e1_c00001{bottom:604.666667pt;}
.y12c_c00001{bottom:604.800000pt;}
.yc2_c00001{bottom:604.933333pt;}
.y84e_c00001{bottom:605.066667pt;}
.y8a_c00001{bottom:605.466667pt;}
.y632_c00001{bottom:605.733333pt;}
.y1053_c00001{bottom:606.000000pt;}
.yee6_c00001{bottom:606.133333pt;}
.y258_c00001{bottom:606.400000pt;}
.ye63_c00001{bottom:606.533333pt;}
.y361_c00001{bottom:606.666667pt;}
.y331_c00001{bottom:606.800000pt;}
.y523_c00001{bottom:606.933333pt;}
.y485_c00001{bottom:607.066667pt;}
.y9fd_c00001{bottom:607.200000pt;}
.y6bd_c00001{bottom:607.333333pt;}
.y5ea_c00001{bottom:607.466667pt;}
.y5c8_c00001{bottom:607.600000pt;}
.y28b_c00001{bottom:607.733333pt;}
.y896_c00001{bottom:607.866667pt;}
.y75d_c00001{bottom:608.133333pt;}
.y301_c00001{bottom:608.400000pt;}
.y787_c00001{bottom:608.533333pt;}
.ya89_c00001{bottom:608.800000pt;}
.ye87_c00001{bottom:608.933333pt;}
.yaef_c00001{bottom:609.066667pt;}
.ybe7_c00001{bottom:609.333333pt;}
.y3e5_c00001{bottom:609.600000pt;}
.yf7_c00001{bottom:609.866667pt;}
.y9f9_c00001{bottom:610.000000pt;}
.y80e_c00001{bottom:610.266667pt;}
.y4d1_c00001{bottom:610.400000pt;}
.ya69_c00001{bottom:610.533333pt;}
.yc9b_c00001{bottom:610.666667pt;}
.yd68_c00001{bottom:610.800000pt;}
.ya37_c00001{bottom:610.933333pt;}
.yd5e_c00001{bottom:611.066667pt;}
.y4f3_c00001{bottom:611.200000pt;}
.yb37_c00001{bottom:611.333333pt;}
.yb53_c00001{bottom:611.466667pt;}
.ya1a_c00001{bottom:611.600000pt;}
.ye15_c00001{bottom:611.733333pt;}
.y223_c00001{bottom:611.866667pt;}
.ye06_c00001{bottom:612.000000pt;}
.y662_c00001{bottom:612.133333pt;}
.y8dd_c00001{bottom:612.266667pt;}
.yce1_c00001{bottom:612.400000pt;}
.y978_c00001{bottom:612.533333pt;}
.y1f4_c00001{bottom:612.666667pt;}
.yfb2_c00001{bottom:612.800000pt;}
.y8bc_c00001{bottom:612.933333pt;}
.yb86_c00001{bottom:613.066667pt;}
.yc82_c00001{bottom:613.200000pt;}
.yf5b_c00001{bottom:613.466667pt;}
.y94b_c00001{bottom:613.600000pt;}
.y598_c00001{bottom:613.733333pt;}
.y19_c00001{bottom:614.133333pt;}
.y38b_c00001{bottom:614.400000pt;}
.yf3e_c00001{bottom:614.533333pt;}
.y4f_c00001{bottom:614.666667pt;}
.yff7_c00001{bottom:614.800000pt;}
.yef9_c00001{bottom:614.933333pt;}
.y1c6_c00001{bottom:615.066667pt;}
.y934_c00001{bottom:615.333333pt;}
.y7ca_c00001{bottom:615.600000pt;}
.y71f_c00001{bottom:615.733333pt;}
.y43a_c00001{bottom:615.866667pt;}
.y3b4_c00001{bottom:616.000000pt;}
.y881_c00001{bottom:616.266667pt;}
.y104f_c00001{bottom:616.400000pt;}
.y9d0_c00001{bottom:616.533333pt;}
.y18e_c00001{bottom:616.666667pt;}
.y699_c00001{bottom:616.933333pt;}
.y600_c00001{bottom:617.066667pt;}
.y2b6_c00001{bottom:617.333333pt;}
.y2e0_c00001{bottom:617.466667pt;}
.y12b_c00001{bottom:617.600000pt;}
.ybc3_c00001{bottom:617.866667pt;}
.yc1_c00001{bottom:618.000000pt;}
.y89_c00001{bottom:618.266667pt;}
.ybc4_c00001{bottom:618.533333pt;}
.y257_c00001{bottom:618.800000pt;}
.ye6c_c00001{bottom:619.200000pt;}
.ye62_c00001{bottom:619.333333pt;}
.y360_c00001{bottom:619.466667pt;}
.y330_c00001{bottom:619.600000pt;}
.y4a9_c00001{bottom:619.866667pt;}
.y522_c00001{bottom:620.000000pt;}
.y54e_c00001{bottom:620.133333pt;}
.y6d7_c00001{bottom:620.266667pt;}
.y6bc_c00001{bottom:620.400000pt;}
.y28a_c00001{bottom:620.533333pt;}
.y5c7_c00001{bottom:620.666667pt;}
.y786_c00001{bottom:621.066667pt;}
.y300_c00001{bottom:621.200000pt;}
.y91e_c00001{bottom:621.466667pt;}
.yde0_c00001{bottom:621.600000pt;}
.yf9a_c00001{bottom:621.733333pt;}
.ya88_c00001{bottom:621.866667pt;}
.y3e4_c00001{bottom:622.133333pt;}
.yc5f_c00001{bottom:622.266667pt;}
.yf6_c00001{bottom:622.400000pt;}
.ya79_c00001{bottom:622.666667pt;}
.ydd5_c00001{bottom:622.800000pt;}
.y7ad_c00001{bottom:623.066667pt;}
.y80d_c00001{bottom:623.333333pt;}
.y4d0_c00001{bottom:623.466667pt;}
.yd67_c00001{bottom:623.600000pt;}
.ya43_c00001{bottom:623.733333pt;}
.yd5d_c00001{bottom:623.866667pt;}
.ya36_c00001{bottom:624.000000pt;}
.yb36_c00001{bottom:624.133333pt;}
.y4f2_c00001{bottom:624.266667pt;}
.ya19_c00001{bottom:624.400000pt;}
.yf24_c00001{bottom:624.533333pt;}
.y222_c00001{bottom:624.666667pt;}
.ye14_c00001{bottom:624.800000pt;}
.yb3c_c00001{bottom:624.933333pt;}
.yb47_c00001{bottom:625.066667pt;}
.yce0_c00001{bottom:625.200000pt;}
.y661_c00001{bottom:625.333333pt;}
.y1f3_c00001{bottom:625.733333pt;}
.yfce_c00001{bottom:625.866667pt;}
.y966_c00001{bottom:626.133333pt;}
.yc81_c00001{bottom:626.266667pt;}
.y94a_c00001{bottom:626.400000pt;}
.y101a_c00001{bottom:626.533333pt;}
.yf51_c00001{bottom:626.666667pt;}
.y1045_c00001{bottom:626.800000pt;}
.y18_c00001{bottom:626.933333pt;}
.yccb_c00001{bottom:627.200000pt;}
.yf3d_c00001{bottom:627.333333pt;}
.y15d_c00001{bottom:627.466667pt;}
.y597_c00001{bottom:627.600000pt;}
.yef8_c00001{bottom:627.733333pt;}
.y4e_c00001{bottom:627.866667pt;}
.y977_c00001{bottom:628.000000pt;}
.y1c5_c00001{bottom:628.133333pt;}
.y439_c00001{bottom:628.666667pt;}
.y71e_c00001{bottom:628.800000pt;}
.y3b3_c00001{bottom:629.066667pt;}
.y8fe_c00001{bottom:629.200000pt;}
.y9d6_c00001{bottom:629.333333pt;}
.y18d_c00001{bottom:629.466667pt;}
.y880_c00001{bottom:629.600000pt;}
.yd4e_c00001{bottom:629.733333pt;}
.y9de_c00001{bottom:630.000000pt;}
.y5ff_c00001{bottom:630.133333pt;}
.y2b5_c00001{bottom:630.266667pt;}
.y12a_c00001{bottom:630.400000pt;}
.yc39_c00001{bottom:630.533333pt;}
.yb85_c00001{bottom:630.666667pt;}
.yc0_c00001{bottom:630.800000pt;}
.y2df_c00001{bottom:630.933333pt;}
.y84d_c00001{bottom:631.066667pt;}
.y88_c00001{bottom:631.333333pt;}
.y256_c00001{bottom:631.866667pt;}
.yf99_c00001{bottom:632.000000pt;}
.ye61_c00001{bottom:632.400000pt;}
.y35f_c00001{bottom:632.533333pt;}
.y32f_c00001{bottom:632.666667pt;}
.ye73_c00001{bottom:632.800000pt;}
.y4a8_c00001{bottom:632.933333pt;}
.y54d_c00001{bottom:633.200000pt;}
.y413_c00001{bottom:633.333333pt;}
.y521_c00001{bottom:633.466667pt;}
.yfb1_c00001{bottom:633.600000pt;}
.y785_c00001{bottom:633.866667pt;}
.y75c_c00001{bottom:634.000000pt;}
.y2ff_c00001{bottom:634.266667pt;}
.yddf_c00001{bottom:634.400000pt;}
.yad5_c00001{bottom:634.666667pt;}
.ya87_c00001{bottom:634.933333pt;}
.y3e3_c00001{bottom:635.200000pt;}
.yc5e_c00001{bottom:635.333333pt;}
.yf5_c00001{bottom:635.466667pt;}
.yc69_c00001{bottom:635.600000pt;}
.y7ac_c00001{bottom:635.866667pt;}
.ydce_c00001{bottom:636.000000pt;}
.y4f1_c00001{bottom:636.133333pt;}
.yb35_c00001{bottom:636.266667pt;}
.y80c_c00001{bottom:636.400000pt;}
.y4cf_c00001{bottom:636.533333pt;}
.y7ed_c00001{bottom:636.800000pt;}
.yd5c_c00001{bottom:636.933333pt;}
.ye57_c00001{bottom:637.066667pt;}
.ya18_c00001{bottom:637.200000pt;}
.yf23_c00001{bottom:637.333333pt;}
.ya28_c00001{bottom:637.466667pt;}
.y660_c00001{bottom:637.733333pt;}
.y221_c00001{bottom:637.866667pt;}
.ycdf_c00001{bottom:638.000000pt;}
.y8dc_c00001{bottom:638.133333pt;}
.yce8_c00001{bottom:638.266667pt;}
.y289_c00001{bottom:638.400000pt;}
.y1f2_c00001{bottom:638.533333pt;}
.y8bb_c00001{bottom:638.800000pt;}
.yf5a_c00001{bottom:639.333333pt;}
.y596_c00001{bottom:639.466667pt;}
.y17_c00001{bottom:640.000000pt;}
.y965_c00001{bottom:640.266667pt;}
.y38a_c00001{bottom:640.400000pt;}
.y15c_c00001{bottom:640.533333pt;}
.y933_c00001{bottom:640.666667pt;}
.yef6_c00001{bottom:640.800000pt;}
.y1c4_c00001{bottom:640.933333pt;}
.y869_c00001{bottom:641.600000pt;}
.y438_c00001{bottom:641.733333pt;}
.y3b2_c00001{bottom:641.866667pt;}
.y9d5_c00001{bottom:642.133333pt;}
.y71d_c00001{bottom:642.266667pt;}
.y18c_c00001{bottom:642.533333pt;}
.y87f_c00001{bottom:642.666667pt;}
.y9dd_c00001{bottom:642.800000pt;}
.y702_c00001{bottom:642.933333pt;}
.yc30_c00001{bottom:643.066667pt;}
.y685_c00001{bottom:643.200000pt;}
.y2b4_c00001{bottom:643.333333pt;}
.y129_c00001{bottom:643.466667pt;}
.y87_c00001{bottom:643.866667pt;}
.yc38_c00001{bottom:644.000000pt;}
.yfb7_c00001{bottom:644.133333pt;}
.y73e_c00001{bottom:644.266667pt;}
.ybdd_c00001{bottom:644.800000pt;}
.ye60_c00001{bottom:645.200000pt;}
.y255_c00001{bottom:645.333333pt;}
.y32e_c00001{bottom:645.466667pt;}
.y35e_c00001{bottom:645.600000pt;}
.y484_c00001{bottom:645.733333pt;}
.y4a7_c00001{bottom:645.866667pt;}
.y54c_c00001{bottom:646.000000pt;}
.y6d6_c00001{bottom:646.133333pt;}
.y412_c00001{bottom:646.266667pt;}
.y5e9_c00001{bottom:646.400000pt;}
.y5c6_c00001{bottom:646.533333pt;}
.yfd5_c00001{bottom:646.666667pt;}
.y784_c00001{bottom:646.933333pt;}
.y2fe_c00001{bottom:647.066667pt;}
.y91d_c00001{bottom:647.333333pt;}
.ydde_c00001{bottom:647.466667pt;}
.y9b0_c00001{bottom:647.600000pt;}
.yad4_c00001{bottom:647.733333pt;}
.y3e2_c00001{bottom:648.000000pt;}
.yc5d_c00001{bottom:648.133333pt;}
.yd28_c00001{bottom:648.266667pt;}
.y7ab_c00001{bottom:648.400000pt;}
.yf4_c00001{bottom:648.533333pt;}
.ya6f_c00001{bottom:648.666667pt;}
.ya68_c00001{bottom:648.933333pt;}
.ydcd_c00001{bottom:649.066667pt;}
.y80b_c00001{bottom:649.200000pt;}
.y4ce_c00001{bottom:649.333333pt;}
.ya42_c00001{bottom:649.600000pt;}
.yd5b_c00001{bottom:649.733333pt;}
.y7ec_c00001{bottom:649.866667pt;}
.yf75_c00001{bottom:650.000000pt;}
.yf22_c00001{bottom:650.133333pt;}
.ya17_c00001{bottom:650.266667pt;}
.yf38_c00001{bottom:650.400000pt;}
.yebf_c00001{bottom:650.533333pt;}
.yb52_c00001{bottom:650.666667pt;}
.y220_c00001{bottom:650.933333pt;}
.y1f1_c00001{bottom:651.066667pt;}
.y65f_c00001{bottom:651.200000pt;}
.y4f0_c00001{bottom:651.466667pt;}
.ye1e_c00001{bottom:651.600000pt;}
.y8ba_c00001{bottom:651.866667pt;}
.yf59_c00001{bottom:652.400000pt;}
.y595_c00001{bottom:652.533333pt;}
.yf7c_c00001{bottom:652.800000pt;}
.y16_c00001{bottom:653.066667pt;}
.yc28_c00001{bottom:653.200000pt;}
.y389_c00001{bottom:653.466667pt;}
.yef5_c00001{bottom:653.600000pt;}
.y461_c00001{bottom:653.733333pt;}
.yef7_c00001{bottom:653.866667pt;}
.y1c3_c00001{bottom:654.133333pt;}
.y98b_c00001{bottom:654.400000pt;}
.y6eb_c00001{bottom:654.666667pt;}
.y437_c00001{bottom:654.800000pt;}
.y71c_c00001{bottom:655.066667pt;}
.y9cf_c00001{bottom:655.200000pt;}
.y18b_c00001{bottom:655.333333pt;}
.y9dc_c00001{bottom:655.600000pt;}
.y87e_c00001{bottom:655.733333pt;}
.y618_c00001{bottom:656.000000pt;}
.y684_c00001{bottom:656.133333pt;}
.y2de_c00001{bottom:656.266667pt;}
.y128_c00001{bottom:656.400000pt;}
.yc37_c00001{bottom:656.533333pt;}
.ybf_c00001{bottom:656.666667pt;}
.y86_c00001{bottom:656.933333pt;}
.yfe8_c00001{bottom:657.200000pt;}
.y101e_c00001{bottom:657.333333pt;}
.y1019_c00001{bottom:657.600000pt;}
.y254_c00001{bottom:657.866667pt;}
.yd0e_c00001{bottom:658.000000pt;}
.y1044_c00001{bottom:658.133333pt;}
.ycbf_c00001{bottom:658.266667pt;}
.y32d_c00001{bottom:658.533333pt;}
.y35d_c00001{bottom:658.666667pt;}
.y54b_c00001{bottom:658.800000pt;}
.y6d5_c00001{bottom:658.933333pt;}
.y411_c00001{bottom:659.066667pt;}
.y8a7_c00001{bottom:659.200000pt;}
.y6bb_c00001{bottom:659.333333pt;}
.y5e8_c00001{bottom:659.466667pt;}
.y5c5_c00001{bottom:659.600000pt;}
.y75b_c00001{bottom:659.866667pt;}
.y783_c00001{bottom:660.000000pt;}
.y2fd_c00001{bottom:660.133333pt;}
.yddd_c00001{bottom:660.266667pt;}
.yb0b_c00001{bottom:660.533333pt;}
.yad3_c00001{bottom:660.800000pt;}
.ya86_c00001{bottom:660.933333pt;}
.yf3_c00001{bottom:661.066667pt;}
.y7aa_c00001{bottom:661.200000pt;}
.ya78_c00001{bottom:661.333333pt;}
.ya67_c00001{bottom:661.466667pt;}
.ydd4_c00001{bottom:661.600000pt;}
.y4cd_c00001{bottom:662.000000pt;}
.y9fc_c00001{bottom:662.133333pt;}
.y80a_c00001{bottom:662.266667pt;}
.y9f8_c00001{bottom:662.400000pt;}
.yd5a_c00001{bottom:662.533333pt;}
.y7eb_c00001{bottom:662.666667pt;}
.yea1_c00001{bottom:662.933333pt;}
.ye56_c00001{bottom:663.066667pt;}
.yf21_c00001{bottom:663.200000pt;}
.yf9e_c00001{bottom:663.333333pt;}
.ye0d_c00001{bottom:663.466667pt;}
.y8db_c00001{bottom:663.600000pt;}
.yb46_c00001{bottom:663.733333pt;}
.y1f0_c00001{bottom:663.866667pt;}
.y21f_c00001{bottom:664.000000pt;}
.ycde_c00001{bottom:664.133333pt;}
.y483_c00001{bottom:664.266667pt;}
.ye1d_c00001{bottom:664.400000pt;}
.y8b9_c00001{bottom:664.666667pt;}
.yf58_c00001{bottom:664.933333pt;}
.yf47_c00001{bottom:665.333333pt;}
.y594_c00001{bottom:665.600000pt;}
.y15_c00001{bottom:665.866667pt;}
.y388_c00001{bottom:666.266667pt;}
.y932_c00001{bottom:666.533333pt;}
.yef4_c00001{bottom:666.666667pt;}
.y82e_c00001{bottom:666.933333pt;}
.y1c2_c00001{bottom:667.200000pt;}
.y868_c00001{bottom:667.466667pt;}
.yb81_c00001{bottom:667.600000pt;}
.y6ea_c00001{bottom:667.733333pt;}
.y436_c00001{bottom:667.866667pt;}
.y7c9_c00001{bottom:668.133333pt;}
.y9ce_c00001{bottom:668.266667pt;}
.y1043_c00001{bottom:668.400000pt;}
.y87d_c00001{bottom:668.533333pt;}
.y9db_c00001{bottom:668.666667pt;}
.y701_c00001{bottom:668.800000pt;}
.y683_c00001{bottom:668.933333pt;}
.y2dd_c00001{bottom:669.066667pt;}
.y2b3_c00001{bottom:669.200000pt;}
.y85_c00001{bottom:669.466667pt;}
.yc36_c00001{bottom:669.600000pt;}
.y127_c00001{bottom:669.866667pt;}
.ybc2_c00001{bottom:670.133333pt;}
.y73d_c00001{bottom:670.266667pt;}
.y18a_c00001{bottom:670.400000pt;}
.yd05_c00001{bottom:670.666667pt;}
.yd0d_c00001{bottom:670.800000pt;}
.ye5f_c00001{bottom:671.066667pt;}
.y32c_c00001{bottom:671.333333pt;}
.y35c_c00001{bottom:671.466667pt;}
.y253_c00001{bottom:671.733333pt;}
.y410_c00001{bottom:671.866667pt;}
.y6d4_c00001{bottom:672.000000pt;}
.y520_c00001{bottom:672.133333pt;}
.y54a_c00001{bottom:672.266667pt;}
.y5c4_c00001{bottom:672.400000pt;}
.y288_c00001{bottom:672.666667pt;}
.y5e7_c00001{bottom:672.800000pt;}
.y2fc_c00001{bottom:673.200000pt;}
.yb0a_c00001{bottom:673.333333pt;}
.yb22_c00001{bottom:673.600000pt;}
.yc6a_c00001{bottom:673.733333pt;}
.y91c_c00001{bottom:673.866667pt;}
.ya85_c00001{bottom:674.000000pt;}
.y3e1_c00001{bottom:674.133333pt;}
.yc63_c00001{bottom:674.266667pt;}
.ya77_c00001{bottom:674.400000pt;}
.yf2_c00001{bottom:674.533333pt;}
.y7a9_c00001{bottom:674.666667pt;}
.y976_c00001{bottom:674.800000pt;}
.yfb0_c00001{bottom:674.933333pt;}
.y809_c00001{bottom:675.066667pt;}
.y9fb_c00001{bottom:675.200000pt;}
.yd71_c00001{bottom:675.333333pt;}
.y4cc_c00001{bottom:675.466667pt;}
.yd59_c00001{bottom:675.600000pt;}
.yf77_c00001{bottom:675.733333pt;}
.yb45_c00001{bottom:675.866667pt;}
.yea0_c00001{bottom:676.000000pt;}
.ye55_c00001{bottom:676.133333pt;}
.yf20_c00001{bottom:676.266667pt;}
.yebe_c00001{bottom:676.400000pt;}
.yb51_c00001{bottom:676.533333pt;}
.y65e_c00001{bottom:676.800000pt;}
.y1ef_c00001{bottom:676.933333pt;}
.y21e_c00001{bottom:677.066667pt;}
.ycdd_c00001{bottom:677.200000pt;}
.ye1c_c00001{bottom:677.466667pt;}
.y482_c00001{bottom:677.733333pt;}
.y8b8_c00001{bottom:678.133333pt;}
.y593_c00001{bottom:678.400000pt;}
.y4d_c00001{bottom:678.666667pt;}
.y14_c00001{bottom:678.800000pt;}
.yc25_c00001{bottom:679.066667pt;}
.y15b_c00001{bottom:679.200000pt;}
.y460_c00001{bottom:679.333333pt;}
.y387_c00001{bottom:679.466667pt;}
.yb7b_c00001{bottom:679.600000pt;}
.y82d_c00001{bottom:679.733333pt;}
.y1c1_c00001{bottom:680.000000pt;}
.y867_c00001{bottom:680.266667pt;}
.y8fd_c00001{bottom:680.400000pt;}
.y6e9_c00001{bottom:680.533333pt;}
.y435_c00001{bottom:680.666667pt;}
.y7c8_c00001{bottom:680.933333pt;}
.y9d4_c00001{bottom:681.066667pt;}
.y909_c00001{bottom:681.200000pt;}
.y9cd_c00001{bottom:681.333333pt;}
.y87c_c00001{bottom:681.600000pt;}
.y9da_c00001{bottom:681.733333pt;}
.y5fe_c00001{bottom:681.866667pt;}
.y682_c00001{bottom:682.000000pt;}
.y2dc_c00001{bottom:682.133333pt;}
.y84_c00001{bottom:682.266667pt;}
.ye80_c00001{bottom:682.400000pt;}
.y126_c00001{bottom:682.666667pt;}
.y84c_c00001{bottom:682.933333pt;}
.y3b1_c00001{bottom:683.466667pt;}
.yd04_c00001{bottom:683.600000pt;}
.y9b1_c00001{bottom:683.733333pt;}
.y252_c00001{bottom:683.866667pt;}
.ycbe_c00001{bottom:684.133333pt;}
.y35b_c00001{bottom:684.266667pt;}
.y6d3_c00001{bottom:684.533333pt;}
.y40f_c00001{bottom:684.666667pt;}
.y8a6_c00001{bottom:684.800000pt;}
.y6ba_c00001{bottom:684.933333pt;}
.y549_c00001{bottom:685.066667pt;}
.y51f_c00001{bottom:685.200000pt;}
.y32b_c00001{bottom:685.466667pt;}
.y782_c00001{bottom:685.600000pt;}
.y287_c00001{bottom:685.733333pt;}
.y5e6_c00001{bottom:685.866667pt;}
.y2fb_c00001{bottom:686.000000pt;}
.yddc_c00001{bottom:686.133333pt;}
.yad2_c00001{bottom:686.400000pt;}
.ya84_c00001{bottom:686.800000pt;}
.yaee_c00001{bottom:686.933333pt;}
.yc5c_c00001{bottom:687.066667pt;}
.y3e0_c00001{bottom:687.200000pt;}
.yf1_c00001{bottom:687.333333pt;}
.y7a8_c00001{bottom:687.466667pt;}
.y4cb_c00001{bottom:687.600000pt;}
.yfcd_c00001{bottom:688.000000pt;}
.y808_c00001{bottom:688.133333pt;}
.y7ea_c00001{bottom:688.266667pt;}
.yd70_c00001{bottom:688.400000pt;}
.y1030_c00001{bottom:688.533333pt;}
.yd58_c00001{bottom:688.666667pt;}
.yf76_c00001{bottom:688.800000pt;}
.y21d_c00001{bottom:688.933333pt;}
.ye9f_c00001{bottom:689.066667pt;}
.yebd_c00001{bottom:689.200000pt;}
.ye0c_c00001{bottom:689.333333pt;}
.yf37_c00001{bottom:689.466667pt;}
.yb50_c00001{bottom:689.600000pt;}
.y104b_c00001{bottom:689.733333pt;}
.y8da_c00001{bottom:689.866667pt;}
.y1ee_c00001{bottom:690.000000pt;}
.y975_c00001{bottom:690.133333pt;}
.ycdc_c00001{bottom:690.266667pt;}
.y8b7_c00001{bottom:690.533333pt;}
.y592_c00001{bottom:691.200000pt;}
.y4ef_c00001{bottom:691.333333pt;}
.yf57_c00001{bottom:691.466667pt;}
.y631_c00001{bottom:691.600000pt;}
.yf50_c00001{bottom:691.733333pt;}
.y13_c00001{bottom:691.866667pt;}
.y15a_c00001{bottom:692.000000pt;}
.y91b_c00001{bottom:692.133333pt;}
.yb7a_c00001{bottom:692.400000pt;}
.y386_c00001{bottom:692.533333pt;}
.y1c0_c00001{bottom:692.800000pt;}
.y82c_c00001{bottom:692.933333pt;}
.y866_c00001{bottom:693.066667pt;}
.y6e8_c00001{bottom:693.333333pt;}
.y434_c00001{bottom:693.466667pt;}
.y7c7_c00001{bottom:693.733333pt;}
.y9d3_c00001{bottom:693.866667pt;}
.y8fc_c00001{bottom:694.133333pt;}
.y5fd_c00001{bottom:694.400000pt;}
.y9cc_c00001{bottom:694.533333pt;}
.y700_c00001{bottom:694.666667pt;}
.y681_c00001{bottom:694.800000pt;}
.y2b2_c00001{bottom:695.066667pt;}
.y2db_c00001{bottom:695.200000pt;}
.y83_c00001{bottom:695.333333pt;}
.yc35_c00001{bottom:695.466667pt;}
.y125_c00001{bottom:695.733333pt;}
.y73c_c00001{bottom:695.866667pt;}
.yfb6_c00001{bottom:696.000000pt;}
.yd03_c00001{bottom:696.666667pt;}
.ye5e_c00001{bottom:696.933333pt;}
.y251_c00001{bottom:697.200000pt;}
.y35a_c00001{bottom:697.333333pt;}
.y32a_c00001{bottom:697.600000pt;}
.y4a6_c00001{bottom:697.733333pt;}
.y8a5_c00001{bottom:697.866667pt;}
.y51e_c00001{bottom:698.000000pt;}
.y548_c00001{bottom:698.133333pt;}
.y5c3_c00001{bottom:698.266667pt;}
.y781_c00001{bottom:698.400000pt;}
.y286_c00001{bottom:698.533333pt;}
.y5e5_c00001{bottom:698.666667pt;}
.yfd4_c00001{bottom:698.933333pt;}
.y102f_c00001{bottom:699.066667pt;}
.yddb_c00001{bottom:699.200000pt;}
.y2fa_c00001{bottom:699.466667pt;}
.ya83_c00001{bottom:699.600000pt;}
.yaed_c00001{bottom:699.733333pt;}
.yb21_c00001{bottom:699.866667pt;}
.yd2b_c00001{bottom:700.000000pt;}
.yc5b_c00001{bottom:700.133333pt;}
.y3df_c00001{bottom:700.266667pt;}
.ydca_c00001{bottom:700.400000pt;}
.y7a7_c00001{bottom:700.533333pt;}
.y9fa_c00001{bottom:700.800000pt;}
.y807_c00001{bottom:700.933333pt;}
.y4ca_c00001{bottom:701.066667pt;}
.yd6f_c00001{bottom:701.200000pt;}
.y7e9_c00001{bottom:701.466667pt;}
.yd57_c00001{bottom:701.600000pt;}
.ye54_c00001{bottom:701.733333pt;}
.ye9e_c00001{bottom:701.866667pt;}
.ye9b_c00001{bottom:702.000000pt;}
.yb44_c00001{bottom:702.133333pt;}
.yf79_c00001{bottom:702.266667pt;}
.ye0b_c00001{bottom:702.400000pt;}
.yf36_c00001{bottom:702.533333pt;}
.y21c_c00001{bottom:702.666667pt;}
.y1ed_c00001{bottom:702.800000pt;}
.y8d9_c00001{bottom:703.066667pt;}
.y8b6_c00001{bottom:703.333333pt;}
.y56c_c00001{bottom:703.733333pt;}
.yf46_c00001{bottom:704.000000pt;}
.y949_c00001{bottom:704.266667pt;}
.y630_c00001{bottom:704.400000pt;}
.y4c_c00001{bottom:704.666667pt;}
.yf4f_c00001{bottom:704.800000pt;}
.y12_c00001{bottom:704.933333pt;}
.y159_c00001{bottom:705.066667pt;}
.yf0_c00001{bottom:705.333333pt;}
.yb79_c00001{bottom:705.466667pt;}
.ye39_c00001{bottom:705.600000pt;}
.y4ee_c00001{bottom:705.733333pt;}
.y6e7_c00001{bottom:705.866667pt;}
.yfaf_c00001{bottom:706.000000pt;}
.y865_c00001{bottom:706.266667pt;}
.yb84_c00001{bottom:706.400000pt;}
.y433_c00001{bottom:706.533333pt;}
.yb80_c00001{bottom:706.666667pt;}
.y1bf_c00001{bottom:706.933333pt;}
.y87b_c00001{bottom:707.200000pt;}
.y9d2_c00001{bottom:707.333333pt;}
.y6ff_c00001{bottom:707.466667pt;}
.y9cb_c00001{bottom:707.600000pt;}
.y2da_c00001{bottom:707.733333pt;}
.y2b1_c00001{bottom:707.866667pt;}
.ybe_c00001{bottom:708.133333pt;}
.ye7f_c00001{bottom:708.266667pt;}
.y82_c00001{bottom:708.533333pt;}
.y105d_c00001{bottom:708.666667pt;}
.y84b_c00001{bottom:708.800000pt;}
.y73b_c00001{bottom:708.933333pt;}
.yfd3_c00001{bottom:709.066667pt;}
.yf7e_c00001{bottom:709.200000pt;}
.y102e_c00001{bottom:709.333333pt;}
.yd0c_c00001{bottom:709.466667pt;}
.y250_c00001{bottom:709.733333pt;}
.y40e_c00001{bottom:710.000000pt;}
.y359_c00001{bottom:710.133333pt;}
.y329_c00001{bottom:710.400000pt;}
.y4a5_c00001{bottom:710.533333pt;}
.ydeb_c00001{bottom:710.666667pt;}
.y51d_c00001{bottom:710.800000pt;}
.y547_c00001{bottom:710.933333pt;}
.y895_c00001{bottom:711.066667pt;}
.y75a_c00001{bottom:711.333333pt;}
.y5c2_c00001{bottom:711.466667pt;}
.y285_c00001{bottom:711.733333pt;}
.yb09_c00001{bottom:712.000000pt;}
.y2f9_c00001{bottom:712.266667pt;}
.ya82_c00001{bottom:712.400000pt;}
.yb20_c00001{bottom:712.666667pt;}
.y3de_c00001{bottom:712.800000pt;}
.yc5a_c00001{bottom:712.933333pt;}
.yad1_c00001{bottom:713.066667pt;}
.y45f_c00001{bottom:713.333333pt;}
.ydc9_c00001{bottom:713.466667pt;}
.y4c9_c00001{bottom:713.600000pt;}
.y806_c00001{bottom:713.733333pt;}
.y9f7_c00001{bottom:713.866667pt;}
.y7a6_c00001{bottom:714.000000pt;}
.yb34_c00001{bottom:714.133333pt;}
.y7e8_c00001{bottom:714.266667pt;}
.yd66_c00001{bottom:714.400000pt;}
.y98a_c00001{bottom:714.533333pt;}
.yd56_c00001{bottom:714.666667pt;}
.ye9a_c00001{bottom:714.800000pt;}
.yb43_c00001{bottom:714.933333pt;}
.yebc_c00001{bottom:715.066667pt;}
.yced_c00001{bottom:715.200000pt;}
.yf35_c00001{bottom:715.333333pt;}
.y21b_c00001{bottom:715.466667pt;}
.y1ec_c00001{bottom:715.600000pt;}
.y8d8_c00001{bottom:715.866667pt;}
.ye05_c00001{bottom:716.000000pt;}
.ye1b_c00001{bottom:716.133333pt;}
.y65d_c00001{bottom:716.266667pt;}
.y8b5_c00001{bottom:716.400000pt;}
.y56b_c00001{bottom:716.533333pt;}
.yc0d_c00001{bottom:716.666667pt;}
.y4b_c00001{bottom:716.800000pt;}
.y4ed_c00001{bottom:716.933333pt;}
.y948_c00001{bottom:717.066667pt;}
.y591_c00001{bottom:717.200000pt;}
.y11_c00001{bottom:717.466667pt;}
.yc24_c00001{bottom:717.600000pt;}
.y189_c00001{bottom:717.733333pt;}
.yf3c_c00001{bottom:717.866667pt;}
.y158_c00001{bottom:718.133333pt;}
.yb75_c00001{bottom:718.400000pt;}
.y82b_c00001{bottom:718.533333pt;}
.yfcc_c00001{bottom:718.666667pt;}
.y105c_c00001{bottom:718.933333pt;}
.y6e6_c00001{bottom:719.066667pt;}
.y908_c00001{bottom:719.333333pt;}
.y432_c00001{bottom:719.600000pt;}
.yb7f_c00001{bottom:719.733333pt;}
.y101d_c00001{bottom:720.000000pt;}
.y7c6_c00001{bottom:720.133333pt;}
.y87a_c00001{bottom:720.266667pt;}
.y6fe_c00001{bottom:720.400000pt;}
.yb83_c00001{bottom:720.533333pt;}
.y5fc_c00001{bottom:720.666667pt;}
.ybd_c00001{bottom:720.933333pt;}
.y124_c00001{bottom:721.066667pt;}
.y2d9_c00001{bottom:721.200000pt;}
.y81_c00001{bottom:721.333333pt;}
.y1be_c00001{bottom:721.600000pt;}
.ye86_c00001{bottom:721.866667pt;}
.y73a_c00001{bottom:722.000000pt;}
.yd02_c00001{bottom:722.266667pt;}
.yd0b_c00001{bottom:722.533333pt;}
.y358_c00001{bottom:722.933333pt;}
.ye5d_c00001{bottom:723.066667pt;}
.y24f_c00001{bottom:723.200000pt;}
.y4a4_c00001{bottom:723.333333pt;}
.y40d_c00001{bottom:723.466667pt;}
.y51c_c00001{bottom:723.600000pt;}
.y894_c00001{bottom:723.866667pt;}
.y546_c00001{bottom:724.000000pt;}
.y759_c00001{bottom:724.133333pt;}
.y6b9_c00001{bottom:724.266667pt;}
.y284_c00001{bottom:724.533333pt;}
.yf98_c00001{bottom:724.800000pt;}
.y5c1_c00001{bottom:724.933333pt;}
.yb08_c00001{bottom:725.066667pt;}
.ydda_c00001{bottom:725.200000pt;}
.ya81_c00001{bottom:725.466667pt;}
.yad0_c00001{bottom:725.600000pt;}
.yc62_c00001{bottom:725.733333pt;}
.y3dd_c00001{bottom:725.866667pt;}
.yc59_c00001{bottom:726.000000pt;}
.ya6e_c00001{bottom:726.133333pt;}
.y481_c00001{bottom:726.400000pt;}
.yfbd_c00001{bottom:726.666667pt;}
.y7a5_c00001{bottom:726.800000pt;}
.yb33_c00001{bottom:726.933333pt;}
.y9f6_c00001{bottom:727.066667pt;}
.y4c8_c00001{bottom:727.333333pt;}
.yd55_c00001{bottom:727.466667pt;}
.ye53_c00001{bottom:727.733333pt;}
.ye99_c00001{bottom:727.866667pt;}
.yb42_c00001{bottom:728.000000pt;}
.yf28_c00001{bottom:728.133333pt;}
.y21a_c00001{bottom:728.266667pt;}
.ycf2_c00001{bottom:728.400000pt;}
.yf78_c00001{bottom:728.533333pt;}
.y1eb_c00001{bottom:728.666667pt;}
.ye04_c00001{bottom:728.800000pt;}
.yce7_c00001{bottom:728.933333pt;}
.y65c_c00001{bottom:729.066667pt;}
.yf69_c00001{bottom:729.200000pt;}
.ycdb_c00001{bottom:729.333333pt;}
.yc16_c00001{bottom:729.466667pt;}
.y56a_c00001{bottom:729.600000pt;}
.yc0c_c00001{bottom:729.733333pt;}
.y8b4_c00001{bottom:729.866667pt;}
.y590_c00001{bottom:730.000000pt;}
.y4a_c00001{bottom:730.133333pt;}
.y10_c00001{bottom:730.266667pt;}
.yc23_c00001{bottom:730.400000pt;}
.y62f_c00001{bottom:730.533333pt;}
.y188_c00001{bottom:730.666667pt;}
.y157_c00001{bottom:730.933333pt;}
.y385_c00001{bottom:731.200000pt;}
.ye38_c00001{bottom:731.466667pt;}
.y4ec_c00001{bottom:731.600000pt;}
.y6e5_c00001{bottom:731.866667pt;}
.y71b_c00001{bottom:732.133333pt;}
.y7c5_c00001{bottom:732.266667pt;}
.y431_c00001{bottom:732.400000pt;}
.y8fb_c00001{bottom:732.533333pt;}
.y879_c00001{bottom:733.066667pt;}
.y9d1_c00001{bottom:733.200000pt;}
.y907_c00001{bottom:733.333333pt;}
.yef_c00001{bottom:733.466667pt;}
.ybd9_c00001{bottom:733.600000pt;}
.ybc_c00001{bottom:733.733333pt;}
.y123_c00001{bottom:733.866667pt;}
.ybd4_c00001{bottom:734.000000pt;}
.y80_c00001{bottom:734.133333pt;}
.y84a_c00001{bottom:734.400000pt;}
.y2d8_c00001{bottom:734.666667pt;}
.yf9f_c00001{bottom:735.066667pt;}
.yd0a_c00001{bottom:735.333333pt;}
.yf8d_c00001{bottom:735.466667pt;}
.yf9d_c00001{bottom:735.600000pt;}
.y357_c00001{bottom:735.733333pt;}
.y24e_c00001{bottom:736.000000pt;}
.ybfd_c00001{bottom:736.133333pt;}
.y328_c00001{bottom:736.266667pt;}
.y4a3_c00001{bottom:736.400000pt;}
.ye79_c00001{bottom:736.533333pt;}
.y51b_c00001{bottom:736.666667pt;}
.y545_c00001{bottom:736.800000pt;}
.y758_c00001{bottom:736.933333pt;}
.y780_c00001{bottom:737.066667pt;}
.y283_c00001{bottom:737.333333pt;}
.y5c0_c00001{bottom:737.733333pt;}
.yfc5_c00001{bottom:737.866667pt;}
.ydd9_c00001{bottom:738.266667pt;}
.yb07_c00001{bottom:738.400000pt;}
.y40c_c00001{bottom:738.533333pt;}
.yacf_c00001{bottom:738.666667pt;}
.yc58_c00001{bottom:738.800000pt;}
.y3dc_c00001{bottom:738.933333pt;}
.ya66_c00001{bottom:739.200000pt;}
.yda9_c00001{bottom:739.466667pt;}
.y105f_c00001{bottom:739.600000pt;}
.ydc8_c00001{bottom:739.733333pt;}
.y4c7_c00001{bottom:739.866667pt;}
.yb32_c00001{bottom:740.000000pt;}
.y7e7_c00001{bottom:740.133333pt;}
.yd54_c00001{bottom:740.266667pt;}
.y102d_c00001{bottom:740.400000pt;}
.yd7b_c00001{bottom:740.533333pt;}
.ye98_c00001{bottom:740.666667pt;}
.yb41_c00001{bottom:740.800000pt;}
.yebb_c00001{bottom:740.933333pt;}
.ycec_c00001{bottom:741.066667pt;}
.ye13_c00001{bottom:741.200000pt;}
.yb4f_c00001{bottom:741.333333pt;}
.y1ea_c00001{bottom:741.466667pt;}
.y219_c00001{bottom:741.733333pt;}
.ye03_c00001{bottom:741.866667pt;}
.y65b_c00001{bottom:742.133333pt;}
.yf68_c00001{bottom:742.266667pt;}
.y569_c00001{bottom:742.400000pt;}
.yc15_c00001{bottom:742.533333pt;}
.y49_c00001{bottom:742.666667pt;}
.yc0b_c00001{bottom:742.800000pt;}
.yf_c00001{bottom:743.066667pt;}
.yf45_c00001{bottom:743.200000pt;}
.y62e_c00001{bottom:743.333333pt;}
.yc22_c00001{bottom:743.466667pt;}
.y187_c00001{bottom:743.733333pt;}
.y156_c00001{bottom:744.000000pt;}
.yb74_c00001{bottom:744.266667pt;}
.y4eb_c00001{bottom:744.400000pt;}
.y384_c00001{bottom:744.533333pt;}
.y6e4_c00001{bottom:744.666667pt;}
.y45e_c00001{bottom:744.933333pt;}
.y931_c00001{bottom:745.066667pt;}
.y1bd_c00001{bottom:745.200000pt;}
.yb7e_c00001{bottom:745.333333pt;}
.y430_c00001{bottom:745.466667pt;}
.yb82_c00001{bottom:745.600000pt;}
.y71a_c00001{bottom:745.866667pt;}
.y906_c00001{bottom:746.133333pt;}
.yee_c00001{bottom:746.266667pt;}
.y617_c00001{bottom:746.533333pt;}
.ybb_c00001{bottom:746.666667pt;}
.y122_c00001{bottom:746.933333pt;}
.ybd3_c00001{bottom:747.066667pt;}
.y7f_c00001{bottom:747.200000pt;}
.ye81_c00001{bottom:747.466667pt;}
.y739_c00001{bottom:747.866667pt;}
.yd09_c00001{bottom:748.133333pt;}
.yd01_c00001{bottom:748.533333pt;}
.y356_c00001{bottom:748.666667pt;}
.yff6_c00001{bottom:748.800000pt;}
.y24d_c00001{bottom:749.066667pt;}
.ybfc_c00001{bottom:749.200000pt;}
.y327_c00001{bottom:749.333333pt;}
.y4a2_c00001{bottom:749.466667pt;}
.ybf8_c00001{bottom:749.600000pt;}
.y757_c00001{bottom:749.733333pt;}
.y544_c00001{bottom:749.866667pt;}
.y1025_c00001{bottom:750.000000pt;}
.y51a_c00001{bottom:750.133333pt;}
.y282_c00001{bottom:750.400000pt;}
.y5bf_c00001{bottom:750.533333pt;}
.ycb7_c00001{bottom:750.666667pt;}
.yf8c_c00001{bottom:750.800000pt;}
.ydd8_c00001{bottom:751.066667pt;}
.yb06_c00001{bottom:751.200000pt;}
.ya80_c00001{bottom:751.333333pt;}
.yace_c00001{bottom:751.466667pt;}
.yc68_c00001{bottom:751.600000pt;}
.y3db_c00001{bottom:751.733333pt;}
.yc57_c00001{bottom:751.866667pt;}
.ya65_c00001{bottom:752.000000pt;}
.y4c6_c00001{bottom:752.400000pt;}
.ydc7_c00001{bottom:752.533333pt;}
.y7a4_c00001{bottom:752.666667pt;}
.ydcc_c00001{bottom:752.800000pt;}
.y805_c00001{bottom:752.933333pt;}
.yb31_c00001{bottom:753.066667pt;}
.y7e6_c00001{bottom:753.200000pt;}
.y480_c00001{bottom:753.333333pt;}
.ybbe_c00001{bottom:753.600000pt;}
.ye97_c00001{bottom:753.733333pt;}
.yceb_c00001{bottom:753.866667pt;}
.yb40_c00001{bottom:754.000000pt;}
.yb4e_c00001{bottom:754.133333pt;}
.y218_c00001{bottom:754.266667pt;}
.yf2e_c00001{bottom:754.400000pt;}
.y1e9_c00001{bottom:754.533333pt;}
.yce6_c00001{bottom:754.666667pt;}
.yf34_c00001{bottom:754.800000pt;}
.y8d7_c00001{bottom:754.933333pt;}
.yf67_c00001{bottom:755.066667pt;}
.yc11_c00001{bottom:755.200000pt;}
.y568_c00001{bottom:755.466667pt;}
.yc14_c00001{bottom:755.600000pt;}
.yf6c_c00001{bottom:755.733333pt;}
.y947_c00001{bottom:755.866667pt;}
.yf44_c00001{bottom:756.000000pt;}
.y48_c00001{bottom:756.133333pt;}
.yc21_c00001{bottom:756.266667pt;}
.ye_c00001{bottom:756.533333pt;}
.y186_c00001{bottom:756.800000pt;}
.yf4e_c00001{bottom:756.933333pt;}
.y3b0_c00001{bottom:757.066667pt;}
.yf3b_c00001{bottom:757.200000pt;}
.yefc_c00001{bottom:757.333333pt;}
.y82a_c00001{bottom:757.466667pt;}
.yb78_c00001{bottom:757.600000pt;}
.y6e3_c00001{bottom:757.733333pt;}
.y930_c00001{bottom:757.866667pt;}
.y45d_c00001{bottom:758.000000pt;}
.y719_c00001{bottom:758.133333pt;}
.y1bc_c00001{bottom:758.266667pt;}
.yb7d_c00001{bottom:758.400000pt;}
.y9e0_c00001{bottom:758.533333pt;}
.y878_c00001{bottom:758.666667pt;}
.y7c4_c00001{bottom:758.800000pt;}
.yc2f_c00001{bottom:759.066667pt;}
.yed_c00001{bottom:759.333333pt;}
.y9d9_c00001{bottom:759.466667pt;}
.ybdb_c00001{bottom:759.600000pt;}
.yba_c00001{bottom:759.733333pt;}
.ybd2_c00001{bottom:759.866667pt;}
.y7e_c00001{bottom:760.000000pt;}
.yf0b_c00001{bottom:760.133333pt;}
.y2b0_c00001{bottom:760.266667pt;}
.y738_c00001{bottom:760.666667pt;}
.y383_c00001{bottom:760.800000pt;}
.y1018_c00001{bottom:760.933333pt;}
.y355_c00001{bottom:761.200000pt;}
.y40b_c00001{bottom:761.333333pt;}
.y24c_c00001{bottom:761.600000pt;}
.y326_c00001{bottom:761.866667pt;}
.ybfb_c00001{bottom:762.000000pt;}
.y4a1_c00001{bottom:762.266667pt;}
.ye72_c00001{bottom:762.400000pt;}
.ydea_c00001{bottom:762.533333pt;}
.y519_c00001{bottom:762.666667pt;}
.y91a_c00001{bottom:762.800000pt;}
.y543_c00001{bottom:762.933333pt;}
.y281_c00001{bottom:763.200000pt;}
.y5be_c00001{bottom:763.600000pt;}
.ya7f_c00001{bottom:763.866667pt;}
.yb05_c00001{bottom:764.000000pt;}
.ydd7_c00001{bottom:764.133333pt;}
.yaec_c00001{bottom:764.266667pt;}
.y3da_c00001{bottom:764.533333pt;}
.yc56_c00001{bottom:764.666667pt;}
.ya64_c00001{bottom:764.800000pt;}
.yd2a_c00001{bottom:765.066667pt;}
.y7a3_c00001{bottom:765.200000pt;}
.y47f_c00001{bottom:765.466667pt;}
.ydc6_c00001{bottom:765.600000pt;}
.y7e5_c00001{bottom:765.733333pt;}
.yb30_c00001{bottom:765.866667pt;}
.y4c5_c00001{bottom:766.133333pt;}
.yd7a_c00001{bottom:766.400000pt;}
.ye9d_c00001{bottom:766.533333pt;}
.ybbd_c00001{bottom:766.666667pt;}
.ybc1_c00001{bottom:766.800000pt;}
.yf1f_c00001{bottom:766.933333pt;}
.yb3f_c00001{bottom:767.066667pt;}
.yb4d_c00001{bottom:767.200000pt;}
.y1e8_c00001{bottom:767.333333pt;}
.y65a_c00001{bottom:767.466667pt;}
.yd94_c00001{bottom:767.600000pt;}
.y217_c00001{bottom:767.733333pt;}
.yf33_c00001{bottom:767.866667pt;}
.y62d_c00001{bottom:768.000000pt;}
.yc10_c00001{bottom:768.133333pt;}
.y47_c00001{bottom:768.266667pt;}
.ye43_c00001{bottom:768.533333pt;}
.y567_c00001{bottom:768.666667pt;}
.y2f8_c00001{bottom:768.933333pt;}
.yd_c00001{bottom:769.066667pt;}
.y155_c00001{bottom:769.333333pt;}
.y185_c00001{bottom:769.600000pt;}
.yc27_c00001{bottom:769.866667pt;}
.y829_c00001{bottom:770.000000pt;}
.yefb_c00001{bottom:770.133333pt;}
.y3af_c00001{bottom:770.266667pt;}
.y382_c00001{bottom:770.400000pt;}
.yb73_c00001{bottom:770.533333pt;}
.yb77_c00001{bottom:770.666667pt;}
.y1024_c00001{bottom:770.800000pt;}
.y864_c00001{bottom:770.933333pt;}
.y718_c00001{bottom:771.200000pt;}
.y1bb_c00001{bottom:771.333333pt;}
.y45c_c00001{bottom:771.466667pt;}
.y9ab_c00001{bottom:771.866667pt;}
.y616_c00001{bottom:772.133333pt;}
.y698_c00001{bottom:772.266667pt;}
.y9ca_c00001{bottom:772.400000pt;}
.yb9_c00001{bottom:772.533333pt;}
.ybda_c00001{bottom:772.666667pt;}
.y6e2_c00001{bottom:772.800000pt;}
.ybd1_c00001{bottom:772.933333pt;}
.y7d_c00001{bottom:773.066667pt;}
.yf0a_c00001{bottom:773.200000pt;}
.yf88_c00001{bottom:773.466667pt;}
.y974_c00001{bottom:773.733333pt;}
.y40a_c00001{bottom:774.400000pt;}
.y354_c00001{bottom:774.666667pt;}
.y325_c00001{bottom:774.800000pt;}
.y1011_c00001{bottom:774.933333pt;}
.y24b_c00001{bottom:775.066667pt;}
.y4a0_c00001{bottom:775.333333pt;}
.y518_c00001{bottom:775.466667pt;}
.y542_c00001{bottom:775.733333pt;}
.y6b8_c00001{bottom:776.000000pt;}
.y5bd_c00001{bottom:776.133333pt;}
.y280_c00001{bottom:776.266667pt;}
.ycbd_c00001{bottom:776.400000pt;}
.yf97_c00001{bottom:776.666667pt;}
.ya7e_c00001{bottom:776.933333pt;}
.yaeb_c00001{bottom:777.066667pt;}
.ya63_c00001{bottom:777.333333pt;}
.y3d9_c00001{bottom:777.600000pt;}
.yc55_c00001{bottom:777.733333pt;}
.yd29_c00001{bottom:777.866667pt;}
.y7a2_c00001{bottom:778.000000pt;}
.y47e_c00001{bottom:778.266667pt;}
.y804_c00001{bottom:778.533333pt;}
.ydc5_c00001{bottom:778.666667pt;}
.y7e4_c00001{bottom:778.933333pt;}
.ybbc_c00001{bottom:779.200000pt;}
.yd65_c00001{bottom:779.333333pt;}
.yec9_c00001{bottom:779.466667pt;}
.ybc0_c00001{bottom:779.600000pt;}
.yf1e_c00001{bottom:779.733333pt;}
.yb3e_c00001{bottom:779.866667pt;}
.ycea_c00001{bottom:780.000000pt;}
.y1e7_c00001{bottom:780.133333pt;}
.yb4c_c00001{bottom:780.266667pt;}
.y4c4_c00001{bottom:780.533333pt;}
.yd93_c00001{bottom:780.666667pt;}
.y216_c00001{bottom:780.800000pt;}
.yc0f_c00001{bottom:780.933333pt;}
.yc0a_c00001{bottom:781.066667pt;}
.yc13_c00001{bottom:781.200000pt;}
.y566_c00001{bottom:781.466667pt;}
.ye42_c00001{bottom:781.600000pt;}
.y46_c00001{bottom:781.733333pt;}
.y154_c00001{bottom:782.133333pt;}
.y2f7_c00001{bottom:782.400000pt;}
.y184_c00001{bottom:782.666667pt;}
.yc_c00001{bottom:782.800000pt;}
.yf56_c00001{bottom:782.933333pt;}
.y3ae_c00001{bottom:783.066667pt;}
.yef3_c00001{bottom:783.200000pt;}
.y381_c00001{bottom:783.466667pt;}
.y849_c00001{bottom:783.733333pt;}
.y45b_c00001{bottom:784.000000pt;}
.y1ba_c00001{bottom:784.133333pt;}
.y717_c00001{bottom:784.266667pt;}
.y9df_c00001{bottom:784.400000pt;}
.y9af_c00001{bottom:784.666667pt;}
.y737_c00001{bottom:784.933333pt;}
.y9ae_c00001{bottom:785.066667pt;}
.y615_c00001{bottom:785.200000pt;}
.y5fb_c00001{bottom:785.333333pt;}
.yb8_c00001{bottom:785.466667pt;}
.yec_c00001{bottom:785.600000pt;}
.ybd0_c00001{bottom:785.733333pt;}
.y2af_c00001{bottom:785.866667pt;}
.ybdc_c00001{bottom:786.000000pt;}
.y7c_c00001{bottom:786.266667pt;}
.yf87_c00001{bottom:786.533333pt;}
.y92f_c00001{bottom:786.933333pt;}
.y409_c00001{bottom:787.200000pt;}
.yd0f_c00001{bottom:787.466667pt;}
.ybfa_c00001{bottom:787.600000pt;}
.y24a_c00001{bottom:787.866667pt;}
.y353_c00001{bottom:788.133333pt;}
.y517_c00001{bottom:788.266667pt;}
.y756_c00001{bottom:788.533333pt;}
.y6b7_c00001{bottom:788.800000pt;}
.y541_c00001{bottom:788.933333pt;}
.y5e4_c00001{bottom:789.066667pt;}
.y27f_c00001{bottom:789.200000pt;}
.ycb6_c00001{bottom:789.333333pt;}
.ycbc_c00001{bottom:789.466667pt;}
.ya7d_c00001{bottom:789.866667pt;}
.y3d8_c00001{bottom:790.133333pt;}
.yc54_c00001{bottom:790.266667pt;}
.ya62_c00001{bottom:790.400000pt;}
.yc67_c00001{bottom:790.533333pt;}
.ya76_c00001{bottom:790.666667pt;}
.y105b_c00001{bottom:790.933333pt;}
.y7a1_c00001{bottom:791.066667pt;}
.y1017_c00001{bottom:791.333333pt;}
.y7e3_c00001{bottom:791.600000pt;}
.y4c3_c00001{bottom:791.733333pt;}
.y47d_c00001{bottom:792.000000pt;}
.yd64_c00001{bottom:792.133333pt;}
.yda8_c00001{bottom:792.266667pt;}
.yb4b_c00001{bottom:792.400000pt;}
.yee1_c00001{bottom:792.533333pt;}
.yb3d_c00001{bottom:792.666667pt;}
.yf1d_c00001{bottom:792.800000pt;}
.ycf1_c00001{bottom:792.933333pt;}
.yce9_c00001{bottom:793.066667pt;}
.ye12_c00001{bottom:793.200000pt;}
.y659_c00001{bottom:793.333333pt;}
.yd92_c00001{bottom:793.466667pt;}
.y215_c00001{bottom:793.600000pt;}
.yf32_c00001{bottom:793.733333pt;}
.y45_c00001{bottom:793.866667pt;}
.yc0e_c00001{bottom:794.000000pt;}
.y4ea_c00001{bottom:794.266667pt;}
.y565_c00001{bottom:794.533333pt;}
.ye41_c00001{bottom:794.666667pt;}
.y153_c00001{bottom:794.800000pt;}
.yb_c00001{bottom:794.933333pt;}
.y8b3_c00001{bottom:795.200000pt;}
.yf43_c00001{bottom:795.333333pt;}
.yc26_c00001{bottom:795.466667pt;}
.y183_c00001{bottom:795.600000pt;}
.ye37_c00001{bottom:795.866667pt;}
.y828_c00001{bottom:796.000000pt;}
.y3ad_c00001{bottom:796.133333pt;}
.yef2_c00001{bottom:796.266667pt;}
.y7c3_c00001{bottom:796.400000pt;}
.y380_c00001{bottom:796.533333pt;}
.y848_c00001{bottom:796.800000pt;}
.y1b9_c00001{bottom:796.933333pt;}
.y45a_c00001{bottom:797.066667pt;}
.y42f_c00001{bottom:797.200000pt;}
.yb7c_c00001{bottom:797.466667pt;}
.yeb_c00001{bottom:797.733333pt;}
.yb7_c00001{bottom:798.000000pt;}
.y5fa_c00001{bottom:798.133333pt;}
.y121_c00001{bottom:798.400000pt;}
.y9d8_c00001{bottom:798.533333pt;}
.y2ae_c00001{bottom:798.666667pt;}
.y2d7_c00001{bottom:798.800000pt;}
.y7b_c00001{bottom:799.066667pt;}
.yfae_c00001{bottom:799.333333pt;}
.y352_c00001{bottom:800.000000pt;}
.yd00_c00001{bottom:800.266667pt;}
.yd08_c00001{bottom:800.400000pt;}
.ybf9_c00001{bottom:800.666667pt;}
.y249_c00001{bottom:800.933333pt;}
.y516_c00001{bottom:801.066667pt;}
.y105a_c00001{bottom:801.200000pt;}
.y6d2_c00001{bottom:801.333333pt;}
.y6b6_c00001{bottom:801.600000pt;}
.y540_c00001{bottom:801.733333pt;}
.y5e3_c00001{bottom:801.866667pt;}
.y5bc_c00001{bottom:802.000000pt;}
.y27e_c00001{bottom:802.266667pt;}
.ycb5_c00001{bottom:802.400000pt;}
.ya7c_c00001{bottom:802.666667pt;}
.yaea_c00001{bottom:802.933333pt;}
.yc53_c00001{bottom:803.066667pt;}
.y3d7_c00001{bottom:803.200000pt;}
.yc66_c00001{bottom:803.333333pt;}
.yc61_c00001{bottom:803.466667pt;}
.ya6d_c00001{bottom:803.600000pt;}
.ya61_c00001{bottom:803.733333pt;}
.y47c_c00001{bottom:803.866667pt;}
.ya75_c00001{bottom:804.000000pt;}
.y7a0_c00001{bottom:804.133333pt;}
.y7e2_c00001{bottom:804.400000pt;}
.yb3b_c00001{bottom:804.800000pt;}
.y803_c00001{bottom:805.066667pt;}
.yd63_c00001{bottom:805.200000pt;}
.y49f_c00001{bottom:805.466667pt;}
.yee0_c00001{bottom:805.600000pt;}
.ybbb_c00001{bottom:805.733333pt;}
.yecb_c00001{bottom:805.866667pt;}
.yeda_c00001{bottom:806.000000pt;}
.y658_c00001{bottom:806.133333pt;}
.yd8a_c00001{bottom:806.400000pt;}
.yd91_c00001{bottom:806.533333pt;}
.y214_c00001{bottom:806.666667pt;}
.yc12_c00001{bottom:806.800000pt;}
.yc09_c00001{bottom:807.066667pt;}
.y564_c00001{bottom:807.333333pt;}
.y44_c00001{bottom:807.466667pt;}
.ya_c00001{bottom:807.733333pt;}
.y2f6_c00001{bottom:808.000000pt;}
.y152_c00001{bottom:808.266667pt;}
.y182_c00001{bottom:808.400000pt;}
.yf55_c00001{bottom:808.800000pt;}
.y7c2_c00001{bottom:808.933333pt;}
.y827_c00001{bottom:809.066667pt;}
.yfb5_c00001{bottom:809.200000pt;}
.y37f_c00001{bottom:809.333333pt;}
.y459_c00001{bottom:809.600000pt;}
.yb76_c00001{bottom:809.733333pt;}
.y1b8_c00001{bottom:810.000000pt;}
.y92e_c00001{bottom:810.266667pt;}
.yb6_c00001{bottom:810.533333pt;}
.y614_c00001{bottom:810.800000pt;}
.yea_c00001{bottom:810.933333pt;}
.y9ad_c00001{bottom:811.066667pt;}
.y120_c00001{bottom:811.200000pt;}
.y9d7_c00001{bottom:811.333333pt;}
.y680_c00001{bottom:811.466667pt;}
.ybd8_c00001{bottom:811.600000pt;}
.y7a_c00001{bottom:811.866667pt;}
.y101c_c00001{bottom:812.133333pt;}
.yfe7_c00001{bottom:812.400000pt;}
.yfd2_c00001{bottom:812.533333pt;}
.y104a_c00001{bottom:812.800000pt;}
.ycff_c00001{bottom:813.066667pt;}
.yd07_c00001{bottom:813.200000pt;}
.y408_c00001{bottom:813.333333pt;}
.y324_c00001{bottom:814.000000pt;}
.y351_c00001{bottom:814.133333pt;}
.y248_c00001{bottom:814.400000pt;}
.y515_c00001{bottom:814.533333pt;}
.y657_c00001{bottom:814.666667pt;}
.y53f_c00001{bottom:814.800000pt;}
.y5e2_c00001{bottom:814.933333pt;}
.y27d_c00001{bottom:815.066667pt;}
.ycbb_c00001{bottom:815.333333pt;}
.ycb4_c00001{bottom:815.466667pt;}
.y3d6_c00001{bottom:815.733333pt;}
.yacd_c00001{bottom:816.000000pt;}
.yc52_c00001{bottom:816.133333pt;}
.yc60_c00001{bottom:816.266667pt;}
.yc65_c00001{bottom:816.400000pt;}
.ya60_c00001{bottom:816.533333pt;}
.ya6c_c00001{bottom:816.666667pt;}
.y47b_c00001{bottom:816.933333pt;}
.ya74_c00001{bottom:817.066667pt;}
.y79f_c00001{bottom:817.200000pt;}
.y802_c00001{bottom:817.600000pt;}
.yd53_c00001{bottom:817.866667pt;}
.yee5_c00001{bottom:818.000000pt;}
.ybba_c00001{bottom:818.266667pt;}
.yedf_c00001{bottom:818.400000pt;}
.ybbf_c00001{bottom:818.533333pt;}
.y656_c00001{bottom:818.666667pt;}
.y4c2_c00001{bottom:818.933333pt;}
.yed9_c00001{bottom:819.066667pt;}
.y213_c00001{bottom:819.200000pt;}
.yd90_c00001{bottom:819.333333pt;}
.y62c_c00001{bottom:819.466667pt;}
.yc80_c00001{bottom:819.600000pt;}
.yfb4_c00001{bottom:819.733333pt;}
.y8d6_c00001{bottom:819.866667pt;}
.yc08_c00001{bottom:820.133333pt;}
.y43_c00001{bottom:820.533333pt;}
.y1e6_c00001{bottom:820.800000pt;}
.y2f5_c00001{bottom:820.933333pt;}
.y151_c00001{bottom:821.066667pt;}
.y9_c00001{bottom:821.200000pt;}
.yff1_c00001{bottom:821.333333pt;}
.y181_c00001{bottom:821.466667pt;}
.yf54_c00001{bottom:821.600000pt;}
.yff3_c00001{bottom:821.733333pt;}
.y826_c00001{bottom:821.866667pt;}
.ye36_c00001{bottom:822.133333pt;}
.y37e_c00001{bottom:822.400000pt;}
.y458_c00001{bottom:822.666667pt;}
.y1b7_c00001{bottom:822.800000pt;}
.y42e_c00001{bottom:823.066667pt;}
.y716_c00001{bottom:823.333333pt;}
.ye9_c00001{bottom:823.733333pt;}
.yb5_c00001{bottom:823.866667pt;}
.y11f_c00001{bottom:824.000000pt;}
.y2ad_c00001{bottom:824.266667pt;}
.y9c9_c00001{bottom:824.400000pt;}
.y79_c00001{bottom:824.666667pt;}
.ybcf_c00001{bottom:824.933333pt;}
.yf09_c00001{bottom:825.333333pt;}
.y407_c00001{bottom:825.866667pt;}
.yd06_c00001{bottom:826.266667pt;}
.y1003_c00001{bottom:826.533333pt;}
.y919_c00001{bottom:826.933333pt;}
.y350_c00001{bottom:827.200000pt;}
.y514_c00001{bottom:827.333333pt;}
.ycb2_c00001{bottom:827.466667pt;}
.y53e_c00001{bottom:827.600000pt;}
.y27c_c00001{bottom:827.866667pt;}
.y5e1_c00001{bottom:828.000000pt;}
.ycba_c00001{bottom:828.133333pt;}
.y989_c00001{bottom:828.533333pt;}
.yacc_c00001{bottom:828.800000pt;}
.yb04_c00001{bottom:828.933333pt;}
.y247_c00001{bottom:829.066667pt;}
.y3d5_c00001{bottom:829.200000pt;}
.yc64_c00001{bottom:829.466667pt;}
.ya5f_c00001{bottom:829.600000pt;}
.y323_c00001{bottom:829.733333pt;}
.ya73_c00001{bottom:829.866667pt;}
.y79e_c00001{bottom:830.000000pt;}
.yfad_c00001{bottom:830.133333pt;}
.y7e1_c00001{bottom:830.400000pt;}
.yee4_c00001{bottom:831.066667pt;}
.yedc_c00001{bottom:831.466667pt;}
.yc20_c00001{bottom:831.733333pt;}
.y212_c00001{bottom:832.000000pt;}
.y655_c00001{bottom:832.133333pt;}
.yce5_c00001{bottom:832.266667pt;}
.yd8f_c00001{bottom:832.400000pt;}
.y42_c00001{bottom:832.666667pt;}
.y49e_c00001{bottom:832.800000pt;}
.yc7f_c00001{bottom:832.933333pt;}
.y1042_c00001{bottom:833.066667pt;}
.y58f_c00001{bottom:833.333333pt;}
.y563_c00001{bottom:833.600000pt;}
.y4e9_c00001{bottom:833.733333pt;}
.y150_c00001{bottom:833.866667pt;}
.y8_c00001{bottom:834.000000pt;}
.y180_c00001{bottom:834.266667pt;}
.y8b2_c00001{bottom:834.533333pt;}
.y825_c00001{bottom:834.666667pt;}
.yefa_c00001{bottom:834.933333pt;}
.y7c1_c00001{bottom:835.200000pt;}
.y457_c00001{bottom:835.466667pt;}
.y1b6_c00001{bottom:835.600000pt;}
.y715_c00001{bottom:835.866667pt;}
.y42d_c00001{bottom:836.133333pt;}
.y877_c00001{bottom:836.533333pt;}
.ye8_c00001{bottom:836.800000pt;}
.yb4_c00001{bottom:836.933333pt;}
.y11e_c00001{bottom:837.066667pt;}
.y6e1_c00001{bottom:837.200000pt;}
.y697_c00001{bottom:837.333333pt;}
.y905_c00001{bottom:837.466667pt;}
.y78_c00001{bottom:837.733333pt;}
.ybd7_c00001{bottom:837.866667pt;}
.y736_c00001{bottom:838.400000pt;}
.y406_c00001{bottom:839.466667pt;}
.y34f_c00001{bottom:839.733333pt;}
.y893_c00001{bottom:840.000000pt;}
.y513_c00001{bottom:840.133333pt;}
.y6b5_c00001{bottom:840.266667pt;}
.y27b_c00001{bottom:840.666667pt;}
.y987_c00001{bottom:840.933333pt;}
.y5e0_c00001{bottom:841.066667pt;}
.ycb3_c00001{bottom:841.333333pt;}
.y988_c00001{bottom:841.600000pt;}
.yacb_c00001{bottom:841.866667pt;}
.y3d4_c00001{bottom:842.000000pt;}
.yc51_c00001{bottom:842.266667pt;}
.ya72_c00001{bottom:842.400000pt;}
.y79d_c00001{bottom:842.533333pt;}
.ya5e_c00001{bottom:842.666667pt;}
.y1016_c00001{bottom:842.800000pt;}
.y47a_c00001{bottom:842.933333pt;}
.yfe6_c00001{bottom:843.200000pt;}
.y1041_c00001{bottom:843.333333pt;}
.yfd1_c00001{bottom:843.466667pt;}
.y801_c00001{bottom:843.600000pt;}
.yc07_c00001{bottom:843.866667pt;}
.ye52_c00001{bottom:844.133333pt;}
.yede_c00001{bottom:844.266667pt;}
.ycf0_c00001{bottom:844.533333pt;}
.y654_c00001{bottom:844.666667pt;}
.y4c1_c00001{bottom:844.800000pt;}
.y322_c00001{bottom:845.066667pt;}
.yd8c_c00001{bottom:845.200000pt;}
.yd8e_c00001{bottom:845.466667pt;}
.ycda_c00001{bottom:845.733333pt;}
.y49d_c00001{bottom:845.866667pt;}
.y211_c00001{bottom:846.133333pt;}
.y41_c00001{bottom:846.400000pt;}
.ya16_c00001{bottom:846.533333pt;}
.yda7_c00001{bottom:846.666667pt;}
.ya13_c00001{bottom:846.800000pt;}
.yf86_c00001{bottom:846.933333pt;}
.y7_c00001{bottom:847.066667pt;}
.y58e_c00001{bottom:847.333333pt;}
.y714_c00001{bottom:847.733333pt;}
.y456_c00001{bottom:848.266667pt;}
.y1b5_c00001{bottom:848.400000pt;}
.y847_c00001{bottom:848.666667pt;}
.y3ac_c00001{bottom:848.800000pt;}
.y1e5_c00001{bottom:848.933333pt;}
.yb3_c00001{bottom:849.066667pt;}
.y735_c00001{bottom:849.333333pt;}
.ye7_c00001{bottom:849.600000pt;}
.y6e0_c00001{bottom:849.733333pt;}
.y613_c00001{bottom:849.866667pt;}
.y11d_c00001{bottom:850.000000pt;}
.y2ac_c00001{bottom:850.133333pt;}
.y8fa_c00001{bottom:850.266667pt;}
.y696_c00001{bottom:850.400000pt;}
.y9c8_c00001{bottom:850.533333pt;}
.y2d6_c00001{bottom:850.800000pt;}
.ybd6_c00001{bottom:850.933333pt;}
.yfbc_c00001{bottom:851.200000pt;}
.y9f5_c00001{bottom:851.866667pt;}
.y246_c00001{bottom:852.133333pt;}
.y405_c00001{bottom:852.266667pt;}
.y1059_c00001{bottom:852.400000pt;}
.y34e_c00001{bottom:852.800000pt;}
.y6b4_c00001{bottom:853.066667pt;}
.y512_c00001{bottom:853.200000pt;}
.y53d_c00001{bottom:853.466667pt;}
.y77_c00001{bottom:853.733333pt;}
.y1040_c00001{bottom:853.866667pt;}
.y27a_c00001{bottom:854.000000pt;}
.y5df_c00001{bottom:854.133333pt;}
.ycb9_c00001{bottom:854.400000pt;}
.ya7b_c00001{bottom:854.666667pt;}
.y3d3_c00001{bottom:854.800000pt;}
.yb1f_c00001{bottom:854.933333pt;}
.yae9_c00001{bottom:855.066667pt;}
.ya71_c00001{bottom:855.466667pt;}
.y479_c00001{bottom:855.600000pt;}
.ya5d_c00001{bottom:855.733333pt;}
.y79c_c00001{bottom:856.000000pt;}
.y800_c00001{bottom:856.666667pt;}
.yec8_c00001{bottom:857.333333pt;}
.yedb_c00001{bottom:857.600000pt;}
.yeca_c00001{bottom:857.866667pt;}
.yd89_c00001{bottom:858.000000pt;}
.y653_c00001{bottom:858.133333pt;}
.y210_c00001{bottom:858.266667pt;}
.y40_c00001{bottom:858.533333pt;}
.y49c_c00001{bottom:858.933333pt;}
.y946_c00001{bottom:859.200000pt;}
.y562_c00001{bottom:859.466667pt;}
.ya15_c00001{bottom:859.600000pt;}
.y62b_c00001{bottom:859.733333pt;}
.y6_c00001{bottom:859.866667pt;}
.y8b1_c00001{bottom:860.133333pt;}
.yc7e_c00001{bottom:860.533333pt;}
.y824_c00001{bottom:860.800000pt;}
.y863_c00001{bottom:861.066667pt;}
.y1b4_c00001{bottom:861.466667pt;}
.y1e4_c00001{bottom:861.733333pt;}
.y3ab_c00001{bottom:861.866667pt;}
.y42c_c00001{bottom:862.000000pt;}
.y713_c00001{bottom:862.133333pt;}
.ye6_c00001{bottom:862.400000pt;}
.yb2_c00001{bottom:862.533333pt;}
.y5f9_c00001{bottom:862.666667pt;}
.y1058_c00001{bottom:862.933333pt;}
.y11c_c00001{bottom:863.066667pt;}
.y612_c00001{bottom:863.333333pt;}
.y695_c00001{bottom:863.466667pt;}
.y2d5_c00001{bottom:863.600000pt;}
.y8f9_c00001{bottom:863.733333pt;}
.y2ab_c00001{bottom:863.866667pt;}
.yf74_c00001{bottom:864.000000pt;}
.y734_c00001{bottom:864.266667pt;}
.yc50_c00001{bottom:864.666667pt;}
.y404_c00001{bottom:865.066667pt;}
.y77f_c00001{bottom:865.600000pt;}
.y34d_c00001{bottom:865.866667pt;}
.y511_c00001{bottom:866.266667pt;}
.y6b3_c00001{bottom:866.400000pt;}
.y279_c00001{bottom:866.533333pt;}
.y53c_c00001{bottom:866.933333pt;}
.y5de_c00001{bottom:867.200000pt;}
.yb1e_c00001{bottom:867.466667pt;}
.y1004_c00001{bottom:867.600000pt;}
.yaca_c00001{bottom:867.733333pt;}
.y3d2_c00001{bottom:867.866667pt;}
.ya7a_c00001{bottom:868.133333pt;}
.ya5c_c00001{bottom:868.533333pt;}
.y7e0_c00001{bottom:868.800000pt;}
.y245_c00001{bottom:869.066667pt;}
.y7ff_c00001{bottom:869.466667pt;}
.yee3_c00001{bottom:869.733333pt;}
.y478_c00001{bottom:870.000000pt;}
.yedd_c00001{bottom:870.133333pt;}
.yec7_c00001{bottom:870.400000pt;}
.y4c0_c00001{bottom:870.666667pt;}
.yd8b_c00001{bottom:870.800000pt;}
.ybb9_c00001{bottom:871.066667pt;}
.yd8d_c00001{bottom:871.333333pt;}
.yfbb_c00001{bottom:871.600000pt;}
.y20f_c00001{bottom:871.733333pt;}
.y3f_c00001{bottom:872.000000pt;}
.y561_c00001{bottom:872.266667pt;}
.ya14_c00001{bottom:872.400000pt;}
.y62a_c00001{bottom:872.533333pt;}
.y5_c00001{bottom:872.666667pt;}
.y17f_c00001{bottom:872.933333pt;}
.y964_c00001{bottom:873.066667pt;}
.y1057_c00001{bottom:873.200000pt;}
.yff0_c00001{bottom:873.333333pt;}
.y712_c00001{bottom:873.600000pt;}
.yfd8_c00001{bottom:873.866667pt;}
.y37d_c00001{bottom:874.266667pt;}
.y1b3_c00001{bottom:874.533333pt;}
.yb1_c00001{bottom:874.666667pt;}
.y42b_c00001{bottom:874.800000pt;}
.y1e3_c00001{bottom:874.933333pt;}
.ye5_c00001{bottom:875.200000pt;}
.y6df_c00001{bottom:875.333333pt;}
.y6fd_c00001{bottom:875.466667pt;}
.y11b_c00001{bottom:875.866667pt;}
.y9ac_c00001{bottom:876.133333pt;}
.y694_c00001{bottom:876.266667pt;}
.y733_c00001{bottom:876.400000pt;}
.ybd5_c00001{bottom:876.533333pt;}
.y76_c00001{bottom:876.800000pt;}
.y2d4_c00001{bottom:877.066667pt;}
.y2aa_c00001{bottom:877.333333pt;}
.y92d_c00001{bottom:877.466667pt;}
.y403_c00001{bottom:878.133333pt;}
.y892_c00001{bottom:878.400000pt;}
.y34c_c00001{bottom:878.666667pt;}
.y6d1_c00001{bottom:879.066667pt;}
.y6b2_c00001{bottom:879.200000pt;}
.y510_c00001{bottom:879.333333pt;}
.y53b_c00001{bottom:879.600000pt;}
.y278_c00001{bottom:879.733333pt;}
.y5bb_c00001{bottom:880.000000pt;}
.ycb8_c00001{bottom:880.266667pt;}
.y3d1_c00001{bottom:880.666667pt;}
.yae8_c00001{bottom:880.933333pt;}
.yfac_c00001{bottom:881.600000pt;}
.yac9_c00001{bottom:881.866667pt;}
.y7df_c00001{bottom:882.266667pt;}
.y102c_c00001{bottom:882.533333pt;}
.yee2_c00001{bottom:882.933333pt;}
.y79b_c00001{bottom:883.200000pt;}
.y477_c00001{bottom:883.466667pt;}
.yfef_c00001{bottom:883.600000pt;}
.yd88_c00001{bottom:883.866667pt;}
.y652_c00001{bottom:884.133333pt;}
.yfcb_c00001{bottom:884.400000pt;}
.y20e_c00001{bottom:884.533333pt;}
.y49b_c00001{bottom:884.800000pt;}
.yfe5_c00001{bottom:884.933333pt;}
.y629_c00001{bottom:885.066667pt;}
.y4_c00001{bottom:885.466667pt;}
.y3e_c00001{bottom:885.733333pt;}
.y963_c00001{bottom:885.866667pt;}
.y7c0_c00001{bottom:886.666667pt;}
.y8b0_c00001{bottom:886.800000pt;}
.y1e2_c00001{bottom:887.066667pt;}
.y42a_c00001{bottom:887.333333pt;}
.y3aa_c00001{bottom:887.466667pt;}
.y1b2_c00001{bottom:887.600000pt;}
.yb0_c00001{bottom:887.733333pt;}
.y711_c00001{bottom:888.000000pt;}
.ye4_c00001{bottom:888.266667pt;}
.y6de_c00001{bottom:888.400000pt;}
.y11a_c00001{bottom:888.666667pt;}
.y732_c00001{bottom:888.933333pt;}
.y5f8_c00001{bottom:889.333333pt;}
.ybce_c00001{bottom:889.600000pt;}
.y75_c00001{bottom:889.866667pt;}
.y846_c00001{bottom:890.266667pt;}
.y876_c00001{bottom:890.933333pt;}
.y402_c00001{bottom:891.200000pt;}
.y34b_c00001{bottom:891.466667pt;}
.y6d0_c00001{bottom:891.866667pt;}
.y277_c00001{bottom:892.133333pt;}
.y6b1_c00001{bottom:892.266667pt;}
.y53a_c00001{bottom:892.400000pt;}
.y5ba_c00001{bottom:892.533333pt;}
.y918_c00001{bottom:892.800000pt;}
.y5dd_c00001{bottom:893.066667pt;}
.yb72_c00001{bottom:893.466667pt;}
.ya5b_c00001{bottom:893.733333pt;}
.y476_c00001{bottom:894.133333pt;}
.y7de_c00001{bottom:894.400000pt;}
.yfca_c00001{bottom:894.666667pt;}
.y102b_c00001{bottom:894.800000pt;}
.yae7_c00001{bottom:895.066667pt;}
.y7fe_c00001{bottom:895.333333pt;}
.yfe4_c00001{bottom:895.466667pt;}
.y79a_c00001{bottom:895.733333pt;}
.y4bf_c00001{bottom:897.333333pt;}
.y20d_c00001{bottom:897.600000pt;}
.y49a_c00001{bottom:897.866667pt;}
.y3_c00001{bottom:898.266667pt;}
.y14f_c00001{bottom:898.533333pt;}
.y3d_c00001{bottom:898.933333pt;}
.y2d3_c00001{bottom:899.200000pt;}
.y1005_c00001{bottom:899.466667pt;}
.y455_c00001{bottom:899.866667pt;}
.y37c_c00001{bottom:900.133333pt;}
.yaf_c00001{bottom:900.533333pt;}
.y1e1_c00001{bottom:900.800000pt;}
.y1b1_c00001{bottom:901.066667pt;}
.ye3_c00001{bottom:901.466667pt;}
.y611_c00001{bottom:901.733333pt;}
.y3d0_c00001{bottom:902.133333pt;}
.yfab_c00001{bottom:902.400000pt;}
.y74_c00001{bottom:902.666667pt;}
.y731_c00001{bottom:903.066667pt;}
.y845_c00001{bottom:903.333333pt;}
.y401_c00001{bottom:904.000000pt;}
.y891_c00001{bottom:904.266667pt;}
.y1052_c00001{bottom:904.400000pt;}
.yffb_c00001{bottom:904.666667pt;}
.y2a9_c00001{bottom:904.933333pt;}
.y6b0_c00001{bottom:905.333333pt;}
.y276_c00001{bottom:905.600000pt;}
.y5b9_c00001{bottom:905.866667pt;}
.ye40_c00001{bottom:906.933333pt;}
.ya12_c00001{bottom:907.466667pt;}
.yff5_c00001{bottom:914.266667pt;}
.yfee_c00001{bottom:914.533333pt;}
.yffa_c00001{bottom:914.933333pt;}
.y917_c00001{bottom:920.400000pt;}
.ya5a_c00001{bottom:921.600000pt;}
.ya59_c00001{bottom:921.866667pt;}
.y755_c00001{bottom:922.266667pt;}
.yb70_c00001{bottom:922.533333pt;}
.y916_c00001{bottom:922.933333pt;}
.y754_c00001{bottom:923.200000pt;}
.yb71_c00001{bottom:924.400000pt;}
.y474_c00001{bottom:925.066667pt;}
.yf08_c00001{bottom:925.733333pt;}
.yac8_c00001{bottom:925.866667pt;}
.y7dd_c00001{bottom:926.133333pt;}
.y2d2_c00001{bottom:926.400000pt;}
.y2d1_c00001{bottom:926.666667pt;}
.ybf7_c00001{bottom:927.066667pt;}
.y799_c00001{bottom:927.333333pt;}
.y475_c00001{bottom:928.000000pt;}
.y627_c00001{bottom:928.266667pt;}
.y1_c00001{bottom:928.666667pt;}
.y2_c00001{bottom:928.933333pt;}
.y4be_c00001{bottom:929.200000pt;}
.yc4f_c00001{bottom:929.333333pt;}
.y20c_c00001{bottom:929.600000pt;}
.y73_c00001{bottom:929.866667pt;}
.y945_c00001{bottom:930.000000pt;}
.y628_c00001{bottom:930.133333pt;}
.y8af_c00001{bottom:930.266667pt;}
.y70f_c00001{bottom:930.533333pt;}
.yc06_c00001{bottom:930.933333pt;}
.y37b_c00001{bottom:931.200000pt;}
.y429_c00001{bottom:931.466667pt;}
.y1b0_c00001{bottom:931.600000pt;}
.y1af_c00001{bottom:931.866667pt;}
.y37a_c00001{bottom:932.133333pt;}
.y710_c00001{bottom:932.400000pt;}
.ye2_c00001{bottom:932.533333pt;}
.y72_c00001{bottom:932.800000pt;}
.ye02_c00001{bottom:933.066667pt;}
.y3ce_c00001{bottom:933.466667pt;}
.ycb0_c00001{bottom:933.733333pt;}
.ye96_c00001{bottom:933.866667pt;}
.ydc4_c00001{bottom:934.133333pt;}
.ycb1_c00001{bottom:934.400000pt;}
.y3cf_c00001{bottom:934.800000pt;}
.y823_c00001{bottom:934.933333pt;}
.y8f8_c00001{bottom:935.066667pt;}
.y890_c00001{bottom:935.333333pt;}
.yed8_c00001{bottom:935.466667pt;}
.yda6_c00001{bottom:935.600000pt;}
.yed7_c00001{bottom:935.733333pt;}
.y275_c00001{bottom:936.000000pt;}
.y274_c00001{bottom:936.266667pt;}
.y5b7_c00001{bottom:936.666667pt;}
.y50f_c00001{bottom:936.933333pt;}
.ybcd_c00001{bottom:937.200000pt;}
.y5b8_c00001{bottom:937.333333pt;}
.ybcc_c00001{bottom:937.866667pt;}
.y9c6_c00001{bottom:938.533333pt;}
.ya11_c00001{bottom:938.666667pt;}
.ya10_c00001{bottom:938.933333pt;}
.y9c7_c00001{bottom:939.200000pt;}
.yf73_c00001{bottom:941.200000pt;}
.yde9_c00001{bottom:941.466667pt;}
.yf85_c00001{bottom:941.733333pt;}
.yfed_c00001{bottom:942.000000pt;}
.yde8_c00001{bottom:942.400000pt;}
.yf7b_c00001{bottom:942.666667pt;}
.yef1_c00001{bottom:943.333333pt;}
.y104e_c00001{bottom:945.600000pt;}
.ycd9_c00001{bottom:947.733333pt;}
.ycd8_c00001{bottom:949.066667pt;}
.ha_c00001{height:26.666667pt;}
.h4_c00001{height:32.000000pt;}
.h3_c00001{height:37.333333pt;}
.hb_c00001{height:38.400000pt;}
.h6_c00001{height:42.666667pt;}
.h7_c00001{height:44.266667pt;}
.h8_c00001{height:48.000000pt;}
.h2_c00001{height:53.333333pt;}
.h5_c00001{height:58.666667pt;}
.hf_c00001{height:64.000000pt;}
.h9_c00001{height:69.333333pt;}
.hd_c00001{height:80.000000pt;}
.hc_c00001{height:90.666667pt;}
.he_c00001{height:112.000000pt;}
.h10_c00001{height:117.333333pt;}
.h1_c00001{height:1034.666667pt;}
.h0_c00001{height:1034.879964pt;}
.w0_c00001{width:817.920084pt;}
.w1_c00001{width:818.000000pt;}
.x0_c00001{left:0.000000pt;}
.x221_c00001{left:71.066667pt;}
.x222_c00001{left:72.000000pt;}
.x228_c00001{left:72.933333pt;}
.x234_c00001{left:73.866667pt;}
.x233_c00001{left:74.800000pt;}
.x232_c00001{left:75.866667pt;}
.x231_c00001{left:76.800000pt;}
.x223_c00001{left:77.866667pt;}
.x230_c00001{left:78.800000pt;}
.x216_c00001{left:79.733333pt;}
.x217_c00001{left:81.333333pt;}
.x21d_c00001{left:82.533333pt;}
.x229_c00001{left:83.600000pt;}
.x1fb_c00001{left:84.533333pt;}
.x20f_c00001{left:86.133333pt;}
.x20e_c00001{left:87.066667pt;}
.x21b_c00001{left:88.266667pt;}
.x200_c00001{left:89.333333pt;}
.x1dc_c00001{left:90.933333pt;}
.x21e_c00001{left:91.866667pt;}
.x21a_c00001{left:92.800000pt;}
.x219_c00001{left:93.733333pt;}
.x1c6_c00001{left:94.666667pt;}
.x1cb_c00001{left:95.600000pt;}
.x19c_c00001{left:96.933333pt;}
.x1a5_c00001{left:98.266667pt;}
.x1e6_c00001{left:99.600000pt;}
.x220_c00001{left:100.533333pt;}
.x1e5_c00001{left:101.466667pt;}
.x203_c00001{left:102.666667pt;}
.x209_c00001{left:103.733333pt;}
.x20a_c00001{left:104.666667pt;}
.x20b_c00001{left:105.600000pt;}
.x20c_c00001{left:106.933333pt;}
.x13c_c00001{left:108.133333pt;}
.x1f3_c00001{left:109.066667pt;}
.x12f_c00001{left:110.800000pt;}
.x127_c00001{left:111.866667pt;}
.x11d_c00001{left:113.466667pt;}
.x111_c00001{left:114.533333pt;}
.x1ca_c00001{left:115.600000pt;}
.x1f1_c00001{left:117.066667pt;}
.x1f4_c00001{left:118.400000pt;}
.x175_c00001{left:119.333333pt;}
.x173_c00001{left:120.266667pt;}
.x205_c00001{left:121.333333pt;}
.x1b6_c00001{left:122.266667pt;}
.x1b4_c00001{left:123.866667pt;}
.x1f2_c00001{left:124.800000pt;}
.x1c9_c00001{left:126.133333pt;}
.x1ec_c00001{left:127.066667pt;}
.x1c7_c00001{left:128.133333pt;}
.x1e1_c00001{left:129.333333pt;}
.x1d8_c00001{left:130.266667pt;}
.x1d7_c00001{left:131.200000pt;}
.x1d6_c00001{left:132.533333pt;}
.x1cd_c00001{left:133.733333pt;}
.x116_c00001{left:135.066667pt;}
.x1f0_c00001{left:136.666667pt;}
.x129_c00001{left:137.600000pt;}
.x7a_c00001{left:138.933333pt;}
.x3_c00001{left:139.866667pt;}
.x1_c00001{left:140.800000pt;}
.x1fd_c00001{left:141.733333pt;}
.x1cf_c00001{left:142.666667pt;}
.x1c8_c00001{left:143.866667pt;}
.x139_c00001{left:144.800000pt;}
.x128_c00001{left:145.733333pt;}
.x131_c00001{left:146.666667pt;}
.x117_c00001{left:148.266667pt;}
.x19e_c00001{left:149.466667pt;}
.x1a2_c00001{left:150.800000pt;}
.x17a_c00001{left:151.733333pt;}
.x17d_c00001{left:152.666667pt;}
.x112_c00001{left:153.600000pt;}
.x130_c00001{left:154.666667pt;}
.x114_c00001{left:156.133333pt;}
.x125_c00001{left:157.200000pt;}
.x56_c00001{left:158.133333pt;}
.x51_c00001{left:159.333333pt;}
.x4_c00001{left:160.666667pt;}
.x1e7_c00001{left:161.866667pt;}
.x7f_c00001{left:162.800000pt;}
.x1ce_c00001{left:163.733333pt;}
.x11b_c00001{left:165.333333pt;}
.x1b8_c00001{left:166.266667pt;}
.x123_c00001{left:167.333333pt;}
.x92_c00001{left:168.533333pt;}
.x24_c00001{left:170.000000pt;}
.x11_c00001{left:171.466667pt;}
.x7d_c00001{left:172.800000pt;}
.x89_c00001{left:173.733333pt;}
.x120_c00001{left:175.066667pt;}
.x13d_c00001{left:176.000000pt;}
.x13b_c00001{left:177.600000pt;}
.x12a_c00001{left:178.933333pt;}
.x96_c00001{left:180.000000pt;}
.x113_c00001{left:181.466667pt;}
.x6d_c00001{left:183.066667pt;}
.x115_c00001{left:184.000000pt;}
.x69_c00001{left:185.200000pt;}
.x90_c00001{left:186.933333pt;}
.x133_c00001{left:187.866667pt;}
.x31_c00001{left:188.933333pt;}
.x7b_c00001{left:189.866667pt;}
.x59_c00001{left:190.800000pt;}
.x174_c00001{left:191.733333pt;}
.x5c_c00001{left:192.666667pt;}
.x19_c00001{left:194.133333pt;}
.x2b_c00001{left:195.333333pt;}
.x119_c00001{left:196.533333pt;}
.x3d_c00001{left:198.000000pt;}
.x1e_c00001{left:199.600000pt;}
.x44_c00001{left:200.666667pt;}
.x5_c00001{left:202.266667pt;}
.x12_c00001{left:203.733333pt;}
.x93_c00001{left:204.666667pt;}
.xa_c00001{left:206.400000pt;}
.x8e_c00001{left:208.000000pt;}
.x65_c00001{left:208.933333pt;}
.x32_c00001{left:209.866667pt;}
.x1a0_c00001{left:210.800000pt;}
.x37_c00001{left:211.733333pt;}
.x47_c00001{left:213.200000pt;}
.x39_c00001{left:214.533333pt;}
.x118_c00001{left:215.733333pt;}
.x25_c00001{left:216.666667pt;}
.x184_c00001{left:217.733333pt;}
.x6a_c00001{left:218.800000pt;}
.x75_c00001{left:220.000000pt;}
.x52_c00001{left:221.066667pt;}
.x3e_c00001{left:222.266667pt;}
.x1b5_c00001{left:223.333333pt;}
.x80_c00001{left:224.533333pt;}
.x66_c00001{left:225.866667pt;}
.x13_c00001{left:227.066667pt;}
.x138_c00001{left:228.400000pt;}
.x11e_c00001{left:229.466667pt;}
.x5d_c00001{left:230.400000pt;}
.x2c_c00001{left:231.466667pt;}
.x61_c00001{left:232.400000pt;}
.x33_c00001{left:233.600000pt;}
.xb_c00001{left:234.533333pt;}
.x82_c00001{left:235.466667pt;}
.x26_c00001{left:236.533333pt;}
.x76_c00001{left:237.600000pt;}
.x45_c00001{left:239.066667pt;}
.x1f_c00001{left:240.133333pt;}
.x180_c00001{left:241.066667pt;}
.x8d_c00001{left:242.133333pt;}
.x4d_c00001{left:243.866667pt;}
.xc_c00001{left:245.066667pt;}
.x73_c00001{left:246.266667pt;}
.x41_c00001{left:247.333333pt;}
.x12d_c00001{left:248.266667pt;}
.x57_c00001{left:250.000000pt;}
.x14_c00001{left:251.066667pt;}
.x3a_c00001{left:252.000000pt;}
.x50_c00001{left:253.466667pt;}
.x6e_c00001{left:254.400000pt;}
.x91_c00001{left:256.000000pt;}
.x48_c00001{left:257.333333pt;}
.x11c_c00001{left:259.066667pt;}
.x53_c00001{left:260.400000pt;}
.x126_c00001{left:261.466667pt;}
.x132_c00001{left:262.400000pt;}
.x6_c00001{left:263.333333pt;}
.x1cc_c00001{left:264.533333pt;}
.x3b_c00001{left:265.466667pt;}
.x121_c00001{left:266.533333pt;}
.x17b_c00001{left:267.466667pt;}
.x5e_c00001{left:268.533333pt;}
.x42_c00001{left:269.466667pt;}
.x2d_c00001{left:270.533333pt;}
.x1a_c00001{left:271.600000pt;}
.x15_c00001{left:272.800000pt;}
.x17c_c00001{left:273.866667pt;}
.x5a_c00001{left:275.066667pt;}
.x6f_c00001{left:276.800000pt;}
.x77_c00001{left:278.000000pt;}
.x3f_c00001{left:279.333333pt;}
.x27_c00001{left:281.066667pt;}
.x46_c00001{left:282.266667pt;}
.x64_c00001{left:283.733333pt;}
.x134_c00001{left:284.800000pt;}
.x3c_c00001{left:286.000000pt;}
.x7e_c00001{left:286.933333pt;}
.x11a_c00001{left:288.000000pt;}
.x1a3_c00001{left:288.933333pt;}
.x70_c00001{left:289.866667pt;}
.xd_c00001{left:290.800000pt;}
.x2e_c00001{left:292.266667pt;}
.x54_c00001{left:293.733333pt;}
.x20_c00001{left:295.466667pt;}
.x60_c00001{left:296.400000pt;}
.x179_c00001{left:297.333333pt;}
.x87_c00001{left:298.266667pt;}
.x34_c00001{left:299.466667pt;}
.x177_c00001{left:300.533333pt;}
.x7_c00001{left:301.466667pt;}
.x43_c00001{left:303.200000pt;}
.x1b_c00001{left:304.933333pt;}
.x12e_c00001{left:305.866667pt;}
.x49_c00001{left:306.933333pt;}
.x1d0_c00001{left:308.000000pt;}
.x1a4_c00001{left:308.933333pt;}
.x86_c00001{left:309.866667pt;}
.x6b_c00001{left:311.066667pt;}
.x136_c00001{left:312.000000pt;}
.x55_c00001{left:312.933333pt;}
.x13a_c00001{left:313.866667pt;}
.x35_c00001{left:315.200000pt;}
.x28_c00001{left:316.933333pt;}
.x13e_c00001{left:317.866667pt;}
.x62_c00001{left:319.200000pt;}
.x4a_c00001{left:320.400000pt;}
.x19f_c00001{left:321.600000pt;}
.x6c_c00001{left:323.200000pt;}
.x78_c00001{left:324.666667pt;}
.x83_c00001{left:326.000000pt;}
.x81_c00001{left:327.600000pt;}
.xe_c00001{left:328.933333pt;}
.x21_c00001{left:330.400000pt;}
.x1df_c00001{left:331.466667pt;}
.x4b_c00001{left:332.933333pt;}
.x12b_c00001{left:333.866667pt;}
.x4e_c00001{left:335.066667pt;}
.x1c_c00001{left:336.266667pt;}
.x2f_c00001{left:337.733333pt;}
.x17e_c00001{left:338.800000pt;}
.x12c_c00001{left:340.266667pt;}
.x71_c00001{left:341.333333pt;}
.x1a1_c00001{left:342.400000pt;}
.x135_c00001{left:343.333333pt;}
.x16_c00001{left:344.800000pt;}
.x29_c00001{left:346.000000pt;}
.x1d_c00001{left:347.733333pt;}
.x178_c00001{left:349.466667pt;}
.x8_c00001{left:350.400000pt;}
.x1fc_c00001{left:351.333333pt;}
.x67_c00001{left:352.266667pt;}
.x5f_c00001{left:353.600000pt;}
.x124_c00001{left:355.333333pt;}
.x94_c00001{left:356.400000pt;}
.x36_c00001{left:357.733333pt;}
.x8c_c00001{left:359.066667pt;}
.x19d_c00001{left:360.000000pt;}
.x8a_c00001{left:360.933333pt;}
.x122_c00001{left:361.866667pt;}
.x22_c00001{left:363.066667pt;}
.x204_c00001{left:364.000000pt;}
.x9_c00001{left:365.466667pt;}
.x4c_c00001{left:366.533333pt;}
.x207_c00001{left:367.466667pt;}
.x137_c00001{left:368.400000pt;}
.x8f_c00001{left:369.866667pt;}
.x7c_c00001{left:371.333333pt;}
.x79_c00001{left:372.400000pt;}
.x58_c00001{left:373.466667pt;}
.x88_c00001{left:374.533333pt;}
.x17_c00001{left:376.133333pt;}
.x181_c00001{left:377.333333pt;}
.x176_c00001{left:378.666667pt;}
.x72_c00001{left:379.733333pt;}
.x84_c00001{left:380.666667pt;}
.x17f_c00001{left:381.866667pt;}
.x95_c00001{left:382.933333pt;}
.x206_c00001{left:383.866667pt;}
.xf_c00001{left:385.200000pt;}
.x4f_c00001{left:386.933333pt;}
.x1b7_c00001{left:387.866667pt;}
.x10d_c00001{left:388.800000pt;}
.x211_c00001{left:389.733333pt;}
.x40_c00001{left:390.666667pt;}
.x5b_c00001{left:392.000000pt;}
.x30_c00001{left:393.066667pt;}
.x11f_c00001{left:394.133333pt;}
.x21c_c00001{left:395.066667pt;}
.x18_c00001{left:396.000000pt;}
.x182_c00001{left:397.600000pt;}
.x23_c00001{left:398.533333pt;}
.x1e0_c00001{left:399.600000pt;}
.x183_c00001{left:400.533333pt;}
.x1d5_c00001{left:401.600000pt;}
.x85_c00001{left:402.800000pt;}
.x10_c00001{left:404.400000pt;}
.x1fe_c00001{left:405.466667pt;}
.x2_c00001{left:406.400000pt;}
.x2a_c00001{left:407.733333pt;}
.x8b_c00001{left:409.200000pt;}
.x1d9_c00001{left:410.133333pt;}
.x63_c00001{left:411.733333pt;}
.x74_c00001{left:413.333333pt;}
.x169_c00001{left:414.933333pt;}
.x162_c00001{left:416.000000pt;}
.x157_c00001{left:417.200000pt;}
.x38_c00001{left:418.133333pt;}
.x68_c00001{left:419.200000pt;}
.x1ea_c00001{left:420.400000pt;}
.x1f6_c00001{left:422.133333pt;}
.x1dd_c00001{left:423.066667pt;}
.x1f5_c00001{left:424.000000pt;}
.x1f7_c00001{left:425.333333pt;}
.x210_c00001{left:426.266667pt;}
.x1c0_c00001{left:427.200000pt;}
.x1ba_c00001{left:428.133333pt;}
.x1b9_c00001{left:429.733333pt;}
.x1ed_c00001{left:431.333333pt;}
.x1c5_c00001{left:432.266667pt;}
.x1f8_c00001{left:433.200000pt;}
.x1d1_c00001{left:434.800000pt;}
.x185_c00001{left:435.866667pt;}
.x19a_c00001{left:437.600000pt;}
.x1eb_c00001{left:438.933333pt;}
.x187_c00001{left:440.533333pt;}
.x1fa_c00001{left:442.000000pt;}
.x20d_c00001{left:442.933333pt;}
.xe7_c00001{left:443.866667pt;}
.x97_c00001{left:445.466667pt;}
.x1de_c00001{left:446.400000pt;}
.x1a9_c00001{left:447.333333pt;}
.x1ae_c00001{left:448.666667pt;}
.x1a6_c00001{left:449.866667pt;}
.x1d2_c00001{left:451.066667pt;}
.x10e_c00001{left:452.266667pt;}
.x1af_c00001{left:453.200000pt;}
.x1a7_c00001{left:454.133333pt;}
.x19b_c00001{left:455.466667pt;}
.x1e8_c00001{left:456.400000pt;}
.x1b2_c00001{left:457.866667pt;}
.x149_c00001{left:458.933333pt;}
.x161_c00001{left:460.533333pt;}
.x14b_c00001{left:461.866667pt;}
.x151_c00001{left:462.800000pt;}
.x1b3_c00001{left:464.400000pt;}
.x1ad_c00001{left:465.333333pt;}
.x147_c00001{left:466.266667pt;}
.x158_c00001{left:467.733333pt;}
.x1ab_c00001{left:468.666667pt;}
.x1c4_c00001{left:469.600000pt;}
.x10f_c00001{left:470.533333pt;}
.x156_c00001{left:472.266667pt;}
.x14e_c00001{left:473.333333pt;}
.x98_c00001{left:474.933333pt;}
.xab_c00001{left:476.000000pt;}
.x166_c00001{left:477.066667pt;}
.x189_c00001{left:478.800000pt;}
.x145_c00001{left:480.266667pt;}
.x1aa_c00001{left:481.333333pt;}
.x1d3_c00001{left:482.800000pt;}
.x106_c00001{left:484.000000pt;}
.xda_c00001{left:485.066667pt;}
.xa0_c00001{left:486.133333pt;}
.x13f_c00001{left:487.733333pt;}
.x153_c00001{left:488.666667pt;}
.x1a8_c00001{left:489.866667pt;}
.x141_c00001{left:490.933333pt;}
.x1c1_c00001{left:492.133333pt;}
.x16a_c00001{left:493.333333pt;}
.x1b0_c00001{left:494.533333pt;}
.x172_c00001{left:495.733333pt;}
.x10a_c00001{left:496.666667pt;}
.x16d_c00001{left:497.600000pt;}
.xc2_c00001{left:498.533333pt;}
.x15e_c00001{left:499.466667pt;}
.x191_c00001{left:500.533333pt;}
.xc3_c00001{left:501.466667pt;}
.x1bd_c00001{left:502.800000pt;}
.xc9_c00001{left:503.733333pt;}
.x1ef_c00001{left:504.666667pt;}
.xb2_c00001{left:505.600000pt;}
.xe8_c00001{left:506.933333pt;}
.xa7_c00001{left:507.866667pt;}
.x10b_c00001{left:508.800000pt;}
.x1bb_c00001{left:509.733333pt;}
.xf9_c00001{left:510.666667pt;}
.x99_c00001{left:511.733333pt;}
.xde_c00001{left:512.800000pt;}
.x190_c00001{left:514.266667pt;}
.x159_c00001{left:515.466667pt;}
.x186_c00001{left:516.533333pt;}
.x107_c00001{left:517.600000pt;}
.xbc_c00001{left:519.333333pt;}
.xfc_c00001{left:521.066667pt;}
.xec_c00001{left:522.000000pt;}
.xac_c00001{left:523.733333pt;}
.xcf_c00001{left:525.200000pt;}
.x163_c00001{left:526.133333pt;}
.xb7_c00001{left:527.333333pt;}
.x15f_c00001{left:528.533333pt;}
.x10c_c00001{left:529.600000pt;}
.xca_c00001{left:530.933333pt;}
.x15c_c00001{left:532.266667pt;}
.xae_c00001{left:533.333333pt;}
.xa1_c00001{left:535.066667pt;}
.xc4_c00001{left:536.000000pt;}
.x144_c00001{left:537.200000pt;}
.x9a_c00001{left:538.933333pt;}
.xf4_c00001{left:540.533333pt;}
.xb3_c00001{left:541.733333pt;}
.xa8_c00001{left:542.800000pt;}
.xbd_c00001{left:544.266667pt;}
.xdf_c00001{left:545.466667pt;}
.x15a_c00001{left:546.533333pt;}
.x198_c00001{left:547.466667pt;}
.xed_c00001{left:548.533333pt;}
.x9b_c00001{left:549.866667pt;}
.x14f_c00001{left:551.066667pt;}
.xcb_c00001{left:552.400000pt;}
.xdd_c00001{left:553.733333pt;}
.xbe_c00001{left:555.200000pt;}
.xfd_c00001{left:556.533333pt;}
.x15b_c00001{left:557.466667pt;}
.x148_c00001{left:558.400000pt;}
.xd0_c00001{left:559.466667pt;}
.xee_c00001{left:560.400000pt;}
.xad_c00001{left:561.866667pt;}
.x164_c00001{left:563.200000pt;}
.x103_c00001{left:564.266667pt;}
.xfa_c00001{left:566.000000pt;}
.xaf_c00001{left:566.933333pt;}
.xd7_c00001{left:568.400000pt;}
.x1ee_c00001{left:569.333333pt;}
.xd1_c00001{left:570.400000pt;}
.x146_c00001{left:571.466667pt;}
.xdb_c00001{left:572.400000pt;}
.xcc_c00001{left:573.600000pt;}
.x1b1_c00001{left:574.666667pt;}
.xb8_c00001{left:576.000000pt;}
.x16b_c00001{left:576.933333pt;}
.x143_c00001{left:577.866667pt;}
.x1c3_c00001{left:579.066667pt;}
.xe9_c00001{left:580.266667pt;}
.x142_c00001{left:581.466667pt;}
.x1bc_c00001{left:582.400000pt;}
.xc5_c00001{left:583.333333pt;}
.xa2_c00001{left:584.400000pt;}
.x18f_c00001{left:585.600000pt;}
.xe4_c00001{left:586.933333pt;}
.xe0_c00001{left:588.400000pt;}
.xdc_c00001{left:590.000000pt;}
.xef_c00001{left:591.066667pt;}
.x170_c00001{left:592.266667pt;}
.xf7_c00001{left:593.733333pt;}
.xf2_c00001{left:594.933333pt;}
.x9c_c00001{left:596.000000pt;}
.xd5_c00001{left:597.466667pt;}
.xfe_c00001{left:598.400000pt;}
.x152_c00001{left:599.733333pt;}
.x194_c00001{left:601.200000pt;}
.x193_c00001{left:602.133333pt;}
.xbf_c00001{left:603.200000pt;}
.x15d_c00001{left:604.266667pt;}
.xb4_c00001{left:605.733333pt;}
.x201_c00001{left:606.666667pt;}
.x154_c00001{left:607.600000pt;}
.x1d4_c00001{left:608.533333pt;}
.xcd_c00001{left:609.466667pt;}
.x150_c00001{left:610.933333pt;}
.x195_c00001{left:612.000000pt;}
.x160_c00001{left:612.933333pt;}
.xb9_c00001{left:614.133333pt;}
.x16e_c00001{left:615.866667pt;}
.xa9_c00001{left:617.066667pt;}
.x105_c00001{left:618.000000pt;}
.xd2_c00001{left:619.333333pt;}
.xa3_c00001{left:620.533333pt;}
.xd8_c00001{left:621.866667pt;}
.x1ac_c00001{left:623.600000pt;}
.xe1_c00001{left:624.533333pt;}
.x188_c00001{left:626.000000pt;}
.x16f_c00001{left:627.466667pt;}
.xb0_c00001{left:628.933333pt;}
.x1db_c00001{left:630.266667pt;}
.x9d_c00001{left:631.200000pt;}
.xff_c00001{left:632.933333pt;}
.xa4_c00001{left:634.266667pt;}
.x18d_c00001{left:635.600000pt;}
.xc0_c00001{left:636.533333pt;}
.x14a_c00001{left:638.133333pt;}
.x1da_c00001{left:639.333333pt;}
.xc6_c00001{left:640.266667pt;}
.x1e9_c00001{left:641.200000pt;}
.xaa_c00001{left:642.400000pt;}
.x168_c00001{left:644.133333pt;}
.xd4_c00001{left:645.066667pt;}
.xf0_c00001{left:646.133333pt;}
.x196_c00001{left:647.333333pt;}
.x101_c00001{left:648.266667pt;}
.x165_c00001{left:649.333333pt;}
.xea_c00001{left:650.533333pt;}
.x18e_c00001{left:651.600000pt;}
.x14c_c00001{left:652.933333pt;}
.x18b_c00001{left:654.400000pt;}
.xf5_c00001{left:655.866667pt;}
.x208_c00001{left:656.800000pt;}
.xd3_c00001{left:657.733333pt;}
.x104_c00001{left:658.666667pt;}
.xb5_c00001{left:660.133333pt;}
.xc7_c00001{left:661.733333pt;}
.x9e_c00001{left:662.933333pt;}
.x167_c00001{left:664.666667pt;}
.xc1_c00001{left:666.266667pt;}
.xd6_c00001{left:667.866667pt;}
.x16c_c00001{left:668.800000pt;}
.xa5_c00001{left:669.733333pt;}
.x102_c00001{left:671.200000pt;}
.x18c_c00001{left:672.266667pt;}
.x108_c00001{left:673.333333pt;}
.x14d_c00001{left:675.066667pt;}
.x197_c00001{left:676.400000pt;}
.xb6_c00001{left:677.466667pt;}
.xf3_c00001{left:678.800000pt;}
.xe5_c00001{left:679.733333pt;}
.x171_c00001{left:680.666667pt;}
.xe2_c00001{left:681.866667pt;}
.x140_c00001{left:683.200000pt;}
.x100_c00001{left:684.400000pt;}
.xba_c00001{left:685.600000pt;}
.x18a_c00001{left:686.800000pt;}
.x110_c00001{left:687.866667pt;}
.xeb_c00001{left:688.933333pt;}
.xe6_c00001{left:690.666667pt;}
.x21f_c00001{left:691.600000pt;}
.x192_c00001{left:692.533333pt;}
.x9f_c00001{left:693.600000pt;}
.xc8_c00001{left:695.066667pt;}
.x199_c00001{left:696.666667pt;}
.x155_c00001{left:697.866667pt;}
.x1be_c00001{left:698.800000pt;}
.xf6_c00001{left:699.733333pt;}
.x1c2_c00001{left:700.800000pt;}
.xce_c00001{left:701.866667pt;}
.xf8_c00001{left:703.066667pt;}
.xf1_c00001{left:704.666667pt;}
.x202_c00001{left:705.600000pt;}
.xa6_c00001{left:706.533333pt;}
.x1bf_c00001{left:707.466667pt;}
.xb1_c00001{left:708.400000pt;}
.x1e2_c00001{left:709.733333pt;}
.x1e3_c00001{left:710.800000pt;}
.x1ff_c00001{left:712.533333pt;}
.x109_c00001{left:713.600000pt;}
.x1e4_c00001{left:715.200000pt;}
.xe3_c00001{left:716.800000pt;}
.x215_c00001{left:718.533333pt;}
.x1f9_c00001{left:719.600000pt;}
.xfb_c00001{left:720.800000pt;}
.xd9_c00001{left:722.400000pt;}
.x218_c00001{left:724.266667pt;}
.xbb_c00001{left:725.600000pt;}
.x214_c00001{left:726.533333pt;}
.x213_c00001{left:727.866667pt;}
.x212_c00001{left:729.866667pt;}
.x227_c00001{left:731.600000pt;}
.x226_c00001{left:732.800000pt;}
.x225_c00001{left:733.733333pt;}
.x22f_c00001{left:734.666667pt;}
.x22d_c00001{left:735.733333pt;}
.x224_c00001{left:737.333333pt;}
.x22c_c00001{left:738.800000pt;}
.x235_c00001{left:740.266667pt;}
.x22a_c00001{left:741.333333pt;}
.x22e_c00001{left:743.733333pt;}
.x22b_c00001{left:745.200000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  